Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 1 | /** |
Michal Vasko | afac782 | 2020-10-20 14:22:26 +0200 | [diff] [blame] | 2 | * @file in.c |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
Michal Vasko | afac782 | 2020-10-20 14:22:26 +0200 | [diff] [blame] | 4 | * @brief libyang input functions. |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 5 | * |
Michal Vasko | afac782 | 2020-10-20 14:22:26 +0200 | [diff] [blame] | 6 | * Copyright (c) 2015 - 2020 CESNET, z.s.p.o. |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 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 | */ |
| 14 | |
| 15 | #define _GNU_SOURCE |
Radek Krejci | f8dc59a | 2020-11-25 13:47:44 +0100 | [diff] [blame] | 16 | #define _POSIX_C_SOURCE 200809L /* strdup, strndup */ |
| 17 | |
Michal Vasko | afac782 | 2020-10-20 14:22:26 +0200 | [diff] [blame] | 18 | #include "in.h" |
| 19 | #include "in_internal.h" |
Radek Krejci | ca376bd | 2020-06-11 16:04:06 +0200 | [diff] [blame] | 20 | |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 21 | #include <errno.h> |
| 22 | #include <fcntl.h> |
| 23 | #include <limits.h> |
Radek Krejci | 47fab89 | 2020-11-05 17:02:41 +0100 | [diff] [blame] | 24 | #include <stdint.h> |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 25 | #include <stdio.h> |
Radek Krejci | ca376bd | 2020-06-11 16:04:06 +0200 | [diff] [blame] | 26 | #include <stdlib.h> |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 27 | #include <string.h> |
Radek Krejci | ca376bd | 2020-06-11 16:04:06 +0200 | [diff] [blame] | 28 | #include <unistd.h> |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 29 | |
Radek Krejci | ca376bd | 2020-06-11 16:04:06 +0200 | [diff] [blame] | 30 | #include "common.h" |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 31 | #include "compat.h" |
Radek Krejci | ca376bd | 2020-06-11 16:04:06 +0200 | [diff] [blame] | 32 | #include "dict.h" |
| 33 | #include "log.h" |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 34 | #include "parser_data.h" |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 35 | #include "parser_internal.h" |
Radek Krejci | 47fab89 | 2020-11-05 17:02:41 +0100 | [diff] [blame] | 36 | #include "set.h" |
Radek Krejci | 7711410 | 2021-03-10 15:21:57 +0100 | [diff] [blame] | 37 | #include "tree.h" |
Radek Krejci | 47fab89 | 2020-11-05 17:02:41 +0100 | [diff] [blame] | 38 | #include "tree_data.h" |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 39 | #include "tree_data_internal.h" |
Radek Krejci | 47fab89 | 2020-11-05 17:02:41 +0100 | [diff] [blame] | 40 | #include "tree_schema.h" |
Radek Krejci | ca376bd | 2020-06-11 16:04:06 +0200 | [diff] [blame] | 41 | #include "tree_schema_internal.h" |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 42 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 43 | LIBYANG_API_DEF LY_IN_TYPE |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 44 | ly_in_type(const struct ly_in *in) |
| 45 | { |
| 46 | LY_CHECK_ARG_RET(NULL, in, LY_IN_ERROR); |
| 47 | return in->type; |
| 48 | } |
| 49 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 50 | LIBYANG_API_DEF LY_ERR |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 51 | ly_in_reset(struct ly_in *in) |
| 52 | { |
| 53 | LY_CHECK_ARG_RET(NULL, in, LY_EINVAL); |
| 54 | |
| 55 | in->current = in->func_start = in->start; |
| 56 | in->line = 1; |
| 57 | return LY_SUCCESS; |
| 58 | } |
| 59 | |
| 60 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 61 | ly_in_new_fd(int fd, struct ly_in **in) |
| 62 | { |
| 63 | size_t length; |
| 64 | char *addr; |
| 65 | |
| 66 | LY_CHECK_ARG_RET(NULL, fd >= 0, in, LY_EINVAL); |
| 67 | |
| 68 | LY_CHECK_RET(ly_mmap(NULL, fd, &length, (void **)&addr)); |
| 69 | if (!addr) { |
| 70 | LOGERR(NULL, LY_EINVAL, "Empty input file."); |
| 71 | return LY_EINVAL; |
| 72 | } |
| 73 | |
| 74 | *in = calloc(1, sizeof **in); |
| 75 | LY_CHECK_ERR_RET(!*in, LOGMEM(NULL); ly_munmap(addr, length), LY_EMEM); |
| 76 | |
| 77 | (*in)->type = LY_IN_FD; |
| 78 | (*in)->method.fd = fd; |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 79 | (*in)->current = (*in)->start = (*in)->func_start = addr; |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 80 | (*in)->line = 1; |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 81 | (*in)->length = length; |
| 82 | |
| 83 | return LY_SUCCESS; |
| 84 | } |
| 85 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 86 | LIBYANG_API_DEF int |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 87 | ly_in_fd(struct ly_in *in, int fd) |
| 88 | { |
| 89 | int prev_fd; |
| 90 | size_t length; |
| 91 | const char *addr; |
| 92 | |
| 93 | LY_CHECK_ARG_RET(NULL, in, in->type == LY_IN_FD, -1); |
| 94 | |
| 95 | prev_fd = in->method.fd; |
| 96 | |
| 97 | if (fd != -1) { |
| 98 | LY_CHECK_RET(ly_mmap(NULL, fd, &length, (void **)&addr), -1); |
| 99 | if (!addr) { |
| 100 | LOGERR(NULL, LY_EINVAL, "Empty input file."); |
| 101 | return -1; |
| 102 | } |
| 103 | |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 104 | ly_munmap((char *)in->start, in->length); |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 105 | |
| 106 | in->method.fd = fd; |
| 107 | in->current = in->start = addr; |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 108 | in->line = 1; |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 109 | in->length = length; |
| 110 | } |
| 111 | |
| 112 | return prev_fd; |
| 113 | } |
| 114 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 115 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 116 | ly_in_new_file(FILE *f, struct ly_in **in) |
| 117 | { |
| 118 | LY_CHECK_ARG_RET(NULL, f, in, LY_EINVAL); |
| 119 | |
| 120 | LY_CHECK_RET(ly_in_new_fd(fileno(f), in)); |
| 121 | |
| 122 | /* convert the LY_IN_FD input handler into the LY_IN_FILE */ |
| 123 | (*in)->type = LY_IN_FILE; |
| 124 | (*in)->method.f = f; |
| 125 | |
| 126 | return LY_SUCCESS; |
| 127 | } |
| 128 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 129 | LIBYANG_API_DEF FILE * |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 130 | ly_in_file(struct ly_in *in, FILE *f) |
| 131 | { |
| 132 | FILE *prev_f; |
| 133 | |
| 134 | LY_CHECK_ARG_RET(NULL, in, in->type == LY_IN_FILE, NULL); |
| 135 | |
| 136 | prev_f = in->method.f; |
| 137 | |
| 138 | if (f) { |
| 139 | /* convert LY_IN_FILE handler into LY_IN_FD to be able to update it via ly_in_fd() */ |
| 140 | in->type = LY_IN_FD; |
| 141 | in->method.fd = fileno(prev_f); |
| 142 | if (ly_in_fd(in, fileno(f)) == -1) { |
| 143 | in->type = LY_IN_FILE; |
| 144 | in->method.f = prev_f; |
| 145 | return NULL; |
| 146 | } |
| 147 | |
| 148 | /* if success, convert the result back */ |
| 149 | in->type = LY_IN_FILE; |
| 150 | in->method.f = f; |
| 151 | } |
| 152 | |
| 153 | return prev_f; |
| 154 | } |
| 155 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 156 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 157 | ly_in_new_memory(const char *str, struct ly_in **in) |
| 158 | { |
| 159 | LY_CHECK_ARG_RET(NULL, str, in, LY_EINVAL); |
| 160 | |
| 161 | *in = calloc(1, sizeof **in); |
| 162 | LY_CHECK_ERR_RET(!*in, LOGMEM(NULL), LY_EMEM); |
| 163 | |
| 164 | (*in)->type = LY_IN_MEMORY; |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 165 | (*in)->start = (*in)->current = (*in)->func_start = str; |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 166 | (*in)->line = 1; |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 167 | |
| 168 | return LY_SUCCESS; |
| 169 | } |
| 170 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 171 | LIBYANG_API_DEF const char * |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 172 | ly_in_memory(struct ly_in *in, const char *str) |
| 173 | { |
| 174 | const char *data; |
| 175 | |
| 176 | LY_CHECK_ARG_RET(NULL, in, in->type == LY_IN_MEMORY, NULL); |
| 177 | |
| 178 | data = in->current; |
| 179 | |
| 180 | if (str) { |
| 181 | in->start = in->current = str; |
Radek Krejci | d54412f | 2020-12-17 20:25:35 +0100 | [diff] [blame] | 182 | in->line = 1; |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 183 | } |
| 184 | |
| 185 | return data; |
| 186 | } |
| 187 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 188 | LIBYANG_API_DEF LY_ERR |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 189 | ly_in_new_filepath(const char *filepath, size_t len, struct ly_in **in) |
| 190 | { |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 191 | LY_ERR ret; |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 192 | char *fp; |
| 193 | int fd; |
| 194 | |
| 195 | LY_CHECK_ARG_RET(NULL, filepath, in, LY_EINVAL); |
| 196 | |
| 197 | if (len) { |
| 198 | fp = strndup(filepath, len); |
| 199 | } else { |
| 200 | fp = strdup(filepath); |
| 201 | } |
| 202 | |
| 203 | fd = open(fp, O_RDONLY); |
Michal Vasko | f2eb8af | 2020-07-14 12:22:40 +0200 | [diff] [blame] | 204 | LY_CHECK_ERR_RET(fd == -1, LOGERR(NULL, LY_ESYS, "Failed to open file \"%s\" (%s).", fp, strerror(errno)); free(fp), |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 205 | LY_ESYS); |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 206 | |
| 207 | LY_CHECK_ERR_RET(ret = ly_in_new_fd(fd, in), free(fp), ret); |
| 208 | |
| 209 | /* convert the LY_IN_FD input handler into the LY_IN_FILE */ |
| 210 | (*in)->type = LY_IN_FILEPATH; |
| 211 | (*in)->method.fpath.fd = fd; |
| 212 | (*in)->method.fpath.filepath = fp; |
| 213 | |
| 214 | return LY_SUCCESS; |
| 215 | } |
| 216 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 217 | LIBYANG_API_DEF const char * |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 218 | ly_in_filepath(struct ly_in *in, const char *filepath, size_t len) |
| 219 | { |
| 220 | int fd, prev_fd; |
| 221 | char *fp = NULL; |
| 222 | |
| 223 | LY_CHECK_ARG_RET(NULL, in, in->type == LY_IN_FILEPATH, filepath ? NULL : ((void *)-1)); |
| 224 | |
| 225 | if (!filepath) { |
| 226 | return in->method.fpath.filepath; |
| 227 | } |
| 228 | |
| 229 | if (len) { |
| 230 | fp = strndup(filepath, len); |
| 231 | } else { |
| 232 | fp = strdup(filepath); |
| 233 | } |
| 234 | |
| 235 | /* replace filepath */ |
| 236 | fd = open(fp, O_RDONLY); |
| 237 | LY_CHECK_ERR_RET(!fd, LOGERR(NULL, LY_ESYS, "Failed to open file \"%s\" (%s).", fp, strerror(errno)); free(fp), NULL); |
| 238 | |
| 239 | /* convert LY_IN_FILEPATH handler into LY_IN_FD to be able to update it via ly_in_fd() */ |
| 240 | in->type = LY_IN_FD; |
| 241 | prev_fd = ly_in_fd(in, fd); |
| 242 | LY_CHECK_ERR_RET(prev_fd == -1, in->type = LY_IN_FILEPATH; free(fp), NULL); |
| 243 | |
| 244 | /* and convert the result back */ |
| 245 | in->type = LY_IN_FILEPATH; |
| 246 | close(prev_fd); |
| 247 | free(in->method.fpath.filepath); |
| 248 | in->method.fpath.fd = fd; |
| 249 | in->method.fpath.filepath = fp; |
| 250 | |
| 251 | return NULL; |
| 252 | } |
| 253 | |
Michal Vasko | ddd7659 | 2022-01-17 13:34:48 +0100 | [diff] [blame] | 254 | LIBYANG_API_DEF size_t |
| 255 | ly_in_parsed(const struct ly_in *in) |
| 256 | { |
| 257 | return in->current - in->func_start; |
| 258 | } |
| 259 | |
Jan Kundrát | c53a7ec | 2021-12-09 16:01:19 +0100 | [diff] [blame] | 260 | LIBYANG_API_DEF void |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 261 | ly_in_free(struct ly_in *in, ly_bool destroy) |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 262 | { |
| 263 | if (!in) { |
| 264 | return; |
| 265 | } else if (in->type == LY_IN_ERROR) { |
| 266 | LOGINT(NULL); |
| 267 | return; |
| 268 | } |
| 269 | |
| 270 | if (destroy) { |
| 271 | if (in->type == LY_IN_MEMORY) { |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 272 | free((char *)in->start); |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 273 | } else { |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 274 | ly_munmap((char *)in->start, in->length); |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 275 | |
| 276 | if (in->type == LY_IN_FILE) { |
| 277 | fclose(in->method.f); |
| 278 | } else { |
| 279 | close(in->method.fd); |
| 280 | |
| 281 | if (in->type == LY_IN_FILEPATH) { |
| 282 | free(in->method.fpath.filepath); |
| 283 | } |
| 284 | } |
| 285 | } |
| 286 | } else if (in->type != LY_IN_MEMORY) { |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 287 | ly_munmap((char *)in->start, in->length); |
Radek Krejci | f0e1ba5 | 2020-05-22 15:14:35 +0200 | [diff] [blame] | 288 | |
| 289 | if (in->type == LY_IN_FILEPATH) { |
| 290 | close(in->method.fpath.fd); |
| 291 | free(in->method.fpath.filepath); |
| 292 | } |
| 293 | } |
| 294 | |
| 295 | free(in); |
| 296 | } |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 297 | |
| 298 | LY_ERR |
| 299 | ly_in_read(struct ly_in *in, void *buf, size_t count) |
| 300 | { |
| 301 | if (in->length && (in->length - (in->current - in->start) < count)) { |
| 302 | /* EOF */ |
| 303 | return LY_EDENIED; |
| 304 | } |
| 305 | |
Michal Vasko | 08e9b11 | 2021-06-11 15:41:17 +0200 | [diff] [blame] | 306 | if (count) { |
| 307 | memcpy(buf, in->current, count); |
| 308 | } |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 309 | in->current += count; |
| 310 | return LY_SUCCESS; |
| 311 | } |
| 312 | |
Michal Vasko | 63f3d84 | 2020-07-08 10:10:14 +0200 | [diff] [blame] | 313 | LY_ERR |
| 314 | ly_in_skip(struct ly_in *in, size_t count) |
| 315 | { |
| 316 | if (in->length && (in->length - (in->current - in->start) < count)) { |
| 317 | /* EOF */ |
| 318 | return LY_EDENIED; |
| 319 | } |
| 320 | |
| 321 | in->current += count; |
| 322 | return LY_SUCCESS; |
| 323 | } |