blob: bbaa33987001c01b4b94cfa6f1a264213299c68a [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"
29#include "extensions.h"
30#include "hash_table.h"
31#include "log.h"
32#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 */
95 ly_ctx_module_implement_internal(ctx->ctx, (struct lys_module*)mod, 2);
Radek Krejci9bb94eb2018-12-04 16:48:35 +010096 }
Radek Krejci6eeb58f2019-02-22 16:29:37 +010097 if (context_node && context_node->nodetype == LYS_ACTION) {
98 /* move through input/output manually */
99 if (!strncmp("input", name, name_len)) {
100 (*result_flag) |= LYSC_OPT_RPC_INPUT;
Radek Krejci05b774b2019-02-25 13:26:18 +0100101 } else if (!strncmp("output", name, name_len)) {
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100102 (*result_flag) |= LYSC_OPT_RPC_OUTPUT;
103 getnext_extra_flag = LYS_GETNEXT_OUTPUT;
Radek Krejci05b774b2019-02-25 13:26:18 +0100104 } else {
105 goto getnext;
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100106 }
Radek Krejci05b774b2019-02-25 13:26:18 +0100107 current_nodetype = LYS_INOUT;
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100108 } else {
Radek Krejci05b774b2019-02-25 13:26:18 +0100109getnext:
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100110 context_node = lys_child(context_node, mod, name, name_len, 0,
111 getnext_extra_flag | LYS_GETNEXT_NOSTATECHECK | LYS_GETNEXT_WITHCHOICE | LYS_GETNEXT_WITHCASE);
112 if (!context_node) {
113 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
114 "Invalid %s-schema-nodeid value \"%.*s\" - target node not found.", nodeid_type, id - nodeid, nodeid);
115 return LY_ENOTFOUND;
116 }
117 getnext_extra_flag = 0;
Radek Krejci05b774b2019-02-25 13:26:18 +0100118 current_nodetype = context_node->nodetype;
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100119
Radek Krejci05b774b2019-02-25 13:26:18 +0100120 if (current_nodetype == LYS_NOTIF) {
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100121 (*result_flag) |= LYSC_OPT_NOTIFICATION;
122 }
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100123 }
Radek Krejci01342af2019-01-03 15:18:08 +0100124 if (!*id || (nodeid_len && ((size_t)(id - nodeid) >= nodeid_len))) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100125 break;
126 }
Radek Krejci01342af2019-01-03 15:18:08 +0100127 if (*id != '/') {
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100128 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
Radek Krejci95710c92019-02-11 15:49:55 +0100129 "Invalid %s-schema-nodeid value \"%.*s\" - missing \"/\" as node-identifier separator.",
130 nodeid_type, id - nodeid + 1, nodeid);
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100131 return LY_EVALID;
132 }
133 ++id;
134 }
135
136 if (ret == LY_SUCCESS) {
Radek Krejci7af64242019-02-18 13:07:53 +0100137 *target = context_node;
Radek Krejci05b774b2019-02-25 13:26:18 +0100138 if (nodetype & LYS_INOUT) {
139 /* instead of input/output nodes, the RPC/action node is actually returned */
140 }
141 if (nodetype && !(current_nodetype & nodetype)) {
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100142 return LY_EDENIED;
143 }
Radek Krejci95710c92019-02-11 15:49:55 +0100144 } else {
145 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
146 "Invalid %s-schema-nodeid value \"%.*s\" - unexpected end of expression.",
Radek Krejci3641f562019-02-13 15:38:40 +0100147 nodeid_type, nodeid_len ? nodeid_len : strlen(nodeid), nodeid);
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100148 }
149
150 return ret;
151}
152
153LY_ERR
Radek Krejcie7b95092019-05-15 11:03:07 +0200154lysp_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 +0200155{
156 struct lysp_import *i;
157
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100158 if (module_prefix && &module_prefix != value && !strcmp(module_prefix, *value)) {
Radek Krejci86d106e2018-10-18 09:53:19 +0200159 LOGVAL(ctx->ctx, LY_VLOG_LINE, &ctx->line, LYVE_REFERENCE,
160 "Prefix \"%s\" already used as module prefix.", *value);
161 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)) {
165 LOGVAL(ctx->ctx, LY_VLOG_LINE, &ctx->line, LYVE_REFERENCE, "Prefix \"%s\" already used to import \"%s\" module.",
166 *value, i->name);
167 return LY_EEXIST;
Radek Krejci86d106e2018-10-18 09:53:19 +0200168 }
169 }
170 return LY_SUCCESS;
171}
172
173LY_ERR
Radek Krejci4f28eda2018-11-12 11:46:16 +0100174lysc_check_status(struct lysc_ctx *ctx,
175 uint16_t flags1, void *mod1, const char *name1,
176 uint16_t flags2, void *mod2, const char *name2)
177{
178 uint16_t flg1, flg2;
179
180 flg1 = (flags1 & LYS_STATUS_MASK) ? (flags1 & LYS_STATUS_MASK) : LYS_STATUS_CURR;
181 flg2 = (flags2 & LYS_STATUS_MASK) ? (flags2 & LYS_STATUS_MASK) : LYS_STATUS_CURR;
182
183 if ((flg1 < flg2) && (mod1 == mod2)) {
184 if (ctx) {
185 LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE,
186 "A %s definition \"%s\" is not allowed to reference %s definition \"%s\".",
187 flg1 == LYS_STATUS_CURR ? "current" : "deprecated", name1,
188 flg2 == LYS_STATUS_OBSLT ? "obsolete" : "deprecated", name2);
189 }
190 return LY_EVALID;
191 }
192
193 return LY_SUCCESS;
194}
195
196LY_ERR
Radek Krejcie7b95092019-05-15 11:03:07 +0200197lysp_check_date(struct lys_parser_ctx *ctx, const char *date, int date_len, const char *stmt)
Radek Krejci86d106e2018-10-18 09:53:19 +0200198{
199 int i;
200 struct tm tm, tm_;
201 char *r;
202
Radek Krejcibbe09a92018-11-08 09:36:54 +0100203 LY_CHECK_ARG_RET(ctx ? ctx->ctx : NULL, date, LY_EINVAL);
204 LY_CHECK_ERR_RET(date_len != LY_REV_SIZE - 1, LOGARG(ctx ? ctx->ctx : NULL, date_len), LY_EINVAL);
Radek Krejci86d106e2018-10-18 09:53:19 +0200205
206 /* check format */
207 for (i = 0; i < date_len; i++) {
208 if (i == 4 || i == 7) {
209 if (date[i] != '-') {
210 goto error;
211 }
212 } else if (!isdigit(date[i])) {
213 goto error;
214 }
215 }
216
217 /* check content, e.g. 2018-02-31 */
218 memset(&tm, 0, sizeof tm);
219 r = strptime(date, "%Y-%m-%d", &tm);
220 if (!r || r != &date[LY_REV_SIZE - 1]) {
221 goto error;
222 }
223 memcpy(&tm_, &tm, sizeof tm);
224 mktime(&tm_); /* mktime modifies tm_ if it refers invalid date */
225 if (tm.tm_mday != tm_.tm_mday) { /* e.g 2018-02-29 -> 2018-03-01 */
226 /* checking days is enough, since other errors
227 * have been checked by strptime() */
228 goto error;
229 }
230
231 return LY_SUCCESS;
232
233error:
Radek Krejcid33273d2018-10-25 14:55:52 +0200234 if (stmt) {
Radek Krejcibbe09a92018-11-08 09:36:54 +0100235 if (ctx) {
236 LOGVAL(ctx->ctx, LY_VLOG_LINE, &ctx->line, LY_VCODE_INVAL, date_len, date, stmt);
237 } else {
238 LOGVAL(NULL, LY_VLOG_NONE, NULL, LY_VCODE_INVAL, date_len, date, stmt);
239 }
Radek Krejcid33273d2018-10-25 14:55:52 +0200240 }
Radek Krejci86d106e2018-10-18 09:53:19 +0200241 return LY_EINVAL;
242}
243
244void
245lysp_sort_revisions(struct lysp_revision *revs)
246{
247 uint8_t i, r;
248 struct lysp_revision rev;
249
250 for (i = 1, r = 0; revs && i < LY_ARRAY_SIZE(revs); i++) {
Radek Krejcib7db73a2018-10-24 14:18:40 +0200251 if (strcmp(revs[i].date, revs[r].date) > 0) {
Radek Krejci86d106e2018-10-18 09:53:19 +0200252 r = i;
253 }
254 }
255
256 if (r) {
257 /* the newest revision is not on position 0, switch them */
Radek Krejci2c4e7172018-10-19 15:56:26 +0200258 memcpy(&rev, &revs[0], sizeof rev);
259 memcpy(&revs[0], &revs[r], sizeof rev);
260 memcpy(&revs[r], &rev, sizeof rev);
Radek Krejci86d106e2018-10-18 09:53:19 +0200261 }
262}
Radek Krejci151a5b72018-10-19 14:21:44 +0200263
Radek Krejcibbe09a92018-11-08 09:36:54 +0100264static const struct lysp_tpdf *
265lysp_type_match(const char *name, struct lysp_node *node)
266{
Radek Krejci0fb28562018-12-13 15:17:37 +0100267 const struct lysp_tpdf *typedefs;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100268 unsigned int u;
269
Radek Krejci0fb28562018-12-13 15:17:37 +0100270 typedefs = lysp_node_typedefs(node);
271 LY_ARRAY_FOR(typedefs, u) {
272 if (!strcmp(name, typedefs[u].name)) {
273 /* match */
274 return &typedefs[u];
Radek Krejcibbe09a92018-11-08 09:36:54 +0100275 }
276 }
277
278 return NULL;
279}
280
Radek Krejci4f28eda2018-11-12 11:46:16 +0100281static LY_DATA_TYPE
282lysp_type_str2builtin(const char *name, size_t len)
283{
284 if (len >= 4) { /* otherwise it does not match any built-in type */
285 if (name[0] == 'b') {
286 if (name[1] == 'i') {
287 if (len == 6 && !strncmp(&name[2], "nary", 4)) {
288 return LY_TYPE_BINARY;
289 } else if (len == 4 && !strncmp(&name[2], "ts", 2)) {
290 return LY_TYPE_BITS;
291 }
292 } else if (len == 7 && !strncmp(&name[1], "oolean", 6)) {
293 return LY_TYPE_BOOL;
294 }
295 } else if (name[0] == 'd') {
296 if (len == 9 && !strncmp(&name[1], "ecimal64", 8)) {
297 return LY_TYPE_DEC64;
298 }
299 } else if (name[0] == 'e') {
300 if (len == 5 && !strncmp(&name[1], "mpty", 4)) {
301 return LY_TYPE_EMPTY;
302 } else if (len == 11 && !strncmp(&name[1], "numeration", 10)) {
303 return LY_TYPE_ENUM;
304 }
305 } else if (name[0] == 'i') {
306 if (name[1] == 'n') {
307 if (len == 4 && !strncmp(&name[2], "t8", 2)) {
308 return LY_TYPE_INT8;
309 } else if (len == 5) {
310 if (!strncmp(&name[2], "t16", 3)) {
311 return LY_TYPE_INT16;
312 } else if (!strncmp(&name[2], "t32", 3)) {
313 return LY_TYPE_INT32;
314 } else if (!strncmp(&name[2], "t64", 3)) {
315 return LY_TYPE_INT64;
316 }
317 } else if (len == 19 && !strncmp(&name[2], "stance-identifier", 17)) {
318 return LY_TYPE_INST;
319 }
320 } else if (len == 11 && !strncmp(&name[1], "dentityref", 10)) {
321 return LY_TYPE_IDENT;
322 }
323 } else if (name[0] == 'l') {
324 if (len == 7 && !strncmp(&name[1], "eafref", 6)) {
325 return LY_TYPE_LEAFREF;
326 }
327 } else if (name[0] == 's') {
328 if (len == 6 && !strncmp(&name[1], "tring", 5)) {
329 return LY_TYPE_STRING;
330 }
331 } else if (name[0] == 'u') {
332 if (name[1] == 'n') {
333 if (len == 5 && !strncmp(&name[2], "ion", 3)) {
334 return LY_TYPE_UNION;
335 }
336 } else if (name[1] == 'i' && name[2] == 'n' && name[3] == 't') {
337 if (len == 5 && name[4] == '8') {
338 return LY_TYPE_UINT8;
339 } else if (len == 6) {
340 if (!strncmp(&name[4], "16", 2)) {
341 return LY_TYPE_UINT16;
342 } else if (!strncmp(&name[4], "32", 2)) {
343 return LY_TYPE_UINT32;
344 } else if (!strncmp(&name[4], "64", 2)) {
345 return LY_TYPE_UINT64;
346 }
347 }
348 }
349 }
350 }
351
352 return LY_TYPE_UNKNOWN;
353}
354
Radek Krejcibbe09a92018-11-08 09:36:54 +0100355LY_ERR
356lysp_type_find(const char *id, struct lysp_node *start_node, struct lysp_module *start_module,
Radek Krejci4f28eda2018-11-12 11:46:16 +0100357 LY_DATA_TYPE *type, const struct lysp_tpdf **tpdf, struct lysp_node **node, struct lysp_module **module)
Radek Krejcibbe09a92018-11-08 09:36:54 +0100358{
359 const char *str, *name;
360 struct lysp_tpdf *typedefs;
361 unsigned int u, v;
362
363 assert(id);
364 assert(start_module);
365 assert(tpdf);
366 assert(node);
367 assert(module);
368
Radek Krejci4f28eda2018-11-12 11:46:16 +0100369 *node = NULL;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100370 str = strchr(id, ':');
371 if (str) {
372 *module = lysp_module_find_prefix(start_module, id, str - id);
373 name = str + 1;
Radek Krejci4f28eda2018-11-12 11:46:16 +0100374 *type = LY_TYPE_UNKNOWN;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100375 } else {
376 *module = start_module;
377 name = id;
Radek Krejci4f28eda2018-11-12 11:46:16 +0100378
379 /* check for built-in types */
380 *type = lysp_type_str2builtin(name, strlen(name));
381 if (*type) {
382 *tpdf = NULL;
383 return LY_SUCCESS;
384 }
Radek Krejcibbe09a92018-11-08 09:36:54 +0100385 }
386 LY_CHECK_RET(!(*module), LY_ENOTFOUND);
387
388 if (start_node && *module == start_module) {
389 /* search typedefs in parent's nodes */
390 *node = start_node;
391 while (*node) {
392 *tpdf = lysp_type_match(name, *node);
393 if (*tpdf) {
394 /* match */
395 return LY_SUCCESS;
396 }
397 *node = (*node)->parent;
398 }
399 }
400
401 /* search in top-level typedefs */
402 if ((*module)->typedefs) {
403 LY_ARRAY_FOR((*module)->typedefs, u) {
404 if (!strcmp(name, (*module)->typedefs[u].name)) {
405 /* match */
406 *tpdf = &(*module)->typedefs[u];
407 return LY_SUCCESS;
408 }
409 }
410 }
411
412 /* search in submodules' typedefs */
413 LY_ARRAY_FOR((*module)->includes, u) {
414 typedefs = (*module)->includes[u].submodule->typedefs;
Radek Krejci76b3e962018-12-14 17:01:25 +0100415 LY_ARRAY_FOR(typedefs, v) {
416 if (!strcmp(name, typedefs[v].name)) {
417 /* match */
418 *tpdf = &typedefs[v];
419 return LY_SUCCESS;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100420 }
421 }
422 }
423
424 return LY_ENOTFOUND;
425}
426
427/*
428 * @brief Check name of a new type to avoid name collisions.
429 *
430 * @param[in] ctx Parser context, module where the type is being defined is taken from here.
431 * @param[in] node Schema node where the type is being defined, NULL in case of a top-level typedef.
432 * @param[in] tpdf Typedef definition to check.
433 * @param[in,out] tpdfs_global Initialized hash table to store temporary data between calls. When the module's
434 * typedefs are checked, caller is supposed to free the table.
435 * @param[in,out] tpdfs_global Initialized hash table to store temporary data between calls. When the module's
436 * typedefs are checked, caller is supposed to free the table.
437 * @return LY_EEXIST in case of collision, LY_SUCCESS otherwise.
438 */
439static LY_ERR
Radek Krejcie7b95092019-05-15 11:03:07 +0200440lysp_check_typedef(struct lys_parser_ctx *ctx, struct lysp_node *node, const struct lysp_tpdf *tpdf,
Radek Krejcibbe09a92018-11-08 09:36:54 +0100441 struct hash_table *tpdfs_global, struct hash_table *tpdfs_scoped)
442{
443 struct lysp_node *parent;
444 uint32_t hash;
445 size_t name_len;
446 const char *name;
447 unsigned int u;
Radek Krejci0fb28562018-12-13 15:17:37 +0100448 const struct lysp_tpdf *typedefs;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100449
450 assert(ctx);
451 assert(tpdf);
452
453 name = tpdf->name;
454 name_len = strlen(name);
455
Radek Krejci4f28eda2018-11-12 11:46:16 +0100456 if (lysp_type_str2builtin(name, name_len)) {
457 LOGVAL(ctx->ctx, LY_VLOG_LINE, &ctx->line, LYVE_SYNTAX_YANG,
458 "Invalid name \"%s\" of typedef - name collision with a built-in type.", name);
459 return LY_EEXIST;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100460 }
461
462 /* check locally scoped typedefs (avoid name shadowing) */
463 if (node) {
Radek Krejci0fb28562018-12-13 15:17:37 +0100464 typedefs = lysp_node_typedefs(node);
465 LY_ARRAY_FOR(typedefs, u) {
466 if (&typedefs[u] == tpdf) {
467 break;
468 }
469 if (!strcmp(name, typedefs[u].name)) {
470 LOGVAL(ctx->ctx, LY_VLOG_LINE, &ctx->line, LYVE_SYNTAX_YANG,
471 "Invalid name \"%s\" of typedef - name collision with sibling type.", name);
472 return LY_EEXIST;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100473 }
474 }
475 /* search typedefs in parent's nodes */
Radek Krejci87e78ca2019-05-02 09:51:29 +0200476 for (parent = node->parent; parent; parent = parent->parent) {
Radek Krejcibbe09a92018-11-08 09:36:54 +0100477 if (lysp_type_match(name, parent)) {
478 LOGVAL(ctx->ctx, LY_VLOG_LINE, &ctx->line, LYVE_SYNTAX_YANG,
479 "Invalid name \"%s\" of typedef - name collision with another scoped type.", name);
480 return LY_EEXIST;
481 }
482 }
483 }
484
485 /* check collision with the top-level typedefs */
486 hash = dict_hash(name, name_len);
487 if (node) {
488 lyht_insert(tpdfs_scoped, &name, hash, NULL);
489 if (!lyht_find(tpdfs_global, &name, hash, NULL)) {
490 LOGVAL(ctx->ctx, LY_VLOG_LINE, &ctx->line, LYVE_SYNTAX_YANG,
491 "Invalid name \"%s\" of typedef - scoped type collide with a top-level type.", name);
492 return LY_EEXIST;
493 }
494 } else {
495 if (lyht_insert(tpdfs_global, &name, hash, NULL)) {
496 LOGVAL(ctx->ctx, LY_VLOG_LINE, &ctx->line, LYVE_SYNTAX_YANG,
497 "Invalid name \"%s\" of typedef - name collision with another top-level type.", name);
498 return LY_EEXIST;
499 }
Radek Krejci3b1f9292018-11-08 10:58:35 +0100500 /* it is not necessary to test collision with the scoped types - in lysp_check_typedefs, all the
501 * top-level typedefs are inserted into the tables before the scoped typedefs, so the collision
502 * is detected in the first branch few lines above */
Radek Krejcibbe09a92018-11-08 09:36:54 +0100503 }
504
505 return LY_SUCCESS;
506}
507
508static int
509lysp_id_cmp(void *val1, void *val2, int UNUSED(mod), void *UNUSED(cb_data))
510{
511 return !strcmp(val1, val2);
512}
513
514LY_ERR
Radek Krejcie7b95092019-05-15 11:03:07 +0200515lysp_check_typedefs(struct lys_parser_ctx *ctx, struct lysp_module *mod)
Radek Krejcibbe09a92018-11-08 09:36:54 +0100516{
517 struct hash_table *ids_global;
518 struct hash_table *ids_scoped;
Radek Krejci0fb28562018-12-13 15:17:37 +0100519 const struct lysp_tpdf *typedefs;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100520 unsigned int i, u;
521 LY_ERR ret = LY_EVALID;
522
523 /* check name collisions - typedefs and groupings */
524 ids_global = lyht_new(8, sizeof(char*), lysp_id_cmp, NULL, 1);
525 ids_scoped = lyht_new(8, sizeof(char*), lysp_id_cmp, NULL, 1);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100526 LY_ARRAY_FOR(mod->typedefs, i) {
527 if (lysp_check_typedef(ctx, NULL, &mod->typedefs[i], ids_global, ids_scoped)) {
Radek Krejcibbe09a92018-11-08 09:36:54 +0100528 goto cleanup;
529 }
530 }
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100531 LY_ARRAY_FOR(mod->includes, i) {
532 LY_ARRAY_FOR(mod->includes[i].submodule->typedefs, u) {
533 if (lysp_check_typedef(ctx, NULL, &mod->includes[i].submodule->typedefs[u], ids_global, ids_scoped)) {
Radek Krejci3b1f9292018-11-08 10:58:35 +0100534 goto cleanup;
535 }
536 }
537 }
Radek Krejcibbe09a92018-11-08 09:36:54 +0100538 for (u = 0; u < ctx->tpdfs_nodes.count; ++u) {
Radek Krejci0fb28562018-12-13 15:17:37 +0100539 typedefs = lysp_node_typedefs((struct lysp_node *)ctx->tpdfs_nodes.objs[u]);
540 LY_ARRAY_FOR(typedefs, i) {
541 if (lysp_check_typedef(ctx, (struct lysp_node *)ctx->tpdfs_nodes.objs[u], &typedefs[i], ids_global, ids_scoped)) {
Radek Krejcibbe09a92018-11-08 09:36:54 +0100542 goto cleanup;
543 }
544 }
545 }
546 ret = LY_SUCCESS;
547cleanup:
548 lyht_free(ids_global);
549 lyht_free(ids_scoped);
550 ly_set_erase(&ctx->tpdfs_nodes, NULL);
551
552 return ret;
553}
554
Radek Krejci9ed7a192018-10-31 16:23:51 +0100555struct lysp_load_module_check_data {
556 const char *name;
557 const char *revision;
558 const char *path;
559 const char* submoduleof;
560};
561
562static LY_ERR
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100563lysp_load_module_check(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *data)
Radek Krejci9ed7a192018-10-31 16:23:51 +0100564{
565 struct lysp_load_module_check_data *info = data;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100566 const char *filename, *dot, *rev, *name;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100567 size_t len;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100568 struct lysp_revision *revs;
569
570 name = mod ? mod->mod->name : submod->name;
571 revs = mod ? mod->revs : submod->revs;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100572
573 if (info->name) {
574 /* check name of the parsed model */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100575 if (strcmp(info->name, name)) {
576 LOGERR(ctx, LY_EINVAL, "Unexpected module \"%s\" parsed instead of \"%s\").", name, info->name);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100577 return LY_EINVAL;
578 }
579 }
580 if (info->revision) {
581 /* check revision of the parsed model */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100582 if (!revs || strcmp(info->revision, revs[0].date)) {
583 LOGERR(ctx, LY_EINVAL, "Module \"%s\" parsed with the wrong revision (\"%s\" instead \"%s\").", name,
Radek Krejcib07b5c92019-04-08 10:56:37 +0200584 revs ? revs[0].date : "none", info->revision);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100585 return LY_EINVAL;
586 }
587 }
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100588 if (submod) {
589 assert(info->submoduleof);
590
Radek Krejci9ed7a192018-10-31 16:23:51 +0100591 /* check that the submodule belongs-to our module */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100592 if (strcmp(info->submoduleof, submod->belongsto)) {
Radek Krejci9ed7a192018-10-31 16:23:51 +0100593 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 +0100594 submod->name, info->submoduleof, submod->belongsto);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100595 return LY_EVALID;
596 }
597 /* check circular dependency */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100598 if (submod->parsing) {
599 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE, "A circular dependency (include) for module \"%s\".", submod->name);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100600 return LY_EVALID;
601 }
602 }
603 if (info->path) {
604 /* check that name and revision match filename */
605 filename = strrchr(info->path, '/');
606 if (!filename) {
607 filename = info->path;
608 } else {
609 filename++;
610 }
611 /* name */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100612 len = strlen(name);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100613 rev = strchr(filename, '@');
614 dot = strrchr(info->path, '.');
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100615 if (strncmp(filename, name, len) ||
Radek Krejci9ed7a192018-10-31 16:23:51 +0100616 ((rev && rev != &filename[len]) || (!rev && dot != &filename[len]))) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100617 LOGWRN(ctx, "File name \"%s\" does not match module name \"%s\".", filename, name);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100618 }
619 /* revision */
620 if (rev) {
621 len = dot - ++rev;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100622 if (!revs || len != 10 || strncmp(revs[0].date, rev, len)) {
Radek Krejci9ed7a192018-10-31 16:23:51 +0100623 LOGWRN(ctx, "File name \"%s\" does not match module revision \"%s\".", filename,
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100624 revs ? revs[0].date : "none");
Radek Krejci9ed7a192018-10-31 16:23:51 +0100625 }
626 }
627 }
628 return LY_SUCCESS;
629}
630
631LY_ERR
Radek Krejcie7b95092019-05-15 11:03:07 +0200632lys_module_localfile(struct ly_ctx *ctx, const char *name, const char *revision, int implement, struct lys_parser_ctx *main_ctx,
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100633 void **result)
Radek Krejci9ed7a192018-10-31 16:23:51 +0100634{
635 int fd;
636 char *filepath = NULL;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100637 const char **fp;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100638 LYS_INFORMAT format;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100639 void *mod = NULL;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100640 LY_ERR ret = LY_SUCCESS;
641 struct lysp_load_module_check_data check_data = {0};
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100642 char rpath[PATH_MAX];
Radek Krejci9ed7a192018-10-31 16:23:51 +0100643
644 LY_CHECK_RET(lys_search_localfile(ly_ctx_get_searchdirs(ctx), !(ctx->flags & LY_CTX_DISABLE_SEARCHDIR_CWD), name, revision,
645 &filepath, &format));
646 LY_CHECK_ERR_RET(!filepath, LOGERR(ctx, LY_ENOTFOUND, "Data model \"%s%s%s\" not found in local searchdirs.",
647 name, revision ? "@" : "", revision ? revision : ""), LY_ENOTFOUND);
648
649
650 LOGVRB("Loading schema from \"%s\" file.", filepath);
651
652 /* open the file */
653 fd = open(filepath, O_RDONLY);
654 LY_CHECK_ERR_GOTO(fd < 0, LOGERR(ctx, LY_ESYS, "Unable to open data model file \"%s\" (%s).",
655 filepath, strerror(errno)); ret = LY_ESYS, cleanup);
656
657 check_data.name = name;
658 check_data.revision = revision;
659 check_data.path = filepath;
Radek Krejci3b1f9292018-11-08 10:58:35 +0100660 mod = lys_parse_fd_(ctx, fd, format, implement, main_ctx,
Radek Krejci9ed7a192018-10-31 16:23:51 +0100661 lysp_load_module_check, &check_data);
662 close(fd);
663 LY_CHECK_ERR_GOTO(!mod, ly_errcode(ctx), cleanup);
664
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100665 if (main_ctx) {
666 fp = &((struct lysp_submodule*)mod)->filepath;
667 } else {
668 fp = &((struct lys_module*)mod)->filepath;
669 }
670 if (!(*fp)) {
Radek Krejci9ed7a192018-10-31 16:23:51 +0100671 if (realpath(filepath, rpath) != NULL) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100672 (*fp) = lydict_insert(ctx, rpath, 0);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100673 } else {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100674 (*fp) = lydict_insert(ctx, filepath, 0);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100675 }
676 }
677
678 *result = mod;
679
680 /* success */
681cleanup:
682 free(filepath);
683 return ret;
684}
685
Radek Krejcid33273d2018-10-25 14:55:52 +0200686LY_ERR
Radek Krejci6d6e4e42018-10-29 13:28:19 +0100687lysp_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 +0200688{
Radek Krejci9ed7a192018-10-31 16:23:51 +0100689 const char *module_data = NULL;
Radek Krejci086c7132018-10-26 15:29:04 +0200690 LYS_INFORMAT format = LYS_IN_UNKNOWN;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100691 void (*module_data_free)(void *module_data, void *user_data) = NULL;
692 struct lysp_load_module_check_data check_data = {0};
Radek Krejci0af46292019-01-11 16:02:31 +0100693 struct lys_module *m;
Radek Krejci086c7132018-10-26 15:29:04 +0200694
Radek Krejci0af46292019-01-11 16:02:31 +0100695 assert(mod);
696
697 if (!*mod) {
698 /* try to get the module from the context */
699 if (revision) {
Radek Krejcied5acc52019-04-25 15:57:04 +0200700 /* get the specific revision */
Radek Krejci0af46292019-01-11 16:02:31 +0100701 *mod = (struct lys_module*)ly_ctx_get_module(ctx, name, revision);
Radek Krejcied5acc52019-04-25 15:57:04 +0200702 } else if (implement) {
703 /* prefer the implemented module instead of the latest one */
704 *mod = (struct lys_module*)ly_ctx_get_module_implemented(ctx, name);
705 if (!*mod) {
706 /* there is no implemented module in the context, try to get the latest revision module */
707 goto latest_in_the_context;
708 }
Radek Krejci0af46292019-01-11 16:02:31 +0100709 } else {
Radek Krejcied5acc52019-04-25 15:57:04 +0200710 /* get the requested module of the latest revision in the context */
711latest_in_the_context:
Radek Krejci0af46292019-01-11 16:02:31 +0100712 *mod = (struct lys_module*)ly_ctx_get_module_latest(ctx, name);
713 }
Radek Krejci086c7132018-10-26 15:29:04 +0200714 }
715
Radek Krejci6d6e4e42018-10-29 13:28:19 +0100716 if (!(*mod) || (require_parsed && !(*mod)->parsed)) {
717 (*mod) = NULL;
718
Radek Krejci086c7132018-10-26 15:29:04 +0200719 /* check collision with other implemented revision */
720 if (implement && ly_ctx_get_module_implemented(ctx, name)) {
721 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE,
722 "Module \"%s\" is already present in other implemented revision.", name);
723 return LY_EDENIED;
724 }
725
Radek Krejci9ed7a192018-10-31 16:23:51 +0100726 /* module not present in the context, get the input data and parse it */
Radek Krejci086c7132018-10-26 15:29:04 +0200727 if (!(ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) {
728search_clb:
729 if (ctx->imp_clb) {
730 if (ctx->imp_clb(name, revision, NULL, NULL, ctx->imp_clb_data,
Radek Krejci9ed7a192018-10-31 16:23:51 +0100731 &format, &module_data, &module_data_free) == LY_SUCCESS) {
732 check_data.name = name;
733 check_data.revision = revision;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100734 *mod = lys_parse_mem_module(ctx, module_data, format, implement,
735 lysp_load_module_check, &check_data);
Radek Krejci9ed7a192018-10-31 16:23:51 +0100736 if (module_data_free) {
737 module_data_free((void*)module_data, ctx->imp_clb_data);
738 }
Radek Krejci096235c2019-01-11 11:12:19 +0100739 if (*mod && implement && lys_compile(*mod, 0)) {
740 ly_set_rm(&ctx->list, *mod, NULL);
741 lys_module_free(*mod, NULL);
742 *mod = NULL;
743 }
Radek Krejci086c7132018-10-26 15:29:04 +0200744 }
745 }
746 if (!(*mod) && !(ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) {
747 goto search_file;
748 }
749 } else {
750search_file:
751 if (!(ctx->flags & LY_CTX_DISABLE_SEARCHDIRS)) {
752 /* module was not received from the callback or there is no callback set */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100753 lys_module_localfile(ctx, name, revision, implement, NULL, (void **)mod);
Radek Krejci086c7132018-10-26 15:29:04 +0200754 }
755 if (!(*mod) && (ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) {
756 goto search_clb;
757 }
758 }
Radek Krejci9ed7a192018-10-31 16:23:51 +0100759
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100760 if ((*mod) && !revision && ((*mod)->latest_revision == 1)) {
Radek Krejci9ed7a192018-10-31 16:23:51 +0100761 /* update the latest_revision flag - here we have selected the latest available schema,
762 * consider that even the callback provides correct latest revision */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100763 (*mod)->latest_revision = 2;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100764 }
Radek Krejci086c7132018-10-26 15:29:04 +0200765 } else {
766 /* we have module from the current context */
Radek Krejci0af46292019-01-11 16:02:31 +0100767 if (implement) {
768 m = ly_ctx_get_module_implemented(ctx, name);
769 if (m && m != *mod) {
770 /* check collision with other implemented revision */
771 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE,
772 "Module \"%s\" is already present in other implemented revision.", name);
773 *mod = NULL;
774 return LY_EDENIED;
775 }
Radek Krejci086c7132018-10-26 15:29:04 +0200776 }
777
778 /* circular check */
Radek Krejcif8f882a2018-10-31 14:51:15 +0100779 if ((*mod)->parsed && (*mod)->parsed->parsing) {
Radek Krejci086c7132018-10-26 15:29:04 +0200780 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE, "A circular dependency (import) for module \"%s\".", name);
781 *mod = NULL;
782 return LY_EVALID;
783 }
784 }
785 if (!(*mod)) {
Radek Krejci9ed7a192018-10-31 16:23:51 +0100786 LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE, "%s \"%s\" module failed.", implement ? "Loading" : "Importing", name);
Radek Krejci086c7132018-10-26 15:29:04 +0200787 return LY_EVALID;
788 }
789
790 if (implement) {
791 /* mark the module implemented, check for collision was already done */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100792 (*mod)->implemented = 1;
Radek Krejci086c7132018-10-26 15:29:04 +0200793 }
Radek Krejci086c7132018-10-26 15:29:04 +0200794
795 return LY_SUCCESS;
796}
797
798LY_ERR
Radek Krejcie7b95092019-05-15 11:03:07 +0200799lysp_load_submodule(struct lys_parser_ctx *ctx, struct lysp_module *mod, struct lysp_include *inc)
Radek Krejcid33273d2018-10-25 14:55:52 +0200800{
Radek Krejci3eb299d2019-04-08 15:07:44 +0200801 struct lysp_submodule *submod = NULL;
Radek Krejcid33273d2018-10-25 14:55:52 +0200802 const char *submodule_data = NULL;
803 LYS_INFORMAT format = LYS_IN_UNKNOWN;
804 void (*submodule_data_free)(void *module_data, void *user_data) = NULL;
Radek Krejci9ed7a192018-10-31 16:23:51 +0100805 struct lysp_load_module_check_data check_data = {0};
Radek Krejcid33273d2018-10-25 14:55:52 +0200806
Radek Krejcibbe09a92018-11-08 09:36:54 +0100807 /* submodule not present in the context, get the input data and parse it */
Radek Krejci3b1f9292018-11-08 10:58:35 +0100808 if (!(ctx->ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) {
Radek Krejcid33273d2018-10-25 14:55:52 +0200809search_clb:
Radek Krejci3b1f9292018-11-08 10:58:35 +0100810 if (ctx->ctx->imp_clb) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100811 if (ctx->ctx->imp_clb(mod->mod->name, NULL, inc->name, inc->rev[0] ? inc->rev : NULL, ctx->ctx->imp_clb_data,
Radek Krejcibbe09a92018-11-08 09:36:54 +0100812 &format, &submodule_data, &submodule_data_free) == LY_SUCCESS) {
813 check_data.name = inc->name;
814 check_data.revision = inc->rev[0] ? inc->rev : NULL;
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100815 check_data.submoduleof = mod->mod->name;
816 submod = lys_parse_mem_submodule(ctx->ctx, submodule_data, format, ctx,
817 lysp_load_module_check, &check_data);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100818 if (submodule_data_free) {
Radek Krejci3b1f9292018-11-08 10:58:35 +0100819 submodule_data_free((void*)submodule_data, ctx->ctx->imp_clb_data);
Radek Krejcid33273d2018-10-25 14:55:52 +0200820 }
821 }
Radek Krejcid33273d2018-10-25 14:55:52 +0200822 }
Radek Krejci3b1f9292018-11-08 10:58:35 +0100823 if (!submod && !(ctx->ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) {
Radek Krejcibbe09a92018-11-08 09:36:54 +0100824 goto search_file;
Radek Krejcid33273d2018-10-25 14:55:52 +0200825 }
Radek Krejci2d31ea72018-10-25 15:46:42 +0200826 } else {
Radek Krejcibbe09a92018-11-08 09:36:54 +0100827search_file:
Radek Krejci3b1f9292018-11-08 10:58:35 +0100828 if (!(ctx->ctx->flags & LY_CTX_DISABLE_SEARCHDIRS)) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100829 /* submodule was not received from the callback or there is no callback set */
830 lys_module_localfile(ctx->ctx, inc->name, inc->rev[0] ? inc->rev : NULL, 0, ctx, (void**)&submod);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100831 }
Radek Krejci3b1f9292018-11-08 10:58:35 +0100832 if (!submod && (ctx->ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) {
Radek Krejcibbe09a92018-11-08 09:36:54 +0100833 goto search_clb;
834 }
835 }
836 if (submod) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100837 if (!inc->rev[0] && (submod->latest_revision == 1)) {
Radek Krejcibbe09a92018-11-08 09:36:54 +0100838 /* update the latest_revision flag - here we have selected the latest available schema,
839 * consider that even the callback provides correct latest revision */
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100840 submod->latest_revision = 2;
Radek Krejcibbe09a92018-11-08 09:36:54 +0100841 }
842
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100843 inc->submodule = submod;
Radek Krejcid33273d2018-10-25 14:55:52 +0200844 }
845 if (!inc->submodule) {
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100846 LOGVAL(ctx->ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE, "Including \"%s\" submodule into \"%s\" failed.",
847 inc->name, mod->mod->name);
Radek Krejcid33273d2018-10-25 14:55:52 +0200848 return LY_EVALID;
849 }
850
851 return LY_SUCCESS;
852}
853
Radek Krejci01342af2019-01-03 15:18:08 +0100854#define FIND_MODULE(TYPE, MOD) \
Radek Krejcice8c1592018-10-29 15:35:51 +0100855 TYPE *imp; \
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100856 if (!strncmp((MOD)->mod->prefix, prefix, len) && (MOD)->mod->prefix[len] == '\0') { \
Radek Krejcice8c1592018-10-29 15:35:51 +0100857 /* it is the prefix of the module itself */ \
Radek Krejci0af46292019-01-11 16:02:31 +0100858 m = ly_ctx_get_module((MOD)->mod->ctx, (MOD)->mod->name, (MOD)->mod->revision); \
Radek Krejcice8c1592018-10-29 15:35:51 +0100859 } \
860 /* search in imports */ \
Radek Krejcibbe09a92018-11-08 09:36:54 +0100861 if (!m) { \
862 LY_ARRAY_FOR((MOD)->imports, TYPE, imp) { \
Radek Krejci01342af2019-01-03 15:18:08 +0100863 if (!strncmp(imp->prefix, prefix, len) && imp->prefix[len] == '\0') { \
Radek Krejcibbe09a92018-11-08 09:36:54 +0100864 m = imp->module; \
865 break; \
866 } \
Radek Krejcice8c1592018-10-29 15:35:51 +0100867 } \
Radek Krejcibbe09a92018-11-08 09:36:54 +0100868 }
Radek Krejcice8c1592018-10-29 15:35:51 +0100869
Radek Krejcibbe09a92018-11-08 09:36:54 +0100870struct lysc_module *
Radek Krejcia3045382018-11-22 14:30:31 +0100871lysc_module_find_prefix(const struct lysc_module *mod, const char *prefix, size_t len)
Radek Krejci151a5b72018-10-19 14:21:44 +0200872{
Radek Krejcibbe09a92018-11-08 09:36:54 +0100873 const struct lys_module *m = NULL;
874
Radek Krejci01342af2019-01-03 15:18:08 +0100875 FIND_MODULE(struct lysc_import, mod);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100876 return m ? m->compiled : NULL;
Radek Krejcice8c1592018-10-29 15:35:51 +0100877}
Radek Krejci151a5b72018-10-19 14:21:44 +0200878
Radek Krejcibbe09a92018-11-08 09:36:54 +0100879struct lysp_module *
Radek Krejcia3045382018-11-22 14:30:31 +0100880lysp_module_find_prefix(const struct lysp_module *mod, const char *prefix, size_t len)
Radek Krejcice8c1592018-10-29 15:35:51 +0100881{
Radek Krejcibbe09a92018-11-08 09:36:54 +0100882 const struct lys_module *m = NULL;
883
Radek Krejci01342af2019-01-03 15:18:08 +0100884 FIND_MODULE(struct lysp_import, mod);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100885 return m ? m->parsed : NULL;
Radek Krejcice8c1592018-10-29 15:35:51 +0100886}
Radek Krejci151a5b72018-10-19 14:21:44 +0200887
Radek Krejcice8c1592018-10-29 15:35:51 +0100888struct lys_module *
Radek Krejcia3045382018-11-22 14:30:31 +0100889lys_module_find_prefix(const struct lys_module *mod, const char *prefix, size_t len)
Radek Krejcice8c1592018-10-29 15:35:51 +0100890{
Radek Krejcibbe09a92018-11-08 09:36:54 +0100891 const struct lys_module *m = NULL;
892
Radek Krejci73dead22019-07-11 16:46:16 +0200893 if (!prefix) {
894 return (struct lys_module*)mod;
895 }
Radek Krejcice8c1592018-10-29 15:35:51 +0100896 if (mod->compiled) {
Radek Krejci01342af2019-01-03 15:18:08 +0100897 FIND_MODULE(struct lysc_import, mod->compiled);
Radek Krejcice8c1592018-10-29 15:35:51 +0100898 } else {
Radek Krejci01342af2019-01-03 15:18:08 +0100899 FIND_MODULE(struct lysp_import, mod->parsed);
Radek Krejcibbe09a92018-11-08 09:36:54 +0100900 }
901 return (struct lys_module*)m;
902}
903
Radek Krejcia3045382018-11-22 14:30:31 +0100904const char *
Radek Krejci693262f2019-04-29 15:23:20 +0200905lys_prefix_find_module(const struct lys_module *mod, const struct lys_module *import)
906{
907 unsigned int u;
908
909 if (import == mod) {
910 return mod->prefix;
911 }
912
913 if (mod->parsed) {
914 LY_ARRAY_FOR(mod->parsed->imports, u) {
915 if (mod->parsed->imports[u].module == import) {
916 return mod->parsed->imports[u].prefix;
917 }
918 }
919 } else {
920 /* we don't have original information about the import's prefix,
921 * so the prefix of the import module itself is returned instead */
922 return import->prefix;
923 }
924
925 return NULL;
926}
927
928const char *
Radek Krejcia3045382018-11-22 14:30:31 +0100929lys_nodetype2str(uint16_t nodetype)
930{
931 switch(nodetype) {
932 case LYS_CONTAINER:
933 return "container";
934 case LYS_CHOICE:
935 return "choice";
936 case LYS_LEAF:
937 return "leaf";
938 case LYS_LEAFLIST:
939 return "leaf-list";
940 case LYS_LIST:
941 return "list";
942 case LYS_ANYXML:
943 return "anyxml";
944 case LYS_ANYDATA:
945 return "anydata";
Radek Krejcif12a1f02019-02-11 16:42:08 +0100946 case LYS_CASE:
947 return "case";
Radek Krejcif538ce52019-03-05 10:46:14 +0100948 case LYS_ACTION:
949 return "RPC/action";
950 case LYS_NOTIF:
951 return "Notification";
Radek Krejcifc81ea82019-04-18 13:27:22 +0200952 case LYS_USES:
953 return "uses";
Radek Krejcia3045382018-11-22 14:30:31 +0100954 default:
955 return "unknown";
956 }
957}
958
Radek Krejci693262f2019-04-29 15:23:20 +0200959const char *
960lys_datatype2str(LY_DATA_TYPE basetype)
961{
962 switch(basetype) {
963 case LY_TYPE_BINARY:
964 return "binary";
965 case LY_TYPE_UINT8:
966 return "uint8";
967 case LY_TYPE_UINT16:
968 return "uint16";
969 case LY_TYPE_UINT32:
970 return "uint32";
971 case LY_TYPE_UINT64:
972 return "uint64";
973 case LY_TYPE_STRING:
974 return "string";
975 case LY_TYPE_BITS:
976 return "bits";
977 case LY_TYPE_BOOL:
978 return "boolean";
979 case LY_TYPE_DEC64:
980 return "decimal64";
981 case LY_TYPE_EMPTY:
982 return "empty";
983 case LY_TYPE_ENUM:
984 return "enumeration";
985 case LY_TYPE_IDENT:
986 return "identityref";
987 case LY_TYPE_INST:
988 return "instance-identifier";
989 case LY_TYPE_LEAFREF:
990 return "leafref";
991 case LY_TYPE_UNION:
992 return "union";
993 case LY_TYPE_INT8:
994 return "int8";
995 case LY_TYPE_INT16:
996 return "int16";
997 case LY_TYPE_INT32:
998 return "int32";
999 case LY_TYPE_INT64:
1000 return "int64";
1001 default:
1002 return "unknown";
1003 }
1004}
1005
Radek Krejci056d0a82018-12-06 16:57:25 +01001006API const struct lysp_tpdf *
1007lysp_node_typedefs(const struct lysp_node *node)
1008{
Radek Krejci0fb28562018-12-13 15:17:37 +01001009 switch (node->nodetype) {
1010 case LYS_CONTAINER:
1011 return ((struct lysp_node_container*)node)->typedefs;
1012 case LYS_LIST:
1013 return ((struct lysp_node_list*)node)->typedefs;
1014 case LYS_GROUPING:
1015 return ((struct lysp_grp*)node)->typedefs;
1016 case LYS_ACTION:
1017 return ((struct lysp_action*)node)->typedefs;
1018 case LYS_INOUT:
1019 return ((struct lysp_action_inout*)node)->typedefs;
1020 case LYS_NOTIF:
1021 return ((struct lysp_notif*)node)->typedefs;
1022 default:
Radek Krejci056d0a82018-12-06 16:57:25 +01001023 return NULL;
1024 }
1025}
1026
Radek Krejci53ea6152018-12-13 15:21:15 +01001027API const struct lysp_grp *
1028lysp_node_groupings(const struct lysp_node *node)
1029{
1030 switch (node->nodetype) {
1031 case LYS_CONTAINER:
1032 return ((struct lysp_node_container*)node)->groupings;
1033 case LYS_LIST:
1034 return ((struct lysp_node_list*)node)->groupings;
1035 case LYS_GROUPING:
1036 return ((struct lysp_grp*)node)->groupings;
1037 case LYS_ACTION:
1038 return ((struct lysp_action*)node)->groupings;
1039 case LYS_INOUT:
1040 return ((struct lysp_action_inout*)node)->groupings;
1041 case LYS_NOTIF:
1042 return ((struct lysp_notif*)node)->groupings;
1043 default:
1044 return NULL;
1045 }
1046}
1047
Radek Krejcibbe09a92018-11-08 09:36:54 +01001048struct lysp_action **
Radek Krejci056d0a82018-12-06 16:57:25 +01001049lysp_node_actions_p(struct lysp_node *node)
Radek Krejcibbe09a92018-11-08 09:36:54 +01001050{
1051 assert(node);
1052 switch (node->nodetype) {
1053 case LYS_CONTAINER:
1054 return &((struct lysp_node_container*)node)->actions;
1055 case LYS_LIST:
1056 return &((struct lysp_node_list*)node)->actions;
1057 case LYS_GROUPING:
1058 return &((struct lysp_grp*)node)->actions;
1059 case LYS_AUGMENT:
1060 return &((struct lysp_augment*)node)->actions;
1061 default:
1062 return NULL;
1063 }
1064}
1065
Radek Krejci056d0a82018-12-06 16:57:25 +01001066API const struct lysp_action *
1067lysp_node_actions(const struct lysp_node *node)
1068{
1069 struct lysp_action **actions;
1070 actions = lysp_node_actions_p((struct lysp_node*)node);
1071 if (actions) {
1072 return *actions;
1073 } else {
1074 return NULL;
1075 }
1076}
1077
Radek Krejcibbe09a92018-11-08 09:36:54 +01001078struct lysp_notif **
Radek Krejci056d0a82018-12-06 16:57:25 +01001079lysp_node_notifs_p(struct lysp_node *node)
Radek Krejcibbe09a92018-11-08 09:36:54 +01001080{
1081 assert(node);
1082 switch (node->nodetype) {
1083 case LYS_CONTAINER:
1084 return &((struct lysp_node_container*)node)->notifs;
1085 case LYS_LIST:
1086 return &((struct lysp_node_list*)node)->notifs;
1087 case LYS_GROUPING:
1088 return &((struct lysp_grp*)node)->notifs;
1089 case LYS_AUGMENT:
1090 return &((struct lysp_augment*)node)->notifs;
1091 default:
1092 return NULL;
1093 }
1094}
1095
Radek Krejci056d0a82018-12-06 16:57:25 +01001096API const struct lysp_notif *
1097lysp_node_notifs(const struct lysp_node *node)
1098{
1099 struct lysp_notif **notifs;
1100 notifs = lysp_node_notifs_p((struct lysp_node*)node);
1101 if (notifs) {
1102 return *notifs;
1103 } else {
1104 return NULL;
1105 }
1106}
1107
Radek Krejcibbe09a92018-11-08 09:36:54 +01001108struct lysp_node **
Radek Krejci056d0a82018-12-06 16:57:25 +01001109lysp_node_children_p(struct lysp_node *node)
Radek Krejcibbe09a92018-11-08 09:36:54 +01001110{
1111 assert(node);
1112 switch (node->nodetype) {
1113 case LYS_CONTAINER:
1114 return &((struct lysp_node_container*)node)->child;
1115 case LYS_CHOICE:
1116 return &((struct lysp_node_choice*)node)->child;
1117 case LYS_LIST:
1118 return &((struct lysp_node_list*)node)->child;
1119 case LYS_CASE:
1120 return &((struct lysp_node_case*)node)->child;
1121 case LYS_GROUPING:
1122 return &((struct lysp_grp*)node)->data;
1123 case LYS_AUGMENT:
1124 return &((struct lysp_augment*)node)->child;
1125 case LYS_INOUT:
1126 return &((struct lysp_action_inout*)node)->data;
1127 case LYS_NOTIF:
1128 return &((struct lysp_notif*)node)->data;
1129 default:
1130 return NULL;
1131 }
1132}
1133
Radek Krejci056d0a82018-12-06 16:57:25 +01001134API const struct lysp_node *
1135lysp_node_children(const struct lysp_node *node)
1136{
1137 struct lysp_node **children;
Radek Krejcie7b95092019-05-15 11:03:07 +02001138
1139 if (!node) {
1140 return NULL;
1141 }
1142
Radek Krejci056d0a82018-12-06 16:57:25 +01001143 children = lysp_node_children_p((struct lysp_node*)node);
1144 if (children) {
1145 return *children;
1146 } else {
1147 return NULL;
1148 }
1149}
1150
1151struct lysc_action **
1152lysc_node_actions_p(struct lysc_node *node)
1153{
1154 assert(node);
1155 switch (node->nodetype) {
1156 case LYS_CONTAINER:
1157 return &((struct lysc_node_container*)node)->actions;
1158 case LYS_LIST:
1159 return &((struct lysc_node_list*)node)->actions;
1160 default:
1161 return NULL;
1162 }
1163}
1164
1165API const struct lysc_action *
1166lysc_node_actions(const struct lysc_node *node)
1167{
1168 struct lysc_action **actions;
1169 actions = lysc_node_actions_p((struct lysc_node*)node);
1170 if (actions) {
1171 return *actions;
1172 } else {
1173 return NULL;
1174 }
1175}
1176
1177struct lysc_notif **
1178lysc_node_notifs_p(struct lysc_node *node)
1179{
1180 assert(node);
1181 switch (node->nodetype) {
1182 case LYS_CONTAINER:
1183 return &((struct lysc_node_container*)node)->notifs;
1184 case LYS_LIST:
1185 return &((struct lysc_node_list*)node)->notifs;
1186 default:
1187 return NULL;
1188 }
1189}
1190
1191API const struct lysc_notif *
1192lysc_node_notifs(const struct lysc_node *node)
1193{
1194 struct lysc_notif **notifs;
1195 notifs = lysc_node_notifs_p((struct lysc_node*)node);
1196 if (notifs) {
1197 return *notifs;
1198 } else {
1199 return NULL;
1200 }
1201}
1202
Radek Krejcibbe09a92018-11-08 09:36:54 +01001203struct lysc_node **
Radek Krejci6eeb58f2019-02-22 16:29:37 +01001204lysc_node_children_p(const struct lysc_node *node, uint16_t flags)
Radek Krejcibbe09a92018-11-08 09:36:54 +01001205{
1206 assert(node);
1207 switch (node->nodetype) {
1208 case LYS_CONTAINER:
1209 return &((struct lysc_node_container*)node)->child;
1210 case LYS_CHOICE:
Radek Krejcia3045382018-11-22 14:30:31 +01001211 if (((struct lysc_node_choice*)node)->cases) {
Radek Krejci95710c92019-02-11 15:49:55 +01001212 return &((struct lysc_node_choice*)node)->cases->child;
Radek Krejcia3045382018-11-22 14:30:31 +01001213 } else {
1214 return NULL;
1215 }
Radek Krejci01342af2019-01-03 15:18:08 +01001216 case LYS_CASE:
1217 return &((struct lysc_node_case*)node)->child;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001218 case LYS_LIST:
1219 return &((struct lysc_node_list*)node)->child;
Radek Krejci6eeb58f2019-02-22 16:29:37 +01001220 case LYS_ACTION:
1221 if (flags & LYS_CONFIG_R) {
1222 return &((struct lysc_action*)node)->output.data;
1223 } else {
1224 /* LYS_CONFIG_W, but also the default case */
1225 return &((struct lysc_action*)node)->input.data;
1226 }
Radek Krejcifc11bd72019-04-11 16:00:05 +02001227 case LYS_NOTIF:
1228 return &((struct lysc_notif*)node)->data;
Radek Krejcibbe09a92018-11-08 09:36:54 +01001229 default:
1230 return NULL;
1231 }
1232}
1233
Radek Krejci056d0a82018-12-06 16:57:25 +01001234API const struct lysc_node *
Radek Krejci6eeb58f2019-02-22 16:29:37 +01001235lysc_node_children(const struct lysc_node *node, uint16_t flags)
Radek Krejcia3045382018-11-22 14:30:31 +01001236{
Radek Krejci056d0a82018-12-06 16:57:25 +01001237 struct lysc_node **children;
Radek Krejcie7b95092019-05-15 11:03:07 +02001238
1239 if (!node) {
1240 return NULL;
1241 }
1242
Radek Krejci6eeb58f2019-02-22 16:29:37 +01001243 children = lysc_node_children_p((struct lysc_node*)node, flags);
Radek Krejci056d0a82018-12-06 16:57:25 +01001244 if (children) {
1245 return *children;
1246 } else {
Radek Krejcia3045382018-11-22 14:30:31 +01001247 return NULL;
1248 }
1249}
1250
Radek Krejci96a0bfd2018-11-22 15:25:06 +01001251struct lys_module *
1252lysp_find_module(struct ly_ctx *ctx, const struct lysp_module *mod)
1253{
1254 unsigned int u;
1255
1256 for (u = 0; u < ctx->list.count; ++u) {
1257 if (((struct lys_module*)ctx->list.objs[u])->parsed == mod) {
1258 return ((struct lys_module*)ctx->list.objs[u]);
1259 }
1260 }
1261 return NULL;
1262}
1263
Radek Krejcid3ca0632019-04-16 16:54:54 +02001264unsigned int
1265lysp_ext_instance_iter(struct lysp_ext_instance *ext, unsigned int index, LYEXT_SUBSTMT substmt)
1266{
1267 LY_CHECK_ARG_RET(NULL, ext, LY_EINVAL);
1268
1269 for (; index < LY_ARRAY_SIZE(ext); index++) {
1270 if (ext[index].insubstmt == substmt) {
1271 return index;
1272 }
1273 }
1274
1275 return LY_ARRAY_SIZE(ext);
1276}
1277
Radek Krejcia1911222019-07-22 17:24:50 +02001278/**
1279 * @brief Schema mapping of YANG modules to prefixes in values.
1280 *
1281 * Implementation of ly_clb_get_prefix. Inverse function to lys_resolve_prefix.
1282 *
1283 * In this case the @p mod is searched in the list of imports and the import's prefix
1284 * (not the module's itself) prefix is returned.
1285 */
1286const char *
1287lys_get_prefix(const struct lys_module *mod, void *private)
1288{
1289 struct lys_module *context_mod = (struct lys_module*)private;
1290 unsigned int u;
Radek Krejcid3ca0632019-04-16 16:54:54 +02001291
Radek Krejcia1911222019-07-22 17:24:50 +02001292 LY_ARRAY_FOR(context_mod->compiled->imports, u) {
1293 if (context_mod->compiled->imports[u].module == mod) {
1294 /* match */
1295 return mod->compiled->imports[u].prefix;
1296 }
1297 }
1298
1299 return NULL;
1300}
1301
1302/**
1303 * @brief Schema mapping of prefix in values to YANG modules (imports).
1304 *
1305 * Implementation of ly_clb_resolve_prefix. Inverse function to lys_get_prefix().
1306 *
1307 * In this case the @p prefix is searched in the list of imports' prefixes (not the prefixes of the imported modules themselves).
1308 */
1309const struct lys_module *
1310lys_resolve_prefix(struct ly_ctx *UNUSED(ctx), const char *prefix, size_t prefix_len, void *private)
1311{
1312 return lys_module_find_prefix((const struct lys_module*)private, prefix, prefix_len);
1313}