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 "migration/postcopy-ram.h"
98 #include "sysemu/kvm.h"
99 #include "sysemu/hax.h"
100 #include "qapi/qobject-input-visitor.h"
101 #include "qemu/option.h"
102 #include "qemu/config-file.h"
103 #include "qemu-options.h"
104 #include "qemu/main-loop.h"
106 #include "fsdev/qemu-fsdev.h"
108 #include "sysemu/qtest.h"
110 #include "disas/disas.h"
113 #include "slirp/libslirp.h"
115 #include "trace-root.h"
116 #include "trace/control.h"
117 #include "qemu/queue.h"
118 #include "sysemu/arch_init.h"
120 #include "ui/qemu-spice.h"
121 #include "qapi/string-input-visitor.h"
122 #include "qapi/opts-visitor.h"
123 #include "qapi/clone-visitor.h"
124 #include "qom/object_interfaces.h"
125 #include "exec/semihost.h"
126 #include "crypto/init.h"
127 #include "sysemu/replay.h"
128 #include "qapi/qapi-events-run-state.h"
129 #include "qapi/qapi-visit-block-core.h"
130 #include "qapi/qapi-visit-ui.h"
131 #include "qapi/qapi-commands-block-core.h"
132 #include "qapi/qapi-commands-misc.h"
133 #include "qapi/qapi-commands-run-state.h"
134 #include "qapi/qmp/qerror.h"
135 #include "sysemu/iothread.h"
137 #define MAX_VIRTIO_CONSOLES 1
139 static const char *data_dir
[16];
140 static int data_dir_idx
;
141 const char *bios_name
= NULL
;
142 enum vga_retrace_method vga_retrace_method
= VGA_RETRACE_DUMB
;
144 const char* keyboard_layout
= NULL
;
146 const char *mem_path
= NULL
;
147 int mem_prealloc
= 0; /* force preallocation of physical target memory */
148 bool enable_mlock
= false;
150 NICInfo nd_table
[MAX_NICS
];
152 static int rtc_utc
= 1;
153 static int rtc_date_offset
= -1; /* -1 means no change */
154 QEMUClockType rtc_clock
;
155 int vga_interface_type
= VGA_NONE
;
156 static DisplayOptions dpy
;
158 static int num_serial_hds
= 0;
159 static Chardev
**serial_hds
= NULL
;
160 Chardev
*parallel_hds
[MAX_PARALLEL_PORTS
];
161 Chardev
*virtcon_hds
[MAX_VIRTIO_CONSOLES
];
162 int win2k_install_hack
= 0;
165 unsigned int max_cpus
;
168 int acpi_enabled
= 1;
171 static int no_reboot
;
174 int graphic_rotate
= 0;
175 const char *watchdog
;
176 QEMUOptionRom option_rom
[MAX_OPTION_ROMS
];
179 const char *qemu_name
;
182 unsigned int nb_prom_envs
= 0;
183 const char *prom_envs
[MAX_PROM_ENVS
];
186 uint8_t *boot_splash_filedata
;
187 size_t boot_splash_filedata_size
;
188 uint8_t qemu_extra_params_fw
[2];
190 int icount_align_option
;
192 /* The bytes in qemu_uuid are in the order specified by RFC4122, _not_ in the
193 * little-endian "wire format" described in the SMBIOS 2.6 specification.
198 static NotifierList exit_notifiers
=
199 NOTIFIER_LIST_INITIALIZER(exit_notifiers
);
201 static NotifierList machine_init_done_notifiers
=
202 NOTIFIER_LIST_INITIALIZER(machine_init_done_notifiers
);
206 enum xen_mode xen_mode
= XEN_EMULATE
;
207 bool xen_domid_restrict
;
209 static int has_defaults
= 1;
210 static int default_serial
= 1;
211 static int default_parallel
= 1;
212 static int default_virtcon
= 1;
213 static int default_monitor
= 1;
214 static int default_floppy
= 1;
215 static int default_cdrom
= 1;
216 static int default_sdcard
= 1;
217 static int default_vga
= 1;
218 static int default_net
= 1;
224 { .driver
= "isa-serial", .flag
= &default_serial
},
225 { .driver
= "isa-parallel", .flag
= &default_parallel
},
226 { .driver
= "isa-fdc", .flag
= &default_floppy
},
227 { .driver
= "floppy", .flag
= &default_floppy
},
228 { .driver
= "ide-cd", .flag
= &default_cdrom
},
229 { .driver
= "ide-hd", .flag
= &default_cdrom
},
230 { .driver
= "ide-drive", .flag
= &default_cdrom
},
231 { .driver
= "scsi-cd", .flag
= &default_cdrom
},
232 { .driver
= "scsi-hd", .flag
= &default_cdrom
},
233 { .driver
= "virtio-serial-pci", .flag
= &default_virtcon
},
234 { .driver
= "virtio-serial", .flag
= &default_virtcon
},
235 { .driver
= "VGA", .flag
= &default_vga
},
236 { .driver
= "isa-vga", .flag
= &default_vga
},
237 { .driver
= "cirrus-vga", .flag
= &default_vga
},
238 { .driver
= "isa-cirrus-vga", .flag
= &default_vga
},
239 { .driver
= "vmware-svga", .flag
= &default_vga
},
240 { .driver
= "qxl-vga", .flag
= &default_vga
},
241 { .driver
= "virtio-vga", .flag
= &default_vga
},
244 static QemuOptsList qemu_rtc_opts
= {
246 .head
= QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts
.head
),
250 .type
= QEMU_OPT_STRING
,
253 .type
= QEMU_OPT_STRING
,
256 .type
= QEMU_OPT_STRING
,
258 { /* end of list */ }
262 static QemuOptsList qemu_sandbox_opts
= {
264 .implied_opt_name
= "enable",
265 .head
= QTAILQ_HEAD_INITIALIZER(qemu_sandbox_opts
.head
),
269 .type
= QEMU_OPT_BOOL
,
273 .type
= QEMU_OPT_STRING
,
276 .name
= "elevateprivileges",
277 .type
= QEMU_OPT_STRING
,
281 .type
= QEMU_OPT_STRING
,
284 .name
= "resourcecontrol",
285 .type
= QEMU_OPT_STRING
,
287 { /* end of list */ }
291 static QemuOptsList qemu_option_rom_opts
= {
292 .name
= "option-rom",
293 .implied_opt_name
= "romfile",
294 .head
= QTAILQ_HEAD_INITIALIZER(qemu_option_rom_opts
.head
),
298 .type
= QEMU_OPT_NUMBER
,
301 .type
= QEMU_OPT_STRING
,
303 { /* end of list */ }
307 static QemuOptsList qemu_machine_opts
= {
309 .implied_opt_name
= "type",
311 .head
= QTAILQ_HEAD_INITIALIZER(qemu_machine_opts
.head
),
314 * no elements => accept any
315 * sanity checking will happen later
316 * when setting machine properties
322 static QemuOptsList qemu_accel_opts
= {
324 .implied_opt_name
= "accel",
325 .head
= QTAILQ_HEAD_INITIALIZER(qemu_accel_opts
.head
),
330 .type
= QEMU_OPT_STRING
,
331 .help
= "Select the type of accelerator",
335 .type
= QEMU_OPT_STRING
,
336 .help
= "Enable/disable multi-threaded TCG",
338 { /* end of list */ }
342 static QemuOptsList qemu_boot_opts
= {
344 .implied_opt_name
= "order",
346 .head
= QTAILQ_HEAD_INITIALIZER(qemu_boot_opts
.head
),
350 .type
= QEMU_OPT_STRING
,
353 .type
= QEMU_OPT_STRING
,
356 .type
= QEMU_OPT_BOOL
,
359 .type
= QEMU_OPT_STRING
,
361 .name
= "splash-time",
362 .type
= QEMU_OPT_STRING
,
364 .name
= "reboot-timeout",
365 .type
= QEMU_OPT_STRING
,
368 .type
= QEMU_OPT_BOOL
,
374 static QemuOptsList qemu_add_fd_opts
= {
376 .head
= QTAILQ_HEAD_INITIALIZER(qemu_add_fd_opts
.head
),
380 .type
= QEMU_OPT_NUMBER
,
381 .help
= "file descriptor of which a duplicate is added to fd set",
384 .type
= QEMU_OPT_NUMBER
,
385 .help
= "ID of the fd set to add fd to",
388 .type
= QEMU_OPT_STRING
,
389 .help
= "free-form string used to describe fd",
391 { /* end of list */ }
395 static QemuOptsList qemu_object_opts
= {
397 .implied_opt_name
= "qom-type",
398 .head
= QTAILQ_HEAD_INITIALIZER(qemu_object_opts
.head
),
404 static QemuOptsList qemu_tpmdev_opts
= {
406 .implied_opt_name
= "type",
407 .head
= QTAILQ_HEAD_INITIALIZER(qemu_tpmdev_opts
.head
),
409 /* options are defined in the TPM backends */
410 { /* end of list */ }
414 static QemuOptsList qemu_realtime_opts
= {
416 .head
= QTAILQ_HEAD_INITIALIZER(qemu_realtime_opts
.head
),
420 .type
= QEMU_OPT_BOOL
,
422 { /* end of list */ }
426 static QemuOptsList qemu_msg_opts
= {
428 .head
= QTAILQ_HEAD_INITIALIZER(qemu_msg_opts
.head
),
432 .type
= QEMU_OPT_BOOL
,
434 { /* end of list */ }
438 static QemuOptsList qemu_name_opts
= {
440 .implied_opt_name
= "guest",
442 .head
= QTAILQ_HEAD_INITIALIZER(qemu_name_opts
.head
),
446 .type
= QEMU_OPT_STRING
,
447 .help
= "Sets the name of the guest.\n"
448 "This name will be displayed in the SDL window caption.\n"
449 "The name will also be used for the VNC server",
452 .type
= QEMU_OPT_STRING
,
453 .help
= "Sets the name of the QEMU process, as shown in top etc",
455 .name
= "debug-threads",
456 .type
= QEMU_OPT_BOOL
,
457 .help
= "When enabled, name the individual threads; defaults off.\n"
458 "NOTE: The thread names are for debugging and not a\n"
461 { /* End of list */ }
465 static QemuOptsList qemu_mem_opts
= {
467 .implied_opt_name
= "size",
468 .head
= QTAILQ_HEAD_INITIALIZER(qemu_mem_opts
.head
),
473 .type
= QEMU_OPT_SIZE
,
477 .type
= QEMU_OPT_NUMBER
,
481 .type
= QEMU_OPT_SIZE
,
483 { /* end of list */ }
487 static QemuOptsList qemu_icount_opts
= {
489 .implied_opt_name
= "shift",
491 .head
= QTAILQ_HEAD_INITIALIZER(qemu_icount_opts
.head
),
495 .type
= QEMU_OPT_STRING
,
498 .type
= QEMU_OPT_BOOL
,
501 .type
= QEMU_OPT_BOOL
,
504 .type
= QEMU_OPT_STRING
,
507 .type
= QEMU_OPT_STRING
,
509 .name
= "rrsnapshot",
510 .type
= QEMU_OPT_STRING
,
512 { /* end of list */ }
516 static QemuOptsList qemu_semihosting_config_opts
= {
517 .name
= "semihosting-config",
518 .implied_opt_name
= "enable",
519 .head
= QTAILQ_HEAD_INITIALIZER(qemu_semihosting_config_opts
.head
),
523 .type
= QEMU_OPT_BOOL
,
526 .type
= QEMU_OPT_STRING
,
529 .type
= QEMU_OPT_STRING
,
531 { /* end of list */ }
535 static QemuOptsList qemu_fw_cfg_opts
= {
537 .implied_opt_name
= "name",
538 .head
= QTAILQ_HEAD_INITIALIZER(qemu_fw_cfg_opts
.head
),
542 .type
= QEMU_OPT_STRING
,
543 .help
= "Sets the fw_cfg name of the blob to be inserted",
546 .type
= QEMU_OPT_STRING
,
547 .help
= "Sets the name of the file from which\n"
548 "the fw_cfg blob will be loaded",
551 .type
= QEMU_OPT_STRING
,
552 .help
= "Sets content of the blob to be inserted from a string",
554 { /* end of list */ }
559 * Get machine options
561 * Returns: machine options (never null).
563 QemuOpts
*qemu_get_machine_opts(void)
565 return qemu_find_opts_singleton("machine");
568 const char *qemu_get_vm_name(void)
573 static void res_free(void)
575 g_free(boot_splash_filedata
);
576 boot_splash_filedata
= NULL
;
579 static int default_driver_check(void *opaque
, QemuOpts
*opts
, Error
**errp
)
581 const char *driver
= qemu_opt_get(opts
, "driver");
586 for (i
= 0; i
< ARRAY_SIZE(default_list
); i
++) {
587 if (strcmp(default_list
[i
].driver
, driver
) != 0)
589 *(default_list
[i
].flag
) = 0;
594 /***********************************************************/
597 static RunState current_run_state
= RUN_STATE_PRELAUNCH
;
599 /* We use RUN_STATE__MAX but any invalid value will do */
600 static RunState vmstop_requested
= RUN_STATE__MAX
;
601 static QemuMutex vmstop_lock
;
606 } RunStateTransition
;
608 static const RunStateTransition runstate_transitions_def
[] = {
610 { RUN_STATE_DEBUG
, RUN_STATE_RUNNING
},
611 { RUN_STATE_DEBUG
, RUN_STATE_FINISH_MIGRATE
},
612 { RUN_STATE_DEBUG
, RUN_STATE_PRELAUNCH
},
614 { RUN_STATE_INMIGRATE
, RUN_STATE_INTERNAL_ERROR
},
615 { RUN_STATE_INMIGRATE
, RUN_STATE_IO_ERROR
},
616 { RUN_STATE_INMIGRATE
, RUN_STATE_PAUSED
},
617 { RUN_STATE_INMIGRATE
, RUN_STATE_RUNNING
},
618 { RUN_STATE_INMIGRATE
, RUN_STATE_SHUTDOWN
},
619 { RUN_STATE_INMIGRATE
, RUN_STATE_SUSPENDED
},
620 { RUN_STATE_INMIGRATE
, RUN_STATE_WATCHDOG
},
621 { RUN_STATE_INMIGRATE
, RUN_STATE_GUEST_PANICKED
},
622 { RUN_STATE_INMIGRATE
, RUN_STATE_FINISH_MIGRATE
},
623 { RUN_STATE_INMIGRATE
, RUN_STATE_PRELAUNCH
},
624 { RUN_STATE_INMIGRATE
, RUN_STATE_POSTMIGRATE
},
625 { RUN_STATE_INMIGRATE
, RUN_STATE_COLO
},
627 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_PAUSED
},
628 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_FINISH_MIGRATE
},
629 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_PRELAUNCH
},
631 { RUN_STATE_IO_ERROR
, RUN_STATE_RUNNING
},
632 { RUN_STATE_IO_ERROR
, RUN_STATE_FINISH_MIGRATE
},
633 { RUN_STATE_IO_ERROR
, RUN_STATE_PRELAUNCH
},
635 { RUN_STATE_PAUSED
, RUN_STATE_RUNNING
},
636 { RUN_STATE_PAUSED
, RUN_STATE_FINISH_MIGRATE
},
637 { RUN_STATE_PAUSED
, RUN_STATE_POSTMIGRATE
},
638 { RUN_STATE_PAUSED
, RUN_STATE_PRELAUNCH
},
639 { RUN_STATE_PAUSED
, RUN_STATE_COLO
},
641 { RUN_STATE_POSTMIGRATE
, RUN_STATE_RUNNING
},
642 { RUN_STATE_POSTMIGRATE
, RUN_STATE_FINISH_MIGRATE
},
643 { RUN_STATE_POSTMIGRATE
, RUN_STATE_PRELAUNCH
},
645 { RUN_STATE_PRELAUNCH
, RUN_STATE_RUNNING
},
646 { RUN_STATE_PRELAUNCH
, RUN_STATE_FINISH_MIGRATE
},
647 { RUN_STATE_PRELAUNCH
, RUN_STATE_INMIGRATE
},
649 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_RUNNING
},
650 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_PAUSED
},
651 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_POSTMIGRATE
},
652 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_PRELAUNCH
},
653 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_COLO
},
655 { RUN_STATE_RESTORE_VM
, RUN_STATE_RUNNING
},
656 { RUN_STATE_RESTORE_VM
, RUN_STATE_PRELAUNCH
},
658 { RUN_STATE_COLO
, RUN_STATE_RUNNING
},
660 { RUN_STATE_RUNNING
, RUN_STATE_DEBUG
},
661 { RUN_STATE_RUNNING
, RUN_STATE_INTERNAL_ERROR
},
662 { RUN_STATE_RUNNING
, RUN_STATE_IO_ERROR
},
663 { RUN_STATE_RUNNING
, RUN_STATE_PAUSED
},
664 { RUN_STATE_RUNNING
, RUN_STATE_FINISH_MIGRATE
},
665 { RUN_STATE_RUNNING
, RUN_STATE_RESTORE_VM
},
666 { RUN_STATE_RUNNING
, RUN_STATE_SAVE_VM
},
667 { RUN_STATE_RUNNING
, RUN_STATE_SHUTDOWN
},
668 { RUN_STATE_RUNNING
, RUN_STATE_WATCHDOG
},
669 { RUN_STATE_RUNNING
, RUN_STATE_GUEST_PANICKED
},
670 { RUN_STATE_RUNNING
, RUN_STATE_COLO
},
672 { RUN_STATE_SAVE_VM
, RUN_STATE_RUNNING
},
674 { RUN_STATE_SHUTDOWN
, RUN_STATE_PAUSED
},
675 { RUN_STATE_SHUTDOWN
, RUN_STATE_FINISH_MIGRATE
},
676 { RUN_STATE_SHUTDOWN
, RUN_STATE_PRELAUNCH
},
678 { RUN_STATE_DEBUG
, RUN_STATE_SUSPENDED
},
679 { RUN_STATE_RUNNING
, RUN_STATE_SUSPENDED
},
680 { RUN_STATE_SUSPENDED
, RUN_STATE_RUNNING
},
681 { RUN_STATE_SUSPENDED
, RUN_STATE_FINISH_MIGRATE
},
682 { RUN_STATE_SUSPENDED
, RUN_STATE_PRELAUNCH
},
683 { RUN_STATE_SUSPENDED
, RUN_STATE_COLO
},
685 { RUN_STATE_WATCHDOG
, RUN_STATE_RUNNING
},
686 { RUN_STATE_WATCHDOG
, RUN_STATE_FINISH_MIGRATE
},
687 { RUN_STATE_WATCHDOG
, RUN_STATE_PRELAUNCH
},
688 { RUN_STATE_WATCHDOG
, RUN_STATE_COLO
},
690 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_RUNNING
},
691 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_FINISH_MIGRATE
},
692 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_PRELAUNCH
},
694 { RUN_STATE__MAX
, RUN_STATE__MAX
},
697 static bool runstate_valid_transitions
[RUN_STATE__MAX
][RUN_STATE__MAX
];
699 bool runstate_check(RunState state
)
701 return current_run_state
== state
;
704 bool runstate_store(char *str
, size_t size
)
706 const char *state
= RunState_str(current_run_state
);
707 size_t len
= strlen(state
) + 1;
712 memcpy(str
, state
, len
);
716 static void runstate_init(void)
718 const RunStateTransition
*p
;
720 memset(&runstate_valid_transitions
, 0, sizeof(runstate_valid_transitions
));
721 for (p
= &runstate_transitions_def
[0]; p
->from
!= RUN_STATE__MAX
; p
++) {
722 runstate_valid_transitions
[p
->from
][p
->to
] = true;
725 qemu_mutex_init(&vmstop_lock
);
728 /* This function will abort() on invalid state transitions */
729 void runstate_set(RunState new_state
)
731 assert(new_state
< RUN_STATE__MAX
);
733 if (current_run_state
== new_state
) {
737 if (!runstate_valid_transitions
[current_run_state
][new_state
]) {
738 error_report("invalid runstate transition: '%s' -> '%s'",
739 RunState_str(current_run_state
),
740 RunState_str(new_state
));
743 trace_runstate_set(new_state
);
744 current_run_state
= new_state
;
747 int runstate_is_running(void)
749 return runstate_check(RUN_STATE_RUNNING
);
752 bool runstate_needs_reset(void)
754 return runstate_check(RUN_STATE_INTERNAL_ERROR
) ||
755 runstate_check(RUN_STATE_SHUTDOWN
);
758 StatusInfo
*qmp_query_status(Error
**errp
)
760 StatusInfo
*info
= g_malloc0(sizeof(*info
));
762 info
->running
= runstate_is_running();
763 info
->singlestep
= singlestep
;
764 info
->status
= current_run_state
;
769 bool qemu_vmstop_requested(RunState
*r
)
771 qemu_mutex_lock(&vmstop_lock
);
772 *r
= vmstop_requested
;
773 vmstop_requested
= RUN_STATE__MAX
;
774 qemu_mutex_unlock(&vmstop_lock
);
775 return *r
< RUN_STATE__MAX
;
778 void qemu_system_vmstop_request_prepare(void)
780 qemu_mutex_lock(&vmstop_lock
);
783 void qemu_system_vmstop_request(RunState state
)
785 vmstop_requested
= state
;
786 qemu_mutex_unlock(&vmstop_lock
);
790 /***********************************************************/
791 /* real time host monotonic timer */
793 static time_t qemu_time(void)
795 return qemu_clock_get_ms(QEMU_CLOCK_HOST
) / 1000;
798 /***********************************************************/
799 /* host time/date access */
800 void qemu_get_timedate(struct tm
*tm
, int offset
)
802 time_t ti
= qemu_time();
805 if (rtc_date_offset
== -1) {
809 localtime_r(&ti
, tm
);
811 ti
-= rtc_date_offset
;
816 int qemu_timedate_diff(struct tm
*tm
)
820 if (rtc_date_offset
== -1)
822 seconds
= mktimegm(tm
);
825 tmp
.tm_isdst
= -1; /* use timezone to figure it out */
826 seconds
= mktime(&tmp
);
829 seconds
= mktimegm(tm
) + rtc_date_offset
;
831 return seconds
- qemu_time();
834 static void configure_rtc_date_offset(const char *startdate
, int legacy
)
836 time_t rtc_start_date
;
839 if (!strcmp(startdate
, "now") && legacy
) {
840 rtc_date_offset
= -1;
842 if (sscanf(startdate
, "%d-%d-%dT%d:%d:%d",
850 } else if (sscanf(startdate
, "%d-%d-%d",
862 rtc_start_date
= mktimegm(&tm
);
863 if (rtc_start_date
== -1) {
865 error_report("invalid date format");
866 error_printf("valid formats: "
867 "'2006-06-17T16:01:21' or '2006-06-17'\n");
870 rtc_date_offset
= qemu_time() - rtc_start_date
;
874 static void configure_rtc(QemuOpts
*opts
)
878 value
= qemu_opt_get(opts
, "base");
880 if (!strcmp(value
, "utc")) {
882 } else if (!strcmp(value
, "localtime")) {
883 Error
*blocker
= NULL
;
885 error_setg(&blocker
, QERR_REPLAY_NOT_SUPPORTED
,
886 "-rtc base=localtime");
887 replay_add_blocker(blocker
);
889 configure_rtc_date_offset(value
, 0);
892 value
= qemu_opt_get(opts
, "clock");
894 if (!strcmp(value
, "host")) {
895 rtc_clock
= QEMU_CLOCK_HOST
;
896 } else if (!strcmp(value
, "rt")) {
897 rtc_clock
= QEMU_CLOCK_REALTIME
;
898 } else if (!strcmp(value
, "vm")) {
899 rtc_clock
= QEMU_CLOCK_VIRTUAL
;
901 error_report("invalid option value '%s'", value
);
905 value
= qemu_opt_get(opts
, "driftfix");
907 if (!strcmp(value
, "slew")) {
908 static GlobalProperty slew_lost_ticks
= {
909 .driver
= "mc146818rtc",
910 .property
= "lost_tick_policy",
914 qdev_prop_register_global(&slew_lost_ticks
);
915 } else if (!strcmp(value
, "none")) {
916 /* discard is default */
918 error_report("invalid option value '%s'", value
);
924 /***********************************************************/
925 /* Bluetooth support */
928 static struct HCIInfo
*hci_table
[MAX_NICS
];
930 struct HCIInfo
*qemu_next_hci(void)
932 if (cur_hci
== nb_hcis
)
935 return hci_table
[cur_hci
++];
938 static int bt_hci_parse(const char *str
)
943 if (nb_hcis
>= MAX_NICS
) {
944 error_report("too many bluetooth HCIs (max %i)", MAX_NICS
);
957 bdaddr
.b
[5] = 0x56 + nb_hcis
;
958 hci
->bdaddr_set(hci
, bdaddr
.b
);
960 hci_table
[nb_hcis
++] = hci
;
965 static void bt_vhci_add(int vlan_id
)
967 struct bt_scatternet_s
*vlan
= qemu_find_bt_vlan(vlan_id
);
970 warn_report("adding a VHCI to an empty scatternet %i",
973 bt_vhci_init(bt_new_hci(vlan
));
976 static struct bt_device_s
*bt_device_add(const char *opt
)
978 struct bt_scatternet_s
*vlan
;
980 char *endp
= strstr(opt
, ",vlan=");
981 int len
= (endp
? endp
- opt
: strlen(opt
)) + 1;
984 pstrcpy(devname
, MIN(sizeof(devname
), len
), opt
);
987 vlan_id
= strtol(endp
+ 6, &endp
, 0);
989 error_report("unrecognised bluetooth vlan Id");
994 vlan
= qemu_find_bt_vlan(vlan_id
);
997 warn_report("adding a slave device to an empty scatternet %i",
1000 if (!strcmp(devname
, "keyboard"))
1001 return bt_keyboard_init(vlan
);
1003 error_report("unsupported bluetooth device '%s'", devname
);
1007 static int bt_parse(const char *opt
)
1009 const char *endp
, *p
;
1012 if (strstart(opt
, "hci", &endp
)) {
1013 if (!*endp
|| *endp
== ',') {
1015 if (!strstart(endp
, ",vlan=", 0))
1018 return bt_hci_parse(opt
);
1020 } else if (strstart(opt
, "vhci", &endp
)) {
1021 if (!*endp
|| *endp
== ',') {
1023 if (strstart(endp
, ",vlan=", &p
)) {
1024 vlan
= strtol(p
, (char **) &endp
, 0);
1026 error_report("bad scatternet '%s'", p
);
1030 error_report("bad parameter '%s'", endp
+ 1);
1039 } else if (strstart(opt
, "device:", &endp
))
1040 return !bt_device_add(endp
);
1042 error_report("bad bluetooth parameter '%s'", opt
);
1046 static int parse_sandbox(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1048 if (qemu_opt_get_bool(opts
, "enable", false)) {
1049 #ifdef CONFIG_SECCOMP
1050 uint32_t seccomp_opts
= QEMU_SECCOMP_SET_DEFAULT
1051 | QEMU_SECCOMP_SET_OBSOLETE
;
1052 const char *value
= NULL
;
1054 value
= qemu_opt_get(opts
, "obsolete");
1056 if (g_str_equal(value
, "allow")) {
1057 seccomp_opts
&= ~QEMU_SECCOMP_SET_OBSOLETE
;
1058 } else if (g_str_equal(value
, "deny")) {
1059 /* this is the default option, this if is here
1060 * to provide a little bit of consistency for
1061 * the command line */
1063 error_report("invalid argument for obsolete");
1068 value
= qemu_opt_get(opts
, "elevateprivileges");
1070 if (g_str_equal(value
, "deny")) {
1071 seccomp_opts
|= QEMU_SECCOMP_SET_PRIVILEGED
;
1072 } else if (g_str_equal(value
, "children")) {
1073 seccomp_opts
|= QEMU_SECCOMP_SET_PRIVILEGED
;
1075 /* calling prctl directly because we're
1076 * not sure if host has CAP_SYS_ADMIN set*/
1077 if (prctl(PR_SET_NO_NEW_PRIVS
, 1)) {
1078 error_report("failed to set no_new_privs "
1082 } else if (g_str_equal(value
, "allow")) {
1085 error_report("invalid argument for elevateprivileges");
1090 value
= qemu_opt_get(opts
, "spawn");
1092 if (g_str_equal(value
, "deny")) {
1093 seccomp_opts
|= QEMU_SECCOMP_SET_SPAWN
;
1094 } else if (g_str_equal(value
, "allow")) {
1097 error_report("invalid argument for spawn");
1102 value
= qemu_opt_get(opts
, "resourcecontrol");
1104 if (g_str_equal(value
, "deny")) {
1105 seccomp_opts
|= QEMU_SECCOMP_SET_RESOURCECTL
;
1106 } else if (g_str_equal(value
, "allow")) {
1109 error_report("invalid argument for resourcecontrol");
1114 if (seccomp_start(seccomp_opts
) < 0) {
1115 error_report("failed to install seccomp syscall filter "
1120 error_report("seccomp support is disabled");
1128 static int parse_name(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1130 const char *proc_name
;
1132 if (qemu_opt_get(opts
, "debug-threads")) {
1133 qemu_thread_naming(qemu_opt_get_bool(opts
, "debug-threads", false));
1135 qemu_name
= qemu_opt_get(opts
, "guest");
1137 proc_name
= qemu_opt_get(opts
, "process");
1139 os_set_proc_name(proc_name
);
1145 bool defaults_enabled(void)
1147 return has_defaults
;
1151 static int parse_add_fd(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1153 int fd
, dupfd
, flags
;
1155 const char *fd_opaque
= NULL
;
1158 fd
= qemu_opt_get_number(opts
, "fd", -1);
1159 fdset_id
= qemu_opt_get_number(opts
, "set", -1);
1160 fd_opaque
= qemu_opt_get(opts
, "opaque");
1163 error_report("fd option is required and must be non-negative");
1167 if (fd
<= STDERR_FILENO
) {
1168 error_report("fd cannot be a standard I/O stream");
1173 * All fds inherited across exec() necessarily have FD_CLOEXEC
1174 * clear, while qemu sets FD_CLOEXEC on all other fds used internally.
1176 flags
= fcntl(fd
, F_GETFD
);
1177 if (flags
== -1 || (flags
& FD_CLOEXEC
)) {
1178 error_report("fd is not valid or already in use");
1183 error_report("set option is required and must be non-negative");
1187 #ifdef F_DUPFD_CLOEXEC
1188 dupfd
= fcntl(fd
, F_DUPFD_CLOEXEC
, 0);
1192 qemu_set_cloexec(dupfd
);
1196 error_report("error duplicating fd: %s", strerror(errno
));
1200 /* add the duplicate fd, and optionally the opaque string, to the fd set */
1201 fdinfo
= monitor_fdset_add_fd(dupfd
, true, fdset_id
, !!fd_opaque
, fd_opaque
,
1208 static int cleanup_add_fd(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1212 fd
= qemu_opt_get_number(opts
, "fd", -1);
1219 /***********************************************************/
1220 /* QEMU Block devices */
1222 #define HD_OPTS "media=disk"
1223 #define CDROM_OPTS "media=cdrom"
1225 #define PFLASH_OPTS ""
1229 static int drive_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1231 BlockInterfaceType
*block_default_type
= opaque
;
1233 return drive_new(opts
, *block_default_type
) == NULL
;
1236 static int drive_enable_snapshot(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1238 if (qemu_opt_get(opts
, "snapshot") == NULL
) {
1239 qemu_opt_set(opts
, "snapshot", "on", &error_abort
);
1244 static void default_drive(int enable
, int snapshot
, BlockInterfaceType type
,
1245 int index
, const char *optstr
)
1250 if (!enable
|| drive_get_by_index(type
, index
)) {
1254 opts
= drive_add(type
, index
, NULL
, optstr
);
1256 drive_enable_snapshot(NULL
, opts
, NULL
);
1259 dinfo
= drive_new(opts
, type
);
1263 dinfo
->is_default
= true;
1267 static QemuOptsList qemu_smp_opts
= {
1269 .implied_opt_name
= "cpus",
1270 .merge_lists
= true,
1271 .head
= QTAILQ_HEAD_INITIALIZER(qemu_smp_opts
.head
),
1275 .type
= QEMU_OPT_NUMBER
,
1278 .type
= QEMU_OPT_NUMBER
,
1281 .type
= QEMU_OPT_NUMBER
,
1284 .type
= QEMU_OPT_NUMBER
,
1287 .type
= QEMU_OPT_NUMBER
,
1289 { /*End of list */ }
1293 static void smp_parse(QemuOpts
*opts
)
1296 unsigned cpus
= qemu_opt_get_number(opts
, "cpus", 0);
1297 unsigned sockets
= qemu_opt_get_number(opts
, "sockets", 0);
1298 unsigned cores
= qemu_opt_get_number(opts
, "cores", 0);
1299 unsigned threads
= qemu_opt_get_number(opts
, "threads", 0);
1301 /* compute missing values, prefer sockets over cores over threads */
1302 if (cpus
== 0 || sockets
== 0) {
1303 sockets
= sockets
> 0 ? sockets
: 1;
1304 cores
= cores
> 0 ? cores
: 1;
1305 threads
= threads
> 0 ? threads
: 1;
1307 cpus
= cores
* threads
* sockets
;
1309 } else if (cores
== 0) {
1310 threads
= threads
> 0 ? threads
: 1;
1311 cores
= cpus
/ (sockets
* threads
);
1312 cores
= cores
> 0 ? cores
: 1;
1313 } else if (threads
== 0) {
1314 threads
= cpus
/ (cores
* sockets
);
1315 threads
= threads
> 0 ? threads
: 1;
1316 } else if (sockets
* cores
* threads
< cpus
) {
1317 error_report("cpu topology: "
1318 "sockets (%u) * cores (%u) * threads (%u) < "
1320 sockets
, cores
, threads
, cpus
);
1324 max_cpus
= qemu_opt_get_number(opts
, "maxcpus", cpus
);
1326 if (max_cpus
< cpus
) {
1327 error_report("maxcpus must be equal to or greater than smp");
1331 if (sockets
* cores
* threads
> max_cpus
) {
1332 error_report("cpu topology: "
1333 "sockets (%u) * cores (%u) * threads (%u) > "
1335 sockets
, cores
, threads
, max_cpus
);
1341 smp_threads
= threads
;
1345 Error
*blocker
= NULL
;
1346 error_setg(&blocker
, QERR_REPLAY_NOT_SUPPORTED
, "smp");
1347 replay_add_blocker(blocker
);
1351 static void realtime_init(void)
1354 if (os_mlock() < 0) {
1355 error_report("locking memory failed");
1362 static void configure_msg(QemuOpts
*opts
)
1364 enable_timestamp_msg
= qemu_opt_get_bool(opts
, "timestamp", true);
1367 /***********************************************************/
1370 typedef struct SemihostingConfig
{
1372 SemihostingTarget target
;
1375 const char *cmdline
; /* concatenated argv */
1376 } SemihostingConfig
;
1378 static SemihostingConfig semihosting
;
1380 bool semihosting_enabled(void)
1382 return semihosting
.enabled
;
1385 SemihostingTarget
semihosting_get_target(void)
1387 return semihosting
.target
;
1390 const char *semihosting_get_arg(int i
)
1392 if (i
>= semihosting
.argc
) {
1395 return semihosting
.argv
[i
];
1398 int semihosting_get_argc(void)
1400 return semihosting
.argc
;
1403 const char *semihosting_get_cmdline(void)
1405 if (semihosting
.cmdline
== NULL
&& semihosting
.argc
> 0) {
1406 semihosting
.cmdline
= g_strjoinv(" ", (gchar
**)semihosting
.argv
);
1408 return semihosting
.cmdline
;
1411 static int add_semihosting_arg(void *opaque
,
1412 const char *name
, const char *val
,
1415 SemihostingConfig
*s
= opaque
;
1416 if (strcmp(name
, "arg") == 0) {
1418 /* one extra element as g_strjoinv() expects NULL-terminated array */
1419 s
->argv
= g_realloc(s
->argv
, (s
->argc
+ 1) * sizeof(void *));
1420 s
->argv
[s
->argc
- 1] = val
;
1421 s
->argv
[s
->argc
] = NULL
;
1426 /* Use strings passed via -kernel/-append to initialize semihosting.argv[] */
1427 static inline void semihosting_arg_fallback(const char *file
, const char *cmd
)
1432 add_semihosting_arg(&semihosting
, "arg", file
, NULL
);
1434 /* split -append and initialize argv[1..n] */
1435 cmd_token
= strtok(g_strdup(cmd
), " ");
1437 add_semihosting_arg(&semihosting
, "arg", cmd_token
, NULL
);
1438 cmd_token
= strtok(NULL
, " ");
1442 /* Now we still need this for compatibility with XEN. */
1443 bool has_igd_gfx_passthru
;
1444 static void igd_gfx_passthru(void)
1446 has_igd_gfx_passthru
= current_machine
->igd_gfx_passthru
;
1449 /***********************************************************/
1452 static int usb_device_add(const char *devname
)
1454 USBDevice
*dev
= NULL
;
1456 if (!machine_usb(current_machine
)) {
1460 dev
= usbdevice_create(devname
);
1467 static int usb_parse(const char *cmdline
)
1470 r
= usb_device_add(cmdline
);
1472 error_report("could not add USB device '%s'", cmdline
);
1477 /***********************************************************/
1478 /* machine registration */
1480 MachineState
*current_machine
;
1482 static MachineClass
*find_machine(const char *name
)
1484 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
1485 MachineClass
*mc
= NULL
;
1487 for (el
= machines
; el
; el
= el
->next
) {
1488 MachineClass
*temp
= el
->data
;
1490 if (!strcmp(temp
->name
, name
)) {
1495 !strcmp(temp
->alias
, name
)) {
1501 g_slist_free(machines
);
1505 MachineClass
*find_default_machine(void)
1507 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
1508 MachineClass
*mc
= NULL
;
1510 for (el
= machines
; el
; el
= el
->next
) {
1511 MachineClass
*temp
= el
->data
;
1513 if (temp
->is_default
) {
1519 g_slist_free(machines
);
1523 MachineInfoList
*qmp_query_machines(Error
**errp
)
1525 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
1526 MachineInfoList
*mach_list
= NULL
;
1528 for (el
= machines
; el
; el
= el
->next
) {
1529 MachineClass
*mc
= el
->data
;
1530 MachineInfoList
*entry
;
1533 info
= g_malloc0(sizeof(*info
));
1534 if (mc
->is_default
) {
1535 info
->has_is_default
= true;
1536 info
->is_default
= true;
1540 info
->has_alias
= true;
1541 info
->alias
= g_strdup(mc
->alias
);
1544 info
->name
= g_strdup(mc
->name
);
1545 info
->cpu_max
= !mc
->max_cpus
? 1 : mc
->max_cpus
;
1546 info
->hotpluggable_cpus
= mc
->has_hotpluggable_cpus
;
1548 entry
= g_malloc0(sizeof(*entry
));
1549 entry
->value
= info
;
1550 entry
->next
= mach_list
;
1554 g_slist_free(machines
);
1558 static int machine_help_func(QemuOpts
*opts
, MachineState
*machine
)
1560 ObjectProperty
*prop
;
1561 ObjectPropertyIterator iter
;
1563 if (!qemu_opt_has_help_opt(opts
)) {
1567 object_property_iter_init(&iter
, OBJECT(machine
));
1568 while ((prop
= object_property_iter_next(&iter
))) {
1573 error_printf("%s.%s=%s", MACHINE_GET_CLASS(machine
)->name
,
1574 prop
->name
, prop
->type
);
1575 if (prop
->description
) {
1576 error_printf(" (%s)\n", prop
->description
);
1585 /***********************************************************/
1586 /* main execution loop */
1588 struct vm_change_state_entry
{
1589 VMChangeStateHandler
*cb
;
1591 QLIST_ENTRY (vm_change_state_entry
) entries
;
1594 static QLIST_HEAD(vm_change_state_head
, vm_change_state_entry
) vm_change_state_head
;
1596 VMChangeStateEntry
*qemu_add_vm_change_state_handler(VMChangeStateHandler
*cb
,
1599 VMChangeStateEntry
*e
;
1601 e
= g_malloc0(sizeof (*e
));
1605 QLIST_INSERT_HEAD(&vm_change_state_head
, e
, entries
);
1609 void qemu_del_vm_change_state_handler(VMChangeStateEntry
*e
)
1611 QLIST_REMOVE (e
, entries
);
1615 void vm_state_notify(int running
, RunState state
)
1617 VMChangeStateEntry
*e
, *next
;
1619 trace_vm_state_notify(running
, state
);
1621 QLIST_FOREACH_SAFE(e
, &vm_change_state_head
, entries
, next
) {
1622 e
->cb(e
->opaque
, running
, state
);
1626 static ShutdownCause reset_requested
;
1627 static ShutdownCause shutdown_requested
;
1628 static int shutdown_signal
;
1629 static pid_t shutdown_pid
;
1630 static int powerdown_requested
;
1631 static int debug_requested
;
1632 static int suspend_requested
;
1633 static WakeupReason wakeup_reason
;
1634 static NotifierList powerdown_notifiers
=
1635 NOTIFIER_LIST_INITIALIZER(powerdown_notifiers
);
1636 static NotifierList suspend_notifiers
=
1637 NOTIFIER_LIST_INITIALIZER(suspend_notifiers
);
1638 static NotifierList wakeup_notifiers
=
1639 NOTIFIER_LIST_INITIALIZER(wakeup_notifiers
);
1640 static uint32_t wakeup_reason_mask
= ~(1 << QEMU_WAKEUP_REASON_NONE
);
1642 ShutdownCause
qemu_shutdown_requested_get(void)
1644 return shutdown_requested
;
1647 ShutdownCause
qemu_reset_requested_get(void)
1649 return reset_requested
;
1652 static int qemu_shutdown_requested(void)
1654 return atomic_xchg(&shutdown_requested
, SHUTDOWN_CAUSE_NONE
);
1657 static void qemu_kill_report(void)
1659 if (!qtest_driver() && shutdown_signal
) {
1660 if (shutdown_pid
== 0) {
1661 /* This happens for eg ^C at the terminal, so it's worth
1662 * avoiding printing an odd message in that case.
1664 error_report("terminating on signal %d", shutdown_signal
);
1666 char *shutdown_cmd
= qemu_get_pid_name(shutdown_pid
);
1668 error_report("terminating on signal %d from pid " FMT_pid
" (%s)",
1669 shutdown_signal
, shutdown_pid
,
1670 shutdown_cmd
? shutdown_cmd
: "<unknown process>");
1671 g_free(shutdown_cmd
);
1673 shutdown_signal
= 0;
1677 static ShutdownCause
qemu_reset_requested(void)
1679 ShutdownCause r
= reset_requested
;
1681 if (r
&& replay_checkpoint(CHECKPOINT_RESET_REQUESTED
)) {
1682 reset_requested
= SHUTDOWN_CAUSE_NONE
;
1685 return SHUTDOWN_CAUSE_NONE
;
1688 static int qemu_suspend_requested(void)
1690 int r
= suspend_requested
;
1691 if (r
&& replay_checkpoint(CHECKPOINT_SUSPEND_REQUESTED
)) {
1692 suspend_requested
= 0;
1698 static WakeupReason
qemu_wakeup_requested(void)
1700 return wakeup_reason
;
1703 static int qemu_powerdown_requested(void)
1705 int r
= powerdown_requested
;
1706 powerdown_requested
= 0;
1710 static int qemu_debug_requested(void)
1712 int r
= debug_requested
;
1713 debug_requested
= 0;
1718 * Reset the VM. Issue an event unless @reason is SHUTDOWN_CAUSE_NONE.
1720 void qemu_system_reset(ShutdownCause reason
)
1724 mc
= current_machine
? MACHINE_GET_CLASS(current_machine
) : NULL
;
1726 cpu_synchronize_all_states();
1728 if (mc
&& mc
->reset
) {
1731 qemu_devices_reset();
1734 qapi_event_send_reset(shutdown_caused_by_guest(reason
),
1737 cpu_synchronize_all_post_reset();
1740 void qemu_system_guest_panicked(GuestPanicInformation
*info
)
1742 qemu_log_mask(LOG_GUEST_ERROR
, "Guest crashed");
1745 current_cpu
->crash_occurred
= true;
1747 qapi_event_send_guest_panicked(GUEST_PANIC_ACTION_PAUSE
,
1748 !!info
, info
, &error_abort
);
1749 vm_stop(RUN_STATE_GUEST_PANICKED
);
1751 qapi_event_send_guest_panicked(GUEST_PANIC_ACTION_POWEROFF
,
1752 !!info
, info
, &error_abort
);
1753 qemu_system_shutdown_request(SHUTDOWN_CAUSE_GUEST_PANIC
);
1757 if (info
->type
== GUEST_PANIC_INFORMATION_TYPE_HYPER_V
) {
1758 qemu_log_mask(LOG_GUEST_ERROR
, "\nHV crash parameters: (%#"PRIx64
1759 " %#"PRIx64
" %#"PRIx64
" %#"PRIx64
" %#"PRIx64
")\n",
1760 info
->u
.hyper_v
.arg1
,
1761 info
->u
.hyper_v
.arg2
,
1762 info
->u
.hyper_v
.arg3
,
1763 info
->u
.hyper_v
.arg4
,
1764 info
->u
.hyper_v
.arg5
);
1765 } else if (info
->type
== GUEST_PANIC_INFORMATION_TYPE_S390
) {
1766 qemu_log_mask(LOG_GUEST_ERROR
, " on cpu %d: %s\n"
1767 "PSW: 0x%016" PRIx64
" 0x%016" PRIx64
"\n",
1769 S390CrashReason_str(info
->u
.s390
.reason
),
1770 info
->u
.s390
.psw_mask
,
1771 info
->u
.s390
.psw_addr
);
1773 qapi_free_GuestPanicInformation(info
);
1777 void qemu_system_reset_request(ShutdownCause reason
)
1780 shutdown_requested
= reason
;
1782 reset_requested
= reason
;
1785 qemu_notify_event();
1788 static void qemu_system_suspend(void)
1791 notifier_list_notify(&suspend_notifiers
, NULL
);
1792 runstate_set(RUN_STATE_SUSPENDED
);
1793 qapi_event_send_suspend(&error_abort
);
1796 void qemu_system_suspend_request(void)
1798 if (runstate_check(RUN_STATE_SUSPENDED
)) {
1801 suspend_requested
= 1;
1803 qemu_notify_event();
1806 void qemu_register_suspend_notifier(Notifier
*notifier
)
1808 notifier_list_add(&suspend_notifiers
, notifier
);
1811 void qemu_system_wakeup_request(WakeupReason reason
)
1813 trace_system_wakeup_request(reason
);
1815 if (!runstate_check(RUN_STATE_SUSPENDED
)) {
1818 if (!(wakeup_reason_mask
& (1 << reason
))) {
1821 runstate_set(RUN_STATE_RUNNING
);
1822 wakeup_reason
= reason
;
1823 qemu_notify_event();
1826 void qemu_system_wakeup_enable(WakeupReason reason
, bool enabled
)
1829 wakeup_reason_mask
|= (1 << reason
);
1831 wakeup_reason_mask
&= ~(1 << reason
);
1835 void qemu_register_wakeup_notifier(Notifier
*notifier
)
1837 notifier_list_add(&wakeup_notifiers
, notifier
);
1840 void qemu_system_killed(int signal
, pid_t pid
)
1842 shutdown_signal
= signal
;
1846 /* Cannot call qemu_system_shutdown_request directly because
1847 * we are in a signal handler.
1849 shutdown_requested
= SHUTDOWN_CAUSE_HOST_SIGNAL
;
1850 qemu_notify_event();
1853 void qemu_system_shutdown_request(ShutdownCause reason
)
1855 trace_qemu_system_shutdown_request(reason
);
1856 replay_shutdown_request(reason
);
1857 shutdown_requested
= reason
;
1858 qemu_notify_event();
1861 static void qemu_system_powerdown(void)
1863 qapi_event_send_powerdown(&error_abort
);
1864 notifier_list_notify(&powerdown_notifiers
, NULL
);
1867 void qemu_system_powerdown_request(void)
1869 trace_qemu_system_powerdown_request();
1870 powerdown_requested
= 1;
1871 qemu_notify_event();
1874 void qemu_register_powerdown_notifier(Notifier
*notifier
)
1876 notifier_list_add(&powerdown_notifiers
, notifier
);
1879 void qemu_system_debug_request(void)
1881 debug_requested
= 1;
1882 qemu_notify_event();
1885 static bool main_loop_should_exit(void)
1888 ShutdownCause request
;
1890 if (qemu_debug_requested()) {
1891 vm_stop(RUN_STATE_DEBUG
);
1893 if (qemu_suspend_requested()) {
1894 qemu_system_suspend();
1896 request
= qemu_shutdown_requested();
1899 qapi_event_send_shutdown(shutdown_caused_by_guest(request
),
1902 vm_stop(RUN_STATE_SHUTDOWN
);
1907 request
= qemu_reset_requested();
1910 qemu_system_reset(request
);
1912 if (!runstate_check(RUN_STATE_RUNNING
) &&
1913 !runstate_check(RUN_STATE_INMIGRATE
)) {
1914 runstate_set(RUN_STATE_PRELAUNCH
);
1917 if (qemu_wakeup_requested()) {
1919 qemu_system_reset(SHUTDOWN_CAUSE_NONE
);
1920 notifier_list_notify(&wakeup_notifiers
, &wakeup_reason
);
1921 wakeup_reason
= QEMU_WAKEUP_REASON_NONE
;
1923 qapi_event_send_wakeup(&error_abort
);
1925 if (qemu_powerdown_requested()) {
1926 qemu_system_powerdown();
1928 if (qemu_vmstop_requested(&r
)) {
1934 static void main_loop(void)
1936 #ifdef CONFIG_PROFILER
1940 #ifdef CONFIG_PROFILER
1941 ti
= profile_getclock();
1943 main_loop_wait(false);
1944 #ifdef CONFIG_PROFILER
1945 dev_time
+= profile_getclock() - ti
;
1947 } while (!main_loop_should_exit());
1950 static void version(void)
1952 printf("QEMU emulator version " QEMU_FULL_VERSION
"\n"
1953 QEMU_COPYRIGHT
"\n");
1956 static void help(int exitcode
)
1959 printf("usage: %s [options] [disk_image]\n\n"
1960 "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
1961 error_get_progname());
1963 #define QEMU_OPTIONS_GENERATE_HELP
1964 #include "qemu-options-wrapper.h"
1966 printf("\nDuring emulation, the following keys are useful:\n"
1967 "ctrl-alt-f toggle full screen\n"
1968 "ctrl-alt-n switch to virtual console 'n'\n"
1969 "ctrl-alt toggle mouse and keyboard grab\n"
1971 "When using -nographic, press 'ctrl-a h' to get some help.\n"
1973 QEMU_HELP_BOTTOM
"\n");
1978 #define HAS_ARG 0x0001
1980 typedef struct QEMUOption
{
1987 static const QEMUOption qemu_options
[] = {
1988 { "h", 0, QEMU_OPTION_h
, QEMU_ARCH_ALL
},
1989 #define QEMU_OPTIONS_GENERATE_OPTIONS
1990 #include "qemu-options-wrapper.h"
1994 typedef struct VGAInterfaceInfo
{
1995 const char *opt_name
; /* option name */
1996 const char *name
; /* human-readable name */
1997 /* Class names indicating that support is available.
1998 * If no class is specified, the interface is always available */
1999 const char *class_names
[2];
2002 static VGAInterfaceInfo vga_interfaces
[VGA_TYPE_MAX
] = {
2008 .name
= "standard VGA",
2009 .class_names
= { "VGA", "isa-vga" },
2012 .opt_name
= "cirrus",
2013 .name
= "Cirrus VGA",
2014 .class_names
= { "cirrus-vga", "isa-cirrus-vga" },
2017 .opt_name
= "vmware",
2018 .name
= "VMWare SVGA",
2019 .class_names
= { "vmware-svga" },
2022 .opt_name
= "virtio",
2023 .name
= "Virtio VGA",
2024 .class_names
= { "virtio-vga" },
2029 .class_names
= { "qxl-vga" },
2033 .name
= "TCX framebuffer",
2034 .class_names
= { "SUNW,tcx" },
2038 .name
= "CG3 framebuffer",
2039 .class_names
= { "cgthree" },
2042 .opt_name
= "xenfb",
2046 static bool vga_interface_available(VGAInterfaceType t
)
2048 VGAInterfaceInfo
*ti
= &vga_interfaces
[t
];
2050 assert(t
< VGA_TYPE_MAX
);
2051 return !ti
->class_names
[0] ||
2052 object_class_by_name(ti
->class_names
[0]) ||
2053 object_class_by_name(ti
->class_names
[1]);
2056 static void select_vgahw(const char *p
)
2061 assert(vga_interface_type
== VGA_NONE
);
2062 for (t
= 0; t
< VGA_TYPE_MAX
; t
++) {
2063 VGAInterfaceInfo
*ti
= &vga_interfaces
[t
];
2064 if (ti
->opt_name
&& strstart(p
, ti
->opt_name
, &opts
)) {
2065 if (!vga_interface_available(t
)) {
2066 error_report("%s not available", ti
->name
);
2069 vga_interface_type
= t
;
2073 if (t
== VGA_TYPE_MAX
) {
2075 error_report("unknown vga type: %s", p
);
2079 const char *nextopt
;
2081 if (strstart(opts
, ",retrace=", &nextopt
)) {
2083 if (strstart(opts
, "dumb", &nextopt
))
2084 vga_retrace_method
= VGA_RETRACE_DUMB
;
2085 else if (strstart(opts
, "precise", &nextopt
))
2086 vga_retrace_method
= VGA_RETRACE_PRECISE
;
2087 else goto invalid_vga
;
2088 } else goto invalid_vga
;
2093 static void parse_display_qapi(const char *optarg
)
2096 DisplayOptions
*opts
;
2099 v
= qobject_input_visitor_new_str(optarg
, "type", &err
);
2101 error_report_err(err
);
2105 visit_type_DisplayOptions(v
, NULL
, &opts
, &error_fatal
);
2106 QAPI_CLONE_MEMBERS(DisplayOptions
, &dpy
, opts
);
2108 qapi_free_DisplayOptions(opts
);
2112 static void parse_display(const char *p
)
2116 if (strstart(p
, "sdl", &opts
)) {
2117 dpy
.type
= DISPLAY_TYPE_SDL
;
2119 const char *nextopt
;
2121 if (strstart(opts
, ",frame=", &nextopt
)) {
2122 g_printerr("The frame= sdl option is deprecated, and will be\n"
2123 "removed in a future release.\n");
2125 if (strstart(opts
, "on", &nextopt
)) {
2127 } else if (strstart(opts
, "off", &nextopt
)) {
2130 goto invalid_sdl_args
;
2132 } else if (strstart(opts
, ",alt_grab=", &nextopt
)) {
2134 if (strstart(opts
, "on", &nextopt
)) {
2136 } else if (strstart(opts
, "off", &nextopt
)) {
2139 goto invalid_sdl_args
;
2141 } else if (strstart(opts
, ",ctrl_grab=", &nextopt
)) {
2143 if (strstart(opts
, "on", &nextopt
)) {
2145 } else if (strstart(opts
, "off", &nextopt
)) {
2148 goto invalid_sdl_args
;
2150 } else if (strstart(opts
, ",window_close=", &nextopt
)) {
2152 dpy
.has_window_close
= true;
2153 if (strstart(opts
, "on", &nextopt
)) {
2154 dpy
.window_close
= true;
2155 } else if (strstart(opts
, "off", &nextopt
)) {
2156 dpy
.window_close
= false;
2158 goto invalid_sdl_args
;
2160 } else if (strstart(opts
, ",gl=", &nextopt
)) {
2163 if (strstart(opts
, "on", &nextopt
)) {
2164 dpy
.gl
= DISPLAYGL_MODE_ON
;
2165 } else if (strstart(opts
, "core", &nextopt
)) {
2166 dpy
.gl
= DISPLAYGL_MODE_CORE
;
2167 } else if (strstart(opts
, "es", &nextopt
)) {
2168 dpy
.gl
= DISPLAYGL_MODE_ES
;
2169 } else if (strstart(opts
, "off", &nextopt
)) {
2170 dpy
.gl
= DISPLAYGL_MODE_OFF
;
2172 goto invalid_sdl_args
;
2176 error_report("invalid SDL option string");
2181 } else if (strstart(p
, "vnc", &opts
)) {
2183 vnc_parse(opts
+ 1, &error_fatal
);
2185 error_report("VNC requires a display argument vnc=<display>");
2188 } else if (strstart(p
, "gtk", &opts
)) {
2189 dpy
.type
= DISPLAY_TYPE_GTK
;
2191 const char *nextopt
;
2193 if (strstart(opts
, ",grab_on_hover=", &nextopt
)) {
2195 dpy
.u
.gtk
.has_grab_on_hover
= true;
2196 if (strstart(opts
, "on", &nextopt
)) {
2197 dpy
.u
.gtk
.grab_on_hover
= true;
2198 } else if (strstart(opts
, "off", &nextopt
)) {
2199 dpy
.u
.gtk
.grab_on_hover
= false;
2201 goto invalid_gtk_args
;
2203 } else if (strstart(opts
, ",gl=", &nextopt
)) {
2206 if (strstart(opts
, "on", &nextopt
)) {
2207 dpy
.gl
= DISPLAYGL_MODE_ON
;
2208 } else if (strstart(opts
, "off", &nextopt
)) {
2209 dpy
.gl
= DISPLAYGL_MODE_OFF
;
2211 goto invalid_gtk_args
;
2215 error_report("invalid GTK option string");
2221 parse_display_qapi(p
);
2225 static int balloon_parse(const char *arg
)
2229 warn_report("This option is deprecated. "
2230 "Use '--device virtio-balloon' to enable the balloon device.");
2232 if (strcmp(arg
, "none") == 0) {
2236 if (!strncmp(arg
, "virtio", 6)) {
2237 if (arg
[6] == ',') {
2238 /* have params -> parse them */
2239 opts
= qemu_opts_parse_noisily(qemu_find_opts("device"), arg
+ 7,
2244 /* create empty opts */
2245 opts
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
2248 qemu_opt_set(opts
, "driver", "virtio-balloon", &error_abort
);
2255 char *qemu_find_file(int type
, const char *name
)
2261 /* Try the name as a straight path first */
2262 if (access(name
, R_OK
) == 0) {
2263 trace_load_file(name
, name
);
2264 return g_strdup(name
);
2268 case QEMU_FILE_TYPE_BIOS
:
2271 case QEMU_FILE_TYPE_KEYMAP
:
2272 subdir
= "keymaps/";
2278 for (i
= 0; i
< data_dir_idx
; i
++) {
2279 buf
= g_strdup_printf("%s/%s%s", data_dir
[i
], subdir
, name
);
2280 if (access(buf
, R_OK
) == 0) {
2281 trace_load_file(name
, buf
);
2289 static void qemu_add_data_dir(const char *path
)
2296 if (data_dir_idx
== ARRAY_SIZE(data_dir
)) {
2299 for (i
= 0; i
< data_dir_idx
; i
++) {
2300 if (strcmp(data_dir
[i
], path
) == 0) {
2301 return; /* duplicate */
2304 data_dir
[data_dir_idx
++] = g_strdup(path
);
2307 static inline bool nonempty_str(const char *str
)
2312 static int parse_fw_cfg(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2316 const char *name
, *file
, *str
;
2317 FWCfgState
*fw_cfg
= (FWCfgState
*) opaque
;
2319 if (fw_cfg
== NULL
) {
2320 error_report("fw_cfg device not available");
2323 name
= qemu_opt_get(opts
, "name");
2324 file
= qemu_opt_get(opts
, "file");
2325 str
= qemu_opt_get(opts
, "string");
2327 /* we need name and either a file or the content string */
2328 if (!(nonempty_str(name
) && (nonempty_str(file
) || nonempty_str(str
)))) {
2329 error_report("invalid argument(s)");
2332 if (nonempty_str(file
) && nonempty_str(str
)) {
2333 error_report("file and string are mutually exclusive");
2336 if (strlen(name
) > FW_CFG_MAX_FILE_PATH
- 1) {
2337 error_report("name too long (max. %d char)", FW_CFG_MAX_FILE_PATH
- 1);
2340 if (strncmp(name
, "opt/", 4) != 0) {
2341 warn_report("externally provided fw_cfg item names "
2342 "should be prefixed with \"opt/\"");
2344 if (nonempty_str(str
)) {
2345 size
= strlen(str
); /* NUL terminator NOT included in fw_cfg blob */
2346 buf
= g_memdup(str
, size
);
2348 if (!g_file_get_contents(file
, &buf
, &size
, NULL
)) {
2349 error_report("can't load %s", file
);
2353 /* For legacy, keep user files in a specific global order. */
2354 fw_cfg_set_order_override(fw_cfg
, FW_CFG_ORDER_OVERRIDE_USER
);
2355 fw_cfg_add_file(fw_cfg
, name
, buf
, size
);
2356 fw_cfg_reset_order_override(fw_cfg
);
2360 static int device_help_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2362 return qdev_device_help(opts
);
2365 static int device_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2370 dev
= qdev_device_add(opts
, &err
);
2372 error_report_err(err
);
2375 object_unref(OBJECT(dev
));
2379 static int chardev_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2381 Error
*local_err
= NULL
;
2383 if (!qemu_chr_new_from_opts(opts
, &local_err
)) {
2385 error_report_err(local_err
);
2393 #ifdef CONFIG_VIRTFS
2394 static int fsdev_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2396 return qemu_fsdev_add(opts
);
2400 static int mon_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2403 const char *chardev
;
2407 mode
= qemu_opt_get(opts
, "mode");
2411 if (strcmp(mode
, "readline") == 0) {
2412 flags
= MONITOR_USE_READLINE
;
2413 } else if (strcmp(mode
, "control") == 0) {
2414 flags
= MONITOR_USE_CONTROL
;
2416 error_report("unknown monitor mode \"%s\"", mode
);
2420 if (qemu_opt_get_bool(opts
, "pretty", 0))
2421 flags
|= MONITOR_USE_PRETTY
;
2423 /* OOB is off by default */
2424 if (qemu_opt_get_bool(opts
, "x-oob", 0)) {
2425 flags
|= MONITOR_USE_OOB
;
2428 chardev
= qemu_opt_get(opts
, "chardev");
2429 chr
= qemu_chr_find(chardev
);
2431 error_report("chardev \"%s\" not found", chardev
);
2435 monitor_init(chr
, flags
);
2439 static void monitor_parse(const char *optarg
, const char *mode
, bool pretty
)
2441 static int monitor_device_index
= 0;
2446 if (strstart(optarg
, "chardev:", &p
)) {
2447 snprintf(label
, sizeof(label
), "%s", p
);
2449 snprintf(label
, sizeof(label
), "compat_monitor%d",
2450 monitor_device_index
);
2451 opts
= qemu_chr_parse_compat(label
, optarg
);
2453 error_report("parse error: %s", optarg
);
2458 opts
= qemu_opts_create(qemu_find_opts("mon"), label
, 1, &error_fatal
);
2459 qemu_opt_set(opts
, "mode", mode
, &error_abort
);
2460 qemu_opt_set(opts
, "chardev", label
, &error_abort
);
2461 qemu_opt_set_bool(opts
, "pretty", pretty
, &error_abort
);
2462 monitor_device_index
++;
2465 struct device_config
{
2467 DEV_USB
, /* -usbdevice */
2469 DEV_SERIAL
, /* -serial */
2470 DEV_PARALLEL
, /* -parallel */
2471 DEV_VIRTCON
, /* -virtioconsole */
2472 DEV_DEBUGCON
, /* -debugcon */
2473 DEV_GDB
, /* -gdb, -s */
2474 DEV_SCLP
, /* s390 sclp */
2476 const char *cmdline
;
2478 QTAILQ_ENTRY(device_config
) next
;
2481 static QTAILQ_HEAD(, device_config
) device_configs
=
2482 QTAILQ_HEAD_INITIALIZER(device_configs
);
2484 static void add_device_config(int type
, const char *cmdline
)
2486 struct device_config
*conf
;
2488 conf
= g_malloc0(sizeof(*conf
));
2490 conf
->cmdline
= cmdline
;
2491 loc_save(&conf
->loc
);
2492 QTAILQ_INSERT_TAIL(&device_configs
, conf
, next
);
2495 static int foreach_device_config(int type
, int (*func
)(const char *cmdline
))
2497 struct device_config
*conf
;
2500 QTAILQ_FOREACH(conf
, &device_configs
, next
) {
2501 if (conf
->type
!= type
)
2503 loc_push_restore(&conf
->loc
);
2504 rc
= func(conf
->cmdline
);
2505 loc_pop(&conf
->loc
);
2513 static int serial_parse(const char *devname
)
2515 int index
= num_serial_hds
;
2518 if (strcmp(devname
, "none") == 0)
2520 snprintf(label
, sizeof(label
), "serial%d", index
);
2521 serial_hds
= g_renew(Chardev
*, serial_hds
, index
+ 1);
2523 serial_hds
[index
] = qemu_chr_new(label
, devname
);
2524 if (!serial_hds
[index
]) {
2525 error_report("could not connect serial device"
2526 " to character backend '%s'", devname
);
2533 Chardev
*serial_hd(int i
)
2536 if (i
< num_serial_hds
) {
2537 return serial_hds
[i
];
2542 int serial_max_hds(void)
2544 return num_serial_hds
;
2547 static int parallel_parse(const char *devname
)
2549 static int index
= 0;
2552 if (strcmp(devname
, "none") == 0)
2554 if (index
== MAX_PARALLEL_PORTS
) {
2555 error_report("too many parallel ports");
2558 snprintf(label
, sizeof(label
), "parallel%d", index
);
2559 parallel_hds
[index
] = qemu_chr_new(label
, devname
);
2560 if (!parallel_hds
[index
]) {
2561 error_report("could not connect parallel device"
2562 " to character backend '%s'", devname
);
2569 static int virtcon_parse(const char *devname
)
2571 QemuOptsList
*device
= qemu_find_opts("device");
2572 static int index
= 0;
2574 QemuOpts
*bus_opts
, *dev_opts
;
2576 if (strcmp(devname
, "none") == 0)
2578 if (index
== MAX_VIRTIO_CONSOLES
) {
2579 error_report("too many virtio consoles");
2583 bus_opts
= qemu_opts_create(device
, NULL
, 0, &error_abort
);
2584 qemu_opt_set(bus_opts
, "driver", "virtio-serial", &error_abort
);
2586 dev_opts
= qemu_opts_create(device
, NULL
, 0, &error_abort
);
2587 qemu_opt_set(dev_opts
, "driver", "virtconsole", &error_abort
);
2589 snprintf(label
, sizeof(label
), "virtcon%d", index
);
2590 virtcon_hds
[index
] = qemu_chr_new(label
, devname
);
2591 if (!virtcon_hds
[index
]) {
2592 error_report("could not connect virtio console"
2593 " to character backend '%s'", devname
);
2596 qemu_opt_set(dev_opts
, "chardev", label
, &error_abort
);
2602 static int debugcon_parse(const char *devname
)
2606 if (!qemu_chr_new("debugcon", devname
)) {
2609 opts
= qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL
);
2611 error_report("already have a debugcon device");
2614 qemu_opt_set(opts
, "driver", "isa-debugcon", &error_abort
);
2615 qemu_opt_set(opts
, "chardev", "debugcon", &error_abort
);
2619 static gint
machine_class_cmp(gconstpointer a
, gconstpointer b
)
2621 const MachineClass
*mc1
= a
, *mc2
= b
;
2624 if (mc1
->family
== NULL
) {
2625 if (mc2
->family
== NULL
) {
2626 /* Compare standalone machine types against each other; they sort
2627 * in increasing order.
2629 return strcmp(object_class_get_name(OBJECT_CLASS(mc1
)),
2630 object_class_get_name(OBJECT_CLASS(mc2
)));
2633 /* Standalone machine types sort after families. */
2637 if (mc2
->family
== NULL
) {
2638 /* Families sort before standalone machine types. */
2642 /* Families sort between each other alphabetically increasingly. */
2643 res
= strcmp(mc1
->family
, mc2
->family
);
2648 /* Within the same family, machine types sort in decreasing order. */
2649 return strcmp(object_class_get_name(OBJECT_CLASS(mc2
)),
2650 object_class_get_name(OBJECT_CLASS(mc1
)));
2653 static MachineClass
*machine_parse(const char *name
)
2655 MachineClass
*mc
= NULL
;
2656 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
2659 mc
= find_machine(name
);
2662 g_slist_free(machines
);
2665 if (name
&& !is_help_option(name
)) {
2666 error_report("unsupported machine type");
2667 error_printf("Use -machine help to list supported machines\n");
2669 printf("Supported machines are:\n");
2670 machines
= g_slist_sort(machines
, machine_class_cmp
);
2671 for (el
= machines
; el
; el
= el
->next
) {
2672 MachineClass
*mc
= el
->data
;
2674 printf("%-20s %s (alias of %s)\n", mc
->alias
, mc
->desc
, mc
->name
);
2676 printf("%-20s %s%s\n", mc
->name
, mc
->desc
,
2677 mc
->is_default
? " (default)" : "");
2681 g_slist_free(machines
);
2682 exit(!name
|| !is_help_option(name
));
2685 void qemu_add_exit_notifier(Notifier
*notify
)
2687 notifier_list_add(&exit_notifiers
, notify
);
2690 void qemu_remove_exit_notifier(Notifier
*notify
)
2692 notifier_remove(notify
);
2695 static void qemu_run_exit_notifiers(void)
2697 notifier_list_notify(&exit_notifiers
, NULL
);
2700 bool machine_init_done
;
2702 void qemu_add_machine_init_done_notifier(Notifier
*notify
)
2704 notifier_list_add(&machine_init_done_notifiers
, notify
);
2705 if (machine_init_done
) {
2706 notify
->notify(notify
, NULL
);
2710 void qemu_remove_machine_init_done_notifier(Notifier
*notify
)
2712 notifier_remove(notify
);
2715 static void qemu_run_machine_init_done_notifiers(void)
2717 machine_init_done
= true;
2718 notifier_list_notify(&machine_init_done_notifiers
, NULL
);
2721 static const QEMUOption
*lookup_opt(int argc
, char **argv
,
2722 const char **poptarg
, int *poptind
)
2724 const QEMUOption
*popt
;
2725 int optind
= *poptind
;
2726 char *r
= argv
[optind
];
2729 loc_set_cmdline(argv
, optind
, 1);
2731 /* Treat --foo the same as -foo. */
2734 popt
= qemu_options
;
2737 error_report("invalid option");
2740 if (!strcmp(popt
->name
, r
+ 1))
2744 if (popt
->flags
& HAS_ARG
) {
2745 if (optind
>= argc
) {
2746 error_report("requires an argument");
2749 optarg
= argv
[optind
++];
2750 loc_set_cmdline(argv
, optind
- 2, 2);
2761 static MachineClass
*select_machine(void)
2763 MachineClass
*machine_class
= find_default_machine();
2768 loc_push_none(&loc
);
2770 opts
= qemu_get_machine_opts();
2771 qemu_opts_loc_restore(opts
);
2773 optarg
= qemu_opt_get(opts
, "type");
2775 machine_class
= machine_parse(optarg
);
2778 if (!machine_class
) {
2779 error_report("No machine specified, and there is no default");
2780 error_printf("Use -machine help to list supported machines\n");
2785 return machine_class
;
2788 static int machine_set_property(void *opaque
,
2789 const char *name
, const char *value
,
2792 Object
*obj
= OBJECT(opaque
);
2793 Error
*local_err
= NULL
;
2796 if (strcmp(name
, "type") == 0) {
2800 qom_name
= g_strdup(name
);
2801 for (p
= qom_name
; *p
; p
++) {
2807 object_property_parse(obj
, value
, qom_name
, &local_err
);
2811 error_report_err(local_err
);
2820 * Initial object creation happens before all other
2821 * QEMU data types are created. The majority of objects
2822 * can be created at this point. The rng-egd object
2823 * cannot be created here, as it depends on the chardev
2826 static bool object_create_initial(const char *type
)
2828 if (g_str_equal(type
, "rng-egd") ||
2829 g_str_has_prefix(type
, "pr-manager-")) {
2833 #if defined(CONFIG_VHOST_USER) && defined(CONFIG_LINUX)
2834 if (g_str_equal(type
, "cryptodev-vhost-user")) {
2840 * return false for concrete netfilters since
2841 * they depend on netdevs already existing
2843 if (g_str_equal(type
, "filter-buffer") ||
2844 g_str_equal(type
, "filter-dump") ||
2845 g_str_equal(type
, "filter-mirror") ||
2846 g_str_equal(type
, "filter-redirector") ||
2847 g_str_equal(type
, "colo-compare") ||
2848 g_str_equal(type
, "filter-rewriter") ||
2849 g_str_equal(type
, "filter-replay")) {
2853 /* Memory allocation by backends needs to be done
2854 * after configure_accelerator() (due to the tcg_enabled()
2855 * checks at memory_region_init_*()).
2857 * Also, allocation of large amounts of memory may delay
2858 * chardev initialization for too long, and trigger timeouts
2859 * on software that waits for a monitor socket to be created
2862 if (g_str_has_prefix(type
, "memory-backend-")) {
2871 * The remainder of object creation happens after the
2872 * creation of chardev, fsdev, net clients and device data types.
2874 static bool object_create_delayed(const char *type
)
2876 return !object_create_initial(type
);
2880 static void set_memory_options(uint64_t *ram_slots
, ram_addr_t
*maxram_size
,
2884 const char *mem_str
;
2885 const ram_addr_t default_ram_size
= mc
->default_ram_size
;
2886 QemuOpts
*opts
= qemu_find_opts_singleton("memory");
2889 loc_push_none(&loc
);
2890 qemu_opts_loc_restore(opts
);
2893 mem_str
= qemu_opt_get(opts
, "size");
2896 error_report("missing 'size' option value");
2900 sz
= qemu_opt_get_size(opts
, "size", ram_size
);
2902 /* Fix up legacy suffix-less format */
2903 if (g_ascii_isdigit(mem_str
[strlen(mem_str
) - 1])) {
2904 uint64_t overflow_check
= sz
;
2907 if ((sz
>> 20) != overflow_check
) {
2908 error_report("too large 'size' option value");
2914 /* backward compatibility behaviour for case "-m 0" */
2916 sz
= default_ram_size
;
2919 sz
= QEMU_ALIGN_UP(sz
, 8192);
2921 if (ram_size
!= sz
) {
2922 error_report("ram size too large");
2926 /* store value for the future use */
2927 qemu_opt_set_number(opts
, "size", ram_size
, &error_abort
);
2928 *maxram_size
= ram_size
;
2930 if (qemu_opt_get(opts
, "maxmem")) {
2933 sz
= qemu_opt_get_size(opts
, "maxmem", 0);
2934 slots
= qemu_opt_get_number(opts
, "slots", 0);
2935 if (sz
< ram_size
) {
2936 error_report("invalid value of -m option maxmem: "
2937 "maximum memory size (0x%" PRIx64
") must be at least "
2938 "the initial memory size (0x" RAM_ADDR_FMT
")",
2941 } else if (slots
&& sz
== ram_size
) {
2942 error_report("invalid value of -m option maxmem: "
2943 "memory slots were specified but maximum memory size "
2944 "(0x%" PRIx64
") is equal to the initial memory size "
2945 "(0x" RAM_ADDR_FMT
")", sz
, ram_size
);
2951 } else if (qemu_opt_get(opts
, "slots")) {
2952 error_report("invalid -m option value: missing 'maxmem' option");
2959 static int global_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2963 g
= g_malloc0(sizeof(*g
));
2964 g
->driver
= qemu_opt_get(opts
, "driver");
2965 g
->property
= qemu_opt_get(opts
, "property");
2966 g
->value
= qemu_opt_get(opts
, "value");
2967 g
->user_provided
= true;
2968 g
->errp
= &error_fatal
;
2969 qdev_prop_register_global(g
);
2973 static int qemu_read_default_config_file(void)
2977 ret
= qemu_read_config_file(CONFIG_QEMU_CONFDIR
"/qemu.conf");
2978 if (ret
< 0 && ret
!= -ENOENT
) {
2985 static void user_register_global_props(void)
2987 qemu_opts_foreach(qemu_find_opts("global"),
2988 global_init_func
, NULL
, NULL
);
2992 * Note: we should see that these properties are actually having a
2993 * priority: accel < machine < user. This means e.g. when user
2994 * specifies something in "-global", it'll always be used with highest
2995 * priority than either machine/accelerator compat properties.
2997 static void register_global_properties(MachineState
*ms
)
2999 accel_register_compat_props(ms
->accelerator
);
3000 machine_register_compat_props(ms
);
3001 user_register_global_props();
3004 int main(int argc
, char **argv
, char **envp
)
3007 int snapshot
, linux_boot
;
3008 const char *initrd_filename
;
3009 const char *kernel_filename
, *kernel_cmdline
;
3010 const char *boot_order
= NULL
;
3011 const char *boot_once
= NULL
;
3013 QemuOpts
*opts
, *machine_opts
;
3014 QemuOpts
*icount_opts
= NULL
, *accel_opts
= NULL
;
3015 QemuOptsList
*olist
;
3018 const char *loadvm
= NULL
;
3019 MachineClass
*machine_class
;
3020 const char *cpu_model
;
3021 const char *vga_model
= NULL
;
3022 const char *qtest_chrdev
= NULL
;
3023 const char *qtest_log
= NULL
;
3024 const char *pid_file
= NULL
;
3025 const char *incoming
= NULL
;
3026 bool userconfig
= true;
3027 bool nographic
= false;
3028 int display_remote
= 0;
3029 const char *log_mask
= NULL
;
3030 const char *log_file
= NULL
;
3031 char *trace_file
= NULL
;
3032 ram_addr_t maxram_size
;
3033 uint64_t ram_slots
= 0;
3034 FILE *vmstate_dump_file
= NULL
;
3035 Error
*main_loop_err
= NULL
;
3037 bool list_data_dirs
= false;
3039 typedef struct BlockdevOptions_queue
{
3040 BlockdevOptions
*bdo
;
3042 QSIMPLEQ_ENTRY(BlockdevOptions_queue
) entry
;
3043 } BlockdevOptions_queue
;
3044 QSIMPLEQ_HEAD(, BlockdevOptions_queue
) bdo_queue
3045 = QSIMPLEQ_HEAD_INITIALIZER(bdo_queue
);
3047 module_call_init(MODULE_INIT_TRACE
);
3049 qemu_init_cpu_list();
3050 qemu_init_cpu_loop();
3052 qemu_mutex_lock_iothread();
3054 atexit(qemu_run_exit_notifiers
);
3055 error_set_progname(argv
[0]);
3056 qemu_init_exec_dir(argv
[0]);
3058 module_call_init(MODULE_INIT_QOM
);
3060 qemu_add_opts(&qemu_drive_opts
);
3061 qemu_add_drive_opts(&qemu_legacy_drive_opts
);
3062 qemu_add_drive_opts(&qemu_common_drive_opts
);
3063 qemu_add_drive_opts(&qemu_drive_opts
);
3064 qemu_add_drive_opts(&bdrv_runtime_opts
);
3065 qemu_add_opts(&qemu_chardev_opts
);
3066 qemu_add_opts(&qemu_device_opts
);
3067 qemu_add_opts(&qemu_netdev_opts
);
3068 qemu_add_opts(&qemu_nic_opts
);
3069 qemu_add_opts(&qemu_net_opts
);
3070 qemu_add_opts(&qemu_rtc_opts
);
3071 qemu_add_opts(&qemu_global_opts
);
3072 qemu_add_opts(&qemu_mon_opts
);
3073 qemu_add_opts(&qemu_trace_opts
);
3074 qemu_add_opts(&qemu_option_rom_opts
);
3075 qemu_add_opts(&qemu_machine_opts
);
3076 qemu_add_opts(&qemu_accel_opts
);
3077 qemu_add_opts(&qemu_mem_opts
);
3078 qemu_add_opts(&qemu_smp_opts
);
3079 qemu_add_opts(&qemu_boot_opts
);
3080 qemu_add_opts(&qemu_sandbox_opts
);
3081 qemu_add_opts(&qemu_add_fd_opts
);
3082 qemu_add_opts(&qemu_object_opts
);
3083 qemu_add_opts(&qemu_tpmdev_opts
);
3084 qemu_add_opts(&qemu_realtime_opts
);
3085 qemu_add_opts(&qemu_msg_opts
);
3086 qemu_add_opts(&qemu_name_opts
);
3087 qemu_add_opts(&qemu_numa_opts
);
3088 qemu_add_opts(&qemu_icount_opts
);
3089 qemu_add_opts(&qemu_semihosting_config_opts
);
3090 qemu_add_opts(&qemu_fw_cfg_opts
);
3091 module_call_init(MODULE_INIT_OPTS
);
3094 postcopy_infrastructure_init();
3096 if (qcrypto_init(&err
) < 0) {
3097 error_reportf_err(err
, "cannot initialize crypto: ");
3100 rtc_clock
= QEMU_CLOCK_HOST
;
3102 QLIST_INIT (&vm_change_state_head
);
3103 os_setup_early_signal_handling();
3110 bdrv_init_with_whitelist();
3114 /* first pass of option parsing */
3116 while (optind
< argc
) {
3117 if (argv
[optind
][0] != '-') {
3121 const QEMUOption
*popt
;
3123 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
3124 switch (popt
->index
) {
3125 case QEMU_OPTION_nodefconfig
:
3126 case QEMU_OPTION_nouserconfig
:
3134 if (qemu_read_default_config_file() < 0) {
3139 /* second pass of option parsing */
3144 if (argv
[optind
][0] != '-') {
3145 drive_add(IF_DEFAULT
, 0, argv
[optind
++], HD_OPTS
);
3147 const QEMUOption
*popt
;
3149 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
3150 if (!(popt
->arch_mask
& arch_type
)) {
3151 error_report("Option not supported for this target");
3154 switch(popt
->index
) {
3155 case QEMU_OPTION_cpu
:
3156 /* hw initialization will check this */
3159 case QEMU_OPTION_hda
:
3160 case QEMU_OPTION_hdb
:
3161 case QEMU_OPTION_hdc
:
3162 case QEMU_OPTION_hdd
:
3163 drive_add(IF_DEFAULT
, popt
->index
- QEMU_OPTION_hda
, optarg
,
3166 case QEMU_OPTION_blockdev
:
3169 BlockdevOptions_queue
*bdo
;
3171 v
= qobject_input_visitor_new_str(optarg
, "driver", &err
);
3173 error_report_err(err
);
3177 bdo
= g_new(BlockdevOptions_queue
, 1);
3178 visit_type_BlockdevOptions(v
, NULL
, &bdo
->bdo
,
3181 loc_save(&bdo
->loc
);
3182 QSIMPLEQ_INSERT_TAIL(&bdo_queue
, bdo
, entry
);
3185 case QEMU_OPTION_drive
:
3186 if (drive_def(optarg
) == NULL
) {
3190 case QEMU_OPTION_set
:
3191 if (qemu_set_option(optarg
) != 0)
3194 case QEMU_OPTION_global
:
3195 if (qemu_global_option(optarg
) != 0)
3198 case QEMU_OPTION_mtdblock
:
3199 drive_add(IF_MTD
, -1, optarg
, MTD_OPTS
);
3201 case QEMU_OPTION_sd
:
3202 drive_add(IF_SD
, -1, optarg
, SD_OPTS
);
3204 case QEMU_OPTION_pflash
:
3205 drive_add(IF_PFLASH
, -1, optarg
, PFLASH_OPTS
);
3207 case QEMU_OPTION_snapshot
:
3210 case QEMU_OPTION_numa
:
3211 opts
= qemu_opts_parse_noisily(qemu_find_opts("numa"),
3217 case QEMU_OPTION_display
:
3218 parse_display(optarg
);
3220 case QEMU_OPTION_nographic
:
3221 olist
= qemu_find_opts("machine");
3222 qemu_opts_parse_noisily(olist
, "graphics=off", false);
3224 dpy
.type
= DISPLAY_TYPE_NONE
;
3226 case QEMU_OPTION_curses
:
3227 #ifdef CONFIG_CURSES
3228 dpy
.type
= DISPLAY_TYPE_CURSES
;
3230 error_report("curses support is disabled");
3234 case QEMU_OPTION_portrait
:
3235 graphic_rotate
= 90;
3237 case QEMU_OPTION_rotate
:
3238 graphic_rotate
= strtol(optarg
, (char **) &optarg
, 10);
3239 if (graphic_rotate
!= 0 && graphic_rotate
!= 90 &&
3240 graphic_rotate
!= 180 && graphic_rotate
!= 270) {
3241 error_report("only 90, 180, 270 deg rotation is available");
3245 case QEMU_OPTION_kernel
:
3246 qemu_opts_set(qemu_find_opts("machine"), 0, "kernel", optarg
,
3249 case QEMU_OPTION_initrd
:
3250 qemu_opts_set(qemu_find_opts("machine"), 0, "initrd", optarg
,
3253 case QEMU_OPTION_append
:
3254 qemu_opts_set(qemu_find_opts("machine"), 0, "append", optarg
,
3257 case QEMU_OPTION_dtb
:
3258 qemu_opts_set(qemu_find_opts("machine"), 0, "dtb", optarg
,
3261 case QEMU_OPTION_cdrom
:
3262 drive_add(IF_DEFAULT
, 2, optarg
, CDROM_OPTS
);
3264 case QEMU_OPTION_boot
:
3265 opts
= qemu_opts_parse_noisily(qemu_find_opts("boot-opts"),
3271 case QEMU_OPTION_fda
:
3272 case QEMU_OPTION_fdb
:
3273 drive_add(IF_FLOPPY
, popt
->index
- QEMU_OPTION_fda
,
3276 case QEMU_OPTION_no_fd_bootchk
:
3279 case QEMU_OPTION_netdev
:
3281 if (net_client_parse(qemu_find_opts("netdev"), optarg
) == -1) {
3285 case QEMU_OPTION_nic
:
3287 if (net_client_parse(qemu_find_opts("nic"), optarg
) == -1) {
3291 case QEMU_OPTION_net
:
3293 if (net_client_parse(qemu_find_opts("net"), optarg
) == -1) {
3297 #ifdef CONFIG_LIBISCSI
3298 case QEMU_OPTION_iscsi
:
3299 opts
= qemu_opts_parse_noisily(qemu_find_opts("iscsi"),
3307 case QEMU_OPTION_tftp
:
3308 error_report("The -tftp option is deprecated. "
3309 "Please use '-netdev user,tftp=...' instead.");
3310 legacy_tftp_prefix
= optarg
;
3312 case QEMU_OPTION_bootp
:
3313 error_report("The -bootp option is deprecated. "
3314 "Please use '-netdev user,bootfile=...' instead.");
3315 legacy_bootp_filename
= optarg
;
3317 case QEMU_OPTION_redir
:
3318 error_report("The -redir option is deprecated. "
3319 "Please use '-netdev user,hostfwd=...' instead.");
3320 if (net_slirp_redir(optarg
) < 0)
3324 case QEMU_OPTION_bt
:
3325 add_device_config(DEV_BT
, optarg
);
3327 case QEMU_OPTION_audio_help
:
3331 case QEMU_OPTION_soundhw
:
3332 select_soundhw (optarg
);
3337 case QEMU_OPTION_version
:
3342 opts
= qemu_opts_parse_noisily(qemu_find_opts("memory"),
3349 case QEMU_OPTION_tpmdev
:
3350 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg
) < 0) {
3355 case QEMU_OPTION_mempath
:
3358 case QEMU_OPTION_mem_prealloc
:
3367 case QEMU_OPTION_DFILTER
:
3368 qemu_set_dfilter_ranges(optarg
, &error_fatal
);
3371 add_device_config(DEV_GDB
, "tcp::" DEFAULT_GDBSTUB_PORT
);
3373 case QEMU_OPTION_gdb
:
3374 add_device_config(DEV_GDB
, optarg
);
3377 if (is_help_option(optarg
)) {
3378 list_data_dirs
= true;
3380 qemu_add_data_dir(optarg
);
3383 case QEMU_OPTION_bios
:
3384 qemu_opts_set(qemu_find_opts("machine"), 0, "firmware", optarg
,
3387 case QEMU_OPTION_singlestep
:
3394 keyboard_layout
= optarg
;
3396 case QEMU_OPTION_localtime
:
3398 warn_report("This option is deprecated, "
3399 "use '-rtc base=localtime' instead.");
3401 case QEMU_OPTION_vga
:
3410 w
= strtol(p
, (char **)&p
, 10);
3413 error_report("invalid resolution or depth");
3419 h
= strtol(p
, (char **)&p
, 10);
3424 depth
= strtol(p
, (char **)&p
, 10);
3425 if (depth
!= 8 && depth
!= 15 && depth
!= 16 &&
3426 depth
!= 24 && depth
!= 32)
3428 } else if (*p
== '\0') {
3429 depth
= graphic_depth
;
3436 graphic_depth
= depth
;
3439 case QEMU_OPTION_echr
:
3442 term_escape_char
= strtol(optarg
, &r
, 0);
3444 printf("Bad argument to echr\n");
3447 case QEMU_OPTION_monitor
:
3448 default_monitor
= 0;
3449 if (strncmp(optarg
, "none", 4)) {
3450 monitor_parse(optarg
, "readline", false);
3453 case QEMU_OPTION_qmp
:
3454 monitor_parse(optarg
, "control", false);
3455 default_monitor
= 0;
3457 case QEMU_OPTION_qmp_pretty
:
3458 monitor_parse(optarg
, "control", true);
3459 default_monitor
= 0;
3461 case QEMU_OPTION_mon
:
3462 opts
= qemu_opts_parse_noisily(qemu_find_opts("mon"), optarg
,
3467 default_monitor
= 0;
3469 case QEMU_OPTION_chardev
:
3470 opts
= qemu_opts_parse_noisily(qemu_find_opts("chardev"),
3476 case QEMU_OPTION_fsdev
:
3477 olist
= qemu_find_opts("fsdev");
3479 error_report("fsdev support is disabled");
3482 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3487 case QEMU_OPTION_virtfs
: {
3490 const char *writeout
, *sock_fd
, *socket
, *path
, *security_model
;
3492 olist
= qemu_find_opts("virtfs");
3494 error_report("virtfs support is disabled");
3497 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3502 if (qemu_opt_get(opts
, "fsdriver") == NULL
||
3503 qemu_opt_get(opts
, "mount_tag") == NULL
) {
3504 error_report("Usage: -virtfs fsdriver,mount_tag=tag");
3507 fsdev
= qemu_opts_create(qemu_find_opts("fsdev"),
3508 qemu_opts_id(opts
) ?:
3509 qemu_opt_get(opts
, "mount_tag"),
3512 error_report("duplicate or invalid fsdev id: %s",
3513 qemu_opt_get(opts
, "mount_tag"));
3517 writeout
= qemu_opt_get(opts
, "writeout");
3519 #ifdef CONFIG_SYNC_FILE_RANGE
3520 qemu_opt_set(fsdev
, "writeout", writeout
, &error_abort
);
3522 error_report("writeout=immediate not supported "
3523 "on this platform");
3527 qemu_opt_set(fsdev
, "fsdriver",
3528 qemu_opt_get(opts
, "fsdriver"), &error_abort
);
3529 path
= qemu_opt_get(opts
, "path");
3531 qemu_opt_set(fsdev
, "path", path
, &error_abort
);
3533 security_model
= qemu_opt_get(opts
, "security_model");
3534 if (security_model
) {
3535 qemu_opt_set(fsdev
, "security_model", security_model
,
3538 socket
= qemu_opt_get(opts
, "socket");
3540 qemu_opt_set(fsdev
, "socket", socket
, &error_abort
);
3542 sock_fd
= qemu_opt_get(opts
, "sock_fd");
3544 qemu_opt_set(fsdev
, "sock_fd", sock_fd
, &error_abort
);
3547 qemu_opt_set_bool(fsdev
, "readonly",
3548 qemu_opt_get_bool(opts
, "readonly", 0),
3550 device
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
3552 qemu_opt_set(device
, "driver", "virtio-9p-pci", &error_abort
);
3553 qemu_opt_set(device
, "fsdev",
3554 qemu_opts_id(fsdev
), &error_abort
);
3555 qemu_opt_set(device
, "mount_tag",
3556 qemu_opt_get(opts
, "mount_tag"), &error_abort
);
3559 case QEMU_OPTION_virtfs_synth
: {
3563 fsdev
= qemu_opts_create(qemu_find_opts("fsdev"), "v_synth",
3566 error_report("duplicate option: %s", "virtfs_synth");
3569 qemu_opt_set(fsdev
, "fsdriver", "synth", &error_abort
);
3571 device
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
3573 qemu_opt_set(device
, "driver", "virtio-9p-pci", &error_abort
);
3574 qemu_opt_set(device
, "fsdev", "v_synth", &error_abort
);
3575 qemu_opt_set(device
, "mount_tag", "v_synth", &error_abort
);
3578 case QEMU_OPTION_serial
:
3579 add_device_config(DEV_SERIAL
, optarg
);
3581 if (strncmp(optarg
, "mon:", 4) == 0) {
3582 default_monitor
= 0;
3585 case QEMU_OPTION_watchdog
:
3587 error_report("only one watchdog option may be given");
3592 case QEMU_OPTION_watchdog_action
:
3593 if (select_watchdog_action(optarg
) == -1) {
3594 error_report("unknown -watchdog-action parameter");
3598 case QEMU_OPTION_virtiocon
:
3599 warn_report("This option is deprecated, "
3600 "use '-device virtconsole' instead");
3601 add_device_config(DEV_VIRTCON
, optarg
);
3602 default_virtcon
= 0;
3603 if (strncmp(optarg
, "mon:", 4) == 0) {
3604 default_monitor
= 0;
3607 case QEMU_OPTION_parallel
:
3608 add_device_config(DEV_PARALLEL
, optarg
);
3609 default_parallel
= 0;
3610 if (strncmp(optarg
, "mon:", 4) == 0) {
3611 default_monitor
= 0;
3614 case QEMU_OPTION_debugcon
:
3615 add_device_config(DEV_DEBUGCON
, optarg
);
3617 case QEMU_OPTION_loadvm
:
3620 case QEMU_OPTION_full_screen
:
3621 dpy
.has_full_screen
= true;
3622 dpy
.full_screen
= true;
3624 case QEMU_OPTION_no_frame
:
3625 g_printerr("The -no-frame switch is deprecated, and will be\n"
3626 "removed in a future release.\n");
3629 case QEMU_OPTION_alt_grab
:
3632 case QEMU_OPTION_ctrl_grab
:
3635 case QEMU_OPTION_no_quit
:
3636 dpy
.has_window_close
= true;
3637 dpy
.window_close
= false;
3639 case QEMU_OPTION_sdl
:
3641 dpy
.type
= DISPLAY_TYPE_SDL
;
3644 error_report("SDL support is disabled");
3647 case QEMU_OPTION_pidfile
:
3650 case QEMU_OPTION_win2k_hack
:
3651 win2k_install_hack
= 1;
3653 case QEMU_OPTION_rtc_td_hack
: {
3654 static GlobalProperty slew_lost_ticks
= {
3655 .driver
= "mc146818rtc",
3656 .property
= "lost_tick_policy",
3660 qdev_prop_register_global(&slew_lost_ticks
);
3661 warn_report("This option is deprecated, "
3662 "use '-rtc driftfix=slew' instead.");
3665 case QEMU_OPTION_acpitable
:
3666 opts
= qemu_opts_parse_noisily(qemu_find_opts("acpi"),
3671 acpi_table_add(opts
, &error_fatal
);
3673 case QEMU_OPTION_smbios
:
3674 opts
= qemu_opts_parse_noisily(qemu_find_opts("smbios"),
3679 smbios_entry_add(opts
, &error_fatal
);
3681 case QEMU_OPTION_fwcfg
:
3682 opts
= qemu_opts_parse_noisily(qemu_find_opts("fw_cfg"),
3688 case QEMU_OPTION_enable_kvm
:
3689 olist
= qemu_find_opts("machine");
3690 qemu_opts_parse_noisily(olist
, "accel=kvm", false);
3692 case QEMU_OPTION_enable_hax
:
3693 olist
= qemu_find_opts("machine");
3694 qemu_opts_parse_noisily(olist
, "accel=hax", false);
3697 case QEMU_OPTION_machine
:
3698 olist
= qemu_find_opts("machine");
3699 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3704 case QEMU_OPTION_no_kvm
:
3705 olist
= qemu_find_opts("machine");
3706 qemu_opts_parse_noisily(olist
, "accel=tcg", false);
3708 case QEMU_OPTION_accel
:
3709 accel_opts
= qemu_opts_parse_noisily(qemu_find_opts("accel"),
3711 optarg
= qemu_opt_get(accel_opts
, "accel");
3712 if (!optarg
|| is_help_option(optarg
)) {
3713 error_printf("Possible accelerators: kvm, xen, hax, tcg\n");
3716 opts
= qemu_opts_create(qemu_find_opts("machine"), NULL
,
3717 false, &error_abort
);
3718 qemu_opt_set(opts
, "accel", optarg
, &error_abort
);
3720 case QEMU_OPTION_usb
:
3721 olist
= qemu_find_opts("machine");
3722 qemu_opts_parse_noisily(olist
, "usb=on", false);
3724 case QEMU_OPTION_usbdevice
:
3725 error_report("'-usbdevice' is deprecated, please use "
3726 "'-device usb-...' instead");
3727 olist
= qemu_find_opts("machine");
3728 qemu_opts_parse_noisily(olist
, "usb=on", false);
3729 add_device_config(DEV_USB
, optarg
);
3731 case QEMU_OPTION_device
:
3732 if (!qemu_opts_parse_noisily(qemu_find_opts("device"),
3737 case QEMU_OPTION_smp
:
3738 if (!qemu_opts_parse_noisily(qemu_find_opts("smp-opts"),
3743 case QEMU_OPTION_vnc
:
3744 vnc_parse(optarg
, &error_fatal
);
3746 case QEMU_OPTION_no_acpi
:
3749 case QEMU_OPTION_no_hpet
:
3752 case QEMU_OPTION_balloon
:
3753 if (balloon_parse(optarg
) < 0) {
3754 error_report("unknown -balloon argument %s", optarg
);
3758 case QEMU_OPTION_no_reboot
:
3761 case QEMU_OPTION_no_shutdown
:
3764 case QEMU_OPTION_show_cursor
:
3767 case QEMU_OPTION_uuid
:
3768 if (qemu_uuid_parse(optarg
, &qemu_uuid
) < 0) {
3769 error_report("failed to parse UUID string: wrong format");
3772 qemu_uuid_set
= true;
3774 case QEMU_OPTION_option_rom
:
3775 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
3776 error_report("too many option ROMs");
3779 opts
= qemu_opts_parse_noisily(qemu_find_opts("option-rom"),
3784 option_rom
[nb_option_roms
].name
= qemu_opt_get(opts
, "romfile");
3785 option_rom
[nb_option_roms
].bootindex
=
3786 qemu_opt_get_number(opts
, "bootindex", -1);
3787 if (!option_rom
[nb_option_roms
].name
) {
3788 error_report("Option ROM file is not specified");
3793 case QEMU_OPTION_semihosting
:
3794 semihosting
.enabled
= true;
3795 semihosting
.target
= SEMIHOSTING_TARGET_AUTO
;
3797 case QEMU_OPTION_semihosting_config
:
3798 semihosting
.enabled
= true;
3799 opts
= qemu_opts_parse_noisily(qemu_find_opts("semihosting-config"),
3802 semihosting
.enabled
= qemu_opt_get_bool(opts
, "enable",
3804 const char *target
= qemu_opt_get(opts
, "target");
3805 if (target
!= NULL
) {
3806 if (strcmp("native", target
) == 0) {
3807 semihosting
.target
= SEMIHOSTING_TARGET_NATIVE
;
3808 } else if (strcmp("gdb", target
) == 0) {
3809 semihosting
.target
= SEMIHOSTING_TARGET_GDB
;
3810 } else if (strcmp("auto", target
) == 0) {
3811 semihosting
.target
= SEMIHOSTING_TARGET_AUTO
;
3813 error_report("unsupported semihosting-config %s",
3818 semihosting
.target
= SEMIHOSTING_TARGET_AUTO
;
3820 /* Set semihosting argument count and vector */
3821 qemu_opt_foreach(opts
, add_semihosting_arg
,
3822 &semihosting
, NULL
);
3824 error_report("unsupported semihosting-config %s", optarg
);
3828 case QEMU_OPTION_name
:
3829 opts
= qemu_opts_parse_noisily(qemu_find_opts("name"),
3835 case QEMU_OPTION_prom_env
:
3836 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
3837 error_report("too many prom variables");
3840 prom_envs
[nb_prom_envs
] = optarg
;
3843 case QEMU_OPTION_old_param
:
3846 case QEMU_OPTION_clock
:
3847 /* Clock options no longer exist. Keep this option for
3848 * backward compatibility.
3851 case QEMU_OPTION_startdate
:
3852 warn_report("This option is deprecated, use '-rtc base=' instead.");
3853 configure_rtc_date_offset(optarg
, 1);
3855 case QEMU_OPTION_rtc
:
3856 opts
= qemu_opts_parse_noisily(qemu_find_opts("rtc"), optarg
,
3861 configure_rtc(opts
);
3863 case QEMU_OPTION_tb_size
:
3865 error_report("TCG is disabled");
3868 if (qemu_strtoul(optarg
, NULL
, 0, &tcg_tb_size
) < 0) {
3869 error_report("Invalid argument to -tb-size");
3873 case QEMU_OPTION_icount
:
3874 icount_opts
= qemu_opts_parse_noisily(qemu_find_opts("icount"),
3880 case QEMU_OPTION_incoming
:
3882 runstate_set(RUN_STATE_INMIGRATE
);
3886 case QEMU_OPTION_only_migratable
:
3888 * TODO: we can remove this option one day, and we
3891 * "-global migration.only-migratable=true"
3893 qemu_global_option("migration.only-migratable=true");
3895 case QEMU_OPTION_nodefaults
:
3898 case QEMU_OPTION_xen_domid
:
3899 if (!(xen_available())) {
3900 error_report("Option not supported for this target");
3903 xen_domid
= atoi(optarg
);
3905 case QEMU_OPTION_xen_create
:
3906 if (!(xen_available())) {
3907 error_report("Option not supported for this target");
3910 xen_mode
= XEN_CREATE
;
3912 case QEMU_OPTION_xen_attach
:
3913 if (!(xen_available())) {
3914 error_report("Option not supported for this target");
3917 xen_mode
= XEN_ATTACH
;
3919 case QEMU_OPTION_xen_domid_restrict
:
3920 if (!(xen_available())) {
3921 error_report("Option not supported for this target");
3924 xen_domid_restrict
= true;
3926 case QEMU_OPTION_trace
:
3928 trace_file
= trace_opt_parse(optarg
);
3930 case QEMU_OPTION_readconfig
:
3932 int ret
= qemu_read_config_file(optarg
);
3934 error_report("read config %s: %s", optarg
,
3940 case QEMU_OPTION_spice
:
3941 olist
= qemu_find_opts("spice");
3943 error_report("spice support is disabled");
3946 opts
= qemu_opts_parse_noisily(olist
, optarg
, false);
3952 case QEMU_OPTION_writeconfig
:
3955 if (strcmp(optarg
, "-") == 0) {
3958 fp
= fopen(optarg
, "w");
3960 error_report("open %s: %s", optarg
,
3965 qemu_config_write(fp
);
3971 case QEMU_OPTION_qtest
:
3972 qtest_chrdev
= optarg
;
3974 case QEMU_OPTION_qtest_log
:
3977 case QEMU_OPTION_sandbox
:
3978 opts
= qemu_opts_parse_noisily(qemu_find_opts("sandbox"),
3984 case QEMU_OPTION_add_fd
:
3986 opts
= qemu_opts_parse_noisily(qemu_find_opts("add-fd"),
3992 error_report("File descriptor passing is disabled on this "
3997 case QEMU_OPTION_object
:
3998 opts
= qemu_opts_parse_noisily(qemu_find_opts("object"),
4004 case QEMU_OPTION_realtime
:
4005 opts
= qemu_opts_parse_noisily(qemu_find_opts("realtime"),
4010 enable_mlock
= qemu_opt_get_bool(opts
, "mlock", true);
4012 case QEMU_OPTION_msg
:
4013 opts
= qemu_opts_parse_noisily(qemu_find_opts("msg"), optarg
,
4018 configure_msg(opts
);
4020 case QEMU_OPTION_dump_vmstate
:
4021 if (vmstate_dump_file
) {
4022 error_report("only one '-dump-vmstate' "
4023 "option may be given");
4026 vmstate_dump_file
= fopen(optarg
, "w");
4027 if (vmstate_dump_file
== NULL
) {
4028 error_report("open %s: %s", optarg
, strerror(errno
));
4033 if (os_parse_cmd_args(popt
->index
, optarg
)) {
4034 error_report("Option not supported in this build");
4041 * Clear error location left behind by the loop.
4042 * Best done right after the loop. Do not insert code here!
4046 replay_configure(icount_opts
);
4048 machine_class
= select_machine();
4050 set_memory_options(&ram_slots
, &maxram_size
, machine_class
);
4053 rcu_disable_atfork();
4055 if (pid_file
&& qemu_create_pidfile(pid_file
) != 0) {
4056 error_report("could not acquire pid file: %s", strerror(errno
));
4060 if (qemu_init_main_loop(&main_loop_err
)) {
4061 error_report_err(main_loop_err
);
4065 if (qemu_opts_foreach(qemu_find_opts("sandbox"),
4066 parse_sandbox
, NULL
, NULL
)) {
4070 if (qemu_opts_foreach(qemu_find_opts("name"),
4071 parse_name
, NULL
, NULL
)) {
4076 if (qemu_opts_foreach(qemu_find_opts("add-fd"),
4077 parse_add_fd
, NULL
, NULL
)) {
4081 if (qemu_opts_foreach(qemu_find_opts("add-fd"),
4082 cleanup_add_fd
, NULL
, NULL
)) {
4087 current_machine
= MACHINE(object_new(object_class_get_name(
4088 OBJECT_CLASS(machine_class
))));
4089 if (machine_help_func(qemu_get_machine_opts(), current_machine
)) {
4092 object_property_add_child(object_get_root(), "machine",
4093 OBJECT(current_machine
), &error_abort
);
4095 if (machine_class
->minimum_page_bits
) {
4096 if (!set_preferred_target_page_bits(machine_class
->minimum_page_bits
)) {
4097 /* This would be a board error: specifying a minimum smaller than
4098 * a target's compile-time fixed setting.
4100 g_assert_not_reached();
4104 cpu_exec_init_all();
4106 if (machine_class
->hw_version
) {
4107 qemu_set_hw_version(machine_class
->hw_version
);
4110 if (cpu_model
&& is_help_option(cpu_model
)) {
4111 list_cpus(stdout
, &fprintf
, cpu_model
);
4115 if (!trace_init_backends()) {
4118 trace_init_file(trace_file
);
4120 /* Open the logfile at this point and set the log mask if necessary.
4123 qemu_set_log_filename(log_file
, &error_fatal
);
4128 mask
= qemu_str_to_log_mask(log_mask
);
4130 qemu_print_log_usage(stdout
);
4138 /* add configured firmware directories */
4139 dirs
= g_strsplit(CONFIG_QEMU_FIRMWAREPATH
, G_SEARCHPATH_SEPARATOR_S
, 0);
4140 for (i
= 0; dirs
[i
] != NULL
; i
++) {
4141 qemu_add_data_dir(dirs
[i
]);
4145 /* try to find datadir relative to the executable path */
4146 dir
= os_find_datadir();
4147 qemu_add_data_dir(dir
);
4150 /* add the datadir specified when building */
4151 qemu_add_data_dir(CONFIG_QEMU_DATADIR
);
4153 /* -L help lists the data directories and exits. */
4154 if (list_data_dirs
) {
4155 for (i
= 0; i
< data_dir_idx
; i
++) {
4156 printf("%s\n", data_dir
[i
]);
4161 /* machine_class: default to UP */
4162 machine_class
->max_cpus
= machine_class
->max_cpus
?: 1;
4163 machine_class
->min_cpus
= machine_class
->min_cpus
?: 1;
4164 machine_class
->default_cpus
= machine_class
->default_cpus
?: 1;
4166 /* default to machine_class->default_cpus */
4167 smp_cpus
= machine_class
->default_cpus
;
4168 max_cpus
= machine_class
->default_cpus
;
4170 smp_parse(qemu_opts_find(qemu_find_opts("smp-opts"), NULL
));
4172 /* sanity-check smp_cpus and max_cpus against machine_class */
4173 if (smp_cpus
< machine_class
->min_cpus
) {
4174 error_report("Invalid SMP CPUs %d. The min CPUs "
4175 "supported by machine '%s' is %d", smp_cpus
,
4176 machine_class
->name
, machine_class
->min_cpus
);
4179 if (max_cpus
> machine_class
->max_cpus
) {
4180 error_report("Invalid SMP CPUs %d. The max CPUs "
4181 "supported by machine '%s' is %d", max_cpus
,
4182 machine_class
->name
, machine_class
->max_cpus
);
4187 * Get the default machine options from the machine if it is not already
4188 * specified either by the configuration file or by the command line.
4190 if (machine_class
->default_machine_opts
) {
4191 qemu_opts_set_defaults(qemu_find_opts("machine"),
4192 machine_class
->default_machine_opts
, 0);
4195 qemu_opts_foreach(qemu_find_opts("device"),
4196 default_driver_check
, NULL
, NULL
);
4197 qemu_opts_foreach(qemu_find_opts("global"),
4198 default_driver_check
, NULL
, NULL
);
4200 if (!vga_model
&& !default_vga
) {
4201 vga_interface_type
= VGA_DEVICE
;
4203 if (!has_defaults
|| machine_class
->no_serial
) {
4206 if (!has_defaults
|| machine_class
->no_parallel
) {
4207 default_parallel
= 0;
4209 if (!has_defaults
|| !machine_class
->use_virtcon
) {
4210 default_virtcon
= 0;
4212 if (!has_defaults
|| machine_class
->no_floppy
) {
4215 if (!has_defaults
|| machine_class
->no_cdrom
) {
4218 if (!has_defaults
|| machine_class
->no_sdcard
) {
4221 if (!has_defaults
) {
4222 default_monitor
= 0;
4227 if (is_daemonized()) {
4228 /* According to documentation and historically, -nographic redirects
4229 * serial port, parallel port and monitor to stdio, which does not work
4230 * with -daemonize. We can redirect these to null instead, but since
4231 * -nographic is legacy, let's just error out.
4232 * We disallow -nographic only if all other ports are not redirected
4233 * explicitly, to not break existing legacy setups which uses
4234 * -nographic _and_ redirects all ports explicitly - this is valid
4235 * usage, -nographic is just a no-op in this case.
4238 && (default_parallel
|| default_serial
4239 || default_monitor
|| default_virtcon
)) {
4240 error_report("-nographic cannot be used with -daemonize");
4243 #ifdef CONFIG_CURSES
4244 if (dpy
.type
== DISPLAY_TYPE_CURSES
) {
4245 error_report("curses display cannot be used with -daemonize");
4252 if (default_parallel
)
4253 add_device_config(DEV_PARALLEL
, "null");
4254 if (default_serial
&& default_monitor
) {
4255 add_device_config(DEV_SERIAL
, "mon:stdio");
4256 } else if (default_virtcon
&& default_monitor
) {
4257 add_device_config(DEV_VIRTCON
, "mon:stdio");
4260 add_device_config(DEV_SERIAL
, "stdio");
4261 if (default_virtcon
)
4262 add_device_config(DEV_VIRTCON
, "stdio");
4263 if (default_monitor
)
4264 monitor_parse("stdio", "readline", false);
4268 add_device_config(DEV_SERIAL
, "vc:80Cx24C");
4269 if (default_parallel
)
4270 add_device_config(DEV_PARALLEL
, "vc:80Cx24C");
4271 if (default_monitor
)
4272 monitor_parse("vc:80Cx24C", "readline", false);
4273 if (default_virtcon
)
4274 add_device_config(DEV_VIRTCON
, "vc:80Cx24C");
4277 #if defined(CONFIG_VNC)
4278 if (!QTAILQ_EMPTY(&(qemu_find_opts("vnc")->head
))) {
4282 if (dpy
.type
== DISPLAY_TYPE_DEFAULT
&& !display_remote
) {
4283 if (!qemu_display_find_default(&dpy
)) {
4284 dpy
.type
= DISPLAY_TYPE_NONE
;
4285 #if defined(CONFIG_VNC)
4286 vnc_parse("localhost:0,to=99,id=default", &error_abort
);
4290 if (dpy
.type
== DISPLAY_TYPE_DEFAULT
) {
4291 dpy
.type
= DISPLAY_TYPE_NONE
;
4294 if ((no_frame
|| alt_grab
|| ctrl_grab
) && dpy
.type
!= DISPLAY_TYPE_SDL
) {
4295 error_report("-no-frame, -alt-grab and -ctrl-grab are only valid "
4296 "for SDL, ignoring option");
4298 if (dpy
.has_window_close
&&
4299 (dpy
.type
!= DISPLAY_TYPE_GTK
&& dpy
.type
!= DISPLAY_TYPE_SDL
)) {
4300 error_report("-no-quit is only valid for GTK and SDL, "
4304 qemu_display_early_init(&dpy
);
4305 qemu_console_early_init();
4307 if (dpy
.has_gl
&& dpy
.gl
!= DISPLAYGL_MODE_OFF
&& display_opengl
== 0) {
4308 #if defined(CONFIG_OPENGL)
4309 error_report("OpenGL is not supported by the display");
4311 error_report("OpenGL support is disabled");
4319 if (qemu_opts_foreach(qemu_find_opts("object"),
4320 user_creatable_add_opts_foreach
,
4321 object_create_initial
, NULL
)) {
4325 if (qemu_opts_foreach(qemu_find_opts("chardev"),
4326 chardev_init_func
, NULL
, NULL
)) {
4330 #ifdef CONFIG_VIRTFS
4331 if (qemu_opts_foreach(qemu_find_opts("fsdev"),
4332 fsdev_init_func
, NULL
, NULL
)) {
4337 if (qemu_opts_foreach(qemu_find_opts("device"),
4338 device_help_func
, NULL
, NULL
)) {
4342 machine_opts
= qemu_get_machine_opts();
4343 if (qemu_opt_foreach(machine_opts
, machine_set_property
, current_machine
,
4345 object_unref(OBJECT(current_machine
));
4349 configure_accelerator(current_machine
);
4352 * Register all the global properties, including accel properties,
4353 * machine properties, and user-specified ones.
4355 register_global_properties(current_machine
);
4358 * Migration object can only be created after global properties
4359 * are applied correctly.
4361 migration_object_init();
4364 qtest_init(qtest_chrdev
, qtest_log
, &error_fatal
);
4367 machine_opts
= qemu_get_machine_opts();
4368 kernel_filename
= qemu_opt_get(machine_opts
, "kernel");
4369 initrd_filename
= qemu_opt_get(machine_opts
, "initrd");
4370 kernel_cmdline
= qemu_opt_get(machine_opts
, "append");
4371 bios_name
= qemu_opt_get(machine_opts
, "firmware");
4373 opts
= qemu_opts_find(qemu_find_opts("boot-opts"), NULL
);
4375 boot_order
= qemu_opt_get(opts
, "order");
4377 validate_bootdevices(boot_order
, &error_fatal
);
4380 boot_once
= qemu_opt_get(opts
, "once");
4382 validate_bootdevices(boot_once
, &error_fatal
);
4385 boot_menu
= qemu_opt_get_bool(opts
, "menu", boot_menu
);
4386 boot_strict
= qemu_opt_get_bool(opts
, "strict", false);
4390 boot_order
= machine_class
->default_boot_order
;
4393 if (!kernel_cmdline
) {
4394 kernel_cmdline
= "";
4395 current_machine
->kernel_cmdline
= (char *)kernel_cmdline
;
4398 linux_boot
= (kernel_filename
!= NULL
);
4400 if (!linux_boot
&& *kernel_cmdline
!= '\0') {
4401 error_report("-append only allowed with -kernel option");
4405 if (!linux_boot
&& initrd_filename
!= NULL
) {
4406 error_report("-initrd only allowed with -kernel option");
4410 if (semihosting_enabled() && !semihosting_get_argc() && kernel_filename
) {
4411 /* fall back to the -kernel/-append */
4412 semihosting_arg_fallback(kernel_filename
, kernel_cmdline
);
4415 os_set_line_buffering();
4417 /* spice needs the timers to be initialized by this point */
4422 if (!tcg_enabled()) {
4423 error_report("-icount is not allowed with hardware virtualization");
4426 configure_icount(icount_opts
, &error_abort
);
4427 qemu_opts_del(icount_opts
);
4430 if (tcg_enabled()) {
4431 qemu_tcg_configure(accel_opts
, &error_fatal
);
4435 QemuOptsList
*net
= qemu_find_opts("net");
4436 qemu_opts_set(net
, NULL
, "type", "nic", &error_abort
);
4438 qemu_opts_set(net
, NULL
, "type", "user", &error_abort
);
4444 if (net_init_clients(&err
) < 0) {
4445 error_report_err(err
);
4449 if (qemu_opts_foreach(qemu_find_opts("object"),
4450 user_creatable_add_opts_foreach
,
4451 object_create_delayed
, NULL
)) {
4455 if (tpm_init() < 0) {
4459 /* init the bluetooth world */
4460 if (foreach_device_config(DEV_BT
, bt_parse
))
4463 if (!xen_enabled()) {
4464 /* On 32-bit hosts, QEMU is limited by virtual address space */
4465 if (ram_size
> (2047 << 20) && HOST_LONG_BITS
== 32) {
4466 error_report("at most 2047 MB RAM can be simulated");
4473 dirty_bitmap_mig_init();
4475 /* If the currently selected machine wishes to override the units-per-bus
4476 * property of its default HBA interface type, do so now. */
4477 if (machine_class
->units_per_default_bus
) {
4478 override_max_devs(machine_class
->block_default_type
,
4479 machine_class
->units_per_default_bus
);
4482 /* open the virtual block devices */
4483 while (!QSIMPLEQ_EMPTY(&bdo_queue
)) {
4484 BlockdevOptions_queue
*bdo
= QSIMPLEQ_FIRST(&bdo_queue
);
4486 QSIMPLEQ_REMOVE_HEAD(&bdo_queue
, entry
);
4487 loc_push_restore(&bdo
->loc
);
4488 qmp_blockdev_add(bdo
->bdo
, &error_fatal
);
4490 qapi_free_BlockdevOptions(bdo
->bdo
);
4493 if (snapshot
|| replay_mode
!= REPLAY_MODE_NONE
) {
4494 qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot
,
4497 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func
,
4498 &machine_class
->block_default_type
, NULL
)) {
4502 default_drive(default_cdrom
, snapshot
, machine_class
->block_default_type
, 2,
4504 default_drive(default_floppy
, snapshot
, IF_FLOPPY
, 0, FD_OPTS
);
4505 default_drive(default_sdcard
, snapshot
, IF_SD
, 0, SD_OPTS
);
4508 * Note: qtest_enabled() (which is used in monitor_qapi_event_init())
4509 * depends on configure_accelerator() above.
4511 monitor_init_globals();
4513 if (qemu_opts_foreach(qemu_find_opts("mon"),
4514 mon_init_func
, NULL
, NULL
)) {
4518 if (foreach_device_config(DEV_SERIAL
, serial_parse
) < 0)
4520 if (foreach_device_config(DEV_PARALLEL
, parallel_parse
) < 0)
4522 if (foreach_device_config(DEV_VIRTCON
, virtcon_parse
) < 0)
4524 if (foreach_device_config(DEV_DEBUGCON
, debugcon_parse
) < 0)
4527 /* If no default VGA is requested, the default is "none". */
4529 if (machine_class
->default_display
) {
4530 vga_model
= machine_class
->default_display
;
4531 } else if (vga_interface_available(VGA_CIRRUS
)) {
4532 vga_model
= "cirrus";
4533 } else if (vga_interface_available(VGA_STD
)) {
4538 select_vgahw(vga_model
);
4542 i
= select_watchdog(watchdog
);
4544 exit (i
== 1 ? 1 : 0);
4547 /* This checkpoint is required by replay to separate prior clock
4548 reading from the other reads, because timer polling functions query
4549 clock values from the log. */
4550 replay_checkpoint(CHECKPOINT_INIT
);
4551 qdev_machine_init();
4553 current_machine
->ram_size
= ram_size
;
4554 current_machine
->maxram_size
= maxram_size
;
4555 current_machine
->ram_slots
= ram_slots
;
4556 current_machine
->boot_order
= boot_order
;
4558 /* parse features once if machine provides default cpu_type */
4559 current_machine
->cpu_type
= machine_class
->default_cpu_type
;
4561 current_machine
->cpu_type
= parse_cpu_model(cpu_model
);
4563 parse_numa_opts(current_machine
);
4565 machine_run_board_init(current_machine
);
4571 if (hax_enabled()) {
4575 if (qemu_opts_foreach(qemu_find_opts("fw_cfg"),
4576 parse_fw_cfg
, fw_cfg_find(), NULL
) != 0) {
4580 /* init USB devices */
4581 if (machine_usb(current_machine
)) {
4582 if (foreach_device_config(DEV_USB
, usb_parse
) < 0)
4586 /* Check if IGD GFX passthrough. */
4589 /* init generic devices */
4590 rom_set_order_override(FW_CFG_ORDER_OVERRIDE_DEVICE
);
4591 if (qemu_opts_foreach(qemu_find_opts("device"),
4592 device_init_func
, NULL
, NULL
)) {
4596 cpu_synchronize_all_post_init();
4598 rom_reset_order_override();
4600 /* Did we create any drives that we failed to create a device for? */
4601 drive_check_orphaned();
4603 /* Don't warn about the default network setup that you get if
4604 * no command line -net or -netdev options are specified. There
4605 * are two cases that we would otherwise complain about:
4606 * (1) board doesn't support a NIC but the implicit "-net nic"
4608 * (2) CONFIG_SLIRP not set, in which case the implicit "-net nic"
4609 * sets up a nic that isn't connected to anything.
4612 net_check_clients();
4617 qemu_boot_set(boot_once
, &error_fatal
);
4618 qemu_register_reset(restore_boot_order
, g_strdup(boot_order
));
4621 /* init local displays */
4622 ds
= init_displaystate();
4623 qemu_display_init(ds
, &dpy
);
4625 /* must be after terminal init, SDL library changes signal handlers */
4626 os_setup_signal_handling();
4628 /* init remote displays */
4630 qemu_opts_foreach(qemu_find_opts("vnc"),
4631 vnc_init_func
, NULL
, NULL
);
4635 qemu_spice_display_init();
4638 if (foreach_device_config(DEV_GDB
, gdbserver_start
) < 0) {
4642 qdev_machine_creation_done();
4644 /* TODO: once all bus devices are qdevified, this should be done
4645 * when bus is created by qdev.c */
4646 qemu_register_reset(qbus_reset_all_fn
, sysbus_get_default());
4647 qemu_run_machine_init_done_notifiers();
4649 if (rom_check_and_register_reset() != 0) {
4650 error_report("rom check and register reset failed");
4656 /* This checkpoint is required by replay to separate prior clock
4657 reading from the other reads, because timer polling functions query
4658 clock values from the log. */
4659 replay_checkpoint(CHECKPOINT_RESET
);
4660 qemu_system_reset(SHUTDOWN_CAUSE_NONE
);
4661 register_global_state();
4662 if (replay_mode
!= REPLAY_MODE_NONE
) {
4663 replay_vmstate_init();
4664 } else if (loadvm
) {
4665 Error
*local_err
= NULL
;
4666 if (load_snapshot(loadvm
, &local_err
) < 0) {
4667 error_report_err(local_err
);
4672 qdev_prop_check_globals();
4673 if (vmstate_dump_file
) {
4675 dump_vmstate_json_to_file(vmstate_dump_file
);
4680 Error
*local_err
= NULL
;
4681 qemu_start_incoming_migration(incoming
, &local_err
);
4683 error_reportf_err(local_err
, "-incoming %s: ", incoming
);
4686 } else if (autostart
) {
4690 accel_setup_post(current_machine
);
4695 gdbserver_cleanup();
4697 /* No more vcpu or device emulation activity beyond this point */
4704 /* vhost-user must be cleaned up before chardevs. */
4710 user_creatable_cleanup();
4711 migration_object_finalize();
4712 /* TODO: unref root container, check all devices are ok */