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/sockets.h"
63 #include "hw/boards.h"
64 #include "sysemu/accel.h"
66 #include "hw/i386/pc.h"
67 #include "hw/isa/isa.h"
69 #include "sysemu/watchdog.h"
70 #include "hw/i386/smbios.h"
71 #include "hw/xen/xen.h"
73 #include "hw/loader.h"
74 #include "monitor/qdev.h"
75 #include "sysemu/bt.h"
77 #include "net/slirp.h"
78 #include "monitor/monitor.h"
79 #include "ui/console.h"
80 #include "sysemu/sysemu.h"
81 #include "exec/gdbstub.h"
82 #include "qemu/timer.h"
83 #include "sysemu/char.h"
84 #include "qemu/bitmap.h"
85 #include "sysemu/blockdev.h"
86 #include "hw/block/block.h"
87 #include "migration/block.h"
88 #include "sysemu/tpm.h"
89 #include "sysemu/dma.h"
90 #include "audio/audio.h"
91 #include "migration/migration.h"
92 #include "sysemu/kvm.h"
93 #include "qapi/qmp/qjson.h"
94 #include "qemu/option.h"
95 #include "qemu/config-file.h"
96 #include "qemu-options.h"
97 #include "qmp-commands.h"
98 #include "qemu/main-loop.h"
100 #include "fsdev/qemu-fsdev.h"
102 #include "sysemu/qtest.h"
104 #include "disas/disas.h"
107 #include "slirp/libslirp.h"
110 #include "trace/control.h"
111 #include "qemu/queue.h"
112 #include "sysemu/cpus.h"
113 #include "sysemu/arch_init.h"
114 #include "qemu/osdep.h"
116 #include "ui/qemu-spice.h"
117 #include "qapi/string-input-visitor.h"
118 #include "qapi/opts-visitor.h"
119 #include "qom/object_interfaces.h"
120 #include "qapi-event.h"
122 #define DEFAULT_RAM_SIZE 128
124 #define MAX_VIRTIO_CONSOLES 1
125 #define MAX_SCLP_CONSOLES 1
127 static const char *data_dir
[16];
128 static int data_dir_idx
;
129 const char *bios_name
= NULL
;
130 enum vga_retrace_method vga_retrace_method
= VGA_RETRACE_DUMB
;
131 DisplayType display_type
= DT_DEFAULT
;
132 static int display_remote
;
133 const char* keyboard_layout
= NULL
;
135 const char *mem_path
= NULL
;
136 int mem_prealloc
= 0; /* force preallocation of physical target memory */
137 bool enable_mlock
= false;
139 NICInfo nd_table
[MAX_NICS
];
141 static int rtc_utc
= 1;
142 static int rtc_date_offset
= -1; /* -1 means no change */
143 QEMUClockType rtc_clock
;
144 int vga_interface_type
= VGA_NONE
;
145 static int full_screen
= 0;
146 static int no_frame
= 0;
149 static bool grab_on_hover
;
151 CharDriverState
*serial_hds
[MAX_SERIAL_PORTS
];
152 CharDriverState
*parallel_hds
[MAX_PARALLEL_PORTS
];
153 CharDriverState
*virtcon_hds
[MAX_VIRTIO_CONSOLES
];
154 CharDriverState
*sclp_hds
[MAX_SCLP_CONSOLES
];
155 int win2k_install_hack
= 0;
162 const char *vnc_display
;
164 int acpi_enabled
= 1;
167 static int no_reboot
;
170 int graphic_rotate
= 0;
171 const char *watchdog
;
172 QEMUOptionRom option_rom
[MAX_OPTION_ROMS
];
174 int semihosting_enabled
= 0;
176 const char *qemu_name
;
179 unsigned int nb_prom_envs
= 0;
180 const char *prom_envs
[MAX_PROM_ENVS
];
183 uint8_t *boot_splash_filedata
;
184 size_t boot_splash_filedata_size
;
185 uint8_t qemu_extra_params_fw
[2];
187 int icount_align_option
;
191 NodeInfo numa_info
[MAX_NODES
];
193 /* The bytes in qemu_uuid[] are in the order specified by RFC4122, _not_ in the
194 * little-endian "wire format" described in the SMBIOS 2.6 specification.
196 uint8_t qemu_uuid
[16];
199 static QEMUBootSetHandler
*boot_set_handler
;
200 static void *boot_set_opaque
;
202 static NotifierList exit_notifiers
=
203 NOTIFIER_LIST_INITIALIZER(exit_notifiers
);
205 static NotifierList machine_init_done_notifiers
=
206 NOTIFIER_LIST_INITIALIZER(machine_init_done_notifiers
);
210 enum xen_mode xen_mode
= XEN_EMULATE
;
212 static int has_defaults
= 1;
213 static int default_serial
= 1;
214 static int default_parallel
= 1;
215 static int default_virtcon
= 1;
216 static int default_sclp
= 1;
217 static int default_monitor
= 1;
218 static int default_floppy
= 1;
219 static int default_cdrom
= 1;
220 static int default_sdcard
= 1;
221 static int default_vga
= 1;
227 { .driver
= "isa-serial", .flag
= &default_serial
},
228 { .driver
= "isa-parallel", .flag
= &default_parallel
},
229 { .driver
= "isa-fdc", .flag
= &default_floppy
},
230 { .driver
= "ide-cd", .flag
= &default_cdrom
},
231 { .driver
= "ide-hd", .flag
= &default_cdrom
},
232 { .driver
= "ide-drive", .flag
= &default_cdrom
},
233 { .driver
= "scsi-cd", .flag
= &default_cdrom
},
234 { .driver
= "virtio-serial-pci", .flag
= &default_virtcon
},
235 { .driver
= "virtio-serial-s390", .flag
= &default_virtcon
},
236 { .driver
= "virtio-serial", .flag
= &default_virtcon
},
237 { .driver
= "VGA", .flag
= &default_vga
},
238 { .driver
= "isa-vga", .flag
= &default_vga
},
239 { .driver
= "cirrus-vga", .flag
= &default_vga
},
240 { .driver
= "isa-cirrus-vga", .flag
= &default_vga
},
241 { .driver
= "vmware-svga", .flag
= &default_vga
},
242 { .driver
= "qxl-vga", .flag
= &default_vga
},
245 static QemuOptsList qemu_rtc_opts
= {
247 .head
= QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts
.head
),
251 .type
= QEMU_OPT_STRING
,
254 .type
= QEMU_OPT_STRING
,
257 .type
= QEMU_OPT_STRING
,
259 { /* end of list */ }
263 static QemuOptsList qemu_sandbox_opts
= {
265 .implied_opt_name
= "enable",
266 .head
= QTAILQ_HEAD_INITIALIZER(qemu_sandbox_opts
.head
),
270 .type
= QEMU_OPT_BOOL
,
272 { /* end of list */ }
276 static QemuOptsList qemu_trace_opts
= {
278 .implied_opt_name
= "trace",
279 .head
= QTAILQ_HEAD_INITIALIZER(qemu_trace_opts
.head
),
283 .type
= QEMU_OPT_STRING
,
286 .type
= QEMU_OPT_STRING
,
288 { /* end of list */ }
292 static QemuOptsList qemu_option_rom_opts
= {
293 .name
= "option-rom",
294 .implied_opt_name
= "romfile",
295 .head
= QTAILQ_HEAD_INITIALIZER(qemu_option_rom_opts
.head
),
299 .type
= QEMU_OPT_NUMBER
,
302 .type
= QEMU_OPT_STRING
,
304 { /* end of list */ }
308 static QemuOptsList qemu_machine_opts
= {
310 .implied_opt_name
= "type",
312 .head
= QTAILQ_HEAD_INITIALIZER(qemu_machine_opts
.head
),
316 .type
= QEMU_OPT_STRING
,
317 .help
= "emulated machine"
320 .type
= QEMU_OPT_STRING
,
321 .help
= "accelerator list",
323 .name
= "kernel_irqchip",
324 .type
= QEMU_OPT_BOOL
,
325 .help
= "use KVM in-kernel irqchip",
327 .name
= "kvm_shadow_mem",
328 .type
= QEMU_OPT_SIZE
,
329 .help
= "KVM shadow MMU size",
332 .type
= QEMU_OPT_STRING
,
333 .help
= "Linux kernel image file",
336 .type
= QEMU_OPT_STRING
,
337 .help
= "Linux initial ramdisk file",
340 .type
= QEMU_OPT_STRING
,
341 .help
= "Linux kernel command line",
344 .type
= QEMU_OPT_STRING
,
345 .help
= "Linux kernel device tree file",
348 .type
= QEMU_OPT_STRING
,
349 .help
= "Dump current dtb to a file and quit",
351 .name
= "phandle_start",
352 .type
= QEMU_OPT_NUMBER
,
353 .help
= "The first phandle ID we may generate dynamically",
355 .name
= "dt_compatible",
356 .type
= QEMU_OPT_STRING
,
357 .help
= "Overrides the \"compatible\" property of the dt root node",
359 .name
= "dump-guest-core",
360 .type
= QEMU_OPT_BOOL
,
361 .help
= "Include guest memory in a core dump",
364 .type
= QEMU_OPT_BOOL
,
365 .help
= "enable/disable memory merge support",
368 .type
= QEMU_OPT_BOOL
,
369 .help
= "Set on/off to enable/disable usb",
372 .type
= QEMU_OPT_STRING
,
373 .help
= "firmware image",
376 .type
= QEMU_OPT_STRING
,
377 .help
= "Specifies the KVM virtualization mode (HV, PR)",
379 .name
= PC_MACHINE_MAX_RAM_BELOW_4G
,
380 .type
= QEMU_OPT_SIZE
,
381 .help
= "maximum ram below the 4G boundary (32bit boundary)",
383 .name
= PC_MACHINE_VMPORT
,
384 .type
= QEMU_OPT_BOOL
,
385 .help
= "Enable vmport (pc & q35)",
388 .type
= QEMU_OPT_BOOL
,
389 .help
= "Set on/off to enable/disable Intel IOMMU (VT-d)",
391 { /* End of list */ }
395 static QemuOptsList qemu_boot_opts
= {
397 .implied_opt_name
= "order",
399 .head
= QTAILQ_HEAD_INITIALIZER(qemu_boot_opts
.head
),
403 .type
= QEMU_OPT_STRING
,
406 .type
= QEMU_OPT_STRING
,
409 .type
= QEMU_OPT_BOOL
,
412 .type
= QEMU_OPT_STRING
,
414 .name
= "splash-time",
415 .type
= QEMU_OPT_STRING
,
417 .name
= "reboot-timeout",
418 .type
= QEMU_OPT_STRING
,
421 .type
= QEMU_OPT_BOOL
,
427 static QemuOptsList qemu_add_fd_opts
= {
429 .head
= QTAILQ_HEAD_INITIALIZER(qemu_add_fd_opts
.head
),
433 .type
= QEMU_OPT_NUMBER
,
434 .help
= "file descriptor of which a duplicate is added to fd set",
437 .type
= QEMU_OPT_NUMBER
,
438 .help
= "ID of the fd set to add fd to",
441 .type
= QEMU_OPT_STRING
,
442 .help
= "free-form string used to describe fd",
444 { /* end of list */ }
448 static QemuOptsList qemu_object_opts
= {
450 .implied_opt_name
= "qom-type",
451 .head
= QTAILQ_HEAD_INITIALIZER(qemu_object_opts
.head
),
457 static QemuOptsList qemu_tpmdev_opts
= {
459 .implied_opt_name
= "type",
460 .head
= QTAILQ_HEAD_INITIALIZER(qemu_tpmdev_opts
.head
),
462 /* options are defined in the TPM backends */
463 { /* end of list */ }
467 static QemuOptsList qemu_realtime_opts
= {
469 .head
= QTAILQ_HEAD_INITIALIZER(qemu_realtime_opts
.head
),
473 .type
= QEMU_OPT_BOOL
,
475 { /* end of list */ }
479 static QemuOptsList qemu_msg_opts
= {
481 .head
= QTAILQ_HEAD_INITIALIZER(qemu_msg_opts
.head
),
485 .type
= QEMU_OPT_BOOL
,
487 { /* end of list */ }
491 static QemuOptsList qemu_name_opts
= {
493 .implied_opt_name
= "guest",
495 .head
= QTAILQ_HEAD_INITIALIZER(qemu_name_opts
.head
),
499 .type
= QEMU_OPT_STRING
,
500 .help
= "Sets the name of the guest.\n"
501 "This name will be displayed in the SDL window caption.\n"
502 "The name will also be used for the VNC server",
505 .type
= QEMU_OPT_STRING
,
506 .help
= "Sets the name of the QEMU process, as shown in top etc",
508 .name
= "debug-threads",
509 .type
= QEMU_OPT_BOOL
,
510 .help
= "When enabled, name the individual threads; defaults off.\n"
511 "NOTE: The thread names are for debugging and not a\n"
514 { /* End of list */ }
518 static QemuOptsList qemu_mem_opts
= {
520 .implied_opt_name
= "size",
521 .head
= QTAILQ_HEAD_INITIALIZER(qemu_mem_opts
.head
),
526 .type
= QEMU_OPT_SIZE
,
530 .type
= QEMU_OPT_NUMBER
,
534 .type
= QEMU_OPT_SIZE
,
536 { /* end of list */ }
540 static QemuOptsList qemu_icount_opts
= {
542 .implied_opt_name
= "shift",
544 .head
= QTAILQ_HEAD_INITIALIZER(qemu_icount_opts
.head
),
548 .type
= QEMU_OPT_STRING
,
551 .type
= QEMU_OPT_BOOL
,
553 { /* end of list */ }
558 * Get machine options
560 * Returns: machine options (never null).
562 QemuOpts
*qemu_get_machine_opts(void)
564 return qemu_find_opts_singleton("machine");
567 const char *qemu_get_vm_name(void)
572 static void res_free(void)
574 if (boot_splash_filedata
!= NULL
) {
575 g_free(boot_splash_filedata
);
576 boot_splash_filedata
= NULL
;
580 static int default_driver_check(QemuOpts
*opts
, void *opaque
)
582 const char *driver
= qemu_opt_get(opts
, "driver");
587 for (i
= 0; i
< ARRAY_SIZE(default_list
); i
++) {
588 if (strcmp(default_list
[i
].driver
, driver
) != 0)
590 *(default_list
[i
].flag
) = 0;
595 /***********************************************************/
598 static RunState current_run_state
= RUN_STATE_PRELAUNCH
;
600 /* We use RUN_STATE_MAX but any invalid value will do */
601 static RunState vmstop_requested
= RUN_STATE_MAX
;
602 static QemuMutex vmstop_lock
;
607 } RunStateTransition
;
609 static const RunStateTransition runstate_transitions_def
[] = {
611 { RUN_STATE_DEBUG
, RUN_STATE_RUNNING
},
612 { RUN_STATE_DEBUG
, RUN_STATE_FINISH_MIGRATE
},
614 { RUN_STATE_INMIGRATE
, RUN_STATE_RUNNING
},
615 { RUN_STATE_INMIGRATE
, RUN_STATE_PAUSED
},
617 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_PAUSED
},
618 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_FINISH_MIGRATE
},
620 { RUN_STATE_IO_ERROR
, RUN_STATE_RUNNING
},
621 { RUN_STATE_IO_ERROR
, RUN_STATE_FINISH_MIGRATE
},
623 { RUN_STATE_PAUSED
, RUN_STATE_RUNNING
},
624 { RUN_STATE_PAUSED
, RUN_STATE_FINISH_MIGRATE
},
626 { RUN_STATE_POSTMIGRATE
, RUN_STATE_RUNNING
},
627 { RUN_STATE_POSTMIGRATE
, RUN_STATE_FINISH_MIGRATE
},
629 { RUN_STATE_PRELAUNCH
, RUN_STATE_RUNNING
},
630 { RUN_STATE_PRELAUNCH
, RUN_STATE_FINISH_MIGRATE
},
631 { RUN_STATE_PRELAUNCH
, RUN_STATE_INMIGRATE
},
633 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_RUNNING
},
634 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_POSTMIGRATE
},
636 { RUN_STATE_RESTORE_VM
, RUN_STATE_RUNNING
},
638 { RUN_STATE_RUNNING
, RUN_STATE_DEBUG
},
639 { RUN_STATE_RUNNING
, RUN_STATE_INTERNAL_ERROR
},
640 { RUN_STATE_RUNNING
, RUN_STATE_IO_ERROR
},
641 { RUN_STATE_RUNNING
, RUN_STATE_PAUSED
},
642 { RUN_STATE_RUNNING
, RUN_STATE_FINISH_MIGRATE
},
643 { RUN_STATE_RUNNING
, RUN_STATE_RESTORE_VM
},
644 { RUN_STATE_RUNNING
, RUN_STATE_SAVE_VM
},
645 { RUN_STATE_RUNNING
, RUN_STATE_SHUTDOWN
},
646 { RUN_STATE_RUNNING
, RUN_STATE_WATCHDOG
},
647 { RUN_STATE_RUNNING
, RUN_STATE_GUEST_PANICKED
},
649 { RUN_STATE_SAVE_VM
, RUN_STATE_RUNNING
},
651 { RUN_STATE_SHUTDOWN
, RUN_STATE_PAUSED
},
652 { RUN_STATE_SHUTDOWN
, RUN_STATE_FINISH_MIGRATE
},
654 { RUN_STATE_DEBUG
, RUN_STATE_SUSPENDED
},
655 { RUN_STATE_RUNNING
, RUN_STATE_SUSPENDED
},
656 { RUN_STATE_SUSPENDED
, RUN_STATE_RUNNING
},
657 { RUN_STATE_SUSPENDED
, RUN_STATE_FINISH_MIGRATE
},
659 { RUN_STATE_WATCHDOG
, RUN_STATE_RUNNING
},
660 { RUN_STATE_WATCHDOG
, RUN_STATE_FINISH_MIGRATE
},
662 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_RUNNING
},
663 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_FINISH_MIGRATE
},
665 { RUN_STATE_MAX
, RUN_STATE_MAX
},
668 static bool runstate_valid_transitions
[RUN_STATE_MAX
][RUN_STATE_MAX
];
670 bool runstate_check(RunState state
)
672 return current_run_state
== state
;
675 static void runstate_init(void)
677 const RunStateTransition
*p
;
679 memset(&runstate_valid_transitions
, 0, sizeof(runstate_valid_transitions
));
680 for (p
= &runstate_transitions_def
[0]; p
->from
!= RUN_STATE_MAX
; p
++) {
681 runstate_valid_transitions
[p
->from
][p
->to
] = true;
684 qemu_mutex_init(&vmstop_lock
);
687 /* This function will abort() on invalid state transitions */
688 void runstate_set(RunState new_state
)
690 assert(new_state
< RUN_STATE_MAX
);
692 if (!runstate_valid_transitions
[current_run_state
][new_state
]) {
693 fprintf(stderr
, "ERROR: invalid runstate transition: '%s' -> '%s'\n",
694 RunState_lookup
[current_run_state
],
695 RunState_lookup
[new_state
]);
698 trace_runstate_set(new_state
);
699 current_run_state
= new_state
;
702 int runstate_is_running(void)
704 return runstate_check(RUN_STATE_RUNNING
);
707 bool runstate_needs_reset(void)
709 return runstate_check(RUN_STATE_INTERNAL_ERROR
) ||
710 runstate_check(RUN_STATE_SHUTDOWN
);
713 StatusInfo
*qmp_query_status(Error
**errp
)
715 StatusInfo
*info
= g_malloc0(sizeof(*info
));
717 info
->running
= runstate_is_running();
718 info
->singlestep
= singlestep
;
719 info
->status
= current_run_state
;
724 static bool qemu_vmstop_requested(RunState
*r
)
726 qemu_mutex_lock(&vmstop_lock
);
727 *r
= vmstop_requested
;
728 vmstop_requested
= RUN_STATE_MAX
;
729 qemu_mutex_unlock(&vmstop_lock
);
730 return *r
< RUN_STATE_MAX
;
733 void qemu_system_vmstop_request_prepare(void)
735 qemu_mutex_lock(&vmstop_lock
);
738 void qemu_system_vmstop_request(RunState state
)
740 vmstop_requested
= state
;
741 qemu_mutex_unlock(&vmstop_lock
);
749 qemu_vmstop_requested(&requested
);
750 if (runstate_is_running() && requested
== RUN_STATE_MAX
) {
754 /* Ensure that a STOP/RESUME pair of events is emitted if a
755 * vmstop request was pending. The BLOCK_IO_ERROR event, for
756 * example, according to documentation is always followed by
759 if (runstate_is_running()) {
760 qapi_event_send_stop(&error_abort
);
763 runstate_set(RUN_STATE_RUNNING
);
764 vm_state_notify(1, RUN_STATE_RUNNING
);
768 qapi_event_send_resume(&error_abort
);
772 /***********************************************************/
773 /* real time host monotonic timer */
775 /***********************************************************/
776 /* host time/date access */
777 void qemu_get_timedate(struct tm
*tm
, int offset
)
783 if (rtc_date_offset
== -1) {
787 localtime_r(&ti
, tm
);
789 ti
-= rtc_date_offset
;
794 int qemu_timedate_diff(struct tm
*tm
)
798 if (rtc_date_offset
== -1)
800 seconds
= mktimegm(tm
);
803 tmp
.tm_isdst
= -1; /* use timezone to figure it out */
804 seconds
= mktime(&tmp
);
807 seconds
= mktimegm(tm
) + rtc_date_offset
;
809 return seconds
- time(NULL
);
812 static void configure_rtc_date_offset(const char *startdate
, int legacy
)
814 time_t rtc_start_date
;
817 if (!strcmp(startdate
, "now") && legacy
) {
818 rtc_date_offset
= -1;
820 if (sscanf(startdate
, "%d-%d-%dT%d:%d:%d",
828 } else if (sscanf(startdate
, "%d-%d-%d",
840 rtc_start_date
= mktimegm(&tm
);
841 if (rtc_start_date
== -1) {
843 fprintf(stderr
, "Invalid date format. Valid formats are:\n"
844 "'2006-06-17T16:01:21' or '2006-06-17'\n");
847 rtc_date_offset
= time(NULL
) - rtc_start_date
;
851 static void configure_rtc(QemuOpts
*opts
)
855 value
= qemu_opt_get(opts
, "base");
857 if (!strcmp(value
, "utc")) {
859 } else if (!strcmp(value
, "localtime")) {
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 fprintf(stderr
, "qemu: invalid option value '%s'\n", 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 fprintf(stderr
, "qemu: invalid option value '%s'\n", 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 fprintf(stderr
, "qemu: Too many bluetooth HCIs (max %i).\n", 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 fprintf(stderr
, "qemu: warning: adding a VHCI to "
947 "an empty scatternet %i\n", vlan_id
);
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 fprintf(stderr
, "qemu: unrecognised bluetooth vlan Id\n");
970 vlan
= qemu_find_bt_vlan(vlan_id
);
973 fprintf(stderr
, "qemu: warning: adding a slave device to "
974 "an empty scatternet %i\n", vlan_id
);
976 if (!strcmp(devname
, "keyboard"))
977 return bt_keyboard_init(vlan
);
979 fprintf(stderr
, "qemu: unsupported bluetooth device `%s'\n", 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 fprintf(stderr
, "qemu: bad scatternet '%s'\n", p
);
1006 fprintf(stderr
, "qemu: bad parameter '%s'\n", endp
+ 1);
1015 } else if (strstart(opt
, "device:", &endp
))
1016 return !bt_device_add(endp
);
1018 fprintf(stderr
, "qemu: bad bluetooth parameter '%s'\n", opt
);
1022 static int parse_sandbox(QemuOpts
*opts
, void *opaque
)
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 qerror_report(ERROR_CLASS_GENERIC_ERROR
,
1029 "failed to install seccomp syscall filter in the kernel");
1033 qerror_report(ERROR_CLASS_GENERIC_ERROR
,
1034 "sandboxing request but seccomp is not compiled into this build");
1042 static int parse_name(QemuOpts
*opts
, void *opaque
)
1044 const char *proc_name
;
1046 if (qemu_opt_get(opts
, "debug-threads")) {
1047 qemu_thread_naming(qemu_opt_get_bool(opts
, "debug-threads", false));
1049 qemu_name
= qemu_opt_get(opts
, "guest");
1051 proc_name
= qemu_opt_get(opts
, "process");
1053 os_set_proc_name(proc_name
);
1059 bool usb_enabled(bool default_usb
)
1061 return qemu_opt_get_bool(qemu_get_machine_opts(), "usb",
1062 has_defaults
&& default_usb
);
1066 static int parse_add_fd(QemuOpts
*opts
, void *opaque
)
1068 int fd
, dupfd
, flags
;
1070 const char *fd_opaque
= NULL
;
1072 fd
= qemu_opt_get_number(opts
, "fd", -1);
1073 fdset_id
= qemu_opt_get_number(opts
, "set", -1);
1074 fd_opaque
= qemu_opt_get(opts
, "opaque");
1077 qerror_report(ERROR_CLASS_GENERIC_ERROR
,
1078 "fd option is required and must be non-negative");
1082 if (fd
<= STDERR_FILENO
) {
1083 qerror_report(ERROR_CLASS_GENERIC_ERROR
,
1084 "fd cannot be a standard I/O stream");
1089 * All fds inherited across exec() necessarily have FD_CLOEXEC
1090 * clear, while qemu sets FD_CLOEXEC on all other fds used internally.
1092 flags
= fcntl(fd
, F_GETFD
);
1093 if (flags
== -1 || (flags
& FD_CLOEXEC
)) {
1094 qerror_report(ERROR_CLASS_GENERIC_ERROR
,
1095 "fd is not valid or already in use");
1100 qerror_report(ERROR_CLASS_GENERIC_ERROR
,
1101 "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 qerror_report(ERROR_CLASS_GENERIC_ERROR
,
1115 "Error duplicating fd: %s", strerror(errno
));
1119 /* add the duplicate fd, and optionally the opaque string, to the fd set */
1120 monitor_fdset_add_fd(dupfd
, true, fdset_id
, fd_opaque
? true : false,
1126 static int cleanup_add_fd(QemuOpts
*opts
, void *opaque
)
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(QemuOpts
*opts
, void *opaque
)
1149 BlockInterfaceType
*block_default_type
= opaque
;
1151 return drive_new(opts
, *block_default_type
) == NULL
;
1154 static int drive_enable_snapshot(QemuOpts
*opts
, void *opaque
)
1156 if (qemu_opt_get(opts
, "snapshot") == NULL
) {
1157 qemu_opt_set(opts
, "snapshot", "on");
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(opts
, NULL
);
1177 dinfo
= drive_new(opts
, type
);
1181 dinfo
->is_default
= true;
1185 void qemu_register_boot_set(QEMUBootSetHandler
*func
, void *opaque
)
1187 boot_set_handler
= func
;
1188 boot_set_opaque
= opaque
;
1191 int qemu_boot_set(const char *boot_order
)
1193 if (!boot_set_handler
) {
1196 return boot_set_handler(boot_set_opaque
, boot_order
);
1199 static void validate_bootdevices(const char *devices
)
1201 /* We just do some generic consistency checks */
1205 for (p
= devices
; *p
!= '\0'; p
++) {
1206 /* Allowed boot devices are:
1207 * a-b: floppy disk drives
1208 * c-f: IDE disk drives
1209 * g-m: machine implementation dependent drives
1210 * n-p: network devices
1211 * It's up to each machine implementation to check if the given boot
1212 * devices match the actual hardware implementation and firmware
1215 if (*p
< 'a' || *p
> 'p') {
1216 fprintf(stderr
, "Invalid boot device '%c'\n", *p
);
1219 if (bitmap
& (1 << (*p
- 'a'))) {
1220 fprintf(stderr
, "Boot device '%c' was given twice\n", *p
);
1223 bitmap
|= 1 << (*p
- 'a');
1227 static void restore_boot_order(void *opaque
)
1229 char *normal_boot_order
= opaque
;
1230 static int first
= 1;
1232 /* Restore boot order and remove ourselves after the first boot */
1238 qemu_boot_set(normal_boot_order
);
1240 qemu_unregister_reset(restore_boot_order
, normal_boot_order
);
1241 g_free(normal_boot_order
);
1244 static QemuOptsList qemu_smp_opts
= {
1246 .implied_opt_name
= "cpus",
1247 .merge_lists
= true,
1248 .head
= QTAILQ_HEAD_INITIALIZER(qemu_smp_opts
.head
),
1252 .type
= QEMU_OPT_NUMBER
,
1255 .type
= QEMU_OPT_NUMBER
,
1258 .type
= QEMU_OPT_NUMBER
,
1261 .type
= QEMU_OPT_NUMBER
,
1264 .type
= QEMU_OPT_NUMBER
,
1266 { /*End of list */ }
1270 static void smp_parse(QemuOpts
*opts
)
1274 unsigned cpus
= qemu_opt_get_number(opts
, "cpus", 0);
1275 unsigned sockets
= qemu_opt_get_number(opts
, "sockets", 0);
1276 unsigned cores
= qemu_opt_get_number(opts
, "cores", 0);
1277 unsigned threads
= qemu_opt_get_number(opts
, "threads", 0);
1279 /* compute missing values, prefer sockets over cores over threads */
1280 if (cpus
== 0 || sockets
== 0) {
1281 sockets
= sockets
> 0 ? sockets
: 1;
1282 cores
= cores
> 0 ? cores
: 1;
1283 threads
= threads
> 0 ? threads
: 1;
1285 cpus
= cores
* threads
* sockets
;
1289 threads
= threads
> 0 ? threads
: 1;
1290 cores
= cpus
/ (sockets
* threads
);
1292 threads
= cpus
/ (cores
* sockets
);
1296 max_cpus
= qemu_opt_get_number(opts
, "maxcpus", 0);
1299 smp_cores
= cores
> 0 ? cores
: 1;
1300 smp_threads
= threads
> 0 ? threads
: 1;
1304 if (max_cpus
== 0) {
1305 max_cpus
= smp_cpus
;
1308 if (max_cpus
> MAX_CPUMASK_BITS
) {
1309 fprintf(stderr
, "Unsupported number of maxcpus\n");
1312 if (max_cpus
< smp_cpus
) {
1313 fprintf(stderr
, "maxcpus must be equal to or greater than smp\n");
1319 static void realtime_init(void)
1322 if (os_mlock() < 0) {
1323 fprintf(stderr
, "qemu: locking memory failed\n");
1330 static void configure_msg(QemuOpts
*opts
)
1332 enable_timestamp_msg
= qemu_opt_get_bool(opts
, "timestamp", true);
1335 /***********************************************************/
1338 static int usb_device_add(const char *devname
)
1340 USBDevice
*dev
= NULL
;
1341 #ifndef CONFIG_LINUX
1345 if (!usb_enabled(false)) {
1349 /* drivers with .usbdevice_name entry in USBDeviceInfo */
1350 dev
= usbdevice_create(devname
);
1354 /* the other ones */
1355 #ifndef CONFIG_LINUX
1356 /* only the linux version is qdev-ified, usb-bsd still needs this */
1357 if (strstart(devname
, "host:", &p
)) {
1358 dev
= usb_host_device_open(usb_bus_find(-1), p
);
1368 static int usb_device_del(const char *devname
)
1373 if (strstart(devname
, "host:", &p
)) {
1377 if (!usb_enabled(false)) {
1381 p
= strchr(devname
, '.');
1384 bus_num
= strtoul(devname
, NULL
, 0);
1385 addr
= strtoul(p
+ 1, NULL
, 0);
1387 return usb_device_delete_addr(bus_num
, addr
);
1390 static int usb_parse(const char *cmdline
)
1393 r
= usb_device_add(cmdline
);
1395 fprintf(stderr
, "qemu: could not add USB device '%s'\n", cmdline
);
1400 void do_usb_add(Monitor
*mon
, const QDict
*qdict
)
1402 const char *devname
= qdict_get_str(qdict
, "devname");
1403 if (usb_device_add(devname
) < 0) {
1404 error_report("could not add USB device '%s'", devname
);
1408 void do_usb_del(Monitor
*mon
, const QDict
*qdict
)
1410 const char *devname
= qdict_get_str(qdict
, "devname");
1411 if (usb_device_del(devname
) < 0) {
1412 error_report("could not delete USB device '%s'", devname
);
1416 /***********************************************************/
1417 /* machine registration */
1419 MachineState
*current_machine
;
1421 static void machine_class_init(ObjectClass
*oc
, void *data
)
1423 MachineClass
*mc
= MACHINE_CLASS(oc
);
1424 QEMUMachine
*qm
= data
;
1426 mc
->family
= qm
->family
;
1427 mc
->name
= qm
->name
;
1428 mc
->alias
= qm
->alias
;
1429 mc
->desc
= qm
->desc
;
1430 mc
->init
= qm
->init
;
1431 mc
->reset
= qm
->reset
;
1432 mc
->hot_add_cpu
= qm
->hot_add_cpu
;
1433 mc
->kvm_type
= qm
->kvm_type
;
1434 mc
->block_default_type
= qm
->block_default_type
;
1435 mc
->units_per_default_bus
= qm
->units_per_default_bus
;
1436 mc
->max_cpus
= qm
->max_cpus
;
1437 mc
->no_serial
= qm
->no_serial
;
1438 mc
->no_parallel
= qm
->no_parallel
;
1439 mc
->use_virtcon
= qm
->use_virtcon
;
1440 mc
->use_sclp
= qm
->use_sclp
;
1441 mc
->no_floppy
= qm
->no_floppy
;
1442 mc
->no_cdrom
= qm
->no_cdrom
;
1443 mc
->no_sdcard
= qm
->no_sdcard
;
1444 mc
->is_default
= qm
->is_default
;
1445 mc
->default_machine_opts
= qm
->default_machine_opts
;
1446 mc
->default_boot_order
= qm
->default_boot_order
;
1447 mc
->default_display
= qm
->default_display
;
1448 mc
->compat_props
= qm
->compat_props
;
1449 mc
->hw_version
= qm
->hw_version
;
1452 int qemu_register_machine(QEMUMachine
*m
)
1454 char *name
= g_strconcat(m
->name
, TYPE_MACHINE_SUFFIX
, NULL
);
1457 .parent
= TYPE_MACHINE
,
1458 .class_init
= machine_class_init
,
1459 .class_data
= (void *)m
,
1468 static MachineClass
*find_machine(const char *name
)
1470 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
1471 MachineClass
*mc
= NULL
;
1473 for (el
= machines
; el
; el
= el
->next
) {
1474 MachineClass
*temp
= el
->data
;
1476 if (!strcmp(temp
->name
, name
)) {
1481 !strcmp(temp
->alias
, name
)) {
1487 g_slist_free(machines
);
1491 MachineClass
*find_default_machine(void)
1493 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
1494 MachineClass
*mc
= NULL
;
1496 for (el
= machines
; el
; el
= el
->next
) {
1497 MachineClass
*temp
= el
->data
;
1499 if (temp
->is_default
) {
1505 g_slist_free(machines
);
1509 MachineInfoList
*qmp_query_machines(Error
**errp
)
1511 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
1512 MachineInfoList
*mach_list
= NULL
;
1514 for (el
= machines
; el
; el
= el
->next
) {
1515 MachineClass
*mc
= el
->data
;
1516 MachineInfoList
*entry
;
1519 info
= g_malloc0(sizeof(*info
));
1520 if (mc
->is_default
) {
1521 info
->has_is_default
= true;
1522 info
->is_default
= true;
1526 info
->has_alias
= true;
1527 info
->alias
= g_strdup(mc
->alias
);
1530 info
->name
= g_strdup(mc
->name
);
1531 info
->cpu_max
= !mc
->max_cpus
? 1 : mc
->max_cpus
;
1533 entry
= g_malloc0(sizeof(*entry
));
1534 entry
->value
= info
;
1535 entry
->next
= mach_list
;
1539 g_slist_free(machines
);
1543 /***********************************************************/
1544 /* main execution loop */
1546 struct vm_change_state_entry
{
1547 VMChangeStateHandler
*cb
;
1549 QLIST_ENTRY (vm_change_state_entry
) entries
;
1552 static QLIST_HEAD(vm_change_state_head
, vm_change_state_entry
) vm_change_state_head
;
1554 VMChangeStateEntry
*qemu_add_vm_change_state_handler(VMChangeStateHandler
*cb
,
1557 VMChangeStateEntry
*e
;
1559 e
= g_malloc0(sizeof (*e
));
1563 QLIST_INSERT_HEAD(&vm_change_state_head
, e
, entries
);
1567 void qemu_del_vm_change_state_handler(VMChangeStateEntry
*e
)
1569 QLIST_REMOVE (e
, entries
);
1573 void vm_state_notify(int running
, RunState state
)
1575 VMChangeStateEntry
*e
, *next
;
1577 trace_vm_state_notify(running
, state
);
1579 QLIST_FOREACH_SAFE(e
, &vm_change_state_head
, entries
, next
) {
1580 e
->cb(e
->opaque
, running
, state
);
1584 /* reset/shutdown handler */
1586 typedef struct QEMUResetEntry
{
1587 QTAILQ_ENTRY(QEMUResetEntry
) entry
;
1588 QEMUResetHandler
*func
;
1592 static QTAILQ_HEAD(reset_handlers
, QEMUResetEntry
) reset_handlers
=
1593 QTAILQ_HEAD_INITIALIZER(reset_handlers
);
1594 static int reset_requested
;
1595 static int shutdown_requested
, shutdown_signal
= -1;
1596 static pid_t shutdown_pid
;
1597 static int powerdown_requested
;
1598 static int debug_requested
;
1599 static int suspend_requested
;
1600 static WakeupReason wakeup_reason
;
1601 static NotifierList powerdown_notifiers
=
1602 NOTIFIER_LIST_INITIALIZER(powerdown_notifiers
);
1603 static NotifierList suspend_notifiers
=
1604 NOTIFIER_LIST_INITIALIZER(suspend_notifiers
);
1605 static NotifierList wakeup_notifiers
=
1606 NOTIFIER_LIST_INITIALIZER(wakeup_notifiers
);
1607 static uint32_t wakeup_reason_mask
= ~(1 << QEMU_WAKEUP_REASON_NONE
);
1609 int qemu_shutdown_requested_get(void)
1611 return shutdown_requested
;
1614 int qemu_reset_requested_get(void)
1616 return reset_requested
;
1619 static int qemu_shutdown_requested(void)
1621 return atomic_xchg(&shutdown_requested
, 0);
1624 static void qemu_kill_report(void)
1626 if (!qtest_driver() && shutdown_signal
!= -1) {
1627 fprintf(stderr
, "qemu: terminating on signal %d", shutdown_signal
);
1628 if (shutdown_pid
== 0) {
1629 /* This happens for eg ^C at the terminal, so it's worth
1630 * avoiding printing an odd message in that case.
1632 fputc('\n', stderr
);
1634 fprintf(stderr
, " from pid " FMT_pid
"\n", shutdown_pid
);
1636 shutdown_signal
= -1;
1640 static int qemu_reset_requested(void)
1642 int r
= reset_requested
;
1643 reset_requested
= 0;
1647 static int qemu_suspend_requested(void)
1649 int r
= suspend_requested
;
1650 suspend_requested
= 0;
1654 static WakeupReason
qemu_wakeup_requested(void)
1656 return wakeup_reason
;
1659 static int qemu_powerdown_requested(void)
1661 int r
= powerdown_requested
;
1662 powerdown_requested
= 0;
1666 static int qemu_debug_requested(void)
1668 int r
= debug_requested
;
1669 debug_requested
= 0;
1673 void qemu_register_reset(QEMUResetHandler
*func
, void *opaque
)
1675 QEMUResetEntry
*re
= g_malloc0(sizeof(QEMUResetEntry
));
1678 re
->opaque
= opaque
;
1679 QTAILQ_INSERT_TAIL(&reset_handlers
, re
, entry
);
1682 void qemu_unregister_reset(QEMUResetHandler
*func
, void *opaque
)
1686 QTAILQ_FOREACH(re
, &reset_handlers
, entry
) {
1687 if (re
->func
== func
&& re
->opaque
== opaque
) {
1688 QTAILQ_REMOVE(&reset_handlers
, re
, entry
);
1695 void qemu_devices_reset(void)
1697 QEMUResetEntry
*re
, *nre
;
1699 /* reset all devices */
1700 QTAILQ_FOREACH_SAFE(re
, &reset_handlers
, entry
, nre
) {
1701 re
->func(re
->opaque
);
1705 void qemu_system_reset(bool report
)
1709 mc
= current_machine
? MACHINE_GET_CLASS(current_machine
) : NULL
;
1711 if (mc
&& mc
->reset
) {
1714 qemu_devices_reset();
1717 qapi_event_send_reset(&error_abort
);
1719 cpu_synchronize_all_post_reset();
1722 void qemu_system_reset_request(void)
1725 shutdown_requested
= 1;
1727 reset_requested
= 1;
1730 qemu_notify_event();
1733 static void qemu_system_suspend(void)
1736 notifier_list_notify(&suspend_notifiers
, NULL
);
1737 runstate_set(RUN_STATE_SUSPENDED
);
1738 qapi_event_send_suspend(&error_abort
);
1741 void qemu_system_suspend_request(void)
1743 if (runstate_check(RUN_STATE_SUSPENDED
)) {
1746 suspend_requested
= 1;
1748 qemu_notify_event();
1751 void qemu_register_suspend_notifier(Notifier
*notifier
)
1753 notifier_list_add(&suspend_notifiers
, notifier
);
1756 void qemu_system_wakeup_request(WakeupReason reason
)
1758 trace_system_wakeup_request(reason
);
1760 if (!runstate_check(RUN_STATE_SUSPENDED
)) {
1763 if (!(wakeup_reason_mask
& (1 << reason
))) {
1766 runstate_set(RUN_STATE_RUNNING
);
1767 wakeup_reason
= reason
;
1768 qemu_notify_event();
1771 void qemu_system_wakeup_enable(WakeupReason reason
, bool enabled
)
1774 wakeup_reason_mask
|= (1 << reason
);
1776 wakeup_reason_mask
&= ~(1 << reason
);
1780 void qemu_register_wakeup_notifier(Notifier
*notifier
)
1782 notifier_list_add(&wakeup_notifiers
, notifier
);
1785 void qemu_system_killed(int signal
, pid_t pid
)
1787 shutdown_signal
= signal
;
1790 qemu_system_shutdown_request();
1793 void qemu_system_shutdown_request(void)
1795 trace_qemu_system_shutdown_request();
1796 shutdown_requested
= 1;
1797 qemu_notify_event();
1800 static void qemu_system_powerdown(void)
1802 qapi_event_send_powerdown(&error_abort
);
1803 notifier_list_notify(&powerdown_notifiers
, NULL
);
1806 void qemu_system_powerdown_request(void)
1808 trace_qemu_system_powerdown_request();
1809 powerdown_requested
= 1;
1810 qemu_notify_event();
1813 void qemu_register_powerdown_notifier(Notifier
*notifier
)
1815 notifier_list_add(&powerdown_notifiers
, notifier
);
1818 void qemu_system_debug_request(void)
1820 debug_requested
= 1;
1821 qemu_notify_event();
1824 static bool main_loop_should_exit(void)
1827 if (qemu_debug_requested()) {
1828 vm_stop(RUN_STATE_DEBUG
);
1830 if (qemu_suspend_requested()) {
1831 qemu_system_suspend();
1833 if (qemu_shutdown_requested()) {
1835 qapi_event_send_shutdown(&error_abort
);
1837 vm_stop(RUN_STATE_SHUTDOWN
);
1842 if (qemu_reset_requested()) {
1844 cpu_synchronize_all_states();
1845 qemu_system_reset(VMRESET_REPORT
);
1847 if (runstate_needs_reset()) {
1848 runstate_set(RUN_STATE_PAUSED
);
1851 if (qemu_wakeup_requested()) {
1853 cpu_synchronize_all_states();
1854 qemu_system_reset(VMRESET_SILENT
);
1855 notifier_list_notify(&wakeup_notifiers
, &wakeup_reason
);
1856 wakeup_reason
= QEMU_WAKEUP_REASON_NONE
;
1858 qapi_event_send_wakeup(&error_abort
);
1860 if (qemu_powerdown_requested()) {
1861 qemu_system_powerdown();
1863 if (qemu_vmstop_requested(&r
)) {
1869 static void main_loop(void)
1873 #ifdef CONFIG_PROFILER
1877 nonblocking
= !kvm_enabled() && !xen_enabled() && last_io
> 0;
1878 #ifdef CONFIG_PROFILER
1879 ti
= profile_getclock();
1881 last_io
= main_loop_wait(nonblocking
);
1882 #ifdef CONFIG_PROFILER
1883 dev_time
+= profile_getclock() - ti
;
1885 } while (!main_loop_should_exit());
1888 static void version(void)
1890 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION
", Copyright (c) 2003-2008 Fabrice Bellard\n");
1893 static void help(int exitcode
)
1896 printf("usage: %s [options] [disk_image]\n\n"
1897 "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
1898 error_get_progname());
1900 #define QEMU_OPTIONS_GENERATE_HELP
1901 #include "qemu-options-wrapper.h"
1903 printf("\nDuring emulation, the following keys are useful:\n"
1904 "ctrl-alt-f toggle full screen\n"
1905 "ctrl-alt-n switch to virtual console 'n'\n"
1906 "ctrl-alt toggle mouse and keyboard grab\n"
1908 "When using -nographic, press 'ctrl-a h' to get some help.\n");
1913 #define HAS_ARG 0x0001
1915 typedef struct QEMUOption
{
1922 static const QEMUOption qemu_options
[] = {
1923 { "h", 0, QEMU_OPTION_h
, QEMU_ARCH_ALL
},
1924 #define QEMU_OPTIONS_GENERATE_OPTIONS
1925 #include "qemu-options-wrapper.h"
1929 static bool vga_available(void)
1931 return object_class_by_name("VGA") || object_class_by_name("isa-vga");
1934 static bool cirrus_vga_available(void)
1936 return object_class_by_name("cirrus-vga")
1937 || object_class_by_name("isa-cirrus-vga");
1940 static bool vmware_vga_available(void)
1942 return object_class_by_name("vmware-svga");
1945 static bool qxl_vga_available(void)
1947 return object_class_by_name("qxl-vga");
1950 static bool tcx_vga_available(void)
1952 return object_class_by_name("SUNW,tcx");
1955 static bool cg3_vga_available(void)
1957 return object_class_by_name("cgthree");
1960 static void select_vgahw (const char *p
)
1964 assert(vga_interface_type
== VGA_NONE
);
1965 if (strstart(p
, "std", &opts
)) {
1966 if (vga_available()) {
1967 vga_interface_type
= VGA_STD
;
1969 fprintf(stderr
, "Error: standard VGA not available\n");
1972 } else if (strstart(p
, "cirrus", &opts
)) {
1973 if (cirrus_vga_available()) {
1974 vga_interface_type
= VGA_CIRRUS
;
1976 fprintf(stderr
, "Error: Cirrus VGA not available\n");
1979 } else if (strstart(p
, "vmware", &opts
)) {
1980 if (vmware_vga_available()) {
1981 vga_interface_type
= VGA_VMWARE
;
1983 fprintf(stderr
, "Error: VMWare SVGA not available\n");
1986 } else if (strstart(p
, "xenfb", &opts
)) {
1987 vga_interface_type
= VGA_XENFB
;
1988 } else if (strstart(p
, "qxl", &opts
)) {
1989 if (qxl_vga_available()) {
1990 vga_interface_type
= VGA_QXL
;
1992 fprintf(stderr
, "Error: QXL VGA not available\n");
1995 } else if (strstart(p
, "tcx", &opts
)) {
1996 if (tcx_vga_available()) {
1997 vga_interface_type
= VGA_TCX
;
1999 fprintf(stderr
, "Error: TCX framebuffer not available\n");
2002 } else if (strstart(p
, "cg3", &opts
)) {
2003 if (cg3_vga_available()) {
2004 vga_interface_type
= VGA_CG3
;
2006 fprintf(stderr
, "Error: CG3 framebuffer not available\n");
2009 } else if (!strstart(p
, "none", &opts
)) {
2011 fprintf(stderr
, "Unknown vga type: %s\n", p
);
2015 const char *nextopt
;
2017 if (strstart(opts
, ",retrace=", &nextopt
)) {
2019 if (strstart(opts
, "dumb", &nextopt
))
2020 vga_retrace_method
= VGA_RETRACE_DUMB
;
2021 else if (strstart(opts
, "precise", &nextopt
))
2022 vga_retrace_method
= VGA_RETRACE_PRECISE
;
2023 else goto invalid_vga
;
2024 } else goto invalid_vga
;
2029 static DisplayType
select_display(const char *p
)
2032 DisplayType display
= DT_DEFAULT
;
2034 if (strstart(p
, "sdl", &opts
)) {
2038 const char *nextopt
;
2040 if (strstart(opts
, ",frame=", &nextopt
)) {
2042 if (strstart(opts
, "on", &nextopt
)) {
2044 } else if (strstart(opts
, "off", &nextopt
)) {
2047 goto invalid_sdl_args
;
2049 } else if (strstart(opts
, ",alt_grab=", &nextopt
)) {
2051 if (strstart(opts
, "on", &nextopt
)) {
2053 } else if (strstart(opts
, "off", &nextopt
)) {
2056 goto invalid_sdl_args
;
2058 } else if (strstart(opts
, ",ctrl_grab=", &nextopt
)) {
2060 if (strstart(opts
, "on", &nextopt
)) {
2062 } else if (strstart(opts
, "off", &nextopt
)) {
2065 goto invalid_sdl_args
;
2067 } else if (strstart(opts
, ",window_close=", &nextopt
)) {
2069 if (strstart(opts
, "on", &nextopt
)) {
2071 } else if (strstart(opts
, "off", &nextopt
)) {
2074 goto invalid_sdl_args
;
2078 fprintf(stderr
, "Invalid SDL option string: %s\n", p
);
2084 fprintf(stderr
, "SDL support is disabled\n");
2087 } else if (strstart(p
, "vnc", &opts
)) {
2092 const char *nextopt
;
2094 if (strstart(opts
, "=", &nextopt
)) {
2095 vnc_display
= nextopt
;
2099 fprintf(stderr
, "VNC requires a display argument vnc=<display>\n");
2103 fprintf(stderr
, "VNC support is disabled\n");
2106 } else if (strstart(p
, "curses", &opts
)) {
2107 #ifdef CONFIG_CURSES
2108 display
= DT_CURSES
;
2110 fprintf(stderr
, "Curses support is disabled\n");
2113 } else if (strstart(p
, "gtk", &opts
)) {
2117 const char *nextopt
;
2119 if (strstart(opts
, ",grab_on_hover=", &nextopt
)) {
2121 if (strstart(opts
, "on", &nextopt
)) {
2122 grab_on_hover
= true;
2123 } else if (strstart(opts
, "off", &nextopt
)) {
2124 grab_on_hover
= false;
2126 goto invalid_gtk_args
;
2130 fprintf(stderr
, "Invalid GTK option string: %s\n", p
);
2136 fprintf(stderr
, "GTK support is disabled\n");
2139 } else if (strstart(p
, "none", &opts
)) {
2142 fprintf(stderr
, "Unknown display type: %s\n", p
);
2149 static int balloon_parse(const char *arg
)
2153 if (strcmp(arg
, "none") == 0) {
2157 if (!strncmp(arg
, "virtio", 6)) {
2158 if (arg
[6] == ',') {
2159 /* have params -> parse them */
2160 opts
= qemu_opts_parse(qemu_find_opts("device"), arg
+7, 0);
2164 /* create empty opts */
2165 opts
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
2168 qemu_opt_set(opts
, "driver", "virtio-balloon");
2175 char *qemu_find_file(int type
, const char *name
)
2181 /* Try the name as a straight path first */
2182 if (access(name
, R_OK
) == 0) {
2183 trace_load_file(name
, name
);
2184 return g_strdup(name
);
2188 case QEMU_FILE_TYPE_BIOS
:
2191 case QEMU_FILE_TYPE_KEYMAP
:
2192 subdir
= "keymaps/";
2198 for (i
= 0; i
< data_dir_idx
; i
++) {
2199 buf
= g_strdup_printf("%s/%s%s", data_dir
[i
], subdir
, name
);
2200 if (access(buf
, R_OK
) == 0) {
2201 trace_load_file(name
, buf
);
2209 static int device_help_func(QemuOpts
*opts
, void *opaque
)
2211 return qdev_device_help(opts
);
2214 static int device_init_func(QemuOpts
*opts
, void *opaque
)
2218 dev
= qdev_device_add(opts
);
2221 object_unref(OBJECT(dev
));
2225 static int chardev_init_func(QemuOpts
*opts
, void *opaque
)
2227 Error
*local_err
= NULL
;
2229 qemu_chr_new_from_opts(opts
, NULL
, &local_err
);
2231 error_report("%s", error_get_pretty(local_err
));
2232 error_free(local_err
);
2238 #ifdef CONFIG_VIRTFS
2239 static int fsdev_init_func(QemuOpts
*opts
, void *opaque
)
2242 ret
= qemu_fsdev_add(opts
);
2248 static int mon_init_func(QemuOpts
*opts
, void *opaque
)
2250 CharDriverState
*chr
;
2251 const char *chardev
;
2255 mode
= qemu_opt_get(opts
, "mode");
2259 if (strcmp(mode
, "readline") == 0) {
2260 flags
= MONITOR_USE_READLINE
;
2261 } else if (strcmp(mode
, "control") == 0) {
2262 flags
= MONITOR_USE_CONTROL
;
2264 fprintf(stderr
, "unknown monitor mode \"%s\"\n", mode
);
2268 if (qemu_opt_get_bool(opts
, "pretty", 0))
2269 flags
|= MONITOR_USE_PRETTY
;
2271 if (qemu_opt_get_bool(opts
, "default", 0))
2272 flags
|= MONITOR_IS_DEFAULT
;
2274 chardev
= qemu_opt_get(opts
, "chardev");
2275 chr
= qemu_chr_find(chardev
);
2277 fprintf(stderr
, "chardev \"%s\" not found\n", chardev
);
2281 qemu_chr_fe_claim_no_fail(chr
);
2282 monitor_init(chr
, flags
);
2286 static void monitor_parse(const char *optarg
, const char *mode
)
2288 static int monitor_device_index
= 0;
2294 if (strstart(optarg
, "chardev:", &p
)) {
2295 snprintf(label
, sizeof(label
), "%s", p
);
2297 snprintf(label
, sizeof(label
), "compat_monitor%d",
2298 monitor_device_index
);
2299 if (monitor_device_index
== 0) {
2302 opts
= qemu_chr_parse_compat(label
, optarg
);
2304 fprintf(stderr
, "parse error: %s\n", optarg
);
2309 opts
= qemu_opts_create(qemu_find_opts("mon"), label
, 1, NULL
);
2311 fprintf(stderr
, "duplicate chardev: %s\n", label
);
2314 qemu_opt_set(opts
, "mode", mode
);
2315 qemu_opt_set(opts
, "chardev", label
);
2317 qemu_opt_set(opts
, "default", "on");
2318 monitor_device_index
++;
2321 struct device_config
{
2323 DEV_USB
, /* -usbdevice */
2325 DEV_SERIAL
, /* -serial */
2326 DEV_PARALLEL
, /* -parallel */
2327 DEV_VIRTCON
, /* -virtioconsole */
2328 DEV_DEBUGCON
, /* -debugcon */
2329 DEV_GDB
, /* -gdb, -s */
2330 DEV_SCLP
, /* s390 sclp */
2332 const char *cmdline
;
2334 QTAILQ_ENTRY(device_config
) next
;
2337 static QTAILQ_HEAD(, device_config
) device_configs
=
2338 QTAILQ_HEAD_INITIALIZER(device_configs
);
2340 static void add_device_config(int type
, const char *cmdline
)
2342 struct device_config
*conf
;
2344 conf
= g_malloc0(sizeof(*conf
));
2346 conf
->cmdline
= cmdline
;
2347 loc_save(&conf
->loc
);
2348 QTAILQ_INSERT_TAIL(&device_configs
, conf
, next
);
2351 static int foreach_device_config(int type
, int (*func
)(const char *cmdline
))
2353 struct device_config
*conf
;
2356 QTAILQ_FOREACH(conf
, &device_configs
, next
) {
2357 if (conf
->type
!= type
)
2359 loc_push_restore(&conf
->loc
);
2360 rc
= func(conf
->cmdline
);
2361 loc_pop(&conf
->loc
);
2369 static int serial_parse(const char *devname
)
2371 static int index
= 0;
2374 if (strcmp(devname
, "none") == 0)
2376 if (index
== MAX_SERIAL_PORTS
) {
2377 fprintf(stderr
, "qemu: too many serial ports\n");
2380 snprintf(label
, sizeof(label
), "serial%d", index
);
2381 serial_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2382 if (!serial_hds
[index
]) {
2383 fprintf(stderr
, "qemu: could not connect serial device"
2384 " to character backend '%s'\n", devname
);
2391 static int parallel_parse(const char *devname
)
2393 static int index
= 0;
2396 if (strcmp(devname
, "none") == 0)
2398 if (index
== MAX_PARALLEL_PORTS
) {
2399 fprintf(stderr
, "qemu: too many parallel ports\n");
2402 snprintf(label
, sizeof(label
), "parallel%d", index
);
2403 parallel_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2404 if (!parallel_hds
[index
]) {
2405 fprintf(stderr
, "qemu: could not connect parallel device"
2406 " to character backend '%s'\n", devname
);
2413 static int virtcon_parse(const char *devname
)
2415 QemuOptsList
*device
= qemu_find_opts("device");
2416 static int index
= 0;
2418 QemuOpts
*bus_opts
, *dev_opts
;
2420 if (strcmp(devname
, "none") == 0)
2422 if (index
== MAX_VIRTIO_CONSOLES
) {
2423 fprintf(stderr
, "qemu: too many virtio consoles\n");
2427 bus_opts
= qemu_opts_create(device
, NULL
, 0, &error_abort
);
2428 if (arch_type
== QEMU_ARCH_S390X
) {
2429 qemu_opt_set(bus_opts
, "driver", "virtio-serial-s390");
2431 qemu_opt_set(bus_opts
, "driver", "virtio-serial-pci");
2434 dev_opts
= qemu_opts_create(device
, NULL
, 0, &error_abort
);
2435 qemu_opt_set(dev_opts
, "driver", "virtconsole");
2437 snprintf(label
, sizeof(label
), "virtcon%d", index
);
2438 virtcon_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2439 if (!virtcon_hds
[index
]) {
2440 fprintf(stderr
, "qemu: could not connect virtio console"
2441 " to character backend '%s'\n", devname
);
2444 qemu_opt_set(dev_opts
, "chardev", label
);
2450 static int sclp_parse(const char *devname
)
2452 QemuOptsList
*device
= qemu_find_opts("device");
2453 static int index
= 0;
2457 if (strcmp(devname
, "none") == 0) {
2460 if (index
== MAX_SCLP_CONSOLES
) {
2461 fprintf(stderr
, "qemu: too many sclp consoles\n");
2465 assert(arch_type
== QEMU_ARCH_S390X
);
2467 dev_opts
= qemu_opts_create(device
, NULL
, 0, NULL
);
2468 qemu_opt_set(dev_opts
, "driver", "sclpconsole");
2470 snprintf(label
, sizeof(label
), "sclpcon%d", index
);
2471 sclp_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2472 if (!sclp_hds
[index
]) {
2473 fprintf(stderr
, "qemu: could not connect sclp console"
2474 " to character backend '%s'\n", devname
);
2477 qemu_opt_set(dev_opts
, "chardev", label
);
2483 static int debugcon_parse(const char *devname
)
2487 if (!qemu_chr_new("debugcon", devname
, NULL
)) {
2490 opts
= qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL
);
2492 fprintf(stderr
, "qemu: already have a debugcon device\n");
2495 qemu_opt_set(opts
, "driver", "isa-debugcon");
2496 qemu_opt_set(opts
, "chardev", "debugcon");
2500 static gint
machine_class_cmp(gconstpointer a
, gconstpointer b
)
2502 const MachineClass
*mc1
= a
, *mc2
= b
;
2505 if (mc1
->family
== NULL
) {
2506 if (mc2
->family
== NULL
) {
2507 /* Compare standalone machine types against each other; they sort
2508 * in increasing order.
2510 return strcmp(object_class_get_name(OBJECT_CLASS(mc1
)),
2511 object_class_get_name(OBJECT_CLASS(mc2
)));
2514 /* Standalone machine types sort after families. */
2518 if (mc2
->family
== NULL
) {
2519 /* Families sort before standalone machine types. */
2523 /* Families sort between each other alphabetically increasingly. */
2524 res
= strcmp(mc1
->family
, mc2
->family
);
2529 /* Within the same family, machine types sort in decreasing order. */
2530 return strcmp(object_class_get_name(OBJECT_CLASS(mc2
)),
2531 object_class_get_name(OBJECT_CLASS(mc1
)));
2534 static MachineClass
*machine_parse(const char *name
)
2536 MachineClass
*mc
= NULL
;
2537 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
2540 mc
= find_machine(name
);
2545 if (name
&& !is_help_option(name
)) {
2546 error_report("Unsupported machine type");
2547 error_printf("Use -machine help to list supported machines!\n");
2549 printf("Supported machines are:\n");
2550 machines
= g_slist_sort(machines
, machine_class_cmp
);
2551 for (el
= machines
; el
; el
= el
->next
) {
2552 MachineClass
*mc
= el
->data
;
2554 printf("%-20s %s (alias of %s)\n", mc
->alias
, mc
->desc
, mc
->name
);
2556 printf("%-20s %s%s\n", mc
->name
, mc
->desc
,
2557 mc
->is_default
? " (default)" : "");
2561 g_slist_free(machines
);
2562 exit(!name
|| !is_help_option(name
));
2565 void qemu_add_exit_notifier(Notifier
*notify
)
2567 notifier_list_add(&exit_notifiers
, notify
);
2570 void qemu_remove_exit_notifier(Notifier
*notify
)
2572 notifier_remove(notify
);
2575 static void qemu_run_exit_notifiers(void)
2577 notifier_list_notify(&exit_notifiers
, NULL
);
2580 void qemu_add_machine_init_done_notifier(Notifier
*notify
)
2582 notifier_list_add(&machine_init_done_notifiers
, notify
);
2585 static void qemu_run_machine_init_done_notifiers(void)
2587 notifier_list_notify(&machine_init_done_notifiers
, NULL
);
2590 static const QEMUOption
*lookup_opt(int argc
, char **argv
,
2591 const char **poptarg
, int *poptind
)
2593 const QEMUOption
*popt
;
2594 int optind
= *poptind
;
2595 char *r
= argv
[optind
];
2598 loc_set_cmdline(argv
, optind
, 1);
2600 /* Treat --foo the same as -foo. */
2603 popt
= qemu_options
;
2606 error_report("invalid option");
2609 if (!strcmp(popt
->name
, r
+ 1))
2613 if (popt
->flags
& HAS_ARG
) {
2614 if (optind
>= argc
) {
2615 error_report("requires an argument");
2618 optarg
= argv
[optind
++];
2619 loc_set_cmdline(argv
, optind
- 2, 2);
2630 static gpointer
malloc_and_trace(gsize n_bytes
)
2632 void *ptr
= malloc(n_bytes
);
2633 trace_g_malloc(n_bytes
, ptr
);
2637 static gpointer
realloc_and_trace(gpointer mem
, gsize n_bytes
)
2639 void *ptr
= realloc(mem
, n_bytes
);
2640 trace_g_realloc(mem
, n_bytes
, ptr
);
2644 static void free_and_trace(gpointer mem
)
2650 static int machine_set_property(const char *name
, const char *value
,
2653 Object
*obj
= OBJECT(opaque
);
2654 StringInputVisitor
*siv
;
2655 Error
*local_err
= NULL
;
2658 if (strcmp(name
, "type") == 0) {
2662 qom_name
= g_strdup(name
);
2670 siv
= string_input_visitor_new(value
);
2671 object_property_set(obj
, string_input_get_visitor(siv
), qom_name
, &local_err
);
2672 string_input_visitor_cleanup(siv
);
2676 qerror_report_err(local_err
);
2677 error_free(local_err
);
2684 static int object_create(QemuOpts
*opts
, void *opaque
)
2693 ov
= opts_visitor_new(opts
);
2694 pdict
= qemu_opts_to_qdict(opts
, NULL
);
2696 visit_start_struct(opts_get_visitor(ov
), &dummy
, NULL
, NULL
, 0, &err
);
2701 qdict_del(pdict
, "qom-type");
2702 visit_type_str(opts_get_visitor(ov
), &type
, "qom-type", &err
);
2707 qdict_del(pdict
, "id");
2708 visit_type_str(opts_get_visitor(ov
), &id
, "id", &err
);
2713 object_add(type
, id
, pdict
, opts_get_visitor(ov
), &err
);
2717 visit_end_struct(opts_get_visitor(ov
), &err
);
2719 qmp_object_del(id
, NULL
);
2723 opts_visitor_cleanup(ov
);
2730 qerror_report_err(err
);
2737 int main(int argc
, char **argv
, char **envp
)
2740 int snapshot
, linux_boot
;
2741 const char *initrd_filename
;
2742 const char *kernel_filename
, *kernel_cmdline
;
2743 const char *boot_order
;
2745 int cyls
, heads
, secs
, translation
;
2746 QemuOpts
*hda_opts
= NULL
, *opts
, *machine_opts
, *icount_opts
= NULL
;
2747 QemuOptsList
*olist
;
2750 const char *loadvm
= NULL
;
2751 MachineClass
*machine_class
;
2752 const char *cpu_model
;
2753 const char *vga_model
= NULL
;
2754 const char *qtest_chrdev
= NULL
;
2755 const char *qtest_log
= NULL
;
2756 const char *pid_file
= NULL
;
2757 const char *incoming
= NULL
;
2759 int show_vnc_port
= 0;
2761 bool defconfig
= true;
2762 bool userconfig
= true;
2763 const char *log_mask
= NULL
;
2764 const char *log_file
= NULL
;
2765 GMemVTable mem_trace
= {
2766 .malloc
= malloc_and_trace
,
2767 .realloc
= realloc_and_trace
,
2768 .free
= free_and_trace
,
2770 const char *trace_events
= NULL
;
2771 const char *trace_file
= NULL
;
2772 const ram_addr_t default_ram_size
= (ram_addr_t
)DEFAULT_RAM_SIZE
*
2774 ram_addr_t maxram_size
= default_ram_size
;
2775 uint64_t ram_slots
= 0;
2776 FILE *vmstate_dump_file
= NULL
;
2777 Error
*main_loop_err
= NULL
;
2779 atexit(qemu_run_exit_notifiers
);
2780 error_set_progname(argv
[0]);
2781 qemu_init_exec_dir(argv
[0]);
2783 g_mem_set_vtable(&mem_trace
);
2785 module_call_init(MODULE_INIT_QOM
);
2787 qemu_add_opts(&qemu_drive_opts
);
2788 qemu_add_drive_opts(&qemu_legacy_drive_opts
);
2789 qemu_add_drive_opts(&qemu_common_drive_opts
);
2790 qemu_add_drive_opts(&qemu_drive_opts
);
2791 qemu_add_opts(&qemu_chardev_opts
);
2792 qemu_add_opts(&qemu_device_opts
);
2793 qemu_add_opts(&qemu_netdev_opts
);
2794 qemu_add_opts(&qemu_net_opts
);
2795 qemu_add_opts(&qemu_rtc_opts
);
2796 qemu_add_opts(&qemu_global_opts
);
2797 qemu_add_opts(&qemu_mon_opts
);
2798 qemu_add_opts(&qemu_trace_opts
);
2799 qemu_add_opts(&qemu_option_rom_opts
);
2800 qemu_add_opts(&qemu_machine_opts
);
2801 qemu_add_opts(&qemu_mem_opts
);
2802 qemu_add_opts(&qemu_smp_opts
);
2803 qemu_add_opts(&qemu_boot_opts
);
2804 qemu_add_opts(&qemu_sandbox_opts
);
2805 qemu_add_opts(&qemu_add_fd_opts
);
2806 qemu_add_opts(&qemu_object_opts
);
2807 qemu_add_opts(&qemu_tpmdev_opts
);
2808 qemu_add_opts(&qemu_realtime_opts
);
2809 qemu_add_opts(&qemu_msg_opts
);
2810 qemu_add_opts(&qemu_name_opts
);
2811 qemu_add_opts(&qemu_numa_opts
);
2812 qemu_add_opts(&qemu_icount_opts
);
2816 rtc_clock
= QEMU_CLOCK_HOST
;
2818 QLIST_INIT (&vm_change_state_head
);
2819 os_setup_early_signal_handling();
2821 module_call_init(MODULE_INIT_MACHINE
);
2822 machine_class
= find_default_machine();
2824 ram_size
= default_ram_size
;
2826 cyls
= heads
= secs
= 0;
2827 translation
= BIOS_ATA_TRANSLATION_AUTO
;
2829 for (i
= 0; i
< MAX_NODES
; i
++) {
2830 numa_info
[i
].node_mem
= 0;
2831 numa_info
[i
].present
= false;
2832 bitmap_zero(numa_info
[i
].node_cpu
, MAX_CPUMASK_BITS
);
2836 max_numa_nodeid
= 0;
2839 bdrv_init_with_whitelist();
2843 /* first pass of option parsing */
2845 while (optind
< argc
) {
2846 if (argv
[optind
][0] != '-') {
2850 const QEMUOption
*popt
;
2852 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
2853 switch (popt
->index
) {
2854 case QEMU_OPTION_nodefconfig
:
2857 case QEMU_OPTION_nouserconfig
:
2866 ret
= qemu_read_default_config_files(userconfig
);
2872 /* second pass of option parsing */
2877 if (argv
[optind
][0] != '-') {
2878 hda_opts
= drive_add(IF_DEFAULT
, 0, argv
[optind
++], HD_OPTS
);
2880 const QEMUOption
*popt
;
2882 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
2883 if (!(popt
->arch_mask
& arch_type
)) {
2884 printf("Option %s not supported for this target\n", popt
->name
);
2887 switch(popt
->index
) {
2889 machine_class
= machine_parse(optarg
);
2891 case QEMU_OPTION_no_kvm_irqchip
: {
2892 olist
= qemu_find_opts("machine");
2893 qemu_opts_parse(olist
, "kernel_irqchip=off", 0);
2896 case QEMU_OPTION_cpu
:
2897 /* hw initialization will check this */
2900 case QEMU_OPTION_hda
:
2904 snprintf(buf
, sizeof(buf
), "%s", HD_OPTS
);
2906 snprintf(buf
, sizeof(buf
),
2907 "%s,cyls=%d,heads=%d,secs=%d%s",
2908 HD_OPTS
, cyls
, heads
, secs
,
2909 translation
== BIOS_ATA_TRANSLATION_LBA
?
2911 translation
== BIOS_ATA_TRANSLATION_NONE
?
2912 ",trans=none" : "");
2913 drive_add(IF_DEFAULT
, 0, optarg
, buf
);
2916 case QEMU_OPTION_hdb
:
2917 case QEMU_OPTION_hdc
:
2918 case QEMU_OPTION_hdd
:
2919 drive_add(IF_DEFAULT
, popt
->index
- QEMU_OPTION_hda
, optarg
,
2922 case QEMU_OPTION_drive
:
2923 if (drive_def(optarg
) == NULL
) {
2927 case QEMU_OPTION_set
:
2928 if (qemu_set_option(optarg
) != 0)
2931 case QEMU_OPTION_global
:
2932 if (qemu_global_option(optarg
) != 0)
2935 case QEMU_OPTION_mtdblock
:
2936 drive_add(IF_MTD
, -1, optarg
, MTD_OPTS
);
2938 case QEMU_OPTION_sd
:
2939 drive_add(IF_SD
, -1, optarg
, SD_OPTS
);
2941 case QEMU_OPTION_pflash
:
2942 drive_add(IF_PFLASH
, -1, optarg
, PFLASH_OPTS
);
2944 case QEMU_OPTION_snapshot
:
2947 case QEMU_OPTION_hdachs
:
2951 cyls
= strtol(p
, (char **)&p
, 0);
2952 if (cyls
< 1 || cyls
> 16383)
2957 heads
= strtol(p
, (char **)&p
, 0);
2958 if (heads
< 1 || heads
> 16)
2963 secs
= strtol(p
, (char **)&p
, 0);
2964 if (secs
< 1 || secs
> 63)
2968 if (!strcmp(p
, "large")) {
2969 translation
= BIOS_ATA_TRANSLATION_LARGE
;
2970 } else if (!strcmp(p
, "rechs")) {
2971 translation
= BIOS_ATA_TRANSLATION_RECHS
;
2972 } else if (!strcmp(p
, "none")) {
2973 translation
= BIOS_ATA_TRANSLATION_NONE
;
2974 } else if (!strcmp(p
, "lba")) {
2975 translation
= BIOS_ATA_TRANSLATION_LBA
;
2976 } else if (!strcmp(p
, "auto")) {
2977 translation
= BIOS_ATA_TRANSLATION_AUTO
;
2981 } else if (*p
!= '\0') {
2983 fprintf(stderr
, "qemu: invalid physical CHS format\n");
2986 if (hda_opts
!= NULL
) {
2988 snprintf(num
, sizeof(num
), "%d", cyls
);
2989 qemu_opt_set(hda_opts
, "cyls", num
);
2990 snprintf(num
, sizeof(num
), "%d", heads
);
2991 qemu_opt_set(hda_opts
, "heads", num
);
2992 snprintf(num
, sizeof(num
), "%d", secs
);
2993 qemu_opt_set(hda_opts
, "secs", num
);
2994 if (translation
== BIOS_ATA_TRANSLATION_LARGE
) {
2995 qemu_opt_set(hda_opts
, "trans", "large");
2996 } else if (translation
== BIOS_ATA_TRANSLATION_RECHS
) {
2997 qemu_opt_set(hda_opts
, "trans", "rechs");
2998 } else if (translation
== BIOS_ATA_TRANSLATION_LBA
) {
2999 qemu_opt_set(hda_opts
, "trans", "lba");
3000 } else if (translation
== BIOS_ATA_TRANSLATION_NONE
) {
3001 qemu_opt_set(hda_opts
, "trans", "none");
3006 case QEMU_OPTION_numa
:
3007 opts
= qemu_opts_parse(qemu_find_opts("numa"), optarg
, 1);
3012 case QEMU_OPTION_display
:
3013 display_type
= select_display(optarg
);
3015 case QEMU_OPTION_nographic
:
3016 display_type
= DT_NOGRAPHIC
;
3018 case QEMU_OPTION_curses
:
3019 #ifdef CONFIG_CURSES
3020 display_type
= DT_CURSES
;
3022 fprintf(stderr
, "Curses support is disabled\n");
3026 case QEMU_OPTION_portrait
:
3027 graphic_rotate
= 90;
3029 case QEMU_OPTION_rotate
:
3030 graphic_rotate
= strtol(optarg
, (char **) &optarg
, 10);
3031 if (graphic_rotate
!= 0 && graphic_rotate
!= 90 &&
3032 graphic_rotate
!= 180 && graphic_rotate
!= 270) {
3034 "qemu: only 90, 180, 270 deg rotation is available\n");
3038 case QEMU_OPTION_kernel
:
3039 qemu_opts_set(qemu_find_opts("machine"), 0, "kernel", optarg
);
3041 case QEMU_OPTION_initrd
:
3042 qemu_opts_set(qemu_find_opts("machine"), 0, "initrd", optarg
);
3044 case QEMU_OPTION_append
:
3045 qemu_opts_set(qemu_find_opts("machine"), 0, "append", optarg
);
3047 case QEMU_OPTION_dtb
:
3048 qemu_opts_set(qemu_find_opts("machine"), 0, "dtb", optarg
);
3050 case QEMU_OPTION_cdrom
:
3051 drive_add(IF_DEFAULT
, 2, optarg
, CDROM_OPTS
);
3053 case QEMU_OPTION_boot
:
3054 opts
= qemu_opts_parse(qemu_find_opts("boot-opts"), optarg
, 1);
3059 case QEMU_OPTION_fda
:
3060 case QEMU_OPTION_fdb
:
3061 drive_add(IF_FLOPPY
, popt
->index
- QEMU_OPTION_fda
,
3064 case QEMU_OPTION_no_fd_bootchk
:
3067 case QEMU_OPTION_netdev
:
3068 if (net_client_parse(qemu_find_opts("netdev"), optarg
) == -1) {
3072 case QEMU_OPTION_net
:
3073 if (net_client_parse(qemu_find_opts("net"), optarg
) == -1) {
3077 #ifdef CONFIG_LIBISCSI
3078 case QEMU_OPTION_iscsi
:
3079 opts
= qemu_opts_parse(qemu_find_opts("iscsi"), optarg
, 0);
3086 case QEMU_OPTION_tftp
:
3087 legacy_tftp_prefix
= optarg
;
3089 case QEMU_OPTION_bootp
:
3090 legacy_bootp_filename
= optarg
;
3092 case QEMU_OPTION_redir
:
3093 if (net_slirp_redir(optarg
) < 0)
3097 case QEMU_OPTION_bt
:
3098 add_device_config(DEV_BT
, optarg
);
3100 case QEMU_OPTION_audio_help
:
3104 case QEMU_OPTION_soundhw
:
3105 select_soundhw (optarg
);
3110 case QEMU_OPTION_version
:
3114 case QEMU_OPTION_m
: {
3116 const char *mem_str
;
3117 const char *maxmem_str
, *slots_str
;
3119 opts
= qemu_opts_parse(qemu_find_opts("memory"),
3125 mem_str
= qemu_opt_get(opts
, "size");
3127 error_report("invalid -m option, missing 'size' option");
3131 error_report("missing 'size' option value");
3135 sz
= qemu_opt_get_size(opts
, "size", ram_size
);
3137 /* Fix up legacy suffix-less format */
3138 if (g_ascii_isdigit(mem_str
[strlen(mem_str
) - 1])) {
3139 uint64_t overflow_check
= sz
;
3142 if ((sz
>> 20) != overflow_check
) {
3143 error_report("too large 'size' option value");
3148 /* backward compatibility behaviour for case "-m 0" */
3150 sz
= default_ram_size
;
3153 sz
= QEMU_ALIGN_UP(sz
, 8192);
3155 if (ram_size
!= sz
) {
3156 error_report("ram size too large");
3159 maxram_size
= ram_size
;
3161 maxmem_str
= qemu_opt_get(opts
, "maxmem");
3162 slots_str
= qemu_opt_get(opts
, "slots");
3163 if (maxmem_str
&& slots_str
) {
3166 sz
= qemu_opt_get_size(opts
, "maxmem", 0);
3167 if (sz
< ram_size
) {
3168 error_report("invalid -m option value: maxmem "
3169 "(0x%" PRIx64
") <= initial memory (0x"
3170 RAM_ADDR_FMT
")", sz
, ram_size
);
3174 slots
= qemu_opt_get_number(opts
, "slots", 0);
3175 if ((sz
> ram_size
) && !slots
) {
3176 error_report("invalid -m option value: maxmem "
3177 "(0x%" PRIx64
") more than initial memory (0x"
3178 RAM_ADDR_FMT
") but no hotplug slots where "
3179 "specified", sz
, ram_size
);
3183 if ((sz
<= ram_size
) && slots
) {
3184 error_report("invalid -m option value: %"
3185 PRIu64
" hotplug slots where specified but "
3186 "maxmem (0x%" PRIx64
") <= initial memory (0x"
3187 RAM_ADDR_FMT
")", slots
, sz
, ram_size
);
3192 } else if ((!maxmem_str
&& slots_str
) ||
3193 (maxmem_str
&& !slots_str
)) {
3194 error_report("invalid -m option value: missing "
3195 "'%s' option", slots_str
? "maxmem" : "slots");
3201 case QEMU_OPTION_tpmdev
:
3202 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg
) < 0) {
3207 case QEMU_OPTION_mempath
:
3210 case QEMU_OPTION_mem_prealloc
:
3220 add_device_config(DEV_GDB
, "tcp::" DEFAULT_GDBSTUB_PORT
);
3222 case QEMU_OPTION_gdb
:
3223 add_device_config(DEV_GDB
, optarg
);
3226 if (data_dir_idx
< ARRAY_SIZE(data_dir
)) {
3227 data_dir
[data_dir_idx
++] = optarg
;
3230 case QEMU_OPTION_bios
:
3231 qemu_opts_set(qemu_find_opts("machine"), 0, "firmware", optarg
);
3233 case QEMU_OPTION_singlestep
:
3240 keyboard_layout
= optarg
;
3242 case QEMU_OPTION_localtime
:
3245 case QEMU_OPTION_vga
:
3254 w
= strtol(p
, (char **)&p
, 10);
3257 fprintf(stderr
, "qemu: invalid resolution or depth\n");
3263 h
= strtol(p
, (char **)&p
, 10);
3268 depth
= strtol(p
, (char **)&p
, 10);
3269 if (depth
!= 8 && depth
!= 15 && depth
!= 16 &&
3270 depth
!= 24 && depth
!= 32)
3272 } else if (*p
== '\0') {
3273 depth
= graphic_depth
;
3280 graphic_depth
= depth
;
3283 case QEMU_OPTION_echr
:
3286 term_escape_char
= strtol(optarg
, &r
, 0);
3288 printf("Bad argument to echr\n");
3291 case QEMU_OPTION_monitor
:
3292 default_monitor
= 0;
3293 if (strncmp(optarg
, "none", 4)) {
3294 monitor_parse(optarg
, "readline");
3297 case QEMU_OPTION_qmp
:
3298 monitor_parse(optarg
, "control");
3299 default_monitor
= 0;
3301 case QEMU_OPTION_mon
:
3302 opts
= qemu_opts_parse(qemu_find_opts("mon"), optarg
, 1);
3306 default_monitor
= 0;
3308 case QEMU_OPTION_chardev
:
3309 opts
= qemu_opts_parse(qemu_find_opts("chardev"), optarg
, 1);
3314 case QEMU_OPTION_fsdev
:
3315 olist
= qemu_find_opts("fsdev");
3317 fprintf(stderr
, "fsdev is not supported by this qemu build.\n");
3320 opts
= qemu_opts_parse(olist
, optarg
, 1);
3325 case QEMU_OPTION_virtfs
: {
3328 const char *writeout
, *sock_fd
, *socket
;
3330 olist
= qemu_find_opts("virtfs");
3332 fprintf(stderr
, "virtfs is not supported by this qemu build.\n");
3335 opts
= qemu_opts_parse(olist
, optarg
, 1);
3340 if (qemu_opt_get(opts
, "fsdriver") == NULL
||
3341 qemu_opt_get(opts
, "mount_tag") == NULL
) {
3342 fprintf(stderr
, "Usage: -virtfs fsdriver,mount_tag=tag.\n");
3345 fsdev
= qemu_opts_create(qemu_find_opts("fsdev"),
3346 qemu_opt_get(opts
, "mount_tag"),
3349 fprintf(stderr
, "duplicate fsdev id: %s\n",
3350 qemu_opt_get(opts
, "mount_tag"));
3354 writeout
= qemu_opt_get(opts
, "writeout");
3356 #ifdef CONFIG_SYNC_FILE_RANGE
3357 qemu_opt_set(fsdev
, "writeout", writeout
);
3359 fprintf(stderr
, "writeout=immediate not supported on "
3364 qemu_opt_set(fsdev
, "fsdriver", qemu_opt_get(opts
, "fsdriver"));
3365 qemu_opt_set(fsdev
, "path", qemu_opt_get(opts
, "path"));
3366 qemu_opt_set(fsdev
, "security_model",
3367 qemu_opt_get(opts
, "security_model"));
3368 socket
= qemu_opt_get(opts
, "socket");
3370 qemu_opt_set(fsdev
, "socket", socket
);
3372 sock_fd
= qemu_opt_get(opts
, "sock_fd");
3374 qemu_opt_set(fsdev
, "sock_fd", sock_fd
);
3377 qemu_opt_set_bool(fsdev
, "readonly",
3378 qemu_opt_get_bool(opts
, "readonly", 0));
3379 device
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
3381 qemu_opt_set(device
, "driver", "virtio-9p-pci");
3382 qemu_opt_set(device
, "fsdev",
3383 qemu_opt_get(opts
, "mount_tag"));
3384 qemu_opt_set(device
, "mount_tag",
3385 qemu_opt_get(opts
, "mount_tag"));
3388 case QEMU_OPTION_virtfs_synth
: {
3392 fsdev
= qemu_opts_create(qemu_find_opts("fsdev"), "v_synth",
3395 fprintf(stderr
, "duplicate option: %s\n", "virtfs_synth");
3398 qemu_opt_set(fsdev
, "fsdriver", "synth");
3400 device
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
3402 qemu_opt_set(device
, "driver", "virtio-9p-pci");
3403 qemu_opt_set(device
, "fsdev", "v_synth");
3404 qemu_opt_set(device
, "mount_tag", "v_synth");
3407 case QEMU_OPTION_serial
:
3408 add_device_config(DEV_SERIAL
, optarg
);
3410 if (strncmp(optarg
, "mon:", 4) == 0) {
3411 default_monitor
= 0;
3414 case QEMU_OPTION_watchdog
:
3417 "qemu: only one watchdog option may be given\n");
3422 case QEMU_OPTION_watchdog_action
:
3423 if (select_watchdog_action(optarg
) == -1) {
3424 fprintf(stderr
, "Unknown -watchdog-action parameter\n");
3428 case QEMU_OPTION_virtiocon
:
3429 add_device_config(DEV_VIRTCON
, optarg
);
3430 default_virtcon
= 0;
3431 if (strncmp(optarg
, "mon:", 4) == 0) {
3432 default_monitor
= 0;
3435 case QEMU_OPTION_parallel
:
3436 add_device_config(DEV_PARALLEL
, optarg
);
3437 default_parallel
= 0;
3438 if (strncmp(optarg
, "mon:", 4) == 0) {
3439 default_monitor
= 0;
3442 case QEMU_OPTION_debugcon
:
3443 add_device_config(DEV_DEBUGCON
, optarg
);
3445 case QEMU_OPTION_loadvm
:
3448 case QEMU_OPTION_full_screen
:
3451 case QEMU_OPTION_no_frame
:
3454 case QEMU_OPTION_alt_grab
:
3457 case QEMU_OPTION_ctrl_grab
:
3460 case QEMU_OPTION_no_quit
:
3463 case QEMU_OPTION_sdl
:
3465 display_type
= DT_SDL
;
3468 fprintf(stderr
, "SDL support is disabled\n");
3471 case QEMU_OPTION_pidfile
:
3474 case QEMU_OPTION_win2k_hack
:
3475 win2k_install_hack
= 1;
3477 case QEMU_OPTION_rtc_td_hack
: {
3478 static GlobalProperty slew_lost_ticks
[] = {
3480 .driver
= "mc146818rtc",
3481 .property
= "lost_tick_policy",
3484 { /* end of list */ }
3487 qdev_prop_register_global_list(slew_lost_ticks
);
3490 case QEMU_OPTION_acpitable
:
3491 opts
= qemu_opts_parse(qemu_find_opts("acpi"), optarg
, 1);
3495 do_acpitable_option(opts
);
3497 case QEMU_OPTION_smbios
:
3498 opts
= qemu_opts_parse(qemu_find_opts("smbios"), optarg
, 0);
3502 do_smbios_option(opts
);
3504 case QEMU_OPTION_enable_kvm
:
3505 olist
= qemu_find_opts("machine");
3506 qemu_opts_parse(olist
, "accel=kvm", 0);
3508 case QEMU_OPTION_machine
:
3509 olist
= qemu_find_opts("machine");
3510 opts
= qemu_opts_parse(olist
, optarg
, 1);
3514 optarg
= qemu_opt_get(opts
, "type");
3516 machine_class
= machine_parse(optarg
);
3519 case QEMU_OPTION_no_kvm
:
3520 olist
= qemu_find_opts("machine");
3521 qemu_opts_parse(olist
, "accel=tcg", 0);
3523 case QEMU_OPTION_no_kvm_pit
: {
3524 fprintf(stderr
, "Warning: KVM PIT can no longer be disabled "
3528 case QEMU_OPTION_no_kvm_pit_reinjection
: {
3529 static GlobalProperty kvm_pit_lost_tick_policy
[] = {
3531 .driver
= "kvm-pit",
3532 .property
= "lost_tick_policy",
3535 { /* end of list */ }
3538 fprintf(stderr
, "Warning: option deprecated, use "
3539 "lost_tick_policy property of kvm-pit instead.\n");
3540 qdev_prop_register_global_list(kvm_pit_lost_tick_policy
);
3543 case QEMU_OPTION_usb
:
3544 olist
= qemu_find_opts("machine");
3545 qemu_opts_parse(olist
, "usb=on", 0);
3547 case QEMU_OPTION_usbdevice
:
3548 olist
= qemu_find_opts("machine");
3549 qemu_opts_parse(olist
, "usb=on", 0);
3550 add_device_config(DEV_USB
, optarg
);
3552 case QEMU_OPTION_device
:
3553 if (!qemu_opts_parse(qemu_find_opts("device"), optarg
, 1)) {
3557 case QEMU_OPTION_smp
:
3558 if (!qemu_opts_parse(qemu_find_opts("smp-opts"), optarg
, 1)) {
3562 case QEMU_OPTION_vnc
:
3565 vnc_display
= optarg
;
3567 fprintf(stderr
, "VNC support is disabled\n");
3571 case QEMU_OPTION_no_acpi
:
3574 case QEMU_OPTION_no_hpet
:
3577 case QEMU_OPTION_balloon
:
3578 if (balloon_parse(optarg
) < 0) {
3579 fprintf(stderr
, "Unknown -balloon argument %s\n", optarg
);
3583 case QEMU_OPTION_no_reboot
:
3586 case QEMU_OPTION_no_shutdown
:
3589 case QEMU_OPTION_show_cursor
:
3592 case QEMU_OPTION_uuid
:
3593 if(qemu_uuid_parse(optarg
, qemu_uuid
) < 0) {
3594 fprintf(stderr
, "Fail to parse UUID string."
3595 " Wrong format.\n");
3598 qemu_uuid_set
= true;
3600 case QEMU_OPTION_option_rom
:
3601 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
3602 fprintf(stderr
, "Too many option ROMs\n");
3605 opts
= qemu_opts_parse(qemu_find_opts("option-rom"), optarg
, 1);
3609 option_rom
[nb_option_roms
].name
= qemu_opt_get(opts
, "romfile");
3610 option_rom
[nb_option_roms
].bootindex
=
3611 qemu_opt_get_number(opts
, "bootindex", -1);
3612 if (!option_rom
[nb_option_roms
].name
) {
3613 fprintf(stderr
, "Option ROM file is not specified\n");
3618 case QEMU_OPTION_semihosting
:
3619 semihosting_enabled
= 1;
3621 case QEMU_OPTION_tdf
:
3622 fprintf(stderr
, "Warning: user space PIT time drift fix "
3623 "is no longer supported.\n");
3625 case QEMU_OPTION_name
:
3626 opts
= qemu_opts_parse(qemu_find_opts("name"), optarg
, 1);
3631 case QEMU_OPTION_prom_env
:
3632 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
3633 fprintf(stderr
, "Too many prom variables\n");
3636 prom_envs
[nb_prom_envs
] = optarg
;
3639 case QEMU_OPTION_old_param
:
3642 case QEMU_OPTION_clock
:
3643 /* Clock options no longer exist. Keep this option for
3644 * backward compatibility.
3647 case QEMU_OPTION_startdate
:
3648 configure_rtc_date_offset(optarg
, 1);
3650 case QEMU_OPTION_rtc
:
3651 opts
= qemu_opts_parse(qemu_find_opts("rtc"), optarg
, 0);
3655 configure_rtc(opts
);
3657 case QEMU_OPTION_tb_size
:
3658 tcg_tb_size
= strtol(optarg
, NULL
, 0);
3659 if (tcg_tb_size
< 0) {
3663 case QEMU_OPTION_icount
:
3664 icount_opts
= qemu_opts_parse(qemu_find_opts("icount"),
3670 case QEMU_OPTION_incoming
:
3672 runstate_set(RUN_STATE_INMIGRATE
);
3674 case QEMU_OPTION_nodefaults
:
3677 case QEMU_OPTION_xen_domid
:
3678 if (!(xen_available())) {
3679 printf("Option %s not supported for this target\n", popt
->name
);
3682 xen_domid
= atoi(optarg
);
3684 case QEMU_OPTION_xen_create
:
3685 if (!(xen_available())) {
3686 printf("Option %s not supported for this target\n", popt
->name
);
3689 xen_mode
= XEN_CREATE
;
3691 case QEMU_OPTION_xen_attach
:
3692 if (!(xen_available())) {
3693 printf("Option %s not supported for this target\n", popt
->name
);
3696 xen_mode
= XEN_ATTACH
;
3698 case QEMU_OPTION_trace
:
3700 opts
= qemu_opts_parse(qemu_find_opts("trace"), optarg
, 0);
3704 trace_events
= qemu_opt_get(opts
, "events");
3705 trace_file
= qemu_opt_get(opts
, "file");
3708 case QEMU_OPTION_readconfig
:
3710 int ret
= qemu_read_config_file(optarg
);
3712 fprintf(stderr
, "read config %s: %s\n", optarg
,
3718 case QEMU_OPTION_spice
:
3719 olist
= qemu_find_opts("spice");
3721 fprintf(stderr
, "spice is not supported by this qemu build.\n");
3724 opts
= qemu_opts_parse(olist
, optarg
, 0);
3730 case QEMU_OPTION_writeconfig
:
3733 if (strcmp(optarg
, "-") == 0) {
3736 fp
= fopen(optarg
, "w");
3738 fprintf(stderr
, "open %s: %s\n", optarg
, strerror(errno
));
3742 qemu_config_write(fp
);
3748 case QEMU_OPTION_qtest
:
3749 qtest_chrdev
= optarg
;
3751 case QEMU_OPTION_qtest_log
:
3754 case QEMU_OPTION_sandbox
:
3755 opts
= qemu_opts_parse(qemu_find_opts("sandbox"), optarg
, 1);
3760 case QEMU_OPTION_add_fd
:
3762 opts
= qemu_opts_parse(qemu_find_opts("add-fd"), optarg
, 0);
3767 error_report("File descriptor passing is disabled on this "
3772 case QEMU_OPTION_object
:
3773 opts
= qemu_opts_parse(qemu_find_opts("object"), optarg
, 1);
3778 case QEMU_OPTION_realtime
:
3779 opts
= qemu_opts_parse(qemu_find_opts("realtime"), optarg
, 0);
3783 enable_mlock
= qemu_opt_get_bool(opts
, "mlock", true);
3785 case QEMU_OPTION_msg
:
3786 opts
= qemu_opts_parse(qemu_find_opts("msg"), optarg
, 0);
3790 configure_msg(opts
);
3792 case QEMU_OPTION_dump_vmstate
:
3793 if (vmstate_dump_file
) {
3794 fprintf(stderr
, "qemu: only one '-dump-vmstate' "
3795 "option may be given\n");
3798 vmstate_dump_file
= fopen(optarg
, "w");
3799 if (vmstate_dump_file
== NULL
) {
3800 fprintf(stderr
, "open %s: %s\n", optarg
, strerror(errno
));
3805 os_parse_cmd_args(popt
->index
, optarg
);
3813 if (qemu_init_main_loop(&main_loop_err
)) {
3814 error_report("%s", error_get_pretty(main_loop_err
));
3818 if (qemu_opts_foreach(qemu_find_opts("sandbox"), parse_sandbox
, NULL
, 0)) {
3822 if (qemu_opts_foreach(qemu_find_opts("name"), parse_name
, NULL
, 1)) {
3827 if (qemu_opts_foreach(qemu_find_opts("add-fd"), parse_add_fd
, NULL
, 1)) {
3831 if (qemu_opts_foreach(qemu_find_opts("add-fd"), cleanup_add_fd
, NULL
, 1)) {
3836 if (machine_class
== NULL
) {
3837 fprintf(stderr
, "No machine specified, and there is no default.\n"
3838 "Use -machine help to list supported machines!\n");
3842 current_machine
= MACHINE(object_new(object_class_get_name(
3843 OBJECT_CLASS(machine_class
))));
3844 object_property_add_child(object_get_root(), "machine",
3845 OBJECT(current_machine
), &error_abort
);
3846 cpu_exec_init_all();
3848 if (machine_class
->hw_version
) {
3849 qemu_set_version(machine_class
->hw_version
);
3852 /* Init CPU def lists, based on config
3853 * - Must be called after all the qemu_read_config_file() calls
3854 * - Must be called before list_cpus()
3855 * - Must be called before machine->init()
3859 if (cpu_model
&& is_help_option(cpu_model
)) {
3860 list_cpus(stdout
, &fprintf
, cpu_model
);
3864 /* Open the logfile at this point, if necessary. We can't open the logfile
3865 * when encountering either of the logging options (-d or -D) because the
3866 * other one may be encountered later on the command line, changing the
3867 * location or level of logging.
3872 qemu_set_log_filename(log_file
);
3875 mask
= qemu_str_to_log_mask(log_mask
);
3877 qemu_print_log_usage(stdout
);
3883 if (!is_daemonized()) {
3884 if (!trace_init_backends(trace_events
, trace_file
)) {
3889 /* If no data_dir is specified then try to find it relative to the
3891 if (data_dir_idx
< ARRAY_SIZE(data_dir
)) {
3892 data_dir
[data_dir_idx
] = os_find_datadir();
3893 if (data_dir
[data_dir_idx
] != NULL
) {
3897 /* If all else fails use the install path specified when building. */
3898 if (data_dir_idx
< ARRAY_SIZE(data_dir
)) {
3899 data_dir
[data_dir_idx
++] = CONFIG_QEMU_DATADIR
;
3902 smp_parse(qemu_opts_find(qemu_find_opts("smp-opts"), NULL
));
3904 machine_class
->max_cpus
= machine_class
->max_cpus
?: 1; /* Default to UP */
3905 if (smp_cpus
> machine_class
->max_cpus
) {
3906 fprintf(stderr
, "Number of SMP cpus requested (%d), exceeds max cpus "
3907 "supported by machine `%s' (%d)\n", smp_cpus
,
3908 machine_class
->name
, machine_class
->max_cpus
);
3913 * Get the default machine options from the machine if it is not already
3914 * specified either by the configuration file or by the command line.
3916 if (machine_class
->default_machine_opts
) {
3917 qemu_opts_set_defaults(qemu_find_opts("machine"),
3918 machine_class
->default_machine_opts
, 0);
3921 qemu_opts_foreach(qemu_find_opts("device"), default_driver_check
, NULL
, 0);
3922 qemu_opts_foreach(qemu_find_opts("global"), default_driver_check
, NULL
, 0);
3924 if (!vga_model
&& !default_vga
) {
3925 vga_interface_type
= VGA_DEVICE
;
3927 if (!has_defaults
|| machine_class
->no_serial
) {
3930 if (!has_defaults
|| machine_class
->no_parallel
) {
3931 default_parallel
= 0;
3933 if (!has_defaults
|| !machine_class
->use_virtcon
) {
3934 default_virtcon
= 0;
3936 if (!has_defaults
|| !machine_class
->use_sclp
) {
3939 if (!has_defaults
|| machine_class
->no_floppy
) {
3942 if (!has_defaults
|| machine_class
->no_cdrom
) {
3945 if (!has_defaults
|| machine_class
->no_sdcard
) {
3948 if (!has_defaults
) {
3949 default_monitor
= 0;
3954 if (is_daemonized()) {
3955 /* According to documentation and historically, -nographic redirects
3956 * serial port, parallel port and monitor to stdio, which does not work
3957 * with -daemonize. We can redirect these to null instead, but since
3958 * -nographic is legacy, let's just error out.
3959 * We disallow -nographic only if all other ports are not redirected
3960 * explicitly, to not break existing legacy setups which uses
3961 * -nographic _and_ redirects all ports explicitly - this is valid
3962 * usage, -nographic is just a no-op in this case.
3964 if (display_type
== DT_NOGRAPHIC
3965 && (default_parallel
|| default_serial
3966 || default_monitor
|| default_virtcon
)) {
3967 fprintf(stderr
, "-nographic can not be used with -daemonize\n");
3970 #ifdef CONFIG_CURSES
3971 if (display_type
== DT_CURSES
) {
3972 fprintf(stderr
, "curses display can not be used with -daemonize\n");
3978 if (display_type
== DT_NOGRAPHIC
) {
3979 if (default_parallel
)
3980 add_device_config(DEV_PARALLEL
, "null");
3981 if (default_serial
&& default_monitor
) {
3982 add_device_config(DEV_SERIAL
, "mon:stdio");
3983 } else if (default_virtcon
&& default_monitor
) {
3984 add_device_config(DEV_VIRTCON
, "mon:stdio");
3985 } else if (default_sclp
&& default_monitor
) {
3986 add_device_config(DEV_SCLP
, "mon:stdio");
3989 add_device_config(DEV_SERIAL
, "stdio");
3990 if (default_virtcon
)
3991 add_device_config(DEV_VIRTCON
, "stdio");
3993 add_device_config(DEV_SCLP
, "stdio");
3995 if (default_monitor
)
3996 monitor_parse("stdio", "readline");
4000 add_device_config(DEV_SERIAL
, "vc:80Cx24C");
4001 if (default_parallel
)
4002 add_device_config(DEV_PARALLEL
, "vc:80Cx24C");
4003 if (default_monitor
)
4004 monitor_parse("vc:80Cx24C", "readline");
4005 if (default_virtcon
)
4006 add_device_config(DEV_VIRTCON
, "vc:80Cx24C");
4008 add_device_config(DEV_SCLP
, "vc:80Cx24C");
4012 if (display_type
== DT_DEFAULT
&& !display_remote
) {
4013 #if defined(CONFIG_GTK)
4014 display_type
= DT_GTK
;
4015 #elif defined(CONFIG_SDL) || defined(CONFIG_COCOA)
4016 display_type
= DT_SDL
;
4017 #elif defined(CONFIG_VNC)
4018 vnc_display
= "localhost:0,to=99";
4021 display_type
= DT_NONE
;
4025 if ((no_frame
|| alt_grab
|| ctrl_grab
) && display_type
!= DT_SDL
) {
4026 fprintf(stderr
, "-no-frame, -alt-grab and -ctrl-grab are only valid "
4027 "for SDL, ignoring option\n");
4029 if (no_quit
&& (display_type
!= DT_GTK
&& display_type
!= DT_SDL
)) {
4030 fprintf(stderr
, "-no-quit is only valid for GTK and SDL, "
4031 "ignoring option\n");
4034 #if defined(CONFIG_GTK)
4035 if (display_type
== DT_GTK
) {
4036 early_gtk_display_init();
4042 if (qemu_opts_foreach(qemu_find_opts("chardev"), chardev_init_func
, NULL
, 1) != 0)
4044 #ifdef CONFIG_VIRTFS
4045 if (qemu_opts_foreach(qemu_find_opts("fsdev"), fsdev_init_func
, NULL
, 1) != 0) {
4050 if (pid_file
&& qemu_create_pidfile(pid_file
) != 0) {
4051 fprintf(stderr
, "Could not acquire pid file: %s\n", strerror(errno
));
4055 /* store value for the future use */
4056 qemu_opt_set_number(qemu_find_opts_singleton("memory"), "size", ram_size
);
4058 if (qemu_opts_foreach(qemu_find_opts("device"), device_help_func
, NULL
, 0)
4063 if (qemu_opts_foreach(qemu_find_opts("object"),
4064 object_create
, NULL
, 0) != 0) {
4068 machine_opts
= qemu_get_machine_opts();
4069 if (qemu_opt_foreach(machine_opts
, machine_set_property
, current_machine
,
4071 object_unref(OBJECT(current_machine
));
4075 configure_accelerator(current_machine
);
4078 Error
*local_err
= NULL
;
4079 qtest_init(qtest_chrdev
, qtest_log
, &local_err
);
4081 error_report("%s", error_get_pretty(local_err
));
4082 error_free(local_err
);
4087 machine_opts
= qemu_get_machine_opts();
4088 kernel_filename
= qemu_opt_get(machine_opts
, "kernel");
4089 initrd_filename
= qemu_opt_get(machine_opts
, "initrd");
4090 kernel_cmdline
= qemu_opt_get(machine_opts
, "append");
4091 bios_name
= qemu_opt_get(machine_opts
, "firmware");
4093 boot_order
= machine_class
->default_boot_order
;
4094 opts
= qemu_opts_find(qemu_find_opts("boot-opts"), NULL
);
4096 char *normal_boot_order
;
4097 const char *order
, *once
;
4099 order
= qemu_opt_get(opts
, "order");
4101 validate_bootdevices(order
);
4105 once
= qemu_opt_get(opts
, "once");
4107 validate_bootdevices(once
);
4108 normal_boot_order
= g_strdup(boot_order
);
4110 qemu_register_reset(restore_boot_order
, normal_boot_order
);
4113 boot_menu
= qemu_opt_get_bool(opts
, "menu", boot_menu
);
4114 boot_strict
= qemu_opt_get_bool(opts
, "strict", false);
4117 if (!kernel_cmdline
) {
4118 kernel_cmdline
= "";
4119 current_machine
->kernel_cmdline
= (char *)kernel_cmdline
;
4122 linux_boot
= (kernel_filename
!= NULL
);
4124 if (!linux_boot
&& *kernel_cmdline
!= '\0') {
4125 fprintf(stderr
, "-append only allowed with -kernel option\n");
4129 if (!linux_boot
&& initrd_filename
!= NULL
) {
4130 fprintf(stderr
, "-initrd only allowed with -kernel option\n");
4134 if (!linux_boot
&& qemu_opt_get(machine_opts
, "dtb")) {
4135 fprintf(stderr
, "-dtb only allowed with -kernel option\n");
4139 os_set_line_buffering();
4141 qemu_init_cpu_loop();
4142 qemu_mutex_lock_iothread();
4145 /* spice needs the timers to be initialized by this point */
4151 if (kvm_enabled() || xen_enabled()) {
4152 fprintf(stderr
, "-icount is not allowed with kvm or xen\n");
4155 configure_icount(icount_opts
, &error_abort
);
4156 qemu_opts_del(icount_opts
);
4159 /* clean up network at qemu process termination */
4160 atexit(&net_cleanup
);
4162 if (net_init_clients() < 0) {
4167 if (tpm_init() < 0) {
4172 /* init the bluetooth world */
4173 if (foreach_device_config(DEV_BT
, bt_parse
))
4176 if (!xen_enabled()) {
4177 /* On 32-bit hosts, QEMU is limited by virtual address space */
4178 if (ram_size
> (2047 << 20) && HOST_LONG_BITS
== 32) {
4179 fprintf(stderr
, "qemu: at most 2047 MB RAM can be simulated\n");
4187 /* If the currently selected machine wishes to override the units-per-bus
4188 * property of its default HBA interface type, do so now. */
4189 if (machine_class
->units_per_default_bus
) {
4190 override_max_devs(machine_class
->block_default_type
,
4191 machine_class
->units_per_default_bus
);
4194 /* open the virtual block devices */
4196 qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot
, NULL
, 0);
4197 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func
,
4198 &machine_class
->block_default_type
, 1) != 0) {
4202 default_drive(default_cdrom
, snapshot
, machine_class
->block_default_type
, 2,
4204 default_drive(default_floppy
, snapshot
, IF_FLOPPY
, 0, FD_OPTS
);
4205 default_drive(default_sdcard
, snapshot
, IF_SD
, 0, SD_OPTS
);
4207 if (qemu_opts_foreach(qemu_find_opts("numa"), numa_init_func
,
4214 if (qemu_opts_foreach(qemu_find_opts("mon"), mon_init_func
, NULL
, 1) != 0) {
4218 if (foreach_device_config(DEV_SERIAL
, serial_parse
) < 0)
4220 if (foreach_device_config(DEV_PARALLEL
, parallel_parse
) < 0)
4222 if (foreach_device_config(DEV_VIRTCON
, virtcon_parse
) < 0)
4224 if (foreach_device_config(DEV_SCLP
, sclp_parse
) < 0) {
4227 if (foreach_device_config(DEV_DEBUGCON
, debugcon_parse
) < 0)
4230 /* If no default VGA is requested, the default is "none". */
4232 if (machine_class
->default_display
) {
4233 vga_model
= machine_class
->default_display
;
4234 } else if (cirrus_vga_available()) {
4235 vga_model
= "cirrus";
4236 } else if (vga_available()) {
4241 select_vgahw(vga_model
);
4245 i
= select_watchdog(watchdog
);
4247 exit (i
== 1 ? 1 : 0);
4250 if (machine_class
->compat_props
) {
4251 qdev_prop_register_global_list(machine_class
->compat_props
);
4255 qdev_machine_init();
4257 current_machine
->ram_size
= ram_size
;
4258 current_machine
->maxram_size
= maxram_size
;
4259 current_machine
->ram_slots
= ram_slots
;
4260 current_machine
->boot_order
= boot_order
;
4261 current_machine
->cpu_model
= cpu_model
;
4263 machine_class
->init(current_machine
);
4269 cpu_synchronize_all_post_init();
4273 /* init USB devices */
4274 if (usb_enabled(false)) {
4275 if (foreach_device_config(DEV_USB
, usb_parse
) < 0)
4279 /* init generic devices */
4280 if (qemu_opts_foreach(qemu_find_opts("device"), device_init_func
, NULL
, 1) != 0)
4283 /* Did we create any drives that we failed to create a device for? */
4284 drive_check_orphaned();
4286 net_check_clients();
4288 ds
= init_displaystate();
4290 /* init local displays */
4291 switch (display_type
) {
4293 (void)ds
; /* avoid warning if no display is configured */
4295 #if defined(CONFIG_CURSES)
4297 curses_display_init(ds
, full_screen
);
4300 #if defined(CONFIG_SDL)
4302 sdl_display_init(ds
, full_screen
, no_frame
);
4304 #elif defined(CONFIG_COCOA)
4306 cocoa_display_init(ds
, full_screen
);
4309 #if defined(CONFIG_GTK)
4311 gtk_display_init(ds
, full_screen
, grab_on_hover
);
4318 /* must be after terminal init, SDL library changes signal handlers */
4319 os_setup_signal_handling();
4322 /* init remote displays */
4324 Error
*local_err
= NULL
;
4325 vnc_display_init(ds
);
4326 vnc_display_open(ds
, vnc_display
, &local_err
);
4327 if (local_err
!= NULL
) {
4328 error_report("Failed to start VNC server on `%s': %s",
4329 vnc_display
, error_get_pretty(local_err
));
4330 error_free(local_err
);
4334 if (show_vnc_port
) {
4335 printf("VNC server running on `%s'\n", vnc_display_local_addr(ds
));
4341 qemu_spice_display_init();
4345 if (foreach_device_config(DEV_GDB
, gdbserver_start
) < 0) {
4349 qdev_machine_creation_done();
4351 if (rom_load_all() != 0) {
4352 fprintf(stderr
, "rom loading failed\n");
4356 /* TODO: once all bus devices are qdevified, this should be done
4357 * when bus is created by qdev.c */
4358 qemu_register_reset(qbus_reset_all_fn
, sysbus_get_default());
4359 qemu_run_machine_init_done_notifiers();
4361 /* Done notifiers can load ROMs */
4364 qemu_system_reset(VMRESET_SILENT
);
4366 if (load_vmstate(loadvm
) < 0) {
4371 qdev_prop_check_globals();
4372 if (vmstate_dump_file
) {
4374 dump_vmstate_json_to_file(vmstate_dump_file
);
4379 Error
*local_err
= NULL
;
4380 qemu_start_incoming_migration(incoming
, &local_err
);
4382 error_report("-incoming %s: %s", incoming
,
4383 error_get_pretty(local_err
));
4384 error_free(local_err
);
4387 } else if (autostart
) {
4393 if (is_daemonized()) {
4394 if (!trace_init_backends(trace_events
, trace_file
)) {