4 * Copyright (c) 2003-2008 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 #include "qemu/osdep.h"
26 #include "qapi/error.h"
27 #include "qemu-version.h"
28 #include "qemu/cutils.h"
29 #include "qemu/help_option.h"
30 #include "qemu/uuid.h"
33 #include <sys/prctl.h>
34 #include "sysemu/seccomp.h"
38 #if defined(__APPLE__) || defined(main)
40 int qemu_main(int argc
, char **argv
, char **envp
);
41 int main(int argc
, char **argv
)
43 return qemu_main(argc
, argv
, NULL
);
46 #define main qemu_main
48 #endif /* CONFIG_SDL */
52 #define main qemu_main
53 #endif /* CONFIG_COCOA */
56 #include "qemu/error-report.h"
57 #include "qemu/sockets.h"
59 #include "hw/boards.h"
60 #include "sysemu/accel.h"
62 #include "hw/isa/isa.h"
63 #include "hw/scsi/scsi.h"
64 #include "hw/display/vga.h"
66 #include "sysemu/watchdog.h"
67 #include "hw/smbios/smbios.h"
68 #include "hw/acpi/acpi.h"
69 #include "hw/xen/xen.h"
71 #include "hw/loader.h"
72 #include "monitor/qdev.h"
73 #include "sysemu/bt.h"
75 #include "net/slirp.h"
76 #include "monitor/monitor.h"
77 #include "ui/console.h"
79 #include "sysemu/sysemu.h"
80 #include "sysemu/numa.h"
81 #include "exec/gdbstub.h"
82 #include "qemu/timer.h"
83 #include "chardev/char.h"
84 #include "qemu/bitmap.h"
86 #include "sysemu/blockdev.h"
87 #include "hw/block/block.h"
88 #include "migration/misc.h"
89 #include "migration/snapshot.h"
90 #include "migration/global_state.h"
91 #include "sysemu/tpm.h"
92 #include "sysemu/dma.h"
93 #include "hw/audio/soundhw.h"
94 #include "audio/audio.h"
95 #include "sysemu/cpus.h"
96 #include "migration/colo.h"
97 #include "sysemu/kvm.h"
98 #include "sysemu/hax.h"
99 #include "qapi/qobject-input-visitor.h"
100 #include "qapi-visit.h"
101 #include "qemu/option.h"
102 #include "qemu/config-file.h"
103 #include "qemu-options.h"
104 #include "qmp-commands.h"
105 #include "qemu/main-loop.h"
107 #include "fsdev/qemu-fsdev.h"
109 #include "sysemu/qtest.h"
111 #include "disas/disas.h"
114 #include "slirp/libslirp.h"
116 #include "trace-root.h"
117 #include "trace/control.h"
118 #include "qemu/queue.h"
119 #include "sysemu/arch_init.h"
121 #include "ui/qemu-spice.h"
122 #include "qapi/string-input-visitor.h"
123 #include "qapi/opts-visitor.h"
124 #include "qom/object_interfaces.h"
125 #include "qapi-event.h"
126 #include "exec/semihost.h"
127 #include "crypto/init.h"
128 #include "sysemu/replay.h"
129 #include "qapi/qmp/qerror.h"
130 #include "sysemu/iothread.h"
132 #define MAX_VIRTIO_CONSOLES 1
133 #define MAX_SCLP_CONSOLES 1
135 static const char *data_dir
[16];
136 static int data_dir_idx
;
137 const char *bios_name
= NULL
;
138 enum vga_retrace_method vga_retrace_method
= VGA_RETRACE_DUMB
;
140 const char* keyboard_layout
= NULL
;
142 const char *mem_path
= NULL
;
143 int mem_prealloc
= 0; /* force preallocation of physical target memory */
144 bool enable_mlock
= false;
146 NICInfo nd_table
[MAX_NICS
];
148 static int rtc_utc
= 1;
149 static int rtc_date_offset
= -1; /* -1 means no change */
150 QEMUClockType rtc_clock
;
151 int vga_interface_type
= VGA_NONE
;
152 static DisplayOptions dpy
;
154 Chardev
*serial_hds
[MAX_SERIAL_PORTS
];
155 Chardev
*parallel_hds
[MAX_PARALLEL_PORTS
];
156 Chardev
*virtcon_hds
[MAX_VIRTIO_CONSOLES
];
157 Chardev
*sclp_hds
[MAX_SCLP_CONSOLES
];
158 int win2k_install_hack
= 0;
161 unsigned int max_cpus
;
164 int acpi_enabled
= 1;
167 static int no_reboot
;
170 int graphic_rotate
= 0;
171 const char *watchdog
;
172 QEMUOptionRom option_rom
[MAX_OPTION_ROMS
];
175 const char *qemu_name
;
178 unsigned int nb_prom_envs
= 0;
179 const char *prom_envs
[MAX_PROM_ENVS
];
182 uint8_t *boot_splash_filedata
;
183 size_t boot_splash_filedata_size
;
184 uint8_t qemu_extra_params_fw
[2];
186 int icount_align_option
;
188 /* The bytes in qemu_uuid are in the order specified by RFC4122, _not_ in the
189 * little-endian "wire format" described in the SMBIOS 2.6 specification.
194 static NotifierList exit_notifiers
=
195 NOTIFIER_LIST_INITIALIZER(exit_notifiers
);
197 static NotifierList machine_init_done_notifiers
=
198 NOTIFIER_LIST_INITIALIZER(machine_init_done_notifiers
);
202 enum xen_mode xen_mode
= XEN_EMULATE
;
203 bool xen_domid_restrict
;
205 static int has_defaults
= 1;
206 static int default_serial
= 1;
207 static int default_parallel
= 1;
208 static int default_virtcon
= 1;
209 static int default_sclp
= 1;
210 static int default_monitor
= 1;
211 static int default_floppy
= 1;
212 static int default_cdrom
= 1;
213 static int default_sdcard
= 1;
214 static int default_vga
= 1;
215 static int default_net
= 1;
221 { .driver
= "isa-serial", .flag
= &default_serial
},
222 { .driver
= "isa-parallel", .flag
= &default_parallel
},
223 { .driver
= "isa-fdc", .flag
= &default_floppy
},
224 { .driver
= "floppy", .flag
= &default_floppy
},
225 { .driver
= "ide-cd", .flag
= &default_cdrom
},
226 { .driver
= "ide-hd", .flag
= &default_cdrom
},
227 { .driver
= "ide-drive", .flag
= &default_cdrom
},
228 { .driver
= "scsi-cd", .flag
= &default_cdrom
},
229 { .driver
= "scsi-hd", .flag
= &default_cdrom
},
230 { .driver
= "virtio-serial-pci", .flag
= &default_virtcon
},
231 { .driver
= "virtio-serial", .flag
= &default_virtcon
},
232 { .driver
= "VGA", .flag
= &default_vga
},
233 { .driver
= "isa-vga", .flag
= &default_vga
},
234 { .driver
= "cirrus-vga", .flag
= &default_vga
},
235 { .driver
= "isa-cirrus-vga", .flag
= &default_vga
},
236 { .driver
= "vmware-svga", .flag
= &default_vga
},
237 { .driver
= "qxl-vga", .flag
= &default_vga
},
238 { .driver
= "virtio-vga", .flag
= &default_vga
},
241 static QemuOptsList qemu_rtc_opts
= {
243 .head
= QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts
.head
),
247 .type
= QEMU_OPT_STRING
,
250 .type
= QEMU_OPT_STRING
,
253 .type
= QEMU_OPT_STRING
,
255 { /* end of list */ }
259 static QemuOptsList qemu_sandbox_opts
= {
261 .implied_opt_name
= "enable",
262 .head
= QTAILQ_HEAD_INITIALIZER(qemu_sandbox_opts
.head
),
266 .type
= QEMU_OPT_BOOL
,
270 .type
= QEMU_OPT_STRING
,
273 .name
= "elevateprivileges",
274 .type
= QEMU_OPT_STRING
,
278 .type
= QEMU_OPT_STRING
,
281 .name
= "resourcecontrol",
282 .type
= QEMU_OPT_STRING
,
284 { /* end of list */ }
288 static QemuOptsList qemu_option_rom_opts
= {
289 .name
= "option-rom",
290 .implied_opt_name
= "romfile",
291 .head
= QTAILQ_HEAD_INITIALIZER(qemu_option_rom_opts
.head
),
295 .type
= QEMU_OPT_NUMBER
,
298 .type
= QEMU_OPT_STRING
,
300 { /* end of list */ }
304 static QemuOptsList qemu_machine_opts
= {
306 .implied_opt_name
= "type",
308 .head
= QTAILQ_HEAD_INITIALIZER(qemu_machine_opts
.head
),
311 * no elements => accept any
312 * sanity checking will happen later
313 * when setting machine properties
319 static QemuOptsList qemu_accel_opts
= {
321 .implied_opt_name
= "accel",
322 .head
= QTAILQ_HEAD_INITIALIZER(qemu_accel_opts
.head
),
327 .type
= QEMU_OPT_STRING
,
328 .help
= "Select the type of accelerator",
332 .type
= QEMU_OPT_STRING
,
333 .help
= "Enable/disable multi-threaded TCG",
335 { /* end of list */ }
339 static QemuOptsList qemu_boot_opts
= {
341 .implied_opt_name
= "order",
343 .head
= QTAILQ_HEAD_INITIALIZER(qemu_boot_opts
.head
),
347 .type
= QEMU_OPT_STRING
,
350 .type
= QEMU_OPT_STRING
,
353 .type
= QEMU_OPT_BOOL
,
356 .type
= QEMU_OPT_STRING
,
358 .name
= "splash-time",
359 .type
= QEMU_OPT_STRING
,
361 .name
= "reboot-timeout",
362 .type
= QEMU_OPT_STRING
,
365 .type
= QEMU_OPT_BOOL
,
371 static QemuOptsList qemu_add_fd_opts
= {
373 .head
= QTAILQ_HEAD_INITIALIZER(qemu_add_fd_opts
.head
),
377 .type
= QEMU_OPT_NUMBER
,
378 .help
= "file descriptor of which a duplicate is added to fd set",
381 .type
= QEMU_OPT_NUMBER
,
382 .help
= "ID of the fd set to add fd to",
385 .type
= QEMU_OPT_STRING
,
386 .help
= "free-form string used to describe fd",
388 { /* end of list */ }
392 static QemuOptsList qemu_object_opts
= {
394 .implied_opt_name
= "qom-type",
395 .head
= QTAILQ_HEAD_INITIALIZER(qemu_object_opts
.head
),
401 static QemuOptsList qemu_tpmdev_opts
= {
403 .implied_opt_name
= "type",
404 .head
= QTAILQ_HEAD_INITIALIZER(qemu_tpmdev_opts
.head
),
406 /* options are defined in the TPM backends */
407 { /* end of list */ }
411 static QemuOptsList qemu_realtime_opts
= {
413 .head
= QTAILQ_HEAD_INITIALIZER(qemu_realtime_opts
.head
),
417 .type
= QEMU_OPT_BOOL
,
419 { /* end of list */ }
423 static QemuOptsList qemu_msg_opts
= {
425 .head
= QTAILQ_HEAD_INITIALIZER(qemu_msg_opts
.head
),
429 .type
= QEMU_OPT_BOOL
,
431 { /* end of list */ }
435 static QemuOptsList qemu_name_opts
= {
437 .implied_opt_name
= "guest",
439 .head
= QTAILQ_HEAD_INITIALIZER(qemu_name_opts
.head
),
443 .type
= QEMU_OPT_STRING
,
444 .help
= "Sets the name of the guest.\n"
445 "This name will be displayed in the SDL window caption.\n"
446 "The name will also be used for the VNC server",
449 .type
= QEMU_OPT_STRING
,
450 .help
= "Sets the name of the QEMU process, as shown in top etc",
452 .name
= "debug-threads",
453 .type
= QEMU_OPT_BOOL
,
454 .help
= "When enabled, name the individual threads; defaults off.\n"
455 "NOTE: The thread names are for debugging and not a\n"
458 { /* End of list */ }
462 static QemuOptsList qemu_mem_opts
= {
464 .implied_opt_name
= "size",
465 .head
= QTAILQ_HEAD_INITIALIZER(qemu_mem_opts
.head
),
470 .type
= QEMU_OPT_SIZE
,
474 .type
= QEMU_OPT_NUMBER
,
478 .type
= QEMU_OPT_SIZE
,
480 { /* end of list */ }
484 static QemuOptsList qemu_icount_opts
= {
486 .implied_opt_name
= "shift",
488 .head
= QTAILQ_HEAD_INITIALIZER(qemu_icount_opts
.head
),
492 .type
= QEMU_OPT_STRING
,
495 .type
= QEMU_OPT_BOOL
,
498 .type
= QEMU_OPT_BOOL
,
501 .type
= QEMU_OPT_STRING
,
504 .type
= QEMU_OPT_STRING
,
506 .name
= "rrsnapshot",
507 .type
= QEMU_OPT_STRING
,
509 { /* end of list */ }
513 static QemuOptsList qemu_semihosting_config_opts
= {
514 .name
= "semihosting-config",
515 .implied_opt_name
= "enable",
516 .head
= QTAILQ_HEAD_INITIALIZER(qemu_semihosting_config_opts
.head
),
520 .type
= QEMU_OPT_BOOL
,
523 .type
= QEMU_OPT_STRING
,
526 .type
= QEMU_OPT_STRING
,
528 { /* end of list */ }
532 static QemuOptsList qemu_fw_cfg_opts
= {
534 .implied_opt_name
= "name",
535 .head
= QTAILQ_HEAD_INITIALIZER(qemu_fw_cfg_opts
.head
),
539 .type
= QEMU_OPT_STRING
,
540 .help
= "Sets the fw_cfg name of the blob to be inserted",
543 .type
= QEMU_OPT_STRING
,
544 .help
= "Sets the name of the file from which\n"
545 "the fw_cfg blob will be loaded",
548 .type
= QEMU_OPT_STRING
,
549 .help
= "Sets content of the blob to be inserted from a string",
551 { /* end of list */ }
556 * Get machine options
558 * Returns: machine options (never null).
560 QemuOpts
*qemu_get_machine_opts(void)
562 return qemu_find_opts_singleton("machine");
565 const char *qemu_get_vm_name(void)
570 static void res_free(void)
572 g_free(boot_splash_filedata
);
573 boot_splash_filedata
= NULL
;
576 static int default_driver_check(void *opaque
, QemuOpts
*opts
, Error
**errp
)
578 const char *driver
= qemu_opt_get(opts
, "driver");
583 for (i
= 0; i
< ARRAY_SIZE(default_list
); i
++) {
584 if (strcmp(default_list
[i
].driver
, driver
) != 0)
586 *(default_list
[i
].flag
) = 0;
591 /***********************************************************/
594 static RunState current_run_state
= RUN_STATE_PRELAUNCH
;
596 /* We use RUN_STATE__MAX but any invalid value will do */
597 static RunState vmstop_requested
= RUN_STATE__MAX
;
598 static QemuMutex vmstop_lock
;
603 } RunStateTransition
;
605 static const RunStateTransition runstate_transitions_def
[] = {
607 { RUN_STATE_DEBUG
, RUN_STATE_RUNNING
},
608 { RUN_STATE_DEBUG
, RUN_STATE_FINISH_MIGRATE
},
609 { RUN_STATE_DEBUG
, RUN_STATE_PRELAUNCH
},
611 { RUN_STATE_INMIGRATE
, RUN_STATE_INTERNAL_ERROR
},
612 { RUN_STATE_INMIGRATE
, RUN_STATE_IO_ERROR
},
613 { RUN_STATE_INMIGRATE
, RUN_STATE_PAUSED
},
614 { RUN_STATE_INMIGRATE
, RUN_STATE_RUNNING
},
615 { RUN_STATE_INMIGRATE
, RUN_STATE_SHUTDOWN
},
616 { RUN_STATE_INMIGRATE
, RUN_STATE_SUSPENDED
},
617 { RUN_STATE_INMIGRATE
, RUN_STATE_WATCHDOG
},
618 { RUN_STATE_INMIGRATE
, RUN_STATE_GUEST_PANICKED
},
619 { RUN_STATE_INMIGRATE
, RUN_STATE_FINISH_MIGRATE
},
620 { RUN_STATE_INMIGRATE
, RUN_STATE_PRELAUNCH
},
621 { RUN_STATE_INMIGRATE
, RUN_STATE_POSTMIGRATE
},
622 { RUN_STATE_INMIGRATE
, RUN_STATE_COLO
},
624 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_PAUSED
},
625 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_FINISH_MIGRATE
},
626 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_PRELAUNCH
},
628 { RUN_STATE_IO_ERROR
, RUN_STATE_RUNNING
},
629 { RUN_STATE_IO_ERROR
, RUN_STATE_FINISH_MIGRATE
},
630 { RUN_STATE_IO_ERROR
, RUN_STATE_PRELAUNCH
},
632 { RUN_STATE_PAUSED
, RUN_STATE_RUNNING
},
633 { RUN_STATE_PAUSED
, RUN_STATE_FINISH_MIGRATE
},
634 { RUN_STATE_PAUSED
, RUN_STATE_POSTMIGRATE
},
635 { RUN_STATE_PAUSED
, RUN_STATE_PRELAUNCH
},
636 { RUN_STATE_PAUSED
, RUN_STATE_COLO
},
638 { RUN_STATE_POSTMIGRATE
, RUN_STATE_RUNNING
},
639 { RUN_STATE_POSTMIGRATE
, RUN_STATE_FINISH_MIGRATE
},
640 { RUN_STATE_POSTMIGRATE
, RUN_STATE_PRELAUNCH
},
642 { RUN_STATE_PRELAUNCH
, RUN_STATE_RUNNING
},
643 { RUN_STATE_PRELAUNCH
, RUN_STATE_FINISH_MIGRATE
},
644 { RUN_STATE_PRELAUNCH
, RUN_STATE_INMIGRATE
},
646 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_RUNNING
},
647 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_PAUSED
},
648 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_POSTMIGRATE
},
649 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_PRELAUNCH
},
650 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_COLO
},
652 { RUN_STATE_RESTORE_VM
, RUN_STATE_RUNNING
},
653 { RUN_STATE_RESTORE_VM
, RUN_STATE_PRELAUNCH
},
655 { RUN_STATE_COLO
, RUN_STATE_RUNNING
},
657 { RUN_STATE_RUNNING
, RUN_STATE_DEBUG
},
658 { RUN_STATE_RUNNING
, RUN_STATE_INTERNAL_ERROR
},
659 { RUN_STATE_RUNNING
, RUN_STATE_IO_ERROR
},
660 { RUN_STATE_RUNNING
, RUN_STATE_PAUSED
},
661 { RUN_STATE_RUNNING
, RUN_STATE_FINISH_MIGRATE
},
662 { RUN_STATE_RUNNING
, RUN_STATE_RESTORE_VM
},
663 { RUN_STATE_RUNNING
, RUN_STATE_SAVE_VM
},
664 { RUN_STATE_RUNNING
, RUN_STATE_SHUTDOWN
},
665 { RUN_STATE_RUNNING
, RUN_STATE_WATCHDOG
},
666 { RUN_STATE_RUNNING
, RUN_STATE_GUEST_PANICKED
},
667 { RUN_STATE_RUNNING
, RUN_STATE_COLO
},
669 { RUN_STATE_SAVE_VM
, RUN_STATE_RUNNING
},
671 { RUN_STATE_SHUTDOWN
, RUN_STATE_PAUSED
},
672 { RUN_STATE_SHUTDOWN
, RUN_STATE_FINISH_MIGRATE
},
673 { RUN_STATE_SHUTDOWN
, RUN_STATE_PRELAUNCH
},
675 { RUN_STATE_DEBUG
, RUN_STATE_SUSPENDED
},
676 { RUN_STATE_RUNNING
, RUN_STATE_SUSPENDED
},
677 { RUN_STATE_SUSPENDED
, RUN_STATE_RUNNING
},
678 { RUN_STATE_SUSPENDED
, RUN_STATE_FINISH_MIGRATE
},
679 { RUN_STATE_SUSPENDED
, RUN_STATE_PRELAUNCH
},
680 { RUN_STATE_SUSPENDED
, RUN_STATE_COLO
},
682 { RUN_STATE_WATCHDOG
, RUN_STATE_RUNNING
},
683 { RUN_STATE_WATCHDOG
, RUN_STATE_FINISH_MIGRATE
},
684 { RUN_STATE_WATCHDOG
, RUN_STATE_PRELAUNCH
},
685 { RUN_STATE_WATCHDOG
, RUN_STATE_COLO
},
687 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_RUNNING
},
688 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_FINISH_MIGRATE
},
689 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_PRELAUNCH
},
691 { RUN_STATE__MAX
, RUN_STATE__MAX
},
694 static bool runstate_valid_transitions
[RUN_STATE__MAX
][RUN_STATE__MAX
];
696 bool runstate_check(RunState state
)
698 return current_run_state
== state
;
701 bool runstate_store(char *str
, size_t size
)
703 const char *state
= RunState_str(current_run_state
);
704 size_t len
= strlen(state
) + 1;
709 memcpy(str
, state
, len
);
713 static void runstate_init(void)
715 const RunStateTransition
*p
;
717 memset(&runstate_valid_transitions
, 0, sizeof(runstate_valid_transitions
));
718 for (p
= &runstate_transitions_def
[0]; p
->from
!= RUN_STATE__MAX
; p
++) {
719 runstate_valid_transitions
[p
->from
][p
->to
] = true;
722 qemu_mutex_init(&vmstop_lock
);
725 /* This function will abort() on invalid state transitions */
726 void runstate_set(RunState new_state
)
728 assert(new_state
< RUN_STATE__MAX
);
730 if (current_run_state
== new_state
) {
734 if (!runstate_valid_transitions
[current_run_state
][new_state
]) {
735 error_report("invalid runstate transition: '%s' -> '%s'",
736 RunState_str(current_run_state
),
737 RunState_str(new_state
));
740 trace_runstate_set(new_state
);
741 current_run_state
= new_state
;
744 int runstate_is_running(void)
746 return runstate_check(RUN_STATE_RUNNING
);
749 bool runstate_needs_reset(void)
751 return runstate_check(RUN_STATE_INTERNAL_ERROR
) ||
752 runstate_check(RUN_STATE_SHUTDOWN
);
755 StatusInfo
*qmp_query_status(Error
**errp
)
757 StatusInfo
*info
= g_malloc0(sizeof(*info
));
759 info
->running
= runstate_is_running();
760 info
->singlestep
= singlestep
;
761 info
->status
= current_run_state
;
766 bool qemu_vmstop_requested(RunState
*r
)
768 qemu_mutex_lock(&vmstop_lock
);
769 *r
= vmstop_requested
;
770 vmstop_requested
= RUN_STATE__MAX
;
771 qemu_mutex_unlock(&vmstop_lock
);
772 return *r
< RUN_STATE__MAX
;
775 void qemu_system_vmstop_request_prepare(void)
777 qemu_mutex_lock(&vmstop_lock
);
780 void qemu_system_vmstop_request(RunState state
)
782 vmstop_requested
= state
;
783 qemu_mutex_unlock(&vmstop_lock
);
787 /***********************************************************/
788 /* real time host monotonic timer */
790 static time_t qemu_time(void)
792 return qemu_clock_get_ms(QEMU_CLOCK_HOST
) / 1000;
795 /***********************************************************/
796 /* host time/date access */
797 void qemu_get_timedate(struct tm
*tm
, int offset
)
799 time_t ti
= qemu_time();
802 if (rtc_date_offset
== -1) {
806 localtime_r(&ti
, tm
);
808 ti
-= rtc_date_offset
;
813 int qemu_timedate_diff(struct tm
*tm
)
817 if (rtc_date_offset
== -1)
819 seconds
= mktimegm(tm
);
822 tmp
.tm_isdst
= -1; /* use timezone to figure it out */
823 seconds
= mktime(&tmp
);
826 seconds
= mktimegm(tm
) + rtc_date_offset
;
828 return seconds
- qemu_time();
831 static void configure_rtc_date_offset(const char *startdate
, int legacy
)
833 time_t rtc_start_date
;
836 if (!strcmp(startdate
, "now") && legacy
) {
837 rtc_date_offset
= -1;
839 if (sscanf(startdate
, "%d-%d-%dT%d:%d:%d",
847 } else if (sscanf(startdate
, "%d-%d-%d",
859 rtc_start_date
= mktimegm(&tm
);
860 if (rtc_start_date
== -1) {
862 error_report("invalid date format");
863 error_printf("valid formats: "
864 "'2006-06-17T16:01:21' or '2006-06-17'\n");
867 rtc_date_offset
= qemu_time() - rtc_start_date
;
871 static void configure_rtc(QemuOpts
*opts
)
875 value
= qemu_opt_get(opts
, "base");
877 if (!strcmp(value
, "utc")) {
879 } else if (!strcmp(value
, "localtime")) {
880 Error
*blocker
= NULL
;
882 error_setg(&blocker
, QERR_REPLAY_NOT_SUPPORTED
,
883 "-rtc base=localtime");
884 replay_add_blocker(blocker
);
886 configure_rtc_date_offset(value
, 0);
889 value
= qemu_opt_get(opts
, "clock");
891 if (!strcmp(value
, "host")) {
892 rtc_clock
= QEMU_CLOCK_HOST
;
893 } else if (!strcmp(value
, "rt")) {
894 rtc_clock
= QEMU_CLOCK_REALTIME
;
895 } else if (!strcmp(value
, "vm")) {
896 rtc_clock
= QEMU_CLOCK_VIRTUAL
;
898 error_report("invalid option value '%s'", value
);
902 value
= qemu_opt_get(opts
, "driftfix");
904 if (!strcmp(value
, "slew")) {
905 static GlobalProperty slew_lost_ticks
= {
906 .driver
= "mc146818rtc",
907 .property
= "lost_tick_policy",
911 qdev_prop_register_global(&slew_lost_ticks
);
912 } else if (!strcmp(value
, "none")) {
913 /* discard is default */
915 error_report("invalid option value '%s'", value
);
921 /***********************************************************/
922 /* Bluetooth support */
925 static struct HCIInfo
*hci_table
[MAX_NICS
];
927 struct HCIInfo
*qemu_next_hci(void)
929 if (cur_hci
== nb_hcis
)
932 return hci_table
[cur_hci
++];
935 static int bt_hci_parse(const char *str
)
940 if (nb_hcis
>= MAX_NICS
) {
941 error_report("too many bluetooth HCIs (max %i)", MAX_NICS
);
954 bdaddr
.b
[5] = 0x56 + nb_hcis
;
955 hci
->bdaddr_set(hci
, bdaddr
.b
);
957 hci_table
[nb_hcis
++] = hci
;
962 static void bt_vhci_add(int vlan_id
)
964 struct bt_scatternet_s
*vlan
= qemu_find_bt_vlan(vlan_id
);
967 warn_report("adding a VHCI to an empty scatternet %i",
970 bt_vhci_init(bt_new_hci(vlan
));
973 static struct bt_device_s
*bt_device_add(const char *opt
)
975 struct bt_scatternet_s
*vlan
;
977 char *endp
= strstr(opt
, ",vlan=");
978 int len
= (endp
? endp
- opt
: strlen(opt
)) + 1;
981 pstrcpy(devname
, MIN(sizeof(devname
), len
), opt
);
984 vlan_id
= strtol(endp
+ 6, &endp
, 0);
986 error_report("unrecognised bluetooth vlan Id");
991 vlan
= qemu_find_bt_vlan(vlan_id
);
994 warn_report("adding a slave device to an empty scatternet %i",
997 if (!strcmp(devname
, "keyboard"))
998 return bt_keyboard_init(vlan
);
1000 error_report("unsupported bluetooth device '%s'", devname
);
1004 static int bt_parse(const char *opt
)
1006 const char *endp
, *p
;
1009 if (strstart(opt
, "hci", &endp
)) {
1010 if (!*endp
|| *endp
== ',') {
1012 if (!strstart(endp
, ",vlan=", 0))
1015 return bt_hci_parse(opt
);
1017 } else if (strstart(opt
, "vhci", &endp
)) {
1018 if (!*endp
|| *endp
== ',') {
1020 if (strstart(endp
, ",vlan=", &p
)) {
1021 vlan
= strtol(p
, (char **) &endp
, 0);
1023 error_report("bad scatternet '%s'", p
);
1027 error_report("bad parameter '%s'", endp
+ 1);
1036 } else if (strstart(opt
, "device:", &endp
))
1037 return !bt_device_add(endp
);
1039 error_report("bad bluetooth parameter '%s'", opt
);
1043 static int parse_sandbox(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1045 if (qemu_opt_get_bool(opts
, "enable", false)) {
1046 #ifdef CONFIG_SECCOMP
1047 uint32_t seccomp_opts
= QEMU_SECCOMP_SET_DEFAULT
1048 | QEMU_SECCOMP_SET_OBSOLETE
;
1049 const char *value
= NULL
;
1051 value
= qemu_opt_get(opts
, "obsolete");
1053 if (g_str_equal(value
, "allow")) {
1054 seccomp_opts
&= ~QEMU_SECCOMP_SET_OBSOLETE
;
1055 } else if (g_str_equal(value
, "deny")) {
1056 /* this is the default option, this if is here
1057 * to provide a little bit of consistency for
1058 * the command line */
1060 error_report("invalid argument for obsolete");
1065 value
= qemu_opt_get(opts
, "elevateprivileges");
1067 if (g_str_equal(value
, "deny")) {
1068 seccomp_opts
|= QEMU_SECCOMP_SET_PRIVILEGED
;
1069 } else if (g_str_equal(value
, "children")) {
1070 seccomp_opts
|= QEMU_SECCOMP_SET_PRIVILEGED
;
1072 /* calling prctl directly because we're
1073 * not sure if host has CAP_SYS_ADMIN set*/
1074 if (prctl(PR_SET_NO_NEW_PRIVS
, 1)) {
1075 error_report("failed to set no_new_privs "
1079 } else if (g_str_equal(value
, "allow")) {
1082 error_report("invalid argument for elevateprivileges");
1087 value
= qemu_opt_get(opts
, "spawn");
1089 if (g_str_equal(value
, "deny")) {
1090 seccomp_opts
|= QEMU_SECCOMP_SET_SPAWN
;
1091 } else if (g_str_equal(value
, "allow")) {
1094 error_report("invalid argument for spawn");
1099 value
= qemu_opt_get(opts
, "resourcecontrol");
1101 if (g_str_equal(value
, "deny")) {
1102 seccomp_opts
|= QEMU_SECCOMP_SET_RESOURCECTL
;
1103 } else if (g_str_equal(value
, "allow")) {
1106 error_report("invalid argument for resourcecontrol");
1111 if (seccomp_start(seccomp_opts
) < 0) {
1112 error_report("failed to install seccomp syscall filter "
1117 error_report("seccomp support is disabled");
1125 static int parse_name(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1127 const char *proc_name
;
1129 if (qemu_opt_get(opts
, "debug-threads")) {
1130 qemu_thread_naming(qemu_opt_get_bool(opts
, "debug-threads", false));
1132 qemu_name
= qemu_opt_get(opts
, "guest");
1134 proc_name
= qemu_opt_get(opts
, "process");
1136 os_set_proc_name(proc_name
);
1142 bool defaults_enabled(void)
1144 return has_defaults
;
1148 static int parse_add_fd(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1150 int fd
, dupfd
, flags
;
1152 const char *fd_opaque
= NULL
;
1155 fd
= qemu_opt_get_number(opts
, "fd", -1);
1156 fdset_id
= qemu_opt_get_number(opts
, "set", -1);
1157 fd_opaque
= qemu_opt_get(opts
, "opaque");
1160 error_report("fd option is required and must be non-negative");
1164 if (fd
<= STDERR_FILENO
) {
1165 error_report("fd cannot be a standard I/O stream");
1170 * All fds inherited across exec() necessarily have FD_CLOEXEC
1171 * clear, while qemu sets FD_CLOEXEC on all other fds used internally.
1173 flags
= fcntl(fd
, F_GETFD
);
1174 if (flags
== -1 || (flags
& FD_CLOEXEC
)) {
1175 error_report("fd is not valid or already in use");
1180 error_report("set option is required and must be non-negative");
1184 #ifdef F_DUPFD_CLOEXEC
1185 dupfd
= fcntl(fd
, F_DUPFD_CLOEXEC
, 0);
1189 qemu_set_cloexec(dupfd
);
1193 error_report("error duplicating fd: %s", strerror(errno
));
1197 /* add the duplicate fd, and optionally the opaque string, to the fd set */
1198 fdinfo
= monitor_fdset_add_fd(dupfd
, true, fdset_id
, !!fd_opaque
, fd_opaque
,
1205 static int cleanup_add_fd(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1209 fd
= qemu_opt_get_number(opts
, "fd", -1);
1216 /***********************************************************/
1217 /* QEMU Block devices */
1219 #define HD_OPTS "media=disk"
1220 #define CDROM_OPTS "media=cdrom"
1222 #define PFLASH_OPTS ""
1226 static int drive_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1228 BlockInterfaceType
*block_default_type
= opaque
;
1230 return drive_new(opts
, *block_default_type
) == NULL
;
1233 static int drive_enable_snapshot(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1235 if (qemu_opt_get(opts
, "snapshot") == NULL
) {
1236 qemu_opt_set(opts
, "snapshot", "on", &error_abort
);
1241 static void default_drive(int enable
, int snapshot
, BlockInterfaceType type
,
1242 int index
, const char *optstr
)
1247 if (!enable
|| drive_get_by_index(type
, index
)) {
1251 opts
= drive_add(type
, index
, NULL
, optstr
);
1253 drive_enable_snapshot(NULL
, opts
, NULL
);
1256 dinfo
= drive_new(opts
, type
);
1260 dinfo
->is_default
= true;
1264 static QemuOptsList qemu_smp_opts
= {
1266 .implied_opt_name
= "cpus",
1267 .merge_lists
= true,
1268 .head
= QTAILQ_HEAD_INITIALIZER(qemu_smp_opts
.head
),
1272 .type
= QEMU_OPT_NUMBER
,
1275 .type
= QEMU_OPT_NUMBER
,
1278 .type
= QEMU_OPT_NUMBER
,
1281 .type
= QEMU_OPT_NUMBER
,
1284 .type
= QEMU_OPT_NUMBER
,
1286 { /*End of list */ }
1290 static void smp_parse(QemuOpts
*opts
)
1293 unsigned cpus
= qemu_opt_get_number(opts
, "cpus", 0);
1294 unsigned sockets
= qemu_opt_get_number(opts
, "sockets", 0);
1295 unsigned cores
= qemu_opt_get_number(opts
, "cores", 0);
1296 unsigned threads
= qemu_opt_get_number(opts
, "threads", 0);
1298 /* compute missing values, prefer sockets over cores over threads */
1299 if (cpus
== 0 || sockets
== 0) {
1300 sockets
= sockets
> 0 ? sockets
: 1;
1301 cores
= cores
> 0 ? cores
: 1;
1302 threads
= threads
> 0 ? threads
: 1;
1304 cpus
= cores
* threads
* sockets
;
1306 } else if (cores
== 0) {
1307 threads
= threads
> 0 ? threads
: 1;
1308 cores
= cpus
/ (sockets
* threads
);
1309 cores
= cores
> 0 ? cores
: 1;
1310 } else if (threads
== 0) {
1311 threads
= cpus
/ (cores
* sockets
);
1312 threads
= threads
> 0 ? threads
: 1;
1313 } else if (sockets
* cores
* threads
< cpus
) {
1314 error_report("cpu topology: "
1315 "sockets (%u) * cores (%u) * threads (%u) < "
1317 sockets
, cores
, threads
, cpus
);
1321 max_cpus
= qemu_opt_get_number(opts
, "maxcpus", cpus
);
1323 if (max_cpus
< cpus
) {
1324 error_report("maxcpus must be equal to or greater than smp");
1328 if (sockets
* cores
* threads
> max_cpus
) {
1329 error_report("cpu topology: "
1330 "sockets (%u) * cores (%u) * threads (%u) > "
1332 sockets
, cores
, threads
, max_cpus
);
1338 smp_threads
= threads
;
1342 Error
*blocker
= NULL
;
1343 error_setg(&blocker
, QERR_REPLAY_NOT_SUPPORTED
, "smp");
1344 replay_add_blocker(blocker
);
1348 static void realtime_init(void)
1351 if (os_mlock() < 0) {
1352 error_report("locking memory failed");
1359 static void configure_msg(QemuOpts
*opts
)
1361 enable_timestamp_msg
= qemu_opt_get_bool(opts
, "timestamp", true);
1364 /***********************************************************/
1367 typedef struct SemihostingConfig
{
1369 SemihostingTarget target
;
1372 const char *cmdline
; /* concatenated argv */
1373 } SemihostingConfig
;
1375 static SemihostingConfig semihosting
;
1377 bool semihosting_enabled(void)
1379 return semihosting
.enabled
;
1382 SemihostingTarget
semihosting_get_target(void)
1384 return semihosting
.target
;
1387 const char *semihosting_get_arg(int i
)
1389 if (i
>= semihosting
.argc
) {
1392 return semihosting
.argv
[i
];
1395 int semihosting_get_argc(void)
1397 return semihosting
.argc
;
1400 const char *semihosting_get_cmdline(void)
1402 if (semihosting
.cmdline
== NULL
&& semihosting
.argc
> 0) {
1403 semihosting
.cmdline
= g_strjoinv(" ", (gchar
**)semihosting
.argv
);
1405 return semihosting
.cmdline
;
1408 static int add_semihosting_arg(void *opaque
,
1409 const char *name
, const char *val
,
1412 SemihostingConfig
*s
= opaque
;
1413 if (strcmp(name
, "arg") == 0) {
1415 /* one extra element as g_strjoinv() expects NULL-terminated array */
1416 s
->argv
= g_realloc(s
->argv
, (s
->argc
+ 1) * sizeof(void *));
1417 s
->argv
[s
->argc
- 1] = val
;
1418 s
->argv
[s
->argc
] = NULL
;
1423 /* Use strings passed via -kernel/-append to initialize semihosting.argv[] */
1424 static inline void semihosting_arg_fallback(const char *file
, const char *cmd
)
1429 add_semihosting_arg(&semihosting
, "arg", file
, NULL
);
1431 /* split -append and initialize argv[1..n] */
1432 cmd_token
= strtok(g_strdup(cmd
), " ");
1434 add_semihosting_arg(&semihosting
, "arg", cmd_token
, NULL
);
1435 cmd_token
= strtok(NULL
, " ");
1439 /* Now we still need this for compatibility with XEN. */
1440 bool has_igd_gfx_passthru
;
1441 static void igd_gfx_passthru(void)
1443 has_igd_gfx_passthru
= current_machine
->igd_gfx_passthru
;
1446 /***********************************************************/
1449 static int usb_device_add(const char *devname
)
1451 USBDevice
*dev
= NULL
;
1453 if (!machine_usb(current_machine
)) {
1457 dev
= usbdevice_create(devname
);
1464 static int usb_parse(const char *cmdline
)
1467 r
= usb_device_add(cmdline
);
1469 error_report("could not add USB device '%s'", cmdline
);
1474 /***********************************************************/
1475 /* machine registration */
1477 MachineState
*current_machine
;
1479 static MachineClass
*find_machine(const char *name
)
1481 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
1482 MachineClass
*mc
= NULL
;
1484 for (el
= machines
; el
; el
= el
->next
) {
1485 MachineClass
*temp
= el
->data
;
1487 if (!strcmp(temp
->name
, name
)) {
1492 !strcmp(temp
->alias
, name
)) {
1498 g_slist_free(machines
);
1502 MachineClass
*find_default_machine(void)
1504 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
1505 MachineClass
*mc
= NULL
;
1507 for (el
= machines
; el
; el
= el
->next
) {
1508 MachineClass
*temp
= el
->data
;
1510 if (temp
->is_default
) {
1516 g_slist_free(machines
);
1520 MachineInfoList
*qmp_query_machines(Error
**errp
)
1522 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
1523 MachineInfoList
*mach_list
= NULL
;
1525 for (el
= machines
; el
; el
= el
->next
) {
1526 MachineClass
*mc
= el
->data
;
1527 MachineInfoList
*entry
;
1530 info
= g_malloc0(sizeof(*info
));
1531 if (mc
->is_default
) {
1532 info
->has_is_default
= true;
1533 info
->is_default
= true;
1537 info
->has_alias
= true;
1538 info
->alias
= g_strdup(mc
->alias
);
1541 info
->name
= g_strdup(mc
->name
);
1542 info
->cpu_max
= !mc
->max_cpus
? 1 : mc
->max_cpus
;
1543 info
->hotpluggable_cpus
= mc
->has_hotpluggable_cpus
;
1545 entry
= g_malloc0(sizeof(*entry
));
1546 entry
->value
= info
;
1547 entry
->next
= mach_list
;
1551 g_slist_free(machines
);
1555 static int machine_help_func(QemuOpts
*opts
, MachineState
*machine
)
1557 ObjectProperty
*prop
;
1558 ObjectPropertyIterator iter
;
1560 if (!qemu_opt_has_help_opt(opts
)) {
1564 object_property_iter_init(&iter
, OBJECT(machine
));
1565 while ((prop
= object_property_iter_next(&iter
))) {
1570 error_printf("%s.%s=%s", MACHINE_GET_CLASS(machine
)->name
,
1571 prop
->name
, prop
->type
);
1572 if (prop
->description
) {
1573 error_printf(" (%s)\n", prop
->description
);
1582 /***********************************************************/
1583 /* main execution loop */
1585 struct vm_change_state_entry
{
1586 VMChangeStateHandler
*cb
;
1588 QLIST_ENTRY (vm_change_state_entry
) entries
;
1591 static QLIST_HEAD(vm_change_state_head
, vm_change_state_entry
) vm_change_state_head
;
1593 VMChangeStateEntry
*qemu_add_vm_change_state_handler(VMChangeStateHandler
*cb
,
1596 VMChangeStateEntry
*e
;
1598 e
= g_malloc0(sizeof (*e
));
1602 QLIST_INSERT_HEAD(&vm_change_state_head
, e
, entries
);
1606 void qemu_del_vm_change_state_handler(VMChangeStateEntry
*e
)
1608 QLIST_REMOVE (e
, entries
);
1612 void vm_state_notify(int running
, RunState state
)
1614 VMChangeStateEntry
*e
, *next
;
1616 trace_vm_state_notify(running
, state
);
1618 QLIST_FOREACH_SAFE(e
, &vm_change_state_head
, entries
, next
) {
1619 e
->cb(e
->opaque
, running
, state
);
1623 static ShutdownCause reset_requested
;
1624 static ShutdownCause shutdown_requested
;
1625 static int shutdown_signal
;
1626 static pid_t shutdown_pid
;
1627 static int powerdown_requested
;
1628 static int debug_requested
;
1629 static int suspend_requested
;
1630 static WakeupReason wakeup_reason
;
1631 static NotifierList powerdown_notifiers
=
1632 NOTIFIER_LIST_INITIALIZER(powerdown_notifiers
);
1633 static NotifierList suspend_notifiers
=
1634 NOTIFIER_LIST_INITIALIZER(suspend_notifiers
);
1635 static NotifierList wakeup_notifiers
=
1636 NOTIFIER_LIST_INITIALIZER(wakeup_notifiers
);
1637 static uint32_t wakeup_reason_mask
= ~(1 << QEMU_WAKEUP_REASON_NONE
);
1639 ShutdownCause
qemu_shutdown_requested_get(void)
1641 return shutdown_requested
;
1644 ShutdownCause
qemu_reset_requested_get(void)
1646 return reset_requested
;
1649 static int qemu_shutdown_requested(void)
1651 return atomic_xchg(&shutdown_requested
, SHUTDOWN_CAUSE_NONE
);
1654 static void qemu_kill_report(void)
1656 if (!qtest_driver() && shutdown_signal
) {
1657 if (shutdown_pid
== 0) {
1658 /* This happens for eg ^C at the terminal, so it's worth
1659 * avoiding printing an odd message in that case.
1661 error_report("terminating on signal %d", shutdown_signal
);
1663 char *shutdown_cmd
= qemu_get_pid_name(shutdown_pid
);
1665 error_report("terminating on signal %d from pid " FMT_pid
" (%s)",
1666 shutdown_signal
, shutdown_pid
,
1667 shutdown_cmd
? shutdown_cmd
: "<unknown process>");
1668 g_free(shutdown_cmd
);
1670 shutdown_signal
= 0;
1674 static ShutdownCause
qemu_reset_requested(void)
1676 ShutdownCause r
= reset_requested
;
1678 if (r
&& replay_checkpoint(CHECKPOINT_RESET_REQUESTED
)) {
1679 reset_requested
= SHUTDOWN_CAUSE_NONE
;
1682 return SHUTDOWN_CAUSE_NONE
;
1685 static int qemu_suspend_requested(void)
1687 int r
= suspend_requested
;
1688 if (r
&& replay_checkpoint(CHECKPOINT_SUSPEND_REQUESTED
)) {
1689 suspend_requested
= 0;
1695 static WakeupReason
qemu_wakeup_requested(void)
1697 return wakeup_reason
;
1700 static int qemu_powerdown_requested(void)
1702 int r
= powerdown_requested
;
1703 powerdown_requested
= 0;
1707 static int qemu_debug_requested(void)
1709 int r
= debug_requested
;
1710 debug_requested
= 0;
1715 * Reset the VM. Issue an event unless @reason is SHUTDOWN_CAUSE_NONE.
1717 void qemu_system_reset(ShutdownCause reason
)
1721 mc
= current_machine
? MACHINE_GET_CLASS(current_machine
) : NULL
;
1723 cpu_synchronize_all_states();
1725 if (mc
&& mc
->reset
) {
1728 qemu_devices_reset();
1731 qapi_event_send_reset(shutdown_caused_by_guest(reason
),
1734 cpu_synchronize_all_post_reset();
1737 void qemu_system_guest_panicked(GuestPanicInformation
*info
)
1739 qemu_log_mask(LOG_GUEST_ERROR
, "Guest crashed");
1742 current_cpu
->crash_occurred
= true;
1744 qapi_event_send_guest_panicked(GUEST_PANIC_ACTION_PAUSE
,
1745 !!info
, info
, &error_abort
);
1746 vm_stop(RUN_STATE_GUEST_PANICKED
);
1748 qapi_event_send_guest_panicked(GUEST_PANIC_ACTION_POWEROFF
,
1749 !!info
, info
, &error_abort
);
1750 qemu_system_shutdown_request(SHUTDOWN_CAUSE_GUEST_PANIC
);
1754 if (info
->type
== GUEST_PANIC_INFORMATION_TYPE_HYPER_V
) {
1755 qemu_log_mask(LOG_GUEST_ERROR
, "\nHV crash parameters: (%#"PRIx64
1756 " %#"PRIx64
" %#"PRIx64
" %#"PRIx64
" %#"PRIx64
")\n",
1757 info
->u
.hyper_v
.arg1
,
1758 info
->u
.hyper_v
.arg2
,
1759 info
->u
.hyper_v
.arg3
,
1760 info
->u
.hyper_v
.arg4
,
1761 info
->u
.hyper_v
.arg5
);
1762 } else if (info
->type
== GUEST_PANIC_INFORMATION_TYPE_S390
) {
1763 qemu_log_mask(LOG_GUEST_ERROR
, " on cpu %d: %s\n"
1764 "PSW: 0x%016" PRIx64
" 0x%016" PRIx64
"\n",
1766 S390CrashReason_str(info
->u
.s390
.reason
),
1767 info
->u
.s390
.psw_mask
,
1768 info
->u
.s390
.psw_addr
);
1770 qapi_free_GuestPanicInformation(info
);
1774 void qemu_system_reset_request(ShutdownCause reason
)
1777 shutdown_requested
= reason
;
1779 reset_requested
= reason
;
1782 qemu_notify_event();
1785 static void qemu_system_suspend(void)
1788 notifier_list_notify(&suspend_notifiers
, NULL
);
1789 runstate_set(RUN_STATE_SUSPENDED
);
1790 qapi_event_send_suspend(&error_abort
);
1793 void qemu_system_suspend_request(void)
1795 if (runstate_check(RUN_STATE_SUSPENDED
)) {
1798 suspend_requested
= 1;
1800 qemu_notify_event();
1803 void qemu_register_suspend_notifier(Notifier
*notifier
)
1805 notifier_list_add(&suspend_notifiers
, notifier
);
1808 void qemu_system_wakeup_request(WakeupReason reason
)
1810 trace_system_wakeup_request(reason
);
1812 if (!runstate_check(RUN_STATE_SUSPENDED
)) {
1815 if (!(wakeup_reason_mask
& (1 << reason
))) {
1818 runstate_set(RUN_STATE_RUNNING
);
1819 wakeup_reason
= reason
;
1820 qemu_notify_event();
1823 void qemu_system_wakeup_enable(WakeupReason reason
, bool enabled
)
1826 wakeup_reason_mask
|= (1 << reason
);
1828 wakeup_reason_mask
&= ~(1 << reason
);
1832 void qemu_register_wakeup_notifier(Notifier
*notifier
)
1834 notifier_list_add(&wakeup_notifiers
, notifier
);
1837 void qemu_system_killed(int signal
, pid_t pid
)
1839 shutdown_signal
= signal
;
1843 /* Cannot call qemu_system_shutdown_request directly because
1844 * we are in a signal handler.
1846 shutdown_requested
= SHUTDOWN_CAUSE_HOST_SIGNAL
;
1847 qemu_notify_event();
1850 void qemu_system_shutdown_request(ShutdownCause reason
)
1852 trace_qemu_system_shutdown_request(reason
);
1853 replay_shutdown_request(reason
);
1854 shutdown_requested
= reason
;
1855 qemu_notify_event();
1858 static void qemu_system_powerdown(void)
1860 qapi_event_send_powerdown(&error_abort
);
1861 notifier_list_notify(&powerdown_notifiers
, NULL
);
1864 void qemu_system_powerdown_request(void)
1866 trace_qemu_system_powerdown_request();
1867 powerdown_requested
= 1;
1868 qemu_notify_event();
1871 void qemu_register_powerdown_notifier(Notifier
*notifier
)
1873 notifier_list_add(&powerdown_notifiers
, notifier
);
1876 void qemu_system_debug_request(void)
1878 debug_requested
= 1;
1879 qemu_notify_event();
1882 static bool main_loop_should_exit(void)
1885 ShutdownCause request
;
1887 if (qemu_debug_requested()) {
1888 vm_stop(RUN_STATE_DEBUG
);
1890 if (qemu_suspend_requested()) {
1891 qemu_system_suspend();
1893 request
= qemu_shutdown_requested();
1896 qapi_event_send_shutdown(shutdown_caused_by_guest(request
),
1899 vm_stop(RUN_STATE_SHUTDOWN
);
1904 request
= qemu_reset_requested();
1907 qemu_system_reset(request
);
1909 if (!runstate_check(RUN_STATE_RUNNING
) &&
1910 !runstate_check(RUN_STATE_INMIGRATE
)) {
1911 runstate_set(RUN_STATE_PRELAUNCH
);
1914 if (qemu_wakeup_requested()) {
1916 qemu_system_reset(SHUTDOWN_CAUSE_NONE
);
1917 notifier_list_notify(&wakeup_notifiers
, &wakeup_reason
);
1918 wakeup_reason
= QEMU_WAKEUP_REASON_NONE
;
1920 qapi_event_send_wakeup(&error_abort
);
1922 if (qemu_powerdown_requested()) {
1923 qemu_system_powerdown();
1925 if (qemu_vmstop_requested(&r
)) {
1931 static void main_loop(void)
1933 #ifdef CONFIG_PROFILER
1937 #ifdef CONFIG_PROFILER
1938 ti
= profile_getclock();
1940 main_loop_wait(false);
1941 #ifdef CONFIG_PROFILER
1942 dev_time
+= profile_getclock() - ti
;
1944 } while (!main_loop_should_exit());
1947 static void version(void)
1949 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION
"\n"
1950 QEMU_COPYRIGHT
"\n");
1953 static void help(int exitcode
)
1956 printf("usage: %s [options] [disk_image]\n\n"
1957 "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
1958 error_get_progname());
1960 #define QEMU_OPTIONS_GENERATE_HELP
1961 #include "qemu-options-wrapper.h"
1963 printf("\nDuring emulation, the following keys are useful:\n"
1964 "ctrl-alt-f toggle full screen\n"
1965 "ctrl-alt-n switch to virtual console 'n'\n"
1966 "ctrl-alt toggle mouse and keyboard grab\n"
1968 "When using -nographic, press 'ctrl-a h' to get some help.\n"
1970 QEMU_HELP_BOTTOM
"\n");
1975 #define HAS_ARG 0x0001
1977 typedef struct QEMUOption
{
1984 static const QEMUOption qemu_options
[] = {
1985 { "h", 0, QEMU_OPTION_h
, QEMU_ARCH_ALL
},
1986 #define QEMU_OPTIONS_GENERATE_OPTIONS
1987 #include "qemu-options-wrapper.h"
1991 typedef struct VGAInterfaceInfo
{
1992 const char *opt_name
; /* option name */
1993 const char *name
; /* human-readable name */
1994 /* Class names indicating that support is available.
1995 * If no class is specified, the interface is always available */
1996 const char *class_names
[2];
1999 static VGAInterfaceInfo vga_interfaces
[VGA_TYPE_MAX
] = {
2005 .name
= "standard VGA",
2006 .class_names
= { "VGA", "isa-vga" },
2009 .opt_name
= "cirrus",
2010 .name
= "Cirrus VGA",
2011 .class_names
= { "cirrus-vga", "isa-cirrus-vga" },
2014 .opt_name
= "vmware",
2015 .name
= "VMWare SVGA",
2016 .class_names
= { "vmware-svga" },
2019 .opt_name
= "virtio",
2020 .name
= "Virtio VGA",
2021 .class_names
= { "virtio-vga" },
2026 .class_names
= { "qxl-vga" },
2030 .name
= "TCX framebuffer",
2031 .class_names
= { "SUNW,tcx" },
2035 .name
= "CG3 framebuffer",
2036 .class_names
= { "cgthree" },
2039 .opt_name
= "xenfb",
2043 static bool vga_interface_available(VGAInterfaceType t
)
2045 VGAInterfaceInfo
*ti
= &vga_interfaces
[t
];
2047 assert(t
< VGA_TYPE_MAX
);
2048 return !ti
->class_names
[0] ||
2049 object_class_by_name(ti
->class_names
[0]) ||
2050 object_class_by_name(ti
->class_names
[1]);
2053 static void select_vgahw(const char *p
)
2058 assert(vga_interface_type
== VGA_NONE
);
2059 for (t
= 0; t
< VGA_TYPE_MAX
; t
++) {
2060 VGAInterfaceInfo
*ti
= &vga_interfaces
[t
];
2061 if (ti
->opt_name
&& strstart(p
, ti
->opt_name
, &opts
)) {
2062 if (!vga_interface_available(t
)) {
2063 error_report("%s not available", ti
->name
);
2066 vga_interface_type
= t
;
2070 if (t
== VGA_TYPE_MAX
) {
2072 error_report("unknown vga type: %s", p
);
2076 const char *nextopt
;
2078 if (strstart(opts
, ",retrace=", &nextopt
)) {
2080 if (strstart(opts
, "dumb", &nextopt
))
2081 vga_retrace_method
= VGA_RETRACE_DUMB
;
2082 else if (strstart(opts
, "precise", &nextopt
))
2083 vga_retrace_method
= VGA_RETRACE_PRECISE
;
2084 else goto invalid_vga
;
2085 } else goto invalid_vga
;
2090 static void parse_display(const char *p
)
2094 if (strstart(p
, "sdl", &opts
)) {
2096 dpy
.type
= DISPLAY_TYPE_SDL
;
2098 const char *nextopt
;
2100 if (strstart(opts
, ",frame=", &nextopt
)) {
2101 g_printerr("The frame= sdl option is deprecated, and will be\n"
2102 "removed in a future release.\n");
2104 if (strstart(opts
, "on", &nextopt
)) {
2106 } else if (strstart(opts
, "off", &nextopt
)) {
2109 goto invalid_sdl_args
;
2111 } else if (strstart(opts
, ",alt_grab=", &nextopt
)) {
2113 if (strstart(opts
, "on", &nextopt
)) {
2115 } else if (strstart(opts
, "off", &nextopt
)) {
2118 goto invalid_sdl_args
;
2120 } else if (strstart(opts
, ",ctrl_grab=", &nextopt
)) {
2122 if (strstart(opts
, "on", &nextopt
)) {
2124 } else if (strstart(opts
, "off", &nextopt
)) {
2127 goto invalid_sdl_args
;
2129 } else if (strstart(opts
, ",window_close=", &nextopt
)) {
2131 dpy
.has_window_close
= true;
2132 if (strstart(opts
, "on", &nextopt
)) {
2133 dpy
.window_close
= true;
2134 } else if (strstart(opts
, "off", &nextopt
)) {
2135 dpy
.window_close
= false;
2137 goto invalid_sdl_args
;
2139 } else if (strstart(opts
, ",gl=", &nextopt
)) {
2142 if (strstart(opts
, "on", &nextopt
)) {
2144 } else if (strstart(opts
, "off", &nextopt
)) {
2147 goto invalid_sdl_args
;
2151 error_report("invalid SDL option string");
2157 error_report("SDL support is disabled");
2160 } else if (strstart(p
, "vnc", &opts
)) {
2162 vnc_parse(opts
+ 1, &error_fatal
);
2164 error_report("VNC requires a display argument vnc=<display>");
2167 } else if (strstart(p
, "egl-headless", &opts
)) {
2168 #ifdef CONFIG_OPENGL_DMABUF
2170 dpy
.type
= DISPLAY_TYPE_EGL_HEADLESS
;
2172 error_report("egl support is disabled");
2175 } else if (strstart(p
, "curses", &opts
)) {
2176 #ifdef CONFIG_CURSES
2177 dpy
.type
= DISPLAY_TYPE_CURSES
;
2179 error_report("curses support is disabled");
2182 } else if (strstart(p
, "gtk", &opts
)) {
2184 dpy
.type
= DISPLAY_TYPE_GTK
;
2186 const char *nextopt
;
2188 if (strstart(opts
, ",grab_on_hover=", &nextopt
)) {
2190 dpy
.u
.gtk
.has_grab_on_hover
= true;
2191 if (strstart(opts
, "on", &nextopt
)) {
2192 dpy
.u
.gtk
.grab_on_hover
= true;
2193 } else if (strstart(opts
, "off", &nextopt
)) {
2194 dpy
.u
.gtk
.grab_on_hover
= false;
2196 goto invalid_gtk_args
;
2198 } else if (strstart(opts
, ",gl=", &nextopt
)) {
2201 if (strstart(opts
, "on", &nextopt
)) {
2203 } else if (strstart(opts
, "off", &nextopt
)) {
2206 goto invalid_gtk_args
;
2210 error_report("invalid GTK option string");
2216 error_report("GTK support is disabled");
2219 } else if (strstart(p
, "none", &opts
)) {
2220 dpy
.type
= DISPLAY_TYPE_NONE
;
2222 error_report("unknown display type");
2227 static int balloon_parse(const char *arg
)
2231 if (strcmp(arg
, "none") == 0) {
2235 if (!strncmp(arg
, "virtio", 6)) {
2236 if (arg
[6] == ',') {
2237 /* have params -> parse them */
2238 opts
= qemu_opts_parse_noisily(qemu_find_opts("device"), arg
+ 7,
2243 /* create empty opts */
2244 opts
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
2247 qemu_opt_set(opts
, "driver", "virtio-balloon", &error_abort
);
2254 char *qemu_find_file(int type
, const char *name
)
2260 /* Try the name as a straight path first */
2261 if (access(name
, R_OK
) == 0) {
2262 trace_load_file(name
, name
);
2263 return g_strdup(name
);
2267 case QEMU_FILE_TYPE_BIOS
:
2270 case QEMU_FILE_TYPE_KEYMAP
:
2271 subdir
= "keymaps/";
2277 for (i
= 0; i
< data_dir_idx
; i
++) {
2278 buf
= g_strdup_printf("%s/%s%s", data_dir
[i
], subdir
, name
);
2279 if (access(buf
, R_OK
) == 0) {
2280 trace_load_file(name
, buf
);
2288 static void qemu_add_data_dir(const char *path
)
2295 if (data_dir_idx
== ARRAY_SIZE(data_dir
)) {
2298 for (i
= 0; i
< data_dir_idx
; i
++) {
2299 if (strcmp(data_dir
[i
], path
) == 0) {
2300 return; /* duplicate */
2303 data_dir
[data_dir_idx
++] = g_strdup(path
);
2306 static inline bool nonempty_str(const char *str
)
2311 static int parse_fw_cfg(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2315 const char *name
, *file
, *str
;
2316 FWCfgState
*fw_cfg
= (FWCfgState
*) opaque
;
2318 if (fw_cfg
== NULL
) {
2319 error_report("fw_cfg device not available");
2322 name
= qemu_opt_get(opts
, "name");
2323 file
= qemu_opt_get(opts
, "file");
2324 str
= qemu_opt_get(opts
, "string");
2326 /* we need name and either a file or the content string */
2327 if (!(nonempty_str(name
) && (nonempty_str(file
) || nonempty_str(str
)))) {
2328 error_report("invalid argument(s)");
2331 if (nonempty_str(file
) && nonempty_str(str
)) {
2332 error_report("file and string are mutually exclusive");
2335 if (strlen(name
) > FW_CFG_MAX_FILE_PATH
- 1) {
2336 error_report("name too long (max. %d char)", FW_CFG_MAX_FILE_PATH
- 1);
2339 if (strncmp(name
, "opt/", 4) != 0) {
2340 warn_report("externally provided fw_cfg item names "
2341 "should be prefixed with \"opt/\"");
2343 if (nonempty_str(str
)) {
2344 size
= strlen(str
); /* NUL terminator NOT included in fw_cfg blob */
2345 buf
= g_memdup(str
, size
);
2347 if (!g_file_get_contents(file
, &buf
, &size
, NULL
)) {
2348 error_report("can't load %s", file
);
2352 /* For legacy, keep user files in a specific global order. */
2353 fw_cfg_set_order_override(fw_cfg
, FW_CFG_ORDER_OVERRIDE_USER
);
2354 fw_cfg_add_file(fw_cfg
, name
, buf
, size
);
2355 fw_cfg_reset_order_override(fw_cfg
);
2359 static int device_help_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2361 return qdev_device_help(opts
);
2364 static int device_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2369 dev
= qdev_device_add(opts
, &err
);
2371 error_report_err(err
);
2374 object_unref(OBJECT(dev
));
2378 static int chardev_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2380 Error
*local_err
= NULL
;
2382 if (!qemu_chr_new_from_opts(opts
, &local_err
)) {
2384 error_report_err(local_err
);
2392 #ifdef CONFIG_VIRTFS
2393 static int fsdev_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2395 return qemu_fsdev_add(opts
);
2399 static int mon_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2402 const char *chardev
;
2406 mode
= qemu_opt_get(opts
, "mode");
2410 if (strcmp(mode
, "readline") == 0) {
2411 flags
= MONITOR_USE_READLINE
;
2412 } else if (strcmp(mode
, "control") == 0) {
2413 flags
= MONITOR_USE_CONTROL
;
2415 error_report("unknown monitor mode \"%s\"", mode
);
2419 if (qemu_opt_get_bool(opts
, "pretty", 0))
2420 flags
|= MONITOR_USE_PRETTY
;
2422 chardev
= qemu_opt_get(opts
, "chardev");
2423 chr
= qemu_chr_find(chardev
);
2425 error_report("chardev \"%s\" not found", chardev
);
2429 monitor_init(chr
, flags
);
2433 static void monitor_parse(const char *optarg
, const char *mode
, bool pretty
)
2435 static int monitor_device_index
= 0;
2440 if (strstart(optarg
, "chardev:", &p
)) {
2441 snprintf(label
, sizeof(label
), "%s", p
);
2443 snprintf(label
, sizeof(label
), "compat_monitor%d",
2444 monitor_device_index
);
2445 opts
= qemu_chr_parse_compat(label
, optarg
);
2447 error_report("parse error: %s", optarg
);
2452 opts
= qemu_opts_create(qemu_find_opts("mon"), label
, 1, &error_fatal
);
2453 qemu_opt_set(opts
, "mode", mode
, &error_abort
);
2454 qemu_opt_set(opts
, "chardev", label
, &error_abort
);
2455 qemu_opt_set_bool(opts
, "pretty", pretty
, &error_abort
);
2456 monitor_device_index
++;
2459 struct device_config
{
2461 DEV_USB
, /* -usbdevice */
2463 DEV_SERIAL
, /* -serial */
2464 DEV_PARALLEL
, /* -parallel */
2465 DEV_VIRTCON
, /* -virtioconsole */
2466 DEV_DEBUGCON
, /* -debugcon */
2467 DEV_GDB
, /* -gdb, -s */
2468 DEV_SCLP
, /* s390 sclp */
2470 const char *cmdline
;
2472 QTAILQ_ENTRY(device_config
) next
;
2475 static QTAILQ_HEAD(, device_config
) device_configs
=
2476 QTAILQ_HEAD_INITIALIZER(device_configs
);
2478 static void add_device_config(int type
, const char *cmdline
)
2480 struct device_config
*conf
;
2482 conf
= g_malloc0(sizeof(*conf
));
2484 conf
->cmdline
= cmdline
;
2485 loc_save(&conf
->loc
);
2486 QTAILQ_INSERT_TAIL(&device_configs
, conf
, next
);
2489 static int foreach_device_config(int type
, int (*func
)(const char *cmdline
))
2491 struct device_config
*conf
;
2494 QTAILQ_FOREACH(conf
, &device_configs
, next
) {
2495 if (conf
->type
!= type
)
2497 loc_push_restore(&conf
->loc
);
2498 rc
= func(conf
->cmdline
);
2499 loc_pop(&conf
->loc
);
2507 static int serial_parse(const char *devname
)
2509 static int index
= 0;
2512 if (strcmp(devname
, "none") == 0)
2514 if (index
== MAX_SERIAL_PORTS
) {
2515 error_report("too many serial ports");
2518 snprintf(label
, sizeof(label
), "serial%d", index
);
2519 serial_hds
[index
] = qemu_chr_new(label
, devname
);
2520 if (!serial_hds
[index
]) {
2521 error_report("could not connect serial device"
2522 " to character backend '%s'", devname
);
2529 static int parallel_parse(const char *devname
)
2531 static int index
= 0;
2534 if (strcmp(devname
, "none") == 0)
2536 if (index
== MAX_PARALLEL_PORTS
) {
2537 error_report("too many parallel ports");
2540 snprintf(label
, sizeof(label
), "parallel%d", index
);
2541 parallel_hds
[index
] = qemu_chr_new(label
, devname
);
2542 if (!parallel_hds
[index
]) {
2543 error_report("could not connect parallel device"
2544 " to character backend '%s'", devname
);
2551 static int virtcon_parse(const char *devname
)
2553 QemuOptsList
*device
= qemu_find_opts("device");
2554 static int index
= 0;
2556 QemuOpts
*bus_opts
, *dev_opts
;
2558 if (strcmp(devname
, "none") == 0)
2560 if (index
== MAX_VIRTIO_CONSOLES
) {
2561 error_report("too many virtio consoles");
2565 bus_opts
= qemu_opts_create(device
, NULL
, 0, &error_abort
);
2566 qemu_opt_set(bus_opts
, "driver", "virtio-serial", &error_abort
);
2568 dev_opts
= qemu_opts_create(device
, NULL
, 0, &error_abort
);
2569 qemu_opt_set(dev_opts
, "driver", "virtconsole", &error_abort
);
2571 snprintf(label
, sizeof(label
), "virtcon%d", index
);
2572 virtcon_hds
[index
] = qemu_chr_new(label
, devname
);
2573 if (!virtcon_hds
[index
]) {
2574 error_report("could not connect virtio console"
2575 " to character backend '%s'", devname
);
2578 qemu_opt_set(dev_opts
, "chardev", label
, &error_abort
);
2584 static int sclp_parse(const char *devname
)
2586 QemuOptsList
*device
= qemu_find_opts("device");
2587 static int index
= 0;
2591 if (strcmp(devname
, "none") == 0) {
2594 if (index
== MAX_SCLP_CONSOLES
) {
2595 error_report("too many sclp consoles");
2599 assert(arch_type
== QEMU_ARCH_S390X
);
2601 dev_opts
= qemu_opts_create(device
, NULL
, 0, NULL
);
2602 qemu_opt_set(dev_opts
, "driver", "sclpconsole", &error_abort
);
2604 snprintf(label
, sizeof(label
), "sclpcon%d", index
);
2605 sclp_hds
[index
] = qemu_chr_new(label
, devname
);
2606 if (!sclp_hds
[index
]) {
2607 error_report("could not connect sclp console"
2608 " to character backend '%s'", devname
);
2611 qemu_opt_set(dev_opts
, "chardev", label
, &error_abort
);
2617 static int debugcon_parse(const char *devname
)
2621 if (!qemu_chr_new("debugcon", devname
)) {
2624 opts
= qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL
);
2626 error_report("already have a debugcon device");
2629 qemu_opt_set(opts
, "driver", "isa-debugcon", &error_abort
);
2630 qemu_opt_set(opts
, "chardev", "debugcon", &error_abort
);
2634 static gint
machine_class_cmp(gconstpointer a
, gconstpointer b
)
2636 const MachineClass
*mc1
= a
, *mc2
= b
;
2639 if (mc1
->family
== NULL
) {
2640 if (mc2
->family
== NULL
) {
2641 /* Compare standalone machine types against each other; they sort
2642 * in increasing order.
2644 return strcmp(object_class_get_name(OBJECT_CLASS(mc1
)),
2645 object_class_get_name(OBJECT_CLASS(mc2
)));
2648 /* Standalone machine types sort after families. */
2652 if (mc2
->family
== NULL
) {
2653 /* Families sort before standalone machine types. */
2657 /* Families sort between each other alphabetically increasingly. */
2658 res
= strcmp(mc1
->family
, mc2
->family
);
2663 /* Within the same family, machine types sort in decreasing order. */
2664 return strcmp(object_class_get_name(OBJECT_CLASS(mc2
)),
2665 object_class_get_name(OBJECT_CLASS(mc1
)));
2668 static MachineClass
*machine_parse(const char *name
)
2670 MachineClass
*mc
= NULL
;
2671 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
2674 mc
= find_machine(name
);
2677 g_slist_free(machines
);
2680 if (name
&& !is_help_option(name
)) {
2681 error_report("unsupported machine type");
2682 error_printf("Use -machine help to list supported machines\n");
2684 printf("Supported machines are:\n");
2685 machines
= g_slist_sort(machines
, machine_class_cmp
);
2686 for (el
= machines
; el
; el
= el
->next
) {
2687 MachineClass
*mc
= el
->data
;
2689 printf("%-20s %s (alias of %s)\n", mc
->alias
, mc
->desc
, mc
->name
);
2691 printf("%-20s %s%s\n", mc
->name
, mc
->desc
,
2692 mc
->is_default
? " (default)" : "");
2696 g_slist_free(machines
);
2697 exit(!name
|| !is_help_option(name
));
2700 void qemu_add_exit_notifier(Notifier
*notify
)
2702 notifier_list_add(&exit_notifiers
, notify
);
2705 void qemu_remove_exit_notifier(Notifier
*notify
)
2707 notifier_remove(notify
);
2710 static void qemu_run_exit_notifiers(void)
2712 notifier_list_notify(&exit_notifiers
, NULL
);
2715 static bool machine_init_done
;
2717 void qemu_add_machine_init_done_notifier(Notifier
*notify
)
2719 notifier_list_add(&machine_init_done_notifiers
, notify
);
2720 if (machine_init_done
) {
2721 notify
->notify(notify
, NULL
);
2725 void qemu_remove_machine_init_done_notifier(Notifier
*notify
)
2727 notifier_remove(notify
);
2730 static void qemu_run_machine_init_done_notifiers(void)
2732 notifier_list_notify(&machine_init_done_notifiers
, NULL
);
2733 machine_init_done
= true;
2736 static const QEMUOption
*lookup_opt(int argc
, char **argv
,
2737 const char **poptarg
, int *poptind
)
2739 const QEMUOption
*popt
;
2740 int optind
= *poptind
;
2741 char *r
= argv
[optind
];
2744 loc_set_cmdline(argv
, optind
, 1);
2746 /* Treat --foo the same as -foo. */
2749 popt
= qemu_options
;
2752 error_report("invalid option");
2755 if (!strcmp(popt
->name
, r
+ 1))
2759 if (popt
->flags
& HAS_ARG
) {
2760 if (optind
>= argc
) {
2761 error_report("requires an argument");
2764 optarg
= argv
[optind
++];
2765 loc_set_cmdline(argv
, optind
- 2, 2);
2776 static MachineClass
*select_machine(void)
2778 MachineClass
*machine_class
= find_default_machine();
2783 loc_push_none(&loc
);
2785 opts
= qemu_get_machine_opts();
2786 qemu_opts_loc_restore(opts
);
2788 optarg
= qemu_opt_get(opts
, "type");
2790 machine_class
= machine_parse(optarg
);
2793 if (!machine_class
) {
2794 error_report("No machine specified, and there is no default");
2795 error_printf("Use -machine help to list supported machines\n");
2800 return machine_class
;
2803 static int machine_set_property(void *opaque
,
2804 const char *name
, const char *value
,
2807 Object
*obj
= OBJECT(opaque
);
2808 Error
*local_err
= NULL
;
2811 if (strcmp(name
, "type") == 0) {
2815 qom_name
= g_strdup(name
);
2816 for (p
= qom_name
; *p
; p
++) {
2822 object_property_parse(obj
, value
, qom_name
, &local_err
);
2826 error_report_err(local_err
);
2835 * Initial object creation happens before all other
2836 * QEMU data types are created. The majority of objects
2837 * can be created at this point. The rng-egd object
2838 * cannot be created here, as it depends on the chardev
2841 static bool object_create_initial(const char *type
)
2843 if (g_str_equal(type
, "rng-egd") ||
2844 g_str_has_prefix(type
, "pr-manager-")) {
2849 * return false for concrete netfilters since
2850 * they depend on netdevs already existing
2852 if (g_str_equal(type
, "filter-buffer") ||
2853 g_str_equal(type
, "filter-dump") ||
2854 g_str_equal(type
, "filter-mirror") ||
2855 g_str_equal(type
, "filter-redirector") ||
2856 g_str_equal(type
, "colo-compare") ||
2857 g_str_equal(type
, "filter-rewriter") ||
2858 g_str_equal(type
, "filter-replay")) {
2862 /* Memory allocation by backends needs to be done
2863 * after configure_accelerator() (due to the tcg_enabled()
2864 * checks at memory_region_init_*()).
2866 * Also, allocation of large amounts of memory may delay
2867 * chardev initialization for too long, and trigger timeouts
2868 * on software that waits for a monitor socket to be created
2871 if (g_str_has_prefix(type
, "memory-backend-")) {
2880 * The remainder of object creation happens after the
2881 * creation of chardev, fsdev, net clients and device data types.
2883 static bool object_create_delayed(const char *type
)
2885 return !object_create_initial(type
);
2889 static void set_memory_options(uint64_t *ram_slots
, ram_addr_t
*maxram_size
,
2893 const char *mem_str
;
2894 const char *maxmem_str
, *slots_str
;
2895 const ram_addr_t default_ram_size
= mc
->default_ram_size
;
2896 QemuOpts
*opts
= qemu_find_opts_singleton("memory");
2899 loc_push_none(&loc
);
2900 qemu_opts_loc_restore(opts
);
2903 mem_str
= qemu_opt_get(opts
, "size");
2906 error_report("missing 'size' option value");
2910 sz
= qemu_opt_get_size(opts
, "size", ram_size
);
2912 /* Fix up legacy suffix-less format */
2913 if (g_ascii_isdigit(mem_str
[strlen(mem_str
) - 1])) {
2914 uint64_t overflow_check
= sz
;
2917 if ((sz
>> 20) != overflow_check
) {
2918 error_report("too large 'size' option value");
2924 /* backward compatibility behaviour for case "-m 0" */
2926 sz
= default_ram_size
;
2929 sz
= QEMU_ALIGN_UP(sz
, 8192);
2931 if (ram_size
!= sz
) {
2932 error_report("ram size too large");
2936 /* store value for the future use */
2937 qemu_opt_set_number(opts
, "size", ram_size
, &error_abort
);
2938 *maxram_size
= ram_size
;
2940 maxmem_str
= qemu_opt_get(opts
, "maxmem");
2941 slots_str
= qemu_opt_get(opts
, "slots");
2942 if (maxmem_str
&& slots_str
) {
2945 sz
= qemu_opt_get_size(opts
, "maxmem", 0);
2946 slots
= qemu_opt_get_number(opts
, "slots", 0);
2947 if (sz
< ram_size
) {
2948 error_report("invalid value of -m option maxmem: "
2949 "maximum memory size (0x%" PRIx64
") must be at least "
2950 "the initial memory size (0x" RAM_ADDR_FMT
")",
2953 } else if (sz
> ram_size
) {
2955 error_report("invalid value of -m option: maxmem was "
2956 "specified, but no hotplug slots were specified");
2960 error_report("invalid value of -m option maxmem: "
2961 "memory slots were specified but maximum memory size "
2962 "(0x%" PRIx64
") is equal to the initial memory size "
2963 "(0x" RAM_ADDR_FMT
")", sz
, ram_size
);
2969 } else if ((!maxmem_str
&& slots_str
) ||
2970 (maxmem_str
&& !slots_str
)) {
2971 error_report("invalid -m option value: missing "
2972 "'%s' option", slots_str
? "maxmem" : "slots");
2979 static int global_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2983 g
= g_malloc0(sizeof(*g
));
2984 g
->driver
= qemu_opt_get(opts
, "driver");
2985 g
->property
= qemu_opt_get(opts
, "property");
2986 g
->value
= qemu_opt_get(opts
, "value");
2987 g
->user_provided
= true;
2988 g
->errp
= &error_fatal
;
2989 qdev_prop_register_global(g
);
2993 static int qemu_read_default_config_file(void)
2997 ret
= qemu_read_config_file(CONFIG_QEMU_CONFDIR
"/qemu.conf");
2998 if (ret
< 0 && ret
!= -ENOENT
) {
3005 static void user_register_global_props(void)
3007 qemu_opts_foreach(qemu_find_opts("global"),
3008 global_init_func
, NULL
, NULL
);
3012 * Note: we should see that these properties are actually having a
3013 * priority: accel < machine < user. This means e.g. when user
3014 * specifies something in "-global", it'll always be used with highest
3015 * priority than either machine/accelerator compat properties.
3017 static void register_global_properties(MachineState
*ms
)
3019 accel_register_compat_props(ms
->accelerator
);
3020 machine_register_compat_props(ms
);
3021 user_register_global_props();
3024 int main(int argc
, char **argv
, char **envp
)
3027 int snapshot
, linux_boot
;
3028 const char *initrd_filename
;
3029 const char *kernel_filename
, *kernel_cmdline
;
3030 const char *boot_order
= NULL
;
3031 const char *boot_once
= NULL
;
3033 QemuOpts
*opts
, *machine_opts
;
3034 QemuOpts
*icount_opts
= NULL
, *accel_opts
= NULL
;
3035 QemuOptsList
*olist
;
3038 const char *loadvm
= NULL
;
3039 MachineClass
*machine_class
;
3040 const char *cpu_model
;
3041 const char *vga_model
= NULL
;
3042 const char *qtest_chrdev
= NULL
;
3043 const char *qtest_log
= NULL
;
3044 const char *pid_file
= NULL
;
3045 const char *incoming
= NULL
;
3046 bool userconfig
= true;
3047 bool nographic
= false;
3048 int display_remote
= 0;
3049 const char *log_mask
= NULL
;
3050 const char *log_file
= NULL
;
3051 char *trace_file
= NULL
;
3052 ram_addr_t maxram_size
;
3053 uint64_t ram_slots
= 0;
3054 FILE *vmstate_dump_file
= NULL
;
3055 Error
*main_loop_err
= NULL
;
3057 bool list_data_dirs
= false;
3059 typedef struct BlockdevOptions_queue
{
3060 BlockdevOptions
*bdo
;
3062 QSIMPLEQ_ENTRY(BlockdevOptions_queue
) entry
;
3063 } BlockdevOptions_queue
;
3064 QSIMPLEQ_HEAD(, BlockdevOptions_queue
) bdo_queue
3065 = QSIMPLEQ_HEAD_INITIALIZER(bdo_queue
);
3067 module_call_init(MODULE_INIT_TRACE
);
3069 qemu_init_cpu_list();
3070 qemu_init_cpu_loop();
3071 qemu_mutex_lock_iothread();
3073 atexit(qemu_run_exit_notifiers
);
3074 error_set_progname(argv
[0]);
3075 qemu_init_exec_dir(argv
[0]);
3077 module_call_init(MODULE_INIT_QOM
);
3078 monitor_init_qmp_commands();
3080 qemu_add_opts(&qemu_drive_opts
);
3081 qemu_add_drive_opts(&qemu_legacy_drive_opts
);
3082 qemu_add_drive_opts(&qemu_common_drive_opts
);
3083 qemu_add_drive_opts(&qemu_drive_opts
);
3084 qemu_add_drive_opts(&bdrv_runtime_opts
);
3085 qemu_add_opts(&qemu_chardev_opts
);
3086 qemu_add_opts(&qemu_device_opts
);
3087 qemu_add_opts(&qemu_netdev_opts
);
3088 qemu_add_opts(&qemu_net_opts
);
3089 qemu_add_opts(&qemu_rtc_opts
);
3090 qemu_add_opts(&qemu_global_opts
);
3091 qemu_add_opts(&qemu_mon_opts
);
3092 qemu_add_opts(&qemu_trace_opts
);
3093 qemu_add_opts(&qemu_option_rom_opts
);
3094 qemu_add_opts(&qemu_machine_opts
);
3095 qemu_add_opts(&qemu_accel_opts
);
3096 qemu_add_opts(&qemu_mem_opts
);
3097 qemu_add_opts(&qemu_smp_opts
);
3098 qemu_add_opts(&qemu_boot_opts
);
3099 qemu_add_opts(&qemu_sandbox_opts
);
3100 qemu_add_opts(&qemu_add_fd_opts
);
3101 qemu_add_opts(&qemu_object_opts
);
3102 qemu_add_opts(&qemu_tpmdev_opts
);
3103 qemu_add_opts(&qemu_realtime_opts
);
3104 qemu_add_opts(&qemu_msg_opts
);
3105 qemu_add_opts(&qemu_name_opts
);
3106 qemu_add_opts(&qemu_numa_opts
);
3107 qemu_add_opts(&qemu_icount_opts
);
3108 qemu_add_opts(&qemu_semihosting_config_opts
);
3109 qemu_add_opts(&qemu_fw_cfg_opts
);
3110 module_call_init(MODULE_INIT_OPTS
);
3114 if (qcrypto_init(&err
) < 0) {
3115 error_reportf_err(err
, "cannot initialize crypto: ");
3118 rtc_clock
= QEMU_CLOCK_HOST
;
3120 QLIST_INIT (&vm_change_state_head
);
3121 os_setup_early_signal_handling();
3128 bdrv_init_with_whitelist();
3132 /* first pass of option parsing */
3134 while (optind
< argc
) {
3135 if (argv
[optind
][0] != '-') {
3139 const QEMUOption
*popt
;
3141 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
3142 switch (popt
->index
) {
3143 case QEMU_OPTION_nodefconfig
:
3144 case QEMU_OPTION_nouserconfig
:
3152 if (qemu_read_default_config_file() < 0) {
3157 /* second pass of option parsing */
3162 if (argv
[optind
][0] != '-') {
3163 drive_add(IF_DEFAULT
, 0, argv
[optind
++], HD_OPTS
);
3165 const QEMUOption
*popt
;
3167 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
3168 if (!(popt
->arch_mask
& arch_type
)) {
3169 error_report("Option not supported for this target");
3172 switch(popt
->index
) {
3173 case QEMU_OPTION_no_kvm_irqchip
: {
3174 olist
= qemu_find_opts("machine");
3175 qemu_opts_parse_noisily(olist
, "kernel_irqchip=off", false);
3178 case QEMU_OPTION_cpu
:
3179 /* hw initialization will check this */
3182 case QEMU_OPTION_hda
:
3183 case QEMU_OPTION_hdb
:
3184 case QEMU_OPTION_hdc
:
3185 case QEMU_OPTION_hdd
:
3186 drive_add(IF_DEFAULT
, popt
->index
- QEMU_OPTION_hda
, optarg
,
3189 case QEMU_OPTION_blockdev
:
3192 BlockdevOptions_queue
*bdo
;
3194 v
= qobject_input_visitor_new_str(optarg
, "driver", &err
);
3196 error_report_err(err
);
3200 bdo
= g_new(BlockdevOptions_queue
, 1);
3201 visit_type_BlockdevOptions(v
, NULL
, &bdo
->bdo
,
3204 loc_save(&bdo
->loc
);
3205 QSIMPLEQ_INSERT_TAIL(&bdo_queue
, bdo
, entry
);
3208 case QEMU_OPTION_drive
:
3209 if (drive_def(optarg
) == NULL
) {
3213 case QEMU_OPTION_set
:
3214 if (qemu_set_option(optarg
) != 0)
3217 case QEMU_OPTION_global
:
3218 if (qemu_global_option(optarg
) != 0)
3221 case QEMU_OPTION_mtdblock
:
3222 drive_add(IF_MTD
, -1, optarg
, MTD_OPTS
);
3224 case QEMU_OPTION_sd
:
3225 drive_add(IF_SD
, -1, optarg
, SD_OPTS
);
3227 case QEMU_OPTION_pflash
:
3228 drive_add(IF_PFLASH
, -1, optarg
, PFLASH_OPTS
);
3230 case QEMU_OPTION_snapshot
:
3233 case QEMU_OPTION_numa
:
3234 opts
= qemu_opts_parse_noisily(qemu_find_opts("numa"),
3240 case QEMU_OPTION_display
:
3241 parse_display(optarg
);
3243 case QEMU_OPTION_nographic
:
3244 olist
= qemu_find_opts("machine");
3245 qemu_opts_parse_noisily(olist
, "graphics=off", false);
3247 dpy
.type
= DISPLAY_TYPE_NONE
;
3249 case QEMU_OPTION_curses
:
3250 #ifdef CONFIG_CURSES
3251 dpy
.type
= DISPLAY_TYPE_CURSES
;
3253 error_report("curses support is disabled");
3257 case QEMU_OPTION_portrait
:
3258 graphic_rotate
= 90;
3260 case QEMU_OPTION_rotate
:
3261 graphic_rotate
= strtol(optarg
, (char **) &optarg
, 10);
3262 if (graphic_rotate
!= 0 && graphic_rotate
!= 90 &&
3263 graphic_rotate
!= 180 && graphic_rotate
!= 270) {
3264 error_report("only 90, 180, 270 deg rotation is available");
3268 case QEMU_OPTION_kernel
:
3269 qemu_opts_set(qemu_find_opts("machine"), 0, "kernel", optarg
,
3272 case QEMU_OPTION_initrd
:
3273 qemu_opts_set(qemu_find_opts("machine"), 0, "initrd", optarg
,
3276 case QEMU_OPTION_append
:
3277 qemu_opts_set(qemu_find_opts("machine"), 0, "append", optarg
,
3280 case QEMU_OPTION_dtb
:
3281 qemu_opts_set(qemu_find_opts("machine"), 0, "dtb", optarg
,
3284 case QEMU_OPTION_cdrom
:
3285 drive_add(IF_DEFAULT
, 2, optarg
, CDROM_OPTS
);
3287 case QEMU_OPTION_boot
:
3288 opts
= qemu_opts_parse_noisily(qemu_find_opts("boot-opts"),
3294 case QEMU_OPTION_fda
:
3295 case QEMU_OPTION_fdb
:
3296 drive_add(IF_FLOPPY
, popt
->index
- QEMU_OPTION_fda
,
3299 case QEMU_OPTION_no_fd_bootchk
:
3302 case QEMU_OPTION_netdev
:
3304 if (net_client_parse(qemu_find_opts("netdev"), optarg
) == -1) {
3308 case QEMU_OPTION_net
:
3310 if (net_client_parse(qemu_find_opts("net"), optarg
) == -1) {
3314 #ifdef CONFIG_LIBISCSI
3315 case QEMU_OPTION_iscsi
:
3316 opts
= qemu_opts_parse_noisily(qemu_find_opts("iscsi"),
3324 case QEMU_OPTION_tftp
:
3325 error_report("The -tftp option is deprecated. "
3326 "Please use '-netdev user,tftp=...' instead.");
3327 legacy_tftp_prefix
= optarg
;
3329 case QEMU_OPTION_bootp
:
3330 error_report("The -bootp option is deprecated. "
3331 "Please use '-netdev user,bootfile=...' instead.");
3332 legacy_bootp_filename
= optarg
;
3334 case QEMU_OPTION_redir
:
3335 error_report("The -redir option is deprecated. "
3336 "Please use '-netdev user,hostfwd=...' instead.");
3337 if (net_slirp_redir(optarg
) < 0)
3341 case QEMU_OPTION_bt
:
3342 add_device_config(DEV_BT
, optarg
);
3344 case QEMU_OPTION_audio_help
:
3348 case QEMU_OPTION_soundhw
:
3349 select_soundhw (optarg
);
3354 case QEMU_OPTION_version
:
3359 opts
= qemu_opts_parse_noisily(qemu_find_opts("memory"),
3366 case QEMU_OPTION_tpmdev
:
3367 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg
) < 0) {
3372 case QEMU_OPTION_mempath
:
3375 case QEMU_OPTION_mem_prealloc
:
3384 case QEMU_OPTION_DFILTER
:
3385 qemu_set_dfilter_ranges(optarg
, &error_fatal
);
3388 add_device_config(DEV_GDB
, "tcp::" DEFAULT_GDBSTUB_PORT
);
3390 case QEMU_OPTION_gdb
:
3391 add_device_config(DEV_GDB
, optarg
);
3394 if (is_help_option(optarg
)) {
3395 list_data_dirs
= true;
3397 qemu_add_data_dir(optarg
);
3400 case QEMU_OPTION_bios
:
3401 qemu_opts_set(qemu_find_opts("machine"), 0, "firmware", optarg
,
3404 case QEMU_OPTION_singlestep
:
3411 keyboard_layout
= optarg
;
3413 case QEMU_OPTION_localtime
:
3416 case QEMU_OPTION_vga
:
3425 w
= strtol(p
, (char **)&p
, 10);
3428 error_report("invalid resolution or depth");
3434 h
= strtol(p
, (char **)&p
, 10);
3439 depth
= strtol(p
, (char **)&p
, 10);
3440 if (depth
!= 8 && depth
!= 15 && depth
!= 16 &&
3441 depth
!= 24 && depth
!= 32)
3443 } else if (*p
== '\0') {
3444 depth
= graphic_depth
;
3451 graphic_depth
= depth
;
3454 case QEMU_OPTION_echr
:
3457 term_escape_char
= strtol(optarg
, &r
, 0);
3459 printf("Bad argument to echr\n");
3462 case QEMU_OPTION_monitor
:
3463 default_monitor
= 0;
3464 if (strncmp(optarg
, "none", 4)) {
3465 monitor_parse(optarg
, "readline", false);
3468 case QEMU_OPTION_qmp
:
3469 monitor_parse(optarg
, "control", false);
3470 default_monitor
= 0;
3472 case QEMU_OPTION_qmp_pretty
:
3473 monitor_parse(optarg
, "control", true);
3474 default_monitor
= 0;
3476 case QEMU_OPTION_mon
:
3477 opts
= qemu_opts_parse_noisily(qemu_find_opts("mon"), optarg
,
3482 default_monitor
= 0;
3484 case QEMU_OPTION_chardev
:
3485 opts
= qemu_opts_parse_noisily(qemu_find_opts("chardev"),
3491 case QEMU_OPTION_fsdev
:
3492 olist
= qemu_find_opts("fsdev");
3494 error_report("fsdev support is disabled");
3497 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3502 case QEMU_OPTION_virtfs
: {
3505 const char *writeout
, *sock_fd
, *socket
, *path
, *security_model
;
3507 olist
= qemu_find_opts("virtfs");
3509 error_report("virtfs support is disabled");
3512 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3517 if (qemu_opt_get(opts
, "fsdriver") == NULL
||
3518 qemu_opt_get(opts
, "mount_tag") == NULL
) {
3519 error_report("Usage: -virtfs fsdriver,mount_tag=tag");
3522 fsdev
= qemu_opts_create(qemu_find_opts("fsdev"),
3523 qemu_opts_id(opts
) ?:
3524 qemu_opt_get(opts
, "mount_tag"),
3527 error_report("duplicate or invalid fsdev id: %s",
3528 qemu_opt_get(opts
, "mount_tag"));
3532 writeout
= qemu_opt_get(opts
, "writeout");
3534 #ifdef CONFIG_SYNC_FILE_RANGE
3535 qemu_opt_set(fsdev
, "writeout", writeout
, &error_abort
);
3537 error_report("writeout=immediate not supported "
3538 "on this platform");
3542 qemu_opt_set(fsdev
, "fsdriver",
3543 qemu_opt_get(opts
, "fsdriver"), &error_abort
);
3544 path
= qemu_opt_get(opts
, "path");
3546 qemu_opt_set(fsdev
, "path", path
, &error_abort
);
3548 security_model
= qemu_opt_get(opts
, "security_model");
3549 if (security_model
) {
3550 qemu_opt_set(fsdev
, "security_model", security_model
,
3553 socket
= qemu_opt_get(opts
, "socket");
3555 qemu_opt_set(fsdev
, "socket", socket
, &error_abort
);
3557 sock_fd
= qemu_opt_get(opts
, "sock_fd");
3559 qemu_opt_set(fsdev
, "sock_fd", sock_fd
, &error_abort
);
3562 qemu_opt_set_bool(fsdev
, "readonly",
3563 qemu_opt_get_bool(opts
, "readonly", 0),
3565 device
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
3567 qemu_opt_set(device
, "driver", "virtio-9p-pci", &error_abort
);
3568 qemu_opt_set(device
, "fsdev",
3569 qemu_opts_id(fsdev
), &error_abort
);
3570 qemu_opt_set(device
, "mount_tag",
3571 qemu_opt_get(opts
, "mount_tag"), &error_abort
);
3574 case QEMU_OPTION_virtfs_synth
: {
3578 fsdev
= qemu_opts_create(qemu_find_opts("fsdev"), "v_synth",
3581 error_report("duplicate option: %s", "virtfs_synth");
3584 qemu_opt_set(fsdev
, "fsdriver", "synth", &error_abort
);
3586 device
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
3588 qemu_opt_set(device
, "driver", "virtio-9p-pci", &error_abort
);
3589 qemu_opt_set(device
, "fsdev", "v_synth", &error_abort
);
3590 qemu_opt_set(device
, "mount_tag", "v_synth", &error_abort
);
3593 case QEMU_OPTION_serial
:
3594 add_device_config(DEV_SERIAL
, optarg
);
3596 if (strncmp(optarg
, "mon:", 4) == 0) {
3597 default_monitor
= 0;
3600 case QEMU_OPTION_watchdog
:
3602 error_report("only one watchdog option may be given");
3607 case QEMU_OPTION_watchdog_action
:
3608 if (select_watchdog_action(optarg
) == -1) {
3609 error_report("unknown -watchdog-action parameter");
3613 case QEMU_OPTION_virtiocon
:
3614 add_device_config(DEV_VIRTCON
, optarg
);
3615 default_virtcon
= 0;
3616 if (strncmp(optarg
, "mon:", 4) == 0) {
3617 default_monitor
= 0;
3620 case QEMU_OPTION_parallel
:
3621 add_device_config(DEV_PARALLEL
, optarg
);
3622 default_parallel
= 0;
3623 if (strncmp(optarg
, "mon:", 4) == 0) {
3624 default_monitor
= 0;
3627 case QEMU_OPTION_debugcon
:
3628 add_device_config(DEV_DEBUGCON
, optarg
);
3630 case QEMU_OPTION_loadvm
:
3633 case QEMU_OPTION_full_screen
:
3634 dpy
.has_full_screen
= true;
3635 dpy
.full_screen
= true;
3637 case QEMU_OPTION_no_frame
:
3638 g_printerr("The -no-frame switch is deprecated, and will be\n"
3639 "removed in a future release.\n");
3642 case QEMU_OPTION_alt_grab
:
3645 case QEMU_OPTION_ctrl_grab
:
3648 case QEMU_OPTION_no_quit
:
3649 dpy
.has_window_close
= true;
3650 dpy
.window_close
= false;
3652 case QEMU_OPTION_sdl
:
3654 dpy
.type
= DISPLAY_TYPE_SDL
;
3657 error_report("SDL support is disabled");
3660 case QEMU_OPTION_pidfile
:
3663 case QEMU_OPTION_win2k_hack
:
3664 win2k_install_hack
= 1;
3666 case QEMU_OPTION_rtc_td_hack
: {
3667 static GlobalProperty slew_lost_ticks
= {
3668 .driver
= "mc146818rtc",
3669 .property
= "lost_tick_policy",
3673 qdev_prop_register_global(&slew_lost_ticks
);
3676 case QEMU_OPTION_acpitable
:
3677 opts
= qemu_opts_parse_noisily(qemu_find_opts("acpi"),
3682 acpi_table_add(opts
, &error_fatal
);
3684 case QEMU_OPTION_smbios
:
3685 opts
= qemu_opts_parse_noisily(qemu_find_opts("smbios"),
3690 smbios_entry_add(opts
, &error_fatal
);
3692 case QEMU_OPTION_fwcfg
:
3693 opts
= qemu_opts_parse_noisily(qemu_find_opts("fw_cfg"),
3699 case QEMU_OPTION_enable_kvm
:
3700 olist
= qemu_find_opts("machine");
3701 qemu_opts_parse_noisily(olist
, "accel=kvm", false);
3703 case QEMU_OPTION_enable_hax
:
3704 olist
= qemu_find_opts("machine");
3705 qemu_opts_parse_noisily(olist
, "accel=hax", false);
3708 case QEMU_OPTION_machine
:
3709 olist
= qemu_find_opts("machine");
3710 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3715 case QEMU_OPTION_no_kvm
:
3716 olist
= qemu_find_opts("machine");
3717 qemu_opts_parse_noisily(olist
, "accel=tcg", false);
3719 case QEMU_OPTION_no_kvm_pit_reinjection
: {
3720 static GlobalProperty kvm_pit_lost_tick_policy
= {
3721 .driver
= "kvm-pit",
3722 .property
= "lost_tick_policy",
3726 warn_report("deprecated, replaced by "
3727 "-global kvm-pit.lost_tick_policy=discard");
3728 qdev_prop_register_global(&kvm_pit_lost_tick_policy
);
3731 case QEMU_OPTION_accel
:
3732 accel_opts
= qemu_opts_parse_noisily(qemu_find_opts("accel"),
3734 optarg
= qemu_opt_get(accel_opts
, "accel");
3735 if (!optarg
|| is_help_option(optarg
)) {
3736 error_printf("Possible accelerators: kvm, xen, hax, tcg\n");
3739 opts
= qemu_opts_create(qemu_find_opts("machine"), NULL
,
3740 false, &error_abort
);
3741 qemu_opt_set(opts
, "accel", optarg
, &error_abort
);
3743 case QEMU_OPTION_usb
:
3744 olist
= qemu_find_opts("machine");
3745 qemu_opts_parse_noisily(olist
, "usb=on", false);
3747 case QEMU_OPTION_usbdevice
:
3748 error_report("'-usbdevice' is deprecated, please use "
3749 "'-device usb-...' instead");
3750 olist
= qemu_find_opts("machine");
3751 qemu_opts_parse_noisily(olist
, "usb=on", false);
3752 add_device_config(DEV_USB
, optarg
);
3754 case QEMU_OPTION_device
:
3755 if (!qemu_opts_parse_noisily(qemu_find_opts("device"),
3760 case QEMU_OPTION_smp
:
3761 if (!qemu_opts_parse_noisily(qemu_find_opts("smp-opts"),
3766 case QEMU_OPTION_vnc
:
3767 vnc_parse(optarg
, &error_fatal
);
3769 case QEMU_OPTION_no_acpi
:
3772 case QEMU_OPTION_no_hpet
:
3775 case QEMU_OPTION_balloon
:
3776 if (balloon_parse(optarg
) < 0) {
3777 error_report("unknown -balloon argument %s", optarg
);
3781 case QEMU_OPTION_no_reboot
:
3784 case QEMU_OPTION_no_shutdown
:
3787 case QEMU_OPTION_show_cursor
:
3790 case QEMU_OPTION_uuid
:
3791 if (qemu_uuid_parse(optarg
, &qemu_uuid
) < 0) {
3792 error_report("failed to parse UUID string: wrong format");
3795 qemu_uuid_set
= true;
3797 case QEMU_OPTION_option_rom
:
3798 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
3799 error_report("too many option ROMs");
3802 opts
= qemu_opts_parse_noisily(qemu_find_opts("option-rom"),
3807 option_rom
[nb_option_roms
].name
= qemu_opt_get(opts
, "romfile");
3808 option_rom
[nb_option_roms
].bootindex
=
3809 qemu_opt_get_number(opts
, "bootindex", -1);
3810 if (!option_rom
[nb_option_roms
].name
) {
3811 error_report("Option ROM file is not specified");
3816 case QEMU_OPTION_semihosting
:
3817 semihosting
.enabled
= true;
3818 semihosting
.target
= SEMIHOSTING_TARGET_AUTO
;
3820 case QEMU_OPTION_semihosting_config
:
3821 semihosting
.enabled
= true;
3822 opts
= qemu_opts_parse_noisily(qemu_find_opts("semihosting-config"),
3825 semihosting
.enabled
= qemu_opt_get_bool(opts
, "enable",
3827 const char *target
= qemu_opt_get(opts
, "target");
3828 if (target
!= NULL
) {
3829 if (strcmp("native", target
) == 0) {
3830 semihosting
.target
= SEMIHOSTING_TARGET_NATIVE
;
3831 } else if (strcmp("gdb", target
) == 0) {
3832 semihosting
.target
= SEMIHOSTING_TARGET_GDB
;
3833 } else if (strcmp("auto", target
) == 0) {
3834 semihosting
.target
= SEMIHOSTING_TARGET_AUTO
;
3836 error_report("unsupported semihosting-config %s",
3841 semihosting
.target
= SEMIHOSTING_TARGET_AUTO
;
3843 /* Set semihosting argument count and vector */
3844 qemu_opt_foreach(opts
, add_semihosting_arg
,
3845 &semihosting
, NULL
);
3847 error_report("unsupported semihosting-config %s", optarg
);
3851 case QEMU_OPTION_tdf
:
3852 warn_report("ignoring deprecated option");
3854 case QEMU_OPTION_name
:
3855 opts
= qemu_opts_parse_noisily(qemu_find_opts("name"),
3861 case QEMU_OPTION_prom_env
:
3862 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
3863 error_report("too many prom variables");
3866 prom_envs
[nb_prom_envs
] = optarg
;
3869 case QEMU_OPTION_old_param
:
3872 case QEMU_OPTION_clock
:
3873 /* Clock options no longer exist. Keep this option for
3874 * backward compatibility.
3877 case QEMU_OPTION_startdate
:
3878 configure_rtc_date_offset(optarg
, 1);
3880 case QEMU_OPTION_rtc
:
3881 opts
= qemu_opts_parse_noisily(qemu_find_opts("rtc"), optarg
,
3886 configure_rtc(opts
);
3888 case QEMU_OPTION_tb_size
:
3890 error_report("TCG is disabled");
3893 if (qemu_strtoul(optarg
, NULL
, 0, &tcg_tb_size
) < 0) {
3894 error_report("Invalid argument to -tb-size");
3898 case QEMU_OPTION_icount
:
3899 icount_opts
= qemu_opts_parse_noisily(qemu_find_opts("icount"),
3905 case QEMU_OPTION_incoming
:
3907 runstate_set(RUN_STATE_INMIGRATE
);
3911 case QEMU_OPTION_only_migratable
:
3913 * TODO: we can remove this option one day, and we
3916 * "-global migration.only-migratable=true"
3918 qemu_global_option("migration.only-migratable=true");
3920 case QEMU_OPTION_nodefaults
:
3923 case QEMU_OPTION_xen_domid
:
3924 if (!(xen_available())) {
3925 error_report("Option not supported for this target");
3928 xen_domid
= atoi(optarg
);
3930 case QEMU_OPTION_xen_create
:
3931 if (!(xen_available())) {
3932 error_report("Option not supported for this target");
3935 xen_mode
= XEN_CREATE
;
3937 case QEMU_OPTION_xen_attach
:
3938 if (!(xen_available())) {
3939 error_report("Option not supported for this target");
3942 xen_mode
= XEN_ATTACH
;
3944 case QEMU_OPTION_xen_domid_restrict
:
3945 if (!(xen_available())) {
3946 error_report("Option not supported for this target");
3949 xen_domid_restrict
= true;
3951 case QEMU_OPTION_trace
:
3953 trace_file
= trace_opt_parse(optarg
);
3955 case QEMU_OPTION_readconfig
:
3957 int ret
= qemu_read_config_file(optarg
);
3959 error_report("read config %s: %s", optarg
,
3965 case QEMU_OPTION_spice
:
3966 olist
= qemu_find_opts("spice");
3968 error_report("spice support is disabled");
3971 opts
= qemu_opts_parse_noisily(olist
, optarg
, false);
3977 case QEMU_OPTION_writeconfig
:
3980 if (strcmp(optarg
, "-") == 0) {
3983 fp
= fopen(optarg
, "w");
3985 error_report("open %s: %s", optarg
,
3990 qemu_config_write(fp
);
3996 case QEMU_OPTION_qtest
:
3997 qtest_chrdev
= optarg
;
3999 case QEMU_OPTION_qtest_log
:
4002 case QEMU_OPTION_sandbox
:
4003 opts
= qemu_opts_parse_noisily(qemu_find_opts("sandbox"),
4009 case QEMU_OPTION_add_fd
:
4011 opts
= qemu_opts_parse_noisily(qemu_find_opts("add-fd"),
4017 error_report("File descriptor passing is disabled on this "
4022 case QEMU_OPTION_object
:
4023 opts
= qemu_opts_parse_noisily(qemu_find_opts("object"),
4029 case QEMU_OPTION_realtime
:
4030 opts
= qemu_opts_parse_noisily(qemu_find_opts("realtime"),
4035 enable_mlock
= qemu_opt_get_bool(opts
, "mlock", true);
4037 case QEMU_OPTION_msg
:
4038 opts
= qemu_opts_parse_noisily(qemu_find_opts("msg"), optarg
,
4043 configure_msg(opts
);
4045 case QEMU_OPTION_dump_vmstate
:
4046 if (vmstate_dump_file
) {
4047 error_report("only one '-dump-vmstate' "
4048 "option may be given");
4051 vmstate_dump_file
= fopen(optarg
, "w");
4052 if (vmstate_dump_file
== NULL
) {
4053 error_report("open %s: %s", optarg
, strerror(errno
));
4058 os_parse_cmd_args(popt
->index
, optarg
);
4063 * Clear error location left behind by the loop.
4064 * Best done right after the loop. Do not insert code here!
4068 replay_configure(icount_opts
);
4070 machine_class
= select_machine();
4072 set_memory_options(&ram_slots
, &maxram_size
, machine_class
);
4075 rcu_disable_atfork();
4077 if (pid_file
&& qemu_create_pidfile(pid_file
) != 0) {
4078 error_report("could not acquire pid file: %s", strerror(errno
));
4082 if (qemu_init_main_loop(&main_loop_err
)) {
4083 error_report_err(main_loop_err
);
4087 if (qemu_opts_foreach(qemu_find_opts("sandbox"),
4088 parse_sandbox
, NULL
, NULL
)) {
4092 if (qemu_opts_foreach(qemu_find_opts("name"),
4093 parse_name
, NULL
, NULL
)) {
4098 if (qemu_opts_foreach(qemu_find_opts("add-fd"),
4099 parse_add_fd
, NULL
, NULL
)) {
4103 if (qemu_opts_foreach(qemu_find_opts("add-fd"),
4104 cleanup_add_fd
, NULL
, NULL
)) {
4109 current_machine
= MACHINE(object_new(object_class_get_name(
4110 OBJECT_CLASS(machine_class
))));
4111 if (machine_help_func(qemu_get_machine_opts(), current_machine
)) {
4114 object_property_add_child(object_get_root(), "machine",
4115 OBJECT(current_machine
), &error_abort
);
4117 if (machine_class
->minimum_page_bits
) {
4118 if (!set_preferred_target_page_bits(machine_class
->minimum_page_bits
)) {
4119 /* This would be a board error: specifying a minimum smaller than
4120 * a target's compile-time fixed setting.
4122 g_assert_not_reached();
4126 cpu_exec_init_all();
4128 if (machine_class
->hw_version
) {
4129 qemu_set_hw_version(machine_class
->hw_version
);
4132 if (cpu_model
&& is_help_option(cpu_model
)) {
4133 list_cpus(stdout
, &fprintf
, cpu_model
);
4137 if (!trace_init_backends()) {
4140 trace_init_file(trace_file
);
4142 /* Open the logfile at this point and set the log mask if necessary.
4145 qemu_set_log_filename(log_file
, &error_fatal
);
4150 mask
= qemu_str_to_log_mask(log_mask
);
4152 qemu_print_log_usage(stdout
);
4160 /* add configured firmware directories */
4161 dirs
= g_strsplit(CONFIG_QEMU_FIRMWAREPATH
, G_SEARCHPATH_SEPARATOR_S
, 0);
4162 for (i
= 0; dirs
[i
] != NULL
; i
++) {
4163 qemu_add_data_dir(dirs
[i
]);
4167 /* try to find datadir relative to the executable path */
4168 dir
= os_find_datadir();
4169 qemu_add_data_dir(dir
);
4172 /* add the datadir specified when building */
4173 qemu_add_data_dir(CONFIG_QEMU_DATADIR
);
4175 /* -L help lists the data directories and exits. */
4176 if (list_data_dirs
) {
4177 for (i
= 0; i
< data_dir_idx
; i
++) {
4178 printf("%s\n", data_dir
[i
]);
4183 /* machine_class: default to UP */
4184 machine_class
->max_cpus
= machine_class
->max_cpus
?: 1;
4185 machine_class
->min_cpus
= machine_class
->min_cpus
?: 1;
4186 machine_class
->default_cpus
= machine_class
->default_cpus
?: 1;
4188 /* default to machine_class->default_cpus */
4189 smp_cpus
= machine_class
->default_cpus
;
4190 max_cpus
= machine_class
->default_cpus
;
4192 smp_parse(qemu_opts_find(qemu_find_opts("smp-opts"), NULL
));
4194 /* sanity-check smp_cpus and max_cpus against machine_class */
4195 if (smp_cpus
< machine_class
->min_cpus
) {
4196 error_report("Invalid SMP CPUs %d. The min CPUs "
4197 "supported by machine '%s' is %d", smp_cpus
,
4198 machine_class
->name
, machine_class
->min_cpus
);
4201 if (max_cpus
> machine_class
->max_cpus
) {
4202 error_report("Invalid SMP CPUs %d. The max CPUs "
4203 "supported by machine '%s' is %d", max_cpus
,
4204 machine_class
->name
, machine_class
->max_cpus
);
4209 * Get the default machine options from the machine if it is not already
4210 * specified either by the configuration file or by the command line.
4212 if (machine_class
->default_machine_opts
) {
4213 qemu_opts_set_defaults(qemu_find_opts("machine"),
4214 machine_class
->default_machine_opts
, 0);
4217 qemu_opts_foreach(qemu_find_opts("device"),
4218 default_driver_check
, NULL
, NULL
);
4219 qemu_opts_foreach(qemu_find_opts("global"),
4220 default_driver_check
, NULL
, NULL
);
4222 if (!vga_model
&& !default_vga
) {
4223 vga_interface_type
= VGA_DEVICE
;
4225 if (!has_defaults
|| machine_class
->no_serial
) {
4228 if (!has_defaults
|| machine_class
->no_parallel
) {
4229 default_parallel
= 0;
4231 if (!has_defaults
|| !machine_class
->use_virtcon
) {
4232 default_virtcon
= 0;
4234 if (!has_defaults
|| !machine_class
->use_sclp
) {
4237 if (!has_defaults
|| machine_class
->no_floppy
) {
4240 if (!has_defaults
|| machine_class
->no_cdrom
) {
4243 if (!has_defaults
|| machine_class
->no_sdcard
) {
4246 if (!has_defaults
) {
4247 default_monitor
= 0;
4252 if (is_daemonized()) {
4253 /* According to documentation and historically, -nographic redirects
4254 * serial port, parallel port and monitor to stdio, which does not work
4255 * with -daemonize. We can redirect these to null instead, but since
4256 * -nographic is legacy, let's just error out.
4257 * We disallow -nographic only if all other ports are not redirected
4258 * explicitly, to not break existing legacy setups which uses
4259 * -nographic _and_ redirects all ports explicitly - this is valid
4260 * usage, -nographic is just a no-op in this case.
4263 && (default_parallel
|| default_serial
4264 || default_monitor
|| default_virtcon
)) {
4265 error_report("-nographic cannot be used with -daemonize");
4268 #ifdef CONFIG_CURSES
4269 if (dpy
.type
== DISPLAY_TYPE_CURSES
) {
4270 error_report("curses display cannot be used with -daemonize");
4277 if (default_parallel
)
4278 add_device_config(DEV_PARALLEL
, "null");
4279 if (default_serial
&& default_monitor
) {
4280 add_device_config(DEV_SERIAL
, "mon:stdio");
4281 } else if (default_virtcon
&& default_monitor
) {
4282 add_device_config(DEV_VIRTCON
, "mon:stdio");
4283 } else if (default_sclp
&& default_monitor
) {
4284 add_device_config(DEV_SCLP
, "mon:stdio");
4287 add_device_config(DEV_SERIAL
, "stdio");
4288 if (default_virtcon
)
4289 add_device_config(DEV_VIRTCON
, "stdio");
4291 add_device_config(DEV_SCLP
, "stdio");
4293 if (default_monitor
)
4294 monitor_parse("stdio", "readline", false);
4298 add_device_config(DEV_SERIAL
, "vc:80Cx24C");
4299 if (default_parallel
)
4300 add_device_config(DEV_PARALLEL
, "vc:80Cx24C");
4301 if (default_monitor
)
4302 monitor_parse("vc:80Cx24C", "readline", false);
4303 if (default_virtcon
)
4304 add_device_config(DEV_VIRTCON
, "vc:80Cx24C");
4306 add_device_config(DEV_SCLP
, "vc:80Cx24C");
4310 #if defined(CONFIG_VNC)
4311 if (!QTAILQ_EMPTY(&(qemu_find_opts("vnc")->head
))) {
4315 if (dpy
.type
== DISPLAY_TYPE_DEFAULT
&& !display_remote
) {
4316 #if defined(CONFIG_GTK)
4317 dpy
.type
= DISPLAY_TYPE_GTK
;
4318 #elif defined(CONFIG_SDL)
4319 dpy
.type
= DISPLAY_TYPE_SDL
;
4320 #elif defined(CONFIG_COCOA)
4321 dpy
.type
= DISPLAY_TYPE_COCOA
;
4322 #elif defined(CONFIG_VNC)
4323 vnc_parse("localhost:0,to=99,id=default", &error_abort
);
4325 dpy
.type
= DISPLAY_TYPE_NONE
;
4329 if ((no_frame
|| alt_grab
|| ctrl_grab
) && dpy
.type
!= DISPLAY_TYPE_SDL
) {
4330 error_report("-no-frame, -alt-grab and -ctrl-grab are only valid "
4331 "for SDL, ignoring option");
4333 if (dpy
.has_window_close
&&
4334 (dpy
.type
!= DISPLAY_TYPE_GTK
&& dpy
.type
!= DISPLAY_TYPE_SDL
)) {
4335 error_report("-no-quit is only valid for GTK and SDL, "
4339 if (dpy
.type
== DISPLAY_TYPE_GTK
) {
4340 early_gtk_display_init(&dpy
);
4343 if (dpy
.type
== DISPLAY_TYPE_SDL
) {
4344 sdl_display_early_init(&dpy
);
4347 qemu_console_early_init();
4349 if (dpy
.has_gl
&& dpy
.gl
&& display_opengl
== 0) {
4350 #if defined(CONFIG_OPENGL)
4351 error_report("OpenGL is not supported by the display");
4353 error_report("OpenGL support is disabled");
4361 if (qemu_opts_foreach(qemu_find_opts("object"),
4362 user_creatable_add_opts_foreach
,
4363 object_create_initial
, NULL
)) {
4367 if (qemu_opts_foreach(qemu_find_opts("chardev"),
4368 chardev_init_func
, NULL
, NULL
)) {
4372 #ifdef CONFIG_VIRTFS
4373 if (qemu_opts_foreach(qemu_find_opts("fsdev"),
4374 fsdev_init_func
, NULL
, NULL
)) {
4379 if (qemu_opts_foreach(qemu_find_opts("device"),
4380 device_help_func
, NULL
, NULL
)) {
4384 machine_opts
= qemu_get_machine_opts();
4385 if (qemu_opt_foreach(machine_opts
, machine_set_property
, current_machine
,
4387 object_unref(OBJECT(current_machine
));
4391 configure_accelerator(current_machine
);
4394 * Register all the global properties, including accel properties,
4395 * machine properties, and user-specified ones.
4397 register_global_properties(current_machine
);
4400 * Migration object can only be created after global properties
4401 * are applied correctly.
4403 migration_object_init();
4406 qtest_init(qtest_chrdev
, qtest_log
, &error_fatal
);
4409 machine_opts
= qemu_get_machine_opts();
4410 kernel_filename
= qemu_opt_get(machine_opts
, "kernel");
4411 initrd_filename
= qemu_opt_get(machine_opts
, "initrd");
4412 kernel_cmdline
= qemu_opt_get(machine_opts
, "append");
4413 bios_name
= qemu_opt_get(machine_opts
, "firmware");
4415 opts
= qemu_opts_find(qemu_find_opts("boot-opts"), NULL
);
4417 boot_order
= qemu_opt_get(opts
, "order");
4419 validate_bootdevices(boot_order
, &error_fatal
);
4422 boot_once
= qemu_opt_get(opts
, "once");
4424 validate_bootdevices(boot_once
, &error_fatal
);
4427 boot_menu
= qemu_opt_get_bool(opts
, "menu", boot_menu
);
4428 boot_strict
= qemu_opt_get_bool(opts
, "strict", false);
4432 boot_order
= machine_class
->default_boot_order
;
4435 if (!kernel_cmdline
) {
4436 kernel_cmdline
= "";
4437 current_machine
->kernel_cmdline
= (char *)kernel_cmdline
;
4440 linux_boot
= (kernel_filename
!= NULL
);
4442 if (!linux_boot
&& *kernel_cmdline
!= '\0') {
4443 error_report("-append only allowed with -kernel option");
4447 if (!linux_boot
&& initrd_filename
!= NULL
) {
4448 error_report("-initrd only allowed with -kernel option");
4452 if (semihosting_enabled() && !semihosting_get_argc() && kernel_filename
) {
4453 /* fall back to the -kernel/-append */
4454 semihosting_arg_fallback(kernel_filename
, kernel_cmdline
);
4457 os_set_line_buffering();
4459 /* spice needs the timers to be initialized by this point */
4464 if (!tcg_enabled()) {
4465 error_report("-icount is not allowed with hardware virtualization");
4468 configure_icount(icount_opts
, &error_abort
);
4469 qemu_opts_del(icount_opts
);
4472 if (tcg_enabled()) {
4473 qemu_tcg_configure(accel_opts
, &error_fatal
);
4477 QemuOptsList
*net
= qemu_find_opts("net");
4478 qemu_opts_set(net
, NULL
, "type", "nic", &error_abort
);
4480 qemu_opts_set(net
, NULL
, "type", "user", &error_abort
);
4486 if (net_init_clients() < 0) {
4490 if (qemu_opts_foreach(qemu_find_opts("object"),
4491 user_creatable_add_opts_foreach
,
4492 object_create_delayed
, NULL
)) {
4496 if (tpm_init() < 0) {
4500 /* init the bluetooth world */
4501 if (foreach_device_config(DEV_BT
, bt_parse
))
4504 if (!xen_enabled()) {
4505 /* On 32-bit hosts, QEMU is limited by virtual address space */
4506 if (ram_size
> (2047 << 20) && HOST_LONG_BITS
== 32) {
4507 error_report("at most 2047 MB RAM can be simulated");
4515 /* If the currently selected machine wishes to override the units-per-bus
4516 * property of its default HBA interface type, do so now. */
4517 if (machine_class
->units_per_default_bus
) {
4518 override_max_devs(machine_class
->block_default_type
,
4519 machine_class
->units_per_default_bus
);
4522 /* open the virtual block devices */
4523 while (!QSIMPLEQ_EMPTY(&bdo_queue
)) {
4524 BlockdevOptions_queue
*bdo
= QSIMPLEQ_FIRST(&bdo_queue
);
4526 QSIMPLEQ_REMOVE_HEAD(&bdo_queue
, entry
);
4527 loc_push_restore(&bdo
->loc
);
4528 qmp_blockdev_add(bdo
->bdo
, &error_fatal
);
4530 qapi_free_BlockdevOptions(bdo
->bdo
);
4533 if (snapshot
|| replay_mode
!= REPLAY_MODE_NONE
) {
4534 qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot
,
4537 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func
,
4538 &machine_class
->block_default_type
, NULL
)) {
4542 default_drive(default_cdrom
, snapshot
, machine_class
->block_default_type
, 2,
4544 default_drive(default_floppy
, snapshot
, IF_FLOPPY
, 0, FD_OPTS
);
4545 default_drive(default_sdcard
, snapshot
, IF_SD
, 0, SD_OPTS
);
4547 if (qemu_opts_foreach(qemu_find_opts("mon"),
4548 mon_init_func
, NULL
, NULL
)) {
4552 if (foreach_device_config(DEV_SERIAL
, serial_parse
) < 0)
4554 if (foreach_device_config(DEV_PARALLEL
, parallel_parse
) < 0)
4556 if (foreach_device_config(DEV_VIRTCON
, virtcon_parse
) < 0)
4558 if (foreach_device_config(DEV_SCLP
, sclp_parse
) < 0) {
4561 if (foreach_device_config(DEV_DEBUGCON
, debugcon_parse
) < 0)
4564 /* If no default VGA is requested, the default is "none". */
4566 if (machine_class
->default_display
) {
4567 vga_model
= machine_class
->default_display
;
4568 } else if (vga_interface_available(VGA_CIRRUS
)) {
4569 vga_model
= "cirrus";
4570 } else if (vga_interface_available(VGA_STD
)) {
4575 select_vgahw(vga_model
);
4579 i
= select_watchdog(watchdog
);
4581 exit (i
== 1 ? 1 : 0);
4584 /* This checkpoint is required by replay to separate prior clock
4585 reading from the other reads, because timer polling functions query
4586 clock values from the log. */
4587 replay_checkpoint(CHECKPOINT_INIT
);
4588 qdev_machine_init();
4590 current_machine
->ram_size
= ram_size
;
4591 current_machine
->maxram_size
= maxram_size
;
4592 current_machine
->ram_slots
= ram_slots
;
4593 current_machine
->boot_order
= boot_order
;
4594 current_machine
->cpu_model
= cpu_model
;
4596 /* parse features once if machine provides default cpu_type */
4597 if (machine_class
->default_cpu_type
) {
4598 current_machine
->cpu_type
= machine_class
->default_cpu_type
;
4600 current_machine
->cpu_type
=
4601 cpu_parse_cpu_model(machine_class
->default_cpu_type
, cpu_model
);
4604 parse_numa_opts(current_machine
);
4606 machine_run_board_init(current_machine
);
4612 if (hax_enabled()) {
4616 if (qemu_opts_foreach(qemu_find_opts("fw_cfg"),
4617 parse_fw_cfg
, fw_cfg_find(), NULL
) != 0) {
4621 /* init USB devices */
4622 if (machine_usb(current_machine
)) {
4623 if (foreach_device_config(DEV_USB
, usb_parse
) < 0)
4627 /* Check if IGD GFX passthrough. */
4630 /* init generic devices */
4631 rom_set_order_override(FW_CFG_ORDER_OVERRIDE_DEVICE
);
4632 if (qemu_opts_foreach(qemu_find_opts("device"),
4633 device_init_func
, NULL
, NULL
)) {
4637 cpu_synchronize_all_post_init();
4639 rom_reset_order_override();
4642 * Create frontends for -drive if=scsi leftovers.
4643 * Normally, frontends for -drive get created by machine
4644 * initialization for onboard SCSI HBAs. However, we create a few
4645 * more ever since SCSI qdevification, but this is pretty much an
4646 * implementation accident, and deprecated.
4648 scsi_legacy_handle_cmdline();
4650 /* Did we create any drives that we failed to create a device for? */
4651 drive_check_orphaned();
4653 /* Don't warn about the default network setup that you get if
4654 * no command line -net or -netdev options are specified. There
4655 * are two cases that we would otherwise complain about:
4656 * (1) board doesn't support a NIC but the implicit "-net nic"
4658 * (2) CONFIG_SLIRP not set, in which case the implicit "-net nic"
4659 * sets up a nic that isn't connected to anything.
4662 net_check_clients();
4667 qemu_boot_set(boot_once
, &error_fatal
);
4668 qemu_register_reset(restore_boot_order
, g_strdup(boot_order
));
4671 ds
= init_displaystate();
4673 /* init local displays */
4675 case DISPLAY_TYPE_CURSES
:
4676 curses_display_init(ds
, &dpy
);
4678 case DISPLAY_TYPE_SDL
:
4679 sdl_display_init(ds
, &dpy
);
4681 case DISPLAY_TYPE_COCOA
:
4682 cocoa_display_init(ds
, &dpy
);
4684 case DISPLAY_TYPE_GTK
:
4685 gtk_display_init(ds
, &dpy
);
4691 /* must be after terminal init, SDL library changes signal handlers */
4692 os_setup_signal_handling();
4694 /* init remote displays */
4696 qemu_opts_foreach(qemu_find_opts("vnc"),
4697 vnc_init_func
, NULL
, NULL
);
4701 qemu_spice_display_init();
4704 #ifdef CONFIG_OPENGL_DMABUF
4705 if (dpy
.type
== DISPLAY_TYPE_EGL_HEADLESS
) {
4706 egl_headless_init(&dpy
);
4710 if (foreach_device_config(DEV_GDB
, gdbserver_start
) < 0) {
4714 qdev_machine_creation_done();
4716 /* TODO: once all bus devices are qdevified, this should be done
4717 * when bus is created by qdev.c */
4718 qemu_register_reset(qbus_reset_all_fn
, sysbus_get_default());
4719 qemu_run_machine_init_done_notifiers();
4721 if (rom_check_and_register_reset() != 0) {
4722 error_report("rom check and register reset failed");
4728 /* This checkpoint is required by replay to separate prior clock
4729 reading from the other reads, because timer polling functions query
4730 clock values from the log. */
4731 replay_checkpoint(CHECKPOINT_RESET
);
4732 qemu_system_reset(SHUTDOWN_CAUSE_NONE
);
4733 register_global_state();
4734 if (replay_mode
!= REPLAY_MODE_NONE
) {
4735 replay_vmstate_init();
4736 } else if (loadvm
) {
4737 Error
*local_err
= NULL
;
4738 if (load_snapshot(loadvm
, &local_err
) < 0) {
4739 error_report_err(local_err
);
4744 qdev_prop_check_globals();
4745 if (vmstate_dump_file
) {
4747 dump_vmstate_json_to_file(vmstate_dump_file
);
4752 Error
*local_err
= NULL
;
4753 qemu_start_incoming_migration(incoming
, &local_err
);
4755 error_reportf_err(local_err
, "-incoming %s: ", incoming
);
4758 } else if (autostart
) {
4765 replay_disable_events();
4767 /* The ordering of the following is delicate. Stop vcpus to prevent new
4768 * I/O requests being queued by the guest. Then stop IOThreads (this
4769 * includes a drain operation and completes all request processing). At
4770 * this point emulated devices are still associated with their IOThreads
4771 * (if any) but no longer have any work to do. Only then can we close
4772 * block devices safely because we know there is no more I/O coming.
4775 iothread_stop_all();
4780 /* vhost-user must be cleaned up before chardevs. */
4786 user_creatable_cleanup();
4787 migration_object_finalize();
4788 /* TODO: unref root container, check all devices are ok */