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/boards.h"
29 #include "hw/qdev-properties.h"
30 #include "qapi/error.h"
31 #include "qemu-version.h"
32 #include "qemu/cutils.h"
33 #include "qemu/help_option.h"
34 #include "qemu/uuid.h"
35 #include "sysemu/reset.h"
36 #include "sysemu/runstate.h"
37 #include "sysemu/seccomp.h"
38 #include "sysemu/tcg.h"
39 #include "sysemu/xen.h"
41 #include "qemu/error-report.h"
42 #include "qemu/sockets.h"
43 #include "sysemu/accel.h"
45 #include "hw/isa/isa.h"
46 #include "hw/scsi/scsi.h"
47 #include "hw/display/vga.h"
48 #include "sysemu/watchdog.h"
49 #include "hw/firmware/smbios.h"
50 #include "hw/acpi/acpi.h"
51 #include "hw/xen/xen.h"
52 #include "hw/loader.h"
53 #include "monitor/qdev.h"
55 #include "net/slirp.h"
56 #include "monitor/monitor.h"
57 #include "ui/console.h"
59 #include "sysemu/sysemu.h"
60 #include "sysemu/numa.h"
61 #include "sysemu/hostmem.h"
62 #include "exec/gdbstub.h"
63 #include "qemu/timer.h"
64 #include "chardev/char.h"
65 #include "qemu/bitmap.h"
67 #include "sysemu/blockdev.h"
68 #include "hw/block/block.h"
69 #include "migration/misc.h"
70 #include "migration/snapshot.h"
71 #include "migration/global_state.h"
72 #include "sysemu/tpm.h"
73 #include "sysemu/dma.h"
74 #include "hw/audio/soundhw.h"
75 #include "audio/audio.h"
76 #include "sysemu/cpus.h"
77 #include "sysemu/cpu-timers.h"
78 #include "migration/colo.h"
79 #include "migration/postcopy-ram.h"
80 #include "sysemu/kvm.h"
81 #include "sysemu/hax.h"
82 #include "qapi/qobject-input-visitor.h"
83 #include "qemu/option.h"
84 #include "qemu/config-file.h"
85 #include "qemu-options.h"
86 #include "qemu/main-loop.h"
88 #include "fsdev/qemu-fsdev.h"
90 #include "sysemu/qtest.h"
92 #include "disas/disas.h"
95 #include "trace/control.h"
96 #include "qemu/plugin.h"
97 #include "qemu/queue.h"
98 #include "sysemu/arch_init.h"
100 #include "ui/qemu-spice.h"
101 #include "qapi/string-input-visitor.h"
102 #include "qapi/opts-visitor.h"
103 #include "qapi/clone-visitor.h"
104 #include "qom/object_interfaces.h"
105 #include "hw/semihosting/semihost.h"
106 #include "crypto/init.h"
107 #include "sysemu/replay.h"
108 #include "qapi/qapi-events-run-state.h"
109 #include "qapi/qapi-visit-block-core.h"
110 #include "qapi/qapi-visit-ui.h"
111 #include "qapi/qapi-commands-block-core.h"
112 #include "qapi/qapi-commands-run-state.h"
113 #include "qapi/qapi-commands-ui.h"
114 #include "qapi/qmp/qerror.h"
115 #include "sysemu/iothread.h"
116 #include "qemu/guest-random.h"
118 #define MAX_VIRTIO_CONSOLES 1
120 static const char *data_dir
[16];
121 static int data_dir_idx
;
122 const char *bios_name
= NULL
;
123 enum vga_retrace_method vga_retrace_method
= VGA_RETRACE_DUMB
;
125 const char* keyboard_layout
= NULL
;
127 bool enable_mlock
= false;
128 bool enable_cpu_pm
= false;
130 NICInfo nd_table
[MAX_NICS
];
136 } rtc_base_type
= RTC_BASE_UTC
;
137 static time_t rtc_ref_start_datetime
;
138 static int rtc_realtime_clock_offset
; /* used only with QEMU_CLOCK_REALTIME */
139 static int rtc_host_datetime_offset
= -1; /* valid & used only with
141 QEMUClockType rtc_clock
;
142 int vga_interface_type
= VGA_NONE
;
143 static DisplayOptions dpy
;
144 static int num_serial_hds
;
145 static Chardev
**serial_hds
;
146 Chardev
*parallel_hds
[MAX_PARALLEL_PORTS
];
147 int win2k_install_hack
= 0;
151 static int no_reboot
;
153 int graphic_rotate
= 0;
154 const char *watchdog
;
155 QEMUOptionRom option_rom
[MAX_OPTION_ROMS
];
158 const char *qemu_name
;
161 unsigned int nb_prom_envs
= 0;
162 const char *prom_envs
[MAX_PROM_ENVS
];
165 uint8_t *boot_splash_filedata
;
166 int only_migratable
; /* turn it off unless user states otherwise */
167 bool wakeup_suspend_enabled
;
168 int icount_align_option
;
169 static const char *qtest_chrdev
;
170 static const char *qtest_log
;
172 /* The bytes in qemu_uuid are in the order specified by RFC4122, _not_ in the
173 * little-endian "wire format" described in the SMBIOS 2.6 specification.
178 static NotifierList exit_notifiers
=
179 NOTIFIER_LIST_INITIALIZER(exit_notifiers
);
181 static NotifierList machine_init_done_notifiers
=
182 NOTIFIER_LIST_INITIALIZER(machine_init_done_notifiers
);
185 enum xen_mode xen_mode
= XEN_EMULATE
;
186 bool xen_domid_restrict
;
188 static int has_defaults
= 1;
189 static int default_serial
= 1;
190 static int default_parallel
= 1;
191 static int default_monitor
= 1;
192 static int default_floppy
= 1;
193 static int default_cdrom
= 1;
194 static int default_sdcard
= 1;
195 static int default_vga
= 1;
196 static int default_net
= 1;
202 { .driver
= "isa-serial", .flag
= &default_serial
},
203 { .driver
= "isa-parallel", .flag
= &default_parallel
},
204 { .driver
= "isa-fdc", .flag
= &default_floppy
},
205 { .driver
= "floppy", .flag
= &default_floppy
},
206 { .driver
= "ide-cd", .flag
= &default_cdrom
},
207 { .driver
= "ide-hd", .flag
= &default_cdrom
},
208 { .driver
= "ide-drive", .flag
= &default_cdrom
},
209 { .driver
= "scsi-cd", .flag
= &default_cdrom
},
210 { .driver
= "scsi-hd", .flag
= &default_cdrom
},
211 { .driver
= "VGA", .flag
= &default_vga
},
212 { .driver
= "isa-vga", .flag
= &default_vga
},
213 { .driver
= "cirrus-vga", .flag
= &default_vga
},
214 { .driver
= "isa-cirrus-vga", .flag
= &default_vga
},
215 { .driver
= "vmware-svga", .flag
= &default_vga
},
216 { .driver
= "qxl-vga", .flag
= &default_vga
},
217 { .driver
= "virtio-vga", .flag
= &default_vga
},
218 { .driver
= "ati-vga", .flag
= &default_vga
},
219 { .driver
= "vhost-user-vga", .flag
= &default_vga
},
222 static QemuOptsList qemu_rtc_opts
= {
224 .head
= QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts
.head
),
229 .type
= QEMU_OPT_STRING
,
232 .type
= QEMU_OPT_STRING
,
235 .type
= QEMU_OPT_STRING
,
237 { /* end of list */ }
241 static QemuOptsList qemu_option_rom_opts
= {
242 .name
= "option-rom",
243 .implied_opt_name
= "romfile",
244 .head
= QTAILQ_HEAD_INITIALIZER(qemu_option_rom_opts
.head
),
248 .type
= QEMU_OPT_NUMBER
,
251 .type
= QEMU_OPT_STRING
,
253 { /* end of list */ }
257 static QemuOptsList qemu_machine_opts
= {
259 .implied_opt_name
= "type",
261 .head
= QTAILQ_HEAD_INITIALIZER(qemu_machine_opts
.head
),
264 * no elements => accept any
265 * sanity checking will happen later
266 * when setting machine properties
272 static QemuOptsList qemu_accel_opts
= {
274 .implied_opt_name
= "accel",
275 .head
= QTAILQ_HEAD_INITIALIZER(qemu_accel_opts
.head
),
278 * no elements => accept any
279 * sanity checking will happen later
280 * when setting accelerator properties
286 static QemuOptsList qemu_boot_opts
= {
288 .implied_opt_name
= "order",
290 .head
= QTAILQ_HEAD_INITIALIZER(qemu_boot_opts
.head
),
294 .type
= QEMU_OPT_STRING
,
297 .type
= QEMU_OPT_STRING
,
300 .type
= QEMU_OPT_BOOL
,
303 .type
= QEMU_OPT_STRING
,
305 .name
= "splash-time",
306 .type
= QEMU_OPT_NUMBER
,
308 .name
= "reboot-timeout",
309 .type
= QEMU_OPT_NUMBER
,
312 .type
= QEMU_OPT_BOOL
,
318 static QemuOptsList qemu_add_fd_opts
= {
320 .head
= QTAILQ_HEAD_INITIALIZER(qemu_add_fd_opts
.head
),
324 .type
= QEMU_OPT_NUMBER
,
325 .help
= "file descriptor of which a duplicate is added to fd set",
328 .type
= QEMU_OPT_NUMBER
,
329 .help
= "ID of the fd set to add fd to",
332 .type
= QEMU_OPT_STRING
,
333 .help
= "free-form string used to describe fd",
335 { /* end of list */ }
339 static QemuOptsList qemu_object_opts
= {
341 .implied_opt_name
= "qom-type",
342 .head
= QTAILQ_HEAD_INITIALIZER(qemu_object_opts
.head
),
348 static QemuOptsList qemu_tpmdev_opts
= {
350 .implied_opt_name
= "type",
351 .head
= QTAILQ_HEAD_INITIALIZER(qemu_tpmdev_opts
.head
),
353 /* options are defined in the TPM backends */
354 { /* end of list */ }
358 static QemuOptsList qemu_realtime_opts
= {
360 .head
= QTAILQ_HEAD_INITIALIZER(qemu_realtime_opts
.head
),
364 .type
= QEMU_OPT_BOOL
,
366 { /* end of list */ }
370 static QemuOptsList qemu_overcommit_opts
= {
371 .name
= "overcommit",
372 .head
= QTAILQ_HEAD_INITIALIZER(qemu_overcommit_opts
.head
),
376 .type
= QEMU_OPT_BOOL
,
380 .type
= QEMU_OPT_BOOL
,
382 { /* end of list */ }
386 static QemuOptsList qemu_msg_opts
= {
388 .head
= QTAILQ_HEAD_INITIALIZER(qemu_msg_opts
.head
),
392 .type
= QEMU_OPT_BOOL
,
395 .name
= "guest-name",
396 .type
= QEMU_OPT_BOOL
,
397 .help
= "Prepends guest name for error messages but only if "
398 "-name guest is set otherwise option is ignored\n",
400 { /* end of list */ }
404 static QemuOptsList qemu_name_opts
= {
406 .implied_opt_name
= "guest",
408 .head
= QTAILQ_HEAD_INITIALIZER(qemu_name_opts
.head
),
412 .type
= QEMU_OPT_STRING
,
413 .help
= "Sets the name of the guest.\n"
414 "This name will be displayed in the SDL window caption.\n"
415 "The name will also be used for the VNC server",
418 .type
= QEMU_OPT_STRING
,
419 .help
= "Sets the name of the QEMU process, as shown in top etc",
421 .name
= "debug-threads",
422 .type
= QEMU_OPT_BOOL
,
423 .help
= "When enabled, name the individual threads; defaults off.\n"
424 "NOTE: The thread names are for debugging and not a\n"
427 { /* End of list */ }
431 static QemuOptsList qemu_mem_opts
= {
433 .implied_opt_name
= "size",
434 .head
= QTAILQ_HEAD_INITIALIZER(qemu_mem_opts
.head
),
439 .type
= QEMU_OPT_SIZE
,
443 .type
= QEMU_OPT_NUMBER
,
447 .type
= QEMU_OPT_SIZE
,
449 { /* end of list */ }
453 static QemuOptsList qemu_icount_opts
= {
455 .implied_opt_name
= "shift",
457 .head
= QTAILQ_HEAD_INITIALIZER(qemu_icount_opts
.head
),
461 .type
= QEMU_OPT_STRING
,
464 .type
= QEMU_OPT_BOOL
,
467 .type
= QEMU_OPT_BOOL
,
470 .type
= QEMU_OPT_STRING
,
473 .type
= QEMU_OPT_STRING
,
475 .name
= "rrsnapshot",
476 .type
= QEMU_OPT_STRING
,
478 { /* end of list */ }
482 static QemuOptsList qemu_fw_cfg_opts
= {
484 .implied_opt_name
= "name",
485 .head
= QTAILQ_HEAD_INITIALIZER(qemu_fw_cfg_opts
.head
),
489 .type
= QEMU_OPT_STRING
,
490 .help
= "Sets the fw_cfg name of the blob to be inserted",
493 .type
= QEMU_OPT_STRING
,
494 .help
= "Sets the name of the file from which "
495 "the fw_cfg blob will be loaded",
498 .type
= QEMU_OPT_STRING
,
499 .help
= "Sets content of the blob to be inserted from a string",
502 .type
= QEMU_OPT_STRING
,
503 .help
= "Sets id of the object generating the fw_cfg blob "
506 { /* end of list */ }
511 * Get machine options
513 * Returns: machine options (never null).
515 QemuOpts
*qemu_get_machine_opts(void)
517 return qemu_find_opts_singleton("machine");
520 const char *qemu_get_vm_name(void)
525 static void res_free(void)
527 g_free(boot_splash_filedata
);
528 boot_splash_filedata
= NULL
;
531 static int default_driver_check(void *opaque
, QemuOpts
*opts
, Error
**errp
)
533 const char *driver
= qemu_opt_get(opts
, "driver");
538 for (i
= 0; i
< ARRAY_SIZE(default_list
); i
++) {
539 if (strcmp(default_list
[i
].driver
, driver
) != 0)
541 *(default_list
[i
].flag
) = 0;
546 /***********************************************************/
549 static RunState current_run_state
= RUN_STATE_PRECONFIG
;
551 /* We use RUN_STATE__MAX but any invalid value will do */
552 static RunState vmstop_requested
= RUN_STATE__MAX
;
553 static QemuMutex vmstop_lock
;
558 } RunStateTransition
;
560 static const RunStateTransition runstate_transitions_def
[] = {
562 { RUN_STATE_PRECONFIG
, RUN_STATE_PRELAUNCH
},
563 /* Early switch to inmigrate state to allow -incoming CLI option work
564 * as it used to. TODO: delay actual switching to inmigrate state to
565 * the point after machine is built and remove this hack.
567 { RUN_STATE_PRECONFIG
, RUN_STATE_INMIGRATE
},
569 { RUN_STATE_DEBUG
, RUN_STATE_RUNNING
},
570 { RUN_STATE_DEBUG
, RUN_STATE_FINISH_MIGRATE
},
571 { RUN_STATE_DEBUG
, RUN_STATE_PRELAUNCH
},
573 { RUN_STATE_INMIGRATE
, RUN_STATE_INTERNAL_ERROR
},
574 { RUN_STATE_INMIGRATE
, RUN_STATE_IO_ERROR
},
575 { RUN_STATE_INMIGRATE
, RUN_STATE_PAUSED
},
576 { RUN_STATE_INMIGRATE
, RUN_STATE_RUNNING
},
577 { RUN_STATE_INMIGRATE
, RUN_STATE_SHUTDOWN
},
578 { RUN_STATE_INMIGRATE
, RUN_STATE_SUSPENDED
},
579 { RUN_STATE_INMIGRATE
, RUN_STATE_WATCHDOG
},
580 { RUN_STATE_INMIGRATE
, RUN_STATE_GUEST_PANICKED
},
581 { RUN_STATE_INMIGRATE
, RUN_STATE_FINISH_MIGRATE
},
582 { RUN_STATE_INMIGRATE
, RUN_STATE_PRELAUNCH
},
583 { RUN_STATE_INMIGRATE
, RUN_STATE_POSTMIGRATE
},
584 { RUN_STATE_INMIGRATE
, RUN_STATE_COLO
},
586 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_PAUSED
},
587 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_FINISH_MIGRATE
},
588 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_PRELAUNCH
},
590 { RUN_STATE_IO_ERROR
, RUN_STATE_RUNNING
},
591 { RUN_STATE_IO_ERROR
, RUN_STATE_FINISH_MIGRATE
},
592 { RUN_STATE_IO_ERROR
, RUN_STATE_PRELAUNCH
},
594 { RUN_STATE_PAUSED
, RUN_STATE_RUNNING
},
595 { RUN_STATE_PAUSED
, RUN_STATE_FINISH_MIGRATE
},
596 { RUN_STATE_PAUSED
, RUN_STATE_POSTMIGRATE
},
597 { RUN_STATE_PAUSED
, RUN_STATE_PRELAUNCH
},
598 { RUN_STATE_PAUSED
, RUN_STATE_COLO
},
600 { RUN_STATE_POSTMIGRATE
, RUN_STATE_RUNNING
},
601 { RUN_STATE_POSTMIGRATE
, RUN_STATE_FINISH_MIGRATE
},
602 { RUN_STATE_POSTMIGRATE
, RUN_STATE_PRELAUNCH
},
604 { RUN_STATE_PRELAUNCH
, RUN_STATE_RUNNING
},
605 { RUN_STATE_PRELAUNCH
, RUN_STATE_FINISH_MIGRATE
},
606 { RUN_STATE_PRELAUNCH
, RUN_STATE_INMIGRATE
},
608 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_RUNNING
},
609 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_PAUSED
},
610 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_POSTMIGRATE
},
611 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_PRELAUNCH
},
612 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_COLO
},
614 { RUN_STATE_RESTORE_VM
, RUN_STATE_RUNNING
},
615 { RUN_STATE_RESTORE_VM
, RUN_STATE_PRELAUNCH
},
617 { RUN_STATE_COLO
, RUN_STATE_RUNNING
},
619 { RUN_STATE_RUNNING
, RUN_STATE_DEBUG
},
620 { RUN_STATE_RUNNING
, RUN_STATE_INTERNAL_ERROR
},
621 { RUN_STATE_RUNNING
, RUN_STATE_IO_ERROR
},
622 { RUN_STATE_RUNNING
, RUN_STATE_PAUSED
},
623 { RUN_STATE_RUNNING
, RUN_STATE_FINISH_MIGRATE
},
624 { RUN_STATE_RUNNING
, RUN_STATE_RESTORE_VM
},
625 { RUN_STATE_RUNNING
, RUN_STATE_SAVE_VM
},
626 { RUN_STATE_RUNNING
, RUN_STATE_SHUTDOWN
},
627 { RUN_STATE_RUNNING
, RUN_STATE_WATCHDOG
},
628 { RUN_STATE_RUNNING
, RUN_STATE_GUEST_PANICKED
},
629 { RUN_STATE_RUNNING
, RUN_STATE_COLO
},
631 { RUN_STATE_SAVE_VM
, RUN_STATE_RUNNING
},
633 { RUN_STATE_SHUTDOWN
, RUN_STATE_PAUSED
},
634 { RUN_STATE_SHUTDOWN
, RUN_STATE_FINISH_MIGRATE
},
635 { RUN_STATE_SHUTDOWN
, RUN_STATE_PRELAUNCH
},
637 { RUN_STATE_DEBUG
, RUN_STATE_SUSPENDED
},
638 { RUN_STATE_RUNNING
, RUN_STATE_SUSPENDED
},
639 { RUN_STATE_SUSPENDED
, RUN_STATE_RUNNING
},
640 { RUN_STATE_SUSPENDED
, RUN_STATE_FINISH_MIGRATE
},
641 { RUN_STATE_SUSPENDED
, RUN_STATE_PRELAUNCH
},
642 { RUN_STATE_SUSPENDED
, RUN_STATE_COLO
},
644 { RUN_STATE_WATCHDOG
, RUN_STATE_RUNNING
},
645 { RUN_STATE_WATCHDOG
, RUN_STATE_FINISH_MIGRATE
},
646 { RUN_STATE_WATCHDOG
, RUN_STATE_PRELAUNCH
},
647 { RUN_STATE_WATCHDOG
, RUN_STATE_COLO
},
649 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_RUNNING
},
650 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_FINISH_MIGRATE
},
651 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_PRELAUNCH
},
653 { RUN_STATE__MAX
, RUN_STATE__MAX
},
656 static bool runstate_valid_transitions
[RUN_STATE__MAX
][RUN_STATE__MAX
];
658 bool runstate_check(RunState state
)
660 return current_run_state
== state
;
663 bool runstate_store(char *str
, size_t size
)
665 const char *state
= RunState_str(current_run_state
);
666 size_t len
= strlen(state
) + 1;
671 memcpy(str
, state
, len
);
675 static void runstate_init(void)
677 const RunStateTransition
*p
;
679 memset(&runstate_valid_transitions
, 0, sizeof(runstate_valid_transitions
));
680 for (p
= &runstate_transitions_def
[0]; p
->from
!= RUN_STATE__MAX
; p
++) {
681 runstate_valid_transitions
[p
->from
][p
->to
] = true;
684 qemu_mutex_init(&vmstop_lock
);
687 /* This function will abort() on invalid state transitions */
688 void runstate_set(RunState new_state
)
690 assert(new_state
< RUN_STATE__MAX
);
692 trace_runstate_set(current_run_state
, RunState_str(current_run_state
),
693 new_state
, RunState_str(new_state
));
695 if (current_run_state
== new_state
) {
699 if (!runstate_valid_transitions
[current_run_state
][new_state
]) {
700 error_report("invalid runstate transition: '%s' -> '%s'",
701 RunState_str(current_run_state
),
702 RunState_str(new_state
));
706 current_run_state
= new_state
;
709 int runstate_is_running(void)
711 return runstate_check(RUN_STATE_RUNNING
);
714 bool runstate_needs_reset(void)
716 return runstate_check(RUN_STATE_INTERNAL_ERROR
) ||
717 runstate_check(RUN_STATE_SHUTDOWN
);
720 StatusInfo
*qmp_query_status(Error
**errp
)
722 StatusInfo
*info
= g_malloc0(sizeof(*info
));
724 info
->running
= runstate_is_running();
725 info
->singlestep
= singlestep
;
726 info
->status
= current_run_state
;
731 bool qemu_vmstop_requested(RunState
*r
)
733 qemu_mutex_lock(&vmstop_lock
);
734 *r
= vmstop_requested
;
735 vmstop_requested
= RUN_STATE__MAX
;
736 qemu_mutex_unlock(&vmstop_lock
);
737 return *r
< RUN_STATE__MAX
;
740 void qemu_system_vmstop_request_prepare(void)
742 qemu_mutex_lock(&vmstop_lock
);
745 void qemu_system_vmstop_request(RunState state
)
747 vmstop_requested
= state
;
748 qemu_mutex_unlock(&vmstop_lock
);
752 /***********************************************************/
753 /* RTC reference time/date access */
754 static time_t qemu_ref_timedate(QEMUClockType clock
)
756 time_t value
= qemu_clock_get_ms(clock
) / 1000;
758 case QEMU_CLOCK_REALTIME
:
759 value
-= rtc_realtime_clock_offset
;
761 case QEMU_CLOCK_VIRTUAL
:
762 value
+= rtc_ref_start_datetime
;
764 case QEMU_CLOCK_HOST
:
765 if (rtc_base_type
== RTC_BASE_DATETIME
) {
766 value
-= rtc_host_datetime_offset
;
775 void qemu_get_timedate(struct tm
*tm
, int offset
)
777 time_t ti
= qemu_ref_timedate(rtc_clock
);
781 switch (rtc_base_type
) {
782 case RTC_BASE_DATETIME
:
786 case RTC_BASE_LOCALTIME
:
787 localtime_r(&ti
, tm
);
792 int qemu_timedate_diff(struct tm
*tm
)
796 switch (rtc_base_type
) {
797 case RTC_BASE_DATETIME
:
799 seconds
= mktimegm(tm
);
801 case RTC_BASE_LOCALTIME
:
804 tmp
.tm_isdst
= -1; /* use timezone to figure it out */
805 seconds
= mktime(&tmp
);
812 return seconds
- qemu_ref_timedate(QEMU_CLOCK_HOST
);
815 static void configure_rtc_base_datetime(const char *startdate
)
817 time_t rtc_start_datetime
;
820 if (sscanf(startdate
, "%d-%d-%dT%d:%d:%d", &tm
.tm_year
, &tm
.tm_mon
,
821 &tm
.tm_mday
, &tm
.tm_hour
, &tm
.tm_min
, &tm
.tm_sec
) == 6) {
823 } else if (sscanf(startdate
, "%d-%d-%d",
824 &tm
.tm_year
, &tm
.tm_mon
, &tm
.tm_mday
) == 3) {
833 rtc_start_datetime
= mktimegm(&tm
);
834 if (rtc_start_datetime
== -1) {
836 error_report("invalid datetime format");
837 error_printf("valid formats: "
838 "'2006-06-17T16:01:21' or '2006-06-17'\n");
841 rtc_host_datetime_offset
= rtc_ref_start_datetime
- rtc_start_datetime
;
842 rtc_ref_start_datetime
= rtc_start_datetime
;
845 static void configure_rtc(QemuOpts
*opts
)
850 rtc_clock
= QEMU_CLOCK_HOST
;
851 rtc_ref_start_datetime
= qemu_clock_get_ms(QEMU_CLOCK_HOST
) / 1000;
852 rtc_realtime_clock_offset
= qemu_clock_get_ms(QEMU_CLOCK_REALTIME
) / 1000;
854 value
= qemu_opt_get(opts
, "base");
856 if (!strcmp(value
, "utc")) {
857 rtc_base_type
= RTC_BASE_UTC
;
858 } else if (!strcmp(value
, "localtime")) {
859 Error
*blocker
= NULL
;
860 rtc_base_type
= RTC_BASE_LOCALTIME
;
861 error_setg(&blocker
, QERR_REPLAY_NOT_SUPPORTED
,
862 "-rtc base=localtime");
863 replay_add_blocker(blocker
);
865 rtc_base_type
= RTC_BASE_DATETIME
;
866 configure_rtc_base_datetime(value
);
869 value
= qemu_opt_get(opts
, "clock");
871 if (!strcmp(value
, "host")) {
872 rtc_clock
= QEMU_CLOCK_HOST
;
873 } else if (!strcmp(value
, "rt")) {
874 rtc_clock
= QEMU_CLOCK_REALTIME
;
875 } else if (!strcmp(value
, "vm")) {
876 rtc_clock
= QEMU_CLOCK_VIRTUAL
;
878 error_report("invalid option value '%s'", value
);
882 value
= qemu_opt_get(opts
, "driftfix");
884 if (!strcmp(value
, "slew")) {
885 object_register_sugar_prop("mc146818rtc",
888 } else if (!strcmp(value
, "none")) {
889 /* discard is default */
891 error_report("invalid option value '%s'", value
);
897 static int parse_name(void *opaque
, QemuOpts
*opts
, Error
**errp
)
899 const char *proc_name
;
901 if (qemu_opt_get(opts
, "debug-threads")) {
902 qemu_thread_naming(qemu_opt_get_bool(opts
, "debug-threads", false));
904 qemu_name
= qemu_opt_get(opts
, "guest");
906 proc_name
= qemu_opt_get(opts
, "process");
908 os_set_proc_name(proc_name
);
914 bool defaults_enabled(void)
920 static int parse_add_fd(void *opaque
, QemuOpts
*opts
, Error
**errp
)
922 int fd
, dupfd
, flags
;
924 const char *fd_opaque
= NULL
;
927 fd
= qemu_opt_get_number(opts
, "fd", -1);
928 fdset_id
= qemu_opt_get_number(opts
, "set", -1);
929 fd_opaque
= qemu_opt_get(opts
, "opaque");
932 error_setg(errp
, "fd option is required and must be non-negative");
936 if (fd
<= STDERR_FILENO
) {
937 error_setg(errp
, "fd cannot be a standard I/O stream");
942 * All fds inherited across exec() necessarily have FD_CLOEXEC
943 * clear, while qemu sets FD_CLOEXEC on all other fds used internally.
945 flags
= fcntl(fd
, F_GETFD
);
946 if (flags
== -1 || (flags
& FD_CLOEXEC
)) {
947 error_setg(errp
, "fd is not valid or already in use");
952 error_setg(errp
, "set option is required and must be non-negative");
956 #ifdef F_DUPFD_CLOEXEC
957 dupfd
= fcntl(fd
, F_DUPFD_CLOEXEC
, 0);
961 qemu_set_cloexec(dupfd
);
965 error_setg(errp
, "error duplicating fd: %s", strerror(errno
));
969 /* add the duplicate fd, and optionally the opaque string, to the fd set */
970 fdinfo
= monitor_fdset_add_fd(dupfd
, true, fdset_id
, !!fd_opaque
, fd_opaque
,
977 static int cleanup_add_fd(void *opaque
, QemuOpts
*opts
, Error
**errp
)
981 fd
= qemu_opt_get_number(opts
, "fd", -1);
988 /***********************************************************/
989 /* QEMU Block devices */
991 #define HD_OPTS "media=disk"
992 #define CDROM_OPTS "media=cdrom"
994 #define PFLASH_OPTS ""
998 static int drive_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1000 BlockInterfaceType
*block_default_type
= opaque
;
1002 return drive_new(opts
, *block_default_type
, errp
) == NULL
;
1005 static int drive_enable_snapshot(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1007 if (qemu_opt_get(opts
, "snapshot") == NULL
) {
1008 qemu_opt_set(opts
, "snapshot", "on", &error_abort
);
1013 static void default_drive(int enable
, int snapshot
, BlockInterfaceType type
,
1014 int index
, const char *optstr
)
1019 if (!enable
|| drive_get_by_index(type
, index
)) {
1023 opts
= drive_add(type
, index
, NULL
, optstr
);
1025 drive_enable_snapshot(NULL
, opts
, NULL
);
1028 dinfo
= drive_new(opts
, type
, &error_abort
);
1029 dinfo
->is_default
= true;
1033 typedef struct BlockdevOptionsQueueEntry
{
1034 BlockdevOptions
*bdo
;
1036 QSIMPLEQ_ENTRY(BlockdevOptionsQueueEntry
) entry
;
1037 } BlockdevOptionsQueueEntry
;
1039 typedef QSIMPLEQ_HEAD(, BlockdevOptionsQueueEntry
) BlockdevOptionsQueue
;
1041 static void configure_blockdev(BlockdevOptionsQueue
*bdo_queue
,
1042 MachineClass
*machine_class
, int snapshot
)
1045 * If the currently selected machine wishes to override the
1046 * units-per-bus property of its default HBA interface type, do so
1049 if (machine_class
->units_per_default_bus
) {
1050 override_max_devs(machine_class
->block_default_type
,
1051 machine_class
->units_per_default_bus
);
1054 /* open the virtual block devices */
1055 while (!QSIMPLEQ_EMPTY(bdo_queue
)) {
1056 BlockdevOptionsQueueEntry
*bdo
= QSIMPLEQ_FIRST(bdo_queue
);
1058 QSIMPLEQ_REMOVE_HEAD(bdo_queue
, entry
);
1059 loc_push_restore(&bdo
->loc
);
1060 qmp_blockdev_add(bdo
->bdo
, &error_fatal
);
1062 qapi_free_BlockdevOptions(bdo
->bdo
);
1066 qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot
,
1069 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func
,
1070 &machine_class
->block_default_type
, &error_fatal
)) {
1071 /* We printed help */
1075 default_drive(default_cdrom
, snapshot
, machine_class
->block_default_type
, 2,
1077 default_drive(default_floppy
, snapshot
, IF_FLOPPY
, 0, FD_OPTS
);
1078 default_drive(default_sdcard
, snapshot
, IF_SD
, 0, SD_OPTS
);
1082 static QemuOptsList qemu_smp_opts
= {
1084 .implied_opt_name
= "cpus",
1085 .merge_lists
= true,
1086 .head
= QTAILQ_HEAD_INITIALIZER(qemu_smp_opts
.head
),
1090 .type
= QEMU_OPT_NUMBER
,
1093 .type
= QEMU_OPT_NUMBER
,
1096 .type
= QEMU_OPT_NUMBER
,
1099 .type
= QEMU_OPT_NUMBER
,
1102 .type
= QEMU_OPT_NUMBER
,
1105 .type
= QEMU_OPT_NUMBER
,
1107 { /*End of list */ }
1111 static void realtime_init(void)
1114 if (os_mlock() < 0) {
1115 error_report("locking memory failed");
1122 static void configure_msg(QemuOpts
*opts
)
1124 error_with_timestamp
= qemu_opt_get_bool(opts
, "timestamp", false);
1125 error_with_guestname
= qemu_opt_get_bool(opts
, "guest-name", false);
1129 /***********************************************************/
1132 static int usb_device_add(const char *devname
)
1134 USBDevice
*dev
= NULL
;
1136 if (!machine_usb(current_machine
)) {
1140 dev
= usbdevice_create(devname
);
1147 static int usb_parse(const char *cmdline
)
1150 r
= usb_device_add(cmdline
);
1152 error_report("could not add USB device '%s'", cmdline
);
1157 /***********************************************************/
1158 /* machine registration */
1160 MachineState
*current_machine
;
1162 static MachineClass
*find_machine(const char *name
, GSList
*machines
)
1166 for (el
= machines
; el
; el
= el
->next
) {
1167 MachineClass
*mc
= el
->data
;
1169 if (!strcmp(mc
->name
, name
) || !g_strcmp0(mc
->alias
, name
)) {
1177 static MachineClass
*find_default_machine(GSList
*machines
)
1180 MachineClass
*default_machineclass
= NULL
;
1182 for (el
= machines
; el
; el
= el
->next
) {
1183 MachineClass
*mc
= el
->data
;
1185 if (mc
->is_default
) {
1186 assert(default_machineclass
== NULL
&& "Multiple default machines");
1187 default_machineclass
= mc
;
1191 return default_machineclass
;
1194 static int machine_help_func(QemuOpts
*opts
, MachineState
*machine
)
1196 ObjectProperty
*prop
;
1197 ObjectPropertyIterator iter
;
1199 if (!qemu_opt_has_help_opt(opts
)) {
1203 object_property_iter_init(&iter
, OBJECT(machine
));
1204 while ((prop
= object_property_iter_next(&iter
))) {
1209 printf("%s.%s=%s", MACHINE_GET_CLASS(machine
)->name
,
1210 prop
->name
, prop
->type
);
1211 if (prop
->description
) {
1212 printf(" (%s)\n", prop
->description
);
1221 struct VMChangeStateEntry
{
1222 VMChangeStateHandler
*cb
;
1224 QTAILQ_ENTRY(VMChangeStateEntry
) entries
;
1228 static QTAILQ_HEAD(, VMChangeStateEntry
) vm_change_state_head
;
1231 * qemu_add_vm_change_state_handler_prio:
1232 * @cb: the callback to invoke
1233 * @opaque: user data passed to the callback
1234 * @priority: low priorities execute first when the vm runs and the reverse is
1235 * true when the vm stops
1237 * Register a callback function that is invoked when the vm starts or stops
1240 * Returns: an entry to be freed using qemu_del_vm_change_state_handler()
1242 VMChangeStateEntry
*qemu_add_vm_change_state_handler_prio(
1243 VMChangeStateHandler
*cb
, void *opaque
, int priority
)
1245 VMChangeStateEntry
*e
;
1246 VMChangeStateEntry
*other
;
1248 e
= g_malloc0(sizeof(*e
));
1251 e
->priority
= priority
;
1253 /* Keep list sorted in ascending priority order */
1254 QTAILQ_FOREACH(other
, &vm_change_state_head
, entries
) {
1255 if (priority
< other
->priority
) {
1256 QTAILQ_INSERT_BEFORE(other
, e
, entries
);
1261 QTAILQ_INSERT_TAIL(&vm_change_state_head
, e
, entries
);
1265 VMChangeStateEntry
*qemu_add_vm_change_state_handler(VMChangeStateHandler
*cb
,
1268 return qemu_add_vm_change_state_handler_prio(cb
, opaque
, 0);
1271 void qemu_del_vm_change_state_handler(VMChangeStateEntry
*e
)
1273 QTAILQ_REMOVE(&vm_change_state_head
, e
, entries
);
1277 void vm_state_notify(int running
, RunState state
)
1279 VMChangeStateEntry
*e
, *next
;
1281 trace_vm_state_notify(running
, state
, RunState_str(state
));
1284 QTAILQ_FOREACH_SAFE(e
, &vm_change_state_head
, entries
, next
) {
1285 e
->cb(e
->opaque
, running
, state
);
1288 QTAILQ_FOREACH_REVERSE_SAFE(e
, &vm_change_state_head
, entries
, next
) {
1289 e
->cb(e
->opaque
, running
, state
);
1294 static ShutdownCause reset_requested
;
1295 static ShutdownCause shutdown_requested
;
1296 static int shutdown_signal
;
1297 static pid_t shutdown_pid
;
1298 static int powerdown_requested
;
1299 static int debug_requested
;
1300 static int suspend_requested
;
1301 static bool preconfig_exit_requested
= true;
1302 static WakeupReason wakeup_reason
;
1303 static NotifierList powerdown_notifiers
=
1304 NOTIFIER_LIST_INITIALIZER(powerdown_notifiers
);
1305 static NotifierList suspend_notifiers
=
1306 NOTIFIER_LIST_INITIALIZER(suspend_notifiers
);
1307 static NotifierList wakeup_notifiers
=
1308 NOTIFIER_LIST_INITIALIZER(wakeup_notifiers
);
1309 static NotifierList shutdown_notifiers
=
1310 NOTIFIER_LIST_INITIALIZER(shutdown_notifiers
);
1311 static uint32_t wakeup_reason_mask
= ~(1 << QEMU_WAKEUP_REASON_NONE
);
1313 ShutdownCause
qemu_shutdown_requested_get(void)
1315 return shutdown_requested
;
1318 ShutdownCause
qemu_reset_requested_get(void)
1320 return reset_requested
;
1323 static int qemu_shutdown_requested(void)
1325 return qatomic_xchg(&shutdown_requested
, SHUTDOWN_CAUSE_NONE
);
1328 static void qemu_kill_report(void)
1330 if (!qtest_driver() && shutdown_signal
) {
1331 if (shutdown_pid
== 0) {
1332 /* This happens for eg ^C at the terminal, so it's worth
1333 * avoiding printing an odd message in that case.
1335 error_report("terminating on signal %d", shutdown_signal
);
1337 char *shutdown_cmd
= qemu_get_pid_name(shutdown_pid
);
1339 error_report("terminating on signal %d from pid " FMT_pid
" (%s)",
1340 shutdown_signal
, shutdown_pid
,
1341 shutdown_cmd
? shutdown_cmd
: "<unknown process>");
1342 g_free(shutdown_cmd
);
1344 shutdown_signal
= 0;
1348 static ShutdownCause
qemu_reset_requested(void)
1350 ShutdownCause r
= reset_requested
;
1352 if (r
&& replay_checkpoint(CHECKPOINT_RESET_REQUESTED
)) {
1353 reset_requested
= SHUTDOWN_CAUSE_NONE
;
1356 return SHUTDOWN_CAUSE_NONE
;
1359 static int qemu_suspend_requested(void)
1361 int r
= suspend_requested
;
1362 if (r
&& replay_checkpoint(CHECKPOINT_SUSPEND_REQUESTED
)) {
1363 suspend_requested
= 0;
1369 static WakeupReason
qemu_wakeup_requested(void)
1371 return wakeup_reason
;
1374 static int qemu_powerdown_requested(void)
1376 int r
= powerdown_requested
;
1377 powerdown_requested
= 0;
1381 static int qemu_debug_requested(void)
1383 int r
= debug_requested
;
1384 debug_requested
= 0;
1388 void qemu_exit_preconfig_request(void)
1390 preconfig_exit_requested
= true;
1394 * Reset the VM. Issue an event unless @reason is SHUTDOWN_CAUSE_NONE.
1396 void qemu_system_reset(ShutdownCause reason
)
1400 mc
= current_machine
? MACHINE_GET_CLASS(current_machine
) : NULL
;
1402 cpu_synchronize_all_states();
1404 if (mc
&& mc
->reset
) {
1405 mc
->reset(current_machine
);
1407 qemu_devices_reset();
1409 if (reason
&& reason
!= SHUTDOWN_CAUSE_SUBSYSTEM_RESET
) {
1410 qapi_event_send_reset(shutdown_caused_by_guest(reason
), reason
);
1412 cpu_synchronize_all_post_reset();
1416 * Wake the VM after suspend.
1418 static void qemu_system_wakeup(void)
1422 mc
= current_machine
? MACHINE_GET_CLASS(current_machine
) : NULL
;
1424 if (mc
&& mc
->wakeup
) {
1425 mc
->wakeup(current_machine
);
1429 void qemu_system_guest_panicked(GuestPanicInformation
*info
)
1431 qemu_log_mask(LOG_GUEST_ERROR
, "Guest crashed");
1434 current_cpu
->crash_occurred
= true;
1436 qapi_event_send_guest_panicked(GUEST_PANIC_ACTION_PAUSE
,
1438 vm_stop(RUN_STATE_GUEST_PANICKED
);
1440 qapi_event_send_guest_panicked(GUEST_PANIC_ACTION_POWEROFF
,
1442 qemu_system_shutdown_request(SHUTDOWN_CAUSE_GUEST_PANIC
);
1446 if (info
->type
== GUEST_PANIC_INFORMATION_TYPE_HYPER_V
) {
1447 qemu_log_mask(LOG_GUEST_ERROR
, "\nHV crash parameters: (%#"PRIx64
1448 " %#"PRIx64
" %#"PRIx64
" %#"PRIx64
" %#"PRIx64
")\n",
1449 info
->u
.hyper_v
.arg1
,
1450 info
->u
.hyper_v
.arg2
,
1451 info
->u
.hyper_v
.arg3
,
1452 info
->u
.hyper_v
.arg4
,
1453 info
->u
.hyper_v
.arg5
);
1454 } else if (info
->type
== GUEST_PANIC_INFORMATION_TYPE_S390
) {
1455 qemu_log_mask(LOG_GUEST_ERROR
, " on cpu %d: %s\n"
1456 "PSW: 0x%016" PRIx64
" 0x%016" PRIx64
"\n",
1458 S390CrashReason_str(info
->u
.s390
.reason
),
1459 info
->u
.s390
.psw_mask
,
1460 info
->u
.s390
.psw_addr
);
1462 qapi_free_GuestPanicInformation(info
);
1466 void qemu_system_guest_crashloaded(GuestPanicInformation
*info
)
1468 qemu_log_mask(LOG_GUEST_ERROR
, "Guest crash loaded");
1470 qapi_event_send_guest_crashloaded(GUEST_PANIC_ACTION_RUN
,
1474 qapi_free_GuestPanicInformation(info
);
1478 void qemu_system_reset_request(ShutdownCause reason
)
1480 if (no_reboot
&& reason
!= SHUTDOWN_CAUSE_SUBSYSTEM_RESET
) {
1481 shutdown_requested
= reason
;
1483 reset_requested
= reason
;
1486 qemu_notify_event();
1489 static void qemu_system_suspend(void)
1492 notifier_list_notify(&suspend_notifiers
, NULL
);
1493 runstate_set(RUN_STATE_SUSPENDED
);
1494 qapi_event_send_suspend();
1497 void qemu_system_suspend_request(void)
1499 if (runstate_check(RUN_STATE_SUSPENDED
)) {
1502 suspend_requested
= 1;
1504 qemu_notify_event();
1507 void qemu_register_suspend_notifier(Notifier
*notifier
)
1509 notifier_list_add(&suspend_notifiers
, notifier
);
1512 void qemu_system_wakeup_request(WakeupReason reason
, Error
**errp
)
1514 trace_system_wakeup_request(reason
);
1516 if (!runstate_check(RUN_STATE_SUSPENDED
)) {
1518 "Unable to wake up: guest is not in suspended state");
1521 if (!(wakeup_reason_mask
& (1 << reason
))) {
1524 runstate_set(RUN_STATE_RUNNING
);
1525 wakeup_reason
= reason
;
1526 qemu_notify_event();
1529 void qemu_system_wakeup_enable(WakeupReason reason
, bool enabled
)
1532 wakeup_reason_mask
|= (1 << reason
);
1534 wakeup_reason_mask
&= ~(1 << reason
);
1538 void qemu_register_wakeup_notifier(Notifier
*notifier
)
1540 notifier_list_add(&wakeup_notifiers
, notifier
);
1543 void qemu_register_wakeup_support(void)
1545 wakeup_suspend_enabled
= true;
1548 bool qemu_wakeup_suspend_enabled(void)
1550 return wakeup_suspend_enabled
;
1553 void qemu_system_killed(int signal
, pid_t pid
)
1555 shutdown_signal
= signal
;
1559 /* Cannot call qemu_system_shutdown_request directly because
1560 * we are in a signal handler.
1562 shutdown_requested
= SHUTDOWN_CAUSE_HOST_SIGNAL
;
1563 qemu_notify_event();
1566 void qemu_system_shutdown_request(ShutdownCause reason
)
1568 trace_qemu_system_shutdown_request(reason
);
1569 replay_shutdown_request(reason
);
1570 shutdown_requested
= reason
;
1571 qemu_notify_event();
1574 static void qemu_system_powerdown(void)
1576 qapi_event_send_powerdown();
1577 notifier_list_notify(&powerdown_notifiers
, NULL
);
1580 static void qemu_system_shutdown(ShutdownCause cause
)
1582 qapi_event_send_shutdown(shutdown_caused_by_guest(cause
), cause
);
1583 notifier_list_notify(&shutdown_notifiers
, &cause
);
1586 void qemu_system_powerdown_request(void)
1588 trace_qemu_system_powerdown_request();
1589 powerdown_requested
= 1;
1590 qemu_notify_event();
1593 void qemu_register_powerdown_notifier(Notifier
*notifier
)
1595 notifier_list_add(&powerdown_notifiers
, notifier
);
1598 void qemu_register_shutdown_notifier(Notifier
*notifier
)
1600 notifier_list_add(&shutdown_notifiers
, notifier
);
1603 void qemu_system_debug_request(void)
1605 debug_requested
= 1;
1606 qemu_notify_event();
1609 static bool main_loop_should_exit(void)
1612 ShutdownCause request
;
1614 if (preconfig_exit_requested
) {
1615 if (runstate_check(RUN_STATE_PRECONFIG
)) {
1616 runstate_set(RUN_STATE_PRELAUNCH
);
1618 preconfig_exit_requested
= false;
1621 if (qemu_debug_requested()) {
1622 vm_stop(RUN_STATE_DEBUG
);
1624 if (qemu_suspend_requested()) {
1625 qemu_system_suspend();
1627 request
= qemu_shutdown_requested();
1630 qemu_system_shutdown(request
);
1632 vm_stop(RUN_STATE_SHUTDOWN
);
1637 request
= qemu_reset_requested();
1640 qemu_system_reset(request
);
1643 * runstate can change in pause_all_vcpus()
1644 * as iothread mutex is unlocked
1646 if (!runstate_check(RUN_STATE_RUNNING
) &&
1647 !runstate_check(RUN_STATE_INMIGRATE
) &&
1648 !runstate_check(RUN_STATE_FINISH_MIGRATE
)) {
1649 runstate_set(RUN_STATE_PRELAUNCH
);
1652 if (qemu_wakeup_requested()) {
1654 qemu_system_wakeup();
1655 notifier_list_notify(&wakeup_notifiers
, &wakeup_reason
);
1656 wakeup_reason
= QEMU_WAKEUP_REASON_NONE
;
1658 qapi_event_send_wakeup();
1660 if (qemu_powerdown_requested()) {
1661 qemu_system_powerdown();
1663 if (qemu_vmstop_requested(&r
)) {
1669 void qemu_main_loop(void)
1671 #ifdef CONFIG_PROFILER
1674 while (!main_loop_should_exit()) {
1675 #ifdef CONFIG_PROFILER
1676 ti
= profile_getclock();
1678 main_loop_wait(false);
1679 #ifdef CONFIG_PROFILER
1680 dev_time
+= profile_getclock() - ti
;
1685 static void version(void)
1687 printf("QEMU emulator version " QEMU_FULL_VERSION
"\n"
1688 QEMU_COPYRIGHT
"\n");
1691 static void help(int exitcode
)
1694 printf("usage: %s [options] [disk_image]\n\n"
1695 "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
1696 error_get_progname());
1698 #define QEMU_OPTIONS_GENERATE_HELP
1699 #include "qemu-options-wrapper.h"
1701 printf("\nDuring emulation, the following keys are useful:\n"
1702 "ctrl-alt-f toggle full screen\n"
1703 "ctrl-alt-n switch to virtual console 'n'\n"
1704 "ctrl-alt toggle mouse and keyboard grab\n"
1706 "When using -nographic, press 'ctrl-a h' to get some help.\n"
1708 QEMU_HELP_BOTTOM
"\n");
1713 #define HAS_ARG 0x0001
1715 typedef struct QEMUOption
{
1722 static const QEMUOption qemu_options
[] = {
1723 { "h", 0, QEMU_OPTION_h
, QEMU_ARCH_ALL
},
1724 #define QEMU_OPTIONS_GENERATE_OPTIONS
1725 #include "qemu-options-wrapper.h"
1729 typedef struct VGAInterfaceInfo
{
1730 const char *opt_name
; /* option name */
1731 const char *name
; /* human-readable name */
1732 /* Class names indicating that support is available.
1733 * If no class is specified, the interface is always available */
1734 const char *class_names
[2];
1737 static const VGAInterfaceInfo vga_interfaces
[VGA_TYPE_MAX
] = {
1740 .name
= "no graphic card",
1744 .name
= "standard VGA",
1745 .class_names
= { "VGA", "isa-vga" },
1748 .opt_name
= "cirrus",
1749 .name
= "Cirrus VGA",
1750 .class_names
= { "cirrus-vga", "isa-cirrus-vga" },
1753 .opt_name
= "vmware",
1754 .name
= "VMWare SVGA",
1755 .class_names
= { "vmware-svga" },
1758 .opt_name
= "virtio",
1759 .name
= "Virtio VGA",
1760 .class_names
= { "virtio-vga" },
1765 .class_names
= { "qxl-vga" },
1769 .name
= "TCX framebuffer",
1770 .class_names
= { "SUNW,tcx" },
1774 .name
= "CG3 framebuffer",
1775 .class_names
= { "cgthree" },
1778 .opt_name
= "xenfb",
1779 .name
= "Xen paravirtualized framebuffer",
1783 static bool vga_interface_available(VGAInterfaceType t
)
1785 const VGAInterfaceInfo
*ti
= &vga_interfaces
[t
];
1787 assert(t
< VGA_TYPE_MAX
);
1788 return !ti
->class_names
[0] ||
1789 module_object_class_by_name(ti
->class_names
[0]) ||
1790 module_object_class_by_name(ti
->class_names
[1]);
1794 get_default_vga_model(const MachineClass
*machine_class
)
1796 if (machine_class
->default_display
) {
1797 return machine_class
->default_display
;
1798 } else if (vga_interface_available(VGA_CIRRUS
)) {
1800 } else if (vga_interface_available(VGA_STD
)) {
1807 static void select_vgahw(const MachineClass
*machine_class
, const char *p
)
1812 if (g_str_equal(p
, "help")) {
1813 const char *def
= get_default_vga_model(machine_class
);
1815 for (t
= 0; t
< VGA_TYPE_MAX
; t
++) {
1816 const VGAInterfaceInfo
*ti
= &vga_interfaces
[t
];
1818 if (vga_interface_available(t
) && ti
->opt_name
) {
1819 printf("%-20s %s%s\n", ti
->opt_name
, ti
->name
?: "",
1820 g_str_equal(ti
->opt_name
, def
) ? " (default)" : "");
1826 assert(vga_interface_type
== VGA_NONE
);
1827 for (t
= 0; t
< VGA_TYPE_MAX
; t
++) {
1828 const VGAInterfaceInfo
*ti
= &vga_interfaces
[t
];
1829 if (ti
->opt_name
&& strstart(p
, ti
->opt_name
, &opts
)) {
1830 if (!vga_interface_available(t
)) {
1831 error_report("%s not available", ti
->name
);
1834 vga_interface_type
= t
;
1838 if (t
== VGA_TYPE_MAX
) {
1840 error_report("unknown vga type: %s", p
);
1844 const char *nextopt
;
1846 if (strstart(opts
, ",retrace=", &nextopt
)) {
1848 if (strstart(opts
, "dumb", &nextopt
))
1849 vga_retrace_method
= VGA_RETRACE_DUMB
;
1850 else if (strstart(opts
, "precise", &nextopt
))
1851 vga_retrace_method
= VGA_RETRACE_PRECISE
;
1852 else goto invalid_vga
;
1853 } else goto invalid_vga
;
1858 static void parse_display_qapi(const char *optarg
)
1860 DisplayOptions
*opts
;
1863 v
= qobject_input_visitor_new_str(optarg
, "type", &error_fatal
);
1865 visit_type_DisplayOptions(v
, NULL
, &opts
, &error_fatal
);
1866 QAPI_CLONE_MEMBERS(DisplayOptions
, &dpy
, opts
);
1868 qapi_free_DisplayOptions(opts
);
1872 DisplayOptions
*qmp_query_display_options(Error
**errp
)
1874 return QAPI_CLONE(DisplayOptions
, &dpy
);
1877 static void parse_display(const char *p
)
1881 if (is_help_option(p
)) {
1882 qemu_display_help();
1886 if (strstart(p
, "sdl", &opts
)) {
1888 * sdl DisplayType needs hand-crafted parser instead of
1889 * parse_display_qapi() due to some options not in
1890 * DisplayOptions, specifically:
1892 * Already deprecated.
1893 * - ctrl_grab + alt_grab
1894 * Not clear yet what happens to them long-term. Should
1895 * replaced by something better or deprecated and dropped.
1897 dpy
.type
= DISPLAY_TYPE_SDL
;
1899 const char *nextopt
;
1901 if (strstart(opts
, ",alt_grab=", &nextopt
)) {
1903 if (strstart(opts
, "on", &nextopt
)) {
1905 } else if (strstart(opts
, "off", &nextopt
)) {
1908 goto invalid_sdl_args
;
1910 } else if (strstart(opts
, ",ctrl_grab=", &nextopt
)) {
1912 if (strstart(opts
, "on", &nextopt
)) {
1914 } else if (strstart(opts
, "off", &nextopt
)) {
1917 goto invalid_sdl_args
;
1919 } else if (strstart(opts
, ",window_close=", &nextopt
)) {
1921 dpy
.has_window_close
= true;
1922 if (strstart(opts
, "on", &nextopt
)) {
1923 dpy
.window_close
= true;
1924 } else if (strstart(opts
, "off", &nextopt
)) {
1925 dpy
.window_close
= false;
1927 goto invalid_sdl_args
;
1929 } else if (strstart(opts
, ",show-cursor=", &nextopt
)) {
1931 dpy
.has_show_cursor
= true;
1932 if (strstart(opts
, "on", &nextopt
)) {
1933 dpy
.show_cursor
= true;
1934 } else if (strstart(opts
, "off", &nextopt
)) {
1935 dpy
.show_cursor
= false;
1937 goto invalid_sdl_args
;
1939 } else if (strstart(opts
, ",gl=", &nextopt
)) {
1942 if (strstart(opts
, "on", &nextopt
)) {
1943 dpy
.gl
= DISPLAYGL_MODE_ON
;
1944 } else if (strstart(opts
, "core", &nextopt
)) {
1945 dpy
.gl
= DISPLAYGL_MODE_CORE
;
1946 } else if (strstart(opts
, "es", &nextopt
)) {
1947 dpy
.gl
= DISPLAYGL_MODE_ES
;
1948 } else if (strstart(opts
, "off", &nextopt
)) {
1949 dpy
.gl
= DISPLAYGL_MODE_OFF
;
1951 goto invalid_sdl_args
;
1955 error_report("invalid SDL option string");
1960 } else if (strstart(p
, "vnc", &opts
)) {
1962 * vnc isn't a (local) DisplayType but a protocol for remote
1966 vnc_parse(opts
+ 1, &error_fatal
);
1968 error_report("VNC requires a display argument vnc=<display>");
1972 parse_display_qapi(p
);
1976 char *qemu_find_file(int type
, const char *name
)
1982 /* Try the name as a straight path first */
1983 if (access(name
, R_OK
) == 0) {
1984 trace_load_file(name
, name
);
1985 return g_strdup(name
);
1989 case QEMU_FILE_TYPE_BIOS
:
1992 case QEMU_FILE_TYPE_KEYMAP
:
1993 subdir
= "keymaps/";
1999 for (i
= 0; i
< data_dir_idx
; i
++) {
2000 buf
= g_strdup_printf("%s/%s%s", data_dir
[i
], subdir
, name
);
2001 if (access(buf
, R_OK
) == 0) {
2002 trace_load_file(name
, buf
);
2010 void qemu_add_data_dir(char *path
)
2017 if (data_dir_idx
== ARRAY_SIZE(data_dir
)) {
2020 for (i
= 0; i
< data_dir_idx
; i
++) {
2021 if (strcmp(data_dir
[i
], path
) == 0) {
2022 g_free(path
); /* duplicate */
2026 data_dir
[data_dir_idx
++] = path
;
2029 static inline bool nonempty_str(const char *str
)
2034 static int parse_fw_cfg(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2038 const char *name
, *file
, *str
, *gen_id
;
2039 FWCfgState
*fw_cfg
= (FWCfgState
*) opaque
;
2041 if (fw_cfg
== NULL
) {
2042 error_setg(errp
, "fw_cfg device not available");
2045 name
= qemu_opt_get(opts
, "name");
2046 file
= qemu_opt_get(opts
, "file");
2047 str
= qemu_opt_get(opts
, "string");
2048 gen_id
= qemu_opt_get(opts
, "gen_id");
2050 /* we need the name, and exactly one of: file, content string, gen_id */
2051 if (!nonempty_str(name
) ||
2052 nonempty_str(file
) + nonempty_str(str
) + nonempty_str(gen_id
) != 1) {
2053 error_setg(errp
, "name, plus exactly one of file,"
2054 " string and gen_id, are needed");
2057 if (strlen(name
) > FW_CFG_MAX_FILE_PATH
- 1) {
2058 error_setg(errp
, "name too long (max. %d char)",
2059 FW_CFG_MAX_FILE_PATH
- 1);
2062 if (nonempty_str(gen_id
)) {
2064 * In this particular case where the content is populated
2065 * internally, the "etc/" namespace protection is relaxed,
2066 * so do not emit a warning.
2068 } else if (strncmp(name
, "opt/", 4) != 0) {
2069 warn_report("externally provided fw_cfg item names "
2070 "should be prefixed with \"opt/\"");
2072 if (nonempty_str(str
)) {
2073 size
= strlen(str
); /* NUL terminator NOT included in fw_cfg blob */
2074 buf
= g_memdup(str
, size
);
2075 } else if (nonempty_str(gen_id
)) {
2076 if (!fw_cfg_add_from_generator(fw_cfg
, name
, gen_id
, errp
)) {
2082 if (!g_file_get_contents(file
, &buf
, &size
, &err
)) {
2083 error_setg(errp
, "can't load %s: %s", file
, err
->message
);
2088 /* For legacy, keep user files in a specific global order. */
2089 fw_cfg_set_order_override(fw_cfg
, FW_CFG_ORDER_OVERRIDE_USER
);
2090 fw_cfg_add_file(fw_cfg
, name
, buf
, size
);
2091 fw_cfg_reset_order_override(fw_cfg
);
2095 static int device_help_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2097 return qdev_device_help(opts
);
2100 static int device_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2104 dev
= qdev_device_add(opts
, errp
);
2105 if (!dev
&& *errp
) {
2106 error_report_err(*errp
);
2109 object_unref(OBJECT(dev
));
2114 static int chardev_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2116 Error
*local_err
= NULL
;
2118 if (!qemu_chr_new_from_opts(opts
, NULL
, &local_err
)) {
2120 error_propagate(errp
, local_err
);
2128 #ifdef CONFIG_VIRTFS
2129 static int fsdev_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2131 return qemu_fsdev_add(opts
, errp
);
2135 static int mon_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2137 return monitor_init_opts(opts
, errp
);
2140 static void monitor_parse(const char *optarg
, const char *mode
, bool pretty
)
2142 static int monitor_device_index
= 0;
2147 if (strstart(optarg
, "chardev:", &p
)) {
2148 snprintf(label
, sizeof(label
), "%s", p
);
2150 snprintf(label
, sizeof(label
), "compat_monitor%d",
2151 monitor_device_index
);
2152 opts
= qemu_chr_parse_compat(label
, optarg
, true);
2154 error_report("parse error: %s", optarg
);
2159 opts
= qemu_opts_create(qemu_find_opts("mon"), label
, 1, &error_fatal
);
2160 qemu_opt_set(opts
, "mode", mode
, &error_abort
);
2161 qemu_opt_set(opts
, "chardev", label
, &error_abort
);
2162 if (!strcmp(mode
, "control")) {
2163 qemu_opt_set_bool(opts
, "pretty", pretty
, &error_abort
);
2165 assert(pretty
== false);
2167 monitor_device_index
++;
2170 struct device_config
{
2172 DEV_USB
, /* -usbdevice */
2173 DEV_SERIAL
, /* -serial */
2174 DEV_PARALLEL
, /* -parallel */
2175 DEV_DEBUGCON
, /* -debugcon */
2176 DEV_GDB
, /* -gdb, -s */
2177 DEV_SCLP
, /* s390 sclp */
2179 const char *cmdline
;
2181 QTAILQ_ENTRY(device_config
) next
;
2184 static QTAILQ_HEAD(, device_config
) device_configs
=
2185 QTAILQ_HEAD_INITIALIZER(device_configs
);
2187 static void add_device_config(int type
, const char *cmdline
)
2189 struct device_config
*conf
;
2191 conf
= g_malloc0(sizeof(*conf
));
2193 conf
->cmdline
= cmdline
;
2194 loc_save(&conf
->loc
);
2195 QTAILQ_INSERT_TAIL(&device_configs
, conf
, next
);
2198 static int foreach_device_config(int type
, int (*func
)(const char *cmdline
))
2200 struct device_config
*conf
;
2203 QTAILQ_FOREACH(conf
, &device_configs
, next
) {
2204 if (conf
->type
!= type
)
2206 loc_push_restore(&conf
->loc
);
2207 rc
= func(conf
->cmdline
);
2208 loc_pop(&conf
->loc
);
2216 static int serial_parse(const char *devname
)
2218 int index
= num_serial_hds
;
2221 if (strcmp(devname
, "none") == 0)
2223 snprintf(label
, sizeof(label
), "serial%d", index
);
2224 serial_hds
= g_renew(Chardev
*, serial_hds
, index
+ 1);
2226 serial_hds
[index
] = qemu_chr_new_mux_mon(label
, devname
, NULL
);
2227 if (!serial_hds
[index
]) {
2228 error_report("could not connect serial device"
2229 " to character backend '%s'", devname
);
2236 Chardev
*serial_hd(int i
)
2239 if (i
< num_serial_hds
) {
2240 return serial_hds
[i
];
2245 int serial_max_hds(void)
2247 return num_serial_hds
;
2250 static int parallel_parse(const char *devname
)
2252 static int index
= 0;
2255 if (strcmp(devname
, "none") == 0)
2257 if (index
== MAX_PARALLEL_PORTS
) {
2258 error_report("too many parallel ports");
2261 snprintf(label
, sizeof(label
), "parallel%d", index
);
2262 parallel_hds
[index
] = qemu_chr_new_mux_mon(label
, devname
, NULL
);
2263 if (!parallel_hds
[index
]) {
2264 error_report("could not connect parallel device"
2265 " to character backend '%s'", devname
);
2272 static int debugcon_parse(const char *devname
)
2276 if (!qemu_chr_new_mux_mon("debugcon", devname
, NULL
)) {
2277 error_report("invalid character backend '%s'", devname
);
2280 opts
= qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL
);
2282 error_report("already have a debugcon device");
2285 qemu_opt_set(opts
, "driver", "isa-debugcon", &error_abort
);
2286 qemu_opt_set(opts
, "chardev", "debugcon", &error_abort
);
2290 static gint
machine_class_cmp(gconstpointer a
, gconstpointer b
)
2292 const MachineClass
*mc1
= a
, *mc2
= b
;
2295 if (mc1
->family
== NULL
) {
2296 if (mc2
->family
== NULL
) {
2297 /* Compare standalone machine types against each other; they sort
2298 * in increasing order.
2300 return strcmp(object_class_get_name(OBJECT_CLASS(mc1
)),
2301 object_class_get_name(OBJECT_CLASS(mc2
)));
2304 /* Standalone machine types sort after families. */
2308 if (mc2
->family
== NULL
) {
2309 /* Families sort before standalone machine types. */
2313 /* Families sort between each other alphabetically increasingly. */
2314 res
= strcmp(mc1
->family
, mc2
->family
);
2319 /* Within the same family, machine types sort in decreasing order. */
2320 return strcmp(object_class_get_name(OBJECT_CLASS(mc2
)),
2321 object_class_get_name(OBJECT_CLASS(mc1
)));
2324 static MachineClass
*machine_parse(const char *name
, GSList
*machines
)
2329 if (is_help_option(name
)) {
2330 printf("Supported machines are:\n");
2331 machines
= g_slist_sort(machines
, machine_class_cmp
);
2332 for (el
= machines
; el
; el
= el
->next
) {
2333 MachineClass
*mc
= el
->data
;
2335 printf("%-20s %s (alias of %s)\n", mc
->alias
, mc
->desc
, mc
->name
);
2337 printf("%-20s %s%s%s\n", mc
->name
, mc
->desc
,
2338 mc
->is_default
? " (default)" : "",
2339 mc
->deprecation_reason
? " (deprecated)" : "");
2344 mc
= find_machine(name
, machines
);
2346 error_report("unsupported machine type");
2347 error_printf("Use -machine help to list supported machines\n");
2353 void qemu_add_exit_notifier(Notifier
*notify
)
2355 notifier_list_add(&exit_notifiers
, notify
);
2358 void qemu_remove_exit_notifier(Notifier
*notify
)
2360 notifier_remove(notify
);
2363 static void qemu_run_exit_notifiers(void)
2365 notifier_list_notify(&exit_notifiers
, NULL
);
2368 static const char *pid_file
;
2369 static Notifier qemu_unlink_pidfile_notifier
;
2371 static void qemu_unlink_pidfile(Notifier
*n
, void *data
)
2378 bool machine_init_done
;
2380 void qemu_add_machine_init_done_notifier(Notifier
*notify
)
2382 notifier_list_add(&machine_init_done_notifiers
, notify
);
2383 if (machine_init_done
) {
2384 notify
->notify(notify
, NULL
);
2388 void qemu_remove_machine_init_done_notifier(Notifier
*notify
)
2390 notifier_remove(notify
);
2393 static void qemu_run_machine_init_done_notifiers(void)
2395 machine_init_done
= true;
2396 notifier_list_notify(&machine_init_done_notifiers
, NULL
);
2399 static const QEMUOption
*lookup_opt(int argc
, char **argv
,
2400 const char **poptarg
, int *poptind
)
2402 const QEMUOption
*popt
;
2403 int optind
= *poptind
;
2404 char *r
= argv
[optind
];
2407 loc_set_cmdline(argv
, optind
, 1);
2409 /* Treat --foo the same as -foo. */
2412 popt
= qemu_options
;
2415 error_report("invalid option");
2418 if (!strcmp(popt
->name
, r
+ 1))
2422 if (popt
->flags
& HAS_ARG
) {
2423 if (optind
>= argc
) {
2424 error_report("requires an argument");
2427 optarg
= argv
[optind
++];
2428 loc_set_cmdline(argv
, optind
- 2, 2);
2439 static MachineClass
*select_machine(void)
2441 GSList
*machines
= object_class_get_list(TYPE_MACHINE
, false);
2442 MachineClass
*machine_class
= find_default_machine(machines
);
2447 loc_push_none(&loc
);
2449 opts
= qemu_get_machine_opts();
2450 qemu_opts_loc_restore(opts
);
2452 optarg
= qemu_opt_get(opts
, "type");
2454 machine_class
= machine_parse(optarg
, machines
);
2457 if (!machine_class
) {
2458 error_report("No machine specified, and there is no default");
2459 error_printf("Use -machine help to list supported machines\n");
2464 g_slist_free(machines
);
2465 return machine_class
;
2468 static int object_parse_property_opt(Object
*obj
,
2469 const char *name
, const char *value
,
2470 const char *skip
, Error
**errp
)
2472 if (g_str_equal(name
, skip
)) {
2476 if (!object_property_parse(obj
, name
, value
, errp
)) {
2483 static int machine_set_property(void *opaque
,
2484 const char *name
, const char *value
,
2487 g_autofree
char *qom_name
= g_strdup(name
);
2490 for (p
= qom_name
; *p
; p
++) {
2496 /* Legacy options do not correspond to MachineState properties. */
2497 if (g_str_equal(qom_name
, "accel")) {
2500 if (g_str_equal(qom_name
, "igd-passthru")) {
2501 object_register_sugar_prop(ACCEL_CLASS_NAME("xen"), qom_name
, value
);
2504 if (g_str_equal(qom_name
, "kvm-shadow-mem") ||
2505 g_str_equal(qom_name
, "kernel-irqchip")) {
2506 object_register_sugar_prop(ACCEL_CLASS_NAME("kvm"), qom_name
, value
);
2510 return object_parse_property_opt(opaque
, name
, value
, "type", errp
);
2514 * Initial object creation happens before all other
2515 * QEMU data types are created. The majority of objects
2516 * can be created at this point. The rng-egd object
2517 * cannot be created here, as it depends on the chardev
2520 static bool object_create_initial(const char *type
, QemuOpts
*opts
)
2522 if (user_creatable_print_help(type
, opts
)) {
2527 * Objects should not be made "delayed" without a reason. If you
2528 * add one, state the reason in a comment!
2531 /* Reason: rng-egd property "chardev" */
2532 if (g_str_equal(type
, "rng-egd")) {
2536 #if defined(CONFIG_VHOST_USER) && defined(CONFIG_LINUX)
2537 /* Reason: cryptodev-vhost-user property "chardev" */
2538 if (g_str_equal(type
, "cryptodev-vhost-user")) {
2543 /* Reason: vhost-user-blk-server property "node-name" */
2544 if (g_str_equal(type
, "vhost-user-blk-server")) {
2548 * Reason: filter-* property "netdev" etc.
2550 if (g_str_equal(type
, "filter-buffer") ||
2551 g_str_equal(type
, "filter-dump") ||
2552 g_str_equal(type
, "filter-mirror") ||
2553 g_str_equal(type
, "filter-redirector") ||
2554 g_str_equal(type
, "colo-compare") ||
2555 g_str_equal(type
, "filter-rewriter") ||
2556 g_str_equal(type
, "filter-replay")) {
2560 /* Memory allocation by backends needs to be done
2561 * after configure_accelerator() (due to the tcg_enabled()
2562 * checks at memory_region_init_*()).
2564 * Also, allocation of large amounts of memory may delay
2565 * chardev initialization for too long, and trigger timeouts
2566 * on software that waits for a monitor socket to be created
2569 if (g_str_has_prefix(type
, "memory-backend-")) {
2578 * The remainder of object creation happens after the
2579 * creation of chardev, fsdev, net clients and device data types.
2581 static bool object_create_delayed(const char *type
, QemuOpts
*opts
)
2583 return !object_create_initial(type
, opts
);
2587 static bool set_memory_options(uint64_t *ram_slots
, ram_addr_t
*maxram_size
,
2591 const char *mem_str
;
2592 const ram_addr_t default_ram_size
= mc
->default_ram_size
;
2593 QemuOpts
*opts
= qemu_find_opts_singleton("memory");
2596 loc_push_none(&loc
);
2597 qemu_opts_loc_restore(opts
);
2600 mem_str
= qemu_opt_get(opts
, "size");
2603 error_report("missing 'size' option value");
2607 sz
= qemu_opt_get_size(opts
, "size", ram_size
);
2609 /* Fix up legacy suffix-less format */
2610 if (g_ascii_isdigit(mem_str
[strlen(mem_str
) - 1])) {
2611 uint64_t overflow_check
= sz
;
2614 if (sz
/ MiB
!= overflow_check
) {
2615 error_report("too large 'size' option value");
2621 /* backward compatibility behaviour for case "-m 0" */
2623 sz
= default_ram_size
;
2626 sz
= QEMU_ALIGN_UP(sz
, 8192);
2627 if (mc
->fixup_ram_size
) {
2628 sz
= mc
->fixup_ram_size(sz
);
2631 if (ram_size
!= sz
) {
2632 error_report("ram size too large");
2636 /* store value for the future use */
2637 qemu_opt_set_number(opts
, "size", ram_size
, &error_abort
);
2638 *maxram_size
= ram_size
;
2640 if (qemu_opt_get(opts
, "maxmem")) {
2643 sz
= qemu_opt_get_size(opts
, "maxmem", 0);
2644 slots
= qemu_opt_get_number(opts
, "slots", 0);
2645 if (sz
< ram_size
) {
2646 error_report("invalid value of -m option maxmem: "
2647 "maximum memory size (0x%" PRIx64
") must be at least "
2648 "the initial memory size (0x" RAM_ADDR_FMT
")",
2651 } else if (slots
&& sz
== ram_size
) {
2652 error_report("invalid value of -m option maxmem: "
2653 "memory slots were specified but maximum memory size "
2654 "(0x%" PRIx64
") is equal to the initial memory size "
2655 "(0x" RAM_ADDR_FMT
")", sz
, ram_size
);
2661 } else if (qemu_opt_get(opts
, "slots")) {
2662 error_report("invalid -m option value: missing 'maxmem' option");
2670 static int global_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2674 g
= g_malloc0(sizeof(*g
));
2675 g
->driver
= qemu_opt_get(opts
, "driver");
2676 g
->property
= qemu_opt_get(opts
, "property");
2677 g
->value
= qemu_opt_get(opts
, "value");
2678 qdev_prop_register_global(g
);
2682 static int qemu_read_default_config_file(void)
2685 g_autofree
char *file
= get_relocated_path(CONFIG_QEMU_CONFDIR
"/qemu.conf");
2687 ret
= qemu_read_config_file(file
);
2688 if (ret
< 0 && ret
!= -ENOENT
) {
2695 static void user_register_global_props(void)
2697 qemu_opts_foreach(qemu_find_opts("global"),
2698 global_init_func
, NULL
, NULL
);
2701 static int do_configure_icount(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2703 icount_configure(opts
, errp
);
2707 static int accelerator_set_property(void *opaque
,
2708 const char *name
, const char *value
,
2711 return object_parse_property_opt(opaque
, name
, value
, "accel", errp
);
2714 static int do_configure_accelerator(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2716 bool *p_init_failed
= opaque
;
2717 const char *acc
= qemu_opt_get(opts
, "accel");
2718 AccelClass
*ac
= accel_find(acc
);
2721 bool qtest_with_kvm
;
2723 qtest_with_kvm
= g_str_equal(acc
, "kvm") && qtest_chrdev
!= NULL
;
2726 *p_init_failed
= true;
2727 if (!qtest_with_kvm
) {
2728 error_report("invalid accelerator %s", acc
);
2732 accel
= ACCEL(object_new_with_class(OBJECT_CLASS(ac
)));
2733 object_apply_compat_props(OBJECT(accel
));
2734 qemu_opt_foreach(opts
, accelerator_set_property
,
2738 ret
= accel_init_machine(accel
, current_machine
);
2740 *p_init_failed
= true;
2741 if (!qtest_with_kvm
|| ret
!= -ENOENT
) {
2742 error_report("failed to initialize %s: %s", acc
, strerror(-ret
));
2750 static void configure_accelerators(const char *progname
)
2753 bool init_failed
= false;
2755 qemu_opts_foreach(qemu_find_opts("icount"),
2756 do_configure_icount
, NULL
, &error_fatal
);
2758 accel
= qemu_opt_get(qemu_get_machine_opts(), "accel");
2759 if (QTAILQ_EMPTY(&qemu_accel_opts
.head
)) {
2760 char **accel_list
, **tmp
;
2762 if (accel
== NULL
) {
2763 /* Select the default accelerator */
2764 bool have_tcg
= accel_find("tcg");
2765 bool have_kvm
= accel_find("kvm");
2767 if (have_tcg
&& have_kvm
) {
2768 if (g_str_has_suffix(progname
, "kvm")) {
2769 /* If the program name ends with "kvm", we prefer KVM */
2774 } else if (have_kvm
) {
2776 } else if (have_tcg
) {
2779 error_report("No accelerator selected and"
2780 " no default accelerator available");
2784 accel_list
= g_strsplit(accel
, ":", 0);
2786 for (tmp
= accel_list
; *tmp
; tmp
++) {
2788 * Filter invalid accelerators here, to prevent obscenities
2789 * such as "-machine accel=tcg,,thread=single".
2791 if (accel_find(*tmp
)) {
2792 qemu_opts_parse_noisily(qemu_find_opts("accel"), *tmp
, true);
2795 error_report("invalid accelerator %s", *tmp
);
2798 g_strfreev(accel_list
);
2800 if (accel
!= NULL
) {
2801 error_report("The -accel and \"-machine accel=\" options are incompatible");
2806 if (!qemu_opts_foreach(qemu_find_opts("accel"),
2807 do_configure_accelerator
, &init_failed
, &error_fatal
)) {
2809 error_report("no accelerator found");
2814 if (init_failed
&& !qtest_chrdev
) {
2815 AccelClass
*ac
= ACCEL_GET_CLASS(current_accel());
2816 error_report("falling back to %s", ac
->name
);
2819 if (icount_enabled() && !tcg_enabled()) {
2820 error_report("-icount is not allowed with hardware virtualization");
2825 static void create_default_memdev(MachineState
*ms
, const char *path
)
2828 MachineClass
*mc
= MACHINE_GET_CLASS(ms
);
2830 obj
= object_new(path
? TYPE_MEMORY_BACKEND_FILE
: TYPE_MEMORY_BACKEND_RAM
);
2832 object_property_set_str(obj
, "mem-path", path
, &error_fatal
);
2834 object_property_set_int(obj
, "size", ms
->ram_size
, &error_fatal
);
2835 object_property_add_child(object_get_objects_root(), mc
->default_ram_id
,
2837 /* Ensure backend's memory region name is equal to mc->default_ram_id */
2838 object_property_set_bool(obj
, "x-use-canonical-path-for-ramblock-id",
2839 false, &error_fatal
);
2840 user_creatable_complete(USER_CREATABLE(obj
), &error_fatal
);
2842 object_property_set_str(OBJECT(ms
), "memory-backend", mc
->default_ram_id
,
2847 * Find a likely location for support files using the location of the binary.
2848 * When running from the build tree this will be "$bindir/pc-bios".
2849 * Otherwise, this is CONFIG_QEMU_DATADIR (possibly relocated).
2851 * The caller must use g_free() to free the returned data when it is
2852 * no longer required.
2854 static char *find_datadir(void)
2856 g_autofree
char *dir
= NULL
;
2858 dir
= g_build_filename(qemu_get_exec_dir(), "pc-bios", NULL
);
2859 if (g_file_test(dir
, G_FILE_TEST_IS_DIR
)) {
2860 return g_steal_pointer(&dir
);
2863 return get_relocated_path(CONFIG_QEMU_DATADIR
);
2866 void qemu_init(int argc
, char **argv
, char **envp
)
2869 int snapshot
, linux_boot
;
2870 const char *initrd_filename
;
2871 const char *kernel_filename
, *kernel_cmdline
;
2872 const char *boot_order
= NULL
;
2873 const char *boot_once
= NULL
;
2875 QemuOpts
*opts
, *machine_opts
;
2876 QemuOpts
*icount_opts
= NULL
, *accel_opts
= NULL
;
2877 QemuOptsList
*olist
;
2880 const char *loadvm
= NULL
;
2881 MachineClass
*machine_class
;
2882 const char *cpu_option
;
2883 const char *vga_model
= NULL
;
2884 const char *incoming
= NULL
;
2885 bool userconfig
= true;
2886 bool nographic
= false;
2887 int display_remote
= 0;
2888 const char *log_mask
= NULL
;
2889 const char *log_file
= NULL
;
2890 char *trace_file
= NULL
;
2891 ram_addr_t maxram_size
;
2892 uint64_t ram_slots
= 0;
2893 FILE *vmstate_dump_file
= NULL
;
2894 Error
*main_loop_err
= NULL
;
2896 bool list_data_dirs
= false;
2898 const char *mem_path
= NULL
;
2899 bool have_custom_ram_size
;
2900 BlockdevOptionsQueue bdo_queue
= QSIMPLEQ_HEAD_INITIALIZER(bdo_queue
);
2901 QemuPluginList plugin_list
= QTAILQ_HEAD_INITIALIZER(plugin_list
);
2902 int mem_prealloc
= 0; /* force preallocation of physical target memory */
2904 os_set_line_buffering();
2906 error_init(argv
[0]);
2907 module_call_init(MODULE_INIT_TRACE
);
2909 qemu_init_cpu_list();
2910 qemu_init_cpu_loop();
2912 qemu_mutex_lock_iothread();
2914 atexit(qemu_run_exit_notifiers
);
2915 qemu_init_exec_dir(argv
[0]);
2917 module_call_init(MODULE_INIT_QOM
);
2918 module_call_init(MODULE_INIT_MIGRATION
);
2920 qemu_add_opts(&qemu_drive_opts
);
2921 qemu_add_drive_opts(&qemu_legacy_drive_opts
);
2922 qemu_add_drive_opts(&qemu_common_drive_opts
);
2923 qemu_add_drive_opts(&qemu_drive_opts
);
2924 qemu_add_drive_opts(&bdrv_runtime_opts
);
2925 qemu_add_opts(&qemu_chardev_opts
);
2926 qemu_add_opts(&qemu_device_opts
);
2927 qemu_add_opts(&qemu_netdev_opts
);
2928 qemu_add_opts(&qemu_nic_opts
);
2929 qemu_add_opts(&qemu_net_opts
);
2930 qemu_add_opts(&qemu_rtc_opts
);
2931 qemu_add_opts(&qemu_global_opts
);
2932 qemu_add_opts(&qemu_mon_opts
);
2933 qemu_add_opts(&qemu_trace_opts
);
2934 qemu_plugin_add_opts();
2935 qemu_add_opts(&qemu_option_rom_opts
);
2936 qemu_add_opts(&qemu_machine_opts
);
2937 qemu_add_opts(&qemu_accel_opts
);
2938 qemu_add_opts(&qemu_mem_opts
);
2939 qemu_add_opts(&qemu_smp_opts
);
2940 qemu_add_opts(&qemu_boot_opts
);
2941 qemu_add_opts(&qemu_add_fd_opts
);
2942 qemu_add_opts(&qemu_object_opts
);
2943 qemu_add_opts(&qemu_tpmdev_opts
);
2944 qemu_add_opts(&qemu_realtime_opts
);
2945 qemu_add_opts(&qemu_overcommit_opts
);
2946 qemu_add_opts(&qemu_msg_opts
);
2947 qemu_add_opts(&qemu_name_opts
);
2948 qemu_add_opts(&qemu_numa_opts
);
2949 qemu_add_opts(&qemu_icount_opts
);
2950 qemu_add_opts(&qemu_semihosting_config_opts
);
2951 qemu_add_opts(&qemu_fw_cfg_opts
);
2952 module_call_init(MODULE_INIT_OPTS
);
2955 precopy_infrastructure_init();
2956 postcopy_infrastructure_init();
2957 monitor_init_globals();
2959 if (qcrypto_init(&err
) < 0) {
2960 error_reportf_err(err
, "cannot initialize crypto: ");
2964 QTAILQ_INIT(&vm_change_state_head
);
2965 os_setup_early_signal_handling();
2972 bdrv_init_with_whitelist();
2976 /* first pass of option parsing */
2978 while (optind
< argc
) {
2979 if (argv
[optind
][0] != '-') {
2983 const QEMUOption
*popt
;
2985 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
2986 switch (popt
->index
) {
2987 case QEMU_OPTION_nouserconfig
:
2995 if (qemu_read_default_config_file() < 0) {
3000 /* second pass of option parsing */
3005 if (argv
[optind
][0] != '-') {
3006 loc_set_cmdline(argv
, optind
, 1);
3007 drive_add(IF_DEFAULT
, 0, argv
[optind
++], HD_OPTS
);
3009 const QEMUOption
*popt
;
3011 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
3012 if (!(popt
->arch_mask
& arch_type
)) {
3013 error_report("Option not supported for this target");
3016 switch(popt
->index
) {
3017 case QEMU_OPTION_cpu
:
3018 /* hw initialization will check this */
3019 cpu_option
= optarg
;
3021 case QEMU_OPTION_hda
:
3022 case QEMU_OPTION_hdb
:
3023 case QEMU_OPTION_hdc
:
3024 case QEMU_OPTION_hdd
:
3025 drive_add(IF_DEFAULT
, popt
->index
- QEMU_OPTION_hda
, optarg
,
3028 case QEMU_OPTION_blockdev
:
3031 BlockdevOptionsQueueEntry
*bdo
;
3033 v
= qobject_input_visitor_new_str(optarg
, "driver",
3036 bdo
= g_new(BlockdevOptionsQueueEntry
, 1);
3037 visit_type_BlockdevOptions(v
, NULL
, &bdo
->bdo
,
3040 loc_save(&bdo
->loc
);
3041 QSIMPLEQ_INSERT_TAIL(&bdo_queue
, bdo
, entry
);
3044 case QEMU_OPTION_drive
:
3045 if (drive_def(optarg
) == NULL
) {
3049 case QEMU_OPTION_set
:
3050 if (qemu_set_option(optarg
) != 0)
3053 case QEMU_OPTION_global
:
3054 if (qemu_global_option(optarg
) != 0)
3057 case QEMU_OPTION_mtdblock
:
3058 drive_add(IF_MTD
, -1, optarg
, MTD_OPTS
);
3060 case QEMU_OPTION_sd
:
3061 drive_add(IF_SD
, -1, optarg
, SD_OPTS
);
3063 case QEMU_OPTION_pflash
:
3064 drive_add(IF_PFLASH
, -1, optarg
, PFLASH_OPTS
);
3066 case QEMU_OPTION_snapshot
:
3068 Error
*blocker
= NULL
;
3070 error_setg(&blocker
, QERR_REPLAY_NOT_SUPPORTED
,
3072 replay_add_blocker(blocker
);
3075 case QEMU_OPTION_numa
:
3076 opts
= qemu_opts_parse_noisily(qemu_find_opts("numa"),
3082 case QEMU_OPTION_display
:
3083 parse_display(optarg
);
3085 case QEMU_OPTION_nographic
:
3086 olist
= qemu_find_opts("machine");
3087 qemu_opts_parse_noisily(olist
, "graphics=off", false);
3089 dpy
.type
= DISPLAY_TYPE_NONE
;
3091 case QEMU_OPTION_curses
:
3092 #ifdef CONFIG_CURSES
3093 dpy
.type
= DISPLAY_TYPE_CURSES
;
3095 error_report("curses or iconv support is disabled");
3099 case QEMU_OPTION_portrait
:
3100 graphic_rotate
= 90;
3102 case QEMU_OPTION_rotate
:
3103 graphic_rotate
= strtol(optarg
, (char **) &optarg
, 10);
3104 if (graphic_rotate
!= 0 && graphic_rotate
!= 90 &&
3105 graphic_rotate
!= 180 && graphic_rotate
!= 270) {
3106 error_report("only 90, 180, 270 deg rotation is available");
3110 case QEMU_OPTION_kernel
:
3111 qemu_opts_set(qemu_find_opts("machine"), NULL
, "kernel", optarg
,
3114 case QEMU_OPTION_initrd
:
3115 qemu_opts_set(qemu_find_opts("machine"), NULL
, "initrd", optarg
,
3118 case QEMU_OPTION_append
:
3119 qemu_opts_set(qemu_find_opts("machine"), NULL
, "append", optarg
,
3122 case QEMU_OPTION_dtb
:
3123 qemu_opts_set(qemu_find_opts("machine"), NULL
, "dtb", optarg
,
3126 case QEMU_OPTION_cdrom
:
3127 drive_add(IF_DEFAULT
, 2, optarg
, CDROM_OPTS
);
3129 case QEMU_OPTION_boot
:
3130 opts
= qemu_opts_parse_noisily(qemu_find_opts("boot-opts"),
3136 case QEMU_OPTION_fda
:
3137 case QEMU_OPTION_fdb
:
3138 drive_add(IF_FLOPPY
, popt
->index
- QEMU_OPTION_fda
,
3141 case QEMU_OPTION_no_fd_bootchk
:
3144 case QEMU_OPTION_netdev
:
3146 if (net_client_parse(qemu_find_opts("netdev"), optarg
) == -1) {
3150 case QEMU_OPTION_nic
:
3152 if (net_client_parse(qemu_find_opts("nic"), optarg
) == -1) {
3156 case QEMU_OPTION_net
:
3158 if (net_client_parse(qemu_find_opts("net"), optarg
) == -1) {
3162 #ifdef CONFIG_LIBISCSI
3163 case QEMU_OPTION_iscsi
:
3164 opts
= qemu_opts_parse_noisily(qemu_find_opts("iscsi"),
3171 case QEMU_OPTION_audio_help
:
3172 audio_legacy_help();
3175 case QEMU_OPTION_audiodev
:
3176 audio_parse_option(optarg
);
3178 case QEMU_OPTION_soundhw
:
3179 select_soundhw (optarg
);
3184 case QEMU_OPTION_version
:
3189 opts
= qemu_opts_parse_noisily(qemu_find_opts("memory"),
3196 case QEMU_OPTION_tpmdev
:
3197 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg
) < 0) {
3202 case QEMU_OPTION_mempath
:
3205 case QEMU_OPTION_mem_prealloc
:
3214 case QEMU_OPTION_DFILTER
:
3215 qemu_set_dfilter_ranges(optarg
, &error_fatal
);
3217 case QEMU_OPTION_seed
:
3218 qemu_guest_random_seed_main(optarg
, &error_fatal
);
3221 add_device_config(DEV_GDB
, "tcp::" DEFAULT_GDBSTUB_PORT
);
3223 case QEMU_OPTION_gdb
:
3224 add_device_config(DEV_GDB
, optarg
);
3227 if (is_help_option(optarg
)) {
3228 list_data_dirs
= true;
3230 qemu_add_data_dir(g_strdup(optarg
));
3233 case QEMU_OPTION_bios
:
3234 qemu_opts_set(qemu_find_opts("machine"), NULL
, "firmware", optarg
,
3237 case QEMU_OPTION_singlestep
:
3244 keyboard_layout
= optarg
;
3246 case QEMU_OPTION_vga
:
3255 w
= strtol(p
, (char **)&p
, 10);
3258 error_report("invalid resolution or depth");
3264 h
= strtol(p
, (char **)&p
, 10);
3269 depth
= strtol(p
, (char **)&p
, 10);
3270 if (depth
!= 1 && depth
!= 2 && depth
!= 4 &&
3271 depth
!= 8 && depth
!= 15 && depth
!= 16 &&
3272 depth
!= 24 && depth
!= 32)
3274 } else if (*p
== '\0') {
3275 depth
= graphic_depth
;
3282 graphic_depth
= depth
;
3285 case QEMU_OPTION_echr
:
3288 term_escape_char
= strtol(optarg
, &r
, 0);
3290 printf("Bad argument to echr\n");
3293 case QEMU_OPTION_monitor
:
3294 default_monitor
= 0;
3295 if (strncmp(optarg
, "none", 4)) {
3296 monitor_parse(optarg
, "readline", false);
3299 case QEMU_OPTION_qmp
:
3300 monitor_parse(optarg
, "control", false);
3301 default_monitor
= 0;
3303 case QEMU_OPTION_qmp_pretty
:
3304 monitor_parse(optarg
, "control", true);
3305 default_monitor
= 0;
3307 case QEMU_OPTION_mon
:
3308 opts
= qemu_opts_parse_noisily(qemu_find_opts("mon"), optarg
,
3313 default_monitor
= 0;
3315 case QEMU_OPTION_chardev
:
3316 opts
= qemu_opts_parse_noisily(qemu_find_opts("chardev"),
3322 case QEMU_OPTION_fsdev
:
3323 olist
= qemu_find_opts("fsdev");
3325 error_report("fsdev support is disabled");
3328 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3333 case QEMU_OPTION_virtfs
: {
3336 const char *writeout
, *sock_fd
, *socket
, *path
, *security_model
,
3339 olist
= qemu_find_opts("virtfs");
3341 error_report("virtfs support is disabled");
3344 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3349 if (qemu_opt_get(opts
, "fsdriver") == NULL
||
3350 qemu_opt_get(opts
, "mount_tag") == NULL
) {
3351 error_report("Usage: -virtfs fsdriver,mount_tag=tag");
3354 fsdev
= qemu_opts_create(qemu_find_opts("fsdev"),
3355 qemu_opts_id(opts
) ?:
3356 qemu_opt_get(opts
, "mount_tag"),
3359 error_report("duplicate or invalid fsdev id: %s",
3360 qemu_opt_get(opts
, "mount_tag"));
3364 writeout
= qemu_opt_get(opts
, "writeout");
3366 #ifdef CONFIG_SYNC_FILE_RANGE
3367 qemu_opt_set(fsdev
, "writeout", writeout
, &error_abort
);
3369 error_report("writeout=immediate not supported "
3370 "on this platform");
3374 qemu_opt_set(fsdev
, "fsdriver",
3375 qemu_opt_get(opts
, "fsdriver"), &error_abort
);
3376 path
= qemu_opt_get(opts
, "path");
3378 qemu_opt_set(fsdev
, "path", path
, &error_abort
);
3380 security_model
= qemu_opt_get(opts
, "security_model");
3381 if (security_model
) {
3382 qemu_opt_set(fsdev
, "security_model", security_model
,
3385 socket
= qemu_opt_get(opts
, "socket");
3387 qemu_opt_set(fsdev
, "socket", socket
, &error_abort
);
3389 sock_fd
= qemu_opt_get(opts
, "sock_fd");
3391 qemu_opt_set(fsdev
, "sock_fd", sock_fd
, &error_abort
);
3394 qemu_opt_set_bool(fsdev
, "readonly",
3395 qemu_opt_get_bool(opts
, "readonly", 0),
3397 multidevs
= qemu_opt_get(opts
, "multidevs");
3399 qemu_opt_set(fsdev
, "multidevs", multidevs
, &error_abort
);
3401 device
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
3403 qemu_opt_set(device
, "driver", "virtio-9p-pci", &error_abort
);
3404 qemu_opt_set(device
, "fsdev",
3405 qemu_opts_id(fsdev
), &error_abort
);
3406 qemu_opt_set(device
, "mount_tag",
3407 qemu_opt_get(opts
, "mount_tag"), &error_abort
);
3410 case QEMU_OPTION_serial
:
3411 add_device_config(DEV_SERIAL
, optarg
);
3413 if (strncmp(optarg
, "mon:", 4) == 0) {
3414 default_monitor
= 0;
3417 case QEMU_OPTION_watchdog
:
3419 error_report("only one watchdog option may be given");
3424 case QEMU_OPTION_watchdog_action
:
3425 if (select_watchdog_action(optarg
) == -1) {
3426 error_report("unknown -watchdog-action parameter");
3430 case QEMU_OPTION_parallel
:
3431 add_device_config(DEV_PARALLEL
, optarg
);
3432 default_parallel
= 0;
3433 if (strncmp(optarg
, "mon:", 4) == 0) {
3434 default_monitor
= 0;
3437 case QEMU_OPTION_debugcon
:
3438 add_device_config(DEV_DEBUGCON
, optarg
);
3440 case QEMU_OPTION_loadvm
:
3443 case QEMU_OPTION_full_screen
:
3444 dpy
.has_full_screen
= true;
3445 dpy
.full_screen
= true;
3447 case QEMU_OPTION_alt_grab
:
3450 case QEMU_OPTION_ctrl_grab
:
3453 case QEMU_OPTION_no_quit
:
3454 dpy
.has_window_close
= true;
3455 dpy
.window_close
= false;
3457 case QEMU_OPTION_sdl
:
3459 dpy
.type
= DISPLAY_TYPE_SDL
;
3462 error_report("SDL support is disabled");
3465 case QEMU_OPTION_pidfile
:
3468 case QEMU_OPTION_win2k_hack
:
3469 win2k_install_hack
= 1;
3471 case QEMU_OPTION_acpitable
:
3472 opts
= qemu_opts_parse_noisily(qemu_find_opts("acpi"),
3477 acpi_table_add(opts
, &error_fatal
);
3479 case QEMU_OPTION_smbios
:
3480 opts
= qemu_opts_parse_noisily(qemu_find_opts("smbios"),
3485 smbios_entry_add(opts
, &error_fatal
);
3487 case QEMU_OPTION_fwcfg
:
3488 opts
= qemu_opts_parse_noisily(qemu_find_opts("fw_cfg"),
3494 case QEMU_OPTION_preconfig
:
3495 preconfig_exit_requested
= false;
3497 case QEMU_OPTION_enable_kvm
:
3498 olist
= qemu_find_opts("machine");
3499 qemu_opts_parse_noisily(olist
, "accel=kvm", false);
3502 case QEMU_OPTION_machine
:
3503 olist
= qemu_find_opts("machine");
3504 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3509 case QEMU_OPTION_no_kvm
:
3510 olist
= qemu_find_opts("machine");
3511 qemu_opts_parse_noisily(olist
, "accel=tcg", false);
3513 case QEMU_OPTION_accel
:
3514 accel_opts
= qemu_opts_parse_noisily(qemu_find_opts("accel"),
3516 optarg
= qemu_opt_get(accel_opts
, "accel");
3517 if (!optarg
|| is_help_option(optarg
)) {
3518 printf("Accelerators supported in QEMU binary:\n");
3519 GSList
*el
, *accel_list
= object_class_get_list(TYPE_ACCEL
,
3521 for (el
= accel_list
; el
; el
= el
->next
) {
3522 gchar
*typename
= g_strdup(object_class_get_name(
3523 OBJECT_CLASS(el
->data
)));
3524 /* omit qtest which is used for tests only */
3525 if (g_strcmp0(typename
, ACCEL_CLASS_NAME("qtest")) &&
3526 g_str_has_suffix(typename
, ACCEL_CLASS_SUFFIX
)) {
3527 gchar
**optname
= g_strsplit(typename
,
3528 ACCEL_CLASS_SUFFIX
, 0);
3529 printf("%s\n", optname
[0]);
3530 g_strfreev(optname
);
3534 g_slist_free(accel_list
);
3538 case QEMU_OPTION_usb
:
3539 olist
= qemu_find_opts("machine");
3540 qemu_opts_parse_noisily(olist
, "usb=on", false);
3542 case QEMU_OPTION_usbdevice
:
3543 error_report("'-usbdevice' is deprecated, please use "
3544 "'-device usb-...' instead");
3545 olist
= qemu_find_opts("machine");
3546 qemu_opts_parse_noisily(olist
, "usb=on", false);
3547 add_device_config(DEV_USB
, optarg
);
3549 case QEMU_OPTION_device
:
3550 if (!qemu_opts_parse_noisily(qemu_find_opts("device"),
3555 case QEMU_OPTION_smp
:
3556 if (!qemu_opts_parse_noisily(qemu_find_opts("smp-opts"),
3561 case QEMU_OPTION_vnc
:
3562 vnc_parse(optarg
, &error_fatal
);
3564 case QEMU_OPTION_no_acpi
:
3565 olist
= qemu_find_opts("machine");
3566 qemu_opts_parse_noisily(olist
, "acpi=off", false);
3568 case QEMU_OPTION_no_hpet
:
3571 case QEMU_OPTION_no_reboot
:
3574 case QEMU_OPTION_no_shutdown
:
3577 case QEMU_OPTION_show_cursor
:
3578 warn_report("The -show-cursor option is deprecated. Please "
3579 "add show-cursor=on to your -display options.");
3580 warn_report("When using the default display you can use "
3581 "-display default,show-cursor=on");
3582 dpy
.has_show_cursor
= true;
3583 dpy
.show_cursor
= true;
3585 case QEMU_OPTION_uuid
:
3586 if (qemu_uuid_parse(optarg
, &qemu_uuid
) < 0) {
3587 error_report("failed to parse UUID string: wrong format");
3590 qemu_uuid_set
= true;
3592 case QEMU_OPTION_option_rom
:
3593 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
3594 error_report("too many option ROMs");
3597 opts
= qemu_opts_parse_noisily(qemu_find_opts("option-rom"),
3602 option_rom
[nb_option_roms
].name
= qemu_opt_get(opts
, "romfile");
3603 option_rom
[nb_option_roms
].bootindex
=
3604 qemu_opt_get_number(opts
, "bootindex", -1);
3605 if (!option_rom
[nb_option_roms
].name
) {
3606 error_report("Option ROM file is not specified");
3611 case QEMU_OPTION_semihosting
:
3612 qemu_semihosting_enable();
3614 case QEMU_OPTION_semihosting_config
:
3615 if (qemu_semihosting_config_options(optarg
) != 0) {
3619 case QEMU_OPTION_name
:
3620 opts
= qemu_opts_parse_noisily(qemu_find_opts("name"),
3625 /* Capture guest name if -msg guest-name is used later */
3626 error_guest_name
= qemu_opt_get(opts
, "guest");
3628 case QEMU_OPTION_prom_env
:
3629 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
3630 error_report("too many prom variables");
3633 prom_envs
[nb_prom_envs
] = optarg
;
3636 case QEMU_OPTION_old_param
:
3639 case QEMU_OPTION_rtc
:
3640 opts
= qemu_opts_parse_noisily(qemu_find_opts("rtc"), optarg
,
3646 case QEMU_OPTION_tb_size
:
3648 error_report("TCG is disabled");
3651 warn_report("The -tb-size option is deprecated, use -accel tcg,tb-size instead");
3652 object_register_sugar_prop(ACCEL_CLASS_NAME("tcg"), "tb-size", optarg
);
3654 case QEMU_OPTION_icount
:
3655 icount_opts
= qemu_opts_parse_noisily(qemu_find_opts("icount"),
3661 case QEMU_OPTION_incoming
:
3663 runstate_set(RUN_STATE_INMIGRATE
);
3667 case QEMU_OPTION_only_migratable
:
3668 only_migratable
= 1;
3670 case QEMU_OPTION_nodefaults
:
3673 case QEMU_OPTION_xen_domid
:
3674 if (!(xen_available())) {
3675 error_report("Option not supported for this target");
3678 xen_domid
= atoi(optarg
);
3680 case QEMU_OPTION_xen_attach
:
3681 if (!(xen_available())) {
3682 error_report("Option not supported for this target");
3685 xen_mode
= XEN_ATTACH
;
3687 case QEMU_OPTION_xen_domid_restrict
:
3688 if (!(xen_available())) {
3689 error_report("Option not supported for this target");
3692 xen_domid_restrict
= true;
3694 case QEMU_OPTION_trace
:
3696 trace_file
= trace_opt_parse(optarg
);
3698 case QEMU_OPTION_plugin
:
3699 qemu_plugin_opt_parse(optarg
, &plugin_list
);
3701 case QEMU_OPTION_readconfig
:
3703 int ret
= qemu_read_config_file(optarg
);
3705 error_report("read config %s: %s", optarg
,
3711 case QEMU_OPTION_spice
:
3712 olist
= qemu_find_opts_err("spice", NULL
);
3714 ui_module_load_one("spice-core");
3715 olist
= qemu_find_opts("spice");
3718 error_report("spice support is disabled");
3721 opts
= qemu_opts_parse_noisily(olist
, optarg
, false);
3727 case QEMU_OPTION_writeconfig
:
3730 if (strcmp(optarg
, "-") == 0) {
3733 fp
= fopen(optarg
, "w");
3735 error_report("open %s: %s", optarg
,
3740 qemu_config_write(fp
);
3746 case QEMU_OPTION_qtest
:
3747 qtest_chrdev
= optarg
;
3749 case QEMU_OPTION_qtest_log
:
3752 case QEMU_OPTION_sandbox
:
3753 olist
= qemu_find_opts("sandbox");
3755 #ifndef CONFIG_SECCOMP
3756 error_report("-sandbox support is not enabled "
3757 "in this QEMU binary");
3762 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3767 case QEMU_OPTION_add_fd
:
3769 opts
= qemu_opts_parse_noisily(qemu_find_opts("add-fd"),
3775 error_report("File descriptor passing is disabled on this "
3780 case QEMU_OPTION_object
:
3781 opts
= qemu_opts_parse_noisily(qemu_find_opts("object"),
3787 case QEMU_OPTION_realtime
:
3788 warn_report("'-realtime mlock=...' is deprecated, please use "
3789 "'-overcommit mem-lock=...' instead");
3790 opts
= qemu_opts_parse_noisily(qemu_find_opts("realtime"),
3795 /* Don't override the -overcommit option if set */
3796 enable_mlock
= enable_mlock
||
3797 qemu_opt_get_bool(opts
, "mlock", true);
3799 case QEMU_OPTION_overcommit
:
3800 opts
= qemu_opts_parse_noisily(qemu_find_opts("overcommit"),
3805 /* Don't override the -realtime option if set */
3806 enable_mlock
= enable_mlock
||
3807 qemu_opt_get_bool(opts
, "mem-lock", false);
3808 enable_cpu_pm
= qemu_opt_get_bool(opts
, "cpu-pm", false);
3810 case QEMU_OPTION_msg
:
3811 opts
= qemu_opts_parse_noisily(qemu_find_opts("msg"), optarg
,
3816 configure_msg(opts
);
3818 case QEMU_OPTION_dump_vmstate
:
3819 if (vmstate_dump_file
) {
3820 error_report("only one '-dump-vmstate' "
3821 "option may be given");
3824 vmstate_dump_file
= fopen(optarg
, "w");
3825 if (vmstate_dump_file
== NULL
) {
3826 error_report("open %s: %s", optarg
, strerror(errno
));
3830 case QEMU_OPTION_enable_sync_profile
:
3833 case QEMU_OPTION_nouserconfig
:
3834 /* Nothing to be parsed here. Especially, do not error out below. */
3837 if (os_parse_cmd_args(popt
->index
, optarg
)) {
3838 error_report("Option not supported in this build");
3845 * Clear error location left behind by the loop.
3846 * Best done right after the loop. Do not insert code here!
3851 * Check for -cpu help and -device help before we call select_machine(),
3852 * which will return an error if the architecture has no default machine
3853 * type and the user did not specify one, so that the user doesn't need
3854 * to say '-cpu help -machine something'.
3856 if (cpu_option
&& is_help_option(cpu_option
)) {
3857 list_cpus(cpu_option
);
3861 if (qemu_opts_foreach(qemu_find_opts("device"),
3862 device_help_func
, NULL
, NULL
)) {
3866 user_register_global_props();
3868 replay_configure(icount_opts
);
3870 if (incoming
&& !preconfig_exit_requested
) {
3871 error_report("'preconfig' and 'incoming' options are "
3872 "mutually exclusive");
3876 configure_rtc(qemu_find_opts_singleton("rtc"));
3878 machine_class
= select_machine();
3879 object_set_machine_compat_props(machine_class
->compat_props
);
3881 have_custom_ram_size
= set_memory_options(&ram_slots
, &maxram_size
,
3885 rcu_disable_atfork();
3887 if (pid_file
&& !qemu_write_pidfile(pid_file
, &err
)) {
3888 error_reportf_err(err
, "cannot create PID file: ");
3892 qemu_unlink_pidfile_notifier
.notify
= qemu_unlink_pidfile
;
3893 qemu_add_exit_notifier(&qemu_unlink_pidfile_notifier
);
3895 if (qemu_init_main_loop(&main_loop_err
)) {
3896 error_report_err(main_loop_err
);
3900 #ifdef CONFIG_SECCOMP
3901 olist
= qemu_find_opts_err("sandbox", NULL
);
3903 qemu_opts_foreach(olist
, parse_sandbox
, NULL
, &error_fatal
);
3907 qemu_opts_foreach(qemu_find_opts("name"),
3908 parse_name
, NULL
, &error_fatal
);
3911 qemu_opts_foreach(qemu_find_opts("add-fd"),
3912 parse_add_fd
, NULL
, &error_fatal
);
3914 qemu_opts_foreach(qemu_find_opts("add-fd"),
3915 cleanup_add_fd
, NULL
, &error_fatal
);
3918 current_machine
= MACHINE(object_new_with_class(OBJECT_CLASS(machine_class
)));
3919 if (machine_help_func(qemu_get_machine_opts(), current_machine
)) {
3922 object_property_add_child(object_get_root(), "machine",
3923 OBJECT(current_machine
));
3924 object_property_add_child(container_get(OBJECT(current_machine
),
3926 "sysbus", OBJECT(sysbus_get_default()));
3928 if (machine_class
->minimum_page_bits
) {
3929 if (!set_preferred_target_page_bits(machine_class
->minimum_page_bits
)) {
3930 /* This would be a board error: specifying a minimum smaller than
3931 * a target's compile-time fixed setting.
3933 g_assert_not_reached();
3937 cpu_exec_init_all();
3939 if (machine_class
->hw_version
) {
3940 qemu_set_hw_version(machine_class
->hw_version
);
3943 if (!trace_init_backends()) {
3946 trace_init_file(trace_file
);
3948 /* Open the logfile at this point and set the log mask if necessary.
3950 qemu_set_log_filename(log_file
, &error_fatal
);
3953 mask
= qemu_str_to_log_mask(log_mask
);
3955 qemu_print_log_usage(stdout
);
3963 /* add configured firmware directories */
3964 dirs
= g_strsplit(CONFIG_QEMU_FIRMWAREPATH
, G_SEARCHPATH_SEPARATOR_S
, 0);
3965 for (i
= 0; dirs
[i
] != NULL
; i
++) {
3966 qemu_add_data_dir(get_relocated_path(dirs
[i
]));
3970 /* try to find datadir relative to the executable path */
3971 qemu_add_data_dir(find_datadir());
3973 /* -L help lists the data directories and exits. */
3974 if (list_data_dirs
) {
3975 for (i
= 0; i
< data_dir_idx
; i
++) {
3976 printf("%s\n", data_dir
[i
]);
3981 /* machine_class: default to UP */
3982 machine_class
->max_cpus
= machine_class
->max_cpus
?: 1;
3983 machine_class
->min_cpus
= machine_class
->min_cpus
?: 1;
3984 machine_class
->default_cpus
= machine_class
->default_cpus
?: 1;
3986 /* default to machine_class->default_cpus */
3987 current_machine
->smp
.cpus
= machine_class
->default_cpus
;
3988 current_machine
->smp
.max_cpus
= machine_class
->default_cpus
;
3989 current_machine
->smp
.cores
= 1;
3990 current_machine
->smp
.threads
= 1;
3991 current_machine
->smp
.sockets
= 1;
3993 machine_class
->smp_parse(current_machine
,
3994 qemu_opts_find(qemu_find_opts("smp-opts"), NULL
));
3996 /* sanity-check smp_cpus and max_cpus against machine_class */
3997 if (current_machine
->smp
.cpus
< machine_class
->min_cpus
) {
3998 error_report("Invalid SMP CPUs %d. The min CPUs "
3999 "supported by machine '%s' is %d",
4000 current_machine
->smp
.cpus
,
4001 machine_class
->name
, machine_class
->min_cpus
);
4004 if (current_machine
->smp
.max_cpus
> machine_class
->max_cpus
) {
4005 error_report("Invalid SMP CPUs %d. The max CPUs "
4006 "supported by machine '%s' is %d",
4007 current_machine
->smp
.max_cpus
,
4008 machine_class
->name
, machine_class
->max_cpus
);
4015 val
= g_strdup_printf("%d", current_machine
->smp
.cpus
);
4016 object_register_sugar_prop("memory-backend", "prealloc-threads", val
);
4018 object_register_sugar_prop("memory-backend", "prealloc", "on");
4022 * Get the default machine options from the machine if it is not already
4023 * specified either by the configuration file or by the command line.
4025 if (machine_class
->default_machine_opts
) {
4026 qemu_opts_set_defaults(qemu_find_opts("machine"),
4027 machine_class
->default_machine_opts
, 0);
4030 /* process plugin before CPUs are created, but once -smp has been parsed */
4031 if (qemu_plugin_load_list(&plugin_list
)) {
4035 qemu_opts_foreach(qemu_find_opts("device"),
4036 default_driver_check
, NULL
, NULL
);
4037 qemu_opts_foreach(qemu_find_opts("global"),
4038 default_driver_check
, NULL
, NULL
);
4040 if (!vga_model
&& !default_vga
) {
4041 vga_interface_type
= VGA_DEVICE
;
4043 if (!has_defaults
|| machine_class
->no_serial
) {
4046 if (!has_defaults
|| machine_class
->no_parallel
) {
4047 default_parallel
= 0;
4049 if (!has_defaults
|| machine_class
->no_floppy
) {
4052 if (!has_defaults
|| machine_class
->no_cdrom
) {
4055 if (!has_defaults
|| machine_class
->no_sdcard
) {
4058 if (!has_defaults
) {
4059 default_monitor
= 0;
4064 if (is_daemonized()) {
4065 if (!preconfig_exit_requested
) {
4066 error_report("'preconfig' and 'daemonize' options are "
4067 "mutually exclusive");
4071 /* According to documentation and historically, -nographic redirects
4072 * serial port, parallel port and monitor to stdio, which does not work
4073 * with -daemonize. We can redirect these to null instead, but since
4074 * -nographic is legacy, let's just error out.
4075 * We disallow -nographic only if all other ports are not redirected
4076 * explicitly, to not break existing legacy setups which uses
4077 * -nographic _and_ redirects all ports explicitly - this is valid
4078 * usage, -nographic is just a no-op in this case.
4081 && (default_parallel
|| default_serial
|| default_monitor
)) {
4082 error_report("-nographic cannot be used with -daemonize");
4085 #ifdef CONFIG_CURSES
4086 if (dpy
.type
== DISPLAY_TYPE_CURSES
) {
4087 error_report("curses display cannot be used with -daemonize");
4094 if (default_parallel
)
4095 add_device_config(DEV_PARALLEL
, "null");
4096 if (default_serial
&& default_monitor
) {
4097 add_device_config(DEV_SERIAL
, "mon:stdio");
4100 add_device_config(DEV_SERIAL
, "stdio");
4101 if (default_monitor
)
4102 monitor_parse("stdio", "readline", false);
4106 add_device_config(DEV_SERIAL
, "vc:80Cx24C");
4107 if (default_parallel
)
4108 add_device_config(DEV_PARALLEL
, "vc:80Cx24C");
4109 if (default_monitor
)
4110 monitor_parse("vc:80Cx24C", "readline", false);
4113 #if defined(CONFIG_VNC)
4114 if (!QTAILQ_EMPTY(&(qemu_find_opts("vnc")->head
))) {
4118 if (dpy
.type
== DISPLAY_TYPE_DEFAULT
&& !display_remote
) {
4119 if (!qemu_display_find_default(&dpy
)) {
4120 dpy
.type
= DISPLAY_TYPE_NONE
;
4121 #if defined(CONFIG_VNC)
4122 vnc_parse("localhost:0,to=99,id=default", &error_abort
);
4126 if (dpy
.type
== DISPLAY_TYPE_DEFAULT
) {
4127 dpy
.type
= DISPLAY_TYPE_NONE
;
4130 if ((alt_grab
|| ctrl_grab
) && dpy
.type
!= DISPLAY_TYPE_SDL
) {
4131 error_report("-alt-grab and -ctrl-grab are only valid "
4132 "for SDL, ignoring option");
4134 if (dpy
.has_window_close
&&
4135 (dpy
.type
!= DISPLAY_TYPE_GTK
&& dpy
.type
!= DISPLAY_TYPE_SDL
)) {
4136 error_report("-no-quit is only valid for GTK and SDL, "
4140 qemu_display_early_init(&dpy
);
4141 qemu_console_early_init();
4143 if (dpy
.has_gl
&& dpy
.gl
!= DISPLAYGL_MODE_OFF
&& display_opengl
== 0) {
4144 #if defined(CONFIG_OPENGL)
4145 error_report("OpenGL is not supported by the display");
4147 error_report("OpenGL support is disabled");
4155 qemu_opts_foreach(qemu_find_opts("object"),
4156 user_creatable_add_opts_foreach
,
4157 object_create_initial
, &error_fatal
);
4159 /* spice needs the timers to be initialized by this point */
4160 /* spice must initialize before audio as it changes the default auiodev */
4161 /* spice must initialize before chardevs (for spicevmc and spiceport) */
4164 qemu_opts_foreach(qemu_find_opts("chardev"),
4165 chardev_init_func
, NULL
, &error_fatal
);
4167 #ifdef CONFIG_VIRTFS
4168 qemu_opts_foreach(qemu_find_opts("fsdev"),
4169 fsdev_init_func
, NULL
, &error_fatal
);
4173 * Note: we need to create audio and block backends before
4174 * machine_set_property(), so machine properties can refer to
4177 configure_blockdev(&bdo_queue
, machine_class
, snapshot
);
4178 audio_init_audiodevs();
4180 machine_opts
= qemu_get_machine_opts();
4181 qemu_opt_foreach(machine_opts
, machine_set_property
, current_machine
,
4183 current_machine
->ram_size
= ram_size
;
4184 current_machine
->maxram_size
= maxram_size
;
4185 current_machine
->ram_slots
= ram_slots
;
4188 * Note: uses machine properties such as kernel-irqchip, must run
4189 * after machine_set_property().
4191 configure_accelerators(argv
[0]);
4194 * Beware, QOM objects created before this point miss global and
4195 * compat properties.
4197 * Global properties get set up by qdev_prop_register_global(),
4198 * called from user_register_global_props(), and certain option
4199 * desugaring. Also in CPU feature desugaring (buried in
4200 * parse_cpu_option()), which happens below this point, but may
4201 * only target the CPU type, which can only be created after
4202 * parse_cpu_option() returned the type.
4204 * Machine compat properties: object_set_machine_compat_props().
4205 * Accelerator compat props: object_set_accelerator_compat_props(),
4206 * called from configure_accelerator().
4209 if (!qtest_enabled() && machine_class
->deprecation_reason
) {
4210 error_report("Machine type '%s' is deprecated: %s",
4211 machine_class
->name
, machine_class
->deprecation_reason
);
4215 * Note: creates a QOM object, must run only after global and
4216 * compat properties have been set up.
4218 migration_object_init();
4221 qtest_server_init(qtest_chrdev
, qtest_log
, &error_fatal
);
4224 machine_opts
= qemu_get_machine_opts();
4225 kernel_filename
= qemu_opt_get(machine_opts
, "kernel");
4226 initrd_filename
= qemu_opt_get(machine_opts
, "initrd");
4227 kernel_cmdline
= qemu_opt_get(machine_opts
, "append");
4228 bios_name
= qemu_opt_get(machine_opts
, "firmware");
4230 opts
= qemu_opts_find(qemu_find_opts("boot-opts"), NULL
);
4232 boot_order
= qemu_opt_get(opts
, "order");
4234 validate_bootdevices(boot_order
, &error_fatal
);
4237 boot_once
= qemu_opt_get(opts
, "once");
4239 validate_bootdevices(boot_once
, &error_fatal
);
4242 boot_menu
= qemu_opt_get_bool(opts
, "menu", boot_menu
);
4243 boot_strict
= qemu_opt_get_bool(opts
, "strict", false);
4247 boot_order
= machine_class
->default_boot_order
;
4250 if (!kernel_cmdline
) {
4251 kernel_cmdline
= "";
4252 current_machine
->kernel_cmdline
= (char *)kernel_cmdline
;
4255 linux_boot
= (kernel_filename
!= NULL
);
4257 if (!linux_boot
&& *kernel_cmdline
!= '\0') {
4258 error_report("-append only allowed with -kernel option");
4262 if (!linux_boot
&& initrd_filename
!= NULL
) {
4263 error_report("-initrd only allowed with -kernel option");
4267 if (semihosting_enabled() && !semihosting_get_argc() && kernel_filename
) {
4268 /* fall back to the -kernel/-append */
4269 semihosting_arg_fallback(kernel_filename
, kernel_cmdline
);
4272 /* initialize cpu timers and VCPU throttle modules */
4276 QemuOptsList
*net
= qemu_find_opts("net");
4277 qemu_opts_set(net
, NULL
, "type", "nic", &error_abort
);
4279 qemu_opts_set(net
, NULL
, "type", "user", &error_abort
);
4283 if (net_init_clients(&err
) < 0) {
4284 error_report_err(err
);
4288 qemu_opts_foreach(qemu_find_opts("object"),
4289 user_creatable_add_opts_foreach
,
4290 object_create_delayed
, &error_fatal
);
4292 if (tpm_init() < 0) {
4298 dirty_bitmap_mig_init();
4300 qemu_opts_foreach(qemu_find_opts("mon"),
4301 mon_init_func
, NULL
, &error_fatal
);
4303 /* connect semihosting console input if requested */
4304 qemu_semihosting_console_init();
4306 if (foreach_device_config(DEV_SERIAL
, serial_parse
) < 0)
4308 if (foreach_device_config(DEV_PARALLEL
, parallel_parse
) < 0)
4310 if (foreach_device_config(DEV_DEBUGCON
, debugcon_parse
) < 0)
4313 /* now chardevs have been created we may have semihosting to connect */
4314 qemu_semihosting_connect_chardevs();
4316 /* If no default VGA is requested, the default is "none". */
4318 vga_model
= get_default_vga_model(machine_class
);
4321 select_vgahw(machine_class
, vga_model
);
4325 i
= select_watchdog(watchdog
);
4327 exit (i
== 1 ? 1 : 0);
4330 /* This checkpoint is required by replay to separate prior clock
4331 reading from the other reads, because timer polling functions query
4332 clock values from the log. */
4333 replay_checkpoint(CHECKPOINT_INIT
);
4334 qdev_machine_init();
4336 current_machine
->boot_order
= boot_order
;
4338 /* parse features once if machine provides default cpu_type */
4339 current_machine
->cpu_type
= machine_class
->default_cpu_type
;
4341 current_machine
->cpu_type
= parse_cpu_option(cpu_option
);
4344 if (current_machine
->ram_memdev_id
) {
4346 ram_addr_t backend_size
;
4348 backend
= object_resolve_path_type(current_machine
->ram_memdev_id
,
4349 TYPE_MEMORY_BACKEND
, NULL
);
4351 error_report("Memory backend '%s' not found",
4352 current_machine
->ram_memdev_id
);
4355 backend_size
= object_property_get_uint(backend
, "size", &error_abort
);
4356 if (have_custom_ram_size
&& backend_size
!= ram_size
) {
4357 error_report("Size specified by -m option must match size of "
4358 "explicitly specified 'memory-backend' property");
4362 error_report("'-mem-path' can't be used together with"
4363 "'-machine memory-backend'");
4366 ram_size
= backend_size
;
4369 if (!xen_enabled()) {
4370 /* On 32-bit hosts, QEMU is limited by virtual address space */
4371 if (ram_size
> (2047 << 20) && HOST_LONG_BITS
== 32) {
4372 error_report("at most 2047 MB RAM can be simulated");
4377 parse_numa_opts(current_machine
);
4379 /* do monitor/qmp handling at preconfig state if requested */
4382 if (machine_class
->default_ram_id
&& current_machine
->ram_size
&&
4383 numa_uses_legacy_mem() && !current_machine
->ram_memdev_id
) {
4384 create_default_memdev(current_machine
, mem_path
);
4387 /* from here on runstate is RUN_STATE_PRELAUNCH */
4388 machine_run_board_init(current_machine
);
4391 * TODO To drop support for deprecated bogus if=..., move
4392 * drive_check_orphaned() here, replacing this call. Also drop
4393 * its deprecation warning, along with DriveInfo member
4394 * @claimed_by_board.
4396 drive_mark_claimed_by_board();
4402 if (hax_enabled()) {
4406 qemu_opts_foreach(qemu_find_opts("fw_cfg"),
4407 parse_fw_cfg
, fw_cfg_find(), &error_fatal
);
4409 /* init USB devices */
4410 if (machine_usb(current_machine
)) {
4411 if (foreach_device_config(DEV_USB
, usb_parse
) < 0)
4415 /* init generic devices */
4416 rom_set_order_override(FW_CFG_ORDER_OVERRIDE_DEVICE
);
4417 qemu_opts_foreach(qemu_find_opts("device"),
4418 device_init_func
, NULL
, &error_fatal
);
4420 cpu_synchronize_all_post_init();
4422 rom_reset_order_override();
4424 /* Did we create any drives that we failed to create a device for? */
4425 drive_check_orphaned();
4427 /* Don't warn about the default network setup that you get if
4428 * no command line -net or -netdev options are specified. There
4429 * are two cases that we would otherwise complain about:
4430 * (1) board doesn't support a NIC but the implicit "-net nic"
4432 * (2) CONFIG_SLIRP not set, in which case the implicit "-net nic"
4433 * sets up a nic that isn't connected to anything.
4435 if (!default_net
&& (!qtest_enabled() || has_defaults
)) {
4436 net_check_clients();
4440 qemu_boot_set(boot_once
, &error_fatal
);
4441 qemu_register_reset(restore_boot_order
, g_strdup(boot_order
));
4444 /* init local displays */
4445 ds
= init_displaystate();
4446 qemu_display_init(ds
, &dpy
);
4448 /* must be after terminal init, SDL library changes signal handlers */
4449 os_setup_signal_handling();
4451 /* init remote displays */
4453 qemu_opts_foreach(qemu_find_opts("vnc"),
4454 vnc_init_func
, NULL
, &error_fatal
);
4458 qemu_spice
.display_init();
4461 if (foreach_device_config(DEV_GDB
, gdbserver_start
) < 0) {
4465 qdev_machine_creation_done();
4467 /* TODO: once all bus devices are qdevified, this should be done
4468 * when bus is created by qdev.c */
4470 * TODO: If we had a main 'reset container' that the whole system
4471 * lived in, we could reset that using the multi-phase reset
4472 * APIs. For the moment, we just reset the sysbus, which will cause
4473 * all devices hanging off it (and all their child buses, recursively)
4474 * to be reset. Note that this will *not* reset any Device objects
4475 * which are not attached to some part of the qbus tree!
4477 qemu_register_reset(resettable_cold_reset_fn
, sysbus_get_default());
4478 qemu_run_machine_init_done_notifiers();
4480 if (rom_check_and_register_reset() != 0) {
4481 error_report("rom check and register reset failed");
4487 /* This checkpoint is required by replay to separate prior clock
4488 reading from the other reads, because timer polling functions query
4489 clock values from the log. */
4490 replay_checkpoint(CHECKPOINT_RESET
);
4491 qemu_system_reset(SHUTDOWN_CAUSE_NONE
);
4492 register_global_state();
4494 Error
*local_err
= NULL
;
4495 if (load_snapshot(loadvm
, &local_err
) < 0) {
4496 error_report_err(local_err
);
4501 if (replay_mode
!= REPLAY_MODE_NONE
) {
4502 replay_vmstate_init();
4505 qdev_prop_check_globals();
4506 if (vmstate_dump_file
) {
4508 dump_vmstate_json_to_file(vmstate_dump_file
);
4513 Error
*local_err
= NULL
;
4514 qemu_start_incoming_migration(incoming
, &local_err
);
4516 error_reportf_err(local_err
, "-incoming %s: ", incoming
);
4519 } else if (autostart
) {
4523 accel_setup_post(current_machine
);
4529 void qemu_cleanup(void)
4531 gdbserver_cleanup();
4534 * cleaning up the migration object cancels any existing migration
4535 * try to do this early so that it also stops using devices.
4537 migration_shutdown();
4540 * We must cancel all block jobs while the block layer is drained,
4541 * or cancelling will be affected by throttling and thus may block
4542 * for an extended period of time.
4543 * vm_shutdown() will bdrv_drain_all(), so we may as well include
4544 * it in the drained section.
4545 * We do not need to end this section, because we do not want any
4546 * requests happening from here on anyway.
4548 bdrv_drain_all_begin();
4550 /* No more vcpu or device emulation activity beyond this point */
4554 job_cancel_sync_all();
4559 /* vhost-user must be cleaned up before chardevs. */
4565 user_creatable_cleanup();
4566 /* TODO: unref root container, check all devices are ok */