blob: a96ad4d5c4ec5b84d1a99e16085bca4b75edb0cf [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 Krejci9ed7a192018-10-31 16:23:51 +010014#include "common.h"
Radek Krejci86d106e2018-10-18 09:53:19 +020015
Radek Krejcie7b95092019-05-15 11:03:07 +020016#include <assert.h>
Radek Krejci86d106e2018-10-18 09:53:19 +020017#include <ctype.h>
Radek Krejci9ed7a192018-10-31 16:23:51 +010018#include <errno.h>
19#include <fcntl.h>
Radek Krejci86d106e2018-10-18 09:53:19 +020020#include <limits.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020021#include <stdint.h>
Radek Krejci9ed7a192018-10-31 16:23:51 +010022#include <stdlib.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020023#include <string.h>
Radek Krejci9ed7a192018-10-31 16:23:51 +010024#include <unistd.h>
Radek Krejci86d106e2018-10-18 09:53:19 +020025#include <time.h>
26
Radek Krejcie7b95092019-05-15 11:03:07 +020027#include "context.h"
28#include "dict.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020029#include "hash_table.h"
30#include "log.h"
Radek Krejci0935f412019-08-20 16:15:18 +020031#include "plugins_exts.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020032#include "set.h"
33#include "tree.h"
34#include "tree_schema.h"
Radek Krejci86d106e2018-10-18 09:53:19 +020035#include "tree_schema_internal.h"
36
Radek Krejci85747952019-06-07 16:43:43 +020037LY_ERR
Radek Krejci95710c92019-02-11 15:49:55 +010038lys_resolve_schema_nodeid(struct lysc_ctx *ctx, const char *nodeid, size_t nodeid_len, const struct lysc_node *context_node,
Radek Krejci6eeb58f2019-02-22 16:29:37 +010039 const struct lys_module *context_module, int nodetype, int implement,
40 const struct lysc_node **target, uint16_t *result_flag)
Radek Krejci9bb94eb2018-12-04 16:48:35 +010041{
42 LY_ERR ret = LY_EVALID;
43 const char *name, *prefix, *id;
Radek Krejci9bb94eb2018-12-04 16:48:35 +010044 size_t name_len, prefix_len;
Radek Krejci7af64242019-02-18 13:07:53 +010045 const struct lys_module *mod;
Radek Krejci95710c92019-02-11 15:49:55 +010046 const char *nodeid_type;
Radek Krejci6eeb58f2019-02-22 16:29:37 +010047 int getnext_extra_flag = 0;
Radek Krejci05b774b2019-02-25 13:26:18 +010048 int current_nodetype = 0;
Radek Krejci9bb94eb2018-12-04 16:48:35 +010049
50 assert(nodeid);
Radek Krejci9bb94eb2018-12-04 16:48:35 +010051 assert(target);
Radek Krejci6eeb58f2019-02-22 16:29:37 +010052 assert(result_flag);
Radek Krejci9bb94eb2018-12-04 16:48:35 +010053 *target = NULL;
Radek Krejci6eeb58f2019-02-22 16:29:37 +010054 *result_flag = 0;
Radek Krejci9bb94eb2018-12-04 16:48:35 +010055
56 id = nodeid;
Radek Krejci95710c92019-02-11 15:49:55 +010057
58 if (context_node) {
59 /* descendant-schema-nodeid */
60 nodeid_type = "descendant";
Radek Krejci3641f562019-02-13 15:38:40 +010061
62 if (*id == '/') {
63 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
64 "Invalid descendant-schema-nodeid value \"%.*s\" - absolute-schema-nodeid used.",
65 nodeid_len ? nodeid_len : strlen(nodeid), nodeid);
66 return LY_EVALID;
67 }
Radek Krejci95710c92019-02-11 15:49:55 +010068 } else {
69 /* absolute-schema-nodeid */
70 nodeid_type = "absolute";
Radek Krejci95710c92019-02-11 15:49:55 +010071
72 if (*id != '/') {
73 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
74 "Invalid absolute-schema-nodeid value \"%.*s\" - missing starting \"/\".",
Radek Krejci3641f562019-02-13 15:38:40 +010075 nodeid_len ? nodeid_len : strlen(nodeid), nodeid);
Radek Krejci95710c92019-02-11 15:49:55 +010076 return LY_EVALID;
77 }
78 ++id;
79 }
80
Radek Krejcib4a4a272019-06-10 12:44:52 +020081 while (*id && (ret = ly_parse_nodeid(&id, &prefix, &prefix_len, &name, &name_len)) == LY_SUCCESS) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +010082 if (prefix) {
Radek Krejci95710c92019-02-11 15:49:55 +010083 mod = lys_module_find_prefix(context_module, prefix, prefix_len);
Radek Krejci9bb94eb2018-12-04 16:48:35 +010084 if (!mod) {
85 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
Radek Krejci95710c92019-02-11 15:49:55 +010086 "Invalid %s-schema-nodeid value \"%.*s\" - prefix \"%.*s\" not defined in module \"%s\".",
87 nodeid_type, id - nodeid, nodeid, prefix_len, prefix, context_module->name);
Radek Krejci9bb94eb2018-12-04 16:48:35 +010088 return LY_ENOTFOUND;
89 }
90 } else {
Radek Krejci95710c92019-02-11 15:49:55 +010091 mod = context_module;
92 }
93 if (implement && !mod->implemented) {
94 /* make the module implemented */
Michal Vasko294b76d2019-12-16 10:37:54 +010095 ret = lys_set_implemented_internal((struct lys_module*)mod, 2);
96 LY_CHECK_RET(ret);
Radek Krejci9bb94eb2018-12-04 16:48:35 +010097 }
Michal Vasko1bf09392020-03-27 12:38:10 +010098 if (context_node && (context_node->nodetype & (LYS_RPC | LYS_ACTION))) {
Radek Krejci6eeb58f2019-02-22 16:29:37 +010099 /* move through input/output manually */
Radek Krejci7f9b6512019-09-18 13:11:09 +0200100 if (!ly_strncmp("input", name, name_len)) {
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100101 (*result_flag) |= LYSC_OPT_RPC_INPUT;
Radek Krejci7f9b6512019-09-18 13:11:09 +0200102 } else if (!ly_strncmp("output", name, name_len)) {
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100103 (*result_flag) |= LYSC_OPT_RPC_OUTPUT;
104 getnext_extra_flag = LYS_GETNEXT_OUTPUT;
Radek Krejci05b774b2019-02-25 13:26:18 +0100105 } else {
106 goto getnext;
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100107 }
Radek Krejci05b774b2019-02-25 13:26:18 +0100108 current_nodetype = LYS_INOUT;
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100109 } else {
Radek Krejci05b774b2019-02-25 13:26:18 +0100110getnext:
Michal Vaskoe444f752020-02-10 12:20:06 +0100111 context_node = lys_find_child(context_node, mod, name, name_len, 0,
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100112 getnext_extra_flag | LYS_GETNEXT_NOSTATECHECK | LYS_GETNEXT_WITHCHOICE | LYS_GETNEXT_WITHCASE);
113 if (!context_node) {
114 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
115 "Invalid %s-schema-nodeid value \"%.*s\" - target node not found.", nodeid_type, id - nodeid, nodeid);
116 return LY_ENOTFOUND;
117 }
118 getnext_extra_flag = 0;
Radek Krejci05b774b2019-02-25 13:26:18 +0100119 current_nodetype = context_node->nodetype;
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100120
Radek Krejci05b774b2019-02-25 13:26:18 +0100121 if (current_nodetype == LYS_NOTIF) {
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100122 (*result_flag) |= LYSC_OPT_NOTIFICATION;
123 }
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100124 }
Radek Krejci01342af2019-01-03 15:18:08 +0100125 if (!*id || (nodeid_len && ((size_t)(id - nodeid) >= nodeid_len))) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100126 break;
127 }
Radek Krejci01342af2019-01-03 15:18:08 +0100128 if (*id != '/') {
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100129 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
Radek Krejci95710c92019-02-11 15:49:55 +0100130 "Invalid %s-schema-nodeid value \"%.*s\" - missing \"/\" as node-identifier separator.",
131 nodeid_type, id - nodeid + 1, nodeid);
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100132 return LY_EVALID;
133 }
134 ++id;
135 }
136
137 if (ret == LY_SUCCESS) {
Radek Krejci7af64242019-02-18 13:07:53 +0100138 *target = context_node;
Radek Krejci05b774b2019-02-25 13:26:18 +0100139 if (nodetype & LYS_INOUT) {
140 /* instead of input/output nodes, the RPC/action node is actually returned */
141 }
142 if (nodetype && !(current_nodetype & nodetype)) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100143 return LY_EDENIED;
144 }
Radek Krejci95710c92019-02-11 15:49:55 +0100145 } else {
146 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
147 "Invalid %s-schema-nodeid value \"%.*s\" - unexpected end of expression.",
Radek Krejci3641f562019-02-13 15:38:40 +0100148 nodeid_type, nodeid_len ? nodeid_len : strlen(nodeid), nodeid);
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100149 }
150
151 return ret;
152}
153
154LY_ERR
Radek Krejcie7b95092019-05-15 11:03:07 +0200155lysp_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 +0200156{
157 struct lysp_import *i;
158
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100159 if (module_prefix && &module_prefix != value && !strcmp(module_prefix, *value)) {
Michal Vaskob36053d2020-03-26 15:49:30 +0100160 LOGVAL_PARSER(ctx, LYVE_REFERENCE, "Prefix \"%s\" already used as module prefix.", *value);
Radek Krejci86d106e2018-10-18 09:53:19 +0200161 return LY_EEXIST;
162 }
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100163 LY_ARRAY_FOR(imports, struct lysp_import, i) {
164 if (i->prefix && &i->prefix != value && !strcmp(i->prefix, *value)) {
Michal Vaskob36053d2020-03-26 15:49:30 +0100165 LOGVAL_PARSER(ctx, LYVE_REFERENCE, "Prefix \"%s\" already used to import \"%s\" module.", *value, i->name);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100166 return LY_EEXIST;
Radek Krejci86d106e2018-10-18 09:53:19 +0200167 }
168 }
169 return LY_SUCCESS;
170}
171
172LY_ERR
Radek Krejci4f28eda2018-11-12 11:46:16 +0100173lysc_check_status(struct lysc_ctx *ctx,
174 uint16_t flags1, void *mod1, const char *name1,
175 uint16_t flags2, void *mod2, const char *name2)
176{
177 uint16_t flg1, flg2;
178
179 flg1 = (flags1 & LYS_STATUS_MASK) ? (flags1 & LYS_STATUS_MASK) : LYS_STATUS_CURR;
180 flg2 = (flags2 & LYS_STATUS_MASK) ? (flags2 & LYS_STATUS_MASK) : LYS_STATUS_CURR;
181
182 if ((flg1 < flg2) && (mod1 == mod2)) {
183 if (ctx) {
184 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
185 "A %s definition \"%s\" is not allowed to reference %s definition \"%s\".",
186 flg1 == LYS_STATUS_CURR ? "current" : "deprecated", name1,
187 flg2 == LYS_STATUS_OBSLT ? "obsolete" : "deprecated", name2);
188 }
189 return LY_EVALID;
190 }
191
192 return LY_SUCCESS;
193}
194
195LY_ERR
Radek Krejcie7b95092019-05-15 11:03:07 +0200196lysp_check_date(struct lys_parser_ctx *ctx, const char *date, int date_len, const char *stmt)
Radek Krejci86d106e2018-10-18 09:53:19 +0200197{
198 int i;
199 struct tm tm, tm_;
200 char *r;
201
Michal Vaskob36053d2020-03-26 15:49:30 +0100202 LY_CHECK_ARG_RET(ctx ? PARSER_CTX(ctx) : NULL, date, LY_EINVAL);
203 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 +0200204
205 /* check format */
206 for (i = 0; i < date_len; i++) {
207 if (i == 4 || i == 7) {
208 if (date[i] != '-') {
209 goto error;
210 }
211 } else if (!isdigit(date[i])) {
212 goto error;
213 }
214 }
215
216 /* check content, e.g. 2018-02-31 */
217 memset(&tm, 0, sizeof tm);
218 r = strptime(date, "%Y-%m-%d", &tm);
219 if (!r || r != &date[LY_REV_SIZE - 1]) {
220 goto error;
221 }
222 memcpy(&tm_, &tm, sizeof tm);
223 mktime(&tm_); /* mktime modifies tm_ if it refers invalid date */
224 if (tm.tm_mday != tm_.tm_mday) { /* e.g 2018-02-29 -> 2018-03-01 */
225 /* checking days is enough, since other errors
226 * have been checked by strptime() */
227 goto error;
228 }
229
230 return LY_SUCCESS;
231
232error:
Radek Krejcid33273d2018-10-25 14:55:52 +0200233 if (stmt) {
Radek Krejcibbe09a92018-11-08 09:36:54 +0100234 if (ctx) {
Michal Vaskob36053d2020-03-26 15:49:30 +0100235 LOGVAL_PARSER(ctx, LY_VCODE_INVAL, date_len, date, stmt);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100236 } else {
237 LOGVAL(NULL, LY_VLOG_NONE, NULL, LY_VCODE_INVAL, date_len, date, stmt);
238 }
Radek Krejcid33273d2018-10-25 14:55:52 +0200239 }
Radek Krejci86d106e2018-10-18 09:53:19 +0200240 return LY_EINVAL;
241}
242
243void
244lysp_sort_revisions(struct lysp_revision *revs)
245{
246 uint8_t i, r;
247 struct lysp_revision rev;
248
249 for (i = 1, r = 0; revs && i < LY_ARRAY_SIZE(revs); i++) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200250 if (strcmp(revs[i].date, revs[r].date) > 0) {
Radek Krejci86d106e2018-10-18 09:53:19 +0200251 r = i;
252 }
253 }
254
255 if (r) {
256 /* the newest revision is not on position 0, switch them */
Radek Krejci2c4e7172018-10-19 15:56:26 +0200257 memcpy(&rev, &revs[0], sizeof rev);
258 memcpy(&revs[0], &revs[r], sizeof rev);
259 memcpy(&revs[r], &rev, sizeof rev);
Radek Krejci86d106e2018-10-18 09:53:19 +0200260 }
261}
Radek Krejci151a5b72018-10-19 14:21:44 +0200262
Radek Krejcibbe09a92018-11-08 09:36:54 +0100263static const struct lysp_tpdf *
264lysp_type_match(const char *name, struct lysp_node *node)
265{
Radek Krejci0fb28562018-12-13 15:17:37 +0100266 const struct lysp_tpdf *typedefs;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200267 LY_ARRAY_SIZE_TYPE u;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100268
Radek Krejci0fb28562018-12-13 15:17:37 +0100269 typedefs = lysp_node_typedefs(node);
270 LY_ARRAY_FOR(typedefs, u) {
271 if (!strcmp(name, typedefs[u].name)) {
272 /* match */
273 return &typedefs[u];
Radek Krejcibbe09a92018-11-08 09:36:54 +0100274 }
275 }
276
277 return NULL;
278}
279
Radek Krejci4f28eda2018-11-12 11:46:16 +0100280static LY_DATA_TYPE
281lysp_type_str2builtin(const char *name, size_t len)
282{
283 if (len >= 4) { /* otherwise it does not match any built-in type */
284 if (name[0] == 'b') {
285 if (name[1] == 'i') {
286 if (len == 6 && !strncmp(&name[2], "nary", 4)) {
287 return LY_TYPE_BINARY;
288 } else if (len == 4 && !strncmp(&name[2], "ts", 2)) {
289 return LY_TYPE_BITS;
290 }
291 } else if (len == 7 && !strncmp(&name[1], "oolean", 6)) {
292 return LY_TYPE_BOOL;
293 }
294 } else if (name[0] == 'd') {
295 if (len == 9 && !strncmp(&name[1], "ecimal64", 8)) {
296 return LY_TYPE_DEC64;
297 }
298 } else if (name[0] == 'e') {
299 if (len == 5 && !strncmp(&name[1], "mpty", 4)) {
300 return LY_TYPE_EMPTY;
301 } else if (len == 11 && !strncmp(&name[1], "numeration", 10)) {
302 return LY_TYPE_ENUM;
303 }
304 } else if (name[0] == 'i') {
305 if (name[1] == 'n') {
306 if (len == 4 && !strncmp(&name[2], "t8", 2)) {
307 return LY_TYPE_INT8;
308 } else if (len == 5) {
309 if (!strncmp(&name[2], "t16", 3)) {
310 return LY_TYPE_INT16;
311 } else if (!strncmp(&name[2], "t32", 3)) {
312 return LY_TYPE_INT32;
313 } else if (!strncmp(&name[2], "t64", 3)) {
314 return LY_TYPE_INT64;
315 }
316 } else if (len == 19 && !strncmp(&name[2], "stance-identifier", 17)) {
317 return LY_TYPE_INST;
318 }
319 } else if (len == 11 && !strncmp(&name[1], "dentityref", 10)) {
320 return LY_TYPE_IDENT;
321 }
322 } else if (name[0] == 'l') {
323 if (len == 7 && !strncmp(&name[1], "eafref", 6)) {
324 return LY_TYPE_LEAFREF;
325 }
326 } else if (name[0] == 's') {
327 if (len == 6 && !strncmp(&name[1], "tring", 5)) {
328 return LY_TYPE_STRING;
329 }
330 } else if (name[0] == 'u') {
331 if (name[1] == 'n') {
332 if (len == 5 && !strncmp(&name[2], "ion", 3)) {
333 return LY_TYPE_UNION;
334 }
335 } else if (name[1] == 'i' && name[2] == 'n' && name[3] == 't') {
336 if (len == 5 && name[4] == '8') {
337 return LY_TYPE_UINT8;
338 } else if (len == 6) {
339 if (!strncmp(&name[4], "16", 2)) {
340 return LY_TYPE_UINT16;
341 } else if (!strncmp(&name[4], "32", 2)) {
342 return LY_TYPE_UINT32;
343 } else if (!strncmp(&name[4], "64", 2)) {
344 return LY_TYPE_UINT64;
345 }
346 }
347 }
348 }
349 }
350
351 return LY_TYPE_UNKNOWN;
352}
353
Radek Krejcibbe09a92018-11-08 09:36:54 +0100354LY_ERR
355lysp_type_find(const char *id, struct lysp_node *start_node, struct lysp_module *start_module,
Radek Krejci4f28eda2018-11-12 11:46:16 +0100356 LY_DATA_TYPE *type, const struct lysp_tpdf **tpdf, struct lysp_node **node, struct lysp_module **module)
Radek Krejcibbe09a92018-11-08 09:36:54 +0100357{
358 const char *str, *name;
359 struct lysp_tpdf *typedefs;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200360 LY_ARRAY_SIZE_TYPE u, v;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100361
362 assert(id);
363 assert(start_module);
364 assert(tpdf);
365 assert(node);
366 assert(module);
367
Radek Krejci4f28eda2018-11-12 11:46:16 +0100368 *node = NULL;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100369 str = strchr(id, ':');
370 if (str) {
371 *module = lysp_module_find_prefix(start_module, id, str - id);
372 name = str + 1;
Radek Krejci4f28eda2018-11-12 11:46:16 +0100373 *type = LY_TYPE_UNKNOWN;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100374 } else {
375 *module = start_module;
376 name = id;
Radek Krejci4f28eda2018-11-12 11:46:16 +0100377
378 /* check for built-in types */
379 *type = lysp_type_str2builtin(name, strlen(name));
380 if (*type) {
381 *tpdf = NULL;
382 return LY_SUCCESS;
383 }
Radek Krejcibbe09a92018-11-08 09:36:54 +0100384 }
385 LY_CHECK_RET(!(*module), LY_ENOTFOUND);
386
387 if (start_node && *module == start_module) {
388 /* search typedefs in parent's nodes */
389 *node = start_node;
390 while (*node) {
391 *tpdf = lysp_type_match(name, *node);
392 if (*tpdf) {
393 /* match */
394 return LY_SUCCESS;
395 }
396 *node = (*node)->parent;
397 }
398 }
399
400 /* search in top-level typedefs */
401 if ((*module)->typedefs) {
402 LY_ARRAY_FOR((*module)->typedefs, u) {
403 if (!strcmp(name, (*module)->typedefs[u].name)) {
404 /* match */
405 *tpdf = &(*module)->typedefs[u];
406 return LY_SUCCESS;
407 }
408 }
409 }
410
411 /* search in submodules' typedefs */
412 LY_ARRAY_FOR((*module)->includes, u) {
413 typedefs = (*module)->includes[u].submodule->typedefs;
Radek Krejci76b3e962018-12-14 17:01:25 +0100414 LY_ARRAY_FOR(typedefs, v) {
415 if (!strcmp(name, typedefs[v].name)) {
416 /* match */
417 *tpdf = &typedefs[v];
418 return LY_SUCCESS;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100419 }
420 }
421 }
422
423 return LY_ENOTFOUND;
424}
425
David Sedlák6544c182019-07-12 13:17:33 +0200426LY_ERR
David Sedlák07869a52019-07-12 14:28:19 +0200427lysp_check_enum_name(struct lys_parser_ctx *ctx, const char *name, size_t name_len)
David Sedlák6544c182019-07-12 13:17:33 +0200428{
429 if (!name_len) {
430 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Enum name must not be zero-length.");
431 return LY_EVALID;
432 } else if (isspace(name[0]) || isspace(name[name_len - 1])) {
433 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Enum name must not have any leading or trailing whitespaces (\"%.*s\").",
434 name_len, name);
435 return LY_EVALID;
436 } else {
437 for (size_t u = 0; u < name_len; ++u) {
438 if (iscntrl(name[u])) {
Michal Vaskob36053d2020-03-26 15:49:30 +0100439 LOGWRN(PARSER_CTX(ctx), "Control characters in enum name should be avoided (\"%.*s\", character number %d).",
David Sedlák6544c182019-07-12 13:17:33 +0200440 name_len, name, u + 1);
441 break;
442 }
443 }
444 }
445
446 return LY_SUCCESS;
447}
448
Michal Vaskob36053d2020-03-26 15:49:30 +0100449/**
Radek Krejcibbe09a92018-11-08 09:36:54 +0100450 * @brief Check name of a new type to avoid name collisions.
451 *
452 * @param[in] ctx Parser context, module where the type is being defined is taken from here.
453 * @param[in] node Schema node where the type is being defined, NULL in case of a top-level typedef.
454 * @param[in] tpdf Typedef definition to check.
455 * @param[in,out] tpdfs_global Initialized hash table to store temporary data between calls. When the module's
456 * typedefs are checked, caller is supposed to free the table.
457 * @param[in,out] tpdfs_global Initialized hash table to store temporary data between calls. When the module's
458 * typedefs are checked, caller is supposed to free the table.
459 * @return LY_EEXIST in case of collision, LY_SUCCESS otherwise.
460 */
461static LY_ERR
Radek Krejcie7b95092019-05-15 11:03:07 +0200462lysp_check_typedef(struct lys_parser_ctx *ctx, struct lysp_node *node, const struct lysp_tpdf *tpdf,
Radek Krejcibbe09a92018-11-08 09:36:54 +0100463 struct hash_table *tpdfs_global, struct hash_table *tpdfs_scoped)
464{
465 struct lysp_node *parent;
466 uint32_t hash;
467 size_t name_len;
468 const char *name;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200469 LY_ARRAY_SIZE_TYPE u;
Radek Krejci0fb28562018-12-13 15:17:37 +0100470 const struct lysp_tpdf *typedefs;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100471
472 assert(ctx);
473 assert(tpdf);
474
475 name = tpdf->name;
476 name_len = strlen(name);
477
Radek Krejci4f28eda2018-11-12 11:46:16 +0100478 if (lysp_type_str2builtin(name, name_len)) {
Michal Vaskob36053d2020-03-26 15:49:30 +0100479 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 +0100480 return LY_EEXIST;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100481 }
482
483 /* check locally scoped typedefs (avoid name shadowing) */
484 if (node) {
Radek Krejci0fb28562018-12-13 15:17:37 +0100485 typedefs = lysp_node_typedefs(node);
486 LY_ARRAY_FOR(typedefs, u) {
487 if (&typedefs[u] == tpdf) {
488 break;
489 }
490 if (!strcmp(name, typedefs[u].name)) {
Michal Vaskob36053d2020-03-26 15:49:30 +0100491 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Invalid name \"%s\" of typedef - name collision with sibling type.", name);
Radek Krejci0fb28562018-12-13 15:17:37 +0100492 return LY_EEXIST;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100493 }
494 }
495 /* search typedefs in parent's nodes */
Radek Krejci87e78ca2019-05-02 09:51:29 +0200496 for (parent = node->parent; parent; parent = parent->parent) {
Radek Krejcibbe09a92018-11-08 09:36:54 +0100497 if (lysp_type_match(name, parent)) {
Michal Vaskob36053d2020-03-26 15:49:30 +0100498 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 +0100499 return LY_EEXIST;
500 }
501 }
502 }
503
504 /* check collision with the top-level typedefs */
505 hash = dict_hash(name, name_len);
506 if (node) {
507 lyht_insert(tpdfs_scoped, &name, hash, NULL);
508 if (!lyht_find(tpdfs_global, &name, hash, NULL)) {
Michal Vaskob36053d2020-03-26 15:49:30 +0100509 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 +0100510 return LY_EEXIST;
511 }
512 } else {
513 if (lyht_insert(tpdfs_global, &name, hash, NULL)) {
Michal Vaskob36053d2020-03-26 15:49:30 +0100514 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 +0100515 return LY_EEXIST;
516 }
Radek Krejci3b1f9292018-11-08 10:58:35 +0100517 /* it is not necessary to test collision with the scoped types - in lysp_check_typedefs, all the
518 * top-level typedefs are inserted into the tables before the scoped typedefs, so the collision
519 * is detected in the first branch few lines above */
Radek Krejcibbe09a92018-11-08 09:36:54 +0100520 }
521
522 return LY_SUCCESS;
523}
524
525static int
526lysp_id_cmp(void *val1, void *val2, int UNUSED(mod), void *UNUSED(cb_data))
527{
528 return !strcmp(val1, val2);
529}
530
531LY_ERR
David Sedlákd2ebe572019-07-22 12:53:14 +0200532lysp_parse_finalize_reallocated(struct lys_parser_ctx *ctx, struct lysp_grp *groupings, struct lysp_augment *augments,
533 struct lysp_action *actions, struct lysp_notif *notifs)
534{
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200535 LY_ARRAY_SIZE_TYPE u, v;
David Sedlákd2ebe572019-07-22 12:53:14 +0200536 struct lysp_node *child;
537
538 /* finalize parent pointers to the reallocated items */
539
540 /* gropings */
541 LY_ARRAY_FOR(groupings, u) {
542 LY_LIST_FOR(groupings[u].data, child) {
543 child->parent = (struct lysp_node*)&groupings[u];
544 }
545 LY_ARRAY_FOR(groupings[u].actions, v) {
546 groupings[u].actions[v].parent = (struct lysp_node*)&groupings[u];
547 }
548 LY_ARRAY_FOR(groupings[u].notifs, v) {
549 groupings[u].notifs[v].parent = (struct lysp_node*)&groupings[u];
550 }
551 LY_ARRAY_FOR(groupings[u].groupings, v) {
552 groupings[u].groupings[v].parent = (struct lysp_node*)&groupings[u];
553 }
554 if (groupings[u].typedefs) {
555 ly_set_add(&ctx->tpdfs_nodes, &groupings[u], 0);
556 }
557 }
558
559 /* augments */
560 LY_ARRAY_FOR(augments, u) {
561 LY_LIST_FOR(augments[u].child, child) {
562 child->parent = (struct lysp_node*)&augments[u];
563 }
564 LY_ARRAY_FOR(augments[u].actions, v) {
565 augments[u].actions[v].parent = (struct lysp_node*)&augments[u];
566 }
567 LY_ARRAY_FOR(augments[u].notifs, v) {
568 augments[u].notifs[v].parent = (struct lysp_node*)&augments[u];
569 }
570 }
571
572 /* actions */
573 LY_ARRAY_FOR(actions, u) {
574 if (actions[u].input.parent) {
575 actions[u].input.parent = (struct lysp_node*)&actions[u];
576 LY_LIST_FOR(actions[u].input.data, child) {
577 child->parent = (struct lysp_node*)&actions[u].input;
578 }
579 LY_ARRAY_FOR(actions[u].input.groupings, v) {
580 actions[u].input.groupings[v].parent = (struct lysp_node*)&actions[u].input;
581 }
582 if (actions[u].input.typedefs) {
583 ly_set_add(&ctx->tpdfs_nodes, &actions[u].input, 0);
584 }
585 }
586 if (actions[u].output.parent) {
587 actions[u].output.parent = (struct lysp_node*)&actions[u];
588 LY_LIST_FOR(actions[u].output.data, child) {
589 child->parent = (struct lysp_node*)&actions[u].output;
590 }
591 LY_ARRAY_FOR(actions[u].output.groupings, v) {
592 actions[u].output.groupings[v].parent = (struct lysp_node*)&actions[u].output;
593 }
594 if (actions[u].output.typedefs) {
595 ly_set_add(&ctx->tpdfs_nodes, &actions[u].output, 0);
596 }
597 }
598 LY_ARRAY_FOR(actions[u].groupings, v) {
599 actions[u].groupings[v].parent = (struct lysp_node*)&actions[u];
600 }
601 if (actions[u].typedefs) {
602 ly_set_add(&ctx->tpdfs_nodes, &actions[u], 0);
603 }
604 }
605
606 /* notifications */
607 LY_ARRAY_FOR(notifs, u) {
608 LY_LIST_FOR(notifs[u].data, child) {
609 child->parent = (struct lysp_node*)&notifs[u];
610 }
611 LY_ARRAY_FOR(notifs[u].groupings, v) {
612 notifs[u].groupings[v].parent = (struct lysp_node*)&notifs[u];
613 }
614 if (notifs[u].typedefs) {
615 ly_set_add(&ctx->tpdfs_nodes, &notifs[u], 0);
616 }
617 }
618
619 return LY_SUCCESS;
620}
621
622LY_ERR
Radek Krejcie7b95092019-05-15 11:03:07 +0200623lysp_check_typedefs(struct lys_parser_ctx *ctx, struct lysp_module *mod)
Radek Krejcibbe09a92018-11-08 09:36:54 +0100624{
625 struct hash_table *ids_global;
626 struct hash_table *ids_scoped;
Radek Krejci0fb28562018-12-13 15:17:37 +0100627 const struct lysp_tpdf *typedefs;
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200628 LY_ARRAY_SIZE_TYPE u, v;
629 uint32_t i;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100630 LY_ERR ret = LY_EVALID;
631
632 /* check name collisions - typedefs and groupings */
633 ids_global = lyht_new(8, sizeof(char*), lysp_id_cmp, NULL, 1);
634 ids_scoped = lyht_new(8, sizeof(char*), lysp_id_cmp, NULL, 1);
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200635 LY_ARRAY_FOR(mod->typedefs, v) {
636 if (lysp_check_typedef(ctx, NULL, &mod->typedefs[v], ids_global, ids_scoped)) {
Radek Krejcibbe09a92018-11-08 09:36:54 +0100637 goto cleanup;
638 }
639 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200640 LY_ARRAY_FOR(mod->includes, v) {
641 LY_ARRAY_FOR(mod->includes[v].submodule->typedefs, u) {
642 if (lysp_check_typedef(ctx, NULL, &mod->includes[v].submodule->typedefs[u], ids_global, ids_scoped)) {
Radek Krejci3b1f9292018-11-08 10:58:35 +0100643 goto cleanup;
644 }
645 }
646 }
Radek Krejci7eb54ba2020-05-18 16:30:04 +0200647 for (i = 0; i < ctx->tpdfs_nodes.count; ++i) {
648 typedefs = lysp_node_typedefs((struct lysp_node *)ctx->tpdfs_nodes.objs[i]);
649 LY_ARRAY_FOR(typedefs, u) {
650 if (lysp_check_typedef(ctx, (struct lysp_node *)ctx->tpdfs_nodes.objs[i], &typedefs[u], ids_global, ids_scoped)) {
Radek Krejcibbe09a92018-11-08 09:36:54 +0100651 goto cleanup;
652 }
653 }
654 }
655 ret = LY_SUCCESS;
656cleanup:
657 lyht_free(ids_global);
658 lyht_free(ids_scoped);
659 ly_set_erase(&ctx->tpdfs_nodes, NULL);
660
661 return ret;
662}
663
Radek Krejci9ed7a192018-10-31 16:23:51 +0100664struct lysp_load_module_check_data {
665 const char *name;
666 const char *revision;
667 const char *path;
668 const char* submoduleof;
669};
670
671static LY_ERR
Michal Vaskob36053d2020-03-26 15:49:30 +0100672lysp_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 +0100673{
674 struct lysp_load_module_check_data *info = data;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100675 const char *filename, *dot, *rev, *name;
Radek Krejcib3289d62019-09-18 12:21:39 +0200676 uint8_t latest_revision;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100677 size_t len;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100678 struct lysp_revision *revs;
679
680 name = mod ? mod->mod->name : submod->name;
681 revs = mod ? mod->revs : submod->revs;
Radek Krejcib3289d62019-09-18 12:21:39 +0200682 latest_revision = mod ? mod->mod->latest_revision : submod->latest_revision;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100683
684 if (info->name) {
685 /* check name of the parsed model */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100686 if (strcmp(info->name, name)) {
687 LOGERR(ctx, LY_EINVAL, "Unexpected module \"%s\" parsed instead of \"%s\").", name, info->name);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100688 return LY_EINVAL;
689 }
690 }
691 if (info->revision) {
692 /* check revision of the parsed model */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100693 if (!revs || strcmp(info->revision, revs[0].date)) {
694 LOGERR(ctx, LY_EINVAL, "Module \"%s\" parsed with the wrong revision (\"%s\" instead \"%s\").", name,
Radek Krejcib07b5c92019-04-08 10:56:37 +0200695 revs ? revs[0].date : "none", info->revision);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100696 return LY_EINVAL;
697 }
Radek Krejcib3289d62019-09-18 12:21:39 +0200698 } else if (!latest_revision) {
699 /* do not log, we just need to drop the schema and use the latest revision from the context */
700 return LY_EEXIST;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100701 }
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100702 if (submod) {
703 assert(info->submoduleof);
704
Radek Krejci9ed7a192018-10-31 16:23:51 +0100705 /* check that the submodule belongs-to our module */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100706 if (strcmp(info->submoduleof, submod->belongsto)) {
Radek Krejci9ed7a192018-10-31 16:23:51 +0100707 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE, "Included \"%s\" submodule from \"%s\" belongs-to a different module \"%s\".",
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100708 submod->name, info->submoduleof, submod->belongsto);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100709 return LY_EVALID;
710 }
711 /* check circular dependency */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100712 if (submod->parsing) {
713 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE, "A circular dependency (include) for module \"%s\".", submod->name);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100714 return LY_EVALID;
715 }
716 }
717 if (info->path) {
718 /* check that name and revision match filename */
719 filename = strrchr(info->path, '/');
720 if (!filename) {
721 filename = info->path;
722 } else {
723 filename++;
724 }
725 /* name */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100726 len = strlen(name);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100727 rev = strchr(filename, '@');
728 dot = strrchr(info->path, '.');
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100729 if (strncmp(filename, name, len) ||
Radek Krejci9ed7a192018-10-31 16:23:51 +0100730 ((rev && rev != &filename[len]) || (!rev && dot != &filename[len]))) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100731 LOGWRN(ctx, "File name \"%s\" does not match module name \"%s\".", filename, name);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100732 }
733 /* revision */
734 if (rev) {
735 len = dot - ++rev;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100736 if (!revs || len != 10 || strncmp(revs[0].date, rev, len)) {
Radek Krejci9ed7a192018-10-31 16:23:51 +0100737 LOGWRN(ctx, "File name \"%s\" does not match module revision \"%s\".", filename,
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100738 revs ? revs[0].date : "none");
Radek Krejci9ed7a192018-10-31 16:23:51 +0100739 }
740 }
741 }
742 return LY_SUCCESS;
743}
744
745LY_ERR
fredgancd485b82019-10-18 15:00:17 +0800746lys_module_localfile(struct ly_ctx *ctx, const char *name, const char *revision, int implement,
Radek Krejci78f06822019-10-30 12:54:05 +0100747 struct lys_parser_ctx *main_ctx, const char *main_name, int required, void **result)
Radek Krejci9ed7a192018-10-31 16:23:51 +0100748{
749 int fd;
750 char *filepath = NULL;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100751 const char **fp;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100752 LYS_INFORMAT format;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100753 void *mod = NULL;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100754 LY_ERR ret = LY_SUCCESS;
755 struct lysp_load_module_check_data check_data = {0};
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100756 char rpath[PATH_MAX];
Radek Krejci9ed7a192018-10-31 16:23:51 +0100757
758 LY_CHECK_RET(lys_search_localfile(ly_ctx_get_searchdirs(ctx), !(ctx->flags & LY_CTX_DISABLE_SEARCHDIR_CWD), name, revision,
759 &filepath, &format));
Radek Krejci78f06822019-10-30 12:54:05 +0100760 LY_CHECK_ERR_RET(!filepath, if (required) {LOGERR(ctx, LY_ENOTFOUND, "Data model \"%s%s%s\" not found in local searchdirs.",
761 name, revision ? "@" : "", revision ? revision : "");}, LY_ENOTFOUND);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100762
763 LOGVRB("Loading schema from \"%s\" file.", filepath);
764
765 /* open the file */
766 fd = open(filepath, O_RDONLY);
767 LY_CHECK_ERR_GOTO(fd < 0, LOGERR(ctx, LY_ESYS, "Unable to open data model file \"%s\" (%s).",
768 filepath, strerror(errno)); ret = LY_ESYS, cleanup);
769
770 check_data.name = name;
771 check_data.revision = revision;
772 check_data.path = filepath;
fredgancd485b82019-10-18 15:00:17 +0800773 check_data.submoduleof = main_name;
Radek Krejci3b1f9292018-11-08 10:58:35 +0100774 mod = lys_parse_fd_(ctx, fd, format, implement, main_ctx,
Radek Krejci9ed7a192018-10-31 16:23:51 +0100775 lysp_load_module_check, &check_data);
776 close(fd);
777 LY_CHECK_ERR_GOTO(!mod, ly_errcode(ctx), cleanup);
778
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100779 if (main_ctx) {
780 fp = &((struct lysp_submodule*)mod)->filepath;
781 } else {
782 fp = &((struct lys_module*)mod)->filepath;
783 }
784 if (!(*fp)) {
Radek Krejci9ed7a192018-10-31 16:23:51 +0100785 if (realpath(filepath, rpath) != NULL) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100786 (*fp) = lydict_insert(ctx, rpath, 0);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100787 } else {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100788 (*fp) = lydict_insert(ctx, filepath, 0);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100789 }
790 }
791
792 *result = mod;
793
794 /* success */
795cleanup:
796 free(filepath);
797 return ret;
798}
799
Radek Krejcid33273d2018-10-25 14:55:52 +0200800LY_ERR
Radek Krejci6d6e4e42018-10-29 13:28:19 +0100801lysp_load_module(struct ly_ctx *ctx, const char *name, const char *revision, int implement, int require_parsed, struct lys_module **mod)
Radek Krejci086c7132018-10-26 15:29:04 +0200802{
Radek Krejci9ed7a192018-10-31 16:23:51 +0100803 const char *module_data = NULL;
Radek Krejci086c7132018-10-26 15:29:04 +0200804 LYS_INFORMAT format = LYS_IN_UNKNOWN;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100805 void (*module_data_free)(void *module_data, void *user_data) = NULL;
806 struct lysp_load_module_check_data check_data = {0};
Radek Krejcib3289d62019-09-18 12:21:39 +0200807 struct lys_module *m = NULL;
Radek Krejci086c7132018-10-26 15:29:04 +0200808
Radek Krejci0af46292019-01-11 16:02:31 +0100809 assert(mod);
810
811 if (!*mod) {
812 /* try to get the module from the context */
813 if (revision) {
Radek Krejcied5acc52019-04-25 15:57:04 +0200814 /* get the specific revision */
Radek Krejci0af46292019-01-11 16:02:31 +0100815 *mod = (struct lys_module*)ly_ctx_get_module(ctx, name, revision);
Radek Krejcied5acc52019-04-25 15:57:04 +0200816 } else if (implement) {
817 /* prefer the implemented module instead of the latest one */
818 *mod = (struct lys_module*)ly_ctx_get_module_implemented(ctx, name);
819 if (!*mod) {
820 /* there is no implemented module in the context, try to get the latest revision module */
821 goto latest_in_the_context;
822 }
Radek Krejci0af46292019-01-11 16:02:31 +0100823 } else {
Radek Krejcied5acc52019-04-25 15:57:04 +0200824 /* get the requested module of the latest revision in the context */
825latest_in_the_context:
Radek Krejci0af46292019-01-11 16:02:31 +0100826 *mod = (struct lys_module*)ly_ctx_get_module_latest(ctx, name);
Radek Krejcib3289d62019-09-18 12:21:39 +0200827 if (*mod && (*mod)->latest_revision == 1) {
828 /* let us now search with callback and searchpaths to check if there is newer revision outside the context */
829 m = *mod;
830 *mod = NULL;
831 }
Radek Krejci0af46292019-01-11 16:02:31 +0100832 }
Radek Krejci086c7132018-10-26 15:29:04 +0200833 }
834
Radek Krejci6d6e4e42018-10-29 13:28:19 +0100835 if (!(*mod) || (require_parsed && !(*mod)->parsed)) {
836 (*mod) = NULL;
837
Radek Krejci086c7132018-10-26 15:29:04 +0200838 /* check collision with other implemented revision */
839 if (implement && ly_ctx_get_module_implemented(ctx, name)) {
840 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE,
841 "Module \"%s\" is already present in other implemented revision.", name);
842 return LY_EDENIED;
843 }
844
Radek Krejci9ed7a192018-10-31 16:23:51 +0100845 /* module not present in the context, get the input data and parse it */
Radek Krejci086c7132018-10-26 15:29:04 +0200846 if (!(ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) {
847search_clb:
848 if (ctx->imp_clb) {
849 if (ctx->imp_clb(name, revision, NULL, NULL, ctx->imp_clb_data,
Radek Krejci9ed7a192018-10-31 16:23:51 +0100850 &format, &module_data, &module_data_free) == LY_SUCCESS) {
851 check_data.name = name;
852 check_data.revision = revision;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100853 *mod = lys_parse_mem_module(ctx, module_data, format, implement,
854 lysp_load_module_check, &check_data);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100855 if (module_data_free) {
856 module_data_free((void*)module_data, ctx->imp_clb_data);
857 }
Radek Krejci096235c2019-01-11 11:12:19 +0100858 if (*mod && implement && lys_compile(*mod, 0)) {
859 ly_set_rm(&ctx->list, *mod, NULL);
860 lys_module_free(*mod, NULL);
861 *mod = NULL;
862 }
Radek Krejci086c7132018-10-26 15:29:04 +0200863 }
864 }
865 if (!(*mod) && !(ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) {
866 goto search_file;
867 }
868 } else {
869search_file:
870 if (!(ctx->flags & LY_CTX_DISABLE_SEARCHDIRS)) {
871 /* module was not received from the callback or there is no callback set */
Radek Krejci78f06822019-10-30 12:54:05 +0100872 lys_module_localfile(ctx, name, revision, implement, NULL, NULL, m ? 0 : 1, (void **)mod);
Radek Krejci086c7132018-10-26 15:29:04 +0200873 }
874 if (!(*mod) && (ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) {
875 goto search_clb;
876 }
877 }
Radek Krejci9ed7a192018-10-31 16:23:51 +0100878
Radek Krejcib3289d62019-09-18 12:21:39 +0200879 /* update the latest_revision flag - here we have selected the latest available schema,
880 * consider that even the callback provides correct latest revision */
881 if (!(*mod) && m) {
Radek Krejci78f06822019-10-30 12:54:05 +0100882 LOGVRB("Newer revision than %s-%s not found, using this as the latest revision.", m->name, m->revision);
Radek Krejcib3289d62019-09-18 12:21:39 +0200883 m->latest_revision = 2;
884 *mod = m;
885 } else if ((*mod) && !revision && ((*mod)->latest_revision == 1)) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100886 (*mod)->latest_revision = 2;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100887 }
Radek Krejci086c7132018-10-26 15:29:04 +0200888 } else {
889 /* we have module from the current context */
Radek Krejci0af46292019-01-11 16:02:31 +0100890 if (implement) {
891 m = ly_ctx_get_module_implemented(ctx, name);
892 if (m && m != *mod) {
893 /* check collision with other implemented revision */
894 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE,
895 "Module \"%s\" is already present in other implemented revision.", name);
896 *mod = NULL;
897 return LY_EDENIED;
898 }
Radek Krejci086c7132018-10-26 15:29:04 +0200899 }
900
901 /* circular check */
Radek Krejcif8f882a2018-10-31 14:51:15 +0100902 if ((*mod)->parsed && (*mod)->parsed->parsing) {
Radek Krejci086c7132018-10-26 15:29:04 +0200903 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE, "A circular dependency (import) for module \"%s\".", name);
904 *mod = NULL;
905 return LY_EVALID;
906 }
907 }
908 if (!(*mod)) {
Radek Krejci9ed7a192018-10-31 16:23:51 +0100909 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE, "%s \"%s\" module failed.", implement ? "Loading" : "Importing", name);
Radek Krejci086c7132018-10-26 15:29:04 +0200910 return LY_EVALID;
911 }
912
913 if (implement) {
914 /* mark the module implemented, check for collision was already done */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100915 (*mod)->implemented = 1;
Radek Krejci086c7132018-10-26 15:29:04 +0200916 }
Radek Krejci086c7132018-10-26 15:29:04 +0200917
918 return LY_SUCCESS;
919}
920
921LY_ERR
David Sedlák4a650532019-07-10 11:55:18 +0200922lysp_check_stringchar(struct lys_parser_ctx *ctx, unsigned int c)
923{
924 if (!is_yangutf8char(c)) {
925 LOGVAL_PARSER(ctx, LY_VCODE_INCHAR, c);
926 return LY_EVALID;
927 }
928 return LY_SUCCESS;
929}
930
931LY_ERR
932lysp_check_identifierchar(struct lys_parser_ctx *ctx, unsigned int c, int first, int *prefix)
933{
934 if (first || (prefix && (*prefix) == 1)) {
935 if (!is_yangidentstartchar(c)) {
936 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Invalid identifier first character '%c'.", c);
937 return LY_EVALID;
938 }
939 if (prefix) {
940 if (first) {
941 (*prefix) = 0;
942 } else {
943 (*prefix) = 2;
944 }
945 }
946 } else if (c == ':' && prefix && (*prefix) == 0) {
947 (*prefix) = 1;
948 } else if (!is_yangidentchar(c)) {
949 LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Invalid identifier character '%c'.", c);
950 return LY_EVALID;
951 }
952
953 return LY_SUCCESS;
954}
955
956LY_ERR
Michal Vaskob36053d2020-03-26 15:49:30 +0100957lysp_load_submodule(struct lys_parser_ctx *pctx, struct lysp_module *mod, struct lysp_include *inc)
Radek Krejcid33273d2018-10-25 14:55:52 +0200958{
Michal Vaskob36053d2020-03-26 15:49:30 +0100959 struct ly_ctx *ctx = (struct ly_ctx *)(PARSER_CTX(pctx));
Radek Krejci3eb299d2019-04-08 15:07:44 +0200960 struct lysp_submodule *submod = NULL;
Radek Krejcid33273d2018-10-25 14:55:52 +0200961 const char *submodule_data = NULL;
962 LYS_INFORMAT format = LYS_IN_UNKNOWN;
963 void (*submodule_data_free)(void *module_data, void *user_data) = NULL;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100964 struct lysp_load_module_check_data check_data = {0};
Radek Krejcid33273d2018-10-25 14:55:52 +0200965
Radek Krejcibbe09a92018-11-08 09:36:54 +0100966 /* submodule not present in the context, get the input data and parse it */
Michal Vaskob36053d2020-03-26 15:49:30 +0100967 if (!(ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) {
Radek Krejcid33273d2018-10-25 14:55:52 +0200968search_clb:
Michal Vaskob36053d2020-03-26 15:49:30 +0100969 if (ctx->imp_clb) {
970 if (ctx->imp_clb(mod->mod->name, NULL, inc->name, inc->rev[0] ? inc->rev : NULL, ctx->imp_clb_data,
Radek Krejcibbe09a92018-11-08 09:36:54 +0100971 &format, &submodule_data, &submodule_data_free) == LY_SUCCESS) {
972 check_data.name = inc->name;
973 check_data.revision = inc->rev[0] ? inc->rev : NULL;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100974 check_data.submoduleof = mod->mod->name;
Michal Vaskob36053d2020-03-26 15:49:30 +0100975 submod = lys_parse_mem_submodule(ctx, submodule_data, format, pctx,
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100976 lysp_load_module_check, &check_data);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100977 if (submodule_data_free) {
Michal Vaskob36053d2020-03-26 15:49:30 +0100978 submodule_data_free((void*)submodule_data, ctx->imp_clb_data);
Radek Krejcid33273d2018-10-25 14:55:52 +0200979 }
980 }
Radek Krejcid33273d2018-10-25 14:55:52 +0200981 }
Michal Vaskob36053d2020-03-26 15:49:30 +0100982 if (!submod && !(ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) {
Radek Krejcibbe09a92018-11-08 09:36:54 +0100983 goto search_file;
Radek Krejcid33273d2018-10-25 14:55:52 +0200984 }
Radek Krejci2d31ea72018-10-25 15:46:42 +0200985 } else {
Radek Krejcibbe09a92018-11-08 09:36:54 +0100986search_file:
Michal Vaskob36053d2020-03-26 15:49:30 +0100987 if (!(ctx->flags & LY_CTX_DISABLE_SEARCHDIRS)) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100988 /* submodule was not received from the callback or there is no callback set */
Michal Vaskob36053d2020-03-26 15:49:30 +0100989 lys_module_localfile(ctx, inc->name, inc->rev[0] ? inc->rev : NULL, 0, pctx, mod->mod->name, 1, (void**)&submod);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100990 }
Michal Vaskob36053d2020-03-26 15:49:30 +0100991 if (!submod && (ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) {
Radek Krejcibbe09a92018-11-08 09:36:54 +0100992 goto search_clb;
993 }
994 }
995 if (submod) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100996 if (!inc->rev[0] && (submod->latest_revision == 1)) {
Radek Krejcibbe09a92018-11-08 09:36:54 +0100997 /* update the latest_revision flag - here we have selected the latest available schema,
998 * consider that even the callback provides correct latest revision */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100999 submod->latest_revision = 2;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001000 }
1001
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001002 inc->submodule = submod;
Radek Krejcid33273d2018-10-25 14:55:52 +02001003 }
1004 if (!inc->submodule) {
Michal Vaskob36053d2020-03-26 15:49:30 +01001005 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE, "Including \"%s\" submodule into \"%s\" failed.",
Radek Krejci0bcdaed2019-01-10 10:21:34 +01001006 inc->name, mod->mod->name);
Radek Krejcid33273d2018-10-25 14:55:52 +02001007 return LY_EVALID;
1008 }
1009
1010 return LY_SUCCESS;
1011}
1012
Radek Krejci01342af2019-01-03 15:18:08 +01001013#define FIND_MODULE(TYPE, MOD) \
Radek Krejcice8c1592018-10-29 15:35:51 +01001014 TYPE *imp; \
Radek Krejci7f9b6512019-09-18 13:11:09 +02001015 if (!ly_strncmp((MOD)->mod->prefix, prefix, len)) { \
Radek Krejcice8c1592018-10-29 15:35:51 +01001016 /* it is the prefix of the module itself */ \
Radek Krejci0af46292019-01-11 16:02:31 +01001017 m = ly_ctx_get_module((MOD)->mod->ctx, (MOD)->mod->name, (MOD)->mod->revision); \
Radek Krejcice8c1592018-10-29 15:35:51 +01001018 } \
1019 /* search in imports */ \
Radek Krejcibbe09a92018-11-08 09:36:54 +01001020 if (!m) { \
1021 LY_ARRAY_FOR((MOD)->imports, TYPE, imp) { \
Radek Krejci7f9b6512019-09-18 13:11:09 +02001022 if (!ly_strncmp(imp->prefix, prefix, len)) { \
Radek Krejcibbe09a92018-11-08 09:36:54 +01001023 m = imp->module; \
1024 break; \
1025 } \
Radek Krejcice8c1592018-10-29 15:35:51 +01001026 } \
Radek Krejcibbe09a92018-11-08 09:36:54 +01001027 }
Radek Krejcice8c1592018-10-29 15:35:51 +01001028
Radek Krejcibbe09a92018-11-08 09:36:54 +01001029struct lysc_module *
Radek Krejcia3045382018-11-22 14:30:31 +01001030lysc_module_find_prefix(const struct lysc_module *mod, const char *prefix, size_t len)
Radek Krejci151a5b72018-10-19 14:21:44 +02001031{
Radek Krejcibbe09a92018-11-08 09:36:54 +01001032 const struct lys_module *m = NULL;
1033
Radek Krejci01342af2019-01-03 15:18:08 +01001034 FIND_MODULE(struct lysc_import, mod);
Radek Krejcibbe09a92018-11-08 09:36:54 +01001035 return m ? m->compiled : NULL;
Radek Krejcice8c1592018-10-29 15:35:51 +01001036}
Radek Krejci151a5b72018-10-19 14:21:44 +02001037
Radek Krejcibbe09a92018-11-08 09:36:54 +01001038struct lysp_module *
Radek Krejcia3045382018-11-22 14:30:31 +01001039lysp_module_find_prefix(const struct lysp_module *mod, const char *prefix, size_t len)
Radek Krejcice8c1592018-10-29 15:35:51 +01001040{
Radek Krejcibbe09a92018-11-08 09:36:54 +01001041 const struct lys_module *m = NULL;
1042
Radek Krejci01342af2019-01-03 15:18:08 +01001043 FIND_MODULE(struct lysp_import, mod);
Radek Krejcibbe09a92018-11-08 09:36:54 +01001044 return m ? m->parsed : NULL;
Radek Krejcice8c1592018-10-29 15:35:51 +01001045}
Radek Krejci151a5b72018-10-19 14:21:44 +02001046
Radek Krejcice8c1592018-10-29 15:35:51 +01001047struct lys_module *
Radek Krejcia3045382018-11-22 14:30:31 +01001048lys_module_find_prefix(const struct lys_module *mod, const char *prefix, size_t len)
Radek Krejcice8c1592018-10-29 15:35:51 +01001049{
Radek Krejcibbe09a92018-11-08 09:36:54 +01001050 const struct lys_module *m = NULL;
1051
Michal Vasko88a163b2019-12-18 12:11:44 +01001052 if (!prefix || (!strncmp(prefix, mod->prefix, len) && !mod->prefix[len])) {
1053 return (struct lys_module *)mod;
Radek Krejci73dead22019-07-11 16:46:16 +02001054 }
Radek Krejcice8c1592018-10-29 15:35:51 +01001055 if (mod->compiled) {
Radek Krejci01342af2019-01-03 15:18:08 +01001056 FIND_MODULE(struct lysc_import, mod->compiled);
Radek Krejcice8c1592018-10-29 15:35:51 +01001057 } else {
Radek Krejci01342af2019-01-03 15:18:08 +01001058 FIND_MODULE(struct lysp_import, mod->parsed);
Radek Krejcibbe09a92018-11-08 09:36:54 +01001059 }
1060 return (struct lys_module*)m;
1061}
1062
Radek Krejcia3045382018-11-22 14:30:31 +01001063const char *
Radek Krejci693262f2019-04-29 15:23:20 +02001064lys_prefix_find_module(const struct lys_module *mod, const struct lys_module *import)
1065{
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001066 LY_ARRAY_SIZE_TYPE u;
Radek Krejci693262f2019-04-29 15:23:20 +02001067
1068 if (import == mod) {
1069 return mod->prefix;
1070 }
1071
1072 if (mod->parsed) {
1073 LY_ARRAY_FOR(mod->parsed->imports, u) {
1074 if (mod->parsed->imports[u].module == import) {
1075 return mod->parsed->imports[u].prefix;
1076 }
1077 }
1078 } else {
1079 /* we don't have original information about the import's prefix,
1080 * so the prefix of the import module itself is returned instead */
1081 return import->prefix;
1082 }
1083
1084 return NULL;
1085}
1086
Radek Krejci0935f412019-08-20 16:15:18 +02001087API const char *
Radek Krejcia3045382018-11-22 14:30:31 +01001088lys_nodetype2str(uint16_t nodetype)
1089{
1090 switch(nodetype) {
1091 case LYS_CONTAINER:
1092 return "container";
1093 case LYS_CHOICE:
1094 return "choice";
1095 case LYS_LEAF:
1096 return "leaf";
1097 case LYS_LEAFLIST:
1098 return "leaf-list";
1099 case LYS_LIST:
1100 return "list";
1101 case LYS_ANYXML:
1102 return "anyxml";
1103 case LYS_ANYDATA:
1104 return "anydata";
Radek Krejcif12a1f02019-02-11 16:42:08 +01001105 case LYS_CASE:
1106 return "case";
Michal Vasko1bf09392020-03-27 12:38:10 +01001107 case LYS_RPC:
1108 return "RPC";
Radek Krejcif538ce52019-03-05 10:46:14 +01001109 case LYS_ACTION:
Michal Vasko1bf09392020-03-27 12:38:10 +01001110 return "action";
Radek Krejcif538ce52019-03-05 10:46:14 +01001111 case LYS_NOTIF:
Michal Vaskoa3881362020-01-21 15:57:35 +01001112 return "notification";
Radek Krejcifc81ea82019-04-18 13:27:22 +02001113 case LYS_USES:
1114 return "uses";
Radek Krejcia3045382018-11-22 14:30:31 +01001115 default:
1116 return "unknown";
1117 }
1118}
1119
Radek Krejci693262f2019-04-29 15:23:20 +02001120const char *
1121lys_datatype2str(LY_DATA_TYPE basetype)
1122{
1123 switch(basetype) {
1124 case LY_TYPE_BINARY:
1125 return "binary";
1126 case LY_TYPE_UINT8:
1127 return "uint8";
1128 case LY_TYPE_UINT16:
1129 return "uint16";
1130 case LY_TYPE_UINT32:
1131 return "uint32";
1132 case LY_TYPE_UINT64:
1133 return "uint64";
1134 case LY_TYPE_STRING:
1135 return "string";
1136 case LY_TYPE_BITS:
1137 return "bits";
1138 case LY_TYPE_BOOL:
1139 return "boolean";
1140 case LY_TYPE_DEC64:
1141 return "decimal64";
1142 case LY_TYPE_EMPTY:
1143 return "empty";
1144 case LY_TYPE_ENUM:
1145 return "enumeration";
1146 case LY_TYPE_IDENT:
1147 return "identityref";
1148 case LY_TYPE_INST:
1149 return "instance-identifier";
1150 case LY_TYPE_LEAFREF:
1151 return "leafref";
1152 case LY_TYPE_UNION:
1153 return "union";
1154 case LY_TYPE_INT8:
1155 return "int8";
1156 case LY_TYPE_INT16:
1157 return "int16";
1158 case LY_TYPE_INT32:
1159 return "int32";
1160 case LY_TYPE_INT64:
1161 return "int64";
1162 default:
1163 return "unknown";
1164 }
1165}
1166
Radek Krejci056d0a82018-12-06 16:57:25 +01001167API const struct lysp_tpdf *
1168lysp_node_typedefs(const struct lysp_node *node)
1169{
Radek Krejci0fb28562018-12-13 15:17:37 +01001170 switch (node->nodetype) {
1171 case LYS_CONTAINER:
1172 return ((struct lysp_node_container*)node)->typedefs;
1173 case LYS_LIST:
1174 return ((struct lysp_node_list*)node)->typedefs;
1175 case LYS_GROUPING:
1176 return ((struct lysp_grp*)node)->typedefs;
Michal Vasko1bf09392020-03-27 12:38:10 +01001177 case LYS_RPC:
Radek Krejci0fb28562018-12-13 15:17:37 +01001178 case LYS_ACTION:
1179 return ((struct lysp_action*)node)->typedefs;
1180 case LYS_INOUT:
1181 return ((struct lysp_action_inout*)node)->typedefs;
1182 case LYS_NOTIF:
1183 return ((struct lysp_notif*)node)->typedefs;
1184 default:
Radek Krejci056d0a82018-12-06 16:57:25 +01001185 return NULL;
1186 }
1187}
1188
Radek Krejci53ea6152018-12-13 15:21:15 +01001189API const struct lysp_grp *
1190lysp_node_groupings(const struct lysp_node *node)
1191{
1192 switch (node->nodetype) {
1193 case LYS_CONTAINER:
1194 return ((struct lysp_node_container*)node)->groupings;
1195 case LYS_LIST:
1196 return ((struct lysp_node_list*)node)->groupings;
1197 case LYS_GROUPING:
1198 return ((struct lysp_grp*)node)->groupings;
Michal Vasko1bf09392020-03-27 12:38:10 +01001199 case LYS_RPC:
Radek Krejci53ea6152018-12-13 15:21:15 +01001200 case LYS_ACTION:
1201 return ((struct lysp_action*)node)->groupings;
1202 case LYS_INOUT:
1203 return ((struct lysp_action_inout*)node)->groupings;
1204 case LYS_NOTIF:
1205 return ((struct lysp_notif*)node)->groupings;
1206 default:
1207 return NULL;
1208 }
1209}
1210
Radek Krejcibbe09a92018-11-08 09:36:54 +01001211struct lysp_action **
Radek Krejci056d0a82018-12-06 16:57:25 +01001212lysp_node_actions_p(struct lysp_node *node)
Radek Krejcibbe09a92018-11-08 09:36:54 +01001213{
1214 assert(node);
1215 switch (node->nodetype) {
1216 case LYS_CONTAINER:
1217 return &((struct lysp_node_container*)node)->actions;
1218 case LYS_LIST:
1219 return &((struct lysp_node_list*)node)->actions;
1220 case LYS_GROUPING:
1221 return &((struct lysp_grp*)node)->actions;
1222 case LYS_AUGMENT:
1223 return &((struct lysp_augment*)node)->actions;
1224 default:
1225 return NULL;
1226 }
1227}
1228
Radek Krejci056d0a82018-12-06 16:57:25 +01001229API const struct lysp_action *
1230lysp_node_actions(const struct lysp_node *node)
1231{
1232 struct lysp_action **actions;
1233 actions = lysp_node_actions_p((struct lysp_node*)node);
1234 if (actions) {
1235 return *actions;
1236 } else {
1237 return NULL;
1238 }
1239}
1240
Radek Krejcibbe09a92018-11-08 09:36:54 +01001241struct lysp_notif **
Radek Krejci056d0a82018-12-06 16:57:25 +01001242lysp_node_notifs_p(struct lysp_node *node)
Radek Krejcibbe09a92018-11-08 09:36:54 +01001243{
1244 assert(node);
1245 switch (node->nodetype) {
1246 case LYS_CONTAINER:
1247 return &((struct lysp_node_container*)node)->notifs;
1248 case LYS_LIST:
1249 return &((struct lysp_node_list*)node)->notifs;
1250 case LYS_GROUPING:
1251 return &((struct lysp_grp*)node)->notifs;
1252 case LYS_AUGMENT:
1253 return &((struct lysp_augment*)node)->notifs;
1254 default:
1255 return NULL;
1256 }
1257}
1258
Radek Krejci056d0a82018-12-06 16:57:25 +01001259API const struct lysp_notif *
1260lysp_node_notifs(const struct lysp_node *node)
1261{
1262 struct lysp_notif **notifs;
1263 notifs = lysp_node_notifs_p((struct lysp_node*)node);
1264 if (notifs) {
1265 return *notifs;
1266 } else {
1267 return NULL;
1268 }
1269}
1270
Radek Krejcibbe09a92018-11-08 09:36:54 +01001271struct lysp_node **
Radek Krejci056d0a82018-12-06 16:57:25 +01001272lysp_node_children_p(struct lysp_node *node)
Radek Krejcibbe09a92018-11-08 09:36:54 +01001273{
1274 assert(node);
1275 switch (node->nodetype) {
1276 case LYS_CONTAINER:
1277 return &((struct lysp_node_container*)node)->child;
1278 case LYS_CHOICE:
1279 return &((struct lysp_node_choice*)node)->child;
1280 case LYS_LIST:
1281 return &((struct lysp_node_list*)node)->child;
1282 case LYS_CASE:
1283 return &((struct lysp_node_case*)node)->child;
1284 case LYS_GROUPING:
1285 return &((struct lysp_grp*)node)->data;
1286 case LYS_AUGMENT:
1287 return &((struct lysp_augment*)node)->child;
1288 case LYS_INOUT:
1289 return &((struct lysp_action_inout*)node)->data;
1290 case LYS_NOTIF:
1291 return &((struct lysp_notif*)node)->data;
1292 default:
1293 return NULL;
1294 }
1295}
1296
Radek Krejci056d0a82018-12-06 16:57:25 +01001297API const struct lysp_node *
1298lysp_node_children(const struct lysp_node *node)
1299{
1300 struct lysp_node **children;
Radek Krejcie7b95092019-05-15 11:03:07 +02001301
1302 if (!node) {
1303 return NULL;
1304 }
1305
Radek Krejci056d0a82018-12-06 16:57:25 +01001306 children = lysp_node_children_p((struct lysp_node*)node);
1307 if (children) {
1308 return *children;
1309 } else {
1310 return NULL;
1311 }
1312}
1313
1314struct lysc_action **
1315lysc_node_actions_p(struct lysc_node *node)
1316{
1317 assert(node);
1318 switch (node->nodetype) {
1319 case LYS_CONTAINER:
1320 return &((struct lysc_node_container*)node)->actions;
1321 case LYS_LIST:
1322 return &((struct lysc_node_list*)node)->actions;
1323 default:
1324 return NULL;
1325 }
1326}
1327
1328API const struct lysc_action *
1329lysc_node_actions(const struct lysc_node *node)
1330{
1331 struct lysc_action **actions;
1332 actions = lysc_node_actions_p((struct lysc_node*)node);
1333 if (actions) {
1334 return *actions;
1335 } else {
1336 return NULL;
1337 }
1338}
1339
1340struct lysc_notif **
1341lysc_node_notifs_p(struct lysc_node *node)
1342{
1343 assert(node);
1344 switch (node->nodetype) {
1345 case LYS_CONTAINER:
1346 return &((struct lysc_node_container*)node)->notifs;
1347 case LYS_LIST:
1348 return &((struct lysc_node_list*)node)->notifs;
1349 default:
1350 return NULL;
1351 }
1352}
1353
1354API const struct lysc_notif *
1355lysc_node_notifs(const struct lysc_node *node)
1356{
1357 struct lysc_notif **notifs;
1358 notifs = lysc_node_notifs_p((struct lysc_node*)node);
1359 if (notifs) {
1360 return *notifs;
1361 } else {
1362 return NULL;
1363 }
1364}
1365
Radek Krejcibbe09a92018-11-08 09:36:54 +01001366struct lysc_node **
Radek Krejci6eeb58f2019-02-22 16:29:37 +01001367lysc_node_children_p(const struct lysc_node *node, uint16_t flags)
Radek Krejcibbe09a92018-11-08 09:36:54 +01001368{
1369 assert(node);
1370 switch (node->nodetype) {
1371 case LYS_CONTAINER:
1372 return &((struct lysc_node_container*)node)->child;
1373 case LYS_CHOICE:
Radek Krejcia3045382018-11-22 14:30:31 +01001374 if (((struct lysc_node_choice*)node)->cases) {
Radek Krejci95710c92019-02-11 15:49:55 +01001375 return &((struct lysc_node_choice*)node)->cases->child;
Radek Krejcia3045382018-11-22 14:30:31 +01001376 } else {
1377 return NULL;
1378 }
Radek Krejci01342af2019-01-03 15:18:08 +01001379 case LYS_CASE:
1380 return &((struct lysc_node_case*)node)->child;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001381 case LYS_LIST:
1382 return &((struct lysc_node_list*)node)->child;
Michal Vasko1bf09392020-03-27 12:38:10 +01001383 case LYS_RPC:
Radek Krejci6eeb58f2019-02-22 16:29:37 +01001384 case LYS_ACTION:
1385 if (flags & LYS_CONFIG_R) {
1386 return &((struct lysc_action*)node)->output.data;
1387 } else {
1388 /* LYS_CONFIG_W, but also the default case */
1389 return &((struct lysc_action*)node)->input.data;
1390 }
Radek Krejcifc11bd72019-04-11 16:00:05 +02001391 case LYS_NOTIF:
1392 return &((struct lysc_notif*)node)->data;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001393 default:
1394 return NULL;
1395 }
1396}
1397
Radek Krejci056d0a82018-12-06 16:57:25 +01001398API const struct lysc_node *
Radek Krejci6eeb58f2019-02-22 16:29:37 +01001399lysc_node_children(const struct lysc_node *node, uint16_t flags)
Radek Krejcia3045382018-11-22 14:30:31 +01001400{
Radek Krejci056d0a82018-12-06 16:57:25 +01001401 struct lysc_node **children;
Radek Krejcie7b95092019-05-15 11:03:07 +02001402
1403 if (!node) {
1404 return NULL;
1405 }
1406
Radek Krejci6eeb58f2019-02-22 16:29:37 +01001407 children = lysc_node_children_p((struct lysc_node*)node, flags);
Radek Krejci056d0a82018-12-06 16:57:25 +01001408 if (children) {
1409 return *children;
1410 } else {
Radek Krejcia3045382018-11-22 14:30:31 +01001411 return NULL;
1412 }
1413}
1414
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001415struct lys_module *
1416lysp_find_module(struct ly_ctx *ctx, const struct lysp_module *mod)
1417{
1418 unsigned int u;
1419
1420 for (u = 0; u < ctx->list.count; ++u) {
1421 if (((struct lys_module*)ctx->list.objs[u])->parsed == mod) {
1422 return ((struct lys_module*)ctx->list.objs[u]);
1423 }
1424 }
1425 return NULL;
1426}
1427
Radek Krejcid6b76452019-09-03 17:03:03 +02001428enum ly_stmt
Michal Vaskob36053d2020-03-26 15:49:30 +01001429lysp_match_kw(struct lys_yang_parser_ctx *ctx, const char **data)
David Sedlákc10e7902018-12-17 02:17:59 +01001430{
David Sedlák1bccdfa2019-06-17 15:55:27 +02001431/**
1432 * @brief Move the DATA pointer by COUNT items. Also updates the indent value in yang parser context
1433 * @param[in] CTX yang parser context to update its indent value.
1434 * @param[in,out] DATA pointer to move
1435 * @param[in] COUNT number of items for which the DATA pointer is supposed to move on.
1436 */
1437#define MOVE_IN(CTX, DATA, COUNT) (*(DATA))+=COUNT;if(CTX){(CTX)->indent+=COUNT;}
1438#define IF_KW(STR, LEN, STMT) if (!strncmp(*(data), STR, LEN)) {MOVE_IN(ctx, data, LEN);*kw=STMT;}
1439#define IF_KW_PREFIX(STR, LEN) if (!strncmp(*(data), STR, LEN)) {MOVE_IN(ctx, data, LEN);
1440#define IF_KW_PREFIX_END }
David Sedlák572e7ab2019-06-04 16:01:58 +02001441
Radek Krejci6e546bf2020-05-19 16:16:19 +02001442 const char *start = *data;
Radek Krejcid6b76452019-09-03 17:03:03 +02001443 enum ly_stmt result = LY_STMT_NONE;
1444 enum ly_stmt *kw = &result;
David Sedlák1bccdfa2019-06-17 15:55:27 +02001445 /* read the keyword itself */
1446 switch (**data) {
David Sedlák23a59a62018-10-26 13:08:02 +02001447 case 'a':
David Sedlák1bccdfa2019-06-17 15:55:27 +02001448 MOVE_IN(ctx, data, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001449 IF_KW("rgument", 7, LY_STMT_ARGUMENT)
1450 else IF_KW("ugment", 6, LY_STMT_AUGMENT)
1451 else IF_KW("ction", 5, LY_STMT_ACTION)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001452 else IF_KW_PREFIX("ny", 2)
Radek Krejcid6b76452019-09-03 17:03:03 +02001453 IF_KW("data", 4, LY_STMT_ANYDATA)
1454 else IF_KW("xml", 3, LY_STMT_ANYXML)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001455 IF_KW_PREFIX_END
David Sedlák23a59a62018-10-26 13:08:02 +02001456 break;
1457 case 'b':
David Sedlák1bccdfa2019-06-17 15:55:27 +02001458 MOVE_IN(ctx, data, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001459 IF_KW("ase", 3, LY_STMT_BASE)
1460 else IF_KW("elongs-to", 9, LY_STMT_BELONGS_TO)
1461 else IF_KW("it", 2, LY_STMT_BIT)
David Sedlák23a59a62018-10-26 13:08:02 +02001462 break;
1463 case 'c':
David Sedlák1bccdfa2019-06-17 15:55:27 +02001464 MOVE_IN(ctx, data, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001465 IF_KW("ase", 3, LY_STMT_CASE)
1466 else IF_KW("hoice", 5, LY_STMT_CHOICE)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001467 else IF_KW_PREFIX("on", 2)
Radek Krejcid6b76452019-09-03 17:03:03 +02001468 IF_KW("fig", 3, LY_STMT_CONFIG)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001469 else IF_KW_PREFIX("ta", 2)
Radek Krejcid6b76452019-09-03 17:03:03 +02001470 IF_KW("ct", 2, LY_STMT_CONTACT)
1471 else IF_KW("iner", 4, LY_STMT_CONTAINER)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001472 IF_KW_PREFIX_END
1473 IF_KW_PREFIX_END
David Sedlák23a59a62018-10-26 13:08:02 +02001474 break;
1475 case 'd':
David Sedlák1bccdfa2019-06-17 15:55:27 +02001476 MOVE_IN(ctx, data, 1);
1477 IF_KW_PREFIX("e", 1)
Radek Krejcid6b76452019-09-03 17:03:03 +02001478 IF_KW("fault", 5, LY_STMT_DEFAULT)
1479 else IF_KW("scription", 9, LY_STMT_DESCRIPTION)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001480 else IF_KW_PREFIX("viat", 4)
Radek Krejcid6b76452019-09-03 17:03:03 +02001481 IF_KW("e", 1, LY_STMT_DEVIATE)
1482 else IF_KW("ion", 3, LY_STMT_DEVIATION)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001483 IF_KW_PREFIX_END
1484 IF_KW_PREFIX_END
David Sedlák23a59a62018-10-26 13:08:02 +02001485 break;
1486 case 'e':
David Sedlák1bccdfa2019-06-17 15:55:27 +02001487 MOVE_IN(ctx, data, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001488 IF_KW("num", 3, LY_STMT_ENUM)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001489 else IF_KW_PREFIX("rror-", 5)
Radek Krejcid6b76452019-09-03 17:03:03 +02001490 IF_KW("app-tag", 7, LY_STMT_ERROR_APP_TAG)
1491 else IF_KW("message", 7, LY_STMT_ERROR_MESSAGE)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001492 IF_KW_PREFIX_END
Radek Krejcid6b76452019-09-03 17:03:03 +02001493 else IF_KW("xtension", 8, LY_STMT_EXTENSION)
David Sedlák23a59a62018-10-26 13:08:02 +02001494 break;
1495 case 'f':
David Sedlák1bccdfa2019-06-17 15:55:27 +02001496 MOVE_IN(ctx, data, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001497 IF_KW("eature", 6, LY_STMT_FEATURE)
1498 else IF_KW("raction-digits", 14, LY_STMT_FRACTION_DIGITS)
David Sedlák23a59a62018-10-26 13:08:02 +02001499 break;
1500 case 'g':
David Sedlák1bccdfa2019-06-17 15:55:27 +02001501 MOVE_IN(ctx, data, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001502 IF_KW("rouping", 7, LY_STMT_GROUPING)
David Sedlák23a59a62018-10-26 13:08:02 +02001503 break;
1504 case 'i':
David Sedlák1bccdfa2019-06-17 15:55:27 +02001505 MOVE_IN(ctx, data, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001506 IF_KW("dentity", 7, LY_STMT_IDENTITY)
1507 else IF_KW("f-feature", 9, LY_STMT_IF_FEATURE)
1508 else IF_KW("mport", 5, LY_STMT_IMPORT)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001509 else IF_KW_PREFIX("n", 1)
Radek Krejcid6b76452019-09-03 17:03:03 +02001510 IF_KW("clude", 5, LY_STMT_INCLUDE)
1511 else IF_KW("put", 3, LY_STMT_INPUT)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001512 IF_KW_PREFIX_END
David Sedlák23a59a62018-10-26 13:08:02 +02001513 break;
1514 case 'k':
David Sedlák1bccdfa2019-06-17 15:55:27 +02001515 MOVE_IN(ctx, data, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001516 IF_KW("ey", 2, LY_STMT_KEY)
David Sedlák23a59a62018-10-26 13:08:02 +02001517 break;
1518 case 'l':
David Sedlák1bccdfa2019-06-17 15:55:27 +02001519 MOVE_IN(ctx, data, 1);
1520 IF_KW_PREFIX("e", 1)
Radek Krejcid6b76452019-09-03 17:03:03 +02001521 IF_KW("af-list", 7, LY_STMT_LEAF_LIST)
1522 else IF_KW("af", 2, LY_STMT_LEAF)
1523 else IF_KW("ngth", 4, LY_STMT_LENGTH)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001524 IF_KW_PREFIX_END
Radek Krejcid6b76452019-09-03 17:03:03 +02001525 else IF_KW("ist", 3, LY_STMT_LIST)
David Sedlák23a59a62018-10-26 13:08:02 +02001526 break;
1527 case 'm':
David Sedlák1bccdfa2019-06-17 15:55:27 +02001528 MOVE_IN(ctx, data, 1);
1529 IF_KW_PREFIX("a", 1)
Radek Krejcid6b76452019-09-03 17:03:03 +02001530 IF_KW("ndatory", 7, LY_STMT_MANDATORY)
1531 else IF_KW("x-elements", 10, LY_STMT_MAX_ELEMENTS)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001532 IF_KW_PREFIX_END
Radek Krejcid6b76452019-09-03 17:03:03 +02001533 else IF_KW("in-elements", 11, LY_STMT_MIN_ELEMENTS)
1534 else IF_KW("ust", 3, LY_STMT_MUST)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001535 else IF_KW_PREFIX("od", 2)
Radek Krejcid6b76452019-09-03 17:03:03 +02001536 IF_KW("ule", 3, LY_STMT_MODULE)
1537 else IF_KW("ifier", 5, LY_STMT_MODIFIER)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001538 IF_KW_PREFIX_END
David Sedlák23a59a62018-10-26 13:08:02 +02001539 break;
1540 case 'n':
David Sedlák1bccdfa2019-06-17 15:55:27 +02001541 MOVE_IN(ctx, data, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001542 IF_KW("amespace", 8, LY_STMT_NAMESPACE)
1543 else IF_KW("otification", 11, LY_STMT_NOTIFICATION)
David Sedlák23a59a62018-10-26 13:08:02 +02001544 break;
1545 case 'o':
David Sedlák1bccdfa2019-06-17 15:55:27 +02001546 MOVE_IN(ctx, data, 1);
1547 IF_KW_PREFIX("r", 1)
Radek Krejcid6b76452019-09-03 17:03:03 +02001548 IF_KW("dered-by", 8, LY_STMT_ORDERED_BY)
1549 else IF_KW("ganization", 10, LY_STMT_ORGANIZATION)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001550 IF_KW_PREFIX_END
Radek Krejcid6b76452019-09-03 17:03:03 +02001551 else IF_KW("utput", 5, LY_STMT_OUTPUT)
David Sedlák23a59a62018-10-26 13:08:02 +02001552 break;
1553 case 'p':
David Sedlák1bccdfa2019-06-17 15:55:27 +02001554 MOVE_IN(ctx, data, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001555 IF_KW("ath", 3, LY_STMT_PATH)
1556 else IF_KW("attern", 6, LY_STMT_PATTERN)
1557 else IF_KW("osition", 7, LY_STMT_POSITION)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001558 else IF_KW_PREFIX("re", 2)
Radek Krejcid6b76452019-09-03 17:03:03 +02001559 IF_KW("fix", 3, LY_STMT_PREFIX)
1560 else IF_KW("sence", 5, LY_STMT_PRESENCE)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001561 IF_KW_PREFIX_END
David Sedlák23a59a62018-10-26 13:08:02 +02001562 break;
1563 case 'r':
David Sedlák1bccdfa2019-06-17 15:55:27 +02001564 MOVE_IN(ctx, data, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001565 IF_KW("ange", 4, LY_STMT_RANGE)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001566 else IF_KW_PREFIX("e", 1)
1567 IF_KW_PREFIX("f", 1)
Radek Krejcid6b76452019-09-03 17:03:03 +02001568 IF_KW("erence", 6, LY_STMT_REFERENCE)
1569 else IF_KW("ine", 3, LY_STMT_REFINE)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001570 IF_KW_PREFIX_END
Radek Krejcid6b76452019-09-03 17:03:03 +02001571 else IF_KW("quire-instance", 14, LY_STMT_REQUIRE_INSTANCE)
1572 else IF_KW("vision-date", 11, LY_STMT_REVISION_DATE)
1573 else IF_KW("vision", 6, LY_STMT_REVISION)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001574 IF_KW_PREFIX_END
Radek Krejcid6b76452019-09-03 17:03:03 +02001575 else IF_KW("pc", 2, LY_STMT_RPC)
David Sedlák23a59a62018-10-26 13:08:02 +02001576 break;
1577 case 's':
David Sedlák1bccdfa2019-06-17 15:55:27 +02001578 MOVE_IN(ctx, data, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001579 IF_KW("tatus", 5, LY_STMT_STATUS)
1580 else IF_KW("ubmodule", 8, LY_STMT_SUBMODULE)
David Sedlák23a59a62018-10-26 13:08:02 +02001581 break;
1582 case 't':
David Sedlák1bccdfa2019-06-17 15:55:27 +02001583 MOVE_IN(ctx, data, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001584 IF_KW("ypedef", 6, LY_STMT_TYPEDEF)
1585 else IF_KW("ype", 3, LY_STMT_TYPE)
David Sedlák23a59a62018-10-26 13:08:02 +02001586 break;
1587 case 'u':
David Sedlák1bccdfa2019-06-17 15:55:27 +02001588 MOVE_IN(ctx, data, 1);
1589 IF_KW_PREFIX("ni", 2)
Radek Krejcid6b76452019-09-03 17:03:03 +02001590 IF_KW("que", 3, LY_STMT_UNIQUE)
1591 else IF_KW("ts", 2, LY_STMT_UNITS)
David Sedlák1bccdfa2019-06-17 15:55:27 +02001592 IF_KW_PREFIX_END
Radek Krejcid6b76452019-09-03 17:03:03 +02001593 else IF_KW("ses", 3, LY_STMT_USES)
David Sedlák23a59a62018-10-26 13:08:02 +02001594 break;
1595 case 'v':
David Sedlák1bccdfa2019-06-17 15:55:27 +02001596 MOVE_IN(ctx, data, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001597 IF_KW("alue", 4, LY_STMT_VALUE)
David Sedlák23a59a62018-10-26 13:08:02 +02001598 break;
1599 case 'w':
David Sedlák1bccdfa2019-06-17 15:55:27 +02001600 MOVE_IN(ctx, data, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001601 IF_KW("hen", 3, LY_STMT_WHEN)
David Sedlák23a59a62018-10-26 13:08:02 +02001602 break;
1603 case 'y':
David Sedlák1bccdfa2019-06-17 15:55:27 +02001604 MOVE_IN(ctx, data, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001605 IF_KW("ang-version", 11, LY_STMT_YANG_VERSION)
1606 else IF_KW("in-element", 10, LY_STMT_YIN_ELEMENT)
David Sedlák23a59a62018-10-26 13:08:02 +02001607 break;
David Sedlák23a59a62018-10-26 13:08:02 +02001608 default:
David Sedlák1bccdfa2019-06-17 15:55:27 +02001609 /* if context is not NULL we are matching keyword from YANG data*/
1610 if (ctx) {
1611 if (**data == ';') {
1612 MOVE_IN(ctx, data, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001613 *kw = LY_STMT_SYNTAX_SEMICOLON;
David Sedlák1bccdfa2019-06-17 15:55:27 +02001614 } else if (**data == '{') {
1615 MOVE_IN(ctx, data, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001616 *kw = LY_STMT_SYNTAX_LEFT_BRACE;
David Sedlák1bccdfa2019-06-17 15:55:27 +02001617 } else if (**data == '}') {
1618 MOVE_IN(ctx, data, 1);
Radek Krejcid6b76452019-09-03 17:03:03 +02001619 *kw = LY_STMT_SYNTAX_RIGHT_BRACE;
David Sedlák1bccdfa2019-06-17 15:55:27 +02001620 }
1621 }
David Sedlák23a59a62018-10-26 13:08:02 +02001622 break;
1623 }
1624
Radek Krejci6e546bf2020-05-19 16:16:19 +02001625 if ((*kw < LY_STMT_SYNTAX_SEMICOLON) && isalnum(**data)) {
1626 /* the keyword is not terminated */
1627 *kw = LY_STMT_NONE;
1628 *data = start;
1629 }
1630
David Sedlák1bccdfa2019-06-17 15:55:27 +02001631#undef IF_KW
1632#undef IF_KW_PREFIX
1633#undef IF_KW_PREFIX_END
David Sedlák18730132019-03-15 15:51:34 +01001634#undef MOVE_IN
David Sedlák18730132019-03-15 15:51:34 +01001635
David Sedlák1bccdfa2019-06-17 15:55:27 +02001636 return result;
David Sedlák23a59a62018-10-26 13:08:02 +02001637}
David Sedlákecf5eb82019-06-03 14:12:44 +02001638
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001639LY_ARRAY_SIZE_TYPE
1640lysp_ext_instance_iter(struct lysp_ext_instance *ext, LY_ARRAY_SIZE_TYPE index, LYEXT_SUBSTMT substmt)
Radek Krejcid3ca0632019-04-16 16:54:54 +02001641{
1642 LY_CHECK_ARG_RET(NULL, ext, LY_EINVAL);
1643
1644 for (; index < LY_ARRAY_SIZE(ext); index++) {
1645 if (ext[index].insubstmt == substmt) {
1646 return index;
1647 }
1648 }
1649
1650 return LY_ARRAY_SIZE(ext);
1651}
1652
Radek Krejcia1911222019-07-22 17:24:50 +02001653/**
1654 * @brief Schema mapping of YANG modules to prefixes in values.
1655 *
1656 * Implementation of ly_clb_get_prefix. Inverse function to lys_resolve_prefix.
1657 *
1658 * In this case the @p mod is searched in the list of imports and the import's prefix
1659 * (not the module's itself) prefix is returned.
1660 */
1661const char *
1662lys_get_prefix(const struct lys_module *mod, void *private)
1663{
1664 struct lys_module *context_mod = (struct lys_module*)private;
Radek Krejci7eb54ba2020-05-18 16:30:04 +02001665 LY_ARRAY_SIZE_TYPE u;
Radek Krejcid3ca0632019-04-16 16:54:54 +02001666
Radek Krejci474f9b82019-07-24 11:36:37 +02001667 if (context_mod == mod) {
1668 return context_mod->prefix;
1669 }
Radek Krejcia1911222019-07-22 17:24:50 +02001670 LY_ARRAY_FOR(context_mod->compiled->imports, u) {
1671 if (context_mod->compiled->imports[u].module == mod) {
1672 /* match */
Radek Krejcid0ef1af2019-07-23 12:22:05 +02001673 return context_mod->compiled->imports[u].prefix;
Radek Krejcia1911222019-07-22 17:24:50 +02001674 }
1675 }
1676
1677 return NULL;
1678}
1679
1680/**
1681 * @brief Schema mapping of prefix in values to YANG modules (imports).
1682 *
1683 * Implementation of ly_clb_resolve_prefix. Inverse function to lys_get_prefix().
1684 *
1685 * In this case the @p prefix is searched in the list of imports' prefixes (not the prefixes of the imported modules themselves).
1686 */
1687const struct lys_module *
Michal Vasko52927e22020-03-16 17:26:14 +01001688lys_resolve_prefix(const struct ly_ctx *UNUSED(ctx), const char *prefix, size_t prefix_len, void *private)
Radek Krejcia1911222019-07-22 17:24:50 +02001689{
1690 return lys_module_find_prefix((const struct lys_module*)private, prefix, prefix_len);
1691}
Michal Vasko62ed12d2020-05-21 10:08:25 +02001692
1693const struct lysc_node *
1694lysc_data_parent(const struct lysc_node *schema)
1695{
1696 const struct lysc_node *parent;
1697
1698 for (parent = schema->parent; parent && (parent->nodetype & (LYS_CHOICE | LYS_CASE)); parent = parent->parent);
1699
1700 return parent;
1701}