X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fuci.git;a=blobdiff_plain;f=util.c;h=7f37e882fc5348bc1254de3a87f6473d95d2f485;hp=8542359da59fdb29234d47916540e6f4043606b6;hb=43124956bc9c1083e476f6cadaedf27b7788d004;hpb=6c020def580232b9188232f044184c575a716cda diff --git a/util.c b/util.c index 8542359..7f37e88 100644 --- a/util.c +++ b/util.c @@ -101,58 +101,78 @@ static inline bool uci_validate_name(const char *str) return uci_validate_str(str, true); } +bool uci_validate_text(const char *str) +{ + while (*str) { + if ((*str == '\r') || (*str == '\n') || + ((*str < 32) && (*str != '\t'))) + return false; + str++; + } + return true; +} + static void uci_alloc_parse_context(struct uci_context *ctx) { ctx->pctx = (struct uci_parse_context *) uci_malloc(ctx, sizeof(struct uci_parse_context)); } -int uci_parse_tuple(struct uci_context *ctx, char *str, char **package, char **section, char **option, char **value) +int uci_parse_ptr(struct uci_context *ctx, struct uci_ptr *ptr, char *str) { char *last = NULL; + char *tmp; UCI_HANDLE_ERR(ctx); - UCI_ASSERT(ctx, str && package && section && option); + UCI_ASSERT(ctx, str); + UCI_ASSERT(ctx, ptr); + + memset(ptr, 0, sizeof(struct uci_ptr)); + /* value */ last = strchr(str, '='); if (last) { *last = 0; last++; + ptr->value = last; } - *package = strsep(&str, "."); - if (!*package || !uci_validate_str(*package, false)) + ptr->package = strsep(&str, "."); + if (!ptr->package) goto error; - *section = strsep(&str, "."); - if (!*section) + ptr->section = strsep(&str, "."); + if (!ptr->section) { + ptr->target = UCI_TYPE_PACKAGE; goto lastval; + } - *option = strsep(&str, "."); - if (!*option) + ptr->option = strsep(&str, "."); + if (!ptr->option) { + ptr->target = UCI_TYPE_SECTION; goto lastval; - -lastval: - if (last) { - if (!value) - goto error; - - if (!*last) - goto error; - *value = last; + } else { + ptr->target = UCI_TYPE_OPTION; } - if (*section && *section[0] && !uci_validate_name(*section)) + tmp = strsep(&str, "."); + if (tmp) + goto error; + +lastval: + if (ptr->package && !uci_validate_str(ptr->package, false)) goto error; - if (*option && !uci_validate_name(*option)) + if (ptr->section && !uci_validate_name(ptr->section)) + ptr->flags |= UCI_LOOKUP_EXTENDED; + if (ptr->option && !uci_validate_name(ptr->option)) + goto error; + if (ptr->value && !uci_validate_text(ptr->value)) goto error; - goto done; + return 0; error: + memset(ptr, 0, sizeof(struct uci_ptr)); UCI_THROW(ctx, UCI_ERR_PARSE); - -done: - return 0; }