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 "qemu-common.h"
27 #include "qemu/units.h"
28 #include "hw/qdev-properties.h"
29 #include "qapi/error.h"
30 #include "qemu-version.h"
31 #include "qemu/cutils.h"
32 #include "qemu/help_option.h"
33 #include "qemu/uuid.h"
34 #include "sysemu/reset.h"
35 #include "sysemu/runstate.h"
36 #include "sysemu/seccomp.h"
37 #include "sysemu/tcg.h"
40 #if defined(__APPLE__) || defined(main)
42 int qemu_main(int argc
, char **argv
, char **envp
);
43 int main(int argc
, char **argv
)
45 return qemu_main(argc
, argv
, NULL
);
48 #define main qemu_main
50 #endif /* CONFIG_SDL */
54 #define main qemu_main
55 #endif /* CONFIG_COCOA */
58 #include "qemu/error-report.h"
59 #include "qemu/sockets.h"
60 #include "sysemu/accel.h"
62 #include "hw/isa/isa.h"
63 #include "hw/scsi/scsi.h"
64 #include "hw/display/vga.h"
65 #include "sysemu/watchdog.h"
66 #include "hw/firmware/smbios.h"
67 #include "hw/acpi/acpi.h"
68 #include "hw/xen/xen.h"
69 #include "hw/loader.h"
70 #include "monitor/qdev.h"
72 #include "net/slirp.h"
73 #include "monitor/monitor.h"
74 #include "ui/console.h"
76 #include "sysemu/sysemu.h"
77 #include "sysemu/numa.h"
78 #include "exec/gdbstub.h"
79 #include "qemu/timer.h"
80 #include "chardev/char.h"
81 #include "qemu/bitmap.h"
83 #include "sysemu/blockdev.h"
84 #include "hw/block/block.h"
85 #include "migration/misc.h"
86 #include "migration/snapshot.h"
87 #include "migration/global_state.h"
88 #include "sysemu/tpm.h"
89 #include "sysemu/dma.h"
90 #include "hw/audio/soundhw.h"
91 #include "audio/audio.h"
92 #include "sysemu/cpus.h"
93 #include "migration/colo.h"
94 #include "migration/postcopy-ram.h"
95 #include "sysemu/kvm.h"
96 #include "sysemu/hax.h"
97 #include "qapi/qobject-input-visitor.h"
98 #include "qemu/option.h"
99 #include "qemu/config-file.h"
100 #include "qemu-options.h"
101 #include "qemu/main-loop.h"
103 #include "fsdev/qemu-fsdev.h"
105 #include "sysemu/qtest.h"
107 #include "disas/disas.h"
109 #include "trace-root.h"
110 #include "trace/control.h"
111 #include "qemu/plugin.h"
112 #include "qemu/queue.h"
113 #include "sysemu/arch_init.h"
115 #include "ui/qemu-spice.h"
116 #include "qapi/string-input-visitor.h"
117 #include "qapi/opts-visitor.h"
118 #include "qapi/clone-visitor.h"
119 #include "qom/object_interfaces.h"
120 #include "hw/semihosting/semihost.h"
121 #include "crypto/init.h"
122 #include "sysemu/replay.h"
123 #include "qapi/qapi-events-run-state.h"
124 #include "qapi/qapi-visit-block-core.h"
125 #include "qapi/qapi-visit-ui.h"
126 #include "qapi/qapi-commands-block-core.h"
127 #include "qapi/qapi-commands-run-state.h"
128 #include "qapi/qapi-commands-ui.h"
129 #include "qapi/qmp/qerror.h"
130 #include "sysemu/iothread.h"
131 #include "qemu/guest-random.h"
133 #define MAX_VIRTIO_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
;
140 const char* keyboard_layout
= NULL
;
142 const char *mem_path
= NULL
;
143 int mem_prealloc
= 0; /* force preallocation of physical target memory */
144 bool enable_mlock
= false;
145 bool enable_cpu_pm
= false;
147 NICInfo nd_table
[MAX_NICS
];
153 } rtc_base_type
= RTC_BASE_UTC
;
154 static time_t rtc_ref_start_datetime
;
155 static int rtc_realtime_clock_offset
; /* used only with QEMU_CLOCK_REALTIME */
156 static int rtc_host_datetime_offset
= -1; /* valid & used only with
158 QEMUClockType rtc_clock
;
159 int vga_interface_type
= VGA_NONE
;
160 static DisplayOptions dpy
;
161 static int num_serial_hds
;
162 static Chardev
**serial_hds
;
163 Chardev
*parallel_hds
[MAX_PARALLEL_PORTS
];
164 int win2k_install_hack
= 0;
166 int acpi_enabled
= 1;
169 static int no_reboot
;
171 int graphic_rotate
= 0;
172 const char *watchdog
;
173 QEMUOptionRom option_rom
[MAX_OPTION_ROMS
];
176 const char *qemu_name
;
179 unsigned int nb_prom_envs
= 0;
180 const char *prom_envs
[MAX_PROM_ENVS
];
183 uint8_t *boot_splash_filedata
;
184 int only_migratable
; /* turn it off unless user states otherwise */
185 bool wakeup_suspend_enabled
;
187 int icount_align_option
;
189 /* The bytes in qemu_uuid are in the order specified by RFC4122, _not_ in the
190 * little-endian "wire format" described in the SMBIOS 2.6 specification.
195 static NotifierList exit_notifiers
=
196 NOTIFIER_LIST_INITIALIZER(exit_notifiers
);
198 static NotifierList machine_init_done_notifiers
=
199 NOTIFIER_LIST_INITIALIZER(machine_init_done_notifiers
);
203 enum xen_mode xen_mode
= XEN_EMULATE
;
204 bool xen_domid_restrict
;
206 static int has_defaults
= 1;
207 static int default_serial
= 1;
208 static int default_parallel
= 1;
209 static int default_monitor
= 1;
210 static int default_floppy
= 1;
211 static int default_cdrom
= 1;
212 static int default_sdcard
= 1;
213 static int default_vga
= 1;
214 static int default_net
= 1;
220 { .driver
= "isa-serial", .flag
= &default_serial
},
221 { .driver
= "isa-parallel", .flag
= &default_parallel
},
222 { .driver
= "isa-fdc", .flag
= &default_floppy
},
223 { .driver
= "floppy", .flag
= &default_floppy
},
224 { .driver
= "ide-cd", .flag
= &default_cdrom
},
225 { .driver
= "ide-hd", .flag
= &default_cdrom
},
226 { .driver
= "ide-drive", .flag
= &default_cdrom
},
227 { .driver
= "scsi-cd", .flag
= &default_cdrom
},
228 { .driver
= "scsi-hd", .flag
= &default_cdrom
},
229 { .driver
= "VGA", .flag
= &default_vga
},
230 { .driver
= "isa-vga", .flag
= &default_vga
},
231 { .driver
= "cirrus-vga", .flag
= &default_vga
},
232 { .driver
= "isa-cirrus-vga", .flag
= &default_vga
},
233 { .driver
= "vmware-svga", .flag
= &default_vga
},
234 { .driver
= "qxl-vga", .flag
= &default_vga
},
235 { .driver
= "virtio-vga", .flag
= &default_vga
},
236 { .driver
= "ati-vga", .flag
= &default_vga
},
237 { .driver
= "vhost-user-vga", .flag
= &default_vga
},
240 static QemuOptsList qemu_rtc_opts
= {
242 .head
= QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts
.head
),
247 .type
= QEMU_OPT_STRING
,
250 .type
= QEMU_OPT_STRING
,
253 .type
= QEMU_OPT_STRING
,
255 { /* end of list */ }
259 static QemuOptsList qemu_option_rom_opts
= {
260 .name
= "option-rom",
261 .implied_opt_name
= "romfile",
262 .head
= QTAILQ_HEAD_INITIALIZER(qemu_option_rom_opts
.head
),
266 .type
= QEMU_OPT_NUMBER
,
269 .type
= QEMU_OPT_STRING
,
271 { /* end of list */ }
275 static QemuOptsList qemu_machine_opts
= {
277 .implied_opt_name
= "type",
279 .head
= QTAILQ_HEAD_INITIALIZER(qemu_machine_opts
.head
),
282 * no elements => accept any
283 * sanity checking will happen later
284 * when setting machine properties
290 static QemuOptsList qemu_accel_opts
= {
292 .implied_opt_name
= "accel",
293 .head
= QTAILQ_HEAD_INITIALIZER(qemu_accel_opts
.head
),
296 * no elements => accept any
297 * sanity checking will happen later
298 * when setting accelerator properties
304 static QemuOptsList qemu_boot_opts
= {
306 .implied_opt_name
= "order",
308 .head
= QTAILQ_HEAD_INITIALIZER(qemu_boot_opts
.head
),
312 .type
= QEMU_OPT_STRING
,
315 .type
= QEMU_OPT_STRING
,
318 .type
= QEMU_OPT_BOOL
,
321 .type
= QEMU_OPT_STRING
,
323 .name
= "splash-time",
324 .type
= QEMU_OPT_NUMBER
,
326 .name
= "reboot-timeout",
327 .type
= QEMU_OPT_NUMBER
,
330 .type
= QEMU_OPT_BOOL
,
336 static QemuOptsList qemu_add_fd_opts
= {
338 .head
= QTAILQ_HEAD_INITIALIZER(qemu_add_fd_opts
.head
),
342 .type
= QEMU_OPT_NUMBER
,
343 .help
= "file descriptor of which a duplicate is added to fd set",
346 .type
= QEMU_OPT_NUMBER
,
347 .help
= "ID of the fd set to add fd to",
350 .type
= QEMU_OPT_STRING
,
351 .help
= "free-form string used to describe fd",
353 { /* end of list */ }
357 static QemuOptsList qemu_object_opts
= {
359 .implied_opt_name
= "qom-type",
360 .head
= QTAILQ_HEAD_INITIALIZER(qemu_object_opts
.head
),
366 static QemuOptsList qemu_tpmdev_opts
= {
368 .implied_opt_name
= "type",
369 .head
= QTAILQ_HEAD_INITIALIZER(qemu_tpmdev_opts
.head
),
371 /* options are defined in the TPM backends */
372 { /* end of list */ }
376 static QemuOptsList qemu_realtime_opts
= {
378 .head
= QTAILQ_HEAD_INITIALIZER(qemu_realtime_opts
.head
),
382 .type
= QEMU_OPT_BOOL
,
384 { /* end of list */ }
388 static QemuOptsList qemu_overcommit_opts
= {
389 .name
= "overcommit",
390 .head
= QTAILQ_HEAD_INITIALIZER(qemu_overcommit_opts
.head
),
394 .type
= QEMU_OPT_BOOL
,
398 .type
= QEMU_OPT_BOOL
,
400 { /* end of list */ }
404 static QemuOptsList qemu_msg_opts
= {
406 .head
= QTAILQ_HEAD_INITIALIZER(qemu_msg_opts
.head
),
410 .type
= QEMU_OPT_BOOL
,
412 { /* end of list */ }
416 static QemuOptsList qemu_name_opts
= {
418 .implied_opt_name
= "guest",
420 .head
= QTAILQ_HEAD_INITIALIZER(qemu_name_opts
.head
),
424 .type
= QEMU_OPT_STRING
,
425 .help
= "Sets the name of the guest.\n"
426 "This name will be displayed in the SDL window caption.\n"
427 "The name will also be used for the VNC server",
430 .type
= QEMU_OPT_STRING
,
431 .help
= "Sets the name of the QEMU process, as shown in top etc",
433 .name
= "debug-threads",
434 .type
= QEMU_OPT_BOOL
,
435 .help
= "When enabled, name the individual threads; defaults off.\n"
436 "NOTE: The thread names are for debugging and not a\n"
439 { /* End of list */ }
443 static QemuOptsList qemu_mem_opts
= {
445 .implied_opt_name
= "size",
446 .head
= QTAILQ_HEAD_INITIALIZER(qemu_mem_opts
.head
),
451 .type
= QEMU_OPT_SIZE
,
455 .type
= QEMU_OPT_NUMBER
,
459 .type
= QEMU_OPT_SIZE
,
461 { /* end of list */ }
465 static QemuOptsList qemu_icount_opts
= {
467 .implied_opt_name
= "shift",
469 .head
= QTAILQ_HEAD_INITIALIZER(qemu_icount_opts
.head
),
473 .type
= QEMU_OPT_STRING
,
476 .type
= QEMU_OPT_BOOL
,
479 .type
= QEMU_OPT_BOOL
,
482 .type
= QEMU_OPT_STRING
,
485 .type
= QEMU_OPT_STRING
,
487 .name
= "rrsnapshot",
488 .type
= QEMU_OPT_STRING
,
490 { /* end of list */ }
494 static QemuOptsList qemu_fw_cfg_opts
= {
496 .implied_opt_name
= "name",
497 .head
= QTAILQ_HEAD_INITIALIZER(qemu_fw_cfg_opts
.head
),
501 .type
= QEMU_OPT_STRING
,
502 .help
= "Sets the fw_cfg name of the blob to be inserted",
505 .type
= QEMU_OPT_STRING
,
506 .help
= "Sets the name of the file from which "
507 "the fw_cfg blob will be loaded",
510 .type
= QEMU_OPT_STRING
,
511 .help
= "Sets content of the blob to be inserted from a string",
513 { /* end of list */ }
518 * Get machine options
520 * Returns: machine options (never null).
522 QemuOpts
*qemu_get_machine_opts(void)
524 return qemu_find_opts_singleton("machine");
527 const char *qemu_get_vm_name(void)
532 static void res_free(void)
534 g_free(boot_splash_filedata
);
535 boot_splash_filedata
= NULL
;
538 static int default_driver_check(void *opaque
, QemuOpts
*opts
, Error
**errp
)
540 const char *driver
= qemu_opt_get(opts
, "driver");
545 for (i
= 0; i
< ARRAY_SIZE(default_list
); i
++) {
546 if (strcmp(default_list
[i
].driver
, driver
) != 0)
548 *(default_list
[i
].flag
) = 0;
553 /***********************************************************/
556 static RunState current_run_state
= RUN_STATE_PRECONFIG
;
558 /* We use RUN_STATE__MAX but any invalid value will do */
559 static RunState vmstop_requested
= RUN_STATE__MAX
;
560 static QemuMutex vmstop_lock
;
565 } RunStateTransition
;
567 static const RunStateTransition runstate_transitions_def
[] = {
569 { RUN_STATE_PRECONFIG
, RUN_STATE_PRELAUNCH
},
570 /* Early switch to inmigrate state to allow -incoming CLI option work
571 * as it used to. TODO: delay actual switching to inmigrate state to
572 * the point after machine is built and remove this hack.
574 { RUN_STATE_PRECONFIG
, RUN_STATE_INMIGRATE
},
576 { RUN_STATE_DEBUG
, RUN_STATE_RUNNING
},
577 { RUN_STATE_DEBUG
, RUN_STATE_FINISH_MIGRATE
},
578 { RUN_STATE_DEBUG
, RUN_STATE_PRELAUNCH
},
580 { RUN_STATE_INMIGRATE
, RUN_STATE_INTERNAL_ERROR
},
581 { RUN_STATE_INMIGRATE
, RUN_STATE_IO_ERROR
},
582 { RUN_STATE_INMIGRATE
, RUN_STATE_PAUSED
},
583 { RUN_STATE_INMIGRATE
, RUN_STATE_RUNNING
},
584 { RUN_STATE_INMIGRATE
, RUN_STATE_SHUTDOWN
},
585 { RUN_STATE_INMIGRATE
, RUN_STATE_SUSPENDED
},
586 { RUN_STATE_INMIGRATE
, RUN_STATE_WATCHDOG
},
587 { RUN_STATE_INMIGRATE
, RUN_STATE_GUEST_PANICKED
},
588 { RUN_STATE_INMIGRATE
, RUN_STATE_FINISH_MIGRATE
},
589 { RUN_STATE_INMIGRATE
, RUN_STATE_PRELAUNCH
},
590 { RUN_STATE_INMIGRATE
, RUN_STATE_POSTMIGRATE
},
591 { RUN_STATE_INMIGRATE
, RUN_STATE_COLO
},
593 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_PAUSED
},
594 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_FINISH_MIGRATE
},
595 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_PRELAUNCH
},
597 { RUN_STATE_IO_ERROR
, RUN_STATE_RUNNING
},
598 { RUN_STATE_IO_ERROR
, RUN_STATE_FINISH_MIGRATE
},
599 { RUN_STATE_IO_ERROR
, RUN_STATE_PRELAUNCH
},
601 { RUN_STATE_PAUSED
, RUN_STATE_RUNNING
},
602 { RUN_STATE_PAUSED
, RUN_STATE_FINISH_MIGRATE
},
603 { RUN_STATE_PAUSED
, RUN_STATE_POSTMIGRATE
},
604 { RUN_STATE_PAUSED
, RUN_STATE_PRELAUNCH
},
605 { RUN_STATE_PAUSED
, RUN_STATE_COLO
},
607 { RUN_STATE_POSTMIGRATE
, RUN_STATE_RUNNING
},
608 { RUN_STATE_POSTMIGRATE
, RUN_STATE_FINISH_MIGRATE
},
609 { RUN_STATE_POSTMIGRATE
, RUN_STATE_PRELAUNCH
},
611 { RUN_STATE_PRELAUNCH
, RUN_STATE_RUNNING
},
612 { RUN_STATE_PRELAUNCH
, RUN_STATE_FINISH_MIGRATE
},
613 { RUN_STATE_PRELAUNCH
, RUN_STATE_INMIGRATE
},
615 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_RUNNING
},
616 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_PAUSED
},
617 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_POSTMIGRATE
},
618 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_PRELAUNCH
},
619 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_COLO
},
621 { RUN_STATE_RESTORE_VM
, RUN_STATE_RUNNING
},
622 { RUN_STATE_RESTORE_VM
, RUN_STATE_PRELAUNCH
},
624 { RUN_STATE_COLO
, RUN_STATE_RUNNING
},
626 { RUN_STATE_RUNNING
, RUN_STATE_DEBUG
},
627 { RUN_STATE_RUNNING
, RUN_STATE_INTERNAL_ERROR
},
628 { RUN_STATE_RUNNING
, RUN_STATE_IO_ERROR
},
629 { RUN_STATE_RUNNING
, RUN_STATE_PAUSED
},
630 { RUN_STATE_RUNNING
, RUN_STATE_FINISH_MIGRATE
},
631 { RUN_STATE_RUNNING
, RUN_STATE_RESTORE_VM
},
632 { RUN_STATE_RUNNING
, RUN_STATE_SAVE_VM
},
633 { RUN_STATE_RUNNING
, RUN_STATE_SHUTDOWN
},
634 { RUN_STATE_RUNNING
, RUN_STATE_WATCHDOG
},
635 { RUN_STATE_RUNNING
, RUN_STATE_GUEST_PANICKED
},
636 { RUN_STATE_RUNNING
, RUN_STATE_COLO
},
638 { RUN_STATE_SAVE_VM
, RUN_STATE_RUNNING
},
640 { RUN_STATE_SHUTDOWN
, RUN_STATE_PAUSED
},
641 { RUN_STATE_SHUTDOWN
, RUN_STATE_FINISH_MIGRATE
},
642 { RUN_STATE_SHUTDOWN
, RUN_STATE_PRELAUNCH
},
644 { RUN_STATE_DEBUG
, RUN_STATE_SUSPENDED
},
645 { RUN_STATE_RUNNING
, RUN_STATE_SUSPENDED
},
646 { RUN_STATE_SUSPENDED
, RUN_STATE_RUNNING
},
647 { RUN_STATE_SUSPENDED
, RUN_STATE_FINISH_MIGRATE
},
648 { RUN_STATE_SUSPENDED
, RUN_STATE_PRELAUNCH
},
649 { RUN_STATE_SUSPENDED
, RUN_STATE_COLO
},
651 { RUN_STATE_WATCHDOG
, RUN_STATE_RUNNING
},
652 { RUN_STATE_WATCHDOG
, RUN_STATE_FINISH_MIGRATE
},
653 { RUN_STATE_WATCHDOG
, RUN_STATE_PRELAUNCH
},
654 { RUN_STATE_WATCHDOG
, RUN_STATE_COLO
},
656 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_RUNNING
},
657 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_FINISH_MIGRATE
},
658 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_PRELAUNCH
},
660 { RUN_STATE__MAX
, RUN_STATE__MAX
},
663 static bool runstate_valid_transitions
[RUN_STATE__MAX
][RUN_STATE__MAX
];
665 bool runstate_check(RunState state
)
667 return current_run_state
== state
;
670 bool runstate_store(char *str
, size_t size
)
672 const char *state
= RunState_str(current_run_state
);
673 size_t len
= strlen(state
) + 1;
678 memcpy(str
, state
, len
);
682 static void runstate_init(void)
684 const RunStateTransition
*p
;
686 memset(&runstate_valid_transitions
, 0, sizeof(runstate_valid_transitions
));
687 for (p
= &runstate_transitions_def
[0]; p
->from
!= RUN_STATE__MAX
; p
++) {
688 runstate_valid_transitions
[p
->from
][p
->to
] = true;
691 qemu_mutex_init(&vmstop_lock
);
694 /* This function will abort() on invalid state transitions */
695 void runstate_set(RunState new_state
)
697 assert(new_state
< RUN_STATE__MAX
);
699 trace_runstate_set(current_run_state
, RunState_str(current_run_state
),
700 new_state
, RunState_str(new_state
));
702 if (current_run_state
== new_state
) {
706 if (!runstate_valid_transitions
[current_run_state
][new_state
]) {
707 error_report("invalid runstate transition: '%s' -> '%s'",
708 RunState_str(current_run_state
),
709 RunState_str(new_state
));
713 current_run_state
= new_state
;
716 int runstate_is_running(void)
718 return runstate_check(RUN_STATE_RUNNING
);
721 bool runstate_needs_reset(void)
723 return runstate_check(RUN_STATE_INTERNAL_ERROR
) ||
724 runstate_check(RUN_STATE_SHUTDOWN
);
727 StatusInfo
*qmp_query_status(Error
**errp
)
729 StatusInfo
*info
= g_malloc0(sizeof(*info
));
731 info
->running
= runstate_is_running();
732 info
->singlestep
= singlestep
;
733 info
->status
= current_run_state
;
738 bool qemu_vmstop_requested(RunState
*r
)
740 qemu_mutex_lock(&vmstop_lock
);
741 *r
= vmstop_requested
;
742 vmstop_requested
= RUN_STATE__MAX
;
743 qemu_mutex_unlock(&vmstop_lock
);
744 return *r
< RUN_STATE__MAX
;
747 void qemu_system_vmstop_request_prepare(void)
749 qemu_mutex_lock(&vmstop_lock
);
752 void qemu_system_vmstop_request(RunState state
)
754 vmstop_requested
= state
;
755 qemu_mutex_unlock(&vmstop_lock
);
759 /***********************************************************/
760 /* RTC reference time/date access */
761 static time_t qemu_ref_timedate(QEMUClockType clock
)
763 time_t value
= qemu_clock_get_ms(clock
) / 1000;
765 case QEMU_CLOCK_REALTIME
:
766 value
-= rtc_realtime_clock_offset
;
768 case QEMU_CLOCK_VIRTUAL
:
769 value
+= rtc_ref_start_datetime
;
771 case QEMU_CLOCK_HOST
:
772 if (rtc_base_type
== RTC_BASE_DATETIME
) {
773 value
-= rtc_host_datetime_offset
;
782 void qemu_get_timedate(struct tm
*tm
, int offset
)
784 time_t ti
= qemu_ref_timedate(rtc_clock
);
788 switch (rtc_base_type
) {
789 case RTC_BASE_DATETIME
:
793 case RTC_BASE_LOCALTIME
:
794 localtime_r(&ti
, tm
);
799 int qemu_timedate_diff(struct tm
*tm
)
803 switch (rtc_base_type
) {
804 case RTC_BASE_DATETIME
:
806 seconds
= mktimegm(tm
);
808 case RTC_BASE_LOCALTIME
:
811 tmp
.tm_isdst
= -1; /* use timezone to figure it out */
812 seconds
= mktime(&tmp
);
819 return seconds
- qemu_ref_timedate(QEMU_CLOCK_HOST
);
822 static void configure_rtc_base_datetime(const char *startdate
)
824 time_t rtc_start_datetime
;
827 if (sscanf(startdate
, "%d-%d-%dT%d:%d:%d", &tm
.tm_year
, &tm
.tm_mon
,
828 &tm
.tm_mday
, &tm
.tm_hour
, &tm
.tm_min
, &tm
.tm_sec
) == 6) {
830 } else if (sscanf(startdate
, "%d-%d-%d",
831 &tm
.tm_year
, &tm
.tm_mon
, &tm
.tm_mday
) == 3) {
840 rtc_start_datetime
= mktimegm(&tm
);
841 if (rtc_start_datetime
== -1) {
843 error_report("invalid datetime format");
844 error_printf("valid formats: "
845 "'2006-06-17T16:01:21' or '2006-06-17'\n");
848 rtc_host_datetime_offset
= rtc_ref_start_datetime
- rtc_start_datetime
;
849 rtc_ref_start_datetime
= rtc_start_datetime
;
852 static void configure_rtc(QemuOpts
*opts
)
857 rtc_clock
= QEMU_CLOCK_HOST
;
858 rtc_ref_start_datetime
= qemu_clock_get_ms(QEMU_CLOCK_HOST
) / 1000;
859 rtc_realtime_clock_offset
= qemu_clock_get_ms(QEMU_CLOCK_REALTIME
) / 1000;
861 value
= qemu_opt_get(opts
, "base");
863 if (!strcmp(value
, "utc")) {
864 rtc_base_type
= RTC_BASE_UTC
;
865 } else if (!strcmp(value
, "localtime")) {
866 Error
*blocker
= NULL
;
867 rtc_base_type
= RTC_BASE_LOCALTIME
;
868 error_setg(&blocker
, QERR_REPLAY_NOT_SUPPORTED
,
869 "-rtc base=localtime");
870 replay_add_blocker(blocker
);
872 rtc_base_type
= RTC_BASE_DATETIME
;
873 configure_rtc_base_datetime(value
);
876 value
= qemu_opt_get(opts
, "clock");
878 if (!strcmp(value
, "host")) {
879 rtc_clock
= QEMU_CLOCK_HOST
;
880 } else if (!strcmp(value
, "rt")) {
881 rtc_clock
= QEMU_CLOCK_REALTIME
;
882 } else if (!strcmp(value
, "vm")) {
883 rtc_clock
= QEMU_CLOCK_VIRTUAL
;
885 error_report("invalid option value '%s'", value
);
889 value
= qemu_opt_get(opts
, "driftfix");
891 if (!strcmp(value
, "slew")) {
892 object_register_sugar_prop("mc146818rtc",
895 } else if (!strcmp(value
, "none")) {
896 /* discard is default */
898 error_report("invalid option value '%s'", value
);
904 static int parse_name(void *opaque
, QemuOpts
*opts
, Error
**errp
)
906 const char *proc_name
;
908 if (qemu_opt_get(opts
, "debug-threads")) {
909 qemu_thread_naming(qemu_opt_get_bool(opts
, "debug-threads", false));
911 qemu_name
= qemu_opt_get(opts
, "guest");
913 proc_name
= qemu_opt_get(opts
, "process");
915 os_set_proc_name(proc_name
);
921 bool defaults_enabled(void)
927 static int parse_add_fd(void *opaque
, QemuOpts
*opts
, Error
**errp
)
929 int fd
, dupfd
, flags
;
931 const char *fd_opaque
= NULL
;
934 fd
= qemu_opt_get_number(opts
, "fd", -1);
935 fdset_id
= qemu_opt_get_number(opts
, "set", -1);
936 fd_opaque
= qemu_opt_get(opts
, "opaque");
939 error_setg(errp
, "fd option is required and must be non-negative");
943 if (fd
<= STDERR_FILENO
) {
944 error_setg(errp
, "fd cannot be a standard I/O stream");
949 * All fds inherited across exec() necessarily have FD_CLOEXEC
950 * clear, while qemu sets FD_CLOEXEC on all other fds used internally.
952 flags
= fcntl(fd
, F_GETFD
);
953 if (flags
== -1 || (flags
& FD_CLOEXEC
)) {
954 error_setg(errp
, "fd is not valid or already in use");
959 error_setg(errp
, "set option is required and must be non-negative");
963 #ifdef F_DUPFD_CLOEXEC
964 dupfd
= fcntl(fd
, F_DUPFD_CLOEXEC
, 0);
968 qemu_set_cloexec(dupfd
);
972 error_setg(errp
, "error duplicating fd: %s", strerror(errno
));
976 /* add the duplicate fd, and optionally the opaque string, to the fd set */
977 fdinfo
= monitor_fdset_add_fd(dupfd
, true, fdset_id
, !!fd_opaque
, fd_opaque
,
984 static int cleanup_add_fd(void *opaque
, QemuOpts
*opts
, Error
**errp
)
988 fd
= qemu_opt_get_number(opts
, "fd", -1);
995 /***********************************************************/
996 /* QEMU Block devices */
998 #define HD_OPTS "media=disk"
999 #define CDROM_OPTS "media=cdrom"
1001 #define PFLASH_OPTS ""
1005 static int drive_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1007 BlockInterfaceType
*block_default_type
= opaque
;
1009 return drive_new(opts
, *block_default_type
, errp
) == NULL
;
1012 static int drive_enable_snapshot(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1014 if (qemu_opt_get(opts
, "snapshot") == NULL
) {
1015 qemu_opt_set(opts
, "snapshot", "on", &error_abort
);
1020 static void default_drive(int enable
, int snapshot
, BlockInterfaceType type
,
1021 int index
, const char *optstr
)
1026 if (!enable
|| drive_get_by_index(type
, index
)) {
1030 opts
= drive_add(type
, index
, NULL
, optstr
);
1032 drive_enable_snapshot(NULL
, opts
, NULL
);
1035 dinfo
= drive_new(opts
, type
, &error_abort
);
1036 dinfo
->is_default
= true;
1040 typedef struct BlockdevOptionsQueueEntry
{
1041 BlockdevOptions
*bdo
;
1043 QSIMPLEQ_ENTRY(BlockdevOptionsQueueEntry
) entry
;
1044 } BlockdevOptionsQueueEntry
;
1046 typedef QSIMPLEQ_HEAD(, BlockdevOptionsQueueEntry
) BlockdevOptionsQueue
;
1048 static void configure_blockdev(BlockdevOptionsQueue
*bdo_queue
,
1049 MachineClass
*machine_class
, int snapshot
)
1052 * If the currently selected machine wishes to override the
1053 * units-per-bus property of its default HBA interface type, do so
1056 if (machine_class
->units_per_default_bus
) {
1057 override_max_devs(machine_class
->block_default_type
,
1058 machine_class
->units_per_default_bus
);
1061 /* open the virtual block devices */
1062 while (!QSIMPLEQ_EMPTY(bdo_queue
)) {
1063 BlockdevOptionsQueueEntry
*bdo
= QSIMPLEQ_FIRST(bdo_queue
);
1065 QSIMPLEQ_REMOVE_HEAD(bdo_queue
, entry
);
1066 loc_push_restore(&bdo
->loc
);
1067 qmp_blockdev_add(bdo
->bdo
, &error_fatal
);
1069 qapi_free_BlockdevOptions(bdo
->bdo
);
1073 qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot
,
1076 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func
,
1077 &machine_class
->block_default_type
, &error_fatal
)) {
1078 /* We printed help */
1082 default_drive(default_cdrom
, snapshot
, machine_class
->block_default_type
, 2,
1084 default_drive(default_floppy
, snapshot
, IF_FLOPPY
, 0, FD_OPTS
);
1085 default_drive(default_sdcard
, snapshot
, IF_SD
, 0, SD_OPTS
);
1089 static QemuOptsList qemu_smp_opts
= {
1091 .implied_opt_name
= "cpus",
1092 .merge_lists
= true,
1093 .head
= QTAILQ_HEAD_INITIALIZER(qemu_smp_opts
.head
),
1097 .type
= QEMU_OPT_NUMBER
,
1100 .type
= QEMU_OPT_NUMBER
,
1103 .type
= QEMU_OPT_NUMBER
,
1106 .type
= QEMU_OPT_NUMBER
,
1109 .type
= QEMU_OPT_NUMBER
,
1112 .type
= QEMU_OPT_NUMBER
,
1114 { /*End of list */ }
1118 static void realtime_init(void)
1121 if (os_mlock() < 0) {
1122 error_report("locking memory failed");
1129 static void configure_msg(QemuOpts
*opts
)
1131 error_with_timestamp
= qemu_opt_get_bool(opts
, "timestamp", false);
1135 /***********************************************************/
1138 static int usb_device_add(const char *devname
)
1140 USBDevice
*dev
= NULL
;
1142 if (!machine_usb(current_machine
)) {
1146 dev
= usbdevice_create(devname
);
1153 static int usb_parse(const char *cmdline
)
1156 r
= usb_device_add(cmdline
);
1158 error_report("could not add USB device '%s'", cmdline
);
1163 /***********************************************************/
1164 /* machine registration */
1166 MachineState
*current_machine
;
1168 static MachineClass
*find_machine(const char *name
, GSList
*machines
)
1172 for (el
= machines
; el
; el
= el
->next
) {
1173 MachineClass
*mc
= el
->data
;
1175 if (!strcmp(mc
->name
, name
) || !g_strcmp0(mc
->alias
, name
)) {
1183 static MachineClass
*find_default_machine(GSList
*machines
)
1187 for (el
= machines
; el
; el
= el
->next
) {
1188 MachineClass
*mc
= el
->data
;
1190 if (mc
->is_default
) {
1198 static int machine_help_func(QemuOpts
*opts
, MachineState
*machine
)
1200 ObjectProperty
*prop
;
1201 ObjectPropertyIterator iter
;
1203 if (!qemu_opt_has_help_opt(opts
)) {
1207 object_property_iter_init(&iter
, OBJECT(machine
));
1208 while ((prop
= object_property_iter_next(&iter
))) {
1213 printf("%s.%s=%s", MACHINE_GET_CLASS(machine
)->name
,
1214 prop
->name
, prop
->type
);
1215 if (prop
->description
) {
1216 printf(" (%s)\n", prop
->description
);
1225 struct VMChangeStateEntry
{
1226 VMChangeStateHandler
*cb
;
1228 QTAILQ_ENTRY(VMChangeStateEntry
) entries
;
1232 static QTAILQ_HEAD(, VMChangeStateEntry
) vm_change_state_head
;
1235 * qemu_add_vm_change_state_handler_prio:
1236 * @cb: the callback to invoke
1237 * @opaque: user data passed to the callback
1238 * @priority: low priorities execute first when the vm runs and the reverse is
1239 * true when the vm stops
1241 * Register a callback function that is invoked when the vm starts or stops
1244 * Returns: an entry to be freed using qemu_del_vm_change_state_handler()
1246 VMChangeStateEntry
*qemu_add_vm_change_state_handler_prio(
1247 VMChangeStateHandler
*cb
, void *opaque
, int priority
)
1249 VMChangeStateEntry
*e
;
1250 VMChangeStateEntry
*other
;
1252 e
= g_malloc0(sizeof(*e
));
1255 e
->priority
= priority
;
1257 /* Keep list sorted in ascending priority order */
1258 QTAILQ_FOREACH(other
, &vm_change_state_head
, entries
) {
1259 if (priority
< other
->priority
) {
1260 QTAILQ_INSERT_BEFORE(other
, e
, entries
);
1265 QTAILQ_INSERT_TAIL(&vm_change_state_head
, e
, entries
);
1269 VMChangeStateEntry
*qemu_add_vm_change_state_handler(VMChangeStateHandler
*cb
,
1272 return qemu_add_vm_change_state_handler_prio(cb
, opaque
, 0);
1275 void qemu_del_vm_change_state_handler(VMChangeStateEntry
*e
)
1277 QTAILQ_REMOVE(&vm_change_state_head
, e
, entries
);
1281 void vm_state_notify(int running
, RunState state
)
1283 VMChangeStateEntry
*e
, *next
;
1285 trace_vm_state_notify(running
, state
, RunState_str(state
));
1288 QTAILQ_FOREACH_SAFE(e
, &vm_change_state_head
, entries
, next
) {
1289 e
->cb(e
->opaque
, running
, state
);
1292 QTAILQ_FOREACH_REVERSE_SAFE(e
, &vm_change_state_head
, entries
, next
) {
1293 e
->cb(e
->opaque
, running
, state
);
1298 static ShutdownCause reset_requested
;
1299 static ShutdownCause shutdown_requested
;
1300 static int shutdown_signal
;
1301 static pid_t shutdown_pid
;
1302 static int powerdown_requested
;
1303 static int debug_requested
;
1304 static int suspend_requested
;
1305 static bool preconfig_exit_requested
= true;
1306 static WakeupReason wakeup_reason
;
1307 static NotifierList powerdown_notifiers
=
1308 NOTIFIER_LIST_INITIALIZER(powerdown_notifiers
);
1309 static NotifierList suspend_notifiers
=
1310 NOTIFIER_LIST_INITIALIZER(suspend_notifiers
);
1311 static NotifierList wakeup_notifiers
=
1312 NOTIFIER_LIST_INITIALIZER(wakeup_notifiers
);
1313 static NotifierList shutdown_notifiers
=
1314 NOTIFIER_LIST_INITIALIZER(shutdown_notifiers
);
1315 static uint32_t wakeup_reason_mask
= ~(1 << QEMU_WAKEUP_REASON_NONE
);
1317 ShutdownCause
qemu_shutdown_requested_get(void)
1319 return shutdown_requested
;
1322 ShutdownCause
qemu_reset_requested_get(void)
1324 return reset_requested
;
1327 static int qemu_shutdown_requested(void)
1329 return atomic_xchg(&shutdown_requested
, SHUTDOWN_CAUSE_NONE
);
1332 static void qemu_kill_report(void)
1334 if (!qtest_driver() && shutdown_signal
) {
1335 if (shutdown_pid
== 0) {
1336 /* This happens for eg ^C at the terminal, so it's worth
1337 * avoiding printing an odd message in that case.
1339 error_report("terminating on signal %d", shutdown_signal
);
1341 char *shutdown_cmd
= qemu_get_pid_name(shutdown_pid
);
1343 error_report("terminating on signal %d from pid " FMT_pid
" (%s)",
1344 shutdown_signal
, shutdown_pid
,
1345 shutdown_cmd
? shutdown_cmd
: "<unknown process>");
1346 g_free(shutdown_cmd
);
1348 shutdown_signal
= 0;
1352 static ShutdownCause
qemu_reset_requested(void)
1354 ShutdownCause r
= reset_requested
;
1356 if (r
&& replay_checkpoint(CHECKPOINT_RESET_REQUESTED
)) {
1357 reset_requested
= SHUTDOWN_CAUSE_NONE
;
1360 return SHUTDOWN_CAUSE_NONE
;
1363 static int qemu_suspend_requested(void)
1365 int r
= suspend_requested
;
1366 if (r
&& replay_checkpoint(CHECKPOINT_SUSPEND_REQUESTED
)) {
1367 suspend_requested
= 0;
1373 static WakeupReason
qemu_wakeup_requested(void)
1375 return wakeup_reason
;
1378 static int qemu_powerdown_requested(void)
1380 int r
= powerdown_requested
;
1381 powerdown_requested
= 0;
1385 static int qemu_debug_requested(void)
1387 int r
= debug_requested
;
1388 debug_requested
= 0;
1392 void qemu_exit_preconfig_request(void)
1394 preconfig_exit_requested
= true;
1398 * Reset the VM. Issue an event unless @reason is SHUTDOWN_CAUSE_NONE.
1400 void qemu_system_reset(ShutdownCause reason
)
1404 mc
= current_machine
? MACHINE_GET_CLASS(current_machine
) : NULL
;
1406 cpu_synchronize_all_states();
1408 if (mc
&& mc
->reset
) {
1409 mc
->reset(current_machine
);
1411 qemu_devices_reset();
1413 if (reason
&& reason
!= SHUTDOWN_CAUSE_SUBSYSTEM_RESET
) {
1414 qapi_event_send_reset(shutdown_caused_by_guest(reason
), reason
);
1416 cpu_synchronize_all_post_reset();
1420 * Wake the VM after suspend.
1422 static void qemu_system_wakeup(void)
1426 mc
= current_machine
? MACHINE_GET_CLASS(current_machine
) : NULL
;
1428 if (mc
&& mc
->wakeup
) {
1429 mc
->wakeup(current_machine
);
1433 void qemu_system_guest_panicked(GuestPanicInformation
*info
)
1435 qemu_log_mask(LOG_GUEST_ERROR
, "Guest crashed");
1438 current_cpu
->crash_occurred
= true;
1440 qapi_event_send_guest_panicked(GUEST_PANIC_ACTION_PAUSE
,
1442 vm_stop(RUN_STATE_GUEST_PANICKED
);
1444 qapi_event_send_guest_panicked(GUEST_PANIC_ACTION_POWEROFF
,
1446 qemu_system_shutdown_request(SHUTDOWN_CAUSE_GUEST_PANIC
);
1450 if (info
->type
== GUEST_PANIC_INFORMATION_TYPE_HYPER_V
) {
1451 qemu_log_mask(LOG_GUEST_ERROR
, "\nHV crash parameters: (%#"PRIx64
1452 " %#"PRIx64
" %#"PRIx64
" %#"PRIx64
" %#"PRIx64
")\n",
1453 info
->u
.hyper_v
.arg1
,
1454 info
->u
.hyper_v
.arg2
,
1455 info
->u
.hyper_v
.arg3
,
1456 info
->u
.hyper_v
.arg4
,
1457 info
->u
.hyper_v
.arg5
);
1458 } else if (info
->type
== GUEST_PANIC_INFORMATION_TYPE_S390
) {
1459 qemu_log_mask(LOG_GUEST_ERROR
, " on cpu %d: %s\n"
1460 "PSW: 0x%016" PRIx64
" 0x%016" PRIx64
"\n",
1462 S390CrashReason_str(info
->u
.s390
.reason
),
1463 info
->u
.s390
.psw_mask
,
1464 info
->u
.s390
.psw_addr
);
1466 qapi_free_GuestPanicInformation(info
);
1470 void qemu_system_guest_crashloaded(GuestPanicInformation
*info
)
1472 qemu_log_mask(LOG_GUEST_ERROR
, "Guest crash loaded");
1474 qapi_event_send_guest_crashloaded(GUEST_PANIC_ACTION_RUN
,
1478 qapi_free_GuestPanicInformation(info
);
1482 void qemu_system_reset_request(ShutdownCause reason
)
1484 if (no_reboot
&& reason
!= SHUTDOWN_CAUSE_SUBSYSTEM_RESET
) {
1485 shutdown_requested
= reason
;
1487 reset_requested
= reason
;
1490 qemu_notify_event();
1493 static void qemu_system_suspend(void)
1496 notifier_list_notify(&suspend_notifiers
, NULL
);
1497 runstate_set(RUN_STATE_SUSPENDED
);
1498 qapi_event_send_suspend();
1501 void qemu_system_suspend_request(void)
1503 if (runstate_check(RUN_STATE_SUSPENDED
)) {
1506 suspend_requested
= 1;
1508 qemu_notify_event();
1511 void qemu_register_suspend_notifier(Notifier
*notifier
)
1513 notifier_list_add(&suspend_notifiers
, notifier
);
1516 void qemu_system_wakeup_request(WakeupReason reason
, Error
**errp
)
1518 trace_system_wakeup_request(reason
);
1520 if (!runstate_check(RUN_STATE_SUSPENDED
)) {
1522 "Unable to wake up: guest is not in suspended state");
1525 if (!(wakeup_reason_mask
& (1 << reason
))) {
1528 runstate_set(RUN_STATE_RUNNING
);
1529 wakeup_reason
= reason
;
1530 qemu_notify_event();
1533 void qemu_system_wakeup_enable(WakeupReason reason
, bool enabled
)
1536 wakeup_reason_mask
|= (1 << reason
);
1538 wakeup_reason_mask
&= ~(1 << reason
);
1542 void qemu_register_wakeup_notifier(Notifier
*notifier
)
1544 notifier_list_add(&wakeup_notifiers
, notifier
);
1547 void qemu_register_wakeup_support(void)
1549 wakeup_suspend_enabled
= true;
1552 bool qemu_wakeup_suspend_enabled(void)
1554 return wakeup_suspend_enabled
;
1557 void qemu_system_killed(int signal
, pid_t pid
)
1559 shutdown_signal
= signal
;
1563 /* Cannot call qemu_system_shutdown_request directly because
1564 * we are in a signal handler.
1566 shutdown_requested
= SHUTDOWN_CAUSE_HOST_SIGNAL
;
1567 qemu_notify_event();
1570 void qemu_system_shutdown_request(ShutdownCause reason
)
1572 trace_qemu_system_shutdown_request(reason
);
1573 replay_shutdown_request(reason
);
1574 shutdown_requested
= reason
;
1575 qemu_notify_event();
1578 static void qemu_system_powerdown(void)
1580 qapi_event_send_powerdown();
1581 notifier_list_notify(&powerdown_notifiers
, NULL
);
1584 static void qemu_system_shutdown(ShutdownCause cause
)
1586 qapi_event_send_shutdown(shutdown_caused_by_guest(cause
), cause
);
1587 notifier_list_notify(&shutdown_notifiers
, &cause
);
1590 void qemu_system_powerdown_request(void)
1592 trace_qemu_system_powerdown_request();
1593 powerdown_requested
= 1;
1594 qemu_notify_event();
1597 void qemu_register_powerdown_notifier(Notifier
*notifier
)
1599 notifier_list_add(&powerdown_notifiers
, notifier
);
1602 void qemu_register_shutdown_notifier(Notifier
*notifier
)
1604 notifier_list_add(&shutdown_notifiers
, notifier
);
1607 void qemu_system_debug_request(void)
1609 debug_requested
= 1;
1610 qemu_notify_event();
1613 static bool main_loop_should_exit(void)
1616 ShutdownCause request
;
1618 if (preconfig_exit_requested
) {
1619 if (runstate_check(RUN_STATE_PRECONFIG
)) {
1620 runstate_set(RUN_STATE_PRELAUNCH
);
1622 preconfig_exit_requested
= false;
1625 if (qemu_debug_requested()) {
1626 vm_stop(RUN_STATE_DEBUG
);
1628 if (qemu_suspend_requested()) {
1629 qemu_system_suspend();
1631 request
= qemu_shutdown_requested();
1634 qemu_system_shutdown(request
);
1636 vm_stop(RUN_STATE_SHUTDOWN
);
1641 request
= qemu_reset_requested();
1644 qemu_system_reset(request
);
1647 * runstate can change in pause_all_vcpus()
1648 * as iothread mutex is unlocked
1650 if (!runstate_check(RUN_STATE_RUNNING
) &&
1651 !runstate_check(RUN_STATE_INMIGRATE
) &&
1652 !runstate_check(RUN_STATE_FINISH_MIGRATE
)) {
1653 runstate_set(RUN_STATE_PRELAUNCH
);
1656 if (qemu_wakeup_requested()) {
1658 qemu_system_wakeup();
1659 notifier_list_notify(&wakeup_notifiers
, &wakeup_reason
);
1660 wakeup_reason
= QEMU_WAKEUP_REASON_NONE
;
1662 qapi_event_send_wakeup();
1664 if (qemu_powerdown_requested()) {
1665 qemu_system_powerdown();
1667 if (qemu_vmstop_requested(&r
)) {
1673 static void main_loop(void)
1675 #ifdef CONFIG_PROFILER
1678 while (!main_loop_should_exit()) {
1679 #ifdef CONFIG_PROFILER
1680 ti
= profile_getclock();
1682 main_loop_wait(false);
1683 #ifdef CONFIG_PROFILER
1684 dev_time
+= profile_getclock() - ti
;
1689 static void version(void)
1691 printf("QEMU emulator version " QEMU_FULL_VERSION
"\n"
1692 QEMU_COPYRIGHT
"\n");
1695 static void help(int exitcode
)
1698 printf("usage: %s [options] [disk_image]\n\n"
1699 "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
1700 error_get_progname());
1702 #define QEMU_OPTIONS_GENERATE_HELP
1703 #include "qemu-options-wrapper.h"
1705 printf("\nDuring emulation, the following keys are useful:\n"
1706 "ctrl-alt-f toggle full screen\n"
1707 "ctrl-alt-n switch to virtual console 'n'\n"
1708 "ctrl-alt toggle mouse and keyboard grab\n"
1710 "When using -nographic, press 'ctrl-a h' to get some help.\n"
1712 QEMU_HELP_BOTTOM
"\n");
1717 #define HAS_ARG 0x0001
1719 typedef struct QEMUOption
{
1726 static const QEMUOption qemu_options
[] = {
1727 { "h", 0, QEMU_OPTION_h
, QEMU_ARCH_ALL
},
1728 #define QEMU_OPTIONS_GENERATE_OPTIONS
1729 #include "qemu-options-wrapper.h"
1733 typedef struct VGAInterfaceInfo
{
1734 const char *opt_name
; /* option name */
1735 const char *name
; /* human-readable name */
1736 /* Class names indicating that support is available.
1737 * If no class is specified, the interface is always available */
1738 const char *class_names
[2];
1741 static const VGAInterfaceInfo vga_interfaces
[VGA_TYPE_MAX
] = {
1744 .name
= "no graphic card",
1748 .name
= "standard VGA",
1749 .class_names
= { "VGA", "isa-vga" },
1752 .opt_name
= "cirrus",
1753 .name
= "Cirrus VGA",
1754 .class_names
= { "cirrus-vga", "isa-cirrus-vga" },
1757 .opt_name
= "vmware",
1758 .name
= "VMWare SVGA",
1759 .class_names
= { "vmware-svga" },
1762 .opt_name
= "virtio",
1763 .name
= "Virtio VGA",
1764 .class_names
= { "virtio-vga" },
1769 .class_names
= { "qxl-vga" },
1773 .name
= "TCX framebuffer",
1774 .class_names
= { "SUNW,tcx" },
1778 .name
= "CG3 framebuffer",
1779 .class_names
= { "cgthree" },
1782 .opt_name
= "xenfb",
1783 .name
= "Xen paravirtualized framebuffer",
1787 static bool vga_interface_available(VGAInterfaceType t
)
1789 const VGAInterfaceInfo
*ti
= &vga_interfaces
[t
];
1791 assert(t
< VGA_TYPE_MAX
);
1792 return !ti
->class_names
[0] ||
1793 object_class_by_name(ti
->class_names
[0]) ||
1794 object_class_by_name(ti
->class_names
[1]);
1798 get_default_vga_model(const MachineClass
*machine_class
)
1800 if (machine_class
->default_display
) {
1801 return machine_class
->default_display
;
1802 } else if (vga_interface_available(VGA_CIRRUS
)) {
1804 } else if (vga_interface_available(VGA_STD
)) {
1811 static void select_vgahw(const MachineClass
*machine_class
, const char *p
)
1816 if (g_str_equal(p
, "help")) {
1817 const char *def
= get_default_vga_model(machine_class
);
1819 for (t
= 0; t
< VGA_TYPE_MAX
; t
++) {
1820 const VGAInterfaceInfo
*ti
= &vga_interfaces
[t
];
1822 if (vga_interface_available(t
) && ti
->opt_name
) {
1823 printf("%-20s %s%s\n", ti
->opt_name
, ti
->name
?: "",
1824 g_str_equal(ti
->opt_name
, def
) ? " (default)" : "");
1830 assert(vga_interface_type
== VGA_NONE
);
1831 for (t
= 0; t
< VGA_TYPE_MAX
; t
++) {
1832 const VGAInterfaceInfo
*ti
= &vga_interfaces
[t
];
1833 if (ti
->opt_name
&& strstart(p
, ti
->opt_name
, &opts
)) {
1834 if (!vga_interface_available(t
)) {
1835 error_report("%s not available", ti
->name
);
1838 vga_interface_type
= t
;
1842 if (t
== VGA_TYPE_MAX
) {
1844 error_report("unknown vga type: %s", p
);
1848 const char *nextopt
;
1850 if (strstart(opts
, ",retrace=", &nextopt
)) {
1852 if (strstart(opts
, "dumb", &nextopt
))
1853 vga_retrace_method
= VGA_RETRACE_DUMB
;
1854 else if (strstart(opts
, "precise", &nextopt
))
1855 vga_retrace_method
= VGA_RETRACE_PRECISE
;
1856 else goto invalid_vga
;
1857 } else goto invalid_vga
;
1862 static void parse_display_qapi(const char *optarg
)
1864 DisplayOptions
*opts
;
1867 v
= qobject_input_visitor_new_str(optarg
, "type", &error_fatal
);
1869 visit_type_DisplayOptions(v
, NULL
, &opts
, &error_fatal
);
1870 QAPI_CLONE_MEMBERS(DisplayOptions
, &dpy
, opts
);
1872 qapi_free_DisplayOptions(opts
);
1876 DisplayOptions
*qmp_query_display_options(Error
**errp
)
1878 return QAPI_CLONE(DisplayOptions
, &dpy
);
1881 static void parse_display(const char *p
)
1885 if (is_help_option(p
)) {
1886 qemu_display_help();
1890 if (strstart(p
, "sdl", &opts
)) {
1892 * sdl DisplayType needs hand-crafted parser instead of
1893 * parse_display_qapi() due to some options not in
1894 * DisplayOptions, specifically:
1896 * Already deprecated.
1897 * - ctrl_grab + alt_grab
1898 * Not clear yet what happens to them long-term. Should
1899 * replaced by something better or deprecated and dropped.
1901 dpy
.type
= DISPLAY_TYPE_SDL
;
1903 const char *nextopt
;
1905 if (strstart(opts
, ",alt_grab=", &nextopt
)) {
1907 if (strstart(opts
, "on", &nextopt
)) {
1909 } else if (strstart(opts
, "off", &nextopt
)) {
1912 goto invalid_sdl_args
;
1914 } else if (strstart(opts
, ",ctrl_grab=", &nextopt
)) {
1916 if (strstart(opts
, "on", &nextopt
)) {
1918 } else if (strstart(opts
, "off", &nextopt
)) {
1921 goto invalid_sdl_args
;
1923 } else if (strstart(opts
, ",window_close=", &nextopt
)) {
1925 dpy
.has_window_close
= true;
1926 if (strstart(opts
, "on", &nextopt
)) {
1927 dpy
.window_close
= true;
1928 } else if (strstart(opts
, "off", &nextopt
)) {
1929 dpy
.window_close
= false;
1931 goto invalid_sdl_args
;
1933 } else if (strstart(opts
, ",show-cursor=", &nextopt
)) {
1935 dpy
.has_show_cursor
= true;
1936 if (strstart(opts
, "on", &nextopt
)) {
1937 dpy
.show_cursor
= true;
1938 } else if (strstart(opts
, "off", &nextopt
)) {
1939 dpy
.show_cursor
= false;
1941 goto invalid_sdl_args
;
1943 } else if (strstart(opts
, ",gl=", &nextopt
)) {
1946 if (strstart(opts
, "on", &nextopt
)) {
1947 dpy
.gl
= DISPLAYGL_MODE_ON
;
1948 } else if (strstart(opts
, "core", &nextopt
)) {
1949 dpy
.gl
= DISPLAYGL_MODE_CORE
;
1950 } else if (strstart(opts
, "es", &nextopt
)) {
1951 dpy
.gl
= DISPLAYGL_MODE_ES
;
1952 } else if (strstart(opts
, "off", &nextopt
)) {
1953 dpy
.gl
= DISPLAYGL_MODE_OFF
;
1955 goto invalid_sdl_args
;
1959 error_report("invalid SDL option string");
1964 } else if (strstart(p
, "vnc", &opts
)) {
1966 * vnc isn't a (local) DisplayType but a protocol for remote
1970 vnc_parse(opts
+ 1, &error_fatal
);
1972 error_report("VNC requires a display argument vnc=<display>");
1976 parse_display_qapi(p
);
1980 char *qemu_find_file(int type
, const char *name
)
1986 /* Try the name as a straight path first */
1987 if (access(name
, R_OK
) == 0) {
1988 trace_load_file(name
, name
);
1989 return g_strdup(name
);
1993 case QEMU_FILE_TYPE_BIOS
:
1996 case QEMU_FILE_TYPE_KEYMAP
:
1997 subdir
= "keymaps/";
2003 for (i
= 0; i
< data_dir_idx
; i
++) {
2004 buf
= g_strdup_printf("%s/%s%s", data_dir
[i
], subdir
, name
);
2005 if (access(buf
, R_OK
) == 0) {
2006 trace_load_file(name
, buf
);
2014 static void qemu_add_data_dir(const char *path
)
2021 if (data_dir_idx
== ARRAY_SIZE(data_dir
)) {
2024 for (i
= 0; i
< data_dir_idx
; i
++) {
2025 if (strcmp(data_dir
[i
], path
) == 0) {
2026 return; /* duplicate */
2029 data_dir
[data_dir_idx
++] = g_strdup(path
);
2032 static inline bool nonempty_str(const char *str
)
2037 static int parse_fw_cfg(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2041 const char *name
, *file
, *str
;
2042 FWCfgState
*fw_cfg
= (FWCfgState
*) opaque
;
2044 if (fw_cfg
== NULL
) {
2045 error_setg(errp
, "fw_cfg device not available");
2048 name
= qemu_opt_get(opts
, "name");
2049 file
= qemu_opt_get(opts
, "file");
2050 str
= qemu_opt_get(opts
, "string");
2052 /* we need name and either a file or the content string */
2053 if (!(nonempty_str(name
) && (nonempty_str(file
) || nonempty_str(str
)))) {
2054 error_setg(errp
, "invalid argument(s)");
2057 if (nonempty_str(file
) && nonempty_str(str
)) {
2058 error_setg(errp
, "file and string are mutually exclusive");
2061 if (strlen(name
) > FW_CFG_MAX_FILE_PATH
- 1) {
2062 error_setg(errp
, "name too long (max. %d char)",
2063 FW_CFG_MAX_FILE_PATH
- 1);
2066 if (strncmp(name
, "opt/", 4) != 0) {
2067 warn_report("externally provided fw_cfg item names "
2068 "should be prefixed with \"opt/\"");
2070 if (nonempty_str(str
)) {
2071 size
= strlen(str
); /* NUL terminator NOT included in fw_cfg blob */
2072 buf
= g_memdup(str
, size
);
2075 if (!g_file_get_contents(file
, &buf
, &size
, &err
)) {
2076 error_setg(errp
, "can't load %s: %s", file
, err
->message
);
2081 /* For legacy, keep user files in a specific global order. */
2082 fw_cfg_set_order_override(fw_cfg
, FW_CFG_ORDER_OVERRIDE_USER
);
2083 fw_cfg_add_file(fw_cfg
, name
, buf
, size
);
2084 fw_cfg_reset_order_override(fw_cfg
);
2088 static int device_help_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2090 return qdev_device_help(opts
);
2093 static int device_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2097 dev
= qdev_device_add(opts
, errp
);
2098 if (!dev
&& *errp
) {
2099 error_report_err(*errp
);
2102 object_unref(OBJECT(dev
));
2107 static int chardev_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2109 Error
*local_err
= NULL
;
2111 if (!qemu_chr_new_from_opts(opts
, NULL
, &local_err
)) {
2113 error_propagate(errp
, local_err
);
2121 #ifdef CONFIG_VIRTFS
2122 static int fsdev_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2124 return qemu_fsdev_add(opts
, errp
);
2128 static int mon_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2130 return monitor_init_opts(opts
, errp
);
2133 static void monitor_parse(const char *optarg
, const char *mode
, bool pretty
)
2135 static int monitor_device_index
= 0;
2140 if (strstart(optarg
, "chardev:", &p
)) {
2141 snprintf(label
, sizeof(label
), "%s", p
);
2143 snprintf(label
, sizeof(label
), "compat_monitor%d",
2144 monitor_device_index
);
2145 opts
= qemu_chr_parse_compat(label
, optarg
, true);
2147 error_report("parse error: %s", optarg
);
2152 opts
= qemu_opts_create(qemu_find_opts("mon"), label
, 1, &error_fatal
);
2153 qemu_opt_set(opts
, "mode", mode
, &error_abort
);
2154 qemu_opt_set(opts
, "chardev", label
, &error_abort
);
2155 if (!strcmp(mode
, "control")) {
2156 qemu_opt_set_bool(opts
, "pretty", pretty
, &error_abort
);
2158 assert(pretty
== false);
2160 monitor_device_index
++;
2163 struct device_config
{
2165 DEV_USB
, /* -usbdevice */
2166 DEV_SERIAL
, /* -serial */
2167 DEV_PARALLEL
, /* -parallel */
2168 DEV_DEBUGCON
, /* -debugcon */
2169 DEV_GDB
, /* -gdb, -s */
2170 DEV_SCLP
, /* s390 sclp */
2172 const char *cmdline
;
2174 QTAILQ_ENTRY(device_config
) next
;
2177 static QTAILQ_HEAD(, device_config
) device_configs
=
2178 QTAILQ_HEAD_INITIALIZER(device_configs
);
2180 static void add_device_config(int type
, const char *cmdline
)
2182 struct device_config
*conf
;
2184 conf
= g_malloc0(sizeof(*conf
));
2186 conf
->cmdline
= cmdline
;
2187 loc_save(&conf
->loc
);
2188 QTAILQ_INSERT_TAIL(&device_configs
, conf
, next
);
2191 static int foreach_device_config(int type
, int (*func
)(const char *cmdline
))
2193 struct device_config
*conf
;
2196 QTAILQ_FOREACH(conf
, &device_configs
, next
) {
2197 if (conf
->type
!= type
)
2199 loc_push_restore(&conf
->loc
);
2200 rc
= func(conf
->cmdline
);
2201 loc_pop(&conf
->loc
);
2209 static int serial_parse(const char *devname
)
2211 int index
= num_serial_hds
;
2214 if (strcmp(devname
, "none") == 0)
2216 snprintf(label
, sizeof(label
), "serial%d", index
);
2217 serial_hds
= g_renew(Chardev
*, serial_hds
, index
+ 1);
2219 serial_hds
[index
] = qemu_chr_new_mux_mon(label
, devname
, NULL
);
2220 if (!serial_hds
[index
]) {
2221 error_report("could not connect serial device"
2222 " to character backend '%s'", devname
);
2229 Chardev
*serial_hd(int i
)
2232 if (i
< num_serial_hds
) {
2233 return serial_hds
[i
];
2238 int serial_max_hds(void)
2240 return num_serial_hds
;
2243 static int parallel_parse(const char *devname
)
2245 static int index
= 0;
2248 if (strcmp(devname
, "none") == 0)
2250 if (index
== MAX_PARALLEL_PORTS
) {
2251 error_report("too many parallel ports");
2254 snprintf(label
, sizeof(label
), "parallel%d", index
);
2255 parallel_hds
[index
] = qemu_chr_new_mux_mon(label
, devname
, NULL
);
2256 if (!parallel_hds
[index
]) {
2257 error_report("could not connect parallel device"
2258 " to character backend '%s'", devname
);
2265 static int debugcon_parse(const char *devname
)
2269 if (!qemu_chr_new_mux_mon("debugcon", devname
, NULL
)) {
2270 error_report("invalid character backend '%s'", devname
);
2273 opts
= qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL
);
2275 error_report("already have a debugcon device");
2278 qemu_opt_set(opts
, "driver", "isa-debugcon", &error_abort
);
2279 qemu_opt_set(opts
, "chardev", "debugcon", &error_abort
);
2283 static gint
machine_class_cmp(gconstpointer a
, gconstpointer b
)
2285 const MachineClass
*mc1
= a
, *mc2
= b
;
2288 if (mc1
->family
== NULL
) {
2289 if (mc2
->family
== NULL
) {
2290 /* Compare standalone machine types against each other; they sort
2291 * in increasing order.
2293 return strcmp(object_class_get_name(OBJECT_CLASS(mc1
)),
2294 object_class_get_name(OBJECT_CLASS(mc2
)));
2297 /* Standalone machine types sort after families. */
2301 if (mc2
->family
== NULL
) {
2302 /* Families sort before standalone machine types. */
2306 /* Families sort between each other alphabetically increasingly. */
2307 res
= strcmp(mc1
->family
, mc2
->family
);
2312 /* Within the same family, machine types sort in decreasing order. */
2313 return strcmp(object_class_get_name(OBJECT_CLASS(mc2
)),
2314 object_class_get_name(OBJECT_CLASS(mc1
)));
2317 static MachineClass
*machine_parse(const char *name
, GSList
*machines
)
2322 if (is_help_option(name
)) {
2323 printf("Supported machines are:\n");
2324 machines
= g_slist_sort(machines
, machine_class_cmp
);
2325 for (el
= machines
; el
; el
= el
->next
) {
2326 MachineClass
*mc
= el
->data
;
2328 printf("%-20s %s (alias of %s)\n", mc
->alias
, mc
->desc
, mc
->name
);
2330 printf("%-20s %s%s%s\n", mc
->name
, mc
->desc
,
2331 mc
->is_default
? " (default)" : "",
2332 mc
->deprecation_reason
? " (deprecated)" : "");
2337 mc
= find_machine(name
, machines
);
2339 error_report("unsupported machine type");
2340 error_printf("Use -machine help to list supported machines\n");
2346 void qemu_add_exit_notifier(Notifier
*notify
)
2348 notifier_list_add(&exit_notifiers
, notify
);
2351 void qemu_remove_exit_notifier(Notifier
*notify
)
2353 notifier_remove(notify
);
2356 static void qemu_run_exit_notifiers(void)
2358 notifier_list_notify(&exit_notifiers
, NULL
);
2361 static const char *pid_file
;
2362 static Notifier qemu_unlink_pidfile_notifier
;
2364 static void qemu_unlink_pidfile(Notifier
*n
, void *data
)
2371 bool machine_init_done
;
2373 void qemu_add_machine_init_done_notifier(Notifier
*notify
)
2375 notifier_list_add(&machine_init_done_notifiers
, notify
);
2376 if (machine_init_done
) {
2377 notify
->notify(notify
, NULL
);
2381 void qemu_remove_machine_init_done_notifier(Notifier
*notify
)
2383 notifier_remove(notify
);
2386 static void qemu_run_machine_init_done_notifiers(void)
2388 machine_init_done
= true;
2389 notifier_list_notify(&machine_init_done_notifiers
, NULL
);
2392 static const QEMUOption
*lookup_opt(int argc
, char **argv
,
2393 const char **poptarg
, int *poptind
)
2395 const QEMUOption
*popt
;
2396 int optind
= *poptind
;
2397 char *r
= argv
[optind
];
2400 loc_set_cmdline(argv
, optind
, 1);
2402 /* Treat --foo the same as -foo. */
2405 popt
= qemu_options
;
2408 error_report("invalid option");
2411 if (!strcmp(popt
->name
, r
+ 1))
2415 if (popt
->flags
& HAS_ARG
) {
2416 if (optind
>= argc
) {
2417 error_report("requires an argument");
2420 optarg
= argv
[optind
++];
2421 loc_set_cmdline(argv
, optind
- 2, 2);
2432 static MachineClass
*select_machine(void)
2434 GSList
*machines
= object_class_get_list(TYPE_MACHINE
, false);
2435 MachineClass
*machine_class
= find_default_machine(machines
);
2440 loc_push_none(&loc
);
2442 opts
= qemu_get_machine_opts();
2443 qemu_opts_loc_restore(opts
);
2445 optarg
= qemu_opt_get(opts
, "type");
2447 machine_class
= machine_parse(optarg
, machines
);
2450 if (!machine_class
) {
2451 error_report("No machine specified, and there is no default");
2452 error_printf("Use -machine help to list supported machines\n");
2457 g_slist_free(machines
);
2458 return machine_class
;
2461 static int object_parse_property_opt(Object
*obj
,
2462 const char *name
, const char *value
,
2463 const char *skip
, Error
**errp
)
2465 Error
*local_err
= NULL
;
2467 if (g_str_equal(name
, skip
)) {
2471 object_property_parse(obj
, value
, name
, &local_err
);
2474 error_propagate(errp
, local_err
);
2481 static int machine_set_property(void *opaque
,
2482 const char *name
, const char *value
,
2485 g_autofree
char *qom_name
= g_strdup(name
);
2488 for (p
= qom_name
; *p
; p
++) {
2494 /* Legacy options do not correspond to MachineState properties. */
2495 if (g_str_equal(qom_name
, "accel")) {
2498 if (g_str_equal(qom_name
, "igd-passthru")) {
2499 object_register_sugar_prop(ACCEL_CLASS_NAME("xen"), qom_name
, value
);
2502 if (g_str_equal(qom_name
, "kvm-shadow-mem") ||
2503 g_str_equal(qom_name
, "kernel-irqchip")) {
2504 object_register_sugar_prop(ACCEL_CLASS_NAME("kvm"), qom_name
, value
);
2508 return object_parse_property_opt(opaque
, name
, value
, "type", errp
);
2512 * Initial object creation happens before all other
2513 * QEMU data types are created. The majority of objects
2514 * can be created at this point. The rng-egd object
2515 * cannot be created here, as it depends on the chardev
2518 static bool object_create_initial(const char *type
, QemuOpts
*opts
)
2520 if (user_creatable_print_help(type
, opts
)) {
2525 * Objects should not be made "delayed" without a reason. If you
2526 * add one, state the reason in a comment!
2529 /* Reason: rng-egd property "chardev" */
2530 if (g_str_equal(type
, "rng-egd")) {
2534 #if defined(CONFIG_VHOST_USER) && defined(CONFIG_LINUX)
2535 /* Reason: cryptodev-vhost-user property "chardev" */
2536 if (g_str_equal(type
, "cryptodev-vhost-user")) {
2542 * Reason: filter-* property "netdev" etc.
2544 if (g_str_equal(type
, "filter-buffer") ||
2545 g_str_equal(type
, "filter-dump") ||
2546 g_str_equal(type
, "filter-mirror") ||
2547 g_str_equal(type
, "filter-redirector") ||
2548 g_str_equal(type
, "colo-compare") ||
2549 g_str_equal(type
, "filter-rewriter") ||
2550 g_str_equal(type
, "filter-replay")) {
2554 /* Memory allocation by backends needs to be done
2555 * after configure_accelerator() (due to the tcg_enabled()
2556 * checks at memory_region_init_*()).
2558 * Also, allocation of large amounts of memory may delay
2559 * chardev initialization for too long, and trigger timeouts
2560 * on software that waits for a monitor socket to be created
2563 if (g_str_has_prefix(type
, "memory-backend-")) {
2572 * The remainder of object creation happens after the
2573 * creation of chardev, fsdev, net clients and device data types.
2575 static bool object_create_delayed(const char *type
, QemuOpts
*opts
)
2577 return !object_create_initial(type
, opts
);
2581 static void set_memory_options(uint64_t *ram_slots
, ram_addr_t
*maxram_size
,
2585 const char *mem_str
;
2586 const ram_addr_t default_ram_size
= mc
->default_ram_size
;
2587 QemuOpts
*opts
= qemu_find_opts_singleton("memory");
2590 loc_push_none(&loc
);
2591 qemu_opts_loc_restore(opts
);
2594 mem_str
= qemu_opt_get(opts
, "size");
2597 error_report("missing 'size' option value");
2601 sz
= qemu_opt_get_size(opts
, "size", ram_size
);
2603 /* Fix up legacy suffix-less format */
2604 if (g_ascii_isdigit(mem_str
[strlen(mem_str
) - 1])) {
2605 uint64_t overflow_check
= sz
;
2608 if (sz
/ MiB
!= overflow_check
) {
2609 error_report("too large 'size' option value");
2615 /* backward compatibility behaviour for case "-m 0" */
2617 sz
= default_ram_size
;
2620 sz
= QEMU_ALIGN_UP(sz
, 8192);
2622 if (ram_size
!= sz
) {
2623 error_report("ram size too large");
2627 /* store value for the future use */
2628 qemu_opt_set_number(opts
, "size", ram_size
, &error_abort
);
2629 *maxram_size
= ram_size
;
2631 if (qemu_opt_get(opts
, "maxmem")) {
2634 sz
= qemu_opt_get_size(opts
, "maxmem", 0);
2635 slots
= qemu_opt_get_number(opts
, "slots", 0);
2636 if (sz
< ram_size
) {
2637 error_report("invalid value of -m option maxmem: "
2638 "maximum memory size (0x%" PRIx64
") must be at least "
2639 "the initial memory size (0x" RAM_ADDR_FMT
")",
2642 } else if (slots
&& sz
== ram_size
) {
2643 error_report("invalid value of -m option maxmem: "
2644 "memory slots were specified but maximum memory size "
2645 "(0x%" PRIx64
") is equal to the initial memory size "
2646 "(0x" RAM_ADDR_FMT
")", sz
, ram_size
);
2652 } else if (qemu_opt_get(opts
, "slots")) {
2653 error_report("invalid -m option value: missing 'maxmem' option");
2660 static int global_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2664 g
= g_malloc0(sizeof(*g
));
2665 g
->driver
= qemu_opt_get(opts
, "driver");
2666 g
->property
= qemu_opt_get(opts
, "property");
2667 g
->value
= qemu_opt_get(opts
, "value");
2668 qdev_prop_register_global(g
);
2672 static int qemu_read_default_config_file(void)
2676 ret
= qemu_read_config_file(CONFIG_QEMU_CONFDIR
"/qemu.conf");
2677 if (ret
< 0 && ret
!= -ENOENT
) {
2684 static void user_register_global_props(void)
2686 qemu_opts_foreach(qemu_find_opts("global"),
2687 global_init_func
, NULL
, NULL
);
2690 static int do_configure_icount(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2692 configure_icount(opts
, errp
);
2696 static int accelerator_set_property(void *opaque
,
2697 const char *name
, const char *value
,
2700 return object_parse_property_opt(opaque
, name
, value
, "accel", errp
);
2703 static int do_configure_accelerator(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2705 bool *p_init_failed
= opaque
;
2706 const char *acc
= qemu_opt_get(opts
, "accel");
2707 AccelClass
*ac
= accel_find(acc
);
2712 *p_init_failed
= true;
2713 error_report("invalid accelerator %s", acc
);
2716 accel
= ACCEL(object_new_with_class(OBJECT_CLASS(ac
)));
2717 object_apply_compat_props(OBJECT(accel
));
2718 qemu_opt_foreach(opts
, accelerator_set_property
,
2722 ret
= accel_init_machine(accel
, current_machine
);
2724 *p_init_failed
= true;
2725 error_report("failed to initialize %s: %s",
2726 acc
, strerror(-ret
));
2733 static void configure_accelerators(const char *progname
)
2736 bool init_failed
= false;
2738 qemu_opts_foreach(qemu_find_opts("icount"),
2739 do_configure_icount
, NULL
, &error_fatal
);
2741 accel
= qemu_opt_get(qemu_get_machine_opts(), "accel");
2742 if (QTAILQ_EMPTY(&qemu_accel_opts
.head
)) {
2743 char **accel_list
, **tmp
;
2745 if (accel
== NULL
) {
2746 /* Select the default accelerator */
2747 bool have_tcg
= accel_find("tcg");
2748 bool have_kvm
= accel_find("kvm");
2750 if (have_tcg
&& have_kvm
) {
2751 if (g_str_has_suffix(progname
, "kvm")) {
2752 /* If the program name ends with "kvm", we prefer KVM */
2757 } else if (have_kvm
) {
2759 } else if (have_tcg
) {
2762 error_report("No accelerator selected and"
2763 " no default accelerator available");
2767 accel_list
= g_strsplit(accel
, ":", 0);
2769 for (tmp
= accel_list
; *tmp
; tmp
++) {
2771 * Filter invalid accelerators here, to prevent obscenities
2772 * such as "-machine accel=tcg,,thread=single".
2774 if (accel_find(*tmp
)) {
2775 qemu_opts_parse_noisily(qemu_find_opts("accel"), *tmp
, true);
2778 error_report("invalid accelerator %s", *tmp
);
2781 g_strfreev(accel_list
);
2783 if (accel
!= NULL
) {
2784 error_report("The -accel and \"-machine accel=\" options are incompatible");
2789 if (!qemu_opts_foreach(qemu_find_opts("accel"),
2790 do_configure_accelerator
, &init_failed
, &error_fatal
)) {
2792 error_report("no accelerator found");
2798 AccelClass
*ac
= ACCEL_GET_CLASS(current_accel());
2799 error_report("falling back to %s", ac
->name
);
2802 if (use_icount
&& !(tcg_enabled() || qtest_enabled())) {
2803 error_report("-icount is not allowed with hardware virtualization");
2808 int main(int argc
, char **argv
, char **envp
)
2811 int snapshot
, linux_boot
;
2812 const char *initrd_filename
;
2813 const char *kernel_filename
, *kernel_cmdline
;
2814 const char *boot_order
= NULL
;
2815 const char *boot_once
= NULL
;
2817 QemuOpts
*opts
, *machine_opts
;
2818 QemuOpts
*icount_opts
= NULL
, *accel_opts
= NULL
;
2819 QemuOptsList
*olist
;
2822 const char *loadvm
= NULL
;
2823 MachineClass
*machine_class
;
2824 const char *cpu_option
;
2825 const char *vga_model
= NULL
;
2826 const char *qtest_chrdev
= NULL
;
2827 const char *qtest_log
= NULL
;
2828 const char *incoming
= NULL
;
2829 bool userconfig
= true;
2830 bool nographic
= false;
2831 int display_remote
= 0;
2832 const char *log_mask
= NULL
;
2833 const char *log_file
= NULL
;
2834 char *trace_file
= NULL
;
2835 ram_addr_t maxram_size
;
2836 uint64_t ram_slots
= 0;
2837 FILE *vmstate_dump_file
= NULL
;
2838 Error
*main_loop_err
= NULL
;
2840 bool list_data_dirs
= false;
2842 BlockdevOptionsQueue bdo_queue
= QSIMPLEQ_HEAD_INITIALIZER(bdo_queue
);
2843 QemuPluginList plugin_list
= QTAILQ_HEAD_INITIALIZER(plugin_list
);
2845 os_set_line_buffering();
2847 error_init(argv
[0]);
2848 module_call_init(MODULE_INIT_TRACE
);
2850 qemu_init_cpu_list();
2851 qemu_init_cpu_loop();
2853 qemu_mutex_lock_iothread();
2855 atexit(qemu_run_exit_notifiers
);
2856 qemu_init_exec_dir(argv
[0]);
2858 module_call_init(MODULE_INIT_QOM
);
2860 qemu_add_opts(&qemu_drive_opts
);
2861 qemu_add_drive_opts(&qemu_legacy_drive_opts
);
2862 qemu_add_drive_opts(&qemu_common_drive_opts
);
2863 qemu_add_drive_opts(&qemu_drive_opts
);
2864 qemu_add_drive_opts(&bdrv_runtime_opts
);
2865 qemu_add_opts(&qemu_chardev_opts
);
2866 qemu_add_opts(&qemu_device_opts
);
2867 qemu_add_opts(&qemu_netdev_opts
);
2868 qemu_add_opts(&qemu_nic_opts
);
2869 qemu_add_opts(&qemu_net_opts
);
2870 qemu_add_opts(&qemu_rtc_opts
);
2871 qemu_add_opts(&qemu_global_opts
);
2872 qemu_add_opts(&qemu_mon_opts
);
2873 qemu_add_opts(&qemu_trace_opts
);
2874 qemu_plugin_add_opts();
2875 qemu_add_opts(&qemu_option_rom_opts
);
2876 qemu_add_opts(&qemu_machine_opts
);
2877 qemu_add_opts(&qemu_accel_opts
);
2878 qemu_add_opts(&qemu_mem_opts
);
2879 qemu_add_opts(&qemu_smp_opts
);
2880 qemu_add_opts(&qemu_boot_opts
);
2881 qemu_add_opts(&qemu_add_fd_opts
);
2882 qemu_add_opts(&qemu_object_opts
);
2883 qemu_add_opts(&qemu_tpmdev_opts
);
2884 qemu_add_opts(&qemu_realtime_opts
);
2885 qemu_add_opts(&qemu_overcommit_opts
);
2886 qemu_add_opts(&qemu_msg_opts
);
2887 qemu_add_opts(&qemu_name_opts
);
2888 qemu_add_opts(&qemu_numa_opts
);
2889 qemu_add_opts(&qemu_icount_opts
);
2890 qemu_add_opts(&qemu_semihosting_config_opts
);
2891 qemu_add_opts(&qemu_fw_cfg_opts
);
2892 module_call_init(MODULE_INIT_OPTS
);
2895 precopy_infrastructure_init();
2896 postcopy_infrastructure_init();
2897 monitor_init_globals();
2899 if (qcrypto_init(&err
) < 0) {
2900 error_reportf_err(err
, "cannot initialize crypto: ");
2904 QTAILQ_INIT(&vm_change_state_head
);
2905 os_setup_early_signal_handling();
2912 bdrv_init_with_whitelist();
2916 /* first pass of option parsing */
2918 while (optind
< argc
) {
2919 if (argv
[optind
][0] != '-') {
2923 const QEMUOption
*popt
;
2925 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
2926 switch (popt
->index
) {
2927 case QEMU_OPTION_nouserconfig
:
2935 if (qemu_read_default_config_file() < 0) {
2940 /* second pass of option parsing */
2945 if (argv
[optind
][0] != '-') {
2946 loc_set_cmdline(argv
, optind
, 1);
2947 drive_add(IF_DEFAULT
, 0, argv
[optind
++], HD_OPTS
);
2949 const QEMUOption
*popt
;
2951 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
2952 if (!(popt
->arch_mask
& arch_type
)) {
2953 error_report("Option not supported for this target");
2956 switch(popt
->index
) {
2957 case QEMU_OPTION_cpu
:
2958 /* hw initialization will check this */
2959 cpu_option
= optarg
;
2961 case QEMU_OPTION_hda
:
2962 case QEMU_OPTION_hdb
:
2963 case QEMU_OPTION_hdc
:
2964 case QEMU_OPTION_hdd
:
2965 drive_add(IF_DEFAULT
, popt
->index
- QEMU_OPTION_hda
, optarg
,
2968 case QEMU_OPTION_blockdev
:
2971 BlockdevOptionsQueueEntry
*bdo
;
2973 v
= qobject_input_visitor_new_str(optarg
, "driver",
2976 bdo
= g_new(BlockdevOptionsQueueEntry
, 1);
2977 visit_type_BlockdevOptions(v
, NULL
, &bdo
->bdo
,
2980 loc_save(&bdo
->loc
);
2981 QSIMPLEQ_INSERT_TAIL(&bdo_queue
, bdo
, entry
);
2984 case QEMU_OPTION_drive
:
2985 if (drive_def(optarg
) == NULL
) {
2989 case QEMU_OPTION_set
:
2990 if (qemu_set_option(optarg
) != 0)
2993 case QEMU_OPTION_global
:
2994 if (qemu_global_option(optarg
) != 0)
2997 case QEMU_OPTION_mtdblock
:
2998 drive_add(IF_MTD
, -1, optarg
, MTD_OPTS
);
3000 case QEMU_OPTION_sd
:
3001 drive_add(IF_SD
, -1, optarg
, SD_OPTS
);
3003 case QEMU_OPTION_pflash
:
3004 drive_add(IF_PFLASH
, -1, optarg
, PFLASH_OPTS
);
3006 case QEMU_OPTION_snapshot
:
3008 Error
*blocker
= NULL
;
3010 error_setg(&blocker
, QERR_REPLAY_NOT_SUPPORTED
,
3012 replay_add_blocker(blocker
);
3015 case QEMU_OPTION_numa
:
3016 opts
= qemu_opts_parse_noisily(qemu_find_opts("numa"),
3022 case QEMU_OPTION_display
:
3023 parse_display(optarg
);
3025 case QEMU_OPTION_nographic
:
3026 olist
= qemu_find_opts("machine");
3027 qemu_opts_parse_noisily(olist
, "graphics=off", false);
3029 dpy
.type
= DISPLAY_TYPE_NONE
;
3031 case QEMU_OPTION_curses
:
3032 #ifdef CONFIG_CURSES
3033 dpy
.type
= DISPLAY_TYPE_CURSES
;
3035 error_report("curses or iconv support is disabled");
3039 case QEMU_OPTION_portrait
:
3040 graphic_rotate
= 90;
3042 case QEMU_OPTION_rotate
:
3043 graphic_rotate
= strtol(optarg
, (char **) &optarg
, 10);
3044 if (graphic_rotate
!= 0 && graphic_rotate
!= 90 &&
3045 graphic_rotate
!= 180 && graphic_rotate
!= 270) {
3046 error_report("only 90, 180, 270 deg rotation is available");
3050 case QEMU_OPTION_kernel
:
3051 qemu_opts_set(qemu_find_opts("machine"), 0, "kernel", optarg
,
3054 case QEMU_OPTION_initrd
:
3055 qemu_opts_set(qemu_find_opts("machine"), 0, "initrd", optarg
,
3058 case QEMU_OPTION_append
:
3059 qemu_opts_set(qemu_find_opts("machine"), 0, "append", optarg
,
3062 case QEMU_OPTION_dtb
:
3063 qemu_opts_set(qemu_find_opts("machine"), 0, "dtb", optarg
,
3066 case QEMU_OPTION_cdrom
:
3067 drive_add(IF_DEFAULT
, 2, optarg
, CDROM_OPTS
);
3069 case QEMU_OPTION_boot
:
3070 opts
= qemu_opts_parse_noisily(qemu_find_opts("boot-opts"),
3076 case QEMU_OPTION_fda
:
3077 case QEMU_OPTION_fdb
:
3078 drive_add(IF_FLOPPY
, popt
->index
- QEMU_OPTION_fda
,
3081 case QEMU_OPTION_no_fd_bootchk
:
3084 case QEMU_OPTION_netdev
:
3086 if (net_client_parse(qemu_find_opts("netdev"), optarg
) == -1) {
3090 case QEMU_OPTION_nic
:
3092 if (net_client_parse(qemu_find_opts("nic"), optarg
) == -1) {
3096 case QEMU_OPTION_net
:
3098 if (net_client_parse(qemu_find_opts("net"), optarg
) == -1) {
3102 #ifdef CONFIG_LIBISCSI
3103 case QEMU_OPTION_iscsi
:
3104 opts
= qemu_opts_parse_noisily(qemu_find_opts("iscsi"),
3111 case QEMU_OPTION_audio_help
:
3112 audio_legacy_help();
3115 case QEMU_OPTION_audiodev
:
3116 audio_parse_option(optarg
);
3118 case QEMU_OPTION_soundhw
:
3119 select_soundhw (optarg
);
3124 case QEMU_OPTION_version
:
3129 opts
= qemu_opts_parse_noisily(qemu_find_opts("memory"),
3136 case QEMU_OPTION_tpmdev
:
3137 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg
) < 0) {
3142 case QEMU_OPTION_mempath
:
3145 case QEMU_OPTION_mem_prealloc
:
3154 case QEMU_OPTION_DFILTER
:
3155 qemu_set_dfilter_ranges(optarg
, &error_fatal
);
3157 case QEMU_OPTION_seed
:
3158 qemu_guest_random_seed_main(optarg
, &error_fatal
);
3161 add_device_config(DEV_GDB
, "tcp::" DEFAULT_GDBSTUB_PORT
);
3163 case QEMU_OPTION_gdb
:
3164 add_device_config(DEV_GDB
, optarg
);
3167 if (is_help_option(optarg
)) {
3168 list_data_dirs
= true;
3170 qemu_add_data_dir(optarg
);
3173 case QEMU_OPTION_bios
:
3174 qemu_opts_set(qemu_find_opts("machine"), 0, "firmware", optarg
,
3177 case QEMU_OPTION_singlestep
:
3184 keyboard_layout
= optarg
;
3186 case QEMU_OPTION_vga
:
3195 w
= strtol(p
, (char **)&p
, 10);
3198 error_report("invalid resolution or depth");
3204 h
= strtol(p
, (char **)&p
, 10);
3209 depth
= strtol(p
, (char **)&p
, 10);
3210 if (depth
!= 1 && depth
!= 2 && depth
!= 4 &&
3211 depth
!= 8 && depth
!= 15 && depth
!= 16 &&
3212 depth
!= 24 && depth
!= 32)
3214 } else if (*p
== '\0') {
3215 depth
= graphic_depth
;
3222 graphic_depth
= depth
;
3225 case QEMU_OPTION_echr
:
3228 term_escape_char
= strtol(optarg
, &r
, 0);
3230 printf("Bad argument to echr\n");
3233 case QEMU_OPTION_monitor
:
3234 default_monitor
= 0;
3235 if (strncmp(optarg
, "none", 4)) {
3236 monitor_parse(optarg
, "readline", false);
3239 case QEMU_OPTION_qmp
:
3240 monitor_parse(optarg
, "control", false);
3241 default_monitor
= 0;
3243 case QEMU_OPTION_qmp_pretty
:
3244 monitor_parse(optarg
, "control", true);
3245 default_monitor
= 0;
3247 case QEMU_OPTION_mon
:
3248 opts
= qemu_opts_parse_noisily(qemu_find_opts("mon"), optarg
,
3253 default_monitor
= 0;
3255 case QEMU_OPTION_chardev
:
3256 opts
= qemu_opts_parse_noisily(qemu_find_opts("chardev"),
3262 case QEMU_OPTION_fsdev
:
3263 olist
= qemu_find_opts("fsdev");
3265 error_report("fsdev support is disabled");
3268 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3273 case QEMU_OPTION_virtfs
: {
3276 const char *writeout
, *sock_fd
, *socket
, *path
, *security_model
,
3279 olist
= qemu_find_opts("virtfs");
3281 error_report("virtfs support is disabled");
3284 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3289 if (qemu_opt_get(opts
, "fsdriver") == NULL
||
3290 qemu_opt_get(opts
, "mount_tag") == NULL
) {
3291 error_report("Usage: -virtfs fsdriver,mount_tag=tag");
3294 fsdev
= qemu_opts_create(qemu_find_opts("fsdev"),
3295 qemu_opts_id(opts
) ?:
3296 qemu_opt_get(opts
, "mount_tag"),
3299 error_report("duplicate or invalid fsdev id: %s",
3300 qemu_opt_get(opts
, "mount_tag"));
3304 writeout
= qemu_opt_get(opts
, "writeout");
3306 #ifdef CONFIG_SYNC_FILE_RANGE
3307 qemu_opt_set(fsdev
, "writeout", writeout
, &error_abort
);
3309 error_report("writeout=immediate not supported "
3310 "on this platform");
3314 qemu_opt_set(fsdev
, "fsdriver",
3315 qemu_opt_get(opts
, "fsdriver"), &error_abort
);
3316 path
= qemu_opt_get(opts
, "path");
3318 qemu_opt_set(fsdev
, "path", path
, &error_abort
);
3320 security_model
= qemu_opt_get(opts
, "security_model");
3321 if (security_model
) {
3322 qemu_opt_set(fsdev
, "security_model", security_model
,
3325 socket
= qemu_opt_get(opts
, "socket");
3327 qemu_opt_set(fsdev
, "socket", socket
, &error_abort
);
3329 sock_fd
= qemu_opt_get(opts
, "sock_fd");
3331 qemu_opt_set(fsdev
, "sock_fd", sock_fd
, &error_abort
);
3334 qemu_opt_set_bool(fsdev
, "readonly",
3335 qemu_opt_get_bool(opts
, "readonly", 0),
3337 multidevs
= qemu_opt_get(opts
, "multidevs");
3339 qemu_opt_set(fsdev
, "multidevs", multidevs
, &error_abort
);
3341 device
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
3343 qemu_opt_set(device
, "driver", "virtio-9p-pci", &error_abort
);
3344 qemu_opt_set(device
, "fsdev",
3345 qemu_opts_id(fsdev
), &error_abort
);
3346 qemu_opt_set(device
, "mount_tag",
3347 qemu_opt_get(opts
, "mount_tag"), &error_abort
);
3350 case QEMU_OPTION_serial
:
3351 add_device_config(DEV_SERIAL
, optarg
);
3353 if (strncmp(optarg
, "mon:", 4) == 0) {
3354 default_monitor
= 0;
3357 case QEMU_OPTION_watchdog
:
3359 error_report("only one watchdog option may be given");
3364 case QEMU_OPTION_watchdog_action
:
3365 if (select_watchdog_action(optarg
) == -1) {
3366 error_report("unknown -watchdog-action parameter");
3370 case QEMU_OPTION_parallel
:
3371 add_device_config(DEV_PARALLEL
, optarg
);
3372 default_parallel
= 0;
3373 if (strncmp(optarg
, "mon:", 4) == 0) {
3374 default_monitor
= 0;
3377 case QEMU_OPTION_debugcon
:
3378 add_device_config(DEV_DEBUGCON
, optarg
);
3380 case QEMU_OPTION_loadvm
:
3383 case QEMU_OPTION_full_screen
:
3384 dpy
.has_full_screen
= true;
3385 dpy
.full_screen
= true;
3387 case QEMU_OPTION_alt_grab
:
3390 case QEMU_OPTION_ctrl_grab
:
3393 case QEMU_OPTION_no_quit
:
3394 dpy
.has_window_close
= true;
3395 dpy
.window_close
= false;
3397 case QEMU_OPTION_sdl
:
3399 dpy
.type
= DISPLAY_TYPE_SDL
;
3402 error_report("SDL support is disabled");
3405 case QEMU_OPTION_pidfile
:
3408 case QEMU_OPTION_win2k_hack
:
3409 win2k_install_hack
= 1;
3411 case QEMU_OPTION_acpitable
:
3412 opts
= qemu_opts_parse_noisily(qemu_find_opts("acpi"),
3417 acpi_table_add(opts
, &error_fatal
);
3419 case QEMU_OPTION_smbios
:
3420 opts
= qemu_opts_parse_noisily(qemu_find_opts("smbios"),
3425 smbios_entry_add(opts
, &error_fatal
);
3427 case QEMU_OPTION_fwcfg
:
3428 opts
= qemu_opts_parse_noisily(qemu_find_opts("fw_cfg"),
3434 case QEMU_OPTION_preconfig
:
3435 preconfig_exit_requested
= false;
3437 case QEMU_OPTION_enable_kvm
:
3438 olist
= qemu_find_opts("machine");
3439 qemu_opts_parse_noisily(olist
, "accel=kvm", false);
3442 case QEMU_OPTION_machine
:
3443 olist
= qemu_find_opts("machine");
3444 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3449 case QEMU_OPTION_no_kvm
:
3450 olist
= qemu_find_opts("machine");
3451 qemu_opts_parse_noisily(olist
, "accel=tcg", false);
3453 case QEMU_OPTION_accel
:
3454 accel_opts
= qemu_opts_parse_noisily(qemu_find_opts("accel"),
3456 optarg
= qemu_opt_get(accel_opts
, "accel");
3457 if (!optarg
|| is_help_option(optarg
)) {
3458 printf("Accelerators supported in QEMU binary:\n");
3459 GSList
*el
, *accel_list
= object_class_get_list(TYPE_ACCEL
,
3461 for (el
= accel_list
; el
; el
= el
->next
) {
3462 gchar
*typename
= g_strdup(object_class_get_name(
3463 OBJECT_CLASS(el
->data
)));
3464 /* omit qtest which is used for tests only */
3465 if (g_strcmp0(typename
, ACCEL_CLASS_NAME("qtest")) &&
3466 g_str_has_suffix(typename
, ACCEL_CLASS_SUFFIX
)) {
3467 gchar
**optname
= g_strsplit(typename
,
3468 ACCEL_CLASS_SUFFIX
, 0);
3469 printf("%s\n", optname
[0]);
3470 g_strfreev(optname
);
3474 g_slist_free(accel_list
);
3477 if (optarg
&& strchr(optarg
, ':')) {
3478 error_report("Don't use ':' with -accel, "
3479 "use -M accel=... for now instead");
3483 case QEMU_OPTION_usb
:
3484 olist
= qemu_find_opts("machine");
3485 qemu_opts_parse_noisily(olist
, "usb=on", false);
3487 case QEMU_OPTION_usbdevice
:
3488 error_report("'-usbdevice' is deprecated, please use "
3489 "'-device usb-...' instead");
3490 olist
= qemu_find_opts("machine");
3491 qemu_opts_parse_noisily(olist
, "usb=on", false);
3492 add_device_config(DEV_USB
, optarg
);
3494 case QEMU_OPTION_device
:
3495 if (!qemu_opts_parse_noisily(qemu_find_opts("device"),
3500 case QEMU_OPTION_smp
:
3501 if (!qemu_opts_parse_noisily(qemu_find_opts("smp-opts"),
3506 case QEMU_OPTION_vnc
:
3507 vnc_parse(optarg
, &error_fatal
);
3509 case QEMU_OPTION_no_acpi
:
3512 case QEMU_OPTION_no_hpet
:
3515 case QEMU_OPTION_no_reboot
:
3518 case QEMU_OPTION_no_shutdown
:
3521 case QEMU_OPTION_show_cursor
:
3522 warn_report("The -show-cursor option is deprecated, "
3523 "use -display {sdl,gtk},show-cursor=on instead");
3524 dpy
.has_show_cursor
= true;
3525 dpy
.show_cursor
= true;
3527 case QEMU_OPTION_uuid
:
3528 if (qemu_uuid_parse(optarg
, &qemu_uuid
) < 0) {
3529 error_report("failed to parse UUID string: wrong format");
3532 qemu_uuid_set
= true;
3534 case QEMU_OPTION_option_rom
:
3535 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
3536 error_report("too many option ROMs");
3539 opts
= qemu_opts_parse_noisily(qemu_find_opts("option-rom"),
3544 option_rom
[nb_option_roms
].name
= qemu_opt_get(opts
, "romfile");
3545 option_rom
[nb_option_roms
].bootindex
=
3546 qemu_opt_get_number(opts
, "bootindex", -1);
3547 if (!option_rom
[nb_option_roms
].name
) {
3548 error_report("Option ROM file is not specified");
3553 case QEMU_OPTION_semihosting
:
3554 qemu_semihosting_enable();
3556 case QEMU_OPTION_semihosting_config
:
3557 if (qemu_semihosting_config_options(optarg
) != 0) {
3561 case QEMU_OPTION_name
:
3562 opts
= qemu_opts_parse_noisily(qemu_find_opts("name"),
3568 case QEMU_OPTION_prom_env
:
3569 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
3570 error_report("too many prom variables");
3573 prom_envs
[nb_prom_envs
] = optarg
;
3576 case QEMU_OPTION_old_param
:
3579 case QEMU_OPTION_rtc
:
3580 opts
= qemu_opts_parse_noisily(qemu_find_opts("rtc"), optarg
,
3586 case QEMU_OPTION_tb_size
:
3588 error_report("TCG is disabled");
3591 warn_report("The -tb-size option is deprecated, use -accel tcg,tb-size instead");
3592 object_register_sugar_prop(ACCEL_CLASS_NAME("tcg"), "tb-size", optarg
);
3594 case QEMU_OPTION_icount
:
3595 icount_opts
= qemu_opts_parse_noisily(qemu_find_opts("icount"),
3601 case QEMU_OPTION_incoming
:
3603 runstate_set(RUN_STATE_INMIGRATE
);
3607 case QEMU_OPTION_only_migratable
:
3608 only_migratable
= 1;
3610 case QEMU_OPTION_nodefaults
:
3613 case QEMU_OPTION_xen_domid
:
3614 if (!(xen_available())) {
3615 error_report("Option not supported for this target");
3618 xen_domid
= atoi(optarg
);
3620 case QEMU_OPTION_xen_attach
:
3621 if (!(xen_available())) {
3622 error_report("Option not supported for this target");
3625 xen_mode
= XEN_ATTACH
;
3627 case QEMU_OPTION_xen_domid_restrict
:
3628 if (!(xen_available())) {
3629 error_report("Option not supported for this target");
3632 xen_domid_restrict
= true;
3634 case QEMU_OPTION_trace
:
3636 trace_file
= trace_opt_parse(optarg
);
3638 case QEMU_OPTION_plugin
:
3639 qemu_plugin_opt_parse(optarg
, &plugin_list
);
3641 case QEMU_OPTION_readconfig
:
3643 int ret
= qemu_read_config_file(optarg
);
3645 error_report("read config %s: %s", optarg
,
3651 case QEMU_OPTION_spice
:
3652 olist
= qemu_find_opts("spice");
3654 error_report("spice support is disabled");
3657 opts
= qemu_opts_parse_noisily(olist
, optarg
, false);
3663 case QEMU_OPTION_writeconfig
:
3666 if (strcmp(optarg
, "-") == 0) {
3669 fp
= fopen(optarg
, "w");
3671 error_report("open %s: %s", optarg
,
3676 qemu_config_write(fp
);
3682 case QEMU_OPTION_qtest
:
3683 qtest_chrdev
= optarg
;
3685 case QEMU_OPTION_qtest_log
:
3688 case QEMU_OPTION_sandbox
:
3689 olist
= qemu_find_opts("sandbox");
3691 #ifndef CONFIG_SECCOMP
3692 error_report("-sandbox support is not enabled "
3693 "in this QEMU binary");
3698 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3703 case QEMU_OPTION_add_fd
:
3705 opts
= qemu_opts_parse_noisily(qemu_find_opts("add-fd"),
3711 error_report("File descriptor passing is disabled on this "
3716 case QEMU_OPTION_object
:
3717 opts
= qemu_opts_parse_noisily(qemu_find_opts("object"),
3723 case QEMU_OPTION_realtime
:
3724 warn_report("'-realtime mlock=...' is deprecated, please use "
3725 "'-overcommit mem-lock=...' instead");
3726 opts
= qemu_opts_parse_noisily(qemu_find_opts("realtime"),
3731 /* Don't override the -overcommit option if set */
3732 enable_mlock
= enable_mlock
||
3733 qemu_opt_get_bool(opts
, "mlock", true);
3735 case QEMU_OPTION_overcommit
:
3736 opts
= qemu_opts_parse_noisily(qemu_find_opts("overcommit"),
3741 /* Don't override the -realtime option if set */
3742 enable_mlock
= enable_mlock
||
3743 qemu_opt_get_bool(opts
, "mem-lock", false);
3744 enable_cpu_pm
= qemu_opt_get_bool(opts
, "cpu-pm", false);
3746 case QEMU_OPTION_msg
:
3747 opts
= qemu_opts_parse_noisily(qemu_find_opts("msg"), optarg
,
3752 configure_msg(opts
);
3754 case QEMU_OPTION_dump_vmstate
:
3755 if (vmstate_dump_file
) {
3756 error_report("only one '-dump-vmstate' "
3757 "option may be given");
3760 vmstate_dump_file
= fopen(optarg
, "w");
3761 if (vmstate_dump_file
== NULL
) {
3762 error_report("open %s: %s", optarg
, strerror(errno
));
3766 case QEMU_OPTION_enable_sync_profile
:
3769 case QEMU_OPTION_nouserconfig
:
3770 /* Nothing to be parsed here. Especially, do not error out below. */
3773 if (os_parse_cmd_args(popt
->index
, optarg
)) {
3774 error_report("Option not supported in this build");
3781 * Clear error location left behind by the loop.
3782 * Best done right after the loop. Do not insert code here!
3786 user_register_global_props();
3788 replay_configure(icount_opts
);
3790 if (incoming
&& !preconfig_exit_requested
) {
3791 error_report("'preconfig' and 'incoming' options are "
3792 "mutually exclusive");
3796 configure_rtc(qemu_find_opts_singleton("rtc"));
3798 machine_class
= select_machine();
3799 object_set_machine_compat_props(machine_class
->compat_props
);
3801 set_memory_options(&ram_slots
, &maxram_size
, machine_class
);
3804 rcu_disable_atfork();
3806 if (pid_file
&& !qemu_write_pidfile(pid_file
, &err
)) {
3807 error_reportf_err(err
, "cannot create PID file: ");
3811 qemu_unlink_pidfile_notifier
.notify
= qemu_unlink_pidfile
;
3812 qemu_add_exit_notifier(&qemu_unlink_pidfile_notifier
);
3814 if (qemu_init_main_loop(&main_loop_err
)) {
3815 error_report_err(main_loop_err
);
3819 #ifdef CONFIG_SECCOMP
3820 olist
= qemu_find_opts_err("sandbox", NULL
);
3822 qemu_opts_foreach(olist
, parse_sandbox
, NULL
, &error_fatal
);
3826 qemu_opts_foreach(qemu_find_opts("name"),
3827 parse_name
, NULL
, &error_fatal
);
3830 qemu_opts_foreach(qemu_find_opts("add-fd"),
3831 parse_add_fd
, NULL
, &error_fatal
);
3833 qemu_opts_foreach(qemu_find_opts("add-fd"),
3834 cleanup_add_fd
, NULL
, &error_fatal
);
3837 current_machine
= MACHINE(object_new_with_class(OBJECT_CLASS(machine_class
)));
3838 if (machine_help_func(qemu_get_machine_opts(), current_machine
)) {
3841 object_property_add_child(object_get_root(), "machine",
3842 OBJECT(current_machine
), &error_abort
);
3843 object_property_add_child(container_get(OBJECT(current_machine
),
3845 "sysbus", OBJECT(sysbus_get_default()),
3848 if (machine_class
->minimum_page_bits
) {
3849 if (!set_preferred_target_page_bits(machine_class
->minimum_page_bits
)) {
3850 /* This would be a board error: specifying a minimum smaller than
3851 * a target's compile-time fixed setting.
3853 g_assert_not_reached();
3857 cpu_exec_init_all();
3859 if (machine_class
->hw_version
) {
3860 qemu_set_hw_version(machine_class
->hw_version
);
3863 if (cpu_option
&& is_help_option(cpu_option
)) {
3864 list_cpus(cpu_option
);
3868 if (!trace_init_backends()) {
3871 trace_init_file(trace_file
);
3873 /* Open the logfile at this point and set the log mask if necessary.
3875 qemu_set_log_filename(log_file
, &error_fatal
);
3878 mask
= qemu_str_to_log_mask(log_mask
);
3880 qemu_print_log_usage(stdout
);
3888 /* add configured firmware directories */
3889 dirs
= g_strsplit(CONFIG_QEMU_FIRMWAREPATH
, G_SEARCHPATH_SEPARATOR_S
, 0);
3890 for (i
= 0; dirs
[i
] != NULL
; i
++) {
3891 qemu_add_data_dir(dirs
[i
]);
3895 /* try to find datadir relative to the executable path */
3896 dir
= os_find_datadir();
3897 qemu_add_data_dir(dir
);
3900 /* add the datadir specified when building */
3901 qemu_add_data_dir(CONFIG_QEMU_DATADIR
);
3903 /* -L help lists the data directories and exits. */
3904 if (list_data_dirs
) {
3905 for (i
= 0; i
< data_dir_idx
; i
++) {
3906 printf("%s\n", data_dir
[i
]);
3911 /* machine_class: default to UP */
3912 machine_class
->max_cpus
= machine_class
->max_cpus
?: 1;
3913 machine_class
->min_cpus
= machine_class
->min_cpus
?: 1;
3914 machine_class
->default_cpus
= machine_class
->default_cpus
?: 1;
3916 /* default to machine_class->default_cpus */
3917 current_machine
->smp
.cpus
= machine_class
->default_cpus
;
3918 current_machine
->smp
.max_cpus
= machine_class
->default_cpus
;
3919 current_machine
->smp
.cores
= 1;
3920 current_machine
->smp
.threads
= 1;
3922 machine_class
->smp_parse(current_machine
,
3923 qemu_opts_find(qemu_find_opts("smp-opts"), NULL
));
3925 /* sanity-check smp_cpus and max_cpus against machine_class */
3926 if (current_machine
->smp
.cpus
< machine_class
->min_cpus
) {
3927 error_report("Invalid SMP CPUs %d. The min CPUs "
3928 "supported by machine '%s' is %d",
3929 current_machine
->smp
.cpus
,
3930 machine_class
->name
, machine_class
->min_cpus
);
3933 if (current_machine
->smp
.max_cpus
> machine_class
->max_cpus
) {
3934 error_report("Invalid SMP CPUs %d. The max CPUs "
3935 "supported by machine '%s' is %d",
3936 current_machine
->smp
.max_cpus
,
3937 machine_class
->name
, machine_class
->max_cpus
);
3942 * Get the default machine options from the machine if it is not already
3943 * specified either by the configuration file or by the command line.
3945 if (machine_class
->default_machine_opts
) {
3946 qemu_opts_set_defaults(qemu_find_opts("machine"),
3947 machine_class
->default_machine_opts
, 0);
3950 /* process plugin before CPUs are created, but once -smp has been parsed */
3951 if (qemu_plugin_load_list(&plugin_list
)) {
3955 qemu_opts_foreach(qemu_find_opts("device"),
3956 default_driver_check
, NULL
, NULL
);
3957 qemu_opts_foreach(qemu_find_opts("global"),
3958 default_driver_check
, NULL
, NULL
);
3960 if (!vga_model
&& !default_vga
) {
3961 vga_interface_type
= VGA_DEVICE
;
3963 if (!has_defaults
|| machine_class
->no_serial
) {
3966 if (!has_defaults
|| machine_class
->no_parallel
) {
3967 default_parallel
= 0;
3969 if (!has_defaults
|| machine_class
->no_floppy
) {
3972 if (!has_defaults
|| machine_class
->no_cdrom
) {
3975 if (!has_defaults
|| machine_class
->no_sdcard
) {
3978 if (!has_defaults
) {
3979 default_monitor
= 0;
3984 if (is_daemonized()) {
3985 if (!preconfig_exit_requested
) {
3986 error_report("'preconfig' and 'daemonize' options are "
3987 "mutually exclusive");
3991 /* According to documentation and historically, -nographic redirects
3992 * serial port, parallel port and monitor to stdio, which does not work
3993 * with -daemonize. We can redirect these to null instead, but since
3994 * -nographic is legacy, let's just error out.
3995 * We disallow -nographic only if all other ports are not redirected
3996 * explicitly, to not break existing legacy setups which uses
3997 * -nographic _and_ redirects all ports explicitly - this is valid
3998 * usage, -nographic is just a no-op in this case.
4001 && (default_parallel
|| default_serial
|| default_monitor
)) {
4002 error_report("-nographic cannot be used with -daemonize");
4005 #ifdef CONFIG_CURSES
4006 if (dpy
.type
== DISPLAY_TYPE_CURSES
) {
4007 error_report("curses display cannot be used with -daemonize");
4014 if (default_parallel
)
4015 add_device_config(DEV_PARALLEL
, "null");
4016 if (default_serial
&& default_monitor
) {
4017 add_device_config(DEV_SERIAL
, "mon:stdio");
4020 add_device_config(DEV_SERIAL
, "stdio");
4021 if (default_monitor
)
4022 monitor_parse("stdio", "readline", false);
4026 add_device_config(DEV_SERIAL
, "vc:80Cx24C");
4027 if (default_parallel
)
4028 add_device_config(DEV_PARALLEL
, "vc:80Cx24C");
4029 if (default_monitor
)
4030 monitor_parse("vc:80Cx24C", "readline", false);
4033 #if defined(CONFIG_VNC)
4034 if (!QTAILQ_EMPTY(&(qemu_find_opts("vnc")->head
))) {
4038 if (dpy
.type
== DISPLAY_TYPE_DEFAULT
&& !display_remote
) {
4039 if (!qemu_display_find_default(&dpy
)) {
4040 dpy
.type
= DISPLAY_TYPE_NONE
;
4041 #if defined(CONFIG_VNC)
4042 vnc_parse("localhost:0,to=99,id=default", &error_abort
);
4046 if (dpy
.type
== DISPLAY_TYPE_DEFAULT
) {
4047 dpy
.type
= DISPLAY_TYPE_NONE
;
4050 if ((alt_grab
|| ctrl_grab
) && dpy
.type
!= DISPLAY_TYPE_SDL
) {
4051 error_report("-alt-grab and -ctrl-grab are only valid "
4052 "for SDL, ignoring option");
4054 if (dpy
.has_window_close
&&
4055 (dpy
.type
!= DISPLAY_TYPE_GTK
&& dpy
.type
!= DISPLAY_TYPE_SDL
)) {
4056 error_report("-no-quit is only valid for GTK and SDL, "
4060 qemu_display_early_init(&dpy
);
4061 qemu_console_early_init();
4063 if (dpy
.has_gl
&& dpy
.gl
!= DISPLAYGL_MODE_OFF
&& display_opengl
== 0) {
4064 #if defined(CONFIG_OPENGL)
4065 error_report("OpenGL is not supported by the display");
4067 error_report("OpenGL support is disabled");
4075 qemu_opts_foreach(qemu_find_opts("object"),
4076 user_creatable_add_opts_foreach
,
4077 object_create_initial
, &error_fatal
);
4079 qemu_opts_foreach(qemu_find_opts("chardev"),
4080 chardev_init_func
, NULL
, &error_fatal
);
4081 /* now chardevs have been created we may have semihosting to connect */
4082 qemu_semihosting_connect_chardevs();
4084 #ifdef CONFIG_VIRTFS
4085 qemu_opts_foreach(qemu_find_opts("fsdev"),
4086 fsdev_init_func
, NULL
, &error_fatal
);
4089 if (qemu_opts_foreach(qemu_find_opts("device"),
4090 device_help_func
, NULL
, NULL
)) {
4095 * Note: we need to create block backends before
4096 * machine_set_property(), so machine properties can refer to
4099 configure_blockdev(&bdo_queue
, machine_class
, snapshot
);
4101 machine_opts
= qemu_get_machine_opts();
4102 qemu_opt_foreach(machine_opts
, machine_set_property
, current_machine
,
4104 current_machine
->ram_size
= ram_size
;
4105 current_machine
->maxram_size
= maxram_size
;
4106 current_machine
->ram_slots
= ram_slots
;
4109 * Note: uses machine properties such as kernel-irqchip, must run
4110 * after machine_set_property().
4112 configure_accelerators(argv
[0]);
4115 * Beware, QOM objects created before this point miss global and
4116 * compat properties.
4118 * Global properties get set up by qdev_prop_register_global(),
4119 * called from user_register_global_props(), and certain option
4120 * desugaring. Also in CPU feature desugaring (buried in
4121 * parse_cpu_option()), which happens below this point, but may
4122 * only target the CPU type, which can only be created after
4123 * parse_cpu_option() returned the type.
4125 * Machine compat properties: object_set_machine_compat_props().
4126 * Accelerator compat props: object_set_accelerator_compat_props(),
4127 * called from configure_accelerator().
4130 if (!qtest_enabled() && machine_class
->deprecation_reason
) {
4131 error_report("Machine type '%s' is deprecated: %s",
4132 machine_class
->name
, machine_class
->deprecation_reason
);
4136 * Note: creates a QOM object, must run only after global and
4137 * compat properties have been set up.
4139 migration_object_init();
4142 qtest_server_init(qtest_chrdev
, qtest_log
, &error_fatal
);
4145 machine_opts
= qemu_get_machine_opts();
4146 kernel_filename
= qemu_opt_get(machine_opts
, "kernel");
4147 initrd_filename
= qemu_opt_get(machine_opts
, "initrd");
4148 kernel_cmdline
= qemu_opt_get(machine_opts
, "append");
4149 bios_name
= qemu_opt_get(machine_opts
, "firmware");
4151 opts
= qemu_opts_find(qemu_find_opts("boot-opts"), NULL
);
4153 boot_order
= qemu_opt_get(opts
, "order");
4155 validate_bootdevices(boot_order
, &error_fatal
);
4158 boot_once
= qemu_opt_get(opts
, "once");
4160 validate_bootdevices(boot_once
, &error_fatal
);
4163 boot_menu
= qemu_opt_get_bool(opts
, "menu", boot_menu
);
4164 boot_strict
= qemu_opt_get_bool(opts
, "strict", false);
4168 boot_order
= machine_class
->default_boot_order
;
4171 if (!kernel_cmdline
) {
4172 kernel_cmdline
= "";
4173 current_machine
->kernel_cmdline
= (char *)kernel_cmdline
;
4176 linux_boot
= (kernel_filename
!= NULL
);
4178 if (!linux_boot
&& *kernel_cmdline
!= '\0') {
4179 error_report("-append only allowed with -kernel option");
4183 if (!linux_boot
&& initrd_filename
!= NULL
) {
4184 error_report("-initrd only allowed with -kernel option");
4188 if (semihosting_enabled() && !semihosting_get_argc() && kernel_filename
) {
4189 /* fall back to the -kernel/-append */
4190 semihosting_arg_fallback(kernel_filename
, kernel_cmdline
);
4193 /* spice needs the timers to be initialized by this point */
4199 QemuOptsList
*net
= qemu_find_opts("net");
4200 qemu_opts_set(net
, NULL
, "type", "nic", &error_abort
);
4202 qemu_opts_set(net
, NULL
, "type", "user", &error_abort
);
4206 if (net_init_clients(&err
) < 0) {
4207 error_report_err(err
);
4211 qemu_opts_foreach(qemu_find_opts("object"),
4212 user_creatable_add_opts_foreach
,
4213 object_create_delayed
, &error_fatal
);
4217 if (!xen_enabled()) {
4218 /* On 32-bit hosts, QEMU is limited by virtual address space */
4219 if (ram_size
> (2047 << 20) && HOST_LONG_BITS
== 32) {
4220 error_report("at most 2047 MB RAM can be simulated");
4227 dirty_bitmap_mig_init();
4229 qemu_opts_foreach(qemu_find_opts("mon"),
4230 mon_init_func
, NULL
, &error_fatal
);
4232 /* connect semihosting console input if requested */
4233 qemu_semihosting_console_init();
4235 if (foreach_device_config(DEV_SERIAL
, serial_parse
) < 0)
4237 if (foreach_device_config(DEV_PARALLEL
, parallel_parse
) < 0)
4239 if (foreach_device_config(DEV_DEBUGCON
, debugcon_parse
) < 0)
4242 /* If no default VGA is requested, the default is "none". */
4244 vga_model
= get_default_vga_model(machine_class
);
4247 select_vgahw(machine_class
, vga_model
);
4251 i
= select_watchdog(watchdog
);
4253 exit (i
== 1 ? 1 : 0);
4256 /* This checkpoint is required by replay to separate prior clock
4257 reading from the other reads, because timer polling functions query
4258 clock values from the log. */
4259 replay_checkpoint(CHECKPOINT_INIT
);
4260 qdev_machine_init();
4262 current_machine
->boot_order
= boot_order
;
4264 /* parse features once if machine provides default cpu_type */
4265 current_machine
->cpu_type
= machine_class
->default_cpu_type
;
4267 current_machine
->cpu_type
= parse_cpu_option(cpu_option
);
4269 parse_numa_opts(current_machine
);
4271 /* do monitor/qmp handling at preconfig state if requested */
4274 audio_init_audiodevs();
4276 /* from here on runstate is RUN_STATE_PRELAUNCH */
4277 machine_run_board_init(current_machine
);
4283 if (hax_enabled()) {
4287 qemu_opts_foreach(qemu_find_opts("fw_cfg"),
4288 parse_fw_cfg
, fw_cfg_find(), &error_fatal
);
4290 /* init USB devices */
4291 if (machine_usb(current_machine
)) {
4292 if (foreach_device_config(DEV_USB
, usb_parse
) < 0)
4296 /* init generic devices */
4297 rom_set_order_override(FW_CFG_ORDER_OVERRIDE_DEVICE
);
4298 qemu_opts_foreach(qemu_find_opts("device"),
4299 device_init_func
, NULL
, &error_fatal
);
4301 cpu_synchronize_all_post_init();
4303 rom_reset_order_override();
4305 /* Did we create any drives that we failed to create a device for? */
4306 drive_check_orphaned();
4308 /* Don't warn about the default network setup that you get if
4309 * no command line -net or -netdev options are specified. There
4310 * are two cases that we would otherwise complain about:
4311 * (1) board doesn't support a NIC but the implicit "-net nic"
4313 * (2) CONFIG_SLIRP not set, in which case the implicit "-net nic"
4314 * sets up a nic that isn't connected to anything.
4316 if (!default_net
&& (!qtest_enabled() || has_defaults
)) {
4317 net_check_clients();
4321 qemu_boot_set(boot_once
, &error_fatal
);
4322 qemu_register_reset(restore_boot_order
, g_strdup(boot_order
));
4325 /* init local displays */
4326 ds
= init_displaystate();
4327 qemu_display_init(ds
, &dpy
);
4329 /* must be after terminal init, SDL library changes signal handlers */
4330 os_setup_signal_handling();
4332 /* init remote displays */
4334 qemu_opts_foreach(qemu_find_opts("vnc"),
4335 vnc_init_func
, NULL
, &error_fatal
);
4339 qemu_spice_display_init();
4342 if (foreach_device_config(DEV_GDB
, gdbserver_start
) < 0) {
4346 qdev_machine_creation_done();
4348 /* TODO: once all bus devices are qdevified, this should be done
4349 * when bus is created by qdev.c */
4351 * TODO: If we had a main 'reset container' that the whole system
4352 * lived in, we could reset that using the multi-phase reset
4353 * APIs. For the moment, we just reset the sysbus, which will cause
4354 * all devices hanging off it (and all their child buses, recursively)
4355 * to be reset. Note that this will *not* reset any Device objects
4356 * which are not attached to some part of the qbus tree!
4358 qemu_register_reset(resettable_cold_reset_fn
, sysbus_get_default());
4359 qemu_run_machine_init_done_notifiers();
4361 if (rom_check_and_register_reset() != 0) {
4362 error_report("rom check and register reset failed");
4368 /* This checkpoint is required by replay to separate prior clock
4369 reading from the other reads, because timer polling functions query
4370 clock values from the log. */
4371 replay_checkpoint(CHECKPOINT_RESET
);
4372 qemu_system_reset(SHUTDOWN_CAUSE_NONE
);
4373 register_global_state();
4375 Error
*local_err
= NULL
;
4376 if (load_snapshot(loadvm
, &local_err
) < 0) {
4377 error_report_err(local_err
);
4382 if (replay_mode
!= REPLAY_MODE_NONE
) {
4383 replay_vmstate_init();
4386 qdev_prop_check_globals();
4387 if (vmstate_dump_file
) {
4389 dump_vmstate_json_to_file(vmstate_dump_file
);
4394 Error
*local_err
= NULL
;
4395 qemu_start_incoming_migration(incoming
, &local_err
);
4397 error_reportf_err(local_err
, "-incoming %s: ", incoming
);
4400 } else if (autostart
) {
4404 accel_setup_post(current_machine
);
4409 gdbserver_cleanup();
4412 * cleaning up the migration object cancels any existing migration
4413 * try to do this early so that it also stops using devices.
4415 migration_shutdown();
4418 * We must cancel all block jobs while the block layer is drained,
4419 * or cancelling will be affected by throttling and thus may block
4420 * for an extended period of time.
4421 * vm_shutdown() will bdrv_drain_all(), so we may as well include
4422 * it in the drained section.
4423 * We do not need to end this section, because we do not want any
4424 * requests happening from here on anyway.
4426 bdrv_drain_all_begin();
4428 /* No more vcpu or device emulation activity beyond this point */
4432 job_cancel_sync_all();
4437 /* vhost-user must be cleaned up before chardevs. */
4443 user_creatable_cleanup();
4444 /* TODO: unref root container, check all devices are ok */