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
, char **envp
);
39 int main(int argc
, char **argv
)
41 return qemu_main(argc
, argv
, NULL
);
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"
75 #include "sysemu/sysemu.h"
76 #include "sysemu/numa.h"
77 #include "exec/gdbstub.h"
78 #include "qemu/timer.h"
79 #include "sysemu/char.h"
80 #include "qemu/bitmap.h"
81 #include "sysemu/blockdev.h"
82 #include "hw/block/block.h"
83 #include "migration/block.h"
84 #include "sysemu/tpm.h"
85 #include "sysemu/dma.h"
86 #include "audio/audio.h"
87 #include "migration/migration.h"
88 #include "sysemu/kvm.h"
89 #include "qapi/qmp/qjson.h"
90 #include "qemu/option.h"
91 #include "qemu/config-file.h"
92 #include "qemu-options.h"
93 #include "qmp-commands.h"
94 #include "qemu/main-loop.h"
96 #include "fsdev/qemu-fsdev.h"
98 #include "sysemu/qtest.h"
100 #include "disas/disas.h"
103 #include "slirp/libslirp.h"
106 #include "trace/control.h"
107 #include "qemu/queue.h"
108 #include "sysemu/cpus.h"
109 #include "sysemu/arch_init.h"
111 #include "ui/qemu-spice.h"
112 #include "qapi/string-input-visitor.h"
113 #include "qapi/opts-visitor.h"
114 #include "qom/object_interfaces.h"
115 #include "qapi-event.h"
116 #include "exec/semihost.h"
117 #include "crypto/init.h"
118 #include "sysemu/replay.h"
119 #include "qapi/qmp/qerror.h"
121 #define MAX_VIRTIO_CONSOLES 1
122 #define MAX_SCLP_CONSOLES 1
124 static const char *data_dir
[16];
125 static int data_dir_idx
;
126 const char *bios_name
= NULL
;
127 enum vga_retrace_method vga_retrace_method
= VGA_RETRACE_DUMB
;
128 DisplayType display_type
= DT_DEFAULT
;
129 int request_opengl
= -1;
131 static int display_remote
;
132 const char* keyboard_layout
= NULL
;
134 const char *mem_path
= NULL
;
135 int mem_prealloc
= 0; /* force preallocation of physical target memory */
136 bool enable_mlock
= false;
138 NICInfo nd_table
[MAX_NICS
];
140 static int rtc_utc
= 1;
141 static int rtc_date_offset
= -1; /* -1 means no change */
142 QEMUClockType rtc_clock
;
143 int vga_interface_type
= VGA_NONE
;
144 static int full_screen
= 0;
145 static int no_frame
= 0;
148 static bool grab_on_hover
;
150 CharDriverState
*serial_hds
[MAX_SERIAL_PORTS
];
151 CharDriverState
*parallel_hds
[MAX_PARALLEL_PORTS
];
152 CharDriverState
*virtcon_hds
[MAX_VIRTIO_CONSOLES
];
153 CharDriverState
*sclp_hds
[MAX_SCLP_CONSOLES
];
154 int win2k_install_hack
= 0;
160 int acpi_enabled
= 1;
163 static int no_reboot
;
166 int graphic_rotate
= 0;
167 const char *watchdog
;
168 QEMUOptionRom option_rom
[MAX_OPTION_ROMS
];
171 const char *qemu_name
;
174 unsigned int nb_prom_envs
= 0;
175 const char *prom_envs
[MAX_PROM_ENVS
];
178 uint8_t *boot_splash_filedata
;
179 size_t boot_splash_filedata_size
;
180 uint8_t qemu_extra_params_fw
[2];
182 int icount_align_option
;
184 /* The bytes in qemu_uuid[] are in the order specified by RFC4122, _not_ in the
185 * little-endian "wire format" described in the SMBIOS 2.6 specification.
187 uint8_t qemu_uuid
[16];
190 static NotifierList exit_notifiers
=
191 NOTIFIER_LIST_INITIALIZER(exit_notifiers
);
193 static NotifierList machine_init_done_notifiers
=
194 NOTIFIER_LIST_INITIALIZER(machine_init_done_notifiers
);
198 enum xen_mode xen_mode
= XEN_EMULATE
;
200 static int has_defaults
= 1;
201 static int default_serial
= 1;
202 static int default_parallel
= 1;
203 static int default_virtcon
= 1;
204 static int default_sclp
= 1;
205 static int default_monitor
= 1;
206 static int default_floppy
= 1;
207 static int default_cdrom
= 1;
208 static int default_sdcard
= 1;
209 static int default_vga
= 1;
215 { .driver
= "isa-serial", .flag
= &default_serial
},
216 { .driver
= "isa-parallel", .flag
= &default_parallel
},
217 { .driver
= "isa-fdc", .flag
= &default_floppy
},
218 { .driver
= "ide-cd", .flag
= &default_cdrom
},
219 { .driver
= "ide-hd", .flag
= &default_cdrom
},
220 { .driver
= "ide-drive", .flag
= &default_cdrom
},
221 { .driver
= "scsi-cd", .flag
= &default_cdrom
},
222 { .driver
= "virtio-serial-pci", .flag
= &default_virtcon
},
223 { .driver
= "virtio-serial", .flag
= &default_virtcon
},
224 { .driver
= "VGA", .flag
= &default_vga
},
225 { .driver
= "isa-vga", .flag
= &default_vga
},
226 { .driver
= "cirrus-vga", .flag
= &default_vga
},
227 { .driver
= "isa-cirrus-vga", .flag
= &default_vga
},
228 { .driver
= "vmware-svga", .flag
= &default_vga
},
229 { .driver
= "qxl-vga", .flag
= &default_vga
},
230 { .driver
= "virtio-vga", .flag
= &default_vga
},
233 static QemuOptsList qemu_rtc_opts
= {
235 .head
= QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts
.head
),
239 .type
= QEMU_OPT_STRING
,
242 .type
= QEMU_OPT_STRING
,
245 .type
= QEMU_OPT_STRING
,
247 { /* end of list */ }
251 static QemuOptsList qemu_sandbox_opts
= {
253 .implied_opt_name
= "enable",
254 .head
= QTAILQ_HEAD_INITIALIZER(qemu_sandbox_opts
.head
),
258 .type
= QEMU_OPT_BOOL
,
260 { /* end of list */ }
264 static QemuOptsList qemu_trace_opts
= {
266 .implied_opt_name
= "enable",
267 .head
= QTAILQ_HEAD_INITIALIZER(qemu_trace_opts
.head
),
271 .type
= QEMU_OPT_STRING
,
275 .type
= QEMU_OPT_STRING
,
278 .type
= QEMU_OPT_STRING
,
280 { /* end of list */ }
284 static QemuOptsList qemu_option_rom_opts
= {
285 .name
= "option-rom",
286 .implied_opt_name
= "romfile",
287 .head
= QTAILQ_HEAD_INITIALIZER(qemu_option_rom_opts
.head
),
291 .type
= QEMU_OPT_NUMBER
,
294 .type
= QEMU_OPT_STRING
,
296 { /* end of list */ }
300 static QemuOptsList qemu_machine_opts
= {
302 .implied_opt_name
= "type",
304 .head
= QTAILQ_HEAD_INITIALIZER(qemu_machine_opts
.head
),
307 * no elements => accept any
308 * sanity checking will happen later
309 * when setting machine properties
315 static QemuOptsList qemu_boot_opts
= {
317 .implied_opt_name
= "order",
319 .head
= QTAILQ_HEAD_INITIALIZER(qemu_boot_opts
.head
),
323 .type
= QEMU_OPT_STRING
,
326 .type
= QEMU_OPT_STRING
,
329 .type
= QEMU_OPT_BOOL
,
332 .type
= QEMU_OPT_STRING
,
334 .name
= "splash-time",
335 .type
= QEMU_OPT_STRING
,
337 .name
= "reboot-timeout",
338 .type
= QEMU_OPT_STRING
,
341 .type
= QEMU_OPT_BOOL
,
347 static QemuOptsList qemu_add_fd_opts
= {
349 .head
= QTAILQ_HEAD_INITIALIZER(qemu_add_fd_opts
.head
),
353 .type
= QEMU_OPT_NUMBER
,
354 .help
= "file descriptor of which a duplicate is added to fd set",
357 .type
= QEMU_OPT_NUMBER
,
358 .help
= "ID of the fd set to add fd to",
361 .type
= QEMU_OPT_STRING
,
362 .help
= "free-form string used to describe fd",
364 { /* end of list */ }
368 static QemuOptsList qemu_object_opts
= {
370 .implied_opt_name
= "qom-type",
371 .head
= QTAILQ_HEAD_INITIALIZER(qemu_object_opts
.head
),
377 static QemuOptsList qemu_tpmdev_opts
= {
379 .implied_opt_name
= "type",
380 .head
= QTAILQ_HEAD_INITIALIZER(qemu_tpmdev_opts
.head
),
382 /* options are defined in the TPM backends */
383 { /* end of list */ }
387 static QemuOptsList qemu_realtime_opts
= {
389 .head
= QTAILQ_HEAD_INITIALIZER(qemu_realtime_opts
.head
),
393 .type
= QEMU_OPT_BOOL
,
395 { /* end of list */ }
399 static QemuOptsList qemu_msg_opts
= {
401 .head
= QTAILQ_HEAD_INITIALIZER(qemu_msg_opts
.head
),
405 .type
= QEMU_OPT_BOOL
,
407 { /* end of list */ }
411 static QemuOptsList qemu_name_opts
= {
413 .implied_opt_name
= "guest",
415 .head
= QTAILQ_HEAD_INITIALIZER(qemu_name_opts
.head
),
419 .type
= QEMU_OPT_STRING
,
420 .help
= "Sets the name of the guest.\n"
421 "This name will be displayed in the SDL window caption.\n"
422 "The name will also be used for the VNC server",
425 .type
= QEMU_OPT_STRING
,
426 .help
= "Sets the name of the QEMU process, as shown in top etc",
428 .name
= "debug-threads",
429 .type
= QEMU_OPT_BOOL
,
430 .help
= "When enabled, name the individual threads; defaults off.\n"
431 "NOTE: The thread names are for debugging and not a\n"
434 { /* End of list */ }
438 static QemuOptsList qemu_mem_opts
= {
440 .implied_opt_name
= "size",
441 .head
= QTAILQ_HEAD_INITIALIZER(qemu_mem_opts
.head
),
446 .type
= QEMU_OPT_SIZE
,
450 .type
= QEMU_OPT_NUMBER
,
454 .type
= QEMU_OPT_SIZE
,
456 { /* end of list */ }
460 static QemuOptsList qemu_icount_opts
= {
462 .implied_opt_name
= "shift",
464 .head
= QTAILQ_HEAD_INITIALIZER(qemu_icount_opts
.head
),
468 .type
= QEMU_OPT_STRING
,
471 .type
= QEMU_OPT_BOOL
,
474 .type
= QEMU_OPT_BOOL
,
477 .type
= QEMU_OPT_STRING
,
480 .type
= QEMU_OPT_STRING
,
482 { /* end of list */ }
486 static QemuOptsList qemu_semihosting_config_opts
= {
487 .name
= "semihosting-config",
488 .implied_opt_name
= "enable",
489 .head
= QTAILQ_HEAD_INITIALIZER(qemu_semihosting_config_opts
.head
),
493 .type
= QEMU_OPT_BOOL
,
496 .type
= QEMU_OPT_STRING
,
499 .type
= QEMU_OPT_STRING
,
501 { /* end of list */ }
505 static QemuOptsList qemu_fw_cfg_opts
= {
507 .implied_opt_name
= "name",
508 .head
= QTAILQ_HEAD_INITIALIZER(qemu_fw_cfg_opts
.head
),
512 .type
= QEMU_OPT_STRING
,
513 .help
= "Sets the fw_cfg name of the blob to be inserted",
516 .type
= QEMU_OPT_STRING
,
517 .help
= "Sets the name of the file from which\n"
518 "the fw_cfg blob will be loaded",
521 .type
= QEMU_OPT_STRING
,
522 .help
= "Sets content of the blob to be inserted from a string",
524 { /* end of list */ }
529 * Get machine options
531 * Returns: machine options (never null).
533 QemuOpts
*qemu_get_machine_opts(void)
535 return qemu_find_opts_singleton("machine");
538 const char *qemu_get_vm_name(void)
543 static void res_free(void)
545 g_free(boot_splash_filedata
);
546 boot_splash_filedata
= NULL
;
549 static int default_driver_check(void *opaque
, QemuOpts
*opts
, Error
**errp
)
551 const char *driver
= qemu_opt_get(opts
, "driver");
556 for (i
= 0; i
< ARRAY_SIZE(default_list
); i
++) {
557 if (strcmp(default_list
[i
].driver
, driver
) != 0)
559 *(default_list
[i
].flag
) = 0;
564 /***********************************************************/
567 static RunState current_run_state
= RUN_STATE_PRELAUNCH
;
569 /* We use RUN_STATE__MAX but any invalid value will do */
570 static RunState vmstop_requested
= RUN_STATE__MAX
;
571 static QemuMutex vmstop_lock
;
576 } RunStateTransition
;
578 static const RunStateTransition runstate_transitions_def
[] = {
580 { RUN_STATE_DEBUG
, RUN_STATE_RUNNING
},
581 { RUN_STATE_DEBUG
, RUN_STATE_FINISH_MIGRATE
},
582 { RUN_STATE_DEBUG
, RUN_STATE_PRELAUNCH
},
584 { RUN_STATE_INMIGRATE
, RUN_STATE_INTERNAL_ERROR
},
585 { RUN_STATE_INMIGRATE
, RUN_STATE_IO_ERROR
},
586 { RUN_STATE_INMIGRATE
, RUN_STATE_PAUSED
},
587 { RUN_STATE_INMIGRATE
, RUN_STATE_RUNNING
},
588 { RUN_STATE_INMIGRATE
, RUN_STATE_SHUTDOWN
},
589 { RUN_STATE_INMIGRATE
, RUN_STATE_SUSPENDED
},
590 { RUN_STATE_INMIGRATE
, RUN_STATE_WATCHDOG
},
591 { RUN_STATE_INMIGRATE
, RUN_STATE_GUEST_PANICKED
},
592 { RUN_STATE_INMIGRATE
, RUN_STATE_FINISH_MIGRATE
},
593 { RUN_STATE_INMIGRATE
, RUN_STATE_PRELAUNCH
},
594 { RUN_STATE_INMIGRATE
, RUN_STATE_POSTMIGRATE
},
596 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_PAUSED
},
597 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_FINISH_MIGRATE
},
598 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_PRELAUNCH
},
600 { RUN_STATE_IO_ERROR
, RUN_STATE_RUNNING
},
601 { RUN_STATE_IO_ERROR
, RUN_STATE_FINISH_MIGRATE
},
602 { RUN_STATE_IO_ERROR
, RUN_STATE_PRELAUNCH
},
604 { RUN_STATE_PAUSED
, RUN_STATE_RUNNING
},
605 { RUN_STATE_PAUSED
, RUN_STATE_FINISH_MIGRATE
},
606 { RUN_STATE_PAUSED
, RUN_STATE_PRELAUNCH
},
608 { RUN_STATE_POSTMIGRATE
, RUN_STATE_RUNNING
},
609 { RUN_STATE_POSTMIGRATE
, RUN_STATE_FINISH_MIGRATE
},
610 { RUN_STATE_POSTMIGRATE
, RUN_STATE_PRELAUNCH
},
612 { RUN_STATE_PRELAUNCH
, RUN_STATE_RUNNING
},
613 { RUN_STATE_PRELAUNCH
, RUN_STATE_FINISH_MIGRATE
},
614 { RUN_STATE_PRELAUNCH
, RUN_STATE_INMIGRATE
},
616 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_RUNNING
},
617 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_POSTMIGRATE
},
618 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_PRELAUNCH
},
620 { RUN_STATE_RESTORE_VM
, RUN_STATE_RUNNING
},
621 { RUN_STATE_RESTORE_VM
, RUN_STATE_PRELAUNCH
},
623 { RUN_STATE_RUNNING
, RUN_STATE_DEBUG
},
624 { RUN_STATE_RUNNING
, RUN_STATE_INTERNAL_ERROR
},
625 { RUN_STATE_RUNNING
, RUN_STATE_IO_ERROR
},
626 { RUN_STATE_RUNNING
, RUN_STATE_PAUSED
},
627 { RUN_STATE_RUNNING
, RUN_STATE_FINISH_MIGRATE
},
628 { RUN_STATE_RUNNING
, RUN_STATE_RESTORE_VM
},
629 { RUN_STATE_RUNNING
, RUN_STATE_SAVE_VM
},
630 { RUN_STATE_RUNNING
, RUN_STATE_SHUTDOWN
},
631 { RUN_STATE_RUNNING
, RUN_STATE_WATCHDOG
},
632 { RUN_STATE_RUNNING
, RUN_STATE_GUEST_PANICKED
},
634 { RUN_STATE_SAVE_VM
, RUN_STATE_RUNNING
},
636 { RUN_STATE_SHUTDOWN
, RUN_STATE_PAUSED
},
637 { RUN_STATE_SHUTDOWN
, RUN_STATE_FINISH_MIGRATE
},
638 { RUN_STATE_SHUTDOWN
, RUN_STATE_PRELAUNCH
},
640 { RUN_STATE_DEBUG
, RUN_STATE_SUSPENDED
},
641 { RUN_STATE_RUNNING
, RUN_STATE_SUSPENDED
},
642 { RUN_STATE_SUSPENDED
, RUN_STATE_RUNNING
},
643 { RUN_STATE_SUSPENDED
, RUN_STATE_FINISH_MIGRATE
},
644 { RUN_STATE_SUSPENDED
, RUN_STATE_PRELAUNCH
},
646 { RUN_STATE_WATCHDOG
, RUN_STATE_RUNNING
},
647 { RUN_STATE_WATCHDOG
, RUN_STATE_FINISH_MIGRATE
},
648 { RUN_STATE_WATCHDOG
, RUN_STATE_PRELAUNCH
},
650 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_RUNNING
},
651 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_FINISH_MIGRATE
},
652 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_PRELAUNCH
},
654 { RUN_STATE__MAX
, RUN_STATE__MAX
},
657 static bool runstate_valid_transitions
[RUN_STATE__MAX
][RUN_STATE__MAX
];
659 bool runstate_check(RunState state
)
661 return current_run_state
== state
;
664 bool runstate_store(char *str
, size_t size
)
666 const char *state
= RunState_lookup
[current_run_state
];
667 size_t len
= strlen(state
) + 1;
672 memcpy(str
, state
, len
);
676 static void runstate_init(void)
678 const RunStateTransition
*p
;
680 memset(&runstate_valid_transitions
, 0, sizeof(runstate_valid_transitions
));
681 for (p
= &runstate_transitions_def
[0]; p
->from
!= RUN_STATE__MAX
; p
++) {
682 runstate_valid_transitions
[p
->from
][p
->to
] = true;
685 qemu_mutex_init(&vmstop_lock
);
688 /* This function will abort() on invalid state transitions */
689 void runstate_set(RunState new_state
)
691 assert(new_state
< RUN_STATE__MAX
);
693 if (!runstate_valid_transitions
[current_run_state
][new_state
]) {
694 error_report("invalid runstate transition: '%s' -> '%s'",
695 RunState_lookup
[current_run_state
],
696 RunState_lookup
[new_state
]);
699 trace_runstate_set(new_state
);
700 current_run_state
= new_state
;
703 int runstate_is_running(void)
705 return runstate_check(RUN_STATE_RUNNING
);
708 bool runstate_needs_reset(void)
710 return runstate_check(RUN_STATE_INTERNAL_ERROR
) ||
711 runstate_check(RUN_STATE_SHUTDOWN
);
714 StatusInfo
*qmp_query_status(Error
**errp
)
716 StatusInfo
*info
= g_malloc0(sizeof(*info
));
718 info
->running
= runstate_is_running();
719 info
->singlestep
= singlestep
;
720 info
->status
= current_run_state
;
725 static bool qemu_vmstop_requested(RunState
*r
)
727 qemu_mutex_lock(&vmstop_lock
);
728 *r
= vmstop_requested
;
729 vmstop_requested
= RUN_STATE__MAX
;
730 qemu_mutex_unlock(&vmstop_lock
);
731 return *r
< RUN_STATE__MAX
;
734 void qemu_system_vmstop_request_prepare(void)
736 qemu_mutex_lock(&vmstop_lock
);
739 void qemu_system_vmstop_request(RunState state
)
741 vmstop_requested
= state
;
742 qemu_mutex_unlock(&vmstop_lock
);
750 qemu_vmstop_requested(&requested
);
751 if (runstate_is_running() && requested
== RUN_STATE__MAX
) {
755 /* Ensure that a STOP/RESUME pair of events is emitted if a
756 * vmstop request was pending. The BLOCK_IO_ERROR event, for
757 * example, according to documentation is always followed by
760 if (runstate_is_running()) {
761 qapi_event_send_stop(&error_abort
);
764 runstate_set(RUN_STATE_RUNNING
);
765 vm_state_notify(1, RUN_STATE_RUNNING
);
769 qapi_event_send_resume(&error_abort
);
773 /***********************************************************/
774 /* real time host monotonic timer */
776 static time_t qemu_time(void)
778 return qemu_clock_get_ms(QEMU_CLOCK_HOST
) / 1000;
781 /***********************************************************/
782 /* host time/date access */
783 void qemu_get_timedate(struct tm
*tm
, int offset
)
785 time_t ti
= qemu_time();
788 if (rtc_date_offset
== -1) {
792 localtime_r(&ti
, tm
);
794 ti
-= rtc_date_offset
;
799 int qemu_timedate_diff(struct tm
*tm
)
803 if (rtc_date_offset
== -1)
805 seconds
= mktimegm(tm
);
808 tmp
.tm_isdst
= -1; /* use timezone to figure it out */
809 seconds
= mktime(&tmp
);
812 seconds
= mktimegm(tm
) + rtc_date_offset
;
814 return seconds
- qemu_time();
817 static void configure_rtc_date_offset(const char *startdate
, int legacy
)
819 time_t rtc_start_date
;
822 if (!strcmp(startdate
, "now") && legacy
) {
823 rtc_date_offset
= -1;
825 if (sscanf(startdate
, "%d-%d-%dT%d:%d:%d",
833 } else if (sscanf(startdate
, "%d-%d-%d",
845 rtc_start_date
= mktimegm(&tm
);
846 if (rtc_start_date
== -1) {
848 error_report("invalid date format");
849 error_printf("valid formats: "
850 "'2006-06-17T16:01:21' or '2006-06-17'\n");
853 rtc_date_offset
= qemu_time() - rtc_start_date
;
857 static void configure_rtc(QemuOpts
*opts
)
861 value
= qemu_opt_get(opts
, "base");
863 if (!strcmp(value
, "utc")) {
865 } else if (!strcmp(value
, "localtime")) {
866 Error
*blocker
= NULL
;
868 error_setg(&blocker
, QERR_REPLAY_NOT_SUPPORTED
,
869 "-rtc base=localtime");
870 replay_add_blocker(blocker
);
872 configure_rtc_date_offset(value
, 0);
875 value
= qemu_opt_get(opts
, "clock");
877 if (!strcmp(value
, "host")) {
878 rtc_clock
= QEMU_CLOCK_HOST
;
879 } else if (!strcmp(value
, "rt")) {
880 rtc_clock
= QEMU_CLOCK_REALTIME
;
881 } else if (!strcmp(value
, "vm")) {
882 rtc_clock
= QEMU_CLOCK_VIRTUAL
;
884 error_report("invalid option value '%s'", value
);
888 value
= qemu_opt_get(opts
, "driftfix");
890 if (!strcmp(value
, "slew")) {
891 static GlobalProperty slew_lost_ticks
[] = {
893 .driver
= "mc146818rtc",
894 .property
= "lost_tick_policy",
897 { /* end of list */ }
900 qdev_prop_register_global_list(slew_lost_ticks
);
901 } else if (!strcmp(value
, "none")) {
902 /* discard is default */
904 error_report("invalid option value '%s'", value
);
910 /***********************************************************/
911 /* Bluetooth support */
914 static struct HCIInfo
*hci_table
[MAX_NICS
];
916 struct HCIInfo
*qemu_next_hci(void)
918 if (cur_hci
== nb_hcis
)
921 return hci_table
[cur_hci
++];
924 static int bt_hci_parse(const char *str
)
929 if (nb_hcis
>= MAX_NICS
) {
930 error_report("too many bluetooth HCIs (max %i)", MAX_NICS
);
943 bdaddr
.b
[5] = 0x56 + nb_hcis
;
944 hci
->bdaddr_set(hci
, bdaddr
.b
);
946 hci_table
[nb_hcis
++] = hci
;
951 static void bt_vhci_add(int vlan_id
)
953 struct bt_scatternet_s
*vlan
= qemu_find_bt_vlan(vlan_id
);
956 error_report("warning: adding a VHCI to an empty scatternet %i",
959 bt_vhci_init(bt_new_hci(vlan
));
962 static struct bt_device_s
*bt_device_add(const char *opt
)
964 struct bt_scatternet_s
*vlan
;
966 char *endp
= strstr(opt
, ",vlan=");
967 int len
= (endp
? endp
- opt
: strlen(opt
)) + 1;
970 pstrcpy(devname
, MIN(sizeof(devname
), len
), opt
);
973 vlan_id
= strtol(endp
+ 6, &endp
, 0);
975 error_report("unrecognised bluetooth vlan Id");
980 vlan
= qemu_find_bt_vlan(vlan_id
);
983 error_report("warning: adding a slave device to an empty scatternet %i",
986 if (!strcmp(devname
, "keyboard"))
987 return bt_keyboard_init(vlan
);
989 error_report("unsupported bluetooth device '%s'", devname
);
993 static int bt_parse(const char *opt
)
995 const char *endp
, *p
;
998 if (strstart(opt
, "hci", &endp
)) {
999 if (!*endp
|| *endp
== ',') {
1001 if (!strstart(endp
, ",vlan=", 0))
1004 return bt_hci_parse(opt
);
1006 } else if (strstart(opt
, "vhci", &endp
)) {
1007 if (!*endp
|| *endp
== ',') {
1009 if (strstart(endp
, ",vlan=", &p
)) {
1010 vlan
= strtol(p
, (char **) &endp
, 0);
1012 error_report("bad scatternet '%s'", p
);
1016 error_report("bad parameter '%s'", endp
+ 1);
1025 } else if (strstart(opt
, "device:", &endp
))
1026 return !bt_device_add(endp
);
1028 error_report("bad bluetooth parameter '%s'", opt
);
1032 static int parse_sandbox(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1034 /* FIXME: change this to true for 1.3 */
1035 if (qemu_opt_get_bool(opts
, "enable", false)) {
1036 #ifdef CONFIG_SECCOMP
1037 if (seccomp_start() < 0) {
1038 error_report("failed to install seccomp syscall filter "
1043 error_report("seccomp support is disabled");
1051 static int parse_name(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1053 const char *proc_name
;
1055 if (qemu_opt_get(opts
, "debug-threads")) {
1056 qemu_thread_naming(qemu_opt_get_bool(opts
, "debug-threads", false));
1058 qemu_name
= qemu_opt_get(opts
, "guest");
1060 proc_name
= qemu_opt_get(opts
, "process");
1062 os_set_proc_name(proc_name
);
1068 bool defaults_enabled(void)
1070 return has_defaults
;
1073 bool usb_enabled(void)
1075 return machine_usb(current_machine
);
1079 static int parse_add_fd(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1081 int fd
, dupfd
, flags
;
1083 const char *fd_opaque
= NULL
;
1086 fd
= qemu_opt_get_number(opts
, "fd", -1);
1087 fdset_id
= qemu_opt_get_number(opts
, "set", -1);
1088 fd_opaque
= qemu_opt_get(opts
, "opaque");
1091 error_report("fd option is required and must be non-negative");
1095 if (fd
<= STDERR_FILENO
) {
1096 error_report("fd cannot be a standard I/O stream");
1101 * All fds inherited across exec() necessarily have FD_CLOEXEC
1102 * clear, while qemu sets FD_CLOEXEC on all other fds used internally.
1104 flags
= fcntl(fd
, F_GETFD
);
1105 if (flags
== -1 || (flags
& FD_CLOEXEC
)) {
1106 error_report("fd is not valid or already in use");
1111 error_report("set option is required and must be non-negative");
1115 #ifdef F_DUPFD_CLOEXEC
1116 dupfd
= fcntl(fd
, F_DUPFD_CLOEXEC
, 0);
1120 qemu_set_cloexec(dupfd
);
1124 error_report("error duplicating fd: %s", strerror(errno
));
1128 /* add the duplicate fd, and optionally the opaque string, to the fd set */
1129 fdinfo
= monitor_fdset_add_fd(dupfd
, true, fdset_id
, !!fd_opaque
, fd_opaque
,
1136 static int cleanup_add_fd(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1140 fd
= qemu_opt_get_number(opts
, "fd", -1);
1147 /***********************************************************/
1148 /* QEMU Block devices */
1150 #define HD_OPTS "media=disk"
1151 #define CDROM_OPTS "media=cdrom"
1153 #define PFLASH_OPTS ""
1157 static int drive_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1159 BlockInterfaceType
*block_default_type
= opaque
;
1161 return drive_new(opts
, *block_default_type
) == NULL
;
1164 static int drive_enable_snapshot(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1166 if (qemu_opt_get(opts
, "snapshot") == NULL
) {
1167 qemu_opt_set(opts
, "snapshot", "on", &error_abort
);
1172 static void default_drive(int enable
, int snapshot
, BlockInterfaceType type
,
1173 int index
, const char *optstr
)
1178 if (!enable
|| drive_get_by_index(type
, index
)) {
1182 opts
= drive_add(type
, index
, NULL
, optstr
);
1184 drive_enable_snapshot(NULL
, opts
, NULL
);
1187 dinfo
= drive_new(opts
, type
);
1191 dinfo
->is_default
= true;
1195 static QemuOptsList qemu_smp_opts
= {
1197 .implied_opt_name
= "cpus",
1198 .merge_lists
= true,
1199 .head
= QTAILQ_HEAD_INITIALIZER(qemu_smp_opts
.head
),
1203 .type
= QEMU_OPT_NUMBER
,
1206 .type
= QEMU_OPT_NUMBER
,
1209 .type
= QEMU_OPT_NUMBER
,
1212 .type
= QEMU_OPT_NUMBER
,
1215 .type
= QEMU_OPT_NUMBER
,
1217 { /*End of list */ }
1221 static void smp_parse(QemuOpts
*opts
)
1225 unsigned cpus
= qemu_opt_get_number(opts
, "cpus", 0);
1226 unsigned sockets
= qemu_opt_get_number(opts
, "sockets", 0);
1227 unsigned cores
= qemu_opt_get_number(opts
, "cores", 0);
1228 unsigned threads
= qemu_opt_get_number(opts
, "threads", 0);
1230 /* compute missing values, prefer sockets over cores over threads */
1231 if (cpus
== 0 || sockets
== 0) {
1232 sockets
= sockets
> 0 ? sockets
: 1;
1233 cores
= cores
> 0 ? cores
: 1;
1234 threads
= threads
> 0 ? threads
: 1;
1236 cpus
= cores
* threads
* sockets
;
1238 } else if (cores
== 0) {
1239 threads
= threads
> 0 ? threads
: 1;
1240 cores
= cpus
/ (sockets
* threads
);
1241 } else if (threads
== 0) {
1242 threads
= cpus
/ (cores
* sockets
);
1243 } else if (sockets
* cores
* threads
< cpus
) {
1244 error_report("cpu topology: "
1245 "sockets (%u) * cores (%u) * threads (%u) < "
1247 sockets
, cores
, threads
, cpus
);
1251 max_cpus
= qemu_opt_get_number(opts
, "maxcpus", cpus
);
1252 if (sockets
* cores
* threads
> max_cpus
) {
1253 error_report("cpu topology: "
1254 "sockets (%u) * cores (%u) * threads (%u) > "
1256 sockets
, cores
, threads
, max_cpus
);
1261 smp_cores
= cores
> 0 ? cores
: 1;
1262 smp_threads
= threads
> 0 ? threads
: 1;
1266 if (max_cpus
== 0) {
1267 max_cpus
= smp_cpus
;
1270 if (max_cpus
> MAX_CPUMASK_BITS
) {
1271 error_report("unsupported number of maxcpus");
1274 if (max_cpus
< smp_cpus
) {
1275 error_report("maxcpus must be equal to or greater than smp");
1279 if (smp_cpus
> 1 || smp_cores
> 1 || smp_threads
> 1) {
1280 Error
*blocker
= NULL
;
1281 error_setg(&blocker
, QERR_REPLAY_NOT_SUPPORTED
, "smp");
1282 replay_add_blocker(blocker
);
1286 static void realtime_init(void)
1289 if (os_mlock() < 0) {
1290 error_report("locking memory failed");
1297 static void configure_msg(QemuOpts
*opts
)
1299 enable_timestamp_msg
= qemu_opt_get_bool(opts
, "timestamp", true);
1302 /***********************************************************/
1305 typedef struct SemihostingConfig
{
1307 SemihostingTarget target
;
1310 const char *cmdline
; /* concatenated argv */
1311 } SemihostingConfig
;
1313 static SemihostingConfig semihosting
;
1315 bool semihosting_enabled(void)
1317 return semihosting
.enabled
;
1320 SemihostingTarget
semihosting_get_target(void)
1322 return semihosting
.target
;
1325 const char *semihosting_get_arg(int i
)
1327 if (i
>= semihosting
.argc
) {
1330 return semihosting
.argv
[i
];
1333 int semihosting_get_argc(void)
1335 return semihosting
.argc
;
1338 const char *semihosting_get_cmdline(void)
1340 if (semihosting
.cmdline
== NULL
&& semihosting
.argc
> 0) {
1341 semihosting
.cmdline
= g_strjoinv(" ", (gchar
**)semihosting
.argv
);
1343 return semihosting
.cmdline
;
1346 static int add_semihosting_arg(void *opaque
,
1347 const char *name
, const char *val
,
1350 SemihostingConfig
*s
= opaque
;
1351 if (strcmp(name
, "arg") == 0) {
1353 /* one extra element as g_strjoinv() expects NULL-terminated array */
1354 s
->argv
= g_realloc(s
->argv
, (s
->argc
+ 1) * sizeof(void *));
1355 s
->argv
[s
->argc
- 1] = val
;
1356 s
->argv
[s
->argc
] = NULL
;
1361 /* Use strings passed via -kernel/-append to initialize semihosting.argv[] */
1362 static inline void semihosting_arg_fallback(const char *file
, const char *cmd
)
1367 add_semihosting_arg(&semihosting
, "arg", file
, NULL
);
1369 /* split -append and initialize argv[1..n] */
1370 cmd_token
= strtok(g_strdup(cmd
), " ");
1372 add_semihosting_arg(&semihosting
, "arg", cmd_token
, NULL
);
1373 cmd_token
= strtok(NULL
, " ");
1377 /* Now we still need this for compatibility with XEN. */
1378 bool has_igd_gfx_passthru
;
1379 static void igd_gfx_passthru(void)
1381 has_igd_gfx_passthru
= current_machine
->igd_gfx_passthru
;
1384 /***********************************************************/
1387 static int usb_device_add(const char *devname
)
1389 USBDevice
*dev
= NULL
;
1390 #ifndef CONFIG_LINUX
1394 if (!usb_enabled()) {
1398 /* drivers with .usbdevice_name entry in USBDeviceInfo */
1399 dev
= usbdevice_create(devname
);
1403 /* the other ones */
1404 #ifndef CONFIG_LINUX
1405 /* only the linux version is qdev-ified, usb-bsd still needs this */
1406 if (strstart(devname
, "host:", &p
)) {
1407 dev
= usb_host_device_open(usb_bus_find(-1), p
);
1417 static int usb_device_del(const char *devname
)
1422 if (strstart(devname
, "host:", &p
)) {
1426 if (!usb_enabled()) {
1430 p
= strchr(devname
, '.');
1433 bus_num
= strtoul(devname
, NULL
, 0);
1434 addr
= strtoul(p
+ 1, NULL
, 0);
1436 return usb_device_delete_addr(bus_num
, addr
);
1439 static int usb_parse(const char *cmdline
)
1442 r
= usb_device_add(cmdline
);
1444 error_report("could not add USB device '%s'", cmdline
);
1449 void hmp_usb_add(Monitor
*mon
, const QDict
*qdict
)
1451 const char *devname
= qdict_get_str(qdict
, "devname");
1452 if (usb_device_add(devname
) < 0) {
1453 error_report("could not add USB device '%s'", devname
);
1457 void hmp_usb_del(Monitor
*mon
, const QDict
*qdict
)
1459 const char *devname
= qdict_get_str(qdict
, "devname");
1460 if (usb_device_del(devname
) < 0) {
1461 error_report("could not delete USB device '%s'", devname
);
1465 /***********************************************************/
1466 /* machine registration */
1468 MachineState
*current_machine
;
1470 static MachineClass
*find_machine(const char *name
)
1472 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
1473 MachineClass
*mc
= NULL
;
1475 for (el
= machines
; el
; el
= el
->next
) {
1476 MachineClass
*temp
= el
->data
;
1478 if (!strcmp(temp
->name
, name
)) {
1483 !strcmp(temp
->alias
, name
)) {
1489 g_slist_free(machines
);
1493 MachineClass
*find_default_machine(void)
1495 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
1496 MachineClass
*mc
= NULL
;
1498 for (el
= machines
; el
; el
= el
->next
) {
1499 MachineClass
*temp
= el
->data
;
1501 if (temp
->is_default
) {
1507 g_slist_free(machines
);
1511 MachineInfoList
*qmp_query_machines(Error
**errp
)
1513 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
1514 MachineInfoList
*mach_list
= NULL
;
1516 for (el
= machines
; el
; el
= el
->next
) {
1517 MachineClass
*mc
= el
->data
;
1518 MachineInfoList
*entry
;
1521 info
= g_malloc0(sizeof(*info
));
1522 if (mc
->is_default
) {
1523 info
->has_is_default
= true;
1524 info
->is_default
= true;
1528 info
->has_alias
= true;
1529 info
->alias
= g_strdup(mc
->alias
);
1532 info
->name
= g_strdup(mc
->name
);
1533 info
->cpu_max
= !mc
->max_cpus
? 1 : mc
->max_cpus
;
1535 entry
= g_malloc0(sizeof(*entry
));
1536 entry
->value
= info
;
1537 entry
->next
= mach_list
;
1541 g_slist_free(machines
);
1545 static int machine_help_func(QemuOpts
*opts
, MachineState
*machine
)
1547 ObjectProperty
*prop
;
1548 ObjectPropertyIterator iter
;
1550 if (!qemu_opt_has_help_opt(opts
)) {
1554 object_property_iter_init(&iter
, OBJECT(machine
));
1555 while ((prop
= object_property_iter_next(&iter
))) {
1560 error_printf("%s.%s=%s", MACHINE_GET_CLASS(machine
)->name
,
1561 prop
->name
, prop
->type
);
1562 if (prop
->description
) {
1563 error_printf(" (%s)\n", prop
->description
);
1572 /***********************************************************/
1573 /* main execution loop */
1575 struct vm_change_state_entry
{
1576 VMChangeStateHandler
*cb
;
1578 QLIST_ENTRY (vm_change_state_entry
) entries
;
1581 static QLIST_HEAD(vm_change_state_head
, vm_change_state_entry
) vm_change_state_head
;
1583 VMChangeStateEntry
*qemu_add_vm_change_state_handler(VMChangeStateHandler
*cb
,
1586 VMChangeStateEntry
*e
;
1588 e
= g_malloc0(sizeof (*e
));
1592 QLIST_INSERT_HEAD(&vm_change_state_head
, e
, entries
);
1596 void qemu_del_vm_change_state_handler(VMChangeStateEntry
*e
)
1598 QLIST_REMOVE (e
, entries
);
1602 void vm_state_notify(int running
, RunState state
)
1604 VMChangeStateEntry
*e
, *next
;
1606 trace_vm_state_notify(running
, state
);
1608 QLIST_FOREACH_SAFE(e
, &vm_change_state_head
, entries
, next
) {
1609 e
->cb(e
->opaque
, running
, state
);
1613 /* reset/shutdown handler */
1615 typedef struct QEMUResetEntry
{
1616 QTAILQ_ENTRY(QEMUResetEntry
) entry
;
1617 QEMUResetHandler
*func
;
1621 static QTAILQ_HEAD(reset_handlers
, QEMUResetEntry
) reset_handlers
=
1622 QTAILQ_HEAD_INITIALIZER(reset_handlers
);
1623 static int reset_requested
;
1624 static int shutdown_requested
, shutdown_signal
= -1;
1625 static pid_t shutdown_pid
;
1626 static int powerdown_requested
;
1627 static int debug_requested
;
1628 static int suspend_requested
;
1629 static WakeupReason wakeup_reason
;
1630 static NotifierList powerdown_notifiers
=
1631 NOTIFIER_LIST_INITIALIZER(powerdown_notifiers
);
1632 static NotifierList suspend_notifiers
=
1633 NOTIFIER_LIST_INITIALIZER(suspend_notifiers
);
1634 static NotifierList wakeup_notifiers
=
1635 NOTIFIER_LIST_INITIALIZER(wakeup_notifiers
);
1636 static uint32_t wakeup_reason_mask
= ~(1 << QEMU_WAKEUP_REASON_NONE
);
1638 int qemu_shutdown_requested_get(void)
1640 return shutdown_requested
;
1643 int qemu_reset_requested_get(void)
1645 return reset_requested
;
1648 static int qemu_shutdown_requested(void)
1650 return atomic_xchg(&shutdown_requested
, 0);
1653 static void qemu_kill_report(void)
1655 if (!qtest_driver() && shutdown_signal
!= -1) {
1656 if (shutdown_pid
== 0) {
1657 /* This happens for eg ^C at the terminal, so it's worth
1658 * avoiding printing an odd message in that case.
1660 error_report("terminating on signal %d", shutdown_signal
);
1662 error_report("terminating on signal %d from pid " FMT_pid
,
1663 shutdown_signal
, shutdown_pid
);
1665 shutdown_signal
= -1;
1669 static int qemu_reset_requested(void)
1671 int r
= reset_requested
;
1672 if (r
&& replay_checkpoint(CHECKPOINT_RESET_REQUESTED
)) {
1673 reset_requested
= 0;
1679 static int qemu_suspend_requested(void)
1681 int r
= suspend_requested
;
1682 if (r
&& replay_checkpoint(CHECKPOINT_SUSPEND_REQUESTED
)) {
1683 suspend_requested
= 0;
1689 static WakeupReason
qemu_wakeup_requested(void)
1691 return wakeup_reason
;
1694 static int qemu_powerdown_requested(void)
1696 int r
= powerdown_requested
;
1697 powerdown_requested
= 0;
1701 static int qemu_debug_requested(void)
1703 int r
= debug_requested
;
1704 debug_requested
= 0;
1708 void qemu_register_reset(QEMUResetHandler
*func
, void *opaque
)
1710 QEMUResetEntry
*re
= g_malloc0(sizeof(QEMUResetEntry
));
1713 re
->opaque
= opaque
;
1714 QTAILQ_INSERT_TAIL(&reset_handlers
, re
, entry
);
1717 void qemu_unregister_reset(QEMUResetHandler
*func
, void *opaque
)
1721 QTAILQ_FOREACH(re
, &reset_handlers
, entry
) {
1722 if (re
->func
== func
&& re
->opaque
== opaque
) {
1723 QTAILQ_REMOVE(&reset_handlers
, re
, entry
);
1730 void qemu_devices_reset(void)
1732 QEMUResetEntry
*re
, *nre
;
1734 /* reset all devices */
1735 QTAILQ_FOREACH_SAFE(re
, &reset_handlers
, entry
, nre
) {
1736 re
->func(re
->opaque
);
1740 void qemu_system_reset(bool report
)
1744 mc
= current_machine
? MACHINE_GET_CLASS(current_machine
) : NULL
;
1746 if (mc
&& mc
->reset
) {
1749 qemu_devices_reset();
1752 qapi_event_send_reset(&error_abort
);
1754 cpu_synchronize_all_post_reset();
1757 void qemu_system_guest_panicked(void)
1760 current_cpu
->crash_occurred
= true;
1762 qapi_event_send_guest_panicked(GUEST_PANIC_ACTION_PAUSE
, &error_abort
);
1763 vm_stop(RUN_STATE_GUEST_PANICKED
);
1766 void qemu_system_reset_request(void)
1769 shutdown_requested
= 1;
1771 reset_requested
= 1;
1774 qemu_notify_event();
1777 static void qemu_system_suspend(void)
1780 notifier_list_notify(&suspend_notifiers
, NULL
);
1781 runstate_set(RUN_STATE_SUSPENDED
);
1782 qapi_event_send_suspend(&error_abort
);
1785 void qemu_system_suspend_request(void)
1787 if (runstate_check(RUN_STATE_SUSPENDED
)) {
1790 suspend_requested
= 1;
1792 qemu_notify_event();
1795 void qemu_register_suspend_notifier(Notifier
*notifier
)
1797 notifier_list_add(&suspend_notifiers
, notifier
);
1800 void qemu_system_wakeup_request(WakeupReason reason
)
1802 trace_system_wakeup_request(reason
);
1804 if (!runstate_check(RUN_STATE_SUSPENDED
)) {
1807 if (!(wakeup_reason_mask
& (1 << reason
))) {
1810 runstate_set(RUN_STATE_RUNNING
);
1811 wakeup_reason
= reason
;
1812 qemu_notify_event();
1815 void qemu_system_wakeup_enable(WakeupReason reason
, bool enabled
)
1818 wakeup_reason_mask
|= (1 << reason
);
1820 wakeup_reason_mask
&= ~(1 << reason
);
1824 void qemu_register_wakeup_notifier(Notifier
*notifier
)
1826 notifier_list_add(&wakeup_notifiers
, notifier
);
1829 void qemu_system_killed(int signal
, pid_t pid
)
1831 shutdown_signal
= signal
;
1835 /* Cannot call qemu_system_shutdown_request directly because
1836 * we are in a signal handler.
1838 shutdown_requested
= 1;
1839 qemu_notify_event();
1842 void qemu_system_shutdown_request(void)
1844 trace_qemu_system_shutdown_request();
1845 replay_shutdown_request();
1846 shutdown_requested
= 1;
1847 qemu_notify_event();
1850 static void qemu_system_powerdown(void)
1852 qapi_event_send_powerdown(&error_abort
);
1853 notifier_list_notify(&powerdown_notifiers
, NULL
);
1856 void qemu_system_powerdown_request(void)
1858 trace_qemu_system_powerdown_request();
1859 powerdown_requested
= 1;
1860 qemu_notify_event();
1863 void qemu_register_powerdown_notifier(Notifier
*notifier
)
1865 notifier_list_add(&powerdown_notifiers
, notifier
);
1868 void qemu_system_debug_request(void)
1870 debug_requested
= 1;
1871 qemu_notify_event();
1874 static bool main_loop_should_exit(void)
1877 if (qemu_debug_requested()) {
1878 vm_stop(RUN_STATE_DEBUG
);
1880 if (qemu_suspend_requested()) {
1881 qemu_system_suspend();
1883 if (qemu_shutdown_requested()) {
1885 qapi_event_send_shutdown(&error_abort
);
1887 vm_stop(RUN_STATE_SHUTDOWN
);
1892 if (qemu_reset_requested()) {
1894 cpu_synchronize_all_states();
1895 qemu_system_reset(VMRESET_REPORT
);
1897 if (!runstate_check(RUN_STATE_RUNNING
) &&
1898 !runstate_check(RUN_STATE_INMIGRATE
)) {
1899 runstate_set(RUN_STATE_PRELAUNCH
);
1902 if (qemu_wakeup_requested()) {
1904 cpu_synchronize_all_states();
1905 qemu_system_reset(VMRESET_SILENT
);
1906 notifier_list_notify(&wakeup_notifiers
, &wakeup_reason
);
1907 wakeup_reason
= QEMU_WAKEUP_REASON_NONE
;
1909 qapi_event_send_wakeup(&error_abort
);
1911 if (qemu_powerdown_requested()) {
1912 qemu_system_powerdown();
1914 if (qemu_vmstop_requested(&r
)) {
1920 static void main_loop(void)
1924 #ifdef CONFIG_PROFILER
1928 nonblocking
= !kvm_enabled() && !xen_enabled() && last_io
> 0;
1929 #ifdef CONFIG_PROFILER
1930 ti
= profile_getclock();
1932 last_io
= main_loop_wait(nonblocking
);
1933 #ifdef CONFIG_PROFILER
1934 dev_time
+= profile_getclock() - ti
;
1936 } while (!main_loop_should_exit());
1939 static void version(void)
1941 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION
", Copyright (c) 2003-2008 Fabrice Bellard\n");
1944 static void help(int exitcode
)
1947 printf("usage: %s [options] [disk_image]\n\n"
1948 "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
1949 error_get_progname());
1951 #define QEMU_OPTIONS_GENERATE_HELP
1952 #include "qemu-options-wrapper.h"
1954 printf("\nDuring emulation, the following keys are useful:\n"
1955 "ctrl-alt-f toggle full screen\n"
1956 "ctrl-alt-n switch to virtual console 'n'\n"
1957 "ctrl-alt toggle mouse and keyboard grab\n"
1959 "When using -nographic, press 'ctrl-a h' to get some help.\n");
1964 #define HAS_ARG 0x0001
1966 typedef struct QEMUOption
{
1973 static const QEMUOption qemu_options
[] = {
1974 { "h", 0, QEMU_OPTION_h
, QEMU_ARCH_ALL
},
1975 #define QEMU_OPTIONS_GENERATE_OPTIONS
1976 #include "qemu-options-wrapper.h"
1980 static bool vga_available(void)
1982 return object_class_by_name("VGA") || object_class_by_name("isa-vga");
1985 static bool cirrus_vga_available(void)
1987 return object_class_by_name("cirrus-vga")
1988 || object_class_by_name("isa-cirrus-vga");
1991 static bool vmware_vga_available(void)
1993 return object_class_by_name("vmware-svga");
1996 static bool qxl_vga_available(void)
1998 return object_class_by_name("qxl-vga");
2001 static bool tcx_vga_available(void)
2003 return object_class_by_name("SUNW,tcx");
2006 static bool cg3_vga_available(void)
2008 return object_class_by_name("cgthree");
2011 static bool virtio_vga_available(void)
2013 return object_class_by_name("virtio-vga");
2016 static void select_vgahw (const char *p
)
2020 assert(vga_interface_type
== VGA_NONE
);
2021 if (strstart(p
, "std", &opts
)) {
2022 if (vga_available()) {
2023 vga_interface_type
= VGA_STD
;
2025 error_report("standard VGA not available");
2028 } else if (strstart(p
, "cirrus", &opts
)) {
2029 if (cirrus_vga_available()) {
2030 vga_interface_type
= VGA_CIRRUS
;
2032 error_report("Cirrus VGA not available");
2035 } else if (strstart(p
, "vmware", &opts
)) {
2036 if (vmware_vga_available()) {
2037 vga_interface_type
= VGA_VMWARE
;
2039 error_report("VMWare SVGA not available");
2042 } else if (strstart(p
, "virtio", &opts
)) {
2043 if (virtio_vga_available()) {
2044 vga_interface_type
= VGA_VIRTIO
;
2046 error_report("Virtio VGA not available");
2049 } else if (strstart(p
, "xenfb", &opts
)) {
2050 vga_interface_type
= VGA_XENFB
;
2051 } else if (strstart(p
, "qxl", &opts
)) {
2052 if (qxl_vga_available()) {
2053 vga_interface_type
= VGA_QXL
;
2055 error_report("QXL VGA not available");
2058 } else if (strstart(p
, "tcx", &opts
)) {
2059 if (tcx_vga_available()) {
2060 vga_interface_type
= VGA_TCX
;
2062 error_report("TCX framebuffer not available");
2065 } else if (strstart(p
, "cg3", &opts
)) {
2066 if (cg3_vga_available()) {
2067 vga_interface_type
= VGA_CG3
;
2069 error_report("CG3 framebuffer not available");
2072 } else if (!strstart(p
, "none", &opts
)) {
2074 error_report("unknown vga type: %s", p
);
2078 const char *nextopt
;
2080 if (strstart(opts
, ",retrace=", &nextopt
)) {
2082 if (strstart(opts
, "dumb", &nextopt
))
2083 vga_retrace_method
= VGA_RETRACE_DUMB
;
2084 else if (strstart(opts
, "precise", &nextopt
))
2085 vga_retrace_method
= VGA_RETRACE_PRECISE
;
2086 else goto invalid_vga
;
2087 } else goto invalid_vga
;
2092 static DisplayType
select_display(const char *p
)
2095 DisplayType display
= DT_DEFAULT
;
2097 if (strstart(p
, "sdl", &opts
)) {
2101 const char *nextopt
;
2103 if (strstart(opts
, ",frame=", &nextopt
)) {
2105 if (strstart(opts
, "on", &nextopt
)) {
2107 } else if (strstart(opts
, "off", &nextopt
)) {
2110 goto invalid_sdl_args
;
2112 } else if (strstart(opts
, ",alt_grab=", &nextopt
)) {
2114 if (strstart(opts
, "on", &nextopt
)) {
2116 } else if (strstart(opts
, "off", &nextopt
)) {
2119 goto invalid_sdl_args
;
2121 } else if (strstart(opts
, ",ctrl_grab=", &nextopt
)) {
2123 if (strstart(opts
, "on", &nextopt
)) {
2125 } else if (strstart(opts
, "off", &nextopt
)) {
2128 goto invalid_sdl_args
;
2130 } else if (strstart(opts
, ",window_close=", &nextopt
)) {
2132 if (strstart(opts
, "on", &nextopt
)) {
2134 } else if (strstart(opts
, "off", &nextopt
)) {
2137 goto invalid_sdl_args
;
2139 } else if (strstart(opts
, ",gl=", &nextopt
)) {
2141 if (strstart(opts
, "on", &nextopt
)) {
2143 } else if (strstart(opts
, "off", &nextopt
)) {
2146 goto invalid_sdl_args
;
2150 error_report("invalid SDL option string");
2156 error_report("SDL support is disabled");
2159 } else if (strstart(p
, "vnc", &opts
)) {
2163 if (vnc_parse(opts
+ 1, &err
) == NULL
) {
2164 error_report_err(err
);
2168 error_report("VNC requires a display argument vnc=<display>");
2172 error_report("VNC support is disabled");
2175 } else if (strstart(p
, "curses", &opts
)) {
2176 #ifdef CONFIG_CURSES
2177 display
= DT_CURSES
;
2179 error_report("curses support is disabled");
2182 } else if (strstart(p
, "gtk", &opts
)) {
2186 const char *nextopt
;
2188 if (strstart(opts
, ",grab_on_hover=", &nextopt
)) {
2190 if (strstart(opts
, "on", &nextopt
)) {
2191 grab_on_hover
= true;
2192 } else if (strstart(opts
, "off", &nextopt
)) {
2193 grab_on_hover
= false;
2195 goto invalid_gtk_args
;
2197 } else if (strstart(opts
, ",gl=", &nextopt
)) {
2199 if (strstart(opts
, "on", &nextopt
)) {
2201 } else if (strstart(opts
, "off", &nextopt
)) {
2204 goto invalid_gtk_args
;
2208 error_report("invalid GTK option string");
2214 error_report("GTK support is disabled");
2217 } else if (strstart(p
, "none", &opts
)) {
2220 error_report("unknown display type");
2227 static int balloon_parse(const char *arg
)
2231 if (strcmp(arg
, "none") == 0) {
2235 if (!strncmp(arg
, "virtio", 6)) {
2236 if (arg
[6] == ',') {
2237 /* have params -> parse them */
2238 opts
= qemu_opts_parse_noisily(qemu_find_opts("device"), arg
+ 7,
2243 /* create empty opts */
2244 opts
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
2247 qemu_opt_set(opts
, "driver", "virtio-balloon", &error_abort
);
2254 char *qemu_find_file(int type
, const char *name
)
2260 /* Try the name as a straight path first */
2261 if (access(name
, R_OK
) == 0) {
2262 trace_load_file(name
, name
);
2263 return g_strdup(name
);
2267 case QEMU_FILE_TYPE_BIOS
:
2270 case QEMU_FILE_TYPE_KEYMAP
:
2271 subdir
= "keymaps/";
2277 for (i
= 0; i
< data_dir_idx
; i
++) {
2278 buf
= g_strdup_printf("%s/%s%s", data_dir
[i
], subdir
, name
);
2279 if (access(buf
, R_OK
) == 0) {
2280 trace_load_file(name
, buf
);
2288 static inline bool nonempty_str(const char *str
)
2293 static int parse_fw_cfg(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2297 const char *name
, *file
, *str
;
2299 if (opaque
== NULL
) {
2300 error_report("fw_cfg device not available");
2303 name
= qemu_opt_get(opts
, "name");
2304 file
= qemu_opt_get(opts
, "file");
2305 str
= qemu_opt_get(opts
, "string");
2307 /* we need name and either a file or the content string */
2308 if (!(nonempty_str(name
) && (nonempty_str(file
) || nonempty_str(str
)))) {
2309 error_report("invalid argument(s)");
2312 if (nonempty_str(file
) && nonempty_str(str
)) {
2313 error_report("file and string are mutually exclusive");
2316 if (strlen(name
) > FW_CFG_MAX_FILE_PATH
- 1) {
2317 error_report("name too long (max. %d char)", FW_CFG_MAX_FILE_PATH
- 1);
2320 if (strncmp(name
, "opt/", 4) != 0) {
2321 error_report("warning: externally provided fw_cfg item names "
2322 "should be prefixed with \"opt/\"");
2324 if (nonempty_str(str
)) {
2325 size
= strlen(str
); /* NUL terminator NOT included in fw_cfg blob */
2326 buf
= g_memdup(str
, size
);
2328 if (!g_file_get_contents(file
, &buf
, &size
, NULL
)) {
2329 error_report("can't load %s", file
);
2333 fw_cfg_add_file((FWCfgState
*)opaque
, name
, buf
, size
);
2337 static int device_help_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2339 return qdev_device_help(opts
);
2342 static int device_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2347 dev
= qdev_device_add(opts
, &err
);
2349 error_report_err(err
);
2352 object_unref(OBJECT(dev
));
2356 static int chardev_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2358 Error
*local_err
= NULL
;
2360 qemu_chr_new_from_opts(opts
, NULL
, &local_err
);
2362 error_report_err(local_err
);
2368 #ifdef CONFIG_VIRTFS
2369 static int fsdev_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2372 ret
= qemu_fsdev_add(opts
);
2378 static int mon_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2380 CharDriverState
*chr
;
2381 const char *chardev
;
2385 mode
= qemu_opt_get(opts
, "mode");
2389 if (strcmp(mode
, "readline") == 0) {
2390 flags
= MONITOR_USE_READLINE
;
2391 } else if (strcmp(mode
, "control") == 0) {
2392 flags
= MONITOR_USE_CONTROL
;
2394 error_report("unknown monitor mode \"%s\"", mode
);
2398 if (qemu_opt_get_bool(opts
, "pretty", 0))
2399 flags
|= MONITOR_USE_PRETTY
;
2401 if (qemu_opt_get_bool(opts
, "default", 0))
2402 flags
|= MONITOR_IS_DEFAULT
;
2404 chardev
= qemu_opt_get(opts
, "chardev");
2405 chr
= qemu_chr_find(chardev
);
2407 error_report("chardev \"%s\" not found", chardev
);
2411 qemu_chr_fe_claim_no_fail(chr
);
2412 monitor_init(chr
, flags
);
2416 static void monitor_parse(const char *optarg
, const char *mode
, bool pretty
)
2418 static int monitor_device_index
= 0;
2419 Error
*local_err
= NULL
;
2425 if (strstart(optarg
, "chardev:", &p
)) {
2426 snprintf(label
, sizeof(label
), "%s", p
);
2428 snprintf(label
, sizeof(label
), "compat_monitor%d",
2429 monitor_device_index
);
2430 if (monitor_device_index
== 0) {
2433 opts
= qemu_chr_parse_compat(label
, optarg
);
2435 error_report("parse error: %s", optarg
);
2440 opts
= qemu_opts_create(qemu_find_opts("mon"), label
, 1, &local_err
);
2442 error_report_err(local_err
);
2445 qemu_opt_set(opts
, "mode", mode
, &error_abort
);
2446 qemu_opt_set(opts
, "chardev", label
, &error_abort
);
2447 qemu_opt_set_bool(opts
, "pretty", pretty
, &error_abort
);
2449 qemu_opt_set(opts
, "default", "on", &error_abort
);
2450 monitor_device_index
++;
2453 struct device_config
{
2455 DEV_USB
, /* -usbdevice */
2457 DEV_SERIAL
, /* -serial */
2458 DEV_PARALLEL
, /* -parallel */
2459 DEV_VIRTCON
, /* -virtioconsole */
2460 DEV_DEBUGCON
, /* -debugcon */
2461 DEV_GDB
, /* -gdb, -s */
2462 DEV_SCLP
, /* s390 sclp */
2464 const char *cmdline
;
2466 QTAILQ_ENTRY(device_config
) next
;
2469 static QTAILQ_HEAD(, device_config
) device_configs
=
2470 QTAILQ_HEAD_INITIALIZER(device_configs
);
2472 static void add_device_config(int type
, const char *cmdline
)
2474 struct device_config
*conf
;
2476 conf
= g_malloc0(sizeof(*conf
));
2478 conf
->cmdline
= cmdline
;
2479 loc_save(&conf
->loc
);
2480 QTAILQ_INSERT_TAIL(&device_configs
, conf
, next
);
2483 static int foreach_device_config(int type
, int (*func
)(const char *cmdline
))
2485 struct device_config
*conf
;
2488 QTAILQ_FOREACH(conf
, &device_configs
, next
) {
2489 if (conf
->type
!= type
)
2491 loc_push_restore(&conf
->loc
);
2492 rc
= func(conf
->cmdline
);
2493 loc_pop(&conf
->loc
);
2501 static int serial_parse(const char *devname
)
2503 static int index
= 0;
2506 if (strcmp(devname
, "none") == 0)
2508 if (index
== MAX_SERIAL_PORTS
) {
2509 error_report("too many serial ports");
2512 snprintf(label
, sizeof(label
), "serial%d", index
);
2513 serial_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2514 if (!serial_hds
[index
]) {
2515 error_report("could not connect serial device"
2516 " to character backend '%s'", devname
);
2523 static int parallel_parse(const char *devname
)
2525 static int index
= 0;
2528 if (strcmp(devname
, "none") == 0)
2530 if (index
== MAX_PARALLEL_PORTS
) {
2531 error_report("too many parallel ports");
2534 snprintf(label
, sizeof(label
), "parallel%d", index
);
2535 parallel_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2536 if (!parallel_hds
[index
]) {
2537 error_report("could not connect parallel device"
2538 " to character backend '%s'", devname
);
2545 static int virtcon_parse(const char *devname
)
2547 QemuOptsList
*device
= qemu_find_opts("device");
2548 static int index
= 0;
2550 QemuOpts
*bus_opts
, *dev_opts
;
2552 if (strcmp(devname
, "none") == 0)
2554 if (index
== MAX_VIRTIO_CONSOLES
) {
2555 error_report("too many virtio consoles");
2559 bus_opts
= qemu_opts_create(device
, NULL
, 0, &error_abort
);
2560 qemu_opt_set(bus_opts
, "driver", "virtio-serial", &error_abort
);
2562 dev_opts
= qemu_opts_create(device
, NULL
, 0, &error_abort
);
2563 qemu_opt_set(dev_opts
, "driver", "virtconsole", &error_abort
);
2565 snprintf(label
, sizeof(label
), "virtcon%d", index
);
2566 virtcon_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2567 if (!virtcon_hds
[index
]) {
2568 error_report("could not connect virtio console"
2569 " to character backend '%s'", devname
);
2572 qemu_opt_set(dev_opts
, "chardev", label
, &error_abort
);
2578 static int sclp_parse(const char *devname
)
2580 QemuOptsList
*device
= qemu_find_opts("device");
2581 static int index
= 0;
2585 if (strcmp(devname
, "none") == 0) {
2588 if (index
== MAX_SCLP_CONSOLES
) {
2589 error_report("too many sclp consoles");
2593 assert(arch_type
== QEMU_ARCH_S390X
);
2595 dev_opts
= qemu_opts_create(device
, NULL
, 0, NULL
);
2596 qemu_opt_set(dev_opts
, "driver", "sclpconsole", &error_abort
);
2598 snprintf(label
, sizeof(label
), "sclpcon%d", index
);
2599 sclp_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2600 if (!sclp_hds
[index
]) {
2601 error_report("could not connect sclp console"
2602 " to character backend '%s'", devname
);
2605 qemu_opt_set(dev_opts
, "chardev", label
, &error_abort
);
2611 static int debugcon_parse(const char *devname
)
2615 if (!qemu_chr_new("debugcon", devname
, NULL
)) {
2618 opts
= qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL
);
2620 error_report("already have a debugcon device");
2623 qemu_opt_set(opts
, "driver", "isa-debugcon", &error_abort
);
2624 qemu_opt_set(opts
, "chardev", "debugcon", &error_abort
);
2628 static gint
machine_class_cmp(gconstpointer a
, gconstpointer b
)
2630 const MachineClass
*mc1
= a
, *mc2
= b
;
2633 if (mc1
->family
== NULL
) {
2634 if (mc2
->family
== NULL
) {
2635 /* Compare standalone machine types against each other; they sort
2636 * in increasing order.
2638 return strcmp(object_class_get_name(OBJECT_CLASS(mc1
)),
2639 object_class_get_name(OBJECT_CLASS(mc2
)));
2642 /* Standalone machine types sort after families. */
2646 if (mc2
->family
== NULL
) {
2647 /* Families sort before standalone machine types. */
2651 /* Families sort between each other alphabetically increasingly. */
2652 res
= strcmp(mc1
->family
, mc2
->family
);
2657 /* Within the same family, machine types sort in decreasing order. */
2658 return strcmp(object_class_get_name(OBJECT_CLASS(mc2
)),
2659 object_class_get_name(OBJECT_CLASS(mc1
)));
2662 static MachineClass
*machine_parse(const char *name
)
2664 MachineClass
*mc
= NULL
;
2665 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
2668 mc
= find_machine(name
);
2671 g_slist_free(machines
);
2674 if (name
&& !is_help_option(name
)) {
2675 error_report("unsupported machine type");
2676 error_printf("Use -machine help to list supported machines\n");
2678 printf("Supported machines are:\n");
2679 machines
= g_slist_sort(machines
, machine_class_cmp
);
2680 for (el
= machines
; el
; el
= el
->next
) {
2681 MachineClass
*mc
= el
->data
;
2683 printf("%-20s %s (alias of %s)\n", mc
->alias
, mc
->desc
, mc
->name
);
2685 printf("%-20s %s%s\n", mc
->name
, mc
->desc
,
2686 mc
->is_default
? " (default)" : "");
2690 g_slist_free(machines
);
2691 exit(!name
|| !is_help_option(name
));
2694 void qemu_add_exit_notifier(Notifier
*notify
)
2696 notifier_list_add(&exit_notifiers
, notify
);
2699 void qemu_remove_exit_notifier(Notifier
*notify
)
2701 notifier_remove(notify
);
2704 static void qemu_run_exit_notifiers(void)
2706 notifier_list_notify(&exit_notifiers
, NULL
);
2709 static bool machine_init_done
;
2711 void qemu_add_machine_init_done_notifier(Notifier
*notify
)
2713 notifier_list_add(&machine_init_done_notifiers
, notify
);
2714 if (machine_init_done
) {
2715 notify
->notify(notify
, NULL
);
2719 static void qemu_run_machine_init_done_notifiers(void)
2721 notifier_list_notify(&machine_init_done_notifiers
, NULL
);
2722 machine_init_done
= true;
2725 static const QEMUOption
*lookup_opt(int argc
, char **argv
,
2726 const char **poptarg
, int *poptind
)
2728 const QEMUOption
*popt
;
2729 int optind
= *poptind
;
2730 char *r
= argv
[optind
];
2733 loc_set_cmdline(argv
, optind
, 1);
2735 /* Treat --foo the same as -foo. */
2738 popt
= qemu_options
;
2741 error_report("invalid option");
2744 if (!strcmp(popt
->name
, r
+ 1))
2748 if (popt
->flags
& HAS_ARG
) {
2749 if (optind
>= argc
) {
2750 error_report("requires an argument");
2753 optarg
= argv
[optind
++];
2754 loc_set_cmdline(argv
, optind
- 2, 2);
2765 static int machine_set_property(void *opaque
,
2766 const char *name
, const char *value
,
2769 Object
*obj
= OBJECT(opaque
);
2770 Error
*local_err
= NULL
;
2773 if (strcmp(name
, "type") == 0) {
2777 qom_name
= g_strdup(name
);
2785 object_property_parse(obj
, value
, qom_name
, &local_err
);
2789 error_report_err(local_err
);
2798 * Initial object creation happens before all other
2799 * QEMU data types are created. The majority of objects
2800 * can be created at this point. The rng-egd object
2801 * cannot be created here, as it depends on the chardev
2804 static bool object_create_initial(const char *type
)
2806 if (g_str_equal(type
, "rng-egd")) {
2811 * return false for concrete netfilters since
2812 * they depend on netdevs already existing
2814 if (g_str_equal(type
, "filter-buffer") ||
2815 g_str_equal(type
, "filter-dump")) {
2824 * The remainder of object creation happens after the
2825 * creation of chardev, fsdev, net clients and device data types.
2827 static bool object_create_delayed(const char *type
)
2829 return !object_create_initial(type
);
2833 static int object_create(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2836 Error
*err_end
= NULL
;
2841 bool (*type_predicate
)(const char *) = opaque
;
2844 ov
= opts_visitor_new(opts
);
2845 pdict
= qemu_opts_to_qdict(opts
, NULL
);
2846 v
= opts_get_visitor(ov
);
2848 visit_start_struct(v
, NULL
, NULL
, 0, &err
);
2853 qdict_del(pdict
, "qom-type");
2854 visit_type_str(v
, "qom-type", &type
, &err
);
2858 if (!type_predicate(type
)) {
2859 visit_end_struct(v
, NULL
);
2863 qdict_del(pdict
, "id");
2864 visit_type_str(v
, "id", &id
, &err
);
2869 object_add(type
, id
, pdict
, v
, &err
);
2872 visit_end_struct(v
, &err_end
);
2873 if (!err
&& err_end
) {
2874 qmp_object_del(id
, NULL
);
2876 error_propagate(&err
, err_end
);
2879 opts_visitor_cleanup(ov
);
2885 error_report_err(err
);
2891 static void set_memory_options(uint64_t *ram_slots
, ram_addr_t
*maxram_size
,
2895 const char *mem_str
;
2896 const char *maxmem_str
, *slots_str
;
2897 const ram_addr_t default_ram_size
= mc
->default_ram_size
;
2898 QemuOpts
*opts
= qemu_find_opts_singleton("memory");
2901 mem_str
= qemu_opt_get(opts
, "size");
2904 error_report("missing 'size' option value");
2908 sz
= qemu_opt_get_size(opts
, "size", ram_size
);
2910 /* Fix up legacy suffix-less format */
2911 if (g_ascii_isdigit(mem_str
[strlen(mem_str
) - 1])) {
2912 uint64_t overflow_check
= sz
;
2915 if ((sz
>> 20) != overflow_check
) {
2916 error_report("too large 'size' option value");
2922 /* backward compatibility behaviour for case "-m 0" */
2924 sz
= default_ram_size
;
2927 sz
= QEMU_ALIGN_UP(sz
, 8192);
2929 if (ram_size
!= sz
) {
2930 error_report("ram size too large");
2934 /* store value for the future use */
2935 qemu_opt_set_number(opts
, "size", ram_size
, &error_abort
);
2936 *maxram_size
= ram_size
;
2938 maxmem_str
= qemu_opt_get(opts
, "maxmem");
2939 slots_str
= qemu_opt_get(opts
, "slots");
2940 if (maxmem_str
&& slots_str
) {
2943 sz
= qemu_opt_get_size(opts
, "maxmem", 0);
2944 slots
= qemu_opt_get_number(opts
, "slots", 0);
2945 if (sz
< ram_size
) {
2946 error_report("invalid value of -m option maxmem: "
2947 "maximum memory size (0x%" PRIx64
") must be at least "
2948 "the initial memory size (0x" RAM_ADDR_FMT
")",
2951 } else if (sz
> ram_size
) {
2953 error_report("invalid value of -m option: maxmem was "
2954 "specified, but no hotplug slots were specified");
2958 error_report("invalid value of -m option maxmem: "
2959 "memory slots were specified but maximum memory size "
2960 "(0x%" PRIx64
") is equal to the initial memory size "
2961 "(0x" RAM_ADDR_FMT
")", sz
, ram_size
);
2967 } else if ((!maxmem_str
&& slots_str
) ||
2968 (maxmem_str
&& !slots_str
)) {
2969 error_report("invalid -m option value: missing "
2970 "'%s' option", slots_str
? "maxmem" : "slots");
2975 int main(int argc
, char **argv
, char **envp
)
2978 int snapshot
, linux_boot
;
2979 const char *initrd_filename
;
2980 const char *kernel_filename
, *kernel_cmdline
;
2981 const char *boot_order
= NULL
;
2982 const char *boot_once
= NULL
;
2984 int cyls
, heads
, secs
, translation
;
2985 QemuOpts
*hda_opts
= NULL
, *opts
, *machine_opts
, *icount_opts
= NULL
;
2986 QemuOptsList
*olist
;
2989 const char *loadvm
= NULL
;
2990 MachineClass
*machine_class
;
2991 const char *cpu_model
;
2992 const char *vga_model
= NULL
;
2993 const char *qtest_chrdev
= NULL
;
2994 const char *qtest_log
= NULL
;
2995 const char *pid_file
= NULL
;
2996 const char *incoming
= NULL
;
2998 int show_vnc_port
= 0;
3000 bool defconfig
= true;
3001 bool userconfig
= true;
3002 const char *log_mask
= NULL
;
3003 const char *log_file
= NULL
;
3004 char *trace_file
= NULL
;
3005 ram_addr_t maxram_size
;
3006 uint64_t ram_slots
= 0;
3007 FILE *vmstate_dump_file
= NULL
;
3008 Error
*main_loop_err
= NULL
;
3011 qemu_init_cpu_loop();
3012 qemu_mutex_lock_iothread();
3014 atexit(qemu_run_exit_notifiers
);
3015 error_set_progname(argv
[0]);
3016 qemu_init_exec_dir(argv
[0]);
3018 module_call_init(MODULE_INIT_QOM
);
3020 qemu_add_opts(&qemu_drive_opts
);
3021 qemu_add_drive_opts(&qemu_legacy_drive_opts
);
3022 qemu_add_drive_opts(&qemu_common_drive_opts
);
3023 qemu_add_drive_opts(&qemu_drive_opts
);
3024 qemu_add_opts(&qemu_chardev_opts
);
3025 qemu_add_opts(&qemu_device_opts
);
3026 qemu_add_opts(&qemu_netdev_opts
);
3027 qemu_add_opts(&qemu_net_opts
);
3028 qemu_add_opts(&qemu_rtc_opts
);
3029 qemu_add_opts(&qemu_global_opts
);
3030 qemu_add_opts(&qemu_mon_opts
);
3031 qemu_add_opts(&qemu_trace_opts
);
3032 qemu_add_opts(&qemu_option_rom_opts
);
3033 qemu_add_opts(&qemu_machine_opts
);
3034 qemu_add_opts(&qemu_mem_opts
);
3035 qemu_add_opts(&qemu_smp_opts
);
3036 qemu_add_opts(&qemu_boot_opts
);
3037 qemu_add_opts(&qemu_sandbox_opts
);
3038 qemu_add_opts(&qemu_add_fd_opts
);
3039 qemu_add_opts(&qemu_object_opts
);
3040 qemu_add_opts(&qemu_tpmdev_opts
);
3041 qemu_add_opts(&qemu_realtime_opts
);
3042 qemu_add_opts(&qemu_msg_opts
);
3043 qemu_add_opts(&qemu_name_opts
);
3044 qemu_add_opts(&qemu_numa_opts
);
3045 qemu_add_opts(&qemu_icount_opts
);
3046 qemu_add_opts(&qemu_semihosting_config_opts
);
3047 qemu_add_opts(&qemu_fw_cfg_opts
);
3051 if (qcrypto_init(&err
) < 0) {
3052 error_reportf_err(err
, "cannot initialize crypto: ");
3055 rtc_clock
= QEMU_CLOCK_HOST
;
3057 QLIST_INIT (&vm_change_state_head
);
3058 os_setup_early_signal_handling();
3060 module_call_init(MODULE_INIT_MACHINE
);
3061 machine_class
= find_default_machine();
3064 cyls
= heads
= secs
= 0;
3065 translation
= BIOS_ATA_TRANSLATION_AUTO
;
3069 bdrv_init_with_whitelist();
3073 /* first pass of option parsing */
3075 while (optind
< argc
) {
3076 if (argv
[optind
][0] != '-') {
3080 const QEMUOption
*popt
;
3082 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
3083 switch (popt
->index
) {
3084 case QEMU_OPTION_nodefconfig
:
3087 case QEMU_OPTION_nouserconfig
:
3096 ret
= qemu_read_default_config_files(userconfig
);
3102 /* second pass of option parsing */
3107 if (argv
[optind
][0] != '-') {
3108 hda_opts
= drive_add(IF_DEFAULT
, 0, argv
[optind
++], HD_OPTS
);
3110 const QEMUOption
*popt
;
3112 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
3113 if (!(popt
->arch_mask
& arch_type
)) {
3114 printf("Option %s not supported for this target\n", popt
->name
);
3117 switch(popt
->index
) {
3118 case QEMU_OPTION_no_kvm_irqchip
: {
3119 olist
= qemu_find_opts("machine");
3120 qemu_opts_parse_noisily(olist
, "kernel_irqchip=off", false);
3123 case QEMU_OPTION_cpu
:
3124 /* hw initialization will check this */
3127 case QEMU_OPTION_hda
:
3131 snprintf(buf
, sizeof(buf
), "%s", HD_OPTS
);
3133 snprintf(buf
, sizeof(buf
),
3134 "%s,cyls=%d,heads=%d,secs=%d%s",
3135 HD_OPTS
, cyls
, heads
, secs
,
3136 translation
== BIOS_ATA_TRANSLATION_LBA
?
3138 translation
== BIOS_ATA_TRANSLATION_NONE
?
3139 ",trans=none" : "");
3140 drive_add(IF_DEFAULT
, 0, optarg
, buf
);
3143 case QEMU_OPTION_hdb
:
3144 case QEMU_OPTION_hdc
:
3145 case QEMU_OPTION_hdd
:
3146 drive_add(IF_DEFAULT
, popt
->index
- QEMU_OPTION_hda
, optarg
,
3149 case QEMU_OPTION_drive
:
3150 if (drive_def(optarg
) == NULL
) {
3154 case QEMU_OPTION_set
:
3155 if (qemu_set_option(optarg
) != 0)
3158 case QEMU_OPTION_global
:
3159 if (qemu_global_option(optarg
) != 0)
3162 case QEMU_OPTION_mtdblock
:
3163 drive_add(IF_MTD
, -1, optarg
, MTD_OPTS
);
3165 case QEMU_OPTION_sd
:
3166 drive_add(IF_SD
, -1, optarg
, SD_OPTS
);
3168 case QEMU_OPTION_pflash
:
3169 drive_add(IF_PFLASH
, -1, optarg
, PFLASH_OPTS
);
3171 case QEMU_OPTION_snapshot
:
3174 case QEMU_OPTION_hdachs
:
3178 cyls
= strtol(p
, (char **)&p
, 0);
3179 if (cyls
< 1 || cyls
> 16383)
3184 heads
= strtol(p
, (char **)&p
, 0);
3185 if (heads
< 1 || heads
> 16)
3190 secs
= strtol(p
, (char **)&p
, 0);
3191 if (secs
< 1 || secs
> 63)
3195 if (!strcmp(p
, "large")) {
3196 translation
= BIOS_ATA_TRANSLATION_LARGE
;
3197 } else if (!strcmp(p
, "rechs")) {
3198 translation
= BIOS_ATA_TRANSLATION_RECHS
;
3199 } else if (!strcmp(p
, "none")) {
3200 translation
= BIOS_ATA_TRANSLATION_NONE
;
3201 } else if (!strcmp(p
, "lba")) {
3202 translation
= BIOS_ATA_TRANSLATION_LBA
;
3203 } else if (!strcmp(p
, "auto")) {
3204 translation
= BIOS_ATA_TRANSLATION_AUTO
;
3208 } else if (*p
!= '\0') {
3210 error_report("invalid physical CHS format");
3213 if (hda_opts
!= NULL
) {
3214 qemu_opt_set_number(hda_opts
, "cyls", cyls
,
3216 qemu_opt_set_number(hda_opts
, "heads", heads
,
3218 qemu_opt_set_number(hda_opts
, "secs", secs
,
3220 if (translation
== BIOS_ATA_TRANSLATION_LARGE
) {
3221 qemu_opt_set(hda_opts
, "trans", "large",
3223 } else if (translation
== BIOS_ATA_TRANSLATION_RECHS
) {
3224 qemu_opt_set(hda_opts
, "trans", "rechs",
3226 } else if (translation
== BIOS_ATA_TRANSLATION_LBA
) {
3227 qemu_opt_set(hda_opts
, "trans", "lba",
3229 } else if (translation
== BIOS_ATA_TRANSLATION_NONE
) {
3230 qemu_opt_set(hda_opts
, "trans", "none",
3236 case QEMU_OPTION_numa
:
3237 opts
= qemu_opts_parse_noisily(qemu_find_opts("numa"),
3243 case QEMU_OPTION_display
:
3244 display_type
= select_display(optarg
);
3246 case QEMU_OPTION_nographic
:
3247 display_type
= DT_NOGRAPHIC
;
3249 case QEMU_OPTION_curses
:
3250 #ifdef CONFIG_CURSES
3251 display_type
= DT_CURSES
;
3253 error_report("curses support is disabled");
3257 case QEMU_OPTION_portrait
:
3258 graphic_rotate
= 90;
3260 case QEMU_OPTION_rotate
:
3261 graphic_rotate
= strtol(optarg
, (char **) &optarg
, 10);
3262 if (graphic_rotate
!= 0 && graphic_rotate
!= 90 &&
3263 graphic_rotate
!= 180 && graphic_rotate
!= 270) {
3264 error_report("only 90, 180, 270 deg rotation is available");
3268 case QEMU_OPTION_kernel
:
3269 qemu_opts_set(qemu_find_opts("machine"), 0, "kernel", optarg
,
3272 case QEMU_OPTION_initrd
:
3273 qemu_opts_set(qemu_find_opts("machine"), 0, "initrd", optarg
,
3276 case QEMU_OPTION_append
:
3277 qemu_opts_set(qemu_find_opts("machine"), 0, "append", optarg
,
3280 case QEMU_OPTION_dtb
:
3281 qemu_opts_set(qemu_find_opts("machine"), 0, "dtb", optarg
,
3284 case QEMU_OPTION_cdrom
:
3285 drive_add(IF_DEFAULT
, 2, optarg
, CDROM_OPTS
);
3287 case QEMU_OPTION_boot
:
3288 opts
= qemu_opts_parse_noisily(qemu_find_opts("boot-opts"),
3294 case QEMU_OPTION_fda
:
3295 case QEMU_OPTION_fdb
:
3296 drive_add(IF_FLOPPY
, popt
->index
- QEMU_OPTION_fda
,
3299 case QEMU_OPTION_no_fd_bootchk
:
3302 case QEMU_OPTION_netdev
:
3303 if (net_client_parse(qemu_find_opts("netdev"), optarg
) == -1) {
3307 case QEMU_OPTION_net
:
3308 if (net_client_parse(qemu_find_opts("net"), optarg
) == -1) {
3312 #ifdef CONFIG_LIBISCSI
3313 case QEMU_OPTION_iscsi
:
3314 opts
= qemu_opts_parse_noisily(qemu_find_opts("iscsi"),
3322 case QEMU_OPTION_tftp
:
3323 error_report("The -tftp option is deprecated. "
3324 "Please use '-netdev user,tftp=...' instead.");
3325 legacy_tftp_prefix
= optarg
;
3327 case QEMU_OPTION_bootp
:
3328 error_report("The -bootp option is deprecated. "
3329 "Please use '-netdev user,bootfile=...' instead.");
3330 legacy_bootp_filename
= optarg
;
3332 case QEMU_OPTION_redir
:
3333 error_report("The -redir option is deprecated. "
3334 "Please use '-netdev user,hostfwd=...' instead.");
3335 if (net_slirp_redir(optarg
) < 0)
3339 case QEMU_OPTION_bt
:
3340 add_device_config(DEV_BT
, optarg
);
3342 case QEMU_OPTION_audio_help
:
3346 case QEMU_OPTION_soundhw
:
3347 select_soundhw (optarg
);
3352 case QEMU_OPTION_version
:
3357 opts
= qemu_opts_parse_noisily(qemu_find_opts("memory"),
3364 case QEMU_OPTION_tpmdev
:
3365 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg
) < 0) {
3370 case QEMU_OPTION_mempath
:
3373 case QEMU_OPTION_mem_prealloc
:
3383 add_device_config(DEV_GDB
, "tcp::" DEFAULT_GDBSTUB_PORT
);
3385 case QEMU_OPTION_gdb
:
3386 add_device_config(DEV_GDB
, optarg
);
3389 if (data_dir_idx
< ARRAY_SIZE(data_dir
)) {
3390 data_dir
[data_dir_idx
++] = optarg
;
3393 case QEMU_OPTION_bios
:
3394 qemu_opts_set(qemu_find_opts("machine"), 0, "firmware", optarg
,
3397 case QEMU_OPTION_singlestep
:
3404 keyboard_layout
= optarg
;
3406 case QEMU_OPTION_localtime
:
3409 case QEMU_OPTION_vga
:
3418 w
= strtol(p
, (char **)&p
, 10);
3421 error_report("invalid resolution or depth");
3427 h
= strtol(p
, (char **)&p
, 10);
3432 depth
= strtol(p
, (char **)&p
, 10);
3433 if (depth
!= 8 && depth
!= 15 && depth
!= 16 &&
3434 depth
!= 24 && depth
!= 32)
3436 } else if (*p
== '\0') {
3437 depth
= graphic_depth
;
3444 graphic_depth
= depth
;
3447 case QEMU_OPTION_echr
:
3450 term_escape_char
= strtol(optarg
, &r
, 0);
3452 printf("Bad argument to echr\n");
3455 case QEMU_OPTION_monitor
:
3456 default_monitor
= 0;
3457 if (strncmp(optarg
, "none", 4)) {
3458 monitor_parse(optarg
, "readline", false);
3461 case QEMU_OPTION_qmp
:
3462 monitor_parse(optarg
, "control", false);
3463 default_monitor
= 0;
3465 case QEMU_OPTION_qmp_pretty
:
3466 monitor_parse(optarg
, "control", true);
3467 default_monitor
= 0;
3469 case QEMU_OPTION_mon
:
3470 opts
= qemu_opts_parse_noisily(qemu_find_opts("mon"), optarg
,
3475 default_monitor
= 0;
3477 case QEMU_OPTION_chardev
:
3478 opts
= qemu_opts_parse_noisily(qemu_find_opts("chardev"),
3484 case QEMU_OPTION_fsdev
:
3485 olist
= qemu_find_opts("fsdev");
3487 error_report("fsdev support is disabled");
3490 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3495 case QEMU_OPTION_virtfs
: {
3498 const char *writeout
, *sock_fd
, *socket
;
3500 olist
= qemu_find_opts("virtfs");
3502 error_report("virtfs support is disabled");
3505 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3510 if (qemu_opt_get(opts
, "fsdriver") == NULL
||
3511 qemu_opt_get(opts
, "mount_tag") == NULL
) {
3512 error_report("Usage: -virtfs fsdriver,mount_tag=tag");
3515 fsdev
= qemu_opts_create(qemu_find_opts("fsdev"),
3516 qemu_opt_get(opts
, "mount_tag"),
3519 error_report("duplicate fsdev id: %s",
3520 qemu_opt_get(opts
, "mount_tag"));
3524 writeout
= qemu_opt_get(opts
, "writeout");
3526 #ifdef CONFIG_SYNC_FILE_RANGE
3527 qemu_opt_set(fsdev
, "writeout", writeout
, &error_abort
);
3529 error_report("writeout=immediate not supported "
3530 "on this platform");
3534 qemu_opt_set(fsdev
, "fsdriver",
3535 qemu_opt_get(opts
, "fsdriver"), &error_abort
);
3536 qemu_opt_set(fsdev
, "path", qemu_opt_get(opts
, "path"),
3538 qemu_opt_set(fsdev
, "security_model",
3539 qemu_opt_get(opts
, "security_model"),
3541 socket
= qemu_opt_get(opts
, "socket");
3543 qemu_opt_set(fsdev
, "socket", socket
, &error_abort
);
3545 sock_fd
= qemu_opt_get(opts
, "sock_fd");
3547 qemu_opt_set(fsdev
, "sock_fd", sock_fd
, &error_abort
);
3550 qemu_opt_set_bool(fsdev
, "readonly",
3551 qemu_opt_get_bool(opts
, "readonly", 0),
3553 device
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
3555 qemu_opt_set(device
, "driver", "virtio-9p-pci", &error_abort
);
3556 qemu_opt_set(device
, "fsdev",
3557 qemu_opt_get(opts
, "mount_tag"), &error_abort
);
3558 qemu_opt_set(device
, "mount_tag",
3559 qemu_opt_get(opts
, "mount_tag"), &error_abort
);
3562 case QEMU_OPTION_virtfs_synth
: {
3566 fsdev
= qemu_opts_create(qemu_find_opts("fsdev"), "v_synth",
3569 error_report("duplicate option: %s", "virtfs_synth");
3572 qemu_opt_set(fsdev
, "fsdriver", "synth", &error_abort
);
3574 device
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
3576 qemu_opt_set(device
, "driver", "virtio-9p-pci", &error_abort
);
3577 qemu_opt_set(device
, "fsdev", "v_synth", &error_abort
);
3578 qemu_opt_set(device
, "mount_tag", "v_synth", &error_abort
);
3581 case QEMU_OPTION_serial
:
3582 add_device_config(DEV_SERIAL
, optarg
);
3584 if (strncmp(optarg
, "mon:", 4) == 0) {
3585 default_monitor
= 0;
3588 case QEMU_OPTION_watchdog
:
3590 error_report("only one watchdog option may be given");
3595 case QEMU_OPTION_watchdog_action
:
3596 if (select_watchdog_action(optarg
) == -1) {
3597 error_report("unknown -watchdog-action parameter");
3601 case QEMU_OPTION_virtiocon
:
3602 add_device_config(DEV_VIRTCON
, optarg
);
3603 default_virtcon
= 0;
3604 if (strncmp(optarg
, "mon:", 4) == 0) {
3605 default_monitor
= 0;
3608 case QEMU_OPTION_parallel
:
3609 add_device_config(DEV_PARALLEL
, optarg
);
3610 default_parallel
= 0;
3611 if (strncmp(optarg
, "mon:", 4) == 0) {
3612 default_monitor
= 0;
3615 case QEMU_OPTION_debugcon
:
3616 add_device_config(DEV_DEBUGCON
, optarg
);
3618 case QEMU_OPTION_loadvm
:
3621 case QEMU_OPTION_full_screen
:
3624 case QEMU_OPTION_no_frame
:
3627 case QEMU_OPTION_alt_grab
:
3630 case QEMU_OPTION_ctrl_grab
:
3633 case QEMU_OPTION_no_quit
:
3636 case QEMU_OPTION_sdl
:
3638 display_type
= DT_SDL
;
3641 error_report("SDL support is disabled");
3644 case QEMU_OPTION_pidfile
:
3647 case QEMU_OPTION_win2k_hack
:
3648 win2k_install_hack
= 1;
3650 case QEMU_OPTION_rtc_td_hack
: {
3651 static GlobalProperty slew_lost_ticks
[] = {
3653 .driver
= "mc146818rtc",
3654 .property
= "lost_tick_policy",
3657 { /* end of list */ }
3660 qdev_prop_register_global_list(slew_lost_ticks
);
3663 case QEMU_OPTION_acpitable
:
3664 opts
= qemu_opts_parse_noisily(qemu_find_opts("acpi"),
3669 do_acpitable_option(opts
);
3671 case QEMU_OPTION_smbios
:
3672 opts
= qemu_opts_parse_noisily(qemu_find_opts("smbios"),
3677 do_smbios_option(opts
);
3679 case QEMU_OPTION_fwcfg
:
3680 opts
= qemu_opts_parse_noisily(qemu_find_opts("fw_cfg"),
3686 case QEMU_OPTION_enable_kvm
:
3687 olist
= qemu_find_opts("machine");
3688 qemu_opts_parse_noisily(olist
, "accel=kvm", false);
3691 case QEMU_OPTION_machine
:
3692 olist
= qemu_find_opts("machine");
3693 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3698 case QEMU_OPTION_no_kvm
:
3699 olist
= qemu_find_opts("machine");
3700 qemu_opts_parse_noisily(olist
, "accel=tcg", false);
3702 case QEMU_OPTION_no_kvm_pit
: {
3703 error_report("warning: ignoring deprecated option");
3706 case QEMU_OPTION_no_kvm_pit_reinjection
: {
3707 static GlobalProperty kvm_pit_lost_tick_policy
[] = {
3709 .driver
= "kvm-pit",
3710 .property
= "lost_tick_policy",
3713 { /* end of list */ }
3716 error_report("warning: deprecated, replaced by "
3717 "-global kvm-pit.lost_tick_policy=discard");
3718 qdev_prop_register_global_list(kvm_pit_lost_tick_policy
);
3721 case QEMU_OPTION_usb
:
3722 olist
= qemu_find_opts("machine");
3723 qemu_opts_parse_noisily(olist
, "usb=on", false);
3725 case QEMU_OPTION_usbdevice
:
3726 olist
= qemu_find_opts("machine");
3727 qemu_opts_parse_noisily(olist
, "usb=on", false);
3728 add_device_config(DEV_USB
, optarg
);
3730 case QEMU_OPTION_device
:
3731 if (!qemu_opts_parse_noisily(qemu_find_opts("device"),
3736 case QEMU_OPTION_smp
:
3737 if (!qemu_opts_parse_noisily(qemu_find_opts("smp-opts"),
3742 case QEMU_OPTION_vnc
:
3745 Error
*local_err
= NULL
;
3747 if (vnc_parse(optarg
, &local_err
) == NULL
) {
3748 error_report_err(local_err
);
3752 error_report("VNC support is disabled");
3757 case QEMU_OPTION_no_acpi
:
3760 case QEMU_OPTION_no_hpet
:
3763 case QEMU_OPTION_balloon
:
3764 if (balloon_parse(optarg
) < 0) {
3765 error_report("unknown -balloon argument %s", optarg
);
3769 case QEMU_OPTION_no_reboot
:
3772 case QEMU_OPTION_no_shutdown
:
3775 case QEMU_OPTION_show_cursor
:
3778 case QEMU_OPTION_uuid
:
3779 if(qemu_uuid_parse(optarg
, qemu_uuid
) < 0) {
3780 error_report("failed to parse UUID string: wrong format");
3783 qemu_uuid_set
= true;
3785 case QEMU_OPTION_option_rom
:
3786 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
3787 error_report("too many option ROMs");
3790 opts
= qemu_opts_parse_noisily(qemu_find_opts("option-rom"),
3795 option_rom
[nb_option_roms
].name
= qemu_opt_get(opts
, "romfile");
3796 option_rom
[nb_option_roms
].bootindex
=
3797 qemu_opt_get_number(opts
, "bootindex", -1);
3798 if (!option_rom
[nb_option_roms
].name
) {
3799 error_report("Option ROM file is not specified");
3804 case QEMU_OPTION_semihosting
:
3805 semihosting
.enabled
= true;
3806 semihosting
.target
= SEMIHOSTING_TARGET_AUTO
;
3808 case QEMU_OPTION_semihosting_config
:
3809 semihosting
.enabled
= true;
3810 opts
= qemu_opts_parse_noisily(qemu_find_opts("semihosting-config"),
3813 semihosting
.enabled
= qemu_opt_get_bool(opts
, "enable",
3815 const char *target
= qemu_opt_get(opts
, "target");
3816 if (target
!= NULL
) {
3817 if (strcmp("native", target
) == 0) {
3818 semihosting
.target
= SEMIHOSTING_TARGET_NATIVE
;
3819 } else if (strcmp("gdb", target
) == 0) {
3820 semihosting
.target
= SEMIHOSTING_TARGET_GDB
;
3821 } else if (strcmp("auto", target
) == 0) {
3822 semihosting
.target
= SEMIHOSTING_TARGET_AUTO
;
3824 error_report("unsupported semihosting-config %s",
3829 semihosting
.target
= SEMIHOSTING_TARGET_AUTO
;
3831 /* Set semihosting argument count and vector */
3832 qemu_opt_foreach(opts
, add_semihosting_arg
,
3833 &semihosting
, NULL
);
3835 error_report("unsupported semihosting-config %s", optarg
);
3839 case QEMU_OPTION_tdf
:
3840 error_report("warning: ignoring deprecated option");
3842 case QEMU_OPTION_name
:
3843 opts
= qemu_opts_parse_noisily(qemu_find_opts("name"),
3849 case QEMU_OPTION_prom_env
:
3850 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
3851 error_report("too many prom variables");
3854 prom_envs
[nb_prom_envs
] = optarg
;
3857 case QEMU_OPTION_old_param
:
3860 case QEMU_OPTION_clock
:
3861 /* Clock options no longer exist. Keep this option for
3862 * backward compatibility.
3865 case QEMU_OPTION_startdate
:
3866 configure_rtc_date_offset(optarg
, 1);
3868 case QEMU_OPTION_rtc
:
3869 opts
= qemu_opts_parse_noisily(qemu_find_opts("rtc"), optarg
,
3874 configure_rtc(opts
);
3876 case QEMU_OPTION_tb_size
:
3877 tcg_tb_size
= strtol(optarg
, NULL
, 0);
3878 if (tcg_tb_size
< 0) {
3882 case QEMU_OPTION_icount
:
3883 icount_opts
= qemu_opts_parse_noisily(qemu_find_opts("icount"),
3889 case QEMU_OPTION_incoming
:
3891 runstate_set(RUN_STATE_INMIGRATE
);
3895 case QEMU_OPTION_nodefaults
:
3898 case QEMU_OPTION_xen_domid
:
3899 if (!(xen_available())) {
3900 printf("Option %s not supported for this target\n", popt
->name
);
3903 xen_domid
= atoi(optarg
);
3905 case QEMU_OPTION_xen_create
:
3906 if (!(xen_available())) {
3907 printf("Option %s not supported for this target\n", popt
->name
);
3910 xen_mode
= XEN_CREATE
;
3912 case QEMU_OPTION_xen_attach
:
3913 if (!(xen_available())) {
3914 printf("Option %s not supported for this target\n", popt
->name
);
3917 xen_mode
= XEN_ATTACH
;
3919 case QEMU_OPTION_trace
:
3921 opts
= qemu_opts_parse_noisily(qemu_find_opts("trace"),
3926 if (qemu_opt_get(opts
, "enable")) {
3927 trace_enable_events(qemu_opt_get(opts
, "enable"));
3929 trace_init_events(qemu_opt_get(opts
, "events"));
3933 trace_file
= g_strdup(qemu_opt_get(opts
, "file"));
3934 qemu_opts_del(opts
);
3937 case QEMU_OPTION_readconfig
:
3939 int ret
= qemu_read_config_file(optarg
);
3941 error_report("read config %s: %s", optarg
,
3947 case QEMU_OPTION_spice
:
3948 olist
= qemu_find_opts("spice");
3950 error_report("spice support is disabled");
3953 opts
= qemu_opts_parse_noisily(olist
, optarg
, false);
3959 case QEMU_OPTION_writeconfig
:
3962 if (strcmp(optarg
, "-") == 0) {
3965 fp
= fopen(optarg
, "w");
3967 error_report("open %s: %s", optarg
,
3972 qemu_config_write(fp
);
3978 case QEMU_OPTION_qtest
:
3979 qtest_chrdev
= optarg
;
3981 case QEMU_OPTION_qtest_log
:
3984 case QEMU_OPTION_sandbox
:
3985 opts
= qemu_opts_parse_noisily(qemu_find_opts("sandbox"),
3991 case QEMU_OPTION_add_fd
:
3993 opts
= qemu_opts_parse_noisily(qemu_find_opts("add-fd"),
3999 error_report("File descriptor passing is disabled on this "
4004 case QEMU_OPTION_object
:
4005 opts
= qemu_opts_parse_noisily(qemu_find_opts("object"),
4011 case QEMU_OPTION_realtime
:
4012 opts
= qemu_opts_parse_noisily(qemu_find_opts("realtime"),
4017 enable_mlock
= qemu_opt_get_bool(opts
, "mlock", true);
4019 case QEMU_OPTION_msg
:
4020 opts
= qemu_opts_parse_noisily(qemu_find_opts("msg"), optarg
,
4025 configure_msg(opts
);
4027 case QEMU_OPTION_dump_vmstate
:
4028 if (vmstate_dump_file
) {
4029 error_report("only one '-dump-vmstate' "
4030 "option may be given");
4033 vmstate_dump_file
= fopen(optarg
, "w");
4034 if (vmstate_dump_file
== NULL
) {
4035 error_report("open %s: %s", optarg
, strerror(errno
));
4040 os_parse_cmd_args(popt
->index
, optarg
);
4045 replay_configure(icount_opts
);
4047 opts
= qemu_get_machine_opts();
4048 optarg
= qemu_opt_get(opts
, "type");
4050 machine_class
= machine_parse(optarg
);
4053 if (machine_class
== NULL
) {
4054 error_report("No machine specified, and there is no default");
4055 error_printf("Use -machine help to list supported machines\n");
4059 set_memory_options(&ram_slots
, &maxram_size
, machine_class
);
4065 if (qemu_init_main_loop(&main_loop_err
)) {
4066 error_report_err(main_loop_err
);
4070 if (qemu_opts_foreach(qemu_find_opts("sandbox"),
4071 parse_sandbox
, NULL
, NULL
)) {
4075 if (qemu_opts_foreach(qemu_find_opts("name"),
4076 parse_name
, NULL
, NULL
)) {
4081 if (qemu_opts_foreach(qemu_find_opts("add-fd"),
4082 parse_add_fd
, NULL
, NULL
)) {
4086 if (qemu_opts_foreach(qemu_find_opts("add-fd"),
4087 cleanup_add_fd
, NULL
, NULL
)) {
4092 current_machine
= MACHINE(object_new(object_class_get_name(
4093 OBJECT_CLASS(machine_class
))));
4094 if (machine_help_func(qemu_get_machine_opts(), current_machine
)) {
4097 object_property_add_child(object_get_root(), "machine",
4098 OBJECT(current_machine
), &error_abort
);
4099 cpu_exec_init_all();
4101 if (machine_class
->hw_version
) {
4102 qemu_set_hw_version(machine_class
->hw_version
);
4105 /* Init CPU def lists, based on config
4106 * - Must be called after all the qemu_read_config_file() calls
4107 * - Must be called before list_cpus()
4108 * - Must be called before machine->init()
4112 if (cpu_model
&& is_help_option(cpu_model
)) {
4113 list_cpus(stdout
, &fprintf
, cpu_model
);
4117 trace_init_file(trace_file
);
4119 /* Open the logfile at this point and set the log mask if necessary.
4122 qemu_set_log_filename(log_file
);
4127 mask
= qemu_str_to_log_mask(log_mask
);
4129 qemu_print_log_usage(stdout
);
4137 if (!trace_init_backends()) {
4141 /* If no data_dir is specified then try to find it relative to the
4143 if (data_dir_idx
< ARRAY_SIZE(data_dir
)) {
4144 data_dir
[data_dir_idx
] = os_find_datadir();
4145 if (data_dir
[data_dir_idx
] != NULL
) {
4149 /* If all else fails use the install path specified when building. */
4150 if (data_dir_idx
< ARRAY_SIZE(data_dir
)) {
4151 data_dir
[data_dir_idx
++] = CONFIG_QEMU_DATADIR
;
4154 smp_parse(qemu_opts_find(qemu_find_opts("smp-opts"), NULL
));
4156 machine_class
->max_cpus
= machine_class
->max_cpus
?: 1; /* Default to UP */
4157 if (max_cpus
> machine_class
->max_cpus
) {
4158 error_report("Number of SMP CPUs requested (%d) exceeds max CPUs "
4159 "supported by machine '%s' (%d)", max_cpus
,
4160 machine_class
->name
, machine_class
->max_cpus
);
4165 * Get the default machine options from the machine if it is not already
4166 * specified either by the configuration file or by the command line.
4168 if (machine_class
->default_machine_opts
) {
4169 qemu_opts_set_defaults(qemu_find_opts("machine"),
4170 machine_class
->default_machine_opts
, 0);
4173 qemu_opts_foreach(qemu_find_opts("device"),
4174 default_driver_check
, NULL
, NULL
);
4175 qemu_opts_foreach(qemu_find_opts("global"),
4176 default_driver_check
, NULL
, NULL
);
4178 if (!vga_model
&& !default_vga
) {
4179 vga_interface_type
= VGA_DEVICE
;
4181 if (!has_defaults
|| machine_class
->no_serial
) {
4184 if (!has_defaults
|| machine_class
->no_parallel
) {
4185 default_parallel
= 0;
4187 if (!has_defaults
|| !machine_class
->use_virtcon
) {
4188 default_virtcon
= 0;
4190 if (!has_defaults
|| !machine_class
->use_sclp
) {
4193 if (!has_defaults
|| machine_class
->no_floppy
) {
4196 if (!has_defaults
|| machine_class
->no_cdrom
) {
4199 if (!has_defaults
|| machine_class
->no_sdcard
) {
4202 if (!has_defaults
) {
4203 default_monitor
= 0;
4208 if (is_daemonized()) {
4209 /* According to documentation and historically, -nographic redirects
4210 * serial port, parallel port and monitor to stdio, which does not work
4211 * with -daemonize. We can redirect these to null instead, but since
4212 * -nographic is legacy, let's just error out.
4213 * We disallow -nographic only if all other ports are not redirected
4214 * explicitly, to not break existing legacy setups which uses
4215 * -nographic _and_ redirects all ports explicitly - this is valid
4216 * usage, -nographic is just a no-op in this case.
4218 if (display_type
== DT_NOGRAPHIC
4219 && (default_parallel
|| default_serial
4220 || default_monitor
|| default_virtcon
)) {
4221 error_report("-nographic cannot be used with -daemonize");
4224 #ifdef CONFIG_CURSES
4225 if (display_type
== DT_CURSES
) {
4226 error_report("curses display cannot be used with -daemonize");
4232 if (display_type
== DT_NOGRAPHIC
) {
4233 if (default_parallel
)
4234 add_device_config(DEV_PARALLEL
, "null");
4235 if (default_serial
&& default_monitor
) {
4236 add_device_config(DEV_SERIAL
, "mon:stdio");
4237 } else if (default_virtcon
&& default_monitor
) {
4238 add_device_config(DEV_VIRTCON
, "mon:stdio");
4239 } else if (default_sclp
&& default_monitor
) {
4240 add_device_config(DEV_SCLP
, "mon:stdio");
4243 add_device_config(DEV_SERIAL
, "stdio");
4244 if (default_virtcon
)
4245 add_device_config(DEV_VIRTCON
, "stdio");
4247 add_device_config(DEV_SCLP
, "stdio");
4249 if (default_monitor
)
4250 monitor_parse("stdio", "readline", false);
4254 add_device_config(DEV_SERIAL
, "vc:80Cx24C");
4255 if (default_parallel
)
4256 add_device_config(DEV_PARALLEL
, "vc:80Cx24C");
4257 if (default_monitor
)
4258 monitor_parse("vc:80Cx24C", "readline", false);
4259 if (default_virtcon
)
4260 add_device_config(DEV_VIRTCON
, "vc:80Cx24C");
4262 add_device_config(DEV_SCLP
, "vc:80Cx24C");
4266 #if defined(CONFIG_VNC)
4267 if (!QTAILQ_EMPTY(&(qemu_find_opts("vnc")->head
))) {
4271 if (display_type
== DT_DEFAULT
&& !display_remote
) {
4272 #if defined(CONFIG_GTK)
4273 display_type
= DT_GTK
;
4274 #elif defined(CONFIG_SDL) || defined(CONFIG_COCOA)
4275 display_type
= DT_SDL
;
4276 #elif defined(CONFIG_VNC)
4277 vnc_parse("localhost:0,to=99,id=default", &error_abort
);
4280 display_type
= DT_NONE
;
4284 if ((no_frame
|| alt_grab
|| ctrl_grab
) && display_type
!= DT_SDL
) {
4285 error_report("-no-frame, -alt-grab and -ctrl-grab are only valid "
4286 "for SDL, ignoring option");
4288 if (no_quit
&& (display_type
!= DT_GTK
&& display_type
!= DT_SDL
)) {
4289 error_report("-no-quit is only valid for GTK and SDL, "
4293 #if defined(CONFIG_GTK)
4294 if (display_type
== DT_GTK
) {
4295 early_gtk_display_init(request_opengl
);
4298 #if defined(CONFIG_SDL)
4299 if (display_type
== DT_SDL
) {
4300 sdl_display_early_init(request_opengl
);
4303 if (request_opengl
== 1 && display_opengl
== 0) {
4304 #if defined(CONFIG_OPENGL)
4305 error_report("OpenGL is not supported by the display");
4307 error_report("OpenGL support is disabled");
4315 if (qemu_opts_foreach(qemu_find_opts("object"),
4317 object_create_initial
, NULL
)) {
4321 if (qemu_opts_foreach(qemu_find_opts("chardev"),
4322 chardev_init_func
, NULL
, NULL
)) {
4326 #ifdef CONFIG_VIRTFS
4327 if (qemu_opts_foreach(qemu_find_opts("fsdev"),
4328 fsdev_init_func
, NULL
, NULL
)) {
4333 if (pid_file
&& qemu_create_pidfile(pid_file
) != 0) {
4334 error_report("could not acquire pid file: %s", strerror(errno
));
4338 if (qemu_opts_foreach(qemu_find_opts("device"),
4339 device_help_func
, NULL
, NULL
)) {
4343 machine_opts
= qemu_get_machine_opts();
4344 if (qemu_opt_foreach(machine_opts
, machine_set_property
, current_machine
,
4346 object_unref(OBJECT(current_machine
));
4350 configure_accelerator(current_machine
);
4353 qtest_init(qtest_chrdev
, qtest_log
, &error_fatal
);
4356 machine_opts
= qemu_get_machine_opts();
4357 kernel_filename
= qemu_opt_get(machine_opts
, "kernel");
4358 initrd_filename
= qemu_opt_get(machine_opts
, "initrd");
4359 kernel_cmdline
= qemu_opt_get(machine_opts
, "append");
4360 bios_name
= qemu_opt_get(machine_opts
, "firmware");
4362 opts
= qemu_opts_find(qemu_find_opts("boot-opts"), NULL
);
4364 boot_order
= qemu_opt_get(opts
, "order");
4366 validate_bootdevices(boot_order
, &error_fatal
);
4369 boot_once
= qemu_opt_get(opts
, "once");
4371 validate_bootdevices(boot_once
, &error_fatal
);
4374 boot_menu
= qemu_opt_get_bool(opts
, "menu", boot_menu
);
4375 boot_strict
= qemu_opt_get_bool(opts
, "strict", false);
4379 boot_order
= machine_class
->default_boot_order
;
4382 if (!kernel_cmdline
) {
4383 kernel_cmdline
= "";
4384 current_machine
->kernel_cmdline
= (char *)kernel_cmdline
;
4387 linux_boot
= (kernel_filename
!= NULL
);
4389 if (!linux_boot
&& *kernel_cmdline
!= '\0') {
4390 error_report("-append only allowed with -kernel option");
4394 if (!linux_boot
&& initrd_filename
!= NULL
) {
4395 error_report("-initrd only allowed with -kernel option");
4399 if (!linux_boot
&& qemu_opt_get(machine_opts
, "dtb")) {
4400 error_report("-dtb only allowed with -kernel option");
4404 if (semihosting_enabled() && !semihosting_get_argc() && kernel_filename
) {
4405 /* fall back to the -kernel/-append */
4406 semihosting_arg_fallback(kernel_filename
, kernel_cmdline
);
4409 os_set_line_buffering();
4412 /* spice needs the timers to be initialized by this point */
4418 if (kvm_enabled() || xen_enabled()) {
4419 error_report("-icount is not allowed with kvm or xen");
4422 configure_icount(icount_opts
, &error_abort
);
4423 qemu_opts_del(icount_opts
);
4426 /* clean up network at qemu process termination */
4427 atexit(&net_cleanup
);
4429 if (net_init_clients() < 0) {
4433 if (qemu_opts_foreach(qemu_find_opts("object"),
4435 object_create_delayed
, NULL
)) {
4440 if (tpm_init() < 0) {
4445 /* init the bluetooth world */
4446 if (foreach_device_config(DEV_BT
, bt_parse
))
4449 if (!xen_enabled()) {
4450 /* On 32-bit hosts, QEMU is limited by virtual address space */
4451 if (ram_size
> (2047 << 20) && HOST_LONG_BITS
== 32) {
4452 error_report("at most 2047 MB RAM can be simulated");
4460 /* If the currently selected machine wishes to override the units-per-bus
4461 * property of its default HBA interface type, do so now. */
4462 if (machine_class
->units_per_default_bus
) {
4463 override_max_devs(machine_class
->block_default_type
,
4464 machine_class
->units_per_default_bus
);
4467 /* open the virtual block devices */
4468 if (snapshot
|| replay_mode
!= REPLAY_MODE_NONE
) {
4469 qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot
,
4472 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func
,
4473 &machine_class
->block_default_type
, NULL
)) {
4477 default_drive(default_cdrom
, snapshot
, machine_class
->block_default_type
, 2,
4479 default_drive(default_floppy
, snapshot
, IF_FLOPPY
, 0, FD_OPTS
);
4480 default_drive(default_sdcard
, snapshot
, IF_SD
, 0, SD_OPTS
);
4482 parse_numa_opts(machine_class
);
4484 if (qemu_opts_foreach(qemu_find_opts("mon"),
4485 mon_init_func
, NULL
, NULL
)) {
4489 if (foreach_device_config(DEV_SERIAL
, serial_parse
) < 0)
4491 if (foreach_device_config(DEV_PARALLEL
, parallel_parse
) < 0)
4493 if (foreach_device_config(DEV_VIRTCON
, virtcon_parse
) < 0)
4495 if (foreach_device_config(DEV_SCLP
, sclp_parse
) < 0) {
4498 if (foreach_device_config(DEV_DEBUGCON
, debugcon_parse
) < 0)
4501 /* If no default VGA is requested, the default is "none". */
4503 if (machine_class
->default_display
) {
4504 vga_model
= machine_class
->default_display
;
4505 } else if (cirrus_vga_available()) {
4506 vga_model
= "cirrus";
4507 } else if (vga_available()) {
4512 select_vgahw(vga_model
);
4516 i
= select_watchdog(watchdog
);
4518 exit (i
== 1 ? 1 : 0);
4521 if (machine_class
->compat_props
) {
4522 qdev_prop_register_global_list(machine_class
->compat_props
);
4526 /* This checkpoint is required by replay to separate prior clock
4527 reading from the other reads, because timer polling functions query
4528 clock values from the log. */
4529 replay_checkpoint(CHECKPOINT_INIT
);
4530 qdev_machine_init();
4532 current_machine
->ram_size
= ram_size
;
4533 current_machine
->maxram_size
= maxram_size
;
4534 current_machine
->ram_slots
= ram_slots
;
4535 current_machine
->boot_order
= boot_order
;
4536 current_machine
->cpu_model
= cpu_model
;
4538 machine_class
->init(current_machine
);
4544 cpu_synchronize_all_post_init();
4546 numa_post_machine_init();
4548 if (qemu_opts_foreach(qemu_find_opts("fw_cfg"),
4549 parse_fw_cfg
, fw_cfg_find(), NULL
) != 0) {
4553 /* init USB devices */
4554 if (usb_enabled()) {
4555 if (foreach_device_config(DEV_USB
, usb_parse
) < 0)
4559 /* Check if IGD GFX passthrough. */
4562 /* init generic devices */
4563 if (qemu_opts_foreach(qemu_find_opts("device"),
4564 device_init_func
, NULL
, NULL
)) {
4568 /* Did we create any drives that we failed to create a device for? */
4569 drive_check_orphaned();
4571 net_check_clients();
4574 qemu_boot_set(boot_once
, &error_fatal
);
4575 qemu_register_reset(restore_boot_order
, g_strdup(boot_order
));
4578 ds
= init_displaystate();
4580 /* init local displays */
4581 switch (display_type
) {
4583 (void)ds
; /* avoid warning if no display is configured */
4585 #if defined(CONFIG_CURSES)
4587 curses_display_init(ds
, full_screen
);
4590 #if defined(CONFIG_SDL)
4592 sdl_display_init(ds
, full_screen
, no_frame
);
4594 #elif defined(CONFIG_COCOA)
4596 cocoa_display_init(ds
, full_screen
);
4599 #if defined(CONFIG_GTK)
4601 gtk_display_init(ds
, full_screen
, grab_on_hover
);
4608 /* must be after terminal init, SDL library changes signal handlers */
4609 os_setup_signal_handling();
4612 /* init remote displays */
4613 qemu_opts_foreach(qemu_find_opts("vnc"),
4614 vnc_init_func
, NULL
, NULL
);
4615 if (show_vnc_port
) {
4616 char *ret
= vnc_display_local_addr("default");
4617 printf("VNC server running on '%s'\n", ret
);
4623 qemu_spice_display_init();
4627 if (foreach_device_config(DEV_GDB
, gdbserver_start
) < 0) {
4631 qdev_machine_creation_done();
4633 /* TODO: once all bus devices are qdevified, this should be done
4634 * when bus is created by qdev.c */
4635 qemu_register_reset(qbus_reset_all_fn
, sysbus_get_default());
4636 qemu_run_machine_init_done_notifiers();
4638 if (rom_check_and_register_reset() != 0) {
4639 error_report("rom check and register reset failed");
4645 /* This checkpoint is required by replay to separate prior clock
4646 reading from the other reads, because timer polling functions query
4647 clock values from the log. */
4648 replay_checkpoint(CHECKPOINT_RESET
);
4649 qemu_system_reset(VMRESET_SILENT
);
4650 register_global_state();
4652 if (load_vmstate(loadvm
) < 0) {
4657 qdev_prop_check_globals();
4658 if (vmstate_dump_file
) {
4660 dump_vmstate_json_to_file(vmstate_dump_file
);
4665 Error
*local_err
= NULL
;
4666 qemu_start_incoming_migration(incoming
, &local_err
);
4668 error_reportf_err(local_err
, "-incoming %s: ", incoming
);
4671 } else if (autostart
) {
4678 replay_disable_events();