Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1 | /** |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 2 | * @file tree_schema_common.c |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 4 | * @author Michal Vasko <mvasko@cesnet.cz> |
| 5 | * @brief Parsing and validation common functions for schema trees |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 6 | * |
Michal Vasko | 59892dd | 2022-05-13 11:02:30 +0200 | [diff] [blame] | 7 | * Copyright (c) 2015 - 2022 CESNET, z.s.p.o. |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 8 | * |
| 9 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 10 | * You may not use this file except in compliance with the License. |
| 11 | * You may obtain a copy of the License at |
| 12 | * |
| 13 | * https://opensource.org/licenses/BSD-3-Clause |
| 14 | */ |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 15 | |
| 16 | #define _GNU_SOURCE |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 17 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 18 | #include <assert.h> |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 19 | #include <ctype.h> |
Radek Krejci | 47fab89 | 2020-11-05 17:02:41 +0100 | [diff] [blame] | 20 | #include <stddef.h> |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 21 | #include <stdint.h> |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 22 | #include <stdlib.h> |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 23 | #include <string.h> |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 24 | #include <time.h> |
| 25 | |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 26 | #include "common.h" |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 27 | #include "compat.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 28 | #include "context.h" |
Radek Krejci | 7711410 | 2021-03-10 15:21:57 +0100 | [diff] [blame] | 29 | #include "dict.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 30 | #include "hash_table.h" |
Radek Krejci | 47fab89 | 2020-11-05 17:02:41 +0100 | [diff] [blame] | 31 | #include "in.h" |
Michal Vasko | afac782 | 2020-10-20 14:22:26 +0200 | [diff] [blame] | 32 | #include "in_internal.h" |
Radek Krejci | 47fab89 | 2020-11-05 17:02:41 +0100 | [diff] [blame] | 33 | #include "log.h" |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 34 | #include "parser_schema.h" |
Michal Vasko | 962b6cd | 2020-12-08 10:07:49 +0100 | [diff] [blame] | 35 | #include "schema_compile.h" |
Michal Vasko | 79135ae | 2020-12-16 10:08:35 +0100 | [diff] [blame] | 36 | #include "schema_features.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 37 | #include "set.h" |
| 38 | #include "tree.h" |
Radek Krejci | 859a15a | 2021-03-05 20:56:59 +0100 | [diff] [blame] | 39 | #include "tree_edit.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 40 | #include "tree_schema.h" |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 41 | #include "tree_schema_internal.h" |
| 42 | |
Radek Krejci | 8574795 | 2019-06-07 16:43:43 +0200 | [diff] [blame] | 43 | LY_ERR |
Michal Vasko | d0625d7 | 2022-10-06 15:02:50 +0200 | [diff] [blame] | 44 | lysp_check_prefix(struct lysp_ctx *ctx, struct lysp_import *imports, const char *module_prefix, const char **value) |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 45 | { |
| 46 | struct lysp_import *i; |
| 47 | |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 48 | if (module_prefix && (&module_prefix != value) && !strcmp(module_prefix, *value)) { |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 49 | LOGVAL_PARSER(ctx, LYVE_REFERENCE, "Prefix \"%s\" already used as module prefix.", *value); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 50 | return LY_EEXIST; |
| 51 | } |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 52 | LY_ARRAY_FOR(imports, struct lysp_import, i) { |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 53 | if (i->prefix && (&i->prefix != value) && !strcmp(i->prefix, *value)) { |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 54 | LOGVAL_PARSER(ctx, LYVE_REFERENCE, "Prefix \"%s\" already used to import \"%s\" module.", *value, i->name); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 55 | return LY_EEXIST; |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 56 | } |
| 57 | } |
| 58 | return LY_SUCCESS; |
| 59 | } |
| 60 | |
| 61 | LY_ERR |
Michal Vasko | d0625d7 | 2022-10-06 15:02:50 +0200 | [diff] [blame] | 62 | lysp_check_date(struct lysp_ctx *ctx, const char *date, size_t date_len, const char *stmt) |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 63 | { |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 64 | struct tm tm, tm_; |
| 65 | char *r; |
| 66 | |
Michal Vasko | b425bb3 | 2022-11-08 10:49:36 +0100 | [diff] [blame] | 67 | LY_CHECK_ARG_RET(PARSER_CTX(ctx), date, LY_EINVAL); |
| 68 | |
| 69 | if (date_len != LY_REV_SIZE - 1) { |
| 70 | LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Invalid length %" PRIu32 " of a date.", (uint32_t)date_len); |
| 71 | return LY_EINVAL; |
| 72 | } |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 73 | |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 74 | /* check format: YYYY-MM-DD */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 75 | for (uint8_t i = 0; i < date_len; i++) { |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 76 | if ((i == 4) || (i == 7)) { |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 77 | if (date[i] != '-') { |
| 78 | goto error; |
| 79 | } |
| 80 | } else if (!isdigit(date[i])) { |
| 81 | goto error; |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | /* check content, e.g. 2018-02-31 */ |
| 86 | memset(&tm, 0, sizeof tm); |
| 87 | r = strptime(date, "%Y-%m-%d", &tm); |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 88 | if (!r || (r != &date[LY_REV_SIZE - 1])) { |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 89 | goto error; |
| 90 | } |
| 91 | memcpy(&tm_, &tm, sizeof tm); |
Michal Vasko | 82f3282 | 2022-08-17 10:54:35 +0200 | [diff] [blame] | 92 | |
| 93 | /* DST may move the hour back resulting in a different day */ |
| 94 | tm_.tm_hour = 1; |
| 95 | |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 96 | mktime(&tm_); /* mktime modifies tm_ if it refers invalid date */ |
| 97 | if (tm.tm_mday != tm_.tm_mday) { /* e.g 2018-02-29 -> 2018-03-01 */ |
| 98 | /* checking days is enough, since other errors |
| 99 | * have been checked by strptime() */ |
| 100 | goto error; |
| 101 | } |
| 102 | |
| 103 | return LY_SUCCESS; |
| 104 | |
| 105 | error: |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 106 | if (stmt) { |
Michal Vasko | 7b3a00e | 2023-08-09 11:58:03 +0200 | [diff] [blame] | 107 | LOGVAL_PARSER(ctx, LY_VCODE_INVAL, (int)date_len, date, stmt); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 108 | } |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 109 | return LY_EINVAL; |
| 110 | } |
| 111 | |
| 112 | void |
| 113 | lysp_sort_revisions(struct lysp_revision *revs) |
| 114 | { |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 115 | LY_ARRAY_COUNT_TYPE i, r; |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 116 | struct lysp_revision rev; |
| 117 | |
Radek Krejci | c7d13e3 | 2020-12-09 12:32:24 +0100 | [diff] [blame] | 118 | for (i = 1, r = 0; i < LY_ARRAY_COUNT(revs); i++) { |
Radek Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 119 | if (strcmp(revs[i].date, revs[r].date) > 0) { |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 120 | r = i; |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | if (r) { |
| 125 | /* the newest revision is not on position 0, switch them */ |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 126 | memcpy(&rev, &revs[0], sizeof rev); |
| 127 | memcpy(&revs[0], &revs[r], sizeof rev); |
| 128 | memcpy(&revs[r], &rev, sizeof rev); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 129 | } |
| 130 | } |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 131 | |
Michal Vasko | edb0fa5 | 2022-10-04 10:36:00 +0200 | [diff] [blame] | 132 | LY_ERR |
Michal Vasko | d0625d7 | 2022-10-06 15:02:50 +0200 | [diff] [blame] | 133 | lysp_check_enum_name(struct lysp_ctx *ctx, const char *name, size_t name_len) |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 134 | { |
Michal Vasko | edb0fa5 | 2022-10-04 10:36:00 +0200 | [diff] [blame] | 135 | if (!name_len) { |
| 136 | LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Enum name must not be zero-length."); |
| 137 | return LY_EVALID; |
| 138 | } else if (isspace(name[0]) || isspace(name[name_len - 1])) { |
| 139 | LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Enum name must not have any leading or trailing whitespaces (\"%.*s\").", |
| 140 | (int)name_len, name); |
| 141 | return LY_EVALID; |
| 142 | } else { |
Michal Vasko | 7b3a00e | 2023-08-09 11:58:03 +0200 | [diff] [blame] | 143 | for (uint32_t u = 0; u < name_len; ++u) { |
Michal Vasko | edb0fa5 | 2022-10-04 10:36:00 +0200 | [diff] [blame] | 144 | if (iscntrl(name[u])) { |
Michal Vasko | 7b3a00e | 2023-08-09 11:58:03 +0200 | [diff] [blame] | 145 | LOGWRN(PARSER_CTX(ctx), "Control characters in enum name should be avoided " |
| 146 | "(\"%.*s\", character number %" PRIu32 ").", (int)name_len, name, u + 1); |
Michal Vasko | edb0fa5 | 2022-10-04 10:36:00 +0200 | [diff] [blame] | 147 | break; |
| 148 | } |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 149 | } |
| 150 | } |
| 151 | |
Michal Vasko | edb0fa5 | 2022-10-04 10:36:00 +0200 | [diff] [blame] | 152 | return LY_SUCCESS; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 153 | } |
| 154 | |
Michal Vasko | edb0fa5 | 2022-10-04 10:36:00 +0200 | [diff] [blame] | 155 | /** |
| 156 | * @brief Learn built-in type from its name. |
| 157 | * |
| 158 | * @param[in] name Type name. |
| 159 | * @param[in] len Length of @p name. |
| 160 | * @return Built-in data type, ::LY_TYPE_UNKNOWN if none matches. |
| 161 | */ |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 162 | static LY_DATA_TYPE |
| 163 | lysp_type_str2builtin(const char *name, size_t len) |
| 164 | { |
| 165 | if (len >= 4) { /* otherwise it does not match any built-in type */ |
| 166 | if (name[0] == 'b') { |
| 167 | if (name[1] == 'i') { |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 168 | if ((len == 6) && !strncmp(&name[2], "nary", 4)) { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 169 | return LY_TYPE_BINARY; |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 170 | } else if ((len == 4) && !strncmp(&name[2], "ts", 2)) { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 171 | return LY_TYPE_BITS; |
| 172 | } |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 173 | } else if ((len == 7) && !strncmp(&name[1], "oolean", 6)) { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 174 | return LY_TYPE_BOOL; |
| 175 | } |
| 176 | } else if (name[0] == 'd') { |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 177 | if ((len == 9) && !strncmp(&name[1], "ecimal64", 8)) { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 178 | return LY_TYPE_DEC64; |
| 179 | } |
| 180 | } else if (name[0] == 'e') { |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 181 | if ((len == 5) && !strncmp(&name[1], "mpty", 4)) { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 182 | return LY_TYPE_EMPTY; |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 183 | } else if ((len == 11) && !strncmp(&name[1], "numeration", 10)) { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 184 | return LY_TYPE_ENUM; |
| 185 | } |
| 186 | } else if (name[0] == 'i') { |
| 187 | if (name[1] == 'n') { |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 188 | if ((len == 4) && !strncmp(&name[2], "t8", 2)) { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 189 | return LY_TYPE_INT8; |
| 190 | } else if (len == 5) { |
| 191 | if (!strncmp(&name[2], "t16", 3)) { |
| 192 | return LY_TYPE_INT16; |
| 193 | } else if (!strncmp(&name[2], "t32", 3)) { |
| 194 | return LY_TYPE_INT32; |
| 195 | } else if (!strncmp(&name[2], "t64", 3)) { |
| 196 | return LY_TYPE_INT64; |
| 197 | } |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 198 | } else if ((len == 19) && !strncmp(&name[2], "stance-identifier", 17)) { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 199 | return LY_TYPE_INST; |
| 200 | } |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 201 | } else if ((len == 11) && !strncmp(&name[1], "dentityref", 10)) { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 202 | return LY_TYPE_IDENT; |
| 203 | } |
| 204 | } else if (name[0] == 'l') { |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 205 | if ((len == 7) && !strncmp(&name[1], "eafref", 6)) { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 206 | return LY_TYPE_LEAFREF; |
| 207 | } |
| 208 | } else if (name[0] == 's') { |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 209 | if ((len == 6) && !strncmp(&name[1], "tring", 5)) { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 210 | return LY_TYPE_STRING; |
| 211 | } |
| 212 | } else if (name[0] == 'u') { |
| 213 | if (name[1] == 'n') { |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 214 | if ((len == 5) && !strncmp(&name[2], "ion", 3)) { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 215 | return LY_TYPE_UNION; |
| 216 | } |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 217 | } else if ((name[1] == 'i') && (name[2] == 'n') && (name[3] == 't')) { |
| 218 | if ((len == 5) && (name[4] == '8')) { |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 219 | return LY_TYPE_UINT8; |
| 220 | } else if (len == 6) { |
| 221 | if (!strncmp(&name[4], "16", 2)) { |
| 222 | return LY_TYPE_UINT16; |
| 223 | } else if (!strncmp(&name[4], "32", 2)) { |
| 224 | return LY_TYPE_UINT32; |
| 225 | } else if (!strncmp(&name[4], "64", 2)) { |
| 226 | return LY_TYPE_UINT64; |
| 227 | } |
| 228 | } |
| 229 | } |
| 230 | } |
| 231 | } |
| 232 | |
| 233 | return LY_TYPE_UNKNOWN; |
| 234 | } |
| 235 | |
Michal Vasko | edb0fa5 | 2022-10-04 10:36:00 +0200 | [diff] [blame] | 236 | /** |
| 237 | * @brief Find a typedef in a sized array. |
| 238 | * |
| 239 | * @param[in] name Typedef name. |
| 240 | * @param[in] typedefs Sized array of typedefs. |
| 241 | * @return Found typedef, NULL if none. |
| 242 | */ |
| 243 | static const struct lysp_tpdf * |
| 244 | lysp_typedef_match(const char *name, const struct lysp_tpdf *typedefs) |
| 245 | { |
| 246 | LY_ARRAY_COUNT_TYPE u; |
| 247 | |
| 248 | LY_ARRAY_FOR(typedefs, u) { |
| 249 | if (!strcmp(name, typedefs[u].name)) { |
| 250 | /* match */ |
| 251 | return &typedefs[u]; |
| 252 | } |
| 253 | } |
| 254 | return NULL; |
| 255 | } |
| 256 | |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 257 | LY_ERR |
Michal Vasko | a99b357 | 2021-02-01 11:54:58 +0100 | [diff] [blame] | 258 | lysp_type_find(const char *id, struct lysp_node *start_node, const struct lysp_module *start_module, |
Michal Vasko | edb0fa5 | 2022-10-04 10:36:00 +0200 | [diff] [blame] | 259 | const struct lysc_ext_instance *ext, LY_DATA_TYPE *type, const struct lysp_tpdf **tpdf, struct lysp_node **node) |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 260 | { |
| 261 | const char *str, *name; |
| 262 | struct lysp_tpdf *typedefs; |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 263 | const struct lysp_tpdf *ext_typedefs; |
Michal Vasko | b2d55bf | 2020-11-02 15:42:43 +0100 | [diff] [blame] | 264 | const struct lys_module *mod; |
Michal Vasko | a99b357 | 2021-02-01 11:54:58 +0100 | [diff] [blame] | 265 | const struct lysp_module *local_module; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 266 | LY_ARRAY_COUNT_TYPE u, v; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 267 | |
| 268 | assert(id); |
| 269 | assert(start_module); |
| 270 | assert(tpdf); |
| 271 | assert(node); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 272 | |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 273 | *node = NULL; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 274 | str = strchr(id, ':'); |
| 275 | if (str) { |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 276 | mod = ly_resolve_prefix(start_module->mod->ctx, id, str - id, LY_VALUE_SCHEMA, (void *)start_module); |
Michal Vasko | a99b357 | 2021-02-01 11:54:58 +0100 | [diff] [blame] | 277 | local_module = mod ? mod->parsed : NULL; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 278 | name = str + 1; |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 279 | *type = LY_TYPE_UNKNOWN; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 280 | } else { |
Michal Vasko | a99b357 | 2021-02-01 11:54:58 +0100 | [diff] [blame] | 281 | local_module = start_module; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 282 | name = id; |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 283 | |
| 284 | /* check for built-in types */ |
| 285 | *type = lysp_type_str2builtin(name, strlen(name)); |
| 286 | if (*type) { |
| 287 | *tpdf = NULL; |
| 288 | return LY_SUCCESS; |
| 289 | } |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 290 | } |
Michal Vasko | a99b357 | 2021-02-01 11:54:58 +0100 | [diff] [blame] | 291 | LY_CHECK_RET(!local_module, LY_ENOTFOUND); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 292 | |
Michal Vasko | edb0fa5 | 2022-10-04 10:36:00 +0200 | [diff] [blame] | 293 | if (local_module == start_module) { |
| 294 | if (start_node) { |
| 295 | /* search typedefs in parent's nodes */ |
| 296 | for (*node = start_node; *node; *node = (*node)->parent) { |
| 297 | *tpdf = lysp_typedef_match(name, lysp_node_typedefs(*node)); |
| 298 | if (*tpdf) { |
| 299 | /* match */ |
| 300 | return LY_SUCCESS; |
| 301 | } |
| 302 | } |
| 303 | } |
| 304 | |
| 305 | if (ext) { |
| 306 | /* search typedefs directly in the extension */ |
Michal Vasko | fbd037c | 2022-11-08 10:34:20 +0100 | [diff] [blame] | 307 | lyplg_ext_parsed_get_storage(ext, LY_STMT_TYPEDEF, sizeof ext_typedefs, (const void **)&ext_typedefs); |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 308 | if ((*tpdf = lysp_typedef_match(name, ext_typedefs))) { |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 309 | /* match */ |
| 310 | return LY_SUCCESS; |
| 311 | } |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 312 | } |
| 313 | } |
| 314 | |
Michal Vasko | 915e544 | 2021-06-08 14:59:21 +0200 | [diff] [blame] | 315 | /* go to main module if in submodule */ |
| 316 | local_module = local_module->mod->parsed; |
| 317 | |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 318 | /* search in top-level typedefs */ |
Michal Vasko | a99b357 | 2021-02-01 11:54:58 +0100 | [diff] [blame] | 319 | if (local_module->typedefs) { |
| 320 | LY_ARRAY_FOR(local_module->typedefs, u) { |
| 321 | if (!strcmp(name, local_module->typedefs[u].name)) { |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 322 | /* match */ |
Michal Vasko | a99b357 | 2021-02-01 11:54:58 +0100 | [diff] [blame] | 323 | *tpdf = &local_module->typedefs[u]; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 324 | return LY_SUCCESS; |
| 325 | } |
| 326 | } |
| 327 | } |
| 328 | |
Michal Vasko | 915e544 | 2021-06-08 14:59:21 +0200 | [diff] [blame] | 329 | /* search in all submodules' typedefs */ |
Michal Vasko | a99b357 | 2021-02-01 11:54:58 +0100 | [diff] [blame] | 330 | LY_ARRAY_FOR(local_module->includes, u) { |
| 331 | typedefs = local_module->includes[u].submodule->typedefs; |
Radek Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 332 | LY_ARRAY_FOR(typedefs, v) { |
| 333 | if (!strcmp(name, typedefs[v].name)) { |
| 334 | /* match */ |
| 335 | *tpdf = &typedefs[v]; |
| 336 | return LY_SUCCESS; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 337 | } |
| 338 | } |
| 339 | } |
| 340 | |
| 341 | return LY_ENOTFOUND; |
| 342 | } |
| 343 | |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 344 | /** |
aPiecek | dc12b9f | 2021-06-25 10:55:47 +0200 | [diff] [blame] | 345 | * @brief Insert @p name to hash table and if @p name has already |
| 346 | * been added, then log an error. |
| 347 | * |
| 348 | * This function is used to detect duplicate names. |
| 349 | * |
| 350 | * @param[in,out] ctx Context to log the error. |
| 351 | * @param[in,out] ht Hash table with top-level names. |
| 352 | * @param[in] name Inserted top-level identifier. |
Michal Vasko | 8efac24 | 2023-03-30 08:24:56 +0200 | [diff] [blame] | 353 | * @param[in] statement The name of the statement type from which @p name originated (eg typedef, feature, ...). |
aPiecek | dc12b9f | 2021-06-25 10:55:47 +0200 | [diff] [blame] | 354 | * @param[in] err_detail Optional error specification. |
| 355 | * @return LY_ERR, but LY_EEXIST is mapped to LY_EVALID. |
| 356 | */ |
| 357 | static LY_ERR |
Michal Vasko | 8efac24 | 2023-03-30 08:24:56 +0200 | [diff] [blame] | 358 | lysp_check_dup_ht_insert(struct lysp_ctx *ctx, struct ly_ht *ht, const char *name, const char *statement, |
| 359 | const char *err_detail) |
aPiecek | dc12b9f | 2021-06-25 10:55:47 +0200 | [diff] [blame] | 360 | { |
| 361 | LY_ERR ret; |
| 362 | uint32_t hash; |
| 363 | |
Michal Vasko | ae130f5 | 2023-04-20 14:25:16 +0200 | [diff] [blame] | 364 | hash = lyht_hash(name, strlen(name)); |
aPiecek | dc12b9f | 2021-06-25 10:55:47 +0200 | [diff] [blame] | 365 | ret = lyht_insert(ht, &name, hash, NULL); |
| 366 | if (ret == LY_EEXIST) { |
| 367 | if (err_detail) { |
| 368 | LOGVAL_PARSER(ctx, LY_VCODE_DUPIDENT2, name, statement, err_detail); |
| 369 | } else { |
| 370 | LOGVAL_PARSER(ctx, LY_VCODE_DUPIDENT, name, statement); |
| 371 | } |
| 372 | ret = LY_EVALID; |
| 373 | } |
| 374 | |
| 375 | return ret; |
| 376 | } |
| 377 | |
| 378 | /** |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 379 | * @brief Check name of a new type to avoid name collisions. |
| 380 | * |
| 381 | * @param[in] ctx Parser context, module where the type is being defined is taken from here. |
| 382 | * @param[in] node Schema node where the type is being defined, NULL in case of a top-level typedef. |
| 383 | * @param[in] tpdf Typedef definition to check. |
| 384 | * @param[in,out] tpdfs_global Initialized hash table to store temporary data between calls. When the module's |
aPiecek | c7594b7 | 2021-06-29 09:00:03 +0200 | [diff] [blame] | 385 | * typedefs are checked, caller is supposed to free the table. |
| 386 | * @return LY_EVALID in case of collision, LY_SUCCESS otherwise. |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 387 | */ |
| 388 | static LY_ERR |
Michal Vasko | d0625d7 | 2022-10-06 15:02:50 +0200 | [diff] [blame] | 389 | lysp_check_dup_typedef(struct lysp_ctx *ctx, struct lysp_node *node, const struct lysp_tpdf *tpdf, |
Michal Vasko | 8efac24 | 2023-03-30 08:24:56 +0200 | [diff] [blame] | 390 | struct ly_ht *tpdfs_global) |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 391 | { |
| 392 | struct lysp_node *parent; |
| 393 | uint32_t hash; |
| 394 | size_t name_len; |
| 395 | const char *name; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 396 | LY_ARRAY_COUNT_TYPE u; |
Radek Krejci | 0fb2856 | 2018-12-13 15:17:37 +0100 | [diff] [blame] | 397 | const struct lysp_tpdf *typedefs; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 398 | |
| 399 | assert(ctx); |
| 400 | assert(tpdf); |
| 401 | |
| 402 | name = tpdf->name; |
| 403 | name_len = strlen(name); |
| 404 | |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 405 | if (lysp_type_str2builtin(name, name_len)) { |
aPiecek | c7594b7 | 2021-06-29 09:00:03 +0200 | [diff] [blame] | 406 | LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, |
| 407 | "Duplicate identifier \"%s\" of typedef statement - name collision with a built-in type.", name); |
| 408 | return LY_EVALID; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 409 | } |
| 410 | |
| 411 | /* check locally scoped typedefs (avoid name shadowing) */ |
| 412 | if (node) { |
Radek Krejci | 0fb2856 | 2018-12-13 15:17:37 +0100 | [diff] [blame] | 413 | typedefs = lysp_node_typedefs(node); |
| 414 | LY_ARRAY_FOR(typedefs, u) { |
| 415 | if (&typedefs[u] == tpdf) { |
| 416 | break; |
| 417 | } |
| 418 | if (!strcmp(name, typedefs[u].name)) { |
aPiecek | c7594b7 | 2021-06-29 09:00:03 +0200 | [diff] [blame] | 419 | LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, |
| 420 | "Duplicate identifier \"%s\" of typedef statement - name collision with sibling type.", name); |
| 421 | return LY_EVALID; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 422 | } |
| 423 | } |
| 424 | /* search typedefs in parent's nodes */ |
Radek Krejci | 87e78ca | 2019-05-02 09:51:29 +0200 | [diff] [blame] | 425 | for (parent = node->parent; parent; parent = parent->parent) { |
Michal Vasko | edb0fa5 | 2022-10-04 10:36:00 +0200 | [diff] [blame] | 426 | if (lysp_typedef_match(name, lysp_node_typedefs(parent))) { |
aPiecek | c7594b7 | 2021-06-29 09:00:03 +0200 | [diff] [blame] | 427 | LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, |
| 428 | "Duplicate identifier \"%s\" of typedef statement - name collision with another scoped type.", name); |
| 429 | return LY_EVALID; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 430 | } |
| 431 | } |
| 432 | } |
| 433 | |
| 434 | /* check collision with the top-level typedefs */ |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 435 | if (node) { |
Michal Vasko | ae130f5 | 2023-04-20 14:25:16 +0200 | [diff] [blame] | 436 | hash = lyht_hash(name, name_len); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 437 | if (!lyht_find(tpdfs_global, &name, hash, NULL)) { |
aPiecek | c7594b7 | 2021-06-29 09:00:03 +0200 | [diff] [blame] | 438 | LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, |
| 439 | "Duplicate identifier \"%s\" of typedef statement - scoped type collide with a top-level type.", name); |
| 440 | return LY_EVALID; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 441 | } |
| 442 | } else { |
aPiecek | c7594b7 | 2021-06-29 09:00:03 +0200 | [diff] [blame] | 443 | LY_CHECK_RET(lysp_check_dup_ht_insert(ctx, tpdfs_global, name, "typedef", |
| 444 | "name collision with another top-level type")); |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 445 | /* it is not necessary to test collision with the scoped types - in lysp_check_typedefs, all the |
| 446 | * top-level typedefs are inserted into the tables before the scoped typedefs, so the collision |
| 447 | * is detected in the first branch few lines above */ |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 448 | } |
| 449 | |
| 450 | return LY_SUCCESS; |
| 451 | } |
| 452 | |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 453 | /** |
| 454 | * @brief Compare identifiers. |
Michal Vasko | 62524a9 | 2021-02-26 10:08:50 +0100 | [diff] [blame] | 455 | * Implementation of ::lyht_value_equal_cb. |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 456 | */ |
| 457 | static ly_bool |
| 458 | lysp_id_cmp(void *val1, void *val2, ly_bool UNUSED(mod), void *UNUSED(cb_data)) |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 459 | { |
Michal Vasko | 11ac39a | 2021-07-23 12:46:56 +0200 | [diff] [blame] | 460 | char *id1, *id2; |
| 461 | |
| 462 | id1 = *(char **)val1; |
| 463 | id2 = *(char **)val2; |
| 464 | |
| 465 | return strcmp(id1, id2) == 0 ? 1 : 0; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 466 | } |
| 467 | |
| 468 | LY_ERR |
Michal Vasko | d0625d7 | 2022-10-06 15:02:50 +0200 | [diff] [blame] | 469 | lysp_check_dup_typedefs(struct lysp_ctx *ctx, struct lysp_module *mod) |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 470 | { |
Michal Vasko | 8efac24 | 2023-03-30 08:24:56 +0200 | [diff] [blame] | 471 | struct ly_ht *ids_global; |
Radek Krejci | 0fb2856 | 2018-12-13 15:17:37 +0100 | [diff] [blame] | 472 | const struct lysp_tpdf *typedefs; |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 473 | LY_ARRAY_COUNT_TYPE u, v; |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 474 | uint32_t i; |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 475 | LY_ERR ret = LY_SUCCESS; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 476 | |
| 477 | /* check name collisions - typedefs and groupings */ |
Radek Krejci | f13b87b | 2020-12-01 22:02:17 +0100 | [diff] [blame] | 478 | ids_global = lyht_new(LYHT_MIN_SIZE, sizeof(char *), lysp_id_cmp, NULL, 1); |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 479 | LY_ARRAY_FOR(mod->typedefs, v) { |
aPiecek | e1fbd95 | 2021-06-29 08:12:55 +0200 | [diff] [blame] | 480 | ret = lysp_check_dup_typedef(ctx, NULL, &mod->typedefs[v], ids_global); |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 481 | LY_CHECK_GOTO(ret, cleanup); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 482 | } |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 483 | LY_ARRAY_FOR(mod->includes, v) { |
| 484 | LY_ARRAY_FOR(mod->includes[v].submodule->typedefs, u) { |
aPiecek | e1fbd95 | 2021-06-29 08:12:55 +0200 | [diff] [blame] | 485 | ret = lysp_check_dup_typedef(ctx, NULL, &mod->includes[v].submodule->typedefs[u], ids_global); |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 486 | LY_CHECK_GOTO(ret, cleanup); |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 487 | } |
| 488 | } |
Radek Krejci | 7eb54ba | 2020-05-18 16:30:04 +0200 | [diff] [blame] | 489 | for (i = 0; i < ctx->tpdfs_nodes.count; ++i) { |
| 490 | typedefs = lysp_node_typedefs((struct lysp_node *)ctx->tpdfs_nodes.objs[i]); |
| 491 | LY_ARRAY_FOR(typedefs, u) { |
aPiecek | e1fbd95 | 2021-06-29 08:12:55 +0200 | [diff] [blame] | 492 | ret = lysp_check_dup_typedef(ctx, (struct lysp_node *)ctx->tpdfs_nodes.objs[i], &typedefs[u], ids_global); |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 493 | LY_CHECK_GOTO(ret, cleanup); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 494 | } |
| 495 | } |
Michal Vasko | 405cc9e | 2020-12-01 12:01:27 +0100 | [diff] [blame] | 496 | |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 497 | cleanup: |
Michal Vasko | 77b7f90a | 2023-01-31 15:42:41 +0100 | [diff] [blame] | 498 | lyht_free(ids_global, NULL); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 499 | return ret; |
| 500 | } |
| 501 | |
Michal Vasko | edb0fa5 | 2022-10-04 10:36:00 +0200 | [diff] [blame] | 502 | static const struct lysp_node_grp * |
| 503 | lysp_grouping_match(const char *name, struct lysp_node *node) |
| 504 | { |
| 505 | const struct lysp_node_grp *groupings, *grp_iter; |
| 506 | |
| 507 | groupings = lysp_node_groupings(node); |
| 508 | LY_LIST_FOR(groupings, grp_iter) { |
| 509 | if (!strcmp(name, grp_iter->name)) { |
| 510 | /* match */ |
| 511 | return grp_iter; |
| 512 | } |
| 513 | } |
| 514 | |
| 515 | return NULL; |
| 516 | } |
| 517 | |
aPiecek | 63e080d | 2021-06-29 13:53:28 +0200 | [diff] [blame] | 518 | /** |
| 519 | * @brief Check name of a new grouping to avoid name collisions. |
| 520 | * |
| 521 | * @param[in] ctx Parser context, module where the grouping is being defined is taken from here. |
| 522 | * @param[in] node Schema node where the grouping is being defined, NULL in case of a top-level grouping. |
| 523 | * @param[in] grp Grouping definition to check. |
| 524 | * @param[in,out] grps_global Initialized hash table to store temporary data between calls. When the module's |
| 525 | * groupings are checked, caller is supposed to free the table. |
| 526 | * @return LY_EVALID in case of collision, LY_SUCCESS otherwise. |
| 527 | */ |
| 528 | static LY_ERR |
Michal Vasko | d0625d7 | 2022-10-06 15:02:50 +0200 | [diff] [blame] | 529 | lysp_check_dup_grouping(struct lysp_ctx *ctx, struct lysp_node *node, const struct lysp_node_grp *grp, |
Michal Vasko | 8efac24 | 2023-03-30 08:24:56 +0200 | [diff] [blame] | 530 | struct ly_ht *grps_global) |
aPiecek | 63e080d | 2021-06-29 13:53:28 +0200 | [diff] [blame] | 531 | { |
| 532 | struct lysp_node *parent; |
| 533 | uint32_t hash; |
| 534 | size_t name_len; |
| 535 | const char *name; |
| 536 | const struct lysp_node_grp *groupings, *grp_iter; |
| 537 | |
| 538 | assert(ctx); |
| 539 | assert(grp); |
| 540 | |
| 541 | name = grp->name; |
| 542 | name_len = strlen(name); |
| 543 | |
| 544 | /* check locally scoped groupings (avoid name shadowing) */ |
| 545 | if (node) { |
| 546 | groupings = lysp_node_groupings(node); |
| 547 | LY_LIST_FOR(groupings, grp_iter) { |
| 548 | if (grp_iter == grp) { |
| 549 | break; |
| 550 | } |
| 551 | if (!strcmp(name, grp_iter->name)) { |
| 552 | LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, |
| 553 | "Duplicate identifier \"%s\" of grouping statement - name collision with sibling grouping.", name); |
| 554 | return LY_EVALID; |
| 555 | } |
| 556 | } |
| 557 | /* search grouping in parent's nodes */ |
| 558 | for (parent = node->parent; parent; parent = parent->parent) { |
| 559 | if (lysp_grouping_match(name, parent)) { |
| 560 | LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, |
| 561 | "Duplicate identifier \"%s\" of grouping statement - name collision with another scoped grouping.", name); |
| 562 | return LY_EVALID; |
| 563 | } |
| 564 | } |
| 565 | } |
| 566 | |
| 567 | /* check collision with the top-level groupings */ |
| 568 | if (node) { |
Michal Vasko | ae130f5 | 2023-04-20 14:25:16 +0200 | [diff] [blame] | 569 | hash = lyht_hash(name, name_len); |
aPiecek | 63e080d | 2021-06-29 13:53:28 +0200 | [diff] [blame] | 570 | if (!lyht_find(grps_global, &name, hash, NULL)) { |
| 571 | LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, |
| 572 | "Duplicate identifier \"%s\" of grouping statement - scoped grouping collide with a top-level grouping.", name); |
| 573 | return LY_EVALID; |
| 574 | } |
| 575 | } else { |
| 576 | LY_CHECK_RET(lysp_check_dup_ht_insert(ctx, grps_global, name, "grouping", |
| 577 | "name collision with another top-level grouping")); |
| 578 | } |
| 579 | |
| 580 | return LY_SUCCESS; |
| 581 | } |
| 582 | |
| 583 | LY_ERR |
Michal Vasko | d0625d7 | 2022-10-06 15:02:50 +0200 | [diff] [blame] | 584 | lysp_check_dup_groupings(struct lysp_ctx *ctx, struct lysp_module *mod) |
aPiecek | 63e080d | 2021-06-29 13:53:28 +0200 | [diff] [blame] | 585 | { |
Michal Vasko | 8efac24 | 2023-03-30 08:24:56 +0200 | [diff] [blame] | 586 | struct ly_ht *ids_global; |
aPiecek | 63e080d | 2021-06-29 13:53:28 +0200 | [diff] [blame] | 587 | const struct lysp_node_grp *groupings, *grp_iter; |
| 588 | LY_ARRAY_COUNT_TYPE u; |
| 589 | uint32_t i; |
| 590 | LY_ERR ret = LY_SUCCESS; |
| 591 | |
| 592 | ids_global = lyht_new(LYHT_MIN_SIZE, sizeof(char *), lysp_id_cmp, NULL, 1); |
| 593 | LY_LIST_FOR(mod->groupings, grp_iter) { |
| 594 | ret = lysp_check_dup_grouping(ctx, NULL, grp_iter, ids_global); |
| 595 | LY_CHECK_GOTO(ret, cleanup); |
| 596 | } |
| 597 | LY_ARRAY_FOR(mod->includes, u) { |
| 598 | LY_LIST_FOR(mod->includes[u].submodule->groupings, grp_iter) { |
| 599 | ret = lysp_check_dup_grouping(ctx, NULL, grp_iter, ids_global); |
| 600 | LY_CHECK_GOTO(ret, cleanup); |
| 601 | } |
| 602 | } |
| 603 | for (i = 0; i < ctx->grps_nodes.count; ++i) { |
| 604 | groupings = lysp_node_groupings((struct lysp_node *)ctx->grps_nodes.objs[i]); |
| 605 | LY_LIST_FOR(groupings, grp_iter) { |
| 606 | ret = lysp_check_dup_grouping(ctx, (struct lysp_node *)ctx->grps_nodes.objs[i], grp_iter, ids_global); |
| 607 | LY_CHECK_GOTO(ret, cleanup); |
| 608 | } |
| 609 | } |
| 610 | |
| 611 | cleanup: |
Michal Vasko | 77b7f90a | 2023-01-31 15:42:41 +0100 | [diff] [blame] | 612 | lyht_free(ids_global, NULL); |
aPiecek | 63e080d | 2021-06-29 13:53:28 +0200 | [diff] [blame] | 613 | return ret; |
| 614 | } |
| 615 | |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 616 | static ly_bool |
| 617 | ly_ptrequal_cb(void *val1_p, void *val2_p, ly_bool UNUSED(mod), void *UNUSED(cb_data)) |
| 618 | { |
| 619 | void *ptr1 = *((void **)val1_p), *ptr2 = *((void **)val2_p); |
| 620 | |
| 621 | return ptr1 == ptr2 ? 1 : 0; |
| 622 | } |
| 623 | |
| 624 | LY_ERR |
Michal Vasko | d0625d7 | 2022-10-06 15:02:50 +0200 | [diff] [blame] | 625 | lysp_check_dup_features(struct lysp_ctx *ctx, struct lysp_module *mod) |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 626 | { |
| 627 | LY_ARRAY_COUNT_TYPE u; |
Michal Vasko | 8efac24 | 2023-03-30 08:24:56 +0200 | [diff] [blame] | 628 | struct ly_ht *ht; |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 629 | struct lysp_feature *f; |
aPiecek | dc12b9f | 2021-06-25 10:55:47 +0200 | [diff] [blame] | 630 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 631 | |
aPiecek | f620307 | 2021-06-25 10:58:26 +0200 | [diff] [blame] | 632 | ht = lyht_new(LYHT_MIN_SIZE, sizeof(void *), ly_ptrequal_cb, NULL, 1); |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 633 | LY_CHECK_RET(!ht, LY_EMEM); |
| 634 | |
| 635 | /* add all module features into a hash table */ |
| 636 | LY_ARRAY_FOR(mod->features, struct lysp_feature, f) { |
aPiecek | ea147b3 | 2021-06-29 07:52:47 +0200 | [diff] [blame] | 637 | ret = lysp_check_dup_ht_insert(ctx, ht, f->name, "feature", |
| 638 | "name collision with another top-level feature"); |
aPiecek | dc12b9f | 2021-06-25 10:55:47 +0200 | [diff] [blame] | 639 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 640 | } |
| 641 | |
| 642 | /* add all submodule features into a hash table */ |
| 643 | LY_ARRAY_FOR(mod->includes, u) { |
| 644 | LY_ARRAY_FOR(mod->includes[u].submodule->features, struct lysp_feature, f) { |
aPiecek | ea147b3 | 2021-06-29 07:52:47 +0200 | [diff] [blame] | 645 | ret = lysp_check_dup_ht_insert(ctx, ht, f->name, "feature", |
| 646 | "name collision with another top-level feature"); |
aPiecek | dc12b9f | 2021-06-25 10:55:47 +0200 | [diff] [blame] | 647 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 648 | } |
| 649 | } |
| 650 | |
| 651 | cleanup: |
Michal Vasko | 77b7f90a | 2023-01-31 15:42:41 +0100 | [diff] [blame] | 652 | lyht_free(ht, NULL); |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 653 | return ret; |
| 654 | } |
| 655 | |
| 656 | LY_ERR |
Michal Vasko | d0625d7 | 2022-10-06 15:02:50 +0200 | [diff] [blame] | 657 | lysp_check_dup_identities(struct lysp_ctx *ctx, struct lysp_module *mod) |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 658 | { |
| 659 | LY_ARRAY_COUNT_TYPE u; |
Michal Vasko | 8efac24 | 2023-03-30 08:24:56 +0200 | [diff] [blame] | 660 | struct ly_ht *ht; |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 661 | struct lysp_ident *i; |
aPiecek | dc12b9f | 2021-06-25 10:55:47 +0200 | [diff] [blame] | 662 | LY_ERR ret = LY_SUCCESS; |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 663 | |
aPiecek | f620307 | 2021-06-25 10:58:26 +0200 | [diff] [blame] | 664 | ht = lyht_new(LYHT_MIN_SIZE, sizeof(void *), ly_ptrequal_cb, NULL, 1); |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 665 | LY_CHECK_RET(!ht, LY_EMEM); |
| 666 | |
| 667 | /* add all module identities into a hash table */ |
| 668 | LY_ARRAY_FOR(mod->identities, struct lysp_ident, i) { |
aPiecek | ea147b3 | 2021-06-29 07:52:47 +0200 | [diff] [blame] | 669 | ret = lysp_check_dup_ht_insert(ctx, ht, i->name, "identity", |
| 670 | "name collision with another top-level identity"); |
aPiecek | dc12b9f | 2021-06-25 10:55:47 +0200 | [diff] [blame] | 671 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 672 | } |
| 673 | |
| 674 | /* add all submodule identities into a hash table */ |
| 675 | LY_ARRAY_FOR(mod->includes, u) { |
| 676 | LY_ARRAY_FOR(mod->includes[u].submodule->identities, struct lysp_ident, i) { |
aPiecek | ea147b3 | 2021-06-29 07:52:47 +0200 | [diff] [blame] | 677 | ret = lysp_check_dup_ht_insert(ctx, ht, i->name, "identity", |
| 678 | "name collision with another top-level identity"); |
aPiecek | dc12b9f | 2021-06-25 10:55:47 +0200 | [diff] [blame] | 679 | LY_CHECK_GOTO(ret, cleanup); |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 680 | } |
| 681 | } |
| 682 | |
| 683 | cleanup: |
Michal Vasko | 77b7f90a | 2023-01-31 15:42:41 +0100 | [diff] [blame] | 684 | lyht_free(ht, NULL); |
Michal Vasko | 7b1ad1a | 2020-11-02 15:41:27 +0100 | [diff] [blame] | 685 | return ret; |
| 686 | } |
| 687 | |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 688 | struct lysp_load_module_check_data { |
| 689 | const char *name; |
| 690 | const char *revision; |
| 691 | const char *path; |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 692 | const char *submoduleof; |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 693 | }; |
| 694 | |
| 695 | static LY_ERR |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 696 | lysp_load_module_check(const struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *data) |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 697 | { |
| 698 | struct lysp_load_module_check_data *info = data; |
Jan Kundrát | 026737b | 2023-09-05 13:03:30 +0200 | [diff] [blame] | 699 | const char *name; |
Radek Krejci | b3289d6 | 2019-09-18 12:21:39 +0200 | [diff] [blame] | 700 | uint8_t latest_revision; |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 701 | struct lysp_revision *revs; |
| 702 | |
| 703 | name = mod ? mod->mod->name : submod->name; |
| 704 | revs = mod ? mod->revs : submod->revs; |
Radek Krejci | b3289d6 | 2019-09-18 12:21:39 +0200 | [diff] [blame] | 705 | latest_revision = mod ? mod->mod->latest_revision : submod->latest_revision; |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 706 | |
| 707 | if (info->name) { |
| 708 | /* check name of the parsed model */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 709 | if (strcmp(info->name, name)) { |
| 710 | LOGERR(ctx, LY_EINVAL, "Unexpected module \"%s\" parsed instead of \"%s\").", name, info->name); |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 711 | return LY_EINVAL; |
| 712 | } |
| 713 | } |
| 714 | if (info->revision) { |
| 715 | /* check revision of the parsed model */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 716 | if (!revs || strcmp(info->revision, revs[0].date)) { |
| 717 | LOGERR(ctx, LY_EINVAL, "Module \"%s\" parsed with the wrong revision (\"%s\" instead \"%s\").", name, |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 718 | revs ? revs[0].date : "none", info->revision); |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 719 | return LY_EINVAL; |
| 720 | } |
Radek Krejci | b3289d6 | 2019-09-18 12:21:39 +0200 | [diff] [blame] | 721 | } else if (!latest_revision) { |
| 722 | /* do not log, we just need to drop the schema and use the latest revision from the context */ |
| 723 | return LY_EEXIST; |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 724 | } |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 725 | if (submod) { |
| 726 | assert(info->submoduleof); |
| 727 | |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 728 | /* check that the submodule belongs-to our module */ |
Michal Vasko | c3781c3 | 2020-10-06 14:04:08 +0200 | [diff] [blame] | 729 | if (strcmp(info->submoduleof, submod->mod->name)) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 730 | LOGVAL(ctx, LYVE_REFERENCE, "Included \"%s\" submodule from \"%s\" belongs-to a different module \"%s\".", |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 731 | submod->name, info->submoduleof, submod->mod->name); |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 732 | return LY_EVALID; |
| 733 | } |
| 734 | /* check circular dependency */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 735 | if (submod->parsing) { |
Radek Krejci | 2efc45b | 2020-12-22 16:25:44 +0100 | [diff] [blame] | 736 | LOGVAL(ctx, LYVE_REFERENCE, "A circular dependency (include) for module \"%s\".", submod->name); |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 737 | return LY_EVALID; |
| 738 | } |
| 739 | } |
| 740 | if (info->path) { |
Jan Kundrát | 026737b | 2023-09-05 13:03:30 +0200 | [diff] [blame] | 741 | ly_check_module_filename(ctx, name, revs ? revs[0].date : NULL, info->path); |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 742 | } |
| 743 | return LY_SUCCESS; |
| 744 | } |
| 745 | |
Michal Vasko | e7a1daf | 2021-04-19 18:04:27 +0200 | [diff] [blame] | 746 | /** |
Michal Vasko | 4e205e8 | 2021-06-08 14:01:47 +0200 | [diff] [blame] | 747 | * @brief Parse a (sub)module from a local file and add into the context. |
Michal Vasko | e7a1daf | 2021-04-19 18:04:27 +0200 | [diff] [blame] | 748 | * |
| 749 | * This function does not check the presence of the (sub)module in context, it should be done before calling this function. |
| 750 | * |
Michal Vasko | e7a1daf | 2021-04-19 18:04:27 +0200 | [diff] [blame] | 751 | * @param[in] ctx libyang context where to work. |
| 752 | * @param[in] name Name of the (sub)module to load. |
| 753 | * @param[in] revision Optional revision of the (sub)module to load, if NULL the newest revision is being loaded. |
Michal Vasko | e7a1daf | 2021-04-19 18:04:27 +0200 | [diff] [blame] | 754 | * @param[in] main_ctx Parser context of the main module in case of loading submodule. |
| 755 | * @param[in] main_name Main module name in case of loading submodule. |
| 756 | * @param[in] required Module is required so error (even if the input file not found) are important. If 0, there is some |
| 757 | * backup and it is actually ok if the input data are not found. However, parser reports errors even in this case. |
Michal Vasko | dd99258 | 2021-06-10 14:34:57 +0200 | [diff] [blame] | 758 | * @param[in,out] new_mods Set of all the new mods added to the context. Includes this module and all of its imports. |
Michal Vasko | e7a1daf | 2021-04-19 18:04:27 +0200 | [diff] [blame] | 759 | * @param[out] result Parsed YANG schema tree of the requested module (struct lys_module*) or submodule (struct lysp_submodule*). |
| 760 | * If it is a module, it is already in the context! |
Michal Vasko | 4e205e8 | 2021-06-08 14:01:47 +0200 | [diff] [blame] | 761 | * @return LY_SUCCESS on success. |
Michal Vasko | 4e205e8 | 2021-06-08 14:01:47 +0200 | [diff] [blame] | 762 | * @return LY_ERR on error. |
Michal Vasko | e7a1daf | 2021-04-19 18:04:27 +0200 | [diff] [blame] | 763 | */ |
| 764 | static LY_ERR |
Michal Vasko | d0625d7 | 2022-10-06 15:02:50 +0200 | [diff] [blame] | 765 | lys_parse_localfile(struct ly_ctx *ctx, const char *name, const char *revision, struct lysp_ctx *main_ctx, |
Michal Vasko | dd99258 | 2021-06-10 14:34:57 +0200 | [diff] [blame] | 766 | const char *main_name, ly_bool required, struct ly_set *new_mods, void **result) |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 767 | { |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 768 | struct ly_in *in; |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 769 | char *filepath = NULL; |
| 770 | LYS_INFORMAT format; |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 771 | void *mod = NULL; |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 772 | LY_ERR ret = LY_SUCCESS; |
| 773 | struct lysp_load_module_check_data check_data = {0}; |
| 774 | |
Michal Vasko | 87f1cf0 | 2021-06-08 14:02:47 +0200 | [diff] [blame] | 775 | LY_CHECK_RET(lys_search_localfile(ly_ctx_get_searchdirs(ctx), !(ctx->flags & LY_CTX_DISABLE_SEARCHDIR_CWD), name, |
| 776 | revision, &filepath, &format)); |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 777 | if (!filepath) { |
| 778 | if (required) { |
| 779 | LOGERR(ctx, LY_ENOTFOUND, "Data model \"%s%s%s\" not found in local searchdirs.", name, revision ? "@" : "", |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 780 | revision ? revision : ""); |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 781 | } |
| 782 | return LY_ENOTFOUND; |
| 783 | } |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 784 | |
| 785 | LOGVRB("Loading schema from \"%s\" file.", filepath); |
| 786 | |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 787 | /* get the (sub)module */ |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 788 | LY_CHECK_ERR_GOTO(ret = ly_in_new_filepath(filepath, 0, &in), |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 789 | LOGERR(ctx, ret, "Unable to create input handler for filepath %s.", filepath), cleanup); |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 790 | check_data.name = name; |
| 791 | check_data.revision = revision; |
| 792 | check_data.path = filepath; |
fredgan | cd485b8 | 2019-10-18 15:00:17 +0800 | [diff] [blame] | 793 | check_data.submoduleof = main_name; |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 794 | if (main_ctx) { |
aPiecek | c3e2614 | 2021-06-22 14:25:49 +0200 | [diff] [blame] | 795 | ret = lys_parse_submodule(ctx, in, format, main_ctx, lysp_load_module_check, &check_data, new_mods, |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 796 | (struct lysp_submodule **)&mod); |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 797 | } else { |
Michal Vasko | dd99258 | 2021-06-10 14:34:57 +0200 | [diff] [blame] | 798 | ret = lys_parse_in(ctx, in, format, lysp_load_module_check, &check_data, new_mods, (struct lys_module **)&mod); |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 799 | |
| 800 | } |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 801 | ly_in_free(in, 1); |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 802 | LY_CHECK_GOTO(ret, cleanup); |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 803 | |
| 804 | *result = mod; |
| 805 | |
| 806 | /* success */ |
Michal Vasko | 7a0b076 | 2020-09-02 16:37:01 +0200 | [diff] [blame] | 807 | |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 808 | cleanup: |
| 809 | free(filepath); |
| 810 | return ret; |
| 811 | } |
| 812 | |
aPiecek | 4725aea | 2021-07-28 10:18:33 +0200 | [diff] [blame] | 813 | /** |
| 814 | * @brief Load module from searchdirs or from callback. |
| 815 | * |
| 816 | * @param[in] ctx libyang context where to work. |
| 817 | * @param[in] name Name of module to load. |
| 818 | * @param[in] revision Revision of module to load. |
Michal Vasko | bdac23f | 2022-01-12 14:02:35 +0100 | [diff] [blame] | 819 | * @param[in] mod_latest Module with the latest revision found in context, otherwise set to NULL. |
| 820 | * @param[in,out] new_mods Set of all the new mods added to the context. Includes this module and all of its imports. |
aPiecek | 4725aea | 2021-07-28 10:18:33 +0200 | [diff] [blame] | 821 | * @param[out] mod Loaded module. |
| 822 | * @return LY_SUCCESS on success. |
| 823 | * @return LY_ERR on error. |
| 824 | */ |
| 825 | static LY_ERR |
| 826 | lys_parse_load_from_clb_or_file(struct ly_ctx *ctx, const char *name, const char *revision, |
| 827 | struct lys_module *mod_latest, struct ly_set *new_mods, struct lys_module **mod) |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 828 | { |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 829 | const char *module_data = NULL; |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 830 | LYS_INFORMAT format = LYS_IN_UNKNOWN; |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 831 | |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 832 | void (*module_data_free)(void *module_data, void *user_data) = NULL; |
| 833 | struct lysp_load_module_check_data check_data = {0}; |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 834 | struct ly_in *in; |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 835 | |
Michal Vasko | bdac23f | 2022-01-12 14:02:35 +0100 | [diff] [blame] | 836 | *mod = NULL; |
| 837 | |
| 838 | if (mod_latest && (!ctx->imp_clb || (mod_latest->latest_revision & LYS_MOD_LATEST_IMPCLB)) && |
| 839 | ((ctx->flags & LY_CTX_DISABLE_SEARCHDIRS) || (mod_latest->latest_revision & LYS_MOD_LATEST_SEARCHDIRS))) { |
| 840 | /* we are not able to find a newer revision */ |
| 841 | return LY_SUCCESS; |
| 842 | } |
| 843 | |
aPiecek | 4725aea | 2021-07-28 10:18:33 +0200 | [diff] [blame] | 844 | if (!(ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) { |
| 845 | search_clb: |
Michal Vasko | bdac23f | 2022-01-12 14:02:35 +0100 | [diff] [blame] | 846 | /* check there is a callback and should be called */ |
| 847 | if (ctx->imp_clb && (!mod_latest || !(mod_latest->latest_revision & LYS_MOD_LATEST_IMPCLB))) { |
| 848 | if (!ctx->imp_clb(name, revision, NULL, NULL, ctx->imp_clb_data, &format, &module_data, &module_data_free)) { |
| 849 | LY_CHECK_RET(ly_in_new_memory(module_data, &in)); |
| 850 | check_data.name = name; |
| 851 | check_data.revision = revision; |
| 852 | lys_parse_in(ctx, in, format, lysp_load_module_check, &check_data, new_mods, mod); |
| 853 | ly_in_free(in, 0); |
| 854 | if (module_data_free) { |
| 855 | module_data_free((void *)module_data, ctx->imp_clb_data); |
| 856 | } |
Radek Krejci | b3289d6 | 2019-09-18 12:21:39 +0200 | [diff] [blame] | 857 | } |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 858 | } |
Michal Vasko | bdac23f | 2022-01-12 14:02:35 +0100 | [diff] [blame] | 859 | if (*mod && !revision) { |
| 860 | /* we got the latest revision module from the callback */ |
| 861 | (*mod)->latest_revision |= LYS_MOD_LATEST_IMPCLB; |
| 862 | } else if (!*mod && !(ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) { |
aPiecek | 4725aea | 2021-07-28 10:18:33 +0200 | [diff] [blame] | 863 | goto search_file; |
| 864 | } |
| 865 | } else { |
| 866 | search_file: |
Michal Vasko | bdac23f | 2022-01-12 14:02:35 +0100 | [diff] [blame] | 867 | /* check we can use searchdirs and that we should */ |
| 868 | if (!(ctx->flags & LY_CTX_DISABLE_SEARCHDIRS) && |
| 869 | (!mod_latest || !(mod_latest->latest_revision & LYS_MOD_LATEST_SEARCHDIRS))) { |
aPiecek | 4725aea | 2021-07-28 10:18:33 +0200 | [diff] [blame] | 870 | lys_parse_localfile(ctx, name, revision, NULL, NULL, mod_latest ? 0 : 1, new_mods, (void **)mod); |
| 871 | } |
Michal Vasko | bdac23f | 2022-01-12 14:02:35 +0100 | [diff] [blame] | 872 | if (*mod && !revision) { |
| 873 | /* we got the latest revision module in the searchdirs */ |
| 874 | (*mod)->latest_revision |= LYS_MOD_LATEST_IMPCLB; |
| 875 | } else if (!*mod && (ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) { |
aPiecek | 4725aea | 2021-07-28 10:18:33 +0200 | [diff] [blame] | 876 | goto search_clb; |
| 877 | } |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 878 | } |
| 879 | |
aPiecek | 4725aea | 2021-07-28 10:18:33 +0200 | [diff] [blame] | 880 | return LY_SUCCESS; |
| 881 | } |
| 882 | |
| 883 | /** |
aPiecek | d4911ee | 2021-07-30 07:40:24 +0200 | [diff] [blame] | 884 | * @brief Get module without revision according to priorities. |
| 885 | * |
| 886 | * 1. Search for the module with LYS_MOD_IMPORTED_REV. |
| 887 | * 2. Search for the implemented module. |
| 888 | * 3. Search for the latest module in the context. |
| 889 | * |
| 890 | * @param[in] ctx libyang context where module is searched. |
| 891 | * @param[in] name Name of the searched module. |
aPiecek | d4911ee | 2021-07-30 07:40:24 +0200 | [diff] [blame] | 892 | * @return Found module from context or NULL. |
| 893 | */ |
| 894 | static struct lys_module * |
Michal Vasko | bdac23f | 2022-01-12 14:02:35 +0100 | [diff] [blame] | 895 | lys_get_module_without_revision(struct ly_ctx *ctx, const char *name) |
aPiecek | d4911ee | 2021-07-30 07:40:24 +0200 | [diff] [blame] | 896 | { |
| 897 | struct lys_module *mod, *mod_impl; |
| 898 | uint32_t index; |
| 899 | |
Michal Vasko | cfcfd67 | 2023-02-14 11:20:42 +0100 | [diff] [blame] | 900 | /* try to find module with LYS_MOD_IMPORTED_REV flag */ |
aPiecek | d4911ee | 2021-07-30 07:40:24 +0200 | [diff] [blame] | 901 | index = 0; |
| 902 | while ((mod = ly_ctx_get_module_iter(ctx, &index))) { |
| 903 | if (!strcmp(mod->name, name) && (mod->latest_revision & LYS_MOD_IMPORTED_REV)) { |
| 904 | break; |
| 905 | } |
| 906 | } |
| 907 | |
Michal Vasko | cfcfd67 | 2023-02-14 11:20:42 +0100 | [diff] [blame] | 908 | /* try to find the implemented module */ |
aPiecek | d4911ee | 2021-07-30 07:40:24 +0200 | [diff] [blame] | 909 | mod_impl = ly_ctx_get_module_implemented(ctx, name); |
Michal Vasko | cfcfd67 | 2023-02-14 11:20:42 +0100 | [diff] [blame] | 910 | if (mod) { |
| 911 | if (mod_impl && (mod != mod_impl)) { |
| 912 | LOGVRB("Implemented module \"%s@%s\" is not used for import, revision \"%s\" is imported instead.", |
| 913 | mod_impl->name, mod_impl->revision, mod->revision); |
| 914 | } |
aPiecek | d4911ee | 2021-07-30 07:40:24 +0200 | [diff] [blame] | 915 | return mod; |
| 916 | } else if (mod_impl) { |
| 917 | return mod_impl; |
| 918 | } |
| 919 | |
Michal Vasko | cfcfd67 | 2023-02-14 11:20:42 +0100 | [diff] [blame] | 920 | /* try to find the latest module in the current context */ |
aPiecek | d4911ee | 2021-07-30 07:40:24 +0200 | [diff] [blame] | 921 | mod = ly_ctx_get_module_latest(ctx, name); |
aPiecek | d4911ee | 2021-07-30 07:40:24 +0200 | [diff] [blame] | 922 | |
| 923 | return mod; |
| 924 | } |
| 925 | |
| 926 | /** |
aPiecek | 4725aea | 2021-07-28 10:18:33 +0200 | [diff] [blame] | 927 | * @brief Check if a circular dependency exists between modules. |
| 928 | * |
| 929 | * @param[in] ctx libyang context for log an error. |
Michal Vasko | cfcfd67 | 2023-02-14 11:20:42 +0100 | [diff] [blame] | 930 | * @param[in,out] mod Examined module which is set to NULL if the circular dependency is detected. |
| 931 | * @return LY_SUCCESS if no circular dependecy is detected, otherwise LY_EVALID. |
aPiecek | 4725aea | 2021-07-28 10:18:33 +0200 | [diff] [blame] | 932 | */ |
| 933 | static LY_ERR |
| 934 | lys_check_circular_dependency(struct ly_ctx *ctx, struct lys_module **mod) |
| 935 | { |
| 936 | if ((*mod) && (*mod)->parsed->parsing) { |
| 937 | LOGVAL(ctx, LYVE_REFERENCE, "A circular dependency (import) for module \"%s\".", (*mod)->name); |
Michal Vasko | 4e205e8 | 2021-06-08 14:01:47 +0200 | [diff] [blame] | 938 | *mod = NULL; |
| 939 | return LY_EVALID; |
Michal Vasko | 0550b76 | 2020-11-24 18:04:08 +0100 | [diff] [blame] | 940 | } |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 941 | |
aPiecek | 4725aea | 2021-07-28 10:18:33 +0200 | [diff] [blame] | 942 | return LY_SUCCESS; |
| 943 | } |
| 944 | |
| 945 | LY_ERR |
| 946 | lys_parse_load(struct ly_ctx *ctx, const char *name, const char *revision, struct ly_set *new_mods, |
| 947 | struct lys_module **mod) |
| 948 | { |
| 949 | struct lys_module *mod_latest = NULL; |
| 950 | |
| 951 | assert(mod && new_mods); |
| 952 | |
Michal Vasko | 0550b76 | 2020-11-24 18:04:08 +0100 | [diff] [blame] | 953 | /* |
aPiecek | 4725aea | 2021-07-28 10:18:33 +0200 | [diff] [blame] | 954 | * Try to get the module from the context. |
Michal Vasko | 0550b76 | 2020-11-24 18:04:08 +0100 | [diff] [blame] | 955 | */ |
aPiecek | 4725aea | 2021-07-28 10:18:33 +0200 | [diff] [blame] | 956 | if (revision) { |
| 957 | /* Get the specific revision. */ |
| 958 | *mod = ly_ctx_get_module(ctx, name, revision); |
| 959 | } else { |
Michal Vasko | bdac23f | 2022-01-12 14:02:35 +0100 | [diff] [blame] | 960 | /* Get the requested module in a suitable revision in the context. */ |
| 961 | *mod = lys_get_module_without_revision(ctx, name); |
| 962 | if (*mod && !(*mod)->implemented && !((*mod)->latest_revision & LYS_MOD_IMPORTED_REV)) { |
aPiecek | 4725aea | 2021-07-28 10:18:33 +0200 | [diff] [blame] | 963 | /* Let us now search with callback and searchpaths to check |
| 964 | * if there is newer revision outside the context. |
| 965 | */ |
| 966 | mod_latest = *mod; |
| 967 | *mod = NULL; |
| 968 | } |
| 969 | } |
| 970 | |
Michal Vasko | 0550b76 | 2020-11-24 18:04:08 +0100 | [diff] [blame] | 971 | if (!*mod) { |
aPiecek | 4725aea | 2021-07-28 10:18:33 +0200 | [diff] [blame] | 972 | /* No suitable module in the context, try to load it. */ |
Michal Vasko | bdac23f | 2022-01-12 14:02:35 +0100 | [diff] [blame] | 973 | LY_CHECK_RET(lys_parse_load_from_clb_or_file(ctx, name, revision, mod_latest, new_mods, mod)); |
aPiecek | 4725aea | 2021-07-28 10:18:33 +0200 | [diff] [blame] | 974 | if (!*mod && !mod_latest) { |
Michal Vasko | 4e205e8 | 2021-06-08 14:01:47 +0200 | [diff] [blame] | 975 | LOGVAL(ctx, LYVE_REFERENCE, "Loading \"%s\" module failed.", name); |
Michal Vasko | 0550b76 | 2020-11-24 18:04:08 +0100 | [diff] [blame] | 976 | return LY_EVALID; |
| 977 | } |
aPiecek | 4725aea | 2021-07-28 10:18:33 +0200 | [diff] [blame] | 978 | |
| 979 | /* Update the latest_revision flag - here we have selected the latest available schema, |
| 980 | * consider that even the callback provides correct latest revision. |
| 981 | */ |
| 982 | if (!*mod) { |
| 983 | LOGVRB("Newer revision than \"%s@%s\" not found, using this as the latest revision.", |
| 984 | mod_latest->name, mod_latest->revision); |
| 985 | assert(mod_latest->latest_revision & LYS_MOD_LATEST_REV); |
| 986 | mod_latest->latest_revision |= LYS_MOD_LATEST_SEARCHDIRS; |
| 987 | *mod = mod_latest; |
| 988 | } else if (*mod && !revision && ((*mod)->latest_revision & LYS_MOD_LATEST_REV)) { |
| 989 | (*mod)->latest_revision |= LYS_MOD_LATEST_SEARCHDIRS; |
| 990 | } |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 991 | } |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 992 | |
aPiecek | 9f8c7e7 | 2021-07-28 12:01:56 +0200 | [diff] [blame] | 993 | /* Checking the circular dependence of imported modules. */ |
| 994 | LY_CHECK_RET(lys_check_circular_dependency(ctx, mod)); |
| 995 | |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 996 | return LY_SUCCESS; |
| 997 | } |
| 998 | |
| 999 | LY_ERR |
Michal Vasko | d0625d7 | 2022-10-06 15:02:50 +0200 | [diff] [blame] | 1000 | lysp_check_stringchar(struct lysp_ctx *ctx, uint32_t c) |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 1001 | { |
| 1002 | if (!is_yangutf8char(c)) { |
| 1003 | LOGVAL_PARSER(ctx, LY_VCODE_INCHAR, c); |
| 1004 | return LY_EVALID; |
| 1005 | } |
| 1006 | return LY_SUCCESS; |
| 1007 | } |
| 1008 | |
| 1009 | LY_ERR |
Michal Vasko | d0625d7 | 2022-10-06 15:02:50 +0200 | [diff] [blame] | 1010 | lysp_check_identifierchar(struct lysp_ctx *ctx, uint32_t c, ly_bool first, uint8_t *prefix) |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 1011 | { |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1012 | if (first || (prefix && ((*prefix) == 1))) { |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 1013 | if (!is_yangidentstartchar(c)) { |
aPiecek | c89b224 | 2021-05-14 14:19:11 +0200 | [diff] [blame] | 1014 | if ((c < UCHAR_MAX) && isprint(c)) { |
Michal Vasko | 9ff8d2d | 2022-09-29 13:41:14 +0200 | [diff] [blame] | 1015 | if (ctx) { |
| 1016 | LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Invalid identifier first character '%c' (0x%04x).", (char)c, c); |
| 1017 | } |
Michal Vasko | 7c76904 | 2021-03-25 12:20:49 +0100 | [diff] [blame] | 1018 | } else { |
Michal Vasko | 9ff8d2d | 2022-09-29 13:41:14 +0200 | [diff] [blame] | 1019 | if (ctx) { |
| 1020 | LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Invalid identifier first character 0x%04x.", c); |
| 1021 | } |
Michal Vasko | 7c76904 | 2021-03-25 12:20:49 +0100 | [diff] [blame] | 1022 | } |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 1023 | return LY_EVALID; |
| 1024 | } |
| 1025 | if (prefix) { |
| 1026 | if (first) { |
| 1027 | (*prefix) = 0; |
| 1028 | } else { |
| 1029 | (*prefix) = 2; |
| 1030 | } |
| 1031 | } |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1032 | } else if ((c == ':') && prefix && ((*prefix) == 0)) { |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 1033 | (*prefix) = 1; |
| 1034 | } else if (!is_yangidentchar(c)) { |
Michal Vasko | 9ff8d2d | 2022-09-29 13:41:14 +0200 | [diff] [blame] | 1035 | if (ctx) { |
| 1036 | LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Invalid identifier character '%c' (0x%04x).", (char)c, c); |
| 1037 | } |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 1038 | return LY_EVALID; |
| 1039 | } |
| 1040 | |
| 1041 | return LY_SUCCESS; |
| 1042 | } |
| 1043 | |
Radek Krejci | 771928a | 2021-01-19 13:42:36 +0100 | [diff] [blame] | 1044 | /** |
| 1045 | * @brief Try to find the parsed submodule in main module for the given include record. |
| 1046 | * |
| 1047 | * @param[in] pctx main parser context |
| 1048 | * @param[in] inc The include record with missing parsed submodule. According to include info try to find |
| 1049 | * the corresponding parsed submodule in main module's includes. |
| 1050 | * @return LY_SUCCESS - the parsed submodule was found and inserted into the @p inc record |
| 1051 | * @return LY_ENOT - the parsed module was not found. |
| 1052 | * @return LY_EVALID - YANG rule violation |
| 1053 | */ |
| 1054 | static LY_ERR |
Michal Vasko | d0625d7 | 2022-10-06 15:02:50 +0200 | [diff] [blame] | 1055 | lysp_main_pmod_get_submodule(struct lysp_ctx *pctx, struct lysp_include *inc) |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 1056 | { |
Radek Krejci | 771928a | 2021-01-19 13:42:36 +0100 | [diff] [blame] | 1057 | LY_ARRAY_COUNT_TYPE i; |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 1058 | struct lysp_module *main_pmod = PARSER_CUR_PMOD(pctx)->mod->parsed; |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1059 | |
Radek Krejci | 771928a | 2021-01-19 13:42:36 +0100 | [diff] [blame] | 1060 | LY_ARRAY_FOR(main_pmod->includes, i) { |
| 1061 | if (strcmp(main_pmod->includes[i].name, inc->name)) { |
| 1062 | continue; |
| 1063 | } |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 1064 | |
Radek Krejci | 771928a | 2021-01-19 13:42:36 +0100 | [diff] [blame] | 1065 | if (inc->rev[0] && strncmp(inc->rev, main_pmod->includes[i].rev, LY_REV_SIZE)) { |
| 1066 | LOGVAL(PARSER_CTX(pctx), LYVE_REFERENCE, |
| 1067 | "Submodule %s includes different revision (%s) of the submodule %s:%s included by the main module %s.", |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 1068 | ((struct lysp_submodule *)PARSER_CUR_PMOD(pctx))->name, inc->rev, |
Radek Krejci | 771928a | 2021-01-19 13:42:36 +0100 | [diff] [blame] | 1069 | main_pmod->includes[i].name, main_pmod->includes[i].rev, main_pmod->mod->name); |
| 1070 | return LY_EVALID; |
| 1071 | } |
| 1072 | |
| 1073 | inc->submodule = main_pmod->includes[i].submodule; |
| 1074 | return inc->submodule ? LY_SUCCESS : LY_ENOT; |
| 1075 | } |
| 1076 | |
| 1077 | if (main_pmod->version == LYS_VERSION_1_1) { |
| 1078 | LOGVAL(PARSER_CTX(pctx), LYVE_REFERENCE, |
| 1079 | "YANG 1.1 requires all submodules to be included from main module. " |
| 1080 | "But submodule \"%s\" includes submodule \"%s\" which is not included by main module \"%s\".", |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 1081 | ((struct lysp_submodule *)PARSER_CUR_PMOD(pctx))->name, inc->name, main_pmod->mod->name); |
Radek Krejci | 771928a | 2021-01-19 13:42:36 +0100 | [diff] [blame] | 1082 | return LY_EVALID; |
| 1083 | } else { |
| 1084 | return LY_ENOT; |
| 1085 | } |
| 1086 | } |
| 1087 | |
| 1088 | /** |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 1089 | * @brief Try to find the parsed submodule in currenlty parsed modules for the given include record. |
| 1090 | * |
| 1091 | * @param[in] pctx main parser context |
| 1092 | * @param[in] inc The include record with missing parsed submodule. |
| 1093 | * @return LY_SUCCESS - the parsed submodule was found and inserted into the @p inc record |
| 1094 | * @return LY_ENOT - the parsed module was not found. |
| 1095 | * @return LY_EVALID - YANG rule violation |
| 1096 | */ |
| 1097 | static LY_ERR |
Michal Vasko | d0625d7 | 2022-10-06 15:02:50 +0200 | [diff] [blame] | 1098 | lysp_parsed_mods_get_submodule(struct lysp_ctx *pctx, struct lysp_include *inc) |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 1099 | { |
| 1100 | uint32_t i; |
| 1101 | struct lysp_submodule *submod; |
| 1102 | |
| 1103 | for (i = 0; i < pctx->parsed_mods->count - 1; ++i) { |
| 1104 | submod = pctx->parsed_mods->objs[i]; |
| 1105 | if (!submod->is_submod) { |
| 1106 | continue; |
| 1107 | } |
| 1108 | |
| 1109 | if (strcmp(submod->name, inc->name)) { |
| 1110 | continue; |
| 1111 | } |
| 1112 | |
| 1113 | if (inc->rev[0] && submod->revs && strncmp(inc->rev, submod->revs[0].date, LY_REV_SIZE)) { |
| 1114 | LOGVAL(PARSER_CTX(pctx), LYVE_REFERENCE, |
| 1115 | "Submodule %s includes different revision (%s) of the submodule %s:%s included by the main module %s.", |
| 1116 | ((struct lysp_submodule *)PARSER_CUR_PMOD(pctx))->name, inc->rev, |
| 1117 | submod->name, submod->revs[0].date, PARSER_CUR_PMOD(pctx)->mod->name); |
| 1118 | return LY_EVALID; |
| 1119 | } |
| 1120 | |
| 1121 | inc->submodule = submod; |
| 1122 | return LY_SUCCESS; |
| 1123 | } |
| 1124 | |
| 1125 | return LY_ENOT; |
| 1126 | } |
| 1127 | |
| 1128 | /** |
Radek Krejci | 771928a | 2021-01-19 13:42:36 +0100 | [diff] [blame] | 1129 | * @brief Make the copy of the given include record into the main module. |
| 1130 | * |
| 1131 | * YANG 1.0 does not require the main module to include all the submodules. Therefore, parsing submodules can cause |
| 1132 | * reallocating and extending the includes array in the main module by the submodules included only in submodules. |
| 1133 | * |
| 1134 | * @param[in] pctx main parser context |
| 1135 | * @param[in] inc Include record to copy into main module taken from @p pctx. |
| 1136 | * @return LY_ERR value. |
| 1137 | */ |
| 1138 | static LY_ERR |
Michal Vasko | d0625d7 | 2022-10-06 15:02:50 +0200 | [diff] [blame] | 1139 | lysp_inject_submodule(struct lysp_ctx *pctx, struct lysp_include *inc) |
Radek Krejci | 771928a | 2021-01-19 13:42:36 +0100 | [diff] [blame] | 1140 | { |
| 1141 | LY_ARRAY_COUNT_TYPE i; |
| 1142 | struct lysp_include *inc_new, *inc_tofill = NULL; |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 1143 | struct lysp_module *main_pmod = PARSER_CUR_PMOD(pctx)->mod->parsed; |
Radek Krejci | 771928a | 2021-01-19 13:42:36 +0100 | [diff] [blame] | 1144 | |
| 1145 | /* first, try to find the corresponding record with missing parsed submodule */ |
| 1146 | LY_ARRAY_FOR(main_pmod->includes, i) { |
| 1147 | if (strcmp(main_pmod->includes[i].name, inc->name)) { |
| 1148 | continue; |
| 1149 | } |
| 1150 | inc_tofill = &main_pmod->includes[i]; |
| 1151 | break; |
| 1152 | } |
| 1153 | |
| 1154 | if (inc_tofill) { |
| 1155 | inc_tofill->submodule = inc->submodule; |
| 1156 | } else { |
| 1157 | LY_ARRAY_NEW_RET(PARSER_CTX(pctx), main_pmod->includes, inc_new, LY_EMEM); |
| 1158 | |
| 1159 | inc_new->submodule = inc->submodule; |
| 1160 | DUP_STRING_RET(PARSER_CTX(pctx), inc->name, inc_new->name); |
| 1161 | DUP_STRING_RET(PARSER_CTX(pctx), inc->dsc, inc_new->dsc); |
| 1162 | DUP_STRING_RET(PARSER_CTX(pctx), inc->ref, inc_new->ref); |
Radek Krejci | 771928a | 2021-01-19 13:42:36 +0100 | [diff] [blame] | 1163 | memcpy(inc_new->rev, inc->rev, LY_REV_SIZE); |
| 1164 | inc_new->injected = 1; |
| 1165 | } |
| 1166 | return LY_SUCCESS; |
| 1167 | } |
| 1168 | |
| 1169 | LY_ERR |
Michal Vasko | d0625d7 | 2022-10-06 15:02:50 +0200 | [diff] [blame] | 1170 | lysp_load_submodules(struct lysp_ctx *pctx, struct lysp_module *pmod, struct ly_set *new_mods) |
Radek Krejci | 771928a | 2021-01-19 13:42:36 +0100 | [diff] [blame] | 1171 | { |
| 1172 | LY_ARRAY_COUNT_TYPE u; |
| 1173 | struct ly_ctx *ctx = PARSER_CTX(pctx); |
| 1174 | |
| 1175 | LY_ARRAY_FOR(pmod->includes, u) { |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 1176 | LY_ERR ret = LY_SUCCESS, r; |
Radek Krejci | 771928a | 2021-01-19 13:42:36 +0100 | [diff] [blame] | 1177 | struct lysp_submodule *submod = NULL; |
| 1178 | struct lysp_include *inc = &pmod->includes[u]; |
| 1179 | |
| 1180 | if (inc->submodule) { |
| 1181 | continue; |
| 1182 | } |
| 1183 | |
| 1184 | if (pmod->is_submod) { |
| 1185 | /* try to find the submodule in the main module or its submodules */ |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 1186 | ret = lysp_main_pmod_get_submodule(pctx, inc); |
| 1187 | LY_CHECK_RET(ret != LY_ENOT, ret); |
Radek Krejci | 771928a | 2021-01-19 13:42:36 +0100 | [diff] [blame] | 1188 | } |
| 1189 | |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 1190 | /* try to use currently parsed submodule */ |
| 1191 | r = lysp_parsed_mods_get_submodule(pctx, inc); |
| 1192 | LY_CHECK_RET(r != LY_ENOT, r); |
| 1193 | |
Radek Krejci | 771928a | 2021-01-19 13:42:36 +0100 | [diff] [blame] | 1194 | /* submodule not present in the main module, get the input data and parse it */ |
| 1195 | if (!(ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) { |
Radek Krejci | df54913 | 2021-01-21 10:32:32 +0100 | [diff] [blame] | 1196 | search_clb: |
Radek Krejci | 771928a | 2021-01-19 13:42:36 +0100 | [diff] [blame] | 1197 | if (ctx->imp_clb) { |
| 1198 | const char *submodule_data = NULL; |
| 1199 | LYS_INFORMAT format = LYS_IN_UNKNOWN; |
Michal Vasko | 26bbb27 | 2022-08-02 14:54:33 +0200 | [diff] [blame] | 1200 | |
Radek Krejci | 771928a | 2021-01-19 13:42:36 +0100 | [diff] [blame] | 1201 | void (*submodule_data_free)(void *module_data, void *user_data) = NULL; |
| 1202 | struct lysp_load_module_check_data check_data = {0}; |
| 1203 | struct ly_in *in; |
| 1204 | |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 1205 | if (ctx->imp_clb(PARSER_CUR_PMOD(pctx)->mod->name, NULL, inc->name, |
Radek Krejci | 771928a | 2021-01-19 13:42:36 +0100 | [diff] [blame] | 1206 | inc->rev[0] ? inc->rev : NULL, ctx->imp_clb_data, |
| 1207 | &format, &submodule_data, &submodule_data_free) == LY_SUCCESS) { |
| 1208 | LY_CHECK_RET(ly_in_new_memory(submodule_data, &in)); |
| 1209 | check_data.name = inc->name; |
| 1210 | check_data.revision = inc->rev[0] ? inc->rev : NULL; |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 1211 | check_data.submoduleof = PARSER_CUR_PMOD(pctx)->mod->name; |
aPiecek | c3e2614 | 2021-06-22 14:25:49 +0200 | [diff] [blame] | 1212 | lys_parse_submodule(ctx, in, format, pctx, lysp_load_module_check, &check_data, new_mods, &submod); |
Radek Krejci | 771928a | 2021-01-19 13:42:36 +0100 | [diff] [blame] | 1213 | |
| 1214 | /* update inc pointer - parsing another (YANG 1.0) submodule can cause injecting |
| 1215 | * submodule's include into main module, where it is missing */ |
| 1216 | inc = &pmod->includes[u]; |
| 1217 | |
| 1218 | ly_in_free(in, 0); |
| 1219 | if (submodule_data_free) { |
| 1220 | submodule_data_free((void *)submodule_data, ctx->imp_clb_data); |
| 1221 | } |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 1222 | } |
| 1223 | } |
Radek Krejci | 771928a | 2021-01-19 13:42:36 +0100 | [diff] [blame] | 1224 | if (!submod && !(ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) { |
| 1225 | goto search_file; |
| 1226 | } |
| 1227 | } else { |
Radek Krejci | df54913 | 2021-01-21 10:32:32 +0100 | [diff] [blame] | 1228 | search_file: |
Radek Krejci | 771928a | 2021-01-19 13:42:36 +0100 | [diff] [blame] | 1229 | if (!(ctx->flags & LY_CTX_DISABLE_SEARCHDIRS)) { |
| 1230 | /* submodule was not received from the callback or there is no callback set */ |
Michal Vasko | dd6d5a3 | 2022-07-14 13:54:58 +0200 | [diff] [blame] | 1231 | lys_parse_localfile(ctx, inc->name, inc->rev[0] ? inc->rev : NULL, pctx->main_ctx, |
| 1232 | PARSER_CUR_PMOD(pctx->main_ctx)->mod->name, 1, new_mods, (void **)&submod); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1233 | |
Radek Krejci | 771928a | 2021-01-19 13:42:36 +0100 | [diff] [blame] | 1234 | /* update inc pointer - parsing another (YANG 1.0) submodule can cause injecting |
| 1235 | * submodule's include into main module, where it is missing */ |
| 1236 | inc = &pmod->includes[u]; |
| 1237 | } |
| 1238 | if (!submod && (ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) { |
| 1239 | goto search_clb; |
| 1240 | } |
| 1241 | } |
| 1242 | if (submod) { |
| 1243 | if (!inc->rev[0] && (submod->latest_revision == 1)) { |
| 1244 | /* update the latest_revision flag - here we have selected the latest available schema, |
| 1245 | * consider that even the callback provides correct latest revision */ |
| 1246 | submod->latest_revision = 2; |
| 1247 | } |
| 1248 | |
| 1249 | inc->submodule = submod; |
| 1250 | if (ret == LY_ENOT) { |
| 1251 | /* the submodule include is not present in YANG 1.0 main module - add it there */ |
| 1252 | LY_CHECK_RET(lysp_inject_submodule(pctx, &pmod->includes[u])); |
| 1253 | } |
| 1254 | } |
| 1255 | if (!inc->submodule) { |
| 1256 | LOGVAL(ctx, LYVE_REFERENCE, "Including \"%s\" submodule into \"%s\" failed.", inc->name, |
Michal Vasko | 8a67eff | 2021-12-07 14:04:47 +0100 | [diff] [blame] | 1257 | PARSER_CUR_PMOD(pctx)->is_submod ? ((struct lysp_submodule *)PARSER_CUR_PMOD(pctx))->name : |
| 1258 | PARSER_CUR_PMOD(pctx)->mod->name); |
Radek Krejci | 771928a | 2021-01-19 13:42:36 +0100 | [diff] [blame] | 1259 | return LY_EVALID; |
| 1260 | } |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 1261 | } |
| 1262 | |
| 1263 | return LY_SUCCESS; |
| 1264 | } |
| 1265 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1266 | LIBYANG_API_DEF const struct lysc_when * |
Michal Vasko | d5cfa6e | 2020-11-23 16:56:08 +0100 | [diff] [blame] | 1267 | lysc_has_when(const struct lysc_node *node) |
| 1268 | { |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 1269 | struct lysc_when **when; |
| 1270 | |
Michal Vasko | d5cfa6e | 2020-11-23 16:56:08 +0100 | [diff] [blame] | 1271 | if (!node) { |
| 1272 | return NULL; |
| 1273 | } |
| 1274 | |
| 1275 | do { |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 1276 | when = lysc_node_when(node); |
| 1277 | if (when) { |
| 1278 | return when[0]; |
Michal Vasko | d5cfa6e | 2020-11-23 16:56:08 +0100 | [diff] [blame] | 1279 | } |
| 1280 | node = node->parent; |
| 1281 | } while (node && (node->nodetype & (LYS_CASE | LYS_CHOICE))); |
| 1282 | |
| 1283 | return NULL; |
| 1284 | } |
| 1285 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1286 | LIBYANG_API_DEF const struct lys_module * |
Michal Vasko | ef53c81 | 2021-10-13 10:21:03 +0200 | [diff] [blame] | 1287 | lysc_owner_module(const struct lysc_node *node) |
| 1288 | { |
| 1289 | if (!node) { |
| 1290 | return NULL; |
| 1291 | } |
| 1292 | |
| 1293 | for ( ; node->parent; node = node->parent) {} |
| 1294 | return node->module; |
| 1295 | } |
| 1296 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1297 | LIBYANG_API_DEF const char * |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1298 | lys_nodetype2str(uint16_t nodetype) |
| 1299 | { |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 1300 | switch (nodetype) { |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1301 | case LYS_CONTAINER: |
| 1302 | return "container"; |
| 1303 | case LYS_CHOICE: |
| 1304 | return "choice"; |
| 1305 | case LYS_LEAF: |
| 1306 | return "leaf"; |
| 1307 | case LYS_LEAFLIST: |
| 1308 | return "leaf-list"; |
| 1309 | case LYS_LIST: |
| 1310 | return "list"; |
| 1311 | case LYS_ANYXML: |
| 1312 | return "anyxml"; |
| 1313 | case LYS_ANYDATA: |
| 1314 | return "anydata"; |
Radek Krejci | f12a1f0 | 2019-02-11 16:42:08 +0100 | [diff] [blame] | 1315 | case LYS_CASE: |
| 1316 | return "case"; |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 1317 | case LYS_RPC: |
| 1318 | return "RPC"; |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 1319 | case LYS_ACTION: |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 1320 | return "action"; |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 1321 | case LYS_NOTIF: |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 1322 | return "notification"; |
Radek Krejci | fc81ea8 | 2019-04-18 13:27:22 +0200 | [diff] [blame] | 1323 | case LYS_USES: |
| 1324 | return "uses"; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1325 | default: |
| 1326 | return "unknown"; |
| 1327 | } |
| 1328 | } |
| 1329 | |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 1330 | const char * |
| 1331 | lys_datatype2str(LY_DATA_TYPE basetype) |
| 1332 | { |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 1333 | switch (basetype) { |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 1334 | case LY_TYPE_BINARY: |
| 1335 | return "binary"; |
| 1336 | case LY_TYPE_UINT8: |
| 1337 | return "uint8"; |
| 1338 | case LY_TYPE_UINT16: |
| 1339 | return "uint16"; |
| 1340 | case LY_TYPE_UINT32: |
| 1341 | return "uint32"; |
| 1342 | case LY_TYPE_UINT64: |
| 1343 | return "uint64"; |
| 1344 | case LY_TYPE_STRING: |
| 1345 | return "string"; |
| 1346 | case LY_TYPE_BITS: |
| 1347 | return "bits"; |
| 1348 | case LY_TYPE_BOOL: |
| 1349 | return "boolean"; |
| 1350 | case LY_TYPE_DEC64: |
| 1351 | return "decimal64"; |
| 1352 | case LY_TYPE_EMPTY: |
| 1353 | return "empty"; |
| 1354 | case LY_TYPE_ENUM: |
| 1355 | return "enumeration"; |
| 1356 | case LY_TYPE_IDENT: |
| 1357 | return "identityref"; |
| 1358 | case LY_TYPE_INST: |
| 1359 | return "instance-identifier"; |
| 1360 | case LY_TYPE_LEAFREF: |
| 1361 | return "leafref"; |
| 1362 | case LY_TYPE_UNION: |
| 1363 | return "union"; |
| 1364 | case LY_TYPE_INT8: |
| 1365 | return "int8"; |
| 1366 | case LY_TYPE_INT16: |
| 1367 | return "int16"; |
| 1368 | case LY_TYPE_INT32: |
| 1369 | return "int32"; |
| 1370 | case LY_TYPE_INT64: |
| 1371 | return "int64"; |
| 1372 | default: |
| 1373 | return "unknown"; |
| 1374 | } |
| 1375 | } |
| 1376 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1377 | LIBYANG_API_DEF const struct lysp_tpdf * |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1378 | lysp_node_typedefs(const struct lysp_node *node) |
| 1379 | { |
Radek Krejci | 0fb2856 | 2018-12-13 15:17:37 +0100 | [diff] [blame] | 1380 | switch (node->nodetype) { |
| 1381 | case LYS_CONTAINER: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 1382 | return ((struct lysp_node_container *)node)->typedefs; |
Radek Krejci | 0fb2856 | 2018-12-13 15:17:37 +0100 | [diff] [blame] | 1383 | case LYS_LIST: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 1384 | return ((struct lysp_node_list *)node)->typedefs; |
Radek Krejci | 0fb2856 | 2018-12-13 15:17:37 +0100 | [diff] [blame] | 1385 | case LYS_GROUPING: |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1386 | return ((struct lysp_node_grp *)node)->typedefs; |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 1387 | case LYS_RPC: |
Radek Krejci | 0fb2856 | 2018-12-13 15:17:37 +0100 | [diff] [blame] | 1388 | case LYS_ACTION: |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1389 | return ((struct lysp_node_action *)node)->typedefs; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 1390 | case LYS_INPUT: |
| 1391 | case LYS_OUTPUT: |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1392 | return ((struct lysp_node_action_inout *)node)->typedefs; |
Radek Krejci | 0fb2856 | 2018-12-13 15:17:37 +0100 | [diff] [blame] | 1393 | case LYS_NOTIF: |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1394 | return ((struct lysp_node_notif *)node)->typedefs; |
Radek Krejci | 0fb2856 | 2018-12-13 15:17:37 +0100 | [diff] [blame] | 1395 | default: |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1396 | return NULL; |
| 1397 | } |
| 1398 | } |
| 1399 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1400 | LIBYANG_API_DEF const struct lysp_node_grp * |
Radek Krejci | 53ea615 | 2018-12-13 15:21:15 +0100 | [diff] [blame] | 1401 | lysp_node_groupings(const struct lysp_node *node) |
| 1402 | { |
| 1403 | switch (node->nodetype) { |
| 1404 | case LYS_CONTAINER: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 1405 | return ((struct lysp_node_container *)node)->groupings; |
Radek Krejci | 53ea615 | 2018-12-13 15:21:15 +0100 | [diff] [blame] | 1406 | case LYS_LIST: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 1407 | return ((struct lysp_node_list *)node)->groupings; |
Radek Krejci | 53ea615 | 2018-12-13 15:21:15 +0100 | [diff] [blame] | 1408 | case LYS_GROUPING: |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1409 | return ((struct lysp_node_grp *)node)->groupings; |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 1410 | case LYS_RPC: |
Radek Krejci | 53ea615 | 2018-12-13 15:21:15 +0100 | [diff] [blame] | 1411 | case LYS_ACTION: |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1412 | return ((struct lysp_node_action *)node)->groupings; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 1413 | case LYS_INPUT: |
| 1414 | case LYS_OUTPUT: |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1415 | return ((struct lysp_node_action_inout *)node)->groupings; |
Radek Krejci | 53ea615 | 2018-12-13 15:21:15 +0100 | [diff] [blame] | 1416 | case LYS_NOTIF: |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1417 | return ((struct lysp_node_notif *)node)->groupings; |
Radek Krejci | 53ea615 | 2018-12-13 15:21:15 +0100 | [diff] [blame] | 1418 | default: |
| 1419 | return NULL; |
| 1420 | } |
| 1421 | } |
| 1422 | |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1423 | struct lysp_node_action ** |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1424 | lysp_node_actions_p(struct lysp_node *node) |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1425 | { |
| 1426 | assert(node); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 1427 | |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1428 | switch (node->nodetype) { |
| 1429 | case LYS_CONTAINER: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 1430 | return &((struct lysp_node_container *)node)->actions; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1431 | case LYS_LIST: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 1432 | return &((struct lysp_node_list *)node)->actions; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1433 | case LYS_GROUPING: |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1434 | return &((struct lysp_node_grp *)node)->actions; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1435 | case LYS_AUGMENT: |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1436 | return &((struct lysp_node_augment *)node)->actions; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1437 | default: |
| 1438 | return NULL; |
| 1439 | } |
| 1440 | } |
| 1441 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1442 | LIBYANG_API_DEF const struct lysp_node_action * |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1443 | lysp_node_actions(const struct lysp_node *node) |
| 1444 | { |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1445 | struct lysp_node_action **actions; |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1446 | |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 1447 | actions = lysp_node_actions_p((struct lysp_node *)node); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1448 | if (actions) { |
| 1449 | return *actions; |
| 1450 | } else { |
| 1451 | return NULL; |
| 1452 | } |
| 1453 | } |
| 1454 | |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1455 | struct lysp_node_notif ** |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1456 | lysp_node_notifs_p(struct lysp_node *node) |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1457 | { |
| 1458 | assert(node); |
| 1459 | switch (node->nodetype) { |
| 1460 | case LYS_CONTAINER: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 1461 | return &((struct lysp_node_container *)node)->notifs; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1462 | case LYS_LIST: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 1463 | return &((struct lysp_node_list *)node)->notifs; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1464 | case LYS_GROUPING: |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1465 | return &((struct lysp_node_grp *)node)->notifs; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1466 | case LYS_AUGMENT: |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1467 | return &((struct lysp_node_augment *)node)->notifs; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1468 | default: |
| 1469 | return NULL; |
| 1470 | } |
| 1471 | } |
| 1472 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1473 | LIBYANG_API_DEF const struct lysp_node_notif * |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1474 | lysp_node_notifs(const struct lysp_node *node) |
| 1475 | { |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1476 | struct lysp_node_notif **notifs; |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1477 | |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 1478 | notifs = lysp_node_notifs_p((struct lysp_node *)node); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1479 | if (notifs) { |
| 1480 | return *notifs; |
| 1481 | } else { |
| 1482 | return NULL; |
| 1483 | } |
| 1484 | } |
| 1485 | |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1486 | struct lysp_node ** |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 1487 | lysp_node_child_p(struct lysp_node *node) |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1488 | { |
| 1489 | assert(node); |
| 1490 | switch (node->nodetype) { |
| 1491 | case LYS_CONTAINER: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 1492 | return &((struct lysp_node_container *)node)->child; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1493 | case LYS_CHOICE: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 1494 | return &((struct lysp_node_choice *)node)->child; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1495 | case LYS_LIST: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 1496 | return &((struct lysp_node_list *)node)->child; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1497 | case LYS_CASE: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 1498 | return &((struct lysp_node_case *)node)->child; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1499 | case LYS_GROUPING: |
Radek Krejci | 01180ac | 2021-01-27 08:48:22 +0100 | [diff] [blame] | 1500 | return &((struct lysp_node_grp *)node)->child; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1501 | case LYS_AUGMENT: |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1502 | return &((struct lysp_node_augment *)node)->child; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 1503 | case LYS_INPUT: |
| 1504 | case LYS_OUTPUT: |
Radek Krejci | 01180ac | 2021-01-27 08:48:22 +0100 | [diff] [blame] | 1505 | return &((struct lysp_node_action_inout *)node)->child; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1506 | case LYS_NOTIF: |
Radek Krejci | 01180ac | 2021-01-27 08:48:22 +0100 | [diff] [blame] | 1507 | return &((struct lysp_node_notif *)node)->child; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1508 | default: |
| 1509 | return NULL; |
| 1510 | } |
| 1511 | } |
| 1512 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1513 | LIBYANG_API_DEF const struct lysp_node * |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 1514 | lysp_node_child(const struct lysp_node *node) |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1515 | { |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 1516 | struct lysp_node **child; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1517 | |
| 1518 | if (!node) { |
| 1519 | return NULL; |
| 1520 | } |
| 1521 | |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 1522 | child = lysp_node_child_p((struct lysp_node *)node); |
| 1523 | if (child) { |
| 1524 | return *child; |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1525 | } else { |
| 1526 | return NULL; |
| 1527 | } |
| 1528 | } |
| 1529 | |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 1530 | struct lysp_restr ** |
| 1531 | lysp_node_musts_p(const struct lysp_node *node) |
| 1532 | { |
| 1533 | if (!node) { |
| 1534 | return NULL; |
| 1535 | } |
| 1536 | |
Radek Krejci | 2d5f6df | 2021-01-28 14:00:13 +0100 | [diff] [blame] | 1537 | switch (node->nodetype) { |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 1538 | case LYS_CONTAINER: |
| 1539 | return &((struct lysp_node_container *)node)->musts; |
| 1540 | case LYS_LEAF: |
| 1541 | return &((struct lysp_node_leaf *)node)->musts; |
| 1542 | case LYS_LEAFLIST: |
| 1543 | return &((struct lysp_node_leaflist *)node)->musts; |
| 1544 | case LYS_LIST: |
| 1545 | return &((struct lysp_node_list *)node)->musts; |
| 1546 | case LYS_ANYXML: |
| 1547 | case LYS_ANYDATA: |
| 1548 | return &((struct lysp_node_anydata *)node)->musts; |
| 1549 | case LYS_NOTIF: |
| 1550 | return &((struct lysp_node_notif *)node)->musts; |
| 1551 | case LYS_INPUT: |
| 1552 | case LYS_OUTPUT: |
| 1553 | return &((struct lysp_node_action_inout *)node)->musts; |
| 1554 | default: |
| 1555 | return NULL; |
| 1556 | } |
| 1557 | } |
| 1558 | |
| 1559 | struct lysp_restr * |
| 1560 | lysp_node_musts(const struct lysp_node *node) |
| 1561 | { |
| 1562 | struct lysp_restr **musts; |
| 1563 | |
| 1564 | musts = lysp_node_musts_p(node); |
| 1565 | if (musts) { |
| 1566 | return *musts; |
| 1567 | } else { |
| 1568 | return NULL; |
| 1569 | } |
| 1570 | } |
| 1571 | |
| 1572 | struct lysp_when ** |
| 1573 | lysp_node_when_p(const struct lysp_node *node) |
| 1574 | { |
| 1575 | if (!node) { |
| 1576 | return NULL; |
| 1577 | } |
| 1578 | |
Radek Krejci | 2d5f6df | 2021-01-28 14:00:13 +0100 | [diff] [blame] | 1579 | switch (node->nodetype) { |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 1580 | case LYS_CONTAINER: |
| 1581 | return &((struct lysp_node_container *)node)->when; |
| 1582 | case LYS_CHOICE: |
| 1583 | return &((struct lysp_node_choice *)node)->when; |
| 1584 | case LYS_LEAF: |
| 1585 | return &((struct lysp_node_leaf *)node)->when; |
| 1586 | case LYS_LEAFLIST: |
| 1587 | return &((struct lysp_node_leaflist *)node)->when; |
| 1588 | case LYS_LIST: |
| 1589 | return &((struct lysp_node_list *)node)->when; |
| 1590 | case LYS_ANYXML: |
| 1591 | case LYS_ANYDATA: |
| 1592 | return &((struct lysp_node_anydata *)node)->when; |
| 1593 | case LYS_CASE: |
| 1594 | return &((struct lysp_node_case *)node)->when; |
| 1595 | case LYS_USES: |
| 1596 | return &((struct lysp_node_uses *)node)->when; |
| 1597 | case LYS_AUGMENT: |
| 1598 | return &((struct lysp_node_augment *)node)->when; |
| 1599 | default: |
| 1600 | return NULL; |
| 1601 | } |
| 1602 | } |
| 1603 | |
| 1604 | struct lysp_when * |
| 1605 | lysp_node_when(const struct lysp_node *node) |
| 1606 | { |
| 1607 | struct lysp_when **when; |
| 1608 | |
| 1609 | when = lysp_node_when_p(node); |
| 1610 | if (when) { |
| 1611 | return *when; |
| 1612 | } else { |
| 1613 | return NULL; |
| 1614 | } |
| 1615 | } |
| 1616 | |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1617 | struct lysc_node_action ** |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1618 | lysc_node_actions_p(struct lysc_node *node) |
| 1619 | { |
| 1620 | assert(node); |
| 1621 | switch (node->nodetype) { |
| 1622 | case LYS_CONTAINER: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 1623 | return &((struct lysc_node_container *)node)->actions; |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1624 | case LYS_LIST: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 1625 | return &((struct lysc_node_list *)node)->actions; |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1626 | default: |
| 1627 | return NULL; |
| 1628 | } |
| 1629 | } |
| 1630 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1631 | LIBYANG_API_DEF const struct lysc_node_action * |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1632 | lysc_node_actions(const struct lysc_node *node) |
| 1633 | { |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1634 | struct lysc_node_action **actions; |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1635 | |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 1636 | actions = lysc_node_actions_p((struct lysc_node *)node); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1637 | if (actions) { |
| 1638 | return *actions; |
| 1639 | } else { |
| 1640 | return NULL; |
| 1641 | } |
| 1642 | } |
| 1643 | |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1644 | struct lysc_node_notif ** |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1645 | lysc_node_notifs_p(struct lysc_node *node) |
| 1646 | { |
| 1647 | assert(node); |
| 1648 | switch (node->nodetype) { |
| 1649 | case LYS_CONTAINER: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 1650 | return &((struct lysc_node_container *)node)->notifs; |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1651 | case LYS_LIST: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 1652 | return &((struct lysc_node_list *)node)->notifs; |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1653 | default: |
| 1654 | return NULL; |
| 1655 | } |
| 1656 | } |
| 1657 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1658 | LIBYANG_API_DEF const struct lysc_node_notif * |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1659 | lysc_node_notifs(const struct lysc_node *node) |
| 1660 | { |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1661 | struct lysc_node_notif **notifs; |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1662 | |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 1663 | notifs = lysc_node_notifs_p((struct lysc_node *)node); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1664 | if (notifs) { |
| 1665 | return *notifs; |
| 1666 | } else { |
| 1667 | return NULL; |
| 1668 | } |
| 1669 | } |
| 1670 | |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1671 | struct lysc_node ** |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 1672 | lysc_node_child_p(const struct lysc_node *node) |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1673 | { |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 1674 | assert(node && !(node->nodetype & (LYS_RPC | LYS_ACTION))); |
| 1675 | |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1676 | switch (node->nodetype) { |
| 1677 | case LYS_CONTAINER: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 1678 | return &((struct lysc_node_container *)node)->child; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1679 | case LYS_CHOICE: |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 1680 | return (struct lysc_node **)&((struct lysc_node_choice *)node)->cases; |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 1681 | case LYS_CASE: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 1682 | return &((struct lysc_node_case *)node)->child; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1683 | case LYS_LIST: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 1684 | return &((struct lysc_node_list *)node)->child; |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 1685 | case LYS_INPUT: |
| 1686 | case LYS_OUTPUT: |
Radek Krejci | 01180ac | 2021-01-27 08:48:22 +0100 | [diff] [blame] | 1687 | return &((struct lysc_node_action_inout *)node)->child; |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1688 | case LYS_NOTIF: |
Radek Krejci | 01180ac | 2021-01-27 08:48:22 +0100 | [diff] [blame] | 1689 | return &((struct lysc_node_notif *)node)->child; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1690 | default: |
| 1691 | return NULL; |
| 1692 | } |
| 1693 | } |
| 1694 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1695 | LIBYANG_API_DEF const struct lysc_node * |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 1696 | lysc_node_child(const struct lysc_node *node) |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1697 | { |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 1698 | struct lysc_node **child; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1699 | |
| 1700 | if (!node) { |
| 1701 | return NULL; |
| 1702 | } |
| 1703 | |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 1704 | if (node->nodetype & (LYS_RPC | LYS_ACTION)) { |
| 1705 | return &((struct lysc_node_action *)node)->input.node; |
Radek Krejci | be15444 | 2021-01-21 11:06:36 +0100 | [diff] [blame] | 1706 | } else { |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 1707 | child = lysc_node_child_p(node); |
| 1708 | if (child) { |
| 1709 | return *child; |
Radek Krejci | 2a9fc65 | 2021-01-22 17:44:34 +0100 | [diff] [blame] | 1710 | } |
Michal Vasko | 2a66871 | 2020-10-21 11:48:09 +0200 | [diff] [blame] | 1711 | } |
Michal Vasko | 544e58a | 2021-01-28 14:33:41 +0100 | [diff] [blame] | 1712 | |
| 1713 | return NULL; |
Michal Vasko | 2a66871 | 2020-10-21 11:48:09 +0200 | [diff] [blame] | 1714 | } |
| 1715 | |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 1716 | struct lysc_must ** |
| 1717 | lysc_node_musts_p(const struct lysc_node *node) |
| 1718 | { |
| 1719 | if (!node) { |
| 1720 | return NULL; |
| 1721 | } |
| 1722 | |
Radek Krejci | 2d5f6df | 2021-01-28 14:00:13 +0100 | [diff] [blame] | 1723 | switch (node->nodetype) { |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 1724 | case LYS_CONTAINER: |
| 1725 | return &((struct lysc_node_container *)node)->musts; |
| 1726 | case LYS_LEAF: |
| 1727 | return &((struct lysc_node_leaf *)node)->musts; |
| 1728 | case LYS_LEAFLIST: |
| 1729 | return &((struct lysc_node_leaflist *)node)->musts; |
| 1730 | case LYS_LIST: |
| 1731 | return &((struct lysc_node_list *)node)->musts; |
| 1732 | case LYS_ANYXML: |
| 1733 | case LYS_ANYDATA: |
| 1734 | return &((struct lysc_node_anydata *)node)->musts; |
| 1735 | case LYS_NOTIF: |
| 1736 | return &((struct lysc_node_notif *)node)->musts; |
| 1737 | case LYS_INPUT: |
| 1738 | case LYS_OUTPUT: |
| 1739 | return &((struct lysc_node_action_inout *)node)->musts; |
| 1740 | default: |
| 1741 | return NULL; |
| 1742 | } |
| 1743 | } |
| 1744 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1745 | LIBYANG_API_DEF struct lysc_must * |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 1746 | lysc_node_musts(const struct lysc_node *node) |
| 1747 | { |
| 1748 | struct lysc_must **must_p; |
| 1749 | |
| 1750 | must_p = lysc_node_musts_p(node); |
| 1751 | if (must_p) { |
| 1752 | return *must_p; |
| 1753 | } else { |
| 1754 | return NULL; |
| 1755 | } |
| 1756 | } |
| 1757 | |
| 1758 | struct lysc_when *** |
| 1759 | lysc_node_when_p(const struct lysc_node *node) |
| 1760 | { |
| 1761 | if (!node) { |
| 1762 | return NULL; |
| 1763 | } |
| 1764 | |
Radek Krejci | 2d5f6df | 2021-01-28 14:00:13 +0100 | [diff] [blame] | 1765 | switch (node->nodetype) { |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 1766 | case LYS_CONTAINER: |
| 1767 | return &((struct lysc_node_container *)node)->when; |
| 1768 | case LYS_CHOICE: |
| 1769 | return &((struct lysc_node_choice *)node)->when; |
| 1770 | case LYS_LEAF: |
| 1771 | return &((struct lysc_node_leaf *)node)->when; |
| 1772 | case LYS_LEAFLIST: |
| 1773 | return &((struct lysc_node_leaflist *)node)->when; |
| 1774 | case LYS_LIST: |
| 1775 | return &((struct lysc_node_list *)node)->when; |
| 1776 | case LYS_ANYXML: |
| 1777 | case LYS_ANYDATA: |
| 1778 | return &((struct lysc_node_anydata *)node)->when; |
| 1779 | case LYS_CASE: |
| 1780 | return &((struct lysc_node_case *)node)->when; |
| 1781 | case LYS_NOTIF: |
| 1782 | return &((struct lysc_node_notif *)node)->when; |
| 1783 | case LYS_RPC: |
| 1784 | case LYS_ACTION: |
| 1785 | return &((struct lysc_node_action *)node)->when; |
| 1786 | default: |
| 1787 | return NULL; |
| 1788 | } |
| 1789 | } |
| 1790 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 1791 | LIBYANG_API_DEF struct lysc_when ** |
Radek Krejci | 9a3823e | 2021-01-27 20:26:46 +0100 | [diff] [blame] | 1792 | lysc_node_when(const struct lysc_node *node) |
| 1793 | { |
| 1794 | struct lysc_when ***when_p; |
| 1795 | |
| 1796 | when_p = lysc_node_when_p(node); |
| 1797 | if (when_p) { |
| 1798 | return *when_p; |
| 1799 | } else { |
| 1800 | return NULL; |
| 1801 | } |
| 1802 | } |
| 1803 | |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1804 | enum ly_stmt |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 1805 | lysp_match_kw(struct ly_in *in, uint64_t *indent) |
David Sedlák | c10e790 | 2018-12-17 02:17:59 +0100 | [diff] [blame] | 1806 | { |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1807 | /** |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 1808 | * @brief Move the input by COUNT items. Also updates the indent value in yang parser context |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1809 | * @param[in] COUNT number of items for which the DATA pointer is supposed to move on. |
Michal Vasko | 64246d8 | 2020-08-19 12:35:00 +0200 | [diff] [blame] | 1810 | * |
| 1811 | * *INDENT-OFF* |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1812 | */ |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 1813 | #define MOVE_IN(COUNT) \ |
| 1814 | ly_in_skip(in, COUNT); \ |
| 1815 | if (indent) { \ |
| 1816 | (*indent)+=COUNT; \ |
| 1817 | } |
| 1818 | #define IF_KW(STR, LEN, STMT) \ |
| 1819 | if (!strncmp(in->current, STR, LEN)) { \ |
| 1820 | MOVE_IN(LEN); \ |
| 1821 | (*kw)=STMT; \ |
| 1822 | } |
| 1823 | #define IF_KW_PREFIX(STR, LEN) \ |
| 1824 | if (!strncmp(in->current, STR, LEN)) { \ |
| 1825 | MOVE_IN(LEN); |
| 1826 | #define IF_KW_PREFIX_END \ |
| 1827 | } |
David Sedlák | 572e7ab | 2019-06-04 16:01:58 +0200 | [diff] [blame] | 1828 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1829 | const char *start = in->current; |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1830 | enum ly_stmt result = LY_STMT_NONE; |
| 1831 | enum ly_stmt *kw = &result; |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1832 | /* read the keyword itself */ |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1833 | switch (in->current[0]) { |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1834 | case 'a': |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 1835 | MOVE_IN(1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1836 | IF_KW("rgument", 7, LY_STMT_ARGUMENT) |
| 1837 | else IF_KW("ugment", 6, LY_STMT_AUGMENT) |
| 1838 | else IF_KW("ction", 5, LY_STMT_ACTION) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1839 | else IF_KW_PREFIX("ny", 2) |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1840 | IF_KW("data", 4, LY_STMT_ANYDATA) |
| 1841 | else IF_KW("xml", 3, LY_STMT_ANYXML) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1842 | IF_KW_PREFIX_END |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1843 | break; |
| 1844 | case 'b': |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 1845 | MOVE_IN(1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1846 | IF_KW("ase", 3, LY_STMT_BASE) |
| 1847 | else IF_KW("elongs-to", 9, LY_STMT_BELONGS_TO) |
| 1848 | else IF_KW("it", 2, LY_STMT_BIT) |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1849 | break; |
| 1850 | case 'c': |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 1851 | MOVE_IN(1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1852 | IF_KW("ase", 3, LY_STMT_CASE) |
| 1853 | else IF_KW("hoice", 5, LY_STMT_CHOICE) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1854 | else IF_KW_PREFIX("on", 2) |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1855 | IF_KW("fig", 3, LY_STMT_CONFIG) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1856 | else IF_KW_PREFIX("ta", 2) |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1857 | IF_KW("ct", 2, LY_STMT_CONTACT) |
| 1858 | else IF_KW("iner", 4, LY_STMT_CONTAINER) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1859 | IF_KW_PREFIX_END |
| 1860 | IF_KW_PREFIX_END |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1861 | break; |
| 1862 | case 'd': |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 1863 | MOVE_IN(1); |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1864 | IF_KW_PREFIX("e", 1) |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1865 | IF_KW("fault", 5, LY_STMT_DEFAULT) |
| 1866 | else IF_KW("scription", 9, LY_STMT_DESCRIPTION) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1867 | else IF_KW_PREFIX("viat", 4) |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1868 | IF_KW("e", 1, LY_STMT_DEVIATE) |
| 1869 | else IF_KW("ion", 3, LY_STMT_DEVIATION) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1870 | IF_KW_PREFIX_END |
| 1871 | IF_KW_PREFIX_END |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1872 | break; |
| 1873 | case 'e': |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 1874 | MOVE_IN(1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1875 | IF_KW("num", 3, LY_STMT_ENUM) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1876 | else IF_KW_PREFIX("rror-", 5) |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1877 | IF_KW("app-tag", 7, LY_STMT_ERROR_APP_TAG) |
| 1878 | else IF_KW("message", 7, LY_STMT_ERROR_MESSAGE) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1879 | IF_KW_PREFIX_END |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1880 | else IF_KW("xtension", 8, LY_STMT_EXTENSION) |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1881 | break; |
| 1882 | case 'f': |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 1883 | MOVE_IN(1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1884 | IF_KW("eature", 6, LY_STMT_FEATURE) |
| 1885 | else IF_KW("raction-digits", 14, LY_STMT_FRACTION_DIGITS) |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1886 | break; |
| 1887 | case 'g': |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 1888 | MOVE_IN(1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1889 | IF_KW("rouping", 7, LY_STMT_GROUPING) |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1890 | break; |
| 1891 | case 'i': |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 1892 | MOVE_IN(1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1893 | IF_KW("dentity", 7, LY_STMT_IDENTITY) |
| 1894 | else IF_KW("f-feature", 9, LY_STMT_IF_FEATURE) |
| 1895 | else IF_KW("mport", 5, LY_STMT_IMPORT) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1896 | else IF_KW_PREFIX("n", 1) |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1897 | IF_KW("clude", 5, LY_STMT_INCLUDE) |
| 1898 | else IF_KW("put", 3, LY_STMT_INPUT) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1899 | IF_KW_PREFIX_END |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1900 | break; |
| 1901 | case 'k': |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 1902 | MOVE_IN(1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1903 | IF_KW("ey", 2, LY_STMT_KEY) |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1904 | break; |
| 1905 | case 'l': |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 1906 | MOVE_IN(1); |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1907 | IF_KW_PREFIX("e", 1) |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1908 | IF_KW("af-list", 7, LY_STMT_LEAF_LIST) |
| 1909 | else IF_KW("af", 2, LY_STMT_LEAF) |
| 1910 | else IF_KW("ngth", 4, LY_STMT_LENGTH) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1911 | IF_KW_PREFIX_END |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1912 | else IF_KW("ist", 3, LY_STMT_LIST) |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1913 | break; |
| 1914 | case 'm': |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 1915 | MOVE_IN(1); |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1916 | IF_KW_PREFIX("a", 1) |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1917 | IF_KW("ndatory", 7, LY_STMT_MANDATORY) |
| 1918 | else IF_KW("x-elements", 10, LY_STMT_MAX_ELEMENTS) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1919 | IF_KW_PREFIX_END |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1920 | else IF_KW("in-elements", 11, LY_STMT_MIN_ELEMENTS) |
| 1921 | else IF_KW("ust", 3, LY_STMT_MUST) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1922 | else IF_KW_PREFIX("od", 2) |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1923 | IF_KW("ule", 3, LY_STMT_MODULE) |
| 1924 | else IF_KW("ifier", 5, LY_STMT_MODIFIER) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1925 | IF_KW_PREFIX_END |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1926 | break; |
| 1927 | case 'n': |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 1928 | MOVE_IN(1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1929 | IF_KW("amespace", 8, LY_STMT_NAMESPACE) |
| 1930 | else IF_KW("otification", 11, LY_STMT_NOTIFICATION) |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1931 | break; |
| 1932 | case 'o': |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 1933 | MOVE_IN(1); |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1934 | IF_KW_PREFIX("r", 1) |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1935 | IF_KW("dered-by", 8, LY_STMT_ORDERED_BY) |
| 1936 | else IF_KW("ganization", 10, LY_STMT_ORGANIZATION) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1937 | IF_KW_PREFIX_END |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1938 | else IF_KW("utput", 5, LY_STMT_OUTPUT) |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1939 | break; |
| 1940 | case 'p': |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 1941 | MOVE_IN(1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1942 | IF_KW("ath", 3, LY_STMT_PATH) |
| 1943 | else IF_KW("attern", 6, LY_STMT_PATTERN) |
| 1944 | else IF_KW("osition", 7, LY_STMT_POSITION) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1945 | else IF_KW_PREFIX("re", 2) |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1946 | IF_KW("fix", 3, LY_STMT_PREFIX) |
| 1947 | else IF_KW("sence", 5, LY_STMT_PRESENCE) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1948 | IF_KW_PREFIX_END |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1949 | break; |
| 1950 | case 'r': |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 1951 | MOVE_IN(1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1952 | IF_KW("ange", 4, LY_STMT_RANGE) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1953 | else IF_KW_PREFIX("e", 1) |
| 1954 | IF_KW_PREFIX("f", 1) |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1955 | IF_KW("erence", 6, LY_STMT_REFERENCE) |
| 1956 | else IF_KW("ine", 3, LY_STMT_REFINE) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1957 | IF_KW_PREFIX_END |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1958 | else IF_KW("quire-instance", 14, LY_STMT_REQUIRE_INSTANCE) |
| 1959 | else IF_KW("vision-date", 11, LY_STMT_REVISION_DATE) |
| 1960 | else IF_KW("vision", 6, LY_STMT_REVISION) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1961 | IF_KW_PREFIX_END |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1962 | else IF_KW("pc", 2, LY_STMT_RPC) |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1963 | break; |
| 1964 | case 's': |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 1965 | MOVE_IN(1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1966 | IF_KW("tatus", 5, LY_STMT_STATUS) |
| 1967 | else IF_KW("ubmodule", 8, LY_STMT_SUBMODULE) |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1968 | break; |
| 1969 | case 't': |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 1970 | MOVE_IN(1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1971 | IF_KW("ypedef", 6, LY_STMT_TYPEDEF) |
| 1972 | else IF_KW("ype", 3, LY_STMT_TYPE) |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1973 | break; |
| 1974 | case 'u': |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 1975 | MOVE_IN(1); |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1976 | IF_KW_PREFIX("ni", 2) |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1977 | IF_KW("que", 3, LY_STMT_UNIQUE) |
| 1978 | else IF_KW("ts", 2, LY_STMT_UNITS) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1979 | IF_KW_PREFIX_END |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1980 | else IF_KW("ses", 3, LY_STMT_USES) |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1981 | break; |
| 1982 | case 'v': |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 1983 | MOVE_IN(1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1984 | IF_KW("alue", 4, LY_STMT_VALUE) |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1985 | break; |
| 1986 | case 'w': |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 1987 | MOVE_IN(1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1988 | IF_KW("hen", 3, LY_STMT_WHEN) |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1989 | break; |
| 1990 | case 'y': |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 1991 | MOVE_IN(1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1992 | IF_KW("ang-version", 11, LY_STMT_YANG_VERSION) |
| 1993 | else IF_KW("in-element", 10, LY_STMT_YIN_ELEMENT) |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1994 | break; |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1995 | default: |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 1996 | /* if indent is not NULL we are matching keyword from YANG data */ |
| 1997 | if (indent) { |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 1998 | if (in->current[0] == ';') { |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 1999 | MOVE_IN(1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 2000 | *kw = LY_STMT_SYNTAX_SEMICOLON; |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 2001 | } else if (in->current[0] == '{') { |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 2002 | MOVE_IN(1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 2003 | *kw = LY_STMT_SYNTAX_LEFT_BRACE; |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 2004 | } else if (in->current[0] == '}') { |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 2005 | MOVE_IN(1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 2006 | *kw = LY_STMT_SYNTAX_RIGHT_BRACE; |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 2007 | } |
| 2008 | } |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 2009 | break; |
| 2010 | } |
| 2011 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 2012 | if ((*kw < LY_STMT_SYNTAX_SEMICOLON) && isalnum(in->current[0])) { |
Radek Krejci | 6e546bf | 2020-05-19 16:16:19 +0200 | [diff] [blame] | 2013 | /* the keyword is not terminated */ |
| 2014 | *kw = LY_STMT_NONE; |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 2015 | in->current = start; |
Radek Krejci | 6e546bf | 2020-05-19 16:16:19 +0200 | [diff] [blame] | 2016 | } |
| 2017 | |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 2018 | #undef IF_KW |
| 2019 | #undef IF_KW_PREFIX |
| 2020 | #undef IF_KW_PREFIX_END |
David Sedlák | 1873013 | 2019-03-15 15:51:34 +0100 | [diff] [blame] | 2021 | #undef MOVE_IN |
Michal Vasko | 64246d8 | 2020-08-19 12:35:00 +0200 | [diff] [blame] | 2022 | /* *INDENT-ON* */ |
David Sedlák | 1873013 | 2019-03-15 15:51:34 +0100 | [diff] [blame] | 2023 | |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 2024 | return result; |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 2025 | } |
David Sedlák | ecf5eb8 | 2019-06-03 14:12:44 +0200 | [diff] [blame] | 2026 | |
Radek Krejci | 85ac831 | 2021-03-03 20:21:33 +0100 | [diff] [blame] | 2027 | LY_ERR |
| 2028 | lysp_ext_find_definition(const struct ly_ctx *ctx, const struct lysp_ext_instance *ext, const struct lys_module **ext_mod, |
| 2029 | struct lysp_ext **ext_def) |
| 2030 | { |
Radek Krejci | 85ac831 | 2021-03-03 20:21:33 +0100 | [diff] [blame] | 2031 | const char *tmp, *name, *prefix; |
| 2032 | size_t pref_len, name_len; |
Michal Vasko | e168dbd | 2022-06-07 13:53:52 +0200 | [diff] [blame] | 2033 | LY_ARRAY_COUNT_TYPE u, v; |
Radek Krejci | 85ac831 | 2021-03-03 20:21:33 +0100 | [diff] [blame] | 2034 | const struct lys_module *mod = NULL; |
Michal Vasko | e168dbd | 2022-06-07 13:53:52 +0200 | [diff] [blame] | 2035 | const struct lysp_submodule *submod; |
Radek Krejci | 85ac831 | 2021-03-03 20:21:33 +0100 | [diff] [blame] | 2036 | |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 2037 | if (ext_def) { |
| 2038 | *ext_def = NULL; |
Radek Krejci | 85ac831 | 2021-03-03 20:21:33 +0100 | [diff] [blame] | 2039 | } |
| 2040 | |
Radek Krejci | 677abea | 2021-03-05 14:24:53 +0100 | [diff] [blame] | 2041 | /* parse the prefix, the nodeid was previously already parsed and checked */ |
Radek Krejci | 85ac831 | 2021-03-03 20:21:33 +0100 | [diff] [blame] | 2042 | tmp = ext->name; |
Radek Krejci | 677abea | 2021-03-05 14:24:53 +0100 | [diff] [blame] | 2043 | ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len); |
Radek Krejci | 85ac831 | 2021-03-03 20:21:33 +0100 | [diff] [blame] | 2044 | |
| 2045 | /* get module where the extension definition should be placed */ |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 2046 | *ext_mod = mod = ly_resolve_prefix(ctx, prefix, pref_len, ext->format, ext->prefix_data); |
Radek Krejci | 85ac831 | 2021-03-03 20:21:33 +0100 | [diff] [blame] | 2047 | if (!mod) { |
Radek Krejci | 422afb1 | 2021-03-04 16:38:16 +0100 | [diff] [blame] | 2048 | LOGVAL(ctx, LYVE_REFERENCE, "Invalid prefix \"%.*s\" used for extension instance identifier.", (int)pref_len, prefix); |
Radek Krejci | 85ac831 | 2021-03-03 20:21:33 +0100 | [diff] [blame] | 2049 | return LY_EVALID; |
| 2050 | } else if (!mod->parsed->extensions) { |
| 2051 | LOGVAL(ctx, LYVE_REFERENCE, "Extension instance \"%s\" refers \"%s\" module that does not contain extension definitions.", |
| 2052 | ext->name, mod->name); |
| 2053 | return LY_EVALID; |
| 2054 | } |
| 2055 | |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 2056 | if (!ext_def) { |
| 2057 | /* we are done */ |
| 2058 | return LY_SUCCESS; |
| 2059 | } |
| 2060 | |
Radek Krejci | 85ac831 | 2021-03-03 20:21:33 +0100 | [diff] [blame] | 2061 | /* find the parsed extension definition there */ |
| 2062 | LY_ARRAY_FOR(mod->parsed->extensions, v) { |
| 2063 | if (!strcmp(name, mod->parsed->extensions[v].name)) { |
| 2064 | *ext_def = &mod->parsed->extensions[v]; |
| 2065 | break; |
| 2066 | } |
| 2067 | } |
Michal Vasko | e168dbd | 2022-06-07 13:53:52 +0200 | [diff] [blame] | 2068 | if (!*ext_def) { |
| 2069 | LY_ARRAY_FOR(mod->parsed->includes, u) { |
| 2070 | submod = mod->parsed->includes[u].submodule; |
| 2071 | LY_ARRAY_FOR(submod->extensions, v) { |
| 2072 | if (!strcmp(name, submod->extensions[v].name)) { |
| 2073 | *ext_def = &submod->extensions[v]; |
| 2074 | break; |
| 2075 | } |
| 2076 | } |
| 2077 | } |
| 2078 | } |
Radek Krejci | 85ac831 | 2021-03-03 20:21:33 +0100 | [diff] [blame] | 2079 | |
Michal Vasko | e168dbd | 2022-06-07 13:53:52 +0200 | [diff] [blame] | 2080 | if (!*ext_def) { |
Radek Krejci | 85ac831 | 2021-03-03 20:21:33 +0100 | [diff] [blame] | 2081 | LOGVAL(ctx, LYVE_REFERENCE, "Extension definition of extension instance \"%s\" not found.", ext->name); |
| 2082 | return LY_EVALID; |
| 2083 | } |
| 2084 | |
Radek Krejci | 85ac831 | 2021-03-03 20:21:33 +0100 | [diff] [blame] | 2085 | return LY_SUCCESS; |
| 2086 | } |
| 2087 | |
| 2088 | LY_ERR |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 2089 | lysp_ext_instance_resolve_argument(struct ly_ctx *ctx, struct lysp_ext_instance *ext_p) |
Radek Krejci | 85ac831 | 2021-03-03 20:21:33 +0100 | [diff] [blame] | 2090 | { |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 2091 | assert(ext_p->def); |
| 2092 | |
| 2093 | if (!ext_p->def->argname || ext_p->argument) { |
Radek Krejci | 85ac831 | 2021-03-03 20:21:33 +0100 | [diff] [blame] | 2094 | /* nothing to do */ |
| 2095 | return LY_SUCCESS; |
| 2096 | } |
| 2097 | |
Radek Krejci | 8df109d | 2021-04-23 12:19:08 +0200 | [diff] [blame] | 2098 | if (ext_p->format == LY_VALUE_XML) { |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 2099 | /* schema was parsed from YIN and an argument is expected, ... */ |
Radek Krejci | 85ac831 | 2021-03-03 20:21:33 +0100 | [diff] [blame] | 2100 | struct lysp_stmt *stmt = NULL; |
| 2101 | |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 2102 | if (ext_p->def->flags & LYS_YINELEM_TRUE) { |
Radek Krejci | 85ac831 | 2021-03-03 20:21:33 +0100 | [diff] [blame] | 2103 | /* ... argument was the first XML child element */ |
| 2104 | for (stmt = ext_p->child; stmt && (stmt->flags & LYS_YIN_ATTR); stmt = stmt->next) {} |
| 2105 | if (stmt) { |
| 2106 | const char *arg, *ext, *name_arg, *name_ext, *prefix_arg, *prefix_ext; |
| 2107 | size_t name_arg_len, name_ext_len, prefix_arg_len, prefix_ext_len; |
| 2108 | |
| 2109 | stmt = ext_p->child; |
| 2110 | |
| 2111 | arg = stmt->stmt; |
| 2112 | ly_parse_nodeid(&arg, &prefix_arg, &prefix_arg_len, &name_arg, &name_arg_len); |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 2113 | if (ly_strncmp(ext_p->def->argname, name_arg, name_arg_len)) { |
Radek Krejci | 85ac831 | 2021-03-03 20:21:33 +0100 | [diff] [blame] | 2114 | LOGVAL(ctx, LYVE_SEMANTICS, "Extension instance \"%s\" expects argument element \"%s\" as its first XML child, " |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 2115 | "but \"%.*s\" element found.", ext_p->name, ext_p->def->argname, (int)name_arg_len, name_arg); |
Radek Krejci | 85ac831 | 2021-03-03 20:21:33 +0100 | [diff] [blame] | 2116 | return LY_EVALID; |
| 2117 | } |
| 2118 | |
| 2119 | /* check namespace - all the extension instances must be qualified and argument element is expected in the same |
| 2120 | * namespace. Do not check just prefixes, there can be different prefixes pointing to the same namespace */ |
| 2121 | ext = ext_p->name; /* include prefix */ |
| 2122 | ly_parse_nodeid(&ext, &prefix_ext, &prefix_ext_len, &name_ext, &name_ext_len); |
| 2123 | |
| 2124 | if (ly_resolve_prefix(ctx, prefix_ext, prefix_ext_len, ext_p->format, ext_p->prefix_data) != |
| 2125 | ly_resolve_prefix(ctx, prefix_arg, prefix_arg_len, stmt->format, stmt->prefix_data)) { |
| 2126 | LOGVAL(ctx, LYVE_SEMANTICS, "Extension instance \"%s\" element and its argument element \"%s\" are " |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 2127 | "expected in the same namespace, but they differ.", ext_p->name, ext_p->def->argname); |
Radek Krejci | 85ac831 | 2021-03-03 20:21:33 +0100 | [diff] [blame] | 2128 | return LY_EVALID; |
| 2129 | } |
| 2130 | } |
| 2131 | } else { |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 2132 | /* ... argument was one of the XML attributes which are represented as child stmt with LYS_YIN_ATTR flag */ |
Radek Krejci | 85ac831 | 2021-03-03 20:21:33 +0100 | [diff] [blame] | 2133 | for (stmt = ext_p->child; stmt && (stmt->flags & LYS_YIN_ATTR); stmt = stmt->next) { |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 2134 | if (!strcmp(stmt->stmt, ext_p->def->argname)) { |
Radek Krejci | 85ac831 | 2021-03-03 20:21:33 +0100 | [diff] [blame] | 2135 | /* this is the extension's argument */ |
| 2136 | break; |
| 2137 | } |
| 2138 | } |
| 2139 | } |
| 2140 | |
| 2141 | if (stmt) { |
| 2142 | LY_CHECK_RET(lydict_insert(ctx, stmt->arg, 0, &ext_p->argument)); |
| 2143 | stmt->flags |= LYS_YIN_ARGUMENT; |
| 2144 | } |
| 2145 | } |
| 2146 | |
| 2147 | if (!ext_p->argument) { |
| 2148 | /* missing extension's argument */ |
Michal Vasko | 193dacd | 2022-10-13 08:43:05 +0200 | [diff] [blame] | 2149 | LOGVAL(ctx, LYVE_SEMANTICS, "Extension instance \"%s\" missing argument %s\"%s\".", |
| 2150 | ext_p->name, (ext_p->def->flags & LYS_YINELEM_TRUE) ? "element " : "", ext_p->def->argname); |
Radek Krejci | 85ac831 | 2021-03-03 20:21:33 +0100 | [diff] [blame] | 2151 | return LY_EVALID; |
| 2152 | } |
| 2153 | |
| 2154 | return LY_SUCCESS; |
| 2155 | } |
| 2156 | |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 2157 | LY_ARRAY_COUNT_TYPE |
Radek Krejci | fc596f9 | 2021-02-26 22:40:26 +0100 | [diff] [blame] | 2158 | lysp_ext_instance_iter(struct lysp_ext_instance *ext, LY_ARRAY_COUNT_TYPE index, enum ly_stmt substmt) |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 2159 | { |
| 2160 | LY_CHECK_ARG_RET(NULL, ext, LY_EINVAL); |
| 2161 | |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 2162 | for ( ; index < LY_ARRAY_COUNT(ext); index++) { |
Radek Krejci | ab43086 | 2021-03-02 20:13:40 +0100 | [diff] [blame] | 2163 | if (ext[index].parent_stmt == substmt) { |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 2164 | return index; |
| 2165 | } |
| 2166 | } |
| 2167 | |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 2168 | return LY_ARRAY_COUNT(ext); |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 2169 | } |
| 2170 | |
Michal Vasko | f8ded14 | 2022-02-17 10:48:01 +0100 | [diff] [blame] | 2171 | LIBYANG_API_DEF const struct lysc_node * |
Michal Vasko | 7224488 | 2021-01-12 15:21:05 +0100 | [diff] [blame] | 2172 | lysc_data_node(const struct lysc_node *schema) |
Michal Vasko | 62ed12d | 2020-05-21 10:08:25 +0200 | [diff] [blame] | 2173 | { |
| 2174 | const struct lysc_node *parent; |
| 2175 | |
Michal Vasko | 7224488 | 2021-01-12 15:21:05 +0100 | [diff] [blame] | 2176 | parent = schema; |
Radek Krejci | df54913 | 2021-01-21 10:32:32 +0100 | [diff] [blame] | 2177 | while (parent && !(parent->nodetype & (LYS_CONTAINER | LYS_LEAF | LYS_LEAFLIST | LYS_LIST | LYS_ANYDATA | LYS_RPC | |
| 2178 | LYS_ACTION | LYS_NOTIF))) { |
Radek Krejci | 7d95fbb | 2021-01-26 17:33:13 +0100 | [diff] [blame] | 2179 | parent = parent->parent; |
Michal Vasko | 7224488 | 2021-01-12 15:21:05 +0100 | [diff] [blame] | 2180 | } |
Michal Vasko | 62ed12d | 2020-05-21 10:08:25 +0200 | [diff] [blame] | 2181 | |
| 2182 | return parent; |
| 2183 | } |
Michal Vasko | f4258e1 | 2021-06-15 12:11:42 +0200 | [diff] [blame] | 2184 | |
| 2185 | ly_bool |
| 2186 | lys_has_recompiled(const struct lys_module *mod) |
| 2187 | { |
| 2188 | LY_ARRAY_COUNT_TYPE u; |
| 2189 | |
| 2190 | if (LYSP_HAS_RECOMPILED(mod->parsed)) { |
| 2191 | return 1; |
| 2192 | } |
| 2193 | |
| 2194 | LY_ARRAY_FOR(mod->parsed->includes, u) { |
| 2195 | if (LYSP_HAS_RECOMPILED(mod->parsed->includes[u].submodule)) { |
| 2196 | return 1; |
| 2197 | } |
| 2198 | } |
| 2199 | |
| 2200 | return 0; |
| 2201 | } |
| 2202 | |
| 2203 | ly_bool |
| 2204 | lys_has_compiled(const struct lys_module *mod) |
| 2205 | { |
| 2206 | LY_ARRAY_COUNT_TYPE u; |
| 2207 | |
| 2208 | if (LYSP_HAS_COMPILED(mod->parsed)) { |
| 2209 | return 1; |
| 2210 | } |
| 2211 | |
| 2212 | LY_ARRAY_FOR(mod->parsed->includes, u) { |
| 2213 | if (LYSP_HAS_COMPILED(mod->parsed->includes[u].submodule)) { |
| 2214 | return 1; |
| 2215 | } |
| 2216 | } |
| 2217 | |
| 2218 | return 0; |
| 2219 | } |
Michal Vasko | 7ee5be2 | 2021-06-16 17:03:34 +0200 | [diff] [blame] | 2220 | |
| 2221 | ly_bool |
Michal Vasko | 87cfdba | 2022-02-22 14:13:45 +0100 | [diff] [blame] | 2222 | lys_has_dep_mods(const struct lys_module *mod) |
Michal Vasko | 7ee5be2 | 2021-06-16 17:03:34 +0200 | [diff] [blame] | 2223 | { |
| 2224 | LY_ARRAY_COUNT_TYPE u; |
| 2225 | |
Michal Vasko | 87cfdba | 2022-02-22 14:13:45 +0100 | [diff] [blame] | 2226 | /* features */ |
| 2227 | if (mod->parsed->features) { |
Michal Vasko | 7ee5be2 | 2021-06-16 17:03:34 +0200 | [diff] [blame] | 2228 | return 1; |
| 2229 | } |
| 2230 | |
Michal Vasko | 87cfdba | 2022-02-22 14:13:45 +0100 | [diff] [blame] | 2231 | /* groupings */ |
| 2232 | if (mod->parsed->groupings) { |
| 2233 | return 1; |
| 2234 | } |
Michal Vasko | 7ee5be2 | 2021-06-16 17:03:34 +0200 | [diff] [blame] | 2235 | LY_ARRAY_FOR(mod->parsed->includes, u) { |
| 2236 | if (mod->parsed->includes[u].submodule->groupings) { |
| 2237 | return 1; |
| 2238 | } |
| 2239 | } |
| 2240 | |
Michal Vasko | 87cfdba | 2022-02-22 14:13:45 +0100 | [diff] [blame] | 2241 | /* augments (adding nodes with leafrefs) */ |
| 2242 | if (mod->parsed->augments) { |
| 2243 | return 1; |
| 2244 | } |
| 2245 | LY_ARRAY_FOR(mod->parsed->includes, u) { |
| 2246 | if (mod->parsed->includes[u].submodule->augments) { |
| 2247 | return 1; |
| 2248 | } |
| 2249 | } |
| 2250 | |
Michal Vasko | 7ee5be2 | 2021-06-16 17:03:34 +0200 | [diff] [blame] | 2251 | return 0; |
| 2252 | } |
Michal Vasko | b872d0f | 2022-12-08 09:36:54 +0100 | [diff] [blame] | 2253 | |
| 2254 | const char * |
| 2255 | lys_stmt_str(enum ly_stmt stmt) |
| 2256 | { |
| 2257 | switch (stmt) { |
| 2258 | case LY_STMT_NONE: |
| 2259 | return NULL; |
| 2260 | case LY_STMT_ACTION: |
| 2261 | return "action"; |
| 2262 | case LY_STMT_ANYDATA: |
| 2263 | return "anydata"; |
| 2264 | case LY_STMT_ANYXML: |
| 2265 | return "anyxml"; |
| 2266 | case LY_STMT_ARGUMENT: |
| 2267 | return "argument"; |
| 2268 | case LY_STMT_ARG_TEXT: |
| 2269 | return "text"; |
| 2270 | case LY_STMT_ARG_VALUE: |
| 2271 | return "value"; |
| 2272 | case LY_STMT_AUGMENT: |
| 2273 | return "augment"; |
| 2274 | case LY_STMT_BASE: |
| 2275 | return "base"; |
| 2276 | case LY_STMT_BELONGS_TO: |
| 2277 | return "belongs-to"; |
| 2278 | case LY_STMT_BIT: |
| 2279 | return "bit"; |
| 2280 | case LY_STMT_CASE: |
| 2281 | return "case"; |
| 2282 | case LY_STMT_CHOICE: |
| 2283 | return "choice"; |
| 2284 | case LY_STMT_CONFIG: |
| 2285 | return "config"; |
| 2286 | case LY_STMT_CONTACT: |
| 2287 | return "contact"; |
| 2288 | case LY_STMT_CONTAINER: |
| 2289 | return "container"; |
| 2290 | case LY_STMT_DEFAULT: |
| 2291 | return "default"; |
| 2292 | case LY_STMT_DESCRIPTION: |
| 2293 | return "description"; |
| 2294 | case LY_STMT_DEVIATE: |
| 2295 | return "deviate"; |
| 2296 | case LY_STMT_DEVIATION: |
| 2297 | return "deviation"; |
| 2298 | case LY_STMT_ENUM: |
| 2299 | return "enum"; |
| 2300 | case LY_STMT_ERROR_APP_TAG: |
| 2301 | return "error-app-tag"; |
| 2302 | case LY_STMT_ERROR_MESSAGE: |
| 2303 | return "error-message"; |
| 2304 | case LY_STMT_EXTENSION: |
| 2305 | return "extension"; |
| 2306 | case LY_STMT_EXTENSION_INSTANCE: |
| 2307 | return NULL; |
| 2308 | case LY_STMT_FEATURE: |
| 2309 | return "feature"; |
| 2310 | case LY_STMT_FRACTION_DIGITS: |
| 2311 | return "fraction-digits"; |
| 2312 | case LY_STMT_GROUPING: |
| 2313 | return "grouping"; |
| 2314 | case LY_STMT_IDENTITY: |
| 2315 | return "identity"; |
| 2316 | case LY_STMT_IF_FEATURE: |
| 2317 | return "if-feature"; |
| 2318 | case LY_STMT_IMPORT: |
| 2319 | return "import"; |
| 2320 | case LY_STMT_INCLUDE: |
| 2321 | return "include"; |
| 2322 | case LY_STMT_INPUT: |
| 2323 | return "input"; |
| 2324 | case LY_STMT_KEY: |
| 2325 | return "key"; |
| 2326 | case LY_STMT_LEAF: |
| 2327 | return "leaf"; |
| 2328 | case LY_STMT_LEAF_LIST: |
| 2329 | return "leaf-list"; |
| 2330 | case LY_STMT_LENGTH: |
| 2331 | return "length"; |
| 2332 | case LY_STMT_LIST: |
| 2333 | return "list"; |
| 2334 | case LY_STMT_MANDATORY: |
| 2335 | return "mandatory"; |
| 2336 | case LY_STMT_MAX_ELEMENTS: |
| 2337 | return "max-elements"; |
| 2338 | case LY_STMT_MIN_ELEMENTS: |
| 2339 | return "min-elements"; |
| 2340 | case LY_STMT_MODIFIER: |
| 2341 | return "modifier"; |
| 2342 | case LY_STMT_MODULE: |
| 2343 | return "module"; |
| 2344 | case LY_STMT_MUST: |
| 2345 | return "must"; |
| 2346 | case LY_STMT_NAMESPACE: |
| 2347 | return "namespace"; |
| 2348 | case LY_STMT_NOTIFICATION: |
| 2349 | return "notification"; |
| 2350 | case LY_STMT_ORDERED_BY: |
| 2351 | return "ordered-by"; |
| 2352 | case LY_STMT_ORGANIZATION: |
| 2353 | return "organization"; |
| 2354 | case LY_STMT_OUTPUT: |
| 2355 | return "output"; |
| 2356 | case LY_STMT_PATH: |
| 2357 | return "path"; |
| 2358 | case LY_STMT_PATTERN: |
| 2359 | return "pattern"; |
| 2360 | case LY_STMT_POSITION: |
| 2361 | return "position"; |
| 2362 | case LY_STMT_PREFIX: |
| 2363 | return "prefix"; |
| 2364 | case LY_STMT_PRESENCE: |
| 2365 | return "presence"; |
| 2366 | case LY_STMT_RANGE: |
| 2367 | return "range"; |
| 2368 | case LY_STMT_REFERENCE: |
| 2369 | return "reference"; |
| 2370 | case LY_STMT_REFINE: |
| 2371 | return "refine"; |
| 2372 | case LY_STMT_REQUIRE_INSTANCE: |
| 2373 | return "require-instance"; |
| 2374 | case LY_STMT_REVISION: |
| 2375 | return "revision"; |
| 2376 | case LY_STMT_REVISION_DATE: |
| 2377 | return "revision-date"; |
| 2378 | case LY_STMT_RPC: |
| 2379 | return "rpc"; |
| 2380 | case LY_STMT_STATUS: |
| 2381 | return "status"; |
| 2382 | case LY_STMT_SUBMODULE: |
| 2383 | return "submodule"; |
| 2384 | case LY_STMT_SYNTAX_LEFT_BRACE: |
| 2385 | return "{"; |
| 2386 | case LY_STMT_SYNTAX_RIGHT_BRACE: |
| 2387 | return "}"; |
| 2388 | case LY_STMT_SYNTAX_SEMICOLON: |
| 2389 | return ";"; |
| 2390 | case LY_STMT_TYPE: |
| 2391 | return "type"; |
| 2392 | case LY_STMT_TYPEDEF: |
| 2393 | return "typedef"; |
| 2394 | case LY_STMT_UNIQUE: |
| 2395 | return "unique"; |
| 2396 | case LY_STMT_UNITS: |
| 2397 | return "units"; |
| 2398 | case LY_STMT_USES: |
| 2399 | return "uses"; |
| 2400 | case LY_STMT_VALUE: |
| 2401 | return "value"; |
| 2402 | case LY_STMT_WHEN: |
| 2403 | return "when"; |
| 2404 | case LY_STMT_YANG_VERSION: |
| 2405 | return "yang-version"; |
| 2406 | case LY_STMT_YIN_ELEMENT: |
| 2407 | return "yin-element"; |
| 2408 | } |
| 2409 | |
| 2410 | return NULL; |
| 2411 | } |
| 2412 | |
| 2413 | const char * |
| 2414 | lys_stmt_arg(enum ly_stmt stmt) |
| 2415 | { |
| 2416 | switch (stmt) { |
| 2417 | case LY_STMT_NONE: |
| 2418 | case LY_STMT_ARG_TEXT: |
| 2419 | case LY_STMT_ARG_VALUE: |
| 2420 | case LY_STMT_EXTENSION_INSTANCE: |
| 2421 | case LY_STMT_INPUT: |
| 2422 | case LY_STMT_OUTPUT: |
| 2423 | case LY_STMT_SYNTAX_LEFT_BRACE: |
| 2424 | case LY_STMT_SYNTAX_RIGHT_BRACE: |
| 2425 | case LY_STMT_SYNTAX_SEMICOLON: |
| 2426 | return NULL; |
| 2427 | case LY_STMT_ACTION: |
| 2428 | case LY_STMT_ANYDATA: |
| 2429 | case LY_STMT_ANYXML: |
| 2430 | case LY_STMT_ARGUMENT: |
| 2431 | case LY_STMT_BASE: |
| 2432 | case LY_STMT_BIT: |
| 2433 | case LY_STMT_CASE: |
| 2434 | case LY_STMT_CHOICE: |
| 2435 | case LY_STMT_CONTAINER: |
| 2436 | case LY_STMT_ENUM: |
| 2437 | case LY_STMT_EXTENSION: |
| 2438 | case LY_STMT_FEATURE: |
| 2439 | case LY_STMT_GROUPING: |
| 2440 | case LY_STMT_IDENTITY: |
| 2441 | case LY_STMT_IF_FEATURE: |
| 2442 | case LY_STMT_LEAF: |
| 2443 | case LY_STMT_LEAF_LIST: |
| 2444 | case LY_STMT_LIST: |
| 2445 | case LY_STMT_MODULE: |
| 2446 | case LY_STMT_NOTIFICATION: |
| 2447 | case LY_STMT_RPC: |
| 2448 | case LY_STMT_SUBMODULE: |
| 2449 | case LY_STMT_TYPE: |
| 2450 | case LY_STMT_TYPEDEF: |
| 2451 | case LY_STMT_UNITS: |
| 2452 | case LY_STMT_USES: |
| 2453 | return "name"; |
| 2454 | case LY_STMT_AUGMENT: |
| 2455 | case LY_STMT_DEVIATION: |
| 2456 | case LY_STMT_REFINE: |
| 2457 | return "target-node"; |
| 2458 | case LY_STMT_BELONGS_TO: |
| 2459 | case LY_STMT_IMPORT: |
| 2460 | case LY_STMT_INCLUDE: |
| 2461 | return "module"; |
| 2462 | case LY_STMT_CONFIG: |
| 2463 | case LY_STMT_DEFAULT: |
| 2464 | case LY_STMT_DEVIATE: |
| 2465 | case LY_STMT_ERROR_APP_TAG: |
| 2466 | case LY_STMT_ERROR_MESSAGE: |
| 2467 | case LY_STMT_FRACTION_DIGITS: |
| 2468 | case LY_STMT_KEY: |
| 2469 | case LY_STMT_LENGTH: |
| 2470 | case LY_STMT_MANDATORY: |
| 2471 | case LY_STMT_MAX_ELEMENTS: |
| 2472 | case LY_STMT_MIN_ELEMENTS: |
| 2473 | case LY_STMT_MODIFIER: |
| 2474 | case LY_STMT_ORDERED_BY: |
| 2475 | case LY_STMT_PATH: |
| 2476 | case LY_STMT_PATTERN: |
| 2477 | case LY_STMT_POSITION: |
| 2478 | case LY_STMT_PREFIX: |
| 2479 | case LY_STMT_PRESENCE: |
| 2480 | case LY_STMT_RANGE: |
| 2481 | case LY_STMT_REQUIRE_INSTANCE: |
| 2482 | case LY_STMT_STATUS: |
| 2483 | case LY_STMT_VALUE: |
| 2484 | case LY_STMT_YANG_VERSION: |
| 2485 | case LY_STMT_YIN_ELEMENT: |
| 2486 | return "value"; |
| 2487 | case LY_STMT_CONTACT: |
| 2488 | case LY_STMT_DESCRIPTION: |
| 2489 | case LY_STMT_ORGANIZATION: |
| 2490 | case LY_STMT_REFERENCE: |
| 2491 | return "text"; |
| 2492 | case LY_STMT_MUST: |
| 2493 | case LY_STMT_WHEN: |
| 2494 | return "condition"; |
| 2495 | case LY_STMT_NAMESPACE: |
| 2496 | return "uri"; |
| 2497 | case LY_STMT_REVISION: |
| 2498 | case LY_STMT_REVISION_DATE: |
| 2499 | return "date"; |
| 2500 | case LY_STMT_UNIQUE: |
| 2501 | return "tag"; |
| 2502 | } |
| 2503 | |
| 2504 | return NULL; |
| 2505 | } |
| 2506 | |
| 2507 | uint8_t |
| 2508 | lys_stmt_flags(enum ly_stmt stmt) |
| 2509 | { |
| 2510 | switch (stmt) { |
| 2511 | case LY_STMT_NONE: |
| 2512 | case LY_STMT_ARG_TEXT: |
| 2513 | case LY_STMT_ARG_VALUE: |
| 2514 | case LY_STMT_DEFAULT: |
| 2515 | case LY_STMT_ERROR_APP_TAG: |
| 2516 | case LY_STMT_EXTENSION_INSTANCE: |
| 2517 | case LY_STMT_IF_FEATURE: |
| 2518 | case LY_STMT_INPUT: |
| 2519 | case LY_STMT_KEY: |
| 2520 | case LY_STMT_LENGTH: |
| 2521 | case LY_STMT_MUST: |
| 2522 | case LY_STMT_NAMESPACE: |
| 2523 | case LY_STMT_OUTPUT: |
| 2524 | case LY_STMT_PATH: |
| 2525 | case LY_STMT_PATTERN: |
| 2526 | case LY_STMT_PRESENCE: |
| 2527 | case LY_STMT_RANGE: |
| 2528 | case LY_STMT_SYNTAX_LEFT_BRACE: |
| 2529 | case LY_STMT_SYNTAX_RIGHT_BRACE: |
| 2530 | case LY_STMT_SYNTAX_SEMICOLON: |
| 2531 | case LY_STMT_UNIQUE: |
| 2532 | case LY_STMT_UNITS: |
| 2533 | case LY_STMT_WHEN: |
| 2534 | return 0; |
| 2535 | case LY_STMT_ACTION: |
| 2536 | case LY_STMT_ANYDATA: |
| 2537 | case LY_STMT_ANYXML: |
| 2538 | case LY_STMT_ARGUMENT: |
| 2539 | case LY_STMT_AUGMENT: |
| 2540 | case LY_STMT_BASE: |
| 2541 | case LY_STMT_BELONGS_TO: |
| 2542 | case LY_STMT_BIT: |
| 2543 | case LY_STMT_CASE: |
| 2544 | case LY_STMT_CHOICE: |
| 2545 | case LY_STMT_CONFIG: |
| 2546 | case LY_STMT_CONTAINER: |
| 2547 | case LY_STMT_DEVIATE: |
| 2548 | case LY_STMT_DEVIATION: |
| 2549 | case LY_STMT_ENUM: |
| 2550 | case LY_STMT_EXTENSION: |
| 2551 | case LY_STMT_FEATURE: |
| 2552 | case LY_STMT_FRACTION_DIGITS: |
| 2553 | case LY_STMT_GROUPING: |
| 2554 | case LY_STMT_IDENTITY: |
| 2555 | case LY_STMT_IMPORT: |
| 2556 | case LY_STMT_INCLUDE: |
| 2557 | case LY_STMT_LEAF: |
| 2558 | case LY_STMT_LEAF_LIST: |
| 2559 | case LY_STMT_LIST: |
| 2560 | case LY_STMT_MANDATORY: |
| 2561 | case LY_STMT_MAX_ELEMENTS: |
| 2562 | case LY_STMT_MIN_ELEMENTS: |
| 2563 | case LY_STMT_MODIFIER: |
| 2564 | case LY_STMT_MODULE: |
| 2565 | case LY_STMT_NOTIFICATION: |
| 2566 | case LY_STMT_ORDERED_BY: |
| 2567 | case LY_STMT_POSITION: |
| 2568 | case LY_STMT_PREFIX: |
| 2569 | case LY_STMT_REFINE: |
| 2570 | case LY_STMT_REQUIRE_INSTANCE: |
| 2571 | case LY_STMT_REVISION: |
| 2572 | case LY_STMT_REVISION_DATE: |
| 2573 | case LY_STMT_RPC: |
| 2574 | case LY_STMT_STATUS: |
| 2575 | case LY_STMT_SUBMODULE: |
| 2576 | case LY_STMT_TYPE: |
| 2577 | case LY_STMT_TYPEDEF: |
| 2578 | case LY_STMT_USES: |
| 2579 | case LY_STMT_VALUE: |
| 2580 | case LY_STMT_YANG_VERSION: |
| 2581 | case LY_STMT_YIN_ELEMENT: |
| 2582 | return LY_STMT_FLAG_ID; |
| 2583 | case LY_STMT_CONTACT: |
| 2584 | case LY_STMT_DESCRIPTION: |
| 2585 | case LY_STMT_ERROR_MESSAGE: |
| 2586 | case LY_STMT_ORGANIZATION: |
| 2587 | case LY_STMT_REFERENCE: |
| 2588 | return LY_STMT_FLAG_YIN; |
| 2589 | } |
| 2590 | |
| 2591 | return 0; |
| 2592 | } |
Jan Kundrát | 026737b | 2023-09-05 13:03:30 +0200 | [diff] [blame] | 2593 | |
| 2594 | void |
| 2595 | ly_check_module_filename(const struct ly_ctx *ctx, const char *name, const char *revision, const char *filename) |
| 2596 | { |
| 2597 | const char *basename, *rev, *dot; |
| 2598 | size_t len; |
| 2599 | |
| 2600 | /* check that name and revision match filename */ |
| 2601 | basename = strrchr(filename, '/'); |
Jan Kundrát | 35c145a | 2023-08-31 21:36:18 +0200 | [diff] [blame] | 2602 | #ifdef _WIN32 |
| 2603 | const char *backslash = strrchr(filename, '\\'); |
| 2604 | |
| 2605 | if (!basename || (basename && backslash && (backslash > basename))) { |
| 2606 | basename = backslash; |
| 2607 | } |
| 2608 | #endif |
Jan Kundrát | 026737b | 2023-09-05 13:03:30 +0200 | [diff] [blame] | 2609 | if (!basename) { |
| 2610 | basename = filename; |
| 2611 | } else { |
| 2612 | basename++; /* leading slash */ |
| 2613 | } |
| 2614 | rev = strchr(basename, '@'); |
| 2615 | dot = strrchr(basename, '.'); |
| 2616 | |
| 2617 | /* name */ |
| 2618 | len = strlen(name); |
| 2619 | if (strncmp(basename, name, len) || |
| 2620 | ((rev && (rev != &basename[len])) || (!rev && (dot != &basename[len])))) { |
| 2621 | LOGWRN(ctx, "File name \"%s\" does not match module name \"%s\".", basename, name); |
| 2622 | } |
| 2623 | if (rev) { |
| 2624 | len = dot - ++rev; |
| 2625 | if (!revision || (len != LY_REV_SIZE - 1) || strncmp(revision, rev, len)) { |
| 2626 | LOGWRN(ctx, "File name \"%s\" does not match module revision \"%s\".", basename, |
| 2627 | revision ? revision : "none"); |
| 2628 | } |
| 2629 | } |
| 2630 | } |