audio: propagate Error * out of audio_init
[qemu/ar7.git] / softmmu / vl.c
blob98e071e63bb626bccee0b84041711f0dc7bf9f58
1 /*
2 * QEMU System Emulator
4 * Copyright (c) 2003-2008 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
25 #include "qemu/osdep.h"
26 #include "qemu/help-texts.h"
27 #include "qemu/datadir.h"
28 #include "qemu/units.h"
29 #include "exec/cpu-common.h"
30 #include "exec/page-vary.h"
31 #include "hw/qdev-properties.h"
32 #include "qapi/compat-policy.h"
33 #include "qapi/error.h"
34 #include "qapi/qmp/qdict.h"
35 #include "qapi/qmp/qstring.h"
36 #include "qapi/qmp/qjson.h"
37 #include "qemu-version.h"
38 #include "qemu/cutils.h"
39 #include "qemu/help_option.h"
40 #include "qemu/hw-version.h"
41 #include "qemu/uuid.h"
42 #include "sysemu/reset.h"
43 #include "sysemu/runstate.h"
44 #include "sysemu/runstate-action.h"
45 #include "sysemu/seccomp.h"
46 #include "sysemu/tcg.h"
47 #include "sysemu/xen.h"
49 #include "qemu/error-report.h"
50 #include "qemu/sockets.h"
51 #include "qemu/accel.h"
52 #include "qemu/async-teardown.h"
53 #include "hw/usb.h"
54 #include "hw/isa/isa.h"
55 #include "hw/scsi/scsi.h"
56 #include "hw/display/vga.h"
57 #include "hw/firmware/smbios.h"
58 #include "hw/acpi/acpi.h"
59 #include "hw/xen/xen.h"
60 #include "hw/loader.h"
61 #include "monitor/qdev.h"
62 #include "net/net.h"
63 #include "net/slirp.h"
64 #include "monitor/monitor.h"
65 #include "ui/console.h"
66 #include "ui/input.h"
67 #include "sysemu/sysemu.h"
68 #include "sysemu/numa.h"
69 #include "sysemu/hostmem.h"
70 #include "exec/gdbstub.h"
71 #include "qemu/timer.h"
72 #include "chardev/char.h"
73 #include "qemu/bitmap.h"
74 #include "qemu/log.h"
75 #include "sysemu/blockdev.h"
76 #include "hw/block/block.h"
77 #include "hw/i386/x86.h"
78 #include "hw/i386/pc.h"
79 #include "migration/misc.h"
80 #include "migration/snapshot.h"
81 #include "sysemu/tpm.h"
82 #include "sysemu/dma.h"
83 #include "hw/audio/soundhw.h"
84 #include "audio/audio.h"
85 #include "sysemu/cpus.h"
86 #include "sysemu/cpu-timers.h"
87 #include "migration/colo.h"
88 #include "migration/postcopy-ram.h"
89 #include "sysemu/kvm.h"
90 #include "qapi/qobject-input-visitor.h"
91 #include "qemu/option.h"
92 #include "qemu/config-file.h"
93 #include "qemu/main-loop.h"
94 #ifdef CONFIG_VIRTFS
95 #include "fsdev/qemu-fsdev.h"
96 #endif
97 #include "sysemu/qtest.h"
98 #ifdef CONFIG_TCG
99 #include "accel/tcg/perf.h"
100 #endif
102 #include "disas/disas.h"
104 #include "trace.h"
105 #include "trace/control.h"
106 #include "qemu/plugin.h"
107 #include "qemu/queue.h"
108 #include "sysemu/arch_init.h"
109 #include "exec/confidential-guest-support.h"
111 #include "ui/qemu-spice.h"
112 #include "qapi/string-input-visitor.h"
113 #include "qapi/opts-visitor.h"
114 #include "qapi/clone-visitor.h"
115 #include "qom/object_interfaces.h"
116 #include "semihosting/semihost.h"
117 #include "crypto/init.h"
118 #include "sysemu/replay.h"
119 #include "qapi/qapi-events-run-state.h"
120 #include "qapi/qapi-types-audio.h"
121 #include "qapi/qapi-visit-audio.h"
122 #include "qapi/qapi-visit-block-core.h"
123 #include "qapi/qapi-visit-compat.h"
124 #include "qapi/qapi-visit-machine.h"
125 #include "qapi/qapi-visit-ui.h"
126 #include "qapi/qapi-commands-block-core.h"
127 #include "qapi/qapi-commands-migration.h"
128 #include "qapi/qapi-commands-misc.h"
129 #include "qapi/qapi-visit-qom.h"
130 #include "qapi/qapi-commands-ui.h"
131 #include "block/qdict.h"
132 #include "qapi/qmp/qerror.h"
133 #include "sysemu/iothread.h"
134 #include "qemu/guest-random.h"
135 #include "qemu/keyval.h"
137 #define MAX_VIRTIO_CONSOLES 1
139 typedef struct BlockdevOptionsQueueEntry {
140 BlockdevOptions *bdo;
141 Location loc;
142 QSIMPLEQ_ENTRY(BlockdevOptionsQueueEntry) entry;
143 } BlockdevOptionsQueueEntry;
145 typedef QSIMPLEQ_HEAD(, BlockdevOptionsQueueEntry) BlockdevOptionsQueue;
147 typedef struct ObjectOption {
148 ObjectOptions *opts;
149 QTAILQ_ENTRY(ObjectOption) next;
150 } ObjectOption;
152 typedef struct DeviceOption {
153 QDict *opts;
154 Location loc;
155 QTAILQ_ENTRY(DeviceOption) next;
156 } DeviceOption;
158 static const char *cpu_option;
159 static const char *mem_path;
160 static const char *incoming;
161 static const char *loadvm;
162 static const char *accelerators;
163 static bool have_custom_ram_size;
164 static const char *ram_memdev_id;
165 static QDict *machine_opts_dict;
166 static QTAILQ_HEAD(, ObjectOption) object_opts = QTAILQ_HEAD_INITIALIZER(object_opts);
167 static QTAILQ_HEAD(, DeviceOption) device_opts = QTAILQ_HEAD_INITIALIZER(device_opts);
168 static int display_remote;
169 static int snapshot;
170 static bool preconfig_requested;
171 static QemuPluginList plugin_list = QTAILQ_HEAD_INITIALIZER(plugin_list);
172 static BlockdevOptionsQueue bdo_queue = QSIMPLEQ_HEAD_INITIALIZER(bdo_queue);
173 static bool nographic = false;
174 static int mem_prealloc; /* force preallocation of physical target memory */
175 static const char *vga_model = NULL;
176 static DisplayOptions dpy;
177 static int num_serial_hds;
178 static Chardev **serial_hds;
179 static const char *log_mask;
180 static const char *log_file;
181 static bool list_data_dirs;
182 static const char *qtest_chrdev;
183 static const char *qtest_log;
184 static bool opt_one_insn_per_tb;
186 static int has_defaults = 1;
187 static int default_serial = 1;
188 static int default_parallel = 1;
189 static int default_monitor = 1;
190 static int default_floppy = 1;
191 static int default_cdrom = 1;
192 static int default_sdcard = 1;
193 static int default_vga = 1;
194 static int default_net = 1;
196 static struct {
197 const char *driver;
198 int *flag;
199 } default_list[] = {
200 { .driver = "isa-serial", .flag = &default_serial },
201 { .driver = "isa-parallel", .flag = &default_parallel },
202 { .driver = "isa-fdc", .flag = &default_floppy },
203 { .driver = "floppy", .flag = &default_floppy },
204 { .driver = "ide-cd", .flag = &default_cdrom },
205 { .driver = "ide-hd", .flag = &default_cdrom },
206 { .driver = "scsi-cd", .flag = &default_cdrom },
207 { .driver = "scsi-hd", .flag = &default_cdrom },
208 { .driver = "VGA", .flag = &default_vga },
209 { .driver = "isa-vga", .flag = &default_vga },
210 { .driver = "cirrus-vga", .flag = &default_vga },
211 { .driver = "isa-cirrus-vga", .flag = &default_vga },
212 { .driver = "vmware-svga", .flag = &default_vga },
213 { .driver = "qxl-vga", .flag = &default_vga },
214 { .driver = "virtio-vga", .flag = &default_vga },
215 { .driver = "ati-vga", .flag = &default_vga },
216 { .driver = "vhost-user-vga", .flag = &default_vga },
217 { .driver = "virtio-vga-gl", .flag = &default_vga },
220 static QemuOptsList qemu_rtc_opts = {
221 .name = "rtc",
222 .head = QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts.head),
223 .merge_lists = true,
224 .desc = {
226 .name = "base",
227 .type = QEMU_OPT_STRING,
229 .name = "clock",
230 .type = QEMU_OPT_STRING,
232 .name = "driftfix",
233 .type = QEMU_OPT_STRING,
235 { /* end of list */ }
239 static QemuOptsList qemu_option_rom_opts = {
240 .name = "option-rom",
241 .implied_opt_name = "romfile",
242 .head = QTAILQ_HEAD_INITIALIZER(qemu_option_rom_opts.head),
243 .desc = {
245 .name = "bootindex",
246 .type = QEMU_OPT_NUMBER,
247 }, {
248 .name = "romfile",
249 .type = QEMU_OPT_STRING,
251 { /* end of list */ }
255 static QemuOptsList qemu_accel_opts = {
256 .name = "accel",
257 .implied_opt_name = "accel",
258 .head = QTAILQ_HEAD_INITIALIZER(qemu_accel_opts.head),
259 .desc = {
261 * no elements => accept any
262 * sanity checking will happen later
263 * when setting accelerator properties
269 static QemuOptsList qemu_boot_opts = {
270 .name = "boot-opts",
271 .implied_opt_name = "order",
272 .merge_lists = true,
273 .head = QTAILQ_HEAD_INITIALIZER(qemu_boot_opts.head),
274 .desc = {
276 .name = "order",
277 .type = QEMU_OPT_STRING,
278 }, {
279 .name = "once",
280 .type = QEMU_OPT_STRING,
281 }, {
282 .name = "menu",
283 .type = QEMU_OPT_BOOL,
284 }, {
285 .name = "splash",
286 .type = QEMU_OPT_STRING,
287 }, {
288 .name = "splash-time",
289 .type = QEMU_OPT_NUMBER,
290 }, {
291 .name = "reboot-timeout",
292 .type = QEMU_OPT_NUMBER,
293 }, {
294 .name = "strict",
295 .type = QEMU_OPT_BOOL,
297 { /*End of list */ }
301 static QemuOptsList qemu_add_fd_opts = {
302 .name = "add-fd",
303 .head = QTAILQ_HEAD_INITIALIZER(qemu_add_fd_opts.head),
304 .desc = {
306 .name = "fd",
307 .type = QEMU_OPT_NUMBER,
308 .help = "file descriptor of which a duplicate is added to fd set",
310 .name = "set",
311 .type = QEMU_OPT_NUMBER,
312 .help = "ID of the fd set to add fd to",
314 .name = "opaque",
315 .type = QEMU_OPT_STRING,
316 .help = "free-form string used to describe fd",
318 { /* end of list */ }
322 static QemuOptsList qemu_object_opts = {
323 .name = "object",
324 .implied_opt_name = "qom-type",
325 .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head),
326 .desc = {
331 static QemuOptsList qemu_tpmdev_opts = {
332 .name = "tpmdev",
333 .implied_opt_name = "type",
334 .head = QTAILQ_HEAD_INITIALIZER(qemu_tpmdev_opts.head),
335 .desc = {
336 /* options are defined in the TPM backends */
337 { /* end of list */ }
341 static QemuOptsList qemu_overcommit_opts = {
342 .name = "overcommit",
343 .head = QTAILQ_HEAD_INITIALIZER(qemu_overcommit_opts.head),
344 .desc = {
346 .name = "mem-lock",
347 .type = QEMU_OPT_BOOL,
350 .name = "cpu-pm",
351 .type = QEMU_OPT_BOOL,
353 { /* end of list */ }
357 static QemuOptsList qemu_msg_opts = {
358 .name = "msg",
359 .head = QTAILQ_HEAD_INITIALIZER(qemu_msg_opts.head),
360 .desc = {
362 .name = "timestamp",
363 .type = QEMU_OPT_BOOL,
366 .name = "guest-name",
367 .type = QEMU_OPT_BOOL,
368 .help = "Prepends guest name for error messages but only if "
369 "-name guest is set otherwise option is ignored\n",
371 { /* end of list */ }
375 static QemuOptsList qemu_name_opts = {
376 .name = "name",
377 .implied_opt_name = "guest",
378 .merge_lists = true,
379 .head = QTAILQ_HEAD_INITIALIZER(qemu_name_opts.head),
380 .desc = {
382 .name = "guest",
383 .type = QEMU_OPT_STRING,
384 .help = "Sets the name of the guest.\n"
385 "This name will be displayed in the SDL window caption.\n"
386 "The name will also be used for the VNC server",
387 }, {
388 .name = "process",
389 .type = QEMU_OPT_STRING,
390 .help = "Sets the name of the QEMU process, as shown in top etc",
391 }, {
392 .name = "debug-threads",
393 .type = QEMU_OPT_BOOL,
394 .help = "When enabled, name the individual threads; defaults off.\n"
395 "NOTE: The thread names are for debugging and not a\n"
396 "stable API.",
398 { /* End of list */ }
402 static QemuOptsList qemu_mem_opts = {
403 .name = "memory",
404 .implied_opt_name = "size",
405 .head = QTAILQ_HEAD_INITIALIZER(qemu_mem_opts.head),
406 .merge_lists = true,
407 .desc = {
409 .name = "size",
410 .type = QEMU_OPT_SIZE,
413 .name = "slots",
414 .type = QEMU_OPT_NUMBER,
417 .name = "maxmem",
418 .type = QEMU_OPT_SIZE,
420 { /* end of list */ }
424 static QemuOptsList qemu_icount_opts = {
425 .name = "icount",
426 .implied_opt_name = "shift",
427 .merge_lists = true,
428 .head = QTAILQ_HEAD_INITIALIZER(qemu_icount_opts.head),
429 .desc = {
431 .name = "shift",
432 .type = QEMU_OPT_STRING,
433 }, {
434 .name = "align",
435 .type = QEMU_OPT_BOOL,
436 }, {
437 .name = "sleep",
438 .type = QEMU_OPT_BOOL,
439 }, {
440 .name = "rr",
441 .type = QEMU_OPT_STRING,
442 }, {
443 .name = "rrfile",
444 .type = QEMU_OPT_STRING,
445 }, {
446 .name = "rrsnapshot",
447 .type = QEMU_OPT_STRING,
449 { /* end of list */ }
453 static QemuOptsList qemu_fw_cfg_opts = {
454 .name = "fw_cfg",
455 .implied_opt_name = "name",
456 .head = QTAILQ_HEAD_INITIALIZER(qemu_fw_cfg_opts.head),
457 .desc = {
459 .name = "name",
460 .type = QEMU_OPT_STRING,
461 .help = "Sets the fw_cfg name of the blob to be inserted",
462 }, {
463 .name = "file",
464 .type = QEMU_OPT_STRING,
465 .help = "Sets the name of the file from which "
466 "the fw_cfg blob will be loaded",
467 }, {
468 .name = "string",
469 .type = QEMU_OPT_STRING,
470 .help = "Sets content of the blob to be inserted from a string",
471 }, {
472 .name = "gen_id",
473 .type = QEMU_OPT_STRING,
474 .help = "Sets id of the object generating the fw_cfg blob "
475 "to be inserted",
477 { /* end of list */ }
481 static QemuOptsList qemu_action_opts = {
482 .name = "action",
483 .merge_lists = true,
484 .head = QTAILQ_HEAD_INITIALIZER(qemu_action_opts.head),
485 .desc = {
487 .name = "shutdown",
488 .type = QEMU_OPT_STRING,
490 .name = "reboot",
491 .type = QEMU_OPT_STRING,
493 .name = "panic",
494 .type = QEMU_OPT_STRING,
496 .name = "watchdog",
497 .type = QEMU_OPT_STRING,
499 { /* end of list */ }
503 const char *qemu_get_vm_name(void)
505 return qemu_name;
508 static void default_driver_disable(const char *driver)
510 int i;
512 if (!driver) {
513 return;
516 for (i = 0; i < ARRAY_SIZE(default_list); i++) {
517 if (strcmp(default_list[i].driver, driver) != 0)
518 continue;
519 *(default_list[i].flag) = 0;
523 static int default_driver_check(void *opaque, QemuOpts *opts, Error **errp)
525 const char *driver = qemu_opt_get(opts, "driver");
527 default_driver_disable(driver);
528 return 0;
531 static void default_driver_check_json(void)
533 DeviceOption *opt;
535 QTAILQ_FOREACH(opt, &device_opts, next) {
536 const char *driver = qdict_get_try_str(opt->opts, "driver");
537 default_driver_disable(driver);
541 static int parse_name(void *opaque, QemuOpts *opts, Error **errp)
543 const char *proc_name;
545 if (qemu_opt_get(opts, "debug-threads")) {
546 qemu_thread_naming(qemu_opt_get_bool(opts, "debug-threads", false));
548 qemu_name = qemu_opt_get(opts, "guest");
550 proc_name = qemu_opt_get(opts, "process");
551 if (proc_name) {
552 os_set_proc_name(proc_name);
555 return 0;
558 bool defaults_enabled(void)
560 return has_defaults;
563 #ifndef _WIN32
564 static int parse_add_fd(void *opaque, QemuOpts *opts, Error **errp)
566 int fd, dupfd, flags;
567 int64_t fdset_id;
568 const char *fd_opaque = NULL;
569 AddfdInfo *fdinfo;
571 fd = qemu_opt_get_number(opts, "fd", -1);
572 fdset_id = qemu_opt_get_number(opts, "set", -1);
573 fd_opaque = qemu_opt_get(opts, "opaque");
575 if (fd < 0) {
576 error_setg(errp, "fd option is required and must be non-negative");
577 return -1;
580 if (fd <= STDERR_FILENO) {
581 error_setg(errp, "fd cannot be a standard I/O stream");
582 return -1;
586 * All fds inherited across exec() necessarily have FD_CLOEXEC
587 * clear, while qemu sets FD_CLOEXEC on all other fds used internally.
589 flags = fcntl(fd, F_GETFD);
590 if (flags == -1 || (flags & FD_CLOEXEC)) {
591 error_setg(errp, "fd is not valid or already in use");
592 return -1;
595 if (fdset_id < 0) {
596 error_setg(errp, "set option is required and must be non-negative");
597 return -1;
600 #ifdef F_DUPFD_CLOEXEC
601 dupfd = fcntl(fd, F_DUPFD_CLOEXEC, 0);
602 #else
603 dupfd = dup(fd);
604 if (dupfd != -1) {
605 qemu_set_cloexec(dupfd);
607 #endif
608 if (dupfd == -1) {
609 error_setg(errp, "error duplicating fd: %s", strerror(errno));
610 return -1;
613 /* add the duplicate fd, and optionally the opaque string, to the fd set */
614 fdinfo = monitor_fdset_add_fd(dupfd, true, fdset_id, fd_opaque,
615 &error_abort);
616 g_free(fdinfo);
618 return 0;
621 static int cleanup_add_fd(void *opaque, QemuOpts *opts, Error **errp)
623 int fd;
625 fd = qemu_opt_get_number(opts, "fd", -1);
626 close(fd);
628 return 0;
630 #endif
632 /***********************************************************/
633 /* QEMU Block devices */
635 #define HD_OPTS "media=disk"
636 #define CDROM_OPTS "media=cdrom"
637 #define FD_OPTS ""
638 #define PFLASH_OPTS ""
639 #define MTD_OPTS ""
640 #define SD_OPTS ""
642 static int drive_init_func(void *opaque, QemuOpts *opts, Error **errp)
644 BlockInterfaceType *block_default_type = opaque;
646 return drive_new(opts, *block_default_type, errp) == NULL;
649 static int drive_enable_snapshot(void *opaque, QemuOpts *opts, Error **errp)
651 if (qemu_opt_get(opts, "snapshot") == NULL) {
652 qemu_opt_set(opts, "snapshot", "on", &error_abort);
654 return 0;
657 static void default_drive(int enable, int snapshot, BlockInterfaceType type,
658 int index, const char *optstr)
660 QemuOpts *opts;
661 DriveInfo *dinfo;
663 if (!enable || drive_get_by_index(type, index)) {
664 return;
667 opts = drive_add(type, index, NULL, optstr);
668 if (snapshot) {
669 drive_enable_snapshot(NULL, opts, NULL);
672 dinfo = drive_new(opts, type, &error_abort);
673 dinfo->is_default = true;
677 static void configure_blockdev(BlockdevOptionsQueue *bdo_queue,
678 MachineClass *machine_class, int snapshot)
681 * If the currently selected machine wishes to override the
682 * units-per-bus property of its default HBA interface type, do so
683 * now.
685 if (machine_class->units_per_default_bus) {
686 override_max_devs(machine_class->block_default_type,
687 machine_class->units_per_default_bus);
690 /* open the virtual block devices */
691 while (!QSIMPLEQ_EMPTY(bdo_queue)) {
692 BlockdevOptionsQueueEntry *bdo = QSIMPLEQ_FIRST(bdo_queue);
694 QSIMPLEQ_REMOVE_HEAD(bdo_queue, entry);
695 loc_push_restore(&bdo->loc);
696 qmp_blockdev_add(bdo->bdo, &error_fatal);
697 loc_pop(&bdo->loc);
698 qapi_free_BlockdevOptions(bdo->bdo);
699 g_free(bdo);
701 if (snapshot) {
702 qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot,
703 NULL, NULL);
705 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func,
706 &machine_class->block_default_type, &error_fatal)) {
707 /* We printed help */
708 exit(0);
711 default_drive(default_cdrom, snapshot, machine_class->block_default_type, 2,
712 CDROM_OPTS);
713 default_drive(default_floppy, snapshot, IF_FLOPPY, 0, FD_OPTS);
714 default_drive(default_sdcard, snapshot, IF_SD, 0, SD_OPTS);
718 static QemuOptsList qemu_smp_opts = {
719 .name = "smp-opts",
720 .implied_opt_name = "cpus",
721 .merge_lists = true,
722 .head = QTAILQ_HEAD_INITIALIZER(qemu_smp_opts.head),
723 .desc = {
725 .name = "cpus",
726 .type = QEMU_OPT_NUMBER,
727 }, {
728 .name = "sockets",
729 .type = QEMU_OPT_NUMBER,
730 }, {
731 .name = "dies",
732 .type = QEMU_OPT_NUMBER,
733 }, {
734 .name = "clusters",
735 .type = QEMU_OPT_NUMBER,
736 }, {
737 .name = "cores",
738 .type = QEMU_OPT_NUMBER,
739 }, {
740 .name = "threads",
741 .type = QEMU_OPT_NUMBER,
742 }, {
743 .name = "maxcpus",
744 .type = QEMU_OPT_NUMBER,
746 { /*End of list */ }
750 #if defined(CONFIG_POSIX)
751 static QemuOptsList qemu_run_with_opts = {
752 .name = "run-with",
753 .head = QTAILQ_HEAD_INITIALIZER(qemu_run_with_opts.head),
754 .desc = {
755 #if defined(CONFIG_LINUX)
757 .name = "async-teardown",
758 .type = QEMU_OPT_BOOL,
760 #endif
762 .name = "chroot",
763 .type = QEMU_OPT_STRING,
765 { /* end of list */ }
769 #define qemu_add_run_with_opts() qemu_add_opts(&qemu_run_with_opts)
771 #else
773 #define qemu_add_run_with_opts()
775 #endif /* CONFIG_POSIX */
777 static void realtime_init(void)
779 if (enable_mlock) {
780 if (os_mlock() < 0) {
781 error_report("locking memory failed");
782 exit(1);
788 static void configure_msg(QemuOpts *opts)
790 message_with_timestamp = qemu_opt_get_bool(opts, "timestamp", false);
791 error_with_guestname = qemu_opt_get_bool(opts, "guest-name", false);
795 /***********************************************************/
796 /* USB devices */
798 static int usb_device_add(const char *devname)
800 USBDevice *dev = NULL;
802 if (!machine_usb(current_machine)) {
803 return -1;
806 dev = usbdevice_create(devname);
807 if (!dev)
808 return -1;
810 return 0;
813 static int usb_parse(const char *cmdline)
815 int r;
816 r = usb_device_add(cmdline);
817 if (r < 0) {
818 error_report("could not add USB device '%s'", cmdline);
820 return r;
823 /***********************************************************/
824 /* machine registration */
826 static MachineClass *find_machine(const char *name, GSList *machines)
828 GSList *el;
830 for (el = machines; el; el = el->next) {
831 MachineClass *mc = el->data;
833 if (!strcmp(mc->name, name) || !g_strcmp0(mc->alias, name)) {
834 return mc;
838 return NULL;
841 static MachineClass *find_default_machine(GSList *machines)
843 GSList *el;
844 MachineClass *default_machineclass = NULL;
846 for (el = machines; el; el = el->next) {
847 MachineClass *mc = el->data;
849 if (mc->is_default) {
850 assert(default_machineclass == NULL && "Multiple default machines");
851 default_machineclass = mc;
855 return default_machineclass;
858 static void version(void)
860 printf("QEMU emulator version " QEMU_FULL_VERSION "\n"
861 QEMU_COPYRIGHT "\n");
864 static void help(int exitcode)
866 version();
867 printf("usage: %s [options] [disk_image]\n\n"
868 "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
869 g_get_prgname());
871 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
872 if ((arch_mask) & arch_type) \
873 fputs(opt_help, stdout);
875 #define ARCHHEADING(text, arch_mask) \
876 if ((arch_mask) & arch_type) \
877 puts(stringify(text));
879 #define DEFHEADING(text) ARCHHEADING(text, QEMU_ARCH_ALL)
881 #include "qemu-options.def"
883 printf("\nDuring emulation, the following keys are useful:\n"
884 "ctrl-alt-f toggle full screen\n"
885 "ctrl-alt-n switch to virtual console 'n'\n"
886 "ctrl-alt toggle mouse and keyboard grab\n"
887 "\n"
888 "When using -nographic, press 'ctrl-a h' to get some help.\n"
889 "\n"
890 QEMU_HELP_BOTTOM "\n");
892 exit(exitcode);
895 enum {
897 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
898 opt_enum,
899 #define DEFHEADING(text)
900 #define ARCHHEADING(text, arch_mask)
902 #include "qemu-options.def"
905 #define HAS_ARG 0x0001
907 typedef struct QEMUOption {
908 const char *name;
909 int flags;
910 int index;
911 uint32_t arch_mask;
912 } QEMUOption;
914 static const QEMUOption qemu_options[] = {
915 { "h", 0, QEMU_OPTION_h, QEMU_ARCH_ALL },
917 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
918 { option, opt_arg, opt_enum, arch_mask },
919 #define DEFHEADING(text)
920 #define ARCHHEADING(text, arch_mask)
922 #include "qemu-options.def"
923 { /* end of list */ }
926 typedef struct VGAInterfaceInfo {
927 const char *opt_name; /* option name */
928 const char *name; /* human-readable name */
929 /* Class names indicating that support is available.
930 * If no class is specified, the interface is always available */
931 const char *class_names[2];
932 } VGAInterfaceInfo;
934 static const VGAInterfaceInfo vga_interfaces[VGA_TYPE_MAX] = {
935 [VGA_NONE] = {
936 .opt_name = "none",
937 .name = "no graphic card",
939 [VGA_STD] = {
940 .opt_name = "std",
941 .name = "standard VGA",
942 .class_names = { "VGA", "isa-vga" },
944 [VGA_CIRRUS] = {
945 .opt_name = "cirrus",
946 .name = "Cirrus VGA",
947 .class_names = { "cirrus-vga", "isa-cirrus-vga" },
949 [VGA_VMWARE] = {
950 .opt_name = "vmware",
951 .name = "VMWare SVGA",
952 .class_names = { "vmware-svga" },
954 [VGA_VIRTIO] = {
955 .opt_name = "virtio",
956 .name = "Virtio VGA",
957 .class_names = { "virtio-vga" },
959 [VGA_QXL] = {
960 .opt_name = "qxl",
961 .name = "QXL VGA",
962 .class_names = { "qxl-vga" },
964 [VGA_TCX] = {
965 .opt_name = "tcx",
966 .name = "TCX framebuffer",
967 .class_names = { "sun-tcx" },
969 [VGA_CG3] = {
970 .opt_name = "cg3",
971 .name = "CG3 framebuffer",
972 .class_names = { "cgthree" },
974 #ifdef CONFIG_XEN_BACKEND
975 [VGA_XENFB] = {
976 .opt_name = "xenfb",
977 .name = "Xen paravirtualized framebuffer",
979 #endif
982 static bool vga_interface_available(VGAInterfaceType t)
984 const VGAInterfaceInfo *ti = &vga_interfaces[t];
986 assert(t < VGA_TYPE_MAX);
987 return !ti->class_names[0] ||
988 module_object_class_by_name(ti->class_names[0]) ||
989 module_object_class_by_name(ti->class_names[1]);
992 static const char *
993 get_default_vga_model(const MachineClass *machine_class)
995 if (machine_class->default_display) {
996 for (int t = 0; t < VGA_TYPE_MAX; t++) {
997 const VGAInterfaceInfo *ti = &vga_interfaces[t];
999 if (ti->opt_name && vga_interface_available(t) &&
1000 g_str_equal(ti->opt_name, machine_class->default_display)) {
1001 return machine_class->default_display;
1005 warn_report_once("Default display '%s' is not available in this binary",
1006 machine_class->default_display);
1007 return NULL;
1008 } else if (vga_interface_available(VGA_CIRRUS)) {
1009 return "cirrus";
1010 } else if (vga_interface_available(VGA_STD)) {
1011 return "std";
1014 return NULL;
1017 static void select_vgahw(const MachineClass *machine_class, const char *p)
1019 const char *opts;
1020 int t;
1022 if (g_str_equal(p, "help")) {
1023 const char *def = get_default_vga_model(machine_class);
1025 for (t = 0; t < VGA_TYPE_MAX; t++) {
1026 const VGAInterfaceInfo *ti = &vga_interfaces[t];
1028 if (vga_interface_available(t) && ti->opt_name) {
1029 printf("%-20s %s%s\n", ti->opt_name, ti->name ?: "",
1030 (def && g_str_equal(ti->opt_name, def)) ?
1031 " (default)" : "");
1034 exit(0);
1037 assert(vga_interface_type == VGA_NONE);
1038 for (t = 0; t < VGA_TYPE_MAX; t++) {
1039 const VGAInterfaceInfo *ti = &vga_interfaces[t];
1040 if (ti->opt_name && strstart(p, ti->opt_name, &opts)) {
1041 if (!vga_interface_available(t)) {
1042 error_report("%s not available", ti->name);
1043 exit(1);
1045 vga_interface_type = t;
1046 break;
1049 if (t == VGA_TYPE_MAX) {
1050 invalid_vga:
1051 error_report("unknown vga type: %s", p);
1052 exit(1);
1054 while (*opts) {
1055 const char *nextopt;
1057 if (strstart(opts, ",retrace=", &nextopt)) {
1058 opts = nextopt;
1059 if (strstart(opts, "dumb", &nextopt))
1060 vga_retrace_method = VGA_RETRACE_DUMB;
1061 else if (strstart(opts, "precise", &nextopt))
1062 vga_retrace_method = VGA_RETRACE_PRECISE;
1063 else goto invalid_vga;
1064 } else goto invalid_vga;
1065 opts = nextopt;
1069 static void parse_display_qapi(const char *optarg)
1071 DisplayOptions *opts;
1072 Visitor *v;
1074 v = qobject_input_visitor_new_str(optarg, "type", &error_fatal);
1076 visit_type_DisplayOptions(v, NULL, &opts, &error_fatal);
1077 QAPI_CLONE_MEMBERS(DisplayOptions, &dpy, opts);
1079 qapi_free_DisplayOptions(opts);
1080 visit_free(v);
1083 DisplayOptions *qmp_query_display_options(Error **errp)
1085 return QAPI_CLONE(DisplayOptions, &dpy);
1088 static void parse_display(const char *p)
1090 const char *opts;
1092 if (is_help_option(p)) {
1093 qemu_display_help();
1094 exit(0);
1097 if (strstart(p, "vnc", &opts)) {
1099 * vnc isn't a (local) DisplayType but a protocol for remote
1100 * display access.
1102 if (*opts == '=') {
1103 vnc_parse(opts + 1);
1104 } else {
1105 error_report("VNC requires a display argument vnc=<display>");
1106 exit(1);
1108 } else {
1109 parse_display_qapi(p);
1113 static inline bool nonempty_str(const char *str)
1115 return str && *str;
1118 static int parse_fw_cfg(void *opaque, QemuOpts *opts, Error **errp)
1120 gchar *buf;
1121 size_t size;
1122 const char *name, *file, *str, *gen_id;
1123 FWCfgState *fw_cfg = (FWCfgState *) opaque;
1125 if (fw_cfg == NULL) {
1126 error_setg(errp, "fw_cfg device not available");
1127 return -1;
1129 name = qemu_opt_get(opts, "name");
1130 file = qemu_opt_get(opts, "file");
1131 str = qemu_opt_get(opts, "string");
1132 gen_id = qemu_opt_get(opts, "gen_id");
1134 /* we need the name, and exactly one of: file, content string, gen_id */
1135 if (!nonempty_str(name) ||
1136 nonempty_str(file) + nonempty_str(str) + nonempty_str(gen_id) != 1) {
1137 error_setg(errp, "name, plus exactly one of file,"
1138 " string and gen_id, are needed");
1139 return -1;
1141 if (strlen(name) > FW_CFG_MAX_FILE_PATH - 1) {
1142 error_setg(errp, "name too long (max. %d char)",
1143 FW_CFG_MAX_FILE_PATH - 1);
1144 return -1;
1146 if (nonempty_str(gen_id)) {
1148 * In this particular case where the content is populated
1149 * internally, the "etc/" namespace protection is relaxed,
1150 * so do not emit a warning.
1152 } else if (strncmp(name, "opt/", 4) != 0) {
1153 warn_report("externally provided fw_cfg item names "
1154 "should be prefixed with \"opt/\"");
1156 if (nonempty_str(str)) {
1157 size = strlen(str); /* NUL terminator NOT included in fw_cfg blob */
1158 buf = g_memdup(str, size);
1159 } else if (nonempty_str(gen_id)) {
1160 if (!fw_cfg_add_from_generator(fw_cfg, name, gen_id, errp)) {
1161 return -1;
1163 return 0;
1164 } else {
1165 GError *err = NULL;
1166 if (!g_file_get_contents(file, &buf, &size, &err)) {
1167 error_setg(errp, "can't load %s: %s", file, err->message);
1168 g_error_free(err);
1169 return -1;
1172 /* For legacy, keep user files in a specific global order. */
1173 fw_cfg_set_order_override(fw_cfg, FW_CFG_ORDER_OVERRIDE_USER);
1174 fw_cfg_add_file(fw_cfg, name, buf, size);
1175 fw_cfg_reset_order_override(fw_cfg);
1176 return 0;
1179 static int device_help_func(void *opaque, QemuOpts *opts, Error **errp)
1181 return qdev_device_help(opts);
1184 static int device_init_func(void *opaque, QemuOpts *opts, Error **errp)
1186 DeviceState *dev;
1188 dev = qdev_device_add(opts, errp);
1189 if (!dev && *errp) {
1190 error_report_err(*errp);
1191 return -1;
1192 } else if (dev) {
1193 object_unref(OBJECT(dev));
1195 return 0;
1198 static int chardev_init_func(void *opaque, QemuOpts *opts, Error **errp)
1200 Error *local_err = NULL;
1202 if (!qemu_chr_new_from_opts(opts, NULL, &local_err)) {
1203 if (local_err) {
1204 error_propagate(errp, local_err);
1205 return -1;
1207 exit(0);
1209 return 0;
1212 #ifdef CONFIG_VIRTFS
1213 static int fsdev_init_func(void *opaque, QemuOpts *opts, Error **errp)
1215 return qemu_fsdev_add(opts, errp);
1217 #endif
1219 static int mon_init_func(void *opaque, QemuOpts *opts, Error **errp)
1221 return monitor_init_opts(opts, errp);
1224 static void monitor_parse(const char *optarg, const char *mode, bool pretty)
1226 static int monitor_device_index = 0;
1227 QemuOpts *opts;
1228 const char *p;
1229 char label[32];
1231 if (strstart(optarg, "chardev:", &p)) {
1232 snprintf(label, sizeof(label), "%s", p);
1233 } else {
1234 snprintf(label, sizeof(label), "compat_monitor%d",
1235 monitor_device_index);
1236 opts = qemu_chr_parse_compat(label, optarg, true);
1237 if (!opts) {
1238 error_report("parse error: %s", optarg);
1239 exit(1);
1243 opts = qemu_opts_create(qemu_find_opts("mon"), label, 1, &error_fatal);
1244 qemu_opt_set(opts, "mode", mode, &error_abort);
1245 qemu_opt_set(opts, "chardev", label, &error_abort);
1246 if (!strcmp(mode, "control")) {
1247 qemu_opt_set_bool(opts, "pretty", pretty, &error_abort);
1248 } else {
1249 assert(pretty == false);
1251 monitor_device_index++;
1254 struct device_config {
1255 enum {
1256 DEV_USB, /* -usbdevice */
1257 DEV_SERIAL, /* -serial */
1258 DEV_PARALLEL, /* -parallel */
1259 DEV_DEBUGCON, /* -debugcon */
1260 DEV_GDB, /* -gdb, -s */
1261 DEV_SCLP, /* s390 sclp */
1262 } type;
1263 const char *cmdline;
1264 Location loc;
1265 QTAILQ_ENTRY(device_config) next;
1268 static QTAILQ_HEAD(, device_config) device_configs =
1269 QTAILQ_HEAD_INITIALIZER(device_configs);
1271 static void add_device_config(int type, const char *cmdline)
1273 struct device_config *conf;
1275 conf = g_malloc0(sizeof(*conf));
1276 conf->type = type;
1277 conf->cmdline = cmdline;
1278 loc_save(&conf->loc);
1279 QTAILQ_INSERT_TAIL(&device_configs, conf, next);
1282 static int foreach_device_config(int type, int (*func)(const char *cmdline))
1284 struct device_config *conf;
1285 int rc;
1287 QTAILQ_FOREACH(conf, &device_configs, next) {
1288 if (conf->type != type)
1289 continue;
1290 loc_push_restore(&conf->loc);
1291 rc = func(conf->cmdline);
1292 loc_pop(&conf->loc);
1293 if (rc) {
1294 return rc;
1297 return 0;
1300 static void qemu_disable_default_devices(void)
1302 MachineClass *machine_class = MACHINE_GET_CLASS(current_machine);
1304 default_driver_check_json();
1305 qemu_opts_foreach(qemu_find_opts("device"),
1306 default_driver_check, NULL, NULL);
1307 qemu_opts_foreach(qemu_find_opts("global"),
1308 default_driver_check, NULL, NULL);
1310 if (!vga_model && !default_vga) {
1311 vga_interface_type = VGA_DEVICE;
1312 vga_interface_created = true;
1314 if (!has_defaults || machine_class->no_serial) {
1315 default_serial = 0;
1317 if (!has_defaults || machine_class->no_parallel) {
1318 default_parallel = 0;
1320 if (!has_defaults || machine_class->no_floppy) {
1321 default_floppy = 0;
1323 if (!has_defaults || machine_class->no_cdrom) {
1324 default_cdrom = 0;
1326 if (!has_defaults || machine_class->no_sdcard) {
1327 default_sdcard = 0;
1329 if (!has_defaults) {
1330 default_monitor = 0;
1331 default_net = 0;
1332 default_vga = 0;
1333 } else {
1334 if (default_net && machine_class->default_nic &&
1335 !module_object_class_by_name(machine_class->default_nic)) {
1336 warn_report("Default NIC '%s' is not available in this binary",
1337 machine_class->default_nic);
1338 default_net = 0;
1343 static void qemu_create_default_devices(void)
1345 MachineClass *machine_class = MACHINE_GET_CLASS(current_machine);
1347 if (is_daemonized()) {
1348 /* According to documentation and historically, -nographic redirects
1349 * serial port, parallel port and monitor to stdio, which does not work
1350 * with -daemonize. We can redirect these to null instead, but since
1351 * -nographic is legacy, let's just error out.
1352 * We disallow -nographic only if all other ports are not redirected
1353 * explicitly, to not break existing legacy setups which uses
1354 * -nographic _and_ redirects all ports explicitly - this is valid
1355 * usage, -nographic is just a no-op in this case.
1357 if (nographic
1358 && (default_parallel || default_serial || default_monitor)) {
1359 error_report("-nographic cannot be used with -daemonize");
1360 exit(1);
1364 if (nographic) {
1365 if (default_parallel)
1366 add_device_config(DEV_PARALLEL, "null");
1367 if (default_serial && default_monitor) {
1368 add_device_config(DEV_SERIAL, "mon:stdio");
1369 } else {
1370 if (default_serial)
1371 add_device_config(DEV_SERIAL, "stdio");
1372 if (default_monitor)
1373 monitor_parse("stdio", "readline", false);
1375 } else {
1376 if (default_serial)
1377 add_device_config(DEV_SERIAL, "vc:80Cx24C");
1378 if (default_parallel)
1379 add_device_config(DEV_PARALLEL, "vc:80Cx24C");
1380 if (default_monitor)
1381 monitor_parse("vc:80Cx24C", "readline", false);
1384 if (default_net) {
1385 QemuOptsList *net = qemu_find_opts("net");
1386 qemu_opts_parse(net, "nic", true, &error_abort);
1387 #ifdef CONFIG_SLIRP
1388 qemu_opts_parse(net, "user", true, &error_abort);
1389 #endif
1392 #if defined(CONFIG_VNC)
1393 if (!QTAILQ_EMPTY(&(qemu_find_opts("vnc")->head))) {
1394 display_remote++;
1396 #endif
1397 if (dpy.type == DISPLAY_TYPE_DEFAULT && !display_remote) {
1398 if (!qemu_display_find_default(&dpy)) {
1399 dpy.type = DISPLAY_TYPE_NONE;
1400 #if defined(CONFIG_VNC)
1401 vnc_parse("localhost:0,to=99,id=default");
1402 #endif
1405 if (dpy.type == DISPLAY_TYPE_DEFAULT) {
1406 dpy.type = DISPLAY_TYPE_NONE;
1409 /* If no default VGA is requested, the default is "none". */
1410 if (default_vga) {
1411 vga_model = get_default_vga_model(machine_class);
1413 if (vga_model) {
1414 select_vgahw(machine_class, vga_model);
1418 static int serial_parse(const char *devname)
1420 int index = num_serial_hds;
1421 char label[32];
1423 if (strcmp(devname, "none") == 0)
1424 return 0;
1425 snprintf(label, sizeof(label), "serial%d", index);
1426 serial_hds = g_renew(Chardev *, serial_hds, index + 1);
1428 serial_hds[index] = qemu_chr_new_mux_mon(label, devname, NULL);
1429 if (!serial_hds[index]) {
1430 error_report("could not connect serial device"
1431 " to character backend '%s'", devname);
1432 return -1;
1434 num_serial_hds++;
1435 return 0;
1438 Chardev *serial_hd(int i)
1440 assert(i >= 0);
1441 if (i < num_serial_hds) {
1442 return serial_hds[i];
1444 return NULL;
1447 static int parallel_parse(const char *devname)
1449 static int index = 0;
1450 char label[32];
1452 if (strcmp(devname, "none") == 0)
1453 return 0;
1454 if (index == MAX_PARALLEL_PORTS) {
1455 error_report("too many parallel ports");
1456 exit(1);
1458 snprintf(label, sizeof(label), "parallel%d", index);
1459 parallel_hds[index] = qemu_chr_new_mux_mon(label, devname, NULL);
1460 if (!parallel_hds[index]) {
1461 error_report("could not connect parallel device"
1462 " to character backend '%s'", devname);
1463 return -1;
1465 index++;
1466 return 0;
1469 static int debugcon_parse(const char *devname)
1471 QemuOpts *opts;
1473 if (!qemu_chr_new_mux_mon("debugcon", devname, NULL)) {
1474 error_report("invalid character backend '%s'", devname);
1475 exit(1);
1477 opts = qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL);
1478 if (!opts) {
1479 error_report("already have a debugcon device");
1480 exit(1);
1482 qemu_opt_set(opts, "driver", "isa-debugcon", &error_abort);
1483 qemu_opt_set(opts, "chardev", "debugcon", &error_abort);
1484 return 0;
1487 static gint machine_class_cmp(gconstpointer a, gconstpointer b)
1489 const MachineClass *mc1 = a, *mc2 = b;
1490 int res;
1492 if (mc1->family == NULL) {
1493 if (mc2->family == NULL) {
1494 /* Compare standalone machine types against each other; they sort
1495 * in increasing order.
1497 return strcmp(object_class_get_name(OBJECT_CLASS(mc1)),
1498 object_class_get_name(OBJECT_CLASS(mc2)));
1501 /* Standalone machine types sort after families. */
1502 return 1;
1505 if (mc2->family == NULL) {
1506 /* Families sort before standalone machine types. */
1507 return -1;
1510 /* Families sort between each other alphabetically increasingly. */
1511 res = strcmp(mc1->family, mc2->family);
1512 if (res != 0) {
1513 return res;
1516 /* Within the same family, machine types sort in decreasing order. */
1517 return strcmp(object_class_get_name(OBJECT_CLASS(mc2)),
1518 object_class_get_name(OBJECT_CLASS(mc1)));
1521 static void machine_help_func(const QDict *qdict)
1523 GSList *machines, *el;
1524 const char *type = qdict_get_try_str(qdict, "type");
1526 machines = object_class_get_list(TYPE_MACHINE, false);
1527 if (type) {
1528 ObjectClass *machine_class = OBJECT_CLASS(find_machine(type, machines));
1529 if (machine_class) {
1530 type_print_class_properties(object_class_get_name(machine_class));
1531 return;
1535 printf("Supported machines are:\n");
1536 machines = g_slist_sort(machines, machine_class_cmp);
1537 for (el = machines; el; el = el->next) {
1538 MachineClass *mc = el->data;
1539 if (mc->alias) {
1540 printf("%-20s %s (alias of %s)\n", mc->alias, mc->desc, mc->name);
1542 printf("%-20s %s%s%s\n", mc->name, mc->desc,
1543 mc->is_default ? " (default)" : "",
1544 mc->deprecation_reason ? " (deprecated)" : "");
1548 static void
1549 machine_merge_property(const char *propname, QDict *prop, Error **errp)
1551 QDict *opts;
1553 opts = qdict_new();
1554 /* Preserve the caller's reference to prop. */
1555 qobject_ref(prop);
1556 qdict_put(opts, propname, prop);
1557 keyval_merge(machine_opts_dict, opts, errp);
1558 qobject_unref(opts);
1561 static void
1562 machine_parse_property_opt(QemuOptsList *opts_list, const char *propname,
1563 const char *arg)
1565 QDict *prop = NULL;
1566 bool help = false;
1568 prop = keyval_parse(arg, opts_list->implied_opt_name, &help, &error_fatal);
1569 if (help) {
1570 qemu_opts_print_help(opts_list, true);
1571 exit(0);
1573 machine_merge_property(propname, prop, &error_fatal);
1574 qobject_unref(prop);
1577 static const char *pid_file;
1578 struct UnlinkPidfileNotifier {
1579 Notifier notifier;
1580 char *pid_file_realpath;
1582 static struct UnlinkPidfileNotifier qemu_unlink_pidfile_notifier;
1584 static void qemu_unlink_pidfile(Notifier *n, void *data)
1586 struct UnlinkPidfileNotifier *upn;
1588 upn = DO_UPCAST(struct UnlinkPidfileNotifier, notifier, n);
1589 unlink(upn->pid_file_realpath);
1592 static const QEMUOption *lookup_opt(int argc, char **argv,
1593 const char **poptarg, int *poptind)
1595 const QEMUOption *popt;
1596 int optind = *poptind;
1597 char *r = argv[optind];
1598 const char *optarg;
1600 loc_set_cmdline(argv, optind, 1);
1601 optind++;
1602 /* Treat --foo the same as -foo. */
1603 if (r[1] == '-')
1604 r++;
1605 popt = qemu_options;
1606 for(;;) {
1607 if (!popt->name) {
1608 error_report("invalid option");
1609 exit(1);
1611 if (!strcmp(popt->name, r + 1))
1612 break;
1613 popt++;
1615 if (popt->flags & HAS_ARG) {
1616 if (optind >= argc) {
1617 error_report("requires an argument");
1618 exit(1);
1620 optarg = argv[optind++];
1621 loc_set_cmdline(argv, optind - 2, 2);
1622 } else {
1623 optarg = NULL;
1626 *poptarg = optarg;
1627 *poptind = optind;
1629 return popt;
1632 static MachineClass *select_machine(QDict *qdict, Error **errp)
1634 const char *optarg = qdict_get_try_str(qdict, "type");
1635 GSList *machines = object_class_get_list(TYPE_MACHINE, false);
1636 MachineClass *machine_class;
1637 Error *local_err = NULL;
1639 if (optarg) {
1640 machine_class = find_machine(optarg, machines);
1641 qdict_del(qdict, "type");
1642 if (!machine_class) {
1643 error_setg(&local_err, "unsupported machine type");
1645 } else {
1646 machine_class = find_default_machine(machines);
1647 if (!machine_class) {
1648 error_setg(&local_err, "No machine specified, and there is no default");
1652 g_slist_free(machines);
1653 if (local_err) {
1654 error_append_hint(&local_err, "Use -machine help to list supported machines\n");
1655 error_propagate(errp, local_err);
1657 return machine_class;
1660 static int object_parse_property_opt(Object *obj,
1661 const char *name, const char *value,
1662 const char *skip, Error **errp)
1664 if (g_str_equal(name, skip)) {
1665 return 0;
1668 if (!object_property_parse(obj, name, value, errp)) {
1669 return -1;
1672 return 0;
1675 /* *Non*recursively replace underscores with dashes in QDict keys. */
1676 static void keyval_dashify(QDict *qdict, Error **errp)
1678 const QDictEntry *ent, *next;
1679 char *p;
1681 for (ent = qdict_first(qdict); ent; ent = next) {
1682 g_autofree char *new_key = NULL;
1684 next = qdict_next(qdict, ent);
1685 if (!strchr(ent->key, '_')) {
1686 continue;
1688 new_key = g_strdup(ent->key);
1689 for (p = new_key; *p; p++) {
1690 if (*p == '_') {
1691 *p = '-';
1694 if (qdict_haskey(qdict, new_key)) {
1695 error_setg(errp, "Conflict between '%s' and '%s'", ent->key, new_key);
1696 return;
1698 qobject_ref(ent->value);
1699 qdict_put_obj(qdict, new_key, ent->value);
1700 qdict_del(qdict, ent->key);
1704 static void qemu_apply_legacy_machine_options(QDict *qdict)
1706 const char *value;
1707 QObject *prop;
1709 keyval_dashify(qdict, &error_fatal);
1711 /* Legacy options do not correspond to MachineState properties. */
1712 value = qdict_get_try_str(qdict, "accel");
1713 if (value) {
1714 accelerators = g_strdup(value);
1715 qdict_del(qdict, "accel");
1718 value = qdict_get_try_str(qdict, "igd-passthru");
1719 if (value) {
1720 object_register_sugar_prop(ACCEL_CLASS_NAME("xen"), "igd-passthru", value,
1721 false);
1722 qdict_del(qdict, "igd-passthru");
1725 value = qdict_get_try_str(qdict, "kvm-shadow-mem");
1726 if (value) {
1727 object_register_sugar_prop(ACCEL_CLASS_NAME("kvm"), "kvm-shadow-mem", value,
1728 false);
1729 qdict_del(qdict, "kvm-shadow-mem");
1732 value = qdict_get_try_str(qdict, "kernel-irqchip");
1733 if (value) {
1734 object_register_sugar_prop(ACCEL_CLASS_NAME("kvm"), "kernel-irqchip", value,
1735 false);
1736 object_register_sugar_prop(ACCEL_CLASS_NAME("whpx"), "kernel-irqchip", value,
1737 false);
1738 qdict_del(qdict, "kernel-irqchip");
1741 value = qdict_get_try_str(qdict, "memory-backend");
1742 if (value) {
1743 if (mem_path) {
1744 error_report("'-mem-path' can't be used together with"
1745 "'-machine memory-backend'");
1746 exit(EXIT_FAILURE);
1749 /* Resolved later. */
1750 ram_memdev_id = g_strdup(value);
1751 qdict_del(qdict, "memory-backend");
1754 prop = qdict_get(qdict, "memory");
1755 if (prop) {
1756 have_custom_ram_size =
1757 qobject_type(prop) == QTYPE_QDICT &&
1758 qdict_haskey(qobject_to(QDict, prop), "size");
1762 static void object_option_foreach_add(bool (*type_opt_predicate)(const char *))
1764 ObjectOption *opt, *next;
1766 QTAILQ_FOREACH_SAFE(opt, &object_opts, next, next) {
1767 const char *type = ObjectType_str(opt->opts->qom_type);
1768 if (type_opt_predicate(type)) {
1769 user_creatable_add_qapi(opt->opts, &error_fatal);
1770 qapi_free_ObjectOptions(opt->opts);
1771 QTAILQ_REMOVE(&object_opts, opt, next);
1772 g_free(opt);
1777 static void object_option_add_visitor(Visitor *v)
1779 ObjectOption *opt = g_new0(ObjectOption, 1);
1780 visit_type_ObjectOptions(v, NULL, &opt->opts, &error_fatal);
1781 QTAILQ_INSERT_TAIL(&object_opts, opt, next);
1784 static void object_option_parse(const char *optarg)
1786 QemuOpts *opts;
1787 const char *type;
1788 Visitor *v;
1790 if (optarg[0] == '{') {
1791 QObject *obj = qobject_from_json(optarg, &error_fatal);
1793 v = qobject_input_visitor_new(obj);
1794 qobject_unref(obj);
1795 } else {
1796 opts = qemu_opts_parse_noisily(qemu_find_opts("object"),
1797 optarg, true);
1798 if (!opts) {
1799 exit(1);
1802 type = qemu_opt_get(opts, "qom-type");
1803 if (!type) {
1804 error_setg(&error_fatal, QERR_MISSING_PARAMETER, "qom-type");
1806 if (user_creatable_print_help(type, opts)) {
1807 exit(0);
1810 v = opts_visitor_new(opts);
1813 object_option_add_visitor(v);
1814 visit_free(v);
1818 * Very early object creation, before the sandbox options have been activated.
1820 static bool object_create_pre_sandbox(const char *type)
1823 * Objects should in general not get initialized "too early" without
1824 * a reason. If you add one, state the reason in a comment!
1828 * Reason: -sandbox on,resourcecontrol=deny disallows setting CPU
1829 * affinity of threads.
1831 if (g_str_equal(type, "thread-context")) {
1832 return true;
1835 return false;
1839 * Initial object creation happens before all other
1840 * QEMU data types are created. The majority of objects
1841 * can be created at this point. The rng-egd object
1842 * cannot be created here, as it depends on the chardev
1843 * already existing.
1845 static bool object_create_early(const char *type)
1848 * Objects should not be made "delayed" without a reason. If you
1849 * add one, state the reason in a comment!
1852 /* Reason: already created. */
1853 if (object_create_pre_sandbox(type)) {
1854 return false;
1857 /* Reason: property "chardev" */
1858 if (g_str_equal(type, "rng-egd") ||
1859 g_str_equal(type, "qtest")) {
1860 return false;
1863 #if defined(CONFIG_VHOST_USER) && defined(CONFIG_LINUX)
1864 /* Reason: cryptodev-vhost-user property "chardev" */
1865 if (g_str_equal(type, "cryptodev-vhost-user")) {
1866 return false;
1868 #endif
1870 /* Reason: vhost-user-blk-server property "node-name" */
1871 if (g_str_equal(type, "vhost-user-blk-server")) {
1872 return false;
1875 * Reason: filter-* property "netdev" etc.
1877 if (g_str_equal(type, "filter-buffer") ||
1878 g_str_equal(type, "filter-dump") ||
1879 g_str_equal(type, "filter-mirror") ||
1880 g_str_equal(type, "filter-redirector") ||
1881 g_str_equal(type, "colo-compare") ||
1882 g_str_equal(type, "filter-rewriter") ||
1883 g_str_equal(type, "filter-replay")) {
1884 return false;
1888 * Allocation of large amounts of memory may delay
1889 * chardev initialization for too long, and trigger timeouts
1890 * on software that waits for a monitor socket to be created
1891 * (e.g. libvirt).
1893 if (g_str_has_prefix(type, "memory-backend-")) {
1894 return false;
1897 return true;
1900 static void qemu_apply_machine_options(QDict *qdict)
1902 object_set_properties_from_keyval(OBJECT(current_machine), qdict, false, &error_fatal);
1904 if (semihosting_enabled(false) && !semihosting_get_argc()) {
1905 /* fall back to the -kernel/-append */
1906 semihosting_arg_fallback(current_machine->kernel_filename, current_machine->kernel_cmdline);
1909 if (current_machine->smp.cpus > 1) {
1910 replay_add_blocker("smp");
1914 static void qemu_create_early_backends(void)
1916 MachineClass *machine_class = MACHINE_GET_CLASS(current_machine);
1917 #if defined(CONFIG_SDL)
1918 const bool use_sdl = (dpy.type == DISPLAY_TYPE_SDL);
1919 #else
1920 const bool use_sdl = false;
1921 #endif
1922 #if defined(CONFIG_GTK)
1923 const bool use_gtk = (dpy.type == DISPLAY_TYPE_GTK);
1924 #else
1925 const bool use_gtk = false;
1926 #endif
1928 if (dpy.has_window_close && !use_gtk && !use_sdl) {
1929 error_report("window-close is only valid for GTK and SDL, "
1930 "ignoring option");
1933 qemu_display_early_init(&dpy);
1934 qemu_console_early_init();
1936 if (dpy.has_gl && dpy.gl != DISPLAYGL_MODE_OFF && display_opengl == 0) {
1937 #if defined(CONFIG_OPENGL)
1938 error_report("OpenGL is not supported by the display");
1939 #else
1940 error_report("OpenGL support is disabled");
1941 #endif
1942 exit(1);
1945 object_option_foreach_add(object_create_early);
1947 /* spice needs the timers to be initialized by this point */
1948 /* spice must initialize before audio as it changes the default audiodev */
1949 /* spice must initialize before chardevs (for spicevmc and spiceport) */
1950 qemu_spice.init();
1952 qemu_opts_foreach(qemu_find_opts("chardev"),
1953 chardev_init_func, NULL, &error_fatal);
1955 #ifdef CONFIG_VIRTFS
1956 qemu_opts_foreach(qemu_find_opts("fsdev"),
1957 fsdev_init_func, NULL, &error_fatal);
1958 #endif
1961 * Note: we need to create audio and block backends before
1962 * setting machine properties, so they can be referred to.
1964 configure_blockdev(&bdo_queue, machine_class, snapshot);
1965 audio_init_audiodevs();
1970 * The remainder of object creation happens after the
1971 * creation of chardev, fsdev, net clients and device data types.
1973 static bool object_create_late(const char *type)
1975 return !object_create_early(type) && !object_create_pre_sandbox(type);
1978 static void qemu_create_late_backends(void)
1980 if (qtest_chrdev) {
1981 qtest_server_init(qtest_chrdev, qtest_log, &error_fatal);
1984 net_init_clients();
1986 object_option_foreach_add(object_create_late);
1988 if (tpm_init() < 0) {
1989 exit(1);
1992 qemu_opts_foreach(qemu_find_opts("mon"),
1993 mon_init_func, NULL, &error_fatal);
1995 if (foreach_device_config(DEV_SERIAL, serial_parse) < 0)
1996 exit(1);
1997 if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0)
1998 exit(1);
1999 if (foreach_device_config(DEV_DEBUGCON, debugcon_parse) < 0)
2000 exit(1);
2002 /* now chardevs have been created we may have semihosting to connect */
2003 qemu_semihosting_chardev_init();
2006 static void qemu_resolve_machine_memdev(void)
2008 if (ram_memdev_id) {
2009 Object *backend;
2010 ram_addr_t backend_size;
2012 backend = object_resolve_path_type(ram_memdev_id,
2013 TYPE_MEMORY_BACKEND, NULL);
2014 if (!backend) {
2015 error_report("Memory backend '%s' not found", ram_memdev_id);
2016 exit(EXIT_FAILURE);
2018 if (!have_custom_ram_size) {
2019 backend_size = object_property_get_uint(backend, "size", &error_abort);
2020 current_machine->ram_size = backend_size;
2022 object_property_set_link(OBJECT(current_machine),
2023 "memory-backend", backend, &error_fatal);
2027 static void parse_memory_options(void)
2029 QemuOpts *opts = qemu_find_opts_singleton("memory");
2030 QDict *dict, *prop;
2031 const char *mem_str;
2032 Location loc;
2034 loc_push_none(&loc);
2035 qemu_opts_loc_restore(opts);
2037 prop = qdict_new();
2039 if (qemu_opt_get_size(opts, "size", 0) != 0) {
2040 /* Fix up legacy suffix-less format */
2041 mem_str = qemu_opt_get(opts, "size");
2042 if (g_ascii_isdigit(mem_str[strlen(mem_str) - 1])) {
2043 g_autofree char *mib_str = g_strdup_printf("%sM", mem_str);
2044 qdict_put_str(prop, "size", mib_str);
2045 } else {
2046 qdict_put_str(prop, "size", mem_str);
2050 if (qemu_opt_get(opts, "maxmem")) {
2051 qdict_put_str(prop, "max-size", qemu_opt_get(opts, "maxmem"));
2053 if (qemu_opt_get(opts, "slots")) {
2054 qdict_put_str(prop, "slots", qemu_opt_get(opts, "slots"));
2057 dict = qdict_new();
2058 qdict_put(dict, "memory", prop);
2059 keyval_merge(machine_opts_dict, dict, &error_fatal);
2060 qobject_unref(dict);
2061 loc_pop(&loc);
2064 static void qemu_create_machine(QDict *qdict)
2066 MachineClass *machine_class = select_machine(qdict, &error_fatal);
2067 object_set_machine_compat_props(machine_class->compat_props);
2069 current_machine = MACHINE(object_new_with_class(OBJECT_CLASS(machine_class)));
2070 object_property_add_child(object_get_root(), "machine",
2071 OBJECT(current_machine));
2072 object_property_add_child(container_get(OBJECT(current_machine),
2073 "/unattached"),
2074 "sysbus", OBJECT(sysbus_get_default()));
2076 if (machine_class->minimum_page_bits) {
2077 if (!set_preferred_target_page_bits(machine_class->minimum_page_bits)) {
2078 /* This would be a board error: specifying a minimum smaller than
2079 * a target's compile-time fixed setting.
2081 g_assert_not_reached();
2085 cpu_exec_init_all();
2086 page_size_init();
2088 if (machine_class->hw_version) {
2089 qemu_set_hw_version(machine_class->hw_version);
2093 * Get the default machine options from the machine if it is not already
2094 * specified either by the configuration file or by the command line.
2096 if (machine_class->default_machine_opts) {
2097 QDict *default_opts =
2098 keyval_parse(machine_class->default_machine_opts, NULL, NULL,
2099 &error_abort);
2100 qemu_apply_legacy_machine_options(default_opts);
2101 object_set_properties_from_keyval(OBJECT(current_machine), default_opts,
2102 false, &error_abort);
2103 qobject_unref(default_opts);
2107 static int global_init_func(void *opaque, QemuOpts *opts, Error **errp)
2109 GlobalProperty *g;
2111 g = g_malloc0(sizeof(*g));
2112 g->driver = qemu_opt_get(opts, "driver");
2113 g->property = qemu_opt_get(opts, "property");
2114 g->value = qemu_opt_get(opts, "value");
2115 qdev_prop_register_global(g);
2116 return 0;
2120 * Return whether configuration group @group is stored in QemuOpts, or
2121 * recorded as one or more QDicts by qemu_record_config_group.
2123 static bool is_qemuopts_group(const char *group)
2125 if (g_str_equal(group, "object") ||
2126 g_str_equal(group, "audiodev") ||
2127 g_str_equal(group, "machine") ||
2128 g_str_equal(group, "smp-opts") ||
2129 g_str_equal(group, "boot-opts")) {
2130 return false;
2132 return true;
2135 static void qemu_record_config_group(const char *group, QDict *dict,
2136 bool from_json, Error **errp)
2138 if (g_str_equal(group, "object")) {
2139 Visitor *v = qobject_input_visitor_new_keyval(QOBJECT(dict));
2140 object_option_add_visitor(v);
2141 visit_free(v);
2143 } else if (g_str_equal(group, "audiodev")) {
2144 Audiodev *dev = NULL;
2145 Visitor *v = qobject_input_visitor_new_keyval(QOBJECT(dict));
2146 if (visit_type_Audiodev(v, NULL, &dev, errp)) {
2147 audio_define(dev);
2149 visit_free(v);
2151 } else if (g_str_equal(group, "machine")) {
2153 * Cannot merge string-valued and type-safe dictionaries, so JSON
2154 * is not accepted yet for -M.
2156 assert(!from_json);
2157 keyval_merge(machine_opts_dict, dict, errp);
2158 } else if (g_str_equal(group, "smp-opts")) {
2159 machine_merge_property("smp", dict, &error_fatal);
2160 } else if (g_str_equal(group, "boot-opts")) {
2161 machine_merge_property("boot", dict, &error_fatal);
2162 } else {
2163 abort();
2168 * Parse non-QemuOpts config file groups, pass the rest to
2169 * qemu_config_do_parse.
2171 static void qemu_parse_config_group(const char *group, QDict *qdict,
2172 void *opaque, Error **errp)
2174 QObject *crumpled;
2175 if (is_qemuopts_group(group)) {
2176 qemu_config_do_parse(group, qdict, opaque, errp);
2177 return;
2180 crumpled = qdict_crumple(qdict, errp);
2181 if (!crumpled) {
2182 return;
2184 switch (qobject_type(crumpled)) {
2185 case QTYPE_QDICT:
2186 qemu_record_config_group(group, qobject_to(QDict, crumpled), false, errp);
2187 break;
2188 case QTYPE_QLIST:
2189 error_setg(errp, "Lists cannot be at top level of a configuration section");
2190 break;
2191 default:
2192 g_assert_not_reached();
2194 qobject_unref(crumpled);
2197 static void qemu_read_default_config_file(Error **errp)
2199 ERRP_GUARD();
2200 int ret;
2201 g_autofree char *file = get_relocated_path(CONFIG_QEMU_CONFDIR "/qemu.conf");
2203 ret = qemu_read_config_file(file, qemu_parse_config_group, errp);
2204 if (ret < 0) {
2205 if (ret == -ENOENT) {
2206 error_free(*errp);
2207 *errp = NULL;
2212 static void qemu_set_option(const char *str, Error **errp)
2214 char group[64], id[64], arg[64];
2215 QemuOptsList *list;
2216 QemuOpts *opts;
2217 int rc, offset;
2219 rc = sscanf(str, "%63[^.].%63[^.].%63[^=]%n", group, id, arg, &offset);
2220 if (rc < 3 || str[offset] != '=') {
2221 error_setg(errp, "can't parse: \"%s\"", str);
2222 return;
2225 if (!is_qemuopts_group(group)) {
2226 error_setg(errp, "-set is not supported with %s", group);
2227 } else {
2228 list = qemu_find_opts_err(group, errp);
2229 if (list) {
2230 opts = qemu_opts_find(list, id);
2231 if (!opts) {
2232 error_setg(errp, "there is no %s \"%s\" defined", group, id);
2233 return;
2235 qemu_opt_set(opts, arg, str + offset + 1, errp);
2240 static void user_register_global_props(void)
2242 qemu_opts_foreach(qemu_find_opts("global"),
2243 global_init_func, NULL, NULL);
2246 static int do_configure_icount(void *opaque, QemuOpts *opts, Error **errp)
2248 icount_configure(opts, errp);
2249 return 0;
2252 static int accelerator_set_property(void *opaque,
2253 const char *name, const char *value,
2254 Error **errp)
2256 return object_parse_property_opt(opaque, name, value, "accel", errp);
2259 static int do_configure_accelerator(void *opaque, QemuOpts *opts, Error **errp)
2261 bool *p_init_failed = opaque;
2262 const char *acc = qemu_opt_get(opts, "accel");
2263 AccelClass *ac = accel_find(acc);
2264 AccelState *accel;
2265 int ret;
2266 bool qtest_with_kvm;
2268 if (!acc) {
2269 error_setg(errp, QERR_MISSING_PARAMETER, "accel");
2270 goto bad;
2273 qtest_with_kvm = g_str_equal(acc, "kvm") && qtest_chrdev != NULL;
2275 if (!ac) {
2276 if (!qtest_with_kvm) {
2277 error_report("invalid accelerator %s", acc);
2279 goto bad;
2281 accel = ACCEL(object_new_with_class(OBJECT_CLASS(ac)));
2282 object_apply_compat_props(OBJECT(accel));
2283 qemu_opt_foreach(opts, accelerator_set_property,
2284 accel,
2285 &error_fatal);
2287 * If legacy -singlestep option is set, honour it for TCG and
2288 * silently ignore for any other accelerator (which is how this
2289 * option has always behaved).
2291 if (opt_one_insn_per_tb) {
2293 * This will always succeed for TCG, and we want to ignore
2294 * the error from trying to set a nonexistent property
2295 * on any other accelerator.
2297 object_property_set_bool(OBJECT(accel), "one-insn-per-tb", true, NULL);
2299 ret = accel_init_machine(accel, current_machine);
2300 if (ret < 0) {
2301 if (!qtest_with_kvm || ret != -ENOENT) {
2302 error_report("failed to initialize %s: %s", acc, strerror(-ret));
2304 goto bad;
2307 return 1;
2309 bad:
2310 *p_init_failed = true;
2311 return 0;
2314 static void configure_accelerators(const char *progname)
2316 bool init_failed = false;
2318 qemu_opts_foreach(qemu_find_opts("icount"),
2319 do_configure_icount, NULL, &error_fatal);
2321 if (QTAILQ_EMPTY(&qemu_accel_opts.head)) {
2322 char **accel_list, **tmp;
2324 if (accelerators == NULL) {
2325 /* Select the default accelerator */
2326 bool have_tcg = accel_find("tcg");
2327 bool have_kvm = accel_find("kvm");
2329 if (have_tcg && have_kvm) {
2330 if (g_str_has_suffix(progname, "kvm")) {
2331 /* If the program name ends with "kvm", we prefer KVM */
2332 accelerators = "kvm:tcg";
2333 } else {
2334 accelerators = "tcg:kvm";
2336 } else if (have_kvm) {
2337 accelerators = "kvm";
2338 } else if (have_tcg) {
2339 accelerators = "tcg";
2340 } else {
2341 error_report("No accelerator selected and"
2342 " no default accelerator available");
2343 exit(1);
2346 accel_list = g_strsplit(accelerators, ":", 0);
2348 for (tmp = accel_list; *tmp; tmp++) {
2350 * Filter invalid accelerators here, to prevent obscenities
2351 * such as "-machine accel=tcg,,thread=single".
2353 if (accel_find(*tmp)) {
2354 qemu_opts_parse_noisily(qemu_find_opts("accel"), *tmp, true);
2355 } else {
2356 init_failed = true;
2357 error_report("invalid accelerator %s", *tmp);
2360 g_strfreev(accel_list);
2361 } else {
2362 if (accelerators != NULL) {
2363 error_report("The -accel and \"-machine accel=\" options are incompatible");
2364 exit(1);
2368 if (!qemu_opts_foreach(qemu_find_opts("accel"),
2369 do_configure_accelerator, &init_failed, &error_fatal)) {
2370 if (!init_failed) {
2371 error_report("no accelerator found");
2373 exit(1);
2376 if (init_failed && !qtest_chrdev) {
2377 error_report("falling back to %s", current_accel_name());
2380 if (icount_enabled() && !tcg_enabled()) {
2381 error_report("-icount is not allowed with hardware virtualization");
2382 exit(1);
2386 static void qemu_validate_options(const QDict *machine_opts)
2388 const char *kernel_filename = qdict_get_try_str(machine_opts, "kernel");
2389 const char *initrd_filename = qdict_get_try_str(machine_opts, "initrd");
2390 const char *kernel_cmdline = qdict_get_try_str(machine_opts, "append");
2392 if (kernel_filename == NULL) {
2393 if (kernel_cmdline != NULL) {
2394 error_report("-append only allowed with -kernel option");
2395 exit(1);
2398 if (initrd_filename != NULL) {
2399 error_report("-initrd only allowed with -kernel option");
2400 exit(1);
2404 if (loadvm && preconfig_requested) {
2405 error_report("'preconfig' and 'loadvm' options are "
2406 "mutually exclusive");
2407 exit(EXIT_FAILURE);
2409 if (incoming && preconfig_requested && strcmp(incoming, "defer") != 0) {
2410 error_report("'preconfig' supports '-incoming defer' only");
2411 exit(EXIT_FAILURE);
2414 #ifdef CONFIG_CURSES
2415 if (is_daemonized() && dpy.type == DISPLAY_TYPE_CURSES) {
2416 error_report("curses display cannot be used with -daemonize");
2417 exit(1);
2419 #endif
2422 static void qemu_process_sugar_options(void)
2424 if (mem_prealloc) {
2425 QObject *smp = qdict_get(machine_opts_dict, "smp");
2426 if (smp && qobject_type(smp) == QTYPE_QDICT) {
2427 QObject *cpus = qdict_get(qobject_to(QDict, smp), "cpus");
2428 if (cpus && qobject_type(cpus) == QTYPE_QSTRING) {
2429 const char *val = qstring_get_str(qobject_to(QString, cpus));
2430 object_register_sugar_prop("memory-backend", "prealloc-threads",
2431 val, false);
2434 object_register_sugar_prop("memory-backend", "prealloc", "on", false);
2438 /* -action processing */
2441 * Process all the -action parameters parsed from cmdline.
2443 static int process_runstate_actions(void *opaque, QemuOpts *opts, Error **errp)
2445 Error *local_err = NULL;
2446 QDict *qdict = qemu_opts_to_qdict(opts, NULL);
2447 QObject *ret = NULL;
2448 qmp_marshal_set_action(qdict, &ret, &local_err);
2449 qobject_unref(ret);
2450 qobject_unref(qdict);
2451 if (local_err) {
2452 error_propagate(errp, local_err);
2453 return 1;
2455 return 0;
2458 static void qemu_process_early_options(void)
2460 qemu_opts_foreach(qemu_find_opts("name"),
2461 parse_name, NULL, &error_fatal);
2463 object_option_foreach_add(object_create_pre_sandbox);
2465 #ifdef CONFIG_SECCOMP
2466 QemuOptsList *olist = qemu_find_opts_err("sandbox", NULL);
2467 if (olist) {
2468 qemu_opts_foreach(olist, parse_sandbox, NULL, &error_fatal);
2470 #endif
2472 if (qemu_opts_foreach(qemu_find_opts("action"),
2473 process_runstate_actions, NULL, &error_fatal)) {
2474 exit(1);
2477 #ifndef _WIN32
2478 qemu_opts_foreach(qemu_find_opts("add-fd"),
2479 parse_add_fd, NULL, &error_fatal);
2481 qemu_opts_foreach(qemu_find_opts("add-fd"),
2482 cleanup_add_fd, NULL, &error_fatal);
2483 #endif
2485 /* Open the logfile at this point and set the log mask if necessary. */
2487 int mask = 0;
2488 if (log_mask) {
2489 mask = qemu_str_to_log_mask(log_mask);
2490 if (!mask) {
2491 qemu_print_log_usage(stdout);
2492 exit(1);
2495 qemu_set_log_filename_flags(log_file, mask, &error_fatal);
2498 qemu_add_default_firmwarepath();
2501 static void qemu_process_help_options(void)
2504 * Check for -cpu help and -device help before we call select_machine(),
2505 * which will return an error if the architecture has no default machine
2506 * type and the user did not specify one, so that the user doesn't need
2507 * to say '-cpu help -machine something'.
2509 if (cpu_option && is_help_option(cpu_option)) {
2510 list_cpus();
2511 exit(0);
2514 if (qemu_opts_foreach(qemu_find_opts("device"),
2515 device_help_func, NULL, NULL)) {
2516 exit(0);
2519 /* -L help lists the data directories and exits. */
2520 if (list_data_dirs) {
2521 qemu_list_data_dirs();
2522 exit(0);
2526 static void qemu_maybe_daemonize(const char *pid_file)
2528 Error *err = NULL;
2530 os_daemonize();
2531 rcu_disable_atfork();
2533 if (pid_file) {
2534 char *pid_file_realpath = NULL;
2536 if (!qemu_write_pidfile(pid_file, &err)) {
2537 error_reportf_err(err, "cannot create PID file: ");
2538 exit(1);
2541 pid_file_realpath = g_malloc0(PATH_MAX);
2542 if (!realpath(pid_file, pid_file_realpath)) {
2543 if (errno != ENOENT) {
2544 warn_report("not removing PID file on exit: cannot resolve PID "
2545 "file path: %s: %s", pid_file, strerror(errno));
2547 return;
2550 qemu_unlink_pidfile_notifier = (struct UnlinkPidfileNotifier) {
2551 .notifier = {
2552 .notify = qemu_unlink_pidfile,
2554 .pid_file_realpath = pid_file_realpath,
2556 qemu_add_exit_notifier(&qemu_unlink_pidfile_notifier.notifier);
2560 static void qemu_init_displays(void)
2562 DisplayState *ds;
2564 /* init local displays */
2565 ds = init_displaystate();
2566 qemu_display_init(ds, &dpy);
2568 /* must be after terminal init, SDL library changes signal handlers */
2569 os_setup_signal_handling();
2571 /* init remote displays */
2572 #ifdef CONFIG_VNC
2573 qemu_opts_foreach(qemu_find_opts("vnc"),
2574 vnc_init_func, NULL, &error_fatal);
2575 #endif
2577 if (using_spice) {
2578 qemu_spice.display_init();
2582 static void qemu_init_board(void)
2584 /* process plugin before CPUs are created, but once -smp has been parsed */
2585 qemu_plugin_load_list(&plugin_list, &error_fatal);
2587 /* From here on we enter MACHINE_PHASE_INITIALIZED. */
2588 machine_run_board_init(current_machine, mem_path, &error_fatal);
2590 drive_check_orphaned();
2592 realtime_init();
2595 static void qemu_create_cli_devices(void)
2597 DeviceOption *opt;
2599 soundhw_init();
2601 qemu_opts_foreach(qemu_find_opts("fw_cfg"),
2602 parse_fw_cfg, fw_cfg_find(), &error_fatal);
2604 /* init USB devices */
2605 if (machine_usb(current_machine)) {
2606 if (foreach_device_config(DEV_USB, usb_parse) < 0)
2607 exit(1);
2610 /* init generic devices */
2611 rom_set_order_override(FW_CFG_ORDER_OVERRIDE_DEVICE);
2612 qemu_opts_foreach(qemu_find_opts("device"),
2613 device_init_func, NULL, &error_fatal);
2614 QTAILQ_FOREACH(opt, &device_opts, next) {
2615 DeviceState *dev;
2616 loc_push_restore(&opt->loc);
2618 * TODO Eventually we should call qmp_device_add() here to make sure it
2619 * behaves the same, but QMP still has to accept incorrectly typed
2620 * options until libvirt is fixed and we want to be strict on the CLI
2621 * from the start, so call qdev_device_add_from_qdict() directly for
2622 * now.
2624 dev = qdev_device_add_from_qdict(opt->opts, true, &error_fatal);
2625 object_unref(OBJECT(dev));
2626 loc_pop(&opt->loc);
2628 rom_reset_order_override();
2631 static void qemu_machine_creation_done(void)
2633 MachineState *machine = MACHINE(qdev_get_machine());
2635 /* Did we create any drives that we failed to create a device for? */
2636 drive_check_orphaned();
2638 /* Don't warn about the default network setup that you get if
2639 * no command line -net or -netdev options are specified. There
2640 * are two cases that we would otherwise complain about:
2641 * (1) board doesn't support a NIC but the implicit "-net nic"
2642 * requested one
2643 * (2) CONFIG_SLIRP not set, in which case the implicit "-net nic"
2644 * sets up a nic that isn't connected to anything.
2646 if (!default_net && (!qtest_enabled() || has_defaults)) {
2647 net_check_clients();
2650 qdev_prop_check_globals();
2652 qdev_machine_creation_done();
2654 if (machine->cgs) {
2656 * Verify that Confidential Guest Support has actually been initialized
2658 assert(machine->cgs->ready);
2661 if (foreach_device_config(DEV_GDB, gdbserver_start) < 0) {
2662 exit(1);
2664 if (!vga_interface_created && !default_vga &&
2665 vga_interface_type != VGA_NONE) {
2666 warn_report("A -vga option was passed but this machine "
2667 "type does not use that option; "
2668 "No VGA device has been created");
2672 void qmp_x_exit_preconfig(Error **errp)
2674 if (phase_check(PHASE_MACHINE_INITIALIZED)) {
2675 error_setg(errp, "The command is permitted only before machine initialization");
2676 return;
2679 qemu_init_board();
2680 qemu_create_cli_devices();
2681 qemu_machine_creation_done();
2683 if (loadvm) {
2684 load_snapshot(loadvm, NULL, false, NULL, &error_fatal);
2686 if (replay_mode != REPLAY_MODE_NONE) {
2687 replay_vmstate_init();
2690 if (incoming) {
2691 Error *local_err = NULL;
2692 if (strcmp(incoming, "defer") != 0) {
2693 qmp_migrate_incoming(incoming, &local_err);
2694 if (local_err) {
2695 error_reportf_err(local_err, "-incoming %s: ", incoming);
2696 exit(1);
2699 } else if (autostart) {
2700 qmp_cont(NULL);
2704 void qemu_init(int argc, char **argv)
2706 QemuOpts *opts;
2707 QemuOpts *icount_opts = NULL, *accel_opts = NULL;
2708 QemuOptsList *olist;
2709 int optind;
2710 const char *optarg;
2711 MachineClass *machine_class;
2712 bool userconfig = true;
2713 FILE *vmstate_dump_file = NULL;
2715 qemu_add_opts(&qemu_drive_opts);
2716 qemu_add_drive_opts(&qemu_legacy_drive_opts);
2717 qemu_add_drive_opts(&qemu_common_drive_opts);
2718 qemu_add_drive_opts(&qemu_drive_opts);
2719 qemu_add_drive_opts(&bdrv_runtime_opts);
2720 qemu_add_opts(&qemu_chardev_opts);
2721 qemu_add_opts(&qemu_device_opts);
2722 qemu_add_opts(&qemu_netdev_opts);
2723 qemu_add_opts(&qemu_nic_opts);
2724 qemu_add_opts(&qemu_net_opts);
2725 qemu_add_opts(&qemu_rtc_opts);
2726 qemu_add_opts(&qemu_global_opts);
2727 qemu_add_opts(&qemu_mon_opts);
2728 qemu_add_opts(&qemu_trace_opts);
2729 qemu_plugin_add_opts();
2730 qemu_add_opts(&qemu_option_rom_opts);
2731 qemu_add_opts(&qemu_accel_opts);
2732 qemu_add_opts(&qemu_mem_opts);
2733 qemu_add_opts(&qemu_smp_opts);
2734 qemu_add_opts(&qemu_boot_opts);
2735 qemu_add_opts(&qemu_add_fd_opts);
2736 qemu_add_opts(&qemu_object_opts);
2737 qemu_add_opts(&qemu_tpmdev_opts);
2738 qemu_add_opts(&qemu_overcommit_opts);
2739 qemu_add_opts(&qemu_msg_opts);
2740 qemu_add_opts(&qemu_name_opts);
2741 qemu_add_opts(&qemu_numa_opts);
2742 qemu_add_opts(&qemu_icount_opts);
2743 qemu_add_opts(&qemu_semihosting_config_opts);
2744 qemu_add_opts(&qemu_fw_cfg_opts);
2745 qemu_add_opts(&qemu_action_opts);
2746 qemu_add_run_with_opts();
2747 module_call_init(MODULE_INIT_OPTS);
2749 error_init(argv[0]);
2750 qemu_init_exec_dir(argv[0]);
2752 qemu_init_arch_modules();
2754 qemu_init_subsystems();
2756 /* first pass of option parsing */
2757 optind = 1;
2758 while (optind < argc) {
2759 if (argv[optind][0] != '-') {
2760 /* disk image */
2761 optind++;
2762 } else {
2763 const QEMUOption *popt;
2765 popt = lookup_opt(argc, argv, &optarg, &optind);
2766 switch (popt->index) {
2767 case QEMU_OPTION_nouserconfig:
2768 userconfig = false;
2769 break;
2774 machine_opts_dict = qdict_new();
2775 if (userconfig) {
2776 qemu_read_default_config_file(&error_fatal);
2779 /* second pass of option parsing */
2780 optind = 1;
2781 for(;;) {
2782 if (optind >= argc)
2783 break;
2784 if (argv[optind][0] != '-') {
2785 loc_set_cmdline(argv, optind, 1);
2786 drive_add(IF_DEFAULT, 0, argv[optind++], HD_OPTS);
2787 } else {
2788 const QEMUOption *popt;
2790 popt = lookup_opt(argc, argv, &optarg, &optind);
2791 if (!(popt->arch_mask & arch_type)) {
2792 error_report("Option not supported for this target");
2793 exit(1);
2795 switch(popt->index) {
2796 case QEMU_OPTION_cpu:
2797 /* hw initialization will check this */
2798 cpu_option = optarg;
2799 break;
2800 case QEMU_OPTION_hda:
2801 case QEMU_OPTION_hdb:
2802 case QEMU_OPTION_hdc:
2803 case QEMU_OPTION_hdd:
2804 drive_add(IF_DEFAULT, popt->index - QEMU_OPTION_hda, optarg,
2805 HD_OPTS);
2806 break;
2807 case QEMU_OPTION_blockdev:
2809 Visitor *v;
2810 BlockdevOptionsQueueEntry *bdo;
2812 v = qobject_input_visitor_new_str(optarg, "driver",
2813 &error_fatal);
2815 bdo = g_new(BlockdevOptionsQueueEntry, 1);
2816 visit_type_BlockdevOptions(v, NULL, &bdo->bdo,
2817 &error_fatal);
2818 visit_free(v);
2819 loc_save(&bdo->loc);
2820 QSIMPLEQ_INSERT_TAIL(&bdo_queue, bdo, entry);
2821 break;
2823 case QEMU_OPTION_drive:
2824 opts = qemu_opts_parse_noisily(qemu_find_opts("drive"),
2825 optarg, false);
2826 if (opts == NULL) {
2827 exit(1);
2829 break;
2830 case QEMU_OPTION_set:
2831 qemu_set_option(optarg, &error_fatal);
2832 break;
2833 case QEMU_OPTION_global:
2834 if (qemu_global_option(optarg) != 0)
2835 exit(1);
2836 break;
2837 case QEMU_OPTION_mtdblock:
2838 drive_add(IF_MTD, -1, optarg, MTD_OPTS);
2839 break;
2840 case QEMU_OPTION_sd:
2841 drive_add(IF_SD, -1, optarg, SD_OPTS);
2842 break;
2843 case QEMU_OPTION_pflash:
2844 drive_add(IF_PFLASH, -1, optarg, PFLASH_OPTS);
2845 break;
2846 case QEMU_OPTION_snapshot:
2847 snapshot = 1;
2848 replay_add_blocker("-snapshot");
2849 break;
2850 case QEMU_OPTION_numa:
2851 opts = qemu_opts_parse_noisily(qemu_find_opts("numa"),
2852 optarg, true);
2853 if (!opts) {
2854 exit(1);
2856 break;
2857 case QEMU_OPTION_display:
2858 parse_display(optarg);
2859 break;
2860 case QEMU_OPTION_nographic:
2861 qdict_put_str(machine_opts_dict, "graphics", "off");
2862 nographic = true;
2863 dpy.type = DISPLAY_TYPE_NONE;
2864 break;
2865 case QEMU_OPTION_portrait:
2866 graphic_rotate = 90;
2867 break;
2868 case QEMU_OPTION_rotate:
2869 graphic_rotate = strtol(optarg, (char **) &optarg, 10);
2870 if (graphic_rotate != 0 && graphic_rotate != 90 &&
2871 graphic_rotate != 180 && graphic_rotate != 270) {
2872 error_report("only 90, 180, 270 deg rotation is available");
2873 exit(1);
2875 break;
2876 case QEMU_OPTION_kernel:
2877 qdict_put_str(machine_opts_dict, "kernel", optarg);
2878 break;
2879 case QEMU_OPTION_initrd:
2880 qdict_put_str(machine_opts_dict, "initrd", optarg);
2881 break;
2882 case QEMU_OPTION_append:
2883 qdict_put_str(machine_opts_dict, "append", optarg);
2884 break;
2885 case QEMU_OPTION_dtb:
2886 qdict_put_str(machine_opts_dict, "dtb", optarg);
2887 break;
2888 case QEMU_OPTION_cdrom:
2889 drive_add(IF_DEFAULT, 2, optarg, CDROM_OPTS);
2890 break;
2891 case QEMU_OPTION_boot:
2892 machine_parse_property_opt(qemu_find_opts("boot-opts"), "boot", optarg);
2893 break;
2894 case QEMU_OPTION_fda:
2895 case QEMU_OPTION_fdb:
2896 drive_add(IF_FLOPPY, popt->index - QEMU_OPTION_fda,
2897 optarg, FD_OPTS);
2898 break;
2899 case QEMU_OPTION_no_fd_bootchk:
2900 fd_bootchk = 0;
2901 break;
2902 case QEMU_OPTION_netdev:
2903 default_net = 0;
2904 if (netdev_is_modern(optarg)) {
2905 netdev_parse_modern(optarg);
2906 } else {
2907 net_client_parse(qemu_find_opts("netdev"), optarg);
2909 break;
2910 case QEMU_OPTION_nic:
2911 default_net = 0;
2912 net_client_parse(qemu_find_opts("nic"), optarg);
2913 break;
2914 case QEMU_OPTION_net:
2915 default_net = 0;
2916 net_client_parse(qemu_find_opts("net"), optarg);
2917 break;
2918 #ifdef CONFIG_LIBISCSI
2919 case QEMU_OPTION_iscsi:
2920 opts = qemu_opts_parse_noisily(qemu_find_opts("iscsi"),
2921 optarg, false);
2922 if (!opts) {
2923 exit(1);
2925 break;
2926 #endif
2927 case QEMU_OPTION_audiodev:
2928 audio_parse_option(optarg);
2929 break;
2930 case QEMU_OPTION_audio: {
2931 bool help;
2932 char *model;
2933 Audiodev *dev = NULL;
2934 Visitor *v;
2935 QDict *dict = keyval_parse(optarg, "driver", &help, &error_fatal);
2936 if (help || (qdict_haskey(dict, "driver") &&
2937 is_help_option(qdict_get_str(dict, "driver")))) {
2938 audio_help();
2939 exit(EXIT_SUCCESS);
2941 if (!qdict_haskey(dict, "id")) {
2942 qdict_put_str(dict, "id", "audiodev0");
2944 if (!qdict_haskey(dict, "model")) {
2945 error_setg(&error_fatal, "Parameter 'model' is missing");
2947 model = g_strdup(qdict_get_str(dict, "model"));
2948 qdict_del(dict, "model");
2949 if (is_help_option(model)) {
2950 show_valid_soundhw();
2951 exit(0);
2953 v = qobject_input_visitor_new_keyval(QOBJECT(dict));
2954 qobject_unref(dict);
2955 visit_type_Audiodev(v, NULL, &dev, &error_fatal);
2956 visit_free(v);
2957 audio_define(dev);
2958 select_soundhw(model, dev->id);
2959 g_free(model);
2960 break;
2962 case QEMU_OPTION_h:
2963 help(0);
2964 break;
2965 case QEMU_OPTION_version:
2966 version();
2967 exit(0);
2968 break;
2969 case QEMU_OPTION_m:
2970 opts = qemu_opts_parse_noisily(qemu_find_opts("memory"), optarg, true);
2971 if (opts == NULL) {
2972 exit(1);
2974 break;
2975 #ifdef CONFIG_TPM
2976 case QEMU_OPTION_tpmdev:
2977 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg) < 0) {
2978 exit(1);
2980 break;
2981 #endif
2982 case QEMU_OPTION_mempath:
2983 mem_path = optarg;
2984 break;
2985 case QEMU_OPTION_mem_prealloc:
2986 mem_prealloc = 1;
2987 break;
2988 case QEMU_OPTION_d:
2989 log_mask = optarg;
2990 break;
2991 case QEMU_OPTION_D:
2992 log_file = optarg;
2993 break;
2994 case QEMU_OPTION_DFILTER:
2995 qemu_set_dfilter_ranges(optarg, &error_fatal);
2996 break;
2997 #if defined(CONFIG_TCG) && defined(CONFIG_LINUX)
2998 case QEMU_OPTION_perfmap:
2999 perf_enable_perfmap();
3000 break;
3001 case QEMU_OPTION_jitdump:
3002 perf_enable_jitdump();
3003 break;
3004 #endif
3005 case QEMU_OPTION_seed:
3006 qemu_guest_random_seed_main(optarg, &error_fatal);
3007 break;
3008 case QEMU_OPTION_s:
3009 add_device_config(DEV_GDB, "tcp::" DEFAULT_GDBSTUB_PORT);
3010 break;
3011 case QEMU_OPTION_gdb:
3012 add_device_config(DEV_GDB, optarg);
3013 break;
3014 case QEMU_OPTION_L:
3015 if (is_help_option(optarg)) {
3016 list_data_dirs = true;
3017 } else {
3018 qemu_add_data_dir(g_strdup(optarg));
3020 break;
3021 case QEMU_OPTION_bios:
3022 qdict_put_str(machine_opts_dict, "firmware", optarg);
3023 break;
3024 case QEMU_OPTION_singlestep:
3025 opt_one_insn_per_tb = true;
3026 break;
3027 case QEMU_OPTION_S:
3028 autostart = 0;
3029 break;
3030 case QEMU_OPTION_k:
3031 keyboard_layout = optarg;
3032 break;
3033 case QEMU_OPTION_vga:
3034 vga_model = optarg;
3035 default_vga = 0;
3036 break;
3037 case QEMU_OPTION_g:
3039 const char *p;
3040 int w, h, depth;
3041 p = optarg;
3042 w = strtol(p, (char **)&p, 10);
3043 if (w <= 0) {
3044 graphic_error:
3045 error_report("invalid resolution or depth");
3046 exit(1);
3048 if (*p != 'x')
3049 goto graphic_error;
3050 p++;
3051 h = strtol(p, (char **)&p, 10);
3052 if (h <= 0)
3053 goto graphic_error;
3054 if (*p == 'x') {
3055 p++;
3056 depth = strtol(p, (char **)&p, 10);
3057 if (depth != 1 && depth != 2 && depth != 4 &&
3058 depth != 8 && depth != 15 && depth != 16 &&
3059 depth != 24 && depth != 32)
3060 goto graphic_error;
3061 } else if (*p == '\0') {
3062 depth = graphic_depth;
3063 } else {
3064 goto graphic_error;
3067 graphic_width = w;
3068 graphic_height = h;
3069 graphic_depth = depth;
3071 break;
3072 case QEMU_OPTION_echr:
3074 char *r;
3075 term_escape_char = strtol(optarg, &r, 0);
3076 if (r == optarg)
3077 printf("Bad argument to echr\n");
3078 break;
3080 case QEMU_OPTION_monitor:
3081 default_monitor = 0;
3082 if (strncmp(optarg, "none", 4)) {
3083 monitor_parse(optarg, "readline", false);
3085 break;
3086 case QEMU_OPTION_qmp:
3087 monitor_parse(optarg, "control", false);
3088 default_monitor = 0;
3089 break;
3090 case QEMU_OPTION_qmp_pretty:
3091 monitor_parse(optarg, "control", true);
3092 default_monitor = 0;
3093 break;
3094 case QEMU_OPTION_mon:
3095 opts = qemu_opts_parse_noisily(qemu_find_opts("mon"), optarg,
3096 true);
3097 if (!opts) {
3098 exit(1);
3100 default_monitor = 0;
3101 break;
3102 case QEMU_OPTION_chardev:
3103 opts = qemu_opts_parse_noisily(qemu_find_opts("chardev"),
3104 optarg, true);
3105 if (!opts) {
3106 exit(1);
3108 break;
3109 case QEMU_OPTION_fsdev:
3110 olist = qemu_find_opts("fsdev");
3111 if (!olist) {
3112 error_report("fsdev support is disabled");
3113 exit(1);
3115 opts = qemu_opts_parse_noisily(olist, optarg, true);
3116 if (!opts) {
3117 exit(1);
3119 break;
3120 case QEMU_OPTION_virtfs: {
3121 QemuOpts *fsdev;
3122 QemuOpts *device;
3123 const char *writeout, *sock_fd, *socket, *path, *security_model,
3124 *multidevs;
3126 olist = qemu_find_opts("virtfs");
3127 if (!olist) {
3128 error_report("virtfs support is disabled");
3129 exit(1);
3131 opts = qemu_opts_parse_noisily(olist, optarg, true);
3132 if (!opts) {
3133 exit(1);
3136 if (qemu_opt_get(opts, "fsdriver") == NULL ||
3137 qemu_opt_get(opts, "mount_tag") == NULL) {
3138 error_report("Usage: -virtfs fsdriver,mount_tag=tag");
3139 exit(1);
3141 fsdev = qemu_opts_create(qemu_find_opts("fsdev"),
3142 qemu_opts_id(opts) ?:
3143 qemu_opt_get(opts, "mount_tag"),
3144 1, NULL);
3145 if (!fsdev) {
3146 error_report("duplicate or invalid fsdev id: %s",
3147 qemu_opt_get(opts, "mount_tag"));
3148 exit(1);
3151 writeout = qemu_opt_get(opts, "writeout");
3152 if (writeout) {
3153 #ifdef CONFIG_SYNC_FILE_RANGE
3154 qemu_opt_set(fsdev, "writeout", writeout, &error_abort);
3155 #else
3156 error_report("writeout=immediate not supported "
3157 "on this platform");
3158 exit(1);
3159 #endif
3161 qemu_opt_set(fsdev, "fsdriver",
3162 qemu_opt_get(opts, "fsdriver"), &error_abort);
3163 path = qemu_opt_get(opts, "path");
3164 if (path) {
3165 qemu_opt_set(fsdev, "path", path, &error_abort);
3167 security_model = qemu_opt_get(opts, "security_model");
3168 if (security_model) {
3169 qemu_opt_set(fsdev, "security_model", security_model,
3170 &error_abort);
3172 socket = qemu_opt_get(opts, "socket");
3173 if (socket) {
3174 qemu_opt_set(fsdev, "socket", socket, &error_abort);
3176 sock_fd = qemu_opt_get(opts, "sock_fd");
3177 if (sock_fd) {
3178 qemu_opt_set(fsdev, "sock_fd", sock_fd, &error_abort);
3181 qemu_opt_set_bool(fsdev, "readonly",
3182 qemu_opt_get_bool(opts, "readonly", 0),
3183 &error_abort);
3184 multidevs = qemu_opt_get(opts, "multidevs");
3185 if (multidevs) {
3186 qemu_opt_set(fsdev, "multidevs", multidevs, &error_abort);
3188 device = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
3189 &error_abort);
3190 qemu_opt_set(device, "driver", "virtio-9p-pci", &error_abort);
3191 qemu_opt_set(device, "fsdev",
3192 qemu_opts_id(fsdev), &error_abort);
3193 qemu_opt_set(device, "mount_tag",
3194 qemu_opt_get(opts, "mount_tag"), &error_abort);
3195 break;
3197 case QEMU_OPTION_serial:
3198 add_device_config(DEV_SERIAL, optarg);
3199 default_serial = 0;
3200 if (strncmp(optarg, "mon:", 4) == 0) {
3201 default_monitor = 0;
3203 break;
3204 case QEMU_OPTION_action:
3205 olist = qemu_find_opts("action");
3206 if (!qemu_opts_parse_noisily(olist, optarg, false)) {
3207 exit(1);
3209 break;
3210 case QEMU_OPTION_watchdog_action: {
3211 opts = qemu_opts_create(qemu_find_opts("action"), NULL, 0, &error_abort);
3212 qemu_opt_set(opts, "watchdog", optarg, &error_abort);
3213 break;
3215 case QEMU_OPTION_parallel:
3216 add_device_config(DEV_PARALLEL, optarg);
3217 default_parallel = 0;
3218 if (strncmp(optarg, "mon:", 4) == 0) {
3219 default_monitor = 0;
3221 break;
3222 case QEMU_OPTION_debugcon:
3223 add_device_config(DEV_DEBUGCON, optarg);
3224 break;
3225 case QEMU_OPTION_loadvm:
3226 loadvm = optarg;
3227 break;
3228 case QEMU_OPTION_full_screen:
3229 dpy.has_full_screen = true;
3230 dpy.full_screen = true;
3231 break;
3232 case QEMU_OPTION_pidfile:
3233 pid_file = optarg;
3234 break;
3235 case QEMU_OPTION_win2k_hack:
3236 win2k_install_hack = 1;
3237 break;
3238 case QEMU_OPTION_acpitable:
3239 opts = qemu_opts_parse_noisily(qemu_find_opts("acpi"),
3240 optarg, true);
3241 if (!opts) {
3242 exit(1);
3244 acpi_table_add(opts, &error_fatal);
3245 break;
3246 case QEMU_OPTION_smbios:
3247 opts = qemu_opts_parse_noisily(qemu_find_opts("smbios"),
3248 optarg, false);
3249 if (!opts) {
3250 exit(1);
3252 smbios_entry_add(opts, &error_fatal);
3253 break;
3254 case QEMU_OPTION_fwcfg:
3255 opts = qemu_opts_parse_noisily(qemu_find_opts("fw_cfg"),
3256 optarg, true);
3257 if (opts == NULL) {
3258 exit(1);
3260 break;
3261 case QEMU_OPTION_preconfig:
3262 preconfig_requested = true;
3263 break;
3264 case QEMU_OPTION_enable_kvm:
3265 qdict_put_str(machine_opts_dict, "accel", "kvm");
3266 break;
3267 case QEMU_OPTION_M:
3268 case QEMU_OPTION_machine:
3270 bool help;
3272 keyval_parse_into(machine_opts_dict, optarg, "type", &help, &error_fatal);
3273 if (help) {
3274 machine_help_func(machine_opts_dict);
3275 exit(EXIT_SUCCESS);
3277 break;
3279 case QEMU_OPTION_accel:
3280 accel_opts = qemu_opts_parse_noisily(qemu_find_opts("accel"),
3281 optarg, true);
3282 optarg = qemu_opt_get(accel_opts, "accel");
3283 if (!optarg || is_help_option(optarg)) {
3284 printf("Accelerators supported in QEMU binary:\n");
3285 GSList *el, *accel_list = object_class_get_list(TYPE_ACCEL,
3286 false);
3287 for (el = accel_list; el; el = el->next) {
3288 gchar *typename = g_strdup(object_class_get_name(
3289 OBJECT_CLASS(el->data)));
3290 /* omit qtest which is used for tests only */
3291 if (g_strcmp0(typename, ACCEL_CLASS_NAME("qtest")) &&
3292 g_str_has_suffix(typename, ACCEL_CLASS_SUFFIX)) {
3293 gchar **optname = g_strsplit(typename,
3294 ACCEL_CLASS_SUFFIX, 0);
3295 printf("%s\n", optname[0]);
3296 g_strfreev(optname);
3298 g_free(typename);
3300 g_slist_free(accel_list);
3301 exit(0);
3303 break;
3304 case QEMU_OPTION_usb:
3305 qdict_put_str(machine_opts_dict, "usb", "on");
3306 break;
3307 case QEMU_OPTION_usbdevice:
3308 qdict_put_str(machine_opts_dict, "usb", "on");
3309 add_device_config(DEV_USB, optarg);
3310 break;
3311 case QEMU_OPTION_device:
3312 if (optarg[0] == '{') {
3313 QObject *obj = qobject_from_json(optarg, &error_fatal);
3314 DeviceOption *opt = g_new0(DeviceOption, 1);
3315 opt->opts = qobject_to(QDict, obj);
3316 loc_save(&opt->loc);
3317 assert(opt->opts != NULL);
3318 QTAILQ_INSERT_TAIL(&device_opts, opt, next);
3319 } else {
3320 if (!qemu_opts_parse_noisily(qemu_find_opts("device"),
3321 optarg, true)) {
3322 exit(1);
3325 break;
3326 case QEMU_OPTION_smp:
3327 machine_parse_property_opt(qemu_find_opts("smp-opts"),
3328 "smp", optarg);
3329 break;
3330 case QEMU_OPTION_vnc:
3331 vnc_parse(optarg);
3332 break;
3333 case QEMU_OPTION_no_acpi:
3334 warn_report("-no-acpi is deprecated, use '-machine acpi=off' instead");
3335 qdict_put_str(machine_opts_dict, "acpi", "off");
3336 break;
3337 case QEMU_OPTION_no_hpet:
3338 warn_report("-no-hpet is deprecated, use '-machine hpet=off' instead");
3339 qdict_put_str(machine_opts_dict, "hpet", "off");
3340 break;
3341 case QEMU_OPTION_no_reboot:
3342 olist = qemu_find_opts("action");
3343 qemu_opts_parse_noisily(olist, "reboot=shutdown", false);
3344 break;
3345 case QEMU_OPTION_no_shutdown:
3346 olist = qemu_find_opts("action");
3347 qemu_opts_parse_noisily(olist, "shutdown=pause", false);
3348 break;
3349 case QEMU_OPTION_uuid:
3350 if (qemu_uuid_parse(optarg, &qemu_uuid) < 0) {
3351 error_report("failed to parse UUID string: wrong format");
3352 exit(1);
3354 qemu_uuid_set = true;
3355 break;
3356 case QEMU_OPTION_option_rom:
3357 if (nb_option_roms >= MAX_OPTION_ROMS) {
3358 error_report("too many option ROMs");
3359 exit(1);
3361 opts = qemu_opts_parse_noisily(qemu_find_opts("option-rom"),
3362 optarg, true);
3363 if (!opts) {
3364 exit(1);
3366 option_rom[nb_option_roms].name = qemu_opt_get(opts, "romfile");
3367 option_rom[nb_option_roms].bootindex =
3368 qemu_opt_get_number(opts, "bootindex", -1);
3369 if (!option_rom[nb_option_roms].name) {
3370 error_report("Option ROM file is not specified");
3371 exit(1);
3373 nb_option_roms++;
3374 break;
3375 case QEMU_OPTION_semihosting:
3376 qemu_semihosting_enable();
3377 break;
3378 case QEMU_OPTION_semihosting_config:
3379 if (qemu_semihosting_config_options(optarg) != 0) {
3380 exit(1);
3382 break;
3383 case QEMU_OPTION_name:
3384 opts = qemu_opts_parse_noisily(qemu_find_opts("name"),
3385 optarg, true);
3386 if (!opts) {
3387 exit(1);
3389 /* Capture guest name if -msg guest-name is used later */
3390 error_guest_name = qemu_opt_get(opts, "guest");
3391 break;
3392 case QEMU_OPTION_prom_env:
3393 if (nb_prom_envs >= MAX_PROM_ENVS) {
3394 error_report("too many prom variables");
3395 exit(1);
3397 prom_envs[nb_prom_envs] = optarg;
3398 nb_prom_envs++;
3399 break;
3400 case QEMU_OPTION_old_param:
3401 old_param = 1;
3402 break;
3403 case QEMU_OPTION_rtc:
3404 opts = qemu_opts_parse_noisily(qemu_find_opts("rtc"), optarg,
3405 false);
3406 if (!opts) {
3407 exit(1);
3409 break;
3410 case QEMU_OPTION_icount:
3411 icount_opts = qemu_opts_parse_noisily(qemu_find_opts("icount"),
3412 optarg, true);
3413 if (!icount_opts) {
3414 exit(1);
3416 break;
3417 case QEMU_OPTION_incoming:
3418 if (!incoming) {
3419 runstate_set(RUN_STATE_INMIGRATE);
3421 incoming = optarg;
3422 break;
3423 case QEMU_OPTION_only_migratable:
3424 only_migratable = 1;
3425 break;
3426 case QEMU_OPTION_nodefaults:
3427 has_defaults = 0;
3428 break;
3429 case QEMU_OPTION_xen_domid:
3430 if (!(accel_find("xen")) && !(accel_find("kvm"))) {
3431 error_report("Option not supported for this target");
3432 exit(1);
3434 xen_domid = atoi(optarg);
3435 break;
3436 case QEMU_OPTION_xen_attach:
3437 if (!(accel_find("xen"))) {
3438 error_report("Option not supported for this target");
3439 exit(1);
3441 xen_mode = XEN_ATTACH;
3442 break;
3443 case QEMU_OPTION_xen_domid_restrict:
3444 if (!(accel_find("xen"))) {
3445 error_report("Option not supported for this target");
3446 exit(1);
3448 xen_domid_restrict = true;
3449 break;
3450 case QEMU_OPTION_trace:
3451 trace_opt_parse(optarg);
3452 break;
3453 case QEMU_OPTION_plugin:
3454 qemu_plugin_opt_parse(optarg, &plugin_list);
3455 break;
3456 case QEMU_OPTION_readconfig:
3457 qemu_read_config_file(optarg, qemu_parse_config_group, &error_fatal);
3458 break;
3459 #ifdef CONFIG_SPICE
3460 case QEMU_OPTION_spice:
3461 olist = qemu_find_opts_err("spice", NULL);
3462 if (!olist) {
3463 error_report("spice support is disabled");
3464 exit(1);
3466 opts = qemu_opts_parse_noisily(olist, optarg, false);
3467 if (!opts) {
3468 exit(1);
3470 display_remote++;
3471 break;
3472 #endif
3473 case QEMU_OPTION_qtest:
3474 qtest_chrdev = optarg;
3475 break;
3476 case QEMU_OPTION_qtest_log:
3477 qtest_log = optarg;
3478 break;
3479 case QEMU_OPTION_sandbox:
3480 olist = qemu_find_opts("sandbox");
3481 if (!olist) {
3482 #ifndef CONFIG_SECCOMP
3483 error_report("-sandbox support is not enabled "
3484 "in this QEMU binary");
3485 #endif
3486 exit(1);
3489 opts = qemu_opts_parse_noisily(olist, optarg, true);
3490 if (!opts) {
3491 exit(1);
3493 break;
3494 case QEMU_OPTION_add_fd:
3495 #ifndef _WIN32
3496 opts = qemu_opts_parse_noisily(qemu_find_opts("add-fd"),
3497 optarg, false);
3498 if (!opts) {
3499 exit(1);
3501 #else
3502 error_report("File descriptor passing is disabled on this "
3503 "platform");
3504 exit(1);
3505 #endif
3506 break;
3507 case QEMU_OPTION_object:
3508 object_option_parse(optarg);
3509 break;
3510 case QEMU_OPTION_overcommit:
3511 opts = qemu_opts_parse_noisily(qemu_find_opts("overcommit"),
3512 optarg, false);
3513 if (!opts) {
3514 exit(1);
3516 enable_mlock = qemu_opt_get_bool(opts, "mem-lock", false);
3517 enable_cpu_pm = qemu_opt_get_bool(opts, "cpu-pm", false);
3518 break;
3519 case QEMU_OPTION_compat:
3521 CompatPolicy *opts_policy;
3522 Visitor *v;
3524 v = qobject_input_visitor_new_str(optarg, NULL,
3525 &error_fatal);
3527 visit_type_CompatPolicy(v, NULL, &opts_policy, &error_fatal);
3528 QAPI_CLONE_MEMBERS(CompatPolicy, &compat_policy, opts_policy);
3530 qapi_free_CompatPolicy(opts_policy);
3531 visit_free(v);
3532 break;
3534 case QEMU_OPTION_msg:
3535 opts = qemu_opts_parse_noisily(qemu_find_opts("msg"), optarg,
3536 false);
3537 if (!opts) {
3538 exit(1);
3540 configure_msg(opts);
3541 break;
3542 case QEMU_OPTION_dump_vmstate:
3543 if (vmstate_dump_file) {
3544 error_report("only one '-dump-vmstate' "
3545 "option may be given");
3546 exit(1);
3548 vmstate_dump_file = fopen(optarg, "w");
3549 if (vmstate_dump_file == NULL) {
3550 error_report("open %s: %s", optarg, strerror(errno));
3551 exit(1);
3553 break;
3554 case QEMU_OPTION_enable_sync_profile:
3555 qsp_enable();
3556 break;
3557 case QEMU_OPTION_nouserconfig:
3558 /* Nothing to be parsed here. Especially, do not error out below. */
3559 break;
3560 #if defined(CONFIG_POSIX)
3561 case QEMU_OPTION_runas:
3562 if (!os_set_runas(optarg)) {
3563 error_report("User \"%s\" doesn't exist"
3564 " (and is not <uid>:<gid>)",
3565 optarg);
3566 exit(1);
3568 break;
3569 case QEMU_OPTION_chroot:
3570 warn_report("option is deprecated,"
3571 " use '-run-with chroot=...' instead");
3572 os_set_chroot(optarg);
3573 break;
3574 case QEMU_OPTION_daemonize:
3575 os_set_daemonize(true);
3576 break;
3577 #if defined(CONFIG_LINUX)
3578 /* deprecated */
3579 case QEMU_OPTION_asyncteardown:
3580 init_async_teardown();
3581 break;
3582 #endif
3583 case QEMU_OPTION_run_with: {
3584 const char *str;
3585 opts = qemu_opts_parse_noisily(qemu_find_opts("run-with"),
3586 optarg, false);
3587 if (!opts) {
3588 exit(1);
3590 #if defined(CONFIG_LINUX)
3591 if (qemu_opt_get_bool(opts, "async-teardown", false)) {
3592 init_async_teardown();
3594 #endif
3595 str = qemu_opt_get(opts, "chroot");
3596 if (str) {
3597 os_set_chroot(str);
3599 break;
3601 #endif /* CONFIG_POSIX */
3603 default:
3604 error_report("Option not supported in this build");
3605 exit(1);
3610 * Clear error location left behind by the loop.
3611 * Best done right after the loop. Do not insert code here!
3613 loc_set_none();
3615 qemu_validate_options(machine_opts_dict);
3616 qemu_process_sugar_options();
3619 * These options affect everything else and should be processed
3620 * before daemonizing.
3622 qemu_process_early_options();
3624 qemu_process_help_options();
3625 qemu_maybe_daemonize(pid_file);
3628 * The trace backend must be initialized after daemonizing.
3629 * trace_init_backends() will call st_init(), which will create the
3630 * trace thread in the parent, and also register st_flush_trace_buffer()
3631 * in atexit(). This function will force the parent to wait for the
3632 * writeout thread to finish, which will not occur, and the parent
3633 * process will be left in the host.
3635 if (!trace_init_backends()) {
3636 exit(1);
3638 trace_init_file();
3640 qemu_init_main_loop(&error_fatal);
3641 cpu_timers_init();
3643 user_register_global_props();
3644 replay_configure(icount_opts);
3646 configure_rtc(qemu_find_opts_singleton("rtc"));
3648 /* Transfer QemuOpts options into machine options */
3649 parse_memory_options();
3651 qemu_create_machine(machine_opts_dict);
3653 suspend_mux_open();
3655 qemu_disable_default_devices();
3656 qemu_create_default_devices();
3657 qemu_create_early_backends();
3659 qemu_apply_legacy_machine_options(machine_opts_dict);
3660 qemu_apply_machine_options(machine_opts_dict);
3661 qobject_unref(machine_opts_dict);
3662 phase_advance(PHASE_MACHINE_CREATED);
3665 * Note: uses machine properties such as kernel-irqchip, must run
3666 * after qemu_apply_machine_options.
3668 configure_accelerators(argv[0]);
3669 phase_advance(PHASE_ACCEL_CREATED);
3672 * Beware, QOM objects created before this point miss global and
3673 * compat properties.
3675 * Global properties get set up by qdev_prop_register_global(),
3676 * called from user_register_global_props(), and certain option
3677 * desugaring. Also in CPU feature desugaring (buried in
3678 * parse_cpu_option()), which happens below this point, but may
3679 * only target the CPU type, which can only be created after
3680 * parse_cpu_option() returned the type.
3682 * Machine compat properties: object_set_machine_compat_props().
3683 * Accelerator compat props: object_set_accelerator_compat_props(),
3684 * called from do_configure_accelerator().
3687 machine_class = MACHINE_GET_CLASS(current_machine);
3688 if (!qtest_enabled() && machine_class->deprecation_reason) {
3689 warn_report("Machine type '%s' is deprecated: %s",
3690 machine_class->name, machine_class->deprecation_reason);
3694 * Create backends before creating migration objects, so that it can
3695 * check against compatibilities on the backend memories (e.g. postcopy
3696 * over memory-backend-file objects).
3698 qemu_create_late_backends();
3701 * Note: creates a QOM object, must run only after global and
3702 * compat properties have been set up.
3704 migration_object_init();
3706 /* parse features once if machine provides default cpu_type */
3707 current_machine->cpu_type = machine_class->default_cpu_type;
3708 if (cpu_option) {
3709 current_machine->cpu_type = parse_cpu_option(cpu_option);
3711 /* NB: for machine none cpu_type could STILL be NULL here! */
3713 qemu_resolve_machine_memdev();
3714 parse_numa_opts(current_machine);
3716 if (vmstate_dump_file) {
3717 /* dump and exit */
3718 module_load_qom_all();
3719 dump_vmstate_json_to_file(vmstate_dump_file);
3720 exit(0);
3723 if (!preconfig_requested) {
3724 qmp_x_exit_preconfig(&error_fatal);
3726 qemu_init_displays();
3727 accel_setup_post(current_machine);
3728 os_setup_post();
3729 resume_mux_open();