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/qerror.h"
6 #include "qapi/qmp/qdict.h"
7 #include "qapi/qmp/qlist.h"
8 #include "qemu/error-report.h"
9 #include "qemu/option.h"
10 #include "qemu/config-file.h"
12 static QemuOptsList *vm_config_groups[48];
13 static QemuOptsList *drive_config_groups[5];
15 static QemuOptsList *find_list(QemuOptsList **lists, const char *group,
20 qemu_load_module_for_opts(group);
21 for (i = 0; lists[i] != NULL; i++) {
22 if (strcmp(lists[i]->name, group) == 0)
25 if (lists[i] == NULL) {
26 error_setg(errp, "There is no option group '%s'", group);
31 QemuOptsList *qemu_find_opts(const char *group)
34 Error *local_err = NULL;
36 ret = find_list(vm_config_groups, group, &local_err);
38 error_report_err(local_err);
44 QemuOpts *qemu_find_opts_singleton(const char *group)
49 list = qemu_find_opts(group);
51 opts = qemu_opts_find(list, NULL);
53 opts = qemu_opts_create(list, NULL, 0, &error_abort);
58 static CommandLineParameterInfoList *query_option_descs(const QemuOptDesc *desc)
60 CommandLineParameterInfoList *param_list = NULL;
61 CommandLineParameterInfo *info;
64 for (i = 0; desc[i].name != NULL; i++) {
65 info = g_malloc0(sizeof(*info));
66 info->name = g_strdup(desc[i].name);
68 switch (desc[i].type) {
70 info->type = COMMAND_LINE_PARAMETER_TYPE_STRING;
73 info->type = COMMAND_LINE_PARAMETER_TYPE_BOOLEAN;
76 info->type = COMMAND_LINE_PARAMETER_TYPE_NUMBER;
79 info->type = COMMAND_LINE_PARAMETER_TYPE_SIZE;
84 info->has_help = true;
85 info->help = g_strdup(desc[i].help);
87 if (desc[i].def_value_str) {
88 info->has_q_default = true;
89 info->q_default = g_strdup(desc[i].def_value_str);
92 QAPI_LIST_PREPEND(param_list, info);
98 /* remove repeated entry from the info list */
99 static void cleanup_infolist(CommandLineParameterInfoList *head)
101 CommandLineParameterInfoList *pre_entry, *cur, *del_entry;
106 while (pre_entry != cur->next) {
107 if (!strcmp(pre_entry->value->name, cur->next->value->name)) {
108 del_entry = cur->next;
109 cur->next = cur->next->next;
110 del_entry->next = NULL;
111 qapi_free_CommandLineParameterInfoList(del_entry);
114 pre_entry = pre_entry->next;
120 /* merge the description items of two parameter infolists */
121 static void connect_infolist(CommandLineParameterInfoList *head,
122 CommandLineParameterInfoList *new)
124 CommandLineParameterInfoList *cur;
133 /* access all the local QemuOptsLists for drive option */
134 static CommandLineParameterInfoList *get_drive_infolist(void)
136 CommandLineParameterInfoList *head = NULL, *cur;
139 for (i = 0; drive_config_groups[i] != NULL; i++) {
141 head = query_option_descs(drive_config_groups[i]->desc);
143 cur = query_option_descs(drive_config_groups[i]->desc);
144 connect_infolist(head, cur);
147 cleanup_infolist(head);
152 /* restore machine options that are now machine's properties */
153 static QemuOptsList machine_opts = {
155 .head = QTAILQ_HEAD_INITIALIZER(machine_opts.head),
159 .type = QEMU_OPT_STRING,
160 .help = "emulated machine"
163 .type = QEMU_OPT_STRING,
164 .help = "accelerator list",
166 .name = "kernel_irqchip",
167 .type = QEMU_OPT_BOOL,
168 .help = "use KVM in-kernel irqchip",
170 .name = "kvm_shadow_mem",
171 .type = QEMU_OPT_SIZE,
172 .help = "KVM shadow MMU size",
175 .type = QEMU_OPT_STRING,
176 .help = "Linux kernel image file",
179 .type = QEMU_OPT_STRING,
180 .help = "Linux initial ramdisk file",
183 .type = QEMU_OPT_STRING,
184 .help = "Linux kernel command line",
187 .type = QEMU_OPT_STRING,
188 .help = "Linux kernel device tree file",
191 .type = QEMU_OPT_STRING,
192 .help = "Dump current dtb to a file and quit",
194 .name = "phandle_start",
195 .type = QEMU_OPT_NUMBER,
196 .help = "The first phandle ID we may generate dynamically",
198 .name = "dt_compatible",
199 .type = QEMU_OPT_STRING,
200 .help = "Overrides the \"compatible\" property of the dt root node",
202 .name = "dump-guest-core",
203 .type = QEMU_OPT_BOOL,
204 .help = "Include guest memory in a core dump",
207 .type = QEMU_OPT_BOOL,
208 .help = "enable/disable memory merge support",
211 .type = QEMU_OPT_BOOL,
212 .help = "Set on/off to enable/disable usb",
215 .type = QEMU_OPT_STRING,
216 .help = "firmware image",
219 .type = QEMU_OPT_BOOL,
220 .help = "Set on/off to enable/disable Intel IOMMU (VT-d)",
222 .name = "suppress-vmdesc",
223 .type = QEMU_OPT_BOOL,
224 .help = "Set on to disable self-describing migration",
226 .name = "aes-key-wrap",
227 .type = QEMU_OPT_BOOL,
228 .help = "enable/disable AES key wrapping using the CPACF wrapping key",
230 .name = "dea-key-wrap",
231 .type = QEMU_OPT_BOOL,
232 .help = "enable/disable DEA key wrapping using the CPACF wrapping key",
235 .type = QEMU_OPT_STRING,
236 .help = "Up to 8 chars in set of [A-Za-z0-9. ](lower case chars"
237 " converted to upper case) to pass to machine"
238 " loader, boot manager, and guest kernel",
240 { /* End of list */ }
244 CommandLineOptionInfoList *qmp_query_command_line_options(bool has_option,
248 CommandLineOptionInfoList *conf_list = NULL;
249 CommandLineOptionInfo *info;
252 for (i = 0; vm_config_groups[i] != NULL; i++) {
253 if (!has_option || !strcmp(option, vm_config_groups[i]->name)) {
254 info = g_malloc0(sizeof(*info));
255 info->option = g_strdup(vm_config_groups[i]->name);
256 if (!strcmp("drive", vm_config_groups[i]->name)) {
257 info->parameters = get_drive_infolist();
260 query_option_descs(vm_config_groups[i]->desc);
262 QAPI_LIST_PREPEND(conf_list, info);
266 if (!has_option || !strcmp(option, "machine")) {
267 info = g_malloc0(sizeof(*info));
268 info->option = g_strdup("machine");
269 info->parameters = query_option_descs(machine_opts.desc);
270 QAPI_LIST_PREPEND(conf_list, info);
273 if (conf_list == NULL) {
274 error_setg(errp, "invalid option name: %s", option);
280 QemuOptsList *qemu_find_opts_err(const char *group, Error **errp)
282 return find_list(vm_config_groups, group, errp);
285 void qemu_add_drive_opts(QemuOptsList *list)
289 entries = ARRAY_SIZE(drive_config_groups);
290 entries--; /* keep list NULL terminated */
291 for (i = 0; i < entries; i++) {
292 if (drive_config_groups[i] == NULL) {
293 drive_config_groups[i] = list;
297 fprintf(stderr, "ran out of space in drive_config_groups");
301 void qemu_add_opts(QemuOptsList *list)
305 entries = ARRAY_SIZE(vm_config_groups);
306 entries--; /* keep list NULL terminated */
307 for (i = 0; i < entries; i++) {
308 if (vm_config_groups[i] == NULL) {
309 vm_config_groups[i] = list;
313 fprintf(stderr, "ran out of space in vm_config_groups");
317 /* Returns number of config groups on success, -errno on error */
318 static int qemu_config_foreach(FILE *fp, QEMUConfigCB *cb, void *opaque,
319 const char *fname, Error **errp)
321 char line[1024], prev_group[64], group[64], arg[64], value[1024];
323 Error *local_err = NULL;
325 int res = -EINVAL, lno = 0;
329 while (fgets(line, sizeof(line), fp) != NULL) {
331 if (line[0] == '\n') {
332 /* skip empty lines */
335 if (line[0] == '#') {
339 if (line[0] == '[') {
341 if (sscanf(line, "[%63s \"%63[^\"]\"]", group, value) == 2) {
343 qdict_put_str(qdict, "id", value);
345 } else if (sscanf(line, "[%63[^]]]", group) == 1) {
351 cb(prev_group, prev, opaque, &local_err);
354 error_propagate(errp, local_err);
358 strcpy(prev_group, group);
362 loc_set_file(fname, lno);
364 if (sscanf(line, " %63s = \"%1023[^\"]\"", arg, value) == 2 ||
365 sscanf(line, " %63s = \"\"", arg) == 1) {
368 error_setg(errp, "no group defined");
371 qdict_put_str(qdict, arg, value);
374 error_setg(errp, "parse error");
379 error_setg_errno(errp, errno, "Cannot read config file");
384 cb(group, qdict, opaque, errp);
389 qobject_unref(qdict);
393 void qemu_config_do_parse(const char *group, QDict *qdict, void *opaque, Error **errp)
395 QemuOptsList **lists = opaque;
398 list = find_list(lists, group, errp);
403 qemu_opts_from_qdict(list, qdict, errp);
406 int qemu_config_parse(FILE *fp, QemuOptsList **lists, const char *fname, Error **errp)
408 return qemu_config_foreach(fp, qemu_config_do_parse, lists, fname, errp);
411 int qemu_read_config_file(const char *filename, QEMUConfigCB *cb, Error **errp)
413 FILE *f = fopen(filename, "r");
417 error_setg_file_open(errp, errno, filename);
421 ret = qemu_config_foreach(f, cb, vm_config_groups, filename, errp);
426 static void config_parse_qdict_section(QDict *options, QemuOptsList *opts,
432 size_t orig_size, enum_size;
435 prefix = g_strdup_printf("%s.", opts->name);
436 qdict_extract_subqdict(options, &subqdict, prefix);
438 orig_size = qdict_size(subqdict);
443 subopts = qemu_opts_create(opts, NULL, 0, errp);
448 if (!qemu_opts_absorb_qdict(subopts, subqdict, errp)) {
452 enum_size = qdict_size(subqdict);
453 if (enum_size < orig_size && enum_size) {
454 error_setg(errp, "Unknown option '%s' for [%s]",
455 qdict_first(subqdict)->key, opts->name);
460 /* Multiple, enumerated sections */
461 QListEntry *list_entry;
464 /* Not required anymore */
465 qemu_opts_del(subopts);
467 qdict_array_split(subqdict, &list);
468 if (qdict_size(subqdict)) {
469 error_setg(errp, "Unused option '%s' for [%s]",
470 qdict_first(subqdict)->key, opts->name);
474 QLIST_FOREACH_ENTRY(list, list_entry) {
475 QDict *section = qobject_to(QDict, qlist_entry_obj(list_entry));
479 error_setg(errp, "[%s] section (index %u) does not consist of "
480 "keys", opts->name, i);
484 opt_name = g_strdup_printf("%s.%u", opts->name, i++);
485 subopts = qemu_opts_create(opts, opt_name, 1, errp);
491 if (!qemu_opts_absorb_qdict(subopts, section, errp)) {
492 qemu_opts_del(subopts);
496 if (qdict_size(section)) {
497 error_setg(errp, "[%s] section doesn't support the option '%s'",
498 opts->name, qdict_first(section)->key);
499 qemu_opts_del(subopts);
506 qobject_unref(subqdict);
510 void qemu_config_parse_qdict(QDict *options, QemuOptsList **lists,
514 Error *local_err = NULL;
516 for (i = 0; lists[i]; i++) {
517 config_parse_qdict_section(options, lists[i], &local_err);
519 error_propagate(errp, local_err);