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
25 #include "qemu/osdep.h"
26 #include "qapi/error.h"
27 #include "qemu-version.h"
28 #include "qemu/cutils.h"
29 #include "qemu/help_option.h"
30 #include "qemu/uuid.h"
33 #include <sys/prctl.h>
34 #include "sysemu/seccomp.h"
38 #if defined(__APPLE__) || defined(main)
40 int qemu_main(int argc, char **argv, char **envp);
41 int main(int argc, char **argv)
43 return qemu_main(argc, argv, NULL);
46 #define main qemu_main
48 #endif /* CONFIG_SDL */
52 #define main qemu_main
53 #endif /* CONFIG_COCOA */
56 #include "qemu/error-report.h"
57 #include "qemu/sockets.h"
59 #include "hw/boards.h"
60 #include "sysemu/accel.h"
62 #include "hw/isa/isa.h"
63 #include "hw/scsi/scsi.h"
64 #include "hw/display/vga.h"
66 #include "sysemu/watchdog.h"
67 #include "hw/smbios/smbios.h"
68 #include "hw/acpi/acpi.h"
69 #include "hw/xen/xen.h"
71 #include "hw/loader.h"
72 #include "monitor/qdev.h"
73 #include "sysemu/bt.h"
75 #include "net/slirp.h"
76 #include "monitor/monitor.h"
77 #include "ui/console.h"
79 #include "sysemu/sysemu.h"
80 #include "sysemu/numa.h"
81 #include "exec/gdbstub.h"
82 #include "qemu/timer.h"
83 #include "chardev/char.h"
84 #include "qemu/bitmap.h"
86 #include "sysemu/blockdev.h"
87 #include "hw/block/block.h"
88 #include "migration/misc.h"
89 #include "migration/snapshot.h"
90 #include "migration/global_state.h"
91 #include "sysemu/tpm.h"
92 #include "sysemu/dma.h"
93 #include "hw/audio/soundhw.h"
94 #include "audio/audio.h"
95 #include "sysemu/cpus.h"
96 #include "migration/colo.h"
97 #include "sysemu/kvm.h"
98 #include "sysemu/hax.h"
99 #include "qapi/qobject-input-visitor.h"
100 #include "qapi-visit.h"
101 #include "qemu/option.h"
102 #include "qemu/config-file.h"
103 #include "qemu-options.h"
104 #include "qmp-commands.h"
105 #include "qemu/main-loop.h"
107 #include "fsdev/qemu-fsdev.h"
109 #include "sysemu/qtest.h"
111 #include "disas/disas.h"
114 #include "slirp/libslirp.h"
116 #include "trace-root.h"
117 #include "trace/control.h"
118 #include "qemu/queue.h"
119 #include "sysemu/arch_init.h"
121 #include "ui/qemu-spice.h"
122 #include "qapi/string-input-visitor.h"
123 #include "qapi/opts-visitor.h"
124 #include "qom/object_interfaces.h"
125 #include "qapi-event.h"
126 #include "exec/semihost.h"
127 #include "crypto/init.h"
128 #include "sysemu/replay.h"
129 #include "qapi/qmp/qerror.h"
130 #include "sysemu/iothread.h"
132 #define MAX_VIRTIO_CONSOLES 1
133 #define MAX_SCLP_CONSOLES 1
135 static const char *data_dir[16];
136 static int data_dir_idx;
137 const char *bios_name = NULL;
138 enum vga_retrace_method vga_retrace_method = VGA_RETRACE_DUMB;
139 int request_opengl = -1;
141 const char* keyboard_layout = NULL;
143 const char *mem_path = NULL;
144 int mem_prealloc = 0; /* force preallocation of physical target memory */
145 bool enable_mlock = false;
147 NICInfo nd_table[MAX_NICS];
149 static int rtc_utc = 1;
150 static int rtc_date_offset = -1; /* -1 means no change */
151 QEMUClockType rtc_clock;
152 int vga_interface_type = VGA_NONE;
153 static int full_screen = 0;
154 static DisplayOptions dpy;
156 Chardev *serial_hds[MAX_SERIAL_PORTS];
157 Chardev *parallel_hds[MAX_PARALLEL_PORTS];
158 Chardev *virtcon_hds[MAX_VIRTIO_CONSOLES];
159 Chardev *sclp_hds[MAX_SCLP_CONSOLES];
160 int win2k_install_hack = 0;
163 unsigned int max_cpus;
166 int acpi_enabled = 1;
169 static int no_reboot;
172 int graphic_rotate = 0;
173 const char *watchdog;
174 QEMUOptionRom option_rom[MAX_OPTION_ROMS];
177 const char *qemu_name;
180 unsigned int nb_prom_envs = 0;
181 const char *prom_envs[MAX_PROM_ENVS];
184 uint8_t *boot_splash_filedata;
185 size_t boot_splash_filedata_size;
186 uint8_t qemu_extra_params_fw[2];
188 int icount_align_option;
190 /* The bytes in qemu_uuid are in the order specified by RFC4122, _not_ in the
191 * little-endian "wire format" described in the SMBIOS 2.6 specification.
196 static NotifierList exit_notifiers =
197 NOTIFIER_LIST_INITIALIZER(exit_notifiers);
199 static NotifierList machine_init_done_notifiers =
200 NOTIFIER_LIST_INITIALIZER(machine_init_done_notifiers);
204 enum xen_mode xen_mode = XEN_EMULATE;
205 bool xen_domid_restrict;
207 static int has_defaults = 1;
208 static int default_serial = 1;
209 static int default_parallel = 1;
210 static int default_virtcon = 1;
211 static int default_sclp = 1;
212 static int default_monitor = 1;
213 static int default_floppy = 1;
214 static int default_cdrom = 1;
215 static int default_sdcard = 1;
216 static int default_vga = 1;
217 static int default_net = 1;
223 { .driver = "isa-serial", .flag = &default_serial },
224 { .driver = "isa-parallel", .flag = &default_parallel },
225 { .driver = "isa-fdc", .flag = &default_floppy },
226 { .driver = "floppy", .flag = &default_floppy },
227 { .driver = "ide-cd", .flag = &default_cdrom },
228 { .driver = "ide-hd", .flag = &default_cdrom },
229 { .driver = "ide-drive", .flag = &default_cdrom },
230 { .driver = "scsi-cd", .flag = &default_cdrom },
231 { .driver = "scsi-hd", .flag = &default_cdrom },
232 { .driver = "virtio-serial-pci", .flag = &default_virtcon },
233 { .driver = "virtio-serial", .flag = &default_virtcon },
234 { .driver = "VGA", .flag = &default_vga },
235 { .driver = "isa-vga", .flag = &default_vga },
236 { .driver = "cirrus-vga", .flag = &default_vga },
237 { .driver = "isa-cirrus-vga", .flag = &default_vga },
238 { .driver = "vmware-svga", .flag = &default_vga },
239 { .driver = "qxl-vga", .flag = &default_vga },
240 { .driver = "virtio-vga", .flag = &default_vga },
243 static QemuOptsList qemu_rtc_opts = {
245 .head = QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts.head),
249 .type = QEMU_OPT_STRING,
252 .type = QEMU_OPT_STRING,
255 .type = QEMU_OPT_STRING,
257 { /* end of list */ }
261 static QemuOptsList qemu_sandbox_opts = {
263 .implied_opt_name = "enable",
264 .head = QTAILQ_HEAD_INITIALIZER(qemu_sandbox_opts.head),
268 .type = QEMU_OPT_BOOL,
272 .type = QEMU_OPT_STRING,
275 .name = "elevateprivileges",
276 .type = QEMU_OPT_STRING,
280 .type = QEMU_OPT_STRING,
283 .name = "resourcecontrol",
284 .type = QEMU_OPT_STRING,
286 { /* end of list */ }
290 static QemuOptsList qemu_option_rom_opts = {
291 .name = "option-rom",
292 .implied_opt_name = "romfile",
293 .head = QTAILQ_HEAD_INITIALIZER(qemu_option_rom_opts.head),
297 .type = QEMU_OPT_NUMBER,
300 .type = QEMU_OPT_STRING,
302 { /* end of list */ }
306 static QemuOptsList qemu_machine_opts = {
308 .implied_opt_name = "type",
310 .head = QTAILQ_HEAD_INITIALIZER(qemu_machine_opts.head),
313 * no elements => accept any
314 * sanity checking will happen later
315 * when setting machine properties
321 static QemuOptsList qemu_accel_opts = {
323 .implied_opt_name = "accel",
324 .head = QTAILQ_HEAD_INITIALIZER(qemu_accel_opts.head),
329 .type = QEMU_OPT_STRING,
330 .help = "Select the type of accelerator",
334 .type = QEMU_OPT_STRING,
335 .help = "Enable/disable multi-threaded TCG",
337 { /* end of list */ }
341 static QemuOptsList qemu_boot_opts = {
343 .implied_opt_name = "order",
345 .head = QTAILQ_HEAD_INITIALIZER(qemu_boot_opts.head),
349 .type = QEMU_OPT_STRING,
352 .type = QEMU_OPT_STRING,
355 .type = QEMU_OPT_BOOL,
358 .type = QEMU_OPT_STRING,
360 .name = "splash-time",
361 .type = QEMU_OPT_STRING,
363 .name = "reboot-timeout",
364 .type = QEMU_OPT_STRING,
367 .type = QEMU_OPT_BOOL,
373 static QemuOptsList qemu_add_fd_opts = {
375 .head = QTAILQ_HEAD_INITIALIZER(qemu_add_fd_opts.head),
379 .type = QEMU_OPT_NUMBER,
380 .help = "file descriptor of which a duplicate is added to fd set",
383 .type = QEMU_OPT_NUMBER,
384 .help = "ID of the fd set to add fd to",
387 .type = QEMU_OPT_STRING,
388 .help = "free-form string used to describe fd",
390 { /* end of list */ }
394 static QemuOptsList qemu_object_opts = {
396 .implied_opt_name = "qom-type",
397 .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head),
403 static QemuOptsList qemu_tpmdev_opts = {
405 .implied_opt_name = "type",
406 .head = QTAILQ_HEAD_INITIALIZER(qemu_tpmdev_opts.head),
408 /* options are defined in the TPM backends */
409 { /* end of list */ }
413 static QemuOptsList qemu_realtime_opts = {
415 .head = QTAILQ_HEAD_INITIALIZER(qemu_realtime_opts.head),
419 .type = QEMU_OPT_BOOL,
421 { /* end of list */ }
425 static QemuOptsList qemu_msg_opts = {
427 .head = QTAILQ_HEAD_INITIALIZER(qemu_msg_opts.head),
431 .type = QEMU_OPT_BOOL,
433 { /* end of list */ }
437 static QemuOptsList qemu_name_opts = {
439 .implied_opt_name = "guest",
441 .head = QTAILQ_HEAD_INITIALIZER(qemu_name_opts.head),
445 .type = QEMU_OPT_STRING,
446 .help = "Sets the name of the guest.\n"
447 "This name will be displayed in the SDL window caption.\n"
448 "The name will also be used for the VNC server",
451 .type = QEMU_OPT_STRING,
452 .help = "Sets the name of the QEMU process, as shown in top etc",
454 .name = "debug-threads",
455 .type = QEMU_OPT_BOOL,
456 .help = "When enabled, name the individual threads; defaults off.\n"
457 "NOTE: The thread names are for debugging and not a\n"
460 { /* End of list */ }
464 static QemuOptsList qemu_mem_opts = {
466 .implied_opt_name = "size",
467 .head = QTAILQ_HEAD_INITIALIZER(qemu_mem_opts.head),
472 .type = QEMU_OPT_SIZE,
476 .type = QEMU_OPT_NUMBER,
480 .type = QEMU_OPT_SIZE,
482 { /* end of list */ }
486 static QemuOptsList qemu_icount_opts = {
488 .implied_opt_name = "shift",
490 .head = QTAILQ_HEAD_INITIALIZER(qemu_icount_opts.head),
494 .type = QEMU_OPT_STRING,
497 .type = QEMU_OPT_BOOL,
500 .type = QEMU_OPT_BOOL,
503 .type = QEMU_OPT_STRING,
506 .type = QEMU_OPT_STRING,
508 .name = "rrsnapshot",
509 .type = QEMU_OPT_STRING,
511 { /* end of list */ }
515 static QemuOptsList qemu_semihosting_config_opts = {
516 .name = "semihosting-config",
517 .implied_opt_name = "enable",
518 .head = QTAILQ_HEAD_INITIALIZER(qemu_semihosting_config_opts.head),
522 .type = QEMU_OPT_BOOL,
525 .type = QEMU_OPT_STRING,
528 .type = QEMU_OPT_STRING,
530 { /* end of list */ }
534 static QemuOptsList qemu_fw_cfg_opts = {
536 .implied_opt_name = "name",
537 .head = QTAILQ_HEAD_INITIALIZER(qemu_fw_cfg_opts.head),
541 .type = QEMU_OPT_STRING,
542 .help = "Sets the fw_cfg name of the blob to be inserted",
545 .type = QEMU_OPT_STRING,
546 .help = "Sets the name of the file from which\n"
547 "the fw_cfg blob will be loaded",
550 .type = QEMU_OPT_STRING,
551 .help = "Sets content of the blob to be inserted from a string",
553 { /* end of list */ }
558 * Get machine options
560 * Returns: machine options (never null).
562 QemuOpts *qemu_get_machine_opts(void)
564 return qemu_find_opts_singleton("machine");
567 const char *qemu_get_vm_name(void)
572 static void res_free(void)
574 g_free(boot_splash_filedata);
575 boot_splash_filedata = NULL;
578 static int default_driver_check(void *opaque, QemuOpts *opts, Error **errp)
580 const char *driver = qemu_opt_get(opts, "driver");
585 for (i = 0; i < ARRAY_SIZE(default_list); i++) {
586 if (strcmp(default_list[i].driver, driver) != 0)
588 *(default_list[i].flag) = 0;
593 /***********************************************************/
596 static RunState current_run_state = RUN_STATE_PRELAUNCH;
598 /* We use RUN_STATE__MAX but any invalid value will do */
599 static RunState vmstop_requested = RUN_STATE__MAX;
600 static QemuMutex vmstop_lock;
605 } RunStateTransition;
607 static const RunStateTransition runstate_transitions_def[] = {
609 { RUN_STATE_DEBUG, RUN_STATE_RUNNING },
610 { RUN_STATE_DEBUG, RUN_STATE_FINISH_MIGRATE },
611 { RUN_STATE_DEBUG, RUN_STATE_PRELAUNCH },
613 { RUN_STATE_INMIGRATE, RUN_STATE_INTERNAL_ERROR },
614 { RUN_STATE_INMIGRATE, RUN_STATE_IO_ERROR },
615 { RUN_STATE_INMIGRATE, RUN_STATE_PAUSED },
616 { RUN_STATE_INMIGRATE, RUN_STATE_RUNNING },
617 { RUN_STATE_INMIGRATE, RUN_STATE_SHUTDOWN },
618 { RUN_STATE_INMIGRATE, RUN_STATE_SUSPENDED },
619 { RUN_STATE_INMIGRATE, RUN_STATE_WATCHDOG },
620 { RUN_STATE_INMIGRATE, RUN_STATE_GUEST_PANICKED },
621 { RUN_STATE_INMIGRATE, RUN_STATE_FINISH_MIGRATE },
622 { RUN_STATE_INMIGRATE, RUN_STATE_PRELAUNCH },
623 { RUN_STATE_INMIGRATE, RUN_STATE_POSTMIGRATE },
624 { RUN_STATE_INMIGRATE, RUN_STATE_COLO },
626 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_PAUSED },
627 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_FINISH_MIGRATE },
628 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_PRELAUNCH },
630 { RUN_STATE_IO_ERROR, RUN_STATE_RUNNING },
631 { RUN_STATE_IO_ERROR, RUN_STATE_FINISH_MIGRATE },
632 { RUN_STATE_IO_ERROR, RUN_STATE_PRELAUNCH },
634 { RUN_STATE_PAUSED, RUN_STATE_RUNNING },
635 { RUN_STATE_PAUSED, RUN_STATE_FINISH_MIGRATE },
636 { RUN_STATE_PAUSED, RUN_STATE_POSTMIGRATE },
637 { RUN_STATE_PAUSED, RUN_STATE_PRELAUNCH },
638 { RUN_STATE_PAUSED, RUN_STATE_COLO},
640 { RUN_STATE_POSTMIGRATE, RUN_STATE_RUNNING },
641 { RUN_STATE_POSTMIGRATE, RUN_STATE_FINISH_MIGRATE },
642 { RUN_STATE_POSTMIGRATE, RUN_STATE_PRELAUNCH },
644 { RUN_STATE_PRELAUNCH, RUN_STATE_RUNNING },
645 { RUN_STATE_PRELAUNCH, RUN_STATE_FINISH_MIGRATE },
646 { RUN_STATE_PRELAUNCH, RUN_STATE_INMIGRATE },
648 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_RUNNING },
649 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_PAUSED },
650 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_POSTMIGRATE },
651 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_PRELAUNCH },
652 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_COLO},
654 { RUN_STATE_RESTORE_VM, RUN_STATE_RUNNING },
655 { RUN_STATE_RESTORE_VM, RUN_STATE_PRELAUNCH },
657 { RUN_STATE_COLO, RUN_STATE_RUNNING },
659 { RUN_STATE_RUNNING, RUN_STATE_DEBUG },
660 { RUN_STATE_RUNNING, RUN_STATE_INTERNAL_ERROR },
661 { RUN_STATE_RUNNING, RUN_STATE_IO_ERROR },
662 { RUN_STATE_RUNNING, RUN_STATE_PAUSED },
663 { RUN_STATE_RUNNING, RUN_STATE_FINISH_MIGRATE },
664 { RUN_STATE_RUNNING, RUN_STATE_RESTORE_VM },
665 { RUN_STATE_RUNNING, RUN_STATE_SAVE_VM },
666 { RUN_STATE_RUNNING, RUN_STATE_SHUTDOWN },
667 { RUN_STATE_RUNNING, RUN_STATE_WATCHDOG },
668 { RUN_STATE_RUNNING, RUN_STATE_GUEST_PANICKED },
669 { RUN_STATE_RUNNING, RUN_STATE_COLO},
671 { RUN_STATE_SAVE_VM, RUN_STATE_RUNNING },
673 { RUN_STATE_SHUTDOWN, RUN_STATE_PAUSED },
674 { RUN_STATE_SHUTDOWN, RUN_STATE_FINISH_MIGRATE },
675 { RUN_STATE_SHUTDOWN, RUN_STATE_PRELAUNCH },
677 { RUN_STATE_DEBUG, RUN_STATE_SUSPENDED },
678 { RUN_STATE_RUNNING, RUN_STATE_SUSPENDED },
679 { RUN_STATE_SUSPENDED, RUN_STATE_RUNNING },
680 { RUN_STATE_SUSPENDED, RUN_STATE_FINISH_MIGRATE },
681 { RUN_STATE_SUSPENDED, RUN_STATE_PRELAUNCH },
682 { RUN_STATE_SUSPENDED, RUN_STATE_COLO},
684 { RUN_STATE_WATCHDOG, RUN_STATE_RUNNING },
685 { RUN_STATE_WATCHDOG, RUN_STATE_FINISH_MIGRATE },
686 { RUN_STATE_WATCHDOG, RUN_STATE_PRELAUNCH },
687 { RUN_STATE_WATCHDOG, RUN_STATE_COLO},
689 { RUN_STATE_GUEST_PANICKED, RUN_STATE_RUNNING },
690 { RUN_STATE_GUEST_PANICKED, RUN_STATE_FINISH_MIGRATE },
691 { RUN_STATE_GUEST_PANICKED, RUN_STATE_PRELAUNCH },
693 { RUN_STATE__MAX, RUN_STATE__MAX },
696 static bool runstate_valid_transitions[RUN_STATE__MAX][RUN_STATE__MAX];
698 bool runstate_check(RunState state)
700 return current_run_state == state;
703 bool runstate_store(char *str, size_t size)
705 const char *state = RunState_str(current_run_state);
706 size_t len = strlen(state) + 1;
711 memcpy(str, state, len);
715 static void runstate_init(void)
717 const RunStateTransition *p;
719 memset(&runstate_valid_transitions, 0, sizeof(runstate_valid_transitions));
720 for (p = &runstate_transitions_def[0]; p->from != RUN_STATE__MAX; p++) {
721 runstate_valid_transitions[p->from][p->to] = true;
724 qemu_mutex_init(&vmstop_lock);
727 /* This function will abort() on invalid state transitions */
728 void runstate_set(RunState new_state)
730 assert(new_state < RUN_STATE__MAX);
732 if (current_run_state == new_state) {
736 if (!runstate_valid_transitions[current_run_state][new_state]) {
737 error_report("invalid runstate transition: '%s' -> '%s'",
738 RunState_str(current_run_state),
739 RunState_str(new_state));
742 trace_runstate_set(new_state);
743 current_run_state = new_state;
746 int runstate_is_running(void)
748 return runstate_check(RUN_STATE_RUNNING);
751 bool runstate_needs_reset(void)
753 return runstate_check(RUN_STATE_INTERNAL_ERROR) ||
754 runstate_check(RUN_STATE_SHUTDOWN);
757 StatusInfo *qmp_query_status(Error **errp)
759 StatusInfo *info = g_malloc0(sizeof(*info));
761 info->running = runstate_is_running();
762 info->singlestep = singlestep;
763 info->status = current_run_state;
768 bool qemu_vmstop_requested(RunState *r)
770 qemu_mutex_lock(&vmstop_lock);
771 *r = vmstop_requested;
772 vmstop_requested = RUN_STATE__MAX;
773 qemu_mutex_unlock(&vmstop_lock);
774 return *r < RUN_STATE__MAX;
777 void qemu_system_vmstop_request_prepare(void)
779 qemu_mutex_lock(&vmstop_lock);
782 void qemu_system_vmstop_request(RunState state)
784 vmstop_requested = state;
785 qemu_mutex_unlock(&vmstop_lock);
789 /***********************************************************/
790 /* real time host monotonic timer */
792 static time_t qemu_time(void)
794 return qemu_clock_get_ms(QEMU_CLOCK_HOST) / 1000;
797 /***********************************************************/
798 /* host time/date access */
799 void qemu_get_timedate(struct tm *tm, int offset)
801 time_t ti = qemu_time();
804 if (rtc_date_offset == -1) {
808 localtime_r(&ti, tm);
810 ti -= rtc_date_offset;
815 int qemu_timedate_diff(struct tm *tm)
819 if (rtc_date_offset == -1)
821 seconds = mktimegm(tm);
824 tmp.tm_isdst = -1; /* use timezone to figure it out */
825 seconds = mktime(&tmp);
828 seconds = mktimegm(tm) + rtc_date_offset;
830 return seconds - qemu_time();
833 static void configure_rtc_date_offset(const char *startdate, int legacy)
835 time_t rtc_start_date;
838 if (!strcmp(startdate, "now") && legacy) {
839 rtc_date_offset = -1;
841 if (sscanf(startdate, "%d-%d-%dT%d:%d:%d",
849 } else if (sscanf(startdate, "%d-%d-%d",
861 rtc_start_date = mktimegm(&tm);
862 if (rtc_start_date == -1) {
864 error_report("invalid date format");
865 error_printf("valid formats: "
866 "'2006-06-17T16:01:21' or '2006-06-17'\n");
869 rtc_date_offset = qemu_time() - rtc_start_date;
873 static void configure_rtc(QemuOpts *opts)
877 value = qemu_opt_get(opts, "base");
879 if (!strcmp(value, "utc")) {
881 } else if (!strcmp(value, "localtime")) {
882 Error *blocker = NULL;
884 error_setg(&blocker, QERR_REPLAY_NOT_SUPPORTED,
885 "-rtc base=localtime");
886 replay_add_blocker(blocker);
888 configure_rtc_date_offset(value, 0);
891 value = qemu_opt_get(opts, "clock");
893 if (!strcmp(value, "host")) {
894 rtc_clock = QEMU_CLOCK_HOST;
895 } else if (!strcmp(value, "rt")) {
896 rtc_clock = QEMU_CLOCK_REALTIME;
897 } else if (!strcmp(value, "vm")) {
898 rtc_clock = QEMU_CLOCK_VIRTUAL;
900 error_report("invalid option value '%s'", value);
904 value = qemu_opt_get(opts, "driftfix");
906 if (!strcmp(value, "slew")) {
907 static GlobalProperty slew_lost_ticks = {
908 .driver = "mc146818rtc",
909 .property = "lost_tick_policy",
913 qdev_prop_register_global(&slew_lost_ticks);
914 } else if (!strcmp(value, "none")) {
915 /* discard is default */
917 error_report("invalid option value '%s'", value);
923 /***********************************************************/
924 /* Bluetooth support */
927 static struct HCIInfo *hci_table[MAX_NICS];
929 struct HCIInfo *qemu_next_hci(void)
931 if (cur_hci == nb_hcis)
934 return hci_table[cur_hci++];
937 static int bt_hci_parse(const char *str)
942 if (nb_hcis >= MAX_NICS) {
943 error_report("too many bluetooth HCIs (max %i)", MAX_NICS);
956 bdaddr.b[5] = 0x56 + nb_hcis;
957 hci->bdaddr_set(hci, bdaddr.b);
959 hci_table[nb_hcis++] = hci;
964 static void bt_vhci_add(int vlan_id)
966 struct bt_scatternet_s *vlan = qemu_find_bt_vlan(vlan_id);
969 warn_report("adding a VHCI to an empty scatternet %i",
972 bt_vhci_init(bt_new_hci(vlan));
975 static struct bt_device_s *bt_device_add(const char *opt)
977 struct bt_scatternet_s *vlan;
979 char *endp = strstr(opt, ",vlan=");
980 int len = (endp ? endp - opt : strlen(opt)) + 1;
983 pstrcpy(devname, MIN(sizeof(devname), len), opt);
986 vlan_id = strtol(endp + 6, &endp, 0);
988 error_report("unrecognised bluetooth vlan Id");
993 vlan = qemu_find_bt_vlan(vlan_id);
996 warn_report("adding a slave device to an empty scatternet %i",
999 if (!strcmp(devname, "keyboard"))
1000 return bt_keyboard_init(vlan);
1002 error_report("unsupported bluetooth device '%s'", devname);
1006 static int bt_parse(const char *opt)
1008 const char *endp, *p;
1011 if (strstart(opt, "hci", &endp)) {
1012 if (!*endp || *endp == ',') {
1014 if (!strstart(endp, ",vlan=", 0))
1017 return bt_hci_parse(opt);
1019 } else if (strstart(opt, "vhci", &endp)) {
1020 if (!*endp || *endp == ',') {
1022 if (strstart(endp, ",vlan=", &p)) {
1023 vlan = strtol(p, (char **) &endp, 0);
1025 error_report("bad scatternet '%s'", p);
1029 error_report("bad parameter '%s'", endp + 1);
1038 } else if (strstart(opt, "device:", &endp))
1039 return !bt_device_add(endp);
1041 error_report("bad bluetooth parameter '%s'", opt);
1045 static int parse_sandbox(void *opaque, QemuOpts *opts, Error **errp)
1047 if (qemu_opt_get_bool(opts, "enable", false)) {
1048 #ifdef CONFIG_SECCOMP
1049 uint32_t seccomp_opts = QEMU_SECCOMP_SET_DEFAULT
1050 | QEMU_SECCOMP_SET_OBSOLETE;
1051 const char *value = NULL;
1053 value = qemu_opt_get(opts, "obsolete");
1055 if (g_str_equal(value, "allow")) {
1056 seccomp_opts &= ~QEMU_SECCOMP_SET_OBSOLETE;
1057 } else if (g_str_equal(value, "deny")) {
1058 /* this is the default option, this if is here
1059 * to provide a little bit of consistency for
1060 * the command line */
1062 error_report("invalid argument for obsolete");
1067 value = qemu_opt_get(opts, "elevateprivileges");
1069 if (g_str_equal(value, "deny")) {
1070 seccomp_opts |= QEMU_SECCOMP_SET_PRIVILEGED;
1071 } else if (g_str_equal(value, "children")) {
1072 seccomp_opts |= QEMU_SECCOMP_SET_PRIVILEGED;
1074 /* calling prctl directly because we're
1075 * not sure if host has CAP_SYS_ADMIN set*/
1076 if (prctl(PR_SET_NO_NEW_PRIVS, 1)) {
1077 error_report("failed to set no_new_privs "
1081 } else if (g_str_equal(value, "allow")) {
1084 error_report("invalid argument for elevateprivileges");
1089 value = qemu_opt_get(opts, "spawn");
1091 if (g_str_equal(value, "deny")) {
1092 seccomp_opts |= QEMU_SECCOMP_SET_SPAWN;
1093 } else if (g_str_equal(value, "allow")) {
1096 error_report("invalid argument for spawn");
1101 value = qemu_opt_get(opts, "resourcecontrol");
1103 if (g_str_equal(value, "deny")) {
1104 seccomp_opts |= QEMU_SECCOMP_SET_RESOURCECTL;
1105 } else if (g_str_equal(value, "allow")) {
1108 error_report("invalid argument for resourcecontrol");
1113 if (seccomp_start(seccomp_opts) < 0) {
1114 error_report("failed to install seccomp syscall filter "
1119 error_report("seccomp support is disabled");
1127 static int parse_name(void *opaque, QemuOpts *opts, Error **errp)
1129 const char *proc_name;
1131 if (qemu_opt_get(opts, "debug-threads")) {
1132 qemu_thread_naming(qemu_opt_get_bool(opts, "debug-threads", false));
1134 qemu_name = qemu_opt_get(opts, "guest");
1136 proc_name = qemu_opt_get(opts, "process");
1138 os_set_proc_name(proc_name);
1144 bool defaults_enabled(void)
1146 return has_defaults;
1150 static int parse_add_fd(void *opaque, QemuOpts *opts, Error **errp)
1152 int fd, dupfd, flags;
1154 const char *fd_opaque = NULL;
1157 fd = qemu_opt_get_number(opts, "fd", -1);
1158 fdset_id = qemu_opt_get_number(opts, "set", -1);
1159 fd_opaque = qemu_opt_get(opts, "opaque");
1162 error_report("fd option is required and must be non-negative");
1166 if (fd <= STDERR_FILENO) {
1167 error_report("fd cannot be a standard I/O stream");
1172 * All fds inherited across exec() necessarily have FD_CLOEXEC
1173 * clear, while qemu sets FD_CLOEXEC on all other fds used internally.
1175 flags = fcntl(fd, F_GETFD);
1176 if (flags == -1 || (flags & FD_CLOEXEC)) {
1177 error_report("fd is not valid or already in use");
1182 error_report("set option is required and must be non-negative");
1186 #ifdef F_DUPFD_CLOEXEC
1187 dupfd = fcntl(fd, F_DUPFD_CLOEXEC, 0);
1191 qemu_set_cloexec(dupfd);
1195 error_report("error duplicating fd: %s", strerror(errno));
1199 /* add the duplicate fd, and optionally the opaque string, to the fd set */
1200 fdinfo = monitor_fdset_add_fd(dupfd, true, fdset_id, !!fd_opaque, fd_opaque,
1207 static int cleanup_add_fd(void *opaque, QemuOpts *opts, Error **errp)
1211 fd = qemu_opt_get_number(opts, "fd", -1);
1218 /***********************************************************/
1219 /* QEMU Block devices */
1221 #define HD_OPTS "media=disk"
1222 #define CDROM_OPTS "media=cdrom"
1224 #define PFLASH_OPTS ""
1228 static int drive_init_func(void *opaque, QemuOpts *opts, Error **errp)
1230 BlockInterfaceType *block_default_type = opaque;
1232 return drive_new(opts, *block_default_type) == NULL;
1235 static int drive_enable_snapshot(void *opaque, QemuOpts *opts, Error **errp)
1237 if (qemu_opt_get(opts, "snapshot") == NULL) {
1238 qemu_opt_set(opts, "snapshot", "on", &error_abort);
1243 static void default_drive(int enable, int snapshot, BlockInterfaceType type,
1244 int index, const char *optstr)
1249 if (!enable || drive_get_by_index(type, index)) {
1253 opts = drive_add(type, index, NULL, optstr);
1255 drive_enable_snapshot(NULL, opts, NULL);
1258 dinfo = drive_new(opts, type);
1262 dinfo->is_default = true;
1266 static QemuOptsList qemu_smp_opts = {
1268 .implied_opt_name = "cpus",
1269 .merge_lists = true,
1270 .head = QTAILQ_HEAD_INITIALIZER(qemu_smp_opts.head),
1274 .type = QEMU_OPT_NUMBER,
1277 .type = QEMU_OPT_NUMBER,
1280 .type = QEMU_OPT_NUMBER,
1283 .type = QEMU_OPT_NUMBER,
1286 .type = QEMU_OPT_NUMBER,
1288 { /*End of list */ }
1292 static void smp_parse(QemuOpts *opts)
1295 unsigned cpus = qemu_opt_get_number(opts, "cpus", 0);
1296 unsigned sockets = qemu_opt_get_number(opts, "sockets", 0);
1297 unsigned cores = qemu_opt_get_number(opts, "cores", 0);
1298 unsigned threads = qemu_opt_get_number(opts, "threads", 0);
1300 /* compute missing values, prefer sockets over cores over threads */
1301 if (cpus == 0 || sockets == 0) {
1302 sockets = sockets > 0 ? sockets : 1;
1303 cores = cores > 0 ? cores : 1;
1304 threads = threads > 0 ? threads : 1;
1306 cpus = cores * threads * sockets;
1308 } else if (cores == 0) {
1309 threads = threads > 0 ? threads : 1;
1310 cores = cpus / (sockets * threads);
1311 cores = cores > 0 ? cores : 1;
1312 } else if (threads == 0) {
1313 threads = cpus / (cores * sockets);
1314 threads = threads > 0 ? threads : 1;
1315 } else if (sockets * cores * threads < cpus) {
1316 error_report("cpu topology: "
1317 "sockets (%u) * cores (%u) * threads (%u) < "
1319 sockets, cores, threads, cpus);
1323 max_cpus = qemu_opt_get_number(opts, "maxcpus", cpus);
1325 if (max_cpus < cpus) {
1326 error_report("maxcpus must be equal to or greater than smp");
1330 if (sockets * cores * threads > max_cpus) {
1331 error_report("cpu topology: "
1332 "sockets (%u) * cores (%u) * threads (%u) > "
1334 sockets, cores, threads, max_cpus);
1340 smp_threads = threads;
1344 Error *blocker = NULL;
1345 error_setg(&blocker, QERR_REPLAY_NOT_SUPPORTED, "smp");
1346 replay_add_blocker(blocker);
1350 static void realtime_init(void)
1353 if (os_mlock() < 0) {
1354 error_report("locking memory failed");
1361 static void configure_msg(QemuOpts *opts)
1363 enable_timestamp_msg = qemu_opt_get_bool(opts, "timestamp", true);
1366 /***********************************************************/
1369 typedef struct SemihostingConfig {
1371 SemihostingTarget target;
1374 const char *cmdline; /* concatenated argv */
1375 } SemihostingConfig;
1377 static SemihostingConfig semihosting;
1379 bool semihosting_enabled(void)
1381 return semihosting.enabled;
1384 SemihostingTarget semihosting_get_target(void)
1386 return semihosting.target;
1389 const char *semihosting_get_arg(int i)
1391 if (i >= semihosting.argc) {
1394 return semihosting.argv[i];
1397 int semihosting_get_argc(void)
1399 return semihosting.argc;
1402 const char *semihosting_get_cmdline(void)
1404 if (semihosting.cmdline == NULL && semihosting.argc > 0) {
1405 semihosting.cmdline = g_strjoinv(" ", (gchar **)semihosting.argv);
1407 return semihosting.cmdline;
1410 static int add_semihosting_arg(void *opaque,
1411 const char *name, const char *val,
1414 SemihostingConfig *s = opaque;
1415 if (strcmp(name, "arg") == 0) {
1417 /* one extra element as g_strjoinv() expects NULL-terminated array */
1418 s->argv = g_realloc(s->argv, (s->argc + 1) * sizeof(void *));
1419 s->argv[s->argc - 1] = val;
1420 s->argv[s->argc] = NULL;
1425 /* Use strings passed via -kernel/-append to initialize semihosting.argv[] */
1426 static inline void semihosting_arg_fallback(const char *file, const char *cmd)
1431 add_semihosting_arg(&semihosting, "arg", file, NULL);
1433 /* split -append and initialize argv[1..n] */
1434 cmd_token = strtok(g_strdup(cmd), " ");
1436 add_semihosting_arg(&semihosting, "arg", cmd_token, NULL);
1437 cmd_token = strtok(NULL, " ");
1441 /* Now we still need this for compatibility with XEN. */
1442 bool has_igd_gfx_passthru;
1443 static void igd_gfx_passthru(void)
1445 has_igd_gfx_passthru = current_machine->igd_gfx_passthru;
1448 /***********************************************************/
1451 static int usb_device_add(const char *devname)
1453 USBDevice *dev = NULL;
1455 if (!machine_usb(current_machine)) {
1459 dev = usbdevice_create(devname);
1466 static int usb_parse(const char *cmdline)
1469 r = usb_device_add(cmdline);
1471 error_report("could not add USB device '%s'", cmdline);
1476 /***********************************************************/
1477 /* machine registration */
1479 MachineState *current_machine;
1481 static MachineClass *find_machine(const char *name)
1483 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
1484 MachineClass *mc = NULL;
1486 for (el = machines; el; el = el->next) {
1487 MachineClass *temp = el->data;
1489 if (!strcmp(temp->name, name)) {
1494 !strcmp(temp->alias, name)) {
1500 g_slist_free(machines);
1504 MachineClass *find_default_machine(void)
1506 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
1507 MachineClass *mc = NULL;
1509 for (el = machines; el; el = el->next) {
1510 MachineClass *temp = el->data;
1512 if (temp->is_default) {
1518 g_slist_free(machines);
1522 MachineInfoList *qmp_query_machines(Error **errp)
1524 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
1525 MachineInfoList *mach_list = NULL;
1527 for (el = machines; el; el = el->next) {
1528 MachineClass *mc = el->data;
1529 MachineInfoList *entry;
1532 info = g_malloc0(sizeof(*info));
1533 if (mc->is_default) {
1534 info->has_is_default = true;
1535 info->is_default = true;
1539 info->has_alias = true;
1540 info->alias = g_strdup(mc->alias);
1543 info->name = g_strdup(mc->name);
1544 info->cpu_max = !mc->max_cpus ? 1 : mc->max_cpus;
1545 info->hotpluggable_cpus = mc->has_hotpluggable_cpus;
1547 entry = g_malloc0(sizeof(*entry));
1548 entry->value = info;
1549 entry->next = mach_list;
1553 g_slist_free(machines);
1557 static int machine_help_func(QemuOpts *opts, MachineState *machine)
1559 ObjectProperty *prop;
1560 ObjectPropertyIterator iter;
1562 if (!qemu_opt_has_help_opt(opts)) {
1566 object_property_iter_init(&iter, OBJECT(machine));
1567 while ((prop = object_property_iter_next(&iter))) {
1572 error_printf("%s.%s=%s", MACHINE_GET_CLASS(machine)->name,
1573 prop->name, prop->type);
1574 if (prop->description) {
1575 error_printf(" (%s)\n", prop->description);
1584 /***********************************************************/
1585 /* main execution loop */
1587 struct vm_change_state_entry {
1588 VMChangeStateHandler *cb;
1590 QLIST_ENTRY (vm_change_state_entry) entries;
1593 static QLIST_HEAD(vm_change_state_head, vm_change_state_entry) vm_change_state_head;
1595 VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
1598 VMChangeStateEntry *e;
1600 e = g_malloc0(sizeof (*e));
1604 QLIST_INSERT_HEAD(&vm_change_state_head, e, entries);
1608 void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
1610 QLIST_REMOVE (e, entries);
1614 void vm_state_notify(int running, RunState state)
1616 VMChangeStateEntry *e, *next;
1618 trace_vm_state_notify(running, state);
1620 QLIST_FOREACH_SAFE(e, &vm_change_state_head, entries, next) {
1621 e->cb(e->opaque, running, state);
1625 static ShutdownCause reset_requested;
1626 static ShutdownCause shutdown_requested;
1627 static int shutdown_signal;
1628 static pid_t shutdown_pid;
1629 static int powerdown_requested;
1630 static int debug_requested;
1631 static int suspend_requested;
1632 static WakeupReason wakeup_reason;
1633 static NotifierList powerdown_notifiers =
1634 NOTIFIER_LIST_INITIALIZER(powerdown_notifiers);
1635 static NotifierList suspend_notifiers =
1636 NOTIFIER_LIST_INITIALIZER(suspend_notifiers);
1637 static NotifierList wakeup_notifiers =
1638 NOTIFIER_LIST_INITIALIZER(wakeup_notifiers);
1639 static uint32_t wakeup_reason_mask = ~(1 << QEMU_WAKEUP_REASON_NONE);
1641 ShutdownCause qemu_shutdown_requested_get(void)
1643 return shutdown_requested;
1646 ShutdownCause qemu_reset_requested_get(void)
1648 return reset_requested;
1651 static int qemu_shutdown_requested(void)
1653 return atomic_xchg(&shutdown_requested, SHUTDOWN_CAUSE_NONE);
1656 static void qemu_kill_report(void)
1658 if (!qtest_driver() && shutdown_signal) {
1659 if (shutdown_pid == 0) {
1660 /* This happens for eg ^C at the terminal, so it's worth
1661 * avoiding printing an odd message in that case.
1663 error_report("terminating on signal %d", shutdown_signal);
1665 char *shutdown_cmd = qemu_get_pid_name(shutdown_pid);
1667 error_report("terminating on signal %d from pid " FMT_pid " (%s)",
1668 shutdown_signal, shutdown_pid,
1669 shutdown_cmd ? shutdown_cmd : "<unknown process>");
1670 g_free(shutdown_cmd);
1672 shutdown_signal = 0;
1676 static ShutdownCause qemu_reset_requested(void)
1678 ShutdownCause r = reset_requested;
1680 if (r && replay_checkpoint(CHECKPOINT_RESET_REQUESTED)) {
1681 reset_requested = SHUTDOWN_CAUSE_NONE;
1684 return SHUTDOWN_CAUSE_NONE;
1687 static int qemu_suspend_requested(void)
1689 int r = suspend_requested;
1690 if (r && replay_checkpoint(CHECKPOINT_SUSPEND_REQUESTED)) {
1691 suspend_requested = 0;
1697 static WakeupReason qemu_wakeup_requested(void)
1699 return wakeup_reason;
1702 static int qemu_powerdown_requested(void)
1704 int r = powerdown_requested;
1705 powerdown_requested = 0;
1709 static int qemu_debug_requested(void)
1711 int r = debug_requested;
1712 debug_requested = 0;
1717 * Reset the VM. Issue an event unless @reason is SHUTDOWN_CAUSE_NONE.
1719 void qemu_system_reset(ShutdownCause reason)
1723 mc = current_machine ? MACHINE_GET_CLASS(current_machine) : NULL;
1725 cpu_synchronize_all_states();
1727 if (mc && mc->reset) {
1730 qemu_devices_reset();
1733 qapi_event_send_reset(shutdown_caused_by_guest(reason),
1736 cpu_synchronize_all_post_reset();
1739 void qemu_system_guest_panicked(GuestPanicInformation *info)
1741 qemu_log_mask(LOG_GUEST_ERROR, "Guest crashed\n");
1744 current_cpu->crash_occurred = true;
1746 qapi_event_send_guest_panicked(GUEST_PANIC_ACTION_PAUSE,
1747 !!info, info, &error_abort);
1748 vm_stop(RUN_STATE_GUEST_PANICKED);
1750 qapi_event_send_guest_panicked(GUEST_PANIC_ACTION_POWEROFF,
1751 !!info, info, &error_abort);
1752 qemu_system_shutdown_request(SHUTDOWN_CAUSE_GUEST_PANIC);
1756 if (info->type == GUEST_PANIC_INFORMATION_TYPE_HYPER_V) {
1757 qemu_log_mask(LOG_GUEST_ERROR, "HV crash parameters: (%#"PRIx64
1758 " %#"PRIx64" %#"PRIx64" %#"PRIx64" %#"PRIx64")\n",
1759 info->u.hyper_v.arg1,
1760 info->u.hyper_v.arg2,
1761 info->u.hyper_v.arg3,
1762 info->u.hyper_v.arg4,
1763 info->u.hyper_v.arg5);
1765 qapi_free_GuestPanicInformation(info);
1769 void qemu_system_reset_request(ShutdownCause reason)
1772 shutdown_requested = reason;
1774 reset_requested = reason;
1777 qemu_notify_event();
1780 static void qemu_system_suspend(void)
1783 notifier_list_notify(&suspend_notifiers, NULL);
1784 runstate_set(RUN_STATE_SUSPENDED);
1785 qapi_event_send_suspend(&error_abort);
1788 void qemu_system_suspend_request(void)
1790 if (runstate_check(RUN_STATE_SUSPENDED)) {
1793 suspend_requested = 1;
1795 qemu_notify_event();
1798 void qemu_register_suspend_notifier(Notifier *notifier)
1800 notifier_list_add(&suspend_notifiers, notifier);
1803 void qemu_system_wakeup_request(WakeupReason reason)
1805 trace_system_wakeup_request(reason);
1807 if (!runstate_check(RUN_STATE_SUSPENDED)) {
1810 if (!(wakeup_reason_mask & (1 << reason))) {
1813 runstate_set(RUN_STATE_RUNNING);
1814 wakeup_reason = reason;
1815 qemu_notify_event();
1818 void qemu_system_wakeup_enable(WakeupReason reason, bool enabled)
1821 wakeup_reason_mask |= (1 << reason);
1823 wakeup_reason_mask &= ~(1 << reason);
1827 void qemu_register_wakeup_notifier(Notifier *notifier)
1829 notifier_list_add(&wakeup_notifiers, notifier);
1832 void qemu_system_killed(int signal, pid_t pid)
1834 shutdown_signal = signal;
1838 /* Cannot call qemu_system_shutdown_request directly because
1839 * we are in a signal handler.
1841 shutdown_requested = SHUTDOWN_CAUSE_HOST_SIGNAL;
1842 qemu_notify_event();
1845 void qemu_system_shutdown_request(ShutdownCause reason)
1847 trace_qemu_system_shutdown_request(reason);
1848 replay_shutdown_request(reason);
1849 shutdown_requested = reason;
1850 qemu_notify_event();
1853 static void qemu_system_powerdown(void)
1855 qapi_event_send_powerdown(&error_abort);
1856 notifier_list_notify(&powerdown_notifiers, NULL);
1859 void qemu_system_powerdown_request(void)
1861 trace_qemu_system_powerdown_request();
1862 powerdown_requested = 1;
1863 qemu_notify_event();
1866 void qemu_register_powerdown_notifier(Notifier *notifier)
1868 notifier_list_add(&powerdown_notifiers, notifier);
1871 void qemu_system_debug_request(void)
1873 debug_requested = 1;
1874 qemu_notify_event();
1877 static bool main_loop_should_exit(void)
1880 ShutdownCause request;
1882 if (qemu_debug_requested()) {
1883 vm_stop(RUN_STATE_DEBUG);
1885 if (qemu_suspend_requested()) {
1886 qemu_system_suspend();
1888 request = qemu_shutdown_requested();
1891 qapi_event_send_shutdown(shutdown_caused_by_guest(request),
1894 vm_stop(RUN_STATE_SHUTDOWN);
1899 request = qemu_reset_requested();
1902 qemu_system_reset(request);
1904 if (!runstate_check(RUN_STATE_RUNNING) &&
1905 !runstate_check(RUN_STATE_INMIGRATE)) {
1906 runstate_set(RUN_STATE_PRELAUNCH);
1909 if (qemu_wakeup_requested()) {
1911 qemu_system_reset(SHUTDOWN_CAUSE_NONE);
1912 notifier_list_notify(&wakeup_notifiers, &wakeup_reason);
1913 wakeup_reason = QEMU_WAKEUP_REASON_NONE;
1915 qapi_event_send_wakeup(&error_abort);
1917 if (qemu_powerdown_requested()) {
1918 qemu_system_powerdown();
1920 if (qemu_vmstop_requested(&r)) {
1926 static void main_loop(void)
1928 #ifdef CONFIG_PROFILER
1932 #ifdef CONFIG_PROFILER
1933 ti = profile_getclock();
1935 main_loop_wait(false);
1936 #ifdef CONFIG_PROFILER
1937 dev_time += profile_getclock() - ti;
1939 } while (!main_loop_should_exit());
1942 static void version(void)
1944 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION "\n"
1945 QEMU_COPYRIGHT "\n");
1948 static void help(int exitcode)
1951 printf("usage: %s [options] [disk_image]\n\n"
1952 "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
1953 error_get_progname());
1955 #define QEMU_OPTIONS_GENERATE_HELP
1956 #include "qemu-options-wrapper.h"
1958 printf("\nDuring emulation, the following keys are useful:\n"
1959 "ctrl-alt-f toggle full screen\n"
1960 "ctrl-alt-n switch to virtual console 'n'\n"
1961 "ctrl-alt toggle mouse and keyboard grab\n"
1963 "When using -nographic, press 'ctrl-a h' to get some help.\n"
1965 QEMU_HELP_BOTTOM "\n");
1970 #define HAS_ARG 0x0001
1972 typedef struct QEMUOption {
1979 static const QEMUOption qemu_options[] = {
1980 { "h", 0, QEMU_OPTION_h, QEMU_ARCH_ALL },
1981 #define QEMU_OPTIONS_GENERATE_OPTIONS
1982 #include "qemu-options-wrapper.h"
1986 typedef struct VGAInterfaceInfo {
1987 const char *opt_name; /* option name */
1988 const char *name; /* human-readable name */
1989 /* Class names indicating that support is available.
1990 * If no class is specified, the interface is always available */
1991 const char *class_names[2];
1994 static VGAInterfaceInfo vga_interfaces[VGA_TYPE_MAX] = {
2000 .name = "standard VGA",
2001 .class_names = { "VGA", "isa-vga" },
2004 .opt_name = "cirrus",
2005 .name = "Cirrus VGA",
2006 .class_names = { "cirrus-vga", "isa-cirrus-vga" },
2009 .opt_name = "vmware",
2010 .name = "VMWare SVGA",
2011 .class_names = { "vmware-svga" },
2014 .opt_name = "virtio",
2015 .name = "Virtio VGA",
2016 .class_names = { "virtio-vga" },
2021 .class_names = { "qxl-vga" },
2025 .name = "TCX framebuffer",
2026 .class_names = { "SUNW,tcx" },
2030 .name = "CG3 framebuffer",
2031 .class_names = { "cgthree" },
2034 .opt_name = "xenfb",
2038 static bool vga_interface_available(VGAInterfaceType t)
2040 VGAInterfaceInfo *ti = &vga_interfaces[t];
2042 assert(t < VGA_TYPE_MAX);
2043 return !ti->class_names[0] ||
2044 object_class_by_name(ti->class_names[0]) ||
2045 object_class_by_name(ti->class_names[1]);
2048 static void select_vgahw(const char *p)
2053 assert(vga_interface_type == VGA_NONE);
2054 for (t = 0; t < VGA_TYPE_MAX; t++) {
2055 VGAInterfaceInfo *ti = &vga_interfaces[t];
2056 if (ti->opt_name && strstart(p, ti->opt_name, &opts)) {
2057 if (!vga_interface_available(t)) {
2058 error_report("%s not available", ti->name);
2061 vga_interface_type = t;
2065 if (t == VGA_TYPE_MAX) {
2067 error_report("unknown vga type: %s", p);
2071 const char *nextopt;
2073 if (strstart(opts, ",retrace=", &nextopt)) {
2075 if (strstart(opts, "dumb", &nextopt))
2076 vga_retrace_method = VGA_RETRACE_DUMB;
2077 else if (strstart(opts, "precise", &nextopt))
2078 vga_retrace_method = VGA_RETRACE_PRECISE;
2079 else goto invalid_vga;
2080 } else goto invalid_vga;
2085 typedef enum LegacyDisplayType {
2093 } LegacyDisplayType;
2095 static LegacyDisplayType select_display(const char *p)
2098 LegacyDisplayType display = DT_DEFAULT;
2100 if (strstart(p, "sdl", &opts)) {
2103 dpy.type = DISPLAY_TYPE_SDL;
2105 const char *nextopt;
2107 if (strstart(opts, ",frame=", &nextopt)) {
2108 g_printerr("The frame= sdl option is deprecated, and will be\n"
2109 "removed in a future release.\n");
2111 if (strstart(opts, "on", &nextopt)) {
2113 } else if (strstart(opts, "off", &nextopt)) {
2116 goto invalid_sdl_args;
2118 } else if (strstart(opts, ",alt_grab=", &nextopt)) {
2120 if (strstart(opts, "on", &nextopt)) {
2122 } else if (strstart(opts, "off", &nextopt)) {
2125 goto invalid_sdl_args;
2127 } else if (strstart(opts, ",ctrl_grab=", &nextopt)) {
2129 if (strstart(opts, "on", &nextopt)) {
2131 } else if (strstart(opts, "off", &nextopt)) {
2134 goto invalid_sdl_args;
2136 } else if (strstart(opts, ",window_close=", &nextopt)) {
2138 dpy.has_window_close = true;
2139 if (strstart(opts, "on", &nextopt)) {
2140 dpy.window_close = true;
2141 } else if (strstart(opts, "off", &nextopt)) {
2142 dpy.window_close = false;
2144 goto invalid_sdl_args;
2146 } else if (strstart(opts, ",gl=", &nextopt)) {
2149 if (strstart(opts, "on", &nextopt)) {
2152 } else if (strstart(opts, "off", &nextopt)) {
2156 goto invalid_sdl_args;
2160 error_report("invalid SDL option string");
2166 error_report("SDL support is disabled");
2169 } else if (strstart(p, "vnc", &opts)) {
2171 vnc_parse(opts + 1, &error_fatal);
2173 error_report("VNC requires a display argument vnc=<display>");
2176 } else if (strstart(p, "egl-headless", &opts)) {
2177 #ifdef CONFIG_OPENGL_DMABUF
2181 dpy.type = DISPLAY_TYPE_EGL_HEADLESS;
2183 error_report("egl support is disabled");
2186 } else if (strstart(p, "curses", &opts)) {
2187 #ifdef CONFIG_CURSES
2188 display = DT_CURSES;
2189 dpy.type = DISPLAY_TYPE_CURSES;
2191 error_report("curses support is disabled");
2194 } else if (strstart(p, "gtk", &opts)) {
2197 dpy.type = DISPLAY_TYPE_GTK;
2199 const char *nextopt;
2201 if (strstart(opts, ",grab_on_hover=", &nextopt)) {
2203 dpy.u.gtk.has_grab_on_hover = true;
2204 if (strstart(opts, "on", &nextopt)) {
2205 dpy.u.gtk.grab_on_hover = true;
2206 } else if (strstart(opts, "off", &nextopt)) {
2207 dpy.u.gtk.grab_on_hover = false;
2209 goto invalid_gtk_args;
2211 } else if (strstart(opts, ",gl=", &nextopt)) {
2214 if (strstart(opts, "on", &nextopt)) {
2217 } else if (strstart(opts, "off", &nextopt)) {
2221 goto invalid_gtk_args;
2225 error_report("invalid GTK option string");
2231 error_report("GTK support is disabled");
2234 } else if (strstart(p, "none", &opts)) {
2236 dpy.type = DISPLAY_TYPE_NONE;
2238 error_report("unknown display type");
2245 static int balloon_parse(const char *arg)
2249 if (strcmp(arg, "none") == 0) {
2253 if (!strncmp(arg, "virtio", 6)) {
2254 if (arg[6] == ',') {
2255 /* have params -> parse them */
2256 opts = qemu_opts_parse_noisily(qemu_find_opts("device"), arg + 7,
2261 /* create empty opts */
2262 opts = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
2265 qemu_opt_set(opts, "driver", "virtio-balloon", &error_abort);
2272 char *qemu_find_file(int type, const char *name)
2278 /* Try the name as a straight path first */
2279 if (access(name, R_OK) == 0) {
2280 trace_load_file(name, name);
2281 return g_strdup(name);
2285 case QEMU_FILE_TYPE_BIOS:
2288 case QEMU_FILE_TYPE_KEYMAP:
2289 subdir = "keymaps/";
2295 for (i = 0; i < data_dir_idx; i++) {
2296 buf = g_strdup_printf("%s/%s%s", data_dir[i], subdir, name);
2297 if (access(buf, R_OK) == 0) {
2298 trace_load_file(name, buf);
2306 static void qemu_add_data_dir(const char *path)
2313 if (data_dir_idx == ARRAY_SIZE(data_dir)) {
2316 for (i = 0; i < data_dir_idx; i++) {
2317 if (strcmp(data_dir[i], path) == 0) {
2318 return; /* duplicate */
2321 data_dir[data_dir_idx++] = g_strdup(path);
2324 static inline bool nonempty_str(const char *str)
2329 static int parse_fw_cfg(void *opaque, QemuOpts *opts, Error **errp)
2333 const char *name, *file, *str;
2334 FWCfgState *fw_cfg = (FWCfgState *) opaque;
2336 if (fw_cfg == NULL) {
2337 error_report("fw_cfg device not available");
2340 name = qemu_opt_get(opts, "name");
2341 file = qemu_opt_get(opts, "file");
2342 str = qemu_opt_get(opts, "string");
2344 /* we need name and either a file or the content string */
2345 if (!(nonempty_str(name) && (nonempty_str(file) || nonempty_str(str)))) {
2346 error_report("invalid argument(s)");
2349 if (nonempty_str(file) && nonempty_str(str)) {
2350 error_report("file and string are mutually exclusive");
2353 if (strlen(name) > FW_CFG_MAX_FILE_PATH - 1) {
2354 error_report("name too long (max. %d char)", FW_CFG_MAX_FILE_PATH - 1);
2357 if (strncmp(name, "opt/", 4) != 0) {
2358 warn_report("externally provided fw_cfg item names "
2359 "should be prefixed with \"opt/\"");
2361 if (nonempty_str(str)) {
2362 size = strlen(str); /* NUL terminator NOT included in fw_cfg blob */
2363 buf = g_memdup(str, size);
2365 if (!g_file_get_contents(file, &buf, &size, NULL)) {
2366 error_report("can't load %s", file);
2370 /* For legacy, keep user files in a specific global order. */
2371 fw_cfg_set_order_override(fw_cfg, FW_CFG_ORDER_OVERRIDE_USER);
2372 fw_cfg_add_file(fw_cfg, name, buf, size);
2373 fw_cfg_reset_order_override(fw_cfg);
2377 static int device_help_func(void *opaque, QemuOpts *opts, Error **errp)
2379 return qdev_device_help(opts);
2382 static int device_init_func(void *opaque, QemuOpts *opts, Error **errp)
2387 dev = qdev_device_add(opts, &err);
2389 error_report_err(err);
2392 object_unref(OBJECT(dev));
2396 static int chardev_init_func(void *opaque, QemuOpts *opts, Error **errp)
2398 Error *local_err = NULL;
2400 if (!qemu_chr_new_from_opts(opts, &local_err)) {
2402 error_report_err(local_err);
2410 #ifdef CONFIG_VIRTFS
2411 static int fsdev_init_func(void *opaque, QemuOpts *opts, Error **errp)
2413 return qemu_fsdev_add(opts);
2417 static int mon_init_func(void *opaque, QemuOpts *opts, Error **errp)
2420 const char *chardev;
2424 mode = qemu_opt_get(opts, "mode");
2428 if (strcmp(mode, "readline") == 0) {
2429 flags = MONITOR_USE_READLINE;
2430 } else if (strcmp(mode, "control") == 0) {
2431 flags = MONITOR_USE_CONTROL;
2433 error_report("unknown monitor mode \"%s\"", mode);
2437 if (qemu_opt_get_bool(opts, "pretty", 0))
2438 flags |= MONITOR_USE_PRETTY;
2440 chardev = qemu_opt_get(opts, "chardev");
2441 chr = qemu_chr_find(chardev);
2443 error_report("chardev \"%s\" not found", chardev);
2447 monitor_init(chr, flags);
2451 static void monitor_parse(const char *optarg, const char *mode, bool pretty)
2453 static int monitor_device_index = 0;
2458 if (strstart(optarg, "chardev:", &p)) {
2459 snprintf(label, sizeof(label), "%s", p);
2461 snprintf(label, sizeof(label), "compat_monitor%d",
2462 monitor_device_index);
2463 opts = qemu_chr_parse_compat(label, optarg);
2465 error_report("parse error: %s", optarg);
2470 opts = qemu_opts_create(qemu_find_opts("mon"), label, 1, &error_fatal);
2471 qemu_opt_set(opts, "mode", mode, &error_abort);
2472 qemu_opt_set(opts, "chardev", label, &error_abort);
2473 qemu_opt_set_bool(opts, "pretty", pretty, &error_abort);
2474 monitor_device_index++;
2477 struct device_config {
2479 DEV_USB, /* -usbdevice */
2481 DEV_SERIAL, /* -serial */
2482 DEV_PARALLEL, /* -parallel */
2483 DEV_VIRTCON, /* -virtioconsole */
2484 DEV_DEBUGCON, /* -debugcon */
2485 DEV_GDB, /* -gdb, -s */
2486 DEV_SCLP, /* s390 sclp */
2488 const char *cmdline;
2490 QTAILQ_ENTRY(device_config) next;
2493 static QTAILQ_HEAD(, device_config) device_configs =
2494 QTAILQ_HEAD_INITIALIZER(device_configs);
2496 static void add_device_config(int type, const char *cmdline)
2498 struct device_config *conf;
2500 conf = g_malloc0(sizeof(*conf));
2502 conf->cmdline = cmdline;
2503 loc_save(&conf->loc);
2504 QTAILQ_INSERT_TAIL(&device_configs, conf, next);
2507 static int foreach_device_config(int type, int (*func)(const char *cmdline))
2509 struct device_config *conf;
2512 QTAILQ_FOREACH(conf, &device_configs, next) {
2513 if (conf->type != type)
2515 loc_push_restore(&conf->loc);
2516 rc = func(conf->cmdline);
2517 loc_pop(&conf->loc);
2525 static int serial_parse(const char *devname)
2527 static int index = 0;
2530 if (strcmp(devname, "none") == 0)
2532 if (index == MAX_SERIAL_PORTS) {
2533 error_report("too many serial ports");
2536 snprintf(label, sizeof(label), "serial%d", index);
2537 serial_hds[index] = qemu_chr_new(label, devname);
2538 if (!serial_hds[index]) {
2539 error_report("could not connect serial device"
2540 " to character backend '%s'", devname);
2547 static int parallel_parse(const char *devname)
2549 static int index = 0;
2552 if (strcmp(devname, "none") == 0)
2554 if (index == MAX_PARALLEL_PORTS) {
2555 error_report("too many parallel ports");
2558 snprintf(label, sizeof(label), "parallel%d", index);
2559 parallel_hds[index] = qemu_chr_new(label, devname);
2560 if (!parallel_hds[index]) {
2561 error_report("could not connect parallel device"
2562 " to character backend '%s'", devname);
2569 static int virtcon_parse(const char *devname)
2571 QemuOptsList *device = qemu_find_opts("device");
2572 static int index = 0;
2574 QemuOpts *bus_opts, *dev_opts;
2576 if (strcmp(devname, "none") == 0)
2578 if (index == MAX_VIRTIO_CONSOLES) {
2579 error_report("too many virtio consoles");
2583 bus_opts = qemu_opts_create(device, NULL, 0, &error_abort);
2584 qemu_opt_set(bus_opts, "driver", "virtio-serial", &error_abort);
2586 dev_opts = qemu_opts_create(device, NULL, 0, &error_abort);
2587 qemu_opt_set(dev_opts, "driver", "virtconsole", &error_abort);
2589 snprintf(label, sizeof(label), "virtcon%d", index);
2590 virtcon_hds[index] = qemu_chr_new(label, devname);
2591 if (!virtcon_hds[index]) {
2592 error_report("could not connect virtio console"
2593 " to character backend '%s'", devname);
2596 qemu_opt_set(dev_opts, "chardev", label, &error_abort);
2602 static int sclp_parse(const char *devname)
2604 QemuOptsList *device = qemu_find_opts("device");
2605 static int index = 0;
2609 if (strcmp(devname, "none") == 0) {
2612 if (index == MAX_SCLP_CONSOLES) {
2613 error_report("too many sclp consoles");
2617 assert(arch_type == QEMU_ARCH_S390X);
2619 dev_opts = qemu_opts_create(device, NULL, 0, NULL);
2620 qemu_opt_set(dev_opts, "driver", "sclpconsole", &error_abort);
2622 snprintf(label, sizeof(label), "sclpcon%d", index);
2623 sclp_hds[index] = qemu_chr_new(label, devname);
2624 if (!sclp_hds[index]) {
2625 error_report("could not connect sclp console"
2626 " to character backend '%s'", devname);
2629 qemu_opt_set(dev_opts, "chardev", label, &error_abort);
2635 static int debugcon_parse(const char *devname)
2639 if (!qemu_chr_new("debugcon", devname)) {
2642 opts = qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL);
2644 error_report("already have a debugcon device");
2647 qemu_opt_set(opts, "driver", "isa-debugcon", &error_abort);
2648 qemu_opt_set(opts, "chardev", "debugcon", &error_abort);
2652 static gint machine_class_cmp(gconstpointer a, gconstpointer b)
2654 const MachineClass *mc1 = a, *mc2 = b;
2657 if (mc1->family == NULL) {
2658 if (mc2->family == NULL) {
2659 /* Compare standalone machine types against each other; they sort
2660 * in increasing order.
2662 return strcmp(object_class_get_name(OBJECT_CLASS(mc1)),
2663 object_class_get_name(OBJECT_CLASS(mc2)));
2666 /* Standalone machine types sort after families. */
2670 if (mc2->family == NULL) {
2671 /* Families sort before standalone machine types. */
2675 /* Families sort between each other alphabetically increasingly. */
2676 res = strcmp(mc1->family, mc2->family);
2681 /* Within the same family, machine types sort in decreasing order. */
2682 return strcmp(object_class_get_name(OBJECT_CLASS(mc2)),
2683 object_class_get_name(OBJECT_CLASS(mc1)));
2686 static MachineClass *machine_parse(const char *name)
2688 MachineClass *mc = NULL;
2689 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
2692 mc = find_machine(name);
2695 g_slist_free(machines);
2698 if (name && !is_help_option(name)) {
2699 error_report("unsupported machine type");
2700 error_printf("Use -machine help to list supported machines\n");
2702 printf("Supported machines are:\n");
2703 machines = g_slist_sort(machines, machine_class_cmp);
2704 for (el = machines; el; el = el->next) {
2705 MachineClass *mc = el->data;
2707 printf("%-20s %s (alias of %s)\n", mc->alias, mc->desc, mc->name);
2709 printf("%-20s %s%s\n", mc->name, mc->desc,
2710 mc->is_default ? " (default)" : "");
2714 g_slist_free(machines);
2715 exit(!name || !is_help_option(name));
2718 void qemu_add_exit_notifier(Notifier *notify)
2720 notifier_list_add(&exit_notifiers, notify);
2723 void qemu_remove_exit_notifier(Notifier *notify)
2725 notifier_remove(notify);
2728 static void qemu_run_exit_notifiers(void)
2730 notifier_list_notify(&exit_notifiers, NULL);
2733 static bool machine_init_done;
2735 void qemu_add_machine_init_done_notifier(Notifier *notify)
2737 notifier_list_add(&machine_init_done_notifiers, notify);
2738 if (machine_init_done) {
2739 notify->notify(notify, NULL);
2743 void qemu_remove_machine_init_done_notifier(Notifier *notify)
2745 notifier_remove(notify);
2748 static void qemu_run_machine_init_done_notifiers(void)
2750 notifier_list_notify(&machine_init_done_notifiers, NULL);
2751 machine_init_done = true;
2754 static const QEMUOption *lookup_opt(int argc, char **argv,
2755 const char **poptarg, int *poptind)
2757 const QEMUOption *popt;
2758 int optind = *poptind;
2759 char *r = argv[optind];
2762 loc_set_cmdline(argv, optind, 1);
2764 /* Treat --foo the same as -foo. */
2767 popt = qemu_options;
2770 error_report("invalid option");
2773 if (!strcmp(popt->name, r + 1))
2777 if (popt->flags & HAS_ARG) {
2778 if (optind >= argc) {
2779 error_report("requires an argument");
2782 optarg = argv[optind++];
2783 loc_set_cmdline(argv, optind - 2, 2);
2794 static MachineClass *select_machine(void)
2796 MachineClass *machine_class = find_default_machine();
2801 loc_push_none(&loc);
2803 opts = qemu_get_machine_opts();
2804 qemu_opts_loc_restore(opts);
2806 optarg = qemu_opt_get(opts, "type");
2808 machine_class = machine_parse(optarg);
2811 if (!machine_class) {
2812 error_report("No machine specified, and there is no default");
2813 error_printf("Use -machine help to list supported machines\n");
2818 return machine_class;
2821 static int machine_set_property(void *opaque,
2822 const char *name, const char *value,
2825 Object *obj = OBJECT(opaque);
2826 Error *local_err = NULL;
2829 if (strcmp(name, "type") == 0) {
2833 qom_name = g_strdup(name);
2834 for (p = qom_name; *p; p++) {
2840 object_property_parse(obj, value, qom_name, &local_err);
2844 error_report_err(local_err);
2853 * Initial object creation happens before all other
2854 * QEMU data types are created. The majority of objects
2855 * can be created at this point. The rng-egd object
2856 * cannot be created here, as it depends on the chardev
2859 static bool object_create_initial(const char *type)
2861 if (g_str_equal(type, "rng-egd") ||
2862 g_str_has_prefix(type, "pr-manager-")) {
2867 * return false for concrete netfilters since
2868 * they depend on netdevs already existing
2870 if (g_str_equal(type, "filter-buffer") ||
2871 g_str_equal(type, "filter-dump") ||
2872 g_str_equal(type, "filter-mirror") ||
2873 g_str_equal(type, "filter-redirector") ||
2874 g_str_equal(type, "colo-compare") ||
2875 g_str_equal(type, "filter-rewriter") ||
2876 g_str_equal(type, "filter-replay")) {
2880 /* Memory allocation by backends needs to be done
2881 * after configure_accelerator() (due to the tcg_enabled()
2882 * checks at memory_region_init_*()).
2884 * Also, allocation of large amounts of memory may delay
2885 * chardev initialization for too long, and trigger timeouts
2886 * on software that waits for a monitor socket to be created
2889 if (g_str_has_prefix(type, "memory-backend-")) {
2898 * The remainder of object creation happens after the
2899 * creation of chardev, fsdev, net clients and device data types.
2901 static bool object_create_delayed(const char *type)
2903 return !object_create_initial(type);
2907 static void set_memory_options(uint64_t *ram_slots, ram_addr_t *maxram_size,
2911 const char *mem_str;
2912 const char *maxmem_str, *slots_str;
2913 const ram_addr_t default_ram_size = mc->default_ram_size;
2914 QemuOpts *opts = qemu_find_opts_singleton("memory");
2917 loc_push_none(&loc);
2918 qemu_opts_loc_restore(opts);
2921 mem_str = qemu_opt_get(opts, "size");
2924 error_report("missing 'size' option value");
2928 sz = qemu_opt_get_size(opts, "size", ram_size);
2930 /* Fix up legacy suffix-less format */
2931 if (g_ascii_isdigit(mem_str[strlen(mem_str) - 1])) {
2932 uint64_t overflow_check = sz;
2935 if ((sz >> 20) != overflow_check) {
2936 error_report("too large 'size' option value");
2942 /* backward compatibility behaviour for case "-m 0" */
2944 sz = default_ram_size;
2947 sz = QEMU_ALIGN_UP(sz, 8192);
2949 if (ram_size != sz) {
2950 error_report("ram size too large");
2954 /* store value for the future use */
2955 qemu_opt_set_number(opts, "size", ram_size, &error_abort);
2956 *maxram_size = ram_size;
2958 maxmem_str = qemu_opt_get(opts, "maxmem");
2959 slots_str = qemu_opt_get(opts, "slots");
2960 if (maxmem_str && slots_str) {
2963 sz = qemu_opt_get_size(opts, "maxmem", 0);
2964 slots = qemu_opt_get_number(opts, "slots", 0);
2965 if (sz < ram_size) {
2966 error_report("invalid value of -m option maxmem: "
2967 "maximum memory size (0x%" PRIx64 ") must be at least "
2968 "the initial memory size (0x" RAM_ADDR_FMT ")",
2971 } else if (sz > ram_size) {
2973 error_report("invalid value of -m option: maxmem was "
2974 "specified, but no hotplug slots were specified");
2978 error_report("invalid value of -m option maxmem: "
2979 "memory slots were specified but maximum memory size "
2980 "(0x%" PRIx64 ") is equal to the initial memory size "
2981 "(0x" RAM_ADDR_FMT ")", sz, ram_size);
2987 } else if ((!maxmem_str && slots_str) ||
2988 (maxmem_str && !slots_str)) {
2989 error_report("invalid -m option value: missing "
2990 "'%s' option", slots_str ? "maxmem" : "slots");
2997 static int global_init_func(void *opaque, QemuOpts *opts, Error **errp)
3001 g = g_malloc0(sizeof(*g));
3002 g->driver = qemu_opt_get(opts, "driver");
3003 g->property = qemu_opt_get(opts, "property");
3004 g->value = qemu_opt_get(opts, "value");
3005 g->user_provided = true;
3006 g->errp = &error_fatal;
3007 qdev_prop_register_global(g);
3011 static int qemu_read_default_config_file(void)
3015 ret = qemu_read_config_file(CONFIG_QEMU_CONFDIR "/qemu.conf");
3016 if (ret < 0 && ret != -ENOENT) {
3023 static void user_register_global_props(void)
3025 qemu_opts_foreach(qemu_find_opts("global"),
3026 global_init_func, NULL, NULL);
3030 * Note: we should see that these properties are actually having a
3031 * priority: accel < machine < user. This means e.g. when user
3032 * specifies something in "-global", it'll always be used with highest
3033 * priority than either machine/accelerator compat properties.
3035 static void register_global_properties(MachineState *ms)
3037 accel_register_compat_props(ms->accelerator);
3038 machine_register_compat_props(ms);
3039 user_register_global_props();
3042 int main(int argc, char **argv, char **envp)
3045 int snapshot, linux_boot;
3046 const char *initrd_filename;
3047 const char *kernel_filename, *kernel_cmdline;
3048 const char *boot_order = NULL;
3049 const char *boot_once = NULL;
3051 QemuOpts *opts, *machine_opts;
3052 QemuOpts *icount_opts = NULL, *accel_opts = NULL;
3053 QemuOptsList *olist;
3056 const char *loadvm = NULL;
3057 MachineClass *machine_class;
3058 const char *cpu_model;
3059 const char *vga_model = NULL;
3060 const char *qtest_chrdev = NULL;
3061 const char *qtest_log = NULL;
3062 const char *pid_file = NULL;
3063 const char *incoming = NULL;
3064 bool userconfig = true;
3065 bool nographic = false;
3066 LegacyDisplayType display_type = DT_DEFAULT;
3067 int display_remote = 0;
3068 const char *log_mask = NULL;
3069 const char *log_file = NULL;
3070 char *trace_file = NULL;
3071 ram_addr_t maxram_size;
3072 uint64_t ram_slots = 0;
3073 FILE *vmstate_dump_file = NULL;
3074 Error *main_loop_err = NULL;
3076 bool list_data_dirs = false;
3078 typedef struct BlockdevOptions_queue {
3079 BlockdevOptions *bdo;
3081 QSIMPLEQ_ENTRY(BlockdevOptions_queue) entry;
3082 } BlockdevOptions_queue;
3083 QSIMPLEQ_HEAD(, BlockdevOptions_queue) bdo_queue
3084 = QSIMPLEQ_HEAD_INITIALIZER(bdo_queue);
3086 module_call_init(MODULE_INIT_TRACE);
3088 qemu_init_cpu_list();
3089 qemu_init_cpu_loop();
3090 qemu_mutex_lock_iothread();
3092 atexit(qemu_run_exit_notifiers);
3093 error_set_progname(argv[0]);
3094 qemu_init_exec_dir(argv[0]);
3096 module_call_init(MODULE_INIT_QOM);
3097 monitor_init_qmp_commands();
3099 qemu_add_opts(&qemu_drive_opts);
3100 qemu_add_drive_opts(&qemu_legacy_drive_opts);
3101 qemu_add_drive_opts(&qemu_common_drive_opts);
3102 qemu_add_drive_opts(&qemu_drive_opts);
3103 qemu_add_drive_opts(&bdrv_runtime_opts);
3104 qemu_add_opts(&qemu_chardev_opts);
3105 qemu_add_opts(&qemu_device_opts);
3106 qemu_add_opts(&qemu_netdev_opts);
3107 qemu_add_opts(&qemu_net_opts);
3108 qemu_add_opts(&qemu_rtc_opts);
3109 qemu_add_opts(&qemu_global_opts);
3110 qemu_add_opts(&qemu_mon_opts);
3111 qemu_add_opts(&qemu_trace_opts);
3112 qemu_add_opts(&qemu_option_rom_opts);
3113 qemu_add_opts(&qemu_machine_opts);
3114 qemu_add_opts(&qemu_accel_opts);
3115 qemu_add_opts(&qemu_mem_opts);
3116 qemu_add_opts(&qemu_smp_opts);
3117 qemu_add_opts(&qemu_boot_opts);
3118 qemu_add_opts(&qemu_sandbox_opts);
3119 qemu_add_opts(&qemu_add_fd_opts);
3120 qemu_add_opts(&qemu_object_opts);
3121 qemu_add_opts(&qemu_tpmdev_opts);
3122 qemu_add_opts(&qemu_realtime_opts);
3123 qemu_add_opts(&qemu_msg_opts);
3124 qemu_add_opts(&qemu_name_opts);
3125 qemu_add_opts(&qemu_numa_opts);
3126 qemu_add_opts(&qemu_icount_opts);
3127 qemu_add_opts(&qemu_semihosting_config_opts);
3128 qemu_add_opts(&qemu_fw_cfg_opts);
3129 module_call_init(MODULE_INIT_OPTS);
3133 if (qcrypto_init(&err) < 0) {
3134 error_reportf_err(err, "cannot initialize crypto: ");
3137 rtc_clock = QEMU_CLOCK_HOST;
3139 QLIST_INIT (&vm_change_state_head);
3140 os_setup_early_signal_handling();
3147 bdrv_init_with_whitelist();
3151 /* first pass of option parsing */
3153 while (optind < argc) {
3154 if (argv[optind][0] != '-') {
3158 const QEMUOption *popt;
3160 popt = lookup_opt(argc, argv, &optarg, &optind);
3161 switch (popt->index) {
3162 case QEMU_OPTION_nodefconfig:
3163 case QEMU_OPTION_nouserconfig:
3171 if (qemu_read_default_config_file() < 0) {
3176 /* second pass of option parsing */
3181 if (argv[optind][0] != '-') {
3182 drive_add(IF_DEFAULT, 0, argv[optind++], HD_OPTS);
3184 const QEMUOption *popt;
3186 popt = lookup_opt(argc, argv, &optarg, &optind);
3187 if (!(popt->arch_mask & arch_type)) {
3188 error_report("Option not supported for this target");
3191 switch(popt->index) {
3192 case QEMU_OPTION_no_kvm_irqchip: {
3193 olist = qemu_find_opts("machine");
3194 qemu_opts_parse_noisily(olist, "kernel_irqchip=off", false);
3197 case QEMU_OPTION_cpu:
3198 /* hw initialization will check this */
3201 case QEMU_OPTION_hda:
3202 case QEMU_OPTION_hdb:
3203 case QEMU_OPTION_hdc:
3204 case QEMU_OPTION_hdd:
3205 drive_add(IF_DEFAULT, popt->index - QEMU_OPTION_hda, optarg,
3208 case QEMU_OPTION_blockdev:
3211 BlockdevOptions_queue *bdo;
3213 v = qobject_input_visitor_new_str(optarg, "driver", &err);
3215 error_report_err(err);
3219 bdo = g_new(BlockdevOptions_queue, 1);
3220 visit_type_BlockdevOptions(v, NULL, &bdo->bdo,
3223 loc_save(&bdo->loc);
3224 QSIMPLEQ_INSERT_TAIL(&bdo_queue, bdo, entry);
3227 case QEMU_OPTION_drive:
3228 if (drive_def(optarg) == NULL) {
3232 case QEMU_OPTION_set:
3233 if (qemu_set_option(optarg) != 0)
3236 case QEMU_OPTION_global:
3237 if (qemu_global_option(optarg) != 0)
3240 case QEMU_OPTION_mtdblock:
3241 drive_add(IF_MTD, -1, optarg, MTD_OPTS);
3243 case QEMU_OPTION_sd:
3244 drive_add(IF_SD, -1, optarg, SD_OPTS);
3246 case QEMU_OPTION_pflash:
3247 drive_add(IF_PFLASH, -1, optarg, PFLASH_OPTS);
3249 case QEMU_OPTION_snapshot:
3252 case QEMU_OPTION_numa:
3253 opts = qemu_opts_parse_noisily(qemu_find_opts("numa"),
3259 case QEMU_OPTION_display:
3260 display_type = select_display(optarg);
3262 case QEMU_OPTION_nographic:
3263 olist = qemu_find_opts("machine");
3264 qemu_opts_parse_noisily(olist, "graphics=off", false);
3266 display_type = DT_NONE;
3267 dpy.type = DISPLAY_TYPE_NONE;
3269 case QEMU_OPTION_curses:
3270 #ifdef CONFIG_CURSES
3271 display_type = DT_CURSES;
3272 dpy.type = DISPLAY_TYPE_CURSES;
3274 error_report("curses support is disabled");
3278 case QEMU_OPTION_portrait:
3279 graphic_rotate = 90;
3281 case QEMU_OPTION_rotate:
3282 graphic_rotate = strtol(optarg, (char **) &optarg, 10);
3283 if (graphic_rotate != 0 && graphic_rotate != 90 &&
3284 graphic_rotate != 180 && graphic_rotate != 270) {
3285 error_report("only 90, 180, 270 deg rotation is available");
3289 case QEMU_OPTION_kernel:
3290 qemu_opts_set(qemu_find_opts("machine"), 0, "kernel", optarg,
3293 case QEMU_OPTION_initrd:
3294 qemu_opts_set(qemu_find_opts("machine"), 0, "initrd", optarg,
3297 case QEMU_OPTION_append:
3298 qemu_opts_set(qemu_find_opts("machine"), 0, "append", optarg,
3301 case QEMU_OPTION_dtb:
3302 qemu_opts_set(qemu_find_opts("machine"), 0, "dtb", optarg,
3305 case QEMU_OPTION_cdrom:
3306 drive_add(IF_DEFAULT, 2, optarg, CDROM_OPTS);
3308 case QEMU_OPTION_boot:
3309 opts = qemu_opts_parse_noisily(qemu_find_opts("boot-opts"),
3315 case QEMU_OPTION_fda:
3316 case QEMU_OPTION_fdb:
3317 drive_add(IF_FLOPPY, popt->index - QEMU_OPTION_fda,
3320 case QEMU_OPTION_no_fd_bootchk:
3323 case QEMU_OPTION_netdev:
3325 if (net_client_parse(qemu_find_opts("netdev"), optarg) == -1) {
3329 case QEMU_OPTION_net:
3331 if (net_client_parse(qemu_find_opts("net"), optarg) == -1) {
3335 #ifdef CONFIG_LIBISCSI
3336 case QEMU_OPTION_iscsi:
3337 opts = qemu_opts_parse_noisily(qemu_find_opts("iscsi"),
3345 case QEMU_OPTION_tftp:
3346 error_report("The -tftp option is deprecated. "
3347 "Please use '-netdev user,tftp=...' instead.");
3348 legacy_tftp_prefix = optarg;
3350 case QEMU_OPTION_bootp:
3351 error_report("The -bootp option is deprecated. "
3352 "Please use '-netdev user,bootfile=...' instead.");
3353 legacy_bootp_filename = optarg;
3355 case QEMU_OPTION_redir:
3356 error_report("The -redir option is deprecated. "
3357 "Please use '-netdev user,hostfwd=...' instead.");
3358 if (net_slirp_redir(optarg) < 0)
3362 case QEMU_OPTION_bt:
3363 add_device_config(DEV_BT, optarg);
3365 case QEMU_OPTION_audio_help:
3369 case QEMU_OPTION_soundhw:
3370 select_soundhw (optarg);
3375 case QEMU_OPTION_version:
3380 opts = qemu_opts_parse_noisily(qemu_find_opts("memory"),
3387 case QEMU_OPTION_tpmdev:
3388 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg) < 0) {
3393 case QEMU_OPTION_mempath:
3396 case QEMU_OPTION_mem_prealloc:
3405 case QEMU_OPTION_DFILTER:
3406 qemu_set_dfilter_ranges(optarg, &error_fatal);
3409 add_device_config(DEV_GDB, "tcp::" DEFAULT_GDBSTUB_PORT);
3411 case QEMU_OPTION_gdb:
3412 add_device_config(DEV_GDB, optarg);
3415 if (is_help_option(optarg)) {
3416 list_data_dirs = true;
3418 qemu_add_data_dir(optarg);
3421 case QEMU_OPTION_bios:
3422 qemu_opts_set(qemu_find_opts("machine"), 0, "firmware", optarg,
3425 case QEMU_OPTION_singlestep:
3432 keyboard_layout = optarg;
3434 case QEMU_OPTION_localtime:
3437 case QEMU_OPTION_vga:
3446 w = strtol(p, (char **)&p, 10);
3449 error_report("invalid resolution or depth");
3455 h = strtol(p, (char **)&p, 10);
3460 depth = strtol(p, (char **)&p, 10);
3461 if (depth != 8 && depth != 15 && depth != 16 &&
3462 depth != 24 && depth != 32)
3464 } else if (*p == '\0') {
3465 depth = graphic_depth;
3472 graphic_depth = depth;
3475 case QEMU_OPTION_echr:
3478 term_escape_char = strtol(optarg, &r, 0);
3480 printf("Bad argument to echr\n");
3483 case QEMU_OPTION_monitor:
3484 default_monitor = 0;
3485 if (strncmp(optarg, "none", 4)) {
3486 monitor_parse(optarg, "readline", false);
3489 case QEMU_OPTION_qmp:
3490 monitor_parse(optarg, "control", false);
3491 default_monitor = 0;
3493 case QEMU_OPTION_qmp_pretty:
3494 monitor_parse(optarg, "control", true);
3495 default_monitor = 0;
3497 case QEMU_OPTION_mon:
3498 opts = qemu_opts_parse_noisily(qemu_find_opts("mon"), optarg,
3503 default_monitor = 0;
3505 case QEMU_OPTION_chardev:
3506 opts = qemu_opts_parse_noisily(qemu_find_opts("chardev"),
3512 case QEMU_OPTION_fsdev:
3513 olist = qemu_find_opts("fsdev");
3515 error_report("fsdev support is disabled");
3518 opts = qemu_opts_parse_noisily(olist, optarg, true);
3523 case QEMU_OPTION_virtfs: {
3526 const char *writeout, *sock_fd, *socket, *path, *security_model;
3528 olist = qemu_find_opts("virtfs");
3530 error_report("virtfs support is disabled");
3533 opts = qemu_opts_parse_noisily(olist, optarg, true);
3538 if (qemu_opt_get(opts, "fsdriver") == NULL ||
3539 qemu_opt_get(opts, "mount_tag") == NULL) {
3540 error_report("Usage: -virtfs fsdriver,mount_tag=tag");
3543 fsdev = qemu_opts_create(qemu_find_opts("fsdev"),
3544 qemu_opts_id(opts) ?:
3545 qemu_opt_get(opts, "mount_tag"),
3548 error_report("duplicate or invalid fsdev id: %s",
3549 qemu_opt_get(opts, "mount_tag"));
3553 writeout = qemu_opt_get(opts, "writeout");
3555 #ifdef CONFIG_SYNC_FILE_RANGE
3556 qemu_opt_set(fsdev, "writeout", writeout, &error_abort);
3558 error_report("writeout=immediate not supported "
3559 "on this platform");
3563 qemu_opt_set(fsdev, "fsdriver",
3564 qemu_opt_get(opts, "fsdriver"), &error_abort);
3565 path = qemu_opt_get(opts, "path");
3567 qemu_opt_set(fsdev, "path", path, &error_abort);
3569 security_model = qemu_opt_get(opts, "security_model");
3570 if (security_model) {
3571 qemu_opt_set(fsdev, "security_model", security_model,
3574 socket = qemu_opt_get(opts, "socket");
3576 qemu_opt_set(fsdev, "socket", socket, &error_abort);
3578 sock_fd = qemu_opt_get(opts, "sock_fd");
3580 qemu_opt_set(fsdev, "sock_fd", sock_fd, &error_abort);
3583 qemu_opt_set_bool(fsdev, "readonly",
3584 qemu_opt_get_bool(opts, "readonly", 0),
3586 device = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
3588 qemu_opt_set(device, "driver", "virtio-9p-pci", &error_abort);
3589 qemu_opt_set(device, "fsdev",
3590 qemu_opts_id(fsdev), &error_abort);
3591 qemu_opt_set(device, "mount_tag",
3592 qemu_opt_get(opts, "mount_tag"), &error_abort);
3595 case QEMU_OPTION_virtfs_synth: {
3599 fsdev = qemu_opts_create(qemu_find_opts("fsdev"), "v_synth",
3602 error_report("duplicate option: %s", "virtfs_synth");
3605 qemu_opt_set(fsdev, "fsdriver", "synth", &error_abort);
3607 device = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
3609 qemu_opt_set(device, "driver", "virtio-9p-pci", &error_abort);
3610 qemu_opt_set(device, "fsdev", "v_synth", &error_abort);
3611 qemu_opt_set(device, "mount_tag", "v_synth", &error_abort);
3614 case QEMU_OPTION_serial:
3615 add_device_config(DEV_SERIAL, optarg);
3617 if (strncmp(optarg, "mon:", 4) == 0) {
3618 default_monitor = 0;
3621 case QEMU_OPTION_watchdog:
3623 error_report("only one watchdog option may be given");
3628 case QEMU_OPTION_watchdog_action:
3629 if (select_watchdog_action(optarg) == -1) {
3630 error_report("unknown -watchdog-action parameter");
3634 case QEMU_OPTION_virtiocon:
3635 add_device_config(DEV_VIRTCON, optarg);
3636 default_virtcon = 0;
3637 if (strncmp(optarg, "mon:", 4) == 0) {
3638 default_monitor = 0;
3641 case QEMU_OPTION_parallel:
3642 add_device_config(DEV_PARALLEL, optarg);
3643 default_parallel = 0;
3644 if (strncmp(optarg, "mon:", 4) == 0) {
3645 default_monitor = 0;
3648 case QEMU_OPTION_debugcon:
3649 add_device_config(DEV_DEBUGCON, optarg);
3651 case QEMU_OPTION_loadvm:
3654 case QEMU_OPTION_full_screen:
3656 dpy.has_full_screen = true;
3657 dpy.full_screen = true;
3659 case QEMU_OPTION_no_frame:
3660 g_printerr("The -no-frame switch is deprecated, and will be\n"
3661 "removed in a future release.\n");
3664 case QEMU_OPTION_alt_grab:
3667 case QEMU_OPTION_ctrl_grab:
3670 case QEMU_OPTION_no_quit:
3671 dpy.has_window_close = true;
3672 dpy.window_close = false;
3674 case QEMU_OPTION_sdl:
3676 display_type = DT_SDL;
3677 dpy.type = DISPLAY_TYPE_SDL;
3680 error_report("SDL support is disabled");
3683 case QEMU_OPTION_pidfile:
3686 case QEMU_OPTION_win2k_hack:
3687 win2k_install_hack = 1;
3689 case QEMU_OPTION_rtc_td_hack: {
3690 static GlobalProperty slew_lost_ticks = {
3691 .driver = "mc146818rtc",
3692 .property = "lost_tick_policy",
3696 qdev_prop_register_global(&slew_lost_ticks);
3699 case QEMU_OPTION_acpitable:
3700 opts = qemu_opts_parse_noisily(qemu_find_opts("acpi"),
3705 acpi_table_add(opts, &error_fatal);
3707 case QEMU_OPTION_smbios:
3708 opts = qemu_opts_parse_noisily(qemu_find_opts("smbios"),
3713 smbios_entry_add(opts, &error_fatal);
3715 case QEMU_OPTION_fwcfg:
3716 opts = qemu_opts_parse_noisily(qemu_find_opts("fw_cfg"),
3722 case QEMU_OPTION_enable_kvm:
3723 olist = qemu_find_opts("machine");
3724 qemu_opts_parse_noisily(olist, "accel=kvm", false);
3726 case QEMU_OPTION_enable_hax:
3727 olist = qemu_find_opts("machine");
3728 qemu_opts_parse_noisily(olist, "accel=hax", false);
3731 case QEMU_OPTION_machine:
3732 olist = qemu_find_opts("machine");
3733 opts = qemu_opts_parse_noisily(olist, optarg, true);
3738 case QEMU_OPTION_no_kvm:
3739 olist = qemu_find_opts("machine");
3740 qemu_opts_parse_noisily(olist, "accel=tcg", false);
3742 case QEMU_OPTION_no_kvm_pit_reinjection: {
3743 static GlobalProperty kvm_pit_lost_tick_policy = {
3744 .driver = "kvm-pit",
3745 .property = "lost_tick_policy",
3749 warn_report("deprecated, replaced by "
3750 "-global kvm-pit.lost_tick_policy=discard");
3751 qdev_prop_register_global(&kvm_pit_lost_tick_policy);
3754 case QEMU_OPTION_accel:
3755 accel_opts = qemu_opts_parse_noisily(qemu_find_opts("accel"),
3757 optarg = qemu_opt_get(accel_opts, "accel");
3758 if (!optarg || is_help_option(optarg)) {
3759 error_printf("Possible accelerators: kvm, xen, hax, tcg\n");
3762 opts = qemu_opts_create(qemu_find_opts("machine"), NULL,
3763 false, &error_abort);
3764 qemu_opt_set(opts, "accel", optarg, &error_abort);
3766 case QEMU_OPTION_usb:
3767 olist = qemu_find_opts("machine");
3768 qemu_opts_parse_noisily(olist, "usb=on", false);
3770 case QEMU_OPTION_usbdevice:
3771 error_report("'-usbdevice' is deprecated, please use "
3772 "'-device usb-...' instead");
3773 olist = qemu_find_opts("machine");
3774 qemu_opts_parse_noisily(olist, "usb=on", false);
3775 add_device_config(DEV_USB, optarg);
3777 case QEMU_OPTION_device:
3778 if (!qemu_opts_parse_noisily(qemu_find_opts("device"),
3783 case QEMU_OPTION_smp:
3784 if (!qemu_opts_parse_noisily(qemu_find_opts("smp-opts"),
3789 case QEMU_OPTION_vnc:
3790 vnc_parse(optarg, &error_fatal);
3792 case QEMU_OPTION_no_acpi:
3795 case QEMU_OPTION_no_hpet:
3798 case QEMU_OPTION_balloon:
3799 if (balloon_parse(optarg) < 0) {
3800 error_report("unknown -balloon argument %s", optarg);
3804 case QEMU_OPTION_no_reboot:
3807 case QEMU_OPTION_no_shutdown:
3810 case QEMU_OPTION_show_cursor:
3813 case QEMU_OPTION_uuid:
3814 if (qemu_uuid_parse(optarg, &qemu_uuid) < 0) {
3815 error_report("failed to parse UUID string: wrong format");
3818 qemu_uuid_set = true;
3820 case QEMU_OPTION_option_rom:
3821 if (nb_option_roms >= MAX_OPTION_ROMS) {
3822 error_report("too many option ROMs");
3825 opts = qemu_opts_parse_noisily(qemu_find_opts("option-rom"),
3830 option_rom[nb_option_roms].name = qemu_opt_get(opts, "romfile");
3831 option_rom[nb_option_roms].bootindex =
3832 qemu_opt_get_number(opts, "bootindex", -1);
3833 if (!option_rom[nb_option_roms].name) {
3834 error_report("Option ROM file is not specified");
3839 case QEMU_OPTION_semihosting:
3840 semihosting.enabled = true;
3841 semihosting.target = SEMIHOSTING_TARGET_AUTO;
3843 case QEMU_OPTION_semihosting_config:
3844 semihosting.enabled = true;
3845 opts = qemu_opts_parse_noisily(qemu_find_opts("semihosting-config"),
3848 semihosting.enabled = qemu_opt_get_bool(opts, "enable",
3850 const char *target = qemu_opt_get(opts, "target");
3851 if (target != NULL) {
3852 if (strcmp("native", target) == 0) {
3853 semihosting.target = SEMIHOSTING_TARGET_NATIVE;
3854 } else if (strcmp("gdb", target) == 0) {
3855 semihosting.target = SEMIHOSTING_TARGET_GDB;
3856 } else if (strcmp("auto", target) == 0) {
3857 semihosting.target = SEMIHOSTING_TARGET_AUTO;
3859 error_report("unsupported semihosting-config %s",
3864 semihosting.target = SEMIHOSTING_TARGET_AUTO;
3866 /* Set semihosting argument count and vector */
3867 qemu_opt_foreach(opts, add_semihosting_arg,
3868 &semihosting, NULL);
3870 error_report("unsupported semihosting-config %s", optarg);
3874 case QEMU_OPTION_tdf:
3875 warn_report("ignoring deprecated option");
3877 case QEMU_OPTION_name:
3878 opts = qemu_opts_parse_noisily(qemu_find_opts("name"),
3884 case QEMU_OPTION_prom_env:
3885 if (nb_prom_envs >= MAX_PROM_ENVS) {
3886 error_report("too many prom variables");
3889 prom_envs[nb_prom_envs] = optarg;
3892 case QEMU_OPTION_old_param:
3895 case QEMU_OPTION_clock:
3896 /* Clock options no longer exist. Keep this option for
3897 * backward compatibility.
3900 case QEMU_OPTION_startdate:
3901 configure_rtc_date_offset(optarg, 1);
3903 case QEMU_OPTION_rtc:
3904 opts = qemu_opts_parse_noisily(qemu_find_opts("rtc"), optarg,
3909 configure_rtc(opts);
3911 case QEMU_OPTION_tb_size:
3913 error_report("TCG is disabled");
3916 if (qemu_strtoul(optarg, NULL, 0, &tcg_tb_size) < 0) {
3917 error_report("Invalid argument to -tb-size");
3921 case QEMU_OPTION_icount:
3922 icount_opts = qemu_opts_parse_noisily(qemu_find_opts("icount"),
3928 case QEMU_OPTION_incoming:
3930 runstate_set(RUN_STATE_INMIGRATE);
3934 case QEMU_OPTION_only_migratable:
3936 * TODO: we can remove this option one day, and we
3939 * "-global migration.only-migratable=true"
3941 qemu_global_option("migration.only-migratable=true");
3943 case QEMU_OPTION_nodefaults:
3946 case QEMU_OPTION_xen_domid:
3947 if (!(xen_available())) {
3948 error_report("Option not supported for this target");
3951 xen_domid = atoi(optarg);
3953 case QEMU_OPTION_xen_create:
3954 if (!(xen_available())) {
3955 error_report("Option not supported for this target");
3958 xen_mode = XEN_CREATE;
3960 case QEMU_OPTION_xen_attach:
3961 if (!(xen_available())) {
3962 error_report("Option not supported for this target");
3965 xen_mode = XEN_ATTACH;
3967 case QEMU_OPTION_xen_domid_restrict:
3968 if (!(xen_available())) {
3969 error_report("Option not supported for this target");
3972 xen_domid_restrict = true;
3974 case QEMU_OPTION_trace:
3976 trace_file = trace_opt_parse(optarg);
3978 case QEMU_OPTION_readconfig:
3980 int ret = qemu_read_config_file(optarg);
3982 error_report("read config %s: %s", optarg,
3988 case QEMU_OPTION_spice:
3989 olist = qemu_find_opts("spice");
3991 error_report("spice support is disabled");
3994 opts = qemu_opts_parse_noisily(olist, optarg, false);
4000 case QEMU_OPTION_writeconfig:
4003 if (strcmp(optarg, "-") == 0) {
4006 fp = fopen(optarg, "w");
4008 error_report("open %s: %s", optarg,
4013 qemu_config_write(fp);
4019 case QEMU_OPTION_qtest:
4020 qtest_chrdev = optarg;
4022 case QEMU_OPTION_qtest_log:
4025 case QEMU_OPTION_sandbox:
4026 opts = qemu_opts_parse_noisily(qemu_find_opts("sandbox"),
4032 case QEMU_OPTION_add_fd:
4034 opts = qemu_opts_parse_noisily(qemu_find_opts("add-fd"),
4040 error_report("File descriptor passing is disabled on this "
4045 case QEMU_OPTION_object:
4046 opts = qemu_opts_parse_noisily(qemu_find_opts("object"),
4052 case QEMU_OPTION_realtime:
4053 opts = qemu_opts_parse_noisily(qemu_find_opts("realtime"),
4058 enable_mlock = qemu_opt_get_bool(opts, "mlock", true);
4060 case QEMU_OPTION_msg:
4061 opts = qemu_opts_parse_noisily(qemu_find_opts("msg"), optarg,
4066 configure_msg(opts);
4068 case QEMU_OPTION_dump_vmstate:
4069 if (vmstate_dump_file) {
4070 error_report("only one '-dump-vmstate' "
4071 "option may be given");
4074 vmstate_dump_file = fopen(optarg, "w");
4075 if (vmstate_dump_file == NULL) {
4076 error_report("open %s: %s", optarg, strerror(errno));
4081 os_parse_cmd_args(popt->index, optarg);
4086 * Clear error location left behind by the loop.
4087 * Best done right after the loop. Do not insert code here!
4091 replay_configure(icount_opts);
4093 machine_class = select_machine();
4095 set_memory_options(&ram_slots, &maxram_size, machine_class);
4098 rcu_disable_atfork();
4100 if (pid_file && qemu_create_pidfile(pid_file) != 0) {
4101 error_report("could not acquire pid file: %s", strerror(errno));
4105 if (qemu_init_main_loop(&main_loop_err)) {
4106 error_report_err(main_loop_err);
4110 if (qemu_opts_foreach(qemu_find_opts("sandbox"),
4111 parse_sandbox, NULL, NULL)) {
4115 if (qemu_opts_foreach(qemu_find_opts("name"),
4116 parse_name, NULL, NULL)) {
4121 if (qemu_opts_foreach(qemu_find_opts("add-fd"),
4122 parse_add_fd, NULL, NULL)) {
4126 if (qemu_opts_foreach(qemu_find_opts("add-fd"),
4127 cleanup_add_fd, NULL, NULL)) {
4132 current_machine = MACHINE(object_new(object_class_get_name(
4133 OBJECT_CLASS(machine_class))));
4134 if (machine_help_func(qemu_get_machine_opts(), current_machine)) {
4137 object_property_add_child(object_get_root(), "machine",
4138 OBJECT(current_machine), &error_abort);
4140 if (machine_class->minimum_page_bits) {
4141 if (!set_preferred_target_page_bits(machine_class->minimum_page_bits)) {
4142 /* This would be a board error: specifying a minimum smaller than
4143 * a target's compile-time fixed setting.
4145 g_assert_not_reached();
4149 cpu_exec_init_all();
4151 if (machine_class->hw_version) {
4152 qemu_set_hw_version(machine_class->hw_version);
4155 if (cpu_model && is_help_option(cpu_model)) {
4156 list_cpus(stdout, &fprintf, cpu_model);
4160 if (!trace_init_backends()) {
4163 trace_init_file(trace_file);
4165 /* Open the logfile at this point and set the log mask if necessary.
4168 qemu_set_log_filename(log_file, &error_fatal);
4173 mask = qemu_str_to_log_mask(log_mask);
4175 qemu_print_log_usage(stdout);
4183 /* add configured firmware directories */
4184 dirs = g_strsplit(CONFIG_QEMU_FIRMWAREPATH, G_SEARCHPATH_SEPARATOR_S, 0);
4185 for (i = 0; dirs[i] != NULL; i++) {
4186 qemu_add_data_dir(dirs[i]);
4190 /* try to find datadir relative to the executable path */
4191 dir = os_find_datadir();
4192 qemu_add_data_dir(dir);
4195 /* add the datadir specified when building */
4196 qemu_add_data_dir(CONFIG_QEMU_DATADIR);
4198 /* -L help lists the data directories and exits. */
4199 if (list_data_dirs) {
4200 for (i = 0; i < data_dir_idx; i++) {
4201 printf("%s\n", data_dir[i]);
4206 /* machine_class: default to UP */
4207 machine_class->max_cpus = machine_class->max_cpus ?: 1;
4208 machine_class->min_cpus = machine_class->min_cpus ?: 1;
4209 machine_class->default_cpus = machine_class->default_cpus ?: 1;
4211 /* default to machine_class->default_cpus */
4212 smp_cpus = machine_class->default_cpus;
4213 max_cpus = machine_class->default_cpus;
4215 smp_parse(qemu_opts_find(qemu_find_opts("smp-opts"), NULL));
4217 /* sanity-check smp_cpus and max_cpus against machine_class */
4218 if (smp_cpus < machine_class->min_cpus) {
4219 error_report("Invalid SMP CPUs %d. The min CPUs "
4220 "supported by machine '%s' is %d", smp_cpus,
4221 machine_class->name, machine_class->min_cpus);
4224 if (max_cpus > machine_class->max_cpus) {
4225 error_report("Invalid SMP CPUs %d. The max CPUs "
4226 "supported by machine '%s' is %d", max_cpus,
4227 machine_class->name, machine_class->max_cpus);
4232 * Get the default machine options from the machine if it is not already
4233 * specified either by the configuration file or by the command line.
4235 if (machine_class->default_machine_opts) {
4236 qemu_opts_set_defaults(qemu_find_opts("machine"),
4237 machine_class->default_machine_opts, 0);
4240 qemu_opts_foreach(qemu_find_opts("device"),
4241 default_driver_check, NULL, NULL);
4242 qemu_opts_foreach(qemu_find_opts("global"),
4243 default_driver_check, NULL, NULL);
4245 if (!vga_model && !default_vga) {
4246 vga_interface_type = VGA_DEVICE;
4248 if (!has_defaults || machine_class->no_serial) {
4251 if (!has_defaults || machine_class->no_parallel) {
4252 default_parallel = 0;
4254 if (!has_defaults || !machine_class->use_virtcon) {
4255 default_virtcon = 0;
4257 if (!has_defaults || !machine_class->use_sclp) {
4260 if (!has_defaults || machine_class->no_floppy) {
4263 if (!has_defaults || machine_class->no_cdrom) {
4266 if (!has_defaults || machine_class->no_sdcard) {
4269 if (!has_defaults) {
4270 default_monitor = 0;
4275 if (is_daemonized()) {
4276 /* According to documentation and historically, -nographic redirects
4277 * serial port, parallel port and monitor to stdio, which does not work
4278 * with -daemonize. We can redirect these to null instead, but since
4279 * -nographic is legacy, let's just error out.
4280 * We disallow -nographic only if all other ports are not redirected
4281 * explicitly, to not break existing legacy setups which uses
4282 * -nographic _and_ redirects all ports explicitly - this is valid
4283 * usage, -nographic is just a no-op in this case.
4286 && (default_parallel || default_serial
4287 || default_monitor || default_virtcon)) {
4288 error_report("-nographic cannot be used with -daemonize");
4291 #ifdef CONFIG_CURSES
4292 if (display_type == DT_CURSES) {
4293 error_report("curses display cannot be used with -daemonize");
4300 if (default_parallel)
4301 add_device_config(DEV_PARALLEL, "null");
4302 if (default_serial && default_monitor) {
4303 add_device_config(DEV_SERIAL, "mon:stdio");
4304 } else if (default_virtcon && default_monitor) {
4305 add_device_config(DEV_VIRTCON, "mon:stdio");
4306 } else if (default_sclp && default_monitor) {
4307 add_device_config(DEV_SCLP, "mon:stdio");
4310 add_device_config(DEV_SERIAL, "stdio");
4311 if (default_virtcon)
4312 add_device_config(DEV_VIRTCON, "stdio");
4314 add_device_config(DEV_SCLP, "stdio");
4316 if (default_monitor)
4317 monitor_parse("stdio", "readline", false);
4321 add_device_config(DEV_SERIAL, "vc:80Cx24C");
4322 if (default_parallel)
4323 add_device_config(DEV_PARALLEL, "vc:80Cx24C");
4324 if (default_monitor)
4325 monitor_parse("vc:80Cx24C", "readline", false);
4326 if (default_virtcon)
4327 add_device_config(DEV_VIRTCON, "vc:80Cx24C");
4329 add_device_config(DEV_SCLP, "vc:80Cx24C");
4333 #if defined(CONFIG_VNC)
4334 if (!QTAILQ_EMPTY(&(qemu_find_opts("vnc")->head))) {
4338 if (display_type == DT_DEFAULT && !display_remote) {
4339 #if defined(CONFIG_GTK)
4340 display_type = DT_GTK;
4341 dpy.type = DISPLAY_TYPE_GTK;
4342 #elif defined(CONFIG_SDL)
4343 display_type = DT_SDL;
4344 dpy.type = DISPLAY_TYPE_SDL;
4345 #elif defined(CONFIG_COCOA)
4346 display_type = DT_COCOA;
4347 dpy.type = DISPLAY_TYPE_COCOA;
4348 #elif defined(CONFIG_VNC)
4349 vnc_parse("localhost:0,to=99,id=default", &error_abort);
4351 display_type = DT_NONE;
4352 dpy.type = DISPLAY_TYPE_NONE;
4356 if ((no_frame || alt_grab || ctrl_grab) && display_type != DT_SDL) {
4357 error_report("-no-frame, -alt-grab and -ctrl-grab are only valid "
4358 "for SDL, ignoring option");
4360 if (dpy.has_window_close &&
4361 (display_type != DT_GTK && display_type != DT_SDL)) {
4362 error_report("-no-quit is only valid for GTK and SDL, "
4366 if (display_type == DT_GTK) {
4367 early_gtk_display_init(&dpy);
4370 if (display_type == DT_SDL) {
4371 sdl_display_early_init(&dpy);
4374 qemu_console_early_init();
4376 if (request_opengl == 1 && display_opengl == 0) {
4377 #if defined(CONFIG_OPENGL)
4378 error_report("OpenGL is not supported by the display");
4380 error_report("OpenGL support is disabled");
4388 if (qemu_opts_foreach(qemu_find_opts("object"),
4389 user_creatable_add_opts_foreach,
4390 object_create_initial, NULL)) {
4394 if (qemu_opts_foreach(qemu_find_opts("chardev"),
4395 chardev_init_func, NULL, NULL)) {
4399 #ifdef CONFIG_VIRTFS
4400 if (qemu_opts_foreach(qemu_find_opts("fsdev"),
4401 fsdev_init_func, NULL, NULL)) {
4406 if (qemu_opts_foreach(qemu_find_opts("device"),
4407 device_help_func, NULL, NULL)) {
4411 machine_opts = qemu_get_machine_opts();
4412 if (qemu_opt_foreach(machine_opts, machine_set_property, current_machine,
4414 object_unref(OBJECT(current_machine));
4418 configure_accelerator(current_machine);
4421 * Register all the global properties, including accel properties,
4422 * machine properties, and user-specified ones.
4424 register_global_properties(current_machine);
4427 * Migration object can only be created after global properties
4428 * are applied correctly.
4430 migration_object_init();
4433 qtest_init(qtest_chrdev, qtest_log, &error_fatal);
4436 machine_opts = qemu_get_machine_opts();
4437 kernel_filename = qemu_opt_get(machine_opts, "kernel");
4438 initrd_filename = qemu_opt_get(machine_opts, "initrd");
4439 kernel_cmdline = qemu_opt_get(machine_opts, "append");
4440 bios_name = qemu_opt_get(machine_opts, "firmware");
4442 opts = qemu_opts_find(qemu_find_opts("boot-opts"), NULL);
4444 boot_order = qemu_opt_get(opts, "order");
4446 validate_bootdevices(boot_order, &error_fatal);
4449 boot_once = qemu_opt_get(opts, "once");
4451 validate_bootdevices(boot_once, &error_fatal);
4454 boot_menu = qemu_opt_get_bool(opts, "menu", boot_menu);
4455 boot_strict = qemu_opt_get_bool(opts, "strict", false);
4459 boot_order = machine_class->default_boot_order;
4462 if (!kernel_cmdline) {
4463 kernel_cmdline = "";
4464 current_machine->kernel_cmdline = (char *)kernel_cmdline;
4467 linux_boot = (kernel_filename != NULL);
4469 if (!linux_boot && *kernel_cmdline != '\0') {
4470 error_report("-append only allowed with -kernel option");
4474 if (!linux_boot && initrd_filename != NULL) {
4475 error_report("-initrd only allowed with -kernel option");
4479 if (semihosting_enabled() && !semihosting_get_argc() && kernel_filename) {
4480 /* fall back to the -kernel/-append */
4481 semihosting_arg_fallback(kernel_filename, kernel_cmdline);
4484 os_set_line_buffering();
4486 /* spice needs the timers to be initialized by this point */
4491 if (!tcg_enabled()) {
4492 error_report("-icount is not allowed with hardware virtualization");
4495 configure_icount(icount_opts, &error_abort);
4496 qemu_opts_del(icount_opts);
4499 if (tcg_enabled()) {
4500 qemu_tcg_configure(accel_opts, &error_fatal);
4504 QemuOptsList *net = qemu_find_opts("net");
4505 qemu_opts_set(net, NULL, "type", "nic", &error_abort);
4507 qemu_opts_set(net, NULL, "type", "user", &error_abort);
4513 if (net_init_clients() < 0) {
4517 if (qemu_opts_foreach(qemu_find_opts("object"),
4518 user_creatable_add_opts_foreach,
4519 object_create_delayed, NULL)) {
4523 if (tpm_init() < 0) {
4527 /* init the bluetooth world */
4528 if (foreach_device_config(DEV_BT, bt_parse))
4531 if (!xen_enabled()) {
4532 /* On 32-bit hosts, QEMU is limited by virtual address space */
4533 if (ram_size > (2047 << 20) && HOST_LONG_BITS == 32) {
4534 error_report("at most 2047 MB RAM can be simulated");
4542 /* If the currently selected machine wishes to override the units-per-bus
4543 * property of its default HBA interface type, do so now. */
4544 if (machine_class->units_per_default_bus) {
4545 override_max_devs(machine_class->block_default_type,
4546 machine_class->units_per_default_bus);
4549 /* open the virtual block devices */
4550 while (!QSIMPLEQ_EMPTY(&bdo_queue)) {
4551 BlockdevOptions_queue *bdo = QSIMPLEQ_FIRST(&bdo_queue);
4553 QSIMPLEQ_REMOVE_HEAD(&bdo_queue, entry);
4554 loc_push_restore(&bdo->loc);
4555 qmp_blockdev_add(bdo->bdo, &error_fatal);
4557 qapi_free_BlockdevOptions(bdo->bdo);
4560 if (snapshot || replay_mode != REPLAY_MODE_NONE) {
4561 qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot,
4564 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func,
4565 &machine_class->block_default_type, NULL)) {
4569 default_drive(default_cdrom, snapshot, machine_class->block_default_type, 2,
4571 default_drive(default_floppy, snapshot, IF_FLOPPY, 0, FD_OPTS);
4572 default_drive(default_sdcard, snapshot, IF_SD, 0, SD_OPTS);
4574 if (qemu_opts_foreach(qemu_find_opts("mon"),
4575 mon_init_func, NULL, NULL)) {
4579 if (foreach_device_config(DEV_SERIAL, serial_parse) < 0)
4581 if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0)
4583 if (foreach_device_config(DEV_VIRTCON, virtcon_parse) < 0)
4585 if (foreach_device_config(DEV_SCLP, sclp_parse) < 0) {
4588 if (foreach_device_config(DEV_DEBUGCON, debugcon_parse) < 0)
4591 /* If no default VGA is requested, the default is "none". */
4593 if (machine_class->default_display) {
4594 vga_model = machine_class->default_display;
4595 } else if (vga_interface_available(VGA_CIRRUS)) {
4596 vga_model = "cirrus";
4597 } else if (vga_interface_available(VGA_STD)) {
4602 select_vgahw(vga_model);
4606 i = select_watchdog(watchdog);
4608 exit (i == 1 ? 1 : 0);
4611 /* This checkpoint is required by replay to separate prior clock
4612 reading from the other reads, because timer polling functions query
4613 clock values from the log. */
4614 replay_checkpoint(CHECKPOINT_INIT);
4615 qdev_machine_init();
4617 current_machine->ram_size = ram_size;
4618 current_machine->maxram_size = maxram_size;
4619 current_machine->ram_slots = ram_slots;
4620 current_machine->boot_order = boot_order;
4621 current_machine->cpu_model = cpu_model;
4623 /* parse features once if machine provides default cpu_type */
4624 if (machine_class->default_cpu_type) {
4625 current_machine->cpu_type = machine_class->default_cpu_type;
4627 current_machine->cpu_type =
4628 cpu_parse_cpu_model(machine_class->default_cpu_type, cpu_model);
4631 parse_numa_opts(current_machine);
4633 machine_run_board_init(current_machine);
4639 if (hax_enabled()) {
4643 if (qemu_opts_foreach(qemu_find_opts("fw_cfg"),
4644 parse_fw_cfg, fw_cfg_find(), NULL) != 0) {
4648 /* init USB devices */
4649 if (machine_usb(current_machine)) {
4650 if (foreach_device_config(DEV_USB, usb_parse) < 0)
4654 /* Check if IGD GFX passthrough. */
4657 /* init generic devices */
4658 rom_set_order_override(FW_CFG_ORDER_OVERRIDE_DEVICE);
4659 if (qemu_opts_foreach(qemu_find_opts("device"),
4660 device_init_func, NULL, NULL)) {
4664 cpu_synchronize_all_post_init();
4666 rom_reset_order_override();
4669 * Create frontends for -drive if=scsi leftovers.
4670 * Normally, frontends for -drive get created by machine
4671 * initialization for onboard SCSI HBAs. However, we create a few
4672 * more ever since SCSI qdevification, but this is pretty much an
4673 * implementation accident, and deprecated.
4675 scsi_legacy_handle_cmdline();
4677 /* Did we create any drives that we failed to create a device for? */
4678 drive_check_orphaned();
4680 /* Don't warn about the default network setup that you get if
4681 * no command line -net or -netdev options are specified. There
4682 * are two cases that we would otherwise complain about:
4683 * (1) board doesn't support a NIC but the implicit "-net nic"
4685 * (2) CONFIG_SLIRP not set, in which case the implicit "-net nic"
4686 * sets up a nic that isn't connected to anything.
4689 net_check_clients();
4694 qemu_boot_set(boot_once, &error_fatal);
4695 qemu_register_reset(restore_boot_order, g_strdup(boot_order));
4698 ds = init_displaystate();
4700 /* init local displays */
4701 switch (display_type) {
4703 curses_display_init(ds, &dpy);
4706 sdl_display_init(ds, &dpy);
4709 cocoa_display_init(ds, &dpy);
4712 gtk_display_init(ds, &dpy);
4718 /* must be after terminal init, SDL library changes signal handlers */
4719 os_setup_signal_handling();
4721 /* init remote displays */
4723 qemu_opts_foreach(qemu_find_opts("vnc"),
4724 vnc_init_func, NULL, NULL);
4728 qemu_spice_display_init();
4731 #ifdef CONFIG_OPENGL_DMABUF
4732 if (display_type == DT_EGL) {
4733 egl_headless_init(&dpy);
4737 if (foreach_device_config(DEV_GDB, gdbserver_start) < 0) {
4741 qdev_machine_creation_done();
4743 /* TODO: once all bus devices are qdevified, this should be done
4744 * when bus is created by qdev.c */
4745 qemu_register_reset(qbus_reset_all_fn, sysbus_get_default());
4746 qemu_run_machine_init_done_notifiers();
4748 if (rom_check_and_register_reset() != 0) {
4749 error_report("rom check and register reset failed");
4755 /* This checkpoint is required by replay to separate prior clock
4756 reading from the other reads, because timer polling functions query
4757 clock values from the log. */
4758 replay_checkpoint(CHECKPOINT_RESET);
4759 qemu_system_reset(SHUTDOWN_CAUSE_NONE);
4760 register_global_state();
4761 if (replay_mode != REPLAY_MODE_NONE) {
4762 replay_vmstate_init();
4763 } else if (loadvm) {
4764 Error *local_err = NULL;
4765 if (load_snapshot(loadvm, &local_err) < 0) {
4766 error_report_err(local_err);
4771 qdev_prop_check_globals();
4772 if (vmstate_dump_file) {
4774 dump_vmstate_json_to_file(vmstate_dump_file);
4779 Error *local_err = NULL;
4780 qemu_start_incoming_migration(incoming, &local_err);
4782 error_reportf_err(local_err, "-incoming %s: ", incoming);
4785 } else if (autostart) {
4792 replay_disable_events();
4794 /* The ordering of the following is delicate. Stop vcpus to prevent new
4795 * I/O requests being queued by the guest. Then stop IOThreads (this
4796 * includes a drain operation and completes all request processing). At
4797 * this point emulated devices are still associated with their IOThreads
4798 * (if any) but no longer have any work to do. Only then can we close
4799 * block devices safely because we know there is no more I/O coming.
4802 iothread_stop_all();
4807 /* vhost-user must be cleaned up before chardevs. */
4813 user_creatable_cleanup();
4814 migration_object_finalize();
4815 /* TODO: unref root container, check all devices are ok */