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