2009-07-31 12:25:35 +02:00
|
|
|
#include "qemu-common.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/error-report.h"
|
|
|
|
#include "qemu/option.h"
|
|
|
|
#include "qemu/config-file.h"
|
2013-02-04 11:37:52 +01:00
|
|
|
#include "qapi/qmp/qerror.h"
|
2009-12-08 13:11:34 +01:00
|
|
|
#include "hw/qdev.h"
|
2012-12-17 18:19:43 +01:00
|
|
|
#include "qapi/error.h"
|
2013-04-25 11:50:35 +02:00
|
|
|
#include "qmp-commands.h"
|
2009-07-31 12:25:35 +02:00
|
|
|
|
2012-11-26 16:03:42 +01:00
|
|
|
static QemuOptsList *vm_config_groups[32];
|
2013-11-09 05:15:47 +01:00
|
|
|
static QemuOptsList *drive_config_groups[4];
|
2009-07-31 12:25:36 +02:00
|
|
|
|
2012-03-28 19:14:17 +02:00
|
|
|
static QemuOptsList *find_list(QemuOptsList **lists, const char *group,
|
|
|
|
Error **errp)
|
2009-10-14 10:39:25 +02:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; lists[i] != NULL; i++) {
|
|
|
|
if (strcmp(lists[i]->name, group) == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (lists[i] == NULL) {
|
2012-03-28 19:14:17 +02:00
|
|
|
error_set(errp, QERR_INVALID_OPTION_GROUP, group);
|
2009-10-14 10:39:25 +02:00
|
|
|
}
|
|
|
|
return lists[i];
|
|
|
|
}
|
|
|
|
|
2010-03-05 18:21:56 +01:00
|
|
|
QemuOptsList *qemu_find_opts(const char *group)
|
|
|
|
{
|
2012-03-28 19:14:17 +02:00
|
|
|
QemuOptsList *ret;
|
|
|
|
Error *local_err = NULL;
|
|
|
|
|
|
|
|
ret = find_list(vm_config_groups, group, &local_err);
|
|
|
|
if (error_is_set(&local_err)) {
|
error: Strip trailing '\n' from error string arguments (again)
Commit 6daf194d and be62a2eb got rid of a bunch, but they keep coming
back. Tracked down with this Coccinelle semantic patch:
@r@
expression err, eno, cls, fmt;
position p;
@@
(
error_report(fmt, ...)@p
|
error_set(err, cls, fmt, ...)@p
|
error_set_errno(err, eno, cls, fmt, ...)@p
|
error_setg(err, fmt, ...)@p
|
error_setg_errno(err, eno, fmt, ...)@p
)
@script:python@
fmt << r.fmt;
p << r.p;
@@
if "\\n" in str(fmt):
print "%s:%s:%s:%s" % (p[0].file, p[0].line, p[0].column, fmt)
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-id: 1360354939-10994-4-git-send-email-armbru@redhat.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
2013-02-08 21:22:16 +01:00
|
|
|
error_report("%s", error_get_pretty(local_err));
|
2012-03-28 19:14:17 +02:00
|
|
|
error_free(local_err);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2010-03-05 18:21:56 +01:00
|
|
|
}
|
|
|
|
|
2013-04-25 11:50:35 +02:00
|
|
|
static CommandLineParameterInfoList *query_option_descs(const QemuOptDesc *desc)
|
|
|
|
{
|
|
|
|
CommandLineParameterInfoList *param_list = NULL, *entry;
|
|
|
|
CommandLineParameterInfo *info;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; desc[i].name != NULL; i++) {
|
|
|
|
info = g_malloc0(sizeof(*info));
|
|
|
|
info->name = g_strdup(desc[i].name);
|
|
|
|
|
|
|
|
switch (desc[i].type) {
|
|
|
|
case QEMU_OPT_STRING:
|
|
|
|
info->type = COMMAND_LINE_PARAMETER_TYPE_STRING;
|
|
|
|
break;
|
|
|
|
case QEMU_OPT_BOOL:
|
|
|
|
info->type = COMMAND_LINE_PARAMETER_TYPE_BOOLEAN;
|
|
|
|
break;
|
|
|
|
case QEMU_OPT_NUMBER:
|
|
|
|
info->type = COMMAND_LINE_PARAMETER_TYPE_NUMBER;
|
|
|
|
break;
|
|
|
|
case QEMU_OPT_SIZE:
|
|
|
|
info->type = COMMAND_LINE_PARAMETER_TYPE_SIZE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (desc[i].help) {
|
|
|
|
info->has_help = true;
|
|
|
|
info->help = g_strdup(desc[i].help);
|
|
|
|
}
|
|
|
|
|
|
|
|
entry = g_malloc0(sizeof(*entry));
|
|
|
|
entry->value = info;
|
|
|
|
entry->next = param_list;
|
|
|
|
param_list = entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
return param_list;
|
|
|
|
}
|
|
|
|
|
2013-11-09 05:15:47 +01:00
|
|
|
/* remove repeated entry from the info list */
|
|
|
|
static void cleanup_infolist(CommandLineParameterInfoList *head)
|
|
|
|
{
|
|
|
|
CommandLineParameterInfoList *pre_entry, *cur, *del_entry;
|
|
|
|
|
|
|
|
cur = head;
|
|
|
|
while (cur->next) {
|
|
|
|
pre_entry = head;
|
|
|
|
while (pre_entry != cur->next) {
|
|
|
|
if (!strcmp(pre_entry->value->name, cur->next->value->name)) {
|
|
|
|
del_entry = cur->next;
|
|
|
|
cur->next = cur->next->next;
|
|
|
|
g_free(del_entry);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
pre_entry = pre_entry->next;
|
|
|
|
}
|
|
|
|
cur = cur->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* merge the description items of two parameter infolists */
|
|
|
|
static void connect_infolist(CommandLineParameterInfoList *head,
|
|
|
|
CommandLineParameterInfoList *new)
|
|
|
|
{
|
|
|
|
CommandLineParameterInfoList *cur;
|
|
|
|
|
|
|
|
cur = head;
|
|
|
|
while (cur->next) {
|
|
|
|
cur = cur->next;
|
|
|
|
}
|
|
|
|
cur->next = new;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* access all the local QemuOptsLists for drive option */
|
|
|
|
static CommandLineParameterInfoList *get_drive_infolist(void)
|
|
|
|
{
|
|
|
|
CommandLineParameterInfoList *head = NULL, *cur;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; drive_config_groups[i] != NULL; i++) {
|
|
|
|
if (!head) {
|
|
|
|
head = query_option_descs(drive_config_groups[i]->desc);
|
|
|
|
} else {
|
|
|
|
cur = query_option_descs(drive_config_groups[i]->desc);
|
|
|
|
connect_infolist(head, cur);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cleanup_infolist(head);
|
|
|
|
|
|
|
|
return head;
|
|
|
|
}
|
|
|
|
|
2013-04-25 11:50:35 +02:00
|
|
|
CommandLineOptionInfoList *qmp_query_command_line_options(bool has_option,
|
|
|
|
const char *option,
|
|
|
|
Error **errp)
|
|
|
|
{
|
|
|
|
CommandLineOptionInfoList *conf_list = NULL, *entry;
|
|
|
|
CommandLineOptionInfo *info;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; vm_config_groups[i] != NULL; i++) {
|
|
|
|
if (!has_option || !strcmp(option, vm_config_groups[i]->name)) {
|
|
|
|
info = g_malloc0(sizeof(*info));
|
|
|
|
info->option = g_strdup(vm_config_groups[i]->name);
|
2013-11-09 05:15:47 +01:00
|
|
|
if (!strcmp("drive", vm_config_groups[i]->name)) {
|
|
|
|
info->parameters = get_drive_infolist();
|
|
|
|
} else {
|
|
|
|
info->parameters =
|
|
|
|
query_option_descs(vm_config_groups[i]->desc);
|
|
|
|
}
|
2013-04-25 11:50:35 +02:00
|
|
|
entry = g_malloc0(sizeof(*entry));
|
|
|
|
entry->value = info;
|
|
|
|
entry->next = conf_list;
|
|
|
|
conf_list = entry;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (conf_list == NULL) {
|
|
|
|
error_setg(errp, "invalid option name: %s", option);
|
|
|
|
}
|
|
|
|
|
|
|
|
return conf_list;
|
|
|
|
}
|
|
|
|
|
2012-03-28 19:16:37 +02:00
|
|
|
QemuOptsList *qemu_find_opts_err(const char *group, Error **errp)
|
|
|
|
{
|
|
|
|
return find_list(vm_config_groups, group, errp);
|
|
|
|
}
|
|
|
|
|
2013-11-09 05:15:47 +01:00
|
|
|
void qemu_add_drive_opts(QemuOptsList *list)
|
|
|
|
{
|
|
|
|
int entries, i;
|
|
|
|
|
|
|
|
entries = ARRAY_SIZE(drive_config_groups);
|
|
|
|
entries--; /* keep list NULL terminated */
|
|
|
|
for (i = 0; i < entries; i++) {
|
|
|
|
if (drive_config_groups[i] == NULL) {
|
|
|
|
drive_config_groups[i] = list;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fprintf(stderr, "ran out of space in drive_config_groups");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
2010-08-20 13:52:00 +02:00
|
|
|
void qemu_add_opts(QemuOptsList *list)
|
|
|
|
{
|
|
|
|
int entries, i;
|
|
|
|
|
|
|
|
entries = ARRAY_SIZE(vm_config_groups);
|
|
|
|
entries--; /* keep list NULL terminated */
|
|
|
|
for (i = 0; i < entries; i++) {
|
|
|
|
if (vm_config_groups[i] == NULL) {
|
|
|
|
vm_config_groups[i] = list;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fprintf(stderr, "ran out of space in vm_config_groups");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
2009-07-31 12:25:36 +02:00
|
|
|
int qemu_set_option(const char *str)
|
|
|
|
{
|
|
|
|
char group[64], id[64], arg[64];
|
2009-10-14 10:39:25 +02:00
|
|
|
QemuOptsList *list;
|
2009-07-31 12:25:36 +02:00
|
|
|
QemuOpts *opts;
|
2009-10-14 10:39:25 +02:00
|
|
|
int rc, offset;
|
2009-07-31 12:25:36 +02:00
|
|
|
|
|
|
|
rc = sscanf(str, "%63[^.].%63[^.].%63[^=]%n", group, id, arg, &offset);
|
|
|
|
if (rc < 3 || str[offset] != '=') {
|
2010-02-18 17:25:24 +01:00
|
|
|
error_report("can't parse: \"%s\"", str);
|
2009-07-31 12:25:36 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2010-02-10 20:09:14 +01:00
|
|
|
list = qemu_find_opts(group);
|
2009-10-14 10:39:25 +02:00
|
|
|
if (list == NULL) {
|
2009-07-31 12:25:36 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2009-10-14 10:39:25 +02:00
|
|
|
opts = qemu_opts_find(list, id);
|
2009-07-31 12:25:36 +02:00
|
|
|
if (!opts) {
|
2010-02-18 17:25:24 +01:00
|
|
|
error_report("there is no %s \"%s\" defined",
|
|
|
|
list->name, id);
|
2009-07-31 12:25:36 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2009-09-23 12:24:05 +02:00
|
|
|
if (qemu_opt_set(opts, arg, str+offset+1) == -1) {
|
2009-07-31 12:25:36 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-10-14 10:39:26 +02:00
|
|
|
struct ConfigWriteData {
|
|
|
|
QemuOptsList *list;
|
|
|
|
FILE *fp;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int config_write_opt(const char *name, const char *value, void *opaque)
|
|
|
|
{
|
|
|
|
struct ConfigWriteData *data = opaque;
|
|
|
|
|
|
|
|
fprintf(data->fp, " %s = \"%s\"\n", name, value);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int config_write_opts(QemuOpts *opts, void *opaque)
|
|
|
|
{
|
|
|
|
struct ConfigWriteData *data = opaque;
|
|
|
|
const char *id = qemu_opts_id(opts);
|
|
|
|
|
|
|
|
if (id) {
|
|
|
|
fprintf(data->fp, "[%s \"%s\"]\n", data->list->name, id);
|
|
|
|
} else {
|
|
|
|
fprintf(data->fp, "[%s]\n", data->list->name);
|
|
|
|
}
|
|
|
|
qemu_opt_foreach(opts, config_write_opt, data, 0);
|
|
|
|
fprintf(data->fp, "\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void qemu_config_write(FILE *fp)
|
|
|
|
{
|
|
|
|
struct ConfigWriteData data = { .fp = fp };
|
2010-03-05 18:21:56 +01:00
|
|
|
QemuOptsList **lists = vm_config_groups;
|
2009-10-14 10:39:26 +02:00
|
|
|
int i;
|
|
|
|
|
|
|
|
fprintf(fp, "# qemu config file\n\n");
|
|
|
|
for (i = 0; lists[i] != NULL; i++) {
|
|
|
|
data.list = lists[i];
|
|
|
|
qemu_opts_foreach(data.list, config_write_opts, &data, 0);
|
|
|
|
}
|
|
|
|
}
|
2009-10-14 10:39:27 +02:00
|
|
|
|
2010-03-05 18:21:56 +01:00
|
|
|
int qemu_config_parse(FILE *fp, QemuOptsList **lists, const char *fname)
|
2009-10-14 10:39:27 +02:00
|
|
|
{
|
|
|
|
char line[1024], group[64], id[64], arg[64], value[1024];
|
2010-02-18 19:48:33 +01:00
|
|
|
Location loc;
|
2009-10-14 10:39:27 +02:00
|
|
|
QemuOptsList *list = NULL;
|
2012-03-28 19:14:17 +02:00
|
|
|
Error *local_err = NULL;
|
2009-10-14 10:39:27 +02:00
|
|
|
QemuOpts *opts = NULL;
|
2010-02-18 19:48:33 +01:00
|
|
|
int res = -1, lno = 0;
|
2009-10-14 10:39:27 +02:00
|
|
|
|
2010-02-18 19:48:33 +01:00
|
|
|
loc_push_none(&loc);
|
2009-10-14 10:39:27 +02:00
|
|
|
while (fgets(line, sizeof(line), fp) != NULL) {
|
2010-02-18 19:48:33 +01:00
|
|
|
loc_set_file(fname, ++lno);
|
2009-10-14 10:39:27 +02:00
|
|
|
if (line[0] == '\n') {
|
|
|
|
/* skip empty lines */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (line[0] == '#') {
|
|
|
|
/* comment */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (sscanf(line, "[%63s \"%63[^\"]\"]", group, id) == 2) {
|
|
|
|
/* group with id */
|
2012-03-28 19:14:17 +02:00
|
|
|
list = find_list(lists, group, &local_err);
|
|
|
|
if (error_is_set(&local_err)) {
|
error: Strip trailing '\n' from error string arguments (again)
Commit 6daf194d and be62a2eb got rid of a bunch, but they keep coming
back. Tracked down with this Coccinelle semantic patch:
@r@
expression err, eno, cls, fmt;
position p;
@@
(
error_report(fmt, ...)@p
|
error_set(err, cls, fmt, ...)@p
|
error_set_errno(err, eno, cls, fmt, ...)@p
|
error_setg(err, fmt, ...)@p
|
error_setg_errno(err, eno, fmt, ...)@p
)
@script:python@
fmt << r.fmt;
p << r.p;
@@
if "\\n" in str(fmt):
print "%s:%s:%s:%s" % (p[0].file, p[0].line, p[0].column, fmt)
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-id: 1360354939-10994-4-git-send-email-armbru@redhat.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
2013-02-08 21:22:16 +01:00
|
|
|
error_report("%s", error_get_pretty(local_err));
|
2012-03-28 19:14:17 +02:00
|
|
|
error_free(local_err);
|
2010-02-18 19:48:33 +01:00
|
|
|
goto out;
|
2012-03-28 19:14:17 +02:00
|
|
|
}
|
2012-03-20 19:51:57 +01:00
|
|
|
opts = qemu_opts_create(list, id, 1, NULL);
|
2009-10-14 10:39:27 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (sscanf(line, "[%63[^]]]", group) == 1) {
|
|
|
|
/* group without id */
|
2012-03-28 19:14:17 +02:00
|
|
|
list = find_list(lists, group, &local_err);
|
|
|
|
if (error_is_set(&local_err)) {
|
error: Strip trailing '\n' from error string arguments (again)
Commit 6daf194d and be62a2eb got rid of a bunch, but they keep coming
back. Tracked down with this Coccinelle semantic patch:
@r@
expression err, eno, cls, fmt;
position p;
@@
(
error_report(fmt, ...)@p
|
error_set(err, cls, fmt, ...)@p
|
error_set_errno(err, eno, cls, fmt, ...)@p
|
error_setg(err, fmt, ...)@p
|
error_setg_errno(err, eno, fmt, ...)@p
)
@script:python@
fmt << r.fmt;
p << r.p;
@@
if "\\n" in str(fmt):
print "%s:%s:%s:%s" % (p[0].file, p[0].line, p[0].column, fmt)
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-id: 1360354939-10994-4-git-send-email-armbru@redhat.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
2013-02-08 21:22:16 +01:00
|
|
|
error_report("%s", error_get_pretty(local_err));
|
2012-03-28 19:14:17 +02:00
|
|
|
error_free(local_err);
|
2010-02-18 19:48:33 +01:00
|
|
|
goto out;
|
2012-03-28 19:14:17 +02:00
|
|
|
}
|
2014-01-02 03:49:17 +01:00
|
|
|
opts = qemu_opts_create(list, NULL, 0, &error_abort);
|
2009-10-14 10:39:27 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (sscanf(line, " %63s = \"%1023[^\"]\"", arg, value) == 2) {
|
|
|
|
/* arg = value */
|
|
|
|
if (opts == NULL) {
|
2010-02-18 19:48:33 +01:00
|
|
|
error_report("no group defined");
|
|
|
|
goto out;
|
2009-10-14 10:39:27 +02:00
|
|
|
}
|
|
|
|
if (qemu_opt_set(opts, arg, value) != 0) {
|
2010-02-18 19:48:33 +01:00
|
|
|
goto out;
|
2009-10-14 10:39:27 +02:00
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
2010-02-18 19:48:33 +01:00
|
|
|
error_report("parse error");
|
|
|
|
goto out;
|
2009-10-14 10:39:27 +02:00
|
|
|
}
|
2010-02-18 19:56:01 +01:00
|
|
|
if (ferror(fp)) {
|
|
|
|
error_report("error reading file");
|
|
|
|
goto out;
|
|
|
|
}
|
2010-02-18 19:48:33 +01:00
|
|
|
res = 0;
|
|
|
|
out:
|
|
|
|
loc_pop(&loc);
|
|
|
|
return res;
|
2009-10-14 10:39:27 +02:00
|
|
|
}
|
2010-03-05 17:25:55 +01:00
|
|
|
|
|
|
|
int qemu_read_config_file(const char *filename)
|
|
|
|
{
|
|
|
|
FILE *f = fopen(filename, "r");
|
2010-05-17 10:36:47 +02:00
|
|
|
int ret;
|
|
|
|
|
2010-03-05 17:25:55 +01:00
|
|
|
if (f == NULL) {
|
|
|
|
return -errno;
|
|
|
|
}
|
|
|
|
|
2010-05-17 10:36:47 +02:00
|
|
|
ret = qemu_config_parse(f, vm_config_groups, filename);
|
2010-03-05 17:25:55 +01:00
|
|
|
fclose(f);
|
|
|
|
|
2010-05-17 10:36:47 +02:00
|
|
|
if (ret == 0) {
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2010-03-05 17:25:55 +01:00
|
|
|
}
|
2013-12-20 19:28:05 +01:00
|
|
|
|
|
|
|
static void config_parse_qdict_section(QDict *options, QemuOptsList *opts,
|
|
|
|
Error **errp)
|
|
|
|
{
|
|
|
|
QemuOpts *subopts;
|
|
|
|
QDict *subqdict;
|
|
|
|
QList *list = NULL;
|
|
|
|
Error *local_err = NULL;
|
|
|
|
size_t orig_size, enum_size;
|
|
|
|
char *prefix;
|
|
|
|
|
|
|
|
prefix = g_strdup_printf("%s.", opts->name);
|
|
|
|
qdict_extract_subqdict(options, &subqdict, prefix);
|
|
|
|
g_free(prefix);
|
|
|
|
orig_size = qdict_size(subqdict);
|
|
|
|
if (!orig_size) {
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
subopts = qemu_opts_create(opts, NULL, 0, &local_err);
|
|
|
|
if (error_is_set(&local_err)) {
|
|
|
|
error_propagate(errp, local_err);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
qemu_opts_absorb_qdict(subopts, subqdict, &local_err);
|
|
|
|
if (error_is_set(&local_err)) {
|
|
|
|
error_propagate(errp, local_err);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum_size = qdict_size(subqdict);
|
|
|
|
if (enum_size < orig_size && enum_size) {
|
|
|
|
error_setg(errp, "Unknown option '%s' for [%s]",
|
|
|
|
qdict_first(subqdict)->key, opts->name);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (enum_size) {
|
|
|
|
/* Multiple, enumerated sections */
|
|
|
|
QListEntry *list_entry;
|
|
|
|
unsigned i = 0;
|
|
|
|
|
|
|
|
/* Not required anymore */
|
|
|
|
qemu_opts_del(subopts);
|
|
|
|
|
|
|
|
qdict_array_split(subqdict, &list);
|
|
|
|
if (qdict_size(subqdict)) {
|
|
|
|
error_setg(errp, "Unused option '%s' for [%s]",
|
|
|
|
qdict_first(subqdict)->key, opts->name);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
QLIST_FOREACH_ENTRY(list, list_entry) {
|
|
|
|
QDict *section = qobject_to_qdict(qlist_entry_obj(list_entry));
|
|
|
|
char *opt_name;
|
|
|
|
|
|
|
|
opt_name = g_strdup_printf("%s.%u", opts->name, i++);
|
|
|
|
subopts = qemu_opts_create(opts, opt_name, 1, &local_err);
|
|
|
|
g_free(opt_name);
|
|
|
|
if (error_is_set(&local_err)) {
|
|
|
|
error_propagate(errp, local_err);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
qemu_opts_absorb_qdict(subopts, section, &local_err);
|
|
|
|
if (error_is_set(&local_err)) {
|
|
|
|
error_propagate(errp, local_err);
|
|
|
|
qemu_opts_del(subopts);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (qdict_size(section)) {
|
|
|
|
error_setg(errp, "[%s] section doesn't support the option '%s'",
|
|
|
|
opts->name, qdict_first(section)->key);
|
|
|
|
qemu_opts_del(subopts);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
QDECREF(subqdict);
|
|
|
|
QDECREF(list);
|
|
|
|
}
|
|
|
|
|
|
|
|
void qemu_config_parse_qdict(QDict *options, QemuOptsList **lists,
|
|
|
|
Error **errp)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
Error *local_err = NULL;
|
|
|
|
|
|
|
|
for (i = 0; lists[i]; i++) {
|
|
|
|
config_parse_qdict_section(options, lists[i], &local_err);
|
|
|
|
if (error_is_set(&local_err)) {
|
|
|
|
error_propagate(errp, local_err);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|