2 * libuci - Library for the Unified Configuration Interface
3 * Copyright (C) 2008 Felix Fietkau <nbd@openwrt.org>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU Lesser General Public License version 2.1
7 * as published by the Free Software Foundation
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
16 * This file contains misc utility functions and wrappers to standard
17 * functions, which throw exceptions upon failure.
19 #include <sys/types.h>
28 #define LINEBUF_MAX 4096
30 __plugin void *uci_malloc(struct uci_context *ctx, size_t size)
36 UCI_THROW(ctx, UCI_ERR_MEM);
42 __plugin void *uci_realloc(struct uci_context *ctx, void *ptr, size_t size)
44 ptr = realloc(ptr, size);
46 UCI_THROW(ctx, UCI_ERR_MEM);
51 __plugin char *uci_strdup(struct uci_context *ctx, const char *str)
57 UCI_THROW(ctx, UCI_ERR_MEM);
62 /* Based on an efficient hash function published by D. J. Bernstein */
63 static unsigned int djbhash(unsigned int hash, char *str)
65 int len = strlen(str);
72 for(i = 0; i < len; i++) {
73 hash = ((hash << 5) + hash) + str[i];
75 return (hash & 0x7FFFFFFF);
79 * validate strings for names and types, reject special characters
80 * for names, only alphanum and _ is allowed (shell compatibility)
81 * for types, we allow more characters
83 __plugin bool uci_validate_str(const char *str, bool name)
89 unsigned char c = *str;
90 if (!isalnum(c) && c != '_') {
91 if (name || (c < 33) || (c > 126))
99 static inline bool uci_validate_package(const char *str)
101 return uci_validate_str(str, false);
104 static inline bool uci_validate_type(const char *str)
106 return uci_validate_str(str, false);
109 static inline bool uci_validate_name(const char *str)
111 return uci_validate_str(str, true);
114 bool uci_validate_text(const char *str)
117 unsigned char c = *str;
118 if ((c == '\r') || (c == '\n') ||
119 ((c < 32) && (c != '\t')))
126 static void uci_alloc_parse_context(struct uci_context *ctx)
128 ctx->pctx = (struct uci_parse_context *) uci_malloc(ctx, sizeof(struct uci_parse_context));
131 int uci_parse_ptr(struct uci_context *ctx, struct uci_ptr *ptr, char *str)
137 UCI_ASSERT(ctx, str);
138 UCI_ASSERT(ctx, ptr);
140 memset(ptr, 0, sizeof(struct uci_ptr));
143 last = strchr(str, '=');
150 ptr->package = strsep(&str, ".");
154 ptr->section = strsep(&str, ".");
156 ptr->target = UCI_TYPE_PACKAGE;
160 ptr->option = strsep(&str, ".");
162 ptr->target = UCI_TYPE_SECTION;
165 ptr->target = UCI_TYPE_OPTION;
168 tmp = strsep(&str, ".");
173 if (ptr->package && !uci_validate_package(ptr->package))
175 if (ptr->section && !uci_validate_name(ptr->section))
176 ptr->flags |= UCI_LOOKUP_EXTENDED;
177 if (ptr->option && !uci_validate_name(ptr->option))
179 if (ptr->value && !uci_validate_text(ptr->value))
185 memset(ptr, 0, sizeof(struct uci_ptr));
186 UCI_THROW(ctx, UCI_ERR_PARSE);
190 static void uci_parse_error(struct uci_context *ctx, char *pos, char *reason)
192 struct uci_parse_context *pctx = ctx->pctx;
194 pctx->reason = reason;
195 pctx->byte = pos - pctx->buf;
196 UCI_THROW(ctx, UCI_ERR_PARSE);
201 * Fetch a new line from the input stream and resize buffer if necessary
203 static void uci_getln(struct uci_context *ctx, int offset)
205 struct uci_parse_context *pctx = ctx->pctx;
209 if (pctx->buf == NULL) {
210 pctx->buf = uci_malloc(ctx, LINEBUF);
211 pctx->bufsz = LINEBUF;
219 p = fgets(p, pctx->bufsz - ofs, pctx->file);
224 if (pctx->buf[ofs - 1] == '\n') {
226 pctx->buf[ofs - 1] = 0;
230 if (pctx->bufsz > LINEBUF_MAX/2)
231 uci_parse_error(ctx, p, "line too long");
234 pctx->buf = uci_realloc(ctx, pctx->buf, pctx->bufsz);
239 * parse a character escaped by '\'
240 * returns true if the escaped character is to be parsed
241 * returns false if the escaped character is to be ignored
243 static inline bool parse_backslash(struct uci_context *ctx, char **str)
248 /* undecoded backslash at the end of line, fetch the next line */
251 uci_getln(ctx, *str - ctx->pctx->buf);
255 /* FIXME: decode escaped char, necessary? */
260 * move the string pointer forward until a non-whitespace character or
263 static void skip_whitespace(struct uci_context *ctx, char **str)
266 while (**str && isspace(**str))
270 if (!parse_backslash(ctx, str))
275 static inline void addc(char **dest, char **src)
283 * parse a double quoted string argument from the command line
285 static void parse_double_quote(struct uci_context *ctx, char **str, char **target)
289 /* skip quote character */
292 while ((c = **str)) {
299 if (!parse_backslash(ctx, str))
307 uci_parse_error(ctx, *str, "unterminated \"");
311 * parse a single quoted string argument from the command line
313 static void parse_single_quote(struct uci_context *ctx, char **str, char **target)
316 /* skip quote character */
319 while ((c = **str)) {
329 uci_parse_error(ctx, *str, "unterminated '");
333 * parse a string from the command line and detect the quoting style
335 static void parse_str(struct uci_context *ctx, char **str, char **target)
341 parse_single_quote(ctx, str, target);
344 parse_double_quote(ctx, str, target);
355 if (!parse_backslash(ctx, str))
362 } while (**str && !isspace(**str));
366 * if the string was unquoted and we've stopped at a whitespace
367 * character, skip to the next one, because the whitespace will
368 * be overwritten by a null byte here
373 /* terminate the parsed string */
378 * extract the next argument from the command line
380 static char *next_arg(struct uci_context *ctx, char **str, bool required, bool name)
386 skip_whitespace(ctx, str);
391 parse_str(ctx, str, &ptr);
395 uci_parse_error(ctx, *str, "insufficient arguments");
399 if (name && !uci_validate_name(val))
400 uci_parse_error(ctx, val, "invalid character in field");
406 int uci_parse_argument(struct uci_context *ctx, FILE *stream, char **str, char **result)
409 UCI_ASSERT(ctx, str != NULL);
410 UCI_ASSERT(ctx, result != NULL);
412 if (ctx->pctx && (ctx->pctx->file != stream))
416 uci_alloc_parse_context(ctx);
418 ctx->pctx->file = stream;
422 *str = ctx->pctx->buf;
425 *result = next_arg(ctx, str, false, false);
432 * open a stream and go to the right position
434 * note: when opening for write and seeking to the beginning of
435 * the stream, truncate the file
437 static FILE *uci_open_stream(struct uci_context *ctx, const char *filename, int pos, bool write, bool create)
442 int mode = (write ? O_RDWR : O_RDONLY);
447 if (!write && ((stat(filename, &statbuf) < 0) ||
448 ((statbuf.st_mode & S_IFMT) != S_IFREG))) {
449 UCI_THROW(ctx, UCI_ERR_NOTFOUND);
452 fd = open(filename, mode, UCI_FILEMODE);
456 if (flock(fd, (write ? LOCK_EX : LOCK_SH)) < 0)
459 ret = lseek(fd, 0, pos);
464 file = fdopen(fd, (write ? "w+" : "r"));
469 UCI_THROW(ctx, UCI_ERR_IO);
474 static void uci_close_stream(FILE *stream)