1 #include "qemu/osdep.h"
2 #include "block/qdict.h" /* for qdict_extract_subqdict() */
3 #include "qapi/error.h"
4 #include "qapi/qapi-commands-misc.h"
5 #include "qapi/qmp/qdict.h"
6 #include "qapi/qmp/qlist.h"
7 #include "qemu/error-report.h"
8 #include "qemu/option.h"
9 #include "qemu/config-file.h"
11 static QemuOptsList *vm_config_groups[48];
12 static QemuOptsList *drive_config_groups[5];
14 static QemuOptsList *find_list(QemuOptsList **lists, const char *group,
19 for (i = 0; lists[i] != NULL; i++) {
20 if (strcmp(lists[i]->name, group) == 0)
23 if (lists[i] == NULL) {
24 error_setg(errp, "There is no option group '%s'", group);
29 QemuOptsList *qemu_find_opts(const char *group)
32 Error *local_err = NULL;
34 ret = find_list(vm_config_groups, group, &local_err);
36 error_report_err(local_err);
42 QemuOpts *qemu_find_opts_singleton(const char *group)
47 list = qemu_find_opts(group);
49 opts = qemu_opts_find(list, NULL);
51 opts = qemu_opts_create(list, NULL, 0, &error_abort);
56 static CommandLineParameterInfoList *query_option_descs(const QemuOptDesc *desc)
58 CommandLineParameterInfoList *param_list = NULL;
59 CommandLineParameterInfo *info;
62 for (i = 0; desc[i].name != NULL; i++) {
63 info = g_malloc0(sizeof(*info));
64 info->name = g_strdup(desc[i].name);
66 switch (desc[i].type) {
68 info->type = COMMAND_LINE_PARAMETER_TYPE_STRING;
71 info->type = COMMAND_LINE_PARAMETER_TYPE_BOOLEAN;
74 info->type = COMMAND_LINE_PARAMETER_TYPE_NUMBER;
77 info->type = COMMAND_LINE_PARAMETER_TYPE_SIZE;
82 info->has_help = true;
83 info->help = g_strdup(desc[i].help);
85 if (desc[i].def_value_str) {
86 info->has_q_default = true;
87 info->q_default = g_strdup(desc[i].def_value_str);
90 QAPI_LIST_PREPEND(param_list, info);
96 /* remove repeated entry from the info list */
97 static void cleanup_infolist(CommandLineParameterInfoList *head)
99 CommandLineParameterInfoList *pre_entry, *cur, *del_entry;
104 while (pre_entry != cur->next) {
105 if (!strcmp(pre_entry->value->name, cur->next->value->name)) {
106 del_entry = cur->next;
107 cur->next = cur->next->next;
108 del_entry->next = NULL;
109 qapi_free_CommandLineParameterInfoList(del_entry);
112 pre_entry = pre_entry->next;
118 /* merge the description items of two parameter infolists */
119 static void connect_infolist(CommandLineParameterInfoList *head,
120 CommandLineParameterInfoList *new)
122 CommandLineParameterInfoList *cur;
131 /* access all the local QemuOptsLists for drive option */
132 static CommandLineParameterInfoList *get_drive_infolist(void)
134 CommandLineParameterInfoList *head = NULL, *cur;
137 for (i = 0; drive_config_groups[i] != NULL; i++) {
139 head = query_option_descs(drive_config_groups[i]->desc);
141 cur = query_option_descs(drive_config_groups[i]->desc);
142 connect_infolist(head, cur);
145 cleanup_infolist(head);
150 /* restore machine options that are now machine's properties */
151 static QemuOptsList machine_opts = {
153 .head = QTAILQ_HEAD_INITIALIZER(machine_opts.head),
157 .type = QEMU_OPT_STRING,
158 .help = "emulated machine"
161 .type = QEMU_OPT_STRING,
162 .help = "accelerator list",
164 .name = "kernel_irqchip",
165 .type = QEMU_OPT_BOOL,
166 .help = "use KVM in-kernel irqchip",
168 .name = "kvm_shadow_mem",
169 .type = QEMU_OPT_SIZE,
170 .help = "KVM shadow MMU size",
173 .type = QEMU_OPT_STRING,
174 .help = "Linux kernel image file",
177 .type = QEMU_OPT_STRING,
178 .help = "Linux initial ramdisk file",
181 .type = QEMU_OPT_STRING,
182 .help = "Linux kernel command line",
185 .type = QEMU_OPT_STRING,
186 .help = "Linux kernel device tree file",
189 .type = QEMU_OPT_STRING,
190 .help = "Dump current dtb to a file and quit",
192 .name = "phandle_start",
193 .type = QEMU_OPT_NUMBER,
194 .help = "The first phandle ID we may generate dynamically",
196 .name = "dt_compatible",
197 .type = QEMU_OPT_STRING,
198 .help = "Overrides the \"compatible\" property of the dt root node",
200 .name = "dump-guest-core",
201 .type = QEMU_OPT_BOOL,
202 .help = "Include guest memory in a core dump",
205 .type = QEMU_OPT_BOOL,
206 .help = "enable/disable memory merge support",
209 .type = QEMU_OPT_BOOL,
210 .help = "Set on/off to enable/disable usb",
213 .type = QEMU_OPT_STRING,
214 .help = "firmware image",
217 .type = QEMU_OPT_BOOL,
218 .help = "Set on/off to enable/disable Intel IOMMU (VT-d)",
220 .name = "suppress-vmdesc",
221 .type = QEMU_OPT_BOOL,
222 .help = "Set on to disable self-describing migration",
224 .name = "aes-key-wrap",
225 .type = QEMU_OPT_BOOL,
226 .help = "enable/disable AES key wrapping using the CPACF wrapping key",
228 .name = "dea-key-wrap",
229 .type = QEMU_OPT_BOOL,
230 .help = "enable/disable DEA key wrapping using the CPACF wrapping key",
233 .type = QEMU_OPT_STRING,
234 .help = "Up to 8 chars in set of [A-Za-z0-9. ](lower case chars"
235 " converted to upper case) to pass to machine"
236 " loader, boot manager, and guest kernel",
238 { /* End of list */ }
242 CommandLineOptionInfoList *qmp_query_command_line_options(bool has_option,
246 CommandLineOptionInfoList *conf_list = NULL;
247 CommandLineOptionInfo *info;
250 for (i = 0; vm_config_groups[i] != NULL; i++) {
251 if (!has_option || !strcmp(option, vm_config_groups[i]->name)) {
252 info = g_malloc0(sizeof(*info));
253 info->option = g_strdup(vm_config_groups[i]->name);
254 if (!strcmp("drive", vm_config_groups[i]->name)) {
255 info->parameters = get_drive_infolist();
256 } else if (!strcmp("machine", vm_config_groups[i]->name)) {
257 info->parameters = query_option_descs(machine_opts.desc);
260 query_option_descs(vm_config_groups[i]->desc);
262 QAPI_LIST_PREPEND(conf_list, info);
266 if (conf_list == NULL) {
267 error_setg(errp, "invalid option name: %s", option);
273 QemuOptsList *qemu_find_opts_err(const char *group, Error **errp)
275 return find_list(vm_config_groups, group, errp);
278 void qemu_add_drive_opts(QemuOptsList *list)
282 entries = ARRAY_SIZE(drive_config_groups);
283 entries--; /* keep list NULL terminated */
284 for (i = 0; i < entries; i++) {
285 if (drive_config_groups[i] == NULL) {
286 drive_config_groups[i] = list;
290 fprintf(stderr, "ran out of space in drive_config_groups");
294 void qemu_add_opts(QemuOptsList *list)
298 entries = ARRAY_SIZE(vm_config_groups);
299 entries--; /* keep list NULL terminated */
300 for (i = 0; i < entries; i++) {
301 if (vm_config_groups[i] == NULL) {
302 vm_config_groups[i] = list;
306 fprintf(stderr, "ran out of space in vm_config_groups");
310 struct ConfigWriteData {
315 static int config_write_opt(void *opaque, const char *name, const char *value,
318 struct ConfigWriteData *data = opaque;
320 fprintf(data->fp, " %s = \"%s\"\n", name, value);
324 static int config_write_opts(void *opaque, QemuOpts *opts, Error **errp)
326 struct ConfigWriteData *data = opaque;
327 const char *id = qemu_opts_id(opts);
330 fprintf(data->fp, "[%s \"%s\"]\n", data->list->name, id);
332 fprintf(data->fp, "[%s]\n", data->list->name);
334 qemu_opt_foreach(opts, config_write_opt, data, NULL);
335 fprintf(data->fp, "\n");
339 void qemu_config_write(FILE *fp)
341 struct ConfigWriteData data = { .fp = fp };
342 QemuOptsList **lists = vm_config_groups;
345 fprintf(fp, "# qemu config file\n\n");
346 for (i = 0; lists[i] != NULL; i++) {
347 data.list = lists[i];
348 qemu_opts_foreach(data.list, config_write_opts, &data, NULL);
352 /* Returns number of config groups on success, -errno on error */
353 int qemu_config_parse(FILE *fp, QemuOptsList **lists, const char *fname)
355 char line[1024], group[64], id[64], arg[64], value[1024];
357 QemuOptsList *list = NULL;
358 Error *local_err = NULL;
359 QemuOpts *opts = NULL;
360 int res = -EINVAL, lno = 0;
364 while (fgets(line, sizeof(line), fp) != NULL) {
365 loc_set_file(fname, ++lno);
366 if (line[0] == '\n') {
367 /* skip empty lines */
370 if (line[0] == '#') {
374 if (sscanf(line, "[%63s \"%63[^\"]\"]", group, id) == 2) {
376 list = find_list(lists, group, &local_err);
378 error_report_err(local_err);
381 opts = qemu_opts_create(list, id, 1, NULL);
385 if (sscanf(line, "[%63[^]]]", group) == 1) {
386 /* group without id */
387 list = find_list(lists, group, &local_err);
389 error_report_err(local_err);
392 opts = qemu_opts_create(list, NULL, 0, &error_abort);
397 if (sscanf(line, " %63s = \"%1023[^\"]\"", arg, value) == 2 ||
398 sscanf(line, " %63s = \"\"", arg) == 1) {
401 error_report("no group defined");
404 if (!qemu_opt_set(opts, arg, value, &local_err)) {
405 error_report_err(local_err);
410 error_report("parse error");
414 error_report("error reading file");
423 int qemu_read_config_file(const char *filename)
425 FILE *f = fopen(filename, "r");
432 ret = qemu_config_parse(f, vm_config_groups, filename);
437 static void config_parse_qdict_section(QDict *options, QemuOptsList *opts,
443 size_t orig_size, enum_size;
446 prefix = g_strdup_printf("%s.", opts->name);
447 qdict_extract_subqdict(options, &subqdict, prefix);
449 orig_size = qdict_size(subqdict);
454 subopts = qemu_opts_create(opts, NULL, 0, errp);
459 if (!qemu_opts_absorb_qdict(subopts, subqdict, errp)) {
463 enum_size = qdict_size(subqdict);
464 if (enum_size < orig_size && enum_size) {
465 error_setg(errp, "Unknown option '%s' for [%s]",
466 qdict_first(subqdict)->key, opts->name);
471 /* Multiple, enumerated sections */
472 QListEntry *list_entry;
475 /* Not required anymore */
476 qemu_opts_del(subopts);
478 qdict_array_split(subqdict, &list);
479 if (qdict_size(subqdict)) {
480 error_setg(errp, "Unused option '%s' for [%s]",
481 qdict_first(subqdict)->key, opts->name);
485 QLIST_FOREACH_ENTRY(list, list_entry) {
486 QDict *section = qobject_to(QDict, qlist_entry_obj(list_entry));
490 error_setg(errp, "[%s] section (index %u) does not consist of "
491 "keys", opts->name, i);
495 opt_name = g_strdup_printf("%s.%u", opts->name, i++);
496 subopts = qemu_opts_create(opts, opt_name, 1, errp);
502 if (!qemu_opts_absorb_qdict(subopts, section, errp)) {
503 qemu_opts_del(subopts);
507 if (qdict_size(section)) {
508 error_setg(errp, "[%s] section doesn't support the option '%s'",
509 opts->name, qdict_first(section)->key);
510 qemu_opts_del(subopts);
517 qobject_unref(subqdict);
521 void qemu_config_parse_qdict(QDict *options, QemuOptsList **lists,
525 Error *local_err = NULL;
527 for (i = 0; lists[i]; i++) {
528 config_parse_qdict_section(options, lists[i], &local_err);
530 error_propagate(errp, local_err);