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