Radek Krejci | 3f5e3db | 2018-10-11 15:57:47 +0200 | [diff] [blame] | 1 | /** |
| 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 Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 14 | |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 15 | #define _GNU_SOURCE |
Radek Krejci | f8dc59a | 2020-11-25 13:47:44 +0100 | [diff] [blame] | 16 | #define _POSIX_C_SOURCE 200809L /* strdup */ |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 17 | |
Radek Krejci | ca376bd | 2020-06-11 16:04:06 +0200 | [diff] [blame] | 18 | #include "tree_schema.h" |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 19 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 20 | #include <assert.h> |
Radek Krejci | 545b487 | 2020-11-15 10:15:12 +0100 | [diff] [blame] | 21 | #include <ctype.h> |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 22 | #include <dirent.h> |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 23 | #include <errno.h> |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 24 | #include <stdint.h> |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 25 | #include <stdio.h> |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 26 | #include <stdlib.h> |
| 27 | #include <string.h> |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 28 | #include <sys/stat.h> |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 29 | #include <unistd.h> |
Radek Krejci | 3f5e3db | 2018-10-11 15:57:47 +0200 | [diff] [blame] | 30 | |
Radek Krejci | ca376bd | 2020-06-11 16:04:06 +0200 | [diff] [blame] | 31 | #include "common.h" |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 32 | #include "compat.h" |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 33 | #include "context.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 34 | #include "dict.h" |
Radek Krejci | 47fab89 | 2020-11-05 17:02:41 +0100 | [diff] [blame] | 35 | #include "in.h" |
Michal Vasko | afac782 | 2020-10-20 14:22:26 +0200 | [diff] [blame] | 36 | #include "in_internal.h" |
Radek Krejci | 47fab89 | 2020-11-05 17:02:41 +0100 | [diff] [blame] | 37 | #include "log.h" |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 38 | #include "parser_internal.h" |
Radek Krejci | ca376bd | 2020-06-11 16:04:06 +0200 | [diff] [blame] | 39 | #include "parser_schema.h" |
Michal Vasko | 40308e7 | 2020-10-20 16:38:40 +0200 | [diff] [blame] | 40 | #include "path.h" |
Michal Vasko | 1a7a7bd | 2020-10-16 14:39:15 +0200 | [diff] [blame] | 41 | #include "schema_compile.h" |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 42 | #include "schema_features.h" |
Radek Krejci | ca376bd | 2020-06-11 16:04:06 +0200 | [diff] [blame] | 43 | #include "set.h" |
| 44 | #include "tree.h" |
Radek Krejci | 859a15a | 2021-03-05 20:56:59 +0100 | [diff] [blame] | 45 | #include "tree_edit.h" |
Radek Krejci | ca376bd | 2020-06-11 16:04:06 +0200 | [diff] [blame] | 46 | #include "tree_schema_internal.h" |
| 47 | #include "xpath.h" |
Radek Krejci | 3f5e3db | 2018-10-11 15:57:47 +0200 | [diff] [blame] | 48 | |
Radek Krejci | eccf660 | 2021-02-05 19:42:54 +0100 | [diff] [blame] | 49 | /** |
| 50 | * @brief information about YANG statements |
| 51 | */ |
| 52 | struct stmt_info_s stmt_attr_info[] = { |
Radek Krejci | 6b88a46 | 2021-02-17 12:39:34 +0100 | [diff] [blame] | 53 | [LY_STMT_NONE] = {NULL, NULL, 0}, |
| 54 | [LY_STMT_ACTION] = {"action", "name", STMT_FLAG_ID}, |
| 55 | [LY_STMT_ANYDATA] = {"anydata", "name", STMT_FLAG_ID}, |
| 56 | [LY_STMT_ANYXML] = {"anyxml", "name", STMT_FLAG_ID}, |
| 57 | [LY_STMT_ARGUMENT] = {"argument", "name", STMT_FLAG_ID}, |
| 58 | [LY_STMT_ARG_TEXT] = {"text", NULL, 0}, |
| 59 | [LY_STMT_ARG_VALUE] = {"value", NULL, 0}, |
| 60 | [LY_STMT_AUGMENT] = {"augment", "target-node", STMT_FLAG_ID}, |
| 61 | [LY_STMT_BASE] = {"base", "name", STMT_FLAG_ID}, |
| 62 | [LY_STMT_BELONGS_TO] = {"belongs-to", "module", STMT_FLAG_ID}, |
| 63 | [LY_STMT_BIT] = {"bit", "name", STMT_FLAG_ID}, |
| 64 | [LY_STMT_CASE] = {"case", "name", STMT_FLAG_ID}, |
| 65 | [LY_STMT_CHOICE] = {"choice", "name", STMT_FLAG_ID}, |
| 66 | [LY_STMT_CONFIG] = {"config", "value", STMT_FLAG_ID}, |
| 67 | [LY_STMT_CONTACT] = {"contact", "text", STMT_FLAG_YIN}, |
| 68 | [LY_STMT_CONTAINER] = {"container", "name", STMT_FLAG_ID}, |
| 69 | [LY_STMT_DEFAULT] = {"default", "value", 0}, |
| 70 | [LY_STMT_DESCRIPTION] = {"description", "text", STMT_FLAG_YIN}, |
| 71 | [LY_STMT_DEVIATE] = {"deviate", "value", STMT_FLAG_ID}, |
| 72 | [LY_STMT_DEVIATION] = {"deviation", "target-node", STMT_FLAG_ID}, |
| 73 | [LY_STMT_ENUM] = {"enum", "name", STMT_FLAG_ID}, |
| 74 | [LY_STMT_ERROR_APP_TAG] = {"error-app-tag", "value", 0}, |
| 75 | [LY_STMT_ERROR_MESSAGE] = {"error-message", "value", STMT_FLAG_YIN}, |
| 76 | [LY_STMT_EXTENSION] = {"extension", "name", STMT_FLAG_ID}, |
| 77 | [LY_STMT_EXTENSION_INSTANCE] = {NULL, NULL, 0}, |
| 78 | [LY_STMT_FEATURE] = {"feature", "name", STMT_FLAG_ID}, |
| 79 | [LY_STMT_FRACTION_DIGITS] = {"fraction-digits", "value", STMT_FLAG_ID}, |
| 80 | [LY_STMT_GROUPING] = {"grouping", "name", STMT_FLAG_ID}, |
| 81 | [LY_STMT_IDENTITY] = {"identity", "name", STMT_FLAG_ID}, |
| 82 | [LY_STMT_IF_FEATURE] = {"if-feature", "name", 0}, |
| 83 | [LY_STMT_IMPORT] = {"import", "module", STMT_FLAG_ID}, |
| 84 | [LY_STMT_INCLUDE] = {"include", "module", STMT_FLAG_ID}, |
| 85 | [LY_STMT_INPUT] = {"input", NULL, 0}, |
| 86 | [LY_STMT_KEY] = {"key", "value", 0}, |
| 87 | [LY_STMT_LEAF] = {"leaf", "name", STMT_FLAG_ID}, |
| 88 | [LY_STMT_LEAF_LIST] = {"leaf-list", "name", STMT_FLAG_ID}, |
| 89 | [LY_STMT_LENGTH] = {"length", "value", 0}, |
| 90 | [LY_STMT_LIST] = {"list", "name", STMT_FLAG_ID}, |
| 91 | [LY_STMT_MANDATORY] = {"mandatory", "value", STMT_FLAG_ID}, |
| 92 | [LY_STMT_MAX_ELEMENTS] = {"max-elements", "value", STMT_FLAG_ID}, |
| 93 | [LY_STMT_MIN_ELEMENTS] = {"min-elements", "value", STMT_FLAG_ID}, |
| 94 | [LY_STMT_MODIFIER] = {"modifier", "value", STMT_FLAG_ID}, |
| 95 | [LY_STMT_MODULE] = {"module", "name", STMT_FLAG_ID}, |
| 96 | [LY_STMT_MUST] = {"must", "condition", 0}, |
| 97 | [LY_STMT_NAMESPACE] = {"namespace", "uri", 0}, |
| 98 | [LY_STMT_NOTIFICATION] = {"notification", "name", STMT_FLAG_ID}, |
| 99 | [LY_STMT_ORDERED_BY] = {"ordered-by", "value", STMT_FLAG_ID}, |
| 100 | [LY_STMT_ORGANIZATION] = {"organization", "text", STMT_FLAG_YIN}, |
| 101 | [LY_STMT_OUTPUT] = {"output", NULL, 0}, |
| 102 | [LY_STMT_PATH] = {"path", "value", 0}, |
| 103 | [LY_STMT_PATTERN] = {"pattern", "value", 0}, |
| 104 | [LY_STMT_POSITION] = {"position", "value", STMT_FLAG_ID}, |
| 105 | [LY_STMT_PREFIX] = {"prefix", "value", STMT_FLAG_ID}, |
| 106 | [LY_STMT_PRESENCE] = {"presence", "value", 0}, |
| 107 | [LY_STMT_RANGE] = {"range", "value", 0}, |
| 108 | [LY_STMT_REFERENCE] = {"reference", "text", STMT_FLAG_YIN}, |
| 109 | [LY_STMT_REFINE] = {"refine", "target-node", STMT_FLAG_ID}, |
| 110 | [LY_STMT_REQUIRE_INSTANCE] = {"require-instance", "value", STMT_FLAG_ID}, |
| 111 | [LY_STMT_REVISION] = {"revision", "date", STMT_FLAG_ID}, |
| 112 | [LY_STMT_REVISION_DATE] = {"revision-date", "date", STMT_FLAG_ID}, |
| 113 | [LY_STMT_RPC] = {"rpc", "name", STMT_FLAG_ID}, |
| 114 | [LY_STMT_STATUS] = {"status", "value", STMT_FLAG_ID}, |
| 115 | [LY_STMT_SUBMODULE] = {"submodule", "name", STMT_FLAG_ID}, |
| 116 | [LY_STMT_SYNTAX_LEFT_BRACE] = {"{", NULL, 0}, |
| 117 | [LY_STMT_SYNTAX_RIGHT_BRACE] = {"}", NULL, 0}, |
| 118 | [LY_STMT_SYNTAX_SEMICOLON] = {";", NULL, 0}, |
| 119 | [LY_STMT_TYPE] = {"type", "name", STMT_FLAG_ID}, |
| 120 | [LY_STMT_TYPEDEF] = {"typedef", "name", STMT_FLAG_ID}, |
| 121 | [LY_STMT_UNIQUE] = {"unique", "tag", 0}, |
| 122 | [LY_STMT_UNITS] = {"units", "name", 0}, |
| 123 | [LY_STMT_USES] = {"uses", "name", STMT_FLAG_ID}, |
| 124 | [LY_STMT_VALUE] = {"value", "value", STMT_FLAG_ID}, |
| 125 | [LY_STMT_WHEN] = {"when", "condition", 0}, |
| 126 | [LY_STMT_YANG_VERSION] = {"yang-version", "value", STMT_FLAG_ID}, |
| 127 | [LY_STMT_YIN_ELEMENT] = {"yin-element", "value", STMT_FLAG_ID}, |
Radek Krejci | eccf660 | 2021-02-05 19:42:54 +0100 | [diff] [blame] | 128 | }; |
| 129 | |
Radek Krejci | f8ca819 | 2021-03-02 16:50:06 +0100 | [diff] [blame] | 130 | API const char * |
| 131 | ly_stmt2str(enum ly_stmt stmt) |
| 132 | { |
| 133 | return stmt_attr_info[stmt].name; |
| 134 | } |
| 135 | |
Radek Krejci | eccf660 | 2021-02-05 19:42:54 +0100 | [diff] [blame] | 136 | const char * const ly_devmod_list[] = { |
| 137 | [LYS_DEV_NOT_SUPPORTED] = "not-supported", |
| 138 | [LYS_DEV_ADD] = "add", |
| 139 | [LYS_DEV_DELETE] = "delete", |
| 140 | [LYS_DEV_REPLACE] = "replace", |
| 141 | }; |
| 142 | |
Michal Vasko | f1ab44f | 2020-10-22 08:58:32 +0200 | [diff] [blame] | 143 | API LY_ERR |
| 144 | lysc_tree_dfs_full(const struct lysc_node *root, lysc_dfs_clb dfs_clb, void *data) |
| 145 | { |
Michal Vasko | 1d972ca | 2020-11-03 17:16:56 +0100 | [diff] [blame] | 146 | struct lysc_node *elem, *elem2; |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 147 | const struct lysc_node_action *action; |
| 148 | const struct lysc_node_notif *notif; |
Michal Vasko | f1ab44f | 2020-10-22 08:58:32 +0200 | [diff] [blame] | 149 | |
| 150 | LY_CHECK_ARG_RET(NULL, root, dfs_clb, LY_EINVAL); |
| 151 | |
| 152 | LYSC_TREE_DFS_BEGIN(root, elem) { |
| 153 | /* schema node */ |
| 154 | LY_CHECK_RET(dfs_clb(elem, data, &LYSC_TREE_DFS_continue)); |
| 155 | |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 156 | LY_LIST_FOR(lysc_node_actions(elem), action) { |
| 157 | LYSC_TREE_DFS_BEGIN(action, elem2) { |
Michal Vasko | f1ab44f | 2020-10-22 08:58:32 +0200 | [diff] [blame] | 158 | /* action subtree */ |
| 159 | LY_CHECK_RET(dfs_clb(elem2, data, &LYSC_TREE_DFS_continue)); |
| 160 | |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 161 | LYSC_TREE_DFS_END(action, elem2); |
Michal Vasko | f1ab44f | 2020-10-22 08:58:32 +0200 | [diff] [blame] | 162 | } |
| 163 | } |
| 164 | |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 165 | LY_LIST_FOR(lysc_node_notifs(elem), notif) { |
| 166 | LYSC_TREE_DFS_BEGIN(notif, elem2) { |
Michal Vasko | f1ab44f | 2020-10-22 08:58:32 +0200 | [diff] [blame] | 167 | /* notification subtree */ |
| 168 | LY_CHECK_RET(dfs_clb(elem2, data, &LYSC_TREE_DFS_continue)); |
| 169 | |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 170 | LYSC_TREE_DFS_END(notif, elem2); |
Michal Vasko | f1ab44f | 2020-10-22 08:58:32 +0200 | [diff] [blame] | 171 | } |
| 172 | } |
| 173 | |
| 174 | LYSC_TREE_DFS_END(root, elem); |
| 175 | } |
| 176 | |
| 177 | return LY_SUCCESS; |
| 178 | } |
| 179 | |
| 180 | API LY_ERR |
| 181 | lysc_module_dfs_full(const struct lys_module *mod, lysc_dfs_clb dfs_clb, void *data) |
| 182 | { |
Michal Vasko | 2336cf5 | 2020-11-03 17:18:15 +0100 | [diff] [blame] | 183 | const struct lysc_node *root; |
Michal Vasko | f1ab44f | 2020-10-22 08:58:32 +0200 | [diff] [blame] | 184 | |
| 185 | LY_CHECK_ARG_RET(NULL, mod, mod->compiled, dfs_clb, LY_EINVAL); |
| 186 | |
| 187 | /* schema nodes */ |
Michal Vasko | 2336cf5 | 2020-11-03 17:18:15 +0100 | [diff] [blame] | 188 | LY_LIST_FOR(mod->compiled->data, root) { |
| 189 | LY_CHECK_RET(lysc_tree_dfs_full(root, dfs_clb, data)); |
| 190 | } |
Michal Vasko | f1ab44f | 2020-10-22 08:58:32 +0200 | [diff] [blame] | 191 | |
| 192 | /* RPCs */ |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 193 | LY_LIST_FOR((const struct lysc_node *)mod->compiled->rpcs, root) { |
| 194 | LY_CHECK_RET(lysc_tree_dfs_full(root, dfs_clb, data)); |
Michal Vasko | f1ab44f | 2020-10-22 08:58:32 +0200 | [diff] [blame] | 195 | } |
| 196 | |
| 197 | /* notifications */ |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 198 | LY_LIST_FOR((const struct lysc_node *)mod->compiled->notifs, root) { |
| 199 | LY_CHECK_RET(lysc_tree_dfs_full(root, dfs_clb, data)); |
Michal Vasko | f1ab44f | 2020-10-22 08:58:32 +0200 | [diff] [blame] | 200 | } |
| 201 | |
| 202 | return LY_SUCCESS; |
| 203 | } |
| 204 | |
Radek Krejci | b93bd41 | 2020-11-02 13:23:11 +0100 | [diff] [blame] | 205 | static void |
| 206 | lys_getnext_into_case(const struct lysc_node_case *first_case, const struct lysc_node **last, const struct lysc_node **next) |
| 207 | { |
Radek Krejci | c5b54a0 | 2020-11-05 17:13:18 +0100 | [diff] [blame] | 208 | for ( ; first_case; first_case = (const struct lysc_node_case *)first_case->next) { |
Radek Krejci | b93bd41 | 2020-11-02 13:23:11 +0100 | [diff] [blame] | 209 | if (first_case->child) { |
| 210 | /* there is something to return */ |
| 211 | (*next) = first_case->child; |
| 212 | return; |
| 213 | } |
| 214 | } |
| 215 | |
| 216 | /* no children in choice's cases, so go to the choice's sibling instead of into it */ |
| 217 | (*last) = (*next); |
| 218 | (*next) = (*next)->next; |
| 219 | } |
| 220 | |
Radek Krejci | 035dacf | 2021-02-12 18:25:53 +0100 | [diff] [blame] | 221 | /** |
| 222 | * @brief Generic getnext function for ::lys_getnext() and ::lys_getnext_ext(). |
| 223 | * |
| 224 | * Gets next schema tree (sibling) node element that can be instantiated in a data tree. Returned node can |
| 225 | * be from an augment. If the @p ext is provided, the function is locked inside the schema tree defined in the |
| 226 | * extension instance. |
| 227 | * |
| 228 | * ::lys_getnext_() is supposed to be called sequentially. In the first call, the \p last parameter is usually NULL |
| 229 | * and function starts returning i) the first \p parent's child or ii) the first top level element specified in the |
| 230 | * given extension (if provided) or iii) the first top level element of the \p module. |
| 231 | * Consequent calls suppose to provide the previously returned node as the \p last parameter and still the same |
| 232 | * \p parent and \p module parameters. |
| 233 | * |
| 234 | * Without options, the function is used to traverse only the schema nodes that can be paired with corresponding |
| 235 | * data nodes in a data tree. By setting some \p options the behavior can be modified to the extent that |
| 236 | * all the schema nodes are iteratively returned. |
| 237 | * |
| 238 | * @param[in] last Previously returned schema tree node, or NULL in case of the first call. |
| 239 | * @param[in] parent Parent of the subtree where the function starts processing. |
| 240 | * @param[in] module In case of iterating on top level elements, the \p parent is NULL and |
| 241 | * module must be specified. |
| 242 | * @param[in] ext The extension instance to provide a separate schema tree. To consider the top level elements in the tree, |
| 243 | * the \p parent must be NULL. Anyway, at least one of @p parent, @p module and @p ext parameters must be specified. |
| 244 | * @param[in] options [ORed options](@ref sgetnextflags). |
| 245 | * @return Next schema tree node that can be instantiated in a data tree, NULL in case there is no such element. |
| 246 | */ |
| 247 | static const struct lysc_node * |
| 248 | lys_getnext_(const struct lysc_node *last, const struct lysc_node *parent, const struct lysc_module *module, |
| 249 | const struct lysc_ext_instance *ext, uint32_t options) |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 250 | { |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 251 | const struct lysc_node *next = NULL; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 252 | ly_bool action_flag = 0, notif_flag = 0; |
Radek Krejci | 035dacf | 2021-02-12 18:25:53 +0100 | [diff] [blame] | 253 | struct lysc_node **data_p = NULL; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 254 | |
Radek Krejci | 035dacf | 2021-02-12 18:25:53 +0100 | [diff] [blame] | 255 | LY_CHECK_ARG_RET(NULL, parent || module || ext, NULL); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 256 | |
Radek Krejci | d5a2b9d | 2019-04-12 10:39:30 +0200 | [diff] [blame] | 257 | next: |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 258 | if (!last) { |
| 259 | /* first call */ |
| 260 | |
| 261 | /* get know where to start */ |
| 262 | if (parent) { |
| 263 | /* schema subtree */ |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 264 | next = last = lysc_node_child(parent); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 265 | } else { |
| 266 | /* top level data */ |
Radek Krejci | 035dacf | 2021-02-12 18:25:53 +0100 | [diff] [blame] | 267 | if (ext) { |
| 268 | lysc_ext_substmt(ext, LY_STMT_CONTAINER /* matches all nodes */, (void **)&data_p, NULL); |
| 269 | next = last = data_p ? *data_p : NULL; |
| 270 | } else { |
| 271 | next = last = module->data; |
| 272 | } |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 273 | } |
| 274 | if (!next) { |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 275 | /* try to get action or notification */ |
| 276 | goto repeat; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 277 | } |
Radek Krejci | 05b774b | 2019-02-25 13:26:18 +0100 | [diff] [blame] | 278 | /* test if the next can be returned */ |
| 279 | goto check; |
| 280 | |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 281 | } else if (last->nodetype & (LYS_RPC | LYS_ACTION)) { |
Radek Krejci | 05b774b | 2019-02-25 13:26:18 +0100 | [diff] [blame] | 282 | action_flag = 1; |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 283 | next = last->next; |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 284 | } else if (last->nodetype == LYS_NOTIF) { |
Radek Krejci | 05b774b | 2019-02-25 13:26:18 +0100 | [diff] [blame] | 285 | action_flag = notif_flag = 1; |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 286 | next = last->next; |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 287 | } else { |
| 288 | next = last->next; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 289 | } |
| 290 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 291 | repeat: |
| 292 | if (!next) { |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 293 | /* possibly go back to parent */ |
Radek Krejci | 035dacf | 2021-02-12 18:25:53 +0100 | [diff] [blame] | 294 | data_p = NULL; |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 295 | if (last && (last->parent != parent)) { |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 296 | last = last->parent; |
Radek Krejci | d5a2b9d | 2019-04-12 10:39:30 +0200 | [diff] [blame] | 297 | goto next; |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 298 | } else if (!action_flag) { |
| 299 | action_flag = 1; |
Radek Krejci | 035dacf | 2021-02-12 18:25:53 +0100 | [diff] [blame] | 300 | if (ext) { |
| 301 | lysc_ext_substmt(ext, LY_STMT_RPC /* matches also actions */, (void **)&data_p, NULL); |
| 302 | next = data_p ? *data_p : NULL; |
| 303 | } else if (parent) { |
| 304 | next = (struct lysc_node *)lysc_node_actions(parent); |
| 305 | } else { |
| 306 | next = (struct lysc_node *)module->rpcs; |
| 307 | } |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 308 | } else if (!notif_flag) { |
| 309 | notif_flag = 1; |
Radek Krejci | 035dacf | 2021-02-12 18:25:53 +0100 | [diff] [blame] | 310 | if (ext) { |
| 311 | lysc_ext_substmt(ext, LY_STMT_NOTIFICATION, (void **)&data_p, NULL); |
| 312 | next = data_p ? *data_p : NULL; |
| 313 | } else if (parent) { |
| 314 | next = (struct lysc_node *)lysc_node_notifs(parent); |
| 315 | } else { |
| 316 | next = (struct lysc_node *)module->notifs; |
| 317 | } |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 318 | } else { |
| 319 | return NULL; |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 320 | } |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 321 | goto repeat; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 322 | } |
Radek Krejci | 05b774b | 2019-02-25 13:26:18 +0100 | [diff] [blame] | 323 | check: |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 324 | switch (next->nodetype) { |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 325 | case LYS_RPC: |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 326 | case LYS_ACTION: |
| 327 | case LYS_NOTIF: |
| 328 | case LYS_LEAF: |
| 329 | case LYS_ANYXML: |
| 330 | case LYS_ANYDATA: |
| 331 | case LYS_LIST: |
| 332 | case LYS_LEAFLIST: |
| 333 | break; |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 334 | case LYS_CASE: |
| 335 | if (options & LYS_GETNEXT_WITHCASE) { |
| 336 | break; |
| 337 | } else { |
| 338 | /* go into */ |
Radek Krejci | b93bd41 | 2020-11-02 13:23:11 +0100 | [diff] [blame] | 339 | lys_getnext_into_case((const struct lysc_node_case *)next, &last, &next); |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 340 | } |
| 341 | goto repeat; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 342 | case LYS_CONTAINER: |
Michal Vasko | 14ed9cd | 2021-01-28 14:16:25 +0100 | [diff] [blame] | 343 | if (!(next->flags & LYS_PRESENCE) && (options & LYS_GETNEXT_INTONPCONT)) { |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 344 | if (lysc_node_child(next)) { |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 345 | /* go into */ |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 346 | next = lysc_node_child(next); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 347 | } else { |
Radek Krejci | b93bd41 | 2020-11-02 13:23:11 +0100 | [diff] [blame] | 348 | last = next; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 349 | next = next->next; |
| 350 | } |
| 351 | goto repeat; |
| 352 | } |
| 353 | break; |
| 354 | case LYS_CHOICE: |
| 355 | if (options & LYS_GETNEXT_WITHCHOICE) { |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 356 | break; |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 357 | } else if ((options & LYS_GETNEXT_NOCHOICE) || !lysc_node_child(next)) { |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 358 | next = next->next; |
| 359 | } else { |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 360 | if (options & LYS_GETNEXT_WITHCASE) { |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 361 | next = lysc_node_child(next); |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 362 | } else { |
Radek Krejci | b93bd41 | 2020-11-02 13:23:11 +0100 | [diff] [blame] | 363 | /* go into */ |
| 364 | lys_getnext_into_case(((struct lysc_node_choice *)next)->cases, &last, &next); |
Radek Krejci | a9026eb | 2018-12-12 16:04:47 +0100 | [diff] [blame] | 365 | } |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 366 | } |
| 367 | goto repeat; |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 368 | case LYS_INPUT: |
| 369 | if (options & LYS_GETNEXT_OUTPUT) { |
| 370 | /* skip */ |
| 371 | next = next->next; |
| 372 | } else { |
| 373 | /* go into */ |
| 374 | next = lysc_node_child(next); |
| 375 | } |
| 376 | goto repeat; |
| 377 | case LYS_OUTPUT: |
| 378 | if (!(options & LYS_GETNEXT_OUTPUT)) { |
| 379 | /* skip */ |
| 380 | next = next->next; |
| 381 | } else { |
| 382 | /* go into */ |
| 383 | next = lysc_node_child(next); |
| 384 | } |
| 385 | goto repeat; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 386 | default: |
| 387 | /* we should not be here */ |
Radek Krejci | 035dacf | 2021-02-12 18:25:53 +0100 | [diff] [blame] | 388 | LOGINT(module ? module->mod->ctx : parent ? parent->module->ctx : ext->module->ctx); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 389 | return NULL; |
| 390 | } |
| 391 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 392 | return next; |
| 393 | } |
| 394 | |
| 395 | API const struct lysc_node * |
Radek Krejci | 035dacf | 2021-02-12 18:25:53 +0100 | [diff] [blame] | 396 | lys_getnext(const struct lysc_node *last, const struct lysc_node *parent, const struct lysc_module *module, uint32_t options) |
| 397 | { |
| 398 | return lys_getnext_(last, parent, module, NULL, options); |
| 399 | } |
| 400 | |
| 401 | API const struct lysc_node * |
| 402 | lys_getnext_ext(const struct lysc_node *last, const struct lysc_node *parent, const struct lysc_ext_instance *ext, uint32_t options) |
| 403 | { |
| 404 | return lys_getnext_(last, parent, NULL, ext, options); |
| 405 | } |
| 406 | |
Radek Krejci | f16e254 | 2021-02-17 15:39:23 +0100 | [diff] [blame] | 407 | const struct lysc_node * |
Radek Krejci | ba05eab | 2021-03-10 13:19:29 +0100 | [diff] [blame] | 408 | lysc_ext_find_node(const struct lysc_ext_instance *ext, const struct lys_module *module, const char *name, size_t name_len, |
Radek Krejci | f16e254 | 2021-02-17 15:39:23 +0100 | [diff] [blame] | 409 | uint16_t nodetype, uint32_t options) |
| 410 | { |
| 411 | const struct lysc_node *node = NULL; |
| 412 | |
| 413 | LY_CHECK_ARG_RET(NULL, ext, name, NULL); |
| 414 | if (!nodetype) { |
| 415 | nodetype = LYS_NODETYPE_MASK; |
| 416 | } |
| 417 | |
| 418 | if (module && (module != ext->module)) { |
| 419 | return NULL; |
| 420 | } |
| 421 | |
| 422 | while ((node = lys_getnext_ext(node, NULL, ext, options))) { |
| 423 | if (!(node->nodetype & nodetype)) { |
| 424 | continue; |
| 425 | } |
| 426 | |
| 427 | if (name_len) { |
| 428 | if (!ly_strncmp(node->name, name, name_len)) { |
| 429 | return node; |
| 430 | } |
| 431 | } else { |
| 432 | if (!strcmp(node->name, name)) { |
| 433 | return node; |
| 434 | } |
| 435 | } |
| 436 | } |
| 437 | return NULL; |
| 438 | } |
| 439 | |
Radek Krejci | 035dacf | 2021-02-12 18:25:53 +0100 | [diff] [blame] | 440 | API const struct lysc_node * |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 441 | lys_find_child(const struct lysc_node *parent, const struct lys_module *module, const char *name, size_t name_len, |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 442 | uint16_t nodetype, uint32_t options) |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 443 | { |
| 444 | const struct lysc_node *node = NULL; |
| 445 | |
| 446 | LY_CHECK_ARG_RET(NULL, module, name, NULL); |
| 447 | if (!nodetype) { |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 448 | nodetype = LYS_NODETYPE_MASK; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 449 | } |
| 450 | |
| 451 | while ((node = lys_getnext(node, parent, module->compiled, options))) { |
| 452 | if (!(node->nodetype & nodetype)) { |
| 453 | continue; |
| 454 | } |
| 455 | if (node->module != module) { |
| 456 | continue; |
| 457 | } |
| 458 | |
| 459 | if (name_len) { |
Radek Krejci | 7f9b651 | 2019-09-18 13:11:09 +0200 | [diff] [blame] | 460 | if (!ly_strncmp(node->name, name, name_len)) { |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 461 | return node; |
| 462 | } |
| 463 | } else { |
| 464 | if (!strcmp(node->name, name)) { |
| 465 | return node; |
| 466 | } |
| 467 | } |
| 468 | } |
| 469 | return NULL; |
| 470 | } |
| 471 | |
Michal Vasko | 519fd60 | 2020-05-26 12:17:39 +0200 | [diff] [blame] | 472 | API LY_ERR |
Michal Vasko | 2651268 | 2021-01-11 11:35:40 +0100 | [diff] [blame] | 473 | lys_find_xpath_atoms(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *xpath, uint32_t options, |
| 474 | struct ly_set **set) |
Michal Vasko | 519fd60 | 2020-05-26 12:17:39 +0200 | [diff] [blame] | 475 | { |
| 476 | LY_ERR ret = LY_SUCCESS; |
| 477 | struct lyxp_set xp_set; |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 478 | struct lyxp_expr *exp = NULL; |
Michal Vasko | 519fd60 | 2020-05-26 12:17:39 +0200 | [diff] [blame] | 479 | uint32_t i; |
| 480 | |
Michal Vasko | 2651268 | 2021-01-11 11:35:40 +0100 | [diff] [blame] | 481 | LY_CHECK_ARG_RET(NULL, ctx || ctx_node, xpath, set, LY_EINVAL); |
Michal Vasko | 519fd60 | 2020-05-26 12:17:39 +0200 | [diff] [blame] | 482 | if (!(options & LYXP_SCNODE_ALL)) { |
| 483 | options = LYXP_SCNODE; |
| 484 | } |
Michal Vasko | 2651268 | 2021-01-11 11:35:40 +0100 | [diff] [blame] | 485 | if (!ctx) { |
| 486 | ctx = ctx_node->module->ctx; |
| 487 | } |
Michal Vasko | 519fd60 | 2020-05-26 12:17:39 +0200 | [diff] [blame] | 488 | |
| 489 | memset(&xp_set, 0, sizeof xp_set); |
| 490 | |
| 491 | /* compile expression */ |
Michal Vasko | 2651268 | 2021-01-11 11:35:40 +0100 | [diff] [blame] | 492 | ret = lyxp_expr_parse(ctx, xpath, 0, 1, &exp); |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 493 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 519fd60 | 2020-05-26 12:17:39 +0200 | [diff] [blame] | 494 | |
| 495 | /* atomize expression */ |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame^] | 496 | ret = lyxp_atomize(ctx, exp, NULL, LY_VALUE_JSON, NULL, ctx_node, &xp_set, options); |
Michal Vasko | 519fd60 | 2020-05-26 12:17:39 +0200 | [diff] [blame] | 497 | LY_CHECK_GOTO(ret, cleanup); |
| 498 | |
| 499 | /* allocate return set */ |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 500 | ret = ly_set_new(set); |
| 501 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 519fd60 | 2020-05-26 12:17:39 +0200 | [diff] [blame] | 502 | |
| 503 | /* transform into ly_set */ |
| 504 | (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs); |
Michal Vasko | 2651268 | 2021-01-11 11:35:40 +0100 | [diff] [blame] | 505 | LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(ctx); ret = LY_EMEM, cleanup); |
Michal Vasko | 519fd60 | 2020-05-26 12:17:39 +0200 | [diff] [blame] | 506 | (*set)->size = xp_set.used; |
| 507 | |
| 508 | for (i = 0; i < xp_set.used; ++i) { |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 509 | if (xp_set.val.scnodes[i].type == LYXP_NODE_ELEM) { |
Radek Krejci | 3d92e44 | 2020-10-12 12:48:13 +0200 | [diff] [blame] | 510 | ret = ly_set_add(*set, xp_set.val.scnodes[i].scnode, 1, NULL); |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 511 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 519fd60 | 2020-05-26 12:17:39 +0200 | [diff] [blame] | 512 | } |
| 513 | } |
| 514 | |
| 515 | cleanup: |
| 516 | lyxp_set_free_content(&xp_set); |
Michal Vasko | 2651268 | 2021-01-11 11:35:40 +0100 | [diff] [blame] | 517 | lyxp_expr_free(ctx, exp); |
Michal Vasko | 519fd60 | 2020-05-26 12:17:39 +0200 | [diff] [blame] | 518 | return ret; |
| 519 | } |
| 520 | |
Michal Vasko | 072de48 | 2020-08-05 13:27:21 +0200 | [diff] [blame] | 521 | API LY_ERR |
Michal Vasko | 40308e7 | 2020-10-20 16:38:40 +0200 | [diff] [blame] | 522 | lys_find_expr_atoms(const struct lysc_node *ctx_node, const struct lys_module *cur_mod, const struct lyxp_expr *expr, |
| 523 | const struct lysc_prefix *prefixes, uint32_t options, struct ly_set **set) |
| 524 | { |
| 525 | LY_ERR ret = LY_SUCCESS; |
| 526 | struct lyxp_set xp_set = {0}; |
| 527 | uint32_t i; |
| 528 | |
| 529 | LY_CHECK_ARG_RET(NULL, cur_mod, expr, prefixes, set, LY_EINVAL); |
| 530 | if (!(options & LYXP_SCNODE_ALL)) { |
| 531 | options = LYXP_SCNODE; |
| 532 | } |
| 533 | |
| 534 | /* atomize expression */ |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame^] | 535 | ret = lyxp_atomize(cur_mod->ctx, expr, cur_mod, LY_VALUE_SCHEMA_RESOLVED, (void *)prefixes, ctx_node, &xp_set, options); |
Michal Vasko | 40308e7 | 2020-10-20 16:38:40 +0200 | [diff] [blame] | 536 | LY_CHECK_GOTO(ret, cleanup); |
| 537 | |
| 538 | /* allocate return set */ |
| 539 | ret = ly_set_new(set); |
| 540 | LY_CHECK_GOTO(ret, cleanup); |
| 541 | |
| 542 | /* transform into ly_set */ |
| 543 | (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs); |
| 544 | LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(cur_mod->ctx); ret = LY_EMEM, cleanup); |
| 545 | (*set)->size = xp_set.used; |
| 546 | |
| 547 | for (i = 0; i < xp_set.used; ++i) { |
Michal Vasko | d97959c | 2020-12-10 12:18:28 +0100 | [diff] [blame] | 548 | if ((xp_set.val.scnodes[i].type == LYXP_NODE_ELEM) && (xp_set.val.scnodes[i].in_ctx >= LYXP_SET_SCNODE_ATOM)) { |
| 549 | assert((xp_set.val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM) || |
| 550 | (xp_set.val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX)); |
Michal Vasko | 40308e7 | 2020-10-20 16:38:40 +0200 | [diff] [blame] | 551 | ret = ly_set_add(*set, xp_set.val.scnodes[i].scnode, 1, NULL); |
| 552 | LY_CHECK_GOTO(ret, cleanup); |
| 553 | } |
| 554 | } |
| 555 | |
| 556 | cleanup: |
| 557 | lyxp_set_free_content(&xp_set); |
| 558 | if (ret) { |
| 559 | ly_set_free(*set, NULL); |
| 560 | *set = NULL; |
| 561 | } |
| 562 | return ret; |
| 563 | } |
| 564 | |
| 565 | API LY_ERR |
Michal Vasko | 2651268 | 2021-01-11 11:35:40 +0100 | [diff] [blame] | 566 | lys_find_xpath(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *xpath, uint32_t options, |
| 567 | struct ly_set **set) |
Michal Vasko | 072de48 | 2020-08-05 13:27:21 +0200 | [diff] [blame] | 568 | { |
| 569 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | 40308e7 | 2020-10-20 16:38:40 +0200 | [diff] [blame] | 570 | struct lyxp_set xp_set = {0}; |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 571 | struct lyxp_expr *exp = NULL; |
Michal Vasko | 072de48 | 2020-08-05 13:27:21 +0200 | [diff] [blame] | 572 | uint32_t i; |
| 573 | |
Michal Vasko | 2651268 | 2021-01-11 11:35:40 +0100 | [diff] [blame] | 574 | LY_CHECK_ARG_RET(NULL, ctx || ctx_node, xpath, set, LY_EINVAL); |
Michal Vasko | 072de48 | 2020-08-05 13:27:21 +0200 | [diff] [blame] | 575 | if (!(options & LYXP_SCNODE_ALL)) { |
| 576 | options = LYXP_SCNODE; |
| 577 | } |
Michal Vasko | 2651268 | 2021-01-11 11:35:40 +0100 | [diff] [blame] | 578 | if (!ctx) { |
| 579 | ctx = ctx_node->module->ctx; |
| 580 | } |
Michal Vasko | 072de48 | 2020-08-05 13:27:21 +0200 | [diff] [blame] | 581 | |
Michal Vasko | 072de48 | 2020-08-05 13:27:21 +0200 | [diff] [blame] | 582 | /* compile expression */ |
Michal Vasko | 2651268 | 2021-01-11 11:35:40 +0100 | [diff] [blame] | 583 | ret = lyxp_expr_parse(ctx, xpath, 0, 1, &exp); |
Radek Krejci | f03a9e2 | 2020-09-18 20:09:31 +0200 | [diff] [blame] | 584 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 072de48 | 2020-08-05 13:27:21 +0200 | [diff] [blame] | 585 | |
| 586 | /* atomize expression */ |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame^] | 587 | ret = lyxp_atomize(ctx, exp, NULL, LY_VALUE_JSON, NULL, ctx_node, &xp_set, options); |
Michal Vasko | 072de48 | 2020-08-05 13:27:21 +0200 | [diff] [blame] | 588 | LY_CHECK_GOTO(ret, cleanup); |
| 589 | |
| 590 | /* allocate return set */ |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 591 | ret = ly_set_new(set); |
| 592 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 072de48 | 2020-08-05 13:27:21 +0200 | [diff] [blame] | 593 | |
| 594 | /* transform into ly_set */ |
| 595 | (*set)->objs = malloc(xp_set.used * sizeof *(*set)->objs); |
Michal Vasko | 2651268 | 2021-01-11 11:35:40 +0100 | [diff] [blame] | 596 | LY_CHECK_ERR_GOTO(!(*set)->objs, LOGMEM(ctx); ret = LY_EMEM, cleanup); |
Michal Vasko | 072de48 | 2020-08-05 13:27:21 +0200 | [diff] [blame] | 597 | (*set)->size = xp_set.used; |
| 598 | |
| 599 | for (i = 0; i < xp_set.used; ++i) { |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 600 | if ((xp_set.val.scnodes[i].type == LYXP_NODE_ELEM) && (xp_set.val.scnodes[i].in_ctx == LYXP_SET_SCNODE_ATOM_CTX)) { |
Radek Krejci | 3d92e44 | 2020-10-12 12:48:13 +0200 | [diff] [blame] | 601 | ret = ly_set_add(*set, xp_set.val.scnodes[i].scnode, 1, NULL); |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 602 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 072de48 | 2020-08-05 13:27:21 +0200 | [diff] [blame] | 603 | } |
| 604 | } |
| 605 | |
| 606 | cleanup: |
| 607 | lyxp_set_free_content(&xp_set); |
Michal Vasko | 2651268 | 2021-01-11 11:35:40 +0100 | [diff] [blame] | 608 | lyxp_expr_free(ctx, exp); |
Michal Vasko | ae15966 | 2020-10-21 11:57:24 +0200 | [diff] [blame] | 609 | if (ret) { |
Michal Vasko | 40308e7 | 2020-10-20 16:38:40 +0200 | [diff] [blame] | 610 | ly_set_free(*set, NULL); |
| 611 | *set = NULL; |
| 612 | } |
Michal Vasko | 072de48 | 2020-08-05 13:27:21 +0200 | [diff] [blame] | 613 | return ret; |
| 614 | } |
| 615 | |
Radek Krejci | bc5644c | 2020-10-27 14:53:17 +0100 | [diff] [blame] | 616 | API LY_ERR |
| 617 | lys_find_lypath_atoms(const struct ly_path *path, struct ly_set **set) |
| 618 | { |
| 619 | LY_ERR ret = LY_SUCCESS; |
| 620 | LY_ARRAY_COUNT_TYPE u, v; |
| 621 | |
| 622 | LY_CHECK_ARG_RET(NULL, path, set, LY_EINVAL); |
| 623 | |
| 624 | /* allocate return set */ |
| 625 | LY_CHECK_RET(ly_set_new(set)); |
| 626 | |
| 627 | LY_ARRAY_FOR(path, u) { |
| 628 | /* add nodes from the path */ |
| 629 | LY_CHECK_GOTO(ret = ly_set_add(*set, (void *)path[u].node, 0, NULL), cleanup); |
| 630 | if (path[u].pred_type == LY_PATH_PREDTYPE_LIST) { |
| 631 | LY_ARRAY_FOR(path[u].predicates, v) { |
| 632 | /* add all the keys in a predicate */ |
| 633 | LY_CHECK_GOTO(ret = ly_set_add(*set, (void *)path[u].predicates[v].key, 0, NULL), cleanup); |
| 634 | } |
| 635 | } |
| 636 | } |
| 637 | |
| 638 | cleanup: |
| 639 | if (ret) { |
| 640 | ly_set_free(*set, NULL); |
| 641 | *set = NULL; |
| 642 | } |
| 643 | return ret; |
| 644 | } |
| 645 | |
| 646 | API LY_ERR |
| 647 | lys_find_path_atoms(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *path, ly_bool output, |
| 648 | struct ly_set **set) |
| 649 | { |
| 650 | LY_ERR ret = LY_SUCCESS; |
| 651 | uint8_t oper; |
| 652 | struct lyxp_expr *expr = NULL; |
| 653 | struct ly_path *p = NULL; |
| 654 | |
| 655 | LY_CHECK_ARG_RET(ctx, ctx || ctx_node, path, set, LY_EINVAL); |
| 656 | |
| 657 | if (!ctx) { |
| 658 | ctx = ctx_node->module->ctx; |
| 659 | } |
| 660 | |
| 661 | /* parse */ |
| 662 | ret = lyxp_expr_parse(ctx, path, strlen(path), 0, &expr); |
| 663 | LY_CHECK_GOTO(ret, cleanup); |
| 664 | |
| 665 | /* compile */ |
| 666 | oper = output ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT; |
Radek Krejci | d5d3743 | 2021-03-12 13:46:40 +0100 | [diff] [blame] | 667 | ret = ly_path_compile(ctx, NULL, ctx_node, NULL, expr, LY_PATH_LREF_FALSE, oper, LY_PATH_TARGET_MANY, |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame^] | 668 | LY_VALUE_JSON, NULL, NULL, &p); |
Radek Krejci | bc5644c | 2020-10-27 14:53:17 +0100 | [diff] [blame] | 669 | LY_CHECK_GOTO(ret, cleanup); |
| 670 | |
| 671 | /* resolve */ |
| 672 | ret = lys_find_lypath_atoms(p, set); |
| 673 | |
| 674 | cleanup: |
| 675 | ly_path_free(ctx, p); |
| 676 | lyxp_expr_free(ctx, expr); |
| 677 | return ret; |
| 678 | } |
| 679 | |
| 680 | API const struct lysc_node * |
| 681 | lys_find_path(const struct ly_ctx *ctx, const struct lysc_node *ctx_node, const char *path, ly_bool output) |
| 682 | { |
| 683 | const struct lysc_node *snode = NULL; |
| 684 | struct lyxp_expr *exp = NULL; |
| 685 | struct ly_path *p = NULL; |
| 686 | LY_ERR ret; |
| 687 | uint8_t oper; |
| 688 | |
| 689 | LY_CHECK_ARG_RET(ctx, ctx || ctx_node, NULL); |
| 690 | |
| 691 | if (!ctx) { |
| 692 | ctx = ctx_node->module->ctx; |
| 693 | } |
| 694 | |
| 695 | /* parse */ |
| 696 | ret = lyxp_expr_parse(ctx, path, strlen(path), 0, &exp); |
| 697 | LY_CHECK_GOTO(ret, cleanup); |
| 698 | |
| 699 | /* compile */ |
| 700 | oper = output ? LY_PATH_OPER_OUTPUT : LY_PATH_OPER_INPUT; |
Radek Krejci | d5d3743 | 2021-03-12 13:46:40 +0100 | [diff] [blame] | 701 | ret = ly_path_compile(ctx, NULL, ctx_node, NULL, exp, LY_PATH_LREF_FALSE, oper, LY_PATH_TARGET_MANY, |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame^] | 702 | LY_VALUE_JSON, NULL, NULL, &p); |
Radek Krejci | bc5644c | 2020-10-27 14:53:17 +0100 | [diff] [blame] | 703 | LY_CHECK_GOTO(ret, cleanup); |
| 704 | |
| 705 | /* get last node */ |
| 706 | snode = p[LY_ARRAY_COUNT(p) - 1].node; |
| 707 | |
| 708 | cleanup: |
| 709 | ly_path_free(ctx, p); |
| 710 | lyxp_expr_free(ctx, exp); |
| 711 | return snode; |
| 712 | } |
| 713 | |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 714 | char * |
| 715 | lysc_path_until(const struct lysc_node *node, const struct lysc_node *parent, LYSC_PATH_TYPE pathtype, char *buffer, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 716 | size_t buflen) |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 717 | { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 718 | const struct lysc_node *iter; |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 719 | char *path = NULL; |
| 720 | int len = 0; |
| 721 | |
Radek Krejci | 3bbd93e | 2019-07-24 09:57:23 +0200 | [diff] [blame] | 722 | if (buffer) { |
| 723 | LY_CHECK_ARG_RET(node->module->ctx, buflen > 1, NULL); |
Michal Vasko | 770d3fc | 2021-01-26 09:14:35 +0100 | [diff] [blame] | 724 | buffer[0] = '\0'; |
Radek Krejci | 3bbd93e | 2019-07-24 09:57:23 +0200 | [diff] [blame] | 725 | } |
| 726 | |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 727 | switch (pathtype) { |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 728 | case LYSC_PATH_LOG: |
Michal Vasko | 65de040 | 2020-08-03 16:34:19 +0200 | [diff] [blame] | 729 | case LYSC_PATH_DATA: |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 730 | for (iter = node; iter && (iter != parent) && (len >= 0); iter = iter->parent) { |
Michal Vasko | 11deea1 | 2020-08-05 13:54:50 +0200 | [diff] [blame] | 731 | char *s, *id; |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 732 | const char *slash; |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 733 | |
Michal Vasko | 721b6f6 | 2021-02-08 08:52:53 +0100 | [diff] [blame] | 734 | if ((pathtype == LYSC_PATH_DATA) && (iter->nodetype & (LYS_CHOICE | LYS_CASE | LYS_INPUT | LYS_OUTPUT))) { |
Michal Vasko | 65de040 | 2020-08-03 16:34:19 +0200 | [diff] [blame] | 735 | /* schema-only node */ |
| 736 | continue; |
| 737 | } |
| 738 | |
Michal Vasko | 11deea1 | 2020-08-05 13:54:50 +0200 | [diff] [blame] | 739 | s = buffer ? strdup(buffer) : path; |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 740 | id = strdup(iter->name); |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 741 | if (parent && (iter->parent == parent)) { |
| 742 | slash = ""; |
| 743 | } else { |
| 744 | slash = "/"; |
| 745 | } |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 746 | if (!iter->parent || (iter->parent->module != iter->module)) { |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 747 | /* print prefix */ |
Radek Krejci | 1c0c344 | 2019-07-23 16:08:47 +0200 | [diff] [blame] | 748 | if (buffer) { |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 749 | len = snprintf(buffer, buflen, "%s%s:%s%s", slash, iter->module->name, id, s ? s : ""); |
Radek Krejci | 1c0c344 | 2019-07-23 16:08:47 +0200 | [diff] [blame] | 750 | } else { |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 751 | len = asprintf(&path, "%s%s:%s%s", slash, iter->module->name, id, s ? s : ""); |
Radek Krejci | 1c0c344 | 2019-07-23 16:08:47 +0200 | [diff] [blame] | 752 | } |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 753 | } else { |
| 754 | /* prefix is the same as in parent */ |
Radek Krejci | 1c0c344 | 2019-07-23 16:08:47 +0200 | [diff] [blame] | 755 | if (buffer) { |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 756 | len = snprintf(buffer, buflen, "%s%s%s", slash, id, s ? s : ""); |
Radek Krejci | 1c0c344 | 2019-07-23 16:08:47 +0200 | [diff] [blame] | 757 | } else { |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 758 | len = asprintf(&path, "%s%s%s", slash, id, s ? s : ""); |
Radek Krejci | 1c0c344 | 2019-07-23 16:08:47 +0200 | [diff] [blame] | 759 | } |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 760 | } |
| 761 | free(s); |
| 762 | free(id); |
Radek Krejci | 1c0c344 | 2019-07-23 16:08:47 +0200 | [diff] [blame] | 763 | |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 764 | if (buffer && (buflen <= (size_t)len)) { |
Radek Krejci | 1c0c344 | 2019-07-23 16:08:47 +0200 | [diff] [blame] | 765 | /* not enough space in buffer */ |
| 766 | break; |
| 767 | } |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 768 | } |
| 769 | |
| 770 | if (len < 0) { |
| 771 | free(path); |
| 772 | path = NULL; |
| 773 | } else if (len == 0) { |
Radek Krejci | 3bbd93e | 2019-07-24 09:57:23 +0200 | [diff] [blame] | 774 | if (buffer) { |
| 775 | strcpy(buffer, "/"); |
| 776 | } else { |
| 777 | path = strdup("/"); |
| 778 | } |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 779 | } |
| 780 | break; |
| 781 | } |
| 782 | |
Radek Krejci | 1c0c344 | 2019-07-23 16:08:47 +0200 | [diff] [blame] | 783 | if (buffer) { |
| 784 | return buffer; |
| 785 | } else { |
| 786 | return path; |
| 787 | } |
Radek Krejci | 327de16 | 2019-06-14 12:52:07 +0200 | [diff] [blame] | 788 | } |
| 789 | |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 790 | API char * |
| 791 | lysc_path(const struct lysc_node *node, LYSC_PATH_TYPE pathtype, char *buffer, size_t buflen) |
| 792 | { |
| 793 | return lysc_path_until(node, NULL, pathtype, buffer, buflen); |
| 794 | } |
| 795 | |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 796 | LY_ERR |
| 797 | lys_set_implemented_r(struct lys_module *mod, const char **features, struct lys_glob_unres *unres) |
Radek Krejci | 77a8bcd | 2019-09-11 11:20:02 +0200 | [diff] [blame] | 798 | { |
| 799 | struct lys_module *m; |
| 800 | |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 801 | assert(!mod->implemented); |
Radek Krejci | 77a8bcd | 2019-09-11 11:20:02 +0200 | [diff] [blame] | 802 | |
| 803 | /* we have module from the current context */ |
| 804 | m = ly_ctx_get_module_implemented(mod->ctx, mod->name); |
| 805 | if (m) { |
Michal Vasko | 89b5c07 | 2020-10-06 13:52:44 +0200 | [diff] [blame] | 806 | assert(m != mod); |
| 807 | |
| 808 | /* check collision with other implemented revision */ |
| 809 | LOGERR(mod->ctx, LY_EDENIED, "Module \"%s%s%s\" is present in the context in other implemented revision (%s).", |
| 810 | mod->name, mod->revision ? "@" : "", mod->revision ? mod->revision : "", m->revision ? m->revision : "none"); |
| 811 | return LY_EDENIED; |
Radek Krejci | 77a8bcd | 2019-09-11 11:20:02 +0200 | [diff] [blame] | 812 | } |
| 813 | |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 814 | /* enable features */ |
| 815 | LY_CHECK_RET(lys_enable_features(mod->parsed, features)); |
| 816 | |
Michal Vasko | 579530f | 2021-04-26 13:21:04 +0200 | [diff] [blame] | 817 | if (mod->ctx->flags & LY_CTX_EXPLICIT_COMPILE) { |
| 818 | /* do not compile the module yet */ |
| 819 | mod->to_compile = 1; |
| 820 | return LY_SUCCESS; |
| 821 | } |
| 822 | |
Michal Vasko | 89b5c07 | 2020-10-06 13:52:44 +0200 | [diff] [blame] | 823 | /* add the module into newly implemented module set */ |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 824 | LY_CHECK_RET(ly_set_add(&unres->implementing, mod, 1, NULL)); |
Michal Vasko | 89b5c07 | 2020-10-06 13:52:44 +0200 | [diff] [blame] | 825 | |
Radek Krejci | 77a8bcd | 2019-09-11 11:20:02 +0200 | [diff] [blame] | 826 | /* mark the module implemented, check for collision was already done */ |
Michal Vasko | 89b5c07 | 2020-10-06 13:52:44 +0200 | [diff] [blame] | 827 | mod->implemented = 1; |
Radek Krejci | 77a8bcd | 2019-09-11 11:20:02 +0200 | [diff] [blame] | 828 | |
| 829 | /* compile the schema */ |
Michal Vasko | 1ccbf54 | 2021-04-19 11:35:00 +0200 | [diff] [blame] | 830 | LY_CHECK_RET(lys_compile(mod, 0, unres)); |
| 831 | |
| 832 | /* new module is implemented and compiled */ |
| 833 | unres->full_compilation = 0; |
| 834 | |
| 835 | return LY_SUCCESS; |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 836 | } |
Radek Krejci | 77a8bcd | 2019-09-11 11:20:02 +0200 | [diff] [blame] | 837 | |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 838 | API LY_ERR |
| 839 | lys_set_implemented(struct lys_module *mod, const char **features) |
| 840 | { |
| 841 | LY_ERR ret = LY_SUCCESS, r; |
| 842 | struct lys_glob_unres unres = {0}; |
Radek Krejci | 77a8bcd | 2019-09-11 11:20:02 +0200 | [diff] [blame] | 843 | |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 844 | LY_CHECK_ARG_RET(NULL, mod, LY_EINVAL); |
Michal Vasko | 916aefb | 2020-11-02 15:43:16 +0100 | [diff] [blame] | 845 | |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 846 | if (mod->implemented) { |
| 847 | /* mod is already implemented, set the features */ |
| 848 | r = lys_set_features(mod->parsed, features); |
| 849 | if (r == LY_EEXIST) { |
| 850 | /* no changes */ |
| 851 | return LY_SUCCESS; |
| 852 | } else if (r) { |
| 853 | /* error */ |
| 854 | return r; |
Michal Vasko | 89b5c07 | 2020-10-06 13:52:44 +0200 | [diff] [blame] | 855 | } |
| 856 | |
Michal Vasko | 01db7de | 2021-04-16 12:23:30 +0200 | [diff] [blame] | 857 | if (mod->ctx->flags & LY_CTX_EXPLICIT_COMPILE) { |
| 858 | /* just mark the module as changed */ |
| 859 | mod->to_compile = 1; |
| 860 | return LY_SUCCESS; |
| 861 | } else { |
| 862 | /* full recompilation */ |
| 863 | return lys_recompile(mod->ctx, 1); |
| 864 | } |
Michal Vasko | 89b5c07 | 2020-10-06 13:52:44 +0200 | [diff] [blame] | 865 | } |
Michal Vasko | 08c8b27 | 2020-11-24 18:11:30 +0100 | [diff] [blame] | 866 | |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 867 | /* implement this module and any other required modules, recursively */ |
| 868 | ret = lys_set_implemented_r(mod, features, &unres); |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 869 | |
| 870 | /* the first module being implemented is finished, resolve global unres, consolidate the set */ |
| 871 | if (!ret) { |
| 872 | ret = lys_compile_unres_glob(mod->ctx, &unres); |
| 873 | } |
| 874 | if (ret) { |
| 875 | /* failure, full compile revert */ |
| 876 | lys_compile_unres_glob_revert(mod->ctx, &unres); |
| 877 | } |
| 878 | |
| 879 | lys_compile_unres_glob_erase(mod->ctx, &unres); |
Michal Vasko | 89b5c07 | 2020-10-06 13:52:44 +0200 | [diff] [blame] | 880 | return ret; |
Radek Krejci | 77a8bcd | 2019-09-11 11:20:02 +0200 | [diff] [blame] | 881 | } |
| 882 | |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 883 | static LY_ERR |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 884 | lys_resolve_import_include(struct lys_parser_ctx *pctx, struct lysp_module *pmod) |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 885 | { |
| 886 | struct lysp_import *imp; |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 887 | LY_ARRAY_COUNT_TYPE u, v; |
| 888 | |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 889 | pmod->parsing = 1; |
| 890 | LY_ARRAY_FOR(pmod->imports, u) { |
| 891 | imp = &pmod->imports[u]; |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 892 | if (!imp->module) { |
Michal Vasko | 18a86e5 | 2021-04-16 11:50:13 +0200 | [diff] [blame] | 893 | LY_CHECK_RET(lys_load_module(PARSER_CTX(pctx), imp->name, imp->rev[0] ? imp->rev : NULL, 0, NULL, |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 894 | pctx->unres, &imp->module)); |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 895 | } |
| 896 | /* check for importing the same module twice */ |
| 897 | for (v = 0; v < u; ++v) { |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 898 | if (imp->module == pmod->imports[v].module) { |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 899 | LOGWRN(PARSER_CTX(pctx), "Single revision of the module \"%s\" imported twice.", imp->name); |
| 900 | } |
| 901 | } |
| 902 | } |
Radek Krejci | 771928a | 2021-01-19 13:42:36 +0100 | [diff] [blame] | 903 | LY_CHECK_RET(lysp_load_submodules(pctx, pmod)); |
| 904 | |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 905 | pmod->parsing = 0; |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 906 | |
| 907 | return LY_SUCCESS; |
| 908 | } |
| 909 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 910 | LY_ERR |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 911 | lys_parse_submodule(struct ly_ctx *ctx, struct ly_in *in, LYS_INFORMAT format, struct lys_parser_ctx *main_ctx, |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 912 | LY_ERR (*custom_check)(const struct ly_ctx *, struct lysp_module *, struct lysp_submodule *, void *), |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 913 | void *check_data, struct lysp_submodule **submodule) |
Radek Krejci | 9f5e6fb | 2018-10-25 09:26:12 +0200 | [diff] [blame] | 914 | { |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 915 | LY_ERR ret; |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 916 | struct lysp_submodule *submod = NULL, *latest_sp; |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 917 | struct lys_yang_parser_ctx *yangctx = NULL; |
| 918 | struct lys_yin_parser_ctx *yinctx = NULL; |
| 919 | struct lys_parser_ctx *pctx; |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 920 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 921 | LY_CHECK_ARG_RET(ctx, ctx, in, LY_EINVAL); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 922 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 923 | switch (format) { |
| 924 | case LYS_IN_YIN: |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 925 | ret = yin_parse_submodule(&yinctx, ctx, main_ctx, in, &submod); |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 926 | pctx = (struct lys_parser_ctx *)yinctx; |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 927 | break; |
| 928 | case LYS_IN_YANG: |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 929 | ret = yang_parse_submodule(&yangctx, ctx, main_ctx, in, &submod); |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 930 | pctx = (struct lys_parser_ctx *)yangctx; |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 931 | break; |
| 932 | default: |
David Sedlák | 4f2f5ba | 2019-08-15 13:18:48 +0200 | [diff] [blame] | 933 | LOGERR(ctx, LY_EINVAL, "Invalid schema input format."); |
Radek Krejci | 82fa8d4 | 2020-07-11 22:00:59 +0200 | [diff] [blame] | 934 | ret = LY_EINVAL; |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 935 | break; |
Radek Krejci | 9f5e6fb | 2018-10-25 09:26:12 +0200 | [diff] [blame] | 936 | } |
Radek Krejci | f6923e8 | 2020-07-02 16:36:53 +0200 | [diff] [blame] | 937 | LY_CHECK_GOTO(ret, error); |
Radek Krejci | f027df7 | 2020-09-15 13:00:28 +0200 | [diff] [blame] | 938 | assert(submod); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 939 | |
| 940 | /* make sure that the newest revision is at position 0 */ |
| 941 | lysp_sort_revisions(submod->revs); |
| 942 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 943 | /* decide the latest revision */ |
Michal Vasko | 8dc3199 | 2021-02-22 10:30:47 +0100 | [diff] [blame] | 944 | latest_sp = (struct lysp_submodule *)ly_ctx_get_submodule2_latest(submod->mod, submod->name); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 945 | if (latest_sp) { |
| 946 | if (submod->revs) { |
| 947 | if (!latest_sp->revs) { |
| 948 | /* latest has no revision, so mod is anyway newer */ |
| 949 | submod->latest_revision = latest_sp->latest_revision; |
Radek Krejci | b3289d6 | 2019-09-18 12:21:39 +0200 | [diff] [blame] | 950 | /* the latest_sp is zeroed later when the new module is being inserted into the context */ |
| 951 | } else if (strcmp(submod->revs[0].date, latest_sp->revs[0].date) > 0) { |
| 952 | submod->latest_revision = latest_sp->latest_revision; |
| 953 | /* the latest_sp is zeroed later when the new module is being inserted into the context */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 954 | } else { |
Radek Krejci | b3289d6 | 2019-09-18 12:21:39 +0200 | [diff] [blame] | 955 | latest_sp = NULL; |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 956 | } |
Radek Krejci | b3289d6 | 2019-09-18 12:21:39 +0200 | [diff] [blame] | 957 | } else { |
| 958 | latest_sp = NULL; |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 959 | } |
| 960 | } else { |
| 961 | submod->latest_revision = 1; |
| 962 | } |
| 963 | |
Radek Krejci | b3289d6 | 2019-09-18 12:21:39 +0200 | [diff] [blame] | 964 | if (custom_check) { |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 965 | LY_CHECK_GOTO(ret = custom_check(ctx, NULL, submod, check_data), error); |
Radek Krejci | b3289d6 | 2019-09-18 12:21:39 +0200 | [diff] [blame] | 966 | } |
| 967 | |
| 968 | if (latest_sp) { |
| 969 | latest_sp->latest_revision = 0; |
| 970 | } |
| 971 | |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 972 | lys_parser_fill_filepath(ctx, in, &submod->filepath); |
| 973 | |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 974 | /* resolve imports and includes */ |
| 975 | LY_CHECK_GOTO(ret = lys_resolve_import_include(pctx, (struct lysp_module *)submod), error); |
| 976 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 977 | /* remap possibly changed and reallocated typedefs and groupings list back to the main context */ |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 978 | memcpy(&main_ctx->tpdfs_nodes, &pctx->tpdfs_nodes, sizeof main_ctx->tpdfs_nodes); |
| 979 | memcpy(&main_ctx->grps_nodes, &pctx->grps_nodes, sizeof main_ctx->grps_nodes); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 980 | |
David Sedlák | 1b62312 | 2019-08-05 15:27:49 +0200 | [diff] [blame] | 981 | if (format == LYS_IN_YANG) { |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 982 | yang_parser_ctx_free(yangctx); |
David Sedlák | 1b62312 | 2019-08-05 15:27:49 +0200 | [diff] [blame] | 983 | } else { |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 984 | yin_parser_ctx_free(yinctx); |
David Sedlák | 1b62312 | 2019-08-05 15:27:49 +0200 | [diff] [blame] | 985 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 986 | *submodule = submod; |
| 987 | return LY_SUCCESS; |
David Sedlák | 1b62312 | 2019-08-05 15:27:49 +0200 | [diff] [blame] | 988 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 989 | error: |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 990 | lysp_module_free((struct lysp_module *)submod); |
David Sedlák | 1b62312 | 2019-08-05 15:27:49 +0200 | [diff] [blame] | 991 | if (format == LYS_IN_YANG) { |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 992 | yang_parser_ctx_free(yangctx); |
David Sedlák | 1b62312 | 2019-08-05 15:27:49 +0200 | [diff] [blame] | 993 | } else { |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 994 | yin_parser_ctx_free(yinctx); |
David Sedlák | 1b62312 | 2019-08-05 15:27:49 +0200 | [diff] [blame] | 995 | } |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 996 | return ret; |
Radek Krejci | 9f5e6fb | 2018-10-25 09:26:12 +0200 | [diff] [blame] | 997 | } |
| 998 | |
Michal Vasko | 45b521c | 2020-11-04 17:14:39 +0100 | [diff] [blame] | 999 | /** |
| 1000 | * @brief Add ietf-netconf metadata to the parsed module. Operation, filter, and select are added. |
| 1001 | * |
| 1002 | * @param[in] mod Parsed module to add to. |
| 1003 | * @return LY_SUCCESS on success. |
| 1004 | * @return LY_ERR on error. |
| 1005 | */ |
| 1006 | static LY_ERR |
| 1007 | lys_parsed_add_internal_ietf_netconf(struct lysp_module *mod) |
| 1008 | { |
| 1009 | struct lysp_ext_instance *ext_p; |
| 1010 | struct lysp_stmt *stmt; |
| 1011 | struct lysp_import *imp; |
| 1012 | |
| 1013 | /* |
| 1014 | * 1) edit-config's operation |
| 1015 | */ |
| 1016 | LY_ARRAY_NEW_RET(mod->mod->ctx, mod->exts, ext_p, LY_EMEM); |
| 1017 | LY_CHECK_ERR_RET(!ext_p, LOGMEM(mod->mod->ctx), LY_EMEM); |
| 1018 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_:annotation", 0, &ext_p->name)); |
| 1019 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "operation", 0, &ext_p->argument)); |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame^] | 1020 | ext_p->format = LY_VALUE_SCHEMA; |
Michal Vasko | fc2cd07 | 2021-02-24 13:17:17 +0100 | [diff] [blame] | 1021 | ext_p->prefix_data = mod; |
Michal Vasko | 45b521c | 2020-11-04 17:14:39 +0100 | [diff] [blame] | 1022 | ext_p->flags = LYS_INTERNAL; |
Radek Krejci | ab43086 | 2021-03-02 20:13:40 +0100 | [diff] [blame] | 1023 | ext_p->parent_stmt = LY_STMT_MODULE; |
| 1024 | ext_p->parent_stmt_index = 0; |
Michal Vasko | 45b521c | 2020-11-04 17:14:39 +0100 | [diff] [blame] | 1025 | |
| 1026 | ext_p->child = stmt = calloc(1, sizeof *ext_p->child); |
| 1027 | LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM); |
| 1028 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &stmt->stmt)); |
| 1029 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enumeration", 0, &stmt->arg)); |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame^] | 1030 | stmt->format = LY_VALUE_SCHEMA; |
Michal Vasko | fc2cd07 | 2021-02-24 13:17:17 +0100 | [diff] [blame] | 1031 | stmt->prefix_data = mod; |
Michal Vasko | 45b521c | 2020-11-04 17:14:39 +0100 | [diff] [blame] | 1032 | stmt->kw = LY_STMT_TYPE; |
| 1033 | |
| 1034 | stmt->child = calloc(1, sizeof *stmt->child); |
| 1035 | stmt = stmt->child; |
| 1036 | LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM); |
| 1037 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt)); |
| 1038 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "merge", 0, &stmt->arg)); |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame^] | 1039 | stmt->format = LY_VALUE_SCHEMA; |
Michal Vasko | fc2cd07 | 2021-02-24 13:17:17 +0100 | [diff] [blame] | 1040 | stmt->prefix_data = mod; |
Michal Vasko | 45b521c | 2020-11-04 17:14:39 +0100 | [diff] [blame] | 1041 | stmt->kw = LY_STMT_ENUM; |
| 1042 | |
| 1043 | stmt->next = calloc(1, sizeof *stmt->child); |
| 1044 | stmt = stmt->next; |
| 1045 | LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM); |
| 1046 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt)); |
| 1047 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "replace", 0, &stmt->arg)); |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame^] | 1048 | stmt->format = LY_VALUE_SCHEMA; |
Michal Vasko | fc2cd07 | 2021-02-24 13:17:17 +0100 | [diff] [blame] | 1049 | stmt->prefix_data = mod; |
Michal Vasko | 45b521c | 2020-11-04 17:14:39 +0100 | [diff] [blame] | 1050 | stmt->kw = LY_STMT_ENUM; |
| 1051 | |
| 1052 | stmt->next = calloc(1, sizeof *stmt->child); |
| 1053 | stmt = stmt->next; |
| 1054 | LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM); |
| 1055 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt)); |
| 1056 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "create", 0, &stmt->arg)); |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame^] | 1057 | stmt->format = LY_VALUE_SCHEMA; |
Michal Vasko | fc2cd07 | 2021-02-24 13:17:17 +0100 | [diff] [blame] | 1058 | stmt->prefix_data = mod; |
Michal Vasko | 45b521c | 2020-11-04 17:14:39 +0100 | [diff] [blame] | 1059 | stmt->kw = LY_STMT_ENUM; |
| 1060 | |
| 1061 | stmt->next = calloc(1, sizeof *stmt->child); |
| 1062 | stmt = stmt->next; |
| 1063 | LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM); |
| 1064 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt)); |
| 1065 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "delete", 0, &stmt->arg)); |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame^] | 1066 | stmt->format = LY_VALUE_SCHEMA; |
Michal Vasko | fc2cd07 | 2021-02-24 13:17:17 +0100 | [diff] [blame] | 1067 | stmt->prefix_data = mod; |
Michal Vasko | 45b521c | 2020-11-04 17:14:39 +0100 | [diff] [blame] | 1068 | stmt->kw = LY_STMT_ENUM; |
| 1069 | |
| 1070 | stmt->next = calloc(1, sizeof *stmt->child); |
| 1071 | stmt = stmt->next; |
| 1072 | LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM); |
| 1073 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt)); |
| 1074 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "remove", 0, &stmt->arg)); |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame^] | 1075 | stmt->format = LY_VALUE_SCHEMA; |
Michal Vasko | fc2cd07 | 2021-02-24 13:17:17 +0100 | [diff] [blame] | 1076 | stmt->prefix_data = mod; |
Michal Vasko | 45b521c | 2020-11-04 17:14:39 +0100 | [diff] [blame] | 1077 | stmt->kw = LY_STMT_ENUM; |
| 1078 | |
| 1079 | /* |
| 1080 | * 2) filter's type |
| 1081 | */ |
| 1082 | LY_ARRAY_NEW_RET(mod->mod->ctx, mod->exts, ext_p, LY_EMEM); |
| 1083 | LY_CHECK_ERR_RET(!ext_p, LOGMEM(mod->mod->ctx), LY_EMEM); |
| 1084 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_:annotation", 0, &ext_p->name)); |
| 1085 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &ext_p->argument)); |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame^] | 1086 | ext_p->format = LY_VALUE_SCHEMA; |
Michal Vasko | fc2cd07 | 2021-02-24 13:17:17 +0100 | [diff] [blame] | 1087 | ext_p->prefix_data = mod; |
Michal Vasko | 45b521c | 2020-11-04 17:14:39 +0100 | [diff] [blame] | 1088 | ext_p->flags = LYS_INTERNAL; |
Radek Krejci | ab43086 | 2021-03-02 20:13:40 +0100 | [diff] [blame] | 1089 | ext_p->parent_stmt = LY_STMT_MODULE; |
| 1090 | ext_p->parent_stmt_index = 0; |
Michal Vasko | 45b521c | 2020-11-04 17:14:39 +0100 | [diff] [blame] | 1091 | |
| 1092 | ext_p->child = stmt = calloc(1, sizeof *ext_p->child); |
| 1093 | LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM); |
| 1094 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &stmt->stmt)); |
| 1095 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enumeration", 0, &stmt->arg)); |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame^] | 1096 | stmt->format = LY_VALUE_SCHEMA; |
Michal Vasko | fc2cd07 | 2021-02-24 13:17:17 +0100 | [diff] [blame] | 1097 | stmt->prefix_data = mod; |
Michal Vasko | 45b521c | 2020-11-04 17:14:39 +0100 | [diff] [blame] | 1098 | stmt->kw = LY_STMT_TYPE; |
| 1099 | |
| 1100 | stmt->child = calloc(1, sizeof *stmt->child); |
| 1101 | stmt = stmt->child; |
| 1102 | LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM); |
| 1103 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt)); |
| 1104 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "subtree", 0, &stmt->arg)); |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame^] | 1105 | stmt->format = LY_VALUE_SCHEMA; |
Michal Vasko | fc2cd07 | 2021-02-24 13:17:17 +0100 | [diff] [blame] | 1106 | stmt->prefix_data = mod; |
Michal Vasko | 45b521c | 2020-11-04 17:14:39 +0100 | [diff] [blame] | 1107 | stmt->kw = LY_STMT_ENUM; |
| 1108 | |
| 1109 | stmt->next = calloc(1, sizeof *stmt->child); |
| 1110 | stmt = stmt->next; |
| 1111 | LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM); |
| 1112 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "enum", 0, &stmt->stmt)); |
| 1113 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "xpath", 0, &stmt->arg)); |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame^] | 1114 | stmt->format = LY_VALUE_SCHEMA; |
Michal Vasko | fc2cd07 | 2021-02-24 13:17:17 +0100 | [diff] [blame] | 1115 | stmt->prefix_data = mod; |
Michal Vasko | 45b521c | 2020-11-04 17:14:39 +0100 | [diff] [blame] | 1116 | stmt->kw = LY_STMT_ENUM; |
| 1117 | |
| 1118 | /* if-feature for enum allowed only for YANG 1.1 modules */ |
| 1119 | if (mod->version >= LYS_VERSION_1_1) { |
| 1120 | stmt->child = calloc(1, sizeof *stmt->child); |
| 1121 | stmt = stmt->child; |
| 1122 | LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM); |
| 1123 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "if-feature", 0, &stmt->stmt)); |
| 1124 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "xpath", 0, &stmt->arg)); |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame^] | 1125 | stmt->format = LY_VALUE_SCHEMA; |
Michal Vasko | fc2cd07 | 2021-02-24 13:17:17 +0100 | [diff] [blame] | 1126 | stmt->prefix_data = mod; |
Michal Vasko | 45b521c | 2020-11-04 17:14:39 +0100 | [diff] [blame] | 1127 | stmt->kw = LY_STMT_IF_FEATURE; |
| 1128 | } |
| 1129 | |
| 1130 | /* |
| 1131 | * 3) filter's select |
| 1132 | */ |
| 1133 | LY_ARRAY_NEW_RET(mod->mod->ctx, mod->exts, ext_p, LY_EMEM); |
| 1134 | LY_CHECK_ERR_RET(!ext_p, LOGMEM(mod->mod->ctx), LY_EMEM); |
| 1135 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_:annotation", 0, &ext_p->name)); |
| 1136 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "select", 0, &ext_p->argument)); |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame^] | 1137 | ext_p->format = LY_VALUE_SCHEMA; |
Michal Vasko | fc2cd07 | 2021-02-24 13:17:17 +0100 | [diff] [blame] | 1138 | ext_p->prefix_data = mod; |
Michal Vasko | 45b521c | 2020-11-04 17:14:39 +0100 | [diff] [blame] | 1139 | ext_p->flags = LYS_INTERNAL; |
Radek Krejci | ab43086 | 2021-03-02 20:13:40 +0100 | [diff] [blame] | 1140 | ext_p->parent_stmt = LY_STMT_MODULE; |
| 1141 | ext_p->parent_stmt_index = 0; |
Michal Vasko | 45b521c | 2020-11-04 17:14:39 +0100 | [diff] [blame] | 1142 | |
| 1143 | ext_p->child = stmt = calloc(1, sizeof *ext_p->child); |
| 1144 | LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM); |
| 1145 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &stmt->stmt)); |
| 1146 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "yang_:xpath1.0", 0, &stmt->arg)); |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame^] | 1147 | stmt->format = LY_VALUE_SCHEMA; |
Michal Vasko | fc2cd07 | 2021-02-24 13:17:17 +0100 | [diff] [blame] | 1148 | stmt->prefix_data = mod; |
Michal Vasko | 45b521c | 2020-11-04 17:14:39 +0100 | [diff] [blame] | 1149 | stmt->kw = LY_STMT_TYPE; |
| 1150 | |
| 1151 | /* create new imports for the used prefixes */ |
| 1152 | LY_ARRAY_NEW_RET(mod->mod->ctx, mod->imports, imp, LY_EMEM); |
| 1153 | |
| 1154 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "ietf-yang-metadata", 0, &imp->name)); |
| 1155 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_", 0, &imp->prefix)); |
| 1156 | imp->flags = LYS_INTERNAL; |
| 1157 | |
| 1158 | LY_ARRAY_NEW_RET(mod->mod->ctx, mod->imports, imp, LY_EMEM); |
| 1159 | |
| 1160 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "ietf-yang-types", 0, &imp->name)); |
| 1161 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "yang_", 0, &imp->prefix)); |
| 1162 | imp->flags = LYS_INTERNAL; |
| 1163 | |
| 1164 | return LY_SUCCESS; |
| 1165 | } |
| 1166 | |
| 1167 | /** |
| 1168 | * @brief Add ietf-netconf-with-defaults "default" metadata to the parsed module. |
| 1169 | * |
| 1170 | * @param[in] mod Parsed module to add to. |
| 1171 | * @return LY_SUCCESS on success. |
| 1172 | * @return LY_ERR on error. |
| 1173 | */ |
| 1174 | static LY_ERR |
| 1175 | lys_parsed_add_internal_ietf_netconf_with_defaults(struct lysp_module *mod) |
| 1176 | { |
| 1177 | struct lysp_ext_instance *ext_p; |
| 1178 | struct lysp_stmt *stmt; |
| 1179 | struct lysp_import *imp; |
| 1180 | |
| 1181 | /* add new extension instance */ |
| 1182 | LY_ARRAY_NEW_RET(mod->mod->ctx, mod->exts, ext_p, LY_EMEM); |
| 1183 | |
| 1184 | /* fill in the extension instance fields */ |
| 1185 | LY_CHECK_ERR_RET(!ext_p, LOGMEM(mod->mod->ctx), LY_EMEM); |
| 1186 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_:annotation", 0, &ext_p->name)); |
| 1187 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "default", 0, &ext_p->argument)); |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame^] | 1188 | ext_p->format = LY_VALUE_SCHEMA; |
Michal Vasko | fc2cd07 | 2021-02-24 13:17:17 +0100 | [diff] [blame] | 1189 | ext_p->prefix_data = mod; |
Michal Vasko | 45b521c | 2020-11-04 17:14:39 +0100 | [diff] [blame] | 1190 | ext_p->flags = LYS_INTERNAL; |
Radek Krejci | ab43086 | 2021-03-02 20:13:40 +0100 | [diff] [blame] | 1191 | ext_p->parent_stmt = LY_STMT_MODULE; |
| 1192 | ext_p->parent_stmt_index = 0; |
Michal Vasko | 45b521c | 2020-11-04 17:14:39 +0100 | [diff] [blame] | 1193 | |
| 1194 | ext_p->child = stmt = calloc(1, sizeof *ext_p->child); |
| 1195 | LY_CHECK_ERR_RET(!stmt, LOGMEM(mod->mod->ctx), LY_EMEM); |
| 1196 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "type", 0, &stmt->stmt)); |
| 1197 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "boolean", 0, &stmt->arg)); |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame^] | 1198 | stmt->format = LY_VALUE_SCHEMA; |
Michal Vasko | fc2cd07 | 2021-02-24 13:17:17 +0100 | [diff] [blame] | 1199 | stmt->prefix_data = mod; |
Michal Vasko | 45b521c | 2020-11-04 17:14:39 +0100 | [diff] [blame] | 1200 | stmt->kw = LY_STMT_TYPE; |
| 1201 | |
| 1202 | /* create new import for the used prefix */ |
| 1203 | LY_ARRAY_NEW_RET(mod->mod->ctx, mod->imports, imp, LY_EMEM); |
| 1204 | |
| 1205 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "ietf-yang-metadata", 0, &imp->name)); |
| 1206 | LY_CHECK_RET(lydict_insert(mod->mod->ctx, "md_", 0, &imp->prefix)); |
| 1207 | imp->flags = LYS_INTERNAL; |
| 1208 | |
| 1209 | return LY_SUCCESS; |
| 1210 | } |
| 1211 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1212 | LY_ERR |
Michal Vasko | 34e334d | 2021-01-25 16:12:31 +0100 | [diff] [blame] | 1213 | lys_create_module(struct ly_ctx *ctx, struct ly_in *in, LYS_INFORMAT format, ly_bool need_implemented, |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1214 | LY_ERR (*custom_check)(const struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *data), |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 1215 | void *check_data, const char **features, struct lys_glob_unres *unres, struct lys_module **module) |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1216 | { |
Michal Vasko | 8a69a1b | 2020-12-03 14:19:02 +0100 | [diff] [blame] | 1217 | struct lys_module *mod = NULL, *latest, *mod_dup, *mod_impl; |
Michal Vasko | 5d24f6c | 2020-10-13 13:49:06 +0200 | [diff] [blame] | 1218 | struct lysp_submodule *submod; |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1219 | LY_ERR ret; |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 1220 | LY_ARRAY_COUNT_TYPE u; |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 1221 | struct lys_yang_parser_ctx *yangctx = NULL; |
| 1222 | struct lys_yin_parser_ctx *yinctx = NULL; |
Radek Krejci | f6923e8 | 2020-07-02 16:36:53 +0200 | [diff] [blame] | 1223 | struct lys_parser_ctx *pctx = NULL; |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 1224 | char *filename, *rev, *dot; |
| 1225 | size_t len; |
Michal Vasko | 34e334d | 2021-01-25 16:12:31 +0100 | [diff] [blame] | 1226 | ly_bool implement; |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1227 | |
Michal Vasko | 34e334d | 2021-01-25 16:12:31 +0100 | [diff] [blame] | 1228 | assert(ctx && in && (!features || need_implemented) && unres); |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 1229 | |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 1230 | if (module) { |
| 1231 | *module = NULL; |
| 1232 | } |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1233 | |
Michal Vasko | 34e334d | 2021-01-25 16:12:31 +0100 | [diff] [blame] | 1234 | if (ctx->flags & LY_CTX_ALL_IMPLEMENTED) { |
| 1235 | implement = 1; |
| 1236 | } else { |
| 1237 | implement = need_implemented; |
Radek Krejci | 00a3e8a | 2021-01-27 08:24:49 +0100 | [diff] [blame] | 1238 | } |
Michal Vasko | 34e334d | 2021-01-25 16:12:31 +0100 | [diff] [blame] | 1239 | |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1240 | mod = calloc(1, sizeof *mod); |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1241 | LY_CHECK_ERR_RET(!mod, LOGMEM(ctx), LY_EMEM); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 1242 | mod->ctx = ctx; |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1243 | |
Michal Vasko | 8a69a1b | 2020-12-03 14:19:02 +0100 | [diff] [blame] | 1244 | /* parse */ |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1245 | switch (format) { |
| 1246 | case LYS_IN_YIN: |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 1247 | ret = yin_parse_module(&yinctx, in, mod, unres); |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 1248 | pctx = (struct lys_parser_ctx *)yinctx; |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1249 | break; |
| 1250 | case LYS_IN_YANG: |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 1251 | ret = yang_parse_module(&yangctx, in, mod, unres); |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 1252 | pctx = (struct lys_parser_ctx *)yangctx; |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1253 | break; |
| 1254 | default: |
| 1255 | LOGERR(ctx, LY_EINVAL, "Invalid schema input format."); |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1256 | ret = LY_EINVAL; |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1257 | break; |
| 1258 | } |
Michal Vasko | 8a69a1b | 2020-12-03 14:19:02 +0100 | [diff] [blame] | 1259 | LY_CHECK_GOTO(ret, free_mod_cleanup); |
Radek Krejci | 9f5e6fb | 2018-10-25 09:26:12 +0200 | [diff] [blame] | 1260 | |
| 1261 | /* make sure that the newest revision is at position 0 */ |
| 1262 | lysp_sort_revisions(mod->parsed->revs); |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 1263 | if (mod->parsed->revs) { |
Michal Vasko | 8a69a1b | 2020-12-03 14:19:02 +0100 | [diff] [blame] | 1264 | LY_CHECK_GOTO(ret = lydict_insert(ctx, mod->parsed->revs[0].date, 0, &mod->revision), free_mod_cleanup); |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 1265 | } |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1266 | |
Radek Krejci | b3289d6 | 2019-09-18 12:21:39 +0200 | [diff] [blame] | 1267 | /* decide the latest revision */ |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 1268 | latest = (struct lys_module *)ly_ctx_get_module_latest(ctx, mod->name); |
Radek Krejci | b3289d6 | 2019-09-18 12:21:39 +0200 | [diff] [blame] | 1269 | if (latest) { |
| 1270 | if (mod->revision) { |
| 1271 | if (!latest->revision) { |
| 1272 | /* latest has no revision, so mod is anyway newer */ |
| 1273 | mod->latest_revision = latest->latest_revision; |
| 1274 | /* the latest is zeroed later when the new module is being inserted into the context */ |
| 1275 | } else if (strcmp(mod->revision, latest->revision) > 0) { |
| 1276 | mod->latest_revision = latest->latest_revision; |
| 1277 | /* the latest is zeroed later when the new module is being inserted into the context */ |
| 1278 | } else { |
| 1279 | latest = NULL; |
| 1280 | } |
| 1281 | } else { |
| 1282 | latest = NULL; |
| 1283 | } |
| 1284 | } else { |
| 1285 | mod->latest_revision = 1; |
| 1286 | } |
| 1287 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 1288 | if (custom_check) { |
Michal Vasko | 8a69a1b | 2020-12-03 14:19:02 +0100 | [diff] [blame] | 1289 | LY_CHECK_GOTO(ret = custom_check(ctx, mod->parsed, NULL, check_data), free_mod_cleanup); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 1290 | } |
| 1291 | |
Michal Vasko | 8a69a1b | 2020-12-03 14:19:02 +0100 | [diff] [blame] | 1292 | /* check whether it is not already in the context in the same revision */ |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 1293 | mod_dup = (struct lys_module *)ly_ctx_get_module(ctx, mod->name, mod->revision); |
Michal Vasko | 8a69a1b | 2020-12-03 14:19:02 +0100 | [diff] [blame] | 1294 | if (implement) { |
| 1295 | mod_impl = ly_ctx_get_module_implemented(ctx, mod->name); |
| 1296 | if (mod_impl && (mod_impl != mod_dup)) { |
| 1297 | LOGERR(ctx, LY_EDENIED, "Module \"%s@%s\" is already implemented in the context.", mod_impl->name, |
| 1298 | mod_impl->revision ? mod_impl->revision : "<none>"); |
| 1299 | ret = LY_EDENIED; |
| 1300 | goto free_mod_cleanup; |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 1301 | } |
Michal Vasko | 8a69a1b | 2020-12-03 14:19:02 +0100 | [diff] [blame] | 1302 | } |
| 1303 | if (mod_dup) { |
| 1304 | if (implement) { |
| 1305 | if (!mod_dup->implemented) { |
| 1306 | /* just implement it */ |
| 1307 | LY_CHECK_GOTO(ret = lys_set_implemented_r(mod_dup, features, unres), free_mod_cleanup); |
| 1308 | goto free_mod_cleanup; |
| 1309 | } |
| 1310 | |
| 1311 | /* nothing to do */ |
| 1312 | LOGVRB("Module \"%s@%s\" is already implemented in the context.", mod_dup->name, |
| 1313 | mod_dup->revision ? mod_dup->revision : "<none>"); |
| 1314 | goto free_mod_cleanup; |
| 1315 | } |
| 1316 | |
| 1317 | /* nothing to do */ |
| 1318 | LOGVRB("Module \"%s@%s\" is already present in the context.", mod_dup->name, |
| 1319 | mod_dup->revision ? mod_dup->revision : "<none>"); |
| 1320 | goto free_mod_cleanup; |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 1321 | } |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1322 | |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 1323 | switch (in->type) { |
| 1324 | case LY_IN_FILEPATH: |
| 1325 | /* check that name and revision match filename */ |
| 1326 | filename = strrchr(in->method.fpath.filepath, '/'); |
| 1327 | if (!filename) { |
| 1328 | filename = in->method.fpath.filepath; |
| 1329 | } else { |
| 1330 | filename++; |
| 1331 | } |
| 1332 | rev = strchr(filename, '@'); |
| 1333 | dot = strrchr(filename, '.'); |
| 1334 | |
| 1335 | /* name */ |
| 1336 | len = strlen(mod->name); |
| 1337 | if (strncmp(filename, mod->name, len) || |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1338 | ((rev && (rev != &filename[len])) || (!rev && (dot != &filename[len])))) { |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 1339 | LOGWRN(ctx, "File name \"%s\" does not match module name \"%s\".", filename, mod->name); |
| 1340 | } |
| 1341 | if (rev) { |
| 1342 | len = dot - ++rev; |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 1343 | if (!mod->parsed->revs || (len != LY_REV_SIZE - 1) || strncmp(mod->parsed->revs[0].date, rev, len)) { |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 1344 | LOGWRN(ctx, "File name \"%s\" does not match module revision \"%s\".", filename, |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1345 | mod->parsed->revs ? mod->parsed->revs[0].date : "none"); |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 1346 | } |
| 1347 | } |
| 1348 | |
| 1349 | break; |
| 1350 | case LY_IN_FD: |
| 1351 | case LY_IN_FILE: |
| 1352 | case LY_IN_MEMORY: |
| 1353 | /* nothing special to do */ |
| 1354 | break; |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 1355 | case LY_IN_ERROR: |
| 1356 | LOGINT(ctx); |
| 1357 | ret = LY_EINT; |
Michal Vasko | 8a69a1b | 2020-12-03 14:19:02 +0100 | [diff] [blame] | 1358 | goto free_mod_cleanup; |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 1359 | } |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 1360 | lys_parser_fill_filepath(ctx, in, &mod->filepath); |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 1361 | |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 1362 | if (latest) { |
| 1363 | latest->latest_revision = 0; |
| 1364 | } |
| 1365 | |
Michal Vasko | 45b521c | 2020-11-04 17:14:39 +0100 | [diff] [blame] | 1366 | /* add internal data in case specific modules were parsed */ |
| 1367 | if (!strcmp(mod->name, "ietf-netconf")) { |
Michal Vasko | 8a69a1b | 2020-12-03 14:19:02 +0100 | [diff] [blame] | 1368 | LY_CHECK_GOTO(ret = lys_parsed_add_internal_ietf_netconf(mod->parsed), free_mod_cleanup); |
Michal Vasko | 45b521c | 2020-11-04 17:14:39 +0100 | [diff] [blame] | 1369 | } else if (!strcmp(mod->name, "ietf-netconf-with-defaults")) { |
Michal Vasko | 8a69a1b | 2020-12-03 14:19:02 +0100 | [diff] [blame] | 1370 | LY_CHECK_GOTO(ret = lys_parsed_add_internal_ietf_netconf_with_defaults(mod->parsed), free_mod_cleanup); |
Michal Vasko | 45b521c | 2020-11-04 17:14:39 +0100 | [diff] [blame] | 1371 | } |
| 1372 | |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 1373 | /* add the module into newly created module set, will also be freed from there on any error */ |
Michal Vasko | 8a69a1b | 2020-12-03 14:19:02 +0100 | [diff] [blame] | 1374 | LY_CHECK_GOTO(ret = ly_set_add(&unres->creating, mod, 1, NULL), free_mod_cleanup); |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 1375 | |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 1376 | /* add into context */ |
Radek Krejci | 3d92e44 | 2020-10-12 12:48:13 +0200 | [diff] [blame] | 1377 | ret = ly_set_add(&ctx->list, mod, 1, NULL); |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 1378 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 794ab4b | 2021-03-31 09:42:19 +0200 | [diff] [blame] | 1379 | ctx->change_count++; |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 1380 | |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 1381 | /* resolve includes and all imports */ |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 1382 | LY_CHECK_GOTO(ret = lys_resolve_import_include(pctx, mod->parsed), cleanup); |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 1383 | |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 1384 | /* check name collisions */ |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 1385 | LY_CHECK_GOTO(ret = lysp_check_dup_typedefs(pctx, mod->parsed), cleanup); |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 1386 | /* TODO groupings */ |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 1387 | LY_CHECK_GOTO(ret = lysp_check_dup_features(pctx, mod->parsed), cleanup); |
| 1388 | LY_CHECK_GOTO(ret = lysp_check_dup_identities(pctx, mod->parsed), cleanup); |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 1389 | |
| 1390 | /* compile features */ |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 1391 | LY_CHECK_GOTO(ret = lys_compile_feature_iffeatures(mod->parsed), cleanup); |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 1392 | |
Michal Vasko | 05e3204 | 2021-04-23 13:40:56 +0200 | [diff] [blame] | 1393 | /* pre-compile identities of the module and any submodules */ |
| 1394 | LY_CHECK_GOTO(ret = lys_identity_precompile(NULL, ctx, mod->parsed, mod->parsed->identities, &mod->identities), cleanup); |
| 1395 | LY_ARRAY_FOR(mod->parsed->includes, u) { |
| 1396 | submod = mod->parsed->includes[u].submodule; |
| 1397 | ret = lys_identity_precompile(NULL, ctx, (struct lysp_module *)submod, submod->identities, &mod->identities); |
| 1398 | LY_CHECK_GOTO(ret, cleanup); |
| 1399 | } |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 1400 | |
Michal Vasko | 05e3204 | 2021-04-23 13:40:56 +0200 | [diff] [blame] | 1401 | if (implement) { |
Michal Vasko | 89b5c07 | 2020-10-06 13:52:44 +0200 | [diff] [blame] | 1402 | /* implement (compile) */ |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 1403 | LY_CHECK_GOTO(ret = lys_set_implemented_r(mod, features, unres), cleanup); |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 1404 | } |
| 1405 | |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 1406 | /* success */ |
| 1407 | goto cleanup; |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 1408 | |
Michal Vasko | 8a69a1b | 2020-12-03 14:19:02 +0100 | [diff] [blame] | 1409 | free_mod_cleanup: |
Radek Krejci | 90ed21e | 2021-04-12 14:47:46 +0200 | [diff] [blame] | 1410 | lys_module_free(mod); |
Michal Vasko | 0e02e8e | 2021-02-26 15:01:55 +0100 | [diff] [blame] | 1411 | if (ret) { |
| 1412 | mod = NULL; |
| 1413 | } else { |
| 1414 | /* return the existing module */ |
| 1415 | assert(mod_dup); |
| 1416 | mod = mod_dup; |
| 1417 | } |
Michal Vasko | 8a69a1b | 2020-12-03 14:19:02 +0100 | [diff] [blame] | 1418 | |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 1419 | cleanup: |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 1420 | if (pctx) { |
| 1421 | ly_set_erase(&pctx->tpdfs_nodes, NULL); |
| 1422 | } |
| 1423 | if (format == LYS_IN_YANG) { |
| 1424 | yang_parser_ctx_free(yangctx); |
| 1425 | } else { |
| 1426 | yin_parser_ctx_free(yinctx); |
| 1427 | } |
| 1428 | |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 1429 | if (!ret && module) { |
| 1430 | *module = mod; |
| 1431 | } |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 1432 | return ret; |
| 1433 | } |
| 1434 | |
Radek Krejci | 545b487 | 2020-11-15 10:15:12 +0100 | [diff] [blame] | 1435 | static LYS_INFORMAT |
| 1436 | lys_parse_get_format(const struct ly_in *in, LYS_INFORMAT format) |
| 1437 | { |
| 1438 | if (!format && (in->type == LY_IN_FILEPATH)) { |
| 1439 | /* unknown format - try to detect it from filename's suffix */ |
| 1440 | const char *path = in->method.fpath.filepath; |
| 1441 | size_t len = strlen(path); |
| 1442 | |
| 1443 | /* ignore trailing whitespaces */ |
| 1444 | for ( ; len > 0 && isspace(path[len - 1]); len--) {} |
| 1445 | |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 1446 | if ((len >= LY_YANG_SUFFIX_LEN + 1) && |
| 1447 | !strncmp(&path[len - LY_YANG_SUFFIX_LEN], LY_YANG_SUFFIX, LY_YANG_SUFFIX_LEN)) { |
Radek Krejci | 545b487 | 2020-11-15 10:15:12 +0100 | [diff] [blame] | 1448 | format = LYS_IN_YANG; |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 1449 | } else if ((len >= LY_YIN_SUFFIX_LEN + 1) && |
| 1450 | !strncmp(&path[len - LY_YIN_SUFFIX_LEN], LY_YIN_SUFFIX, LY_YIN_SUFFIX_LEN)) { |
Radek Krejci | 545b487 | 2020-11-15 10:15:12 +0100 | [diff] [blame] | 1451 | format = LYS_IN_YIN; |
| 1452 | } /* else still unknown */ |
| 1453 | } |
| 1454 | |
| 1455 | return format; |
| 1456 | } |
| 1457 | |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 1458 | API LY_ERR |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 1459 | lys_parse(struct ly_ctx *ctx, struct ly_in *in, LYS_INFORMAT format, const char **features, const struct lys_module **module) |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 1460 | { |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 1461 | LY_ERR ret; |
| 1462 | struct lys_glob_unres unres = {0}; |
| 1463 | |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 1464 | if (module) { |
| 1465 | *module = NULL; |
| 1466 | } |
Radek Krejci | 545b487 | 2020-11-15 10:15:12 +0100 | [diff] [blame] | 1467 | LY_CHECK_ARG_RET(NULL, ctx, in, LY_EINVAL); |
| 1468 | |
| 1469 | format = lys_parse_get_format(in, format); |
| 1470 | LY_CHECK_ARG_RET(ctx, format, LY_EINVAL); |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 1471 | |
| 1472 | /* remember input position */ |
| 1473 | in->func_start = in->current; |
| 1474 | |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 1475 | ret = lys_create_module(ctx, in, format, 1, NULL, NULL, features, &unres, (struct lys_module **)module); |
| 1476 | LY_CHECK_GOTO(ret, cleanup); |
| 1477 | |
| 1478 | /* resolve global unres */ |
| 1479 | ret = lys_compile_unres_glob(ctx, &unres); |
| 1480 | LY_CHECK_GOTO(ret, cleanup); |
| 1481 | |
| 1482 | cleanup: |
| 1483 | if (ret) { |
| 1484 | lys_compile_unres_glob_revert(ctx, &unres); |
| 1485 | } |
| 1486 | lys_compile_unres_glob_erase(ctx, &unres); |
| 1487 | if (ret && module) { |
| 1488 | *module = NULL; |
| 1489 | } |
| 1490 | return ret; |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1491 | } |
| 1492 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1493 | API LY_ERR |
| 1494 | lys_parse_mem(struct ly_ctx *ctx, const char *data, LYS_INFORMAT format, const struct lys_module **module) |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1495 | { |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 1496 | LY_ERR ret; |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 1497 | struct ly_in *in = NULL; |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1498 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1499 | LY_CHECK_ARG_RET(ctx, data, format != LYS_IN_UNKNOWN, LY_EINVAL); |
Radek Krejci | 65639b9 | 2018-11-27 10:51:37 +0100 | [diff] [blame] | 1500 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1501 | LY_CHECK_ERR_RET(ret = ly_in_new_memory(data, &in), LOGERR(ctx, ret, "Unable to create input handler."), ret); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1502 | |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 1503 | ret = lys_parse(ctx, in, format, NULL, module); |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 1504 | ly_in_free(in, 0); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1505 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1506 | return ret; |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 1507 | } |
| 1508 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1509 | API LY_ERR |
| 1510 | lys_parse_fd(struct ly_ctx *ctx, int fd, LYS_INFORMAT format, const struct lys_module **module) |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1511 | { |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 1512 | LY_ERR ret; |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 1513 | struct ly_in *in = NULL; |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1514 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1515 | LY_CHECK_ARG_RET(ctx, fd > -1, format != LYS_IN_UNKNOWN, LY_EINVAL); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1516 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1517 | LY_CHECK_ERR_RET(ret = ly_in_new_fd(fd, &in), LOGERR(ctx, ret, "Unable to create input handler."), ret); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1518 | |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 1519 | ret = lys_parse(ctx, in, format, NULL, module); |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 1520 | ly_in_free(in, 0); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1521 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1522 | return ret; |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1523 | } |
| 1524 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1525 | API LY_ERR |
| 1526 | lys_parse_path(struct ly_ctx *ctx, const char *path, LYS_INFORMAT format, const struct lys_module **module) |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 1527 | { |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 1528 | LY_ERR ret; |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 1529 | struct ly_in *in = NULL; |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 1530 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1531 | LY_CHECK_ARG_RET(ctx, path, format != LYS_IN_UNKNOWN, LY_EINVAL); |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 1532 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1533 | LY_CHECK_ERR_RET(ret = ly_in_new_filepath(path, 0, &in), |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1534 | LOGERR(ctx, ret, "Unable to create input handler for filepath %s.", path), ret); |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 1535 | |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 1536 | ret = lys_parse(ctx, in, format, NULL, module); |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 1537 | ly_in_free(in, 0); |
| 1538 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1539 | return ret; |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 1540 | } |
| 1541 | |
| 1542 | API LY_ERR |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 1543 | lys_search_localfile(const char * const *searchpaths, ly_bool cwd, const char *name, const char *revision, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 1544 | char **localfile, LYS_INFORMAT *format) |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 1545 | { |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1546 | LY_ERR ret = LY_EMEM; |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 1547 | size_t len, flen, match_len = 0, dir_len; |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 1548 | ly_bool implicit_cwd = 0; |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 1549 | char *wd, *wn = NULL; |
| 1550 | DIR *dir = NULL; |
| 1551 | struct dirent *file; |
| 1552 | char *match_name = NULL; |
| 1553 | LYS_INFORMAT format_aux, match_format = 0; |
| 1554 | struct ly_set *dirs; |
| 1555 | struct stat st; |
| 1556 | |
| 1557 | LY_CHECK_ARG_RET(NULL, localfile, LY_EINVAL); |
| 1558 | |
| 1559 | /* start to fill the dir fifo with the context's search path (if set) |
| 1560 | * and the current working directory */ |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 1561 | LY_CHECK_RET(ly_set_new(&dirs)); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 1562 | |
| 1563 | len = strlen(name); |
| 1564 | if (cwd) { |
| 1565 | wd = get_current_dir_name(); |
| 1566 | if (!wd) { |
| 1567 | LOGMEM(NULL); |
| 1568 | goto cleanup; |
| 1569 | } else { |
| 1570 | /* add implicit current working directory (./) to be searched, |
| 1571 | * this directory is not searched recursively */ |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 1572 | ret = ly_set_add(dirs, wd, 0, NULL); |
| 1573 | LY_CHECK_GOTO(ret, cleanup); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 1574 | implicit_cwd = 1; |
| 1575 | } |
| 1576 | } |
| 1577 | if (searchpaths) { |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1578 | for (uint64_t i = 0; searchpaths[i]; i++) { |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 1579 | /* check for duplicities with the implicit current working directory */ |
| 1580 | if (implicit_cwd && !strcmp(dirs->objs[0], searchpaths[i])) { |
| 1581 | implicit_cwd = 0; |
| 1582 | continue; |
| 1583 | } |
| 1584 | wd = strdup(searchpaths[i]); |
| 1585 | if (!wd) { |
| 1586 | LOGMEM(NULL); |
| 1587 | goto cleanup; |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 1588 | } else { |
| 1589 | ret = ly_set_add(dirs, wd, 0, NULL); |
| 1590 | LY_CHECK_GOTO(ret, cleanup); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 1591 | } |
| 1592 | } |
| 1593 | } |
| 1594 | wd = NULL; |
| 1595 | |
| 1596 | /* start searching */ |
| 1597 | while (dirs->count) { |
| 1598 | free(wd); |
| 1599 | free(wn); wn = NULL; |
| 1600 | |
| 1601 | dirs->count--; |
| 1602 | wd = (char *)dirs->objs[dirs->count]; |
| 1603 | dirs->objs[dirs->count] = NULL; |
Radek Krejci | eeee95c | 2021-01-19 10:57:22 +0100 | [diff] [blame] | 1604 | LOGVRB("Searching for \"%s\" in \"%s\".", name, wd); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 1605 | |
| 1606 | if (dir) { |
| 1607 | closedir(dir); |
| 1608 | } |
| 1609 | dir = opendir(wd); |
| 1610 | dir_len = strlen(wd); |
| 1611 | if (!dir) { |
| 1612 | LOGWRN(NULL, "Unable to open directory \"%s\" for searching (sub)modules (%s).", wd, strerror(errno)); |
| 1613 | } else { |
| 1614 | while ((file = readdir(dir))) { |
| 1615 | if (!strcmp(".", file->d_name) || !strcmp("..", file->d_name)) { |
| 1616 | /* skip . and .. */ |
| 1617 | continue; |
| 1618 | } |
| 1619 | free(wn); |
| 1620 | if (asprintf(&wn, "%s/%s", wd, file->d_name) == -1) { |
| 1621 | LOGMEM(NULL); |
| 1622 | goto cleanup; |
| 1623 | } |
| 1624 | if (stat(wn, &st) == -1) { |
| 1625 | LOGWRN(NULL, "Unable to get information about \"%s\" file in \"%s\" when searching for (sub)modules (%s)", |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1626 | file->d_name, wd, strerror(errno)); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 1627 | continue; |
| 1628 | } |
| 1629 | if (S_ISDIR(st.st_mode) && (dirs->count || !implicit_cwd)) { |
| 1630 | /* we have another subdirectory in searchpath to explore, |
| 1631 | * subdirectories are not taken into account in current working dir (dirs->set.g[0]) */ |
Radek Krejci | ba03a5a | 2020-08-27 14:40:41 +0200 | [diff] [blame] | 1632 | ret = ly_set_add(dirs, wn, 0, NULL); |
| 1633 | LY_CHECK_GOTO(ret, cleanup); |
| 1634 | |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 1635 | /* continue with the next item in current directory */ |
| 1636 | wn = NULL; |
| 1637 | continue; |
| 1638 | } else if (!S_ISREG(st.st_mode)) { |
| 1639 | /* not a regular file (note that we see the target of symlinks instead of symlinks */ |
| 1640 | continue; |
| 1641 | } |
| 1642 | |
| 1643 | /* here we know that the item is a file which can contain a module */ |
| 1644 | if (strncmp(name, file->d_name, len) || |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1645 | ((file->d_name[len] != '.') && (file->d_name[len] != '@'))) { |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 1646 | /* different filename than the module we search for */ |
| 1647 | continue; |
| 1648 | } |
| 1649 | |
| 1650 | /* get type according to filename suffix */ |
| 1651 | flen = strlen(file->d_name); |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 1652 | if ((flen >= LY_YANG_SUFFIX_LEN + 1) && |
| 1653 | !strcmp(&file->d_name[flen - LY_YANG_SUFFIX_LEN], LY_YANG_SUFFIX)) { |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 1654 | format_aux = LYS_IN_YANG; |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 1655 | } else if ((flen >= LY_YIN_SUFFIX_LEN + 1) && |
| 1656 | !strcmp(&file->d_name[flen - LY_YIN_SUFFIX_LEN], LY_YIN_SUFFIX)) { |
Radek Krejci | 01a937f | 2020-11-15 10:14:12 +0100 | [diff] [blame] | 1657 | format_aux = LYS_IN_YIN; |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 1658 | } else { |
| 1659 | /* not supportde suffix/file format */ |
| 1660 | continue; |
| 1661 | } |
| 1662 | |
| 1663 | if (revision) { |
| 1664 | /* we look for the specific revision, try to get it from the filename */ |
| 1665 | if (file->d_name[len] == '@') { |
| 1666 | /* check revision from the filename */ |
| 1667 | if (strncmp(revision, &file->d_name[len + 1], strlen(revision))) { |
| 1668 | /* another revision */ |
| 1669 | continue; |
| 1670 | } else { |
| 1671 | /* exact revision */ |
| 1672 | free(match_name); |
| 1673 | match_name = wn; |
| 1674 | wn = NULL; |
| 1675 | match_len = dir_len + 1 + len; |
| 1676 | match_format = format_aux; |
| 1677 | goto success; |
| 1678 | } |
| 1679 | } else { |
| 1680 | /* continue trying to find exact revision match, use this only if not found */ |
| 1681 | free(match_name); |
| 1682 | match_name = wn; |
| 1683 | wn = NULL; |
Michal Vasko | 44f3d2c | 2020-08-24 09:49:38 +0200 | [diff] [blame] | 1684 | match_len = dir_len + 1 + len; |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 1685 | match_format = format_aux; |
| 1686 | continue; |
| 1687 | } |
| 1688 | } else { |
| 1689 | /* remember the revision and try to find the newest one */ |
| 1690 | if (match_name) { |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1691 | if ((file->d_name[len] != '@') || |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 1692 | lysp_check_date(NULL, &file->d_name[len + 1], |
| 1693 | flen - ((format_aux == LYS_IN_YANG) ? LY_YANG_SUFFIX_LEN : LY_YIN_SUFFIX_LEN) - len - 1, NULL)) { |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 1694 | continue; |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1695 | } else if ((match_name[match_len] == '@') && |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 1696 | (strncmp(&match_name[match_len + 1], &file->d_name[len + 1], LY_REV_SIZE - 1) >= 0)) { |
| 1697 | continue; |
| 1698 | } |
| 1699 | free(match_name); |
| 1700 | } |
| 1701 | |
| 1702 | match_name = wn; |
| 1703 | wn = NULL; |
| 1704 | match_len = dir_len + 1 + len; |
| 1705 | match_format = format_aux; |
| 1706 | continue; |
| 1707 | } |
| 1708 | } |
| 1709 | } |
| 1710 | } |
| 1711 | |
| 1712 | success: |
| 1713 | (*localfile) = match_name; |
| 1714 | match_name = NULL; |
| 1715 | if (format) { |
| 1716 | (*format) = match_format; |
| 1717 | } |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1718 | ret = LY_SUCCESS; |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 1719 | |
| 1720 | cleanup: |
| 1721 | free(wn); |
| 1722 | free(wd); |
| 1723 | if (dir) { |
| 1724 | closedir(dir); |
| 1725 | } |
| 1726 | free(match_name); |
| 1727 | ly_set_free(dirs, free); |
| 1728 | |
| 1729 | return ret; |
| 1730 | } |