blob: deefa80c8b8748a023122a25f4d3a99cbb6be786 [file] [log] [blame]
Radek Krejci86d106e2018-10-18 09:53:19 +02001/**
2 * @file tree_schema_helpers.c
3 * @author Radek Krejci <rkrejci@cesnet.cz>
Radek Krejcie7b95092019-05-15 11:03:07 +02004 * @brief Parsing and validation helper functions for schema trees
Radek Krejci86d106e2018-10-18 09:53:19 +02005 *
6 * Copyright (c) 2015 - 2018 CESNET, z.s.p.o.
7 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
Radek Krejci535ea9f2020-05-29 16:01:05 +020014
15#define _GNU_SOURCE
Radek Krejci86d106e2018-10-18 09:53:19 +020016
Radek Krejcie7b95092019-05-15 11:03:07 +020017#include <assert.h>
Radek Krejci86d106e2018-10-18 09:53:19 +020018#include <ctype.h>
Radek Krejci47fab892020-11-05 17:02:41 +010019#include <stddef.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020020#include <stdint.h>
Radek Krejci9ed7a192018-10-31 16:23:51 +010021#include <stdlib.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020022#include <string.h>
Radek Krejci86d106e2018-10-18 09:53:19 +020023#include <time.h>
24
Radek Krejci535ea9f2020-05-29 16:01:05 +020025#include "common.h"
Michal Vasko69730152020-10-09 16:30:07 +020026#include "compat.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020027#include "context.h"
Radek Krejci77114102021-03-10 15:21:57 +010028#include "dict.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020029#include "hash_table.h"
Radek Krejci47fab892020-11-05 17:02:41 +010030#include "in.h"
Michal Vaskoafac7822020-10-20 14:22:26 +020031#include "in_internal.h"
Radek Krejci47fab892020-11-05 17:02:41 +010032#include "log.h"
Michal Vasko69730152020-10-09 16:30:07 +020033#include "parser_schema.h"
Michal Vasko962b6cd2020-12-08 10:07:49 +010034#include "schema_compile.h"
Michal Vasko79135ae2020-12-16 10:08:35 +010035#include "schema_features.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020036#include "set.h"
37#include "tree.h"
Radek Krejci859a15a2021-03-05 20:56:59 +010038#include "tree_edit.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020039#include "tree_schema.h"
Radek Krejci86d106e2018-10-18 09:53:19 +020040#include "tree_schema_internal.h"
41
Radek Krejci85747952019-06-07 16:43:43 +020042LY_ERR
Radek Krejcie7b95092019-05-15 11:03:07 +020043lysp_check_prefix(struct lys_parser_ctx *ctx, struct lysp_import *imports, const char *module_prefix, const char **value)
Radek Krejci86d106e2018-10-18 09:53:19 +020044{
45 struct lysp_import *i;
46
Michal Vasko69730152020-10-09 16:30:07 +020047 if (module_prefix && (&module_prefix != value) && !strcmp(module_prefix, *value)) {
Michal Vaskob36053d2020-03-26 15:49:30 +010048 LOGVAL_PARSER(ctx, LYVE_REFERENCE, "Prefix \"%s\" already used as module prefix.", *value);
Radek Krejci86d106e2018-10-18 09:53:19 +020049 return LY_EEXIST;
50 }
Radek Krejci0bcdaed2019-01-10 10:21:34 +010051 LY_ARRAY_FOR(imports, struct lysp_import, i) {
Michal Vasko69730152020-10-09 16:30:07 +020052 if (i->prefix && (&i->prefix != value) && !strcmp(i->prefix, *value)) {
Michal Vaskob36053d2020-03-26 15:49:30 +010053 LOGVAL_PARSER(ctx, LYVE_REFERENCE, "Prefix \"%s\" already used to import \"%s\" module.", *value, i->name);
Radek Krejci0bcdaed2019-01-10 10:21:34 +010054 return LY_EEXIST;
Radek Krejci86d106e2018-10-18 09:53:19 +020055 }
56 }
57 return LY_SUCCESS;
58}
59
60LY_ERR
Juraj Vijtiuk74dad9e2021-05-26 12:42:14 +020061lysp_check_date(struct lys_parser_ctx *ctx, const char *date, size_t date_len, const char *stmt)
Radek Krejci86d106e2018-10-18 09:53:19 +020062{
Radek Krejci86d106e2018-10-18 09:53:19 +020063 struct tm tm, tm_;
64 char *r;
65
Michal Vaskob36053d2020-03-26 15:49:30 +010066 LY_CHECK_ARG_RET(ctx ? PARSER_CTX(ctx) : NULL, date, LY_EINVAL);
67 LY_CHECK_ERR_RET(date_len != LY_REV_SIZE - 1, LOGARG(ctx ? PARSER_CTX(ctx) : NULL, date_len), LY_EINVAL);
Radek Krejci86d106e2018-10-18 09:53:19 +020068
Radek Krejcif13b87b2020-12-01 22:02:17 +010069 /* check format: YYYY-MM-DD */
Radek Krejci1deb5be2020-08-26 16:43:36 +020070 for (uint8_t i = 0; i < date_len; i++) {
Michal Vasko69730152020-10-09 16:30:07 +020071 if ((i == 4) || (i == 7)) {
Radek Krejci86d106e2018-10-18 09:53:19 +020072 if (date[i] != '-') {
73 goto error;
74 }
75 } else if (!isdigit(date[i])) {
76 goto error;
77 }
78 }
79
80 /* check content, e.g. 2018-02-31 */
81 memset(&tm, 0, sizeof tm);
82 r = strptime(date, "%Y-%m-%d", &tm);
Michal Vasko69730152020-10-09 16:30:07 +020083 if (!r || (r != &date[LY_REV_SIZE - 1])) {
Radek Krejci86d106e2018-10-18 09:53:19 +020084 goto error;
85 }
86 memcpy(&tm_, &tm, sizeof tm);
87 mktime(&tm_); /* mktime modifies tm_ if it refers invalid date */
88 if (tm.tm_mday != tm_.tm_mday) { /* e.g 2018-02-29 -> 2018-03-01 */
89 /* checking days is enough, since other errors
90 * have been checked by strptime() */
91 goto error;
92 }
93
94 return LY_SUCCESS;
95
96error:
Radek Krejcid33273d2018-10-25 14:55:52 +020097 if (stmt) {
Radek Krejci2efc45b2020-12-22 16:25:44 +010098 LOGVAL_PARSER(ctx, LY_VCODE_INVAL, date_len, date, stmt);
Radek Krejcid33273d2018-10-25 14:55:52 +020099 }
Radek Krejci86d106e2018-10-18 09:53:19 +0200100 return LY_EINVAL;
101}
102
103void
104lysp_sort_revisions(struct lysp_revision *revs)
105{
Radek Krejci857189e2020-09-01 13:26:36 +0200106 LY_ARRAY_COUNT_TYPE i, r;
Radek Krejci86d106e2018-10-18 09:53:19 +0200107 struct lysp_revision rev;
108
Radek Krejcic7d13e32020-12-09 12:32:24 +0100109 for (i = 1, r = 0; i < LY_ARRAY_COUNT(revs); i++) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200110 if (strcmp(revs[i].date, revs[r].date) > 0) {
Radek Krejci86d106e2018-10-18 09:53:19 +0200111 r = i;
112 }
113 }
114
115 if (r) {
116 /* the newest revision is not on position 0, switch them */
Radek Krejci2c4e7172018-10-19 15:56:26 +0200117 memcpy(&rev, &revs[0], sizeof rev);
118 memcpy(&revs[0], &revs[r], sizeof rev);
119 memcpy(&revs[r], &rev, sizeof rev);
Radek Krejci86d106e2018-10-18 09:53:19 +0200120 }
121}
Radek Krejci151a5b72018-10-19 14:21:44 +0200122
Radek Krejcibbe09a92018-11-08 09:36:54 +0100123static const struct lysp_tpdf *
124lysp_type_match(const char *name, struct lysp_node *node)
125{
Radek Krejci0fb28562018-12-13 15:17:37 +0100126 const struct lysp_tpdf *typedefs;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200127 LY_ARRAY_COUNT_TYPE u;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100128
Radek Krejci0fb28562018-12-13 15:17:37 +0100129 typedefs = lysp_node_typedefs(node);
130 LY_ARRAY_FOR(typedefs, u) {
131 if (!strcmp(name, typedefs[u].name)) {
132 /* match */
133 return &typedefs[u];
Radek Krejcibbe09a92018-11-08 09:36:54 +0100134 }
135 }
136
137 return NULL;
138}
139
Radek Krejci4f28eda2018-11-12 11:46:16 +0100140static LY_DATA_TYPE
141lysp_type_str2builtin(const char *name, size_t len)
142{
143 if (len >= 4) { /* otherwise it does not match any built-in type */
144 if (name[0] == 'b') {
145 if (name[1] == 'i') {
Michal Vasko69730152020-10-09 16:30:07 +0200146 if ((len == 6) && !strncmp(&name[2], "nary", 4)) {
Radek Krejci4f28eda2018-11-12 11:46:16 +0100147 return LY_TYPE_BINARY;
Michal Vasko69730152020-10-09 16:30:07 +0200148 } else if ((len == 4) && !strncmp(&name[2], "ts", 2)) {
Radek Krejci4f28eda2018-11-12 11:46:16 +0100149 return LY_TYPE_BITS;
150 }
Michal Vasko69730152020-10-09 16:30:07 +0200151 } else if ((len == 7) && !strncmp(&name[1], "oolean", 6)) {
Radek Krejci4f28eda2018-11-12 11:46:16 +0100152 return LY_TYPE_BOOL;
153 }
154 } else if (name[0] == 'd') {
Michal Vasko69730152020-10-09 16:30:07 +0200155 if ((len == 9) && !strncmp(&name[1], "ecimal64", 8)) {
Radek Krejci4f28eda2018-11-12 11:46:16 +0100156 return LY_TYPE_DEC64;
157 }
158 } else if (name[0] == 'e') {
Michal Vasko69730152020-10-09 16:30:07 +0200159 if ((len == 5) && !strncmp(&name[1], "mpty", 4)) {
Radek Krejci4f28eda2018-11-12 11:46:16 +0100160 return LY_TYPE_EMPTY;
Michal Vasko69730152020-10-09 16:30:07 +0200161 } else if ((len == 11) && !strncmp(&name[1], "numeration", 10)) {
Radek Krejci4f28eda2018-11-12 11:46:16 +0100162 return LY_TYPE_ENUM;
163 }
164 } else if (name[0] == 'i') {
165 if (name[1] == 'n') {
Michal Vasko69730152020-10-09 16:30:07 +0200166 if ((len == 4) && !strncmp(&name[2], "t8", 2)) {
Radek Krejci4f28eda2018-11-12 11:46:16 +0100167 return LY_TYPE_INT8;
168 } else if (len == 5) {
169 if (!strncmp(&name[2], "t16", 3)) {
170 return LY_TYPE_INT16;
171 } else if (!strncmp(&name[2], "t32", 3)) {
172 return LY_TYPE_INT32;
173 } else if (!strncmp(&name[2], "t64", 3)) {
174 return LY_TYPE_INT64;
175 }
Michal Vasko69730152020-10-09 16:30:07 +0200176 } else if ((len == 19) && !strncmp(&name[2], "stance-identifier", 17)) {
Radek Krejci4f28eda2018-11-12 11:46:16 +0100177 return LY_TYPE_INST;
178 }
Michal Vasko69730152020-10-09 16:30:07 +0200179 } else if ((len == 11) && !strncmp(&name[1], "dentityref", 10)) {
Radek Krejci4f28eda2018-11-12 11:46:16 +0100180 return LY_TYPE_IDENT;
181 }
182 } else if (name[0] == 'l') {
Michal Vasko69730152020-10-09 16:30:07 +0200183 if ((len == 7) && !strncmp(&name[1], "eafref", 6)) {
Radek Krejci4f28eda2018-11-12 11:46:16 +0100184 return LY_TYPE_LEAFREF;
185 }
186 } else if (name[0] == 's') {
Michal Vasko69730152020-10-09 16:30:07 +0200187 if ((len == 6) && !strncmp(&name[1], "tring", 5)) {
Radek Krejci4f28eda2018-11-12 11:46:16 +0100188 return LY_TYPE_STRING;
189 }
190 } else if (name[0] == 'u') {
191 if (name[1] == 'n') {
Michal Vasko69730152020-10-09 16:30:07 +0200192 if ((len == 5) && !strncmp(&name[2], "ion", 3)) {
Radek Krejci4f28eda2018-11-12 11:46:16 +0100193 return LY_TYPE_UNION;
194 }
Michal Vasko69730152020-10-09 16:30:07 +0200195 } else if ((name[1] == 'i') && (name[2] == 'n') && (name[3] == 't')) {
196 if ((len == 5) && (name[4] == '8')) {
Radek Krejci4f28eda2018-11-12 11:46:16 +0100197 return LY_TYPE_UINT8;
198 } else if (len == 6) {
199 if (!strncmp(&name[4], "16", 2)) {
200 return LY_TYPE_UINT16;
201 } else if (!strncmp(&name[4], "32", 2)) {
202 return LY_TYPE_UINT32;
203 } else if (!strncmp(&name[4], "64", 2)) {
204 return LY_TYPE_UINT64;
205 }
206 }
207 }
208 }
209 }
210
211 return LY_TYPE_UNKNOWN;
212}
213
Radek Krejcibbe09a92018-11-08 09:36:54 +0100214LY_ERR
Michal Vaskoa99b3572021-02-01 11:54:58 +0100215lysp_type_find(const char *id, struct lysp_node *start_node, const struct lysp_module *start_module,
216 LY_DATA_TYPE *type, const struct lysp_tpdf **tpdf, struct lysp_node **node)
Radek Krejcibbe09a92018-11-08 09:36:54 +0100217{
218 const char *str, *name;
219 struct lysp_tpdf *typedefs;
Michal Vaskob2d55bf2020-11-02 15:42:43 +0100220 const struct lys_module *mod;
Michal Vaskoa99b3572021-02-01 11:54:58 +0100221 const struct lysp_module *local_module;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200222 LY_ARRAY_COUNT_TYPE u, v;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100223
224 assert(id);
225 assert(start_module);
226 assert(tpdf);
227 assert(node);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100228
Radek Krejci4f28eda2018-11-12 11:46:16 +0100229 *node = NULL;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100230 str = strchr(id, ':');
231 if (str) {
Radek Krejci8df109d2021-04-23 12:19:08 +0200232 mod = ly_resolve_prefix(start_module->mod->ctx, id, str - id, LY_VALUE_SCHEMA, (void *)start_module);
Michal Vaskoa99b3572021-02-01 11:54:58 +0100233 local_module = mod ? mod->parsed : NULL;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100234 name = str + 1;
Radek Krejci4f28eda2018-11-12 11:46:16 +0100235 *type = LY_TYPE_UNKNOWN;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100236 } else {
Michal Vaskoa99b3572021-02-01 11:54:58 +0100237 local_module = start_module;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100238 name = id;
Radek Krejci4f28eda2018-11-12 11:46:16 +0100239
240 /* check for built-in types */
241 *type = lysp_type_str2builtin(name, strlen(name));
242 if (*type) {
243 *tpdf = NULL;
244 return LY_SUCCESS;
245 }
Radek Krejcibbe09a92018-11-08 09:36:54 +0100246 }
Michal Vaskoa99b3572021-02-01 11:54:58 +0100247 LY_CHECK_RET(!local_module, LY_ENOTFOUND);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100248
Michal Vaskoa99b3572021-02-01 11:54:58 +0100249 if (start_node && (local_module == start_module)) {
Radek Krejcibbe09a92018-11-08 09:36:54 +0100250 /* search typedefs in parent's nodes */
251 *node = start_node;
252 while (*node) {
253 *tpdf = lysp_type_match(name, *node);
254 if (*tpdf) {
255 /* match */
256 return LY_SUCCESS;
257 }
258 *node = (*node)->parent;
259 }
260 }
261
Michal Vasko915e5442021-06-08 14:59:21 +0200262 /* go to main module if in submodule */
263 local_module = local_module->mod->parsed;
264
Radek Krejcibbe09a92018-11-08 09:36:54 +0100265 /* search in top-level typedefs */
Michal Vaskoa99b3572021-02-01 11:54:58 +0100266 if (local_module->typedefs) {
267 LY_ARRAY_FOR(local_module->typedefs, u) {
268 if (!strcmp(name, local_module->typedefs[u].name)) {
Radek Krejcibbe09a92018-11-08 09:36:54 +0100269 /* match */
Michal Vaskoa99b3572021-02-01 11:54:58 +0100270 *tpdf = &local_module->typedefs[u];
Radek Krejcibbe09a92018-11-08 09:36:54 +0100271 return LY_SUCCESS;
272 }
273 }
274 }
275
Michal Vasko915e5442021-06-08 14:59:21 +0200276 /* search in all submodules' typedefs */
Michal Vaskoa99b3572021-02-01 11:54:58 +0100277 LY_ARRAY_FOR(local_module->includes, u) {
278 typedefs = local_module->includes[u].submodule->typedefs;
Radek Krejci76b3e962018-12-14 17:01:25 +0100279 LY_ARRAY_FOR(typedefs, v) {
280 if (!strcmp(name, typedefs[v].name)) {
281 /* match */
282 *tpdf = &typedefs[v];
283 return LY_SUCCESS;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100284 }
285 }
286 }
287
288 return LY_ENOTFOUND;
289}
290
David Sedlák6544c182019-07-12 13:17:33 +0200291LY_ERR
David Sedlák07869a52019-07-12 14:28:19 +0200292lysp_check_enum_name(struct lys_parser_ctx *ctx, const char *name, size_t name_len)
David Sedlák6544c182019-07-12 13:17:33 +0200293{
294 if (!name_len) {
295 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Enum name must not be zero-length.");
296 return LY_EVALID;
297 } else if (isspace(name[0]) || isspace(name[name_len - 1])) {
298 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Enum name must not have any leading or trailing whitespaces (\"%.*s\").",
Radek Krejci422afb12021-03-04 16:38:16 +0100299 (int)name_len, name);
David Sedlák6544c182019-07-12 13:17:33 +0200300 return LY_EVALID;
301 } else {
302 for (size_t u = 0; u < name_len; ++u) {
303 if (iscntrl(name[u])) {
Michal Vaskob36053d2020-03-26 15:49:30 +0100304 LOGWRN(PARSER_CTX(ctx), "Control characters in enum name should be avoided (\"%.*s\", character number %d).",
Radek Krejci422afb12021-03-04 16:38:16 +0100305 (int)name_len, name, u + 1);
David Sedlák6544c182019-07-12 13:17:33 +0200306 break;
307 }
308 }
309 }
310
311 return LY_SUCCESS;
312}
313
Michal Vaskob36053d2020-03-26 15:49:30 +0100314/**
aPiecekdc12b9f2021-06-25 10:55:47 +0200315 * @brief Insert @p name to hash table and if @p name has already
316 * been added, then log an error.
317 *
318 * This function is used to detect duplicate names.
319 *
320 * @param[in,out] ctx Context to log the error.
321 * @param[in,out] ht Hash table with top-level names.
322 * @param[in] name Inserted top-level identifier.
323 * @param[in] statement The name of the statement type from which
324 * @p name originated (eg typedef, feature, ...).
325 * @param[in] err_detail Optional error specification.
326 * @return LY_ERR, but LY_EEXIST is mapped to LY_EVALID.
327 */
328static LY_ERR
329lysp_check_dup_ht_insert(struct lys_parser_ctx *ctx, struct hash_table *ht,
330 const char *name, const char *statement, const char *err_detail)
331{
332 LY_ERR ret;
333 uint32_t hash;
334
335 hash = dict_hash(name, strlen(name));
336 ret = lyht_insert(ht, &name, hash, NULL);
337 if (ret == LY_EEXIST) {
338 if (err_detail) {
339 LOGVAL_PARSER(ctx, LY_VCODE_DUPIDENT2, name, statement, err_detail);
340 } else {
341 LOGVAL_PARSER(ctx, LY_VCODE_DUPIDENT, name, statement);
342 }
343 ret = LY_EVALID;
344 }
345
346 return ret;
347}
348
349/**
Radek Krejcibbe09a92018-11-08 09:36:54 +0100350 * @brief Check name of a new type to avoid name collisions.
351 *
352 * @param[in] ctx Parser context, module where the type is being defined is taken from here.
353 * @param[in] node Schema node where the type is being defined, NULL in case of a top-level typedef.
354 * @param[in] tpdf Typedef definition to check.
355 * @param[in,out] tpdfs_global Initialized hash table to store temporary data between calls. When the module's
356 * typedefs are checked, caller is supposed to free the table.
357 * @param[in,out] tpdfs_global Initialized hash table to store temporary data between calls. When the module's
358 * typedefs are checked, caller is supposed to free the table.
359 * @return LY_EEXIST in case of collision, LY_SUCCESS otherwise.
360 */
361static LY_ERR
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100362lysp_check_dup_typedef(struct lys_parser_ctx *ctx, struct lysp_node *node, const struct lysp_tpdf *tpdf,
Radek Krejci0f969882020-08-21 16:56:47 +0200363 struct hash_table *tpdfs_global, struct hash_table *tpdfs_scoped)
Radek Krejcibbe09a92018-11-08 09:36:54 +0100364{
Michal Vasko6adfce62021-06-16 11:57:13 +0200365 LY_ERR ret;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100366 struct lysp_node *parent;
367 uint32_t hash;
368 size_t name_len;
369 const char *name;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200370 LY_ARRAY_COUNT_TYPE u;
Radek Krejci0fb28562018-12-13 15:17:37 +0100371 const struct lysp_tpdf *typedefs;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100372
373 assert(ctx);
374 assert(tpdf);
375
376 name = tpdf->name;
377 name_len = strlen(name);
378
Radek Krejci4f28eda2018-11-12 11:46:16 +0100379 if (lysp_type_str2builtin(name, name_len)) {
Michal Vaskob36053d2020-03-26 15:49:30 +0100380 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Invalid name \"%s\" of typedef - name collision with a built-in type.", name);
Radek Krejci4f28eda2018-11-12 11:46:16 +0100381 return LY_EEXIST;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100382 }
383
384 /* check locally scoped typedefs (avoid name shadowing) */
385 if (node) {
Radek Krejci0fb28562018-12-13 15:17:37 +0100386 typedefs = lysp_node_typedefs(node);
387 LY_ARRAY_FOR(typedefs, u) {
388 if (&typedefs[u] == tpdf) {
389 break;
390 }
391 if (!strcmp(name, typedefs[u].name)) {
Michal Vaskob36053d2020-03-26 15:49:30 +0100392 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Invalid name \"%s\" of typedef - name collision with sibling type.", name);
Radek Krejci0fb28562018-12-13 15:17:37 +0100393 return LY_EEXIST;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100394 }
395 }
396 /* search typedefs in parent's nodes */
Radek Krejci87e78ca2019-05-02 09:51:29 +0200397 for (parent = node->parent; parent; parent = parent->parent) {
Radek Krejcibbe09a92018-11-08 09:36:54 +0100398 if (lysp_type_match(name, parent)) {
Michal Vaskob36053d2020-03-26 15:49:30 +0100399 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Invalid name \"%s\" of typedef - name collision with another scoped type.", name);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100400 return LY_EEXIST;
401 }
402 }
403 }
404
405 /* check collision with the top-level typedefs */
406 hash = dict_hash(name, name_len);
407 if (node) {
Michal Vasko6adfce62021-06-16 11:57:13 +0200408 ret = lyht_insert(tpdfs_scoped, &name, hash, NULL);
409 LY_CHECK_ERR_RET(ret && (ret != LY_EEXIST), LOGINT(PARSER_CTX(ctx)), LY_EINT);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100410 if (!lyht_find(tpdfs_global, &name, hash, NULL)) {
Michal Vaskob36053d2020-03-26 15:49:30 +0100411 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Invalid name \"%s\" of typedef - scoped type collide with a top-level type.", name);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100412 return LY_EEXIST;
413 }
414 } else {
415 if (lyht_insert(tpdfs_global, &name, hash, NULL)) {
Michal Vaskob36053d2020-03-26 15:49:30 +0100416 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Invalid name \"%s\" of typedef - name collision with another top-level type.", name);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100417 return LY_EEXIST;
418 }
Radek Krejci3b1f9292018-11-08 10:58:35 +0100419 /* it is not necessary to test collision with the scoped types - in lysp_check_typedefs, all the
420 * top-level typedefs are inserted into the tables before the scoped typedefs, so the collision
421 * is detected in the first branch few lines above */
Radek Krejcibbe09a92018-11-08 09:36:54 +0100422 }
423
424 return LY_SUCCESS;
425}
426
Radek Krejci857189e2020-09-01 13:26:36 +0200427/**
428 * @brief Compare identifiers.
Michal Vasko62524a92021-02-26 10:08:50 +0100429 * Implementation of ::lyht_value_equal_cb.
Radek Krejci857189e2020-09-01 13:26:36 +0200430 */
431static ly_bool
432lysp_id_cmp(void *val1, void *val2, ly_bool UNUSED(mod), void *UNUSED(cb_data))
Radek Krejcibbe09a92018-11-08 09:36:54 +0100433{
Radek Krejci1deb5be2020-08-26 16:43:36 +0200434 return strcmp(val1, val2) == 0 ? 1 : 0;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100435}
436
437LY_ERR
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100438lysp_check_dup_typedefs(struct lys_parser_ctx *ctx, struct lysp_module *mod)
Radek Krejcibbe09a92018-11-08 09:36:54 +0100439{
440 struct hash_table *ids_global;
441 struct hash_table *ids_scoped;
Radek Krejci0fb28562018-12-13 15:17:37 +0100442 const struct lysp_tpdf *typedefs;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200443 LY_ARRAY_COUNT_TYPE u, v;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200444 uint32_t i;
Michal Vasko405cc9e2020-12-01 12:01:27 +0100445 LY_ERR ret = LY_SUCCESS;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100446
447 /* check name collisions - typedefs and groupings */
Radek Krejcif13b87b2020-12-01 22:02:17 +0100448 ids_global = lyht_new(LYHT_MIN_SIZE, sizeof(char *), lysp_id_cmp, NULL, 1);
449 ids_scoped = lyht_new(LYHT_MIN_SIZE, sizeof(char *), lysp_id_cmp, NULL, 1);
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200450 LY_ARRAY_FOR(mod->typedefs, v) {
Michal Vasko405cc9e2020-12-01 12:01:27 +0100451 ret = lysp_check_dup_typedef(ctx, NULL, &mod->typedefs[v], ids_global, ids_scoped);
452 LY_CHECK_GOTO(ret, cleanup);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100453 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200454 LY_ARRAY_FOR(mod->includes, v) {
455 LY_ARRAY_FOR(mod->includes[v].submodule->typedefs, u) {
Michal Vasko405cc9e2020-12-01 12:01:27 +0100456 ret = lysp_check_dup_typedef(ctx, NULL, &mod->includes[v].submodule->typedefs[u], ids_global, ids_scoped);
457 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci3b1f9292018-11-08 10:58:35 +0100458 }
459 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200460 for (i = 0; i < ctx->tpdfs_nodes.count; ++i) {
461 typedefs = lysp_node_typedefs((struct lysp_node *)ctx->tpdfs_nodes.objs[i]);
462 LY_ARRAY_FOR(typedefs, u) {
Michal Vasko405cc9e2020-12-01 12:01:27 +0100463 ret = lysp_check_dup_typedef(ctx, (struct lysp_node *)ctx->tpdfs_nodes.objs[i], &typedefs[u], ids_global, ids_scoped);
464 LY_CHECK_GOTO(ret, cleanup);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100465 }
466 }
Michal Vasko405cc9e2020-12-01 12:01:27 +0100467
Radek Krejcibbe09a92018-11-08 09:36:54 +0100468cleanup:
469 lyht_free(ids_global);
470 lyht_free(ids_scoped);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100471 return ret;
472}
473
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100474static ly_bool
475ly_ptrequal_cb(void *val1_p, void *val2_p, ly_bool UNUSED(mod), void *UNUSED(cb_data))
476{
477 void *ptr1 = *((void **)val1_p), *ptr2 = *((void **)val2_p);
478
479 return ptr1 == ptr2 ? 1 : 0;
480}
481
482LY_ERR
483lysp_check_dup_features(struct lys_parser_ctx *ctx, struct lysp_module *mod)
484{
485 LY_ARRAY_COUNT_TYPE u;
486 struct hash_table *ht;
487 struct lysp_feature *f;
aPiecekdc12b9f2021-06-25 10:55:47 +0200488 LY_ERR ret = LY_SUCCESS;
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100489
490 ht = lyht_new(1, sizeof(void *), ly_ptrequal_cb, NULL, 1);
491 LY_CHECK_RET(!ht, LY_EMEM);
492
493 /* add all module features into a hash table */
494 LY_ARRAY_FOR(mod->features, struct lysp_feature, f) {
aPiecekdc12b9f2021-06-25 10:55:47 +0200495 ret = lysp_check_dup_ht_insert(ctx, ht, f->name, "feature", NULL);
496 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100497 }
498
499 /* add all submodule features into a hash table */
500 LY_ARRAY_FOR(mod->includes, u) {
501 LY_ARRAY_FOR(mod->includes[u].submodule->features, struct lysp_feature, f) {
aPiecekdc12b9f2021-06-25 10:55:47 +0200502 ret = lysp_check_dup_ht_insert(ctx, ht, f->name, "feature", NULL);
503 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100504 }
505 }
506
507cleanup:
508 lyht_free(ht);
509 return ret;
510}
511
512LY_ERR
513lysp_check_dup_identities(struct lys_parser_ctx *ctx, struct lysp_module *mod)
514{
515 LY_ARRAY_COUNT_TYPE u;
516 struct hash_table *ht;
517 struct lysp_ident *i;
aPiecekdc12b9f2021-06-25 10:55:47 +0200518 LY_ERR ret = LY_SUCCESS;
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100519
520 ht = lyht_new(1, sizeof(void *), ly_ptrequal_cb, NULL, 1);
521 LY_CHECK_RET(!ht, LY_EMEM);
522
523 /* add all module identities into a hash table */
524 LY_ARRAY_FOR(mod->identities, struct lysp_ident, i) {
aPiecekdc12b9f2021-06-25 10:55:47 +0200525 ret = lysp_check_dup_ht_insert(ctx, ht, i->name, "identity", NULL);
526 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100527 }
528
529 /* add all submodule identities into a hash table */
530 LY_ARRAY_FOR(mod->includes, u) {
531 LY_ARRAY_FOR(mod->includes[u].submodule->identities, struct lysp_ident, i) {
aPiecekdc12b9f2021-06-25 10:55:47 +0200532 ret = lysp_check_dup_ht_insert(ctx, ht, i->name, "identity", NULL);
533 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100534 }
535 }
536
537cleanup:
538 lyht_free(ht);
539 return ret;
540}
541
Radek Krejci9ed7a192018-10-31 16:23:51 +0100542struct lysp_load_module_check_data {
543 const char *name;
544 const char *revision;
545 const char *path;
Michal Vasko22df3f02020-08-24 13:29:22 +0200546 const char *submoduleof;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100547};
548
549static LY_ERR
Michal Vaskob36053d2020-03-26 15:49:30 +0100550lysp_load_module_check(const struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *data)
Radek Krejci9ed7a192018-10-31 16:23:51 +0100551{
552 struct lysp_load_module_check_data *info = data;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100553 const char *filename, *dot, *rev, *name;
Radek Krejcib3289d62019-09-18 12:21:39 +0200554 uint8_t latest_revision;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100555 size_t len;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100556 struct lysp_revision *revs;
557
558 name = mod ? mod->mod->name : submod->name;
559 revs = mod ? mod->revs : submod->revs;
Radek Krejcib3289d62019-09-18 12:21:39 +0200560 latest_revision = mod ? mod->mod->latest_revision : submod->latest_revision;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100561
562 if (info->name) {
563 /* check name of the parsed model */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100564 if (strcmp(info->name, name)) {
565 LOGERR(ctx, LY_EINVAL, "Unexpected module \"%s\" parsed instead of \"%s\").", name, info->name);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100566 return LY_EINVAL;
567 }
568 }
569 if (info->revision) {
570 /* check revision of the parsed model */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100571 if (!revs || strcmp(info->revision, revs[0].date)) {
572 LOGERR(ctx, LY_EINVAL, "Module \"%s\" parsed with the wrong revision (\"%s\" instead \"%s\").", name,
Michal Vasko69730152020-10-09 16:30:07 +0200573 revs ? revs[0].date : "none", info->revision);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100574 return LY_EINVAL;
575 }
Radek Krejcib3289d62019-09-18 12:21:39 +0200576 } else if (!latest_revision) {
577 /* do not log, we just need to drop the schema and use the latest revision from the context */
578 return LY_EEXIST;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100579 }
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100580 if (submod) {
581 assert(info->submoduleof);
582
Radek Krejci9ed7a192018-10-31 16:23:51 +0100583 /* check that the submodule belongs-to our module */
Michal Vaskoc3781c32020-10-06 14:04:08 +0200584 if (strcmp(info->submoduleof, submod->mod->name)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100585 LOGVAL(ctx, LYVE_REFERENCE, "Included \"%s\" submodule from \"%s\" belongs-to a different module \"%s\".",
Michal Vasko69730152020-10-09 16:30:07 +0200586 submod->name, info->submoduleof, submod->mod->name);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100587 return LY_EVALID;
588 }
589 /* check circular dependency */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100590 if (submod->parsing) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100591 LOGVAL(ctx, LYVE_REFERENCE, "A circular dependency (include) for module \"%s\".", submod->name);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100592 return LY_EVALID;
593 }
594 }
595 if (info->path) {
596 /* check that name and revision match filename */
597 filename = strrchr(info->path, '/');
598 if (!filename) {
599 filename = info->path;
600 } else {
601 filename++;
602 }
603 /* name */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100604 len = strlen(name);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100605 rev = strchr(filename, '@');
606 dot = strrchr(info->path, '.');
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100607 if (strncmp(filename, name, len) ||
Michal Vasko69730152020-10-09 16:30:07 +0200608 ((rev && (rev != &filename[len])) || (!rev && (dot != &filename[len])))) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100609 LOGWRN(ctx, "File name \"%s\" does not match module name \"%s\".", filename, name);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100610 }
611 /* revision */
612 if (rev) {
613 len = dot - ++rev;
Radek Krejcif13b87b2020-12-01 22:02:17 +0100614 if (!revs || (len != LY_REV_SIZE - 1) || strncmp(revs[0].date, rev, len)) {
Radek Krejci9ed7a192018-10-31 16:23:51 +0100615 LOGWRN(ctx, "File name \"%s\" does not match module revision \"%s\".", filename,
Michal Vasko69730152020-10-09 16:30:07 +0200616 revs ? revs[0].date : "none");
Radek Krejci9ed7a192018-10-31 16:23:51 +0100617 }
618 }
619 }
620 return LY_SUCCESS;
621}
622
Michal Vaskoe7a1daf2021-04-19 18:04:27 +0200623/**
Michal Vasko4e205e82021-06-08 14:01:47 +0200624 * @brief Parse a (sub)module from a local file and add into the context.
Michal Vaskoe7a1daf2021-04-19 18:04:27 +0200625 *
626 * This function does not check the presence of the (sub)module in context, it should be done before calling this function.
627 *
Michal Vaskoe7a1daf2021-04-19 18:04:27 +0200628 * @param[in] ctx libyang context where to work.
629 * @param[in] name Name of the (sub)module to load.
630 * @param[in] revision Optional revision of the (sub)module to load, if NULL the newest revision is being loaded.
Michal Vaskoe7a1daf2021-04-19 18:04:27 +0200631 * @param[in] main_ctx Parser context of the main module in case of loading submodule.
632 * @param[in] main_name Main module name in case of loading submodule.
633 * @param[in] required Module is required so error (even if the input file not found) are important. If 0, there is some
634 * backup and it is actually ok if the input data are not found. However, parser reports errors even in this case.
Michal Vaskodd992582021-06-10 14:34:57 +0200635 * @param[in,out] new_mods Set of all the new mods added to the context. Includes this module and all of its imports.
Michal Vaskoe7a1daf2021-04-19 18:04:27 +0200636 * @param[out] result Parsed YANG schema tree of the requested module (struct lys_module*) or submodule (struct lysp_submodule*).
637 * If it is a module, it is already in the context!
Michal Vasko4e205e82021-06-08 14:01:47 +0200638 * @return LY_SUCCESS on success.
Michal Vasko4e205e82021-06-08 14:01:47 +0200639 * @return LY_ERR on error.
Michal Vaskoe7a1daf2021-04-19 18:04:27 +0200640 */
641static LY_ERR
Michal Vasko4e205e82021-06-08 14:01:47 +0200642lys_parse_localfile(struct ly_ctx *ctx, const char *name, const char *revision, struct lys_parser_ctx *main_ctx,
Michal Vaskodd992582021-06-10 14:34:57 +0200643 const char *main_name, ly_bool required, struct ly_set *new_mods, void **result)
Radek Krejci9ed7a192018-10-31 16:23:51 +0100644{
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200645 struct ly_in *in;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100646 char *filepath = NULL;
647 LYS_INFORMAT format;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100648 void *mod = NULL;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100649 LY_ERR ret = LY_SUCCESS;
650 struct lysp_load_module_check_data check_data = {0};
651
Michal Vasko87f1cf02021-06-08 14:02:47 +0200652 LY_CHECK_RET(lys_search_localfile(ly_ctx_get_searchdirs(ctx), !(ctx->flags & LY_CTX_DISABLE_SEARCHDIR_CWD), name,
653 revision, &filepath, &format));
Michal Vasko3a41dff2020-07-15 14:30:28 +0200654 if (!filepath) {
655 if (required) {
656 LOGERR(ctx, LY_ENOTFOUND, "Data model \"%s%s%s\" not found in local searchdirs.", name, revision ? "@" : "",
Michal Vasko69730152020-10-09 16:30:07 +0200657 revision ? revision : "");
Michal Vasko3a41dff2020-07-15 14:30:28 +0200658 }
659 return LY_ENOTFOUND;
660 }
Radek Krejci9ed7a192018-10-31 16:23:51 +0100661
662 LOGVRB("Loading schema from \"%s\" file.", filepath);
663
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200664 /* get the (sub)module */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200665 LY_CHECK_ERR_GOTO(ret = ly_in_new_filepath(filepath, 0, &in),
Michal Vasko69730152020-10-09 16:30:07 +0200666 LOGERR(ctx, ret, "Unable to create input handler for filepath %s.", filepath), cleanup);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100667 check_data.name = name;
668 check_data.revision = revision;
669 check_data.path = filepath;
fredgancd485b82019-10-18 15:00:17 +0800670 check_data.submoduleof = main_name;
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200671 if (main_ctx) {
aPiecekc3e26142021-06-22 14:25:49 +0200672 ret = lys_parse_submodule(ctx, in, format, main_ctx, lysp_load_module_check, &check_data, new_mods,
Michal Vasko69730152020-10-09 16:30:07 +0200673 (struct lysp_submodule **)&mod);
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200674 } else {
Michal Vaskodd992582021-06-10 14:34:57 +0200675 ret = lys_parse_in(ctx, in, format, lysp_load_module_check, &check_data, new_mods, (struct lys_module **)&mod);
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200676
677 }
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200678 ly_in_free(in, 1);
Michal Vasko7a0b0762020-09-02 16:37:01 +0200679 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100680
681 *result = mod;
682
683 /* success */
Michal Vasko7a0b0762020-09-02 16:37:01 +0200684
Radek Krejci9ed7a192018-10-31 16:23:51 +0100685cleanup:
686 free(filepath);
687 return ret;
688}
689
Radek Krejcid33273d2018-10-25 14:55:52 +0200690LY_ERR
Michal Vaskodd992582021-06-10 14:34:57 +0200691lys_parse_load(struct ly_ctx *ctx, const char *name, const char *revision, struct ly_set *new_mods,
Michal Vasko4e205e82021-06-08 14:01:47 +0200692 struct lys_module **mod)
Radek Krejci086c7132018-10-26 15:29:04 +0200693{
Radek Krejci9ed7a192018-10-31 16:23:51 +0100694 const char *module_data = NULL;
Radek Krejci086c7132018-10-26 15:29:04 +0200695 LYS_INFORMAT format = LYS_IN_UNKNOWN;
Michal Vasko69730152020-10-09 16:30:07 +0200696
Radek Krejci9ed7a192018-10-31 16:23:51 +0100697 void (*module_data_free)(void *module_data, void *user_data) = NULL;
698 struct lysp_load_module_check_data check_data = {0};
Michal Vasko4e205e82021-06-08 14:01:47 +0200699 struct lys_module *ctx_latest = NULL;
Michal Vasko63f3d842020-07-08 10:10:14 +0200700 struct ly_in *in;
Radek Krejci086c7132018-10-26 15:29:04 +0200701
Michal Vaskodd992582021-06-10 14:34:57 +0200702 assert(mod && new_mods);
Radek Krejci0af46292019-01-11 16:02:31 +0100703
Michal Vasko0550b762020-11-24 18:04:08 +0100704 /*
705 * try to get the module from the context
706 */
Radek Krejci0af46292019-01-11 16:02:31 +0100707 if (!*mod) {
Radek Krejci0af46292019-01-11 16:02:31 +0100708 if (revision) {
Radek Krejcied5acc52019-04-25 15:57:04 +0200709 /* get the specific revision */
Michal Vasko22df3f02020-08-24 13:29:22 +0200710 *mod = (struct lys_module *)ly_ctx_get_module(ctx, name, revision);
Radek Krejci0af46292019-01-11 16:02:31 +0100711 } else {
Michal Vasko4e205e82021-06-08 14:01:47 +0200712 /* get the requested module of the latest revision in the context */
713 *mod = (struct lys_module *)ly_ctx_get_module_latest(ctx, name);
714 if (*mod && ((*mod)->latest_revision == 1)) {
715 /* let us now search with callback and searchpaths to check if there is newer revision outside the context */
716 ctx_latest = *mod;
717 *mod = NULL;
Radek Krejcib3289d62019-09-18 12:21:39 +0200718 }
Radek Krejci0af46292019-01-11 16:02:31 +0100719 }
Radek Krejci086c7132018-10-26 15:29:04 +0200720 }
721
Michal Vasko4e205e82021-06-08 14:01:47 +0200722 /* we have module from the current context, circular check */
723 if (*mod && (*mod)->parsed->parsing) {
724 LOGVAL(ctx, LYVE_REFERENCE, "A circular dependency (import) for module \"%s\".", name);
725 *mod = NULL;
726 return LY_EVALID;
Michal Vasko0550b762020-11-24 18:04:08 +0100727 }
Radek Krejci086c7132018-10-26 15:29:04 +0200728
Michal Vasko0550b762020-11-24 18:04:08 +0100729 /*
730 * no suitable module in the context, try to load it
731 */
732 if (!*mod) {
Radek Krejci9ed7a192018-10-31 16:23:51 +0100733 /* module not present in the context, get the input data and parse it */
Radek Krejci086c7132018-10-26 15:29:04 +0200734 if (!(ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) {
735search_clb:
Michal Vasko87f1cf02021-06-08 14:02:47 +0200736 if (ctx->imp_clb && !ctx->imp_clb(name, revision, NULL, NULL, ctx->imp_clb_data, &format, &module_data,
737 &module_data_free)) {
738 LY_CHECK_RET(ly_in_new_memory(module_data, &in));
739 check_data.name = name;
740 check_data.revision = revision;
Michal Vaskodd992582021-06-10 14:34:57 +0200741 lys_parse_in(ctx, in, format, lysp_load_module_check, &check_data, new_mods, mod);
Michal Vasko87f1cf02021-06-08 14:02:47 +0200742 ly_in_free(in, 0);
743 if (module_data_free) {
744 module_data_free((void *)module_data, ctx->imp_clb_data);
Radek Krejci086c7132018-10-26 15:29:04 +0200745 }
746 }
747 if (!(*mod) && !(ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) {
748 goto search_file;
749 }
750 } else {
751search_file:
752 if (!(ctx->flags & LY_CTX_DISABLE_SEARCHDIRS)) {
753 /* module was not received from the callback or there is no callback set */
Michal Vaskodd992582021-06-10 14:34:57 +0200754 lys_parse_localfile(ctx, name, revision, NULL, NULL, ctx_latest ? 0 : 1, new_mods, (void **)mod);
Radek Krejci086c7132018-10-26 15:29:04 +0200755 }
Michal Vasko0550b762020-11-24 18:04:08 +0100756 if (!*mod && (ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) {
Radek Krejci086c7132018-10-26 15:29:04 +0200757 goto search_clb;
758 }
759 }
Radek Krejci9ed7a192018-10-31 16:23:51 +0100760
Radek Krejcib3289d62019-09-18 12:21:39 +0200761 /* update the latest_revision flag - here we have selected the latest available schema,
762 * consider that even the callback provides correct latest revision */
Michal Vasko0550b762020-11-24 18:04:08 +0100763 if (!*mod && ctx_latest) {
Michal Vasko003c44a2021-02-24 17:13:11 +0100764 LOGVRB("Newer revision than \"%s@%s\" not found, using this as the latest revision.", ctx_latest->name,
Michal Vasko0550b762020-11-24 18:04:08 +0100765 ctx_latest->revision);
766 ctx_latest->latest_revision = 2;
767 *mod = ctx_latest;
768 } else if (*mod && !revision && ((*mod)->latest_revision == 1)) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100769 (*mod)->latest_revision = 2;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100770 }
Radek Krejci086c7132018-10-26 15:29:04 +0200771
Michal Vasko0550b762020-11-24 18:04:08 +0100772 if (!*mod) {
Michal Vasko4e205e82021-06-08 14:01:47 +0200773 LOGVAL(ctx, LYVE_REFERENCE, "Loading \"%s\" module failed.", name);
Michal Vasko0550b762020-11-24 18:04:08 +0100774 return LY_EVALID;
775 }
Radek Krejci086c7132018-10-26 15:29:04 +0200776 }
Radek Krejci086c7132018-10-26 15:29:04 +0200777
778 return LY_SUCCESS;
779}
780
781LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200782lysp_check_stringchar(struct lys_parser_ctx *ctx, uint32_t c)
David Sedlák4a650532019-07-10 11:55:18 +0200783{
784 if (!is_yangutf8char(c)) {
785 LOGVAL_PARSER(ctx, LY_VCODE_INCHAR, c);
786 return LY_EVALID;
787 }
788 return LY_SUCCESS;
789}
790
791LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +0200792lysp_check_identifierchar(struct lys_parser_ctx *ctx, uint32_t c, ly_bool first, uint8_t *prefix)
David Sedlák4a650532019-07-10 11:55:18 +0200793{
Michal Vasko69730152020-10-09 16:30:07 +0200794 if (first || (prefix && ((*prefix) == 1))) {
David Sedlák4a650532019-07-10 11:55:18 +0200795 if (!is_yangidentstartchar(c)) {
aPiecekc89b2242021-05-14 14:19:11 +0200796 if ((c < UCHAR_MAX) && isprint(c)) {
Michal Vasko7c769042021-03-25 12:20:49 +0100797 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Invalid identifier first character '%c' (0x%04x).", (char)c, c);
798 } else {
799 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Invalid identifier first character 0x%04x.", c);
800 }
David Sedlák4a650532019-07-10 11:55:18 +0200801 return LY_EVALID;
802 }
803 if (prefix) {
804 if (first) {
805 (*prefix) = 0;
806 } else {
807 (*prefix) = 2;
808 }
809 }
Michal Vasko69730152020-10-09 16:30:07 +0200810 } else if ((c == ':') && prefix && ((*prefix) == 0)) {
David Sedlák4a650532019-07-10 11:55:18 +0200811 (*prefix) = 1;
812 } else if (!is_yangidentchar(c)) {
Radek Krejci1deb5be2020-08-26 16:43:36 +0200813 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Invalid identifier character '%c' (0x%04x).", (char)c, c);
David Sedlák4a650532019-07-10 11:55:18 +0200814 return LY_EVALID;
815 }
816
817 return LY_SUCCESS;
818}
819
Radek Krejci771928a2021-01-19 13:42:36 +0100820/**
821 * @brief Try to find the parsed submodule in main module for the given include record.
822 *
823 * @param[in] pctx main parser context
824 * @param[in] inc The include record with missing parsed submodule. According to include info try to find
825 * the corresponding parsed submodule in main module's includes.
826 * @return LY_SUCCESS - the parsed submodule was found and inserted into the @p inc record
827 * @return LY_ENOT - the parsed module was not found.
828 * @return LY_EVALID - YANG rule violation
829 */
830static LY_ERR
831lysp_get_submodule(struct lys_parser_ctx *pctx, struct lysp_include *inc)
Radek Krejcid33273d2018-10-25 14:55:52 +0200832{
Radek Krejci771928a2021-01-19 13:42:36 +0100833 LY_ARRAY_COUNT_TYPE i;
834 struct lysp_module *main_pmod = pctx->parsed_mod->mod->parsed;
Michal Vasko69730152020-10-09 16:30:07 +0200835
Radek Krejci771928a2021-01-19 13:42:36 +0100836 LY_ARRAY_FOR(main_pmod->includes, i) {
837 if (strcmp(main_pmod->includes[i].name, inc->name)) {
838 continue;
839 }
Radek Krejcid33273d2018-10-25 14:55:52 +0200840
Radek Krejci771928a2021-01-19 13:42:36 +0100841 if (inc->rev[0] && strncmp(inc->rev, main_pmod->includes[i].rev, LY_REV_SIZE)) {
842 LOGVAL(PARSER_CTX(pctx), LYVE_REFERENCE,
843 "Submodule %s includes different revision (%s) of the submodule %s:%s included by the main module %s.",
844 ((struct lysp_submodule *)pctx->parsed_mod)->name, inc->rev,
845 main_pmod->includes[i].name, main_pmod->includes[i].rev, main_pmod->mod->name);
846 return LY_EVALID;
847 }
848
849 inc->submodule = main_pmod->includes[i].submodule;
850 return inc->submodule ? LY_SUCCESS : LY_ENOT;
851 }
852
853 if (main_pmod->version == LYS_VERSION_1_1) {
854 LOGVAL(PARSER_CTX(pctx), LYVE_REFERENCE,
855 "YANG 1.1 requires all submodules to be included from main module. "
856 "But submodule \"%s\" includes submodule \"%s\" which is not included by main module \"%s\".",
857 ((struct lysp_submodule *)pctx->parsed_mod)->name, inc->name, main_pmod->mod->name);
858 return LY_EVALID;
859 } else {
860 return LY_ENOT;
861 }
862}
863
864/**
865 * @brief Make the copy of the given include record into the main module.
866 *
867 * YANG 1.0 does not require the main module to include all the submodules. Therefore, parsing submodules can cause
868 * reallocating and extending the includes array in the main module by the submodules included only in submodules.
869 *
870 * @param[in] pctx main parser context
871 * @param[in] inc Include record to copy into main module taken from @p pctx.
872 * @return LY_ERR value.
873 */
874static LY_ERR
875lysp_inject_submodule(struct lys_parser_ctx *pctx, struct lysp_include *inc)
876{
877 LY_ARRAY_COUNT_TYPE i;
878 struct lysp_include *inc_new, *inc_tofill = NULL;
879 struct lysp_module *main_pmod = pctx->parsed_mod->mod->parsed;
880
881 /* first, try to find the corresponding record with missing parsed submodule */
882 LY_ARRAY_FOR(main_pmod->includes, i) {
883 if (strcmp(main_pmod->includes[i].name, inc->name)) {
884 continue;
885 }
886 inc_tofill = &main_pmod->includes[i];
887 break;
888 }
889
890 if (inc_tofill) {
891 inc_tofill->submodule = inc->submodule;
892 } else {
893 LY_ARRAY_NEW_RET(PARSER_CTX(pctx), main_pmod->includes, inc_new, LY_EMEM);
894
895 inc_new->submodule = inc->submodule;
896 DUP_STRING_RET(PARSER_CTX(pctx), inc->name, inc_new->name);
897 DUP_STRING_RET(PARSER_CTX(pctx), inc->dsc, inc_new->dsc);
898 DUP_STRING_RET(PARSER_CTX(pctx), inc->ref, inc_new->ref);
899 /* TODO duplicate extensions */
900 memcpy(inc_new->rev, inc->rev, LY_REV_SIZE);
901 inc_new->injected = 1;
902 }
903 return LY_SUCCESS;
904}
905
906LY_ERR
aPiecekc3e26142021-06-22 14:25:49 +0200907lysp_load_submodules(struct lys_parser_ctx *pctx, struct lysp_module *pmod, struct ly_set *new_mods)
Radek Krejci771928a2021-01-19 13:42:36 +0100908{
909 LY_ARRAY_COUNT_TYPE u;
910 struct ly_ctx *ctx = PARSER_CTX(pctx);
911
912 LY_ARRAY_FOR(pmod->includes, u) {
913 LY_ERR ret = LY_SUCCESS;
914 struct lysp_submodule *submod = NULL;
915 struct lysp_include *inc = &pmod->includes[u];
916
917 if (inc->submodule) {
918 continue;
919 }
920
921 if (pmod->is_submod) {
922 /* try to find the submodule in the main module or its submodules */
923 ret = lysp_get_submodule(pctx, inc);
924 LY_CHECK_RET(ret && ret != LY_ENOT, ret);
925 LY_CHECK_RET(ret == LY_SUCCESS, LY_SUCCESS); /* submodule found in linked with the inc */
926 }
927
928 /* submodule not present in the main module, get the input data and parse it */
929 if (!(ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) {
Radek Krejcidf549132021-01-21 10:32:32 +0100930search_clb:
Radek Krejci771928a2021-01-19 13:42:36 +0100931 if (ctx->imp_clb) {
932 const char *submodule_data = NULL;
933 LYS_INFORMAT format = LYS_IN_UNKNOWN;
934 void (*submodule_data_free)(void *module_data, void *user_data) = NULL;
935 struct lysp_load_module_check_data check_data = {0};
936 struct ly_in *in;
937
938 if (ctx->imp_clb(pctx->parsed_mod->mod->name, NULL, inc->name,
939 inc->rev[0] ? inc->rev : NULL, ctx->imp_clb_data,
940 &format, &submodule_data, &submodule_data_free) == LY_SUCCESS) {
941 LY_CHECK_RET(ly_in_new_memory(submodule_data, &in));
942 check_data.name = inc->name;
943 check_data.revision = inc->rev[0] ? inc->rev : NULL;
944 check_data.submoduleof = pctx->parsed_mod->mod->name;
aPiecekc3e26142021-06-22 14:25:49 +0200945 lys_parse_submodule(ctx, in, format, pctx, lysp_load_module_check, &check_data, new_mods, &submod);
Radek Krejci771928a2021-01-19 13:42:36 +0100946
947 /* update inc pointer - parsing another (YANG 1.0) submodule can cause injecting
948 * submodule's include into main module, where it is missing */
949 inc = &pmod->includes[u];
950
951 ly_in_free(in, 0);
952 if (submodule_data_free) {
953 submodule_data_free((void *)submodule_data, ctx->imp_clb_data);
954 }
Radek Krejcid33273d2018-10-25 14:55:52 +0200955 }
956 }
Radek Krejci771928a2021-01-19 13:42:36 +0100957 if (!submod && !(ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) {
958 goto search_file;
959 }
960 } else {
Radek Krejcidf549132021-01-21 10:32:32 +0100961search_file:
Radek Krejci771928a2021-01-19 13:42:36 +0100962 if (!(ctx->flags & LY_CTX_DISABLE_SEARCHDIRS)) {
963 /* submodule was not received from the callback or there is no callback set */
Michal Vasko4e205e82021-06-08 14:01:47 +0200964 lys_parse_localfile(ctx, inc->name, inc->rev[0] ? inc->rev : NULL, pctx,
Radek Krejci771928a2021-01-19 13:42:36 +0100965 pctx->parsed_mod->mod->name, 1, NULL, (void **)&submod);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100966
Radek Krejci771928a2021-01-19 13:42:36 +0100967 /* update inc pointer - parsing another (YANG 1.0) submodule can cause injecting
968 * submodule's include into main module, where it is missing */
969 inc = &pmod->includes[u];
970 }
971 if (!submod && (ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) {
972 goto search_clb;
973 }
974 }
975 if (submod) {
976 if (!inc->rev[0] && (submod->latest_revision == 1)) {
977 /* update the latest_revision flag - here we have selected the latest available schema,
978 * consider that even the callback provides correct latest revision */
979 submod->latest_revision = 2;
980 }
981
982 inc->submodule = submod;
983 if (ret == LY_ENOT) {
984 /* the submodule include is not present in YANG 1.0 main module - add it there */
985 LY_CHECK_RET(lysp_inject_submodule(pctx, &pmod->includes[u]));
986 }
987 }
988 if (!inc->submodule) {
989 LOGVAL(ctx, LYVE_REFERENCE, "Including \"%s\" submodule into \"%s\" failed.", inc->name,
990 pctx->parsed_mod->is_submod ? ((struct lysp_submodule *)pctx->parsed_mod)->name : pctx->parsed_mod->mod->name);
991 return LY_EVALID;
992 }
Radek Krejcid33273d2018-10-25 14:55:52 +0200993 }
994
995 return LY_SUCCESS;
996}
997
Michal Vaskod5cfa6e2020-11-23 16:56:08 +0100998API const struct lysc_when *
999lysc_has_when(const struct lysc_node *node)
1000{
Radek Krejci9a3823e2021-01-27 20:26:46 +01001001 struct lysc_when **when;
1002
Michal Vaskod5cfa6e2020-11-23 16:56:08 +01001003 if (!node) {
1004 return NULL;
1005 }
1006
1007 do {
Radek Krejci9a3823e2021-01-27 20:26:46 +01001008 when = lysc_node_when(node);
1009 if (when) {
1010 return when[0];
Michal Vaskod5cfa6e2020-11-23 16:56:08 +01001011 }
1012 node = node->parent;
1013 } while (node && (node->nodetype & (LYS_CASE | LYS_CHOICE)));
1014
1015 return NULL;
1016}
1017
Radek Krejci0935f412019-08-20 16:15:18 +02001018API const char *
Radek Krejcia3045382018-11-22 14:30:31 +01001019lys_nodetype2str(uint16_t nodetype)
1020{
Michal Vaskod989ba02020-08-24 10:59:24 +02001021 switch (nodetype) {
Radek Krejcia3045382018-11-22 14:30:31 +01001022 case LYS_CONTAINER:
1023 return "container";
1024 case LYS_CHOICE:
1025 return "choice";
1026 case LYS_LEAF:
1027 return "leaf";
1028 case LYS_LEAFLIST:
1029 return "leaf-list";
1030 case LYS_LIST:
1031 return "list";
1032 case LYS_ANYXML:
1033 return "anyxml";
1034 case LYS_ANYDATA:
1035 return "anydata";
Radek Krejcif12a1f02019-02-11 16:42:08 +01001036 case LYS_CASE:
1037 return "case";
Michal Vasko1bf09392020-03-27 12:38:10 +01001038 case LYS_RPC:
1039 return "RPC";
Radek Krejcif538ce52019-03-05 10:46:14 +01001040 case LYS_ACTION:
Michal Vasko1bf09392020-03-27 12:38:10 +01001041 return "action";
Radek Krejcif538ce52019-03-05 10:46:14 +01001042 case LYS_NOTIF:
Michal Vaskoa3881362020-01-21 15:57:35 +01001043 return "notification";
Radek Krejcifc81ea82019-04-18 13:27:22 +02001044 case LYS_USES:
1045 return "uses";
Radek Krejcia3045382018-11-22 14:30:31 +01001046 default:
1047 return "unknown";
1048 }
1049}
1050
Radek Krejci39b7fc22021-02-26 23:29:18 +01001051API enum ly_stmt
1052lys_nodetype2stmt(uint16_t nodetype)
1053{
1054 switch (nodetype) {
1055 case LYS_CONTAINER:
1056 return LY_STMT_CONTAINER;
1057 case LYS_CHOICE:
1058 return LY_STMT_CHOICE;
1059 case LYS_LEAF:
1060 return LY_STMT_LEAF;
1061 case LYS_LEAFLIST:
1062 return LY_STMT_LEAF_LIST;
1063 case LYS_LIST:
1064 return LY_STMT_LIST;
1065 case LYS_ANYXML:
1066 return LY_STMT_ANYXML;
1067 case LYS_ANYDATA:
1068 return LY_STMT_ANYDATA;
1069 case LYS_CASE:
1070 return LY_STMT_CASE;
1071 case LYS_RPC:
1072 return LY_STMT_RPC;
1073 case LYS_ACTION:
1074 return LY_STMT_ACTION;
1075 case LYS_NOTIF:
1076 return LY_STMT_NOTIFICATION;
1077 case LYS_USES:
1078 return LY_STMT_USES;
1079 case LYS_INPUT:
1080 return LY_STMT_INPUT;
1081 case LYS_OUTPUT:
1082 return LY_STMT_OUTPUT;
1083 default:
1084 return LY_STMT_NONE;
1085 }
1086}
1087
Radek Krejci693262f2019-04-29 15:23:20 +02001088const char *
1089lys_datatype2str(LY_DATA_TYPE basetype)
1090{
Michal Vaskod989ba02020-08-24 10:59:24 +02001091 switch (basetype) {
Radek Krejci693262f2019-04-29 15:23:20 +02001092 case LY_TYPE_BINARY:
1093 return "binary";
1094 case LY_TYPE_UINT8:
1095 return "uint8";
1096 case LY_TYPE_UINT16:
1097 return "uint16";
1098 case LY_TYPE_UINT32:
1099 return "uint32";
1100 case LY_TYPE_UINT64:
1101 return "uint64";
1102 case LY_TYPE_STRING:
1103 return "string";
1104 case LY_TYPE_BITS:
1105 return "bits";
1106 case LY_TYPE_BOOL:
1107 return "boolean";
1108 case LY_TYPE_DEC64:
1109 return "decimal64";
1110 case LY_TYPE_EMPTY:
1111 return "empty";
1112 case LY_TYPE_ENUM:
1113 return "enumeration";
1114 case LY_TYPE_IDENT:
1115 return "identityref";
1116 case LY_TYPE_INST:
1117 return "instance-identifier";
1118 case LY_TYPE_LEAFREF:
1119 return "leafref";
1120 case LY_TYPE_UNION:
1121 return "union";
1122 case LY_TYPE_INT8:
1123 return "int8";
1124 case LY_TYPE_INT16:
1125 return "int16";
1126 case LY_TYPE_INT32:
1127 return "int32";
1128 case LY_TYPE_INT64:
1129 return "int64";
1130 default:
1131 return "unknown";
1132 }
1133}
1134
Radek Krejci056d0a82018-12-06 16:57:25 +01001135API const struct lysp_tpdf *
1136lysp_node_typedefs(const struct lysp_node *node)
1137{
Radek Krejci0fb28562018-12-13 15:17:37 +01001138 switch (node->nodetype) {
1139 case LYS_CONTAINER:
Michal Vasko22df3f02020-08-24 13:29:22 +02001140 return ((struct lysp_node_container *)node)->typedefs;
Radek Krejci0fb28562018-12-13 15:17:37 +01001141 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02001142 return ((struct lysp_node_list *)node)->typedefs;
Radek Krejci0fb28562018-12-13 15:17:37 +01001143 case LYS_GROUPING:
Radek Krejci2a9fc652021-01-22 17:44:34 +01001144 return ((struct lysp_node_grp *)node)->typedefs;
Michal Vasko1bf09392020-03-27 12:38:10 +01001145 case LYS_RPC:
Radek Krejci0fb28562018-12-13 15:17:37 +01001146 case LYS_ACTION:
Radek Krejci2a9fc652021-01-22 17:44:34 +01001147 return ((struct lysp_node_action *)node)->typedefs;
Michal Vasko7f45cf22020-10-01 12:49:44 +02001148 case LYS_INPUT:
1149 case LYS_OUTPUT:
Radek Krejci2a9fc652021-01-22 17:44:34 +01001150 return ((struct lysp_node_action_inout *)node)->typedefs;
Radek Krejci0fb28562018-12-13 15:17:37 +01001151 case LYS_NOTIF:
Radek Krejci2a9fc652021-01-22 17:44:34 +01001152 return ((struct lysp_node_notif *)node)->typedefs;
Radek Krejci0fb28562018-12-13 15:17:37 +01001153 default:
Radek Krejci056d0a82018-12-06 16:57:25 +01001154 return NULL;
1155 }
1156}
1157
Radek Krejci2a9fc652021-01-22 17:44:34 +01001158API const struct lysp_node_grp *
Radek Krejci53ea6152018-12-13 15:21:15 +01001159lysp_node_groupings(const struct lysp_node *node)
1160{
1161 switch (node->nodetype) {
1162 case LYS_CONTAINER:
Michal Vasko22df3f02020-08-24 13:29:22 +02001163 return ((struct lysp_node_container *)node)->groupings;
Radek Krejci53ea6152018-12-13 15:21:15 +01001164 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02001165 return ((struct lysp_node_list *)node)->groupings;
Radek Krejci53ea6152018-12-13 15:21:15 +01001166 case LYS_GROUPING:
Radek Krejci2a9fc652021-01-22 17:44:34 +01001167 return ((struct lysp_node_grp *)node)->groupings;
Michal Vasko1bf09392020-03-27 12:38:10 +01001168 case LYS_RPC:
Radek Krejci53ea6152018-12-13 15:21:15 +01001169 case LYS_ACTION:
Radek Krejci2a9fc652021-01-22 17:44:34 +01001170 return ((struct lysp_node_action *)node)->groupings;
Michal Vasko7f45cf22020-10-01 12:49:44 +02001171 case LYS_INPUT:
1172 case LYS_OUTPUT:
Radek Krejci2a9fc652021-01-22 17:44:34 +01001173 return ((struct lysp_node_action_inout *)node)->groupings;
Radek Krejci53ea6152018-12-13 15:21:15 +01001174 case LYS_NOTIF:
Radek Krejci2a9fc652021-01-22 17:44:34 +01001175 return ((struct lysp_node_notif *)node)->groupings;
Radek Krejci53ea6152018-12-13 15:21:15 +01001176 default:
1177 return NULL;
1178 }
1179}
1180
Radek Krejci2a9fc652021-01-22 17:44:34 +01001181struct lysp_node_action **
Radek Krejci056d0a82018-12-06 16:57:25 +01001182lysp_node_actions_p(struct lysp_node *node)
Radek Krejcibbe09a92018-11-08 09:36:54 +01001183{
1184 assert(node);
Michal Vasko7f45cf22020-10-01 12:49:44 +02001185
Radek Krejcibbe09a92018-11-08 09:36:54 +01001186 switch (node->nodetype) {
1187 case LYS_CONTAINER:
Michal Vasko22df3f02020-08-24 13:29:22 +02001188 return &((struct lysp_node_container *)node)->actions;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001189 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02001190 return &((struct lysp_node_list *)node)->actions;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001191 case LYS_GROUPING:
Radek Krejci2a9fc652021-01-22 17:44:34 +01001192 return &((struct lysp_node_grp *)node)->actions;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001193 case LYS_AUGMENT:
Radek Krejci2a9fc652021-01-22 17:44:34 +01001194 return &((struct lysp_node_augment *)node)->actions;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001195 default:
1196 return NULL;
1197 }
1198}
1199
Radek Krejci2a9fc652021-01-22 17:44:34 +01001200API const struct lysp_node_action *
Radek Krejci056d0a82018-12-06 16:57:25 +01001201lysp_node_actions(const struct lysp_node *node)
1202{
Radek Krejci2a9fc652021-01-22 17:44:34 +01001203 struct lysp_node_action **actions;
Michal Vasko69730152020-10-09 16:30:07 +02001204
Michal Vasko22df3f02020-08-24 13:29:22 +02001205 actions = lysp_node_actions_p((struct lysp_node *)node);
Radek Krejci056d0a82018-12-06 16:57:25 +01001206 if (actions) {
1207 return *actions;
1208 } else {
1209 return NULL;
1210 }
1211}
1212
Radek Krejci2a9fc652021-01-22 17:44:34 +01001213struct lysp_node_notif **
Radek Krejci056d0a82018-12-06 16:57:25 +01001214lysp_node_notifs_p(struct lysp_node *node)
Radek Krejcibbe09a92018-11-08 09:36:54 +01001215{
1216 assert(node);
1217 switch (node->nodetype) {
1218 case LYS_CONTAINER:
Michal Vasko22df3f02020-08-24 13:29:22 +02001219 return &((struct lysp_node_container *)node)->notifs;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001220 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02001221 return &((struct lysp_node_list *)node)->notifs;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001222 case LYS_GROUPING:
Radek Krejci2a9fc652021-01-22 17:44:34 +01001223 return &((struct lysp_node_grp *)node)->notifs;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001224 case LYS_AUGMENT:
Radek Krejci2a9fc652021-01-22 17:44:34 +01001225 return &((struct lysp_node_augment *)node)->notifs;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001226 default:
1227 return NULL;
1228 }
1229}
1230
Radek Krejci2a9fc652021-01-22 17:44:34 +01001231API const struct lysp_node_notif *
Radek Krejci056d0a82018-12-06 16:57:25 +01001232lysp_node_notifs(const struct lysp_node *node)
1233{
Radek Krejci2a9fc652021-01-22 17:44:34 +01001234 struct lysp_node_notif **notifs;
Michal Vasko69730152020-10-09 16:30:07 +02001235
Michal Vasko22df3f02020-08-24 13:29:22 +02001236 notifs = lysp_node_notifs_p((struct lysp_node *)node);
Radek Krejci056d0a82018-12-06 16:57:25 +01001237 if (notifs) {
1238 return *notifs;
1239 } else {
1240 return NULL;
1241 }
1242}
1243
Radek Krejcibbe09a92018-11-08 09:36:54 +01001244struct lysp_node **
Michal Vasko544e58a2021-01-28 14:33:41 +01001245lysp_node_child_p(struct lysp_node *node)
Radek Krejcibbe09a92018-11-08 09:36:54 +01001246{
1247 assert(node);
1248 switch (node->nodetype) {
1249 case LYS_CONTAINER:
Michal Vasko22df3f02020-08-24 13:29:22 +02001250 return &((struct lysp_node_container *)node)->child;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001251 case LYS_CHOICE:
Michal Vasko22df3f02020-08-24 13:29:22 +02001252 return &((struct lysp_node_choice *)node)->child;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001253 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02001254 return &((struct lysp_node_list *)node)->child;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001255 case LYS_CASE:
Michal Vasko22df3f02020-08-24 13:29:22 +02001256 return &((struct lysp_node_case *)node)->child;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001257 case LYS_GROUPING:
Radek Krejci01180ac2021-01-27 08:48:22 +01001258 return &((struct lysp_node_grp *)node)->child;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001259 case LYS_AUGMENT:
Radek Krejci2a9fc652021-01-22 17:44:34 +01001260 return &((struct lysp_node_augment *)node)->child;
Michal Vasko7f45cf22020-10-01 12:49:44 +02001261 case LYS_INPUT:
1262 case LYS_OUTPUT:
Radek Krejci01180ac2021-01-27 08:48:22 +01001263 return &((struct lysp_node_action_inout *)node)->child;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001264 case LYS_NOTIF:
Radek Krejci01180ac2021-01-27 08:48:22 +01001265 return &((struct lysp_node_notif *)node)->child;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001266 default:
1267 return NULL;
1268 }
1269}
1270
Radek Krejci056d0a82018-12-06 16:57:25 +01001271API const struct lysp_node *
Michal Vasko544e58a2021-01-28 14:33:41 +01001272lysp_node_child(const struct lysp_node *node)
Radek Krejci056d0a82018-12-06 16:57:25 +01001273{
Michal Vasko544e58a2021-01-28 14:33:41 +01001274 struct lysp_node **child;
Radek Krejcie7b95092019-05-15 11:03:07 +02001275
1276 if (!node) {
1277 return NULL;
1278 }
1279
Michal Vasko544e58a2021-01-28 14:33:41 +01001280 child = lysp_node_child_p((struct lysp_node *)node);
1281 if (child) {
1282 return *child;
Radek Krejci056d0a82018-12-06 16:57:25 +01001283 } else {
1284 return NULL;
1285 }
1286}
1287
Radek Krejci9a3823e2021-01-27 20:26:46 +01001288struct lysp_restr **
1289lysp_node_musts_p(const struct lysp_node *node)
1290{
1291 if (!node) {
1292 return NULL;
1293 }
1294
Radek Krejci2d5f6df2021-01-28 14:00:13 +01001295 switch (node->nodetype) {
Radek Krejci9a3823e2021-01-27 20:26:46 +01001296 case LYS_CONTAINER:
1297 return &((struct lysp_node_container *)node)->musts;
1298 case LYS_LEAF:
1299 return &((struct lysp_node_leaf *)node)->musts;
1300 case LYS_LEAFLIST:
1301 return &((struct lysp_node_leaflist *)node)->musts;
1302 case LYS_LIST:
1303 return &((struct lysp_node_list *)node)->musts;
1304 case LYS_ANYXML:
1305 case LYS_ANYDATA:
1306 return &((struct lysp_node_anydata *)node)->musts;
1307 case LYS_NOTIF:
1308 return &((struct lysp_node_notif *)node)->musts;
1309 case LYS_INPUT:
1310 case LYS_OUTPUT:
1311 return &((struct lysp_node_action_inout *)node)->musts;
1312 default:
1313 return NULL;
1314 }
1315}
1316
1317struct lysp_restr *
1318lysp_node_musts(const struct lysp_node *node)
1319{
1320 struct lysp_restr **musts;
1321
1322 musts = lysp_node_musts_p(node);
1323 if (musts) {
1324 return *musts;
1325 } else {
1326 return NULL;
1327 }
1328}
1329
1330struct lysp_when **
1331lysp_node_when_p(const struct lysp_node *node)
1332{
1333 if (!node) {
1334 return NULL;
1335 }
1336
Radek Krejci2d5f6df2021-01-28 14:00:13 +01001337 switch (node->nodetype) {
Radek Krejci9a3823e2021-01-27 20:26:46 +01001338 case LYS_CONTAINER:
1339 return &((struct lysp_node_container *)node)->when;
1340 case LYS_CHOICE:
1341 return &((struct lysp_node_choice *)node)->when;
1342 case LYS_LEAF:
1343 return &((struct lysp_node_leaf *)node)->when;
1344 case LYS_LEAFLIST:
1345 return &((struct lysp_node_leaflist *)node)->when;
1346 case LYS_LIST:
1347 return &((struct lysp_node_list *)node)->when;
1348 case LYS_ANYXML:
1349 case LYS_ANYDATA:
1350 return &((struct lysp_node_anydata *)node)->when;
1351 case LYS_CASE:
1352 return &((struct lysp_node_case *)node)->when;
1353 case LYS_USES:
1354 return &((struct lysp_node_uses *)node)->when;
1355 case LYS_AUGMENT:
1356 return &((struct lysp_node_augment *)node)->when;
1357 default:
1358 return NULL;
1359 }
1360}
1361
1362struct lysp_when *
1363lysp_node_when(const struct lysp_node *node)
1364{
1365 struct lysp_when **when;
1366
1367 when = lysp_node_when_p(node);
1368 if (when) {
1369 return *when;
1370 } else {
1371 return NULL;
1372 }
1373}
1374
Radek Krejci2a9fc652021-01-22 17:44:34 +01001375struct lysc_node_action **
Radek Krejci056d0a82018-12-06 16:57:25 +01001376lysc_node_actions_p(struct lysc_node *node)
1377{
1378 assert(node);
1379 switch (node->nodetype) {
1380 case LYS_CONTAINER:
Michal Vasko22df3f02020-08-24 13:29:22 +02001381 return &((struct lysc_node_container *)node)->actions;
Radek Krejci056d0a82018-12-06 16:57:25 +01001382 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02001383 return &((struct lysc_node_list *)node)->actions;
Radek Krejci056d0a82018-12-06 16:57:25 +01001384 default:
1385 return NULL;
1386 }
1387}
1388
Radek Krejci2a9fc652021-01-22 17:44:34 +01001389API const struct lysc_node_action *
Radek Krejci056d0a82018-12-06 16:57:25 +01001390lysc_node_actions(const struct lysc_node *node)
1391{
Radek Krejci2a9fc652021-01-22 17:44:34 +01001392 struct lysc_node_action **actions;
Michal Vasko69730152020-10-09 16:30:07 +02001393
Michal Vasko22df3f02020-08-24 13:29:22 +02001394 actions = lysc_node_actions_p((struct lysc_node *)node);
Radek Krejci056d0a82018-12-06 16:57:25 +01001395 if (actions) {
1396 return *actions;
1397 } else {
1398 return NULL;
1399 }
1400}
1401
Radek Krejci2a9fc652021-01-22 17:44:34 +01001402struct lysc_node_notif **
Radek Krejci056d0a82018-12-06 16:57:25 +01001403lysc_node_notifs_p(struct lysc_node *node)
1404{
1405 assert(node);
1406 switch (node->nodetype) {
1407 case LYS_CONTAINER:
Michal Vasko22df3f02020-08-24 13:29:22 +02001408 return &((struct lysc_node_container *)node)->notifs;
Radek Krejci056d0a82018-12-06 16:57:25 +01001409 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02001410 return &((struct lysc_node_list *)node)->notifs;
Radek Krejci056d0a82018-12-06 16:57:25 +01001411 default:
1412 return NULL;
1413 }
1414}
1415
Radek Krejci2a9fc652021-01-22 17:44:34 +01001416API const struct lysc_node_notif *
Radek Krejci056d0a82018-12-06 16:57:25 +01001417lysc_node_notifs(const struct lysc_node *node)
1418{
Radek Krejci2a9fc652021-01-22 17:44:34 +01001419 struct lysc_node_notif **notifs;
Michal Vasko69730152020-10-09 16:30:07 +02001420
Michal Vasko22df3f02020-08-24 13:29:22 +02001421 notifs = lysc_node_notifs_p((struct lysc_node *)node);
Radek Krejci056d0a82018-12-06 16:57:25 +01001422 if (notifs) {
1423 return *notifs;
1424 } else {
1425 return NULL;
1426 }
1427}
1428
Radek Krejcibbe09a92018-11-08 09:36:54 +01001429struct lysc_node **
Michal Vasko544e58a2021-01-28 14:33:41 +01001430lysc_node_child_p(const struct lysc_node *node)
Radek Krejcibbe09a92018-11-08 09:36:54 +01001431{
Michal Vasko544e58a2021-01-28 14:33:41 +01001432 assert(node && !(node->nodetype & (LYS_RPC | LYS_ACTION)));
1433
Radek Krejcibbe09a92018-11-08 09:36:54 +01001434 switch (node->nodetype) {
1435 case LYS_CONTAINER:
Michal Vasko22df3f02020-08-24 13:29:22 +02001436 return &((struct lysc_node_container *)node)->child;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001437 case LYS_CHOICE:
Michal Vasko20424b42020-08-31 12:29:38 +02001438 return (struct lysc_node **)&((struct lysc_node_choice *)node)->cases;
Radek Krejci01342af2019-01-03 15:18:08 +01001439 case LYS_CASE:
Michal Vasko22df3f02020-08-24 13:29:22 +02001440 return &((struct lysc_node_case *)node)->child;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001441 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02001442 return &((struct lysc_node_list *)node)->child;
Michal Vasko7f45cf22020-10-01 12:49:44 +02001443 case LYS_INPUT:
1444 case LYS_OUTPUT:
Radek Krejci01180ac2021-01-27 08:48:22 +01001445 return &((struct lysc_node_action_inout *)node)->child;
Radek Krejcifc11bd72019-04-11 16:00:05 +02001446 case LYS_NOTIF:
Radek Krejci01180ac2021-01-27 08:48:22 +01001447 return &((struct lysc_node_notif *)node)->child;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001448 default:
1449 return NULL;
1450 }
1451}
1452
Radek Krejci056d0a82018-12-06 16:57:25 +01001453API const struct lysc_node *
Michal Vasko544e58a2021-01-28 14:33:41 +01001454lysc_node_child(const struct lysc_node *node)
Radek Krejcia3045382018-11-22 14:30:31 +01001455{
Michal Vasko544e58a2021-01-28 14:33:41 +01001456 struct lysc_node **child;
Radek Krejcie7b95092019-05-15 11:03:07 +02001457
1458 if (!node) {
1459 return NULL;
1460 }
1461
Michal Vasko544e58a2021-01-28 14:33:41 +01001462 if (node->nodetype & (LYS_RPC | LYS_ACTION)) {
1463 return &((struct lysc_node_action *)node)->input.node;
Radek Krejcibe154442021-01-21 11:06:36 +01001464 } else {
Michal Vasko544e58a2021-01-28 14:33:41 +01001465 child = lysc_node_child_p(node);
1466 if (child) {
1467 return *child;
Radek Krejci2a9fc652021-01-22 17:44:34 +01001468 }
Michal Vasko2a668712020-10-21 11:48:09 +02001469 }
Michal Vasko544e58a2021-01-28 14:33:41 +01001470
1471 return NULL;
Michal Vasko2a668712020-10-21 11:48:09 +02001472}
1473
Radek Krejci9a3823e2021-01-27 20:26:46 +01001474struct lysc_must **
1475lysc_node_musts_p(const struct lysc_node *node)
1476{
1477 if (!node) {
1478 return NULL;
1479 }
1480
Radek Krejci2d5f6df2021-01-28 14:00:13 +01001481 switch (node->nodetype) {
Radek Krejci9a3823e2021-01-27 20:26:46 +01001482 case LYS_CONTAINER:
1483 return &((struct lysc_node_container *)node)->musts;
1484 case LYS_LEAF:
1485 return &((struct lysc_node_leaf *)node)->musts;
1486 case LYS_LEAFLIST:
1487 return &((struct lysc_node_leaflist *)node)->musts;
1488 case LYS_LIST:
1489 return &((struct lysc_node_list *)node)->musts;
1490 case LYS_ANYXML:
1491 case LYS_ANYDATA:
1492 return &((struct lysc_node_anydata *)node)->musts;
1493 case LYS_NOTIF:
1494 return &((struct lysc_node_notif *)node)->musts;
1495 case LYS_INPUT:
1496 case LYS_OUTPUT:
1497 return &((struct lysc_node_action_inout *)node)->musts;
1498 default:
1499 return NULL;
1500 }
1501}
1502
1503API struct lysc_must *
1504lysc_node_musts(const struct lysc_node *node)
1505{
1506 struct lysc_must **must_p;
1507
1508 must_p = lysc_node_musts_p(node);
1509 if (must_p) {
1510 return *must_p;
1511 } else {
1512 return NULL;
1513 }
1514}
1515
1516struct lysc_when ***
1517lysc_node_when_p(const struct lysc_node *node)
1518{
1519 if (!node) {
1520 return NULL;
1521 }
1522
Radek Krejci2d5f6df2021-01-28 14:00:13 +01001523 switch (node->nodetype) {
Radek Krejci9a3823e2021-01-27 20:26:46 +01001524 case LYS_CONTAINER:
1525 return &((struct lysc_node_container *)node)->when;
1526 case LYS_CHOICE:
1527 return &((struct lysc_node_choice *)node)->when;
1528 case LYS_LEAF:
1529 return &((struct lysc_node_leaf *)node)->when;
1530 case LYS_LEAFLIST:
1531 return &((struct lysc_node_leaflist *)node)->when;
1532 case LYS_LIST:
1533 return &((struct lysc_node_list *)node)->when;
1534 case LYS_ANYXML:
1535 case LYS_ANYDATA:
1536 return &((struct lysc_node_anydata *)node)->when;
1537 case LYS_CASE:
1538 return &((struct lysc_node_case *)node)->when;
1539 case LYS_NOTIF:
1540 return &((struct lysc_node_notif *)node)->when;
1541 case LYS_RPC:
1542 case LYS_ACTION:
1543 return &((struct lysc_node_action *)node)->when;
1544 default:
1545 return NULL;
1546 }
1547}
1548
1549API struct lysc_when **
1550lysc_node_when(const struct lysc_node *node)
1551{
1552 struct lysc_when ***when_p;
1553
1554 when_p = lysc_node_when_p(node);
1555 if (when_p) {
1556 return *when_p;
1557 } else {
1558 return NULL;
1559 }
1560}
1561
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001562struct lys_module *
1563lysp_find_module(struct ly_ctx *ctx, const struct lysp_module *mod)
1564{
Radek Krejci1deb5be2020-08-26 16:43:36 +02001565 for (uint32_t u = 0; u < ctx->list.count; ++u) {
Michal Vasko22df3f02020-08-24 13:29:22 +02001566 if (((struct lys_module *)ctx->list.objs[u])->parsed == mod) {
Michal Vasko69730152020-10-09 16:30:07 +02001567 return (struct lys_module *)ctx->list.objs[u];
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001568 }
1569 }
1570 return NULL;
1571}
1572
Radek Krejcid6b76452019-09-03 17:03:03 +02001573enum ly_stmt
Radek Krejcid54412f2020-12-17 20:25:35 +01001574lysp_match_kw(struct ly_in *in, uint64_t *indent)
David Sedlákc10e7902018-12-17 02:17:59 +01001575{
David Sedlák1bccdfa2019-06-17 15:55:27 +02001576/**
Radek Krejcid54412f2020-12-17 20:25:35 +01001577 * @brief Move the input by COUNT items. Also updates the indent value in yang parser context
David Sedlák1bccdfa2019-06-17 15:55:27 +02001578 * @param[in] COUNT number of items for which the DATA pointer is supposed to move on.
Michal Vasko64246d82020-08-19 12:35:00 +02001579 *
1580 * *INDENT-OFF*
David Sedlák1bccdfa2019-06-17 15:55:27 +02001581 */
Radek Krejcid54412f2020-12-17 20:25:35 +01001582#define MOVE_IN(COUNT) \
1583 ly_in_skip(in, COUNT); \
1584 if (indent) { \
1585 (*indent)+=COUNT; \
1586 }
1587#define IF_KW(STR, LEN, STMT) \
1588 if (!strncmp(in->current, STR, LEN)) { \
1589 MOVE_IN(LEN); \
1590 (*kw)=STMT; \
1591 }
1592#define IF_KW_PREFIX(STR, LEN) \
1593 if (!strncmp(in->current, STR, LEN)) { \
1594 MOVE_IN(LEN);
1595#define IF_KW_PREFIX_END \
1596 }
David Sedlák572e7ab2019-06-04 16:01:58 +02001597
Michal Vasko63f3d842020-07-08 10:10:14 +02001598 const char *start = in->current;
Radek Krejcid6b76452019-09-03 17:03:03 +02001599 enum ly_stmt result = LY_STMT_NONE;
1600 enum ly_stmt *kw = &result;
David Sedlák1bccdfa2019-06-17 15:55:27 +02001601 /* read the keyword itself */
Michal Vasko63f3d842020-07-08 10:10:14 +02001602 switch (in->current[0]) {
David Sedlák23a59a62018-10-26 13:08:02 +02001603 case 'a':
Radek Krejcid54412f2020-12-17 20:25:35 +01001604 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001605 IF_KW("rgument", 7, LY_STMT_ARGUMENT)
1606 else IF_KW("ugment", 6, LY_STMT_AUGMENT)
1607 else IF_KW("ction", 5, LY_STMT_ACTION)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001608 else IF_KW_PREFIX("ny", 2)
Radek Krejcid6b76452019-09-03 17:03:03 +02001609 IF_KW("data", 4, LY_STMT_ANYDATA)
1610 else IF_KW("xml", 3, LY_STMT_ANYXML)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001611 IF_KW_PREFIX_END
David Sedlák23a59a62018-10-26 13:08:02 +02001612 break;
1613 case 'b':
Radek Krejcid54412f2020-12-17 20:25:35 +01001614 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001615 IF_KW("ase", 3, LY_STMT_BASE)
1616 else IF_KW("elongs-to", 9, LY_STMT_BELONGS_TO)
1617 else IF_KW("it", 2, LY_STMT_BIT)
David Sedlák23a59a62018-10-26 13:08:02 +02001618 break;
1619 case 'c':
Radek Krejcid54412f2020-12-17 20:25:35 +01001620 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001621 IF_KW("ase", 3, LY_STMT_CASE)
1622 else IF_KW("hoice", 5, LY_STMT_CHOICE)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001623 else IF_KW_PREFIX("on", 2)
Radek Krejcid6b76452019-09-03 17:03:03 +02001624 IF_KW("fig", 3, LY_STMT_CONFIG)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001625 else IF_KW_PREFIX("ta", 2)
Radek Krejcid6b76452019-09-03 17:03:03 +02001626 IF_KW("ct", 2, LY_STMT_CONTACT)
1627 else IF_KW("iner", 4, LY_STMT_CONTAINER)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001628 IF_KW_PREFIX_END
1629 IF_KW_PREFIX_END
David Sedlák23a59a62018-10-26 13:08:02 +02001630 break;
1631 case 'd':
Radek Krejcid54412f2020-12-17 20:25:35 +01001632 MOVE_IN(1);
David Sedlák1bccdfa2019-06-17 15:55:27 +02001633 IF_KW_PREFIX("e", 1)
Radek Krejcid6b76452019-09-03 17:03:03 +02001634 IF_KW("fault", 5, LY_STMT_DEFAULT)
1635 else IF_KW("scription", 9, LY_STMT_DESCRIPTION)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001636 else IF_KW_PREFIX("viat", 4)
Radek Krejcid6b76452019-09-03 17:03:03 +02001637 IF_KW("e", 1, LY_STMT_DEVIATE)
1638 else IF_KW("ion", 3, LY_STMT_DEVIATION)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001639 IF_KW_PREFIX_END
1640 IF_KW_PREFIX_END
David Sedlák23a59a62018-10-26 13:08:02 +02001641 break;
1642 case 'e':
Radek Krejcid54412f2020-12-17 20:25:35 +01001643 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001644 IF_KW("num", 3, LY_STMT_ENUM)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001645 else IF_KW_PREFIX("rror-", 5)
Radek Krejcid6b76452019-09-03 17:03:03 +02001646 IF_KW("app-tag", 7, LY_STMT_ERROR_APP_TAG)
1647 else IF_KW("message", 7, LY_STMT_ERROR_MESSAGE)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001648 IF_KW_PREFIX_END
Radek Krejcid6b76452019-09-03 17:03:03 +02001649 else IF_KW("xtension", 8, LY_STMT_EXTENSION)
David Sedlák23a59a62018-10-26 13:08:02 +02001650 break;
1651 case 'f':
Radek Krejcid54412f2020-12-17 20:25:35 +01001652 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001653 IF_KW("eature", 6, LY_STMT_FEATURE)
1654 else IF_KW("raction-digits", 14, LY_STMT_FRACTION_DIGITS)
David Sedlák23a59a62018-10-26 13:08:02 +02001655 break;
1656 case 'g':
Radek Krejcid54412f2020-12-17 20:25:35 +01001657 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001658 IF_KW("rouping", 7, LY_STMT_GROUPING)
David Sedlák23a59a62018-10-26 13:08:02 +02001659 break;
1660 case 'i':
Radek Krejcid54412f2020-12-17 20:25:35 +01001661 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001662 IF_KW("dentity", 7, LY_STMT_IDENTITY)
1663 else IF_KW("f-feature", 9, LY_STMT_IF_FEATURE)
1664 else IF_KW("mport", 5, LY_STMT_IMPORT)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001665 else IF_KW_PREFIX("n", 1)
Radek Krejcid6b76452019-09-03 17:03:03 +02001666 IF_KW("clude", 5, LY_STMT_INCLUDE)
1667 else IF_KW("put", 3, LY_STMT_INPUT)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001668 IF_KW_PREFIX_END
David Sedlák23a59a62018-10-26 13:08:02 +02001669 break;
1670 case 'k':
Radek Krejcid54412f2020-12-17 20:25:35 +01001671 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001672 IF_KW("ey", 2, LY_STMT_KEY)
David Sedlák23a59a62018-10-26 13:08:02 +02001673 break;
1674 case 'l':
Radek Krejcid54412f2020-12-17 20:25:35 +01001675 MOVE_IN(1);
David Sedlák1bccdfa2019-06-17 15:55:27 +02001676 IF_KW_PREFIX("e", 1)
Radek Krejcid6b76452019-09-03 17:03:03 +02001677 IF_KW("af-list", 7, LY_STMT_LEAF_LIST)
1678 else IF_KW("af", 2, LY_STMT_LEAF)
1679 else IF_KW("ngth", 4, LY_STMT_LENGTH)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001680 IF_KW_PREFIX_END
Radek Krejcid6b76452019-09-03 17:03:03 +02001681 else IF_KW("ist", 3, LY_STMT_LIST)
David Sedlák23a59a62018-10-26 13:08:02 +02001682 break;
1683 case 'm':
Radek Krejcid54412f2020-12-17 20:25:35 +01001684 MOVE_IN(1);
David Sedlák1bccdfa2019-06-17 15:55:27 +02001685 IF_KW_PREFIX("a", 1)
Radek Krejcid6b76452019-09-03 17:03:03 +02001686 IF_KW("ndatory", 7, LY_STMT_MANDATORY)
1687 else IF_KW("x-elements", 10, LY_STMT_MAX_ELEMENTS)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001688 IF_KW_PREFIX_END
Radek Krejcid6b76452019-09-03 17:03:03 +02001689 else IF_KW("in-elements", 11, LY_STMT_MIN_ELEMENTS)
1690 else IF_KW("ust", 3, LY_STMT_MUST)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001691 else IF_KW_PREFIX("od", 2)
Radek Krejcid6b76452019-09-03 17:03:03 +02001692 IF_KW("ule", 3, LY_STMT_MODULE)
1693 else IF_KW("ifier", 5, LY_STMT_MODIFIER)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001694 IF_KW_PREFIX_END
David Sedlák23a59a62018-10-26 13:08:02 +02001695 break;
1696 case 'n':
Radek Krejcid54412f2020-12-17 20:25:35 +01001697 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001698 IF_KW("amespace", 8, LY_STMT_NAMESPACE)
1699 else IF_KW("otification", 11, LY_STMT_NOTIFICATION)
David Sedlák23a59a62018-10-26 13:08:02 +02001700 break;
1701 case 'o':
Radek Krejcid54412f2020-12-17 20:25:35 +01001702 MOVE_IN(1);
David Sedlák1bccdfa2019-06-17 15:55:27 +02001703 IF_KW_PREFIX("r", 1)
Radek Krejcid6b76452019-09-03 17:03:03 +02001704 IF_KW("dered-by", 8, LY_STMT_ORDERED_BY)
1705 else IF_KW("ganization", 10, LY_STMT_ORGANIZATION)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001706 IF_KW_PREFIX_END
Radek Krejcid6b76452019-09-03 17:03:03 +02001707 else IF_KW("utput", 5, LY_STMT_OUTPUT)
David Sedlák23a59a62018-10-26 13:08:02 +02001708 break;
1709 case 'p':
Radek Krejcid54412f2020-12-17 20:25:35 +01001710 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001711 IF_KW("ath", 3, LY_STMT_PATH)
1712 else IF_KW("attern", 6, LY_STMT_PATTERN)
1713 else IF_KW("osition", 7, LY_STMT_POSITION)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001714 else IF_KW_PREFIX("re", 2)
Radek Krejcid6b76452019-09-03 17:03:03 +02001715 IF_KW("fix", 3, LY_STMT_PREFIX)
1716 else IF_KW("sence", 5, LY_STMT_PRESENCE)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001717 IF_KW_PREFIX_END
David Sedlák23a59a62018-10-26 13:08:02 +02001718 break;
1719 case 'r':
Radek Krejcid54412f2020-12-17 20:25:35 +01001720 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001721 IF_KW("ange", 4, LY_STMT_RANGE)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001722 else IF_KW_PREFIX("e", 1)
1723 IF_KW_PREFIX("f", 1)
Radek Krejcid6b76452019-09-03 17:03:03 +02001724 IF_KW("erence", 6, LY_STMT_REFERENCE)
1725 else IF_KW("ine", 3, LY_STMT_REFINE)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001726 IF_KW_PREFIX_END
Radek Krejcid6b76452019-09-03 17:03:03 +02001727 else IF_KW("quire-instance", 14, LY_STMT_REQUIRE_INSTANCE)
1728 else IF_KW("vision-date", 11, LY_STMT_REVISION_DATE)
1729 else IF_KW("vision", 6, LY_STMT_REVISION)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001730 IF_KW_PREFIX_END
Radek Krejcid6b76452019-09-03 17:03:03 +02001731 else IF_KW("pc", 2, LY_STMT_RPC)
David Sedlák23a59a62018-10-26 13:08:02 +02001732 break;
1733 case 's':
Radek Krejcid54412f2020-12-17 20:25:35 +01001734 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001735 IF_KW("tatus", 5, LY_STMT_STATUS)
1736 else IF_KW("ubmodule", 8, LY_STMT_SUBMODULE)
David Sedlák23a59a62018-10-26 13:08:02 +02001737 break;
1738 case 't':
Radek Krejcid54412f2020-12-17 20:25:35 +01001739 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001740 IF_KW("ypedef", 6, LY_STMT_TYPEDEF)
1741 else IF_KW("ype", 3, LY_STMT_TYPE)
David Sedlák23a59a62018-10-26 13:08:02 +02001742 break;
1743 case 'u':
Radek Krejcid54412f2020-12-17 20:25:35 +01001744 MOVE_IN(1);
David Sedlák1bccdfa2019-06-17 15:55:27 +02001745 IF_KW_PREFIX("ni", 2)
Radek Krejcid6b76452019-09-03 17:03:03 +02001746 IF_KW("que", 3, LY_STMT_UNIQUE)
1747 else IF_KW("ts", 2, LY_STMT_UNITS)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001748 IF_KW_PREFIX_END
Radek Krejcid6b76452019-09-03 17:03:03 +02001749 else IF_KW("ses", 3, LY_STMT_USES)
David Sedlák23a59a62018-10-26 13:08:02 +02001750 break;
1751 case 'v':
Radek Krejcid54412f2020-12-17 20:25:35 +01001752 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001753 IF_KW("alue", 4, LY_STMT_VALUE)
David Sedlák23a59a62018-10-26 13:08:02 +02001754 break;
1755 case 'w':
Radek Krejcid54412f2020-12-17 20:25:35 +01001756 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001757 IF_KW("hen", 3, LY_STMT_WHEN)
David Sedlák23a59a62018-10-26 13:08:02 +02001758 break;
1759 case 'y':
Radek Krejcid54412f2020-12-17 20:25:35 +01001760 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001761 IF_KW("ang-version", 11, LY_STMT_YANG_VERSION)
1762 else IF_KW("in-element", 10, LY_STMT_YIN_ELEMENT)
David Sedlák23a59a62018-10-26 13:08:02 +02001763 break;
David Sedlák23a59a62018-10-26 13:08:02 +02001764 default:
Radek Krejcid54412f2020-12-17 20:25:35 +01001765 /* if indent is not NULL we are matching keyword from YANG data */
1766 if (indent) {
Michal Vasko63f3d842020-07-08 10:10:14 +02001767 if (in->current[0] == ';') {
Radek Krejcid54412f2020-12-17 20:25:35 +01001768 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001769 *kw = LY_STMT_SYNTAX_SEMICOLON;
Michal Vasko63f3d842020-07-08 10:10:14 +02001770 } else if (in->current[0] == '{') {
Radek Krejcid54412f2020-12-17 20:25:35 +01001771 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001772 *kw = LY_STMT_SYNTAX_LEFT_BRACE;
Michal Vasko63f3d842020-07-08 10:10:14 +02001773 } else if (in->current[0] == '}') {
Radek Krejcid54412f2020-12-17 20:25:35 +01001774 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001775 *kw = LY_STMT_SYNTAX_RIGHT_BRACE;
David Sedlák1bccdfa2019-06-17 15:55:27 +02001776 }
1777 }
David Sedlák23a59a62018-10-26 13:08:02 +02001778 break;
1779 }
1780
Michal Vasko63f3d842020-07-08 10:10:14 +02001781 if ((*kw < LY_STMT_SYNTAX_SEMICOLON) && isalnum(in->current[0])) {
Radek Krejci6e546bf2020-05-19 16:16:19 +02001782 /* the keyword is not terminated */
1783 *kw = LY_STMT_NONE;
Michal Vasko63f3d842020-07-08 10:10:14 +02001784 in->current = start;
Radek Krejci6e546bf2020-05-19 16:16:19 +02001785 }
1786
David Sedlák1bccdfa2019-06-17 15:55:27 +02001787#undef IF_KW
1788#undef IF_KW_PREFIX
1789#undef IF_KW_PREFIX_END
David Sedlák18730132019-03-15 15:51:34 +01001790#undef MOVE_IN
Michal Vasko64246d82020-08-19 12:35:00 +02001791 /* *INDENT-ON* */
David Sedlák18730132019-03-15 15:51:34 +01001792
David Sedlák1bccdfa2019-06-17 15:55:27 +02001793 return result;
David Sedlák23a59a62018-10-26 13:08:02 +02001794}
David Sedlákecf5eb82019-06-03 14:12:44 +02001795
Radek Krejci85ac8312021-03-03 20:21:33 +01001796LY_ERR
1797lysp_ext_find_definition(const struct ly_ctx *ctx, const struct lysp_ext_instance *ext, const struct lys_module **ext_mod,
1798 struct lysp_ext **ext_def)
1799{
Radek Krejci85ac8312021-03-03 20:21:33 +01001800 const char *tmp, *name, *prefix;
1801 size_t pref_len, name_len;
1802 LY_ARRAY_COUNT_TYPE v;
1803 const struct lys_module *mod = NULL;
1804
Radek Krejcicbb62422021-03-15 09:29:21 +01001805 assert(ext_def);
1806
Radek Krejci85ac8312021-03-03 20:21:33 +01001807 *ext_def = NULL;
1808 if (ext_mod) {
1809 *ext_mod = NULL;
1810 }
1811
Radek Krejci677abea2021-03-05 14:24:53 +01001812 /* parse the prefix, the nodeid was previously already parsed and checked */
Radek Krejci85ac8312021-03-03 20:21:33 +01001813 tmp = ext->name;
Radek Krejci677abea2021-03-05 14:24:53 +01001814 ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len);
Radek Krejci85ac8312021-03-03 20:21:33 +01001815
1816 /* get module where the extension definition should be placed */
1817 mod = ly_resolve_prefix(ctx, prefix, pref_len, ext->format, ext->prefix_data);
1818 if (!mod) {
Radek Krejci422afb12021-03-04 16:38:16 +01001819 LOGVAL(ctx, LYVE_REFERENCE, "Invalid prefix \"%.*s\" used for extension instance identifier.", (int)pref_len, prefix);
Radek Krejci85ac8312021-03-03 20:21:33 +01001820 return LY_EVALID;
1821 } else if (!mod->parsed->extensions) {
1822 LOGVAL(ctx, LYVE_REFERENCE, "Extension instance \"%s\" refers \"%s\" module that does not contain extension definitions.",
1823 ext->name, mod->name);
1824 return LY_EVALID;
1825 }
1826
1827 /* find the parsed extension definition there */
1828 LY_ARRAY_FOR(mod->parsed->extensions, v) {
1829 if (!strcmp(name, mod->parsed->extensions[v].name)) {
1830 *ext_def = &mod->parsed->extensions[v];
1831 break;
1832 }
1833 }
1834
Radek Krejcicbb62422021-03-15 09:29:21 +01001835 if (!(*ext_def)) {
Radek Krejci85ac8312021-03-03 20:21:33 +01001836 LOGVAL(ctx, LYVE_REFERENCE, "Extension definition of extension instance \"%s\" not found.", ext->name);
1837 return LY_EVALID;
1838 }
1839
1840 if (ext_mod) {
1841 *ext_mod = mod;
1842 }
1843 return LY_SUCCESS;
1844}
1845
1846LY_ERR
1847lysp_ext_instance_resolve_argument(struct ly_ctx *ctx, struct lysp_ext_instance *ext_p, struct lysp_ext *ext_def)
1848{
Radek Krejci9f87b0c2021-03-05 14:45:26 +01001849 if (!ext_def->argname || ext_p->argument) {
Radek Krejci85ac8312021-03-03 20:21:33 +01001850 /* nothing to do */
1851 return LY_SUCCESS;
1852 }
1853
Radek Krejci8df109d2021-04-23 12:19:08 +02001854 if (ext_p->format == LY_VALUE_XML) {
Radek Krejci85ac8312021-03-03 20:21:33 +01001855 /* Schema was parsed from YIN and an argument is expected, ... */
1856 struct lysp_stmt *stmt = NULL;
1857
1858 if (ext_def->flags & LYS_YINELEM_TRUE) {
1859 /* ... argument was the first XML child element */
1860 for (stmt = ext_p->child; stmt && (stmt->flags & LYS_YIN_ATTR); stmt = stmt->next) {}
1861 if (stmt) {
1862 const char *arg, *ext, *name_arg, *name_ext, *prefix_arg, *prefix_ext;
1863 size_t name_arg_len, name_ext_len, prefix_arg_len, prefix_ext_len;
1864
1865 stmt = ext_p->child;
1866
1867 arg = stmt->stmt;
1868 ly_parse_nodeid(&arg, &prefix_arg, &prefix_arg_len, &name_arg, &name_arg_len);
Radek Krejci9f87b0c2021-03-05 14:45:26 +01001869 if (ly_strncmp(ext_def->argname, name_arg, name_arg_len)) {
Radek Krejci85ac8312021-03-03 20:21:33 +01001870 LOGVAL(ctx, LYVE_SEMANTICS, "Extension instance \"%s\" expects argument element \"%s\" as its first XML child, "
Radek Krejci9f87b0c2021-03-05 14:45:26 +01001871 "but \"%.*s\" element found.", ext_p->name, ext_def->argname, (int)name_arg_len, name_arg);
Radek Krejci85ac8312021-03-03 20:21:33 +01001872 return LY_EVALID;
1873 }
1874
1875 /* check namespace - all the extension instances must be qualified and argument element is expected in the same
1876 * namespace. Do not check just prefixes, there can be different prefixes pointing to the same namespace */
1877 ext = ext_p->name; /* include prefix */
1878 ly_parse_nodeid(&ext, &prefix_ext, &prefix_ext_len, &name_ext, &name_ext_len);
1879
1880 if (ly_resolve_prefix(ctx, prefix_ext, prefix_ext_len, ext_p->format, ext_p->prefix_data) !=
1881 ly_resolve_prefix(ctx, prefix_arg, prefix_arg_len, stmt->format, stmt->prefix_data)) {
1882 LOGVAL(ctx, LYVE_SEMANTICS, "Extension instance \"%s\" element and its argument element \"%s\" are "
Radek Krejci9f87b0c2021-03-05 14:45:26 +01001883 "expected in the same namespace, but they differ.", ext_p->name, ext_def->argname);
Radek Krejci85ac8312021-03-03 20:21:33 +01001884 return LY_EVALID;
1885 }
1886 }
1887 } else {
1888 /* ... argument was one of the XML attributes which are represented as child stmt
1889 * with LYS_YIN_ATTR flag */
1890 for (stmt = ext_p->child; stmt && (stmt->flags & LYS_YIN_ATTR); stmt = stmt->next) {
Radek Krejci9f87b0c2021-03-05 14:45:26 +01001891 if (!strcmp(stmt->stmt, ext_def->argname)) {
Radek Krejci85ac8312021-03-03 20:21:33 +01001892 /* this is the extension's argument */
1893 break;
1894 }
1895 }
1896 }
1897
1898 if (stmt) {
1899 LY_CHECK_RET(lydict_insert(ctx, stmt->arg, 0, &ext_p->argument));
1900 stmt->flags |= LYS_YIN_ARGUMENT;
1901 }
1902 }
1903
1904 if (!ext_p->argument) {
1905 /* missing extension's argument */
1906 LOGVAL(ctx, LYVE_SEMANTICS, "Extension instance \"%s\" misses argument %s\"%s\".",
Radek Krejci9f87b0c2021-03-05 14:45:26 +01001907 ext_p->name, (ext_def->flags & LYS_YINELEM_TRUE) ? "element " : "", ext_def->argname);
Radek Krejci85ac8312021-03-03 20:21:33 +01001908 return LY_EVALID;
1909 }
1910
1911 return LY_SUCCESS;
1912}
1913
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001914LY_ARRAY_COUNT_TYPE
Radek Krejcifc596f92021-02-26 22:40:26 +01001915lysp_ext_instance_iter(struct lysp_ext_instance *ext, LY_ARRAY_COUNT_TYPE index, enum ly_stmt substmt)
Radek Krejcid3ca0632019-04-16 16:54:54 +02001916{
1917 LY_CHECK_ARG_RET(NULL, ext, LY_EINVAL);
1918
Michal Vaskod989ba02020-08-24 10:59:24 +02001919 for ( ; index < LY_ARRAY_COUNT(ext); index++) {
Radek Krejciab430862021-03-02 20:13:40 +01001920 if (ext[index].parent_stmt == substmt) {
Radek Krejcid3ca0632019-04-16 16:54:54 +02001921 return index;
1922 }
1923 }
1924
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001925 return LY_ARRAY_COUNT(ext);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001926}
1927
Michal Vasko62ed12d2020-05-21 10:08:25 +02001928const struct lysc_node *
Michal Vasko72244882021-01-12 15:21:05 +01001929lysc_data_node(const struct lysc_node *schema)
Michal Vasko62ed12d2020-05-21 10:08:25 +02001930{
1931 const struct lysc_node *parent;
1932
Michal Vasko72244882021-01-12 15:21:05 +01001933 parent = schema;
Radek Krejcidf549132021-01-21 10:32:32 +01001934 while (parent && !(parent->nodetype & (LYS_CONTAINER | LYS_LEAF | LYS_LEAFLIST | LYS_LIST | LYS_ANYDATA | LYS_RPC |
1935 LYS_ACTION | LYS_NOTIF))) {
Radek Krejci7d95fbb2021-01-26 17:33:13 +01001936 parent = parent->parent;
Michal Vasko72244882021-01-12 15:21:05 +01001937 }
Michal Vasko62ed12d2020-05-21 10:08:25 +02001938
1939 return parent;
1940}
Michal Vaskof4258e12021-06-15 12:11:42 +02001941
1942ly_bool
1943lys_has_recompiled(const struct lys_module *mod)
1944{
1945 LY_ARRAY_COUNT_TYPE u;
1946
1947 if (LYSP_HAS_RECOMPILED(mod->parsed)) {
1948 return 1;
1949 }
1950
1951 LY_ARRAY_FOR(mod->parsed->includes, u) {
1952 if (LYSP_HAS_RECOMPILED(mod->parsed->includes[u].submodule)) {
1953 return 1;
1954 }
1955 }
1956
1957 return 0;
1958}
1959
1960ly_bool
1961lys_has_compiled(const struct lys_module *mod)
1962{
1963 LY_ARRAY_COUNT_TYPE u;
1964
1965 if (LYSP_HAS_COMPILED(mod->parsed)) {
1966 return 1;
1967 }
1968
1969 LY_ARRAY_FOR(mod->parsed->includes, u) {
1970 if (LYSP_HAS_COMPILED(mod->parsed->includes[u].submodule)) {
1971 return 1;
1972 }
1973 }
1974
1975 return 0;
1976}
Michal Vasko7ee5be22021-06-16 17:03:34 +02001977
1978ly_bool
1979lys_has_groupings(const struct lys_module *mod)
1980{
1981 LY_ARRAY_COUNT_TYPE u;
1982
1983 if (mod->parsed->groupings) {
1984 return 1;
1985 }
1986
1987 LY_ARRAY_FOR(mod->parsed->includes, u) {
1988 if (mod->parsed->includes[u].submodule->groupings) {
1989 return 1;
1990 }
1991 }
1992
1993 return 0;
1994}