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
24 #include "qemu/osdep.h"
28 #include "sysemu/seccomp.h"
31 #if defined(CONFIG_VDE)
32 #include <libvdeplug.h>
36 #if defined(__APPLE__) || defined(main)
38 int qemu_main(int argc
, char **argv
);
39 int main(int argc
, char **argv
)
41 return qemu_main(argc
, argv
);
44 #define main qemu_main
46 #endif /* CONFIG_SDL */
50 #define main qemu_main
51 #endif /* CONFIG_COCOA */
55 #include "qemu/error-report.h"
56 #include "qemu/sockets.h"
58 #include "hw/boards.h"
59 #include "sysemu/accel.h"
61 #include "hw/i386/pc.h"
62 #include "hw/isa/isa.h"
64 #include "sysemu/watchdog.h"
65 #include "hw/smbios/smbios.h"
66 #include "hw/xen/xen.h"
68 #include "hw/loader.h"
69 #include "monitor/qdev.h"
70 #include "sysemu/bt.h"
72 #include "net/slirp.h"
73 #include "monitor/monitor.h"
74 #include "ui/console.h"
76 #include "sysemu/sysemu.h"
77 #include "sysemu/numa.h"
78 #include "exec/gdbstub.h"
79 #include "qemu/timer.h"
80 #include "sysemu/char.h"
81 #include "qemu/bitmap.h"
82 #include "sysemu/blockdev.h"
83 #include "hw/block/block.h"
84 #include "migration/block.h"
85 #include "sysemu/tpm.h"
86 #include "sysemu/dma.h"
87 #include "audio/audio.h"
88 #include "migration/migration.h"
89 #include "sysemu/kvm.h"
90 #include "qapi/qmp/qjson.h"
91 #include "qemu/option.h"
92 #include "qemu/config-file.h"
93 #include "qemu-options.h"
94 #include "qmp-commands.h"
95 #include "qemu/main-loop.h"
97 #include "fsdev/qemu-fsdev.h"
99 #include "sysemu/qtest.h"
101 #include "disas/disas.h"
104 #include "slirp/libslirp.h"
107 #include "trace/control.h"
108 #include "qemu/queue.h"
109 #include "sysemu/cpus.h"
110 #include "sysemu/arch_init.h"
112 #include "ui/qemu-spice.h"
113 #include "qapi/string-input-visitor.h"
114 #include "qapi/opts-visitor.h"
115 #include "qom/object_interfaces.h"
116 #include "qapi-event.h"
117 #include "exec/semihost.h"
118 #include "crypto/init.h"
119 #include "sysemu/replay.h"
120 #include "qapi/qmp/qerror.h"
122 #define MAX_VIRTIO_CONSOLES 1
123 #define MAX_SCLP_CONSOLES 1
125 static const char *data_dir
[16];
126 static int data_dir_idx
;
127 const char *bios_name
= NULL
;
128 enum vga_retrace_method vga_retrace_method
= VGA_RETRACE_DUMB
;
129 DisplayType display_type
= DT_DEFAULT
;
130 int request_opengl
= -1;
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;
161 int acpi_enabled
= 1;
164 static int no_reboot
;
167 int graphic_rotate
= 0;
168 const char *watchdog
;
169 QEMUOptionRom option_rom
[MAX_OPTION_ROMS
];
172 const char *qemu_name
;
175 unsigned int nb_prom_envs
= 0;
176 const char *prom_envs
[MAX_PROM_ENVS
];
179 uint8_t *boot_splash_filedata
;
180 size_t boot_splash_filedata_size
;
181 uint8_t qemu_extra_params_fw
[2];
183 int icount_align_option
;
185 /* The bytes in qemu_uuid[] are in the order specified by RFC4122, _not_ in the
186 * little-endian "wire format" described in the SMBIOS 2.6 specification.
188 uint8_t qemu_uuid
[16];
191 /* Trace unassigned memory or i/o accesses. */
192 bool trace_unassigned
;
194 static NotifierList exit_notifiers
=
195 NOTIFIER_LIST_INITIALIZER(exit_notifiers
);
197 static NotifierList machine_init_done_notifiers
=
198 NOTIFIER_LIST_INITIALIZER(machine_init_done_notifiers
);
202 enum xen_mode xen_mode
= XEN_EMULATE
;
204 static int has_defaults
= 1;
205 static int default_serial
= 1;
206 static int default_parallel
= 1;
207 static int default_virtcon
= 1;
208 static int default_sclp
= 1;
209 static int default_monitor
= 1;
210 static int default_floppy
= 1;
211 static int default_cdrom
= 1;
212 static int default_sdcard
= 1;
213 static int default_vga
= 1;
219 { .driver
= "isa-serial", .flag
= &default_serial
},
220 { .driver
= "isa-parallel", .flag
= &default_parallel
},
221 { .driver
= "isa-fdc", .flag
= &default_floppy
},
222 { .driver
= "ide-cd", .flag
= &default_cdrom
},
223 { .driver
= "ide-hd", .flag
= &default_cdrom
},
224 { .driver
= "ide-drive", .flag
= &default_cdrom
},
225 { .driver
= "scsi-cd", .flag
= &default_cdrom
},
226 { .driver
= "virtio-serial-pci", .flag
= &default_virtcon
},
227 { .driver
= "virtio-serial", .flag
= &default_virtcon
},
228 { .driver
= "VGA", .flag
= &default_vga
},
229 { .driver
= "isa-vga", .flag
= &default_vga
},
230 { .driver
= "cirrus-vga", .flag
= &default_vga
},
231 { .driver
= "isa-cirrus-vga", .flag
= &default_vga
},
232 { .driver
= "vmware-svga", .flag
= &default_vga
},
233 { .driver
= "qxl-vga", .flag
= &default_vga
},
234 { .driver
= "virtio-vga", .flag
= &default_vga
},
237 static QemuOptsList qemu_rtc_opts
= {
239 .head
= QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts
.head
),
243 .type
= QEMU_OPT_STRING
,
246 .type
= QEMU_OPT_STRING
,
249 .type
= QEMU_OPT_STRING
,
251 { /* end of list */ }
255 static QemuOptsList qemu_sandbox_opts
= {
257 .implied_opt_name
= "enable",
258 .head
= QTAILQ_HEAD_INITIALIZER(qemu_sandbox_opts
.head
),
262 .type
= QEMU_OPT_BOOL
,
264 { /* end of list */ }
268 static QemuOptsList qemu_trace_opts
= {
270 .implied_opt_name
= "enable",
271 .head
= QTAILQ_HEAD_INITIALIZER(qemu_trace_opts
.head
),
275 .type
= QEMU_OPT_STRING
,
279 .type
= QEMU_OPT_STRING
,
282 .type
= QEMU_OPT_STRING
,
284 { /* end of list */ }
288 static QemuOptsList qemu_option_rom_opts
= {
289 .name
= "option-rom",
290 .implied_opt_name
= "romfile",
291 .head
= QTAILQ_HEAD_INITIALIZER(qemu_option_rom_opts
.head
),
295 .type
= QEMU_OPT_NUMBER
,
298 .type
= QEMU_OPT_STRING
,
300 { /* end of list */ }
304 static QemuOptsList qemu_machine_opts
= {
306 .implied_opt_name
= "type",
308 .head
= QTAILQ_HEAD_INITIALIZER(qemu_machine_opts
.head
),
311 * no elements => accept any
312 * sanity checking will happen later
313 * when setting machine properties
319 static QemuOptsList qemu_boot_opts
= {
321 .implied_opt_name
= "order",
323 .head
= QTAILQ_HEAD_INITIALIZER(qemu_boot_opts
.head
),
327 .type
= QEMU_OPT_STRING
,
330 .type
= QEMU_OPT_STRING
,
333 .type
= QEMU_OPT_BOOL
,
336 .type
= QEMU_OPT_STRING
,
338 .name
= "splash-time",
339 .type
= QEMU_OPT_STRING
,
341 .name
= "reboot-timeout",
342 .type
= QEMU_OPT_STRING
,
345 .type
= QEMU_OPT_BOOL
,
351 static QemuOptsList qemu_add_fd_opts
= {
353 .head
= QTAILQ_HEAD_INITIALIZER(qemu_add_fd_opts
.head
),
357 .type
= QEMU_OPT_NUMBER
,
358 .help
= "file descriptor of which a duplicate is added to fd set",
361 .type
= QEMU_OPT_NUMBER
,
362 .help
= "ID of the fd set to add fd to",
365 .type
= QEMU_OPT_STRING
,
366 .help
= "free-form string used to describe fd",
368 { /* end of list */ }
372 static QemuOptsList qemu_object_opts
= {
374 .implied_opt_name
= "qom-type",
375 .head
= QTAILQ_HEAD_INITIALIZER(qemu_object_opts
.head
),
381 static QemuOptsList qemu_tpmdev_opts
= {
383 .implied_opt_name
= "type",
384 .head
= QTAILQ_HEAD_INITIALIZER(qemu_tpmdev_opts
.head
),
386 /* options are defined in the TPM backends */
387 { /* end of list */ }
391 static QemuOptsList qemu_realtime_opts
= {
393 .head
= QTAILQ_HEAD_INITIALIZER(qemu_realtime_opts
.head
),
397 .type
= QEMU_OPT_BOOL
,
399 { /* end of list */ }
403 static QemuOptsList qemu_msg_opts
= {
405 .head
= QTAILQ_HEAD_INITIALIZER(qemu_msg_opts
.head
),
409 .type
= QEMU_OPT_BOOL
,
411 { /* end of list */ }
415 static QemuOptsList qemu_name_opts
= {
417 .implied_opt_name
= "guest",
419 .head
= QTAILQ_HEAD_INITIALIZER(qemu_name_opts
.head
),
423 .type
= QEMU_OPT_STRING
,
424 .help
= "Sets the name of the guest.\n"
425 "This name will be displayed in the SDL window caption.\n"
426 "The name will also be used for the VNC server",
429 .type
= QEMU_OPT_STRING
,
430 .help
= "Sets the name of the QEMU process, as shown in top etc",
432 .name
= "debug-threads",
433 .type
= QEMU_OPT_BOOL
,
434 .help
= "When enabled, name the individual threads; defaults off.\n"
435 "NOTE: The thread names are for debugging and not a\n"
438 { /* End of list */ }
442 static QemuOptsList qemu_mem_opts
= {
444 .implied_opt_name
= "size",
445 .head
= QTAILQ_HEAD_INITIALIZER(qemu_mem_opts
.head
),
450 .type
= QEMU_OPT_SIZE
,
454 .type
= QEMU_OPT_NUMBER
,
458 .type
= QEMU_OPT_SIZE
,
460 { /* end of list */ }
464 static QemuOptsList qemu_icount_opts
= {
466 .implied_opt_name
= "shift",
468 .head
= QTAILQ_HEAD_INITIALIZER(qemu_icount_opts
.head
),
472 .type
= QEMU_OPT_STRING
,
475 .type
= QEMU_OPT_BOOL
,
478 .type
= QEMU_OPT_BOOL
,
481 .type
= QEMU_OPT_STRING
,
484 .type
= QEMU_OPT_STRING
,
486 { /* end of list */ }
490 static QemuOptsList qemu_semihosting_config_opts
= {
491 .name
= "semihosting-config",
492 .implied_opt_name
= "enable",
493 .head
= QTAILQ_HEAD_INITIALIZER(qemu_semihosting_config_opts
.head
),
497 .type
= QEMU_OPT_BOOL
,
500 .type
= QEMU_OPT_STRING
,
503 .type
= QEMU_OPT_STRING
,
505 { /* end of list */ }
509 static QemuOptsList qemu_fw_cfg_opts
= {
511 .implied_opt_name
= "name",
512 .head
= QTAILQ_HEAD_INITIALIZER(qemu_fw_cfg_opts
.head
),
516 .type
= QEMU_OPT_STRING
,
517 .help
= "Sets the fw_cfg name of the blob to be inserted",
520 .type
= QEMU_OPT_STRING
,
521 .help
= "Sets the name of the file from which\n"
522 "the fw_cfg blob will be loaded",
525 .type
= QEMU_OPT_STRING
,
526 .help
= "Sets content of the blob to be inserted from a string",
528 { /* end of list */ }
533 * Get machine options
535 * Returns: machine options (never null).
537 QemuOpts
*qemu_get_machine_opts(void)
539 return qemu_find_opts_singleton("machine");
542 const char *qemu_get_vm_name(void)
547 static void res_free(void)
549 g_free(boot_splash_filedata
);
550 boot_splash_filedata
= NULL
;
553 static int default_driver_check(void *opaque
, QemuOpts
*opts
, Error
**errp
)
555 const char *driver
= qemu_opt_get(opts
, "driver");
560 for (i
= 0; i
< ARRAY_SIZE(default_list
); i
++) {
561 if (strcmp(default_list
[i
].driver
, driver
) != 0)
563 *(default_list
[i
].flag
) = 0;
568 /***********************************************************/
571 static RunState current_run_state
= RUN_STATE_PRELAUNCH
;
573 /* We use RUN_STATE__MAX but any invalid value will do */
574 static RunState vmstop_requested
= RUN_STATE__MAX
;
575 static QemuMutex vmstop_lock
;
580 } RunStateTransition
;
582 static const RunStateTransition runstate_transitions_def
[] = {
584 { RUN_STATE_DEBUG
, RUN_STATE_RUNNING
},
585 { RUN_STATE_DEBUG
, RUN_STATE_FINISH_MIGRATE
},
586 { RUN_STATE_DEBUG
, RUN_STATE_PRELAUNCH
},
588 { RUN_STATE_INMIGRATE
, RUN_STATE_INTERNAL_ERROR
},
589 { RUN_STATE_INMIGRATE
, RUN_STATE_IO_ERROR
},
590 { RUN_STATE_INMIGRATE
, RUN_STATE_PAUSED
},
591 { RUN_STATE_INMIGRATE
, RUN_STATE_RUNNING
},
592 { RUN_STATE_INMIGRATE
, RUN_STATE_SHUTDOWN
},
593 { RUN_STATE_INMIGRATE
, RUN_STATE_SUSPENDED
},
594 { RUN_STATE_INMIGRATE
, RUN_STATE_WATCHDOG
},
595 { RUN_STATE_INMIGRATE
, RUN_STATE_GUEST_PANICKED
},
596 { RUN_STATE_INMIGRATE
, RUN_STATE_FINISH_MIGRATE
},
597 { RUN_STATE_INMIGRATE
, RUN_STATE_PRELAUNCH
},
598 { RUN_STATE_INMIGRATE
, RUN_STATE_POSTMIGRATE
},
600 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_PAUSED
},
601 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_FINISH_MIGRATE
},
602 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_PRELAUNCH
},
604 { RUN_STATE_IO_ERROR
, RUN_STATE_RUNNING
},
605 { RUN_STATE_IO_ERROR
, RUN_STATE_FINISH_MIGRATE
},
606 { RUN_STATE_IO_ERROR
, RUN_STATE_PRELAUNCH
},
608 { RUN_STATE_PAUSED
, RUN_STATE_RUNNING
},
609 { RUN_STATE_PAUSED
, RUN_STATE_FINISH_MIGRATE
},
610 { RUN_STATE_PAUSED
, RUN_STATE_PRELAUNCH
},
612 { RUN_STATE_POSTMIGRATE
, RUN_STATE_RUNNING
},
613 { RUN_STATE_POSTMIGRATE
, RUN_STATE_FINISH_MIGRATE
},
614 { RUN_STATE_POSTMIGRATE
, RUN_STATE_PRELAUNCH
},
616 { RUN_STATE_PRELAUNCH
, RUN_STATE_RUNNING
},
617 { RUN_STATE_PRELAUNCH
, RUN_STATE_FINISH_MIGRATE
},
618 { RUN_STATE_PRELAUNCH
, RUN_STATE_INMIGRATE
},
620 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_RUNNING
},
621 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_POSTMIGRATE
},
622 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_PRELAUNCH
},
624 { RUN_STATE_RESTORE_VM
, RUN_STATE_RUNNING
},
625 { RUN_STATE_RESTORE_VM
, RUN_STATE_PRELAUNCH
},
627 { RUN_STATE_RUNNING
, RUN_STATE_DEBUG
},
628 { RUN_STATE_RUNNING
, RUN_STATE_INTERNAL_ERROR
},
629 { RUN_STATE_RUNNING
, RUN_STATE_IO_ERROR
},
630 { RUN_STATE_RUNNING
, RUN_STATE_PAUSED
},
631 { RUN_STATE_RUNNING
, RUN_STATE_FINISH_MIGRATE
},
632 { RUN_STATE_RUNNING
, RUN_STATE_RESTORE_VM
},
633 { RUN_STATE_RUNNING
, RUN_STATE_SAVE_VM
},
634 { RUN_STATE_RUNNING
, RUN_STATE_SHUTDOWN
},
635 { RUN_STATE_RUNNING
, RUN_STATE_WATCHDOG
},
636 { RUN_STATE_RUNNING
, RUN_STATE_GUEST_PANICKED
},
638 { RUN_STATE_SAVE_VM
, RUN_STATE_RUNNING
},
640 { RUN_STATE_SHUTDOWN
, RUN_STATE_PAUSED
},
641 { RUN_STATE_SHUTDOWN
, RUN_STATE_FINISH_MIGRATE
},
642 { RUN_STATE_SHUTDOWN
, RUN_STATE_PRELAUNCH
},
644 { RUN_STATE_DEBUG
, RUN_STATE_SUSPENDED
},
645 { RUN_STATE_RUNNING
, RUN_STATE_SUSPENDED
},
646 { RUN_STATE_SUSPENDED
, RUN_STATE_RUNNING
},
647 { RUN_STATE_SUSPENDED
, RUN_STATE_FINISH_MIGRATE
},
648 { RUN_STATE_SUSPENDED
, RUN_STATE_PRELAUNCH
},
650 { RUN_STATE_WATCHDOG
, RUN_STATE_RUNNING
},
651 { RUN_STATE_WATCHDOG
, RUN_STATE_FINISH_MIGRATE
},
652 { RUN_STATE_WATCHDOG
, RUN_STATE_PRELAUNCH
},
654 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_RUNNING
},
655 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_FINISH_MIGRATE
},
656 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_PRELAUNCH
},
658 { RUN_STATE__MAX
, RUN_STATE__MAX
},
661 static bool runstate_valid_transitions
[RUN_STATE__MAX
][RUN_STATE__MAX
];
663 bool runstate_check(RunState state
)
665 return current_run_state
== state
;
668 bool runstate_store(char *str
, size_t size
)
670 const char *state
= RunState_lookup
[current_run_state
];
671 size_t len
= strlen(state
) + 1;
676 memcpy(str
, state
, len
);
680 static void runstate_init(void)
682 const RunStateTransition
*p
;
684 memset(&runstate_valid_transitions
, 0, sizeof(runstate_valid_transitions
));
685 for (p
= &runstate_transitions_def
[0]; p
->from
!= RUN_STATE__MAX
; p
++) {
686 runstate_valid_transitions
[p
->from
][p
->to
] = true;
689 qemu_mutex_init(&vmstop_lock
);
692 /* This function will abort() on invalid state transitions */
693 void runstate_set(RunState new_state
)
695 assert(new_state
< RUN_STATE__MAX
);
697 if (!runstate_valid_transitions
[current_run_state
][new_state
]) {
698 error_report("invalid runstate transition: '%s' -> '%s'",
699 RunState_lookup
[current_run_state
],
700 RunState_lookup
[new_state
]);
703 trace_runstate_set(new_state
);
704 current_run_state
= new_state
;
707 int runstate_is_running(void)
709 return runstate_check(RUN_STATE_RUNNING
);
712 bool runstate_needs_reset(void)
714 return runstate_check(RUN_STATE_INTERNAL_ERROR
) ||
715 runstate_check(RUN_STATE_SHUTDOWN
);
718 StatusInfo
*qmp_query_status(Error
**errp
)
720 StatusInfo
*info
= g_malloc0(sizeof(*info
));
722 info
->running
= runstate_is_running();
723 info
->singlestep
= singlestep
;
724 info
->status
= current_run_state
;
729 static bool qemu_vmstop_requested(RunState
*r
)
731 qemu_mutex_lock(&vmstop_lock
);
732 *r
= vmstop_requested
;
733 vmstop_requested
= RUN_STATE__MAX
;
734 qemu_mutex_unlock(&vmstop_lock
);
735 return *r
< RUN_STATE__MAX
;
738 void qemu_system_vmstop_request_prepare(void)
740 qemu_mutex_lock(&vmstop_lock
);
743 void qemu_system_vmstop_request(RunState state
)
745 vmstop_requested
= state
;
746 qemu_mutex_unlock(&vmstop_lock
);
754 qemu_vmstop_requested(&requested
);
755 if (runstate_is_running() && requested
== RUN_STATE__MAX
) {
759 /* Ensure that a STOP/RESUME pair of events is emitted if a
760 * vmstop request was pending. The BLOCK_IO_ERROR event, for
761 * example, according to documentation is always followed by
764 if (runstate_is_running()) {
765 qapi_event_send_stop(&error_abort
);
768 runstate_set(RUN_STATE_RUNNING
);
769 vm_state_notify(1, RUN_STATE_RUNNING
);
773 qapi_event_send_resume(&error_abort
);
777 /***********************************************************/
778 /* real time host monotonic timer */
780 static time_t qemu_time(void)
782 return qemu_clock_get_ms(QEMU_CLOCK_HOST
) / 1000;
785 /***********************************************************/
786 /* host time/date access */
787 void qemu_get_timedate(struct tm
*tm
, int offset
)
789 time_t ti
= qemu_time();
792 if (rtc_date_offset
== -1) {
796 localtime_r(&ti
, tm
);
798 ti
-= rtc_date_offset
;
803 int qemu_timedate_diff(struct tm
*tm
)
807 if (rtc_date_offset
== -1)
809 seconds
= mktimegm(tm
);
812 tmp
.tm_isdst
= -1; /* use timezone to figure it out */
813 seconds
= mktime(&tmp
);
816 seconds
= mktimegm(tm
) + rtc_date_offset
;
818 return seconds
- qemu_time();
821 static void configure_rtc_date_offset(const char *startdate
, int legacy
)
823 time_t rtc_start_date
;
826 if (!strcmp(startdate
, "now") && legacy
) {
827 rtc_date_offset
= -1;
829 if (sscanf(startdate
, "%d-%d-%dT%d:%d:%d",
837 } else if (sscanf(startdate
, "%d-%d-%d",
849 rtc_start_date
= mktimegm(&tm
);
850 if (rtc_start_date
== -1) {
852 error_report("invalid date format");
853 error_printf("valid formats: "
854 "'2006-06-17T16:01:21' or '2006-06-17'\n");
857 rtc_date_offset
= qemu_time() - rtc_start_date
;
861 static void configure_rtc(QemuOpts
*opts
)
865 value
= qemu_opt_get(opts
, "base");
867 if (!strcmp(value
, "utc")) {
869 } else if (!strcmp(value
, "localtime")) {
870 Error
*blocker
= NULL
;
872 error_setg(&blocker
, QERR_REPLAY_NOT_SUPPORTED
,
873 "-rtc base=localtime");
874 replay_add_blocker(blocker
);
876 configure_rtc_date_offset(value
, 0);
879 value
= qemu_opt_get(opts
, "clock");
881 if (!strcmp(value
, "host")) {
882 rtc_clock
= QEMU_CLOCK_HOST
;
883 } else if (!strcmp(value
, "rt")) {
884 rtc_clock
= QEMU_CLOCK_REALTIME
;
885 } else if (!strcmp(value
, "vm")) {
886 rtc_clock
= QEMU_CLOCK_VIRTUAL
;
888 error_report("invalid option value '%s'", value
);
892 value
= qemu_opt_get(opts
, "driftfix");
894 if (!strcmp(value
, "slew")) {
895 static GlobalProperty slew_lost_ticks
[] = {
897 .driver
= "mc146818rtc",
898 .property
= "lost_tick_policy",
901 { /* end of list */ }
904 qdev_prop_register_global_list(slew_lost_ticks
);
905 } else if (!strcmp(value
, "none")) {
906 /* discard is default */
908 error_report("invalid option value '%s'", value
);
914 /***********************************************************/
915 /* Bluetooth support */
918 static struct HCIInfo
*hci_table
[MAX_NICS
];
920 struct HCIInfo
*qemu_next_hci(void)
922 if (cur_hci
== nb_hcis
)
925 return hci_table
[cur_hci
++];
928 static int bt_hci_parse(const char *str
)
933 if (nb_hcis
>= MAX_NICS
) {
934 error_report("too many bluetooth HCIs (max %i)", MAX_NICS
);
947 bdaddr
.b
[5] = 0x56 + nb_hcis
;
948 hci
->bdaddr_set(hci
, bdaddr
.b
);
950 hci_table
[nb_hcis
++] = hci
;
955 static void bt_vhci_add(int vlan_id
)
957 struct bt_scatternet_s
*vlan
= qemu_find_bt_vlan(vlan_id
);
960 error_report("warning: adding a VHCI to an empty scatternet %i",
963 bt_vhci_init(bt_new_hci(vlan
));
966 static struct bt_device_s
*bt_device_add(const char *opt
)
968 struct bt_scatternet_s
*vlan
;
970 char *endp
= strstr(opt
, ",vlan=");
971 int len
= (endp
? endp
- opt
: strlen(opt
)) + 1;
974 pstrcpy(devname
, MIN(sizeof(devname
), len
), opt
);
977 vlan_id
= strtol(endp
+ 6, &endp
, 0);
979 error_report("unrecognised bluetooth vlan Id");
984 vlan
= qemu_find_bt_vlan(vlan_id
);
987 error_report("warning: adding a slave device to an empty scatternet %i",
990 if (!strcmp(devname
, "keyboard"))
991 return bt_keyboard_init(vlan
);
993 error_report("unsupported bluetooth device '%s'", devname
);
997 static int bt_parse(const char *opt
)
999 const char *endp
, *p
;
1002 if (strstart(opt
, "hci", &endp
)) {
1003 if (!*endp
|| *endp
== ',') {
1005 if (!strstart(endp
, ",vlan=", 0))
1008 return bt_hci_parse(opt
);
1010 } else if (strstart(opt
, "vhci", &endp
)) {
1011 if (!*endp
|| *endp
== ',') {
1013 if (strstart(endp
, ",vlan=", &p
)) {
1014 vlan
= strtol(p
, (char **) &endp
, 0);
1016 error_report("bad scatternet '%s'", p
);
1020 error_report("bad parameter '%s'", endp
+ 1);
1029 } else if (strstart(opt
, "device:", &endp
))
1030 return !bt_device_add(endp
);
1032 error_report("bad bluetooth parameter '%s'", opt
);
1036 static int parse_sandbox(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1038 /* FIXME: change this to true for 1.3 */
1039 if (qemu_opt_get_bool(opts
, "enable", false)) {
1040 #ifdef CONFIG_SECCOMP
1041 if (seccomp_start() < 0) {
1042 error_report("failed to install seccomp syscall filter "
1047 error_report("seccomp support is disabled");
1055 static int parse_name(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1057 const char *proc_name
;
1059 if (qemu_opt_get(opts
, "debug-threads")) {
1060 qemu_thread_naming(qemu_opt_get_bool(opts
, "debug-threads", false));
1062 qemu_name
= qemu_opt_get(opts
, "guest");
1064 proc_name
= qemu_opt_get(opts
, "process");
1066 os_set_proc_name(proc_name
);
1072 bool defaults_enabled(void)
1074 return has_defaults
;
1077 bool usb_enabled(void)
1079 return machine_usb(current_machine
);
1083 static int parse_add_fd(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1085 int fd
, dupfd
, flags
;
1087 const char *fd_opaque
= NULL
;
1090 fd
= qemu_opt_get_number(opts
, "fd", -1);
1091 fdset_id
= qemu_opt_get_number(opts
, "set", -1);
1092 fd_opaque
= qemu_opt_get(opts
, "opaque");
1095 error_report("fd option is required and must be non-negative");
1099 if (fd
<= STDERR_FILENO
) {
1100 error_report("fd cannot be a standard I/O stream");
1105 * All fds inherited across exec() necessarily have FD_CLOEXEC
1106 * clear, while qemu sets FD_CLOEXEC on all other fds used internally.
1108 flags
= fcntl(fd
, F_GETFD
);
1109 if (flags
== -1 || (flags
& FD_CLOEXEC
)) {
1110 error_report("fd is not valid or already in use");
1115 error_report("set option is required and must be non-negative");
1119 #ifdef F_DUPFD_CLOEXEC
1120 dupfd
= fcntl(fd
, F_DUPFD_CLOEXEC
, 0);
1124 qemu_set_cloexec(dupfd
);
1128 error_report("error duplicating fd: %s", strerror(errno
));
1132 /* add the duplicate fd, and optionally the opaque string, to the fd set */
1133 fdinfo
= monitor_fdset_add_fd(dupfd
, true, fdset_id
, !!fd_opaque
, fd_opaque
,
1140 static int cleanup_add_fd(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1144 fd
= qemu_opt_get_number(opts
, "fd", -1);
1151 /***********************************************************/
1152 /* QEMU Block devices */
1154 #define HD_OPTS "media=disk"
1155 #define CDROM_OPTS "media=cdrom"
1157 #define PFLASH_OPTS ""
1161 static int drive_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1163 BlockInterfaceType
*block_default_type
= opaque
;
1165 return drive_new(opts
, *block_default_type
) == NULL
;
1168 static int drive_enable_snapshot(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1170 if (qemu_opt_get(opts
, "snapshot") == NULL
) {
1171 qemu_opt_set(opts
, "snapshot", "on", &error_abort
);
1176 static void default_drive(int enable
, int snapshot
, BlockInterfaceType type
,
1177 int index
, const char *optstr
)
1182 if (!enable
|| drive_get_by_index(type
, index
)) {
1186 opts
= drive_add(type
, index
, NULL
, optstr
);
1188 drive_enable_snapshot(NULL
, opts
, NULL
);
1191 dinfo
= drive_new(opts
, type
);
1195 dinfo
->is_default
= true;
1199 static QemuOptsList qemu_smp_opts
= {
1201 .implied_opt_name
= "cpus",
1202 .merge_lists
= true,
1203 .head
= QTAILQ_HEAD_INITIALIZER(qemu_smp_opts
.head
),
1207 .type
= QEMU_OPT_NUMBER
,
1210 .type
= QEMU_OPT_NUMBER
,
1213 .type
= QEMU_OPT_NUMBER
,
1216 .type
= QEMU_OPT_NUMBER
,
1219 .type
= QEMU_OPT_NUMBER
,
1221 { /*End of list */ }
1225 static void smp_parse(QemuOpts
*opts
)
1229 unsigned cpus
= qemu_opt_get_number(opts
, "cpus", 0);
1230 unsigned sockets
= qemu_opt_get_number(opts
, "sockets", 0);
1231 unsigned cores
= qemu_opt_get_number(opts
, "cores", 0);
1232 unsigned threads
= qemu_opt_get_number(opts
, "threads", 0);
1234 /* compute missing values, prefer sockets over cores over threads */
1235 if (cpus
== 0 || sockets
== 0) {
1236 sockets
= sockets
> 0 ? sockets
: 1;
1237 cores
= cores
> 0 ? cores
: 1;
1238 threads
= threads
> 0 ? threads
: 1;
1240 cpus
= cores
* threads
* sockets
;
1242 } else if (cores
== 0) {
1243 threads
= threads
> 0 ? threads
: 1;
1244 cores
= cpus
/ (sockets
* threads
);
1245 } else if (threads
== 0) {
1246 threads
= cpus
/ (cores
* sockets
);
1247 } else if (sockets
* cores
* threads
< cpus
) {
1248 error_report("cpu topology: "
1249 "sockets (%u) * cores (%u) * threads (%u) < "
1251 sockets
, cores
, threads
, cpus
);
1255 max_cpus
= qemu_opt_get_number(opts
, "maxcpus", cpus
);
1256 if (sockets
* cores
* threads
> max_cpus
) {
1257 error_report("cpu topology: "
1258 "sockets (%u) * cores (%u) * threads (%u) > "
1260 sockets
, cores
, threads
, max_cpus
);
1265 smp_cores
= cores
> 0 ? cores
: 1;
1266 smp_threads
= threads
> 0 ? threads
: 1;
1270 if (max_cpus
== 0) {
1271 max_cpus
= smp_cpus
;
1274 if (max_cpus
> MAX_CPUMASK_BITS
) {
1275 error_report("unsupported number of maxcpus");
1278 if (max_cpus
< smp_cpus
) {
1279 error_report("maxcpus must be equal to or greater than smp");
1283 if (smp_cpus
> 1 || smp_cores
> 1 || smp_threads
> 1) {
1284 Error
*blocker
= NULL
;
1285 error_setg(&blocker
, QERR_REPLAY_NOT_SUPPORTED
, "smp");
1286 replay_add_blocker(blocker
);
1290 static void realtime_init(void)
1293 if (os_mlock() < 0) {
1294 error_report("locking memory failed");
1301 static void configure_msg(QemuOpts
*opts
)
1303 enable_timestamp_msg
= qemu_opt_get_bool(opts
, "timestamp", true);
1306 /***********************************************************/
1309 typedef struct SemihostingConfig
{
1311 SemihostingTarget target
;
1314 const char *cmdline
; /* concatenated argv */
1315 } SemihostingConfig
;
1317 static SemihostingConfig semihosting
;
1319 bool semihosting_enabled(void)
1321 return semihosting
.enabled
;
1324 SemihostingTarget
semihosting_get_target(void)
1326 return semihosting
.target
;
1329 const char *semihosting_get_arg(int i
)
1331 if (i
>= semihosting
.argc
) {
1334 return semihosting
.argv
[i
];
1337 int semihosting_get_argc(void)
1339 return semihosting
.argc
;
1342 const char *semihosting_get_cmdline(void)
1344 if (semihosting
.cmdline
== NULL
&& semihosting
.argc
> 0) {
1345 semihosting
.cmdline
= g_strjoinv(" ", (gchar
**)semihosting
.argv
);
1347 return semihosting
.cmdline
;
1350 static int add_semihosting_arg(void *opaque
,
1351 const char *name
, const char *val
,
1354 SemihostingConfig
*s
= opaque
;
1355 if (strcmp(name
, "arg") == 0) {
1357 /* one extra element as g_strjoinv() expects NULL-terminated array */
1358 s
->argv
= g_realloc(s
->argv
, (s
->argc
+ 1) * sizeof(void *));
1359 s
->argv
[s
->argc
- 1] = val
;
1360 s
->argv
[s
->argc
] = NULL
;
1365 /* Use strings passed via -kernel/-append to initialize semihosting.argv[] */
1366 static inline void semihosting_arg_fallback(const char *file
, const char *cmd
)
1371 add_semihosting_arg(&semihosting
, "arg", file
, NULL
);
1373 /* split -append and initialize argv[1..n] */
1374 cmd_token
= strtok(g_strdup(cmd
), " ");
1376 add_semihosting_arg(&semihosting
, "arg", cmd_token
, NULL
);
1377 cmd_token
= strtok(NULL
, " ");
1381 /* Now we still need this for compatibility with XEN. */
1382 bool has_igd_gfx_passthru
;
1383 static void igd_gfx_passthru(void)
1385 has_igd_gfx_passthru
= current_machine
->igd_gfx_passthru
;
1388 /***********************************************************/
1391 static int usb_device_add(const char *devname
)
1393 USBDevice
*dev
= NULL
;
1394 #ifndef CONFIG_LINUX
1398 if (!usb_enabled()) {
1402 /* drivers with .usbdevice_name entry in USBDeviceInfo */
1403 dev
= usbdevice_create(devname
);
1407 /* the other ones */
1408 #ifndef CONFIG_LINUX
1409 /* only the linux version is qdev-ified, usb-bsd still needs this */
1410 if (strstart(devname
, "host:", &p
)) {
1411 dev
= usb_host_device_open(usb_bus_find(-1), p
);
1421 static int usb_device_del(const char *devname
)
1426 if (strstart(devname
, "host:", &p
)) {
1430 if (!usb_enabled()) {
1434 p
= strchr(devname
, '.');
1437 bus_num
= strtoul(devname
, NULL
, 0);
1438 addr
= strtoul(p
+ 1, NULL
, 0);
1440 return usb_device_delete_addr(bus_num
, addr
);
1443 static int usb_parse(const char *cmdline
)
1446 r
= usb_device_add(cmdline
);
1448 error_report("could not add USB device '%s'", cmdline
);
1453 void hmp_usb_add(Monitor
*mon
, const QDict
*qdict
)
1455 const char *devname
= qdict_get_str(qdict
, "devname");
1456 if (usb_device_add(devname
) < 0) {
1457 error_report("could not add USB device '%s'", devname
);
1461 void hmp_usb_del(Monitor
*mon
, const QDict
*qdict
)
1463 const char *devname
= qdict_get_str(qdict
, "devname");
1464 if (usb_device_del(devname
) < 0) {
1465 error_report("could not delete USB device '%s'", devname
);
1469 /***********************************************************/
1470 /* machine registration */
1472 MachineState
*current_machine
;
1474 static MachineClass
*find_machine(const char *name
)
1476 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
1477 MachineClass
*mc
= NULL
;
1479 for (el
= machines
; el
; el
= el
->next
) {
1480 MachineClass
*temp
= el
->data
;
1482 if (!strcmp(temp
->name
, name
)) {
1487 !strcmp(temp
->alias
, name
)) {
1493 g_slist_free(machines
);
1497 MachineClass
*find_default_machine(void)
1499 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
1500 MachineClass
*mc
= NULL
;
1502 for (el
= machines
; el
; el
= el
->next
) {
1503 MachineClass
*temp
= el
->data
;
1505 if (temp
->is_default
) {
1511 g_slist_free(machines
);
1515 MachineInfoList
*qmp_query_machines(Error
**errp
)
1517 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
1518 MachineInfoList
*mach_list
= NULL
;
1520 for (el
= machines
; el
; el
= el
->next
) {
1521 MachineClass
*mc
= el
->data
;
1522 MachineInfoList
*entry
;
1525 info
= g_malloc0(sizeof(*info
));
1526 if (mc
->is_default
) {
1527 info
->has_is_default
= true;
1528 info
->is_default
= true;
1532 info
->has_alias
= true;
1533 info
->alias
= g_strdup(mc
->alias
);
1536 info
->name
= g_strdup(mc
->name
);
1537 info
->cpu_max
= !mc
->max_cpus
? 1 : mc
->max_cpus
;
1539 entry
= g_malloc0(sizeof(*entry
));
1540 entry
->value
= info
;
1541 entry
->next
= mach_list
;
1545 g_slist_free(machines
);
1549 static int machine_help_func(QemuOpts
*opts
, MachineState
*machine
)
1551 ObjectProperty
*prop
;
1552 ObjectPropertyIterator iter
;
1554 if (!qemu_opt_has_help_opt(opts
)) {
1558 object_property_iter_init(&iter
, OBJECT(machine
));
1559 while ((prop
= object_property_iter_next(&iter
))) {
1564 error_printf("%s.%s=%s", MACHINE_GET_CLASS(machine
)->name
,
1565 prop
->name
, prop
->type
);
1566 if (prop
->description
) {
1567 error_printf(" (%s)\n", prop
->description
);
1576 /***********************************************************/
1577 /* main execution loop */
1579 struct vm_change_state_entry
{
1580 VMChangeStateHandler
*cb
;
1582 QLIST_ENTRY (vm_change_state_entry
) entries
;
1585 static QLIST_HEAD(vm_change_state_head
, vm_change_state_entry
) vm_change_state_head
;
1587 VMChangeStateEntry
*qemu_add_vm_change_state_handler(VMChangeStateHandler
*cb
,
1590 VMChangeStateEntry
*e
;
1592 e
= g_malloc0(sizeof (*e
));
1596 QLIST_INSERT_HEAD(&vm_change_state_head
, e
, entries
);
1600 void qemu_del_vm_change_state_handler(VMChangeStateEntry
*e
)
1602 QLIST_REMOVE (e
, entries
);
1606 void vm_state_notify(int running
, RunState state
)
1608 VMChangeStateEntry
*e
, *next
;
1610 trace_vm_state_notify(running
, state
);
1612 QLIST_FOREACH_SAFE(e
, &vm_change_state_head
, entries
, next
) {
1613 e
->cb(e
->opaque
, running
, state
);
1617 /* reset/shutdown handler */
1619 typedef struct QEMUResetEntry
{
1620 QTAILQ_ENTRY(QEMUResetEntry
) entry
;
1621 QEMUResetHandler
*func
;
1625 static QTAILQ_HEAD(reset_handlers
, QEMUResetEntry
) reset_handlers
=
1626 QTAILQ_HEAD_INITIALIZER(reset_handlers
);
1627 static int reset_requested
;
1628 static int shutdown_requested
, shutdown_signal
= -1;
1629 static pid_t shutdown_pid
;
1630 static int powerdown_requested
;
1631 static int debug_requested
;
1632 static int suspend_requested
;
1633 static WakeupReason wakeup_reason
;
1634 static NotifierList powerdown_notifiers
=
1635 NOTIFIER_LIST_INITIALIZER(powerdown_notifiers
);
1636 static NotifierList suspend_notifiers
=
1637 NOTIFIER_LIST_INITIALIZER(suspend_notifiers
);
1638 static NotifierList wakeup_notifiers
=
1639 NOTIFIER_LIST_INITIALIZER(wakeup_notifiers
);
1640 static uint32_t wakeup_reason_mask
= ~(1 << QEMU_WAKEUP_REASON_NONE
);
1642 int qemu_shutdown_requested_get(void)
1644 return shutdown_requested
;
1647 int qemu_reset_requested_get(void)
1649 return reset_requested
;
1652 static int qemu_shutdown_requested(void)
1654 return atomic_xchg(&shutdown_requested
, 0);
1657 static void qemu_kill_report(void)
1659 if (!qtest_driver() && shutdown_signal
!= -1) {
1660 if (shutdown_pid
== 0) {
1661 /* This happens for eg ^C at the terminal, so it's worth
1662 * avoiding printing an odd message in that case.
1664 error_report("terminating on signal %d", shutdown_signal
);
1666 error_report("terminating on signal %d from pid " FMT_pid
,
1667 shutdown_signal
, shutdown_pid
);
1669 shutdown_signal
= -1;
1673 static int qemu_reset_requested(void)
1675 int r
= reset_requested
;
1676 if (r
&& replay_checkpoint(CHECKPOINT_RESET_REQUESTED
)) {
1677 reset_requested
= 0;
1683 static int qemu_suspend_requested(void)
1685 int r
= suspend_requested
;
1686 if (r
&& replay_checkpoint(CHECKPOINT_SUSPEND_REQUESTED
)) {
1687 suspend_requested
= 0;
1693 static WakeupReason
qemu_wakeup_requested(void)
1695 return wakeup_reason
;
1698 static int qemu_powerdown_requested(void)
1700 int r
= powerdown_requested
;
1701 powerdown_requested
= 0;
1705 static int qemu_debug_requested(void)
1707 int r
= debug_requested
;
1708 debug_requested
= 0;
1712 void qemu_register_reset(QEMUResetHandler
*func
, void *opaque
)
1714 QEMUResetEntry
*re
= g_malloc0(sizeof(QEMUResetEntry
));
1717 re
->opaque
= opaque
;
1718 QTAILQ_INSERT_TAIL(&reset_handlers
, re
, entry
);
1721 void qemu_unregister_reset(QEMUResetHandler
*func
, void *opaque
)
1725 QTAILQ_FOREACH(re
, &reset_handlers
, entry
) {
1726 if (re
->func
== func
&& re
->opaque
== opaque
) {
1727 QTAILQ_REMOVE(&reset_handlers
, re
, entry
);
1734 void qemu_devices_reset(void)
1736 QEMUResetEntry
*re
, *nre
;
1738 /* reset all devices */
1739 QTAILQ_FOREACH_SAFE(re
, &reset_handlers
, entry
, nre
) {
1740 re
->func(re
->opaque
);
1744 void qemu_system_reset(bool report
)
1748 mc
= current_machine
? MACHINE_GET_CLASS(current_machine
) : NULL
;
1750 if (mc
&& mc
->reset
) {
1753 qemu_devices_reset();
1756 qapi_event_send_reset(&error_abort
);
1758 cpu_synchronize_all_post_reset();
1761 void qemu_system_guest_panicked(void)
1764 current_cpu
->crash_occurred
= true;
1766 qapi_event_send_guest_panicked(GUEST_PANIC_ACTION_PAUSE
, &error_abort
);
1767 vm_stop(RUN_STATE_GUEST_PANICKED
);
1770 void qemu_system_reset_request(void)
1773 shutdown_requested
= 1;
1775 reset_requested
= 1;
1778 qemu_notify_event();
1781 static void qemu_system_suspend(void)
1784 notifier_list_notify(&suspend_notifiers
, NULL
);
1785 runstate_set(RUN_STATE_SUSPENDED
);
1786 qapi_event_send_suspend(&error_abort
);
1789 void qemu_system_suspend_request(void)
1791 if (runstate_check(RUN_STATE_SUSPENDED
)) {
1794 suspend_requested
= 1;
1796 qemu_notify_event();
1799 void qemu_register_suspend_notifier(Notifier
*notifier
)
1801 notifier_list_add(&suspend_notifiers
, notifier
);
1804 void qemu_system_wakeup_request(WakeupReason reason
)
1806 trace_system_wakeup_request(reason
);
1808 if (!runstate_check(RUN_STATE_SUSPENDED
)) {
1811 if (!(wakeup_reason_mask
& (1 << reason
))) {
1814 runstate_set(RUN_STATE_RUNNING
);
1815 wakeup_reason
= reason
;
1816 qemu_notify_event();
1819 void qemu_system_wakeup_enable(WakeupReason reason
, bool enabled
)
1822 wakeup_reason_mask
|= (1 << reason
);
1824 wakeup_reason_mask
&= ~(1 << reason
);
1828 void qemu_register_wakeup_notifier(Notifier
*notifier
)
1830 notifier_list_add(&wakeup_notifiers
, notifier
);
1833 void qemu_system_killed(int signal
, pid_t pid
)
1835 shutdown_signal
= signal
;
1839 /* Cannot call qemu_system_shutdown_request directly because
1840 * we are in a signal handler.
1842 shutdown_requested
= 1;
1843 qemu_notify_event();
1846 void qemu_system_shutdown_request(void)
1848 trace_qemu_system_shutdown_request();
1849 replay_shutdown_request();
1850 shutdown_requested
= 1;
1851 qemu_notify_event();
1854 static void qemu_system_powerdown(void)
1856 qapi_event_send_powerdown(&error_abort
);
1857 notifier_list_notify(&powerdown_notifiers
, NULL
);
1860 void qemu_system_powerdown_request(void)
1862 trace_qemu_system_powerdown_request();
1863 powerdown_requested
= 1;
1864 qemu_notify_event();
1867 void qemu_register_powerdown_notifier(Notifier
*notifier
)
1869 notifier_list_add(&powerdown_notifiers
, notifier
);
1872 void qemu_system_debug_request(void)
1874 debug_requested
= 1;
1875 qemu_notify_event();
1878 static bool main_loop_should_exit(void)
1881 if (qemu_debug_requested()) {
1882 vm_stop(RUN_STATE_DEBUG
);
1884 if (qemu_suspend_requested()) {
1885 qemu_system_suspend();
1887 if (qemu_shutdown_requested()) {
1889 qapi_event_send_shutdown(&error_abort
);
1891 vm_stop(RUN_STATE_SHUTDOWN
);
1896 if (qemu_reset_requested()) {
1898 cpu_synchronize_all_states();
1899 qemu_system_reset(VMRESET_REPORT
);
1901 if (!runstate_check(RUN_STATE_RUNNING
) &&
1902 !runstate_check(RUN_STATE_INMIGRATE
)) {
1903 runstate_set(RUN_STATE_PRELAUNCH
);
1906 if (qemu_wakeup_requested()) {
1908 cpu_synchronize_all_states();
1909 qemu_system_reset(VMRESET_SILENT
);
1910 notifier_list_notify(&wakeup_notifiers
, &wakeup_reason
);
1911 wakeup_reason
= QEMU_WAKEUP_REASON_NONE
;
1913 qapi_event_send_wakeup(&error_abort
);
1915 if (qemu_powerdown_requested()) {
1916 qemu_system_powerdown();
1918 if (qemu_vmstop_requested(&r
)) {
1924 static void main_loop(void)
1928 #ifdef CONFIG_PROFILER
1932 nonblocking
= !kvm_enabled() && !xen_enabled() && last_io
> 0;
1933 #ifdef CONFIG_PROFILER
1934 ti
= profile_getclock();
1936 last_io
= main_loop_wait(nonblocking
);
1937 #ifdef CONFIG_PROFILER
1938 dev_time
+= profile_getclock() - ti
;
1940 } while (!main_loop_should_exit());
1943 static void version(void)
1945 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION
", Copyright (c) 2003-2008 Fabrice Bellard\n");
1948 static void QEMU_NORETURN
help(int exitcode
)
1951 printf("usage: %s [options] [disk_image]\n\n"
1952 "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
1953 error_get_progname());
1955 #define QEMU_OPTIONS_GENERATE_HELP
1956 #include "qemu-options-wrapper.h"
1958 printf("\nDuring emulation, the following keys are useful:\n"
1959 "ctrl-alt-f toggle full screen\n"
1960 "ctrl-alt-n switch to virtual console 'n'\n"
1961 "ctrl-alt toggle mouse and keyboard grab\n"
1963 "When using -nographic, press 'ctrl-a h' to get some help.\n");
1968 #define HAS_ARG 0x0001
1970 typedef struct QEMUOption
{
1977 static const QEMUOption qemu_options
[] = {
1978 { "h", 0, QEMU_OPTION_h
, QEMU_ARCH_ALL
},
1979 #define QEMU_OPTIONS_GENERATE_OPTIONS
1980 #include "qemu-options-wrapper.h"
1984 static bool vga_available(void)
1986 return object_class_by_name("VGA") || object_class_by_name("isa-vga");
1989 static bool cirrus_vga_available(void)
1991 return object_class_by_name("cirrus-vga")
1992 || object_class_by_name("isa-cirrus-vga");
1995 static bool vmware_vga_available(void)
1997 return object_class_by_name("vmware-svga");
2000 static bool qxl_vga_available(void)
2002 return object_class_by_name("qxl-vga");
2005 static bool tcx_vga_available(void)
2007 return object_class_by_name("SUNW,tcx");
2010 static bool cg3_vga_available(void)
2012 return object_class_by_name("cgthree");
2015 static bool virtio_vga_available(void)
2017 return object_class_by_name("virtio-vga");
2020 static void select_vgahw (const char *p
)
2024 assert(vga_interface_type
== VGA_NONE
);
2025 if (strstart(p
, "std", &opts
)) {
2026 if (vga_available()) {
2027 vga_interface_type
= VGA_STD
;
2029 error_report("standard VGA not available");
2032 } else if (strstart(p
, "cirrus", &opts
)) {
2033 if (cirrus_vga_available()) {
2034 vga_interface_type
= VGA_CIRRUS
;
2036 error_report("Cirrus VGA not available");
2039 } else if (strstart(p
, "vmware", &opts
)) {
2040 if (vmware_vga_available()) {
2041 vga_interface_type
= VGA_VMWARE
;
2043 error_report("VMWare SVGA not available");
2046 } else if (strstart(p
, "virtio", &opts
)) {
2047 if (virtio_vga_available()) {
2048 vga_interface_type
= VGA_VIRTIO
;
2050 error_report("Virtio VGA not available");
2053 } else if (strstart(p
, "xenfb", &opts
)) {
2054 vga_interface_type
= VGA_XENFB
;
2055 } else if (strstart(p
, "qxl", &opts
)) {
2056 if (qxl_vga_available()) {
2057 vga_interface_type
= VGA_QXL
;
2059 error_report("QXL VGA not available");
2062 } else if (strstart(p
, "tcx", &opts
)) {
2063 if (tcx_vga_available()) {
2064 vga_interface_type
= VGA_TCX
;
2066 error_report("TCX framebuffer not available");
2069 } else if (strstart(p
, "cg3", &opts
)) {
2070 if (cg3_vga_available()) {
2071 vga_interface_type
= VGA_CG3
;
2073 error_report("CG3 framebuffer not available");
2076 } else if (!strstart(p
, "none", &opts
)) {
2078 error_report("unknown vga type: %s", p
);
2082 const char *nextopt
;
2084 if (strstart(opts
, ",retrace=", &nextopt
)) {
2086 if (strstart(opts
, "dumb", &nextopt
))
2087 vga_retrace_method
= VGA_RETRACE_DUMB
;
2088 else if (strstart(opts
, "precise", &nextopt
))
2089 vga_retrace_method
= VGA_RETRACE_PRECISE
;
2090 else goto invalid_vga
;
2091 } else goto invalid_vga
;
2096 static DisplayType
select_display(const char *p
)
2099 DisplayType display
= DT_DEFAULT
;
2101 if (strstart(p
, "sdl", &opts
)) {
2105 const char *nextopt
;
2107 if (strstart(opts
, ",frame=", &nextopt
)) {
2109 if (strstart(opts
, "on", &nextopt
)) {
2111 } else if (strstart(opts
, "off", &nextopt
)) {
2114 goto invalid_sdl_args
;
2116 } else if (strstart(opts
, ",alt_grab=", &nextopt
)) {
2118 if (strstart(opts
, "on", &nextopt
)) {
2120 } else if (strstart(opts
, "off", &nextopt
)) {
2123 goto invalid_sdl_args
;
2125 } else if (strstart(opts
, ",ctrl_grab=", &nextopt
)) {
2127 if (strstart(opts
, "on", &nextopt
)) {
2129 } else if (strstart(opts
, "off", &nextopt
)) {
2132 goto invalid_sdl_args
;
2134 } else if (strstart(opts
, ",window_close=", &nextopt
)) {
2136 if (strstart(opts
, "on", &nextopt
)) {
2138 } else if (strstart(opts
, "off", &nextopt
)) {
2141 goto invalid_sdl_args
;
2143 } else if (strstart(opts
, ",gl=", &nextopt
)) {
2145 if (strstart(opts
, "on", &nextopt
)) {
2147 } else if (strstart(opts
, "off", &nextopt
)) {
2150 goto invalid_sdl_args
;
2154 error_report("invalid SDL option string");
2160 error_report("SDL support is disabled");
2163 } else if (strstart(p
, "vnc", &opts
)) {
2167 if (vnc_parse(opts
+ 1, &err
) == NULL
) {
2168 error_report_err(err
);
2172 error_report("VNC requires a display argument vnc=<display>");
2176 error_report("VNC support is disabled");
2179 } else if (strstart(p
, "curses", &opts
)) {
2180 #ifdef CONFIG_CURSES
2181 display
= DT_CURSES
;
2183 error_report("curses support is disabled");
2186 } else if (strstart(p
, "gtk", &opts
)) {
2190 const char *nextopt
;
2192 if (strstart(opts
, ",grab_on_hover=", &nextopt
)) {
2194 if (strstart(opts
, "on", &nextopt
)) {
2195 grab_on_hover
= true;
2196 } else if (strstart(opts
, "off", &nextopt
)) {
2197 grab_on_hover
= false;
2199 goto invalid_gtk_args
;
2201 } else if (strstart(opts
, ",gl=", &nextopt
)) {
2203 if (strstart(opts
, "on", &nextopt
)) {
2205 } else if (strstart(opts
, "off", &nextopt
)) {
2208 goto invalid_gtk_args
;
2212 error_report("invalid GTK option string");
2218 error_report("GTK support is disabled");
2221 } else if (strstart(p
, "none", &opts
)) {
2224 error_report("unknown display type");
2231 static int balloon_parse(const char *arg
)
2235 if (strcmp(arg
, "none") == 0) {
2239 if (!strncmp(arg
, "virtio", 6)) {
2240 if (arg
[6] == ',') {
2241 /* have params -> parse them */
2242 opts
= qemu_opts_parse_noisily(qemu_find_opts("device"), arg
+ 7,
2247 /* create empty opts */
2248 opts
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
2251 qemu_opt_set(opts
, "driver", "virtio-balloon", &error_abort
);
2258 #if defined(CONFIG_RUBY)
2259 /* Ruby interface for QEMU. See README.EXT for programming example. */
2263 static VALUE
qemu_open(int argc
, VALUE
*argv
, VALUE klass
)
2266 for (i
= 0; i
< argc
; i
++) {
2267 argv
[i
] = StringValue(argv
[i
]);
2268 fprintf(stderr
, "argv[%d] = %s\n", i
, StringValuePtr(argv
[i
]));
2270 //~ if (rb_scan_args(argc, argv, "11", &file, &vmode) == 1) {
2271 //~ mode = 0666; /* default value */
2273 return INT2FIX(argc
);
2276 void Init_qemu(void)
2278 printf("%s\n", __func__
);
2279 VALUE cQEMU
= rb_define_class("QEMU", rb_cObject
);
2280 rb_define_singleton_method(cQEMU
, "run", qemu_open
, -1);
2285 #endif /* CONFIG_RUBY */
2287 #if defined(CONFIG_DLL)
2288 BOOL APIENTRY
DllMain(HINSTANCE hModule
, DWORD ul_reason_for_call
, LPVOID data
)
2292 #endif /* CONFIG_DLL */
2294 char *qemu_find_file(int type
, const char *name
)
2300 /* Try the name as a straight path first */
2301 if (access(name
, R_OK
) == 0) {
2302 trace_load_file(name
, name
);
2303 return g_strdup(name
);
2307 case QEMU_FILE_TYPE_BIOS
:
2310 case QEMU_FILE_TYPE_KEYMAP
:
2311 subdir
= "keymaps/";
2317 for (i
= 0; i
< data_dir_idx
; i
++) {
2318 buf
= g_strdup_printf("%s/%s%s", data_dir
[i
], subdir
, name
);
2319 if (access(buf
, R_OK
) == 0) {
2320 trace_load_file(name
, buf
);
2328 static inline bool nonempty_str(const char *str
)
2333 static int parse_fw_cfg(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2337 const char *name
, *file
, *str
;
2339 if (opaque
== NULL
) {
2340 error_report("fw_cfg device not available");
2343 name
= qemu_opt_get(opts
, "name");
2344 file
= qemu_opt_get(opts
, "file");
2345 str
= qemu_opt_get(opts
, "string");
2347 /* we need name and either a file or the content string */
2348 if (!(nonempty_str(name
) && (nonempty_str(file
) || nonempty_str(str
)))) {
2349 error_report("invalid argument(s)");
2352 if (nonempty_str(file
) && nonempty_str(str
)) {
2353 error_report("file and string are mutually exclusive");
2356 if (strlen(name
) > FW_CFG_MAX_FILE_PATH
- 1) {
2357 error_report("name too long (max. %d char)", FW_CFG_MAX_FILE_PATH
- 1);
2360 if (strncmp(name
, "opt/", 4) != 0) {
2361 error_report("warning: externally provided fw_cfg item names "
2362 "should be prefixed with \"opt/\"");
2364 if (nonempty_str(str
)) {
2365 size
= strlen(str
); /* NUL terminator NOT included in fw_cfg blob */
2366 buf
= g_memdup(str
, size
);
2368 if (!g_file_get_contents(file
, &buf
, &size
, NULL
)) {
2369 error_report("can't load %s", file
);
2373 fw_cfg_add_file((FWCfgState
*)opaque
, name
, buf
, size
);
2377 static int device_help_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2379 return qdev_device_help(opts
);
2382 static int device_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2387 dev
= qdev_device_add(opts
, &err
);
2389 error_report_err(err
);
2392 object_unref(OBJECT(dev
));
2396 static int chardev_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2398 Error
*local_err
= NULL
;
2400 qemu_chr_new_from_opts(opts
, NULL
, &local_err
);
2402 error_report_err(local_err
);
2408 #ifdef CONFIG_VIRTFS
2409 static int fsdev_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2412 ret
= qemu_fsdev_add(opts
);
2418 static int mon_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2420 CharDriverState
*chr
;
2421 const char *chardev
;
2425 mode
= qemu_opt_get(opts
, "mode");
2429 if (strcmp(mode
, "readline") == 0) {
2430 flags
= MONITOR_USE_READLINE
;
2431 } else if (strcmp(mode
, "control") == 0) {
2432 flags
= MONITOR_USE_CONTROL
;
2434 error_report("unknown monitor mode \"%s\"", mode
);
2438 if (qemu_opt_get_bool(opts
, "pretty", 0))
2439 flags
|= MONITOR_USE_PRETTY
;
2441 if (qemu_opt_get_bool(opts
, "default", 0))
2442 flags
|= MONITOR_IS_DEFAULT
;
2444 chardev
= qemu_opt_get(opts
, "chardev");
2445 chr
= qemu_chr_find(chardev
);
2447 error_report("chardev \"%s\" not found", chardev
);
2451 qemu_chr_fe_claim_no_fail(chr
);
2452 monitor_init(chr
, flags
);
2456 static void monitor_parse(const char *optarg
, const char *mode
, bool pretty
)
2458 static int monitor_device_index
= 0;
2459 Error
*local_err
= NULL
;
2465 if (strstart(optarg
, "chardev:", &p
)) {
2466 snprintf(label
, sizeof(label
), "%s", p
);
2468 snprintf(label
, sizeof(label
), "compat_monitor%d",
2469 monitor_device_index
);
2470 if (monitor_device_index
== 0) {
2473 opts
= qemu_chr_parse_compat(label
, optarg
);
2475 error_report("parse error: %s", optarg
);
2480 opts
= qemu_opts_create(qemu_find_opts("mon"), label
, 1, &local_err
);
2482 error_report_err(local_err
);
2485 qemu_opt_set(opts
, "mode", mode
, &error_abort
);
2486 qemu_opt_set(opts
, "chardev", label
, &error_abort
);
2487 qemu_opt_set_bool(opts
, "pretty", pretty
, &error_abort
);
2489 qemu_opt_set(opts
, "default", "on", &error_abort
);
2490 monitor_device_index
++;
2493 struct device_config
{
2495 DEV_USB
, /* -usbdevice */
2497 DEV_SERIAL
, /* -serial */
2498 DEV_PARALLEL
, /* -parallel */
2499 DEV_VIRTCON
, /* -virtioconsole */
2500 DEV_DEBUGCON
, /* -debugcon */
2501 DEV_GDB
, /* -gdb, -s */
2502 DEV_SCLP
, /* s390 sclp */
2504 const char *cmdline
;
2506 QTAILQ_ENTRY(device_config
) next
;
2509 static QTAILQ_HEAD(, device_config
) device_configs
=
2510 QTAILQ_HEAD_INITIALIZER(device_configs
);
2512 static void add_device_config(int type
, const char *cmdline
)
2514 struct device_config
*conf
;
2516 conf
= g_malloc0(sizeof(*conf
));
2518 conf
->cmdline
= cmdline
;
2519 loc_save(&conf
->loc
);
2520 QTAILQ_INSERT_TAIL(&device_configs
, conf
, next
);
2523 static int foreach_device_config(int type
, int (*func
)(const char *cmdline
))
2525 struct device_config
*conf
;
2528 QTAILQ_FOREACH(conf
, &device_configs
, next
) {
2529 if (conf
->type
!= type
)
2531 loc_push_restore(&conf
->loc
);
2532 rc
= func(conf
->cmdline
);
2533 loc_pop(&conf
->loc
);
2541 static int serial_parse(const char *devname
)
2543 static int index
= 0;
2546 if (strcmp(devname
, "none") == 0)
2548 if (index
== MAX_SERIAL_PORTS
) {
2549 error_report("too many serial ports");
2552 snprintf(label
, sizeof(label
), "serial%d", index
);
2553 serial_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2554 if (!serial_hds
[index
]) {
2555 error_report("could not connect serial device"
2556 " to character backend '%s'", devname
);
2563 static int parallel_parse(const char *devname
)
2565 static int index
= 0;
2568 if (strcmp(devname
, "none") == 0)
2570 if (index
== MAX_PARALLEL_PORTS
) {
2571 error_report("too many parallel ports");
2574 snprintf(label
, sizeof(label
), "parallel%d", index
);
2575 parallel_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2576 if (!parallel_hds
[index
]) {
2577 error_report("could not connect parallel device"
2578 " to character backend '%s'", devname
);
2585 static int virtcon_parse(const char *devname
)
2587 QemuOptsList
*device
= qemu_find_opts("device");
2588 static int index
= 0;
2590 QemuOpts
*bus_opts
, *dev_opts
;
2592 if (strcmp(devname
, "none") == 0)
2594 if (index
== MAX_VIRTIO_CONSOLES
) {
2595 error_report("too many virtio consoles");
2599 bus_opts
= qemu_opts_create(device
, NULL
, 0, &error_abort
);
2600 qemu_opt_set(bus_opts
, "driver", "virtio-serial", &error_abort
);
2602 dev_opts
= qemu_opts_create(device
, NULL
, 0, &error_abort
);
2603 qemu_opt_set(dev_opts
, "driver", "virtconsole", &error_abort
);
2605 snprintf(label
, sizeof(label
), "virtcon%d", index
);
2606 virtcon_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2607 if (!virtcon_hds
[index
]) {
2608 error_report("could not connect virtio console"
2609 " to character backend '%s'", devname
);
2612 qemu_opt_set(dev_opts
, "chardev", label
, &error_abort
);
2618 static int sclp_parse(const char *devname
)
2620 QemuOptsList
*device
= qemu_find_opts("device");
2621 static int index
= 0;
2625 if (strcmp(devname
, "none") == 0) {
2628 if (index
== MAX_SCLP_CONSOLES
) {
2629 error_report("too many sclp consoles");
2633 assert(arch_type
== QEMU_ARCH_S390X
);
2635 dev_opts
= qemu_opts_create(device
, NULL
, 0, NULL
);
2636 qemu_opt_set(dev_opts
, "driver", "sclpconsole", &error_abort
);
2638 snprintf(label
, sizeof(label
), "sclpcon%d", index
);
2639 sclp_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2640 if (!sclp_hds
[index
]) {
2641 error_report("could not connect sclp console"
2642 " to character backend '%s'", devname
);
2645 qemu_opt_set(dev_opts
, "chardev", label
, &error_abort
);
2651 static int debugcon_parse(const char *devname
)
2655 if (!qemu_chr_new("debugcon", devname
, NULL
)) {
2658 opts
= qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL
);
2660 error_report("already have a debugcon device");
2663 qemu_opt_set(opts
, "driver", "isa-debugcon", &error_abort
);
2664 qemu_opt_set(opts
, "chardev", "debugcon", &error_abort
);
2668 static gint
machine_class_cmp(gconstpointer a
, gconstpointer b
)
2670 const MachineClass
*mc1
= a
, *mc2
= b
;
2673 if (mc1
->family
== NULL
) {
2674 if (mc2
->family
== NULL
) {
2675 /* Compare standalone machine types against each other; they sort
2676 * in increasing order.
2678 return strcmp(object_class_get_name(OBJECT_CLASS(mc1
)),
2679 object_class_get_name(OBJECT_CLASS(mc2
)));
2682 /* Standalone machine types sort after families. */
2686 if (mc2
->family
== NULL
) {
2687 /* Families sort before standalone machine types. */
2691 /* Families sort between each other alphabetically increasingly. */
2692 res
= strcmp(mc1
->family
, mc2
->family
);
2697 /* Within the same family, machine types sort in decreasing order. */
2698 return strcmp(object_class_get_name(OBJECT_CLASS(mc2
)),
2699 object_class_get_name(OBJECT_CLASS(mc1
)));
2702 static MachineClass
*machine_parse(const char *name
)
2704 MachineClass
*mc
= NULL
;
2705 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
2708 mc
= find_machine(name
);
2711 g_slist_free(machines
);
2714 if (name
&& !is_help_option(name
)) {
2715 error_report("unsupported machine type");
2716 error_printf("Use -machine help to list supported machines\n");
2718 printf("Supported machines are:\n");
2719 machines
= g_slist_sort(machines
, machine_class_cmp
);
2720 for (el
= machines
; el
; el
= el
->next
) {
2721 MachineClass
*mc
= el
->data
;
2723 printf("%-20s %s (alias of %s)\n", mc
->alias
, mc
->desc
, mc
->name
);
2725 printf("%-20s %s%s\n", mc
->name
, mc
->desc
,
2726 mc
->is_default
? " (default)" : "");
2730 g_slist_free(machines
);
2731 exit(!name
|| !is_help_option(name
));
2734 void qemu_add_exit_notifier(Notifier
*notify
)
2736 notifier_list_add(&exit_notifiers
, notify
);
2739 void qemu_remove_exit_notifier(Notifier
*notify
)
2741 notifier_remove(notify
);
2744 static void qemu_run_exit_notifiers(void)
2746 notifier_list_notify(&exit_notifiers
, NULL
);
2749 static bool machine_init_done
;
2751 void qemu_add_machine_init_done_notifier(Notifier
*notify
)
2753 notifier_list_add(&machine_init_done_notifiers
, notify
);
2754 if (machine_init_done
) {
2755 notify
->notify(notify
, NULL
);
2759 static void qemu_run_machine_init_done_notifiers(void)
2761 notifier_list_notify(&machine_init_done_notifiers
, NULL
);
2762 machine_init_done
= true;
2765 static const QEMUOption
*lookup_opt(int argc
, char **argv
,
2766 const char **poptarg
, int *poptind
)
2768 const QEMUOption
*popt
;
2769 int optind
= *poptind
;
2770 char *r
= argv
[optind
];
2773 loc_set_cmdline(argv
, optind
, 1);
2775 /* Treat --foo the same as -foo. */
2778 popt
= qemu_options
;
2781 error_report("invalid option");
2784 if (!strcmp(popt
->name
, r
+ 1))
2788 if (popt
->flags
& HAS_ARG
) {
2789 if (optind
>= argc
) {
2790 error_report("requires an argument");
2793 optarg
= argv
[optind
++];
2794 loc_set_cmdline(argv
, optind
- 2, 2);
2805 static MachineClass
*select_machine(void)
2807 MachineClass
*machine_class
= find_default_machine();
2812 loc_push_none(&loc
);
2814 opts
= qemu_get_machine_opts();
2815 qemu_opts_loc_restore(opts
);
2817 optarg
= qemu_opt_get(opts
, "type");
2819 machine_class
= machine_parse(optarg
);
2822 if (!machine_class
) {
2823 error_report("No machine specified, and there is no default");
2824 error_printf("Use -machine help to list supported machines\n");
2829 return machine_class
;
2832 static int machine_set_property(void *opaque
,
2833 const char *name
, const char *value
,
2836 Object
*obj
= OBJECT(opaque
);
2837 Error
*local_err
= NULL
;
2840 if (strcmp(name
, "type") == 0) {
2844 qom_name
= g_strdup(name
);
2852 object_property_parse(obj
, value
, qom_name
, &local_err
);
2856 error_report_err(local_err
);
2865 * Initial object creation happens before all other
2866 * QEMU data types are created. The majority of objects
2867 * can be created at this point. The rng-egd object
2868 * cannot be created here, as it depends on the chardev
2871 static bool object_create_initial(const char *type
)
2873 if (g_str_equal(type
, "rng-egd")) {
2878 * return false for concrete netfilters since
2879 * they depend on netdevs already existing
2881 if (g_str_equal(type
, "filter-buffer") ||
2882 g_str_equal(type
, "filter-dump")) {
2891 * The remainder of object creation happens after the
2892 * creation of chardev, fsdev, net clients and device data types.
2894 static bool object_create_delayed(const char *type
)
2896 return !object_create_initial(type
);
2900 static void set_memory_options(uint64_t *ram_slots
, ram_addr_t
*maxram_size
,
2904 const char *mem_str
;
2905 const char *maxmem_str
, *slots_str
;
2906 const ram_addr_t default_ram_size
= mc
->default_ram_size
;
2907 QemuOpts
*opts
= qemu_find_opts_singleton("memory");
2910 loc_push_none(&loc
);
2911 qemu_opts_loc_restore(opts
);
2914 mem_str
= qemu_opt_get(opts
, "size");
2917 error_report("missing 'size' option value");
2921 sz
= qemu_opt_get_size(opts
, "size", ram_size
);
2923 /* Fix up legacy suffix-less format */
2924 if (g_ascii_isdigit(mem_str
[strlen(mem_str
) - 1])) {
2925 uint64_t overflow_check
= sz
;
2928 if ((sz
>> 20) != overflow_check
) {
2929 error_report("too large 'size' option value");
2935 /* backward compatibility behaviour for case "-m 0" */
2937 sz
= default_ram_size
;
2940 sz
= QEMU_ALIGN_UP(sz
, 8192);
2942 if (ram_size
!= sz
) {
2943 error_report("ram size too large");
2947 /* store value for the future use */
2948 qemu_opt_set_number(opts
, "size", ram_size
, &error_abort
);
2949 *maxram_size
= ram_size
;
2951 maxmem_str
= qemu_opt_get(opts
, "maxmem");
2952 slots_str
= qemu_opt_get(opts
, "slots");
2953 if (maxmem_str
&& slots_str
) {
2956 sz
= qemu_opt_get_size(opts
, "maxmem", 0);
2957 slots
= qemu_opt_get_number(opts
, "slots", 0);
2958 if (sz
< ram_size
) {
2959 error_report("invalid value of -m option maxmem: "
2960 "maximum memory size (0x%" PRIx64
") must be at least "
2961 "the initial memory size (0x" RAM_ADDR_FMT
")",
2964 } else if (sz
> ram_size
) {
2966 error_report("invalid value of -m option: maxmem was "
2967 "specified, but no hotplug slots were specified");
2971 error_report("invalid value of -m option maxmem: "
2972 "memory slots were specified but maximum memory size "
2973 "(0x%" PRIx64
") is equal to the initial memory size "
2974 "(0x" RAM_ADDR_FMT
")", sz
, ram_size
);
2980 } else if ((!maxmem_str
&& slots_str
) ||
2981 (maxmem_str
&& !slots_str
)) {
2982 error_report("invalid -m option value: missing "
2983 "'%s' option", slots_str
? "maxmem" : "slots");
2990 int main(int argc
, char **argv
)
2993 int snapshot
, linux_boot
;
2994 const char *initrd_filename
;
2995 const char *kernel_filename
, *kernel_cmdline
;
2996 const char *boot_order
= NULL
;
2997 const char *boot_once
= NULL
;
2999 int cyls
, heads
, secs
, translation
;
3000 QemuOpts
*hda_opts
= NULL
, *opts
, *machine_opts
, *icount_opts
= NULL
;
3001 QemuOptsList
*olist
;
3004 const char *loadvm
= NULL
;
3005 MachineClass
*machine_class
;
3006 const char *cpu_model
;
3007 const char *vga_model
= NULL
;
3008 const char *qtest_chrdev
= NULL
;
3009 const char *qtest_log
= NULL
;
3010 const char *pid_file
= NULL
;
3011 const char *incoming
= NULL
;
3013 int show_vnc_port
= 0;
3015 bool defconfig
= true;
3016 bool userconfig
= true;
3017 const char *log_mask
= NULL
;
3018 const char *log_file
= NULL
;
3019 char *trace_file
= NULL
;
3020 ram_addr_t maxram_size
;
3021 uint64_t ram_slots
= 0;
3022 FILE *vmstate_dump_file
= NULL
;
3023 Error
*main_loop_err
= NULL
;
3026 qemu_init_cpu_loop();
3027 qemu_mutex_lock_iothread();
3029 atexit(qemu_run_exit_notifiers
);
3030 error_set_progname(argv
[0]);
3031 qemu_init_exec_dir(argv
[0]);
3033 module_call_init(MODULE_INIT_QOM
);
3035 qemu_add_opts(&qemu_drive_opts
);
3036 qemu_add_drive_opts(&qemu_legacy_drive_opts
);
3037 qemu_add_drive_opts(&qemu_common_drive_opts
);
3038 qemu_add_drive_opts(&qemu_drive_opts
);
3039 qemu_add_opts(&qemu_chardev_opts
);
3040 qemu_add_opts(&qemu_device_opts
);
3041 qemu_add_opts(&qemu_netdev_opts
);
3042 qemu_add_opts(&qemu_net_opts
);
3043 qemu_add_opts(&qemu_rtc_opts
);
3044 qemu_add_opts(&qemu_global_opts
);
3045 qemu_add_opts(&qemu_mon_opts
);
3046 qemu_add_opts(&qemu_trace_opts
);
3047 qemu_add_opts(&qemu_option_rom_opts
);
3048 qemu_add_opts(&qemu_machine_opts
);
3049 qemu_add_opts(&qemu_mem_opts
);
3050 qemu_add_opts(&qemu_smp_opts
);
3051 qemu_add_opts(&qemu_boot_opts
);
3052 qemu_add_opts(&qemu_sandbox_opts
);
3053 qemu_add_opts(&qemu_add_fd_opts
);
3054 qemu_add_opts(&qemu_object_opts
);
3055 qemu_add_opts(&qemu_tpmdev_opts
);
3056 qemu_add_opts(&qemu_realtime_opts
);
3057 qemu_add_opts(&qemu_msg_opts
);
3058 qemu_add_opts(&qemu_name_opts
);
3059 qemu_add_opts(&qemu_numa_opts
);
3060 qemu_add_opts(&qemu_icount_opts
);
3061 qemu_add_opts(&qemu_semihosting_config_opts
);
3062 qemu_add_opts(&qemu_fw_cfg_opts
);
3063 module_call_init(MODULE_INIT_OPTS
);
3067 if (qcrypto_init(&err
) < 0) {
3068 error_reportf_err(err
, "cannot initialize crypto: ");
3071 rtc_clock
= QEMU_CLOCK_HOST
;
3073 QLIST_INIT (&vm_change_state_head
);
3074 os_setup_early_signal_handling();
3078 cyls
= heads
= secs
= 0;
3079 translation
= BIOS_ATA_TRANSLATION_AUTO
;
3083 bdrv_init_with_whitelist();
3087 /* first pass of option parsing */
3089 while (optind
< argc
) {
3090 if (argv
[optind
][0] != '-') {
3094 const QEMUOption
*popt
;
3096 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
3097 switch (popt
->index
) {
3098 case QEMU_OPTION_nodefconfig
:
3101 case QEMU_OPTION_nouserconfig
:
3110 ret
= qemu_read_default_config_files(userconfig
);
3116 /* second pass of option parsing */
3121 if (argv
[optind
][0] != '-') {
3122 hda_opts
= drive_add(IF_DEFAULT
, 0, argv
[optind
++], HD_OPTS
);
3124 const QEMUOption
*popt
;
3126 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
3127 if (!(popt
->arch_mask
& arch_type
)) {
3128 printf("Option %s not supported for this target\n", popt
->name
);
3131 switch(popt
->index
) {
3132 case QEMU_OPTION_no_kvm_irqchip
: {
3133 olist
= qemu_find_opts("machine");
3134 qemu_opts_parse_noisily(olist
, "kernel_irqchip=off", false);
3137 case QEMU_OPTION_cpu
:
3138 /* hw initialization will check this */
3141 case QEMU_OPTION_hda
:
3145 snprintf(buf
, sizeof(buf
), "%s", HD_OPTS
);
3147 snprintf(buf
, sizeof(buf
),
3148 "%s,cyls=%d,heads=%d,secs=%d%s",
3149 HD_OPTS
, cyls
, heads
, secs
,
3150 translation
== BIOS_ATA_TRANSLATION_LBA
?
3152 translation
== BIOS_ATA_TRANSLATION_NONE
?
3153 ",trans=none" : "");
3154 drive_add(IF_DEFAULT
, 0, optarg
, buf
);
3157 case QEMU_OPTION_hdb
:
3158 case QEMU_OPTION_hdc
:
3159 case QEMU_OPTION_hdd
:
3160 drive_add(IF_DEFAULT
, popt
->index
- QEMU_OPTION_hda
, optarg
,
3163 case QEMU_OPTION_drive
:
3164 if (drive_def(optarg
) == NULL
) {
3168 case QEMU_OPTION_set
:
3169 if (qemu_set_option(optarg
) != 0)
3172 case QEMU_OPTION_global
:
3173 if (qemu_global_option(optarg
) != 0)
3176 case QEMU_OPTION_mtdblock
:
3177 drive_add(IF_MTD
, -1, optarg
, MTD_OPTS
);
3179 case QEMU_OPTION_sd
:
3180 drive_add(IF_SD
, -1, optarg
, SD_OPTS
);
3182 case QEMU_OPTION_pflash
:
3183 drive_add(IF_PFLASH
, -1, optarg
, PFLASH_OPTS
);
3185 case QEMU_OPTION_snapshot
:
3188 case QEMU_OPTION_hdachs
:
3192 cyls
= strtol(p
, (char **)&p
, 0);
3193 if (cyls
< 1 || cyls
> 16383)
3198 heads
= strtol(p
, (char **)&p
, 0);
3199 if (heads
< 1 || heads
> 16)
3204 secs
= strtol(p
, (char **)&p
, 0);
3205 if (secs
< 1 || secs
> 63)
3209 if (!strcmp(p
, "large")) {
3210 translation
= BIOS_ATA_TRANSLATION_LARGE
;
3211 } else if (!strcmp(p
, "rechs")) {
3212 translation
= BIOS_ATA_TRANSLATION_RECHS
;
3213 } else if (!strcmp(p
, "none")) {
3214 translation
= BIOS_ATA_TRANSLATION_NONE
;
3215 } else if (!strcmp(p
, "lba")) {
3216 translation
= BIOS_ATA_TRANSLATION_LBA
;
3217 } else if (!strcmp(p
, "auto")) {
3218 translation
= BIOS_ATA_TRANSLATION_AUTO
;
3222 } else if (*p
!= '\0') {
3224 error_report("invalid physical CHS format");
3227 if (hda_opts
!= NULL
) {
3228 qemu_opt_set_number(hda_opts
, "cyls", cyls
,
3230 qemu_opt_set_number(hda_opts
, "heads", heads
,
3232 qemu_opt_set_number(hda_opts
, "secs", secs
,
3234 if (translation
== BIOS_ATA_TRANSLATION_LARGE
) {
3235 qemu_opt_set(hda_opts
, "trans", "large",
3237 } else if (translation
== BIOS_ATA_TRANSLATION_RECHS
) {
3238 qemu_opt_set(hda_opts
, "trans", "rechs",
3240 } else if (translation
== BIOS_ATA_TRANSLATION_LBA
) {
3241 qemu_opt_set(hda_opts
, "trans", "lba",
3243 } else if (translation
== BIOS_ATA_TRANSLATION_NONE
) {
3244 qemu_opt_set(hda_opts
, "trans", "none",
3250 case QEMU_OPTION_numa
:
3251 opts
= qemu_opts_parse_noisily(qemu_find_opts("numa"),
3257 case QEMU_OPTION_display
:
3258 display_type
= select_display(optarg
);
3260 case QEMU_OPTION_nographic
:
3261 display_type
= DT_NOGRAPHIC
;
3263 case QEMU_OPTION_curses
:
3264 #ifdef CONFIG_CURSES
3265 display_type
= DT_CURSES
;
3267 error_report("curses support is disabled");
3271 case QEMU_OPTION_portrait
:
3272 graphic_rotate
= 90;
3274 case QEMU_OPTION_rotate
:
3275 graphic_rotate
= strtol(optarg
, (char **) &optarg
, 10);
3276 if (graphic_rotate
!= 0 && graphic_rotate
!= 90 &&
3277 graphic_rotate
!= 180 && graphic_rotate
!= 270) {
3278 error_report("only 90, 180, 270 deg rotation is available");
3282 case QEMU_OPTION_kernel
:
3283 qemu_opts_set(qemu_find_opts("machine"), 0, "kernel", optarg
,
3286 case QEMU_OPTION_initrd
:
3287 qemu_opts_set(qemu_find_opts("machine"), 0, "initrd", optarg
,
3290 case QEMU_OPTION_append
:
3291 qemu_opts_set(qemu_find_opts("machine"), 0, "append", optarg
,
3294 case QEMU_OPTION_dtb
:
3295 qemu_opts_set(qemu_find_opts("machine"), 0, "dtb", optarg
,
3298 case QEMU_OPTION_cdrom
:
3299 drive_add(IF_DEFAULT
, 2, optarg
, CDROM_OPTS
);
3301 case QEMU_OPTION_boot
:
3302 opts
= qemu_opts_parse_noisily(qemu_find_opts("boot-opts"),
3308 case QEMU_OPTION_fda
:
3309 case QEMU_OPTION_fdb
:
3310 drive_add(IF_FLOPPY
, popt
->index
- QEMU_OPTION_fda
,
3313 case QEMU_OPTION_no_fd_bootchk
:
3316 case QEMU_OPTION_netdev
:
3317 if (net_client_parse(qemu_find_opts("netdev"), optarg
) == -1) {
3321 case QEMU_OPTION_net
:
3322 if (net_client_parse(qemu_find_opts("net"), optarg
) == -1) {
3326 #ifdef CONFIG_LIBISCSI
3327 case QEMU_OPTION_iscsi
:
3328 opts
= qemu_opts_parse_noisily(qemu_find_opts("iscsi"),
3336 case QEMU_OPTION_tftp
:
3337 error_report("The -tftp option is deprecated. "
3338 "Please use '-netdev user,tftp=...' instead.");
3339 legacy_tftp_prefix
= optarg
;
3341 case QEMU_OPTION_bootp
:
3342 error_report("The -bootp option is deprecated. "
3343 "Please use '-netdev user,bootfile=...' instead.");
3344 legacy_bootp_filename
= optarg
;
3346 case QEMU_OPTION_redir
:
3347 error_report("The -redir option is deprecated. "
3348 "Please use '-netdev user,hostfwd=...' instead.");
3349 if (net_slirp_redir(optarg
) < 0)
3353 case QEMU_OPTION_bt
:
3354 add_device_config(DEV_BT
, optarg
);
3356 case QEMU_OPTION_audio_help
:
3360 case QEMU_OPTION_soundhw
:
3361 select_soundhw (optarg
);
3366 case QEMU_OPTION_version
:
3371 opts
= qemu_opts_parse_noisily(qemu_find_opts("memory"),
3378 case QEMU_OPTION_tpmdev
:
3379 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg
) < 0) {
3384 case QEMU_OPTION_mempath
:
3387 case QEMU_OPTION_mem_prealloc
:
3397 add_device_config(DEV_GDB
, "tcp::" DEFAULT_GDBSTUB_PORT
);
3399 case QEMU_OPTION_gdb
:
3400 add_device_config(DEV_GDB
, optarg
);
3403 if (data_dir_idx
< ARRAY_SIZE(data_dir
)) {
3404 data_dir
[data_dir_idx
++] = optarg
;
3407 case QEMU_OPTION_bios
:
3408 qemu_opts_set(qemu_find_opts("machine"), 0, "firmware", optarg
,
3411 case QEMU_OPTION_singlestep
:
3418 keyboard_layout
= optarg
;
3420 case QEMU_OPTION_localtime
:
3423 case QEMU_OPTION_vga
:
3432 w
= strtol(p
, (char **)&p
, 10);
3435 error_report("invalid resolution or depth");
3441 h
= strtol(p
, (char **)&p
, 10);
3446 depth
= strtol(p
, (char **)&p
, 10);
3447 if (depth
!= 8 && depth
!= 15 && depth
!= 16 &&
3448 depth
!= 24 && depth
!= 32)
3450 } else if (*p
== '\0') {
3451 depth
= graphic_depth
;
3458 graphic_depth
= depth
;
3461 case QEMU_OPTION_echr
:
3464 term_escape_char
= strtol(optarg
, &r
, 0);
3466 printf("Bad argument to echr\n");
3469 case QEMU_OPTION_monitor
:
3470 default_monitor
= 0;
3471 if (strncmp(optarg
, "none", 4)) {
3472 monitor_parse(optarg
, "readline", false);
3475 case QEMU_OPTION_qmp
:
3476 monitor_parse(optarg
, "control", false);
3477 default_monitor
= 0;
3479 case QEMU_OPTION_qmp_pretty
:
3480 monitor_parse(optarg
, "control", true);
3481 default_monitor
= 0;
3483 case QEMU_OPTION_mon
:
3484 opts
= qemu_opts_parse_noisily(qemu_find_opts("mon"), optarg
,
3489 default_monitor
= 0;
3491 case QEMU_OPTION_chardev
:
3492 opts
= qemu_opts_parse_noisily(qemu_find_opts("chardev"),
3498 case QEMU_OPTION_fsdev
:
3499 olist
= qemu_find_opts("fsdev");
3501 error_report("fsdev support is disabled");
3504 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3509 case QEMU_OPTION_virtfs
: {
3512 const char *writeout
, *sock_fd
, *socket
;
3514 olist
= qemu_find_opts("virtfs");
3516 error_report("virtfs support is disabled");
3519 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3524 if (qemu_opt_get(opts
, "fsdriver") == NULL
||
3525 qemu_opt_get(opts
, "mount_tag") == NULL
) {
3526 error_report("Usage: -virtfs fsdriver,mount_tag=tag");
3529 fsdev
= qemu_opts_create(qemu_find_opts("fsdev"),
3530 qemu_opt_get(opts
, "mount_tag"),
3533 error_report("duplicate fsdev id: %s",
3534 qemu_opt_get(opts
, "mount_tag"));
3538 writeout
= qemu_opt_get(opts
, "writeout");
3540 #ifdef CONFIG_SYNC_FILE_RANGE
3541 qemu_opt_set(fsdev
, "writeout", writeout
, &error_abort
);
3543 error_report("writeout=immediate not supported "
3544 "on this platform");
3548 qemu_opt_set(fsdev
, "fsdriver",
3549 qemu_opt_get(opts
, "fsdriver"), &error_abort
);
3550 qemu_opt_set(fsdev
, "path", qemu_opt_get(opts
, "path"),
3552 qemu_opt_set(fsdev
, "security_model",
3553 qemu_opt_get(opts
, "security_model"),
3555 socket
= qemu_opt_get(opts
, "socket");
3557 qemu_opt_set(fsdev
, "socket", socket
, &error_abort
);
3559 sock_fd
= qemu_opt_get(opts
, "sock_fd");
3561 qemu_opt_set(fsdev
, "sock_fd", sock_fd
, &error_abort
);
3564 qemu_opt_set_bool(fsdev
, "readonly",
3565 qemu_opt_get_bool(opts
, "readonly", 0),
3567 device
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
3569 qemu_opt_set(device
, "driver", "virtio-9p-pci", &error_abort
);
3570 qemu_opt_set(device
, "fsdev",
3571 qemu_opt_get(opts
, "mount_tag"), &error_abort
);
3572 qemu_opt_set(device
, "mount_tag",
3573 qemu_opt_get(opts
, "mount_tag"), &error_abort
);
3576 case QEMU_OPTION_virtfs_synth
: {
3580 fsdev
= qemu_opts_create(qemu_find_opts("fsdev"), "v_synth",
3583 error_report("duplicate option: %s", "virtfs_synth");
3586 qemu_opt_set(fsdev
, "fsdriver", "synth", &error_abort
);
3588 device
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
3590 qemu_opt_set(device
, "driver", "virtio-9p-pci", &error_abort
);
3591 qemu_opt_set(device
, "fsdev", "v_synth", &error_abort
);
3592 qemu_opt_set(device
, "mount_tag", "v_synth", &error_abort
);
3595 case QEMU_OPTION_serial
:
3596 add_device_config(DEV_SERIAL
, optarg
);
3598 if (strncmp(optarg
, "mon:", 4) == 0) {
3599 default_monitor
= 0;
3602 case QEMU_OPTION_watchdog
:
3604 error_report("only one watchdog option may be given");
3609 case QEMU_OPTION_watchdog_action
:
3610 if (select_watchdog_action(optarg
) == -1) {
3611 error_report("unknown -watchdog-action parameter");
3615 case QEMU_OPTION_virtiocon
:
3616 add_device_config(DEV_VIRTCON
, optarg
);
3617 default_virtcon
= 0;
3618 if (strncmp(optarg
, "mon:", 4) == 0) {
3619 default_monitor
= 0;
3622 case QEMU_OPTION_parallel
:
3623 add_device_config(DEV_PARALLEL
, optarg
);
3624 default_parallel
= 0;
3625 if (strncmp(optarg
, "mon:", 4) == 0) {
3626 default_monitor
= 0;
3629 case QEMU_OPTION_debugcon
:
3630 add_device_config(DEV_DEBUGCON
, optarg
);
3632 case QEMU_OPTION_loadvm
:
3635 case QEMU_OPTION_full_screen
:
3638 case QEMU_OPTION_no_frame
:
3641 case QEMU_OPTION_alt_grab
:
3644 case QEMU_OPTION_ctrl_grab
:
3647 case QEMU_OPTION_no_quit
:
3650 case QEMU_OPTION_sdl
:
3652 display_type
= DT_SDL
;
3655 error_report("SDL support is disabled");
3658 case QEMU_OPTION_pidfile
:
3661 case QEMU_OPTION_win2k_hack
:
3662 win2k_install_hack
= 1;
3664 case QEMU_OPTION_rtc_td_hack
: {
3665 static GlobalProperty slew_lost_ticks
[] = {
3667 .driver
= "mc146818rtc",
3668 .property
= "lost_tick_policy",
3671 { /* end of list */ }
3674 qdev_prop_register_global_list(slew_lost_ticks
);
3677 case QEMU_OPTION_acpitable
:
3678 opts
= qemu_opts_parse_noisily(qemu_find_opts("acpi"),
3683 do_acpitable_option(opts
);
3685 case QEMU_OPTION_smbios
:
3686 opts
= qemu_opts_parse_noisily(qemu_find_opts("smbios"),
3691 do_smbios_option(opts
);
3693 case QEMU_OPTION_fwcfg
:
3694 opts
= qemu_opts_parse_noisily(qemu_find_opts("fw_cfg"),
3700 case QEMU_OPTION_enable_kvm
:
3701 olist
= qemu_find_opts("machine");
3702 qemu_opts_parse_noisily(olist
, "accel=kvm", false);
3705 case QEMU_OPTION_machine
:
3706 olist
= qemu_find_opts("machine");
3707 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3712 case QEMU_OPTION_no_kvm
:
3713 olist
= qemu_find_opts("machine");
3714 qemu_opts_parse_noisily(olist
, "accel=tcg", false);
3716 case QEMU_OPTION_no_kvm_pit
: {
3717 error_report("warning: ignoring deprecated option");
3720 case QEMU_OPTION_no_kvm_pit_reinjection
: {
3721 static GlobalProperty kvm_pit_lost_tick_policy
[] = {
3723 .driver
= "kvm-pit",
3724 .property
= "lost_tick_policy",
3727 { /* end of list */ }
3730 error_report("warning: deprecated, replaced by "
3731 "-global kvm-pit.lost_tick_policy=discard");
3732 qdev_prop_register_global_list(kvm_pit_lost_tick_policy
);
3735 case QEMU_OPTION_usb
:
3736 olist
= qemu_find_opts("machine");
3737 qemu_opts_parse_noisily(olist
, "usb=on", false);
3739 case QEMU_OPTION_usbdevice
:
3740 olist
= qemu_find_opts("machine");
3741 qemu_opts_parse_noisily(olist
, "usb=on", false);
3742 add_device_config(DEV_USB
, optarg
);
3744 case QEMU_OPTION_device
:
3745 if (!qemu_opts_parse_noisily(qemu_find_opts("device"),
3750 case QEMU_OPTION_smp
:
3751 if (!qemu_opts_parse_noisily(qemu_find_opts("smp-opts"),
3756 case QEMU_OPTION_vnc
:
3759 Error
*local_err
= NULL
;
3761 if (vnc_parse(optarg
, &local_err
) == NULL
) {
3762 error_report_err(local_err
);
3766 error_report("VNC support is disabled");
3771 case QEMU_OPTION_input_linux
:
3772 if (!qemu_opts_parse_noisily(qemu_find_opts("input-linux"),
3777 case QEMU_OPTION_no_acpi
:
3780 case QEMU_OPTION_no_hpet
:
3783 case QEMU_OPTION_balloon
:
3784 if (balloon_parse(optarg
) < 0) {
3785 error_report("unknown -balloon argument %s", optarg
);
3789 case QEMU_OPTION_no_reboot
:
3792 case QEMU_OPTION_no_shutdown
:
3795 case QEMU_OPTION_show_cursor
:
3798 case QEMU_OPTION_uuid
:
3799 if(qemu_uuid_parse(optarg
, qemu_uuid
) < 0) {
3800 error_report("failed to parse UUID string: wrong format");
3803 qemu_uuid_set
= true;
3805 case QEMU_OPTION_option_rom
:
3806 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
3807 error_report("too many option ROMs");
3810 opts
= qemu_opts_parse_noisily(qemu_find_opts("option-rom"),
3815 option_rom
[nb_option_roms
].name
= qemu_opt_get(opts
, "romfile");
3816 option_rom
[nb_option_roms
].bootindex
=
3817 qemu_opt_get_number(opts
, "bootindex", -1);
3818 if (!option_rom
[nb_option_roms
].name
) {
3819 error_report("Option ROM file is not specified");
3824 case QEMU_OPTION_semihosting
:
3825 semihosting
.enabled
= true;
3826 semihosting
.target
= SEMIHOSTING_TARGET_AUTO
;
3828 case QEMU_OPTION_semihosting_config
:
3829 semihosting
.enabled
= true;
3830 opts
= qemu_opts_parse_noisily(qemu_find_opts("semihosting-config"),
3833 semihosting
.enabled
= qemu_opt_get_bool(opts
, "enable",
3835 const char *target
= qemu_opt_get(opts
, "target");
3836 if (target
!= NULL
) {
3837 if (strcmp("native", target
) == 0) {
3838 semihosting
.target
= SEMIHOSTING_TARGET_NATIVE
;
3839 } else if (strcmp("gdb", target
) == 0) {
3840 semihosting
.target
= SEMIHOSTING_TARGET_GDB
;
3841 } else if (strcmp("auto", target
) == 0) {
3842 semihosting
.target
= SEMIHOSTING_TARGET_AUTO
;
3844 error_report("unsupported semihosting-config %s",
3849 semihosting
.target
= SEMIHOSTING_TARGET_AUTO
;
3851 /* Set semihosting argument count and vector */
3852 qemu_opt_foreach(opts
, add_semihosting_arg
,
3853 &semihosting
, NULL
);
3855 error_report("unsupported semihosting-config %s", optarg
);
3859 case QEMU_OPTION_tdf
:
3860 error_report("warning: ignoring deprecated option");
3862 case QEMU_OPTION_name
:
3863 opts
= qemu_opts_parse_noisily(qemu_find_opts("name"),
3869 case QEMU_OPTION_prom_env
:
3870 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
3871 error_report("too many prom variables");
3874 prom_envs
[nb_prom_envs
] = optarg
;
3877 case QEMU_OPTION_old_param
:
3880 case QEMU_OPTION_clock
:
3881 /* Clock options no longer exist. Keep this option for
3882 * backward compatibility.
3885 case QEMU_OPTION_startdate
:
3886 configure_rtc_date_offset(optarg
, 1);
3888 case QEMU_OPTION_rtc
:
3889 opts
= qemu_opts_parse_noisily(qemu_find_opts("rtc"), optarg
,
3894 configure_rtc(opts
);
3896 case QEMU_OPTION_tb_size
:
3897 tcg_tb_size
= strtol(optarg
, NULL
, 0);
3898 if (tcg_tb_size
< 0) {
3902 case QEMU_OPTION_icount
:
3903 icount_opts
= qemu_opts_parse_noisily(qemu_find_opts("icount"),
3909 case QEMU_OPTION_incoming
:
3911 runstate_set(RUN_STATE_INMIGRATE
);
3915 case QEMU_OPTION_nodefaults
:
3918 case QEMU_OPTION_xen_domid
:
3919 if (!(xen_available())) {
3920 printf("Option %s not supported for this target\n", popt
->name
);
3923 xen_domid
= atoi(optarg
);
3925 case QEMU_OPTION_xen_create
:
3926 if (!(xen_available())) {
3927 printf("Option %s not supported for this target\n", popt
->name
);
3930 xen_mode
= XEN_CREATE
;
3932 case QEMU_OPTION_xen_attach
:
3933 if (!(xen_available())) {
3934 printf("Option %s not supported for this target\n", popt
->name
);
3937 xen_mode
= XEN_ATTACH
;
3939 case QEMU_OPTION_trace
:
3941 opts
= qemu_opts_parse_noisily(qemu_find_opts("trace"),
3946 if (qemu_opt_get(opts
, "enable")) {
3947 trace_enable_events(qemu_opt_get(opts
, "enable"));
3949 trace_init_events(qemu_opt_get(opts
, "events"));
3953 trace_file
= g_strdup(qemu_opt_get(opts
, "file"));
3954 qemu_opts_del(opts
);
3957 case QEMU_OPTION_trace_unassigned
:
3958 trace_unassigned
= true;
3960 case QEMU_OPTION_readconfig
:
3962 int ret
= qemu_read_config_file(optarg
);
3964 error_report("read config %s: %s", optarg
,
3970 case QEMU_OPTION_spice
:
3971 olist
= qemu_find_opts("spice");
3973 error_report("spice support is disabled");
3976 opts
= qemu_opts_parse_noisily(olist
, optarg
, false);
3982 case QEMU_OPTION_writeconfig
:
3985 if (strcmp(optarg
, "-") == 0) {
3988 fp
= fopen(optarg
, "w");
3990 error_report("open %s: %s", optarg
,
3995 qemu_config_write(fp
);
4001 case QEMU_OPTION_qtest
:
4002 qtest_chrdev
= optarg
;
4004 case QEMU_OPTION_qtest_log
:
4007 case QEMU_OPTION_sandbox
:
4008 opts
= qemu_opts_parse_noisily(qemu_find_opts("sandbox"),
4014 case QEMU_OPTION_add_fd
:
4016 opts
= qemu_opts_parse_noisily(qemu_find_opts("add-fd"),
4022 error_report("File descriptor passing is disabled on this "
4027 case QEMU_OPTION_object
:
4028 opts
= qemu_opts_parse_noisily(qemu_find_opts("object"),
4034 case QEMU_OPTION_realtime
:
4035 opts
= qemu_opts_parse_noisily(qemu_find_opts("realtime"),
4040 enable_mlock
= qemu_opt_get_bool(opts
, "mlock", true);
4042 case QEMU_OPTION_msg
:
4043 opts
= qemu_opts_parse_noisily(qemu_find_opts("msg"), optarg
,
4048 configure_msg(opts
);
4050 case QEMU_OPTION_dump_vmstate
:
4051 if (vmstate_dump_file
) {
4052 error_report("only one '-dump-vmstate' "
4053 "option may be given");
4056 vmstate_dump_file
= fopen(optarg
, "w");
4057 if (vmstate_dump_file
== NULL
) {
4058 error_report("open %s: %s", optarg
, strerror(errno
));
4063 os_parse_cmd_args(popt
->index
, optarg
);
4068 * Clear error location left behind by the loop.
4069 * Best done right after the loop. Do not insert code here!
4073 replay_configure(icount_opts
);
4075 machine_class
= select_machine();
4077 set_memory_options(&ram_slots
, &maxram_size
, machine_class
);
4081 if (qemu_init_main_loop(&main_loop_err
)) {
4082 error_report_err(main_loop_err
);
4086 if (qemu_opts_foreach(qemu_find_opts("sandbox"),
4087 parse_sandbox
, NULL
, NULL
)) {
4091 if (qemu_opts_foreach(qemu_find_opts("name"),
4092 parse_name
, NULL
, NULL
)) {
4097 if (qemu_opts_foreach(qemu_find_opts("add-fd"),
4098 parse_add_fd
, NULL
, NULL
)) {
4102 if (qemu_opts_foreach(qemu_find_opts("add-fd"),
4103 cleanup_add_fd
, NULL
, NULL
)) {
4108 current_machine
= MACHINE(object_new(object_class_get_name(
4109 OBJECT_CLASS(machine_class
))));
4110 if (machine_help_func(qemu_get_machine_opts(), current_machine
)) {
4113 object_property_add_child(object_get_root(), "machine",
4114 OBJECT(current_machine
), &error_abort
);
4115 cpu_exec_init_all();
4117 if (machine_class
->hw_version
) {
4118 qemu_set_hw_version(machine_class
->hw_version
);
4121 /* Init CPU def lists, based on config
4122 * - Must be called after all the qemu_read_config_file() calls
4123 * - Must be called before list_cpus()
4124 * - Must be called before machine->init()
4128 if (cpu_model
&& is_help_option(cpu_model
)) {
4129 list_cpus(stdout
, &fprintf
, cpu_model
);
4133 if (!trace_init_backends()) {
4136 trace_init_file(trace_file
);
4138 /* Open the logfile at this point and set the log mask if necessary.
4141 qemu_set_log_filename(log_file
);
4146 mask
= qemu_str_to_log_mask(log_mask
);
4148 qemu_print_log_usage(stdout
);
4156 /* If no data_dir is specified then try to find it relative to the
4158 if (data_dir_idx
< ARRAY_SIZE(data_dir
)) {
4159 data_dir
[data_dir_idx
] = os_find_datadir();
4160 if (data_dir
[data_dir_idx
] != NULL
) {
4164 /* If all else fails use the install path specified when building. */
4165 if (data_dir_idx
< ARRAY_SIZE(data_dir
)) {
4166 data_dir
[data_dir_idx
++] = CONFIG_QEMU_DATADIR
;
4169 smp_parse(qemu_opts_find(qemu_find_opts("smp-opts"), NULL
));
4171 machine_class
->max_cpus
= machine_class
->max_cpus
?: 1; /* Default to UP */
4172 if (max_cpus
> machine_class
->max_cpus
) {
4173 error_report("Number of SMP CPUs requested (%d) exceeds max CPUs "
4174 "supported by machine '%s' (%d)", max_cpus
,
4175 machine_class
->name
, machine_class
->max_cpus
);
4180 * Get the default machine options from the machine if it is not already
4181 * specified either by the configuration file or by the command line.
4183 if (machine_class
->default_machine_opts
) {
4184 qemu_opts_set_defaults(qemu_find_opts("machine"),
4185 machine_class
->default_machine_opts
, 0);
4188 qemu_opts_foreach(qemu_find_opts("device"),
4189 default_driver_check
, NULL
, NULL
);
4190 qemu_opts_foreach(qemu_find_opts("global"),
4191 default_driver_check
, NULL
, NULL
);
4193 if (!vga_model
&& !default_vga
) {
4194 vga_interface_type
= VGA_DEVICE
;
4196 if (!has_defaults
|| machine_class
->no_serial
) {
4199 if (!has_defaults
|| machine_class
->no_parallel
) {
4200 default_parallel
= 0;
4202 if (!has_defaults
|| !machine_class
->use_virtcon
) {
4203 default_virtcon
= 0;
4205 if (!has_defaults
|| !machine_class
->use_sclp
) {
4208 if (!has_defaults
|| machine_class
->no_floppy
) {
4211 if (!has_defaults
|| machine_class
->no_cdrom
) {
4214 if (!has_defaults
|| machine_class
->no_sdcard
) {
4217 if (!has_defaults
) {
4218 default_monitor
= 0;
4223 if (is_daemonized()) {
4224 /* According to documentation and historically, -nographic redirects
4225 * serial port, parallel port and monitor to stdio, which does not work
4226 * with -daemonize. We can redirect these to null instead, but since
4227 * -nographic is legacy, let's just error out.
4228 * We disallow -nographic only if all other ports are not redirected
4229 * explicitly, to not break existing legacy setups which uses
4230 * -nographic _and_ redirects all ports explicitly - this is valid
4231 * usage, -nographic is just a no-op in this case.
4233 if (display_type
== DT_NOGRAPHIC
4234 && (default_parallel
|| default_serial
4235 || default_monitor
|| default_virtcon
)) {
4236 error_report("-nographic cannot be used with -daemonize");
4239 #ifdef CONFIG_CURSES
4240 if (display_type
== DT_CURSES
) {
4241 error_report("curses display cannot be used with -daemonize");
4247 if (display_type
== DT_NOGRAPHIC
) {
4248 if (default_parallel
)
4249 add_device_config(DEV_PARALLEL
, "null");
4250 if (default_serial
&& default_monitor
) {
4251 add_device_config(DEV_SERIAL
, "mon:stdio");
4252 } else if (default_virtcon
&& default_monitor
) {
4253 add_device_config(DEV_VIRTCON
, "mon:stdio");
4254 } else if (default_sclp
&& default_monitor
) {
4255 add_device_config(DEV_SCLP
, "mon:stdio");
4258 add_device_config(DEV_SERIAL
, "stdio");
4259 if (default_virtcon
)
4260 add_device_config(DEV_VIRTCON
, "stdio");
4262 add_device_config(DEV_SCLP
, "stdio");
4264 if (default_monitor
)
4265 monitor_parse("stdio", "readline", false);
4269 add_device_config(DEV_SERIAL
, "vc:80Cx24C");
4270 if (default_parallel
)
4271 add_device_config(DEV_PARALLEL
, "vc:80Cx24C");
4272 if (default_monitor
)
4273 monitor_parse("vc:80Cx24C", "readline", false);
4274 if (default_virtcon
)
4275 add_device_config(DEV_VIRTCON
, "vc:80Cx24C");
4277 add_device_config(DEV_SCLP
, "vc:80Cx24C");
4281 #if defined(CONFIG_VNC)
4282 if (!QTAILQ_EMPTY(&(qemu_find_opts("vnc")->head
))) {
4286 if (display_type
== DT_DEFAULT
&& !display_remote
) {
4287 #if defined(CONFIG_GTK)
4288 display_type
= DT_GTK
;
4289 #elif defined(CONFIG_SDL) || defined(CONFIG_COCOA)
4290 display_type
= DT_SDL
;
4291 #elif defined(CONFIG_VNC)
4292 vnc_parse("localhost:0,to=99,id=default", &error_abort
);
4295 display_type
= DT_NONE
;
4299 if ((no_frame
|| alt_grab
|| ctrl_grab
) && display_type
!= DT_SDL
) {
4300 error_report("-no-frame, -alt-grab and -ctrl-grab are only valid "
4301 "for SDL, ignoring option");
4303 if (no_quit
&& (display_type
!= DT_GTK
&& display_type
!= DT_SDL
)) {
4304 error_report("-no-quit is only valid for GTK and SDL, "
4308 #if defined(CONFIG_GTK)
4309 if (display_type
== DT_GTK
) {
4310 early_gtk_display_init(request_opengl
);
4313 #if defined(CONFIG_SDL)
4314 if (display_type
== DT_SDL
) {
4315 sdl_display_early_init(request_opengl
);
4318 if (request_opengl
== 1 && display_opengl
== 0) {
4319 #if defined(CONFIG_OPENGL)
4320 error_report("OpenGL is not supported by the display");
4322 error_report("OpenGL support is disabled");
4330 if (qemu_opts_foreach(qemu_find_opts("object"),
4331 user_creatable_add_opts_foreach
,
4332 object_create_initial
, &err
)) {
4333 error_report_err(err
);
4337 if (qemu_opts_foreach(qemu_find_opts("chardev"),
4338 chardev_init_func
, NULL
, NULL
)) {
4342 #ifdef CONFIG_VIRTFS
4343 if (qemu_opts_foreach(qemu_find_opts("fsdev"),
4344 fsdev_init_func
, NULL
, NULL
)) {
4349 if (pid_file
&& qemu_create_pidfile(pid_file
) != 0) {
4350 error_report("could not acquire pid file: %s", strerror(errno
));
4354 if (qemu_opts_foreach(qemu_find_opts("device"),
4355 device_help_func
, NULL
, NULL
)) {
4359 machine_opts
= qemu_get_machine_opts();
4360 if (qemu_opt_foreach(machine_opts
, machine_set_property
, current_machine
,
4362 object_unref(OBJECT(current_machine
));
4366 configure_accelerator(current_machine
);
4369 qtest_init(qtest_chrdev
, qtest_log
, &error_fatal
);
4372 machine_opts
= qemu_get_machine_opts();
4373 kernel_filename
= qemu_opt_get(machine_opts
, "kernel");
4374 initrd_filename
= qemu_opt_get(machine_opts
, "initrd");
4375 kernel_cmdline
= qemu_opt_get(machine_opts
, "append");
4376 bios_name
= qemu_opt_get(machine_opts
, "firmware");
4378 opts
= qemu_opts_find(qemu_find_opts("boot-opts"), NULL
);
4380 boot_order
= qemu_opt_get(opts
, "order");
4382 validate_bootdevices(boot_order
, &error_fatal
);
4385 boot_once
= qemu_opt_get(opts
, "once");
4387 validate_bootdevices(boot_once
, &error_fatal
);
4390 boot_menu
= qemu_opt_get_bool(opts
, "menu", boot_menu
);
4391 boot_strict
= qemu_opt_get_bool(opts
, "strict", false);
4395 boot_order
= machine_class
->default_boot_order
;
4398 if (!kernel_cmdline
) {
4399 kernel_cmdline
= "";
4400 current_machine
->kernel_cmdline
= (char *)kernel_cmdline
;
4403 linux_boot
= (kernel_filename
!= NULL
);
4405 if (!linux_boot
&& *kernel_cmdline
!= '\0') {
4406 error_report("-append only allowed with -kernel option");
4410 if (!linux_boot
&& initrd_filename
!= NULL
) {
4411 error_report("-initrd only allowed with -kernel option");
4415 if (!linux_boot
&& qemu_opt_get(machine_opts
, "dtb")) {
4416 error_report("-dtb only allowed with -kernel option");
4420 if (semihosting_enabled() && !semihosting_get_argc() && kernel_filename
) {
4421 /* fall back to the -kernel/-append */
4422 semihosting_arg_fallback(kernel_filename
, kernel_cmdline
);
4425 os_set_line_buffering();
4428 /* spice needs the timers to be initialized by this point */
4434 if (kvm_enabled() || xen_enabled()) {
4435 error_report("-icount is not allowed with kvm or xen");
4438 configure_icount(icount_opts
, &error_abort
);
4439 qemu_opts_del(icount_opts
);
4442 /* clean up network at qemu process termination */
4443 atexit(&net_cleanup
);
4445 if (net_init_clients() < 0) {
4449 if (qemu_opts_foreach(qemu_find_opts("object"),
4450 user_creatable_add_opts_foreach
,
4451 object_create_delayed
, &err
)) {
4452 error_report_err(err
);
4457 if (tpm_init() < 0) {
4462 /* init the bluetooth world */
4463 if (foreach_device_config(DEV_BT
, bt_parse
))
4466 if (!xen_enabled()) {
4467 /* On 32-bit hosts, QEMU is limited by virtual address space */
4468 if (ram_size
> (2047 << 20) && HOST_LONG_BITS
== 32) {
4469 error_report("at most 2047 MB RAM can be simulated");
4477 /* If the currently selected machine wishes to override the units-per-bus
4478 * property of its default HBA interface type, do so now. */
4479 if (machine_class
->units_per_default_bus
) {
4480 override_max_devs(machine_class
->block_default_type
,
4481 machine_class
->units_per_default_bus
);
4484 /* open the virtual block devices */
4485 if (snapshot
|| replay_mode
!= REPLAY_MODE_NONE
) {
4486 qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot
,
4489 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func
,
4490 &machine_class
->block_default_type
, NULL
)) {
4494 default_drive(default_cdrom
, snapshot
, machine_class
->block_default_type
, 2,
4496 default_drive(default_floppy
, snapshot
, IF_FLOPPY
, 0, FD_OPTS
);
4497 default_drive(default_sdcard
, snapshot
, IF_SD
, 0, SD_OPTS
);
4499 parse_numa_opts(machine_class
);
4501 if (qemu_opts_foreach(qemu_find_opts("mon"),
4502 mon_init_func
, NULL
, NULL
)) {
4506 if (foreach_device_config(DEV_SERIAL
, serial_parse
) < 0)
4508 if (foreach_device_config(DEV_PARALLEL
, parallel_parse
) < 0)
4510 if (foreach_device_config(DEV_VIRTCON
, virtcon_parse
) < 0)
4512 if (foreach_device_config(DEV_SCLP
, sclp_parse
) < 0) {
4515 if (foreach_device_config(DEV_DEBUGCON
, debugcon_parse
) < 0)
4518 /* If no default VGA is requested, the default is "none". */
4520 if (machine_class
->default_display
) {
4521 vga_model
= machine_class
->default_display
;
4522 } else if (cirrus_vga_available()) {
4523 vga_model
= "cirrus";
4524 } else if (vga_available()) {
4529 select_vgahw(vga_model
);
4533 i
= select_watchdog(watchdog
);
4535 exit (i
== 1 ? 1 : 0);
4538 if (machine_class
->compat_props
) {
4539 qdev_prop_register_global_list(machine_class
->compat_props
);
4543 /* This checkpoint is required by replay to separate prior clock
4544 reading from the other reads, because timer polling functions query
4545 clock values from the log. */
4546 replay_checkpoint(CHECKPOINT_INIT
);
4547 qdev_machine_init();
4549 current_machine
->ram_size
= ram_size
;
4550 current_machine
->maxram_size
= maxram_size
;
4551 current_machine
->ram_slots
= ram_slots
;
4552 current_machine
->boot_order
= boot_order
;
4553 current_machine
->cpu_model
= cpu_model
;
4555 machine_class
->init(current_machine
);
4561 cpu_synchronize_all_post_init();
4563 numa_post_machine_init();
4565 if (qemu_opts_foreach(qemu_find_opts("fw_cfg"),
4566 parse_fw_cfg
, fw_cfg_find(), NULL
) != 0) {
4570 /* init USB devices */
4571 if (usb_enabled()) {
4572 if (foreach_device_config(DEV_USB
, usb_parse
) < 0)
4576 /* Check if IGD GFX passthrough. */
4579 /* init generic devices */
4580 if (qemu_opts_foreach(qemu_find_opts("device"),
4581 device_init_func
, NULL
, NULL
)) {
4585 /* Did we create any drives that we failed to create a device for? */
4586 drive_check_orphaned();
4588 net_check_clients();
4591 qemu_boot_set(boot_once
, &error_fatal
);
4592 qemu_register_reset(restore_boot_order
, g_strdup(boot_order
));
4595 ds
= init_displaystate();
4597 /* init local displays */
4598 switch (display_type
) {
4600 (void)ds
; /* avoid warning if no display is configured */
4602 #if defined(CONFIG_CURSES)
4604 curses_display_init(ds
, full_screen
);
4607 #if defined(CONFIG_SDL)
4609 sdl_display_init(ds
, full_screen
, no_frame
);
4611 #elif defined(CONFIG_COCOA)
4613 cocoa_display_init(ds
, full_screen
);
4616 #if defined(CONFIG_GTK)
4618 gtk_display_init(ds
, full_screen
, grab_on_hover
);
4625 /* must be after terminal init, SDL library changes signal handlers */
4626 os_setup_signal_handling();
4629 /* init remote displays */
4630 qemu_opts_foreach(qemu_find_opts("vnc"),
4631 vnc_init_func
, NULL
, NULL
);
4632 if (show_vnc_port
) {
4633 char *ret
= vnc_display_local_addr("default");
4634 printf("VNC server running on '%s'\n", ret
);
4640 qemu_spice_display_init();
4644 qemu_opts_foreach(qemu_find_opts("input-linux"),
4645 input_linux_init
, NULL
, &error_fatal
);
4648 if (foreach_device_config(DEV_GDB
, gdbserver_start
) < 0) {
4652 qdev_machine_creation_done();
4654 /* TODO: once all bus devices are qdevified, this should be done
4655 * when bus is created by qdev.c */
4656 qemu_register_reset(qbus_reset_all_fn
, sysbus_get_default());
4657 qemu_run_machine_init_done_notifiers();
4659 if (rom_check_and_register_reset() != 0) {
4660 error_report("rom check and register reset failed");
4666 /* This checkpoint is required by replay to separate prior clock
4667 reading from the other reads, because timer polling functions query
4668 clock values from the log. */
4669 replay_checkpoint(CHECKPOINT_RESET
);
4670 qemu_system_reset(VMRESET_SILENT
);
4671 register_global_state();
4673 if (load_vmstate(loadvm
) < 0) {
4678 qdev_prop_check_globals();
4679 if (vmstate_dump_file
) {
4681 dump_vmstate_json_to_file(vmstate_dump_file
);
4686 Error
*local_err
= NULL
;
4687 qemu_start_incoming_migration(incoming
, &local_err
);
4689 error_reportf_err(local_err
, "-incoming %s: ", incoming
);
4692 } else if (autostart
) {
4699 replay_disable_events();