blob: 7933d71952115ed59f4d5f640fee2f22d211e7b2 [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 Krejcie7b95092019-05-15 11:03:07 +020028#include "hash_table.h"
Radek Krejci47fab892020-11-05 17:02:41 +010029#include "in.h"
Michal Vaskoafac7822020-10-20 14:22:26 +020030#include "in_internal.h"
Radek Krejci47fab892020-11-05 17:02:41 +010031#include "log.h"
Michal Vasko69730152020-10-09 16:30:07 +020032#include "parser_schema.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020033#include "set.h"
34#include "tree.h"
Radek Krejci47fab892020-11-05 17:02:41 +010035#include "tree_data.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020036#include "tree_schema.h"
Radek Krejci86d106e2018-10-18 09:53:19 +020037#include "tree_schema_internal.h"
38
Radek Krejci85747952019-06-07 16:43:43 +020039LY_ERR
Radek Krejcie7b95092019-05-15 11:03:07 +020040lysp_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 +020041{
42 struct lysp_import *i;
43
Michal Vasko69730152020-10-09 16:30:07 +020044 if (module_prefix && (&module_prefix != value) && !strcmp(module_prefix, *value)) {
Michal Vaskob36053d2020-03-26 15:49:30 +010045 LOGVAL_PARSER(ctx, LYVE_REFERENCE, "Prefix \"%s\" already used as module prefix.", *value);
Radek Krejci86d106e2018-10-18 09:53:19 +020046 return LY_EEXIST;
47 }
Radek Krejci0bcdaed2019-01-10 10:21:34 +010048 LY_ARRAY_FOR(imports, struct lysp_import, i) {
Michal Vasko69730152020-10-09 16:30:07 +020049 if (i->prefix && (&i->prefix != value) && !strcmp(i->prefix, *value)) {
Michal Vaskob36053d2020-03-26 15:49:30 +010050 LOGVAL_PARSER(ctx, LYVE_REFERENCE, "Prefix \"%s\" already used to import \"%s\" module.", *value, i->name);
Radek Krejci0bcdaed2019-01-10 10:21:34 +010051 return LY_EEXIST;
Radek Krejci86d106e2018-10-18 09:53:19 +020052 }
53 }
54 return LY_SUCCESS;
55}
56
57LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +020058lysp_check_date(struct lys_parser_ctx *ctx, const char *date, uint8_t date_len, const char *stmt)
Radek Krejci86d106e2018-10-18 09:53:19 +020059{
Radek Krejci86d106e2018-10-18 09:53:19 +020060 struct tm tm, tm_;
61 char *r;
62
Michal Vaskob36053d2020-03-26 15:49:30 +010063 LY_CHECK_ARG_RET(ctx ? PARSER_CTX(ctx) : NULL, date, LY_EINVAL);
64 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 +020065
Radek Krejcif13b87b2020-12-01 22:02:17 +010066 /* check format: YYYY-MM-DD */
Radek Krejci1deb5be2020-08-26 16:43:36 +020067 for (uint8_t i = 0; i < date_len; i++) {
Michal Vasko69730152020-10-09 16:30:07 +020068 if ((i == 4) || (i == 7)) {
Radek Krejci86d106e2018-10-18 09:53:19 +020069 if (date[i] != '-') {
70 goto error;
71 }
72 } else if (!isdigit(date[i])) {
73 goto error;
74 }
75 }
76
77 /* check content, e.g. 2018-02-31 */
78 memset(&tm, 0, sizeof tm);
79 r = strptime(date, "%Y-%m-%d", &tm);
Michal Vasko69730152020-10-09 16:30:07 +020080 if (!r || (r != &date[LY_REV_SIZE - 1])) {
Radek Krejci86d106e2018-10-18 09:53:19 +020081 goto error;
82 }
83 memcpy(&tm_, &tm, sizeof tm);
84 mktime(&tm_); /* mktime modifies tm_ if it refers invalid date */
85 if (tm.tm_mday != tm_.tm_mday) { /* e.g 2018-02-29 -> 2018-03-01 */
86 /* checking days is enough, since other errors
87 * have been checked by strptime() */
88 goto error;
89 }
90
91 return LY_SUCCESS;
92
93error:
Radek Krejcid33273d2018-10-25 14:55:52 +020094 if (stmt) {
Radek Krejcibbe09a92018-11-08 09:36:54 +010095 if (ctx) {
Michal Vaskob36053d2020-03-26 15:49:30 +010096 LOGVAL_PARSER(ctx, LY_VCODE_INVAL, date_len, date, stmt);
Radek Krejcibbe09a92018-11-08 09:36:54 +010097 } else {
98 LOGVAL(NULL, LY_VLOG_NONE, NULL, LY_VCODE_INVAL, date_len, date, stmt);
99 }
Radek Krejcid33273d2018-10-25 14:55:52 +0200100 }
Radek Krejci86d106e2018-10-18 09:53:19 +0200101 return LY_EINVAL;
102}
103
104void
105lysp_sort_revisions(struct lysp_revision *revs)
106{
Radek Krejci857189e2020-09-01 13:26:36 +0200107 LY_ARRAY_COUNT_TYPE i, r;
Radek Krejci86d106e2018-10-18 09:53:19 +0200108 struct lysp_revision rev;
109
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200110 for (i = 1, r = 0; revs && i < LY_ARRAY_COUNT(revs); i++) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200111 if (strcmp(revs[i].date, revs[r].date) > 0) {
Radek Krejci86d106e2018-10-18 09:53:19 +0200112 r = i;
113 }
114 }
115
116 if (r) {
117 /* the newest revision is not on position 0, switch them */
Radek Krejci2c4e7172018-10-19 15:56:26 +0200118 memcpy(&rev, &revs[0], sizeof rev);
119 memcpy(&revs[0], &revs[r], sizeof rev);
120 memcpy(&revs[r], &rev, sizeof rev);
Radek Krejci86d106e2018-10-18 09:53:19 +0200121 }
122}
Radek Krejci151a5b72018-10-19 14:21:44 +0200123
Radek Krejcibbe09a92018-11-08 09:36:54 +0100124static const struct lysp_tpdf *
125lysp_type_match(const char *name, struct lysp_node *node)
126{
Radek Krejci0fb28562018-12-13 15:17:37 +0100127 const struct lysp_tpdf *typedefs;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200128 LY_ARRAY_COUNT_TYPE u;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100129
Radek Krejci0fb28562018-12-13 15:17:37 +0100130 typedefs = lysp_node_typedefs(node);
131 LY_ARRAY_FOR(typedefs, u) {
132 if (!strcmp(name, typedefs[u].name)) {
133 /* match */
134 return &typedefs[u];
Radek Krejcibbe09a92018-11-08 09:36:54 +0100135 }
136 }
137
138 return NULL;
139}
140
Radek Krejci4f28eda2018-11-12 11:46:16 +0100141static LY_DATA_TYPE
142lysp_type_str2builtin(const char *name, size_t len)
143{
144 if (len >= 4) { /* otherwise it does not match any built-in type */
145 if (name[0] == 'b') {
146 if (name[1] == 'i') {
Michal Vasko69730152020-10-09 16:30:07 +0200147 if ((len == 6) && !strncmp(&name[2], "nary", 4)) {
Radek Krejci4f28eda2018-11-12 11:46:16 +0100148 return LY_TYPE_BINARY;
Michal Vasko69730152020-10-09 16:30:07 +0200149 } else if ((len == 4) && !strncmp(&name[2], "ts", 2)) {
Radek Krejci4f28eda2018-11-12 11:46:16 +0100150 return LY_TYPE_BITS;
151 }
Michal Vasko69730152020-10-09 16:30:07 +0200152 } else if ((len == 7) && !strncmp(&name[1], "oolean", 6)) {
Radek Krejci4f28eda2018-11-12 11:46:16 +0100153 return LY_TYPE_BOOL;
154 }
155 } else if (name[0] == 'd') {
Michal Vasko69730152020-10-09 16:30:07 +0200156 if ((len == 9) && !strncmp(&name[1], "ecimal64", 8)) {
Radek Krejci4f28eda2018-11-12 11:46:16 +0100157 return LY_TYPE_DEC64;
158 }
159 } else if (name[0] == 'e') {
Michal Vasko69730152020-10-09 16:30:07 +0200160 if ((len == 5) && !strncmp(&name[1], "mpty", 4)) {
Radek Krejci4f28eda2018-11-12 11:46:16 +0100161 return LY_TYPE_EMPTY;
Michal Vasko69730152020-10-09 16:30:07 +0200162 } else if ((len == 11) && !strncmp(&name[1], "numeration", 10)) {
Radek Krejci4f28eda2018-11-12 11:46:16 +0100163 return LY_TYPE_ENUM;
164 }
165 } else if (name[0] == 'i') {
166 if (name[1] == 'n') {
Michal Vasko69730152020-10-09 16:30:07 +0200167 if ((len == 4) && !strncmp(&name[2], "t8", 2)) {
Radek Krejci4f28eda2018-11-12 11:46:16 +0100168 return LY_TYPE_INT8;
169 } else if (len == 5) {
170 if (!strncmp(&name[2], "t16", 3)) {
171 return LY_TYPE_INT16;
172 } else if (!strncmp(&name[2], "t32", 3)) {
173 return LY_TYPE_INT32;
174 } else if (!strncmp(&name[2], "t64", 3)) {
175 return LY_TYPE_INT64;
176 }
Michal Vasko69730152020-10-09 16:30:07 +0200177 } else if ((len == 19) && !strncmp(&name[2], "stance-identifier", 17)) {
Radek Krejci4f28eda2018-11-12 11:46:16 +0100178 return LY_TYPE_INST;
179 }
Michal Vasko69730152020-10-09 16:30:07 +0200180 } else if ((len == 11) && !strncmp(&name[1], "dentityref", 10)) {
Radek Krejci4f28eda2018-11-12 11:46:16 +0100181 return LY_TYPE_IDENT;
182 }
183 } else if (name[0] == 'l') {
Michal Vasko69730152020-10-09 16:30:07 +0200184 if ((len == 7) && !strncmp(&name[1], "eafref", 6)) {
Radek Krejci4f28eda2018-11-12 11:46:16 +0100185 return LY_TYPE_LEAFREF;
186 }
187 } else if (name[0] == 's') {
Michal Vasko69730152020-10-09 16:30:07 +0200188 if ((len == 6) && !strncmp(&name[1], "tring", 5)) {
Radek Krejci4f28eda2018-11-12 11:46:16 +0100189 return LY_TYPE_STRING;
190 }
191 } else if (name[0] == 'u') {
192 if (name[1] == 'n') {
Michal Vasko69730152020-10-09 16:30:07 +0200193 if ((len == 5) && !strncmp(&name[2], "ion", 3)) {
Radek Krejci4f28eda2018-11-12 11:46:16 +0100194 return LY_TYPE_UNION;
195 }
Michal Vasko69730152020-10-09 16:30:07 +0200196 } else if ((name[1] == 'i') && (name[2] == 'n') && (name[3] == 't')) {
197 if ((len == 5) && (name[4] == '8')) {
Radek Krejci4f28eda2018-11-12 11:46:16 +0100198 return LY_TYPE_UINT8;
199 } else if (len == 6) {
200 if (!strncmp(&name[4], "16", 2)) {
201 return LY_TYPE_UINT16;
202 } else if (!strncmp(&name[4], "32", 2)) {
203 return LY_TYPE_UINT32;
204 } else if (!strncmp(&name[4], "64", 2)) {
205 return LY_TYPE_UINT64;
206 }
207 }
208 }
209 }
210 }
211
212 return LY_TYPE_UNKNOWN;
213}
214
Radek Krejcibbe09a92018-11-08 09:36:54 +0100215LY_ERR
216lysp_type_find(const char *id, struct lysp_node *start_node, struct lysp_module *start_module,
Radek Krejci0f969882020-08-21 16:56:47 +0200217 LY_DATA_TYPE *type, const struct lysp_tpdf **tpdf, struct lysp_node **node, struct lysp_module **module)
Radek Krejcibbe09a92018-11-08 09:36:54 +0100218{
219 const char *str, *name;
220 struct lysp_tpdf *typedefs;
Michal Vaskob2d55bf2020-11-02 15:42:43 +0100221 const struct lys_module *mod;
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);
228 assert(module);
229
Radek Krejci4f28eda2018-11-12 11:46:16 +0100230 *node = NULL;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100231 str = strchr(id, ':');
232 if (str) {
Michal Vaskob2d55bf2020-11-02 15:42:43 +0100233 mod = ly_resolve_prefix(start_module->mod->ctx, id, str - id, LY_PREF_SCHEMA, (void *)start_module);
Michal Vasko7c8439f2020-08-05 13:25:19 +0200234 *module = mod ? mod->parsed : NULL;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100235 name = str + 1;
Radek Krejci4f28eda2018-11-12 11:46:16 +0100236 *type = LY_TYPE_UNKNOWN;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100237 } else {
238 *module = start_module;
239 name = id;
Radek Krejci4f28eda2018-11-12 11:46:16 +0100240
241 /* check for built-in types */
242 *type = lysp_type_str2builtin(name, strlen(name));
243 if (*type) {
244 *tpdf = NULL;
245 return LY_SUCCESS;
246 }
Radek Krejcibbe09a92018-11-08 09:36:54 +0100247 }
248 LY_CHECK_RET(!(*module), LY_ENOTFOUND);
249
Michal Vasko69730152020-10-09 16:30:07 +0200250 if (start_node && (*module == start_module)) {
Radek Krejcibbe09a92018-11-08 09:36:54 +0100251 /* search typedefs in parent's nodes */
252 *node = start_node;
253 while (*node) {
254 *tpdf = lysp_type_match(name, *node);
255 if (*tpdf) {
256 /* match */
257 return LY_SUCCESS;
258 }
259 *node = (*node)->parent;
260 }
261 }
262
263 /* search in top-level typedefs */
264 if ((*module)->typedefs) {
265 LY_ARRAY_FOR((*module)->typedefs, u) {
266 if (!strcmp(name, (*module)->typedefs[u].name)) {
267 /* match */
268 *tpdf = &(*module)->typedefs[u];
269 return LY_SUCCESS;
270 }
271 }
272 }
273
274 /* search in submodules' typedefs */
275 LY_ARRAY_FOR((*module)->includes, u) {
276 typedefs = (*module)->includes[u].submodule->typedefs;
Radek Krejci76b3e962018-12-14 17:01:25 +0100277 LY_ARRAY_FOR(typedefs, v) {
278 if (!strcmp(name, typedefs[v].name)) {
279 /* match */
280 *tpdf = &typedefs[v];
281 return LY_SUCCESS;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100282 }
283 }
284 }
285
286 return LY_ENOTFOUND;
287}
288
David Sedlák6544c182019-07-12 13:17:33 +0200289LY_ERR
David Sedlák07869a52019-07-12 14:28:19 +0200290lysp_check_enum_name(struct lys_parser_ctx *ctx, const char *name, size_t name_len)
David Sedlák6544c182019-07-12 13:17:33 +0200291{
292 if (!name_len) {
293 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Enum name must not be zero-length.");
294 return LY_EVALID;
295 } else if (isspace(name[0]) || isspace(name[name_len - 1])) {
296 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Enum name must not have any leading or trailing whitespaces (\"%.*s\").",
Michal Vasko69730152020-10-09 16:30:07 +0200297 name_len, name);
David Sedlák6544c182019-07-12 13:17:33 +0200298 return LY_EVALID;
299 } else {
300 for (size_t u = 0; u < name_len; ++u) {
301 if (iscntrl(name[u])) {
Michal Vaskob36053d2020-03-26 15:49:30 +0100302 LOGWRN(PARSER_CTX(ctx), "Control characters in enum name should be avoided (\"%.*s\", character number %d).",
Michal Vasko69730152020-10-09 16:30:07 +0200303 name_len, name, u + 1);
David Sedlák6544c182019-07-12 13:17:33 +0200304 break;
305 }
306 }
307 }
308
309 return LY_SUCCESS;
310}
311
Michal Vaskob36053d2020-03-26 15:49:30 +0100312/**
Radek Krejcibbe09a92018-11-08 09:36:54 +0100313 * @brief Check name of a new type to avoid name collisions.
314 *
315 * @param[in] ctx Parser context, module where the type is being defined is taken from here.
316 * @param[in] node Schema node where the type is being defined, NULL in case of a top-level typedef.
317 * @param[in] tpdf Typedef definition to check.
318 * @param[in,out] tpdfs_global Initialized hash table to store temporary data between calls. When the module's
319 * typedefs are checked, caller is supposed to free the table.
320 * @param[in,out] tpdfs_global Initialized hash table to store temporary data between calls. When the module's
321 * typedefs are checked, caller is supposed to free the table.
322 * @return LY_EEXIST in case of collision, LY_SUCCESS otherwise.
323 */
324static LY_ERR
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100325lysp_check_dup_typedef(struct lys_parser_ctx *ctx, struct lysp_node *node, const struct lysp_tpdf *tpdf,
Radek Krejci0f969882020-08-21 16:56:47 +0200326 struct hash_table *tpdfs_global, struct hash_table *tpdfs_scoped)
Radek Krejcibbe09a92018-11-08 09:36:54 +0100327{
328 struct lysp_node *parent;
329 uint32_t hash;
330 size_t name_len;
331 const char *name;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200332 LY_ARRAY_COUNT_TYPE u;
Radek Krejci0fb28562018-12-13 15:17:37 +0100333 const struct lysp_tpdf *typedefs;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100334
335 assert(ctx);
336 assert(tpdf);
337
338 name = tpdf->name;
339 name_len = strlen(name);
340
Radek Krejci4f28eda2018-11-12 11:46:16 +0100341 if (lysp_type_str2builtin(name, name_len)) {
Michal Vaskob36053d2020-03-26 15:49:30 +0100342 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Invalid name \"%s\" of typedef - name collision with a built-in type.", name);
Radek Krejci4f28eda2018-11-12 11:46:16 +0100343 return LY_EEXIST;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100344 }
345
346 /* check locally scoped typedefs (avoid name shadowing) */
347 if (node) {
Radek Krejci0fb28562018-12-13 15:17:37 +0100348 typedefs = lysp_node_typedefs(node);
349 LY_ARRAY_FOR(typedefs, u) {
350 if (&typedefs[u] == tpdf) {
351 break;
352 }
353 if (!strcmp(name, typedefs[u].name)) {
Michal Vaskob36053d2020-03-26 15:49:30 +0100354 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Invalid name \"%s\" of typedef - name collision with sibling type.", name);
Radek Krejci0fb28562018-12-13 15:17:37 +0100355 return LY_EEXIST;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100356 }
357 }
358 /* search typedefs in parent's nodes */
Radek Krejci87e78ca2019-05-02 09:51:29 +0200359 for (parent = node->parent; parent; parent = parent->parent) {
Radek Krejcibbe09a92018-11-08 09:36:54 +0100360 if (lysp_type_match(name, parent)) {
Michal Vaskob36053d2020-03-26 15:49:30 +0100361 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Invalid name \"%s\" of typedef - name collision with another scoped type.", name);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100362 return LY_EEXIST;
363 }
364 }
365 }
366
367 /* check collision with the top-level typedefs */
368 hash = dict_hash(name, name_len);
369 if (node) {
370 lyht_insert(tpdfs_scoped, &name, hash, NULL);
371 if (!lyht_find(tpdfs_global, &name, hash, NULL)) {
Michal Vaskob36053d2020-03-26 15:49:30 +0100372 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Invalid name \"%s\" of typedef - scoped type collide with a top-level type.", name);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100373 return LY_EEXIST;
374 }
375 } else {
376 if (lyht_insert(tpdfs_global, &name, hash, NULL)) {
Michal Vaskob36053d2020-03-26 15:49:30 +0100377 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Invalid name \"%s\" of typedef - name collision with another top-level type.", name);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100378 return LY_EEXIST;
379 }
Radek Krejci3b1f9292018-11-08 10:58:35 +0100380 /* it is not necessary to test collision with the scoped types - in lysp_check_typedefs, all the
381 * top-level typedefs are inserted into the tables before the scoped typedefs, so the collision
382 * is detected in the first branch few lines above */
Radek Krejcibbe09a92018-11-08 09:36:54 +0100383 }
384
385 return LY_SUCCESS;
386}
387
Radek Krejci857189e2020-09-01 13:26:36 +0200388/**
389 * @brief Compare identifiers.
390 * Implementation of ::values_equal_cb.
391 */
392static ly_bool
393lysp_id_cmp(void *val1, void *val2, ly_bool UNUSED(mod), void *UNUSED(cb_data))
Radek Krejcibbe09a92018-11-08 09:36:54 +0100394{
Radek Krejci1deb5be2020-08-26 16:43:36 +0200395 return strcmp(val1, val2) == 0 ? 1 : 0;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100396}
397
398LY_ERR
David Sedlákd2ebe572019-07-22 12:53:14 +0200399lysp_parse_finalize_reallocated(struct lys_parser_ctx *ctx, struct lysp_grp *groupings, struct lysp_augment *augments,
Radek Krejci0f969882020-08-21 16:56:47 +0200400 struct lysp_action *actions, struct lysp_notif *notifs)
David Sedlákd2ebe572019-07-22 12:53:14 +0200401{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200402 LY_ARRAY_COUNT_TYPE u, v;
David Sedlákd2ebe572019-07-22 12:53:14 +0200403 struct lysp_node *child;
404
405 /* finalize parent pointers to the reallocated items */
406
407 /* gropings */
408 LY_ARRAY_FOR(groupings, u) {
409 LY_LIST_FOR(groupings[u].data, child) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200410 child->parent = (struct lysp_node *)&groupings[u];
David Sedlákd2ebe572019-07-22 12:53:14 +0200411 }
412 LY_ARRAY_FOR(groupings[u].actions, v) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200413 groupings[u].actions[v].parent = (struct lysp_node *)&groupings[u];
David Sedlákd2ebe572019-07-22 12:53:14 +0200414 }
415 LY_ARRAY_FOR(groupings[u].notifs, v) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200416 groupings[u].notifs[v].parent = (struct lysp_node *)&groupings[u];
David Sedlákd2ebe572019-07-22 12:53:14 +0200417 }
418 LY_ARRAY_FOR(groupings[u].groupings, v) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200419 groupings[u].groupings[v].parent = (struct lysp_node *)&groupings[u];
David Sedlákd2ebe572019-07-22 12:53:14 +0200420 }
421 if (groupings[u].typedefs) {
Radek Krejciba03a5a2020-08-27 14:40:41 +0200422 LY_CHECK_RET(ly_set_add(&ctx->tpdfs_nodes, &groupings[u], 0, NULL));
David Sedlákd2ebe572019-07-22 12:53:14 +0200423 }
424 }
425
426 /* augments */
427 LY_ARRAY_FOR(augments, u) {
428 LY_LIST_FOR(augments[u].child, child) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200429 child->parent = (struct lysp_node *)&augments[u];
David Sedlákd2ebe572019-07-22 12:53:14 +0200430 }
431 LY_ARRAY_FOR(augments[u].actions, v) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200432 augments[u].actions[v].parent = (struct lysp_node *)&augments[u];
David Sedlákd2ebe572019-07-22 12:53:14 +0200433 }
434 LY_ARRAY_FOR(augments[u].notifs, v) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200435 augments[u].notifs[v].parent = (struct lysp_node *)&augments[u];
David Sedlákd2ebe572019-07-22 12:53:14 +0200436 }
437 }
438
439 /* actions */
440 LY_ARRAY_FOR(actions, u) {
441 if (actions[u].input.parent) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200442 actions[u].input.parent = (struct lysp_node *)&actions[u];
David Sedlákd2ebe572019-07-22 12:53:14 +0200443 LY_LIST_FOR(actions[u].input.data, child) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200444 child->parent = (struct lysp_node *)&actions[u].input;
David Sedlákd2ebe572019-07-22 12:53:14 +0200445 }
446 LY_ARRAY_FOR(actions[u].input.groupings, v) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200447 actions[u].input.groupings[v].parent = (struct lysp_node *)&actions[u].input;
David Sedlákd2ebe572019-07-22 12:53:14 +0200448 }
449 if (actions[u].input.typedefs) {
Radek Krejciba03a5a2020-08-27 14:40:41 +0200450 LY_CHECK_RET(ly_set_add(&ctx->tpdfs_nodes, &actions[u].input, 0, NULL));
David Sedlákd2ebe572019-07-22 12:53:14 +0200451 }
452 }
453 if (actions[u].output.parent) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200454 actions[u].output.parent = (struct lysp_node *)&actions[u];
David Sedlákd2ebe572019-07-22 12:53:14 +0200455 LY_LIST_FOR(actions[u].output.data, child) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200456 child->parent = (struct lysp_node *)&actions[u].output;
David Sedlákd2ebe572019-07-22 12:53:14 +0200457 }
458 LY_ARRAY_FOR(actions[u].output.groupings, v) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200459 actions[u].output.groupings[v].parent = (struct lysp_node *)&actions[u].output;
David Sedlákd2ebe572019-07-22 12:53:14 +0200460 }
461 if (actions[u].output.typedefs) {
Radek Krejciba03a5a2020-08-27 14:40:41 +0200462 LY_CHECK_RET(ly_set_add(&ctx->tpdfs_nodes, &actions[u].output, 0, NULL));
David Sedlákd2ebe572019-07-22 12:53:14 +0200463 }
464 }
465 LY_ARRAY_FOR(actions[u].groupings, v) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200466 actions[u].groupings[v].parent = (struct lysp_node *)&actions[u];
David Sedlákd2ebe572019-07-22 12:53:14 +0200467 }
468 if (actions[u].typedefs) {
Radek Krejciba03a5a2020-08-27 14:40:41 +0200469 LY_CHECK_RET(ly_set_add(&ctx->tpdfs_nodes, &actions[u], 0, NULL));
David Sedlákd2ebe572019-07-22 12:53:14 +0200470 }
471 }
472
473 /* notifications */
474 LY_ARRAY_FOR(notifs, u) {
475 LY_LIST_FOR(notifs[u].data, child) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200476 child->parent = (struct lysp_node *)&notifs[u];
David Sedlákd2ebe572019-07-22 12:53:14 +0200477 }
478 LY_ARRAY_FOR(notifs[u].groupings, v) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200479 notifs[u].groupings[v].parent = (struct lysp_node *)&notifs[u];
David Sedlákd2ebe572019-07-22 12:53:14 +0200480 }
481 if (notifs[u].typedefs) {
Radek Krejciba03a5a2020-08-27 14:40:41 +0200482 LY_CHECK_RET(ly_set_add(&ctx->tpdfs_nodes, &notifs[u], 0, NULL));
David Sedlákd2ebe572019-07-22 12:53:14 +0200483 }
484 }
485
486 return LY_SUCCESS;
487}
488
489LY_ERR
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100490lysp_check_dup_typedefs(struct lys_parser_ctx *ctx, struct lysp_module *mod)
Radek Krejcibbe09a92018-11-08 09:36:54 +0100491{
492 struct hash_table *ids_global;
493 struct hash_table *ids_scoped;
Radek Krejci0fb28562018-12-13 15:17:37 +0100494 const struct lysp_tpdf *typedefs;
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200495 LY_ARRAY_COUNT_TYPE u, v;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200496 uint32_t i;
Michal Vasko405cc9e2020-12-01 12:01:27 +0100497 LY_ERR ret = LY_SUCCESS;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100498
499 /* check name collisions - typedefs and groupings */
Radek Krejcif13b87b2020-12-01 22:02:17 +0100500 ids_global = lyht_new(LYHT_MIN_SIZE, sizeof(char *), lysp_id_cmp, NULL, 1);
501 ids_scoped = lyht_new(LYHT_MIN_SIZE, sizeof(char *), lysp_id_cmp, NULL, 1);
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200502 LY_ARRAY_FOR(mod->typedefs, v) {
Michal Vasko405cc9e2020-12-01 12:01:27 +0100503 ret = lysp_check_dup_typedef(ctx, NULL, &mod->typedefs[v], ids_global, ids_scoped);
504 LY_CHECK_GOTO(ret, cleanup);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100505 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200506 LY_ARRAY_FOR(mod->includes, v) {
507 LY_ARRAY_FOR(mod->includes[v].submodule->typedefs, u) {
Michal Vasko405cc9e2020-12-01 12:01:27 +0100508 ret = lysp_check_dup_typedef(ctx, NULL, &mod->includes[v].submodule->typedefs[u], ids_global, ids_scoped);
509 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci3b1f9292018-11-08 10:58:35 +0100510 }
511 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200512 for (i = 0; i < ctx->tpdfs_nodes.count; ++i) {
513 typedefs = lysp_node_typedefs((struct lysp_node *)ctx->tpdfs_nodes.objs[i]);
514 LY_ARRAY_FOR(typedefs, u) {
Michal Vasko405cc9e2020-12-01 12:01:27 +0100515 ret = lysp_check_dup_typedef(ctx, (struct lysp_node *)ctx->tpdfs_nodes.objs[i], &typedefs[u], ids_global, ids_scoped);
516 LY_CHECK_GOTO(ret, cleanup);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100517 }
518 }
Michal Vasko405cc9e2020-12-01 12:01:27 +0100519
Radek Krejcibbe09a92018-11-08 09:36:54 +0100520cleanup:
521 lyht_free(ids_global);
522 lyht_free(ids_scoped);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100523 return ret;
524}
525
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100526static ly_bool
527ly_ptrequal_cb(void *val1_p, void *val2_p, ly_bool UNUSED(mod), void *UNUSED(cb_data))
528{
529 void *ptr1 = *((void **)val1_p), *ptr2 = *((void **)val2_p);
530
531 return ptr1 == ptr2 ? 1 : 0;
532}
533
534LY_ERR
535lysp_check_dup_features(struct lys_parser_ctx *ctx, struct lysp_module *mod)
536{
537 LY_ARRAY_COUNT_TYPE u;
538 struct hash_table *ht;
539 struct lysp_feature *f;
540 uint32_t hash;
541 LY_ERR ret = LY_SUCCESS, r;
542
543 ht = lyht_new(1, sizeof(void *), ly_ptrequal_cb, NULL, 1);
544 LY_CHECK_RET(!ht, LY_EMEM);
545
546 /* add all module features into a hash table */
547 LY_ARRAY_FOR(mod->features, struct lysp_feature, f) {
548 hash = dict_hash(f->name, strlen(f->name));
549 r = lyht_insert(ht, &f->name, hash, NULL);
550 if (r == LY_EEXIST) {
551 LOGVAL_PARSER(ctx, LY_VCODE_DUPIDENT, f->name, "feature");
552 ret = LY_EVALID;
553 goto cleanup;
554 } else if (r) {
555 ret = r;
556 goto cleanup;
557 }
558 }
559
560 /* add all submodule features into a hash table */
561 LY_ARRAY_FOR(mod->includes, u) {
562 LY_ARRAY_FOR(mod->includes[u].submodule->features, struct lysp_feature, f) {
563 hash = dict_hash(f->name, strlen(f->name));
564 r = lyht_insert(ht, &f->name, hash, NULL);
565 if (r == LY_EEXIST) {
566 LOGVAL_PARSER(ctx, LY_VCODE_DUPIDENT, f->name, "feature");
567 ret = LY_EVALID;
568 goto cleanup;
569 } else if (r) {
570 ret = r;
571 goto cleanup;
572 }
573 }
574 }
575
576cleanup:
577 lyht_free(ht);
578 return ret;
579}
580
581LY_ERR
582lysp_check_dup_identities(struct lys_parser_ctx *ctx, struct lysp_module *mod)
583{
584 LY_ARRAY_COUNT_TYPE u;
585 struct hash_table *ht;
586 struct lysp_ident *i;
587 uint32_t hash;
588 LY_ERR ret = LY_SUCCESS, r;
589
590 ht = lyht_new(1, sizeof(void *), ly_ptrequal_cb, NULL, 1);
591 LY_CHECK_RET(!ht, LY_EMEM);
592
593 /* add all module identities into a hash table */
594 LY_ARRAY_FOR(mod->identities, struct lysp_ident, i) {
595 hash = dict_hash(i->name, strlen(i->name));
596 r = lyht_insert(ht, &i->name, hash, NULL);
597 if (r == LY_EEXIST) {
598 LOGVAL_PARSER(ctx, LY_VCODE_DUPIDENT, i->name, "identity");
599 ret = LY_EVALID;
600 goto cleanup;
601 } else if (r) {
602 ret = r;
603 goto cleanup;
604 }
605 }
606
607 /* add all submodule identities into a hash table */
608 LY_ARRAY_FOR(mod->includes, u) {
609 LY_ARRAY_FOR(mod->includes[u].submodule->identities, struct lysp_ident, i) {
610 hash = dict_hash(i->name, strlen(i->name));
611 r = lyht_insert(ht, &i->name, hash, NULL);
612 if (r == LY_EEXIST) {
613 LOGVAL_PARSER(ctx, LY_VCODE_DUPIDENT, i->name, "identity");
614 ret = LY_EVALID;
615 goto cleanup;
616 } else if (r) {
617 ret = r;
618 goto cleanup;
619 }
620 }
621 }
622
623cleanup:
624 lyht_free(ht);
625 return ret;
626}
627
Radek Krejci9ed7a192018-10-31 16:23:51 +0100628struct lysp_load_module_check_data {
629 const char *name;
630 const char *revision;
631 const char *path;
Michal Vasko22df3f02020-08-24 13:29:22 +0200632 const char *submoduleof;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100633};
634
635static LY_ERR
Michal Vaskob36053d2020-03-26 15:49:30 +0100636lysp_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 +0100637{
638 struct lysp_load_module_check_data *info = data;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100639 const char *filename, *dot, *rev, *name;
Radek Krejcib3289d62019-09-18 12:21:39 +0200640 uint8_t latest_revision;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100641 size_t len;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100642 struct lysp_revision *revs;
643
644 name = mod ? mod->mod->name : submod->name;
645 revs = mod ? mod->revs : submod->revs;
Radek Krejcib3289d62019-09-18 12:21:39 +0200646 latest_revision = mod ? mod->mod->latest_revision : submod->latest_revision;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100647
648 if (info->name) {
649 /* check name of the parsed model */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100650 if (strcmp(info->name, name)) {
651 LOGERR(ctx, LY_EINVAL, "Unexpected module \"%s\" parsed instead of \"%s\").", name, info->name);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100652 return LY_EINVAL;
653 }
654 }
655 if (info->revision) {
656 /* check revision of the parsed model */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100657 if (!revs || strcmp(info->revision, revs[0].date)) {
658 LOGERR(ctx, LY_EINVAL, "Module \"%s\" parsed with the wrong revision (\"%s\" instead \"%s\").", name,
Michal Vasko69730152020-10-09 16:30:07 +0200659 revs ? revs[0].date : "none", info->revision);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100660 return LY_EINVAL;
661 }
Radek Krejcib3289d62019-09-18 12:21:39 +0200662 } else if (!latest_revision) {
663 /* do not log, we just need to drop the schema and use the latest revision from the context */
664 return LY_EEXIST;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100665 }
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100666 if (submod) {
667 assert(info->submoduleof);
668
Radek Krejci9ed7a192018-10-31 16:23:51 +0100669 /* check that the submodule belongs-to our module */
Michal Vaskoc3781c32020-10-06 14:04:08 +0200670 if (strcmp(info->submoduleof, submod->mod->name)) {
Radek Krejci9ed7a192018-10-31 16:23:51 +0100671 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE, "Included \"%s\" submodule from \"%s\" belongs-to a different module \"%s\".",
Michal Vasko69730152020-10-09 16:30:07 +0200672 submod->name, info->submoduleof, submod->mod->name);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100673 return LY_EVALID;
674 }
675 /* check circular dependency */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100676 if (submod->parsing) {
677 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE, "A circular dependency (include) for module \"%s\".", submod->name);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100678 return LY_EVALID;
679 }
680 }
681 if (info->path) {
682 /* check that name and revision match filename */
683 filename = strrchr(info->path, '/');
684 if (!filename) {
685 filename = info->path;
686 } else {
687 filename++;
688 }
689 /* name */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100690 len = strlen(name);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100691 rev = strchr(filename, '@');
692 dot = strrchr(info->path, '.');
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100693 if (strncmp(filename, name, len) ||
Michal Vasko69730152020-10-09 16:30:07 +0200694 ((rev && (rev != &filename[len])) || (!rev && (dot != &filename[len])))) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100695 LOGWRN(ctx, "File name \"%s\" does not match module name \"%s\".", filename, name);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100696 }
697 /* revision */
698 if (rev) {
699 len = dot - ++rev;
Radek Krejcif13b87b2020-12-01 22:02:17 +0100700 if (!revs || (len != LY_REV_SIZE - 1) || strncmp(revs[0].date, rev, len)) {
Radek Krejci9ed7a192018-10-31 16:23:51 +0100701 LOGWRN(ctx, "File name \"%s\" does not match module revision \"%s\".", filename,
Michal Vasko69730152020-10-09 16:30:07 +0200702 revs ? revs[0].date : "none");
Radek Krejci9ed7a192018-10-31 16:23:51 +0100703 }
704 }
705 }
706 return LY_SUCCESS;
707}
708
709LY_ERR
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100710lys_module_localfile(struct ly_ctx *ctx, const char *name, const char *revision, const char **features, ly_bool implement,
Michal Vasko405cc9e2020-12-01 12:01:27 +0100711 struct lys_parser_ctx *main_ctx, const char *main_name, ly_bool required, struct lys_glob_unres *unres,
712 void **result)
Radek Krejci9ed7a192018-10-31 16:23:51 +0100713{
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200714 struct ly_in *in;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100715 char *filepath = NULL;
716 LYS_INFORMAT format;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100717 void *mod = NULL;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100718 LY_ERR ret = LY_SUCCESS;
719 struct lysp_load_module_check_data check_data = {0};
720
721 LY_CHECK_RET(lys_search_localfile(ly_ctx_get_searchdirs(ctx), !(ctx->flags & LY_CTX_DISABLE_SEARCHDIR_CWD), name, revision,
Michal Vasko69730152020-10-09 16:30:07 +0200722 &filepath, &format));
Michal Vasko3a41dff2020-07-15 14:30:28 +0200723 if (!filepath) {
724 if (required) {
725 LOGERR(ctx, LY_ENOTFOUND, "Data model \"%s%s%s\" not found in local searchdirs.", name, revision ? "@" : "",
Michal Vasko69730152020-10-09 16:30:07 +0200726 revision ? revision : "");
Michal Vasko3a41dff2020-07-15 14:30:28 +0200727 }
728 return LY_ENOTFOUND;
729 }
Radek Krejci9ed7a192018-10-31 16:23:51 +0100730
731 LOGVRB("Loading schema from \"%s\" file.", filepath);
732
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200733 /* get the (sub)module */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200734 LY_CHECK_ERR_GOTO(ret = ly_in_new_filepath(filepath, 0, &in),
Michal Vasko69730152020-10-09 16:30:07 +0200735 LOGERR(ctx, ret, "Unable to create input handler for filepath %s.", filepath), cleanup);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100736 check_data.name = name;
737 check_data.revision = revision;
738 check_data.path = filepath;
fredgancd485b82019-10-18 15:00:17 +0800739 check_data.submoduleof = main_name;
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200740 if (main_ctx) {
Michal Vasko7a0b0762020-09-02 16:37:01 +0200741 ret = lys_parse_submodule(ctx, in, format, main_ctx, lysp_load_module_check, &check_data,
Michal Vasko69730152020-10-09 16:30:07 +0200742 (struct lysp_submodule **)&mod);
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200743 } else {
Michal Vasko405cc9e2020-12-01 12:01:27 +0100744 ret = lys_create_module(ctx, in, format, implement, lysp_load_module_check, &check_data, features, unres,
Michal Vasko69730152020-10-09 16:30:07 +0200745 (struct lys_module **)&mod);
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200746
747 }
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200748 ly_in_free(in, 1);
Michal Vasko7a0b0762020-09-02 16:37:01 +0200749 LY_CHECK_GOTO(ret, cleanup);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100750
751 *result = mod;
752
753 /* success */
Michal Vasko7a0b0762020-09-02 16:37:01 +0200754
Radek Krejci9ed7a192018-10-31 16:23:51 +0100755cleanup:
756 free(filepath);
757 return ret;
758}
759
Radek Krejcid33273d2018-10-25 14:55:52 +0200760LY_ERR
Michal Vasko0550b762020-11-24 18:04:08 +0100761lysp_load_module(struct ly_ctx *ctx, const char *name, const char *revision, ly_bool implement, const char **features,
Michal Vasko405cc9e2020-12-01 12:01:27 +0100762 struct lys_glob_unres *unres, struct lys_module **mod)
Radek Krejci086c7132018-10-26 15:29:04 +0200763{
Radek Krejci9ed7a192018-10-31 16:23:51 +0100764 const char *module_data = NULL;
Radek Krejci086c7132018-10-26 15:29:04 +0200765 LYS_INFORMAT format = LYS_IN_UNKNOWN;
Michal Vasko69730152020-10-09 16:30:07 +0200766
Radek Krejci9ed7a192018-10-31 16:23:51 +0100767 void (*module_data_free)(void *module_data, void *user_data) = NULL;
768 struct lysp_load_module_check_data check_data = {0};
Michal Vasko0550b762020-11-24 18:04:08 +0100769 struct lys_module *ctx_latest = NULL, *m;
Michal Vasko63f3d842020-07-08 10:10:14 +0200770 struct ly_in *in;
Michal Vasko0550b762020-11-24 18:04:08 +0100771 LY_ERR ret;
Radek Krejci086c7132018-10-26 15:29:04 +0200772
Michal Vasko405cc9e2020-12-01 12:01:27 +0100773 assert(mod && unres);
Radek Krejci0af46292019-01-11 16:02:31 +0100774
Michal Vasko25d6ad02020-10-22 12:20:22 +0200775 if (ctx->flags & LY_CTX_ALL_IMPLEMENTED) {
Radek Krejcia53d7c92020-08-21 11:30:56 +0200776 implement = 1;
777 }
778
Michal Vasko0550b762020-11-24 18:04:08 +0100779 /*
780 * try to get the module from the context
781 */
Radek Krejci0af46292019-01-11 16:02:31 +0100782 if (!*mod) {
Radek Krejci0af46292019-01-11 16:02:31 +0100783 if (revision) {
Radek Krejcied5acc52019-04-25 15:57:04 +0200784 /* get the specific revision */
Michal Vasko22df3f02020-08-24 13:29:22 +0200785 *mod = (struct lys_module *)ly_ctx_get_module(ctx, name, revision);
Radek Krejci0af46292019-01-11 16:02:31 +0100786 } else {
Michal Vasko0550b762020-11-24 18:04:08 +0100787 if (implement) {
788 /* prefer the implemented module instead of the latest one */
789 *mod = (struct lys_module *)ly_ctx_get_module_implemented(ctx, name);
790 }
791 if (!*mod) {
792 /* get the requested module of the latest revision in the context */
793 *mod = (struct lys_module *)ly_ctx_get_module_latest(ctx, name);
794 if (*mod && ((*mod)->latest_revision == 1)) {
795 /* let us now search with callback and searchpaths to check if there is newer revision outside the context */
796 ctx_latest = *mod;
797 *mod = NULL;
798 }
Radek Krejcib3289d62019-09-18 12:21:39 +0200799 }
Radek Krejci0af46292019-01-11 16:02:31 +0100800 }
Radek Krejci086c7132018-10-26 15:29:04 +0200801 }
802
Michal Vasko0550b762020-11-24 18:04:08 +0100803 /* check collision with other implemented revision */
804 if (implement) {
805 m = ly_ctx_get_module_implemented(ctx, name);
806 if (m && (!*mod || (*mod && (m != *mod)))) {
Radek Krejci086c7132018-10-26 15:29:04 +0200807 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE,
Michal Vasko69730152020-10-09 16:30:07 +0200808 "Module \"%s\" is already present in other implemented revision.", name);
Michal Vasko0550b762020-11-24 18:04:08 +0100809 *mod = NULL;
Radek Krejci086c7132018-10-26 15:29:04 +0200810 return LY_EDENIED;
811 }
Michal Vasko0550b762020-11-24 18:04:08 +0100812 }
Radek Krejci086c7132018-10-26 15:29:04 +0200813
Michal Vasko0550b762020-11-24 18:04:08 +0100814 /*
815 * no suitable module in the context, try to load it
816 */
817 if (!*mod) {
Radek Krejci9ed7a192018-10-31 16:23:51 +0100818 /* module not present in the context, get the input data and parse it */
Radek Krejci086c7132018-10-26 15:29:04 +0200819 if (!(ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) {
820search_clb:
821 if (ctx->imp_clb) {
822 if (ctx->imp_clb(name, revision, NULL, NULL, ctx->imp_clb_data,
Michal Vasko69730152020-10-09 16:30:07 +0200823 &format, &module_data, &module_data_free) == LY_SUCCESS) {
Michal Vasko63f3d842020-07-08 10:10:14 +0200824 LY_CHECK_RET(ly_in_new_memory(module_data, &in));
Radek Krejci9ed7a192018-10-31 16:23:51 +0100825 check_data.name = name;
826 check_data.revision = revision;
Michal Vasko405cc9e2020-12-01 12:01:27 +0100827 lys_create_module(ctx, in, format, implement, lysp_load_module_check, &check_data, features, unres, mod);
Michal Vasko63f3d842020-07-08 10:10:14 +0200828 ly_in_free(in, 0);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100829 if (module_data_free) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200830 module_data_free((void *)module_data, ctx->imp_clb_data);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100831 }
Radek Krejci086c7132018-10-26 15:29:04 +0200832 }
833 }
834 if (!(*mod) && !(ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) {
835 goto search_file;
836 }
837 } else {
838search_file:
839 if (!(ctx->flags & LY_CTX_DISABLE_SEARCHDIRS)) {
840 /* module was not received from the callback or there is no callback set */
Michal Vasko405cc9e2020-12-01 12:01:27 +0100841 lys_module_localfile(ctx, name, revision, features, implement, NULL, NULL, ctx_latest ? 0 : 1, unres,
842 (void **)mod);
Radek Krejci086c7132018-10-26 15:29:04 +0200843 }
Michal Vasko0550b762020-11-24 18:04:08 +0100844 if (!*mod && (ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) {
Radek Krejci086c7132018-10-26 15:29:04 +0200845 goto search_clb;
846 }
847 }
Radek Krejci9ed7a192018-10-31 16:23:51 +0100848
Radek Krejcib3289d62019-09-18 12:21:39 +0200849 /* update the latest_revision flag - here we have selected the latest available schema,
850 * consider that even the callback provides correct latest revision */
Michal Vasko0550b762020-11-24 18:04:08 +0100851 if (!*mod && ctx_latest) {
852 LOGVRB("Newer revision than %s-%s not found, using this as the latest revision.", ctx_latest->name,
853 ctx_latest->revision);
854 ctx_latest->latest_revision = 2;
855 *mod = ctx_latest;
856 } else if (*mod && !revision && ((*mod)->latest_revision == 1)) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100857 (*mod)->latest_revision = 2;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100858 }
Radek Krejci086c7132018-10-26 15:29:04 +0200859
Michal Vasko0550b762020-11-24 18:04:08 +0100860 if (!*mod) {
861 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE, "%s \"%s\" module failed.",
862 implement ? "Loading" : "Importing", name);
863 return LY_EVALID;
864 }
865 } else {
866 /* we have module from the current context, circular check */
867 if ((*mod)->parsed->parsing) {
Radek Krejci086c7132018-10-26 15:29:04 +0200868 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE, "A circular dependency (import) for module \"%s\".", name);
869 *mod = NULL;
870 return LY_EVALID;
871 }
872 }
Radek Krejci086c7132018-10-26 15:29:04 +0200873
Michal Vasko0550b762020-11-24 18:04:08 +0100874 /*
875 * module found, make sure it is implemented if should be
876 */
Michal Vasko405cc9e2020-12-01 12:01:27 +0100877 if (implement && !(*mod)->implemented) {
878 ret = lys_set_implemented_r(*mod, features, unres);
Michal Vaskoc5d64862020-11-24 18:04:45 +0100879 if (ret) {
880 *mod = NULL;
881 return ret;
882 }
Radek Krejci086c7132018-10-26 15:29:04 +0200883 }
Radek Krejci086c7132018-10-26 15:29:04 +0200884
885 return LY_SUCCESS;
886}
887
888LY_ERR
Radek Krejci1deb5be2020-08-26 16:43:36 +0200889lysp_check_stringchar(struct lys_parser_ctx *ctx, uint32_t c)
David Sedlák4a650532019-07-10 11:55:18 +0200890{
891 if (!is_yangutf8char(c)) {
892 LOGVAL_PARSER(ctx, LY_VCODE_INCHAR, c);
893 return LY_EVALID;
894 }
895 return LY_SUCCESS;
896}
897
898LY_ERR
Radek Krejci857189e2020-09-01 13:26:36 +0200899lysp_check_identifierchar(struct lys_parser_ctx *ctx, uint32_t c, ly_bool first, uint8_t *prefix)
David Sedlák4a650532019-07-10 11:55:18 +0200900{
Michal Vasko69730152020-10-09 16:30:07 +0200901 if (first || (prefix && ((*prefix) == 1))) {
David Sedlák4a650532019-07-10 11:55:18 +0200902 if (!is_yangidentstartchar(c)) {
Radek Krejci1deb5be2020-08-26 16:43:36 +0200903 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Invalid identifier first character '%c' (0x%04x).", (char)c, c);
David Sedlák4a650532019-07-10 11:55:18 +0200904 return LY_EVALID;
905 }
906 if (prefix) {
907 if (first) {
908 (*prefix) = 0;
909 } else {
910 (*prefix) = 2;
911 }
912 }
Michal Vasko69730152020-10-09 16:30:07 +0200913 } else if ((c == ':') && prefix && ((*prefix) == 0)) {
David Sedlák4a650532019-07-10 11:55:18 +0200914 (*prefix) = 1;
915 } else if (!is_yangidentchar(c)) {
Radek Krejci1deb5be2020-08-26 16:43:36 +0200916 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Invalid identifier character '%c' (0x%04x).", (char)c, c);
David Sedlák4a650532019-07-10 11:55:18 +0200917 return LY_EVALID;
918 }
919
920 return LY_SUCCESS;
921}
922
923LY_ERR
Michal Vasko7c8439f2020-08-05 13:25:19 +0200924lysp_load_submodule(struct lys_parser_ctx *pctx, struct lysp_include *inc)
Radek Krejcid33273d2018-10-25 14:55:52 +0200925{
Michal Vaskob36053d2020-03-26 15:49:30 +0100926 struct ly_ctx *ctx = (struct ly_ctx *)(PARSER_CTX(pctx));
Radek Krejci3eb299d2019-04-08 15:07:44 +0200927 struct lysp_submodule *submod = NULL;
Radek Krejcid33273d2018-10-25 14:55:52 +0200928 const char *submodule_data = NULL;
929 LYS_INFORMAT format = LYS_IN_UNKNOWN;
Michal Vasko69730152020-10-09 16:30:07 +0200930
Radek Krejcid33273d2018-10-25 14:55:52 +0200931 void (*submodule_data_free)(void *module_data, void *user_data) = NULL;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100932 struct lysp_load_module_check_data check_data = {0};
Michal Vasko63f3d842020-07-08 10:10:14 +0200933 struct ly_in *in;
Radek Krejcid33273d2018-10-25 14:55:52 +0200934
Radek Krejcibbe09a92018-11-08 09:36:54 +0100935 /* submodule not present in the context, get the input data and parse it */
Michal Vaskob36053d2020-03-26 15:49:30 +0100936 if (!(ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) {
Radek Krejcid33273d2018-10-25 14:55:52 +0200937search_clb:
Michal Vaskob36053d2020-03-26 15:49:30 +0100938 if (ctx->imp_clb) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200939 if (ctx->imp_clb(pctx->parsed_mod->mod->name, NULL, inc->name, inc->rev[0] ? inc->rev : NULL, ctx->imp_clb_data,
Michal Vasko69730152020-10-09 16:30:07 +0200940 &format, &submodule_data, &submodule_data_free) == LY_SUCCESS) {
Michal Vasko63f3d842020-07-08 10:10:14 +0200941 LY_CHECK_RET(ly_in_new_memory(submodule_data, &in));
Radek Krejcibbe09a92018-11-08 09:36:54 +0100942 check_data.name = inc->name;
943 check_data.revision = inc->rev[0] ? inc->rev : NULL;
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200944 check_data.submoduleof = pctx->parsed_mod->mod->name;
Michal Vasko7a0b0762020-09-02 16:37:01 +0200945 lys_parse_submodule(ctx, in, format, pctx, lysp_load_module_check, &check_data, &submod);
Michal Vasko63f3d842020-07-08 10:10:14 +0200946 ly_in_free(in, 0);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100947 if (submodule_data_free) {
Michal Vasko22df3f02020-08-24 13:29:22 +0200948 submodule_data_free((void *)submodule_data, ctx->imp_clb_data);
Radek Krejcid33273d2018-10-25 14:55:52 +0200949 }
950 }
Radek Krejcid33273d2018-10-25 14:55:52 +0200951 }
Michal Vaskob36053d2020-03-26 15:49:30 +0100952 if (!submod && !(ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) {
Radek Krejcibbe09a92018-11-08 09:36:54 +0100953 goto search_file;
Radek Krejcid33273d2018-10-25 14:55:52 +0200954 }
Radek Krejci2d31ea72018-10-25 15:46:42 +0200955 } else {
Radek Krejcibbe09a92018-11-08 09:36:54 +0100956search_file:
Michal Vaskob36053d2020-03-26 15:49:30 +0100957 if (!(ctx->flags & LY_CTX_DISABLE_SEARCHDIRS)) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100958 /* submodule was not received from the callback or there is no callback set */
Michal Vasko7b1ad1a2020-11-02 15:41:27 +0100959 lys_module_localfile(ctx, inc->name, inc->rev[0] ? inc->rev : NULL, NULL, 0, pctx,
Michal Vasko405cc9e2020-12-01 12:01:27 +0100960 pctx->parsed_mod->mod->name, 1, NULL, (void **)&submod);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100961 }
Michal Vaskob36053d2020-03-26 15:49:30 +0100962 if (!submod && (ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) {
Radek Krejcibbe09a92018-11-08 09:36:54 +0100963 goto search_clb;
964 }
965 }
966 if (submod) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100967 if (!inc->rev[0] && (submod->latest_revision == 1)) {
Radek Krejcibbe09a92018-11-08 09:36:54 +0100968 /* update the latest_revision flag - here we have selected the latest available schema,
969 * consider that even the callback provides correct latest revision */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100970 submod->latest_revision = 2;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100971 }
972
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100973 inc->submodule = submod;
Radek Krejcid33273d2018-10-25 14:55:52 +0200974 }
975 if (!inc->submodule) {
Michal Vaskob36053d2020-03-26 15:49:30 +0100976 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE, "Including \"%s\" submodule into \"%s\" failed.",
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200977 inc->name, pctx->parsed_mod->mod->name);
Radek Krejcid33273d2018-10-25 14:55:52 +0200978 return LY_EVALID;
979 }
980
981 return LY_SUCCESS;
982}
983
Michal Vaskod5cfa6e2020-11-23 16:56:08 +0100984API const struct lysc_when *
985lysc_has_when(const struct lysc_node *node)
986{
987 if (!node) {
988 return NULL;
989 }
990
991 do {
992 if (node->when) {
993 return *node->when;
994 }
995 node = node->parent;
996 } while (node && (node->nodetype & (LYS_CASE | LYS_CHOICE)));
997
998 return NULL;
999}
1000
Radek Krejci0935f412019-08-20 16:15:18 +02001001API const char *
Radek Krejcia3045382018-11-22 14:30:31 +01001002lys_nodetype2str(uint16_t nodetype)
1003{
Michal Vaskod989ba02020-08-24 10:59:24 +02001004 switch (nodetype) {
Radek Krejcia3045382018-11-22 14:30:31 +01001005 case LYS_CONTAINER:
1006 return "container";
1007 case LYS_CHOICE:
1008 return "choice";
1009 case LYS_LEAF:
1010 return "leaf";
1011 case LYS_LEAFLIST:
1012 return "leaf-list";
1013 case LYS_LIST:
1014 return "list";
1015 case LYS_ANYXML:
1016 return "anyxml";
1017 case LYS_ANYDATA:
1018 return "anydata";
Radek Krejcif12a1f02019-02-11 16:42:08 +01001019 case LYS_CASE:
1020 return "case";
Michal Vasko1bf09392020-03-27 12:38:10 +01001021 case LYS_RPC:
1022 return "RPC";
Radek Krejcif538ce52019-03-05 10:46:14 +01001023 case LYS_ACTION:
Michal Vasko1bf09392020-03-27 12:38:10 +01001024 return "action";
Radek Krejcif538ce52019-03-05 10:46:14 +01001025 case LYS_NOTIF:
Michal Vaskoa3881362020-01-21 15:57:35 +01001026 return "notification";
Radek Krejcifc81ea82019-04-18 13:27:22 +02001027 case LYS_USES:
1028 return "uses";
Radek Krejcia3045382018-11-22 14:30:31 +01001029 default:
1030 return "unknown";
1031 }
1032}
1033
Radek Krejci693262f2019-04-29 15:23:20 +02001034const char *
1035lys_datatype2str(LY_DATA_TYPE basetype)
1036{
Michal Vaskod989ba02020-08-24 10:59:24 +02001037 switch (basetype) {
Radek Krejci693262f2019-04-29 15:23:20 +02001038 case LY_TYPE_BINARY:
1039 return "binary";
1040 case LY_TYPE_UINT8:
1041 return "uint8";
1042 case LY_TYPE_UINT16:
1043 return "uint16";
1044 case LY_TYPE_UINT32:
1045 return "uint32";
1046 case LY_TYPE_UINT64:
1047 return "uint64";
1048 case LY_TYPE_STRING:
1049 return "string";
1050 case LY_TYPE_BITS:
1051 return "bits";
1052 case LY_TYPE_BOOL:
1053 return "boolean";
1054 case LY_TYPE_DEC64:
1055 return "decimal64";
1056 case LY_TYPE_EMPTY:
1057 return "empty";
1058 case LY_TYPE_ENUM:
1059 return "enumeration";
1060 case LY_TYPE_IDENT:
1061 return "identityref";
1062 case LY_TYPE_INST:
1063 return "instance-identifier";
1064 case LY_TYPE_LEAFREF:
1065 return "leafref";
1066 case LY_TYPE_UNION:
1067 return "union";
1068 case LY_TYPE_INT8:
1069 return "int8";
1070 case LY_TYPE_INT16:
1071 return "int16";
1072 case LY_TYPE_INT32:
1073 return "int32";
1074 case LY_TYPE_INT64:
1075 return "int64";
1076 default:
1077 return "unknown";
1078 }
1079}
1080
Radek Krejci056d0a82018-12-06 16:57:25 +01001081API const struct lysp_tpdf *
1082lysp_node_typedefs(const struct lysp_node *node)
1083{
Radek Krejci0fb28562018-12-13 15:17:37 +01001084 switch (node->nodetype) {
1085 case LYS_CONTAINER:
Michal Vasko22df3f02020-08-24 13:29:22 +02001086 return ((struct lysp_node_container *)node)->typedefs;
Radek Krejci0fb28562018-12-13 15:17:37 +01001087 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02001088 return ((struct lysp_node_list *)node)->typedefs;
Radek Krejci0fb28562018-12-13 15:17:37 +01001089 case LYS_GROUPING:
Michal Vasko22df3f02020-08-24 13:29:22 +02001090 return ((struct lysp_grp *)node)->typedefs;
Michal Vasko1bf09392020-03-27 12:38:10 +01001091 case LYS_RPC:
Radek Krejci0fb28562018-12-13 15:17:37 +01001092 case LYS_ACTION:
Michal Vasko22df3f02020-08-24 13:29:22 +02001093 return ((struct lysp_action *)node)->typedefs;
Michal Vasko7f45cf22020-10-01 12:49:44 +02001094 case LYS_INPUT:
1095 case LYS_OUTPUT:
Michal Vasko22df3f02020-08-24 13:29:22 +02001096 return ((struct lysp_action_inout *)node)->typedefs;
Radek Krejci0fb28562018-12-13 15:17:37 +01001097 case LYS_NOTIF:
Michal Vasko22df3f02020-08-24 13:29:22 +02001098 return ((struct lysp_notif *)node)->typedefs;
Radek Krejci0fb28562018-12-13 15:17:37 +01001099 default:
Radek Krejci056d0a82018-12-06 16:57:25 +01001100 return NULL;
1101 }
1102}
1103
Radek Krejci53ea6152018-12-13 15:21:15 +01001104API const struct lysp_grp *
1105lysp_node_groupings(const struct lysp_node *node)
1106{
1107 switch (node->nodetype) {
1108 case LYS_CONTAINER:
Michal Vasko22df3f02020-08-24 13:29:22 +02001109 return ((struct lysp_node_container *)node)->groupings;
Radek Krejci53ea6152018-12-13 15:21:15 +01001110 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02001111 return ((struct lysp_node_list *)node)->groupings;
Radek Krejci53ea6152018-12-13 15:21:15 +01001112 case LYS_GROUPING:
Michal Vasko22df3f02020-08-24 13:29:22 +02001113 return ((struct lysp_grp *)node)->groupings;
Michal Vasko1bf09392020-03-27 12:38:10 +01001114 case LYS_RPC:
Radek Krejci53ea6152018-12-13 15:21:15 +01001115 case LYS_ACTION:
Michal Vasko22df3f02020-08-24 13:29:22 +02001116 return ((struct lysp_action *)node)->groupings;
Michal Vasko7f45cf22020-10-01 12:49:44 +02001117 case LYS_INPUT:
1118 case LYS_OUTPUT:
Michal Vasko22df3f02020-08-24 13:29:22 +02001119 return ((struct lysp_action_inout *)node)->groupings;
Radek Krejci53ea6152018-12-13 15:21:15 +01001120 case LYS_NOTIF:
Michal Vasko22df3f02020-08-24 13:29:22 +02001121 return ((struct lysp_notif *)node)->groupings;
Radek Krejci53ea6152018-12-13 15:21:15 +01001122 default:
1123 return NULL;
1124 }
1125}
1126
Radek Krejcibbe09a92018-11-08 09:36:54 +01001127struct lysp_action **
Radek Krejci056d0a82018-12-06 16:57:25 +01001128lysp_node_actions_p(struct lysp_node *node)
Radek Krejcibbe09a92018-11-08 09:36:54 +01001129{
1130 assert(node);
Michal Vasko7f45cf22020-10-01 12:49:44 +02001131
Radek Krejcibbe09a92018-11-08 09:36:54 +01001132 switch (node->nodetype) {
1133 case LYS_CONTAINER:
Michal Vasko22df3f02020-08-24 13:29:22 +02001134 return &((struct lysp_node_container *)node)->actions;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001135 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02001136 return &((struct lysp_node_list *)node)->actions;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001137 case LYS_GROUPING:
Michal Vasko22df3f02020-08-24 13:29:22 +02001138 return &((struct lysp_grp *)node)->actions;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001139 case LYS_AUGMENT:
Michal Vasko22df3f02020-08-24 13:29:22 +02001140 return &((struct lysp_augment *)node)->actions;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001141 default:
1142 return NULL;
1143 }
1144}
1145
Radek Krejci056d0a82018-12-06 16:57:25 +01001146API const struct lysp_action *
1147lysp_node_actions(const struct lysp_node *node)
1148{
1149 struct lysp_action **actions;
Michal Vasko69730152020-10-09 16:30:07 +02001150
Michal Vasko22df3f02020-08-24 13:29:22 +02001151 actions = lysp_node_actions_p((struct lysp_node *)node);
Radek Krejci056d0a82018-12-06 16:57:25 +01001152 if (actions) {
1153 return *actions;
1154 } else {
1155 return NULL;
1156 }
1157}
1158
Radek Krejcibbe09a92018-11-08 09:36:54 +01001159struct lysp_notif **
Radek Krejci056d0a82018-12-06 16:57:25 +01001160lysp_node_notifs_p(struct lysp_node *node)
Radek Krejcibbe09a92018-11-08 09:36:54 +01001161{
1162 assert(node);
1163 switch (node->nodetype) {
1164 case LYS_CONTAINER:
Michal Vasko22df3f02020-08-24 13:29:22 +02001165 return &((struct lysp_node_container *)node)->notifs;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001166 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02001167 return &((struct lysp_node_list *)node)->notifs;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001168 case LYS_GROUPING:
Michal Vasko22df3f02020-08-24 13:29:22 +02001169 return &((struct lysp_grp *)node)->notifs;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001170 case LYS_AUGMENT:
Michal Vasko22df3f02020-08-24 13:29:22 +02001171 return &((struct lysp_augment *)node)->notifs;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001172 default:
1173 return NULL;
1174 }
1175}
1176
Radek Krejci056d0a82018-12-06 16:57:25 +01001177API const struct lysp_notif *
1178lysp_node_notifs(const struct lysp_node *node)
1179{
1180 struct lysp_notif **notifs;
Michal Vasko69730152020-10-09 16:30:07 +02001181
Michal Vasko22df3f02020-08-24 13:29:22 +02001182 notifs = lysp_node_notifs_p((struct lysp_node *)node);
Radek Krejci056d0a82018-12-06 16:57:25 +01001183 if (notifs) {
1184 return *notifs;
1185 } else {
1186 return NULL;
1187 }
1188}
1189
Radek Krejcibbe09a92018-11-08 09:36:54 +01001190struct lysp_node **
Radek Krejci056d0a82018-12-06 16:57:25 +01001191lysp_node_children_p(struct lysp_node *node)
Radek Krejcibbe09a92018-11-08 09:36:54 +01001192{
1193 assert(node);
1194 switch (node->nodetype) {
1195 case LYS_CONTAINER:
Michal Vasko22df3f02020-08-24 13:29:22 +02001196 return &((struct lysp_node_container *)node)->child;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001197 case LYS_CHOICE:
Michal Vasko22df3f02020-08-24 13:29:22 +02001198 return &((struct lysp_node_choice *)node)->child;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001199 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02001200 return &((struct lysp_node_list *)node)->child;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001201 case LYS_CASE:
Michal Vasko22df3f02020-08-24 13:29:22 +02001202 return &((struct lysp_node_case *)node)->child;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001203 case LYS_GROUPING:
Michal Vasko22df3f02020-08-24 13:29:22 +02001204 return &((struct lysp_grp *)node)->data;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001205 case LYS_AUGMENT:
Michal Vasko22df3f02020-08-24 13:29:22 +02001206 return &((struct lysp_augment *)node)->child;
Michal Vasko7f45cf22020-10-01 12:49:44 +02001207 case LYS_INPUT:
1208 case LYS_OUTPUT:
Michal Vasko22df3f02020-08-24 13:29:22 +02001209 return &((struct lysp_action_inout *)node)->data;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001210 case LYS_NOTIF:
Michal Vasko22df3f02020-08-24 13:29:22 +02001211 return &((struct lysp_notif *)node)->data;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001212 default:
1213 return NULL;
1214 }
1215}
1216
Radek Krejci056d0a82018-12-06 16:57:25 +01001217API const struct lysp_node *
1218lysp_node_children(const struct lysp_node *node)
1219{
1220 struct lysp_node **children;
Radek Krejcie7b95092019-05-15 11:03:07 +02001221
1222 if (!node) {
1223 return NULL;
1224 }
1225
Michal Vasko22df3f02020-08-24 13:29:22 +02001226 children = lysp_node_children_p((struct lysp_node *)node);
Radek Krejci056d0a82018-12-06 16:57:25 +01001227 if (children) {
1228 return *children;
1229 } else {
1230 return NULL;
1231 }
1232}
1233
1234struct lysc_action **
1235lysc_node_actions_p(struct lysc_node *node)
1236{
1237 assert(node);
1238 switch (node->nodetype) {
1239 case LYS_CONTAINER:
Michal Vasko22df3f02020-08-24 13:29:22 +02001240 return &((struct lysc_node_container *)node)->actions;
Radek Krejci056d0a82018-12-06 16:57:25 +01001241 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02001242 return &((struct lysc_node_list *)node)->actions;
Radek Krejci056d0a82018-12-06 16:57:25 +01001243 default:
1244 return NULL;
1245 }
1246}
1247
1248API const struct lysc_action *
1249lysc_node_actions(const struct lysc_node *node)
1250{
1251 struct lysc_action **actions;
Michal Vasko69730152020-10-09 16:30:07 +02001252
Michal Vasko22df3f02020-08-24 13:29:22 +02001253 actions = lysc_node_actions_p((struct lysc_node *)node);
Radek Krejci056d0a82018-12-06 16:57:25 +01001254 if (actions) {
1255 return *actions;
1256 } else {
1257 return NULL;
1258 }
1259}
1260
1261struct lysc_notif **
1262lysc_node_notifs_p(struct lysc_node *node)
1263{
1264 assert(node);
1265 switch (node->nodetype) {
1266 case LYS_CONTAINER:
Michal Vasko22df3f02020-08-24 13:29:22 +02001267 return &((struct lysc_node_container *)node)->notifs;
Radek Krejci056d0a82018-12-06 16:57:25 +01001268 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02001269 return &((struct lysc_node_list *)node)->notifs;
Radek Krejci056d0a82018-12-06 16:57:25 +01001270 default:
1271 return NULL;
1272 }
1273}
1274
1275API const struct lysc_notif *
1276lysc_node_notifs(const struct lysc_node *node)
1277{
1278 struct lysc_notif **notifs;
Michal Vasko69730152020-10-09 16:30:07 +02001279
Michal Vasko22df3f02020-08-24 13:29:22 +02001280 notifs = lysc_node_notifs_p((struct lysc_node *)node);
Radek Krejci056d0a82018-12-06 16:57:25 +01001281 if (notifs) {
1282 return *notifs;
1283 } else {
1284 return NULL;
1285 }
1286}
1287
Radek Krejcibbe09a92018-11-08 09:36:54 +01001288struct lysc_node **
Radek Krejci6eeb58f2019-02-22 16:29:37 +01001289lysc_node_children_p(const struct lysc_node *node, uint16_t flags)
Radek Krejcibbe09a92018-11-08 09:36:54 +01001290{
1291 assert(node);
1292 switch (node->nodetype) {
1293 case LYS_CONTAINER:
Michal Vasko22df3f02020-08-24 13:29:22 +02001294 return &((struct lysc_node_container *)node)->child;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001295 case LYS_CHOICE:
Michal Vasko20424b42020-08-31 12:29:38 +02001296 return (struct lysc_node **)&((struct lysc_node_choice *)node)->cases;
Radek Krejci01342af2019-01-03 15:18:08 +01001297 case LYS_CASE:
Michal Vasko22df3f02020-08-24 13:29:22 +02001298 return &((struct lysc_node_case *)node)->child;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001299 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +02001300 return &((struct lysc_node_list *)node)->child;
Michal Vasko1bf09392020-03-27 12:38:10 +01001301 case LYS_RPC:
Radek Krejci6eeb58f2019-02-22 16:29:37 +01001302 case LYS_ACTION:
1303 if (flags & LYS_CONFIG_R) {
Michal Vasko22df3f02020-08-24 13:29:22 +02001304 return &((struct lysc_action *)node)->output.data;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01001305 } else {
1306 /* LYS_CONFIG_W, but also the default case */
Michal Vasko22df3f02020-08-24 13:29:22 +02001307 return &((struct lysc_action *)node)->input.data;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01001308 }
Michal Vasko7f45cf22020-10-01 12:49:44 +02001309 case LYS_INPUT:
1310 case LYS_OUTPUT:
1311 return &((struct lysc_action_inout *)node)->data;
Radek Krejcifc11bd72019-04-11 16:00:05 +02001312 case LYS_NOTIF:
Michal Vasko22df3f02020-08-24 13:29:22 +02001313 return &((struct lysc_notif *)node)->data;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001314 default:
1315 return NULL;
1316 }
1317}
1318
Radek Krejci056d0a82018-12-06 16:57:25 +01001319API const struct lysc_node *
Radek Krejci6eeb58f2019-02-22 16:29:37 +01001320lysc_node_children(const struct lysc_node *node, uint16_t flags)
Radek Krejcia3045382018-11-22 14:30:31 +01001321{
Radek Krejci056d0a82018-12-06 16:57:25 +01001322 struct lysc_node **children;
Radek Krejcie7b95092019-05-15 11:03:07 +02001323
1324 if (!node) {
1325 return NULL;
1326 }
1327
Michal Vasko22df3f02020-08-24 13:29:22 +02001328 children = lysc_node_children_p((struct lysc_node *)node, flags);
Radek Krejci056d0a82018-12-06 16:57:25 +01001329 if (children) {
1330 return *children;
1331 } else {
Radek Krejcia3045382018-11-22 14:30:31 +01001332 return NULL;
1333 }
1334}
1335
Michal Vasko2a668712020-10-21 11:48:09 +02001336API const struct lysc_node *
Michal Vasko208a04a2020-10-21 15:17:12 +02001337lysc_node_children_full(const struct lysc_node *node, uint16_t flags)
Michal Vasko2a668712020-10-21 11:48:09 +02001338{
1339 switch (node->nodetype) {
1340 case LYS_CONTAINER:
1341 return ((struct lysc_node_container *)node)->child;
1342 case LYS_CHOICE:
1343 return (struct lysc_node *)((struct lysc_node_choice *)node)->cases;
1344 case LYS_CASE:
1345 return ((struct lysc_node_case *)node)->child;
1346 case LYS_LIST:
1347 return ((struct lysc_node_list *)node)->child;
1348 case LYS_RPC:
1349 case LYS_ACTION:
1350 if (flags & LYS_CONFIG_R) {
1351 return (struct lysc_node *)&((struct lysc_action *)node)->output;
1352 } else {
1353 /* LYS_CONFIG_W, but also the default case */
1354 return (struct lysc_node *)&((struct lysc_action *)node)->input;
1355 }
1356 case LYS_INPUT:
1357 case LYS_OUTPUT:
1358 return ((struct lysc_action_inout *)node)->data;
1359 case LYS_NOTIF:
1360 return ((struct lysc_notif *)node)->data;
1361 default:
1362 return NULL;
1363 }
1364}
1365
1366API const struct lysc_node *
Michal Vasko208a04a2020-10-21 15:17:12 +02001367lysc_node_parent_full(const struct lysc_node *node)
Michal Vasko2a668712020-10-21 11:48:09 +02001368{
1369 if (!node) {
1370 return NULL;
1371 } else if (node->nodetype == LYS_INPUT) {
1372 return (struct lysc_node *)(((char *)node) - offsetof(struct lysc_action, input));
1373 } else if (node->nodetype == LYS_OUTPUT) {
1374 return (struct lysc_node *)(((char *)node) - offsetof(struct lysc_action, output));
1375 } else if (node->parent && (node->parent->nodetype & (LYS_RPC | LYS_ACTION))) {
1376 if (node->flags & LYS_CONFIG_W) {
1377 return (struct lysc_node *)&((struct lysc_action *)node->parent)->input;
1378 } else {
1379 return (struct lysc_node *)&((struct lysc_action *)node->parent)->output;
1380 }
1381 } else {
1382 return node->parent;
1383 }
1384}
1385
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001386struct lys_module *
1387lysp_find_module(struct ly_ctx *ctx, const struct lysp_module *mod)
1388{
Radek Krejci1deb5be2020-08-26 16:43:36 +02001389 for (uint32_t u = 0; u < ctx->list.count; ++u) {
Michal Vasko22df3f02020-08-24 13:29:22 +02001390 if (((struct lys_module *)ctx->list.objs[u])->parsed == mod) {
Michal Vasko69730152020-10-09 16:30:07 +02001391 return (struct lys_module *)ctx->list.objs[u];
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001392 }
1393 }
1394 return NULL;
1395}
1396
Radek Krejcid6b76452019-09-03 17:03:03 +02001397enum ly_stmt
Michal Vasko63f3d842020-07-08 10:10:14 +02001398lysp_match_kw(struct lys_yang_parser_ctx *ctx, struct ly_in *in)
David Sedlákc10e7902018-12-17 02:17:59 +01001399{
David Sedlák1bccdfa2019-06-17 15:55:27 +02001400/**
Michal Vasko63f3d842020-07-08 10:10:14 +02001401 * @brief Move the INPUT by COUNT items. Also updates the indent value in yang parser context
David Sedlák1bccdfa2019-06-17 15:55:27 +02001402 * @param[in] CTX yang parser context to update its indent value.
Michal Vasko63f3d842020-07-08 10:10:14 +02001403 * @param[in,out] IN input to move
David Sedlák1bccdfa2019-06-17 15:55:27 +02001404 * @param[in] COUNT number of items for which the DATA pointer is supposed to move on.
Michal Vasko64246d82020-08-19 12:35:00 +02001405 *
1406 * *INDENT-OFF*
David Sedlák1bccdfa2019-06-17 15:55:27 +02001407 */
Michal Vasko63f3d842020-07-08 10:10:14 +02001408#define MOVE_IN(CTX, IN, COUNT) ly_in_skip(IN, COUNT);if(CTX){(CTX)->indent+=COUNT;}
1409#define IF_KW(STR, LEN, STMT) if (!strncmp(in->current, STR, LEN)) {MOVE_IN(ctx, in, LEN);*kw=STMT;}
1410#define IF_KW_PREFIX(STR, LEN) if (!strncmp(in->current, STR, LEN)) {MOVE_IN(ctx, in, LEN);
David Sedlák1bccdfa2019-06-17 15:55:27 +02001411#define IF_KW_PREFIX_END }
David Sedlák572e7ab2019-06-04 16:01:58 +02001412
Michal Vasko63f3d842020-07-08 10:10:14 +02001413 const char *start = in->current;
Radek Krejcid6b76452019-09-03 17:03:03 +02001414 enum ly_stmt result = LY_STMT_NONE;
1415 enum ly_stmt *kw = &result;
David Sedlák1bccdfa2019-06-17 15:55:27 +02001416 /* read the keyword itself */
Michal Vasko63f3d842020-07-08 10:10:14 +02001417 switch (in->current[0]) {
David Sedlák23a59a62018-10-26 13:08:02 +02001418 case 'a':
Michal Vasko63f3d842020-07-08 10:10:14 +02001419 MOVE_IN(ctx, in, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001420 IF_KW("rgument", 7, LY_STMT_ARGUMENT)
1421 else IF_KW("ugment", 6, LY_STMT_AUGMENT)
1422 else IF_KW("ction", 5, LY_STMT_ACTION)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001423 else IF_KW_PREFIX("ny", 2)
Radek Krejcid6b76452019-09-03 17:03:03 +02001424 IF_KW("data", 4, LY_STMT_ANYDATA)
1425 else IF_KW("xml", 3, LY_STMT_ANYXML)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001426 IF_KW_PREFIX_END
David Sedlák23a59a62018-10-26 13:08:02 +02001427 break;
1428 case 'b':
Michal Vasko63f3d842020-07-08 10:10:14 +02001429 MOVE_IN(ctx, in, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001430 IF_KW("ase", 3, LY_STMT_BASE)
1431 else IF_KW("elongs-to", 9, LY_STMT_BELONGS_TO)
1432 else IF_KW("it", 2, LY_STMT_BIT)
David Sedlák23a59a62018-10-26 13:08:02 +02001433 break;
1434 case 'c':
Michal Vasko63f3d842020-07-08 10:10:14 +02001435 MOVE_IN(ctx, in, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001436 IF_KW("ase", 3, LY_STMT_CASE)
1437 else IF_KW("hoice", 5, LY_STMT_CHOICE)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001438 else IF_KW_PREFIX("on", 2)
Radek Krejcid6b76452019-09-03 17:03:03 +02001439 IF_KW("fig", 3, LY_STMT_CONFIG)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001440 else IF_KW_PREFIX("ta", 2)
Radek Krejcid6b76452019-09-03 17:03:03 +02001441 IF_KW("ct", 2, LY_STMT_CONTACT)
1442 else IF_KW("iner", 4, LY_STMT_CONTAINER)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001443 IF_KW_PREFIX_END
1444 IF_KW_PREFIX_END
David Sedlák23a59a62018-10-26 13:08:02 +02001445 break;
1446 case 'd':
Michal Vasko63f3d842020-07-08 10:10:14 +02001447 MOVE_IN(ctx, in, 1);
David Sedlák1bccdfa2019-06-17 15:55:27 +02001448 IF_KW_PREFIX("e", 1)
Radek Krejcid6b76452019-09-03 17:03:03 +02001449 IF_KW("fault", 5, LY_STMT_DEFAULT)
1450 else IF_KW("scription", 9, LY_STMT_DESCRIPTION)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001451 else IF_KW_PREFIX("viat", 4)
Radek Krejcid6b76452019-09-03 17:03:03 +02001452 IF_KW("e", 1, LY_STMT_DEVIATE)
1453 else IF_KW("ion", 3, LY_STMT_DEVIATION)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001454 IF_KW_PREFIX_END
1455 IF_KW_PREFIX_END
David Sedlák23a59a62018-10-26 13:08:02 +02001456 break;
1457 case 'e':
Michal Vasko63f3d842020-07-08 10:10:14 +02001458 MOVE_IN(ctx, in, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001459 IF_KW("num", 3, LY_STMT_ENUM)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001460 else IF_KW_PREFIX("rror-", 5)
Radek Krejcid6b76452019-09-03 17:03:03 +02001461 IF_KW("app-tag", 7, LY_STMT_ERROR_APP_TAG)
1462 else IF_KW("message", 7, LY_STMT_ERROR_MESSAGE)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001463 IF_KW_PREFIX_END
Radek Krejcid6b76452019-09-03 17:03:03 +02001464 else IF_KW("xtension", 8, LY_STMT_EXTENSION)
David Sedlák23a59a62018-10-26 13:08:02 +02001465 break;
1466 case 'f':
Michal Vasko63f3d842020-07-08 10:10:14 +02001467 MOVE_IN(ctx, in, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001468 IF_KW("eature", 6, LY_STMT_FEATURE)
1469 else IF_KW("raction-digits", 14, LY_STMT_FRACTION_DIGITS)
David Sedlák23a59a62018-10-26 13:08:02 +02001470 break;
1471 case 'g':
Michal Vasko63f3d842020-07-08 10:10:14 +02001472 MOVE_IN(ctx, in, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001473 IF_KW("rouping", 7, LY_STMT_GROUPING)
David Sedlák23a59a62018-10-26 13:08:02 +02001474 break;
1475 case 'i':
Michal Vasko63f3d842020-07-08 10:10:14 +02001476 MOVE_IN(ctx, in, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001477 IF_KW("dentity", 7, LY_STMT_IDENTITY)
1478 else IF_KW("f-feature", 9, LY_STMT_IF_FEATURE)
1479 else IF_KW("mport", 5, LY_STMT_IMPORT)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001480 else IF_KW_PREFIX("n", 1)
Radek Krejcid6b76452019-09-03 17:03:03 +02001481 IF_KW("clude", 5, LY_STMT_INCLUDE)
1482 else IF_KW("put", 3, LY_STMT_INPUT)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001483 IF_KW_PREFIX_END
David Sedlák23a59a62018-10-26 13:08:02 +02001484 break;
1485 case 'k':
Michal Vasko63f3d842020-07-08 10:10:14 +02001486 MOVE_IN(ctx, in, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001487 IF_KW("ey", 2, LY_STMT_KEY)
David Sedlák23a59a62018-10-26 13:08:02 +02001488 break;
1489 case 'l':
Michal Vasko63f3d842020-07-08 10:10:14 +02001490 MOVE_IN(ctx, in, 1);
David Sedlák1bccdfa2019-06-17 15:55:27 +02001491 IF_KW_PREFIX("e", 1)
Radek Krejcid6b76452019-09-03 17:03:03 +02001492 IF_KW("af-list", 7, LY_STMT_LEAF_LIST)
1493 else IF_KW("af", 2, LY_STMT_LEAF)
1494 else IF_KW("ngth", 4, LY_STMT_LENGTH)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001495 IF_KW_PREFIX_END
Radek Krejcid6b76452019-09-03 17:03:03 +02001496 else IF_KW("ist", 3, LY_STMT_LIST)
David Sedlák23a59a62018-10-26 13:08:02 +02001497 break;
1498 case 'm':
Michal Vasko63f3d842020-07-08 10:10:14 +02001499 MOVE_IN(ctx, in, 1);
David Sedlák1bccdfa2019-06-17 15:55:27 +02001500 IF_KW_PREFIX("a", 1)
Radek Krejcid6b76452019-09-03 17:03:03 +02001501 IF_KW("ndatory", 7, LY_STMT_MANDATORY)
1502 else IF_KW("x-elements", 10, LY_STMT_MAX_ELEMENTS)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001503 IF_KW_PREFIX_END
Radek Krejcid6b76452019-09-03 17:03:03 +02001504 else IF_KW("in-elements", 11, LY_STMT_MIN_ELEMENTS)
1505 else IF_KW("ust", 3, LY_STMT_MUST)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001506 else IF_KW_PREFIX("od", 2)
Radek Krejcid6b76452019-09-03 17:03:03 +02001507 IF_KW("ule", 3, LY_STMT_MODULE)
1508 else IF_KW("ifier", 5, LY_STMT_MODIFIER)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001509 IF_KW_PREFIX_END
David Sedlák23a59a62018-10-26 13:08:02 +02001510 break;
1511 case 'n':
Michal Vasko63f3d842020-07-08 10:10:14 +02001512 MOVE_IN(ctx, in, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001513 IF_KW("amespace", 8, LY_STMT_NAMESPACE)
1514 else IF_KW("otification", 11, LY_STMT_NOTIFICATION)
David Sedlák23a59a62018-10-26 13:08:02 +02001515 break;
1516 case 'o':
Michal Vasko63f3d842020-07-08 10:10:14 +02001517 MOVE_IN(ctx, in, 1);
David Sedlák1bccdfa2019-06-17 15:55:27 +02001518 IF_KW_PREFIX("r", 1)
Radek Krejcid6b76452019-09-03 17:03:03 +02001519 IF_KW("dered-by", 8, LY_STMT_ORDERED_BY)
1520 else IF_KW("ganization", 10, LY_STMT_ORGANIZATION)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001521 IF_KW_PREFIX_END
Radek Krejcid6b76452019-09-03 17:03:03 +02001522 else IF_KW("utput", 5, LY_STMT_OUTPUT)
David Sedlák23a59a62018-10-26 13:08:02 +02001523 break;
1524 case 'p':
Michal Vasko63f3d842020-07-08 10:10:14 +02001525 MOVE_IN(ctx, in, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001526 IF_KW("ath", 3, LY_STMT_PATH)
1527 else IF_KW("attern", 6, LY_STMT_PATTERN)
1528 else IF_KW("osition", 7, LY_STMT_POSITION)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001529 else IF_KW_PREFIX("re", 2)
Radek Krejcid6b76452019-09-03 17:03:03 +02001530 IF_KW("fix", 3, LY_STMT_PREFIX)
1531 else IF_KW("sence", 5, LY_STMT_PRESENCE)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001532 IF_KW_PREFIX_END
David Sedlák23a59a62018-10-26 13:08:02 +02001533 break;
1534 case 'r':
Michal Vasko63f3d842020-07-08 10:10:14 +02001535 MOVE_IN(ctx, in, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001536 IF_KW("ange", 4, LY_STMT_RANGE)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001537 else IF_KW_PREFIX("e", 1)
1538 IF_KW_PREFIX("f", 1)
Radek Krejcid6b76452019-09-03 17:03:03 +02001539 IF_KW("erence", 6, LY_STMT_REFERENCE)
1540 else IF_KW("ine", 3, LY_STMT_REFINE)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001541 IF_KW_PREFIX_END
Radek Krejcid6b76452019-09-03 17:03:03 +02001542 else IF_KW("quire-instance", 14, LY_STMT_REQUIRE_INSTANCE)
1543 else IF_KW("vision-date", 11, LY_STMT_REVISION_DATE)
1544 else IF_KW("vision", 6, LY_STMT_REVISION)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001545 IF_KW_PREFIX_END
Radek Krejcid6b76452019-09-03 17:03:03 +02001546 else IF_KW("pc", 2, LY_STMT_RPC)
David Sedlák23a59a62018-10-26 13:08:02 +02001547 break;
1548 case 's':
Michal Vasko63f3d842020-07-08 10:10:14 +02001549 MOVE_IN(ctx, in, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001550 IF_KW("tatus", 5, LY_STMT_STATUS)
1551 else IF_KW("ubmodule", 8, LY_STMT_SUBMODULE)
David Sedlák23a59a62018-10-26 13:08:02 +02001552 break;
1553 case 't':
Michal Vasko63f3d842020-07-08 10:10:14 +02001554 MOVE_IN(ctx, in, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001555 IF_KW("ypedef", 6, LY_STMT_TYPEDEF)
1556 else IF_KW("ype", 3, LY_STMT_TYPE)
David Sedlák23a59a62018-10-26 13:08:02 +02001557 break;
1558 case 'u':
Michal Vasko63f3d842020-07-08 10:10:14 +02001559 MOVE_IN(ctx, in, 1);
David Sedlák1bccdfa2019-06-17 15:55:27 +02001560 IF_KW_PREFIX("ni", 2)
Radek Krejcid6b76452019-09-03 17:03:03 +02001561 IF_KW("que", 3, LY_STMT_UNIQUE)
1562 else IF_KW("ts", 2, LY_STMT_UNITS)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001563 IF_KW_PREFIX_END
Radek Krejcid6b76452019-09-03 17:03:03 +02001564 else IF_KW("ses", 3, LY_STMT_USES)
David Sedlák23a59a62018-10-26 13:08:02 +02001565 break;
1566 case 'v':
Michal Vasko63f3d842020-07-08 10:10:14 +02001567 MOVE_IN(ctx, in, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001568 IF_KW("alue", 4, LY_STMT_VALUE)
David Sedlák23a59a62018-10-26 13:08:02 +02001569 break;
1570 case 'w':
Michal Vasko63f3d842020-07-08 10:10:14 +02001571 MOVE_IN(ctx, in, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001572 IF_KW("hen", 3, LY_STMT_WHEN)
David Sedlák23a59a62018-10-26 13:08:02 +02001573 break;
1574 case 'y':
Michal Vasko63f3d842020-07-08 10:10:14 +02001575 MOVE_IN(ctx, in, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001576 IF_KW("ang-version", 11, LY_STMT_YANG_VERSION)
1577 else IF_KW("in-element", 10, LY_STMT_YIN_ELEMENT)
David Sedlák23a59a62018-10-26 13:08:02 +02001578 break;
David Sedlák23a59a62018-10-26 13:08:02 +02001579 default:
David Sedlák1bccdfa2019-06-17 15:55:27 +02001580 /* if context is not NULL we are matching keyword from YANG data*/
1581 if (ctx) {
Michal Vasko63f3d842020-07-08 10:10:14 +02001582 if (in->current[0] == ';') {
1583 MOVE_IN(ctx, in, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001584 *kw = LY_STMT_SYNTAX_SEMICOLON;
Michal Vasko63f3d842020-07-08 10:10:14 +02001585 } else if (in->current[0] == '{') {
1586 MOVE_IN(ctx, in, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001587 *kw = LY_STMT_SYNTAX_LEFT_BRACE;
Michal Vasko63f3d842020-07-08 10:10:14 +02001588 } else if (in->current[0] == '}') {
1589 MOVE_IN(ctx, in, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001590 *kw = LY_STMT_SYNTAX_RIGHT_BRACE;
David Sedlák1bccdfa2019-06-17 15:55:27 +02001591 }
1592 }
David Sedlák23a59a62018-10-26 13:08:02 +02001593 break;
1594 }
1595
Michal Vasko63f3d842020-07-08 10:10:14 +02001596 if ((*kw < LY_STMT_SYNTAX_SEMICOLON) && isalnum(in->current[0])) {
Radek Krejci6e546bf2020-05-19 16:16:19 +02001597 /* the keyword is not terminated */
1598 *kw = LY_STMT_NONE;
Michal Vasko63f3d842020-07-08 10:10:14 +02001599 in->current = start;
Radek Krejci6e546bf2020-05-19 16:16:19 +02001600 }
1601
David Sedlák1bccdfa2019-06-17 15:55:27 +02001602#undef IF_KW
1603#undef IF_KW_PREFIX
1604#undef IF_KW_PREFIX_END
David Sedlák18730132019-03-15 15:51:34 +01001605#undef MOVE_IN
Michal Vasko64246d82020-08-19 12:35:00 +02001606 /* *INDENT-ON* */
David Sedlák18730132019-03-15 15:51:34 +01001607
David Sedlák1bccdfa2019-06-17 15:55:27 +02001608 return result;
David Sedlák23a59a62018-10-26 13:08:02 +02001609}
David Sedlákecf5eb82019-06-03 14:12:44 +02001610
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001611LY_ARRAY_COUNT_TYPE
1612lysp_ext_instance_iter(struct lysp_ext_instance *ext, LY_ARRAY_COUNT_TYPE index, LYEXT_SUBSTMT substmt)
Radek Krejcid3ca0632019-04-16 16:54:54 +02001613{
1614 LY_CHECK_ARG_RET(NULL, ext, LY_EINVAL);
1615
Michal Vaskod989ba02020-08-24 10:59:24 +02001616 for ( ; index < LY_ARRAY_COUNT(ext); index++) {
Radek Krejcid3ca0632019-04-16 16:54:54 +02001617 if (ext[index].insubstmt == substmt) {
1618 return index;
1619 }
1620 }
1621
Michal Vaskofd69e1d2020-07-03 11:57:17 +02001622 return LY_ARRAY_COUNT(ext);
Radek Krejcid3ca0632019-04-16 16:54:54 +02001623}
1624
Michal Vasko62ed12d2020-05-21 10:08:25 +02001625const struct lysc_node *
1626lysc_data_parent(const struct lysc_node *schema)
1627{
1628 const struct lysc_node *parent;
1629
Radek Krejci1e008d22020-08-17 11:37:37 +02001630 for (parent = schema->parent; parent && (parent->nodetype & (LYS_CHOICE | LYS_CASE)); parent = parent->parent) {}
Michal Vasko62ed12d2020-05-21 10:08:25 +02001631
1632 return parent;
1633}
Michal Vasko00cbf532020-06-15 13:58:47 +02001634
Radek Krejci857189e2020-09-01 13:26:36 +02001635ly_bool
Michal Vasko00cbf532020-06-15 13:58:47 +02001636lysc_is_output(const struct lysc_node *schema)
1637{
1638 const struct lysc_node *parent;
1639
1640 assert(schema);
1641
Radek Krejci1e008d22020-08-17 11:37:37 +02001642 for (parent = schema->parent; parent && !(parent->nodetype & (LYS_RPC | LYS_ACTION)); parent = parent->parent) {}
Michal Vasko00cbf532020-06-15 13:58:47 +02001643 if (parent && (schema->flags & LYS_CONFIG_R)) {
1644 return 1;
1645 }
1646 return 0;
1647}