diff options
author | Kevin Wolf <kwolf@redhat.com> | 2014-02-21 16:24:03 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2014-02-21 22:10:17 +0100 |
commit | 7cc07ab8daa01f100f36ab63382d491f2d278c64 (patch) | |
tree | 47f3f18f95fd5c2a283cc89d43c50c615602248c /util | |
parent | 5b7aa9b56d1bfc79916262f380c3fc7961becb50 (diff) | |
download | qemu-7cc07ab8daa01f100f36ab63382d491f2d278c64.zip qemu-7cc07ab8daa01f100f36ab63382d491f2d278c64.tar.gz qemu-7cc07ab8daa01f100f36ab63382d491f2d278c64.tar.bz2 |
qemu-option: has_help_option() and is_valid_option_list()
has_help_option() checks if any help option ('help' or '?') occurs
anywhere in an option string, so that things like 'cluster_size=4k,help'
are recognised.
is_valid_option_list() ensures that the option list doesn't have options
with leading commas or trailing unescaped commas.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Jeff Cody <jcody@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'util')
-rw-r--r-- | util/qemu-option.c | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/util/qemu-option.c b/util/qemu-option.c index fd76cd2..9d898af 100644 --- a/util/qemu-option.c +++ b/util/qemu-option.c @@ -450,6 +450,55 @@ fail: return NULL; } +bool has_help_option(const char *param) +{ + size_t buflen = strlen(param) + 1; + char *buf = g_malloc0(buflen); + const char *p = param; + bool result = false; + + while (*p) { + p = get_opt_value(buf, buflen, p); + if (*p) { + p++; + } + + if (is_help_option(buf)) { + result = true; + goto out; + } + } + +out: + free(buf); + return result; +} + +bool is_valid_option_list(const char *param) +{ + size_t buflen = strlen(param) + 1; + char *buf = g_malloc0(buflen); + const char *p = param; + bool result = true; + + while (*p) { + p = get_opt_value(buf, buflen, p); + if (*p && !*++p) { + result = false; + goto out; + } + + if (!*buf || *buf == ',') { + result = false; + goto out; + } + } + +out: + free(buf); + return result; +} + /* * Prints all options of a list that have a value to stdout */ |