blob: 3b510aa46b5aa6813e318b712eadd309f90ea886 [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
aPiecekc7594b72021-06-29 09:00:03 +0200356 * typedefs are checked, caller is supposed to free the table.
357 * @return LY_EVALID in case of collision, LY_SUCCESS otherwise.
Radek Krejcibbe09a92018-11-08 09:36:54 +0100358 */
359static LY_ERR
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100360lysp_check_dup_typedef(struct lys_parser_ctx *ctx, struct lysp_node *node, const struct lysp_tpdf *tpdf,
aPieceke1fbd952021-06-29 08:12:55 +0200361 struct hash_table *tpdfs_global)
Radek Krejcibbe09a92018-11-08 09:36:54 +0100362{
363 struct lysp_node *parent;
364 uint32_t hash;
365 size_t name_len;
366 const char *name;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200367 LY_ARRAY_COUNT_TYPE u;
Radek Krejci0fb28562018-12-13 15:17:37 +0100368 const struct lysp_tpdf *typedefs;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100369
370 assert(ctx);
371 assert(tpdf);
372
373 name = tpdf->name;
374 name_len = strlen(name);
375
Radek Krejci4f28eda2018-11-12 11:46:16 +0100376 if (lysp_type_str2builtin(name, name_len)) {
aPiecekc7594b72021-06-29 09:00:03 +0200377 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG,
378 "Duplicate identifier \"%s\" of typedef statement - name collision with a built-in type.", name);
379 return LY_EVALID;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100380 }
381
382 /* check locally scoped typedefs (avoid name shadowing) */
383 if (node) {
Radek Krejci0fb28562018-12-13 15:17:37 +0100384 typedefs = lysp_node_typedefs(node);
385 LY_ARRAY_FOR(typedefs, u) {
386 if (&typedefs[u] == tpdf) {
387 break;
388 }
389 if (!strcmp(name, typedefs[u].name)) {
aPiecekc7594b72021-06-29 09:00:03 +0200390 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG,
391 "Duplicate identifier \"%s\" of typedef statement - name collision with sibling type.", name);
392 return LY_EVALID;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100393 }
394 }
395 /* search typedefs in parent's nodes */
Radek Krejci87e78ca2019-05-02 09:51:29 +0200396 for (parent = node->parent; parent; parent = parent->parent) {
Radek Krejcibbe09a92018-11-08 09:36:54 +0100397 if (lysp_type_match(name, parent)) {
aPiecekc7594b72021-06-29 09:00:03 +0200398 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG,
399 "Duplicate identifier \"%s\" of typedef statement - name collision with another scoped type.", name);
400 return LY_EVALID;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100401 }
402 }
403 }
404
405 /* check collision with the top-level typedefs */
Radek Krejcibbe09a92018-11-08 09:36:54 +0100406 if (node) {
aPiecekc7594b72021-06-29 09:00:03 +0200407 hash = dict_hash(name, name_len);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100408 if (!lyht_find(tpdfs_global, &name, hash, NULL)) {
aPiecekc7594b72021-06-29 09:00:03 +0200409 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG,
410 "Duplicate identifier \"%s\" of typedef statement - scoped type collide with a top-level type.", name);
411 return LY_EVALID;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100412 }
413 } else {
aPiecekc7594b72021-06-29 09:00:03 +0200414 LY_CHECK_RET(lysp_check_dup_ht_insert(ctx, tpdfs_global, name, "typedef",
415 "name collision with another top-level type"));
Radek Krejci3b1f9292018-11-08 10:58:35 +0100416 /* it is not necessary to test collision with the scoped types - in lysp_check_typedefs, all the
417 * top-level typedefs are inserted into the tables before the scoped typedefs, so the collision
418 * is detected in the first branch few lines above */
Radek Krejcibbe09a92018-11-08 09:36:54 +0100419 }
420
421 return LY_SUCCESS;
422}
423
Radek Krejci857189e2020-09-01 13:26:36 +0200424/**
425 * @brief Compare identifiers.
Michal Vasko62524a92021-02-26 10:08:50 +0100426 * Implementation of ::lyht_value_equal_cb.
Radek Krejci857189e2020-09-01 13:26:36 +0200427 */
428static ly_bool
429lysp_id_cmp(void *val1, void *val2, ly_bool UNUSED(mod), void *UNUSED(cb_data))
Radek Krejcibbe09a92018-11-08 09:36:54 +0100430{
Radek Krejci1deb5be2020-08-26 16:43:36 +0200431 return strcmp(val1, val2) == 0 ? 1 : 0;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100432}
433
434LY_ERR
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100435lysp_check_dup_typedefs(struct lys_parser_ctx *ctx, struct lysp_module *mod)
Radek Krejcibbe09a92018-11-08 09:36:54 +0100436{
437 struct hash_table *ids_global;
Radek Krejci0fb28562018-12-13 15:17:37 +0100438 const struct lysp_tpdf *typedefs;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200439 LY_ARRAY_COUNT_TYPE u, v;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200440 uint32_t i;
Michal Vasko405cc9e2020-12-01 12:01:27 +0100441 LY_ERR ret = LY_SUCCESS;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100442
443 /* check name collisions - typedefs and groupings */
Radek Krejcif13b87b2020-12-01 22:02:17 +0100444 ids_global = lyht_new(LYHT_MIN_SIZE, sizeof(char *), lysp_id_cmp, NULL, 1);
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200445 LY_ARRAY_FOR(mod->typedefs, v) {
aPieceke1fbd952021-06-29 08:12:55 +0200446 ret = lysp_check_dup_typedef(ctx, NULL, &mod->typedefs[v], ids_global);
Michal Vasko405cc9e2020-12-01 12:01:27 +0100447 LY_CHECK_GOTO(ret, cleanup);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100448 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200449 LY_ARRAY_FOR(mod->includes, v) {
450 LY_ARRAY_FOR(mod->includes[v].submodule->typedefs, u) {
aPieceke1fbd952021-06-29 08:12:55 +0200451 ret = lysp_check_dup_typedef(ctx, NULL, &mod->includes[v].submodule->typedefs[u], ids_global);
Michal Vasko405cc9e2020-12-01 12:01:27 +0100452 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci3b1f9292018-11-08 10:58:35 +0100453 }
454 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200455 for (i = 0; i < ctx->tpdfs_nodes.count; ++i) {
456 typedefs = lysp_node_typedefs((struct lysp_node *)ctx->tpdfs_nodes.objs[i]);
457 LY_ARRAY_FOR(typedefs, u) {
aPieceke1fbd952021-06-29 08:12:55 +0200458 ret = lysp_check_dup_typedef(ctx, (struct lysp_node *)ctx->tpdfs_nodes.objs[i], &typedefs[u], ids_global);
Michal Vasko405cc9e2020-12-01 12:01:27 +0100459 LY_CHECK_GOTO(ret, cleanup);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100460 }
461 }
Michal Vasko405cc9e2020-12-01 12:01:27 +0100462
Radek Krejcibbe09a92018-11-08 09:36:54 +0100463cleanup:
464 lyht_free(ids_global);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100465 return ret;
466}
467
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100468static ly_bool
469ly_ptrequal_cb(void *val1_p, void *val2_p, ly_bool UNUSED(mod), void *UNUSED(cb_data))
470{
471 void *ptr1 = *((void **)val1_p), *ptr2 = *((void **)val2_p);
472
473 return ptr1 == ptr2 ? 1 : 0;
474}
475
476LY_ERR
477lysp_check_dup_features(struct lys_parser_ctx *ctx, struct lysp_module *mod)
478{
479 LY_ARRAY_COUNT_TYPE u;
480 struct hash_table *ht;
481 struct lysp_feature *f;
aPiecekdc12b9f2021-06-25 10:55:47 +0200482 LY_ERR ret = LY_SUCCESS;
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100483
aPiecekf6203072021-06-25 10:58:26 +0200484 ht = lyht_new(LYHT_MIN_SIZE, sizeof(void *), ly_ptrequal_cb, NULL, 1);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100485 LY_CHECK_RET(!ht, LY_EMEM);
486
487 /* add all module features into a hash table */
488 LY_ARRAY_FOR(mod->features, struct lysp_feature, f) {
aPiecekea147b32021-06-29 07:52:47 +0200489 ret = lysp_check_dup_ht_insert(ctx, ht, f->name, "feature",
490 "name collision with another top-level feature");
aPiecekdc12b9f2021-06-25 10:55:47 +0200491 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100492 }
493
494 /* add all submodule features into a hash table */
495 LY_ARRAY_FOR(mod->includes, u) {
496 LY_ARRAY_FOR(mod->includes[u].submodule->features, struct lysp_feature, f) {
aPiecekea147b32021-06-29 07:52:47 +0200497 ret = lysp_check_dup_ht_insert(ctx, ht, f->name, "feature",
498 "name collision with another top-level feature");
aPiecekdc12b9f2021-06-25 10:55:47 +0200499 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100500 }
501 }
502
503cleanup:
504 lyht_free(ht);
505 return ret;
506}
507
508LY_ERR
509lysp_check_dup_identities(struct lys_parser_ctx *ctx, struct lysp_module *mod)
510{
511 LY_ARRAY_COUNT_TYPE u;
512 struct hash_table *ht;
513 struct lysp_ident *i;
aPiecekdc12b9f2021-06-25 10:55:47 +0200514 LY_ERR ret = LY_SUCCESS;
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100515
aPiecekf6203072021-06-25 10:58:26 +0200516 ht = lyht_new(LYHT_MIN_SIZE, sizeof(void *), ly_ptrequal_cb, NULL, 1);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100517 LY_CHECK_RET(!ht, LY_EMEM);
518
519 /* add all module identities into a hash table */
520 LY_ARRAY_FOR(mod->identities, struct lysp_ident, i) {
aPiecekea147b32021-06-29 07:52:47 +0200521 ret = lysp_check_dup_ht_insert(ctx, ht, i->name, "identity",
522 "name collision with another top-level identity");
aPiecekdc12b9f2021-06-25 10:55:47 +0200523 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100524 }
525
526 /* add all submodule identities into a hash table */
527 LY_ARRAY_FOR(mod->includes, u) {
528 LY_ARRAY_FOR(mod->includes[u].submodule->identities, struct lysp_ident, i) {
aPiecekea147b32021-06-29 07:52:47 +0200529 ret = lysp_check_dup_ht_insert(ctx, ht, i->name, "identity",
530 "name collision with another top-level identity");
aPiecekdc12b9f2021-06-25 10:55:47 +0200531 LY_CHECK_GOTO(ret, cleanup);
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100532 }
533 }
534
535cleanup:
536 lyht_free(ht);
537 return ret;
538}
539
Radek Krejci9ed7a192018-10-31 16:23:51 +0100540struct lysp_load_module_check_data {
541 const char *name;
542 const char *revision;
543 const char *path;
Michal Vasko22df3f02020-08-24 13:29:22 +0200544 const char *submoduleof;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100545};
546
547static LY_ERR
Michal Vaskob36053d2020-03-26 15:49:30 +0100548lysp_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 +0100549{
550 struct lysp_load_module_check_data *info = data;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100551 const char *filename, *dot, *rev, *name;
Radek Krejcib3289d62019-09-18 12:21:39 +0200552 uint8_t latest_revision;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100553 size_t len;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100554 struct lysp_revision *revs;
555
556 name = mod ? mod->mod->name : submod->name;
557 revs = mod ? mod->revs : submod->revs;
Radek Krejcib3289d62019-09-18 12:21:39 +0200558 latest_revision = mod ? mod->mod->latest_revision : submod->latest_revision;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100559
560 if (info->name) {
561 /* check name of the parsed model */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100562 if (strcmp(info->name, name)) {
563 LOGERR(ctx, LY_EINVAL, "Unexpected module \"%s\" parsed instead of \"%s\").", name, info->name);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100564 return LY_EINVAL;
565 }
566 }
567 if (info->revision) {
568 /* check revision of the parsed model */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100569 if (!revs || strcmp(info->revision, revs[0].date)) {
570 LOGERR(ctx, LY_EINVAL, "Module \"%s\" parsed with the wrong revision (\"%s\" instead \"%s\").", name,
Michal Vasko69730152020-10-09 16:30:07 +0200571 revs ? revs[0].date : "none", info->revision);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100572 return LY_EINVAL;
573 }
Radek Krejcib3289d62019-09-18 12:21:39 +0200574 } else if (!latest_revision) {
575 /* do not log, we just need to drop the schema and use the latest revision from the context */
576 return LY_EEXIST;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100577 }
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100578 if (submod) {
579 assert(info->submoduleof);
580
Radek Krejci9ed7a192018-10-31 16:23:51 +0100581 /* check that the submodule belongs-to our module */
Michal Vaskoc3781c32020-10-06 14:04:08 +0200582 if (strcmp(info->submoduleof, submod->mod->name)) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100583 LOGVAL(ctx, LYVE_REFERENCE, "Included \"%s\" submodule from \"%s\" belongs-to a different module \"%s\".",
Michal Vasko69730152020-10-09 16:30:07 +0200584 submod->name, info->submoduleof, submod->mod->name);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100585 return LY_EVALID;
586 }
587 /* check circular dependency */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100588 if (submod->parsing) {
Radek Krejci2efc45b2020-12-22 16:25:44 +0100589 LOGVAL(ctx, LYVE_REFERENCE, "A circular dependency (include) for module \"%s\".", submod->name);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100590 return LY_EVALID;
591 }
592 }
593 if (info->path) {
594 /* check that name and revision match filename */
595 filename = strrchr(info->path, '/');
596 if (!filename) {
597 filename = info->path;
598 } else {
599 filename++;
600 }
601 /* name */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100602 len = strlen(name);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100603 rev = strchr(filename, '@');
604 dot = strrchr(info->path, '.');
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100605 if (strncmp(filename, name, len) ||
Michal Vasko69730152020-10-09 16:30:07 +0200606 ((rev && (rev != &filename[len])) || (!rev && (dot != &filename[len])))) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100607 LOGWRN(ctx, "File name \"%s\" does not match module name \"%s\".", filename, name);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100608 }
609 /* revision */
610 if (rev) {
611 len = dot - ++rev;
Radek Krejcif13b87b2020-12-01 22:02:17 +0100612 if (!revs || (len != LY_REV_SIZE - 1) || strncmp(revs[0].date, rev, len)) {
Radek Krejci9ed7a192018-10-31 16:23:51 +0100613 LOGWRN(ctx, "File name \"%s\" does not match module revision \"%s\".", filename,
Michal Vasko69730152020-10-09 16:30:07 +0200614 revs ? revs[0].date : "none");
Radek Krejci9ed7a192018-10-31 16:23:51 +0100615 }
616 }
617 }
618 return LY_SUCCESS;
619}
620
Michal Vaskoe7a1daf2021-04-19 18:04:27 +0200621/**
Michal Vasko4e205e82021-06-08 14:01:47 +0200622 * @brief Parse a (sub)module from a local file and add into the context.
Michal Vaskoe7a1daf2021-04-19 18:04:27 +0200623 *
624 * This function does not check the presence of the (sub)module in context, it should be done before calling this function.
625 *
Michal Vaskoe7a1daf2021-04-19 18:04:27 +0200626 * @param[in] ctx libyang context where to work.
627 * @param[in] name Name of the (sub)module to load.
628 * @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 +0200629 * @param[in] main_ctx Parser context of the main module in case of loading submodule.
630 * @param[in] main_name Main module name in case of loading submodule.
631 * @param[in] required Module is required so error (even if the input file not found) are important. If 0, there is some
632 * 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 +0200633 * @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 +0200634 * @param[out] result Parsed YANG schema tree of the requested module (struct lys_module*) or submodule (struct lysp_submodule*).
635 * If it is a module, it is already in the context!
Michal Vasko4e205e82021-06-08 14:01:47 +0200636 * @return LY_SUCCESS on success.
Michal Vasko4e205e82021-06-08 14:01:47 +0200637 * @return LY_ERR on error.
Michal Vaskoe7a1daf2021-04-19 18:04:27 +0200638 */
639static LY_ERR
Michal Vasko4e205e82021-06-08 14:01:47 +0200640lys_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 +0200641 const char *main_name, ly_bool required, struct ly_set *new_mods, void **result)
Radek Krejci9ed7a192018-10-31 16:23:51 +0100642{
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200643 struct ly_in *in;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100644 char *filepath = NULL;
645 LYS_INFORMAT format;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100646 void *mod = NULL;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100647 LY_ERR ret = LY_SUCCESS;
648 struct lysp_load_module_check_data check_data = {0};
649
Michal Vasko87f1cf02021-06-08 14:02:47 +0200650 LY_CHECK_RET(lys_search_localfile(ly_ctx_get_searchdirs(ctx), !(ctx->flags & LY_CTX_DISABLE_SEARCHDIR_CWD), name,
651 revision, &filepath, &format));
Michal Vasko3a41dff2020-07-15 14:30:28 +0200652 if (!filepath) {
653 if (required) {
654 LOGERR(ctx, LY_ENOTFOUND, "Data model \"%s%s%s\" not found in local searchdirs.", name, revision ? "@" : "",
Michal Vasko69730152020-10-09 16:30:07 +0200655 revision ? revision : "");
Michal Vasko3a41dff2020-07-15 14:30:28 +0200656 }
657 return LY_ENOTFOUND;
658 }
Radek Krejci9ed7a192018-10-31 16:23:51 +0100659
660 LOGVRB("Loading schema from \"%s\" file.", filepath);
661
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200662 /* get the (sub)module */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200663 LY_CHECK_ERR_GOTO(ret = ly_in_new_filepath(filepath, 0, &in),
Michal Vasko69730152020-10-09 16:30:07 +0200664 LOGERR(ctx, ret, "Unable to create input handler for filepath %s.", filepath), cleanup);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100665 check_data.name = name;
666 check_data.revision = revision;
667 check_data.path = filepath;
fredgancd485b82019-10-18 15:00:17 +0800668 check_data.submoduleof = main_name;
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200669 if (main_ctx) {
aPiecekc3e26142021-06-22 14:25:49 +0200670 ret = lys_parse_submodule(ctx, in, format, main_ctx, lysp_load_module_check, &check_data, new_mods,
Michal Vasko69730152020-10-09 16:30:07 +0200671 (struct lysp_submodule **)&mod);
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200672 } else {
Michal Vaskodd992582021-06-10 14:34:57 +0200673 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 +0200674
675 }
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200676 ly_in_free(in, 1);
Michal Vasko7a0b0762020-09-02 16:37:01 +0200677 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100678
679 *result = mod;
680
681 /* success */
Michal Vasko7a0b0762020-09-02 16:37:01 +0200682
Radek Krejci9ed7a192018-10-31 16:23:51 +0100683cleanup:
684 free(filepath);
685 return ret;
686}
687
Radek Krejcid33273d2018-10-25 14:55:52 +0200688LY_ERR
Michal Vaskodd992582021-06-10 14:34:57 +0200689lys_parse_load(struct ly_ctx *ctx, const char *name, const char *revision, struct ly_set *new_mods,
Michal Vasko4e205e82021-06-08 14:01:47 +0200690 struct lys_module **mod)
Radek Krejci086c7132018-10-26 15:29:04 +0200691{
Radek Krejci9ed7a192018-10-31 16:23:51 +0100692 const char *module_data = NULL;
Radek Krejci086c7132018-10-26 15:29:04 +0200693 LYS_INFORMAT format = LYS_IN_UNKNOWN;
Michal Vasko69730152020-10-09 16:30:07 +0200694
Radek Krejci9ed7a192018-10-31 16:23:51 +0100695 void (*module_data_free)(void *module_data, void *user_data) = NULL;
696 struct lysp_load_module_check_data check_data = {0};
Michal Vasko4e205e82021-06-08 14:01:47 +0200697 struct lys_module *ctx_latest = NULL;
Michal Vasko63f3d842020-07-08 10:10:14 +0200698 struct ly_in *in;
Radek Krejci086c7132018-10-26 15:29:04 +0200699
Michal Vaskodd992582021-06-10 14:34:57 +0200700 assert(mod && new_mods);
Radek Krejci0af46292019-01-11 16:02:31 +0100701
Michal Vasko0550b762020-11-24 18:04:08 +0100702 /*
703 * try to get the module from the context
704 */
Radek Krejci0af46292019-01-11 16:02:31 +0100705 if (!*mod) {
Radek Krejci0af46292019-01-11 16:02:31 +0100706 if (revision) {
Radek Krejcied5acc52019-04-25 15:57:04 +0200707 /* get the specific revision */
Michal Vasko22df3f02020-08-24 13:29:22 +0200708 *mod = (struct lys_module *)ly_ctx_get_module(ctx, name, revision);
Radek Krejci0af46292019-01-11 16:02:31 +0100709 } else {
Michal Vasko4e205e82021-06-08 14:01:47 +0200710 /* get the requested module of the latest revision in the context */
711 *mod = (struct lys_module *)ly_ctx_get_module_latest(ctx, name);
712 if (*mod && ((*mod)->latest_revision == 1)) {
713 /* let us now search with callback and searchpaths to check if there is newer revision outside the context */
714 ctx_latest = *mod;
715 *mod = NULL;
Radek Krejcib3289d62019-09-18 12:21:39 +0200716 }
Radek Krejci0af46292019-01-11 16:02:31 +0100717 }
Radek Krejci086c7132018-10-26 15:29:04 +0200718 }
719
Michal Vasko4e205e82021-06-08 14:01:47 +0200720 /* we have module from the current context, circular check */
721 if (*mod && (*mod)->parsed->parsing) {
722 LOGVAL(ctx, LYVE_REFERENCE, "A circular dependency (import) for module \"%s\".", name);
723 *mod = NULL;
724 return LY_EVALID;
Michal Vasko0550b762020-11-24 18:04:08 +0100725 }
Radek Krejci086c7132018-10-26 15:29:04 +0200726
Michal Vasko0550b762020-11-24 18:04:08 +0100727 /*
728 * no suitable module in the context, try to load it
729 */
730 if (!*mod) {
Radek Krejci9ed7a192018-10-31 16:23:51 +0100731 /* module not present in the context, get the input data and parse it */
Radek Krejci086c7132018-10-26 15:29:04 +0200732 if (!(ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) {
733search_clb:
Michal Vasko87f1cf02021-06-08 14:02:47 +0200734 if (ctx->imp_clb && !ctx->imp_clb(name, revision, NULL, NULL, ctx->imp_clb_data, &format, &module_data,
735 &module_data_free)) {
736 LY_CHECK_RET(ly_in_new_memory(module_data, &in));
737 check_data.name = name;
738 check_data.revision = revision;
Michal Vaskodd992582021-06-10 14:34:57 +0200739 lys_parse_in(ctx, in, format, lysp_load_module_check, &check_data, new_mods, mod);
Michal Vasko87f1cf02021-06-08 14:02:47 +0200740 ly_in_free(in, 0);
741 if (module_data_free) {
742 module_data_free((void *)module_data, ctx->imp_clb_data);
Radek Krejci086c7132018-10-26 15:29:04 +0200743 }
744 }
745 if (!(*mod) && !(ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) {
746 goto search_file;
747 }
748 } else {
749search_file:
750 if (!(ctx->flags & LY_CTX_DISABLE_SEARCHDIRS)) {
751 /* module was not received from the callback or there is no callback set */
Michal Vaskodd992582021-06-10 14:34:57 +0200752 lys_parse_localfile(ctx, name, revision, NULL, NULL, ctx_latest ? 0 : 1, new_mods, (void **)mod);
Radek Krejci086c7132018-10-26 15:29:04 +0200753 }
Michal Vasko0550b762020-11-24 18:04:08 +0100754 if (!*mod && (ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) {
Radek Krejci086c7132018-10-26 15:29:04 +0200755 goto search_clb;
756 }
757 }
Radek Krejci9ed7a192018-10-31 16:23:51 +0100758
Radek Krejcib3289d62019-09-18 12:21:39 +0200759 /* update the latest_revision flag - here we have selected the latest available schema,
760 * consider that even the callback provides correct latest revision */
Michal Vasko0550b762020-11-24 18:04:08 +0100761 if (!*mod && ctx_latest) {
Michal Vasko003c44a2021-02-24 17:13:11 +0100762 LOGVRB("Newer revision than \"%s@%s\" not found, using this as the latest revision.", ctx_latest->name,
Michal Vasko0550b762020-11-24 18:04:08 +0100763 ctx_latest->revision);
764 ctx_latest->latest_revision = 2;
765 *mod = ctx_latest;
766 } else if (*mod && !revision && ((*mod)->latest_revision == 1)) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100767 (*mod)->latest_revision = 2;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100768 }
Radek Krejci086c7132018-10-26 15:29:04 +0200769
Michal Vasko0550b762020-11-24 18:04:08 +0100770 if (!*mod) {
Michal Vasko4e205e82021-06-08 14:01:47 +0200771 LOGVAL(ctx, LYVE_REFERENCE, "Loading \"%s\" module failed.", name);
Michal Vasko0550b762020-11-24 18:04:08 +0100772 return LY_EVALID;
773 }
Radek Krejci086c7132018-10-26 15:29:04 +0200774 }
Radek Krejci086c7132018-10-26 15:29:04 +0200775
776 return LY_SUCCESS;
777}
778
779LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200780lysp_check_stringchar(struct lys_parser_ctx *ctx, uint32_t c)
David Sedlák4a650532019-07-10 11:55:18 +0200781{
782 if (!is_yangutf8char(c)) {
783 LOGVAL_PARSER(ctx, LY_VCODE_INCHAR, c);
784 return LY_EVALID;
785 }
786 return LY_SUCCESS;
787}
788
789LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +0200790lysp_check_identifierchar(struct lys_parser_ctx *ctx, uint32_t c, ly_bool first, uint8_t *prefix)
David Sedlák4a650532019-07-10 11:55:18 +0200791{
Michal Vasko69730152020-10-09 16:30:07 +0200792 if (first || (prefix && ((*prefix) == 1))) {
David Sedlák4a650532019-07-10 11:55:18 +0200793 if (!is_yangidentstartchar(c)) {
aPiecekc89b2242021-05-14 14:19:11 +0200794 if ((c < UCHAR_MAX) && isprint(c)) {
Michal Vasko7c769042021-03-25 12:20:49 +0100795 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Invalid identifier first character '%c' (0x%04x).", (char)c, c);
796 } else {
797 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Invalid identifier first character 0x%04x.", c);
798 }
David Sedlák4a650532019-07-10 11:55:18 +0200799 return LY_EVALID;
800 }
801 if (prefix) {
802 if (first) {
803 (*prefix) = 0;
804 } else {
805 (*prefix) = 2;
806 }
807 }
Michal Vasko69730152020-10-09 16:30:07 +0200808 } else if ((c == ':') && prefix && ((*prefix) == 0)) {
David Sedlák4a650532019-07-10 11:55:18 +0200809 (*prefix) = 1;
810 } else if (!is_yangidentchar(c)) {
Radek Krejci1deb5be2020-08-26 16:43:36 +0200811 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Invalid identifier character '%c' (0x%04x).", (char)c, c);
David Sedlák4a650532019-07-10 11:55:18 +0200812 return LY_EVALID;
813 }
814
815 return LY_SUCCESS;
816}
817
Radek Krejci771928a2021-01-19 13:42:36 +0100818/**
819 * @brief Try to find the parsed submodule in main module for the given include record.
820 *
821 * @param[in] pctx main parser context
822 * @param[in] inc The include record with missing parsed submodule. According to include info try to find
823 * the corresponding parsed submodule in main module's includes.
824 * @return LY_SUCCESS - the parsed submodule was found and inserted into the @p inc record
825 * @return LY_ENOT - the parsed module was not found.
826 * @return LY_EVALID - YANG rule violation
827 */
828static LY_ERR
829lysp_get_submodule(struct lys_parser_ctx *pctx, struct lysp_include *inc)
Radek Krejcid33273d2018-10-25 14:55:52 +0200830{
Radek Krejci771928a2021-01-19 13:42:36 +0100831 LY_ARRAY_COUNT_TYPE i;
832 struct lysp_module *main_pmod = pctx->parsed_mod->mod->parsed;
Michal Vasko69730152020-10-09 16:30:07 +0200833
Radek Krejci771928a2021-01-19 13:42:36 +0100834 LY_ARRAY_FOR(main_pmod->includes, i) {
835 if (strcmp(main_pmod->includes[i].name, inc->name)) {
836 continue;
837 }
Radek Krejcid33273d2018-10-25 14:55:52 +0200838
Radek Krejci771928a2021-01-19 13:42:36 +0100839 if (inc->rev[0] && strncmp(inc->rev, main_pmod->includes[i].rev, LY_REV_SIZE)) {
840 LOGVAL(PARSER_CTX(pctx), LYVE_REFERENCE,
841 "Submodule %s includes different revision (%s) of the submodule %s:%s included by the main module %s.",
842 ((struct lysp_submodule *)pctx->parsed_mod)->name, inc->rev,
843 main_pmod->includes[i].name, main_pmod->includes[i].rev, main_pmod->mod->name);
844 return LY_EVALID;
845 }
846
847 inc->submodule = main_pmod->includes[i].submodule;
848 return inc->submodule ? LY_SUCCESS : LY_ENOT;
849 }
850
851 if (main_pmod->version == LYS_VERSION_1_1) {
852 LOGVAL(PARSER_CTX(pctx), LYVE_REFERENCE,
853 "YANG 1.1 requires all submodules to be included from main module. "
854 "But submodule \"%s\" includes submodule \"%s\" which is not included by main module \"%s\".",
855 ((struct lysp_submodule *)pctx->parsed_mod)->name, inc->name, main_pmod->mod->name);
856 return LY_EVALID;
857 } else {
858 return LY_ENOT;
859 }
860}
861
862/**
863 * @brief Make the copy of the given include record into the main module.
864 *
865 * YANG 1.0 does not require the main module to include all the submodules. Therefore, parsing submodules can cause
866 * reallocating and extending the includes array in the main module by the submodules included only in submodules.
867 *
868 * @param[in] pctx main parser context
869 * @param[in] inc Include record to copy into main module taken from @p pctx.
870 * @return LY_ERR value.
871 */
872static LY_ERR
873lysp_inject_submodule(struct lys_parser_ctx *pctx, struct lysp_include *inc)
874{
875 LY_ARRAY_COUNT_TYPE i;
876 struct lysp_include *inc_new, *inc_tofill = NULL;
877 struct lysp_module *main_pmod = pctx->parsed_mod->mod->parsed;
878
879 /* first, try to find the corresponding record with missing parsed submodule */
880 LY_ARRAY_FOR(main_pmod->includes, i) {
881 if (strcmp(main_pmod->includes[i].name, inc->name)) {
882 continue;
883 }
884 inc_tofill = &main_pmod->includes[i];
885 break;
886 }
887
888 if (inc_tofill) {
889 inc_tofill->submodule = inc->submodule;
890 } else {
891 LY_ARRAY_NEW_RET(PARSER_CTX(pctx), main_pmod->includes, inc_new, LY_EMEM);
892
893 inc_new->submodule = inc->submodule;
894 DUP_STRING_RET(PARSER_CTX(pctx), inc->name, inc_new->name);
895 DUP_STRING_RET(PARSER_CTX(pctx), inc->dsc, inc_new->dsc);
896 DUP_STRING_RET(PARSER_CTX(pctx), inc->ref, inc_new->ref);
897 /* TODO duplicate extensions */
898 memcpy(inc_new->rev, inc->rev, LY_REV_SIZE);
899 inc_new->injected = 1;
900 }
901 return LY_SUCCESS;
902}
903
904LY_ERR
aPiecekc3e26142021-06-22 14:25:49 +0200905lysp_load_submodules(struct lys_parser_ctx *pctx, struct lysp_module *pmod, struct ly_set *new_mods)
Radek Krejci771928a2021-01-19 13:42:36 +0100906{
907 LY_ARRAY_COUNT_TYPE u;
908 struct ly_ctx *ctx = PARSER_CTX(pctx);
909
910 LY_ARRAY_FOR(pmod->includes, u) {
911 LY_ERR ret = LY_SUCCESS;
912 struct lysp_submodule *submod = NULL;
913 struct lysp_include *inc = &pmod->includes[u];
914
915 if (inc->submodule) {
916 continue;
917 }
918
919 if (pmod->is_submod) {
920 /* try to find the submodule in the main module or its submodules */
921 ret = lysp_get_submodule(pctx, inc);
922 LY_CHECK_RET(ret && ret != LY_ENOT, ret);
923 LY_CHECK_RET(ret == LY_SUCCESS, LY_SUCCESS); /* submodule found in linked with the inc */
924 }
925
926 /* submodule not present in the main module, get the input data and parse it */
927 if (!(ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) {
Radek Krejcidf549132021-01-21 10:32:32 +0100928search_clb:
Radek Krejci771928a2021-01-19 13:42:36 +0100929 if (ctx->imp_clb) {
930 const char *submodule_data = NULL;
931 LYS_INFORMAT format = LYS_IN_UNKNOWN;
932 void (*submodule_data_free)(void *module_data, void *user_data) = NULL;
933 struct lysp_load_module_check_data check_data = {0};
934 struct ly_in *in;
935
936 if (ctx->imp_clb(pctx->parsed_mod->mod->name, NULL, inc->name,
937 inc->rev[0] ? inc->rev : NULL, ctx->imp_clb_data,
938 &format, &submodule_data, &submodule_data_free) == LY_SUCCESS) {
939 LY_CHECK_RET(ly_in_new_memory(submodule_data, &in));
940 check_data.name = inc->name;
941 check_data.revision = inc->rev[0] ? inc->rev : NULL;
942 check_data.submoduleof = pctx->parsed_mod->mod->name;
aPiecekc3e26142021-06-22 14:25:49 +0200943 lys_parse_submodule(ctx, in, format, pctx, lysp_load_module_check, &check_data, new_mods, &submod);
Radek Krejci771928a2021-01-19 13:42:36 +0100944
945 /* update inc pointer - parsing another (YANG 1.0) submodule can cause injecting
946 * submodule's include into main module, where it is missing */
947 inc = &pmod->includes[u];
948
949 ly_in_free(in, 0);
950 if (submodule_data_free) {
951 submodule_data_free((void *)submodule_data, ctx->imp_clb_data);
952 }
Radek Krejcid33273d2018-10-25 14:55:52 +0200953 }
954 }
Radek Krejci771928a2021-01-19 13:42:36 +0100955 if (!submod && !(ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) {
956 goto search_file;
957 }
958 } else {
Radek Krejcidf549132021-01-21 10:32:32 +0100959search_file:
Radek Krejci771928a2021-01-19 13:42:36 +0100960 if (!(ctx->flags & LY_CTX_DISABLE_SEARCHDIRS)) {
961 /* submodule was not received from the callback or there is no callback set */
Michal Vasko4e205e82021-06-08 14:01:47 +0200962 lys_parse_localfile(ctx, inc->name, inc->rev[0] ? inc->rev : NULL, pctx,
Radek Krejci771928a2021-01-19 13:42:36 +0100963 pctx->parsed_mod->mod->name, 1, NULL, (void **)&submod);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100964
Radek Krejci771928a2021-01-19 13:42:36 +0100965 /* update inc pointer - parsing another (YANG 1.0) submodule can cause injecting
966 * submodule's include into main module, where it is missing */
967 inc = &pmod->includes[u];
968 }
969 if (!submod && (ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) {
970 goto search_clb;
971 }
972 }
973 if (submod) {
974 if (!inc->rev[0] && (submod->latest_revision == 1)) {
975 /* update the latest_revision flag - here we have selected the latest available schema,
976 * consider that even the callback provides correct latest revision */
977 submod->latest_revision = 2;
978 }
979
980 inc->submodule = submod;
981 if (ret == LY_ENOT) {
982 /* the submodule include is not present in YANG 1.0 main module - add it there */
983 LY_CHECK_RET(lysp_inject_submodule(pctx, &pmod->includes[u]));
984 }
985 }
986 if (!inc->submodule) {
987 LOGVAL(ctx, LYVE_REFERENCE, "Including \"%s\" submodule into \"%s\" failed.", inc->name,
988 pctx->parsed_mod->is_submod ? ((struct lysp_submodule *)pctx->parsed_mod)->name : pctx->parsed_mod->mod->name);
989 return LY_EVALID;
990 }
Radek Krejcid33273d2018-10-25 14:55:52 +0200991 }
992
993 return LY_SUCCESS;
994}
995
Michal Vaskod5cfa6e2020-11-23 16:56:08 +0100996API const struct lysc_when *
997lysc_has_when(const struct lysc_node *node)
998{
Radek Krejci9a3823e2021-01-27 20:26:46 +0100999 struct lysc_when **when;
1000
Michal Vaskod5cfa6e2020-11-23 16:56:08 +01001001 if (!node) {
1002 return NULL;
1003 }
1004
1005 do {
Radek Krejci9a3823e2021-01-27 20:26:46 +01001006 when = lysc_node_when(node);
1007 if (when) {
1008 return when[0];
Michal Vaskod5cfa6e2020-11-23 16:56:08 +01001009 }
1010 node = node->parent;
1011 } while (node && (node->nodetype & (LYS_CASE | LYS_CHOICE)));
1012
1013 return NULL;
1014}
1015
Radek Krejci0935f412019-08-20 16:15:18 +02001016API const char *
Radek Krejcia3045382018-11-22 14:30:31 +01001017lys_nodetype2str(uint16_t nodetype)
1018{
Michal Vaskod989ba02020-08-24 10:59:24 +02001019 switch (nodetype) {
Radek Krejcia3045382018-11-22 14:30:31 +01001020 case LYS_CONTAINER:
1021 return "container";
1022 case LYS_CHOICE:
1023 return "choice";
1024 case LYS_LEAF:
1025 return "leaf";
1026 case LYS_LEAFLIST:
1027 return "leaf-list";
1028 case LYS_LIST:
1029 return "list";
1030 case LYS_ANYXML:
1031 return "anyxml";
1032 case LYS_ANYDATA:
1033 return "anydata";
Radek Krejcif12a1f02019-02-11 16:42:08 +01001034 case LYS_CASE:
1035 return "case";
Michal Vasko1bf09392020-03-27 12:38:10 +01001036 case LYS_RPC:
1037 return "RPC";
Radek Krejcif538ce52019-03-05 10:46:14 +01001038 case LYS_ACTION:
Michal Vasko1bf09392020-03-27 12:38:10 +01001039 return "action";
Radek Krejcif538ce52019-03-05 10:46:14 +01001040 case LYS_NOTIF:
Michal Vaskoa3881362020-01-21 15:57:35 +01001041 return "notification";
Radek Krejcifc81ea82019-04-18 13:27:22 +02001042 case LYS_USES:
1043 return "uses";
Radek Krejcia3045382018-11-22 14:30:31 +01001044 default:
1045 return "unknown";
1046 }
1047}
1048
Radek Krejci39b7fc22021-02-26 23:29:18 +01001049API enum ly_stmt
1050lys_nodetype2stmt(uint16_t nodetype)
1051{
1052 switch (nodetype) {
1053 case LYS_CONTAINER:
1054 return LY_STMT_CONTAINER;
1055 case LYS_CHOICE:
1056 return LY_STMT_CHOICE;
1057 case LYS_LEAF:
1058 return LY_STMT_LEAF;
1059 case LYS_LEAFLIST:
1060 return LY_STMT_LEAF_LIST;
1061 case LYS_LIST:
1062 return LY_STMT_LIST;
1063 case LYS_ANYXML:
1064 return LY_STMT_ANYXML;
1065 case LYS_ANYDATA:
1066 return LY_STMT_ANYDATA;
1067 case LYS_CASE:
1068 return LY_STMT_CASE;
1069 case LYS_RPC:
1070 return LY_STMT_RPC;
1071 case LYS_ACTION:
1072 return LY_STMT_ACTION;
1073 case LYS_NOTIF:
1074 return LY_STMT_NOTIFICATION;
1075 case LYS_USES:
1076 return LY_STMT_USES;
1077 case LYS_INPUT:
1078 return LY_STMT_INPUT;
1079 case LYS_OUTPUT:
1080 return LY_STMT_OUTPUT;
1081 default:
1082 return LY_STMT_NONE;
1083 }
1084}
1085
Radek Krejci693262f2019-04-29 15:23:20 +02001086const char *
1087lys_datatype2str(LY_DATA_TYPE basetype)
1088{
Michal Vaskod989ba02020-08-24 10:59:24 +02001089 switch (basetype) {
Radek Krejci693262f2019-04-29 15:23:20 +02001090 case LY_TYPE_BINARY:
1091 return "binary";
1092 case LY_TYPE_UINT8:
1093 return "uint8";
1094 case LY_TYPE_UINT16:
1095 return "uint16";
1096 case LY_TYPE_UINT32:
1097 return "uint32";
1098 case LY_TYPE_UINT64:
1099 return "uint64";
1100 case LY_TYPE_STRING:
1101 return "string";
1102 case LY_TYPE_BITS:
1103 return "bits";
1104 case LY_TYPE_BOOL:
1105 return "boolean";
1106 case LY_TYPE_DEC64:
1107 return "decimal64";
1108 case LY_TYPE_EMPTY:
1109 return "empty";
1110 case LY_TYPE_ENUM:
1111 return "enumeration";
1112 case LY_TYPE_IDENT:
1113 return "identityref";
1114 case LY_TYPE_INST:
1115 return "instance-identifier";
1116 case LY_TYPE_LEAFREF:
1117 return "leafref";
1118 case LY_TYPE_UNION:
1119 return "union";
1120 case LY_TYPE_INT8:
1121 return "int8";
1122 case LY_TYPE_INT16:
1123 return "int16";
1124 case LY_TYPE_INT32:
1125 return "int32";
1126 case LY_TYPE_INT64:
1127 return "int64";
1128 default:
1129 return "unknown";
1130 }
1131}
1132
Radek Krejci056d0a82018-12-06 16:57:25 +01001133API const struct lysp_tpdf *
1134lysp_node_typedefs(const struct lysp_node *node)
1135{
Radek Krejci0fb28562018-12-13 15:17:37 +01001136 switch (node->nodetype) {
1137 case LYS_CONTAINER:
Michal Vasko22df3f02020-08-24 13:29:22 +02001138 return ((struct lysp_node_container *)node)->typedefs;
Radek Krejci0fb28562018-12-13 15:17:37 +01001139 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02001140 return ((struct lysp_node_list *)node)->typedefs;
Radek Krejci0fb28562018-12-13 15:17:37 +01001141 case LYS_GROUPING:
Radek Krejci2a9fc652021-01-22 17:44:34 +01001142 return ((struct lysp_node_grp *)node)->typedefs;
Michal Vasko1bf09392020-03-27 12:38:10 +01001143 case LYS_RPC:
Radek Krejci0fb28562018-12-13 15:17:37 +01001144 case LYS_ACTION:
Radek Krejci2a9fc652021-01-22 17:44:34 +01001145 return ((struct lysp_node_action *)node)->typedefs;
Michal Vasko7f45cf22020-10-01 12:49:44 +02001146 case LYS_INPUT:
1147 case LYS_OUTPUT:
Radek Krejci2a9fc652021-01-22 17:44:34 +01001148 return ((struct lysp_node_action_inout *)node)->typedefs;
Radek Krejci0fb28562018-12-13 15:17:37 +01001149 case LYS_NOTIF:
Radek Krejci2a9fc652021-01-22 17:44:34 +01001150 return ((struct lysp_node_notif *)node)->typedefs;
Radek Krejci0fb28562018-12-13 15:17:37 +01001151 default:
Radek Krejci056d0a82018-12-06 16:57:25 +01001152 return NULL;
1153 }
1154}
1155
Radek Krejci2a9fc652021-01-22 17:44:34 +01001156API const struct lysp_node_grp *
Radek Krejci53ea6152018-12-13 15:21:15 +01001157lysp_node_groupings(const struct lysp_node *node)
1158{
1159 switch (node->nodetype) {
1160 case LYS_CONTAINER:
Michal Vasko22df3f02020-08-24 13:29:22 +02001161 return ((struct lysp_node_container *)node)->groupings;
Radek Krejci53ea6152018-12-13 15:21:15 +01001162 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02001163 return ((struct lysp_node_list *)node)->groupings;
Radek Krejci53ea6152018-12-13 15:21:15 +01001164 case LYS_GROUPING:
Radek Krejci2a9fc652021-01-22 17:44:34 +01001165 return ((struct lysp_node_grp *)node)->groupings;
Michal Vasko1bf09392020-03-27 12:38:10 +01001166 case LYS_RPC:
Radek Krejci53ea6152018-12-13 15:21:15 +01001167 case LYS_ACTION:
Radek Krejci2a9fc652021-01-22 17:44:34 +01001168 return ((struct lysp_node_action *)node)->groupings;
Michal Vasko7f45cf22020-10-01 12:49:44 +02001169 case LYS_INPUT:
1170 case LYS_OUTPUT:
Radek Krejci2a9fc652021-01-22 17:44:34 +01001171 return ((struct lysp_node_action_inout *)node)->groupings;
Radek Krejci53ea6152018-12-13 15:21:15 +01001172 case LYS_NOTIF:
Radek Krejci2a9fc652021-01-22 17:44:34 +01001173 return ((struct lysp_node_notif *)node)->groupings;
Radek Krejci53ea6152018-12-13 15:21:15 +01001174 default:
1175 return NULL;
1176 }
1177}
1178
Radek Krejci2a9fc652021-01-22 17:44:34 +01001179struct lysp_node_action **
Radek Krejci056d0a82018-12-06 16:57:25 +01001180lysp_node_actions_p(struct lysp_node *node)
Radek Krejcibbe09a92018-11-08 09:36:54 +01001181{
1182 assert(node);
Michal Vasko7f45cf22020-10-01 12:49:44 +02001183
Radek Krejcibbe09a92018-11-08 09:36:54 +01001184 switch (node->nodetype) {
1185 case LYS_CONTAINER:
Michal Vasko22df3f02020-08-24 13:29:22 +02001186 return &((struct lysp_node_container *)node)->actions;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001187 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02001188 return &((struct lysp_node_list *)node)->actions;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001189 case LYS_GROUPING:
Radek Krejci2a9fc652021-01-22 17:44:34 +01001190 return &((struct lysp_node_grp *)node)->actions;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001191 case LYS_AUGMENT:
Radek Krejci2a9fc652021-01-22 17:44:34 +01001192 return &((struct lysp_node_augment *)node)->actions;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001193 default:
1194 return NULL;
1195 }
1196}
1197
Radek Krejci2a9fc652021-01-22 17:44:34 +01001198API const struct lysp_node_action *
Radek Krejci056d0a82018-12-06 16:57:25 +01001199lysp_node_actions(const struct lysp_node *node)
1200{
Radek Krejci2a9fc652021-01-22 17:44:34 +01001201 struct lysp_node_action **actions;
Michal Vasko69730152020-10-09 16:30:07 +02001202
Michal Vasko22df3f02020-08-24 13:29:22 +02001203 actions = lysp_node_actions_p((struct lysp_node *)node);
Radek Krejci056d0a82018-12-06 16:57:25 +01001204 if (actions) {
1205 return *actions;
1206 } else {
1207 return NULL;
1208 }
1209}
1210
Radek Krejci2a9fc652021-01-22 17:44:34 +01001211struct lysp_node_notif **
Radek Krejci056d0a82018-12-06 16:57:25 +01001212lysp_node_notifs_p(struct lysp_node *node)
Radek Krejcibbe09a92018-11-08 09:36:54 +01001213{
1214 assert(node);
1215 switch (node->nodetype) {
1216 case LYS_CONTAINER:
Michal Vasko22df3f02020-08-24 13:29:22 +02001217 return &((struct lysp_node_container *)node)->notifs;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001218 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02001219 return &((struct lysp_node_list *)node)->notifs;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001220 case LYS_GROUPING:
Radek Krejci2a9fc652021-01-22 17:44:34 +01001221 return &((struct lysp_node_grp *)node)->notifs;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001222 case LYS_AUGMENT:
Radek Krejci2a9fc652021-01-22 17:44:34 +01001223 return &((struct lysp_node_augment *)node)->notifs;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001224 default:
1225 return NULL;
1226 }
1227}
1228
Radek Krejci2a9fc652021-01-22 17:44:34 +01001229API const struct lysp_node_notif *
Radek Krejci056d0a82018-12-06 16:57:25 +01001230lysp_node_notifs(const struct lysp_node *node)
1231{
Radek Krejci2a9fc652021-01-22 17:44:34 +01001232 struct lysp_node_notif **notifs;
Michal Vasko69730152020-10-09 16:30:07 +02001233
Michal Vasko22df3f02020-08-24 13:29:22 +02001234 notifs = lysp_node_notifs_p((struct lysp_node *)node);
Radek Krejci056d0a82018-12-06 16:57:25 +01001235 if (notifs) {
1236 return *notifs;
1237 } else {
1238 return NULL;
1239 }
1240}
1241
Radek Krejcibbe09a92018-11-08 09:36:54 +01001242struct lysp_node **
Michal Vasko544e58a2021-01-28 14:33:41 +01001243lysp_node_child_p(struct lysp_node *node)
Radek Krejcibbe09a92018-11-08 09:36:54 +01001244{
1245 assert(node);
1246 switch (node->nodetype) {
1247 case LYS_CONTAINER:
Michal Vasko22df3f02020-08-24 13:29:22 +02001248 return &((struct lysp_node_container *)node)->child;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001249 case LYS_CHOICE:
Michal Vasko22df3f02020-08-24 13:29:22 +02001250 return &((struct lysp_node_choice *)node)->child;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001251 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02001252 return &((struct lysp_node_list *)node)->child;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001253 case LYS_CASE:
Michal Vasko22df3f02020-08-24 13:29:22 +02001254 return &((struct lysp_node_case *)node)->child;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001255 case LYS_GROUPING:
Radek Krejci01180ac2021-01-27 08:48:22 +01001256 return &((struct lysp_node_grp *)node)->child;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001257 case LYS_AUGMENT:
Radek Krejci2a9fc652021-01-22 17:44:34 +01001258 return &((struct lysp_node_augment *)node)->child;
Michal Vasko7f45cf22020-10-01 12:49:44 +02001259 case LYS_INPUT:
1260 case LYS_OUTPUT:
Radek Krejci01180ac2021-01-27 08:48:22 +01001261 return &((struct lysp_node_action_inout *)node)->child;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001262 case LYS_NOTIF:
Radek Krejci01180ac2021-01-27 08:48:22 +01001263 return &((struct lysp_node_notif *)node)->child;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001264 default:
1265 return NULL;
1266 }
1267}
1268
Radek Krejci056d0a82018-12-06 16:57:25 +01001269API const struct lysp_node *
Michal Vasko544e58a2021-01-28 14:33:41 +01001270lysp_node_child(const struct lysp_node *node)
Radek Krejci056d0a82018-12-06 16:57:25 +01001271{
Michal Vasko544e58a2021-01-28 14:33:41 +01001272 struct lysp_node **child;
Radek Krejcie7b95092019-05-15 11:03:07 +02001273
1274 if (!node) {
1275 return NULL;
1276 }
1277
Michal Vasko544e58a2021-01-28 14:33:41 +01001278 child = lysp_node_child_p((struct lysp_node *)node);
1279 if (child) {
1280 return *child;
Radek Krejci056d0a82018-12-06 16:57:25 +01001281 } else {
1282 return NULL;
1283 }
1284}
1285
Radek Krejci9a3823e2021-01-27 20:26:46 +01001286struct lysp_restr **
1287lysp_node_musts_p(const struct lysp_node *node)
1288{
1289 if (!node) {
1290 return NULL;
1291 }
1292
Radek Krejci2d5f6df2021-01-28 14:00:13 +01001293 switch (node->nodetype) {
Radek Krejci9a3823e2021-01-27 20:26:46 +01001294 case LYS_CONTAINER:
1295 return &((struct lysp_node_container *)node)->musts;
1296 case LYS_LEAF:
1297 return &((struct lysp_node_leaf *)node)->musts;
1298 case LYS_LEAFLIST:
1299 return &((struct lysp_node_leaflist *)node)->musts;
1300 case LYS_LIST:
1301 return &((struct lysp_node_list *)node)->musts;
1302 case LYS_ANYXML:
1303 case LYS_ANYDATA:
1304 return &((struct lysp_node_anydata *)node)->musts;
1305 case LYS_NOTIF:
1306 return &((struct lysp_node_notif *)node)->musts;
1307 case LYS_INPUT:
1308 case LYS_OUTPUT:
1309 return &((struct lysp_node_action_inout *)node)->musts;
1310 default:
1311 return NULL;
1312 }
1313}
1314
1315struct lysp_restr *
1316lysp_node_musts(const struct lysp_node *node)
1317{
1318 struct lysp_restr **musts;
1319
1320 musts = lysp_node_musts_p(node);
1321 if (musts) {
1322 return *musts;
1323 } else {
1324 return NULL;
1325 }
1326}
1327
1328struct lysp_when **
1329lysp_node_when_p(const struct lysp_node *node)
1330{
1331 if (!node) {
1332 return NULL;
1333 }
1334
Radek Krejci2d5f6df2021-01-28 14:00:13 +01001335 switch (node->nodetype) {
Radek Krejci9a3823e2021-01-27 20:26:46 +01001336 case LYS_CONTAINER:
1337 return &((struct lysp_node_container *)node)->when;
1338 case LYS_CHOICE:
1339 return &((struct lysp_node_choice *)node)->when;
1340 case LYS_LEAF:
1341 return &((struct lysp_node_leaf *)node)->when;
1342 case LYS_LEAFLIST:
1343 return &((struct lysp_node_leaflist *)node)->when;
1344 case LYS_LIST:
1345 return &((struct lysp_node_list *)node)->when;
1346 case LYS_ANYXML:
1347 case LYS_ANYDATA:
1348 return &((struct lysp_node_anydata *)node)->when;
1349 case LYS_CASE:
1350 return &((struct lysp_node_case *)node)->when;
1351 case LYS_USES:
1352 return &((struct lysp_node_uses *)node)->when;
1353 case LYS_AUGMENT:
1354 return &((struct lysp_node_augment *)node)->when;
1355 default:
1356 return NULL;
1357 }
1358}
1359
1360struct lysp_when *
1361lysp_node_when(const struct lysp_node *node)
1362{
1363 struct lysp_when **when;
1364
1365 when = lysp_node_when_p(node);
1366 if (when) {
1367 return *when;
1368 } else {
1369 return NULL;
1370 }
1371}
1372
Radek Krejci2a9fc652021-01-22 17:44:34 +01001373struct lysc_node_action **
Radek Krejci056d0a82018-12-06 16:57:25 +01001374lysc_node_actions_p(struct lysc_node *node)
1375{
1376 assert(node);
1377 switch (node->nodetype) {
1378 case LYS_CONTAINER:
Michal Vasko22df3f02020-08-24 13:29:22 +02001379 return &((struct lysc_node_container *)node)->actions;
Radek Krejci056d0a82018-12-06 16:57:25 +01001380 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02001381 return &((struct lysc_node_list *)node)->actions;
Radek Krejci056d0a82018-12-06 16:57:25 +01001382 default:
1383 return NULL;
1384 }
1385}
1386
Radek Krejci2a9fc652021-01-22 17:44:34 +01001387API const struct lysc_node_action *
Radek Krejci056d0a82018-12-06 16:57:25 +01001388lysc_node_actions(const struct lysc_node *node)
1389{
Radek Krejci2a9fc652021-01-22 17:44:34 +01001390 struct lysc_node_action **actions;
Michal Vasko69730152020-10-09 16:30:07 +02001391
Michal Vasko22df3f02020-08-24 13:29:22 +02001392 actions = lysc_node_actions_p((struct lysc_node *)node);
Radek Krejci056d0a82018-12-06 16:57:25 +01001393 if (actions) {
1394 return *actions;
1395 } else {
1396 return NULL;
1397 }
1398}
1399
Radek Krejci2a9fc652021-01-22 17:44:34 +01001400struct lysc_node_notif **
Radek Krejci056d0a82018-12-06 16:57:25 +01001401lysc_node_notifs_p(struct lysc_node *node)
1402{
1403 assert(node);
1404 switch (node->nodetype) {
1405 case LYS_CONTAINER:
Michal Vasko22df3f02020-08-24 13:29:22 +02001406 return &((struct lysc_node_container *)node)->notifs;
Radek Krejci056d0a82018-12-06 16:57:25 +01001407 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02001408 return &((struct lysc_node_list *)node)->notifs;
Radek Krejci056d0a82018-12-06 16:57:25 +01001409 default:
1410 return NULL;
1411 }
1412}
1413
Radek Krejci2a9fc652021-01-22 17:44:34 +01001414API const struct lysc_node_notif *
Radek Krejci056d0a82018-12-06 16:57:25 +01001415lysc_node_notifs(const struct lysc_node *node)
1416{
Radek Krejci2a9fc652021-01-22 17:44:34 +01001417 struct lysc_node_notif **notifs;
Michal Vasko69730152020-10-09 16:30:07 +02001418
Michal Vasko22df3f02020-08-24 13:29:22 +02001419 notifs = lysc_node_notifs_p((struct lysc_node *)node);
Radek Krejci056d0a82018-12-06 16:57:25 +01001420 if (notifs) {
1421 return *notifs;
1422 } else {
1423 return NULL;
1424 }
1425}
1426
Radek Krejcibbe09a92018-11-08 09:36:54 +01001427struct lysc_node **
Michal Vasko544e58a2021-01-28 14:33:41 +01001428lysc_node_child_p(const struct lysc_node *node)
Radek Krejcibbe09a92018-11-08 09:36:54 +01001429{
Michal Vasko544e58a2021-01-28 14:33:41 +01001430 assert(node && !(node->nodetype & (LYS_RPC | LYS_ACTION)));
1431
Radek Krejcibbe09a92018-11-08 09:36:54 +01001432 switch (node->nodetype) {
1433 case LYS_CONTAINER:
Michal Vasko22df3f02020-08-24 13:29:22 +02001434 return &((struct lysc_node_container *)node)->child;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001435 case LYS_CHOICE:
Michal Vasko20424b42020-08-31 12:29:38 +02001436 return (struct lysc_node **)&((struct lysc_node_choice *)node)->cases;
Radek Krejci01342af2019-01-03 15:18:08 +01001437 case LYS_CASE:
Michal Vasko22df3f02020-08-24 13:29:22 +02001438 return &((struct lysc_node_case *)node)->child;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001439 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02001440 return &((struct lysc_node_list *)node)->child;
Michal Vasko7f45cf22020-10-01 12:49:44 +02001441 case LYS_INPUT:
1442 case LYS_OUTPUT:
Radek Krejci01180ac2021-01-27 08:48:22 +01001443 return &((struct lysc_node_action_inout *)node)->child;
Radek Krejcifc11bd72019-04-11 16:00:05 +02001444 case LYS_NOTIF:
Radek Krejci01180ac2021-01-27 08:48:22 +01001445 return &((struct lysc_node_notif *)node)->child;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001446 default:
1447 return NULL;
1448 }
1449}
1450
Radek Krejci056d0a82018-12-06 16:57:25 +01001451API const struct lysc_node *
Michal Vasko544e58a2021-01-28 14:33:41 +01001452lysc_node_child(const struct lysc_node *node)
Radek Krejcia3045382018-11-22 14:30:31 +01001453{
Michal Vasko544e58a2021-01-28 14:33:41 +01001454 struct lysc_node **child;
Radek Krejcie7b95092019-05-15 11:03:07 +02001455
1456 if (!node) {
1457 return NULL;
1458 }
1459
Michal Vasko544e58a2021-01-28 14:33:41 +01001460 if (node->nodetype & (LYS_RPC | LYS_ACTION)) {
1461 return &((struct lysc_node_action *)node)->input.node;
Radek Krejcibe154442021-01-21 11:06:36 +01001462 } else {
Michal Vasko544e58a2021-01-28 14:33:41 +01001463 child = lysc_node_child_p(node);
1464 if (child) {
1465 return *child;
Radek Krejci2a9fc652021-01-22 17:44:34 +01001466 }
Michal Vasko2a668712020-10-21 11:48:09 +02001467 }
Michal Vasko544e58a2021-01-28 14:33:41 +01001468
1469 return NULL;
Michal Vasko2a668712020-10-21 11:48:09 +02001470}
1471
Radek Krejci9a3823e2021-01-27 20:26:46 +01001472struct lysc_must **
1473lysc_node_musts_p(const struct lysc_node *node)
1474{
1475 if (!node) {
1476 return NULL;
1477 }
1478
Radek Krejci2d5f6df2021-01-28 14:00:13 +01001479 switch (node->nodetype) {
Radek Krejci9a3823e2021-01-27 20:26:46 +01001480 case LYS_CONTAINER:
1481 return &((struct lysc_node_container *)node)->musts;
1482 case LYS_LEAF:
1483 return &((struct lysc_node_leaf *)node)->musts;
1484 case LYS_LEAFLIST:
1485 return &((struct lysc_node_leaflist *)node)->musts;
1486 case LYS_LIST:
1487 return &((struct lysc_node_list *)node)->musts;
1488 case LYS_ANYXML:
1489 case LYS_ANYDATA:
1490 return &((struct lysc_node_anydata *)node)->musts;
1491 case LYS_NOTIF:
1492 return &((struct lysc_node_notif *)node)->musts;
1493 case LYS_INPUT:
1494 case LYS_OUTPUT:
1495 return &((struct lysc_node_action_inout *)node)->musts;
1496 default:
1497 return NULL;
1498 }
1499}
1500
1501API struct lysc_must *
1502lysc_node_musts(const struct lysc_node *node)
1503{
1504 struct lysc_must **must_p;
1505
1506 must_p = lysc_node_musts_p(node);
1507 if (must_p) {
1508 return *must_p;
1509 } else {
1510 return NULL;
1511 }
1512}
1513
1514struct lysc_when ***
1515lysc_node_when_p(const struct lysc_node *node)
1516{
1517 if (!node) {
1518 return NULL;
1519 }
1520
Radek Krejci2d5f6df2021-01-28 14:00:13 +01001521 switch (node->nodetype) {
Radek Krejci9a3823e2021-01-27 20:26:46 +01001522 case LYS_CONTAINER:
1523 return &((struct lysc_node_container *)node)->when;
1524 case LYS_CHOICE:
1525 return &((struct lysc_node_choice *)node)->when;
1526 case LYS_LEAF:
1527 return &((struct lysc_node_leaf *)node)->when;
1528 case LYS_LEAFLIST:
1529 return &((struct lysc_node_leaflist *)node)->when;
1530 case LYS_LIST:
1531 return &((struct lysc_node_list *)node)->when;
1532 case LYS_ANYXML:
1533 case LYS_ANYDATA:
1534 return &((struct lysc_node_anydata *)node)->when;
1535 case LYS_CASE:
1536 return &((struct lysc_node_case *)node)->when;
1537 case LYS_NOTIF:
1538 return &((struct lysc_node_notif *)node)->when;
1539 case LYS_RPC:
1540 case LYS_ACTION:
1541 return &((struct lysc_node_action *)node)->when;
1542 default:
1543 return NULL;
1544 }
1545}
1546
1547API struct lysc_when **
1548lysc_node_when(const struct lysc_node *node)
1549{
1550 struct lysc_when ***when_p;
1551
1552 when_p = lysc_node_when_p(node);
1553 if (when_p) {
1554 return *when_p;
1555 } else {
1556 return NULL;
1557 }
1558}
1559
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001560struct lys_module *
1561lysp_find_module(struct ly_ctx *ctx, const struct lysp_module *mod)
1562{
Radek Krejci1deb5be2020-08-26 16:43:36 +02001563 for (uint32_t u = 0; u < ctx->list.count; ++u) {
Michal Vasko22df3f02020-08-24 13:29:22 +02001564 if (((struct lys_module *)ctx->list.objs[u])->parsed == mod) {
Michal Vasko69730152020-10-09 16:30:07 +02001565 return (struct lys_module *)ctx->list.objs[u];
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001566 }
1567 }
1568 return NULL;
1569}
1570
Radek Krejcid6b76452019-09-03 17:03:03 +02001571enum ly_stmt
Radek Krejcid54412f2020-12-17 20:25:35 +01001572lysp_match_kw(struct ly_in *in, uint64_t *indent)
David Sedlákc10e7902018-12-17 02:17:59 +01001573{
David Sedlák1bccdfa2019-06-17 15:55:27 +02001574/**
Radek Krejcid54412f2020-12-17 20:25:35 +01001575 * @brief Move the input by COUNT items. Also updates the indent value in yang parser context
David Sedlák1bccdfa2019-06-17 15:55:27 +02001576 * @param[in] COUNT number of items for which the DATA pointer is supposed to move on.
Michal Vasko64246d82020-08-19 12:35:00 +02001577 *
1578 * *INDENT-OFF*
David Sedlák1bccdfa2019-06-17 15:55:27 +02001579 */
Radek Krejcid54412f2020-12-17 20:25:35 +01001580#define MOVE_IN(COUNT) \
1581 ly_in_skip(in, COUNT); \
1582 if (indent) { \
1583 (*indent)+=COUNT; \
1584 }
1585#define IF_KW(STR, LEN, STMT) \
1586 if (!strncmp(in->current, STR, LEN)) { \
1587 MOVE_IN(LEN); \
1588 (*kw)=STMT; \
1589 }
1590#define IF_KW_PREFIX(STR, LEN) \
1591 if (!strncmp(in->current, STR, LEN)) { \
1592 MOVE_IN(LEN);
1593#define IF_KW_PREFIX_END \
1594 }
David Sedlák572e7ab2019-06-04 16:01:58 +02001595
Michal Vasko63f3d842020-07-08 10:10:14 +02001596 const char *start = in->current;
Radek Krejcid6b76452019-09-03 17:03:03 +02001597 enum ly_stmt result = LY_STMT_NONE;
1598 enum ly_stmt *kw = &result;
David Sedlák1bccdfa2019-06-17 15:55:27 +02001599 /* read the keyword itself */
Michal Vasko63f3d842020-07-08 10:10:14 +02001600 switch (in->current[0]) {
David Sedlák23a59a62018-10-26 13:08:02 +02001601 case 'a':
Radek Krejcid54412f2020-12-17 20:25:35 +01001602 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001603 IF_KW("rgument", 7, LY_STMT_ARGUMENT)
1604 else IF_KW("ugment", 6, LY_STMT_AUGMENT)
1605 else IF_KW("ction", 5, LY_STMT_ACTION)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001606 else IF_KW_PREFIX("ny", 2)
Radek Krejcid6b76452019-09-03 17:03:03 +02001607 IF_KW("data", 4, LY_STMT_ANYDATA)
1608 else IF_KW("xml", 3, LY_STMT_ANYXML)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001609 IF_KW_PREFIX_END
David Sedlák23a59a62018-10-26 13:08:02 +02001610 break;
1611 case 'b':
Radek Krejcid54412f2020-12-17 20:25:35 +01001612 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001613 IF_KW("ase", 3, LY_STMT_BASE)
1614 else IF_KW("elongs-to", 9, LY_STMT_BELONGS_TO)
1615 else IF_KW("it", 2, LY_STMT_BIT)
David Sedlák23a59a62018-10-26 13:08:02 +02001616 break;
1617 case 'c':
Radek Krejcid54412f2020-12-17 20:25:35 +01001618 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001619 IF_KW("ase", 3, LY_STMT_CASE)
1620 else IF_KW("hoice", 5, LY_STMT_CHOICE)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001621 else IF_KW_PREFIX("on", 2)
Radek Krejcid6b76452019-09-03 17:03:03 +02001622 IF_KW("fig", 3, LY_STMT_CONFIG)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001623 else IF_KW_PREFIX("ta", 2)
Radek Krejcid6b76452019-09-03 17:03:03 +02001624 IF_KW("ct", 2, LY_STMT_CONTACT)
1625 else IF_KW("iner", 4, LY_STMT_CONTAINER)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001626 IF_KW_PREFIX_END
1627 IF_KW_PREFIX_END
David Sedlák23a59a62018-10-26 13:08:02 +02001628 break;
1629 case 'd':
Radek Krejcid54412f2020-12-17 20:25:35 +01001630 MOVE_IN(1);
David Sedlák1bccdfa2019-06-17 15:55:27 +02001631 IF_KW_PREFIX("e", 1)
Radek Krejcid6b76452019-09-03 17:03:03 +02001632 IF_KW("fault", 5, LY_STMT_DEFAULT)
1633 else IF_KW("scription", 9, LY_STMT_DESCRIPTION)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001634 else IF_KW_PREFIX("viat", 4)
Radek Krejcid6b76452019-09-03 17:03:03 +02001635 IF_KW("e", 1, LY_STMT_DEVIATE)
1636 else IF_KW("ion", 3, LY_STMT_DEVIATION)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001637 IF_KW_PREFIX_END
1638 IF_KW_PREFIX_END
David Sedlák23a59a62018-10-26 13:08:02 +02001639 break;
1640 case 'e':
Radek Krejcid54412f2020-12-17 20:25:35 +01001641 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001642 IF_KW("num", 3, LY_STMT_ENUM)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001643 else IF_KW_PREFIX("rror-", 5)
Radek Krejcid6b76452019-09-03 17:03:03 +02001644 IF_KW("app-tag", 7, LY_STMT_ERROR_APP_TAG)
1645 else IF_KW("message", 7, LY_STMT_ERROR_MESSAGE)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001646 IF_KW_PREFIX_END
Radek Krejcid6b76452019-09-03 17:03:03 +02001647 else IF_KW("xtension", 8, LY_STMT_EXTENSION)
David Sedlák23a59a62018-10-26 13:08:02 +02001648 break;
1649 case 'f':
Radek Krejcid54412f2020-12-17 20:25:35 +01001650 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001651 IF_KW("eature", 6, LY_STMT_FEATURE)
1652 else IF_KW("raction-digits", 14, LY_STMT_FRACTION_DIGITS)
David Sedlák23a59a62018-10-26 13:08:02 +02001653 break;
1654 case 'g':
Radek Krejcid54412f2020-12-17 20:25:35 +01001655 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001656 IF_KW("rouping", 7, LY_STMT_GROUPING)
David Sedlák23a59a62018-10-26 13:08:02 +02001657 break;
1658 case 'i':
Radek Krejcid54412f2020-12-17 20:25:35 +01001659 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001660 IF_KW("dentity", 7, LY_STMT_IDENTITY)
1661 else IF_KW("f-feature", 9, LY_STMT_IF_FEATURE)
1662 else IF_KW("mport", 5, LY_STMT_IMPORT)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001663 else IF_KW_PREFIX("n", 1)
Radek Krejcid6b76452019-09-03 17:03:03 +02001664 IF_KW("clude", 5, LY_STMT_INCLUDE)
1665 else IF_KW("put", 3, LY_STMT_INPUT)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001666 IF_KW_PREFIX_END
David Sedlák23a59a62018-10-26 13:08:02 +02001667 break;
1668 case 'k':
Radek Krejcid54412f2020-12-17 20:25:35 +01001669 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001670 IF_KW("ey", 2, LY_STMT_KEY)
David Sedlák23a59a62018-10-26 13:08:02 +02001671 break;
1672 case 'l':
Radek Krejcid54412f2020-12-17 20:25:35 +01001673 MOVE_IN(1);
David Sedlák1bccdfa2019-06-17 15:55:27 +02001674 IF_KW_PREFIX("e", 1)
Radek Krejcid6b76452019-09-03 17:03:03 +02001675 IF_KW("af-list", 7, LY_STMT_LEAF_LIST)
1676 else IF_KW("af", 2, LY_STMT_LEAF)
1677 else IF_KW("ngth", 4, LY_STMT_LENGTH)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001678 IF_KW_PREFIX_END
Radek Krejcid6b76452019-09-03 17:03:03 +02001679 else IF_KW("ist", 3, LY_STMT_LIST)
David Sedlák23a59a62018-10-26 13:08:02 +02001680 break;
1681 case 'm':
Radek Krejcid54412f2020-12-17 20:25:35 +01001682 MOVE_IN(1);
David Sedlák1bccdfa2019-06-17 15:55:27 +02001683 IF_KW_PREFIX("a", 1)
Radek Krejcid6b76452019-09-03 17:03:03 +02001684 IF_KW("ndatory", 7, LY_STMT_MANDATORY)
1685 else IF_KW("x-elements", 10, LY_STMT_MAX_ELEMENTS)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001686 IF_KW_PREFIX_END
Radek Krejcid6b76452019-09-03 17:03:03 +02001687 else IF_KW("in-elements", 11, LY_STMT_MIN_ELEMENTS)
1688 else IF_KW("ust", 3, LY_STMT_MUST)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001689 else IF_KW_PREFIX("od", 2)
Radek Krejcid6b76452019-09-03 17:03:03 +02001690 IF_KW("ule", 3, LY_STMT_MODULE)
1691 else IF_KW("ifier", 5, LY_STMT_MODIFIER)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001692 IF_KW_PREFIX_END
David Sedlák23a59a62018-10-26 13:08:02 +02001693 break;
1694 case 'n':
Radek Krejcid54412f2020-12-17 20:25:35 +01001695 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001696 IF_KW("amespace", 8, LY_STMT_NAMESPACE)
1697 else IF_KW("otification", 11, LY_STMT_NOTIFICATION)
David Sedlák23a59a62018-10-26 13:08:02 +02001698 break;
1699 case 'o':
Radek Krejcid54412f2020-12-17 20:25:35 +01001700 MOVE_IN(1);
David Sedlák1bccdfa2019-06-17 15:55:27 +02001701 IF_KW_PREFIX("r", 1)
Radek Krejcid6b76452019-09-03 17:03:03 +02001702 IF_KW("dered-by", 8, LY_STMT_ORDERED_BY)
1703 else IF_KW("ganization", 10, LY_STMT_ORGANIZATION)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001704 IF_KW_PREFIX_END
Radek Krejcid6b76452019-09-03 17:03:03 +02001705 else IF_KW("utput", 5, LY_STMT_OUTPUT)
David Sedlák23a59a62018-10-26 13:08:02 +02001706 break;
1707 case 'p':
Radek Krejcid54412f2020-12-17 20:25:35 +01001708 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001709 IF_KW("ath", 3, LY_STMT_PATH)
1710 else IF_KW("attern", 6, LY_STMT_PATTERN)
1711 else IF_KW("osition", 7, LY_STMT_POSITION)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001712 else IF_KW_PREFIX("re", 2)
Radek Krejcid6b76452019-09-03 17:03:03 +02001713 IF_KW("fix", 3, LY_STMT_PREFIX)
1714 else IF_KW("sence", 5, LY_STMT_PRESENCE)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001715 IF_KW_PREFIX_END
David Sedlák23a59a62018-10-26 13:08:02 +02001716 break;
1717 case 'r':
Radek Krejcid54412f2020-12-17 20:25:35 +01001718 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001719 IF_KW("ange", 4, LY_STMT_RANGE)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001720 else IF_KW_PREFIX("e", 1)
1721 IF_KW_PREFIX("f", 1)
Radek Krejcid6b76452019-09-03 17:03:03 +02001722 IF_KW("erence", 6, LY_STMT_REFERENCE)
1723 else IF_KW("ine", 3, LY_STMT_REFINE)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001724 IF_KW_PREFIX_END
Radek Krejcid6b76452019-09-03 17:03:03 +02001725 else IF_KW("quire-instance", 14, LY_STMT_REQUIRE_INSTANCE)
1726 else IF_KW("vision-date", 11, LY_STMT_REVISION_DATE)
1727 else IF_KW("vision", 6, LY_STMT_REVISION)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001728 IF_KW_PREFIX_END
Radek Krejcid6b76452019-09-03 17:03:03 +02001729 else IF_KW("pc", 2, LY_STMT_RPC)
David Sedlák23a59a62018-10-26 13:08:02 +02001730 break;
1731 case 's':
Radek Krejcid54412f2020-12-17 20:25:35 +01001732 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001733 IF_KW("tatus", 5, LY_STMT_STATUS)
1734 else IF_KW("ubmodule", 8, LY_STMT_SUBMODULE)
David Sedlák23a59a62018-10-26 13:08:02 +02001735 break;
1736 case 't':
Radek Krejcid54412f2020-12-17 20:25:35 +01001737 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001738 IF_KW("ypedef", 6, LY_STMT_TYPEDEF)
1739 else IF_KW("ype", 3, LY_STMT_TYPE)
David Sedlák23a59a62018-10-26 13:08:02 +02001740 break;
1741 case 'u':
Radek Krejcid54412f2020-12-17 20:25:35 +01001742 MOVE_IN(1);
David Sedlák1bccdfa2019-06-17 15:55:27 +02001743 IF_KW_PREFIX("ni", 2)
Radek Krejcid6b76452019-09-03 17:03:03 +02001744 IF_KW("que", 3, LY_STMT_UNIQUE)
1745 else IF_KW("ts", 2, LY_STMT_UNITS)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001746 IF_KW_PREFIX_END
Radek Krejcid6b76452019-09-03 17:03:03 +02001747 else IF_KW("ses", 3, LY_STMT_USES)
David Sedlák23a59a62018-10-26 13:08:02 +02001748 break;
1749 case 'v':
Radek Krejcid54412f2020-12-17 20:25:35 +01001750 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001751 IF_KW("alue", 4, LY_STMT_VALUE)
David Sedlák23a59a62018-10-26 13:08:02 +02001752 break;
1753 case 'w':
Radek Krejcid54412f2020-12-17 20:25:35 +01001754 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001755 IF_KW("hen", 3, LY_STMT_WHEN)
David Sedlák23a59a62018-10-26 13:08:02 +02001756 break;
1757 case 'y':
Radek Krejcid54412f2020-12-17 20:25:35 +01001758 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001759 IF_KW("ang-version", 11, LY_STMT_YANG_VERSION)
1760 else IF_KW("in-element", 10, LY_STMT_YIN_ELEMENT)
David Sedlák23a59a62018-10-26 13:08:02 +02001761 break;
David Sedlák23a59a62018-10-26 13:08:02 +02001762 default:
Radek Krejcid54412f2020-12-17 20:25:35 +01001763 /* if indent is not NULL we are matching keyword from YANG data */
1764 if (indent) {
Michal Vasko63f3d842020-07-08 10:10:14 +02001765 if (in->current[0] == ';') {
Radek Krejcid54412f2020-12-17 20:25:35 +01001766 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001767 *kw = LY_STMT_SYNTAX_SEMICOLON;
Michal Vasko63f3d842020-07-08 10:10:14 +02001768 } else if (in->current[0] == '{') {
Radek Krejcid54412f2020-12-17 20:25:35 +01001769 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001770 *kw = LY_STMT_SYNTAX_LEFT_BRACE;
Michal Vasko63f3d842020-07-08 10:10:14 +02001771 } else if (in->current[0] == '}') {
Radek Krejcid54412f2020-12-17 20:25:35 +01001772 MOVE_IN(1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001773 *kw = LY_STMT_SYNTAX_RIGHT_BRACE;
David Sedlák1bccdfa2019-06-17 15:55:27 +02001774 }
1775 }
David Sedlák23a59a62018-10-26 13:08:02 +02001776 break;
1777 }
1778
Michal Vasko63f3d842020-07-08 10:10:14 +02001779 if ((*kw < LY_STMT_SYNTAX_SEMICOLON) && isalnum(in->current[0])) {
Radek Krejci6e546bf2020-05-19 16:16:19 +02001780 /* the keyword is not terminated */
1781 *kw = LY_STMT_NONE;
Michal Vasko63f3d842020-07-08 10:10:14 +02001782 in->current = start;
Radek Krejci6e546bf2020-05-19 16:16:19 +02001783 }
1784
David Sedlák1bccdfa2019-06-17 15:55:27 +02001785#undef IF_KW
1786#undef IF_KW_PREFIX
1787#undef IF_KW_PREFIX_END
David Sedlák18730132019-03-15 15:51:34 +01001788#undef MOVE_IN
Michal Vasko64246d82020-08-19 12:35:00 +02001789 /* *INDENT-ON* */
David Sedlák18730132019-03-15 15:51:34 +01001790
David Sedlák1bccdfa2019-06-17 15:55:27 +02001791 return result;
David Sedlák23a59a62018-10-26 13:08:02 +02001792}
David Sedlákecf5eb82019-06-03 14:12:44 +02001793
Radek Krejci85ac8312021-03-03 20:21:33 +01001794LY_ERR
1795lysp_ext_find_definition(const struct ly_ctx *ctx, const struct lysp_ext_instance *ext, const struct lys_module **ext_mod,
1796 struct lysp_ext **ext_def)
1797{
Radek Krejci85ac8312021-03-03 20:21:33 +01001798 const char *tmp, *name, *prefix;
1799 size_t pref_len, name_len;
1800 LY_ARRAY_COUNT_TYPE v;
1801 const struct lys_module *mod = NULL;
1802
Radek Krejcicbb62422021-03-15 09:29:21 +01001803 assert(ext_def);
1804
Radek Krejci85ac8312021-03-03 20:21:33 +01001805 *ext_def = NULL;
1806 if (ext_mod) {
1807 *ext_mod = NULL;
1808 }
1809
Radek Krejci677abea2021-03-05 14:24:53 +01001810 /* parse the prefix, the nodeid was previously already parsed and checked */
Radek Krejci85ac8312021-03-03 20:21:33 +01001811 tmp = ext->name;
Radek Krejci677abea2021-03-05 14:24:53 +01001812 ly_parse_nodeid(&tmp, &prefix, &pref_len, &name, &name_len);
Radek Krejci85ac8312021-03-03 20:21:33 +01001813
1814 /* get module where the extension definition should be placed */
1815 mod = ly_resolve_prefix(ctx, prefix, pref_len, ext->format, ext->prefix_data);
1816 if (!mod) {
Radek Krejci422afb12021-03-04 16:38:16 +01001817 LOGVAL(ctx, LYVE_REFERENCE, "Invalid prefix \"%.*s\" used for extension instance identifier.", (int)pref_len, prefix);
Radek Krejci85ac8312021-03-03 20:21:33 +01001818 return LY_EVALID;
1819 } else if (!mod->parsed->extensions) {
1820 LOGVAL(ctx, LYVE_REFERENCE, "Extension instance \"%s\" refers \"%s\" module that does not contain extension definitions.",
1821 ext->name, mod->name);
1822 return LY_EVALID;
1823 }
1824
1825 /* find the parsed extension definition there */
1826 LY_ARRAY_FOR(mod->parsed->extensions, v) {
1827 if (!strcmp(name, mod->parsed->extensions[v].name)) {
1828 *ext_def = &mod->parsed->extensions[v];
1829 break;
1830 }
1831 }
1832
Radek Krejcicbb62422021-03-15 09:29:21 +01001833 if (!(*ext_def)) {
Radek Krejci85ac8312021-03-03 20:21:33 +01001834 LOGVAL(ctx, LYVE_REFERENCE, "Extension definition of extension instance \"%s\" not found.", ext->name);
1835 return LY_EVALID;
1836 }
1837
1838 if (ext_mod) {
1839 *ext_mod = mod;
1840 }
1841 return LY_SUCCESS;
1842}
1843
1844LY_ERR
1845lysp_ext_instance_resolve_argument(struct ly_ctx *ctx, struct lysp_ext_instance *ext_p, struct lysp_ext *ext_def)
1846{
Radek Krejci9f87b0c2021-03-05 14:45:26 +01001847 if (!ext_def->argname || ext_p->argument) {
Radek Krejci85ac8312021-03-03 20:21:33 +01001848 /* nothing to do */
1849 return LY_SUCCESS;
1850 }
1851
Radek Krejci8df109d2021-04-23 12:19:08 +02001852 if (ext_p->format == LY_VALUE_XML) {
Radek Krejci85ac8312021-03-03 20:21:33 +01001853 /* Schema was parsed from YIN and an argument is expected, ... */
1854 struct lysp_stmt *stmt = NULL;
1855
1856 if (ext_def->flags & LYS_YINELEM_TRUE) {
1857 /* ... argument was the first XML child element */
1858 for (stmt = ext_p->child; stmt && (stmt->flags & LYS_YIN_ATTR); stmt = stmt->next) {}
1859 if (stmt) {
1860 const char *arg, *ext, *name_arg, *name_ext, *prefix_arg, *prefix_ext;
1861 size_t name_arg_len, name_ext_len, prefix_arg_len, prefix_ext_len;
1862
1863 stmt = ext_p->child;
1864
1865 arg = stmt->stmt;
1866 ly_parse_nodeid(&arg, &prefix_arg, &prefix_arg_len, &name_arg, &name_arg_len);
Radek Krejci9f87b0c2021-03-05 14:45:26 +01001867 if (ly_strncmp(ext_def->argname, name_arg, name_arg_len)) {
Radek Krejci85ac8312021-03-03 20:21:33 +01001868 LOGVAL(ctx, LYVE_SEMANTICS, "Extension instance \"%s\" expects argument element \"%s\" as its first XML child, "
Radek Krejci9f87b0c2021-03-05 14:45:26 +01001869 "but \"%.*s\" element found.", ext_p->name, ext_def->argname, (int)name_arg_len, name_arg);
Radek Krejci85ac8312021-03-03 20:21:33 +01001870 return LY_EVALID;
1871 }
1872
1873 /* check namespace - all the extension instances must be qualified and argument element is expected in the same
1874 * namespace. Do not check just prefixes, there can be different prefixes pointing to the same namespace */
1875 ext = ext_p->name; /* include prefix */
1876 ly_parse_nodeid(&ext, &prefix_ext, &prefix_ext_len, &name_ext, &name_ext_len);
1877
1878 if (ly_resolve_prefix(ctx, prefix_ext, prefix_ext_len, ext_p->format, ext_p->prefix_data) !=
1879 ly_resolve_prefix(ctx, prefix_arg, prefix_arg_len, stmt->format, stmt->prefix_data)) {
1880 LOGVAL(ctx, LYVE_SEMANTICS, "Extension instance \"%s\" element and its argument element \"%s\" are "
Radek Krejci9f87b0c2021-03-05 14:45:26 +01001881 "expected in the same namespace, but they differ.", ext_p->name, ext_def->argname);
Radek Krejci85ac8312021-03-03 20:21:33 +01001882 return LY_EVALID;
1883 }
1884 }
1885 } else {
1886 /* ... argument was one of the XML attributes which are represented as child stmt
1887 * with LYS_YIN_ATTR flag */
1888 for (stmt = ext_p->child; stmt && (stmt->flags & LYS_YIN_ATTR); stmt = stmt->next) {
Radek Krejci9f87b0c2021-03-05 14:45:26 +01001889 if (!strcmp(stmt->stmt, ext_def->argname)) {
Radek Krejci85ac8312021-03-03 20:21:33 +01001890 /* this is the extension's argument */
1891 break;
1892 }
1893 }
1894 }
1895
1896 if (stmt) {
1897 LY_CHECK_RET(lydict_insert(ctx, stmt->arg, 0, &ext_p->argument));
1898 stmt->flags |= LYS_YIN_ARGUMENT;
1899 }
1900 }
1901
1902 if (!ext_p->argument) {
1903 /* missing extension's argument */
1904 LOGVAL(ctx, LYVE_SEMANTICS, "Extension instance \"%s\" misses argument %s\"%s\".",
Radek Krejci9f87b0c2021-03-05 14:45:26 +01001905 ext_p->name, (ext_def->flags & LYS_YINELEM_TRUE) ? "element " : "", ext_def->argname);
Radek Krejci85ac8312021-03-03 20:21:33 +01001906 return LY_EVALID;
1907 }
1908
1909 return LY_SUCCESS;
1910}
1911
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001912LY_ARRAY_COUNT_TYPE
Radek Krejcifc596f92021-02-26 22:40:26 +01001913lysp_ext_instance_iter(struct lysp_ext_instance *ext, LY_ARRAY_COUNT_TYPE index, enum ly_stmt substmt)
Radek Krejcid3ca0632019-04-16 16:54:54 +02001914{
1915 LY_CHECK_ARG_RET(NULL, ext, LY_EINVAL);
1916
Michal Vaskod989ba02020-08-24 10:59:24 +02001917 for ( ; index < LY_ARRAY_COUNT(ext); index++) {
Radek Krejciab430862021-03-02 20:13:40 +01001918 if (ext[index].parent_stmt == substmt) {
Radek Krejcid3ca0632019-04-16 16:54:54 +02001919 return index;
1920 }
1921 }
1922
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001923 return LY_ARRAY_COUNT(ext);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001924}
1925
Michal Vasko62ed12d2020-05-21 10:08:25 +02001926const struct lysc_node *
Michal Vasko72244882021-01-12 15:21:05 +01001927lysc_data_node(const struct lysc_node *schema)
Michal Vasko62ed12d2020-05-21 10:08:25 +02001928{
1929 const struct lysc_node *parent;
1930
Michal Vasko72244882021-01-12 15:21:05 +01001931 parent = schema;
Radek Krejcidf549132021-01-21 10:32:32 +01001932 while (parent && !(parent->nodetype & (LYS_CONTAINER | LYS_LEAF | LYS_LEAFLIST | LYS_LIST | LYS_ANYDATA | LYS_RPC |
1933 LYS_ACTION | LYS_NOTIF))) {
Radek Krejci7d95fbb2021-01-26 17:33:13 +01001934 parent = parent->parent;
Michal Vasko72244882021-01-12 15:21:05 +01001935 }
Michal Vasko62ed12d2020-05-21 10:08:25 +02001936
1937 return parent;
1938}
Michal Vaskof4258e12021-06-15 12:11:42 +02001939
1940ly_bool
1941lys_has_recompiled(const struct lys_module *mod)
1942{
1943 LY_ARRAY_COUNT_TYPE u;
1944
1945 if (LYSP_HAS_RECOMPILED(mod->parsed)) {
1946 return 1;
1947 }
1948
1949 LY_ARRAY_FOR(mod->parsed->includes, u) {
1950 if (LYSP_HAS_RECOMPILED(mod->parsed->includes[u].submodule)) {
1951 return 1;
1952 }
1953 }
1954
1955 return 0;
1956}
1957
1958ly_bool
1959lys_has_compiled(const struct lys_module *mod)
1960{
1961 LY_ARRAY_COUNT_TYPE u;
1962
1963 if (LYSP_HAS_COMPILED(mod->parsed)) {
1964 return 1;
1965 }
1966
1967 LY_ARRAY_FOR(mod->parsed->includes, u) {
1968 if (LYSP_HAS_COMPILED(mod->parsed->includes[u].submodule)) {
1969 return 1;
1970 }
1971 }
1972
1973 return 0;
1974}
Michal Vasko7ee5be22021-06-16 17:03:34 +02001975
1976ly_bool
1977lys_has_groupings(const struct lys_module *mod)
1978{
1979 LY_ARRAY_COUNT_TYPE u;
1980
1981 if (mod->parsed->groupings) {
1982 return 1;
1983 }
1984
1985 LY_ARRAY_FOR(mod->parsed->includes, u) {
1986 if (mod->parsed->includes[u].submodule->groupings) {
1987 return 1;
1988 }
1989 }
1990
1991 return 0;
1992}