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