blob: f21c97c5bf1cb35b847a042da33a91d252cd9322 [file] [log] [blame]
Michal Vasko1324b6c2018-09-07 11:16:23 +02001/**
2 * @file common.c
3 * @author Michal Vasko <mvasko@cesnet.cz>
4 * @brief common internal definitions for libyang
5 *
6 * Copyright (c) 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 Krejcib7db73a2018-10-24 14:18:40 +020014
15#include "common.h"
Michal Vasko1324b6c2018-09-07 11:16:23 +020016
Radek Krejci86d106e2018-10-18 09:53:19 +020017#include <assert.h>
18#include <errno.h>
Michal Vasko1324b6c2018-09-07 11:16:23 +020019#include <stdlib.h>
Michal Vasko841d1a92018-09-07 15:40:31 +020020#include <stdio.h>
21#include <ctype.h>
22#include <string.h>
Radek Krejci86d106e2018-10-18 09:53:19 +020023#include <sys/mman.h>
24#include <sys/stat.h>
25#include <sys/types.h>
26#include <unistd.h>
Michal Vasko841d1a92018-09-07 15:40:31 +020027
28#include "tree_schema.h"
Michal Vasko1324b6c2018-09-07 11:16:23 +020029
Radek Krejcic59bc972018-09-17 16:13:06 +020030const char *const ly_stmt_list[] = {
31 [YANG_ACTION] = "action",
32 [YANG_ANYDATA] = "anydata",
33 [YANG_ANYXML] = "anyxml",
34 [YANG_ARGUMENT] = "argument",
35 [YANG_AUGMENT] = "augment",
36 [YANG_BASE] = "base",
37 [YANG_BELONGS_TO] = "belongs-to",
38 [YANG_BIT] = "bit",
39 [YANG_CASE] = "case",
40 [YANG_CHOICE] = "choice",
41 [YANG_CONFIG] = "config",
42 [YANG_CONTACT] = "contact",
43 [YANG_CONTAINER] = "container",
44 [YANG_CUSTOM] = "<extension-instance>",
45 [YANG_DEFAULT] = "default",
46 [YANG_DESCRIPTION] = "description",
47 [YANG_DEVIATE] = "deviate",
48 [YANG_DEVIATION] = "deviation",
49 [YANG_ENUM] = "enum",
50 [YANG_ERROR_APP_TAG] = "error-app-tag",
51 [YANG_ERROR_MESSAGE] = "error-message",
52 [YANG_EXTENSION] = "extension",
53 [YANG_FEATURE] = "feature",
54 [YANG_FRACTION_DIGITS] = "fraction-digits",
55 [YANG_GROUPING] = "grouping",
56 [YANG_IDENTITY] = "identitiy",
57 [YANG_IF_FEATURE] = "if-feature",
58 [YANG_IMPORT] = "import",
59 [YANG_INCLUDE] = "include",
60 [YANG_INPUT] = "input",
61 [YANG_KEY] = "key",
62 [YANG_LEAF] = "leaf",
63 [YANG_LEAF_LIST] = "leaf-list",
64 [YANG_LENGTH] = "length",
65 [YANG_LIST] = "list",
66 [YANG_MANDATORY] = "mandatory",
67 [YANG_MAX_ELEMENTS] = "max-elements",
68 [YANG_MIN_ELEMENTS] = "min-elements",
69 [YANG_MODIFIER] = "modifier",
70 [YANG_MODULE] = "module",
71 [YANG_MUST] = "must",
72 [YANG_NAMESPACE] = "namespace",
73 [YANG_NOTIFICATION] = "notification",
74 [YANG_ORDERED_BY] = "ordered-by",
75 [YANG_ORGANIZATION] = "organization",
76 [YANG_OUTPUT] = "output",
77 [YANG_PATH] = "path",
78 [YANG_PATTERN] = "pattern",
79 [YANG_POSITION] = "position",
80 [YANG_PREFIX] = "prefix",
81 [YANG_PRESENCE] = "presence",
82 [YANG_RANGE] = "range",
83 [YANG_REFERENCE] = "reference",
84 [YANG_REFINE] = "refine",
85 [YANG_REQUIRE_INSTANCE] = "require-instance",
86 [YANG_REVISION] = "revision",
87 [YANG_REVISION_DATE] = "revision-date",
88 [YANG_RPC] = "rpc",
89 [YANG_STATUS] = "status",
90 [YANG_SUBMODULE] = "submodule",
91 [YANG_TYPE] = "type",
92 [YANG_TYPEDEF] = "typedef",
93 [YANG_UNIQUE] = "unique",
94 [YANG_UNITS] = "units",
95 [YANG_USES] = "uses",
96 [YANG_VALUE] = "value",
97 [YANG_WHEN] = "when",
98 [YANG_YANG_VERSION] = "yang-version",
99 [YANG_YIN_ELEMENT] = "yin-element",
100 [YANG_SEMICOLON] = ";",
101 [YANG_LEFT_BRACE] = "{",
102 [YANG_RIGHT_BRACE] = "}",
103};
104
105const char *const lyext_substmt_list[] = {
106 [LYEXT_SUBSTMT_ARGUMENT] = "argument",
107 [LYEXT_SUBSTMT_BASE] = "base",
108 [LYEXT_SUBSTMT_BELONGSTO] = "belongs-to",
109 [LYEXT_SUBSTMT_CONTACT] = "contact",
110 [LYEXT_SUBSTMT_DEFAULT] = "default",
111 [LYEXT_SUBSTMT_DESCRIPTION] = "description",
112 [LYEXT_SUBSTMT_ERRTAG] = "error-app-tag",
113 [LYEXT_SUBSTMT_ERRMSG] = "error-message",
114 [LYEXT_SUBSTMT_KEY] = "key",
115 [LYEXT_SUBSTMT_NAMESPACE] = "namespace",
116 [LYEXT_SUBSTMT_ORGANIZATION] = "organization",
117 [LYEXT_SUBSTMT_PATH] = "path",
118 [LYEXT_SUBSTMT_PREFIX] = "prefix",
119 [LYEXT_SUBSTMT_PRESENCE] = "presence",
120 [LYEXT_SUBSTMT_REFERENCE] = "reference",
121 [LYEXT_SUBSTMT_REVISIONDATE] = "revision-date",
122 [LYEXT_SUBSTMT_UNITS] = "units",
123 [LYEXT_SUBSTMT_VALUE] = "value",
124 [LYEXT_SUBSTMT_VERSION] = "yang-version",
125 [LYEXT_SUBSTMT_MODIFIER] = "modifier",
126 [LYEXT_SUBSTMT_REQINSTANCE] = "require-instance",
127 [LYEXT_SUBSTMT_YINELEM] = "yin-element",
128 [LYEXT_SUBSTMT_CONFIG] = "config",
129 [LYEXT_SUBSTMT_MANDATORY] = "mandatory",
130 [LYEXT_SUBSTMT_ORDEREDBY] = "ordered-by",
131 [LYEXT_SUBSTMT_STATUS] = "status",
132 [LYEXT_SUBSTMT_FRACDIGITS] = "fraction-digits",
133 [LYEXT_SUBSTMT_MAX] = "max-elements",
134 [LYEXT_SUBSTMT_MIN] = "min-elements",
135 [LYEXT_SUBSTMT_POSITION] = "position",
136 [LYEXT_SUBSTMT_UNIQUE] = "unique",
137 [LYEXT_SUBSTMT_IFFEATURE] = "if-feature",
138};
139
140const char *const ly_devmod_list[] = {
141 [LYS_DEV_NOT_SUPPORTED] = "not-supported",
142 [LYS_DEV_ADD] = "add",
143 [LYS_DEV_DELETE] = "delete",
144 [LYS_DEV_REPLACE] = "replace",
145};
146
Michal Vasko1324b6c2018-09-07 11:16:23 +0200147void *
148ly_realloc(void *ptr, size_t size)
149{
150 void *new_mem;
151
152 new_mem = realloc(ptr, size);
153 if (!new_mem) {
154 free(ptr);
155 }
156
157 return new_mem;
158}
Michal Vasko841d1a92018-09-07 15:40:31 +0200159
Radek Krejcib416be62018-10-01 14:51:45 +0200160LY_ERR
161ly_getutf8(const char **input, unsigned int *utf8_char, size_t *bytes_read)
162{
163 unsigned int c, len;
164 int aux;
165 int i;
166
167 c = (*input)[0];
168 LY_CHECK_RET(!c, LY_EINVAL);
169
170 if (!(c & 0x80)) {
171 /* one byte character */
172 len = 1;
173
174 if (c < 0x20 && c != 0x9 && c != 0xa && c != 0xd) {
175 return LY_EINVAL;
176 }
177 } else if ((c & 0xe0) == 0xc0) {
178 /* two bytes character */
179 len = 2;
180
181 aux = (*input)[1];
182 if ((aux & 0xc0) != 0x80) {
183 return LY_EINVAL;
184 }
185 c = ((c & 0x1f) << 6) | (aux & 0x3f);
186
187 if (c < 0x80) {
188 return LY_EINVAL;
189 }
190 } else if ((c & 0xf0) == 0xe0) {
191 /* three bytes character */
192 len = 3;
193
194 c &= 0x0f;
195 for (i = 1; i <= 2; i++) {
196 aux = (*input)[i];
197 if ((aux & 0xc0) != 0x80) {
198 return LY_EINVAL;
199 }
200
201 c = (c << 6) | (aux & 0x3f);
202 }
203
204 if (c < 0x800 || (c > 0xd7ff && c < 0xe000) || c > 0xfffd) {
205 return LY_EINVAL;
206 }
207 } else if ((c & 0xf8) == 0xf0) {
208 /* four bytes character */
209 len = 4;
210
211 c &= 0x07;
212 for (i = 1; i <= 3; i++) {
213 aux = (*input)[i];
214 if ((aux & 0xc0) != 0x80) {
215 return LY_EINVAL;
216 }
217
218 c = (c << 6) | (aux & 0x3f);
219 }
220
221 if (c < 0x1000 || c > 0x10ffff) {
222 return LY_EINVAL;
223 }
224 } else {
225 return LY_EINVAL;
226 }
227
228 (*utf8_char) = c;
229 (*input) += len;
230 if (bytes_read) {
231 (*bytes_read) = len;
232 }
233 return LY_SUCCESS;
234}
235
Radek Krejcid972c252018-09-25 13:23:39 +0200236size_t
237LY_VCODE_INSTREXP_len(const char *str)
238{
239 size_t len = 0;
240 if (!str) {
241 return len;
242 } else if (!str[0]) {
243 return 1;
244 }
245 for (len = 1; len < LY_VCODE_INSTREXP_MAXLEN && str[len]; ++len);
246 return len;
247}
248
Radek Krejcif345c012018-09-19 11:12:59 +0200249LY_ERR
Radek Krejci86d106e2018-10-18 09:53:19 +0200250ly_mmap(struct ly_ctx *ctx, int fd, size_t *length, void **addr)
Michal Vasko841d1a92018-09-07 15:40:31 +0200251{
Radek Krejci86d106e2018-10-18 09:53:19 +0200252 struct stat sb;
253 long pagesize;
254 size_t m;
Michal Vasko841d1a92018-09-07 15:40:31 +0200255
Radek Krejci86d106e2018-10-18 09:53:19 +0200256 assert(length);
257 assert(addr);
258 assert(fd >= 0);
Michal Vasko841d1a92018-09-07 15:40:31 +0200259
Radek Krejci86d106e2018-10-18 09:53:19 +0200260 if (fstat(fd, &sb) == -1) {
261 LOGERR(ctx, LY_ESYS, "Failed to stat the file descriptor (%s) for the mmap().", strerror(errno));
262 return LY_ESYS;
Michal Vasko841d1a92018-09-07 15:40:31 +0200263 }
Radek Krejci86d106e2018-10-18 09:53:19 +0200264 if (!S_ISREG(sb.st_mode)) {
265 LOGERR(ctx, LY_EINVAL, "File to mmap() is not a regular file.");
266 return LY_ESYS;
Michal Vasko841d1a92018-09-07 15:40:31 +0200267 }
Radek Krejci86d106e2018-10-18 09:53:19 +0200268 if (!sb.st_size) {
269 *addr = NULL;
270 return LY_SUCCESS;
271 }
272 pagesize = sysconf(_SC_PAGESIZE);
273
274 m = sb.st_size % pagesize;
275 if (m && pagesize - m >= 1) {
276 /* there will be enough space (at least 1 byte) after the file content mapping to provide zeroed NULL-termination byte */
277 *length = sb.st_size + 1;
278 *addr = mmap(NULL, *length, PROT_READ, MAP_PRIVATE, fd, 0);
279 } else {
280 /* there will not be enough bytes after the file content mapping for the additional bytes and some of them
281 * would overflow into another page that would not be zerroed and any access into it would generate SIGBUS.
282 * Therefore we have to do the following hack with double mapping. First, the required number of bytes
283 * (including the additinal bytes) is required as anonymous and thus they will be really provided (actually more
284 * because of using whole pages) and also initialized by zeros. Then, the file is mapped to the same address
285 * where the anonymous mapping starts. */
286 *length = sb.st_size + pagesize;
287 *addr = mmap(NULL, *length, PROT_READ, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
288 *addr = mmap(*addr, sb.st_size, PROT_READ, MAP_PRIVATE | MAP_FIXED, fd, 0);
289 }
290 if (*addr == MAP_FAILED) {
291 LOGERR(ctx, LY_ESYS, "mmap() failed (%s).", strerror(errno));
292 return LY_ESYS;
Michal Vasko841d1a92018-09-07 15:40:31 +0200293 }
294
Radek Krejcif345c012018-09-19 11:12:59 +0200295 return LY_SUCCESS;
Radek Krejci86d106e2018-10-18 09:53:19 +0200296}
Michal Vasko841d1a92018-09-07 15:40:31 +0200297
Radek Krejci86d106e2018-10-18 09:53:19 +0200298LY_ERR
299ly_munmap(void *addr, size_t length)
300{
301 if (munmap(addr, length)) {
302 return LY_ESYS;
303 }
304 return LY_SUCCESS;
Michal Vasko841d1a92018-09-07 15:40:31 +0200305}
Radek Krejci4f28eda2018-11-12 11:46:16 +0100306
307LY_ERR
308ly_parse_int(const char *val_str, int64_t min, int64_t max, int base, int64_t *ret)
309{
310 char *strptr;
311
312 LY_CHECK_ARG_RET(NULL, val_str, val_str[0], LY_EINVAL);
313
314 /* convert to 64-bit integer, all the redundant characters are handled */
315 errno = 0;
316 strptr = NULL;
317
318 /* parse the value */
319 *ret = strtoll(val_str, &strptr, base);
320 if (errno) {
321 return LY_EVALID;
322 } else if ((*ret < min) || (*ret > max)) {
323 return LY_EDENIED;
324 } else if (strptr && *strptr) {
325 while (isspace(*strptr)) {
326 ++strptr;
327 }
328 if (*strptr) {
329 return LY_EVALID;
330 }
331 }
332 return LY_SUCCESS;
333}
334
335LY_ERR
336ly_parse_uint(const char *val_str, uint64_t max, int base, uint64_t *ret)
337{
338 char *strptr;
339 uint64_t u;
340
341 LY_CHECK_ARG_RET(NULL, val_str, val_str[0], LY_EINVAL);
342
343 errno = 0;
344 strptr = NULL;
345 u = strtoull(val_str, &strptr, base);
346 if (errno) {
347 return LY_EVALID;
348 } else if ((u > max) || (u && val_str[0] == '-')) {
349 return LY_EDENIED;
350 } else if (strptr && *strptr) {
351 while (isspace(*strptr)) {
352 ++strptr;
353 }
354 if (*strptr) {
355 return LY_EVALID;
356 }
357 }
358
359 *ret = u;
360 return LY_SUCCESS;
361}