Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 1 | /** |
| 2 | * @file tree_schema_helpers.c |
| 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 4 | * @brief Parsing and validation helper functions for schema trees |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 5 | * |
| 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 Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 14 | #include "common.h" |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 15 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 16 | #include <assert.h> |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 17 | #include <ctype.h> |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 18 | #include <errno.h> |
| 19 | #include <fcntl.h> |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 20 | #include <limits.h> |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 21 | #include <stdint.h> |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 22 | #include <stdlib.h> |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 23 | #include <string.h> |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 24 | #include <unistd.h> |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 25 | #include <time.h> |
| 26 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 27 | #include "context.h" |
| 28 | #include "dict.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 29 | #include "hash_table.h" |
| 30 | #include "log.h" |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 31 | #include "plugins_exts.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 32 | #include "set.h" |
| 33 | #include "tree.h" |
| 34 | #include "tree_schema.h" |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 35 | #include "tree_schema_internal.h" |
| 36 | |
Radek Krejci | 8574795 | 2019-06-07 16:43:43 +0200 | [diff] [blame] | 37 | LY_ERR |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 38 | lys_resolve_schema_nodeid(struct lysc_ctx *ctx, const char *nodeid, size_t nodeid_len, const struct lysc_node *context_node, |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 39 | const struct lys_module *context_module, int nodetype, int implement, |
| 40 | const struct lysc_node **target, uint16_t *result_flag) |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 41 | { |
| 42 | LY_ERR ret = LY_EVALID; |
| 43 | const char *name, *prefix, *id; |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 44 | size_t name_len, prefix_len; |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 45 | const struct lys_module *mod; |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 46 | const char *nodeid_type; |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 47 | int getnext_extra_flag = 0; |
Radek Krejci | 05b774b | 2019-02-25 13:26:18 +0100 | [diff] [blame] | 48 | int current_nodetype = 0; |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 49 | |
| 50 | assert(nodeid); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 51 | assert(target); |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 52 | assert(result_flag); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 53 | *target = NULL; |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 54 | *result_flag = 0; |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 55 | |
| 56 | id = nodeid; |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 57 | |
| 58 | if (context_node) { |
| 59 | /* descendant-schema-nodeid */ |
| 60 | nodeid_type = "descendant"; |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 61 | |
| 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 Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 68 | } else { |
| 69 | /* absolute-schema-nodeid */ |
| 70 | nodeid_type = "absolute"; |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 71 | |
| 72 | if (*id != '/') { |
| 73 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 74 | "Invalid absolute-schema-nodeid value \"%.*s\" - missing starting \"/\".", |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 75 | nodeid_len ? nodeid_len : strlen(nodeid), nodeid); |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 76 | return LY_EVALID; |
| 77 | } |
| 78 | ++id; |
| 79 | } |
| 80 | |
Radek Krejci | b4a4a27 | 2019-06-10 12:44:52 +0200 | [diff] [blame] | 81 | while (*id && (ret = ly_parse_nodeid(&id, &prefix, &prefix_len, &name, &name_len)) == LY_SUCCESS) { |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 82 | if (prefix) { |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 83 | mod = lys_module_find_prefix(context_module, prefix, prefix_len); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 84 | if (!mod) { |
| 85 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 86 | "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 Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 88 | return LY_ENOTFOUND; |
| 89 | } |
| 90 | } else { |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 91 | mod = context_module; |
| 92 | } |
| 93 | if (implement && !mod->implemented) { |
| 94 | /* make the module implemented */ |
Radek Krejci | 77a8bcd | 2019-09-11 11:20:02 +0200 | [diff] [blame] | 95 | lys_set_implemented_internal((struct lys_module*)mod, 2); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 96 | } |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 97 | if (context_node && context_node->nodetype == LYS_ACTION) { |
| 98 | /* move through input/output manually */ |
Radek Krejci | 7f9b651 | 2019-09-18 13:11:09 +0200 | [diff] [blame] | 99 | if (!ly_strncmp("input", name, name_len)) { |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 100 | (*result_flag) |= LYSC_OPT_RPC_INPUT; |
Radek Krejci | 7f9b651 | 2019-09-18 13:11:09 +0200 | [diff] [blame] | 101 | } else if (!ly_strncmp("output", name, name_len)) { |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 102 | (*result_flag) |= LYSC_OPT_RPC_OUTPUT; |
| 103 | getnext_extra_flag = LYS_GETNEXT_OUTPUT; |
Radek Krejci | 05b774b | 2019-02-25 13:26:18 +0100 | [diff] [blame] | 104 | } else { |
| 105 | goto getnext; |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 106 | } |
Radek Krejci | 05b774b | 2019-02-25 13:26:18 +0100 | [diff] [blame] | 107 | current_nodetype = LYS_INOUT; |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 108 | } else { |
Radek Krejci | 05b774b | 2019-02-25 13:26:18 +0100 | [diff] [blame] | 109 | getnext: |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 110 | 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 Krejci | 05b774b | 2019-02-25 13:26:18 +0100 | [diff] [blame] | 118 | current_nodetype = context_node->nodetype; |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 119 | |
Radek Krejci | 05b774b | 2019-02-25 13:26:18 +0100 | [diff] [blame] | 120 | if (current_nodetype == LYS_NOTIF) { |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 121 | (*result_flag) |= LYSC_OPT_NOTIFICATION; |
| 122 | } |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 123 | } |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 124 | if (!*id || (nodeid_len && ((size_t)(id - nodeid) >= nodeid_len))) { |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 125 | break; |
| 126 | } |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 127 | if (*id != '/') { |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 128 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 129 | "Invalid %s-schema-nodeid value \"%.*s\" - missing \"/\" as node-identifier separator.", |
| 130 | nodeid_type, id - nodeid + 1, nodeid); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 131 | return LY_EVALID; |
| 132 | } |
| 133 | ++id; |
| 134 | } |
| 135 | |
| 136 | if (ret == LY_SUCCESS) { |
Radek Krejci | 7af6424 | 2019-02-18 13:07:53 +0100 | [diff] [blame] | 137 | *target = context_node; |
Radek Krejci | 05b774b | 2019-02-25 13:26:18 +0100 | [diff] [blame] | 138 | 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 Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 142 | return LY_EDENIED; |
| 143 | } |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 144 | } else { |
| 145 | LOGVAL(ctx->ctx, LY_VLOG_STR, ctx->path, LYVE_REFERENCE, |
| 146 | "Invalid %s-schema-nodeid value \"%.*s\" - unexpected end of expression.", |
Radek Krejci | 3641f56 | 2019-02-13 15:38:40 +0100 | [diff] [blame] | 147 | nodeid_type, nodeid_len ? nodeid_len : strlen(nodeid), nodeid); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 148 | } |
| 149 | |
| 150 | return ret; |
| 151 | } |
| 152 | |
| 153 | LY_ERR |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 154 | lysp_check_prefix(struct lys_parser_ctx *ctx, struct lysp_import *imports, const char *module_prefix, const char **value) |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 155 | { |
| 156 | struct lysp_import *i; |
| 157 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 158 | if (module_prefix && &module_prefix != value && !strcmp(module_prefix, *value)) { |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 159 | 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 Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 163 | 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 Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 168 | } |
| 169 | } |
| 170 | return LY_SUCCESS; |
| 171 | } |
| 172 | |
| 173 | LY_ERR |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 174 | lysc_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 | |
| 196 | LY_ERR |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 197 | lysp_check_date(struct lys_parser_ctx *ctx, const char *date, int date_len, const char *stmt) |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 198 | { |
| 199 | int i; |
| 200 | struct tm tm, tm_; |
| 201 | char *r; |
| 202 | |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 203 | 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 Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 205 | |
| 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 | |
| 233 | error: |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 234 | if (stmt) { |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 235 | 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 Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 240 | } |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 241 | return LY_EINVAL; |
| 242 | } |
| 243 | |
| 244 | void |
| 245 | lysp_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 Krejci | b7db73a | 2018-10-24 14:18:40 +0200 | [diff] [blame] | 251 | if (strcmp(revs[i].date, revs[r].date) > 0) { |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 252 | r = i; |
| 253 | } |
| 254 | } |
| 255 | |
| 256 | if (r) { |
| 257 | /* the newest revision is not on position 0, switch them */ |
Radek Krejci | 2c4e717 | 2018-10-19 15:56:26 +0200 | [diff] [blame] | 258 | memcpy(&rev, &revs[0], sizeof rev); |
| 259 | memcpy(&revs[0], &revs[r], sizeof rev); |
| 260 | memcpy(&revs[r], &rev, sizeof rev); |
Radek Krejci | 86d106e | 2018-10-18 09:53:19 +0200 | [diff] [blame] | 261 | } |
| 262 | } |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 263 | |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 264 | static const struct lysp_tpdf * |
| 265 | lysp_type_match(const char *name, struct lysp_node *node) |
| 266 | { |
Radek Krejci | 0fb2856 | 2018-12-13 15:17:37 +0100 | [diff] [blame] | 267 | const struct lysp_tpdf *typedefs; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 268 | unsigned int u; |
| 269 | |
Radek Krejci | 0fb2856 | 2018-12-13 15:17:37 +0100 | [diff] [blame] | 270 | 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 Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 275 | } |
| 276 | } |
| 277 | |
| 278 | return NULL; |
| 279 | } |
| 280 | |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 281 | static LY_DATA_TYPE |
| 282 | lysp_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 Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 355 | LY_ERR |
| 356 | lysp_type_find(const char *id, struct lysp_node *start_node, struct lysp_module *start_module, |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 357 | LY_DATA_TYPE *type, const struct lysp_tpdf **tpdf, struct lysp_node **node, struct lysp_module **module) |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 358 | { |
| 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 Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 369 | *node = NULL; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 370 | str = strchr(id, ':'); |
| 371 | if (str) { |
| 372 | *module = lysp_module_find_prefix(start_module, id, str - id); |
| 373 | name = str + 1; |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 374 | *type = LY_TYPE_UNKNOWN; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 375 | } else { |
| 376 | *module = start_module; |
| 377 | name = id; |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 378 | |
| 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 Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 385 | } |
| 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 Krejci | 76b3e96 | 2018-12-14 17:01:25 +0100 | [diff] [blame] | 415 | LY_ARRAY_FOR(typedefs, v) { |
| 416 | if (!strcmp(name, typedefs[v].name)) { |
| 417 | /* match */ |
| 418 | *tpdf = &typedefs[v]; |
| 419 | return LY_SUCCESS; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 420 | } |
| 421 | } |
| 422 | } |
| 423 | |
| 424 | return LY_ENOTFOUND; |
| 425 | } |
| 426 | |
David Sedlák | 6544c18 | 2019-07-12 13:17:33 +0200 | [diff] [blame] | 427 | LY_ERR |
David Sedlák | 07869a5 | 2019-07-12 14:28:19 +0200 | [diff] [blame] | 428 | lysp_check_enum_name(struct lys_parser_ctx *ctx, const char *name, size_t name_len) |
David Sedlák | 6544c18 | 2019-07-12 13:17:33 +0200 | [diff] [blame] | 429 | { |
| 430 | if (!name_len) { |
| 431 | LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Enum name must not be zero-length."); |
| 432 | return LY_EVALID; |
| 433 | } else if (isspace(name[0]) || isspace(name[name_len - 1])) { |
| 434 | LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Enum name must not have any leading or trailing whitespaces (\"%.*s\").", |
| 435 | name_len, name); |
| 436 | return LY_EVALID; |
| 437 | } else { |
| 438 | for (size_t u = 0; u < name_len; ++u) { |
| 439 | if (iscntrl(name[u])) { |
| 440 | LOGWRN(ctx->ctx, "Control characters in enum name should be avoided (\"%.*s\", character number %d).", |
| 441 | name_len, name, u + 1); |
| 442 | break; |
| 443 | } |
| 444 | } |
| 445 | } |
| 446 | |
| 447 | return LY_SUCCESS; |
| 448 | } |
| 449 | |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 450 | /* |
| 451 | * @brief Check name of a new type to avoid name collisions. |
| 452 | * |
| 453 | * @param[in] ctx Parser context, module where the type is being defined is taken from here. |
| 454 | * @param[in] node Schema node where the type is being defined, NULL in case of a top-level typedef. |
| 455 | * @param[in] tpdf Typedef definition to check. |
| 456 | * @param[in,out] tpdfs_global Initialized hash table to store temporary data between calls. When the module's |
| 457 | * typedefs are checked, caller is supposed to free the table. |
| 458 | * @param[in,out] tpdfs_global Initialized hash table to store temporary data between calls. When the module's |
| 459 | * typedefs are checked, caller is supposed to free the table. |
| 460 | * @return LY_EEXIST in case of collision, LY_SUCCESS otherwise. |
| 461 | */ |
| 462 | static LY_ERR |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 463 | lysp_check_typedef(struct lys_parser_ctx *ctx, struct lysp_node *node, const struct lysp_tpdf *tpdf, |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 464 | struct hash_table *tpdfs_global, struct hash_table *tpdfs_scoped) |
| 465 | { |
| 466 | struct lysp_node *parent; |
| 467 | uint32_t hash; |
| 468 | size_t name_len; |
| 469 | const char *name; |
| 470 | unsigned int u; |
Radek Krejci | 0fb2856 | 2018-12-13 15:17:37 +0100 | [diff] [blame] | 471 | const struct lysp_tpdf *typedefs; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 472 | |
| 473 | assert(ctx); |
| 474 | assert(tpdf); |
| 475 | |
| 476 | name = tpdf->name; |
| 477 | name_len = strlen(name); |
| 478 | |
Radek Krejci | 4f28eda | 2018-11-12 11:46:16 +0100 | [diff] [blame] | 479 | if (lysp_type_str2builtin(name, name_len)) { |
| 480 | LOGVAL(ctx->ctx, LY_VLOG_LINE, &ctx->line, LYVE_SYNTAX_YANG, |
| 481 | "Invalid name \"%s\" of typedef - name collision with a built-in type.", name); |
| 482 | return LY_EEXIST; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 483 | } |
| 484 | |
| 485 | /* check locally scoped typedefs (avoid name shadowing) */ |
| 486 | if (node) { |
Radek Krejci | 0fb2856 | 2018-12-13 15:17:37 +0100 | [diff] [blame] | 487 | typedefs = lysp_node_typedefs(node); |
| 488 | LY_ARRAY_FOR(typedefs, u) { |
| 489 | if (&typedefs[u] == tpdf) { |
| 490 | break; |
| 491 | } |
| 492 | if (!strcmp(name, typedefs[u].name)) { |
| 493 | LOGVAL(ctx->ctx, LY_VLOG_LINE, &ctx->line, LYVE_SYNTAX_YANG, |
| 494 | "Invalid name \"%s\" of typedef - name collision with sibling type.", name); |
| 495 | return LY_EEXIST; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 496 | } |
| 497 | } |
| 498 | /* search typedefs in parent's nodes */ |
Radek Krejci | 87e78ca | 2019-05-02 09:51:29 +0200 | [diff] [blame] | 499 | for (parent = node->parent; parent; parent = parent->parent) { |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 500 | if (lysp_type_match(name, parent)) { |
| 501 | LOGVAL(ctx->ctx, LY_VLOG_LINE, &ctx->line, LYVE_SYNTAX_YANG, |
| 502 | "Invalid name \"%s\" of typedef - name collision with another scoped type.", name); |
| 503 | return LY_EEXIST; |
| 504 | } |
| 505 | } |
| 506 | } |
| 507 | |
| 508 | /* check collision with the top-level typedefs */ |
| 509 | hash = dict_hash(name, name_len); |
| 510 | if (node) { |
| 511 | lyht_insert(tpdfs_scoped, &name, hash, NULL); |
| 512 | if (!lyht_find(tpdfs_global, &name, hash, NULL)) { |
| 513 | LOGVAL(ctx->ctx, LY_VLOG_LINE, &ctx->line, LYVE_SYNTAX_YANG, |
| 514 | "Invalid name \"%s\" of typedef - scoped type collide with a top-level type.", name); |
| 515 | return LY_EEXIST; |
| 516 | } |
| 517 | } else { |
| 518 | if (lyht_insert(tpdfs_global, &name, hash, NULL)) { |
| 519 | LOGVAL(ctx->ctx, LY_VLOG_LINE, &ctx->line, LYVE_SYNTAX_YANG, |
| 520 | "Invalid name \"%s\" of typedef - name collision with another top-level type.", name); |
| 521 | return LY_EEXIST; |
| 522 | } |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 523 | /* it is not necessary to test collision with the scoped types - in lysp_check_typedefs, all the |
| 524 | * top-level typedefs are inserted into the tables before the scoped typedefs, so the collision |
| 525 | * is detected in the first branch few lines above */ |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 526 | } |
| 527 | |
| 528 | return LY_SUCCESS; |
| 529 | } |
| 530 | |
| 531 | static int |
| 532 | lysp_id_cmp(void *val1, void *val2, int UNUSED(mod), void *UNUSED(cb_data)) |
| 533 | { |
| 534 | return !strcmp(val1, val2); |
| 535 | } |
| 536 | |
| 537 | LY_ERR |
David Sedlák | d2ebe57 | 2019-07-22 12:53:14 +0200 | [diff] [blame] | 538 | lysp_parse_finalize_reallocated(struct lys_parser_ctx *ctx, struct lysp_grp *groupings, struct lysp_augment *augments, |
| 539 | struct lysp_action *actions, struct lysp_notif *notifs) |
| 540 | { |
| 541 | unsigned int u, v; |
| 542 | struct lysp_node *child; |
| 543 | |
| 544 | /* finalize parent pointers to the reallocated items */ |
| 545 | |
| 546 | /* gropings */ |
| 547 | LY_ARRAY_FOR(groupings, u) { |
| 548 | LY_LIST_FOR(groupings[u].data, child) { |
| 549 | child->parent = (struct lysp_node*)&groupings[u]; |
| 550 | } |
| 551 | LY_ARRAY_FOR(groupings[u].actions, v) { |
| 552 | groupings[u].actions[v].parent = (struct lysp_node*)&groupings[u]; |
| 553 | } |
| 554 | LY_ARRAY_FOR(groupings[u].notifs, v) { |
| 555 | groupings[u].notifs[v].parent = (struct lysp_node*)&groupings[u]; |
| 556 | } |
| 557 | LY_ARRAY_FOR(groupings[u].groupings, v) { |
| 558 | groupings[u].groupings[v].parent = (struct lysp_node*)&groupings[u]; |
| 559 | } |
| 560 | if (groupings[u].typedefs) { |
| 561 | ly_set_add(&ctx->tpdfs_nodes, &groupings[u], 0); |
| 562 | } |
| 563 | } |
| 564 | |
| 565 | /* augments */ |
| 566 | LY_ARRAY_FOR(augments, u) { |
| 567 | LY_LIST_FOR(augments[u].child, child) { |
| 568 | child->parent = (struct lysp_node*)&augments[u]; |
| 569 | } |
| 570 | LY_ARRAY_FOR(augments[u].actions, v) { |
| 571 | augments[u].actions[v].parent = (struct lysp_node*)&augments[u]; |
| 572 | } |
| 573 | LY_ARRAY_FOR(augments[u].notifs, v) { |
| 574 | augments[u].notifs[v].parent = (struct lysp_node*)&augments[u]; |
| 575 | } |
| 576 | } |
| 577 | |
| 578 | /* actions */ |
| 579 | LY_ARRAY_FOR(actions, u) { |
| 580 | if (actions[u].input.parent) { |
| 581 | actions[u].input.parent = (struct lysp_node*)&actions[u]; |
| 582 | LY_LIST_FOR(actions[u].input.data, child) { |
| 583 | child->parent = (struct lysp_node*)&actions[u].input; |
| 584 | } |
| 585 | LY_ARRAY_FOR(actions[u].input.groupings, v) { |
| 586 | actions[u].input.groupings[v].parent = (struct lysp_node*)&actions[u].input; |
| 587 | } |
| 588 | if (actions[u].input.typedefs) { |
| 589 | ly_set_add(&ctx->tpdfs_nodes, &actions[u].input, 0); |
| 590 | } |
| 591 | } |
| 592 | if (actions[u].output.parent) { |
| 593 | actions[u].output.parent = (struct lysp_node*)&actions[u]; |
| 594 | LY_LIST_FOR(actions[u].output.data, child) { |
| 595 | child->parent = (struct lysp_node*)&actions[u].output; |
| 596 | } |
| 597 | LY_ARRAY_FOR(actions[u].output.groupings, v) { |
| 598 | actions[u].output.groupings[v].parent = (struct lysp_node*)&actions[u].output; |
| 599 | } |
| 600 | if (actions[u].output.typedefs) { |
| 601 | ly_set_add(&ctx->tpdfs_nodes, &actions[u].output, 0); |
| 602 | } |
| 603 | } |
| 604 | LY_ARRAY_FOR(actions[u].groupings, v) { |
| 605 | actions[u].groupings[v].parent = (struct lysp_node*)&actions[u]; |
| 606 | } |
| 607 | if (actions[u].typedefs) { |
| 608 | ly_set_add(&ctx->tpdfs_nodes, &actions[u], 0); |
| 609 | } |
| 610 | } |
| 611 | |
| 612 | /* notifications */ |
| 613 | LY_ARRAY_FOR(notifs, u) { |
| 614 | LY_LIST_FOR(notifs[u].data, child) { |
| 615 | child->parent = (struct lysp_node*)¬ifs[u]; |
| 616 | } |
| 617 | LY_ARRAY_FOR(notifs[u].groupings, v) { |
| 618 | notifs[u].groupings[v].parent = (struct lysp_node*)¬ifs[u]; |
| 619 | } |
| 620 | if (notifs[u].typedefs) { |
| 621 | ly_set_add(&ctx->tpdfs_nodes, ¬ifs[u], 0); |
| 622 | } |
| 623 | } |
| 624 | |
| 625 | return LY_SUCCESS; |
| 626 | } |
| 627 | |
| 628 | LY_ERR |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 629 | lysp_check_typedefs(struct lys_parser_ctx *ctx, struct lysp_module *mod) |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 630 | { |
| 631 | struct hash_table *ids_global; |
| 632 | struct hash_table *ids_scoped; |
Radek Krejci | 0fb2856 | 2018-12-13 15:17:37 +0100 | [diff] [blame] | 633 | const struct lysp_tpdf *typedefs; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 634 | unsigned int i, u; |
| 635 | LY_ERR ret = LY_EVALID; |
| 636 | |
| 637 | /* check name collisions - typedefs and groupings */ |
| 638 | ids_global = lyht_new(8, sizeof(char*), lysp_id_cmp, NULL, 1); |
| 639 | ids_scoped = lyht_new(8, sizeof(char*), lysp_id_cmp, NULL, 1); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 640 | LY_ARRAY_FOR(mod->typedefs, i) { |
| 641 | if (lysp_check_typedef(ctx, NULL, &mod->typedefs[i], ids_global, ids_scoped)) { |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 642 | goto cleanup; |
| 643 | } |
| 644 | } |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 645 | LY_ARRAY_FOR(mod->includes, i) { |
| 646 | LY_ARRAY_FOR(mod->includes[i].submodule->typedefs, u) { |
| 647 | if (lysp_check_typedef(ctx, NULL, &mod->includes[i].submodule->typedefs[u], ids_global, ids_scoped)) { |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 648 | goto cleanup; |
| 649 | } |
| 650 | } |
| 651 | } |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 652 | for (u = 0; u < ctx->tpdfs_nodes.count; ++u) { |
Radek Krejci | 0fb2856 | 2018-12-13 15:17:37 +0100 | [diff] [blame] | 653 | typedefs = lysp_node_typedefs((struct lysp_node *)ctx->tpdfs_nodes.objs[u]); |
| 654 | LY_ARRAY_FOR(typedefs, i) { |
| 655 | if (lysp_check_typedef(ctx, (struct lysp_node *)ctx->tpdfs_nodes.objs[u], &typedefs[i], ids_global, ids_scoped)) { |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 656 | goto cleanup; |
| 657 | } |
| 658 | } |
| 659 | } |
| 660 | ret = LY_SUCCESS; |
| 661 | cleanup: |
| 662 | lyht_free(ids_global); |
| 663 | lyht_free(ids_scoped); |
| 664 | ly_set_erase(&ctx->tpdfs_nodes, NULL); |
| 665 | |
| 666 | return ret; |
| 667 | } |
| 668 | |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 669 | struct lysp_load_module_check_data { |
| 670 | const char *name; |
| 671 | const char *revision; |
| 672 | const char *path; |
| 673 | const char* submoduleof; |
| 674 | }; |
| 675 | |
| 676 | static LY_ERR |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 677 | lysp_load_module_check(struct ly_ctx *ctx, struct lysp_module *mod, struct lysp_submodule *submod, void *data) |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 678 | { |
| 679 | struct lysp_load_module_check_data *info = data; |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 680 | const char *filename, *dot, *rev, *name; |
Radek Krejci | b3289d6 | 2019-09-18 12:21:39 +0200 | [diff] [blame] | 681 | uint8_t latest_revision; |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 682 | size_t len; |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 683 | struct lysp_revision *revs; |
| 684 | |
| 685 | name = mod ? mod->mod->name : submod->name; |
| 686 | revs = mod ? mod->revs : submod->revs; |
Radek Krejci | b3289d6 | 2019-09-18 12:21:39 +0200 | [diff] [blame] | 687 | latest_revision = mod ? mod->mod->latest_revision : submod->latest_revision; |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 688 | |
| 689 | if (info->name) { |
| 690 | /* check name of the parsed model */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 691 | if (strcmp(info->name, name)) { |
| 692 | LOGERR(ctx, LY_EINVAL, "Unexpected module \"%s\" parsed instead of \"%s\").", name, info->name); |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 693 | return LY_EINVAL; |
| 694 | } |
| 695 | } |
| 696 | if (info->revision) { |
| 697 | /* check revision of the parsed model */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 698 | if (!revs || strcmp(info->revision, revs[0].date)) { |
| 699 | LOGERR(ctx, LY_EINVAL, "Module \"%s\" parsed with the wrong revision (\"%s\" instead \"%s\").", name, |
Radek Krejci | b07b5c9 | 2019-04-08 10:56:37 +0200 | [diff] [blame] | 700 | revs ? revs[0].date : "none", info->revision); |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 701 | return LY_EINVAL; |
| 702 | } |
Radek Krejci | b3289d6 | 2019-09-18 12:21:39 +0200 | [diff] [blame] | 703 | } else if (!latest_revision) { |
| 704 | /* do not log, we just need to drop the schema and use the latest revision from the context */ |
| 705 | return LY_EEXIST; |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 706 | } |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 707 | if (submod) { |
| 708 | assert(info->submoduleof); |
| 709 | |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 710 | /* check that the submodule belongs-to our module */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 711 | if (strcmp(info->submoduleof, submod->belongsto)) { |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 712 | LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE, "Included \"%s\" submodule from \"%s\" belongs-to a different module \"%s\".", |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 713 | submod->name, info->submoduleof, submod->belongsto); |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 714 | return LY_EVALID; |
| 715 | } |
| 716 | /* check circular dependency */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 717 | if (submod->parsing) { |
| 718 | LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE, "A circular dependency (include) for module \"%s\".", submod->name); |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 719 | return LY_EVALID; |
| 720 | } |
| 721 | } |
| 722 | if (info->path) { |
| 723 | /* check that name and revision match filename */ |
| 724 | filename = strrchr(info->path, '/'); |
| 725 | if (!filename) { |
| 726 | filename = info->path; |
| 727 | } else { |
| 728 | filename++; |
| 729 | } |
| 730 | /* name */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 731 | len = strlen(name); |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 732 | rev = strchr(filename, '@'); |
| 733 | dot = strrchr(info->path, '.'); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 734 | if (strncmp(filename, name, len) || |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 735 | ((rev && rev != &filename[len]) || (!rev && dot != &filename[len]))) { |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 736 | LOGWRN(ctx, "File name \"%s\" does not match module name \"%s\".", filename, name); |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 737 | } |
| 738 | /* revision */ |
| 739 | if (rev) { |
| 740 | len = dot - ++rev; |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 741 | if (!revs || len != 10 || strncmp(revs[0].date, rev, len)) { |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 742 | LOGWRN(ctx, "File name \"%s\" does not match module revision \"%s\".", filename, |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 743 | revs ? revs[0].date : "none"); |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 744 | } |
| 745 | } |
| 746 | } |
| 747 | return LY_SUCCESS; |
| 748 | } |
| 749 | |
| 750 | LY_ERR |
fredgan | cd485b8 | 2019-10-18 15:00:17 +0800 | [diff] [blame^] | 751 | lys_module_localfile(struct ly_ctx *ctx, const char *name, const char *revision, int implement, |
| 752 | struct lys_parser_ctx *main_ctx, const char *main_name, void **result) |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 753 | { |
| 754 | int fd; |
| 755 | char *filepath = NULL; |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 756 | const char **fp; |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 757 | LYS_INFORMAT format; |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 758 | void *mod = NULL; |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 759 | LY_ERR ret = LY_SUCCESS; |
| 760 | struct lysp_load_module_check_data check_data = {0}; |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 761 | char rpath[PATH_MAX]; |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 762 | |
| 763 | LY_CHECK_RET(lys_search_localfile(ly_ctx_get_searchdirs(ctx), !(ctx->flags & LY_CTX_DISABLE_SEARCHDIR_CWD), name, revision, |
| 764 | &filepath, &format)); |
| 765 | LY_CHECK_ERR_RET(!filepath, LOGERR(ctx, LY_ENOTFOUND, "Data model \"%s%s%s\" not found in local searchdirs.", |
| 766 | name, revision ? "@" : "", revision ? revision : ""), LY_ENOTFOUND); |
| 767 | |
| 768 | |
| 769 | LOGVRB("Loading schema from \"%s\" file.", filepath); |
| 770 | |
| 771 | /* open the file */ |
| 772 | fd = open(filepath, O_RDONLY); |
| 773 | LY_CHECK_ERR_GOTO(fd < 0, LOGERR(ctx, LY_ESYS, "Unable to open data model file \"%s\" (%s).", |
| 774 | filepath, strerror(errno)); ret = LY_ESYS, cleanup); |
| 775 | |
| 776 | check_data.name = name; |
| 777 | check_data.revision = revision; |
| 778 | check_data.path = filepath; |
fredgan | cd485b8 | 2019-10-18 15:00:17 +0800 | [diff] [blame^] | 779 | check_data.submoduleof = main_name; |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 780 | mod = lys_parse_fd_(ctx, fd, format, implement, main_ctx, |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 781 | lysp_load_module_check, &check_data); |
| 782 | close(fd); |
| 783 | LY_CHECK_ERR_GOTO(!mod, ly_errcode(ctx), cleanup); |
| 784 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 785 | if (main_ctx) { |
| 786 | fp = &((struct lysp_submodule*)mod)->filepath; |
| 787 | } else { |
| 788 | fp = &((struct lys_module*)mod)->filepath; |
| 789 | } |
| 790 | if (!(*fp)) { |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 791 | if (realpath(filepath, rpath) != NULL) { |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 792 | (*fp) = lydict_insert(ctx, rpath, 0); |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 793 | } else { |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 794 | (*fp) = lydict_insert(ctx, filepath, 0); |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 795 | } |
| 796 | } |
| 797 | |
| 798 | *result = mod; |
| 799 | |
| 800 | /* success */ |
| 801 | cleanup: |
| 802 | free(filepath); |
| 803 | return ret; |
| 804 | } |
| 805 | |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 806 | LY_ERR |
Radek Krejci | 6d6e4e4 | 2018-10-29 13:28:19 +0100 | [diff] [blame] | 807 | lysp_load_module(struct ly_ctx *ctx, const char *name, const char *revision, int implement, int require_parsed, struct lys_module **mod) |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 808 | { |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 809 | const char *module_data = NULL; |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 810 | LYS_INFORMAT format = LYS_IN_UNKNOWN; |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 811 | void (*module_data_free)(void *module_data, void *user_data) = NULL; |
| 812 | struct lysp_load_module_check_data check_data = {0}; |
Radek Krejci | b3289d6 | 2019-09-18 12:21:39 +0200 | [diff] [blame] | 813 | struct lys_module *m = NULL; |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 814 | |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 815 | assert(mod); |
| 816 | |
| 817 | if (!*mod) { |
| 818 | /* try to get the module from the context */ |
| 819 | if (revision) { |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 820 | /* get the specific revision */ |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 821 | *mod = (struct lys_module*)ly_ctx_get_module(ctx, name, revision); |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 822 | } else if (implement) { |
| 823 | /* prefer the implemented module instead of the latest one */ |
| 824 | *mod = (struct lys_module*)ly_ctx_get_module_implemented(ctx, name); |
| 825 | if (!*mod) { |
| 826 | /* there is no implemented module in the context, try to get the latest revision module */ |
| 827 | goto latest_in_the_context; |
| 828 | } |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 829 | } else { |
Radek Krejci | ed5acc5 | 2019-04-25 15:57:04 +0200 | [diff] [blame] | 830 | /* get the requested module of the latest revision in the context */ |
| 831 | latest_in_the_context: |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 832 | *mod = (struct lys_module*)ly_ctx_get_module_latest(ctx, name); |
Radek Krejci | b3289d6 | 2019-09-18 12:21:39 +0200 | [diff] [blame] | 833 | if (*mod && (*mod)->latest_revision == 1) { |
| 834 | /* let us now search with callback and searchpaths to check if there is newer revision outside the context */ |
| 835 | m = *mod; |
| 836 | *mod = NULL; |
| 837 | } |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 838 | } |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 839 | } |
| 840 | |
Radek Krejci | 6d6e4e4 | 2018-10-29 13:28:19 +0100 | [diff] [blame] | 841 | if (!(*mod) || (require_parsed && !(*mod)->parsed)) { |
| 842 | (*mod) = NULL; |
| 843 | |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 844 | /* check collision with other implemented revision */ |
| 845 | if (implement && ly_ctx_get_module_implemented(ctx, name)) { |
| 846 | LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE, |
| 847 | "Module \"%s\" is already present in other implemented revision.", name); |
| 848 | return LY_EDENIED; |
| 849 | } |
| 850 | |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 851 | /* module not present in the context, get the input data and parse it */ |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 852 | if (!(ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) { |
| 853 | search_clb: |
| 854 | if (ctx->imp_clb) { |
| 855 | if (ctx->imp_clb(name, revision, NULL, NULL, ctx->imp_clb_data, |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 856 | &format, &module_data, &module_data_free) == LY_SUCCESS) { |
| 857 | check_data.name = name; |
| 858 | check_data.revision = revision; |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 859 | *mod = lys_parse_mem_module(ctx, module_data, format, implement, |
| 860 | lysp_load_module_check, &check_data); |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 861 | if (module_data_free) { |
| 862 | module_data_free((void*)module_data, ctx->imp_clb_data); |
| 863 | } |
Radek Krejci | 096235c | 2019-01-11 11:12:19 +0100 | [diff] [blame] | 864 | if (*mod && implement && lys_compile(*mod, 0)) { |
| 865 | ly_set_rm(&ctx->list, *mod, NULL); |
| 866 | lys_module_free(*mod, NULL); |
| 867 | *mod = NULL; |
| 868 | } |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 869 | } |
| 870 | } |
| 871 | if (!(*mod) && !(ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) { |
| 872 | goto search_file; |
| 873 | } |
| 874 | } else { |
| 875 | search_file: |
| 876 | if (!(ctx->flags & LY_CTX_DISABLE_SEARCHDIRS)) { |
| 877 | /* module was not received from the callback or there is no callback set */ |
fredgan | cd485b8 | 2019-10-18 15:00:17 +0800 | [diff] [blame^] | 878 | lys_module_localfile(ctx, name, revision, implement, NULL, NULL, (void **)mod); |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 879 | } |
| 880 | if (!(*mod) && (ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) { |
| 881 | goto search_clb; |
| 882 | } |
| 883 | } |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 884 | |
Radek Krejci | b3289d6 | 2019-09-18 12:21:39 +0200 | [diff] [blame] | 885 | /* update the latest_revision flag - here we have selected the latest available schema, |
| 886 | * consider that even the callback provides correct latest revision */ |
| 887 | if (!(*mod) && m) { |
| 888 | m->latest_revision = 2; |
| 889 | *mod = m; |
| 890 | } else if ((*mod) && !revision && ((*mod)->latest_revision == 1)) { |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 891 | (*mod)->latest_revision = 2; |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 892 | } |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 893 | } else { |
| 894 | /* we have module from the current context */ |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 895 | if (implement) { |
| 896 | m = ly_ctx_get_module_implemented(ctx, name); |
| 897 | if (m && m != *mod) { |
| 898 | /* check collision with other implemented revision */ |
| 899 | LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE, |
| 900 | "Module \"%s\" is already present in other implemented revision.", name); |
| 901 | *mod = NULL; |
| 902 | return LY_EDENIED; |
| 903 | } |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 904 | } |
| 905 | |
| 906 | /* circular check */ |
Radek Krejci | f8f882a | 2018-10-31 14:51:15 +0100 | [diff] [blame] | 907 | if ((*mod)->parsed && (*mod)->parsed->parsing) { |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 908 | LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE, "A circular dependency (import) for module \"%s\".", name); |
| 909 | *mod = NULL; |
| 910 | return LY_EVALID; |
| 911 | } |
| 912 | } |
| 913 | if (!(*mod)) { |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 914 | LOGVAL(ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE, "%s \"%s\" module failed.", implement ? "Loading" : "Importing", name); |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 915 | return LY_EVALID; |
| 916 | } |
| 917 | |
| 918 | if (implement) { |
| 919 | /* mark the module implemented, check for collision was already done */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 920 | (*mod)->implemented = 1; |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 921 | } |
Radek Krejci | 086c713 | 2018-10-26 15:29:04 +0200 | [diff] [blame] | 922 | |
| 923 | return LY_SUCCESS; |
| 924 | } |
| 925 | |
| 926 | LY_ERR |
David Sedlák | 4a65053 | 2019-07-10 11:55:18 +0200 | [diff] [blame] | 927 | lysp_check_stringchar(struct lys_parser_ctx *ctx, unsigned int c) |
| 928 | { |
| 929 | if (!is_yangutf8char(c)) { |
| 930 | LOGVAL_PARSER(ctx, LY_VCODE_INCHAR, c); |
| 931 | return LY_EVALID; |
| 932 | } |
| 933 | return LY_SUCCESS; |
| 934 | } |
| 935 | |
| 936 | LY_ERR |
| 937 | lysp_check_identifierchar(struct lys_parser_ctx *ctx, unsigned int c, int first, int *prefix) |
| 938 | { |
| 939 | if (first || (prefix && (*prefix) == 1)) { |
| 940 | if (!is_yangidentstartchar(c)) { |
| 941 | LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Invalid identifier first character '%c'.", c); |
| 942 | return LY_EVALID; |
| 943 | } |
| 944 | if (prefix) { |
| 945 | if (first) { |
| 946 | (*prefix) = 0; |
| 947 | } else { |
| 948 | (*prefix) = 2; |
| 949 | } |
| 950 | } |
| 951 | } else if (c == ':' && prefix && (*prefix) == 0) { |
| 952 | (*prefix) = 1; |
| 953 | } else if (!is_yangidentchar(c)) { |
| 954 | LOGVAL_PARSER(ctx, LYVE_SYNTAX_YANG, "Invalid identifier character '%c'.", c); |
| 955 | return LY_EVALID; |
| 956 | } |
| 957 | |
| 958 | return LY_SUCCESS; |
| 959 | } |
| 960 | |
| 961 | LY_ERR |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 962 | lysp_load_submodule(struct lys_parser_ctx *ctx, struct lysp_module *mod, struct lysp_include *inc) |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 963 | { |
Radek Krejci | 3eb299d | 2019-04-08 15:07:44 +0200 | [diff] [blame] | 964 | struct lysp_submodule *submod = NULL; |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 965 | const char *submodule_data = NULL; |
| 966 | LYS_INFORMAT format = LYS_IN_UNKNOWN; |
| 967 | void (*submodule_data_free)(void *module_data, void *user_data) = NULL; |
Radek Krejci | 9ed7a19 | 2018-10-31 16:23:51 +0100 | [diff] [blame] | 968 | struct lysp_load_module_check_data check_data = {0}; |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 969 | |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 970 | /* submodule not present in the context, get the input data and parse it */ |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 971 | if (!(ctx->ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) { |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 972 | search_clb: |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 973 | if (ctx->ctx->imp_clb) { |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 974 | if (ctx->ctx->imp_clb(mod->mod->name, NULL, inc->name, inc->rev[0] ? inc->rev : NULL, ctx->ctx->imp_clb_data, |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 975 | &format, &submodule_data, &submodule_data_free) == LY_SUCCESS) { |
| 976 | check_data.name = inc->name; |
| 977 | check_data.revision = inc->rev[0] ? inc->rev : NULL; |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 978 | check_data.submoduleof = mod->mod->name; |
| 979 | submod = lys_parse_mem_submodule(ctx->ctx, submodule_data, format, ctx, |
| 980 | lysp_load_module_check, &check_data); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 981 | if (submodule_data_free) { |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 982 | submodule_data_free((void*)submodule_data, ctx->ctx->imp_clb_data); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 983 | } |
| 984 | } |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 985 | } |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 986 | if (!submod && !(ctx->ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) { |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 987 | goto search_file; |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 988 | } |
Radek Krejci | 2d31ea7 | 2018-10-25 15:46:42 +0200 | [diff] [blame] | 989 | } else { |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 990 | search_file: |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 991 | if (!(ctx->ctx->flags & LY_CTX_DISABLE_SEARCHDIRS)) { |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 992 | /* submodule was not received from the callback or there is no callback set */ |
fredgan | cd485b8 | 2019-10-18 15:00:17 +0800 | [diff] [blame^] | 993 | lys_module_localfile(ctx->ctx, inc->name, inc->rev[0] ? inc->rev : NULL, 0, ctx, mod->mod->name, (void**)&submod); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 994 | } |
Radek Krejci | 3b1f929 | 2018-11-08 10:58:35 +0100 | [diff] [blame] | 995 | if (!submod && (ctx->ctx->flags & LY_CTX_PREFER_SEARCHDIRS)) { |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 996 | goto search_clb; |
| 997 | } |
| 998 | } |
| 999 | if (submod) { |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 1000 | if (!inc->rev[0] && (submod->latest_revision == 1)) { |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1001 | /* update the latest_revision flag - here we have selected the latest available schema, |
| 1002 | * consider that even the callback provides correct latest revision */ |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 1003 | submod->latest_revision = 2; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1004 | } |
| 1005 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 1006 | inc->submodule = submod; |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 1007 | } |
| 1008 | if (!inc->submodule) { |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 1009 | LOGVAL(ctx->ctx, LY_VLOG_NONE, NULL, LYVE_REFERENCE, "Including \"%s\" submodule into \"%s\" failed.", |
| 1010 | inc->name, mod->mod->name); |
Radek Krejci | d33273d | 2018-10-25 14:55:52 +0200 | [diff] [blame] | 1011 | return LY_EVALID; |
| 1012 | } |
| 1013 | |
| 1014 | return LY_SUCCESS; |
| 1015 | } |
| 1016 | |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 1017 | #define FIND_MODULE(TYPE, MOD) \ |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 1018 | TYPE *imp; \ |
Radek Krejci | 7f9b651 | 2019-09-18 13:11:09 +0200 | [diff] [blame] | 1019 | if (!ly_strncmp((MOD)->mod->prefix, prefix, len)) { \ |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 1020 | /* it is the prefix of the module itself */ \ |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 1021 | m = ly_ctx_get_module((MOD)->mod->ctx, (MOD)->mod->name, (MOD)->mod->revision); \ |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 1022 | } \ |
| 1023 | /* search in imports */ \ |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1024 | if (!m) { \ |
| 1025 | LY_ARRAY_FOR((MOD)->imports, TYPE, imp) { \ |
Radek Krejci | 7f9b651 | 2019-09-18 13:11:09 +0200 | [diff] [blame] | 1026 | if (!ly_strncmp(imp->prefix, prefix, len)) { \ |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1027 | m = imp->module; \ |
| 1028 | break; \ |
| 1029 | } \ |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 1030 | } \ |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1031 | } |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 1032 | |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1033 | struct lysc_module * |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1034 | lysc_module_find_prefix(const struct lysc_module *mod, const char *prefix, size_t len) |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 1035 | { |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1036 | const struct lys_module *m = NULL; |
| 1037 | |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 1038 | FIND_MODULE(struct lysc_import, mod); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1039 | return m ? m->compiled : NULL; |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 1040 | } |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 1041 | |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1042 | struct lysp_module * |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1043 | lysp_module_find_prefix(const struct lysp_module *mod, const char *prefix, size_t len) |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 1044 | { |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1045 | const struct lys_module *m = NULL; |
| 1046 | |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 1047 | FIND_MODULE(struct lysp_import, mod); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1048 | return m ? m->parsed : NULL; |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 1049 | } |
Radek Krejci | 151a5b7 | 2018-10-19 14:21:44 +0200 | [diff] [blame] | 1050 | |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 1051 | struct lys_module * |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1052 | lys_module_find_prefix(const struct lys_module *mod, const char *prefix, size_t len) |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 1053 | { |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1054 | const struct lys_module *m = NULL; |
| 1055 | |
Radek Krejci | 73dead2 | 2019-07-11 16:46:16 +0200 | [diff] [blame] | 1056 | if (!prefix) { |
| 1057 | return (struct lys_module*)mod; |
| 1058 | } |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 1059 | if (mod->compiled) { |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 1060 | FIND_MODULE(struct lysc_import, mod->compiled); |
Radek Krejci | ce8c159 | 2018-10-29 15:35:51 +0100 | [diff] [blame] | 1061 | } else { |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 1062 | FIND_MODULE(struct lysp_import, mod->parsed); |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1063 | } |
| 1064 | return (struct lys_module*)m; |
| 1065 | } |
| 1066 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1067 | const char * |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 1068 | lys_prefix_find_module(const struct lys_module *mod, const struct lys_module *import) |
| 1069 | { |
| 1070 | unsigned int u; |
| 1071 | |
| 1072 | if (import == mod) { |
| 1073 | return mod->prefix; |
| 1074 | } |
| 1075 | |
| 1076 | if (mod->parsed) { |
| 1077 | LY_ARRAY_FOR(mod->parsed->imports, u) { |
| 1078 | if (mod->parsed->imports[u].module == import) { |
| 1079 | return mod->parsed->imports[u].prefix; |
| 1080 | } |
| 1081 | } |
| 1082 | } else { |
| 1083 | /* we don't have original information about the import's prefix, |
| 1084 | * so the prefix of the import module itself is returned instead */ |
| 1085 | return import->prefix; |
| 1086 | } |
| 1087 | |
| 1088 | return NULL; |
| 1089 | } |
| 1090 | |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 1091 | API const char * |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1092 | lys_nodetype2str(uint16_t nodetype) |
| 1093 | { |
| 1094 | switch(nodetype) { |
| 1095 | case LYS_CONTAINER: |
| 1096 | return "container"; |
| 1097 | case LYS_CHOICE: |
| 1098 | return "choice"; |
| 1099 | case LYS_LEAF: |
| 1100 | return "leaf"; |
| 1101 | case LYS_LEAFLIST: |
| 1102 | return "leaf-list"; |
| 1103 | case LYS_LIST: |
| 1104 | return "list"; |
| 1105 | case LYS_ANYXML: |
| 1106 | return "anyxml"; |
| 1107 | case LYS_ANYDATA: |
| 1108 | return "anydata"; |
Radek Krejci | f12a1f0 | 2019-02-11 16:42:08 +0100 | [diff] [blame] | 1109 | case LYS_CASE: |
| 1110 | return "case"; |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 1111 | case LYS_ACTION: |
| 1112 | return "RPC/action"; |
| 1113 | case LYS_NOTIF: |
| 1114 | return "Notification"; |
Radek Krejci | fc81ea8 | 2019-04-18 13:27:22 +0200 | [diff] [blame] | 1115 | case LYS_USES: |
| 1116 | return "uses"; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1117 | default: |
| 1118 | return "unknown"; |
| 1119 | } |
| 1120 | } |
| 1121 | |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 1122 | const char * |
| 1123 | lys_datatype2str(LY_DATA_TYPE basetype) |
| 1124 | { |
| 1125 | switch(basetype) { |
| 1126 | case LY_TYPE_BINARY: |
| 1127 | return "binary"; |
| 1128 | case LY_TYPE_UINT8: |
| 1129 | return "uint8"; |
| 1130 | case LY_TYPE_UINT16: |
| 1131 | return "uint16"; |
| 1132 | case LY_TYPE_UINT32: |
| 1133 | return "uint32"; |
| 1134 | case LY_TYPE_UINT64: |
| 1135 | return "uint64"; |
| 1136 | case LY_TYPE_STRING: |
| 1137 | return "string"; |
| 1138 | case LY_TYPE_BITS: |
| 1139 | return "bits"; |
| 1140 | case LY_TYPE_BOOL: |
| 1141 | return "boolean"; |
| 1142 | case LY_TYPE_DEC64: |
| 1143 | return "decimal64"; |
| 1144 | case LY_TYPE_EMPTY: |
| 1145 | return "empty"; |
| 1146 | case LY_TYPE_ENUM: |
| 1147 | return "enumeration"; |
| 1148 | case LY_TYPE_IDENT: |
| 1149 | return "identityref"; |
| 1150 | case LY_TYPE_INST: |
| 1151 | return "instance-identifier"; |
| 1152 | case LY_TYPE_LEAFREF: |
| 1153 | return "leafref"; |
| 1154 | case LY_TYPE_UNION: |
| 1155 | return "union"; |
| 1156 | case LY_TYPE_INT8: |
| 1157 | return "int8"; |
| 1158 | case LY_TYPE_INT16: |
| 1159 | return "int16"; |
| 1160 | case LY_TYPE_INT32: |
| 1161 | return "int32"; |
| 1162 | case LY_TYPE_INT64: |
| 1163 | return "int64"; |
| 1164 | default: |
| 1165 | return "unknown"; |
| 1166 | } |
| 1167 | } |
| 1168 | |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1169 | API const struct lysp_tpdf * |
| 1170 | lysp_node_typedefs(const struct lysp_node *node) |
| 1171 | { |
Radek Krejci | 0fb2856 | 2018-12-13 15:17:37 +0100 | [diff] [blame] | 1172 | switch (node->nodetype) { |
| 1173 | case LYS_CONTAINER: |
| 1174 | return ((struct lysp_node_container*)node)->typedefs; |
| 1175 | case LYS_LIST: |
| 1176 | return ((struct lysp_node_list*)node)->typedefs; |
| 1177 | case LYS_GROUPING: |
| 1178 | return ((struct lysp_grp*)node)->typedefs; |
| 1179 | case LYS_ACTION: |
| 1180 | return ((struct lysp_action*)node)->typedefs; |
| 1181 | case LYS_INOUT: |
| 1182 | return ((struct lysp_action_inout*)node)->typedefs; |
| 1183 | case LYS_NOTIF: |
| 1184 | return ((struct lysp_notif*)node)->typedefs; |
| 1185 | default: |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1186 | return NULL; |
| 1187 | } |
| 1188 | } |
| 1189 | |
Radek Krejci | 53ea615 | 2018-12-13 15:21:15 +0100 | [diff] [blame] | 1190 | API const struct lysp_grp * |
| 1191 | lysp_node_groupings(const struct lysp_node *node) |
| 1192 | { |
| 1193 | switch (node->nodetype) { |
| 1194 | case LYS_CONTAINER: |
| 1195 | return ((struct lysp_node_container*)node)->groupings; |
| 1196 | case LYS_LIST: |
| 1197 | return ((struct lysp_node_list*)node)->groupings; |
| 1198 | case LYS_GROUPING: |
| 1199 | return ((struct lysp_grp*)node)->groupings; |
| 1200 | 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 Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1211 | struct lysp_action ** |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1212 | lysp_node_actions_p(struct lysp_node *node) |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1213 | { |
| 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 Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1229 | API const struct lysp_action * |
| 1230 | lysp_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 Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1241 | struct lysp_notif ** |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1242 | lysp_node_notifs_p(struct lysp_node *node) |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1243 | { |
| 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 Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1259 | API const struct lysp_notif * |
| 1260 | lysp_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 Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1271 | struct lysp_node ** |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1272 | lysp_node_children_p(struct lysp_node *node) |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1273 | { |
| 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 Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1297 | API const struct lysp_node * |
| 1298 | lysp_node_children(const struct lysp_node *node) |
| 1299 | { |
| 1300 | struct lysp_node **children; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1301 | |
| 1302 | if (!node) { |
| 1303 | return NULL; |
| 1304 | } |
| 1305 | |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1306 | children = lysp_node_children_p((struct lysp_node*)node); |
| 1307 | if (children) { |
| 1308 | return *children; |
| 1309 | } else { |
| 1310 | return NULL; |
| 1311 | } |
| 1312 | } |
| 1313 | |
| 1314 | struct lysc_action ** |
| 1315 | lysc_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 | |
| 1328 | API const struct lysc_action * |
| 1329 | lysc_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 | |
| 1340 | struct lysc_notif ** |
| 1341 | lysc_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 | |
| 1354 | API const struct lysc_notif * |
| 1355 | lysc_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 Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1366 | struct lysc_node ** |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 1367 | lysc_node_children_p(const struct lysc_node *node, uint16_t flags) |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1368 | { |
| 1369 | assert(node); |
| 1370 | switch (node->nodetype) { |
| 1371 | case LYS_CONTAINER: |
| 1372 | return &((struct lysc_node_container*)node)->child; |
| 1373 | case LYS_CHOICE: |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1374 | if (((struct lysc_node_choice*)node)->cases) { |
Radek Krejci | 95710c9 | 2019-02-11 15:49:55 +0100 | [diff] [blame] | 1375 | return &((struct lysc_node_choice*)node)->cases->child; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1376 | } else { |
| 1377 | return NULL; |
| 1378 | } |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 1379 | case LYS_CASE: |
| 1380 | return &((struct lysc_node_case*)node)->child; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1381 | case LYS_LIST: |
| 1382 | return &((struct lysc_node_list*)node)->child; |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 1383 | case LYS_ACTION: |
| 1384 | if (flags & LYS_CONFIG_R) { |
| 1385 | return &((struct lysc_action*)node)->output.data; |
| 1386 | } else { |
| 1387 | /* LYS_CONFIG_W, but also the default case */ |
| 1388 | return &((struct lysc_action*)node)->input.data; |
| 1389 | } |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 1390 | case LYS_NOTIF: |
| 1391 | return &((struct lysc_notif*)node)->data; |
Radek Krejci | bbe09a9 | 2018-11-08 09:36:54 +0100 | [diff] [blame] | 1392 | default: |
| 1393 | return NULL; |
| 1394 | } |
| 1395 | } |
| 1396 | |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1397 | API const struct lysc_node * |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 1398 | lysc_node_children(const struct lysc_node *node, uint16_t flags) |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1399 | { |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1400 | struct lysc_node **children; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1401 | |
| 1402 | if (!node) { |
| 1403 | return NULL; |
| 1404 | } |
| 1405 | |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 1406 | children = lysc_node_children_p((struct lysc_node*)node, flags); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 1407 | if (children) { |
| 1408 | return *children; |
| 1409 | } else { |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 1410 | return NULL; |
| 1411 | } |
| 1412 | } |
| 1413 | |
Radek Krejci | 96a0bfd | 2018-11-22 15:25:06 +0100 | [diff] [blame] | 1414 | struct lys_module * |
| 1415 | lysp_find_module(struct ly_ctx *ctx, const struct lysp_module *mod) |
| 1416 | { |
| 1417 | unsigned int u; |
| 1418 | |
| 1419 | for (u = 0; u < ctx->list.count; ++u) { |
| 1420 | if (((struct lys_module*)ctx->list.objs[u])->parsed == mod) { |
| 1421 | return ((struct lys_module*)ctx->list.objs[u]); |
| 1422 | } |
| 1423 | } |
| 1424 | return NULL; |
| 1425 | } |
| 1426 | |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1427 | enum ly_stmt |
David Sedlák | 5f8f033 | 2019-06-18 16:34:30 +0200 | [diff] [blame] | 1428 | lysp_match_kw(struct lys_parser_ctx *ctx, const char **data) |
David Sedlák | c10e790 | 2018-12-17 02:17:59 +0100 | [diff] [blame] | 1429 | { |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1430 | /** |
| 1431 | * @brief Move the DATA pointer by COUNT items. Also updates the indent value in yang parser context |
| 1432 | * @param[in] CTX yang parser context to update its indent value. |
| 1433 | * @param[in,out] DATA pointer to move |
| 1434 | * @param[in] COUNT number of items for which the DATA pointer is supposed to move on. |
| 1435 | */ |
| 1436 | #define MOVE_IN(CTX, DATA, COUNT) (*(DATA))+=COUNT;if(CTX){(CTX)->indent+=COUNT;} |
| 1437 | #define IF_KW(STR, LEN, STMT) if (!strncmp(*(data), STR, LEN)) {MOVE_IN(ctx, data, LEN);*kw=STMT;} |
| 1438 | #define IF_KW_PREFIX(STR, LEN) if (!strncmp(*(data), STR, LEN)) {MOVE_IN(ctx, data, LEN); |
| 1439 | #define IF_KW_PREFIX_END } |
David Sedlák | 572e7ab | 2019-06-04 16:01:58 +0200 | [diff] [blame] | 1440 | |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1441 | enum ly_stmt result = LY_STMT_NONE; |
| 1442 | enum ly_stmt *kw = &result; |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1443 | /* read the keyword itself */ |
| 1444 | switch (**data) { |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1445 | case 'a': |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1446 | MOVE_IN(ctx, data, 1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1447 | IF_KW("rgument", 7, LY_STMT_ARGUMENT) |
| 1448 | else IF_KW("ugment", 6, LY_STMT_AUGMENT) |
| 1449 | else IF_KW("ction", 5, LY_STMT_ACTION) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1450 | else IF_KW_PREFIX("ny", 2) |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1451 | IF_KW("data", 4, LY_STMT_ANYDATA) |
| 1452 | else IF_KW("xml", 3, LY_STMT_ANYXML) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1453 | IF_KW_PREFIX_END |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1454 | break; |
| 1455 | case 'b': |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1456 | MOVE_IN(ctx, data, 1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1457 | IF_KW("ase", 3, LY_STMT_BASE) |
| 1458 | else IF_KW("elongs-to", 9, LY_STMT_BELONGS_TO) |
| 1459 | else IF_KW("it", 2, LY_STMT_BIT) |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1460 | break; |
| 1461 | case 'c': |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1462 | MOVE_IN(ctx, data, 1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1463 | IF_KW("ase", 3, LY_STMT_CASE) |
| 1464 | else IF_KW("hoice", 5, LY_STMT_CHOICE) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1465 | else IF_KW_PREFIX("on", 2) |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1466 | IF_KW("fig", 3, LY_STMT_CONFIG) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1467 | else IF_KW_PREFIX("ta", 2) |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1468 | IF_KW("ct", 2, LY_STMT_CONTACT) |
| 1469 | else IF_KW("iner", 4, LY_STMT_CONTAINER) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1470 | IF_KW_PREFIX_END |
| 1471 | IF_KW_PREFIX_END |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1472 | break; |
| 1473 | case 'd': |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1474 | MOVE_IN(ctx, data, 1); |
| 1475 | IF_KW_PREFIX("e", 1) |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1476 | IF_KW("fault", 5, LY_STMT_DEFAULT) |
| 1477 | else IF_KW("scription", 9, LY_STMT_DESCRIPTION) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1478 | else IF_KW_PREFIX("viat", 4) |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1479 | IF_KW("e", 1, LY_STMT_DEVIATE) |
| 1480 | else IF_KW("ion", 3, LY_STMT_DEVIATION) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1481 | IF_KW_PREFIX_END |
| 1482 | IF_KW_PREFIX_END |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1483 | break; |
| 1484 | case 'e': |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1485 | MOVE_IN(ctx, data, 1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1486 | IF_KW("num", 3, LY_STMT_ENUM) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1487 | else IF_KW_PREFIX("rror-", 5) |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1488 | IF_KW("app-tag", 7, LY_STMT_ERROR_APP_TAG) |
| 1489 | else IF_KW("message", 7, LY_STMT_ERROR_MESSAGE) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1490 | IF_KW_PREFIX_END |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1491 | else IF_KW("xtension", 8, LY_STMT_EXTENSION) |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1492 | break; |
| 1493 | case 'f': |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1494 | MOVE_IN(ctx, data, 1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1495 | IF_KW("eature", 6, LY_STMT_FEATURE) |
| 1496 | else IF_KW("raction-digits", 14, LY_STMT_FRACTION_DIGITS) |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1497 | break; |
| 1498 | case 'g': |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1499 | MOVE_IN(ctx, data, 1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1500 | IF_KW("rouping", 7, LY_STMT_GROUPING) |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1501 | break; |
| 1502 | case 'i': |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1503 | MOVE_IN(ctx, data, 1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1504 | IF_KW("dentity", 7, LY_STMT_IDENTITY) |
| 1505 | else IF_KW("f-feature", 9, LY_STMT_IF_FEATURE) |
| 1506 | else IF_KW("mport", 5, LY_STMT_IMPORT) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1507 | else IF_KW_PREFIX("n", 1) |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1508 | IF_KW("clude", 5, LY_STMT_INCLUDE) |
| 1509 | else IF_KW("put", 3, LY_STMT_INPUT) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1510 | IF_KW_PREFIX_END |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1511 | break; |
| 1512 | case 'k': |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1513 | MOVE_IN(ctx, data, 1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1514 | IF_KW("ey", 2, LY_STMT_KEY) |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1515 | break; |
| 1516 | case 'l': |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1517 | MOVE_IN(ctx, data, 1); |
| 1518 | IF_KW_PREFIX("e", 1) |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1519 | IF_KW("af-list", 7, LY_STMT_LEAF_LIST) |
| 1520 | else IF_KW("af", 2, LY_STMT_LEAF) |
| 1521 | else IF_KW("ngth", 4, LY_STMT_LENGTH) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1522 | IF_KW_PREFIX_END |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1523 | else IF_KW("ist", 3, LY_STMT_LIST) |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1524 | break; |
| 1525 | case 'm': |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1526 | MOVE_IN(ctx, data, 1); |
| 1527 | IF_KW_PREFIX("a", 1) |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1528 | IF_KW("ndatory", 7, LY_STMT_MANDATORY) |
| 1529 | else IF_KW("x-elements", 10, LY_STMT_MAX_ELEMENTS) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1530 | IF_KW_PREFIX_END |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1531 | else IF_KW("in-elements", 11, LY_STMT_MIN_ELEMENTS) |
| 1532 | else IF_KW("ust", 3, LY_STMT_MUST) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1533 | else IF_KW_PREFIX("od", 2) |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1534 | IF_KW("ule", 3, LY_STMT_MODULE) |
| 1535 | else IF_KW("ifier", 5, LY_STMT_MODIFIER) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1536 | IF_KW_PREFIX_END |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1537 | break; |
| 1538 | case 'n': |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1539 | MOVE_IN(ctx, data, 1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1540 | IF_KW("amespace", 8, LY_STMT_NAMESPACE) |
| 1541 | else IF_KW("otification", 11, LY_STMT_NOTIFICATION) |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1542 | break; |
| 1543 | case 'o': |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1544 | MOVE_IN(ctx, data, 1); |
| 1545 | IF_KW_PREFIX("r", 1) |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1546 | IF_KW("dered-by", 8, LY_STMT_ORDERED_BY) |
| 1547 | else IF_KW("ganization", 10, LY_STMT_ORGANIZATION) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1548 | IF_KW_PREFIX_END |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1549 | else IF_KW("utput", 5, LY_STMT_OUTPUT) |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1550 | break; |
| 1551 | case 'p': |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1552 | MOVE_IN(ctx, data, 1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1553 | IF_KW("ath", 3, LY_STMT_PATH) |
| 1554 | else IF_KW("attern", 6, LY_STMT_PATTERN) |
| 1555 | else IF_KW("osition", 7, LY_STMT_POSITION) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1556 | else IF_KW_PREFIX("re", 2) |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1557 | IF_KW("fix", 3, LY_STMT_PREFIX) |
| 1558 | else IF_KW("sence", 5, LY_STMT_PRESENCE) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1559 | IF_KW_PREFIX_END |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1560 | break; |
| 1561 | case 'r': |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1562 | MOVE_IN(ctx, data, 1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1563 | IF_KW("ange", 4, LY_STMT_RANGE) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1564 | else IF_KW_PREFIX("e", 1) |
| 1565 | IF_KW_PREFIX("f", 1) |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1566 | IF_KW("erence", 6, LY_STMT_REFERENCE) |
| 1567 | else IF_KW("ine", 3, LY_STMT_REFINE) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1568 | IF_KW_PREFIX_END |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1569 | else IF_KW("quire-instance", 14, LY_STMT_REQUIRE_INSTANCE) |
| 1570 | else IF_KW("vision-date", 11, LY_STMT_REVISION_DATE) |
| 1571 | else IF_KW("vision", 6, LY_STMT_REVISION) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1572 | IF_KW_PREFIX_END |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1573 | else IF_KW("pc", 2, LY_STMT_RPC) |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1574 | break; |
| 1575 | case 's': |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1576 | MOVE_IN(ctx, data, 1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1577 | IF_KW("tatus", 5, LY_STMT_STATUS) |
| 1578 | else IF_KW("ubmodule", 8, LY_STMT_SUBMODULE) |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1579 | break; |
| 1580 | case 't': |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1581 | MOVE_IN(ctx, data, 1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1582 | IF_KW("ypedef", 6, LY_STMT_TYPEDEF) |
| 1583 | else IF_KW("ype", 3, LY_STMT_TYPE) |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1584 | break; |
| 1585 | case 'u': |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1586 | MOVE_IN(ctx, data, 1); |
| 1587 | IF_KW_PREFIX("ni", 2) |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1588 | IF_KW("que", 3, LY_STMT_UNIQUE) |
| 1589 | else IF_KW("ts", 2, LY_STMT_UNITS) |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1590 | IF_KW_PREFIX_END |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1591 | else IF_KW("ses", 3, LY_STMT_USES) |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1592 | break; |
| 1593 | case 'v': |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1594 | MOVE_IN(ctx, data, 1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1595 | IF_KW("alue", 4, LY_STMT_VALUE) |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1596 | break; |
| 1597 | case 'w': |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1598 | MOVE_IN(ctx, data, 1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1599 | IF_KW("hen", 3, LY_STMT_WHEN) |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1600 | break; |
| 1601 | case 'y': |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1602 | MOVE_IN(ctx, data, 1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1603 | IF_KW("ang-version", 11, LY_STMT_YANG_VERSION) |
| 1604 | else IF_KW("in-element", 10, LY_STMT_YIN_ELEMENT) |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1605 | break; |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1606 | default: |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1607 | /* if context is not NULL we are matching keyword from YANG data*/ |
| 1608 | if (ctx) { |
| 1609 | if (**data == ';') { |
| 1610 | MOVE_IN(ctx, data, 1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1611 | *kw = LY_STMT_SYNTAX_SEMICOLON; |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1612 | } else if (**data == '{') { |
| 1613 | MOVE_IN(ctx, data, 1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1614 | *kw = LY_STMT_SYNTAX_LEFT_BRACE; |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1615 | } else if (**data == '}') { |
| 1616 | MOVE_IN(ctx, data, 1); |
Radek Krejci | d6b7645 | 2019-09-03 17:03:03 +0200 | [diff] [blame] | 1617 | *kw = LY_STMT_SYNTAX_RIGHT_BRACE; |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1618 | } |
| 1619 | } |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1620 | break; |
| 1621 | } |
| 1622 | |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1623 | #undef IF_KW |
| 1624 | #undef IF_KW_PREFIX |
| 1625 | #undef IF_KW_PREFIX_END |
David Sedlák | 1873013 | 2019-03-15 15:51:34 +0100 | [diff] [blame] | 1626 | #undef MOVE_IN |
David Sedlák | 1873013 | 2019-03-15 15:51:34 +0100 | [diff] [blame] | 1627 | |
David Sedlák | 1bccdfa | 2019-06-17 15:55:27 +0200 | [diff] [blame] | 1628 | return result; |
David Sedlák | 23a59a6 | 2018-10-26 13:08:02 +0200 | [diff] [blame] | 1629 | } |
David Sedlák | ecf5eb8 | 2019-06-03 14:12:44 +0200 | [diff] [blame] | 1630 | |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 1631 | unsigned int |
| 1632 | lysp_ext_instance_iter(struct lysp_ext_instance *ext, unsigned int index, LYEXT_SUBSTMT substmt) |
| 1633 | { |
| 1634 | LY_CHECK_ARG_RET(NULL, ext, LY_EINVAL); |
| 1635 | |
| 1636 | for (; index < LY_ARRAY_SIZE(ext); index++) { |
| 1637 | if (ext[index].insubstmt == substmt) { |
| 1638 | return index; |
| 1639 | } |
| 1640 | } |
| 1641 | |
| 1642 | return LY_ARRAY_SIZE(ext); |
| 1643 | } |
| 1644 | |
Radek Krejci | a191122 | 2019-07-22 17:24:50 +0200 | [diff] [blame] | 1645 | /** |
| 1646 | * @brief Schema mapping of YANG modules to prefixes in values. |
| 1647 | * |
| 1648 | * Implementation of ly_clb_get_prefix. Inverse function to lys_resolve_prefix. |
| 1649 | * |
| 1650 | * In this case the @p mod is searched in the list of imports and the import's prefix |
| 1651 | * (not the module's itself) prefix is returned. |
| 1652 | */ |
| 1653 | const char * |
| 1654 | lys_get_prefix(const struct lys_module *mod, void *private) |
| 1655 | { |
| 1656 | struct lys_module *context_mod = (struct lys_module*)private; |
| 1657 | unsigned int u; |
Radek Krejci | d3ca063 | 2019-04-16 16:54:54 +0200 | [diff] [blame] | 1658 | |
Radek Krejci | 474f9b8 | 2019-07-24 11:36:37 +0200 | [diff] [blame] | 1659 | if (context_mod == mod) { |
| 1660 | return context_mod->prefix; |
| 1661 | } |
Radek Krejci | a191122 | 2019-07-22 17:24:50 +0200 | [diff] [blame] | 1662 | LY_ARRAY_FOR(context_mod->compiled->imports, u) { |
| 1663 | if (context_mod->compiled->imports[u].module == mod) { |
| 1664 | /* match */ |
Radek Krejci | d0ef1af | 2019-07-23 12:22:05 +0200 | [diff] [blame] | 1665 | return context_mod->compiled->imports[u].prefix; |
Radek Krejci | a191122 | 2019-07-22 17:24:50 +0200 | [diff] [blame] | 1666 | } |
| 1667 | } |
| 1668 | |
| 1669 | return NULL; |
| 1670 | } |
| 1671 | |
| 1672 | /** |
| 1673 | * @brief Schema mapping of prefix in values to YANG modules (imports). |
| 1674 | * |
| 1675 | * Implementation of ly_clb_resolve_prefix. Inverse function to lys_get_prefix(). |
| 1676 | * |
| 1677 | * In this case the @p prefix is searched in the list of imports' prefixes (not the prefixes of the imported modules themselves). |
| 1678 | */ |
| 1679 | const struct lys_module * |
| 1680 | lys_resolve_prefix(struct ly_ctx *UNUSED(ctx), const char *prefix, size_t prefix_len, void *private) |
| 1681 | { |
| 1682 | return lys_module_find_prefix((const struct lys_module*)private, prefix, prefix_len); |
| 1683 | } |