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
31 #include "config-host.h"
34 #include "sysemu/seccomp.h"
37 #if defined(CONFIG_VDE)
38 #include <libvdeplug.h>
42 #if defined(__APPLE__) || defined(main)
44 int qemu_main(int argc, char **argv, char **envp);
45 int main(int argc, char **argv)
47 return qemu_main(argc, argv, NULL);
50 #define main qemu_main
52 #endif /* CONFIG_SDL */
56 #define main qemu_main
57 #endif /* CONFIG_COCOA */
61 #include "qemu/error-report.h"
62 #include "qemu/sockets.h"
64 #include "hw/boards.h"
65 #include "sysemu/accel.h"
67 #include "hw/i386/pc.h"
68 #include "hw/isa/isa.h"
70 #include "sysemu/watchdog.h"
71 #include "hw/smbios/smbios.h"
72 #include "hw/xen/xen.h"
74 #include "hw/loader.h"
75 #include "monitor/qdev.h"
76 #include "sysemu/bt.h"
78 #include "net/slirp.h"
79 #include "monitor/monitor.h"
80 #include "ui/console.h"
81 #include "sysemu/sysemu.h"
82 #include "sysemu/numa.h"
83 #include "exec/gdbstub.h"
84 #include "qemu/timer.h"
85 #include "sysemu/char.h"
86 #include "qemu/bitmap.h"
87 #include "sysemu/blockdev.h"
88 #include "hw/block/block.h"
89 #include "migration/block.h"
90 #include "sysemu/tpm.h"
91 #include "sysemu/dma.h"
92 #include "audio/audio.h"
93 #include "migration/migration.h"
94 #include "sysemu/kvm.h"
95 #include "qapi/qmp/qjson.h"
96 #include "qemu/option.h"
97 #include "qemu/config-file.h"
98 #include "qemu-options.h"
99 #include "qmp-commands.h"
100 #include "qemu/main-loop.h"
102 #include "fsdev/qemu-fsdev.h"
104 #include "sysemu/qtest.h"
106 #include "disas/disas.h"
109 #include "slirp/libslirp.h"
112 #include "trace/control.h"
113 #include "qemu/queue.h"
114 #include "sysemu/cpus.h"
115 #include "sysemu/arch_init.h"
116 #include "qemu/osdep.h"
118 #include "ui/qemu-spice.h"
119 #include "qapi/string-input-visitor.h"
120 #include "qapi/opts-visitor.h"
121 #include "qom/object_interfaces.h"
122 #include "qapi-event.h"
123 #include "exec/semihost.h"
124 #include "crypto/init.h"
125 #include "sysemu/replay.h"
126 #include "qapi/qmp/qerror.h"
128 #define MAX_VIRTIO_CONSOLES 1
129 #define MAX_SCLP_CONSOLES 1
131 static const char *data_dir[16];
132 static int data_dir_idx;
133 const char *bios_name = NULL;
134 enum vga_retrace_method vga_retrace_method = VGA_RETRACE_DUMB;
135 DisplayType display_type = DT_DEFAULT;
136 int request_opengl = -1;
138 static int display_remote;
139 const char* keyboard_layout = NULL;
141 const char *mem_path = NULL;
142 int mem_prealloc = 0; /* force preallocation of physical target memory */
143 bool enable_mlock = false;
145 NICInfo nd_table[MAX_NICS];
147 static int rtc_utc = 1;
148 static int rtc_date_offset = -1; /* -1 means no change */
149 QEMUClockType rtc_clock;
150 int vga_interface_type = VGA_NONE;
151 static int full_screen = 0;
152 static int no_frame = 0;
155 static bool grab_on_hover;
157 CharDriverState *serial_hds[MAX_SERIAL_PORTS];
158 CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
159 CharDriverState *virtcon_hds[MAX_VIRTIO_CONSOLES];
160 CharDriverState *sclp_hds[MAX_SCLP_CONSOLES];
161 int win2k_install_hack = 0;
167 int acpi_enabled = 1;
170 static int no_reboot;
173 int graphic_rotate = 0;
174 const char *watchdog;
175 QEMUOptionRom option_rom[MAX_OPTION_ROMS];
178 const char *qemu_name;
181 unsigned int nb_prom_envs = 0;
182 const char *prom_envs[MAX_PROM_ENVS];
185 uint8_t *boot_splash_filedata;
186 size_t boot_splash_filedata_size;
187 uint8_t qemu_extra_params_fw[2];
189 int icount_align_option;
191 /* The bytes in qemu_uuid[] are in the order specified by RFC4122, _not_ in the
192 * little-endian "wire format" described in the SMBIOS 2.6 specification.
194 uint8_t qemu_uuid[16];
197 static NotifierList exit_notifiers =
198 NOTIFIER_LIST_INITIALIZER(exit_notifiers);
200 static NotifierList machine_init_done_notifiers =
201 NOTIFIER_LIST_INITIALIZER(machine_init_done_notifiers);
205 enum xen_mode xen_mode = XEN_EMULATE;
207 static int has_defaults = 1;
208 static int default_serial = 1;
209 static int default_parallel = 1;
210 static int default_virtcon = 1;
211 static int default_sclp = 1;
212 static int default_monitor = 1;
213 static int default_floppy = 1;
214 static int default_cdrom = 1;
215 static int default_sdcard = 1;
216 static int default_vga = 1;
222 { .driver = "isa-serial", .flag = &default_serial },
223 { .driver = "isa-parallel", .flag = &default_parallel },
224 { .driver = "isa-fdc", .flag = &default_floppy },
225 { .driver = "ide-cd", .flag = &default_cdrom },
226 { .driver = "ide-hd", .flag = &default_cdrom },
227 { .driver = "ide-drive", .flag = &default_cdrom },
228 { .driver = "scsi-cd", .flag = &default_cdrom },
229 { .driver = "virtio-serial-pci", .flag = &default_virtcon },
230 { .driver = "virtio-serial", .flag = &default_virtcon },
231 { .driver = "VGA", .flag = &default_vga },
232 { .driver = "isa-vga", .flag = &default_vga },
233 { .driver = "cirrus-vga", .flag = &default_vga },
234 { .driver = "isa-cirrus-vga", .flag = &default_vga },
235 { .driver = "vmware-svga", .flag = &default_vga },
236 { .driver = "qxl-vga", .flag = &default_vga },
237 { .driver = "virtio-vga", .flag = &default_vga },
240 static QemuOptsList qemu_rtc_opts = {
242 .head = QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts.head),
246 .type = QEMU_OPT_STRING,
249 .type = QEMU_OPT_STRING,
252 .type = QEMU_OPT_STRING,
254 { /* end of list */ }
258 static QemuOptsList qemu_sandbox_opts = {
260 .implied_opt_name = "enable",
261 .head = QTAILQ_HEAD_INITIALIZER(qemu_sandbox_opts.head),
265 .type = QEMU_OPT_BOOL,
267 { /* end of list */ }
271 static QemuOptsList qemu_trace_opts = {
273 .implied_opt_name = "trace",
274 .head = QTAILQ_HEAD_INITIALIZER(qemu_trace_opts.head),
278 .type = QEMU_OPT_STRING,
281 .type = QEMU_OPT_STRING,
283 { /* end of list */ }
287 static QemuOptsList qemu_option_rom_opts = {
288 .name = "option-rom",
289 .implied_opt_name = "romfile",
290 .head = QTAILQ_HEAD_INITIALIZER(qemu_option_rom_opts.head),
294 .type = QEMU_OPT_NUMBER,
297 .type = QEMU_OPT_STRING,
299 { /* end of list */ }
303 static QemuOptsList qemu_machine_opts = {
305 .implied_opt_name = "type",
307 .head = QTAILQ_HEAD_INITIALIZER(qemu_machine_opts.head),
310 * no elements => accept any
311 * sanity checking will happen later
312 * when setting machine properties
318 static QemuOptsList qemu_boot_opts = {
320 .implied_opt_name = "order",
322 .head = QTAILQ_HEAD_INITIALIZER(qemu_boot_opts.head),
326 .type = QEMU_OPT_STRING,
329 .type = QEMU_OPT_STRING,
332 .type = QEMU_OPT_BOOL,
335 .type = QEMU_OPT_STRING,
337 .name = "splash-time",
338 .type = QEMU_OPT_STRING,
340 .name = "reboot-timeout",
341 .type = QEMU_OPT_STRING,
344 .type = QEMU_OPT_BOOL,
350 static QemuOptsList qemu_add_fd_opts = {
352 .head = QTAILQ_HEAD_INITIALIZER(qemu_add_fd_opts.head),
356 .type = QEMU_OPT_NUMBER,
357 .help = "file descriptor of which a duplicate is added to fd set",
360 .type = QEMU_OPT_NUMBER,
361 .help = "ID of the fd set to add fd to",
364 .type = QEMU_OPT_STRING,
365 .help = "free-form string used to describe fd",
367 { /* end of list */ }
371 static QemuOptsList qemu_object_opts = {
373 .implied_opt_name = "qom-type",
374 .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head),
380 static QemuOptsList qemu_tpmdev_opts = {
382 .implied_opt_name = "type",
383 .head = QTAILQ_HEAD_INITIALIZER(qemu_tpmdev_opts.head),
385 /* options are defined in the TPM backends */
386 { /* end of list */ }
390 static QemuOptsList qemu_realtime_opts = {
392 .head = QTAILQ_HEAD_INITIALIZER(qemu_realtime_opts.head),
396 .type = QEMU_OPT_BOOL,
398 { /* end of list */ }
402 static QemuOptsList qemu_msg_opts = {
404 .head = QTAILQ_HEAD_INITIALIZER(qemu_msg_opts.head),
408 .type = QEMU_OPT_BOOL,
410 { /* end of list */ }
414 static QemuOptsList qemu_name_opts = {
416 .implied_opt_name = "guest",
418 .head = QTAILQ_HEAD_INITIALIZER(qemu_name_opts.head),
422 .type = QEMU_OPT_STRING,
423 .help = "Sets the name of the guest.\n"
424 "This name will be displayed in the SDL window caption.\n"
425 "The name will also be used for the VNC server",
428 .type = QEMU_OPT_STRING,
429 .help = "Sets the name of the QEMU process, as shown in top etc",
431 .name = "debug-threads",
432 .type = QEMU_OPT_BOOL,
433 .help = "When enabled, name the individual threads; defaults off.\n"
434 "NOTE: The thread names are for debugging and not a\n"
437 { /* End of list */ }
441 static QemuOptsList qemu_mem_opts = {
443 .implied_opt_name = "size",
444 .head = QTAILQ_HEAD_INITIALIZER(qemu_mem_opts.head),
449 .type = QEMU_OPT_SIZE,
453 .type = QEMU_OPT_NUMBER,
457 .type = QEMU_OPT_SIZE,
459 { /* end of list */ }
463 static QemuOptsList qemu_icount_opts = {
465 .implied_opt_name = "shift",
467 .head = QTAILQ_HEAD_INITIALIZER(qemu_icount_opts.head),
471 .type = QEMU_OPT_STRING,
474 .type = QEMU_OPT_BOOL,
477 .type = QEMU_OPT_BOOL,
480 .type = QEMU_OPT_STRING,
483 .type = QEMU_OPT_STRING,
485 { /* end of list */ }
489 static QemuOptsList qemu_semihosting_config_opts = {
490 .name = "semihosting-config",
491 .implied_opt_name = "enable",
492 .head = QTAILQ_HEAD_INITIALIZER(qemu_semihosting_config_opts.head),
496 .type = QEMU_OPT_BOOL,
499 .type = QEMU_OPT_STRING,
502 .type = QEMU_OPT_STRING,
504 { /* end of list */ }
508 static QemuOptsList qemu_fw_cfg_opts = {
510 .implied_opt_name = "name",
511 .head = QTAILQ_HEAD_INITIALIZER(qemu_fw_cfg_opts.head),
515 .type = QEMU_OPT_STRING,
516 .help = "Sets the fw_cfg name of the blob to be inserted",
519 .type = QEMU_OPT_STRING,
520 .help = "Sets the name of the file from which\n"
521 "the fw_cfg blob will be loaded",
524 .type = QEMU_OPT_STRING,
525 .help = "Sets content of the blob to be inserted from a string",
527 { /* end of list */ }
532 * Get machine options
534 * Returns: machine options (never null).
536 QemuOpts *qemu_get_machine_opts(void)
538 return qemu_find_opts_singleton("machine");
541 const char *qemu_get_vm_name(void)
546 static void res_free(void)
548 g_free(boot_splash_filedata);
549 boot_splash_filedata = NULL;
552 static int default_driver_check(void *opaque, QemuOpts *opts, Error **errp)
554 const char *driver = qemu_opt_get(opts, "driver");
559 for (i = 0; i < ARRAY_SIZE(default_list); i++) {
560 if (strcmp(default_list[i].driver, driver) != 0)
562 *(default_list[i].flag) = 0;
567 /***********************************************************/
570 static RunState current_run_state = RUN_STATE_PRELAUNCH;
572 /* We use RUN_STATE__MAX but any invalid value will do */
573 static RunState vmstop_requested = RUN_STATE__MAX;
574 static QemuMutex vmstop_lock;
579 } RunStateTransition;
581 static const RunStateTransition runstate_transitions_def[] = {
583 { RUN_STATE_DEBUG, RUN_STATE_RUNNING },
584 { RUN_STATE_DEBUG, RUN_STATE_FINISH_MIGRATE },
586 { RUN_STATE_INMIGRATE, RUN_STATE_INTERNAL_ERROR },
587 { RUN_STATE_INMIGRATE, RUN_STATE_IO_ERROR },
588 { RUN_STATE_INMIGRATE, RUN_STATE_PAUSED },
589 { RUN_STATE_INMIGRATE, RUN_STATE_RUNNING },
590 { RUN_STATE_INMIGRATE, RUN_STATE_SHUTDOWN },
591 { RUN_STATE_INMIGRATE, RUN_STATE_SUSPENDED },
592 { RUN_STATE_INMIGRATE, RUN_STATE_WATCHDOG },
593 { RUN_STATE_INMIGRATE, RUN_STATE_GUEST_PANICKED },
594 { RUN_STATE_INMIGRATE, RUN_STATE_FINISH_MIGRATE },
596 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_PAUSED },
597 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_FINISH_MIGRATE },
599 { RUN_STATE_IO_ERROR, RUN_STATE_RUNNING },
600 { RUN_STATE_IO_ERROR, RUN_STATE_FINISH_MIGRATE },
602 { RUN_STATE_PAUSED, RUN_STATE_RUNNING },
603 { RUN_STATE_PAUSED, RUN_STATE_FINISH_MIGRATE },
605 { RUN_STATE_POSTMIGRATE, RUN_STATE_RUNNING },
606 { RUN_STATE_POSTMIGRATE, RUN_STATE_FINISH_MIGRATE },
608 { RUN_STATE_PRELAUNCH, RUN_STATE_RUNNING },
609 { RUN_STATE_PRELAUNCH, RUN_STATE_FINISH_MIGRATE },
610 { RUN_STATE_PRELAUNCH, RUN_STATE_INMIGRATE },
612 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_RUNNING },
613 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_POSTMIGRATE },
615 { RUN_STATE_RESTORE_VM, RUN_STATE_RUNNING },
617 { RUN_STATE_RUNNING, RUN_STATE_DEBUG },
618 { RUN_STATE_RUNNING, RUN_STATE_INTERNAL_ERROR },
619 { RUN_STATE_RUNNING, RUN_STATE_IO_ERROR },
620 { RUN_STATE_RUNNING, RUN_STATE_PAUSED },
621 { RUN_STATE_RUNNING, RUN_STATE_FINISH_MIGRATE },
622 { RUN_STATE_RUNNING, RUN_STATE_RESTORE_VM },
623 { RUN_STATE_RUNNING, RUN_STATE_SAVE_VM },
624 { RUN_STATE_RUNNING, RUN_STATE_SHUTDOWN },
625 { RUN_STATE_RUNNING, RUN_STATE_WATCHDOG },
626 { RUN_STATE_RUNNING, RUN_STATE_GUEST_PANICKED },
628 { RUN_STATE_SAVE_VM, RUN_STATE_RUNNING },
630 { RUN_STATE_SHUTDOWN, RUN_STATE_PAUSED },
631 { RUN_STATE_SHUTDOWN, RUN_STATE_FINISH_MIGRATE },
633 { RUN_STATE_DEBUG, RUN_STATE_SUSPENDED },
634 { RUN_STATE_RUNNING, RUN_STATE_SUSPENDED },
635 { RUN_STATE_SUSPENDED, RUN_STATE_RUNNING },
636 { RUN_STATE_SUSPENDED, RUN_STATE_FINISH_MIGRATE },
638 { RUN_STATE_WATCHDOG, RUN_STATE_RUNNING },
639 { RUN_STATE_WATCHDOG, RUN_STATE_FINISH_MIGRATE },
641 { RUN_STATE_GUEST_PANICKED, RUN_STATE_RUNNING },
642 { RUN_STATE_GUEST_PANICKED, RUN_STATE_FINISH_MIGRATE },
644 { RUN_STATE__MAX, RUN_STATE__MAX },
647 static bool runstate_valid_transitions[RUN_STATE__MAX][RUN_STATE__MAX];
649 bool runstate_check(RunState state)
651 return current_run_state == state;
654 bool runstate_store(char *str, size_t size)
656 const char *state = RunState_lookup[current_run_state];
657 size_t len = strlen(state) + 1;
662 memcpy(str, state, len);
666 static void runstate_init(void)
668 const RunStateTransition *p;
670 memset(&runstate_valid_transitions, 0, sizeof(runstate_valid_transitions));
671 for (p = &runstate_transitions_def[0]; p->from != RUN_STATE__MAX; p++) {
672 runstate_valid_transitions[p->from][p->to] = true;
675 qemu_mutex_init(&vmstop_lock);
678 /* This function will abort() on invalid state transitions */
679 void runstate_set(RunState new_state)
681 assert(new_state < RUN_STATE__MAX);
683 if (!runstate_valid_transitions[current_run_state][new_state]) {
684 error_report("invalid runstate transition: '%s' -> '%s'",
685 RunState_lookup[current_run_state],
686 RunState_lookup[new_state]);
689 trace_runstate_set(new_state);
690 current_run_state = new_state;
693 int runstate_is_running(void)
695 return runstate_check(RUN_STATE_RUNNING);
698 bool runstate_needs_reset(void)
700 return runstate_check(RUN_STATE_INTERNAL_ERROR) ||
701 runstate_check(RUN_STATE_SHUTDOWN);
704 StatusInfo *qmp_query_status(Error **errp)
706 StatusInfo *info = g_malloc0(sizeof(*info));
708 info->running = runstate_is_running();
709 info->singlestep = singlestep;
710 info->status = current_run_state;
715 static bool qemu_vmstop_requested(RunState *r)
717 qemu_mutex_lock(&vmstop_lock);
718 *r = vmstop_requested;
719 vmstop_requested = RUN_STATE__MAX;
720 qemu_mutex_unlock(&vmstop_lock);
721 return *r < RUN_STATE__MAX;
724 void qemu_system_vmstop_request_prepare(void)
726 qemu_mutex_lock(&vmstop_lock);
729 void qemu_system_vmstop_request(RunState state)
731 vmstop_requested = state;
732 qemu_mutex_unlock(&vmstop_lock);
740 qemu_vmstop_requested(&requested);
741 if (runstate_is_running() && requested == RUN_STATE__MAX) {
745 /* Ensure that a STOP/RESUME pair of events is emitted if a
746 * vmstop request was pending. The BLOCK_IO_ERROR event, for
747 * example, according to documentation is always followed by
750 if (runstate_is_running()) {
751 qapi_event_send_stop(&error_abort);
754 runstate_set(RUN_STATE_RUNNING);
755 vm_state_notify(1, RUN_STATE_RUNNING);
759 qapi_event_send_resume(&error_abort);
763 /***********************************************************/
764 /* real time host monotonic timer */
766 static time_t qemu_time(void)
768 return qemu_clock_get_ms(QEMU_CLOCK_HOST) / 1000;
771 /***********************************************************/
772 /* host time/date access */
773 void qemu_get_timedate(struct tm *tm, int offset)
775 time_t ti = qemu_time();
778 if (rtc_date_offset == -1) {
782 localtime_r(&ti, tm);
784 ti -= rtc_date_offset;
789 int qemu_timedate_diff(struct tm *tm)
793 if (rtc_date_offset == -1)
795 seconds = mktimegm(tm);
798 tmp.tm_isdst = -1; /* use timezone to figure it out */
799 seconds = mktime(&tmp);
802 seconds = mktimegm(tm) + rtc_date_offset;
804 return seconds - qemu_time();
807 static void configure_rtc_date_offset(const char *startdate, int legacy)
809 time_t rtc_start_date;
812 if (!strcmp(startdate, "now") && legacy) {
813 rtc_date_offset = -1;
815 if (sscanf(startdate, "%d-%d-%dT%d:%d:%d",
823 } else if (sscanf(startdate, "%d-%d-%d",
835 rtc_start_date = mktimegm(&tm);
836 if (rtc_start_date == -1) {
838 error_report("invalid date format");
839 error_printf("valid formats: "
840 "'2006-06-17T16:01:21' or '2006-06-17'\n");
843 rtc_date_offset = qemu_time() - rtc_start_date;
847 static void configure_rtc(QemuOpts *opts)
851 value = qemu_opt_get(opts, "base");
853 if (!strcmp(value, "utc")) {
855 } else if (!strcmp(value, "localtime")) {
856 Error *blocker = NULL;
858 error_setg(&blocker, QERR_REPLAY_NOT_SUPPORTED,
859 "-rtc base=localtime");
860 replay_add_blocker(blocker);
862 configure_rtc_date_offset(value, 0);
865 value = qemu_opt_get(opts, "clock");
867 if (!strcmp(value, "host")) {
868 rtc_clock = QEMU_CLOCK_HOST;
869 } else if (!strcmp(value, "rt")) {
870 rtc_clock = QEMU_CLOCK_REALTIME;
871 } else if (!strcmp(value, "vm")) {
872 rtc_clock = QEMU_CLOCK_VIRTUAL;
874 error_report("invalid option value '%s'", value);
878 value = qemu_opt_get(opts, "driftfix");
880 if (!strcmp(value, "slew")) {
881 static GlobalProperty slew_lost_ticks[] = {
883 .driver = "mc146818rtc",
884 .property = "lost_tick_policy",
887 { /* end of list */ }
890 qdev_prop_register_global_list(slew_lost_ticks);
891 } else if (!strcmp(value, "none")) {
892 /* discard is default */
894 error_report("invalid option value '%s'", value);
900 /***********************************************************/
901 /* Bluetooth support */
904 static struct HCIInfo *hci_table[MAX_NICS];
906 struct HCIInfo *qemu_next_hci(void)
908 if (cur_hci == nb_hcis)
911 return hci_table[cur_hci++];
914 static int bt_hci_parse(const char *str)
919 if (nb_hcis >= MAX_NICS) {
920 error_report("too many bluetooth HCIs (max %i)", MAX_NICS);
933 bdaddr.b[5] = 0x56 + nb_hcis;
934 hci->bdaddr_set(hci, bdaddr.b);
936 hci_table[nb_hcis++] = hci;
941 static void bt_vhci_add(int vlan_id)
943 struct bt_scatternet_s *vlan = qemu_find_bt_vlan(vlan_id);
946 error_report("warning: adding a VHCI to an empty scatternet %i",
949 bt_vhci_init(bt_new_hci(vlan));
952 static struct bt_device_s *bt_device_add(const char *opt)
954 struct bt_scatternet_s *vlan;
956 char *endp = strstr(opt, ",vlan=");
957 int len = (endp ? endp - opt : strlen(opt)) + 1;
960 pstrcpy(devname, MIN(sizeof(devname), len), opt);
963 vlan_id = strtol(endp + 6, &endp, 0);
965 error_report("unrecognised bluetooth vlan Id");
970 vlan = qemu_find_bt_vlan(vlan_id);
973 error_report("warning: adding a slave device to an empty scatternet %i",
976 if (!strcmp(devname, "keyboard"))
977 return bt_keyboard_init(vlan);
979 error_report("unsupported bluetooth device '%s'", devname);
983 static int bt_parse(const char *opt)
985 const char *endp, *p;
988 if (strstart(opt, "hci", &endp)) {
989 if (!*endp || *endp == ',') {
991 if (!strstart(endp, ",vlan=", 0))
994 return bt_hci_parse(opt);
996 } else if (strstart(opt, "vhci", &endp)) {
997 if (!*endp || *endp == ',') {
999 if (strstart(endp, ",vlan=", &p)) {
1000 vlan = strtol(p, (char **) &endp, 0);
1002 error_report("bad scatternet '%s'", p);
1006 error_report("bad parameter '%s'", endp + 1);
1015 } else if (strstart(opt, "device:", &endp))
1016 return !bt_device_add(endp);
1018 error_report("bad bluetooth parameter '%s'", opt);
1022 static int parse_sandbox(void *opaque, QemuOpts *opts, Error **errp)
1024 /* FIXME: change this to true for 1.3 */
1025 if (qemu_opt_get_bool(opts, "enable", false)) {
1026 #ifdef CONFIG_SECCOMP
1027 if (seccomp_start() < 0) {
1028 error_report("failed to install seccomp syscall filter "
1033 error_report("seccomp support is disabled");
1041 static int parse_name(void *opaque, QemuOpts *opts, Error **errp)
1043 const char *proc_name;
1045 if (qemu_opt_get(opts, "debug-threads")) {
1046 qemu_thread_naming(qemu_opt_get_bool(opts, "debug-threads", false));
1048 qemu_name = qemu_opt_get(opts, "guest");
1050 proc_name = qemu_opt_get(opts, "process");
1052 os_set_proc_name(proc_name);
1058 bool defaults_enabled(void)
1060 return has_defaults;
1063 bool usb_enabled(void)
1065 return machine_usb(current_machine);
1069 static int parse_add_fd(void *opaque, QemuOpts *opts, Error **errp)
1071 int fd, dupfd, flags;
1073 const char *fd_opaque = NULL;
1076 fd = qemu_opt_get_number(opts, "fd", -1);
1077 fdset_id = qemu_opt_get_number(opts, "set", -1);
1078 fd_opaque = qemu_opt_get(opts, "opaque");
1081 error_report("fd option is required and must be non-negative");
1085 if (fd <= STDERR_FILENO) {
1086 error_report("fd cannot be a standard I/O stream");
1091 * All fds inherited across exec() necessarily have FD_CLOEXEC
1092 * clear, while qemu sets FD_CLOEXEC on all other fds used internally.
1094 flags = fcntl(fd, F_GETFD);
1095 if (flags == -1 || (flags & FD_CLOEXEC)) {
1096 error_report("fd is not valid or already in use");
1101 error_report("set option is required and must be non-negative");
1105 #ifdef F_DUPFD_CLOEXEC
1106 dupfd = fcntl(fd, F_DUPFD_CLOEXEC, 0);
1110 qemu_set_cloexec(dupfd);
1114 error_report("error duplicating fd: %s", strerror(errno));
1118 /* add the duplicate fd, and optionally the opaque string, to the fd set */
1119 fdinfo = monitor_fdset_add_fd(dupfd, true, fdset_id, !!fd_opaque, fd_opaque,
1126 static int cleanup_add_fd(void *opaque, QemuOpts *opts, Error **errp)
1130 fd = qemu_opt_get_number(opts, "fd", -1);
1137 /***********************************************************/
1138 /* QEMU Block devices */
1140 #define HD_OPTS "media=disk"
1141 #define CDROM_OPTS "media=cdrom"
1143 #define PFLASH_OPTS ""
1147 static int drive_init_func(void *opaque, QemuOpts *opts, Error **errp)
1149 BlockInterfaceType *block_default_type = opaque;
1151 return drive_new(opts, *block_default_type) == NULL;
1154 static int drive_enable_snapshot(void *opaque, QemuOpts *opts, Error **errp)
1156 if (qemu_opt_get(opts, "snapshot") == NULL) {
1157 qemu_opt_set(opts, "snapshot", "on", &error_abort);
1162 static void default_drive(int enable, int snapshot, BlockInterfaceType type,
1163 int index, const char *optstr)
1168 if (!enable || drive_get_by_index(type, index)) {
1172 opts = drive_add(type, index, NULL, optstr);
1174 drive_enable_snapshot(NULL, opts, NULL);
1177 dinfo = drive_new(opts, type);
1181 dinfo->is_default = true;
1185 static QemuOptsList qemu_smp_opts = {
1187 .implied_opt_name = "cpus",
1188 .merge_lists = true,
1189 .head = QTAILQ_HEAD_INITIALIZER(qemu_smp_opts.head),
1193 .type = QEMU_OPT_NUMBER,
1196 .type = QEMU_OPT_NUMBER,
1199 .type = QEMU_OPT_NUMBER,
1202 .type = QEMU_OPT_NUMBER,
1205 .type = QEMU_OPT_NUMBER,
1207 { /*End of list */ }
1211 static void smp_parse(QemuOpts *opts)
1215 unsigned cpus = qemu_opt_get_number(opts, "cpus", 0);
1216 unsigned sockets = qemu_opt_get_number(opts, "sockets", 0);
1217 unsigned cores = qemu_opt_get_number(opts, "cores", 0);
1218 unsigned threads = qemu_opt_get_number(opts, "threads", 0);
1220 /* compute missing values, prefer sockets over cores over threads */
1221 if (cpus == 0 || sockets == 0) {
1222 sockets = sockets > 0 ? sockets : 1;
1223 cores = cores > 0 ? cores : 1;
1224 threads = threads > 0 ? threads : 1;
1226 cpus = cores * threads * sockets;
1228 } else if (cores == 0) {
1229 threads = threads > 0 ? threads : 1;
1230 cores = cpus / (sockets * threads);
1231 } else if (threads == 0) {
1232 threads = cpus / (cores * sockets);
1233 } else if (sockets * cores * threads < cpus) {
1234 error_report("cpu topology: "
1235 "sockets (%u) * cores (%u) * threads (%u) < "
1237 sockets, cores, threads, cpus);
1241 max_cpus = qemu_opt_get_number(opts, "maxcpus", cpus);
1242 if (sockets * cores * threads > max_cpus) {
1243 error_report("cpu topology: "
1244 "sockets (%u) * cores (%u) * threads (%u) > "
1246 sockets, cores, threads, max_cpus);
1251 smp_cores = cores > 0 ? cores : 1;
1252 smp_threads = threads > 0 ? threads : 1;
1256 if (max_cpus == 0) {
1257 max_cpus = smp_cpus;
1260 if (max_cpus > MAX_CPUMASK_BITS) {
1261 error_report("unsupported number of maxcpus");
1264 if (max_cpus < smp_cpus) {
1265 error_report("maxcpus must be equal to or greater than smp");
1269 if (smp_cpus > 1 || smp_cores > 1 || smp_threads > 1) {
1270 Error *blocker = NULL;
1271 error_setg(&blocker, QERR_REPLAY_NOT_SUPPORTED, "smp");
1272 replay_add_blocker(blocker);
1276 static void realtime_init(void)
1279 if (os_mlock() < 0) {
1280 error_report("locking memory failed");
1287 static void configure_msg(QemuOpts *opts)
1289 enable_timestamp_msg = qemu_opt_get_bool(opts, "timestamp", true);
1292 /***********************************************************/
1295 typedef struct SemihostingConfig {
1297 SemihostingTarget target;
1300 const char *cmdline; /* concatenated argv */
1301 } SemihostingConfig;
1303 static SemihostingConfig semihosting;
1305 bool semihosting_enabled(void)
1307 return semihosting.enabled;
1310 SemihostingTarget semihosting_get_target(void)
1312 return semihosting.target;
1315 const char *semihosting_get_arg(int i)
1317 if (i >= semihosting.argc) {
1320 return semihosting.argv[i];
1323 int semihosting_get_argc(void)
1325 return semihosting.argc;
1328 const char *semihosting_get_cmdline(void)
1330 if (semihosting.cmdline == NULL && semihosting.argc > 0) {
1331 semihosting.cmdline = g_strjoinv(" ", (gchar **)semihosting.argv);
1333 return semihosting.cmdline;
1336 static int add_semihosting_arg(void *opaque,
1337 const char *name, const char *val,
1340 SemihostingConfig *s = opaque;
1341 if (strcmp(name, "arg") == 0) {
1343 /* one extra element as g_strjoinv() expects NULL-terminated array */
1344 s->argv = g_realloc(s->argv, (s->argc + 1) * sizeof(void *));
1345 s->argv[s->argc - 1] = val;
1346 s->argv[s->argc] = NULL;
1351 /* Use strings passed via -kernel/-append to initialize semihosting.argv[] */
1352 static inline void semihosting_arg_fallback(const char *file, const char *cmd)
1357 add_semihosting_arg(&semihosting, "arg", file, NULL);
1359 /* split -append and initialize argv[1..n] */
1360 cmd_token = strtok(g_strdup(cmd), " ");
1362 add_semihosting_arg(&semihosting, "arg", cmd_token, NULL);
1363 cmd_token = strtok(NULL, " ");
1367 /* Now we still need this for compatibility with XEN. */
1368 bool has_igd_gfx_passthru;
1369 static void igd_gfx_passthru(void)
1371 has_igd_gfx_passthru = current_machine->igd_gfx_passthru;
1374 /***********************************************************/
1377 static int usb_device_add(const char *devname)
1379 USBDevice *dev = NULL;
1380 #ifndef CONFIG_LINUX
1384 if (!usb_enabled()) {
1388 /* drivers with .usbdevice_name entry in USBDeviceInfo */
1389 dev = usbdevice_create(devname);
1393 /* the other ones */
1394 #ifndef CONFIG_LINUX
1395 /* only the linux version is qdev-ified, usb-bsd still needs this */
1396 if (strstart(devname, "host:", &p)) {
1397 dev = usb_host_device_open(usb_bus_find(-1), p);
1407 static int usb_device_del(const char *devname)
1412 if (strstart(devname, "host:", &p)) {
1416 if (!usb_enabled()) {
1420 p = strchr(devname, '.');
1423 bus_num = strtoul(devname, NULL, 0);
1424 addr = strtoul(p + 1, NULL, 0);
1426 return usb_device_delete_addr(bus_num, addr);
1429 static int usb_parse(const char *cmdline)
1432 r = usb_device_add(cmdline);
1434 error_report("could not add USB device '%s'", cmdline);
1439 void hmp_usb_add(Monitor *mon, const QDict *qdict)
1441 const char *devname = qdict_get_str(qdict, "devname");
1442 if (usb_device_add(devname) < 0) {
1443 error_report("could not add USB device '%s'", devname);
1447 void hmp_usb_del(Monitor *mon, const QDict *qdict)
1449 const char *devname = qdict_get_str(qdict, "devname");
1450 if (usb_device_del(devname) < 0) {
1451 error_report("could not delete USB device '%s'", devname);
1455 /***********************************************************/
1456 /* machine registration */
1458 MachineState *current_machine;
1460 static MachineClass *find_machine(const char *name)
1462 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
1463 MachineClass *mc = NULL;
1465 for (el = machines; el; el = el->next) {
1466 MachineClass *temp = el->data;
1468 if (!strcmp(temp->name, name)) {
1473 !strcmp(temp->alias, name)) {
1479 g_slist_free(machines);
1483 MachineClass *find_default_machine(void)
1485 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
1486 MachineClass *mc = NULL;
1488 for (el = machines; el; el = el->next) {
1489 MachineClass *temp = el->data;
1491 if (temp->is_default) {
1497 g_slist_free(machines);
1501 MachineInfoList *qmp_query_machines(Error **errp)
1503 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
1504 MachineInfoList *mach_list = NULL;
1506 for (el = machines; el; el = el->next) {
1507 MachineClass *mc = el->data;
1508 MachineInfoList *entry;
1511 info = g_malloc0(sizeof(*info));
1512 if (mc->is_default) {
1513 info->has_is_default = true;
1514 info->is_default = true;
1518 info->has_alias = true;
1519 info->alias = g_strdup(mc->alias);
1522 info->name = g_strdup(mc->name);
1523 info->cpu_max = !mc->max_cpus ? 1 : mc->max_cpus;
1525 entry = g_malloc0(sizeof(*entry));
1526 entry->value = info;
1527 entry->next = mach_list;
1531 g_slist_free(machines);
1535 static int machine_help_func(QemuOpts *opts, MachineState *machine)
1537 ObjectProperty *prop;
1538 ObjectPropertyIterator iter;
1540 if (!qemu_opt_has_help_opt(opts)) {
1544 object_property_iter_init(&iter, OBJECT(machine));
1545 while ((prop = object_property_iter_next(&iter))) {
1550 error_printf("%s.%s=%s", MACHINE_GET_CLASS(machine)->name,
1551 prop->name, prop->type);
1552 if (prop->description) {
1553 error_printf(" (%s)\n", prop->description);
1562 /***********************************************************/
1563 /* main execution loop */
1565 struct vm_change_state_entry {
1566 VMChangeStateHandler *cb;
1568 QLIST_ENTRY (vm_change_state_entry) entries;
1571 static QLIST_HEAD(vm_change_state_head, vm_change_state_entry) vm_change_state_head;
1573 VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
1576 VMChangeStateEntry *e;
1578 e = g_malloc0(sizeof (*e));
1582 QLIST_INSERT_HEAD(&vm_change_state_head, e, entries);
1586 void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
1588 QLIST_REMOVE (e, entries);
1592 void vm_state_notify(int running, RunState state)
1594 VMChangeStateEntry *e, *next;
1596 trace_vm_state_notify(running, state);
1598 QLIST_FOREACH_SAFE(e, &vm_change_state_head, entries, next) {
1599 e->cb(e->opaque, running, state);
1603 /* reset/shutdown handler */
1605 typedef struct QEMUResetEntry {
1606 QTAILQ_ENTRY(QEMUResetEntry) entry;
1607 QEMUResetHandler *func;
1611 static QTAILQ_HEAD(reset_handlers, QEMUResetEntry) reset_handlers =
1612 QTAILQ_HEAD_INITIALIZER(reset_handlers);
1613 static int reset_requested;
1614 static int shutdown_requested, shutdown_signal = -1;
1615 static pid_t shutdown_pid;
1616 static int powerdown_requested;
1617 static int debug_requested;
1618 static int suspend_requested;
1619 static WakeupReason wakeup_reason;
1620 static NotifierList powerdown_notifiers =
1621 NOTIFIER_LIST_INITIALIZER(powerdown_notifiers);
1622 static NotifierList suspend_notifiers =
1623 NOTIFIER_LIST_INITIALIZER(suspend_notifiers);
1624 static NotifierList wakeup_notifiers =
1625 NOTIFIER_LIST_INITIALIZER(wakeup_notifiers);
1626 static uint32_t wakeup_reason_mask = ~(1 << QEMU_WAKEUP_REASON_NONE);
1628 int qemu_shutdown_requested_get(void)
1630 return shutdown_requested;
1633 int qemu_reset_requested_get(void)
1635 return reset_requested;
1638 static int qemu_shutdown_requested(void)
1640 return atomic_xchg(&shutdown_requested, 0);
1643 static void qemu_kill_report(void)
1645 if (!qtest_driver() && shutdown_signal != -1) {
1646 if (shutdown_pid == 0) {
1647 /* This happens for eg ^C at the terminal, so it's worth
1648 * avoiding printing an odd message in that case.
1650 error_report("terminating on signal %d", shutdown_signal);
1652 error_report("terminating on signal %d from pid " FMT_pid,
1653 shutdown_signal, shutdown_pid);
1655 shutdown_signal = -1;
1659 static int qemu_reset_requested(void)
1661 int r = reset_requested;
1662 if (r && replay_checkpoint(CHECKPOINT_RESET_REQUESTED)) {
1663 reset_requested = 0;
1669 static int qemu_suspend_requested(void)
1671 int r = suspend_requested;
1672 if (r && replay_checkpoint(CHECKPOINT_SUSPEND_REQUESTED)) {
1673 suspend_requested = 0;
1679 static WakeupReason qemu_wakeup_requested(void)
1681 return wakeup_reason;
1684 static int qemu_powerdown_requested(void)
1686 int r = powerdown_requested;
1687 powerdown_requested = 0;
1691 static int qemu_debug_requested(void)
1693 int r = debug_requested;
1694 debug_requested = 0;
1698 void qemu_register_reset(QEMUResetHandler *func, void *opaque)
1700 QEMUResetEntry *re = g_malloc0(sizeof(QEMUResetEntry));
1703 re->opaque = opaque;
1704 QTAILQ_INSERT_TAIL(&reset_handlers, re, entry);
1707 void qemu_unregister_reset(QEMUResetHandler *func, void *opaque)
1711 QTAILQ_FOREACH(re, &reset_handlers, entry) {
1712 if (re->func == func && re->opaque == opaque) {
1713 QTAILQ_REMOVE(&reset_handlers, re, entry);
1720 void qemu_devices_reset(void)
1722 QEMUResetEntry *re, *nre;
1724 /* reset all devices */
1725 QTAILQ_FOREACH_SAFE(re, &reset_handlers, entry, nre) {
1726 re->func(re->opaque);
1730 void qemu_system_reset(bool report)
1734 mc = current_machine ? MACHINE_GET_CLASS(current_machine) : NULL;
1736 if (mc && mc->reset) {
1739 qemu_devices_reset();
1742 qapi_event_send_reset(&error_abort);
1744 cpu_synchronize_all_post_reset();
1747 void qemu_system_guest_panicked(void)
1750 current_cpu->crash_occurred = true;
1752 qapi_event_send_guest_panicked(GUEST_PANIC_ACTION_PAUSE, &error_abort);
1753 vm_stop(RUN_STATE_GUEST_PANICKED);
1756 void qemu_system_reset_request(void)
1759 shutdown_requested = 1;
1761 reset_requested = 1;
1764 qemu_notify_event();
1767 static void qemu_system_suspend(void)
1770 notifier_list_notify(&suspend_notifiers, NULL);
1771 runstate_set(RUN_STATE_SUSPENDED);
1772 qapi_event_send_suspend(&error_abort);
1775 void qemu_system_suspend_request(void)
1777 if (runstate_check(RUN_STATE_SUSPENDED)) {
1780 suspend_requested = 1;
1782 qemu_notify_event();
1785 void qemu_register_suspend_notifier(Notifier *notifier)
1787 notifier_list_add(&suspend_notifiers, notifier);
1790 void qemu_system_wakeup_request(WakeupReason reason)
1792 trace_system_wakeup_request(reason);
1794 if (!runstate_check(RUN_STATE_SUSPENDED)) {
1797 if (!(wakeup_reason_mask & (1 << reason))) {
1800 runstate_set(RUN_STATE_RUNNING);
1801 wakeup_reason = reason;
1802 qemu_notify_event();
1805 void qemu_system_wakeup_enable(WakeupReason reason, bool enabled)
1808 wakeup_reason_mask |= (1 << reason);
1810 wakeup_reason_mask &= ~(1 << reason);
1814 void qemu_register_wakeup_notifier(Notifier *notifier)
1816 notifier_list_add(&wakeup_notifiers, notifier);
1819 void qemu_system_killed(int signal, pid_t pid)
1821 shutdown_signal = signal;
1825 /* Cannot call qemu_system_shutdown_request directly because
1826 * we are in a signal handler.
1828 shutdown_requested = 1;
1829 qemu_notify_event();
1832 void qemu_system_shutdown_request(void)
1834 trace_qemu_system_shutdown_request();
1835 replay_shutdown_request();
1836 shutdown_requested = 1;
1837 qemu_notify_event();
1840 static void qemu_system_powerdown(void)
1842 qapi_event_send_powerdown(&error_abort);
1843 notifier_list_notify(&powerdown_notifiers, NULL);
1846 void qemu_system_powerdown_request(void)
1848 trace_qemu_system_powerdown_request();
1849 powerdown_requested = 1;
1850 qemu_notify_event();
1853 void qemu_register_powerdown_notifier(Notifier *notifier)
1855 notifier_list_add(&powerdown_notifiers, notifier);
1858 void qemu_system_debug_request(void)
1860 debug_requested = 1;
1861 qemu_notify_event();
1864 static bool main_loop_should_exit(void)
1867 if (qemu_debug_requested()) {
1868 vm_stop(RUN_STATE_DEBUG);
1870 if (qemu_suspend_requested()) {
1871 qemu_system_suspend();
1873 if (qemu_shutdown_requested()) {
1875 qapi_event_send_shutdown(&error_abort);
1877 vm_stop(RUN_STATE_SHUTDOWN);
1882 if (qemu_reset_requested()) {
1884 cpu_synchronize_all_states();
1885 qemu_system_reset(VMRESET_REPORT);
1887 if (runstate_needs_reset()) {
1888 runstate_set(RUN_STATE_PAUSED);
1891 if (qemu_wakeup_requested()) {
1893 cpu_synchronize_all_states();
1894 qemu_system_reset(VMRESET_SILENT);
1895 notifier_list_notify(&wakeup_notifiers, &wakeup_reason);
1896 wakeup_reason = QEMU_WAKEUP_REASON_NONE;
1898 qapi_event_send_wakeup(&error_abort);
1900 if (qemu_powerdown_requested()) {
1901 qemu_system_powerdown();
1903 if (qemu_vmstop_requested(&r)) {
1909 static void main_loop(void)
1913 #ifdef CONFIG_PROFILER
1917 nonblocking = !kvm_enabled() && !xen_enabled() && last_io > 0;
1918 #ifdef CONFIG_PROFILER
1919 ti = profile_getclock();
1921 last_io = main_loop_wait(nonblocking);
1922 #ifdef CONFIG_PROFILER
1923 dev_time += profile_getclock() - ti;
1925 } while (!main_loop_should_exit());
1928 static void version(void)
1930 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n");
1933 static void help(int exitcode)
1936 printf("usage: %s [options] [disk_image]\n\n"
1937 "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
1938 error_get_progname());
1940 #define QEMU_OPTIONS_GENERATE_HELP
1941 #include "qemu-options-wrapper.h"
1943 printf("\nDuring emulation, the following keys are useful:\n"
1944 "ctrl-alt-f toggle full screen\n"
1945 "ctrl-alt-n switch to virtual console 'n'\n"
1946 "ctrl-alt toggle mouse and keyboard grab\n"
1948 "When using -nographic, press 'ctrl-a h' to get some help.\n");
1953 #define HAS_ARG 0x0001
1955 typedef struct QEMUOption {
1962 static const QEMUOption qemu_options[] = {
1963 { "h", 0, QEMU_OPTION_h, QEMU_ARCH_ALL },
1964 #define QEMU_OPTIONS_GENERATE_OPTIONS
1965 #include "qemu-options-wrapper.h"
1969 static bool vga_available(void)
1971 return object_class_by_name("VGA") || object_class_by_name("isa-vga");
1974 static bool cirrus_vga_available(void)
1976 return object_class_by_name("cirrus-vga")
1977 || object_class_by_name("isa-cirrus-vga");
1980 static bool vmware_vga_available(void)
1982 return object_class_by_name("vmware-svga");
1985 static bool qxl_vga_available(void)
1987 return object_class_by_name("qxl-vga");
1990 static bool tcx_vga_available(void)
1992 return object_class_by_name("SUNW,tcx");
1995 static bool cg3_vga_available(void)
1997 return object_class_by_name("cgthree");
2000 static bool virtio_vga_available(void)
2002 return object_class_by_name("virtio-vga");
2005 static void select_vgahw (const char *p)
2009 assert(vga_interface_type == VGA_NONE);
2010 if (strstart(p, "std", &opts)) {
2011 if (vga_available()) {
2012 vga_interface_type = VGA_STD;
2014 error_report("standard VGA not available");
2017 } else if (strstart(p, "cirrus", &opts)) {
2018 if (cirrus_vga_available()) {
2019 vga_interface_type = VGA_CIRRUS;
2021 error_report("Cirrus VGA not available");
2024 } else if (strstart(p, "vmware", &opts)) {
2025 if (vmware_vga_available()) {
2026 vga_interface_type = VGA_VMWARE;
2028 error_report("VMWare SVGA not available");
2031 } else if (strstart(p, "virtio", &opts)) {
2032 if (virtio_vga_available()) {
2033 vga_interface_type = VGA_VIRTIO;
2035 error_report("Virtio VGA not available");
2038 } else if (strstart(p, "xenfb", &opts)) {
2039 vga_interface_type = VGA_XENFB;
2040 } else if (strstart(p, "qxl", &opts)) {
2041 if (qxl_vga_available()) {
2042 vga_interface_type = VGA_QXL;
2044 error_report("QXL VGA not available");
2047 } else if (strstart(p, "tcx", &opts)) {
2048 if (tcx_vga_available()) {
2049 vga_interface_type = VGA_TCX;
2051 error_report("TCX framebuffer not available");
2054 } else if (strstart(p, "cg3", &opts)) {
2055 if (cg3_vga_available()) {
2056 vga_interface_type = VGA_CG3;
2058 error_report("CG3 framebuffer not available");
2061 } else if (!strstart(p, "none", &opts)) {
2063 error_report("unknown vga type: %s", p);
2067 const char *nextopt;
2069 if (strstart(opts, ",retrace=", &nextopt)) {
2071 if (strstart(opts, "dumb", &nextopt))
2072 vga_retrace_method = VGA_RETRACE_DUMB;
2073 else if (strstart(opts, "precise", &nextopt))
2074 vga_retrace_method = VGA_RETRACE_PRECISE;
2075 else goto invalid_vga;
2076 } else goto invalid_vga;
2081 static DisplayType select_display(const char *p)
2084 DisplayType display = DT_DEFAULT;
2086 if (strstart(p, "sdl", &opts)) {
2090 const char *nextopt;
2092 if (strstart(opts, ",frame=", &nextopt)) {
2094 if (strstart(opts, "on", &nextopt)) {
2096 } else if (strstart(opts, "off", &nextopt)) {
2099 goto invalid_sdl_args;
2101 } else if (strstart(opts, ",alt_grab=", &nextopt)) {
2103 if (strstart(opts, "on", &nextopt)) {
2105 } else if (strstart(opts, "off", &nextopt)) {
2108 goto invalid_sdl_args;
2110 } else if (strstart(opts, ",ctrl_grab=", &nextopt)) {
2112 if (strstart(opts, "on", &nextopt)) {
2114 } else if (strstart(opts, "off", &nextopt)) {
2117 goto invalid_sdl_args;
2119 } else if (strstart(opts, ",window_close=", &nextopt)) {
2121 if (strstart(opts, "on", &nextopt)) {
2123 } else if (strstart(opts, "off", &nextopt)) {
2126 goto invalid_sdl_args;
2128 } else if (strstart(opts, ",gl=", &nextopt)) {
2130 if (strstart(opts, "on", &nextopt)) {
2132 } else if (strstart(opts, "off", &nextopt)) {
2135 goto invalid_sdl_args;
2139 error_report("invalid SDL option string");
2145 error_report("SDL support is disabled");
2148 } else if (strstart(p, "vnc", &opts)) {
2152 if (vnc_parse(opts + 1, &err) == NULL) {
2153 error_report_err(err);
2157 error_report("VNC requires a display argument vnc=<display>");
2161 error_report("VNC support is disabled");
2164 } else if (strstart(p, "curses", &opts)) {
2165 #ifdef CONFIG_CURSES
2166 display = DT_CURSES;
2168 error_report("curses support is disabled");
2171 } else if (strstart(p, "gtk", &opts)) {
2175 const char *nextopt;
2177 if (strstart(opts, ",grab_on_hover=", &nextopt)) {
2179 if (strstart(opts, "on", &nextopt)) {
2180 grab_on_hover = true;
2181 } else if (strstart(opts, "off", &nextopt)) {
2182 grab_on_hover = false;
2184 goto invalid_gtk_args;
2186 } else if (strstart(opts, ",gl=", &nextopt)) {
2188 if (strstart(opts, "on", &nextopt)) {
2190 } else if (strstart(opts, "off", &nextopt)) {
2193 goto invalid_gtk_args;
2197 error_report("invalid GTK option string");
2203 error_report("GTK support is disabled");
2206 } else if (strstart(p, "none", &opts)) {
2209 error_report("unknown display type");
2216 static int balloon_parse(const char *arg)
2220 if (strcmp(arg, "none") == 0) {
2224 if (!strncmp(arg, "virtio", 6)) {
2225 if (arg[6] == ',') {
2226 /* have params -> parse them */
2227 opts = qemu_opts_parse_noisily(qemu_find_opts("device"), arg + 7,
2232 /* create empty opts */
2233 opts = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
2236 qemu_opt_set(opts, "driver", "virtio-balloon", &error_abort);
2243 char *qemu_find_file(int type, const char *name)
2249 /* Try the name as a straight path first */
2250 if (access(name, R_OK) == 0) {
2251 trace_load_file(name, name);
2252 return g_strdup(name);
2256 case QEMU_FILE_TYPE_BIOS:
2259 case QEMU_FILE_TYPE_KEYMAP:
2260 subdir = "keymaps/";
2266 for (i = 0; i < data_dir_idx; i++) {
2267 buf = g_strdup_printf("%s/%s%s", data_dir[i], subdir, name);
2268 if (access(buf, R_OK) == 0) {
2269 trace_load_file(name, buf);
2277 static inline bool nonempty_str(const char *str)
2282 static int parse_fw_cfg(void *opaque, QemuOpts *opts, Error **errp)
2286 const char *name, *file, *str;
2288 if (opaque == NULL) {
2289 error_report("fw_cfg device not available");
2292 name = qemu_opt_get(opts, "name");
2293 file = qemu_opt_get(opts, "file");
2294 str = qemu_opt_get(opts, "string");
2296 /* we need name and either a file or the content string */
2297 if (!(nonempty_str(name) && (nonempty_str(file) || nonempty_str(str)))) {
2298 error_report("invalid argument(s)");
2301 if (nonempty_str(file) && nonempty_str(str)) {
2302 error_report("file and string are mutually exclusive");
2305 if (strlen(name) > FW_CFG_MAX_FILE_PATH - 1) {
2306 error_report("name too long (max. %d char)", FW_CFG_MAX_FILE_PATH - 1);
2309 if (strncmp(name, "opt/", 4) != 0) {
2310 error_report("warning: externally provided fw_cfg item names "
2311 "should be prefixed with \"opt/\"");
2313 if (nonempty_str(str)) {
2314 size = strlen(str); /* NUL terminator NOT included in fw_cfg blob */
2315 buf = g_memdup(str, size);
2317 if (!g_file_get_contents(file, &buf, &size, NULL)) {
2318 error_report("can't load %s", file);
2322 fw_cfg_add_file((FWCfgState *)opaque, name, buf, size);
2326 static int device_help_func(void *opaque, QemuOpts *opts, Error **errp)
2328 return qdev_device_help(opts);
2331 static int device_init_func(void *opaque, QemuOpts *opts, Error **errp)
2336 dev = qdev_device_add(opts, &err);
2338 error_report_err(err);
2341 object_unref(OBJECT(dev));
2345 static int chardev_init_func(void *opaque, QemuOpts *opts, Error **errp)
2347 Error *local_err = NULL;
2349 qemu_chr_new_from_opts(opts, NULL, &local_err);
2351 error_report_err(local_err);
2357 #ifdef CONFIG_VIRTFS
2358 static int fsdev_init_func(void *opaque, QemuOpts *opts, Error **errp)
2361 ret = qemu_fsdev_add(opts);
2367 static int mon_init_func(void *opaque, QemuOpts *opts, Error **errp)
2369 CharDriverState *chr;
2370 const char *chardev;
2374 mode = qemu_opt_get(opts, "mode");
2378 if (strcmp(mode, "readline") == 0) {
2379 flags = MONITOR_USE_READLINE;
2380 } else if (strcmp(mode, "control") == 0) {
2381 flags = MONITOR_USE_CONTROL;
2383 error_report("unknown monitor mode \"%s\"", mode);
2387 if (qemu_opt_get_bool(opts, "pretty", 0))
2388 flags |= MONITOR_USE_PRETTY;
2390 if (qemu_opt_get_bool(opts, "default", 0))
2391 flags |= MONITOR_IS_DEFAULT;
2393 chardev = qemu_opt_get(opts, "chardev");
2394 chr = qemu_chr_find(chardev);
2396 error_report("chardev \"%s\" not found", chardev);
2400 qemu_chr_fe_claim_no_fail(chr);
2401 monitor_init(chr, flags);
2405 static void monitor_parse(const char *optarg, const char *mode, bool pretty)
2407 static int monitor_device_index = 0;
2408 Error *local_err = NULL;
2414 if (strstart(optarg, "chardev:", &p)) {
2415 snprintf(label, sizeof(label), "%s", p);
2417 snprintf(label, sizeof(label), "compat_monitor%d",
2418 monitor_device_index);
2419 if (monitor_device_index == 0) {
2422 opts = qemu_chr_parse_compat(label, optarg);
2424 error_report("parse error: %s", optarg);
2429 opts = qemu_opts_create(qemu_find_opts("mon"), label, 1, &local_err);
2431 error_report_err(local_err);
2434 qemu_opt_set(opts, "mode", mode, &error_abort);
2435 qemu_opt_set(opts, "chardev", label, &error_abort);
2436 qemu_opt_set_bool(opts, "pretty", pretty, &error_abort);
2438 qemu_opt_set(opts, "default", "on", &error_abort);
2439 monitor_device_index++;
2442 struct device_config {
2444 DEV_USB, /* -usbdevice */
2446 DEV_SERIAL, /* -serial */
2447 DEV_PARALLEL, /* -parallel */
2448 DEV_VIRTCON, /* -virtioconsole */
2449 DEV_DEBUGCON, /* -debugcon */
2450 DEV_GDB, /* -gdb, -s */
2451 DEV_SCLP, /* s390 sclp */
2453 const char *cmdline;
2455 QTAILQ_ENTRY(device_config) next;
2458 static QTAILQ_HEAD(, device_config) device_configs =
2459 QTAILQ_HEAD_INITIALIZER(device_configs);
2461 static void add_device_config(int type, const char *cmdline)
2463 struct device_config *conf;
2465 conf = g_malloc0(sizeof(*conf));
2467 conf->cmdline = cmdline;
2468 loc_save(&conf->loc);
2469 QTAILQ_INSERT_TAIL(&device_configs, conf, next);
2472 static int foreach_device_config(int type, int (*func)(const char *cmdline))
2474 struct device_config *conf;
2477 QTAILQ_FOREACH(conf, &device_configs, next) {
2478 if (conf->type != type)
2480 loc_push_restore(&conf->loc);
2481 rc = func(conf->cmdline);
2482 loc_pop(&conf->loc);
2490 static int serial_parse(const char *devname)
2492 static int index = 0;
2495 if (strcmp(devname, "none") == 0)
2497 if (index == MAX_SERIAL_PORTS) {
2498 error_report("too many serial ports");
2501 snprintf(label, sizeof(label), "serial%d", index);
2502 serial_hds[index] = qemu_chr_new(label, devname, NULL);
2503 if (!serial_hds[index]) {
2504 error_report("could not connect serial device"
2505 " to character backend '%s'", devname);
2512 static int parallel_parse(const char *devname)
2514 static int index = 0;
2517 if (strcmp(devname, "none") == 0)
2519 if (index == MAX_PARALLEL_PORTS) {
2520 error_report("too many parallel ports");
2523 snprintf(label, sizeof(label), "parallel%d", index);
2524 parallel_hds[index] = qemu_chr_new(label, devname, NULL);
2525 if (!parallel_hds[index]) {
2526 error_report("could not connect parallel device"
2527 " to character backend '%s'", devname);
2534 static int virtcon_parse(const char *devname)
2536 QemuOptsList *device = qemu_find_opts("device");
2537 static int index = 0;
2539 QemuOpts *bus_opts, *dev_opts;
2541 if (strcmp(devname, "none") == 0)
2543 if (index == MAX_VIRTIO_CONSOLES) {
2544 error_report("too many virtio consoles");
2548 bus_opts = qemu_opts_create(device, NULL, 0, &error_abort);
2549 qemu_opt_set(bus_opts, "driver", "virtio-serial", &error_abort);
2551 dev_opts = qemu_opts_create(device, NULL, 0, &error_abort);
2552 qemu_opt_set(dev_opts, "driver", "virtconsole", &error_abort);
2554 snprintf(label, sizeof(label), "virtcon%d", index);
2555 virtcon_hds[index] = qemu_chr_new(label, devname, NULL);
2556 if (!virtcon_hds[index]) {
2557 error_report("could not connect virtio console"
2558 " to character backend '%s'", devname);
2561 qemu_opt_set(dev_opts, "chardev", label, &error_abort);
2567 static int sclp_parse(const char *devname)
2569 QemuOptsList *device = qemu_find_opts("device");
2570 static int index = 0;
2574 if (strcmp(devname, "none") == 0) {
2577 if (index == MAX_SCLP_CONSOLES) {
2578 error_report("too many sclp consoles");
2582 assert(arch_type == QEMU_ARCH_S390X);
2584 dev_opts = qemu_opts_create(device, NULL, 0, NULL);
2585 qemu_opt_set(dev_opts, "driver", "sclpconsole", &error_abort);
2587 snprintf(label, sizeof(label), "sclpcon%d", index);
2588 sclp_hds[index] = qemu_chr_new(label, devname, NULL);
2589 if (!sclp_hds[index]) {
2590 error_report("could not connect sclp console"
2591 " to character backend '%s'", devname);
2594 qemu_opt_set(dev_opts, "chardev", label, &error_abort);
2600 static int debugcon_parse(const char *devname)
2604 if (!qemu_chr_new("debugcon", devname, NULL)) {
2607 opts = qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL);
2609 error_report("already have a debugcon device");
2612 qemu_opt_set(opts, "driver", "isa-debugcon", &error_abort);
2613 qemu_opt_set(opts, "chardev", "debugcon", &error_abort);
2617 static gint machine_class_cmp(gconstpointer a, gconstpointer b)
2619 const MachineClass *mc1 = a, *mc2 = b;
2622 if (mc1->family == NULL) {
2623 if (mc2->family == NULL) {
2624 /* Compare standalone machine types against each other; they sort
2625 * in increasing order.
2627 return strcmp(object_class_get_name(OBJECT_CLASS(mc1)),
2628 object_class_get_name(OBJECT_CLASS(mc2)));
2631 /* Standalone machine types sort after families. */
2635 if (mc2->family == NULL) {
2636 /* Families sort before standalone machine types. */
2640 /* Families sort between each other alphabetically increasingly. */
2641 res = strcmp(mc1->family, mc2->family);
2646 /* Within the same family, machine types sort in decreasing order. */
2647 return strcmp(object_class_get_name(OBJECT_CLASS(mc2)),
2648 object_class_get_name(OBJECT_CLASS(mc1)));
2651 static MachineClass *machine_parse(const char *name)
2653 MachineClass *mc = NULL;
2654 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
2657 mc = find_machine(name);
2660 g_slist_free(machines);
2663 if (name && !is_help_option(name)) {
2664 error_report("unsupported machine type");
2665 error_printf("Use -machine help to list supported machines\n");
2667 printf("Supported machines are:\n");
2668 machines = g_slist_sort(machines, machine_class_cmp);
2669 for (el = machines; el; el = el->next) {
2670 MachineClass *mc = el->data;
2672 printf("%-20s %s (alias of %s)\n", mc->alias, mc->desc, mc->name);
2674 printf("%-20s %s%s\n", mc->name, mc->desc,
2675 mc->is_default ? " (default)" : "");
2679 g_slist_free(machines);
2680 exit(!name || !is_help_option(name));
2683 void qemu_add_exit_notifier(Notifier *notify)
2685 notifier_list_add(&exit_notifiers, notify);
2688 void qemu_remove_exit_notifier(Notifier *notify)
2690 notifier_remove(notify);
2693 static void qemu_run_exit_notifiers(void)
2695 notifier_list_notify(&exit_notifiers, NULL);
2698 static bool machine_init_done;
2700 void qemu_add_machine_init_done_notifier(Notifier *notify)
2702 notifier_list_add(&machine_init_done_notifiers, notify);
2703 if (machine_init_done) {
2704 notify->notify(notify, NULL);
2708 static void qemu_run_machine_init_done_notifiers(void)
2710 notifier_list_notify(&machine_init_done_notifiers, NULL);
2711 machine_init_done = true;
2714 static const QEMUOption *lookup_opt(int argc, char **argv,
2715 const char **poptarg, int *poptind)
2717 const QEMUOption *popt;
2718 int optind = *poptind;
2719 char *r = argv[optind];
2722 loc_set_cmdline(argv, optind, 1);
2724 /* Treat --foo the same as -foo. */
2727 popt = qemu_options;
2730 error_report("invalid option");
2733 if (!strcmp(popt->name, r + 1))
2737 if (popt->flags & HAS_ARG) {
2738 if (optind >= argc) {
2739 error_report("requires an argument");
2742 optarg = argv[optind++];
2743 loc_set_cmdline(argv, optind - 2, 2);
2754 static int machine_set_property(void *opaque,
2755 const char *name, const char *value,
2758 Object *obj = OBJECT(opaque);
2759 Error *local_err = NULL;
2762 if (strcmp(name, "type") == 0) {
2766 qom_name = g_strdup(name);
2774 object_property_parse(obj, value, qom_name, &local_err);
2778 error_report_err(local_err);
2787 * Initial object creation happens before all other
2788 * QEMU data types are created. The majority of objects
2789 * can be created at this point. The rng-egd object
2790 * cannot be created here, as it depends on the chardev
2793 static bool object_create_initial(const char *type)
2795 if (g_str_equal(type, "rng-egd")) {
2800 * return false for concrete netfilters since
2801 * they depend on netdevs already existing
2803 if (g_str_equal(type, "filter-buffer") ||
2804 g_str_equal(type, "filter-dump")) {
2813 * The remainder of object creation happens after the
2814 * creation of chardev, fsdev, net clients and device data types.
2816 static bool object_create_delayed(const char *type)
2818 return !object_create_initial(type);
2822 static int object_create(void *opaque, QemuOpts *opts, Error **errp)
2830 bool (*type_predicate)(const char *) = opaque;
2832 ov = opts_visitor_new(opts);
2833 pdict = qemu_opts_to_qdict(opts, NULL);
2835 visit_start_struct(opts_get_visitor(ov), &dummy, NULL, NULL, 0, &err);
2840 qdict_del(pdict, "qom-type");
2841 visit_type_str(opts_get_visitor(ov), &type, "qom-type", &err);
2845 if (!type_predicate(type)) {
2849 qdict_del(pdict, "id");
2850 visit_type_str(opts_get_visitor(ov), &id, "id", &err);
2855 object_add(type, id, pdict, opts_get_visitor(ov), &err);
2859 visit_end_struct(opts_get_visitor(ov), &err);
2861 qmp_object_del(id, NULL);
2865 opts_visitor_cleanup(ov);
2872 error_report_err(err);
2878 static void set_memory_options(uint64_t *ram_slots, ram_addr_t *maxram_size,
2882 const char *mem_str;
2883 const char *maxmem_str, *slots_str;
2884 const ram_addr_t default_ram_size = mc->default_ram_size;
2885 QemuOpts *opts = qemu_find_opts_singleton("memory");
2888 mem_str = qemu_opt_get(opts, "size");
2891 error_report("missing 'size' option value");
2895 sz = qemu_opt_get_size(opts, "size", ram_size);
2897 /* Fix up legacy suffix-less format */
2898 if (g_ascii_isdigit(mem_str[strlen(mem_str) - 1])) {
2899 uint64_t overflow_check = sz;
2902 if ((sz >> 20) != overflow_check) {
2903 error_report("too large 'size' option value");
2909 /* backward compatibility behaviour for case "-m 0" */
2911 sz = default_ram_size;
2914 sz = QEMU_ALIGN_UP(sz, 8192);
2916 if (ram_size != sz) {
2917 error_report("ram size too large");
2921 /* store value for the future use */
2922 qemu_opt_set_number(opts, "size", ram_size, &error_abort);
2923 *maxram_size = ram_size;
2925 maxmem_str = qemu_opt_get(opts, "maxmem");
2926 slots_str = qemu_opt_get(opts, "slots");
2927 if (maxmem_str && slots_str) {
2930 sz = qemu_opt_get_size(opts, "maxmem", 0);
2931 slots = qemu_opt_get_number(opts, "slots", 0);
2932 if (sz < ram_size) {
2933 error_report("invalid value of -m option maxmem: "
2934 "maximum memory size (0x%" PRIx64 ") must be at least "
2935 "the initial memory size (0x" RAM_ADDR_FMT ")",
2938 } else if (sz > ram_size) {
2940 error_report("invalid value of -m option: maxmem was "
2941 "specified, but no hotplug slots were specified");
2945 error_report("invalid value of -m option maxmem: "
2946 "memory slots were specified but maximum memory size "
2947 "(0x%" PRIx64 ") is equal to the initial memory size "
2948 "(0x" RAM_ADDR_FMT ")", sz, ram_size);
2954 } else if ((!maxmem_str && slots_str) ||
2955 (maxmem_str && !slots_str)) {
2956 error_report("invalid -m option value: missing "
2957 "'%s' option", slots_str ? "maxmem" : "slots");
2962 int main(int argc, char **argv, char **envp)
2965 int snapshot, linux_boot;
2966 const char *initrd_filename;
2967 const char *kernel_filename, *kernel_cmdline;
2968 const char *boot_order = NULL;
2969 const char *boot_once = NULL;
2971 int cyls, heads, secs, translation;
2972 QemuOpts *hda_opts = NULL, *opts, *machine_opts, *icount_opts = NULL;
2973 QemuOptsList *olist;
2976 const char *loadvm = NULL;
2977 MachineClass *machine_class;
2978 const char *cpu_model;
2979 const char *vga_model = NULL;
2980 const char *qtest_chrdev = NULL;
2981 const char *qtest_log = NULL;
2982 const char *pid_file = NULL;
2983 const char *incoming = NULL;
2985 int show_vnc_port = 0;
2987 bool defconfig = true;
2988 bool userconfig = true;
2989 const char *log_mask = NULL;
2990 const char *log_file = NULL;
2991 const char *trace_events = NULL;
2992 const char *trace_file = NULL;
2993 ram_addr_t maxram_size;
2994 uint64_t ram_slots = 0;
2995 FILE *vmstate_dump_file = NULL;
2996 Error *main_loop_err = NULL;
2999 qemu_init_cpu_loop();
3000 qemu_mutex_lock_iothread();
3002 atexit(qemu_run_exit_notifiers);
3003 error_set_progname(argv[0]);
3004 qemu_init_exec_dir(argv[0]);
3006 module_call_init(MODULE_INIT_QOM);
3008 qemu_add_opts(&qemu_drive_opts);
3009 qemu_add_drive_opts(&qemu_legacy_drive_opts);
3010 qemu_add_drive_opts(&qemu_common_drive_opts);
3011 qemu_add_drive_opts(&qemu_drive_opts);
3012 qemu_add_opts(&qemu_chardev_opts);
3013 qemu_add_opts(&qemu_device_opts);
3014 qemu_add_opts(&qemu_netdev_opts);
3015 qemu_add_opts(&qemu_net_opts);
3016 qemu_add_opts(&qemu_rtc_opts);
3017 qemu_add_opts(&qemu_global_opts);
3018 qemu_add_opts(&qemu_mon_opts);
3019 qemu_add_opts(&qemu_trace_opts);
3020 qemu_add_opts(&qemu_option_rom_opts);
3021 qemu_add_opts(&qemu_machine_opts);
3022 qemu_add_opts(&qemu_mem_opts);
3023 qemu_add_opts(&qemu_smp_opts);
3024 qemu_add_opts(&qemu_boot_opts);
3025 qemu_add_opts(&qemu_sandbox_opts);
3026 qemu_add_opts(&qemu_add_fd_opts);
3027 qemu_add_opts(&qemu_object_opts);
3028 qemu_add_opts(&qemu_tpmdev_opts);
3029 qemu_add_opts(&qemu_realtime_opts);
3030 qemu_add_opts(&qemu_msg_opts);
3031 qemu_add_opts(&qemu_name_opts);
3032 qemu_add_opts(&qemu_numa_opts);
3033 qemu_add_opts(&qemu_icount_opts);
3034 qemu_add_opts(&qemu_semihosting_config_opts);
3035 qemu_add_opts(&qemu_fw_cfg_opts);
3039 if (qcrypto_init(&err) < 0) {
3040 error_reportf_err(err, "cannot initialize crypto: ");
3043 rtc_clock = QEMU_CLOCK_HOST;
3045 QLIST_INIT (&vm_change_state_head);
3046 os_setup_early_signal_handling();
3048 module_call_init(MODULE_INIT_MACHINE);
3049 machine_class = find_default_machine();
3052 cyls = heads = secs = 0;
3053 translation = BIOS_ATA_TRANSLATION_AUTO;
3057 bdrv_init_with_whitelist();
3061 /* first pass of option parsing */
3063 while (optind < argc) {
3064 if (argv[optind][0] != '-') {
3068 const QEMUOption *popt;
3070 popt = lookup_opt(argc, argv, &optarg, &optind);
3071 switch (popt->index) {
3072 case QEMU_OPTION_nodefconfig:
3075 case QEMU_OPTION_nouserconfig:
3084 ret = qemu_read_default_config_files(userconfig);
3090 /* second pass of option parsing */
3095 if (argv[optind][0] != '-') {
3096 hda_opts = drive_add(IF_DEFAULT, 0, argv[optind++], HD_OPTS);
3098 const QEMUOption *popt;
3100 popt = lookup_opt(argc, argv, &optarg, &optind);
3101 if (!(popt->arch_mask & arch_type)) {
3102 printf("Option %s not supported for this target\n", popt->name);
3105 switch(popt->index) {
3106 case QEMU_OPTION_no_kvm_irqchip: {
3107 olist = qemu_find_opts("machine");
3108 qemu_opts_parse_noisily(olist, "kernel_irqchip=off", false);
3111 case QEMU_OPTION_cpu:
3112 /* hw initialization will check this */
3115 case QEMU_OPTION_hda:
3119 snprintf(buf, sizeof(buf), "%s", HD_OPTS);
3121 snprintf(buf, sizeof(buf),
3122 "%s,cyls=%d,heads=%d,secs=%d%s",
3123 HD_OPTS , cyls, heads, secs,
3124 translation == BIOS_ATA_TRANSLATION_LBA ?
3126 translation == BIOS_ATA_TRANSLATION_NONE ?
3127 ",trans=none" : "");
3128 drive_add(IF_DEFAULT, 0, optarg, buf);
3131 case QEMU_OPTION_hdb:
3132 case QEMU_OPTION_hdc:
3133 case QEMU_OPTION_hdd:
3134 drive_add(IF_DEFAULT, popt->index - QEMU_OPTION_hda, optarg,
3137 case QEMU_OPTION_drive:
3138 if (drive_def(optarg) == NULL) {
3142 case QEMU_OPTION_set:
3143 if (qemu_set_option(optarg) != 0)
3146 case QEMU_OPTION_global:
3147 if (qemu_global_option(optarg) != 0)
3150 case QEMU_OPTION_mtdblock:
3151 drive_add(IF_MTD, -1, optarg, MTD_OPTS);
3153 case QEMU_OPTION_sd:
3154 drive_add(IF_SD, -1, optarg, SD_OPTS);
3156 case QEMU_OPTION_pflash:
3157 drive_add(IF_PFLASH, -1, optarg, PFLASH_OPTS);
3159 case QEMU_OPTION_snapshot:
3162 case QEMU_OPTION_hdachs:
3166 cyls = strtol(p, (char **)&p, 0);
3167 if (cyls < 1 || cyls > 16383)
3172 heads = strtol(p, (char **)&p, 0);
3173 if (heads < 1 || heads > 16)
3178 secs = strtol(p, (char **)&p, 0);
3179 if (secs < 1 || secs > 63)
3183 if (!strcmp(p, "large")) {
3184 translation = BIOS_ATA_TRANSLATION_LARGE;
3185 } else if (!strcmp(p, "rechs")) {
3186 translation = BIOS_ATA_TRANSLATION_RECHS;
3187 } else if (!strcmp(p, "none")) {
3188 translation = BIOS_ATA_TRANSLATION_NONE;
3189 } else if (!strcmp(p, "lba")) {
3190 translation = BIOS_ATA_TRANSLATION_LBA;
3191 } else if (!strcmp(p, "auto")) {
3192 translation = BIOS_ATA_TRANSLATION_AUTO;
3196 } else if (*p != '\0') {
3198 error_report("invalid physical CHS format");
3201 if (hda_opts != NULL) {
3202 qemu_opt_set_number(hda_opts, "cyls", cyls,
3204 qemu_opt_set_number(hda_opts, "heads", heads,
3206 qemu_opt_set_number(hda_opts, "secs", secs,
3208 if (translation == BIOS_ATA_TRANSLATION_LARGE) {
3209 qemu_opt_set(hda_opts, "trans", "large",
3211 } else if (translation == BIOS_ATA_TRANSLATION_RECHS) {
3212 qemu_opt_set(hda_opts, "trans", "rechs",
3214 } else if (translation == BIOS_ATA_TRANSLATION_LBA) {
3215 qemu_opt_set(hda_opts, "trans", "lba",
3217 } else if (translation == BIOS_ATA_TRANSLATION_NONE) {
3218 qemu_opt_set(hda_opts, "trans", "none",
3224 case QEMU_OPTION_numa:
3225 opts = qemu_opts_parse_noisily(qemu_find_opts("numa"),
3231 case QEMU_OPTION_display:
3232 display_type = select_display(optarg);
3234 case QEMU_OPTION_nographic:
3235 display_type = DT_NOGRAPHIC;
3237 case QEMU_OPTION_curses:
3238 #ifdef CONFIG_CURSES
3239 display_type = DT_CURSES;
3241 error_report("curses support is disabled");
3245 case QEMU_OPTION_portrait:
3246 graphic_rotate = 90;
3248 case QEMU_OPTION_rotate:
3249 graphic_rotate = strtol(optarg, (char **) &optarg, 10);
3250 if (graphic_rotate != 0 && graphic_rotate != 90 &&
3251 graphic_rotate != 180 && graphic_rotate != 270) {
3252 error_report("only 90, 180, 270 deg rotation is available");
3256 case QEMU_OPTION_kernel:
3257 qemu_opts_set(qemu_find_opts("machine"), 0, "kernel", optarg,
3260 case QEMU_OPTION_initrd:
3261 qemu_opts_set(qemu_find_opts("machine"), 0, "initrd", optarg,
3264 case QEMU_OPTION_append:
3265 qemu_opts_set(qemu_find_opts("machine"), 0, "append", optarg,
3268 case QEMU_OPTION_dtb:
3269 qemu_opts_set(qemu_find_opts("machine"), 0, "dtb", optarg,
3272 case QEMU_OPTION_cdrom:
3273 drive_add(IF_DEFAULT, 2, optarg, CDROM_OPTS);
3275 case QEMU_OPTION_boot:
3276 opts = qemu_opts_parse_noisily(qemu_find_opts("boot-opts"),
3282 case QEMU_OPTION_fda:
3283 case QEMU_OPTION_fdb:
3284 drive_add(IF_FLOPPY, popt->index - QEMU_OPTION_fda,
3287 case QEMU_OPTION_no_fd_bootchk:
3290 case QEMU_OPTION_netdev:
3291 if (net_client_parse(qemu_find_opts("netdev"), optarg) == -1) {
3295 case QEMU_OPTION_net:
3296 if (net_client_parse(qemu_find_opts("net"), optarg) == -1) {
3300 #ifdef CONFIG_LIBISCSI
3301 case QEMU_OPTION_iscsi:
3302 opts = qemu_opts_parse_noisily(qemu_find_opts("iscsi"),
3310 case QEMU_OPTION_tftp:
3311 legacy_tftp_prefix = optarg;
3313 case QEMU_OPTION_bootp:
3314 legacy_bootp_filename = optarg;
3316 case QEMU_OPTION_redir:
3317 if (net_slirp_redir(optarg) < 0)
3321 case QEMU_OPTION_bt:
3322 add_device_config(DEV_BT, optarg);
3324 case QEMU_OPTION_audio_help:
3328 case QEMU_OPTION_soundhw:
3329 select_soundhw (optarg);
3334 case QEMU_OPTION_version:
3339 opts = qemu_opts_parse_noisily(qemu_find_opts("memory"),
3346 case QEMU_OPTION_tpmdev:
3347 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg) < 0) {
3352 case QEMU_OPTION_mempath:
3355 case QEMU_OPTION_mem_prealloc:
3365 add_device_config(DEV_GDB, "tcp::" DEFAULT_GDBSTUB_PORT);
3367 case QEMU_OPTION_gdb:
3368 add_device_config(DEV_GDB, optarg);
3371 if (data_dir_idx < ARRAY_SIZE(data_dir)) {
3372 data_dir[data_dir_idx++] = optarg;
3375 case QEMU_OPTION_bios:
3376 qemu_opts_set(qemu_find_opts("machine"), 0, "firmware", optarg,
3379 case QEMU_OPTION_singlestep:
3386 keyboard_layout = optarg;
3388 case QEMU_OPTION_localtime:
3391 case QEMU_OPTION_vga:
3400 w = strtol(p, (char **)&p, 10);
3403 error_report("invalid resolution or depth");
3409 h = strtol(p, (char **)&p, 10);
3414 depth = strtol(p, (char **)&p, 10);
3415 if (depth != 8 && depth != 15 && depth != 16 &&
3416 depth != 24 && depth != 32)
3418 } else if (*p == '\0') {
3419 depth = graphic_depth;
3426 graphic_depth = depth;
3429 case QEMU_OPTION_echr:
3432 term_escape_char = strtol(optarg, &r, 0);
3434 printf("Bad argument to echr\n");
3437 case QEMU_OPTION_monitor:
3438 default_monitor = 0;
3439 if (strncmp(optarg, "none", 4)) {
3440 monitor_parse(optarg, "readline", false);
3443 case QEMU_OPTION_qmp:
3444 monitor_parse(optarg, "control", false);
3445 default_monitor = 0;
3447 case QEMU_OPTION_qmp_pretty:
3448 monitor_parse(optarg, "control", true);
3449 default_monitor = 0;
3451 case QEMU_OPTION_mon:
3452 opts = qemu_opts_parse_noisily(qemu_find_opts("mon"), optarg,
3457 default_monitor = 0;
3459 case QEMU_OPTION_chardev:
3460 opts = qemu_opts_parse_noisily(qemu_find_opts("chardev"),
3466 case QEMU_OPTION_fsdev:
3467 olist = qemu_find_opts("fsdev");
3469 error_report("fsdev support is disabled");
3472 opts = qemu_opts_parse_noisily(olist, optarg, true);
3477 case QEMU_OPTION_virtfs: {
3480 const char *writeout, *sock_fd, *socket;
3482 olist = qemu_find_opts("virtfs");
3484 error_report("virtfs support is disabled");
3487 opts = qemu_opts_parse_noisily(olist, optarg, true);
3492 if (qemu_opt_get(opts, "fsdriver") == NULL ||
3493 qemu_opt_get(opts, "mount_tag") == NULL) {
3494 error_report("Usage: -virtfs fsdriver,mount_tag=tag");
3497 fsdev = qemu_opts_create(qemu_find_opts("fsdev"),
3498 qemu_opt_get(opts, "mount_tag"),
3501 error_report("duplicate fsdev id: %s",
3502 qemu_opt_get(opts, "mount_tag"));
3506 writeout = qemu_opt_get(opts, "writeout");
3508 #ifdef CONFIG_SYNC_FILE_RANGE
3509 qemu_opt_set(fsdev, "writeout", writeout, &error_abort);
3511 error_report("writeout=immediate not supported "
3512 "on this platform");
3516 qemu_opt_set(fsdev, "fsdriver",
3517 qemu_opt_get(opts, "fsdriver"), &error_abort);
3518 qemu_opt_set(fsdev, "path", qemu_opt_get(opts, "path"),
3520 qemu_opt_set(fsdev, "security_model",
3521 qemu_opt_get(opts, "security_model"),
3523 socket = qemu_opt_get(opts, "socket");
3525 qemu_opt_set(fsdev, "socket", socket, &error_abort);
3527 sock_fd = qemu_opt_get(opts, "sock_fd");
3529 qemu_opt_set(fsdev, "sock_fd", sock_fd, &error_abort);
3532 qemu_opt_set_bool(fsdev, "readonly",
3533 qemu_opt_get_bool(opts, "readonly", 0),
3535 device = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
3537 qemu_opt_set(device, "driver", "virtio-9p-pci", &error_abort);
3538 qemu_opt_set(device, "fsdev",
3539 qemu_opt_get(opts, "mount_tag"), &error_abort);
3540 qemu_opt_set(device, "mount_tag",
3541 qemu_opt_get(opts, "mount_tag"), &error_abort);
3544 case QEMU_OPTION_virtfs_synth: {
3548 fsdev = qemu_opts_create(qemu_find_opts("fsdev"), "v_synth",
3551 error_report("duplicate option: %s", "virtfs_synth");
3554 qemu_opt_set(fsdev, "fsdriver", "synth", &error_abort);
3556 device = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
3558 qemu_opt_set(device, "driver", "virtio-9p-pci", &error_abort);
3559 qemu_opt_set(device, "fsdev", "v_synth", &error_abort);
3560 qemu_opt_set(device, "mount_tag", "v_synth", &error_abort);
3563 case QEMU_OPTION_serial:
3564 add_device_config(DEV_SERIAL, optarg);
3566 if (strncmp(optarg, "mon:", 4) == 0) {
3567 default_monitor = 0;
3570 case QEMU_OPTION_watchdog:
3572 error_report("only one watchdog option may be given");
3577 case QEMU_OPTION_watchdog_action:
3578 if (select_watchdog_action(optarg) == -1) {
3579 error_report("unknown -watchdog-action parameter");
3583 case QEMU_OPTION_virtiocon:
3584 add_device_config(DEV_VIRTCON, optarg);
3585 default_virtcon = 0;
3586 if (strncmp(optarg, "mon:", 4) == 0) {
3587 default_monitor = 0;
3590 case QEMU_OPTION_parallel:
3591 add_device_config(DEV_PARALLEL, optarg);
3592 default_parallel = 0;
3593 if (strncmp(optarg, "mon:", 4) == 0) {
3594 default_monitor = 0;
3597 case QEMU_OPTION_debugcon:
3598 add_device_config(DEV_DEBUGCON, optarg);
3600 case QEMU_OPTION_loadvm:
3603 case QEMU_OPTION_full_screen:
3606 case QEMU_OPTION_no_frame:
3609 case QEMU_OPTION_alt_grab:
3612 case QEMU_OPTION_ctrl_grab:
3615 case QEMU_OPTION_no_quit:
3618 case QEMU_OPTION_sdl:
3620 display_type = DT_SDL;
3623 error_report("SDL support is disabled");
3626 case QEMU_OPTION_pidfile:
3629 case QEMU_OPTION_win2k_hack:
3630 win2k_install_hack = 1;
3632 case QEMU_OPTION_rtc_td_hack: {
3633 static GlobalProperty slew_lost_ticks[] = {
3635 .driver = "mc146818rtc",
3636 .property = "lost_tick_policy",
3639 { /* end of list */ }
3642 qdev_prop_register_global_list(slew_lost_ticks);
3645 case QEMU_OPTION_acpitable:
3646 opts = qemu_opts_parse_noisily(qemu_find_opts("acpi"),
3651 do_acpitable_option(opts);
3653 case QEMU_OPTION_smbios:
3654 opts = qemu_opts_parse_noisily(qemu_find_opts("smbios"),
3659 do_smbios_option(opts);
3661 case QEMU_OPTION_fwcfg:
3662 opts = qemu_opts_parse_noisily(qemu_find_opts("fw_cfg"),
3668 case QEMU_OPTION_enable_kvm:
3669 olist = qemu_find_opts("machine");
3670 qemu_opts_parse_noisily(olist, "accel=kvm", false);
3673 case QEMU_OPTION_machine:
3674 olist = qemu_find_opts("machine");
3675 opts = qemu_opts_parse_noisily(olist, optarg, true);
3680 case QEMU_OPTION_no_kvm:
3681 olist = qemu_find_opts("machine");
3682 qemu_opts_parse_noisily(olist, "accel=tcg", false);
3684 case QEMU_OPTION_no_kvm_pit: {
3685 error_report("warning: ignoring deprecated option");
3688 case QEMU_OPTION_no_kvm_pit_reinjection: {
3689 static GlobalProperty kvm_pit_lost_tick_policy[] = {
3691 .driver = "kvm-pit",
3692 .property = "lost_tick_policy",
3695 { /* end of list */ }
3698 error_report("warning: deprecated, replaced by "
3699 "-global kvm-pit.lost_tick_policy=discard");
3700 qdev_prop_register_global_list(kvm_pit_lost_tick_policy);
3703 case QEMU_OPTION_usb:
3704 olist = qemu_find_opts("machine");
3705 qemu_opts_parse_noisily(olist, "usb=on", false);
3707 case QEMU_OPTION_usbdevice:
3708 olist = qemu_find_opts("machine");
3709 qemu_opts_parse_noisily(olist, "usb=on", false);
3710 add_device_config(DEV_USB, optarg);
3712 case QEMU_OPTION_device:
3713 if (!qemu_opts_parse_noisily(qemu_find_opts("device"),
3718 case QEMU_OPTION_smp:
3719 if (!qemu_opts_parse_noisily(qemu_find_opts("smp-opts"),
3724 case QEMU_OPTION_vnc:
3727 Error *local_err = NULL;
3729 if (vnc_parse(optarg, &local_err) == NULL) {
3730 error_report_err(local_err);
3734 error_report("VNC support is disabled");
3739 case QEMU_OPTION_no_acpi:
3742 case QEMU_OPTION_no_hpet:
3745 case QEMU_OPTION_balloon:
3746 if (balloon_parse(optarg) < 0) {
3747 error_report("unknown -balloon argument %s", optarg);
3751 case QEMU_OPTION_no_reboot:
3754 case QEMU_OPTION_no_shutdown:
3757 case QEMU_OPTION_show_cursor:
3760 case QEMU_OPTION_uuid:
3761 if(qemu_uuid_parse(optarg, qemu_uuid) < 0) {
3762 error_report("failed to parse UUID string: wrong format");
3765 qemu_uuid_set = true;
3767 case QEMU_OPTION_option_rom:
3768 if (nb_option_roms >= MAX_OPTION_ROMS) {
3769 error_report("too many option ROMs");
3772 opts = qemu_opts_parse_noisily(qemu_find_opts("option-rom"),
3777 option_rom[nb_option_roms].name = qemu_opt_get(opts, "romfile");
3778 option_rom[nb_option_roms].bootindex =
3779 qemu_opt_get_number(opts, "bootindex", -1);
3780 if (!option_rom[nb_option_roms].name) {
3781 error_report("Option ROM file is not specified");
3786 case QEMU_OPTION_semihosting:
3787 semihosting.enabled = true;
3788 semihosting.target = SEMIHOSTING_TARGET_AUTO;
3790 case QEMU_OPTION_semihosting_config:
3791 semihosting.enabled = true;
3792 opts = qemu_opts_parse_noisily(qemu_find_opts("semihosting-config"),
3795 semihosting.enabled = qemu_opt_get_bool(opts, "enable",
3797 const char *target = qemu_opt_get(opts, "target");
3798 if (target != NULL) {
3799 if (strcmp("native", target) == 0) {
3800 semihosting.target = SEMIHOSTING_TARGET_NATIVE;
3801 } else if (strcmp("gdb", target) == 0) {
3802 semihosting.target = SEMIHOSTING_TARGET_GDB;
3803 } else if (strcmp("auto", target) == 0) {
3804 semihosting.target = SEMIHOSTING_TARGET_AUTO;
3806 error_report("unsupported semihosting-config %s",
3811 semihosting.target = SEMIHOSTING_TARGET_AUTO;
3813 /* Set semihosting argument count and vector */
3814 qemu_opt_foreach(opts, add_semihosting_arg,
3815 &semihosting, NULL);
3817 error_report("unsupported semihosting-config %s", optarg);
3821 case QEMU_OPTION_tdf:
3822 error_report("warning: ignoring deprecated option");
3824 case QEMU_OPTION_name:
3825 opts = qemu_opts_parse_noisily(qemu_find_opts("name"),
3831 case QEMU_OPTION_prom_env:
3832 if (nb_prom_envs >= MAX_PROM_ENVS) {
3833 error_report("too many prom variables");
3836 prom_envs[nb_prom_envs] = optarg;
3839 case QEMU_OPTION_old_param:
3842 case QEMU_OPTION_clock:
3843 /* Clock options no longer exist. Keep this option for
3844 * backward compatibility.
3847 case QEMU_OPTION_startdate:
3848 configure_rtc_date_offset(optarg, 1);
3850 case QEMU_OPTION_rtc:
3851 opts = qemu_opts_parse_noisily(qemu_find_opts("rtc"), optarg,
3856 configure_rtc(opts);
3858 case QEMU_OPTION_tb_size:
3859 tcg_tb_size = strtol(optarg, NULL, 0);
3860 if (tcg_tb_size < 0) {
3864 case QEMU_OPTION_icount:
3865 icount_opts = qemu_opts_parse_noisily(qemu_find_opts("icount"),
3871 case QEMU_OPTION_incoming:
3873 runstate_set(RUN_STATE_INMIGRATE);
3877 case QEMU_OPTION_nodefaults:
3880 case QEMU_OPTION_xen_domid:
3881 if (!(xen_available())) {
3882 printf("Option %s not supported for this target\n", popt->name);
3885 xen_domid = atoi(optarg);
3887 case QEMU_OPTION_xen_create:
3888 if (!(xen_available())) {
3889 printf("Option %s not supported for this target\n", popt->name);
3892 xen_mode = XEN_CREATE;
3894 case QEMU_OPTION_xen_attach:
3895 if (!(xen_available())) {
3896 printf("Option %s not supported for this target\n", popt->name);
3899 xen_mode = XEN_ATTACH;
3901 case QEMU_OPTION_trace:
3903 opts = qemu_opts_parse_noisily(qemu_find_opts("trace"),
3908 trace_events = qemu_opt_get(opts, "events");
3909 trace_file = qemu_opt_get(opts, "file");
3912 case QEMU_OPTION_readconfig:
3914 int ret = qemu_read_config_file(optarg);
3916 error_report("read config %s: %s", optarg,
3922 case QEMU_OPTION_spice:
3923 olist = qemu_find_opts("spice");
3925 error_report("spice support is disabled");
3928 opts = qemu_opts_parse_noisily(olist, optarg, false);
3934 case QEMU_OPTION_writeconfig:
3937 if (strcmp(optarg, "-") == 0) {
3940 fp = fopen(optarg, "w");
3942 error_report("open %s: %s", optarg,
3947 qemu_config_write(fp);
3953 case QEMU_OPTION_qtest:
3954 qtest_chrdev = optarg;
3956 case QEMU_OPTION_qtest_log:
3959 case QEMU_OPTION_sandbox:
3960 opts = qemu_opts_parse_noisily(qemu_find_opts("sandbox"),
3966 case QEMU_OPTION_add_fd:
3968 opts = qemu_opts_parse_noisily(qemu_find_opts("add-fd"),
3974 error_report("File descriptor passing is disabled on this "
3979 case QEMU_OPTION_object:
3980 opts = qemu_opts_parse_noisily(qemu_find_opts("object"),
3986 case QEMU_OPTION_realtime:
3987 opts = qemu_opts_parse_noisily(qemu_find_opts("realtime"),
3992 enable_mlock = qemu_opt_get_bool(opts, "mlock", true);
3994 case QEMU_OPTION_msg:
3995 opts = qemu_opts_parse_noisily(qemu_find_opts("msg"), optarg,
4000 configure_msg(opts);
4002 case QEMU_OPTION_dump_vmstate:
4003 if (vmstate_dump_file) {
4004 error_report("only one '-dump-vmstate' "
4005 "option may be given");
4008 vmstate_dump_file = fopen(optarg, "w");
4009 if (vmstate_dump_file == NULL) {
4010 error_report("open %s: %s", optarg, strerror(errno));
4015 os_parse_cmd_args(popt->index, optarg);
4020 replay_configure(icount_opts);
4022 opts = qemu_get_machine_opts();
4023 optarg = qemu_opt_get(opts, "type");
4025 machine_class = machine_parse(optarg);
4028 if (machine_class == NULL) {
4029 error_report("No machine specified, and there is no default");
4030 error_printf("Use -machine help to list supported machines\n");
4034 set_memory_options(&ram_slots, &maxram_size, machine_class);
4040 if (qemu_init_main_loop(&main_loop_err)) {
4041 error_report_err(main_loop_err);
4045 if (qemu_opts_foreach(qemu_find_opts("sandbox"),
4046 parse_sandbox, NULL, NULL)) {
4050 if (qemu_opts_foreach(qemu_find_opts("name"),
4051 parse_name, NULL, NULL)) {
4056 if (qemu_opts_foreach(qemu_find_opts("add-fd"),
4057 parse_add_fd, NULL, NULL)) {
4061 if (qemu_opts_foreach(qemu_find_opts("add-fd"),
4062 cleanup_add_fd, NULL, NULL)) {
4067 current_machine = MACHINE(object_new(object_class_get_name(
4068 OBJECT_CLASS(machine_class))));
4069 if (machine_help_func(qemu_get_machine_opts(), current_machine)) {
4072 object_property_add_child(object_get_root(), "machine",
4073 OBJECT(current_machine), &error_abort);
4074 cpu_exec_init_all();
4076 if (machine_class->hw_version) {
4077 qemu_set_hw_version(machine_class->hw_version);
4080 /* Init CPU def lists, based on config
4081 * - Must be called after all the qemu_read_config_file() calls
4082 * - Must be called before list_cpus()
4083 * - Must be called before machine->init()
4087 if (cpu_model && is_help_option(cpu_model)) {
4088 list_cpus(stdout, &fprintf, cpu_model);
4092 /* Open the logfile at this point and set the log mask if necessary.
4095 qemu_set_log_filename(log_file);
4100 mask = qemu_str_to_log_mask(log_mask);
4102 qemu_print_log_usage(stdout);
4108 if (!is_daemonized()) {
4109 if (!trace_init_backends(trace_events, trace_file)) {
4114 /* If no data_dir is specified then try to find it relative to the
4116 if (data_dir_idx < ARRAY_SIZE(data_dir)) {
4117 data_dir[data_dir_idx] = os_find_datadir();
4118 if (data_dir[data_dir_idx] != NULL) {
4122 /* If all else fails use the install path specified when building. */
4123 if (data_dir_idx < ARRAY_SIZE(data_dir)) {
4124 data_dir[data_dir_idx++] = CONFIG_QEMU_DATADIR;
4127 smp_parse(qemu_opts_find(qemu_find_opts("smp-opts"), NULL));
4129 machine_class->max_cpus = machine_class->max_cpus ?: 1; /* Default to UP */
4130 if (max_cpus > machine_class->max_cpus) {
4131 error_report("Number of SMP CPUs requested (%d) exceeds max CPUs "
4132 "supported by machine '%s' (%d)", max_cpus,
4133 machine_class->name, machine_class->max_cpus);
4138 * Get the default machine options from the machine if it is not already
4139 * specified either by the configuration file or by the command line.
4141 if (machine_class->default_machine_opts) {
4142 qemu_opts_set_defaults(qemu_find_opts("machine"),
4143 machine_class->default_machine_opts, 0);
4146 qemu_opts_foreach(qemu_find_opts("device"),
4147 default_driver_check, NULL, NULL);
4148 qemu_opts_foreach(qemu_find_opts("global"),
4149 default_driver_check, NULL, NULL);
4151 if (!vga_model && !default_vga) {
4152 vga_interface_type = VGA_DEVICE;
4154 if (!has_defaults || machine_class->no_serial) {
4157 if (!has_defaults || machine_class->no_parallel) {
4158 default_parallel = 0;
4160 if (!has_defaults || !machine_class->use_virtcon) {
4161 default_virtcon = 0;
4163 if (!has_defaults || !machine_class->use_sclp) {
4166 if (!has_defaults || machine_class->no_floppy) {
4169 if (!has_defaults || machine_class->no_cdrom) {
4172 if (!has_defaults || machine_class->no_sdcard) {
4175 if (!has_defaults) {
4176 default_monitor = 0;
4181 if (is_daemonized()) {
4182 /* According to documentation and historically, -nographic redirects
4183 * serial port, parallel port and monitor to stdio, which does not work
4184 * with -daemonize. We can redirect these to null instead, but since
4185 * -nographic is legacy, let's just error out.
4186 * We disallow -nographic only if all other ports are not redirected
4187 * explicitly, to not break existing legacy setups which uses
4188 * -nographic _and_ redirects all ports explicitly - this is valid
4189 * usage, -nographic is just a no-op in this case.
4191 if (display_type == DT_NOGRAPHIC
4192 && (default_parallel || default_serial
4193 || default_monitor || default_virtcon)) {
4194 error_report("-nographic cannot be used with -daemonize");
4197 #ifdef CONFIG_CURSES
4198 if (display_type == DT_CURSES) {
4199 error_report("curses display cannot be used with -daemonize");
4205 if (display_type == DT_NOGRAPHIC) {
4206 if (default_parallel)
4207 add_device_config(DEV_PARALLEL, "null");
4208 if (default_serial && default_monitor) {
4209 add_device_config(DEV_SERIAL, "mon:stdio");
4210 } else if (default_virtcon && default_monitor) {
4211 add_device_config(DEV_VIRTCON, "mon:stdio");
4212 } else if (default_sclp && default_monitor) {
4213 add_device_config(DEV_SCLP, "mon:stdio");
4216 add_device_config(DEV_SERIAL, "stdio");
4217 if (default_virtcon)
4218 add_device_config(DEV_VIRTCON, "stdio");
4220 add_device_config(DEV_SCLP, "stdio");
4222 if (default_monitor)
4223 monitor_parse("stdio", "readline", false);
4227 add_device_config(DEV_SERIAL, "vc:80Cx24C");
4228 if (default_parallel)
4229 add_device_config(DEV_PARALLEL, "vc:80Cx24C");
4230 if (default_monitor)
4231 monitor_parse("vc:80Cx24C", "readline", false);
4232 if (default_virtcon)
4233 add_device_config(DEV_VIRTCON, "vc:80Cx24C");
4235 add_device_config(DEV_SCLP, "vc:80Cx24C");
4239 #if defined(CONFIG_VNC)
4240 if (!QTAILQ_EMPTY(&(qemu_find_opts("vnc")->head))) {
4244 if (display_type == DT_DEFAULT && !display_remote) {
4245 #if defined(CONFIG_GTK)
4246 display_type = DT_GTK;
4247 #elif defined(CONFIG_SDL) || defined(CONFIG_COCOA)
4248 display_type = DT_SDL;
4249 #elif defined(CONFIG_VNC)
4250 vnc_parse("localhost:0,to=99,id=default", &error_abort);
4253 display_type = DT_NONE;
4257 if ((no_frame || alt_grab || ctrl_grab) && display_type != DT_SDL) {
4258 error_report("-no-frame, -alt-grab and -ctrl-grab are only valid "
4259 "for SDL, ignoring option");
4261 if (no_quit && (display_type != DT_GTK && display_type != DT_SDL)) {
4262 error_report("-no-quit is only valid for GTK and SDL, "
4266 #if defined(CONFIG_GTK)
4267 if (display_type == DT_GTK) {
4268 early_gtk_display_init(request_opengl);
4271 #if defined(CONFIG_SDL)
4272 if (display_type == DT_SDL) {
4273 sdl_display_early_init(request_opengl);
4276 if (request_opengl == 1 && display_opengl == 0) {
4277 #if defined(CONFIG_OPENGL)
4278 error_report("OpenGL is not supported by the display");
4280 error_report("OpenGL support is disabled");
4288 if (qemu_opts_foreach(qemu_find_opts("object"),
4290 object_create_initial, NULL)) {
4294 if (qemu_opts_foreach(qemu_find_opts("chardev"),
4295 chardev_init_func, NULL, NULL)) {
4299 #ifdef CONFIG_VIRTFS
4300 if (qemu_opts_foreach(qemu_find_opts("fsdev"),
4301 fsdev_init_func, NULL, NULL)) {
4306 if (pid_file && qemu_create_pidfile(pid_file) != 0) {
4307 error_report("could not acquire pid file: %s", strerror(errno));
4311 if (qemu_opts_foreach(qemu_find_opts("device"),
4312 device_help_func, NULL, NULL)) {
4316 machine_opts = qemu_get_machine_opts();
4317 if (qemu_opt_foreach(machine_opts, machine_set_property, current_machine,
4319 object_unref(OBJECT(current_machine));
4323 configure_accelerator(current_machine);
4326 qtest_init(qtest_chrdev, qtest_log, &error_fatal);
4329 machine_opts = qemu_get_machine_opts();
4330 kernel_filename = qemu_opt_get(machine_opts, "kernel");
4331 initrd_filename = qemu_opt_get(machine_opts, "initrd");
4332 kernel_cmdline = qemu_opt_get(machine_opts, "append");
4333 bios_name = qemu_opt_get(machine_opts, "firmware");
4335 opts = qemu_opts_find(qemu_find_opts("boot-opts"), NULL);
4337 boot_order = qemu_opt_get(opts, "order");
4339 validate_bootdevices(boot_order, &error_fatal);
4342 boot_once = qemu_opt_get(opts, "once");
4344 validate_bootdevices(boot_once, &error_fatal);
4347 boot_menu = qemu_opt_get_bool(opts, "menu", boot_menu);
4348 boot_strict = qemu_opt_get_bool(opts, "strict", false);
4352 boot_order = machine_class->default_boot_order;
4355 if (!kernel_cmdline) {
4356 kernel_cmdline = "";
4357 current_machine->kernel_cmdline = (char *)kernel_cmdline;
4360 linux_boot = (kernel_filename != NULL);
4362 if (!linux_boot && *kernel_cmdline != '\0') {
4363 error_report("-append only allowed with -kernel option");
4367 if (!linux_boot && initrd_filename != NULL) {
4368 error_report("-initrd only allowed with -kernel option");
4372 if (!linux_boot && qemu_opt_get(machine_opts, "dtb")) {
4373 error_report("-dtb only allowed with -kernel option");
4377 if (semihosting_enabled() && !semihosting_get_argc() && kernel_filename) {
4378 /* fall back to the -kernel/-append */
4379 semihosting_arg_fallback(kernel_filename, kernel_cmdline);
4382 os_set_line_buffering();
4385 /* spice needs the timers to be initialized by this point */
4391 if (kvm_enabled() || xen_enabled()) {
4392 error_report("-icount is not allowed with kvm or xen");
4395 configure_icount(icount_opts, &error_abort);
4396 qemu_opts_del(icount_opts);
4399 /* clean up network at qemu process termination */
4400 atexit(&net_cleanup);
4402 if (net_init_clients() < 0) {
4406 if (qemu_opts_foreach(qemu_find_opts("object"),
4408 object_create_delayed, NULL)) {
4413 if (tpm_init() < 0) {
4418 /* init the bluetooth world */
4419 if (foreach_device_config(DEV_BT, bt_parse))
4422 if (!xen_enabled()) {
4423 /* On 32-bit hosts, QEMU is limited by virtual address space */
4424 if (ram_size > (2047 << 20) && HOST_LONG_BITS == 32) {
4425 error_report("at most 2047 MB RAM can be simulated");
4433 /* If the currently selected machine wishes to override the units-per-bus
4434 * property of its default HBA interface type, do so now. */
4435 if (machine_class->units_per_default_bus) {
4436 override_max_devs(machine_class->block_default_type,
4437 machine_class->units_per_default_bus);
4440 /* open the virtual block devices */
4441 if (snapshot || replay_mode != REPLAY_MODE_NONE) {
4442 qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot,
4445 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func,
4446 &machine_class->block_default_type, NULL)) {
4450 default_drive(default_cdrom, snapshot, machine_class->block_default_type, 2,
4452 default_drive(default_floppy, snapshot, IF_FLOPPY, 0, FD_OPTS);
4453 default_drive(default_sdcard, snapshot, IF_SD, 0, SD_OPTS);
4455 parse_numa_opts(machine_class);
4457 if (qemu_opts_foreach(qemu_find_opts("mon"),
4458 mon_init_func, NULL, NULL)) {
4462 if (foreach_device_config(DEV_SERIAL, serial_parse) < 0)
4464 if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0)
4466 if (foreach_device_config(DEV_VIRTCON, virtcon_parse) < 0)
4468 if (foreach_device_config(DEV_SCLP, sclp_parse) < 0) {
4471 if (foreach_device_config(DEV_DEBUGCON, debugcon_parse) < 0)
4474 /* If no default VGA is requested, the default is "none". */
4476 if (machine_class->default_display) {
4477 vga_model = machine_class->default_display;
4478 } else if (cirrus_vga_available()) {
4479 vga_model = "cirrus";
4480 } else if (vga_available()) {
4485 select_vgahw(vga_model);
4489 i = select_watchdog(watchdog);
4491 exit (i == 1 ? 1 : 0);
4494 if (machine_class->compat_props) {
4495 qdev_prop_register_global_list(machine_class->compat_props);
4499 /* This checkpoint is required by replay to separate prior clock
4500 reading from the other reads, because timer polling functions query
4501 clock values from the log. */
4502 replay_checkpoint(CHECKPOINT_INIT);
4503 qdev_machine_init();
4505 current_machine->ram_size = ram_size;
4506 current_machine->maxram_size = maxram_size;
4507 current_machine->ram_slots = ram_slots;
4508 current_machine->boot_order = boot_order;
4509 current_machine->cpu_model = cpu_model;
4511 machine_class->init(current_machine);
4517 cpu_synchronize_all_post_init();
4519 numa_post_machine_init();
4521 if (qemu_opts_foreach(qemu_find_opts("fw_cfg"),
4522 parse_fw_cfg, fw_cfg_find(), NULL) != 0) {
4526 /* init USB devices */
4527 if (usb_enabled()) {
4528 if (foreach_device_config(DEV_USB, usb_parse) < 0)
4532 /* Check if IGD GFX passthrough. */
4535 /* init generic devices */
4536 if (qemu_opts_foreach(qemu_find_opts("device"),
4537 device_init_func, NULL, NULL)) {
4541 /* Did we create any drives that we failed to create a device for? */
4542 drive_check_orphaned();
4544 net_check_clients();
4547 Error *local_err = NULL;
4548 qemu_boot_set(boot_once, &local_err);
4550 error_report_err(local_err);
4553 qemu_register_reset(restore_boot_order, g_strdup(boot_order));
4556 ds = init_displaystate();
4558 /* init local displays */
4559 switch (display_type) {
4561 (void)ds; /* avoid warning if no display is configured */
4563 #if defined(CONFIG_CURSES)
4565 curses_display_init(ds, full_screen);
4568 #if defined(CONFIG_SDL)
4570 sdl_display_init(ds, full_screen, no_frame);
4572 #elif defined(CONFIG_COCOA)
4574 cocoa_display_init(ds, full_screen);
4577 #if defined(CONFIG_GTK)
4579 gtk_display_init(ds, full_screen, grab_on_hover);
4586 /* must be after terminal init, SDL library changes signal handlers */
4587 os_setup_signal_handling();
4590 /* init remote displays */
4591 qemu_opts_foreach(qemu_find_opts("vnc"),
4592 vnc_init_func, NULL, NULL);
4593 if (show_vnc_port) {
4594 char *ret = vnc_display_local_addr("default");
4595 printf("VNC server running on '%s'\n", ret);
4601 qemu_spice_display_init();
4605 if (foreach_device_config(DEV_GDB, gdbserver_start) < 0) {
4609 qdev_machine_creation_done();
4611 /* TODO: once all bus devices are qdevified, this should be done
4612 * when bus is created by qdev.c */
4613 qemu_register_reset(qbus_reset_all_fn, sysbus_get_default());
4614 qemu_run_machine_init_done_notifiers();
4616 if (rom_check_and_register_reset() != 0) {
4617 error_report("rom check and register reset failed");
4623 /* This checkpoint is required by replay to separate prior clock
4624 reading from the other reads, because timer polling functions query
4625 clock values from the log. */
4626 replay_checkpoint(CHECKPOINT_RESET);
4627 qemu_system_reset(VMRESET_SILENT);
4628 register_global_state();
4630 if (load_vmstate(loadvm) < 0) {
4635 qdev_prop_check_globals();
4636 if (vmstate_dump_file) {
4638 dump_vmstate_json_to_file(vmstate_dump_file);
4643 Error *local_err = NULL;
4644 qemu_start_incoming_migration(incoming, &local_err);
4646 error_reportf_err(local_err, "-incoming %s: ", incoming);
4649 } else if (autostart) {
4655 if (is_daemonized()) {
4656 if (!trace_init_backends(trace_events, trace_file)) {
4662 replay_disable_events();