4 * Copyright (c) 2003-2008 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
31 #include "config-host.h"
34 #include "sysemu/seccomp.h"
37 #if defined(CONFIG_VDE)
38 #include <libvdeplug.h>
42 #if defined(__APPLE__) || defined(main)
44 int qemu_main(int argc
, char **argv
, char **envp
);
45 int main(int argc
, char **argv
)
47 return qemu_main(argc
, argv
, NULL
);
50 #define main qemu_main
52 #endif /* CONFIG_SDL */
56 #define main qemu_main
57 #endif /* CONFIG_COCOA */
61 #include "qemu/sockets.h"
63 #include "hw/boards.h"
64 #include "sysemu/accel.h"
66 #include "hw/i386/pc.h"
67 #include "hw/isa/isa.h"
69 #include "sysemu/watchdog.h"
70 #include "hw/i386/smbios.h"
71 #include "hw/xen/xen.h"
73 #include "hw/loader.h"
74 #include "monitor/qdev.h"
75 #include "sysemu/bt.h"
77 #include "net/slirp.h"
78 #include "monitor/monitor.h"
79 #include "ui/console.h"
80 #include "sysemu/sysemu.h"
81 #include "sysemu/numa.h"
82 #include "exec/gdbstub.h"
83 #include "qemu/timer.h"
84 #include "sysemu/char.h"
85 #include "qemu/bitmap.h"
86 #include "sysemu/blockdev.h"
87 #include "hw/block/block.h"
88 #include "migration/block.h"
89 #include "sysemu/tpm.h"
90 #include "sysemu/dma.h"
91 #include "audio/audio.h"
92 #include "migration/migration.h"
93 #include "sysemu/kvm.h"
94 #include "qapi/qmp/qjson.h"
95 #include "qemu/option.h"
96 #include "qemu/config-file.h"
97 #include "qemu-options.h"
98 #include "qmp-commands.h"
99 #include "qemu/main-loop.h"
101 #include "fsdev/qemu-fsdev.h"
103 #include "sysemu/qtest.h"
105 #include "disas/disas.h"
108 #include "slirp/libslirp.h"
111 #include "trace/control.h"
112 #include "qemu/queue.h"
113 #include "sysemu/cpus.h"
114 #include "sysemu/arch_init.h"
115 #include "qemu/osdep.h"
117 #include "ui/qemu-spice.h"
118 #include "qapi/string-input-visitor.h"
119 #include "qapi/opts-visitor.h"
120 #include "qom/object_interfaces.h"
121 #include "qapi-event.h"
122 #include "exec/semihost.h"
124 #define MAX_VIRTIO_CONSOLES 1
125 #define MAX_SCLP_CONSOLES 1
127 static const char *data_dir
[16];
128 static int data_dir_idx
;
129 const char *bios_name
= NULL
;
130 enum vga_retrace_method vga_retrace_method
= VGA_RETRACE_DUMB
;
131 DisplayType display_type
= DT_DEFAULT
;
132 int request_opengl
= -1;
134 static int display_remote
;
135 const char* keyboard_layout
= NULL
;
137 const char *mem_path
= NULL
;
138 int mem_prealloc
= 0; /* force preallocation of physical target memory */
139 bool enable_mlock
= false;
141 NICInfo nd_table
[MAX_NICS
];
143 static int rtc_utc
= 1;
144 static int rtc_date_offset
= -1; /* -1 means no change */
145 QEMUClockType rtc_clock
;
146 int vga_interface_type
= VGA_NONE
;
147 static int full_screen
= 0;
148 static int no_frame
= 0;
151 static bool grab_on_hover
;
153 CharDriverState
*serial_hds
[MAX_SERIAL_PORTS
];
154 CharDriverState
*parallel_hds
[MAX_PARALLEL_PORTS
];
155 CharDriverState
*virtcon_hds
[MAX_VIRTIO_CONSOLES
];
156 CharDriverState
*sclp_hds
[MAX_SCLP_CONSOLES
];
157 int win2k_install_hack
= 0;
163 int acpi_enabled
= 1;
166 static int no_reboot
;
169 int graphic_rotate
= 0;
170 const char *watchdog
;
171 QEMUOptionRom option_rom
[MAX_OPTION_ROMS
];
174 const char *qemu_name
;
177 unsigned int nb_prom_envs
= 0;
178 const char *prom_envs
[MAX_PROM_ENVS
];
181 uint8_t *boot_splash_filedata
;
182 size_t boot_splash_filedata_size
;
183 uint8_t qemu_extra_params_fw
[2];
185 int icount_align_option
;
187 /* The bytes in qemu_uuid[] are in the order specified by RFC4122, _not_ in the
188 * little-endian "wire format" described in the SMBIOS 2.6 specification.
190 uint8_t qemu_uuid
[16];
193 static NotifierList exit_notifiers
=
194 NOTIFIER_LIST_INITIALIZER(exit_notifiers
);
196 static NotifierList machine_init_done_notifiers
=
197 NOTIFIER_LIST_INITIALIZER(machine_init_done_notifiers
);
201 enum xen_mode xen_mode
= XEN_EMULATE
;
203 static int has_defaults
= 1;
204 static int default_serial
= 1;
205 static int default_parallel
= 1;
206 static int default_virtcon
= 1;
207 static int default_sclp
= 1;
208 static int default_monitor
= 1;
209 static int default_floppy
= 1;
210 static int default_cdrom
= 1;
211 static int default_sdcard
= 1;
212 static int default_vga
= 1;
218 { .driver
= "isa-serial", .flag
= &default_serial
},
219 { .driver
= "isa-parallel", .flag
= &default_parallel
},
220 { .driver
= "isa-fdc", .flag
= &default_floppy
},
221 { .driver
= "ide-cd", .flag
= &default_cdrom
},
222 { .driver
= "ide-hd", .flag
= &default_cdrom
},
223 { .driver
= "ide-drive", .flag
= &default_cdrom
},
224 { .driver
= "scsi-cd", .flag
= &default_cdrom
},
225 { .driver
= "virtio-serial-pci", .flag
= &default_virtcon
},
226 { .driver
= "virtio-serial-s390", .flag
= &default_virtcon
},
227 { .driver
= "virtio-serial", .flag
= &default_virtcon
},
228 { .driver
= "VGA", .flag
= &default_vga
},
229 { .driver
= "isa-vga", .flag
= &default_vga
},
230 { .driver
= "cirrus-vga", .flag
= &default_vga
},
231 { .driver
= "isa-cirrus-vga", .flag
= &default_vga
},
232 { .driver
= "vmware-svga", .flag
= &default_vga
},
233 { .driver
= "qxl-vga", .flag
= &default_vga
},
234 { .driver
= "virtio-vga", .flag
= &default_vga
},
237 static QemuOptsList qemu_rtc_opts
= {
239 .head
= QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts
.head
),
243 .type
= QEMU_OPT_STRING
,
246 .type
= QEMU_OPT_STRING
,
249 .type
= QEMU_OPT_STRING
,
251 { /* end of list */ }
255 static QemuOptsList qemu_sandbox_opts
= {
257 .implied_opt_name
= "enable",
258 .head
= QTAILQ_HEAD_INITIALIZER(qemu_sandbox_opts
.head
),
262 .type
= QEMU_OPT_BOOL
,
264 { /* end of list */ }
268 static QemuOptsList qemu_trace_opts
= {
270 .implied_opt_name
= "trace",
271 .head
= QTAILQ_HEAD_INITIALIZER(qemu_trace_opts
.head
),
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
,
476 { /* end of list */ }
480 static QemuOptsList qemu_semihosting_config_opts
= {
481 .name
= "semihosting-config",
482 .implied_opt_name
= "enable",
483 .head
= QTAILQ_HEAD_INITIALIZER(qemu_semihosting_config_opts
.head
),
487 .type
= QEMU_OPT_BOOL
,
490 .type
= QEMU_OPT_STRING
,
493 .type
= QEMU_OPT_STRING
,
495 { /* end of list */ }
499 static QemuOptsList qemu_fw_cfg_opts
= {
501 .implied_opt_name
= "name",
502 .head
= QTAILQ_HEAD_INITIALIZER(qemu_fw_cfg_opts
.head
),
506 .type
= QEMU_OPT_STRING
,
507 .help
= "Sets the fw_cfg name of the blob to be inserted",
510 .type
= QEMU_OPT_STRING
,
511 .help
= "Sets the name of the file from which\n"
512 "the fw_cfg blob will be loaded",
514 { /* end of list */ }
519 * Get machine options
521 * Returns: machine options (never null).
523 QemuOpts
*qemu_get_machine_opts(void)
525 return qemu_find_opts_singleton("machine");
528 const char *qemu_get_vm_name(void)
533 static void res_free(void)
535 if (boot_splash_filedata
!= NULL
) {
536 g_free(boot_splash_filedata
);
537 boot_splash_filedata
= NULL
;
541 static int default_driver_check(void *opaque
, QemuOpts
*opts
, Error
**errp
)
543 const char *driver
= qemu_opt_get(opts
, "driver");
548 for (i
= 0; i
< ARRAY_SIZE(default_list
); i
++) {
549 if (strcmp(default_list
[i
].driver
, driver
) != 0)
551 *(default_list
[i
].flag
) = 0;
556 /***********************************************************/
559 static RunState current_run_state
= RUN_STATE_PRELAUNCH
;
561 /* We use RUN_STATE_MAX but any invalid value will do */
562 static RunState vmstop_requested
= RUN_STATE_MAX
;
563 static QemuMutex vmstop_lock
;
568 } RunStateTransition
;
570 static const RunStateTransition runstate_transitions_def
[] = {
572 { RUN_STATE_DEBUG
, RUN_STATE_RUNNING
},
573 { RUN_STATE_DEBUG
, RUN_STATE_FINISH_MIGRATE
},
575 { RUN_STATE_INMIGRATE
, RUN_STATE_RUNNING
},
576 { RUN_STATE_INMIGRATE
, RUN_STATE_PAUSED
},
578 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_PAUSED
},
579 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_FINISH_MIGRATE
},
581 { RUN_STATE_IO_ERROR
, RUN_STATE_RUNNING
},
582 { RUN_STATE_IO_ERROR
, RUN_STATE_FINISH_MIGRATE
},
584 { RUN_STATE_PAUSED
, RUN_STATE_RUNNING
},
585 { RUN_STATE_PAUSED
, RUN_STATE_FINISH_MIGRATE
},
587 { RUN_STATE_POSTMIGRATE
, RUN_STATE_RUNNING
},
588 { RUN_STATE_POSTMIGRATE
, RUN_STATE_FINISH_MIGRATE
},
590 { RUN_STATE_PRELAUNCH
, RUN_STATE_RUNNING
},
591 { RUN_STATE_PRELAUNCH
, RUN_STATE_FINISH_MIGRATE
},
592 { RUN_STATE_PRELAUNCH
, RUN_STATE_INMIGRATE
},
594 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_RUNNING
},
595 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_POSTMIGRATE
},
597 { RUN_STATE_RESTORE_VM
, RUN_STATE_RUNNING
},
599 { RUN_STATE_RUNNING
, RUN_STATE_DEBUG
},
600 { RUN_STATE_RUNNING
, RUN_STATE_INTERNAL_ERROR
},
601 { RUN_STATE_RUNNING
, RUN_STATE_IO_ERROR
},
602 { RUN_STATE_RUNNING
, RUN_STATE_PAUSED
},
603 { RUN_STATE_RUNNING
, RUN_STATE_FINISH_MIGRATE
},
604 { RUN_STATE_RUNNING
, RUN_STATE_RESTORE_VM
},
605 { RUN_STATE_RUNNING
, RUN_STATE_SAVE_VM
},
606 { RUN_STATE_RUNNING
, RUN_STATE_SHUTDOWN
},
607 { RUN_STATE_RUNNING
, RUN_STATE_WATCHDOG
},
608 { RUN_STATE_RUNNING
, RUN_STATE_GUEST_PANICKED
},
610 { RUN_STATE_SAVE_VM
, RUN_STATE_RUNNING
},
612 { RUN_STATE_SHUTDOWN
, RUN_STATE_PAUSED
},
613 { RUN_STATE_SHUTDOWN
, RUN_STATE_FINISH_MIGRATE
},
615 { RUN_STATE_DEBUG
, RUN_STATE_SUSPENDED
},
616 { RUN_STATE_RUNNING
, RUN_STATE_SUSPENDED
},
617 { RUN_STATE_SUSPENDED
, RUN_STATE_RUNNING
},
618 { RUN_STATE_SUSPENDED
, RUN_STATE_FINISH_MIGRATE
},
620 { RUN_STATE_WATCHDOG
, RUN_STATE_RUNNING
},
621 { RUN_STATE_WATCHDOG
, RUN_STATE_FINISH_MIGRATE
},
623 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_RUNNING
},
624 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_FINISH_MIGRATE
},
626 { RUN_STATE_MAX
, RUN_STATE_MAX
},
629 static bool runstate_valid_transitions
[RUN_STATE_MAX
][RUN_STATE_MAX
];
631 bool runstate_check(RunState state
)
633 return current_run_state
== state
;
636 static void runstate_init(void)
638 const RunStateTransition
*p
;
640 memset(&runstate_valid_transitions
, 0, sizeof(runstate_valid_transitions
));
641 for (p
= &runstate_transitions_def
[0]; p
->from
!= RUN_STATE_MAX
; p
++) {
642 runstate_valid_transitions
[p
->from
][p
->to
] = true;
645 qemu_mutex_init(&vmstop_lock
);
648 /* This function will abort() on invalid state transitions */
649 void runstate_set(RunState new_state
)
651 assert(new_state
< RUN_STATE_MAX
);
653 if (!runstate_valid_transitions
[current_run_state
][new_state
]) {
654 fprintf(stderr
, "ERROR: invalid runstate transition: '%s' -> '%s'\n",
655 RunState_lookup
[current_run_state
],
656 RunState_lookup
[new_state
]);
659 trace_runstate_set(new_state
);
660 current_run_state
= new_state
;
663 int runstate_is_running(void)
665 return runstate_check(RUN_STATE_RUNNING
);
668 bool runstate_needs_reset(void)
670 return runstate_check(RUN_STATE_INTERNAL_ERROR
) ||
671 runstate_check(RUN_STATE_SHUTDOWN
);
674 StatusInfo
*qmp_query_status(Error
**errp
)
676 StatusInfo
*info
= g_malloc0(sizeof(*info
));
678 info
->running
= runstate_is_running();
679 info
->singlestep
= singlestep
;
680 info
->status
= current_run_state
;
685 static bool qemu_vmstop_requested(RunState
*r
)
687 qemu_mutex_lock(&vmstop_lock
);
688 *r
= vmstop_requested
;
689 vmstop_requested
= RUN_STATE_MAX
;
690 qemu_mutex_unlock(&vmstop_lock
);
691 return *r
< RUN_STATE_MAX
;
694 void qemu_system_vmstop_request_prepare(void)
696 qemu_mutex_lock(&vmstop_lock
);
699 void qemu_system_vmstop_request(RunState state
)
701 vmstop_requested
= state
;
702 qemu_mutex_unlock(&vmstop_lock
);
710 qemu_vmstop_requested(&requested
);
711 if (runstate_is_running() && requested
== RUN_STATE_MAX
) {
715 /* Ensure that a STOP/RESUME pair of events is emitted if a
716 * vmstop request was pending. The BLOCK_IO_ERROR event, for
717 * example, according to documentation is always followed by
720 if (runstate_is_running()) {
721 qapi_event_send_stop(&error_abort
);
724 runstate_set(RUN_STATE_RUNNING
);
725 vm_state_notify(1, RUN_STATE_RUNNING
);
729 qapi_event_send_resume(&error_abort
);
733 /***********************************************************/
734 /* real time host monotonic timer */
736 static time_t qemu_time(void)
738 return qemu_clock_get_ms(QEMU_CLOCK_HOST
) / 1000;
741 /***********************************************************/
742 /* host time/date access */
743 void qemu_get_timedate(struct tm
*tm
, int offset
)
745 time_t ti
= qemu_time();
748 if (rtc_date_offset
== -1) {
752 localtime_r(&ti
, tm
);
754 ti
-= rtc_date_offset
;
759 int qemu_timedate_diff(struct tm
*tm
)
763 if (rtc_date_offset
== -1)
765 seconds
= mktimegm(tm
);
768 tmp
.tm_isdst
= -1; /* use timezone to figure it out */
769 seconds
= mktime(&tmp
);
772 seconds
= mktimegm(tm
) + rtc_date_offset
;
774 return seconds
- qemu_time();
777 static void configure_rtc_date_offset(const char *startdate
, int legacy
)
779 time_t rtc_start_date
;
782 if (!strcmp(startdate
, "now") && legacy
) {
783 rtc_date_offset
= -1;
785 if (sscanf(startdate
, "%d-%d-%dT%d:%d:%d",
793 } else if (sscanf(startdate
, "%d-%d-%d",
805 rtc_start_date
= mktimegm(&tm
);
806 if (rtc_start_date
== -1) {
808 fprintf(stderr
, "Invalid date format. Valid formats are:\n"
809 "'2006-06-17T16:01:21' or '2006-06-17'\n");
812 rtc_date_offset
= qemu_time() - rtc_start_date
;
816 static void configure_rtc(QemuOpts
*opts
)
820 value
= qemu_opt_get(opts
, "base");
822 if (!strcmp(value
, "utc")) {
824 } else if (!strcmp(value
, "localtime")) {
827 configure_rtc_date_offset(value
, 0);
830 value
= qemu_opt_get(opts
, "clock");
832 if (!strcmp(value
, "host")) {
833 rtc_clock
= QEMU_CLOCK_HOST
;
834 } else if (!strcmp(value
, "rt")) {
835 rtc_clock
= QEMU_CLOCK_REALTIME
;
836 } else if (!strcmp(value
, "vm")) {
837 rtc_clock
= QEMU_CLOCK_VIRTUAL
;
839 fprintf(stderr
, "qemu: invalid option value '%s'\n", value
);
843 value
= qemu_opt_get(opts
, "driftfix");
845 if (!strcmp(value
, "slew")) {
846 static GlobalProperty slew_lost_ticks
[] = {
848 .driver
= "mc146818rtc",
849 .property
= "lost_tick_policy",
852 { /* end of list */ }
855 qdev_prop_register_global_list(slew_lost_ticks
);
856 } else if (!strcmp(value
, "none")) {
857 /* discard is default */
859 fprintf(stderr
, "qemu: invalid option value '%s'\n", value
);
865 /***********************************************************/
866 /* Bluetooth support */
869 static struct HCIInfo
*hci_table
[MAX_NICS
];
871 struct HCIInfo
*qemu_next_hci(void)
873 if (cur_hci
== nb_hcis
)
876 return hci_table
[cur_hci
++];
879 static int bt_hci_parse(const char *str
)
884 if (nb_hcis
>= MAX_NICS
) {
885 fprintf(stderr
, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS
);
898 bdaddr
.b
[5] = 0x56 + nb_hcis
;
899 hci
->bdaddr_set(hci
, bdaddr
.b
);
901 hci_table
[nb_hcis
++] = hci
;
906 static void bt_vhci_add(int vlan_id
)
908 struct bt_scatternet_s
*vlan
= qemu_find_bt_vlan(vlan_id
);
911 fprintf(stderr
, "qemu: warning: adding a VHCI to "
912 "an empty scatternet %i\n", vlan_id
);
914 bt_vhci_init(bt_new_hci(vlan
));
917 static struct bt_device_s
*bt_device_add(const char *opt
)
919 struct bt_scatternet_s
*vlan
;
921 char *endp
= strstr(opt
, ",vlan=");
922 int len
= (endp
? endp
- opt
: strlen(opt
)) + 1;
925 pstrcpy(devname
, MIN(sizeof(devname
), len
), opt
);
928 vlan_id
= strtol(endp
+ 6, &endp
, 0);
930 fprintf(stderr
, "qemu: unrecognised bluetooth vlan Id\n");
935 vlan
= qemu_find_bt_vlan(vlan_id
);
938 fprintf(stderr
, "qemu: warning: adding a slave device to "
939 "an empty scatternet %i\n", vlan_id
);
941 if (!strcmp(devname
, "keyboard"))
942 return bt_keyboard_init(vlan
);
944 fprintf(stderr
, "qemu: unsupported bluetooth device `%s'\n", devname
);
948 static int bt_parse(const char *opt
)
950 const char *endp
, *p
;
953 if (strstart(opt
, "hci", &endp
)) {
954 if (!*endp
|| *endp
== ',') {
956 if (!strstart(endp
, ",vlan=", 0))
959 return bt_hci_parse(opt
);
961 } else if (strstart(opt
, "vhci", &endp
)) {
962 if (!*endp
|| *endp
== ',') {
964 if (strstart(endp
, ",vlan=", &p
)) {
965 vlan
= strtol(p
, (char **) &endp
, 0);
967 fprintf(stderr
, "qemu: bad scatternet '%s'\n", p
);
971 fprintf(stderr
, "qemu: bad parameter '%s'\n", endp
+ 1);
980 } else if (strstart(opt
, "device:", &endp
))
981 return !bt_device_add(endp
);
983 fprintf(stderr
, "qemu: bad bluetooth parameter '%s'\n", opt
);
987 static int parse_sandbox(void *opaque
, QemuOpts
*opts
, Error
**errp
)
989 /* FIXME: change this to true for 1.3 */
990 if (qemu_opt_get_bool(opts
, "enable", false)) {
991 #ifdef CONFIG_SECCOMP
992 if (seccomp_start() < 0) {
993 qerror_report(ERROR_CLASS_GENERIC_ERROR
,
994 "failed to install seccomp syscall filter in the kernel");
998 qerror_report(ERROR_CLASS_GENERIC_ERROR
,
999 "sandboxing request but seccomp is not compiled into this build");
1007 static int parse_name(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1009 const char *proc_name
;
1011 if (qemu_opt_get(opts
, "debug-threads")) {
1012 qemu_thread_naming(qemu_opt_get_bool(opts
, "debug-threads", false));
1014 qemu_name
= qemu_opt_get(opts
, "guest");
1016 proc_name
= qemu_opt_get(opts
, "process");
1018 os_set_proc_name(proc_name
);
1024 bool defaults_enabled(void)
1026 return has_defaults
;
1029 bool usb_enabled(void)
1031 return machine_usb(current_machine
);
1035 static int parse_add_fd(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1037 int fd
, dupfd
, flags
;
1039 const char *fd_opaque
= NULL
;
1042 fd
= qemu_opt_get_number(opts
, "fd", -1);
1043 fdset_id
= qemu_opt_get_number(opts
, "set", -1);
1044 fd_opaque
= qemu_opt_get(opts
, "opaque");
1047 qerror_report(ERROR_CLASS_GENERIC_ERROR
,
1048 "fd option is required and must be non-negative");
1052 if (fd
<= STDERR_FILENO
) {
1053 qerror_report(ERROR_CLASS_GENERIC_ERROR
,
1054 "fd cannot be a standard I/O stream");
1059 * All fds inherited across exec() necessarily have FD_CLOEXEC
1060 * clear, while qemu sets FD_CLOEXEC on all other fds used internally.
1062 flags
= fcntl(fd
, F_GETFD
);
1063 if (flags
== -1 || (flags
& FD_CLOEXEC
)) {
1064 qerror_report(ERROR_CLASS_GENERIC_ERROR
,
1065 "fd is not valid or already in use");
1070 qerror_report(ERROR_CLASS_GENERIC_ERROR
,
1071 "set option is required and must be non-negative");
1075 #ifdef F_DUPFD_CLOEXEC
1076 dupfd
= fcntl(fd
, F_DUPFD_CLOEXEC
, 0);
1080 qemu_set_cloexec(dupfd
);
1084 qerror_report(ERROR_CLASS_GENERIC_ERROR
,
1085 "Error duplicating fd: %s", strerror(errno
));
1089 /* add the duplicate fd, and optionally the opaque string, to the fd set */
1090 fdinfo
= monitor_fdset_add_fd(dupfd
, true, fdset_id
, !!fd_opaque
, fd_opaque
,
1097 static int cleanup_add_fd(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1101 fd
= qemu_opt_get_number(opts
, "fd", -1);
1108 /***********************************************************/
1109 /* QEMU Block devices */
1111 #define HD_OPTS "media=disk"
1112 #define CDROM_OPTS "media=cdrom"
1114 #define PFLASH_OPTS ""
1118 static int drive_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1120 BlockInterfaceType
*block_default_type
= opaque
;
1122 return drive_new(opts
, *block_default_type
) == NULL
;
1125 static int drive_enable_snapshot(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1127 if (qemu_opt_get(opts
, "snapshot") == NULL
) {
1128 qemu_opt_set(opts
, "snapshot", "on", &error_abort
);
1133 static void default_drive(int enable
, int snapshot
, BlockInterfaceType type
,
1134 int index
, const char *optstr
)
1139 if (!enable
|| drive_get_by_index(type
, index
)) {
1143 opts
= drive_add(type
, index
, NULL
, optstr
);
1145 drive_enable_snapshot(NULL
, opts
, NULL
);
1148 dinfo
= drive_new(opts
, type
);
1152 dinfo
->is_default
= true;
1156 static QemuOptsList qemu_smp_opts
= {
1158 .implied_opt_name
= "cpus",
1159 .merge_lists
= true,
1160 .head
= QTAILQ_HEAD_INITIALIZER(qemu_smp_opts
.head
),
1164 .type
= QEMU_OPT_NUMBER
,
1167 .type
= QEMU_OPT_NUMBER
,
1170 .type
= QEMU_OPT_NUMBER
,
1173 .type
= QEMU_OPT_NUMBER
,
1176 .type
= QEMU_OPT_NUMBER
,
1178 { /*End of list */ }
1182 static void smp_parse(QemuOpts
*opts
)
1186 unsigned cpus
= qemu_opt_get_number(opts
, "cpus", 0);
1187 unsigned sockets
= qemu_opt_get_number(opts
, "sockets", 0);
1188 unsigned cores
= qemu_opt_get_number(opts
, "cores", 0);
1189 unsigned threads
= qemu_opt_get_number(opts
, "threads", 0);
1191 /* compute missing values, prefer sockets over cores over threads */
1192 if (cpus
== 0 || sockets
== 0) {
1193 sockets
= sockets
> 0 ? sockets
: 1;
1194 cores
= cores
> 0 ? cores
: 1;
1195 threads
= threads
> 0 ? threads
: 1;
1197 cpus
= cores
* threads
* sockets
;
1199 } else if (cores
== 0) {
1200 threads
= threads
> 0 ? threads
: 1;
1201 cores
= cpus
/ (sockets
* threads
);
1202 } else if (threads
== 0) {
1203 threads
= cpus
/ (cores
* sockets
);
1204 } else if (sockets
* cores
* threads
< cpus
) {
1205 fprintf(stderr
, "cpu topology: error: "
1206 "sockets (%u) * cores (%u) * threads (%u) < "
1208 sockets
, cores
, threads
, cpus
);
1212 max_cpus
= qemu_opt_get_number(opts
, "maxcpus", 0);
1215 smp_cores
= cores
> 0 ? cores
: 1;
1216 smp_threads
= threads
> 0 ? threads
: 1;
1220 if (max_cpus
== 0) {
1221 max_cpus
= smp_cpus
;
1224 if (max_cpus
> MAX_CPUMASK_BITS
) {
1225 fprintf(stderr
, "Unsupported number of maxcpus\n");
1228 if (max_cpus
< smp_cpus
) {
1229 fprintf(stderr
, "maxcpus must be equal to or greater than smp\n");
1235 static void realtime_init(void)
1238 if (os_mlock() < 0) {
1239 fprintf(stderr
, "qemu: locking memory failed\n");
1246 static void configure_msg(QemuOpts
*opts
)
1248 enable_timestamp_msg
= qemu_opt_get_bool(opts
, "timestamp", true);
1251 /***********************************************************/
1254 typedef struct SemihostingConfig
{
1256 SemihostingTarget target
;
1259 const char *cmdline
; /* concatenated argv */
1260 } SemihostingConfig
;
1262 static SemihostingConfig semihosting
;
1264 bool semihosting_enabled(void)
1266 return semihosting
.enabled
;
1269 SemihostingTarget
semihosting_get_target(void)
1271 return semihosting
.target
;
1274 const char *semihosting_get_arg(int i
)
1276 if (i
>= semihosting
.argc
) {
1279 return semihosting
.argv
[i
];
1282 int semihosting_get_argc(void)
1284 return semihosting
.argc
;
1287 const char *semihosting_get_cmdline(void)
1289 if (semihosting
.cmdline
== NULL
&& semihosting
.argc
> 0) {
1290 semihosting
.cmdline
= g_strjoinv(" ", (gchar
**)semihosting
.argv
);
1292 return semihosting
.cmdline
;
1295 static int add_semihosting_arg(void *opaque
,
1296 const char *name
, const char *val
,
1299 SemihostingConfig
*s
= opaque
;
1300 if (strcmp(name
, "arg") == 0) {
1302 /* one extra element as g_strjoinv() expects NULL-terminated array */
1303 s
->argv
= g_realloc(s
->argv
, (s
->argc
+ 1) * sizeof(void *));
1304 s
->argv
[s
->argc
- 1] = val
;
1305 s
->argv
[s
->argc
] = NULL
;
1310 /* Use strings passed via -kernel/-append to initialize semihosting.argv[] */
1311 static inline void semihosting_arg_fallback(const char *file
, const char *cmd
)
1316 add_semihosting_arg(&semihosting
, "arg", file
, NULL
);
1318 /* split -append and initialize argv[1..n] */
1319 cmd_token
= strtok(g_strdup(cmd
), " ");
1321 add_semihosting_arg(&semihosting
, "arg", cmd_token
, NULL
);
1322 cmd_token
= strtok(NULL
, " ");
1326 /***********************************************************/
1329 static int usb_device_add(const char *devname
)
1331 USBDevice
*dev
= NULL
;
1332 #ifndef CONFIG_LINUX
1336 if (!usb_enabled()) {
1340 /* drivers with .usbdevice_name entry in USBDeviceInfo */
1341 dev
= usbdevice_create(devname
);
1345 /* the other ones */
1346 #ifndef CONFIG_LINUX
1347 /* only the linux version is qdev-ified, usb-bsd still needs this */
1348 if (strstart(devname
, "host:", &p
)) {
1349 dev
= usb_host_device_open(usb_bus_find(-1), p
);
1359 static int usb_device_del(const char *devname
)
1364 if (strstart(devname
, "host:", &p
)) {
1368 if (!usb_enabled()) {
1372 p
= strchr(devname
, '.');
1375 bus_num
= strtoul(devname
, NULL
, 0);
1376 addr
= strtoul(p
+ 1, NULL
, 0);
1378 return usb_device_delete_addr(bus_num
, addr
);
1381 static int usb_parse(const char *cmdline
)
1384 r
= usb_device_add(cmdline
);
1386 fprintf(stderr
, "qemu: could not add USB device '%s'\n", cmdline
);
1391 void hmp_usb_add(Monitor
*mon
, const QDict
*qdict
)
1393 const char *devname
= qdict_get_str(qdict
, "devname");
1394 if (usb_device_add(devname
) < 0) {
1395 error_report("could not add USB device '%s'", devname
);
1399 void hmp_usb_del(Monitor
*mon
, const QDict
*qdict
)
1401 const char *devname
= qdict_get_str(qdict
, "devname");
1402 if (usb_device_del(devname
) < 0) {
1403 error_report("could not delete USB device '%s'", devname
);
1407 /***********************************************************/
1408 /* machine registration */
1410 MachineState
*current_machine
;
1413 * Transitional class registration/init used for converting from
1414 * legacy QEMUMachine to MachineClass.
1416 static void qemu_machine_class_init(ObjectClass
*oc
, void *data
)
1418 MachineClass
*mc
= MACHINE_CLASS(oc
);
1419 QEMUMachine
*qm
= data
;
1420 mc
->name
= qm
->name
;
1421 mc
->desc
= qm
->desc
;
1422 mc
->init
= qm
->init
;
1423 mc
->kvm_type
= qm
->kvm_type
;
1424 mc
->block_default_type
= qm
->block_default_type
;
1425 mc
->max_cpus
= qm
->max_cpus
;
1426 mc
->no_sdcard
= qm
->no_sdcard
;
1427 mc
->has_dynamic_sysbus
= qm
->has_dynamic_sysbus
;
1428 mc
->is_default
= qm
->is_default
;
1429 mc
->default_machine_opts
= qm
->default_machine_opts
;
1430 mc
->default_boot_order
= qm
->default_boot_order
;
1433 int qemu_register_machine(QEMUMachine
*m
)
1435 char *name
= g_strconcat(m
->name
, TYPE_MACHINE_SUFFIX
, NULL
);
1438 .parent
= TYPE_MACHINE
,
1439 .class_init
= qemu_machine_class_init
,
1440 .class_data
= (void *)m
,
1449 static MachineClass
*find_machine(const char *name
)
1451 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
1452 MachineClass
*mc
= NULL
;
1454 for (el
= machines
; el
; el
= el
->next
) {
1455 MachineClass
*temp
= el
->data
;
1457 if (!strcmp(temp
->name
, name
)) {
1462 !strcmp(temp
->alias
, name
)) {
1468 g_slist_free(machines
);
1472 MachineClass
*find_default_machine(void)
1474 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
1475 MachineClass
*mc
= NULL
;
1477 for (el
= machines
; el
; el
= el
->next
) {
1478 MachineClass
*temp
= el
->data
;
1480 if (temp
->is_default
) {
1486 g_slist_free(machines
);
1490 MachineInfoList
*qmp_query_machines(Error
**errp
)
1492 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
1493 MachineInfoList
*mach_list
= NULL
;
1495 for (el
= machines
; el
; el
= el
->next
) {
1496 MachineClass
*mc
= el
->data
;
1497 MachineInfoList
*entry
;
1500 info
= g_malloc0(sizeof(*info
));
1501 if (mc
->is_default
) {
1502 info
->has_is_default
= true;
1503 info
->is_default
= true;
1507 info
->has_alias
= true;
1508 info
->alias
= g_strdup(mc
->alias
);
1511 info
->name
= g_strdup(mc
->name
);
1512 info
->cpu_max
= !mc
->max_cpus
? 1 : mc
->max_cpus
;
1514 entry
= g_malloc0(sizeof(*entry
));
1515 entry
->value
= info
;
1516 entry
->next
= mach_list
;
1520 g_slist_free(machines
);
1524 static int machine_help_func(QemuOpts
*opts
, MachineState
*machine
)
1526 ObjectProperty
*prop
;
1528 if (!qemu_opt_has_help_opt(opts
)) {
1532 QTAILQ_FOREACH(prop
, &OBJECT(machine
)->properties
, node
) {
1537 error_printf("%s.%s=%s", MACHINE_GET_CLASS(machine
)->name
,
1538 prop
->name
, prop
->type
);
1539 if (prop
->description
) {
1540 error_printf(" (%s)\n", prop
->description
);
1549 /***********************************************************/
1550 /* main execution loop */
1552 struct vm_change_state_entry
{
1553 VMChangeStateHandler
*cb
;
1555 QLIST_ENTRY (vm_change_state_entry
) entries
;
1558 static QLIST_HEAD(vm_change_state_head
, vm_change_state_entry
) vm_change_state_head
;
1560 VMChangeStateEntry
*qemu_add_vm_change_state_handler(VMChangeStateHandler
*cb
,
1563 VMChangeStateEntry
*e
;
1565 e
= g_malloc0(sizeof (*e
));
1569 QLIST_INSERT_HEAD(&vm_change_state_head
, e
, entries
);
1573 void qemu_del_vm_change_state_handler(VMChangeStateEntry
*e
)
1575 QLIST_REMOVE (e
, entries
);
1579 void vm_state_notify(int running
, RunState state
)
1581 VMChangeStateEntry
*e
, *next
;
1583 trace_vm_state_notify(running
, state
);
1585 QLIST_FOREACH_SAFE(e
, &vm_change_state_head
, entries
, next
) {
1586 e
->cb(e
->opaque
, running
, state
);
1590 /* reset/shutdown handler */
1592 typedef struct QEMUResetEntry
{
1593 QTAILQ_ENTRY(QEMUResetEntry
) entry
;
1594 QEMUResetHandler
*func
;
1598 static QTAILQ_HEAD(reset_handlers
, QEMUResetEntry
) reset_handlers
=
1599 QTAILQ_HEAD_INITIALIZER(reset_handlers
);
1600 static int reset_requested
;
1601 static int shutdown_requested
, shutdown_signal
= -1;
1602 static pid_t shutdown_pid
;
1603 static int powerdown_requested
;
1604 static int debug_requested
;
1605 static int suspend_requested
;
1606 static WakeupReason wakeup_reason
;
1607 static NotifierList powerdown_notifiers
=
1608 NOTIFIER_LIST_INITIALIZER(powerdown_notifiers
);
1609 static NotifierList suspend_notifiers
=
1610 NOTIFIER_LIST_INITIALIZER(suspend_notifiers
);
1611 static NotifierList wakeup_notifiers
=
1612 NOTIFIER_LIST_INITIALIZER(wakeup_notifiers
);
1613 static uint32_t wakeup_reason_mask
= ~(1 << QEMU_WAKEUP_REASON_NONE
);
1615 int qemu_shutdown_requested_get(void)
1617 return shutdown_requested
;
1620 int qemu_reset_requested_get(void)
1622 return reset_requested
;
1625 static int qemu_shutdown_requested(void)
1627 return atomic_xchg(&shutdown_requested
, 0);
1630 static void qemu_kill_report(void)
1632 if (!qtest_driver() && shutdown_signal
!= -1) {
1633 fprintf(stderr
, "qemu: terminating on signal %d", shutdown_signal
);
1634 if (shutdown_pid
== 0) {
1635 /* This happens for eg ^C at the terminal, so it's worth
1636 * avoiding printing an odd message in that case.
1638 fputc('\n', stderr
);
1640 fprintf(stderr
, " from pid " FMT_pid
"\n", shutdown_pid
);
1642 shutdown_signal
= -1;
1646 static int qemu_reset_requested(void)
1648 int r
= reset_requested
;
1649 reset_requested
= 0;
1653 static int qemu_suspend_requested(void)
1655 int r
= suspend_requested
;
1656 suspend_requested
= 0;
1660 static WakeupReason
qemu_wakeup_requested(void)
1662 return wakeup_reason
;
1665 static int qemu_powerdown_requested(void)
1667 int r
= powerdown_requested
;
1668 powerdown_requested
= 0;
1672 static int qemu_debug_requested(void)
1674 int r
= debug_requested
;
1675 debug_requested
= 0;
1679 void qemu_register_reset(QEMUResetHandler
*func
, void *opaque
)
1681 QEMUResetEntry
*re
= g_malloc0(sizeof(QEMUResetEntry
));
1684 re
->opaque
= opaque
;
1685 QTAILQ_INSERT_TAIL(&reset_handlers
, re
, entry
);
1688 void qemu_unregister_reset(QEMUResetHandler
*func
, void *opaque
)
1692 QTAILQ_FOREACH(re
, &reset_handlers
, entry
) {
1693 if (re
->func
== func
&& re
->opaque
== opaque
) {
1694 QTAILQ_REMOVE(&reset_handlers
, re
, entry
);
1701 void qemu_devices_reset(void)
1703 QEMUResetEntry
*re
, *nre
;
1705 /* reset all devices */
1706 QTAILQ_FOREACH_SAFE(re
, &reset_handlers
, entry
, nre
) {
1707 re
->func(re
->opaque
);
1711 void qemu_system_reset(bool report
)
1715 mc
= current_machine
? MACHINE_GET_CLASS(current_machine
) : NULL
;
1717 if (mc
&& mc
->reset
) {
1720 qemu_devices_reset();
1723 qapi_event_send_reset(&error_abort
);
1725 cpu_synchronize_all_post_reset();
1728 void qemu_system_reset_request(void)
1731 shutdown_requested
= 1;
1733 reset_requested
= 1;
1736 qemu_notify_event();
1739 static void qemu_system_suspend(void)
1742 notifier_list_notify(&suspend_notifiers
, NULL
);
1743 runstate_set(RUN_STATE_SUSPENDED
);
1744 qapi_event_send_suspend(&error_abort
);
1747 void qemu_system_suspend_request(void)
1749 if (runstate_check(RUN_STATE_SUSPENDED
)) {
1752 suspend_requested
= 1;
1754 qemu_notify_event();
1757 void qemu_register_suspend_notifier(Notifier
*notifier
)
1759 notifier_list_add(&suspend_notifiers
, notifier
);
1762 void qemu_system_wakeup_request(WakeupReason reason
)
1764 trace_system_wakeup_request(reason
);
1766 if (!runstate_check(RUN_STATE_SUSPENDED
)) {
1769 if (!(wakeup_reason_mask
& (1 << reason
))) {
1772 runstate_set(RUN_STATE_RUNNING
);
1773 wakeup_reason
= reason
;
1774 qemu_notify_event();
1777 void qemu_system_wakeup_enable(WakeupReason reason
, bool enabled
)
1780 wakeup_reason_mask
|= (1 << reason
);
1782 wakeup_reason_mask
&= ~(1 << reason
);
1786 void qemu_register_wakeup_notifier(Notifier
*notifier
)
1788 notifier_list_add(&wakeup_notifiers
, notifier
);
1791 void qemu_system_killed(int signal
, pid_t pid
)
1793 shutdown_signal
= signal
;
1796 qemu_system_shutdown_request();
1799 void qemu_system_shutdown_request(void)
1801 trace_qemu_system_shutdown_request();
1802 shutdown_requested
= 1;
1803 qemu_notify_event();
1806 static void qemu_system_powerdown(void)
1808 qapi_event_send_powerdown(&error_abort
);
1809 notifier_list_notify(&powerdown_notifiers
, NULL
);
1812 void qemu_system_powerdown_request(void)
1814 trace_qemu_system_powerdown_request();
1815 powerdown_requested
= 1;
1816 qemu_notify_event();
1819 void qemu_register_powerdown_notifier(Notifier
*notifier
)
1821 notifier_list_add(&powerdown_notifiers
, notifier
);
1824 void qemu_system_debug_request(void)
1826 debug_requested
= 1;
1827 qemu_notify_event();
1830 static bool main_loop_should_exit(void)
1833 if (qemu_debug_requested()) {
1834 vm_stop(RUN_STATE_DEBUG
);
1836 if (qemu_suspend_requested()) {
1837 qemu_system_suspend();
1839 if (qemu_shutdown_requested()) {
1841 qapi_event_send_shutdown(&error_abort
);
1843 vm_stop(RUN_STATE_SHUTDOWN
);
1848 if (qemu_reset_requested()) {
1850 cpu_synchronize_all_states();
1851 qemu_system_reset(VMRESET_REPORT
);
1853 if (runstate_needs_reset()) {
1854 runstate_set(RUN_STATE_PAUSED
);
1857 if (qemu_wakeup_requested()) {
1859 cpu_synchronize_all_states();
1860 qemu_system_reset(VMRESET_SILENT
);
1861 notifier_list_notify(&wakeup_notifiers
, &wakeup_reason
);
1862 wakeup_reason
= QEMU_WAKEUP_REASON_NONE
;
1864 qapi_event_send_wakeup(&error_abort
);
1866 if (qemu_powerdown_requested()) {
1867 qemu_system_powerdown();
1869 if (qemu_vmstop_requested(&r
)) {
1875 static void main_loop(void)
1879 #ifdef CONFIG_PROFILER
1883 nonblocking
= !kvm_enabled() && !xen_enabled() && last_io
> 0;
1884 #ifdef CONFIG_PROFILER
1885 ti
= profile_getclock();
1887 last_io
= main_loop_wait(nonblocking
);
1888 #ifdef CONFIG_PROFILER
1889 dev_time
+= profile_getclock() - ti
;
1891 } while (!main_loop_should_exit());
1894 static void version(void)
1896 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION
", Copyright (c) 2003-2008 Fabrice Bellard\n");
1899 static void help(int exitcode
)
1902 printf("usage: %s [options] [disk_image]\n\n"
1903 "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
1904 error_get_progname());
1906 #define QEMU_OPTIONS_GENERATE_HELP
1907 #include "qemu-options-wrapper.h"
1909 printf("\nDuring emulation, the following keys are useful:\n"
1910 "ctrl-alt-f toggle full screen\n"
1911 "ctrl-alt-n switch to virtual console 'n'\n"
1912 "ctrl-alt toggle mouse and keyboard grab\n"
1914 "When using -nographic, press 'ctrl-a h' to get some help.\n");
1919 #define HAS_ARG 0x0001
1921 typedef struct QEMUOption
{
1928 static const QEMUOption qemu_options
[] = {
1929 { "h", 0, QEMU_OPTION_h
, QEMU_ARCH_ALL
},
1930 #define QEMU_OPTIONS_GENERATE_OPTIONS
1931 #include "qemu-options-wrapper.h"
1935 static bool vga_available(void)
1937 return object_class_by_name("VGA") || object_class_by_name("isa-vga");
1940 static bool cirrus_vga_available(void)
1942 return object_class_by_name("cirrus-vga")
1943 || object_class_by_name("isa-cirrus-vga");
1946 static bool vmware_vga_available(void)
1948 return object_class_by_name("vmware-svga");
1951 static bool qxl_vga_available(void)
1953 return object_class_by_name("qxl-vga");
1956 static bool tcx_vga_available(void)
1958 return object_class_by_name("SUNW,tcx");
1961 static bool cg3_vga_available(void)
1963 return object_class_by_name("cgthree");
1966 static bool virtio_vga_available(void)
1968 return object_class_by_name("virtio-vga");
1971 static void select_vgahw (const char *p
)
1975 assert(vga_interface_type
== VGA_NONE
);
1976 if (strstart(p
, "std", &opts
)) {
1977 if (vga_available()) {
1978 vga_interface_type
= VGA_STD
;
1980 fprintf(stderr
, "Error: standard VGA not available\n");
1983 } else if (strstart(p
, "cirrus", &opts
)) {
1984 if (cirrus_vga_available()) {
1985 vga_interface_type
= VGA_CIRRUS
;
1987 fprintf(stderr
, "Error: Cirrus VGA not available\n");
1990 } else if (strstart(p
, "vmware", &opts
)) {
1991 if (vmware_vga_available()) {
1992 vga_interface_type
= VGA_VMWARE
;
1994 fprintf(stderr
, "Error: VMWare SVGA not available\n");
1997 } else if (strstart(p
, "virtio", &opts
)) {
1998 if (virtio_vga_available()) {
1999 vga_interface_type
= VGA_VIRTIO
;
2001 fprintf(stderr
, "Error: Virtio VGA not available\n");
2004 } else if (strstart(p
, "xenfb", &opts
)) {
2005 vga_interface_type
= VGA_XENFB
;
2006 } else if (strstart(p
, "qxl", &opts
)) {
2007 if (qxl_vga_available()) {
2008 vga_interface_type
= VGA_QXL
;
2010 fprintf(stderr
, "Error: QXL VGA not available\n");
2013 } else if (strstart(p
, "tcx", &opts
)) {
2014 if (tcx_vga_available()) {
2015 vga_interface_type
= VGA_TCX
;
2017 fprintf(stderr
, "Error: TCX framebuffer not available\n");
2020 } else if (strstart(p
, "cg3", &opts
)) {
2021 if (cg3_vga_available()) {
2022 vga_interface_type
= VGA_CG3
;
2024 fprintf(stderr
, "Error: CG3 framebuffer not available\n");
2027 } else if (!strstart(p
, "none", &opts
)) {
2029 fprintf(stderr
, "Unknown vga type: %s\n", p
);
2033 const char *nextopt
;
2035 if (strstart(opts
, ",retrace=", &nextopt
)) {
2037 if (strstart(opts
, "dumb", &nextopt
))
2038 vga_retrace_method
= VGA_RETRACE_DUMB
;
2039 else if (strstart(opts
, "precise", &nextopt
))
2040 vga_retrace_method
= VGA_RETRACE_PRECISE
;
2041 else goto invalid_vga
;
2042 } else goto invalid_vga
;
2047 static DisplayType
select_display(const char *p
)
2050 DisplayType display
= DT_DEFAULT
;
2052 if (strstart(p
, "sdl", &opts
)) {
2056 const char *nextopt
;
2058 if (strstart(opts
, ",frame=", &nextopt
)) {
2060 if (strstart(opts
, "on", &nextopt
)) {
2062 } else if (strstart(opts
, "off", &nextopt
)) {
2065 goto invalid_sdl_args
;
2067 } else if (strstart(opts
, ",alt_grab=", &nextopt
)) {
2069 if (strstart(opts
, "on", &nextopt
)) {
2071 } else if (strstart(opts
, "off", &nextopt
)) {
2074 goto invalid_sdl_args
;
2076 } else if (strstart(opts
, ",ctrl_grab=", &nextopt
)) {
2078 if (strstart(opts
, "on", &nextopt
)) {
2080 } else if (strstart(opts
, "off", &nextopt
)) {
2083 goto invalid_sdl_args
;
2085 } else if (strstart(opts
, ",window_close=", &nextopt
)) {
2087 if (strstart(opts
, "on", &nextopt
)) {
2089 } else if (strstart(opts
, "off", &nextopt
)) {
2092 goto invalid_sdl_args
;
2094 } else if (strstart(opts
, ",gl=", &nextopt
)) {
2096 if (strstart(opts
, "on", &nextopt
)) {
2098 } else if (strstart(opts
, "off", &nextopt
)) {
2101 goto invalid_sdl_args
;
2105 fprintf(stderr
, "Invalid SDL option string: %s\n", p
);
2111 fprintf(stderr
, "SDL support is disabled\n");
2114 } else if (strstart(p
, "vnc", &opts
)) {
2117 if (vnc_parse_func(opts
+1) == NULL
) {
2121 fprintf(stderr
, "VNC requires a display argument vnc=<display>\n");
2125 fprintf(stderr
, "VNC support is disabled\n");
2128 } else if (strstart(p
, "curses", &opts
)) {
2129 #ifdef CONFIG_CURSES
2130 display
= DT_CURSES
;
2132 fprintf(stderr
, "Curses support is disabled\n");
2135 } else if (strstart(p
, "gtk", &opts
)) {
2139 const char *nextopt
;
2141 if (strstart(opts
, ",grab_on_hover=", &nextopt
)) {
2143 if (strstart(opts
, "on", &nextopt
)) {
2144 grab_on_hover
= true;
2145 } else if (strstart(opts
, "off", &nextopt
)) {
2146 grab_on_hover
= false;
2148 goto invalid_gtk_args
;
2150 } else if (strstart(opts
, ",gl=", &nextopt
)) {
2152 if (strstart(opts
, "on", &nextopt
)) {
2154 } else if (strstart(opts
, "off", &nextopt
)) {
2157 goto invalid_gtk_args
;
2161 fprintf(stderr
, "Invalid GTK option string: %s\n", p
);
2167 fprintf(stderr
, "GTK support is disabled\n");
2170 } else if (strstart(p
, "none", &opts
)) {
2173 fprintf(stderr
, "Unknown display type: %s\n", p
);
2180 static int balloon_parse(const char *arg
)
2184 if (strcmp(arg
, "none") == 0) {
2188 if (!strncmp(arg
, "virtio", 6)) {
2189 if (arg
[6] == ',') {
2190 /* have params -> parse them */
2191 opts
= qemu_opts_parse(qemu_find_opts("device"), arg
+7, 0);
2195 /* create empty opts */
2196 opts
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
2199 qemu_opt_set(opts
, "driver", "virtio-balloon", &error_abort
);
2206 char *qemu_find_file(int type
, const char *name
)
2212 /* Try the name as a straight path first */
2213 if (access(name
, R_OK
) == 0) {
2214 trace_load_file(name
, name
);
2215 return g_strdup(name
);
2219 case QEMU_FILE_TYPE_BIOS
:
2222 case QEMU_FILE_TYPE_KEYMAP
:
2223 subdir
= "keymaps/";
2229 for (i
= 0; i
< data_dir_idx
; i
++) {
2230 buf
= g_strdup_printf("%s/%s%s", data_dir
[i
], subdir
, name
);
2231 if (access(buf
, R_OK
) == 0) {
2232 trace_load_file(name
, buf
);
2240 static int parse_fw_cfg(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2244 const char *name
, *file
;
2246 if (opaque
== NULL
) {
2247 error_report("fw_cfg device not available");
2250 name
= qemu_opt_get(opts
, "name");
2251 file
= qemu_opt_get(opts
, "file");
2252 if (name
== NULL
|| *name
== '\0' || file
== NULL
|| *file
== '\0') {
2253 error_report("invalid argument value");
2256 if (strlen(name
) > FW_CFG_MAX_FILE_PATH
- 1) {
2257 error_report("name too long (max. %d char)", FW_CFG_MAX_FILE_PATH
- 1);
2260 if (strncmp(name
, "opt/", 4) != 0) {
2261 error_report("WARNING: externally provided fw_cfg item names "
2262 "should be prefixed with \"opt/\"!");
2264 if (!g_file_get_contents(file
, &buf
, &size
, NULL
)) {
2265 error_report("can't load %s", file
);
2268 fw_cfg_add_file((FWCfgState
*)opaque
, name
, buf
, size
);
2272 static int device_help_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2274 return qdev_device_help(opts
);
2277 static int device_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2281 dev
= qdev_device_add(opts
);
2284 object_unref(OBJECT(dev
));
2288 static int chardev_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2290 Error
*local_err
= NULL
;
2292 qemu_chr_new_from_opts(opts
, NULL
, &local_err
);
2294 error_report_err(local_err
);
2300 #ifdef CONFIG_VIRTFS
2301 static int fsdev_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2304 ret
= qemu_fsdev_add(opts
);
2310 static int mon_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2312 CharDriverState
*chr
;
2313 const char *chardev
;
2317 mode
= qemu_opt_get(opts
, "mode");
2321 if (strcmp(mode
, "readline") == 0) {
2322 flags
= MONITOR_USE_READLINE
;
2323 } else if (strcmp(mode
, "control") == 0) {
2324 flags
= MONITOR_USE_CONTROL
;
2326 fprintf(stderr
, "unknown monitor mode \"%s\"\n", mode
);
2330 if (qemu_opt_get_bool(opts
, "pretty", 0))
2331 flags
|= MONITOR_USE_PRETTY
;
2333 if (qemu_opt_get_bool(opts
, "default", 0))
2334 flags
|= MONITOR_IS_DEFAULT
;
2336 chardev
= qemu_opt_get(opts
, "chardev");
2337 chr
= qemu_chr_find(chardev
);
2339 fprintf(stderr
, "chardev \"%s\" not found\n", chardev
);
2343 qemu_chr_fe_claim_no_fail(chr
);
2344 monitor_init(chr
, flags
);
2348 static void monitor_parse(const char *optarg
, const char *mode
, bool pretty
)
2350 static int monitor_device_index
= 0;
2351 Error
*local_err
= NULL
;
2357 if (strstart(optarg
, "chardev:", &p
)) {
2358 snprintf(label
, sizeof(label
), "%s", p
);
2360 snprintf(label
, sizeof(label
), "compat_monitor%d",
2361 monitor_device_index
);
2362 if (monitor_device_index
== 0) {
2365 opts
= qemu_chr_parse_compat(label
, optarg
);
2367 fprintf(stderr
, "parse error: %s\n", optarg
);
2372 opts
= qemu_opts_create(qemu_find_opts("mon"), label
, 1, &local_err
);
2374 error_report_err(local_err
);
2377 qemu_opt_set(opts
, "mode", mode
, &error_abort
);
2378 qemu_opt_set(opts
, "chardev", label
, &error_abort
);
2379 qemu_opt_set_bool(opts
, "pretty", pretty
, &error_abort
);
2381 qemu_opt_set(opts
, "default", "on", &error_abort
);
2382 monitor_device_index
++;
2385 struct device_config
{
2387 DEV_USB
, /* -usbdevice */
2389 DEV_SERIAL
, /* -serial */
2390 DEV_PARALLEL
, /* -parallel */
2391 DEV_VIRTCON
, /* -virtioconsole */
2392 DEV_DEBUGCON
, /* -debugcon */
2393 DEV_GDB
, /* -gdb, -s */
2394 DEV_SCLP
, /* s390 sclp */
2396 const char *cmdline
;
2398 QTAILQ_ENTRY(device_config
) next
;
2401 static QTAILQ_HEAD(, device_config
) device_configs
=
2402 QTAILQ_HEAD_INITIALIZER(device_configs
);
2404 static void add_device_config(int type
, const char *cmdline
)
2406 struct device_config
*conf
;
2408 conf
= g_malloc0(sizeof(*conf
));
2410 conf
->cmdline
= cmdline
;
2411 loc_save(&conf
->loc
);
2412 QTAILQ_INSERT_TAIL(&device_configs
, conf
, next
);
2415 static int foreach_device_config(int type
, int (*func
)(const char *cmdline
))
2417 struct device_config
*conf
;
2420 QTAILQ_FOREACH(conf
, &device_configs
, next
) {
2421 if (conf
->type
!= type
)
2423 loc_push_restore(&conf
->loc
);
2424 rc
= func(conf
->cmdline
);
2425 loc_pop(&conf
->loc
);
2433 static int serial_parse(const char *devname
)
2435 static int index
= 0;
2438 if (strcmp(devname
, "none") == 0)
2440 if (index
== MAX_SERIAL_PORTS
) {
2441 fprintf(stderr
, "qemu: too many serial ports\n");
2444 snprintf(label
, sizeof(label
), "serial%d", index
);
2445 serial_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2446 if (!serial_hds
[index
]) {
2447 fprintf(stderr
, "qemu: could not connect serial device"
2448 " to character backend '%s'\n", devname
);
2455 static int parallel_parse(const char *devname
)
2457 static int index
= 0;
2460 if (strcmp(devname
, "none") == 0)
2462 if (index
== MAX_PARALLEL_PORTS
) {
2463 fprintf(stderr
, "qemu: too many parallel ports\n");
2466 snprintf(label
, sizeof(label
), "parallel%d", index
);
2467 parallel_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2468 if (!parallel_hds
[index
]) {
2469 fprintf(stderr
, "qemu: could not connect parallel device"
2470 " to character backend '%s'\n", devname
);
2477 static int virtcon_parse(const char *devname
)
2479 QemuOptsList
*device
= qemu_find_opts("device");
2480 static int index
= 0;
2482 QemuOpts
*bus_opts
, *dev_opts
;
2484 if (strcmp(devname
, "none") == 0)
2486 if (index
== MAX_VIRTIO_CONSOLES
) {
2487 fprintf(stderr
, "qemu: too many virtio consoles\n");
2491 bus_opts
= qemu_opts_create(device
, NULL
, 0, &error_abort
);
2492 if (arch_type
== QEMU_ARCH_S390X
) {
2493 qemu_opt_set(bus_opts
, "driver", "virtio-serial-s390", &error_abort
);
2495 qemu_opt_set(bus_opts
, "driver", "virtio-serial-pci", &error_abort
);
2498 dev_opts
= qemu_opts_create(device
, NULL
, 0, &error_abort
);
2499 qemu_opt_set(dev_opts
, "driver", "virtconsole", &error_abort
);
2501 snprintf(label
, sizeof(label
), "virtcon%d", index
);
2502 virtcon_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2503 if (!virtcon_hds
[index
]) {
2504 fprintf(stderr
, "qemu: could not connect virtio console"
2505 " to character backend '%s'\n", devname
);
2508 qemu_opt_set(dev_opts
, "chardev", label
, &error_abort
);
2514 static int sclp_parse(const char *devname
)
2516 QemuOptsList
*device
= qemu_find_opts("device");
2517 static int index
= 0;
2521 if (strcmp(devname
, "none") == 0) {
2524 if (index
== MAX_SCLP_CONSOLES
) {
2525 fprintf(stderr
, "qemu: too many sclp consoles\n");
2529 assert(arch_type
== QEMU_ARCH_S390X
);
2531 dev_opts
= qemu_opts_create(device
, NULL
, 0, NULL
);
2532 qemu_opt_set(dev_opts
, "driver", "sclpconsole", &error_abort
);
2534 snprintf(label
, sizeof(label
), "sclpcon%d", index
);
2535 sclp_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2536 if (!sclp_hds
[index
]) {
2537 fprintf(stderr
, "qemu: could not connect sclp console"
2538 " to character backend '%s'\n", devname
);
2541 qemu_opt_set(dev_opts
, "chardev", label
, &error_abort
);
2547 static int debugcon_parse(const char *devname
)
2551 if (!qemu_chr_new("debugcon", devname
, NULL
)) {
2554 opts
= qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL
);
2556 fprintf(stderr
, "qemu: already have a debugcon device\n");
2559 qemu_opt_set(opts
, "driver", "isa-debugcon", &error_abort
);
2560 qemu_opt_set(opts
, "chardev", "debugcon", &error_abort
);
2564 static gint
machine_class_cmp(gconstpointer a
, gconstpointer b
)
2566 const MachineClass
*mc1
= a
, *mc2
= b
;
2569 if (mc1
->family
== NULL
) {
2570 if (mc2
->family
== NULL
) {
2571 /* Compare standalone machine types against each other; they sort
2572 * in increasing order.
2574 return strcmp(object_class_get_name(OBJECT_CLASS(mc1
)),
2575 object_class_get_name(OBJECT_CLASS(mc2
)));
2578 /* Standalone machine types sort after families. */
2582 if (mc2
->family
== NULL
) {
2583 /* Families sort before standalone machine types. */
2587 /* Families sort between each other alphabetically increasingly. */
2588 res
= strcmp(mc1
->family
, mc2
->family
);
2593 /* Within the same family, machine types sort in decreasing order. */
2594 return strcmp(object_class_get_name(OBJECT_CLASS(mc2
)),
2595 object_class_get_name(OBJECT_CLASS(mc1
)));
2598 static MachineClass
*machine_parse(const char *name
)
2600 MachineClass
*mc
= NULL
;
2601 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
2604 mc
= find_machine(name
);
2607 g_slist_free(machines
);
2610 if (name
&& !is_help_option(name
)) {
2611 error_report("Unsupported machine type");
2612 error_printf("Use -machine help to list supported machines!\n");
2614 printf("Supported machines are:\n");
2615 machines
= g_slist_sort(machines
, machine_class_cmp
);
2616 for (el
= machines
; el
; el
= el
->next
) {
2617 MachineClass
*mc
= el
->data
;
2619 printf("%-20s %s (alias of %s)\n", mc
->alias
, mc
->desc
, mc
->name
);
2621 printf("%-20s %s%s\n", mc
->name
, mc
->desc
,
2622 mc
->is_default
? " (default)" : "");
2626 g_slist_free(machines
);
2627 exit(!name
|| !is_help_option(name
));
2630 void qemu_add_exit_notifier(Notifier
*notify
)
2632 notifier_list_add(&exit_notifiers
, notify
);
2635 void qemu_remove_exit_notifier(Notifier
*notify
)
2637 notifier_remove(notify
);
2640 static void qemu_run_exit_notifiers(void)
2642 notifier_list_notify(&exit_notifiers
, NULL
);
2645 static bool machine_init_done
;
2647 void qemu_add_machine_init_done_notifier(Notifier
*notify
)
2649 notifier_list_add(&machine_init_done_notifiers
, notify
);
2650 if (machine_init_done
) {
2651 notify
->notify(notify
, NULL
);
2655 static void qemu_run_machine_init_done_notifiers(void)
2657 notifier_list_notify(&machine_init_done_notifiers
, NULL
);
2658 machine_init_done
= true;
2661 static const QEMUOption
*lookup_opt(int argc
, char **argv
,
2662 const char **poptarg
, int *poptind
)
2664 const QEMUOption
*popt
;
2665 int optind
= *poptind
;
2666 char *r
= argv
[optind
];
2669 loc_set_cmdline(argv
, optind
, 1);
2671 /* Treat --foo the same as -foo. */
2674 popt
= qemu_options
;
2677 error_report("invalid option");
2680 if (!strcmp(popt
->name
, r
+ 1))
2684 if (popt
->flags
& HAS_ARG
) {
2685 if (optind
>= argc
) {
2686 error_report("requires an argument");
2689 optarg
= argv
[optind
++];
2690 loc_set_cmdline(argv
, optind
- 2, 2);
2701 static gpointer
malloc_and_trace(gsize n_bytes
)
2703 void *ptr
= malloc(n_bytes
);
2704 trace_g_malloc(n_bytes
, ptr
);
2708 static gpointer
realloc_and_trace(gpointer mem
, gsize n_bytes
)
2710 void *ptr
= realloc(mem
, n_bytes
);
2711 trace_g_realloc(mem
, n_bytes
, ptr
);
2715 static void free_and_trace(gpointer mem
)
2721 static int machine_set_property(void *opaque
,
2722 const char *name
, const char *value
,
2725 Object
*obj
= OBJECT(opaque
);
2726 Error
*local_err
= NULL
;
2729 if (strcmp(name
, "type") == 0) {
2733 qom_name
= g_strdup(name
);
2741 object_property_parse(obj
, value
, qom_name
, &local_err
);
2745 error_report_err(local_err
);
2754 * Initial object creation happens before all other
2755 * QEMU data types are created. The majority of objects
2756 * can be created at this point. The rng-egd object
2757 * cannot be created here, as it depends on the chardev
2760 static bool object_create_initial(const char *type
)
2762 if (g_str_equal(type
, "rng-egd")) {
2770 * The remainder of object creation happens after the
2771 * creation of chardev, fsdev and device data types.
2773 static bool object_create_delayed(const char *type
)
2775 return !object_create_initial(type
);
2779 static int object_create(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2787 bool (*type_predicate
)(const char *) = opaque
;
2789 ov
= opts_visitor_new(opts
);
2790 pdict
= qemu_opts_to_qdict(opts
, NULL
);
2792 visit_start_struct(opts_get_visitor(ov
), &dummy
, NULL
, NULL
, 0, &err
);
2797 qdict_del(pdict
, "qom-type");
2798 visit_type_str(opts_get_visitor(ov
), &type
, "qom-type", &err
);
2802 if (!type_predicate(type
)) {
2806 qdict_del(pdict
, "id");
2807 visit_type_str(opts_get_visitor(ov
), &id
, "id", &err
);
2812 object_add(type
, id
, pdict
, opts_get_visitor(ov
), &err
);
2816 visit_end_struct(opts_get_visitor(ov
), &err
);
2818 qmp_object_del(id
, NULL
);
2822 opts_visitor_cleanup(ov
);
2829 error_report_err(err
);
2835 static void set_memory_options(uint64_t *ram_slots
, ram_addr_t
*maxram_size
,
2839 const char *mem_str
;
2840 const char *maxmem_str
, *slots_str
;
2841 const ram_addr_t default_ram_size
= mc
->default_ram_size
;
2842 QemuOpts
*opts
= qemu_find_opts_singleton("memory");
2845 mem_str
= qemu_opt_get(opts
, "size");
2848 error_report("missing 'size' option value");
2852 sz
= qemu_opt_get_size(opts
, "size", ram_size
);
2854 /* Fix up legacy suffix-less format */
2855 if (g_ascii_isdigit(mem_str
[strlen(mem_str
) - 1])) {
2856 uint64_t overflow_check
= sz
;
2859 if ((sz
>> 20) != overflow_check
) {
2860 error_report("too large 'size' option value");
2866 /* backward compatibility behaviour for case "-m 0" */
2868 sz
= default_ram_size
;
2871 sz
= QEMU_ALIGN_UP(sz
, 8192);
2873 if (ram_size
!= sz
) {
2874 error_report("ram size too large");
2878 /* store value for the future use */
2879 qemu_opt_set_number(opts
, "size", ram_size
, &error_abort
);
2880 *maxram_size
= ram_size
;
2882 maxmem_str
= qemu_opt_get(opts
, "maxmem");
2883 slots_str
= qemu_opt_get(opts
, "slots");
2884 if (maxmem_str
&& slots_str
) {
2887 sz
= qemu_opt_get_size(opts
, "maxmem", 0);
2888 slots
= qemu_opt_get_number(opts
, "slots", 0);
2889 if (sz
< ram_size
) {
2890 error_report("invalid value of -m option maxmem: "
2891 "maximum memory size (0x%" PRIx64
") must be at least "
2892 "the initial memory size (0x" RAM_ADDR_FMT
")",
2895 } else if (sz
> ram_size
) {
2897 error_report("invalid value of -m option: maxmem was "
2898 "specified, but no hotplug slots were specified");
2902 error_report("invalid value of -m option maxmem: "
2903 "memory slots were specified but maximum memory size "
2904 "(0x%" PRIx64
") is equal to the initial memory size "
2905 "(0x" RAM_ADDR_FMT
")", sz
, ram_size
);
2911 } else if ((!maxmem_str
&& slots_str
) ||
2912 (maxmem_str
&& !slots_str
)) {
2913 error_report("invalid -m option value: missing "
2914 "'%s' option", slots_str
? "maxmem" : "slots");
2919 int main(int argc
, char **argv
, char **envp
)
2922 int snapshot
, linux_boot
;
2923 const char *initrd_filename
;
2924 const char *kernel_filename
, *kernel_cmdline
;
2925 const char *boot_order
= NULL
;
2926 const char *boot_once
= NULL
;
2928 int cyls
, heads
, secs
, translation
;
2929 QemuOpts
*hda_opts
= NULL
, *opts
, *machine_opts
, *icount_opts
= NULL
;
2930 QemuOptsList
*olist
;
2933 const char *loadvm
= NULL
;
2934 MachineClass
*machine_class
;
2935 const char *cpu_model
;
2936 const char *vga_model
= NULL
;
2937 const char *qtest_chrdev
= NULL
;
2938 const char *qtest_log
= NULL
;
2939 const char *pid_file
= NULL
;
2940 const char *incoming
= NULL
;
2942 int show_vnc_port
= 0;
2944 bool defconfig
= true;
2945 bool userconfig
= true;
2946 const char *log_mask
= NULL
;
2947 const char *log_file
= NULL
;
2948 GMemVTable mem_trace
= {
2949 .malloc
= malloc_and_trace
,
2950 .realloc
= realloc_and_trace
,
2951 .free
= free_and_trace
,
2953 const char *trace_events
= NULL
;
2954 const char *trace_file
= NULL
;
2955 ram_addr_t maxram_size
;
2956 uint64_t ram_slots
= 0;
2957 FILE *vmstate_dump_file
= NULL
;
2958 Error
*main_loop_err
= NULL
;
2960 qemu_init_cpu_loop();
2961 qemu_mutex_lock_iothread();
2963 atexit(qemu_run_exit_notifiers
);
2964 error_set_progname(argv
[0]);
2965 qemu_init_exec_dir(argv
[0]);
2967 g_mem_set_vtable(&mem_trace
);
2969 module_call_init(MODULE_INIT_QOM
);
2971 qemu_add_opts(&qemu_drive_opts
);
2972 qemu_add_drive_opts(&qemu_legacy_drive_opts
);
2973 qemu_add_drive_opts(&qemu_common_drive_opts
);
2974 qemu_add_drive_opts(&qemu_drive_opts
);
2975 qemu_add_opts(&qemu_chardev_opts
);
2976 qemu_add_opts(&qemu_device_opts
);
2977 qemu_add_opts(&qemu_netdev_opts
);
2978 qemu_add_opts(&qemu_net_opts
);
2979 qemu_add_opts(&qemu_rtc_opts
);
2980 qemu_add_opts(&qemu_global_opts
);
2981 qemu_add_opts(&qemu_mon_opts
);
2982 qemu_add_opts(&qemu_trace_opts
);
2983 qemu_add_opts(&qemu_option_rom_opts
);
2984 qemu_add_opts(&qemu_machine_opts
);
2985 qemu_add_opts(&qemu_mem_opts
);
2986 qemu_add_opts(&qemu_smp_opts
);
2987 qemu_add_opts(&qemu_boot_opts
);
2988 qemu_add_opts(&qemu_sandbox_opts
);
2989 qemu_add_opts(&qemu_add_fd_opts
);
2990 qemu_add_opts(&qemu_object_opts
);
2991 qemu_add_opts(&qemu_tpmdev_opts
);
2992 qemu_add_opts(&qemu_realtime_opts
);
2993 qemu_add_opts(&qemu_msg_opts
);
2994 qemu_add_opts(&qemu_name_opts
);
2995 qemu_add_opts(&qemu_numa_opts
);
2996 qemu_add_opts(&qemu_icount_opts
);
2997 qemu_add_opts(&qemu_semihosting_config_opts
);
2998 qemu_add_opts(&qemu_fw_cfg_opts
);
3002 rtc_clock
= QEMU_CLOCK_HOST
;
3004 QLIST_INIT (&vm_change_state_head
);
3005 os_setup_early_signal_handling();
3007 module_call_init(MODULE_INIT_MACHINE
);
3008 machine_class
= find_default_machine();
3011 cyls
= heads
= secs
= 0;
3012 translation
= BIOS_ATA_TRANSLATION_AUTO
;
3016 bdrv_init_with_whitelist();
3020 /* first pass of option parsing */
3022 while (optind
< argc
) {
3023 if (argv
[optind
][0] != '-') {
3027 const QEMUOption
*popt
;
3029 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
3030 switch (popt
->index
) {
3031 case QEMU_OPTION_nodefconfig
:
3034 case QEMU_OPTION_nouserconfig
:
3043 ret
= qemu_read_default_config_files(userconfig
);
3049 /* second pass of option parsing */
3054 if (argv
[optind
][0] != '-') {
3055 hda_opts
= drive_add(IF_DEFAULT
, 0, argv
[optind
++], HD_OPTS
);
3057 const QEMUOption
*popt
;
3059 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
3060 if (!(popt
->arch_mask
& arch_type
)) {
3061 printf("Option %s not supported for this target\n", popt
->name
);
3064 switch(popt
->index
) {
3065 case QEMU_OPTION_no_kvm_irqchip
: {
3066 olist
= qemu_find_opts("machine");
3067 qemu_opts_parse(olist
, "kernel_irqchip=off", 0);
3070 case QEMU_OPTION_cpu
:
3071 /* hw initialization will check this */
3074 case QEMU_OPTION_hda
:
3078 snprintf(buf
, sizeof(buf
), "%s", HD_OPTS
);
3080 snprintf(buf
, sizeof(buf
),
3081 "%s,cyls=%d,heads=%d,secs=%d%s",
3082 HD_OPTS
, cyls
, heads
, secs
,
3083 translation
== BIOS_ATA_TRANSLATION_LBA
?
3085 translation
== BIOS_ATA_TRANSLATION_NONE
?
3086 ",trans=none" : "");
3087 drive_add(IF_DEFAULT
, 0, optarg
, buf
);
3090 case QEMU_OPTION_hdb
:
3091 case QEMU_OPTION_hdc
:
3092 case QEMU_OPTION_hdd
:
3093 drive_add(IF_DEFAULT
, popt
->index
- QEMU_OPTION_hda
, optarg
,
3096 case QEMU_OPTION_drive
:
3097 if (drive_def(optarg
) == NULL
) {
3101 case QEMU_OPTION_set
:
3102 if (qemu_set_option(optarg
) != 0)
3105 case QEMU_OPTION_global
:
3106 if (qemu_global_option(optarg
) != 0)
3109 case QEMU_OPTION_mtdblock
:
3110 drive_add(IF_MTD
, -1, optarg
, MTD_OPTS
);
3112 case QEMU_OPTION_sd
:
3113 drive_add(IF_SD
, -1, optarg
, SD_OPTS
);
3115 case QEMU_OPTION_pflash
:
3116 drive_add(IF_PFLASH
, -1, optarg
, PFLASH_OPTS
);
3118 case QEMU_OPTION_snapshot
:
3121 case QEMU_OPTION_hdachs
:
3125 cyls
= strtol(p
, (char **)&p
, 0);
3126 if (cyls
< 1 || cyls
> 16383)
3131 heads
= strtol(p
, (char **)&p
, 0);
3132 if (heads
< 1 || heads
> 16)
3137 secs
= strtol(p
, (char **)&p
, 0);
3138 if (secs
< 1 || secs
> 63)
3142 if (!strcmp(p
, "large")) {
3143 translation
= BIOS_ATA_TRANSLATION_LARGE
;
3144 } else if (!strcmp(p
, "rechs")) {
3145 translation
= BIOS_ATA_TRANSLATION_RECHS
;
3146 } else if (!strcmp(p
, "none")) {
3147 translation
= BIOS_ATA_TRANSLATION_NONE
;
3148 } else if (!strcmp(p
, "lba")) {
3149 translation
= BIOS_ATA_TRANSLATION_LBA
;
3150 } else if (!strcmp(p
, "auto")) {
3151 translation
= BIOS_ATA_TRANSLATION_AUTO
;
3155 } else if (*p
!= '\0') {
3157 fprintf(stderr
, "qemu: invalid physical CHS format\n");
3160 if (hda_opts
!= NULL
) {
3161 qemu_opt_set_number(hda_opts
, "cyls", cyls
,
3163 qemu_opt_set_number(hda_opts
, "heads", heads
,
3165 qemu_opt_set_number(hda_opts
, "secs", secs
,
3167 if (translation
== BIOS_ATA_TRANSLATION_LARGE
) {
3168 qemu_opt_set(hda_opts
, "trans", "large",
3170 } else if (translation
== BIOS_ATA_TRANSLATION_RECHS
) {
3171 qemu_opt_set(hda_opts
, "trans", "rechs",
3173 } else if (translation
== BIOS_ATA_TRANSLATION_LBA
) {
3174 qemu_opt_set(hda_opts
, "trans", "lba",
3176 } else if (translation
== BIOS_ATA_TRANSLATION_NONE
) {
3177 qemu_opt_set(hda_opts
, "trans", "none",
3183 case QEMU_OPTION_numa
:
3184 opts
= qemu_opts_parse(qemu_find_opts("numa"), optarg
, 1);
3189 case QEMU_OPTION_display
:
3190 display_type
= select_display(optarg
);
3192 case QEMU_OPTION_nographic
:
3193 display_type
= DT_NOGRAPHIC
;
3195 case QEMU_OPTION_curses
:
3196 #ifdef CONFIG_CURSES
3197 display_type
= DT_CURSES
;
3199 fprintf(stderr
, "Curses support is disabled\n");
3203 case QEMU_OPTION_portrait
:
3204 graphic_rotate
= 90;
3206 case QEMU_OPTION_rotate
:
3207 graphic_rotate
= strtol(optarg
, (char **) &optarg
, 10);
3208 if (graphic_rotate
!= 0 && graphic_rotate
!= 90 &&
3209 graphic_rotate
!= 180 && graphic_rotate
!= 270) {
3211 "qemu: only 90, 180, 270 deg rotation is available\n");
3215 case QEMU_OPTION_kernel
:
3216 qemu_opts_set(qemu_find_opts("machine"), 0, "kernel", optarg
,
3219 case QEMU_OPTION_initrd
:
3220 qemu_opts_set(qemu_find_opts("machine"), 0, "initrd", optarg
,
3223 case QEMU_OPTION_append
:
3224 qemu_opts_set(qemu_find_opts("machine"), 0, "append", optarg
,
3227 case QEMU_OPTION_dtb
:
3228 qemu_opts_set(qemu_find_opts("machine"), 0, "dtb", optarg
,
3231 case QEMU_OPTION_cdrom
:
3232 drive_add(IF_DEFAULT
, 2, optarg
, CDROM_OPTS
);
3234 case QEMU_OPTION_boot
:
3235 opts
= qemu_opts_parse(qemu_find_opts("boot-opts"), optarg
, 1);
3240 case QEMU_OPTION_fda
:
3241 case QEMU_OPTION_fdb
:
3242 drive_add(IF_FLOPPY
, popt
->index
- QEMU_OPTION_fda
,
3245 case QEMU_OPTION_no_fd_bootchk
:
3248 case QEMU_OPTION_netdev
:
3249 if (net_client_parse(qemu_find_opts("netdev"), optarg
) == -1) {
3253 case QEMU_OPTION_net
:
3254 if (net_client_parse(qemu_find_opts("net"), optarg
) == -1) {
3258 #ifdef CONFIG_LIBISCSI
3259 case QEMU_OPTION_iscsi
:
3260 opts
= qemu_opts_parse(qemu_find_opts("iscsi"), optarg
, 0);
3267 case QEMU_OPTION_tftp
:
3268 legacy_tftp_prefix
= optarg
;
3270 case QEMU_OPTION_bootp
:
3271 legacy_bootp_filename
= optarg
;
3273 case QEMU_OPTION_redir
:
3274 if (net_slirp_redir(optarg
) < 0)
3278 case QEMU_OPTION_bt
:
3279 add_device_config(DEV_BT
, optarg
);
3281 case QEMU_OPTION_audio_help
:
3285 case QEMU_OPTION_soundhw
:
3286 select_soundhw (optarg
);
3291 case QEMU_OPTION_version
:
3296 opts
= qemu_opts_parse(qemu_find_opts("memory"),
3303 case QEMU_OPTION_tpmdev
:
3304 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg
) < 0) {
3309 case QEMU_OPTION_mempath
:
3312 case QEMU_OPTION_mem_prealloc
:
3322 add_device_config(DEV_GDB
, "tcp::" DEFAULT_GDBSTUB_PORT
);
3324 case QEMU_OPTION_gdb
:
3325 add_device_config(DEV_GDB
, optarg
);
3328 if (data_dir_idx
< ARRAY_SIZE(data_dir
)) {
3329 data_dir
[data_dir_idx
++] = optarg
;
3332 case QEMU_OPTION_bios
:
3333 qemu_opts_set(qemu_find_opts("machine"), 0, "firmware", optarg
,
3336 case QEMU_OPTION_singlestep
:
3343 keyboard_layout
= optarg
;
3345 case QEMU_OPTION_localtime
:
3348 case QEMU_OPTION_vga
:
3357 w
= strtol(p
, (char **)&p
, 10);
3360 fprintf(stderr
, "qemu: invalid resolution or depth\n");
3366 h
= strtol(p
, (char **)&p
, 10);
3371 depth
= strtol(p
, (char **)&p
, 10);
3372 if (depth
!= 8 && depth
!= 15 && depth
!= 16 &&
3373 depth
!= 24 && depth
!= 32)
3375 } else if (*p
== '\0') {
3376 depth
= graphic_depth
;
3383 graphic_depth
= depth
;
3386 case QEMU_OPTION_echr
:
3389 term_escape_char
= strtol(optarg
, &r
, 0);
3391 printf("Bad argument to echr\n");
3394 case QEMU_OPTION_monitor
:
3395 default_monitor
= 0;
3396 if (strncmp(optarg
, "none", 4)) {
3397 monitor_parse(optarg
, "readline", false);
3400 case QEMU_OPTION_qmp
:
3401 monitor_parse(optarg
, "control", false);
3402 default_monitor
= 0;
3404 case QEMU_OPTION_qmp_pretty
:
3405 monitor_parse(optarg
, "control", true);
3406 default_monitor
= 0;
3408 case QEMU_OPTION_mon
:
3409 opts
= qemu_opts_parse(qemu_find_opts("mon"), optarg
, 1);
3413 default_monitor
= 0;
3415 case QEMU_OPTION_chardev
:
3416 opts
= qemu_opts_parse(qemu_find_opts("chardev"), optarg
, 1);
3421 case QEMU_OPTION_fsdev
:
3422 olist
= qemu_find_opts("fsdev");
3424 fprintf(stderr
, "fsdev is not supported by this qemu build.\n");
3427 opts
= qemu_opts_parse(olist
, optarg
, 1);
3432 case QEMU_OPTION_virtfs
: {
3435 const char *writeout
, *sock_fd
, *socket
;
3437 olist
= qemu_find_opts("virtfs");
3439 fprintf(stderr
, "virtfs is not supported by this qemu build.\n");
3442 opts
= qemu_opts_parse(olist
, optarg
, 1);
3447 if (qemu_opt_get(opts
, "fsdriver") == NULL
||
3448 qemu_opt_get(opts
, "mount_tag") == NULL
) {
3449 fprintf(stderr
, "Usage: -virtfs fsdriver,mount_tag=tag.\n");
3452 fsdev
= qemu_opts_create(qemu_find_opts("fsdev"),
3453 qemu_opt_get(opts
, "mount_tag"),
3456 fprintf(stderr
, "duplicate fsdev id: %s\n",
3457 qemu_opt_get(opts
, "mount_tag"));
3461 writeout
= qemu_opt_get(opts
, "writeout");
3463 #ifdef CONFIG_SYNC_FILE_RANGE
3464 qemu_opt_set(fsdev
, "writeout", writeout
, &error_abort
);
3466 fprintf(stderr
, "writeout=immediate not supported on "
3471 qemu_opt_set(fsdev
, "fsdriver",
3472 qemu_opt_get(opts
, "fsdriver"), &error_abort
);
3473 qemu_opt_set(fsdev
, "path", qemu_opt_get(opts
, "path"),
3475 qemu_opt_set(fsdev
, "security_model",
3476 qemu_opt_get(opts
, "security_model"),
3478 socket
= qemu_opt_get(opts
, "socket");
3480 qemu_opt_set(fsdev
, "socket", socket
, &error_abort
);
3482 sock_fd
= qemu_opt_get(opts
, "sock_fd");
3484 qemu_opt_set(fsdev
, "sock_fd", sock_fd
, &error_abort
);
3487 qemu_opt_set_bool(fsdev
, "readonly",
3488 qemu_opt_get_bool(opts
, "readonly", 0),
3490 device
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
3492 qemu_opt_set(device
, "driver", "virtio-9p-pci", &error_abort
);
3493 qemu_opt_set(device
, "fsdev",
3494 qemu_opt_get(opts
, "mount_tag"), &error_abort
);
3495 qemu_opt_set(device
, "mount_tag",
3496 qemu_opt_get(opts
, "mount_tag"), &error_abort
);
3499 case QEMU_OPTION_virtfs_synth
: {
3503 fsdev
= qemu_opts_create(qemu_find_opts("fsdev"), "v_synth",
3506 fprintf(stderr
, "duplicate option: %s\n", "virtfs_synth");
3509 qemu_opt_set(fsdev
, "fsdriver", "synth", &error_abort
);
3511 device
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
3513 qemu_opt_set(device
, "driver", "virtio-9p-pci", &error_abort
);
3514 qemu_opt_set(device
, "fsdev", "v_synth", &error_abort
);
3515 qemu_opt_set(device
, "mount_tag", "v_synth", &error_abort
);
3518 case QEMU_OPTION_serial
:
3519 add_device_config(DEV_SERIAL
, optarg
);
3521 if (strncmp(optarg
, "mon:", 4) == 0) {
3522 default_monitor
= 0;
3525 case QEMU_OPTION_watchdog
:
3528 "qemu: only one watchdog option may be given\n");
3533 case QEMU_OPTION_watchdog_action
:
3534 if (select_watchdog_action(optarg
) == -1) {
3535 fprintf(stderr
, "Unknown -watchdog-action parameter\n");
3539 case QEMU_OPTION_virtiocon
:
3540 add_device_config(DEV_VIRTCON
, optarg
);
3541 default_virtcon
= 0;
3542 if (strncmp(optarg
, "mon:", 4) == 0) {
3543 default_monitor
= 0;
3546 case QEMU_OPTION_parallel
:
3547 add_device_config(DEV_PARALLEL
, optarg
);
3548 default_parallel
= 0;
3549 if (strncmp(optarg
, "mon:", 4) == 0) {
3550 default_monitor
= 0;
3553 case QEMU_OPTION_debugcon
:
3554 add_device_config(DEV_DEBUGCON
, optarg
);
3556 case QEMU_OPTION_loadvm
:
3559 case QEMU_OPTION_full_screen
:
3562 case QEMU_OPTION_no_frame
:
3565 case QEMU_OPTION_alt_grab
:
3568 case QEMU_OPTION_ctrl_grab
:
3571 case QEMU_OPTION_no_quit
:
3574 case QEMU_OPTION_sdl
:
3576 display_type
= DT_SDL
;
3579 fprintf(stderr
, "SDL support is disabled\n");
3582 case QEMU_OPTION_pidfile
:
3585 case QEMU_OPTION_win2k_hack
:
3586 win2k_install_hack
= 1;
3588 case QEMU_OPTION_rtc_td_hack
: {
3589 static GlobalProperty slew_lost_ticks
[] = {
3591 .driver
= "mc146818rtc",
3592 .property
= "lost_tick_policy",
3595 { /* end of list */ }
3598 qdev_prop_register_global_list(slew_lost_ticks
);
3601 case QEMU_OPTION_acpitable
:
3602 opts
= qemu_opts_parse(qemu_find_opts("acpi"), optarg
, 1);
3606 do_acpitable_option(opts
);
3608 case QEMU_OPTION_smbios
:
3609 opts
= qemu_opts_parse(qemu_find_opts("smbios"), optarg
, 0);
3613 do_smbios_option(opts
);
3615 case QEMU_OPTION_fwcfg
:
3616 opts
= qemu_opts_parse(qemu_find_opts("fw_cfg"), optarg
, 1);
3621 case QEMU_OPTION_enable_kvm
:
3622 olist
= qemu_find_opts("machine");
3623 qemu_opts_parse(olist
, "accel=kvm", 0);
3626 case QEMU_OPTION_machine
:
3627 olist
= qemu_find_opts("machine");
3628 opts
= qemu_opts_parse(olist
, optarg
, 1);
3633 case QEMU_OPTION_no_kvm
:
3634 olist
= qemu_find_opts("machine");
3635 qemu_opts_parse(olist
, "accel=tcg", 0);
3637 case QEMU_OPTION_no_kvm_pit
: {
3638 fprintf(stderr
, "Warning: KVM PIT can no longer be disabled "
3642 case QEMU_OPTION_no_kvm_pit_reinjection
: {
3643 static GlobalProperty kvm_pit_lost_tick_policy
[] = {
3645 .driver
= "kvm-pit",
3646 .property
= "lost_tick_policy",
3649 { /* end of list */ }
3652 fprintf(stderr
, "Warning: option deprecated, use "
3653 "lost_tick_policy property of kvm-pit instead.\n");
3654 qdev_prop_register_global_list(kvm_pit_lost_tick_policy
);
3657 case QEMU_OPTION_usb
:
3658 olist
= qemu_find_opts("machine");
3659 qemu_opts_parse(olist
, "usb=on", 0);
3661 case QEMU_OPTION_usbdevice
:
3662 olist
= qemu_find_opts("machine");
3663 qemu_opts_parse(olist
, "usb=on", 0);
3664 add_device_config(DEV_USB
, optarg
);
3666 case QEMU_OPTION_device
:
3667 if (!qemu_opts_parse(qemu_find_opts("device"), optarg
, 1)) {
3671 case QEMU_OPTION_smp
:
3672 if (!qemu_opts_parse(qemu_find_opts("smp-opts"), optarg
, 1)) {
3676 case QEMU_OPTION_vnc
:
3678 if (vnc_parse_func(optarg
) == NULL
) {
3682 fprintf(stderr
, "VNC support is disabled\n");
3686 case QEMU_OPTION_no_acpi
:
3689 case QEMU_OPTION_no_hpet
:
3692 case QEMU_OPTION_balloon
:
3693 if (balloon_parse(optarg
) < 0) {
3694 fprintf(stderr
, "Unknown -balloon argument %s\n", optarg
);
3698 case QEMU_OPTION_no_reboot
:
3701 case QEMU_OPTION_no_shutdown
:
3704 case QEMU_OPTION_show_cursor
:
3707 case QEMU_OPTION_uuid
:
3708 if(qemu_uuid_parse(optarg
, qemu_uuid
) < 0) {
3709 fprintf(stderr
, "Fail to parse UUID string."
3710 " Wrong format.\n");
3713 qemu_uuid_set
= true;
3715 case QEMU_OPTION_option_rom
:
3716 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
3717 fprintf(stderr
, "Too many option ROMs\n");
3720 opts
= qemu_opts_parse(qemu_find_opts("option-rom"), optarg
, 1);
3724 option_rom
[nb_option_roms
].name
= qemu_opt_get(opts
, "romfile");
3725 option_rom
[nb_option_roms
].bootindex
=
3726 qemu_opt_get_number(opts
, "bootindex", -1);
3727 if (!option_rom
[nb_option_roms
].name
) {
3728 fprintf(stderr
, "Option ROM file is not specified\n");
3733 case QEMU_OPTION_semihosting
:
3734 semihosting
.enabled
= true;
3735 semihosting
.target
= SEMIHOSTING_TARGET_AUTO
;
3737 case QEMU_OPTION_semihosting_config
:
3738 semihosting
.enabled
= true;
3739 opts
= qemu_opts_parse(qemu_find_opts("semihosting-config"),
3742 semihosting
.enabled
= qemu_opt_get_bool(opts
, "enable",
3744 const char *target
= qemu_opt_get(opts
, "target");
3745 if (target
!= NULL
) {
3746 if (strcmp("native", target
) == 0) {
3747 semihosting
.target
= SEMIHOSTING_TARGET_NATIVE
;
3748 } else if (strcmp("gdb", target
) == 0) {
3749 semihosting
.target
= SEMIHOSTING_TARGET_GDB
;
3750 } else if (strcmp("auto", target
) == 0) {
3751 semihosting
.target
= SEMIHOSTING_TARGET_AUTO
;
3753 fprintf(stderr
, "Unsupported semihosting-config"
3759 semihosting
.target
= SEMIHOSTING_TARGET_AUTO
;
3761 /* Set semihosting argument count and vector */
3762 qemu_opt_foreach(opts
, add_semihosting_arg
,
3763 &semihosting
, NULL
);
3765 fprintf(stderr
, "Unsupported semihosting-config %s\n",
3770 case QEMU_OPTION_tdf
:
3771 fprintf(stderr
, "Warning: user space PIT time drift fix "
3772 "is no longer supported.\n");
3774 case QEMU_OPTION_name
:
3775 opts
= qemu_opts_parse(qemu_find_opts("name"), optarg
, 1);
3780 case QEMU_OPTION_prom_env
:
3781 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
3782 fprintf(stderr
, "Too many prom variables\n");
3785 prom_envs
[nb_prom_envs
] = optarg
;
3788 case QEMU_OPTION_old_param
:
3791 case QEMU_OPTION_clock
:
3792 /* Clock options no longer exist. Keep this option for
3793 * backward compatibility.
3796 case QEMU_OPTION_startdate
:
3797 configure_rtc_date_offset(optarg
, 1);
3799 case QEMU_OPTION_rtc
:
3800 opts
= qemu_opts_parse(qemu_find_opts("rtc"), optarg
, 0);
3804 configure_rtc(opts
);
3806 case QEMU_OPTION_tb_size
:
3807 tcg_tb_size
= strtol(optarg
, NULL
, 0);
3808 if (tcg_tb_size
< 0) {
3812 case QEMU_OPTION_icount
:
3813 icount_opts
= qemu_opts_parse(qemu_find_opts("icount"),
3819 case QEMU_OPTION_incoming
:
3821 runstate_set(RUN_STATE_INMIGRATE
);
3825 case QEMU_OPTION_nodefaults
:
3828 case QEMU_OPTION_xen_domid
:
3829 if (!(xen_available())) {
3830 printf("Option %s not supported for this target\n", popt
->name
);
3833 xen_domid
= atoi(optarg
);
3835 case QEMU_OPTION_xen_create
:
3836 if (!(xen_available())) {
3837 printf("Option %s not supported for this target\n", popt
->name
);
3840 xen_mode
= XEN_CREATE
;
3842 case QEMU_OPTION_xen_attach
:
3843 if (!(xen_available())) {
3844 printf("Option %s not supported for this target\n", popt
->name
);
3847 xen_mode
= XEN_ATTACH
;
3849 case QEMU_OPTION_trace
:
3851 opts
= qemu_opts_parse(qemu_find_opts("trace"), optarg
, 0);
3855 trace_events
= qemu_opt_get(opts
, "events");
3856 trace_file
= qemu_opt_get(opts
, "file");
3859 case QEMU_OPTION_readconfig
:
3861 int ret
= qemu_read_config_file(optarg
);
3863 fprintf(stderr
, "read config %s: %s\n", optarg
,
3869 case QEMU_OPTION_spice
:
3870 olist
= qemu_find_opts("spice");
3872 fprintf(stderr
, "spice is not supported by this qemu build.\n");
3875 opts
= qemu_opts_parse(olist
, optarg
, 0);
3881 case QEMU_OPTION_writeconfig
:
3884 if (strcmp(optarg
, "-") == 0) {
3887 fp
= fopen(optarg
, "w");
3889 fprintf(stderr
, "open %s: %s\n", optarg
, strerror(errno
));
3893 qemu_config_write(fp
);
3899 case QEMU_OPTION_qtest
:
3900 qtest_chrdev
= optarg
;
3902 case QEMU_OPTION_qtest_log
:
3905 case QEMU_OPTION_sandbox
:
3906 opts
= qemu_opts_parse(qemu_find_opts("sandbox"), optarg
, 1);
3911 case QEMU_OPTION_add_fd
:
3913 opts
= qemu_opts_parse(qemu_find_opts("add-fd"), optarg
, 0);
3918 error_report("File descriptor passing is disabled on this "
3923 case QEMU_OPTION_object
:
3924 opts
= qemu_opts_parse(qemu_find_opts("object"), optarg
, 1);
3929 case QEMU_OPTION_realtime
:
3930 opts
= qemu_opts_parse(qemu_find_opts("realtime"), optarg
, 0);
3934 enable_mlock
= qemu_opt_get_bool(opts
, "mlock", true);
3936 case QEMU_OPTION_msg
:
3937 opts
= qemu_opts_parse(qemu_find_opts("msg"), optarg
, 0);
3941 configure_msg(opts
);
3943 case QEMU_OPTION_dump_vmstate
:
3944 if (vmstate_dump_file
) {
3945 fprintf(stderr
, "qemu: only one '-dump-vmstate' "
3946 "option may be given\n");
3949 vmstate_dump_file
= fopen(optarg
, "w");
3950 if (vmstate_dump_file
== NULL
) {
3951 fprintf(stderr
, "open %s: %s\n", optarg
, strerror(errno
));
3956 os_parse_cmd_args(popt
->index
, optarg
);
3961 opts
= qemu_get_machine_opts();
3962 optarg
= qemu_opt_get(opts
, "type");
3964 machine_class
= machine_parse(optarg
);
3967 if (machine_class
== NULL
) {
3968 fprintf(stderr
, "No machine specified, and there is no default.\n"
3969 "Use -machine help to list supported machines!\n");
3973 set_memory_options(&ram_slots
, &maxram_size
, machine_class
);
3979 if (qemu_init_main_loop(&main_loop_err
)) {
3980 error_report_err(main_loop_err
);
3984 if (qemu_opts_foreach(qemu_find_opts("sandbox"),
3985 parse_sandbox
, NULL
, NULL
)) {
3989 if (qemu_opts_foreach(qemu_find_opts("name"),
3990 parse_name
, NULL
, NULL
)) {
3995 if (qemu_opts_foreach(qemu_find_opts("add-fd"),
3996 parse_add_fd
, NULL
, NULL
)) {
4000 if (qemu_opts_foreach(qemu_find_opts("add-fd"),
4001 cleanup_add_fd
, NULL
, NULL
)) {
4006 current_machine
= MACHINE(object_new(object_class_get_name(
4007 OBJECT_CLASS(machine_class
))));
4008 if (machine_help_func(qemu_get_machine_opts(), current_machine
)) {
4011 object_property_add_child(object_get_root(), "machine",
4012 OBJECT(current_machine
), &error_abort
);
4013 cpu_exec_init_all();
4015 if (machine_class
->hw_version
) {
4016 qemu_set_version(machine_class
->hw_version
);
4019 /* Init CPU def lists, based on config
4020 * - Must be called after all the qemu_read_config_file() calls
4021 * - Must be called before list_cpus()
4022 * - Must be called before machine->init()
4026 if (cpu_model
&& is_help_option(cpu_model
)) {
4027 list_cpus(stdout
, &fprintf
, cpu_model
);
4031 /* Open the logfile at this point and set the log mask if necessary.
4034 qemu_set_log_filename(log_file
);
4039 mask
= qemu_str_to_log_mask(log_mask
);
4041 qemu_print_log_usage(stdout
);
4047 if (!is_daemonized()) {
4048 if (!trace_init_backends(trace_events
, trace_file
)) {
4053 /* If no data_dir is specified then try to find it relative to the
4055 if (data_dir_idx
< ARRAY_SIZE(data_dir
)) {
4056 data_dir
[data_dir_idx
] = os_find_datadir();
4057 if (data_dir
[data_dir_idx
] != NULL
) {
4061 /* If all else fails use the install path specified when building. */
4062 if (data_dir_idx
< ARRAY_SIZE(data_dir
)) {
4063 data_dir
[data_dir_idx
++] = CONFIG_QEMU_DATADIR
;
4066 smp_parse(qemu_opts_find(qemu_find_opts("smp-opts"), NULL
));
4068 machine_class
->max_cpus
= machine_class
->max_cpus
?: 1; /* Default to UP */
4069 if (max_cpus
> machine_class
->max_cpus
) {
4070 fprintf(stderr
, "Number of SMP cpus requested (%d), exceeds max cpus "
4071 "supported by machine `%s' (%d)\n", max_cpus
,
4072 machine_class
->name
, machine_class
->max_cpus
);
4077 * Get the default machine options from the machine if it is not already
4078 * specified either by the configuration file or by the command line.
4080 if (machine_class
->default_machine_opts
) {
4081 qemu_opts_set_defaults(qemu_find_opts("machine"),
4082 machine_class
->default_machine_opts
, 0);
4085 qemu_opts_foreach(qemu_find_opts("device"),
4086 default_driver_check
, NULL
, NULL
);
4087 qemu_opts_foreach(qemu_find_opts("global"),
4088 default_driver_check
, NULL
, NULL
);
4090 if (!vga_model
&& !default_vga
) {
4091 vga_interface_type
= VGA_DEVICE
;
4093 if (!has_defaults
|| machine_class
->no_serial
) {
4096 if (!has_defaults
|| machine_class
->no_parallel
) {
4097 default_parallel
= 0;
4099 if (!has_defaults
|| !machine_class
->use_virtcon
) {
4100 default_virtcon
= 0;
4102 if (!has_defaults
|| !machine_class
->use_sclp
) {
4105 if (!has_defaults
|| machine_class
->no_floppy
) {
4108 if (!has_defaults
|| machine_class
->no_cdrom
) {
4111 if (!has_defaults
|| machine_class
->no_sdcard
) {
4114 if (!has_defaults
) {
4115 default_monitor
= 0;
4120 if (is_daemonized()) {
4121 /* According to documentation and historically, -nographic redirects
4122 * serial port, parallel port and monitor to stdio, which does not work
4123 * with -daemonize. We can redirect these to null instead, but since
4124 * -nographic is legacy, let's just error out.
4125 * We disallow -nographic only if all other ports are not redirected
4126 * explicitly, to not break existing legacy setups which uses
4127 * -nographic _and_ redirects all ports explicitly - this is valid
4128 * usage, -nographic is just a no-op in this case.
4130 if (display_type
== DT_NOGRAPHIC
4131 && (default_parallel
|| default_serial
4132 || default_monitor
|| default_virtcon
)) {
4133 fprintf(stderr
, "-nographic can not be used with -daemonize\n");
4136 #ifdef CONFIG_CURSES
4137 if (display_type
== DT_CURSES
) {
4138 fprintf(stderr
, "curses display can not be used with -daemonize\n");
4144 if (display_type
== DT_NOGRAPHIC
) {
4145 if (default_parallel
)
4146 add_device_config(DEV_PARALLEL
, "null");
4147 if (default_serial
&& default_monitor
) {
4148 add_device_config(DEV_SERIAL
, "mon:stdio");
4149 } else if (default_virtcon
&& default_monitor
) {
4150 add_device_config(DEV_VIRTCON
, "mon:stdio");
4151 } else if (default_sclp
&& default_monitor
) {
4152 add_device_config(DEV_SCLP
, "mon:stdio");
4155 add_device_config(DEV_SERIAL
, "stdio");
4156 if (default_virtcon
)
4157 add_device_config(DEV_VIRTCON
, "stdio");
4159 add_device_config(DEV_SCLP
, "stdio");
4161 if (default_monitor
)
4162 monitor_parse("stdio", "readline", false);
4166 add_device_config(DEV_SERIAL
, "vc:80Cx24C");
4167 if (default_parallel
)
4168 add_device_config(DEV_PARALLEL
, "vc:80Cx24C");
4169 if (default_monitor
)
4170 monitor_parse("vc:80Cx24C", "readline", false);
4171 if (default_virtcon
)
4172 add_device_config(DEV_VIRTCON
, "vc:80Cx24C");
4174 add_device_config(DEV_SCLP
, "vc:80Cx24C");
4178 #if defined(CONFIG_VNC)
4179 if (!QTAILQ_EMPTY(&(qemu_find_opts("vnc")->head
))) {
4183 if (display_type
== DT_DEFAULT
&& !display_remote
) {
4184 #if defined(CONFIG_GTK)
4185 display_type
= DT_GTK
;
4186 #elif defined(CONFIG_SDL) || defined(CONFIG_COCOA)
4187 display_type
= DT_SDL
;
4188 #elif defined(CONFIG_VNC)
4189 vnc_parse_func("localhost:0,to=99,id=default");
4192 display_type
= DT_NONE
;
4196 if ((no_frame
|| alt_grab
|| ctrl_grab
) && display_type
!= DT_SDL
) {
4197 fprintf(stderr
, "-no-frame, -alt-grab and -ctrl-grab are only valid "
4198 "for SDL, ignoring option\n");
4200 if (no_quit
&& (display_type
!= DT_GTK
&& display_type
!= DT_SDL
)) {
4201 fprintf(stderr
, "-no-quit is only valid for GTK and SDL, "
4202 "ignoring option\n");
4205 #if defined(CONFIG_GTK)
4206 if (display_type
== DT_GTK
) {
4207 early_gtk_display_init(request_opengl
);
4210 #if defined(CONFIG_SDL)
4211 if (display_type
== DT_SDL
) {
4212 sdl_display_early_init(request_opengl
);
4215 if (request_opengl
== 1 && display_opengl
== 0) {
4216 #if defined(CONFIG_OPENGL)
4217 fprintf(stderr
, "OpenGL is not supported by the display.\n");
4219 fprintf(stderr
, "QEMU was built without opengl support.\n");
4226 if (qemu_opts_foreach(qemu_find_opts("object"),
4228 object_create_initial
, NULL
)) {
4232 if (qemu_opts_foreach(qemu_find_opts("chardev"),
4233 chardev_init_func
, NULL
, NULL
)) {
4237 #ifdef CONFIG_VIRTFS
4238 if (qemu_opts_foreach(qemu_find_opts("fsdev"),
4239 fsdev_init_func
, NULL
, NULL
)) {
4244 if (pid_file
&& qemu_create_pidfile(pid_file
) != 0) {
4245 fprintf(stderr
, "Could not acquire pid file: %s\n", strerror(errno
));
4249 if (qemu_opts_foreach(qemu_find_opts("device"),
4250 device_help_func
, NULL
, NULL
)) {
4254 if (qemu_opts_foreach(qemu_find_opts("object"),
4256 object_create_delayed
, NULL
)) {
4260 machine_opts
= qemu_get_machine_opts();
4261 if (qemu_opt_foreach(machine_opts
, machine_set_property
, current_machine
,
4263 object_unref(OBJECT(current_machine
));
4267 configure_accelerator(current_machine
);
4270 Error
*local_err
= NULL
;
4271 qtest_init(qtest_chrdev
, qtest_log
, &local_err
);
4273 error_report_err(local_err
);
4278 machine_opts
= qemu_get_machine_opts();
4279 kernel_filename
= qemu_opt_get(machine_opts
, "kernel");
4280 initrd_filename
= qemu_opt_get(machine_opts
, "initrd");
4281 kernel_cmdline
= qemu_opt_get(machine_opts
, "append");
4282 bios_name
= qemu_opt_get(machine_opts
, "firmware");
4284 opts
= qemu_opts_find(qemu_find_opts("boot-opts"), NULL
);
4286 Error
*local_err
= NULL
;
4288 boot_order
= qemu_opt_get(opts
, "order");
4290 validate_bootdevices(boot_order
, &local_err
);
4292 error_report_err(local_err
);
4297 boot_once
= qemu_opt_get(opts
, "once");
4299 validate_bootdevices(boot_once
, &local_err
);
4301 error_report_err(local_err
);
4306 boot_menu
= qemu_opt_get_bool(opts
, "menu", boot_menu
);
4307 boot_strict
= qemu_opt_get_bool(opts
, "strict", false);
4311 boot_order
= machine_class
->default_boot_order
;
4314 if (!kernel_cmdline
) {
4315 kernel_cmdline
= "";
4316 current_machine
->kernel_cmdline
= (char *)kernel_cmdline
;
4319 linux_boot
= (kernel_filename
!= NULL
);
4321 if (!linux_boot
&& *kernel_cmdline
!= '\0') {
4322 fprintf(stderr
, "-append only allowed with -kernel option\n");
4326 if (!linux_boot
&& initrd_filename
!= NULL
) {
4327 fprintf(stderr
, "-initrd only allowed with -kernel option\n");
4331 if (!linux_boot
&& qemu_opt_get(machine_opts
, "dtb")) {
4332 fprintf(stderr
, "-dtb only allowed with -kernel option\n");
4336 if (semihosting_enabled() && !semihosting_get_argc() && kernel_filename
) {
4337 /* fall back to the -kernel/-append */
4338 semihosting_arg_fallback(kernel_filename
, kernel_cmdline
);
4341 os_set_line_buffering();
4344 /* spice needs the timers to be initialized by this point */
4350 if (kvm_enabled() || xen_enabled()) {
4351 fprintf(stderr
, "-icount is not allowed with kvm or xen\n");
4354 configure_icount(icount_opts
, &error_abort
);
4355 qemu_opts_del(icount_opts
);
4358 /* clean up network at qemu process termination */
4359 atexit(&net_cleanup
);
4361 if (net_init_clients() < 0) {
4366 if (tpm_init() < 0) {
4371 /* init the bluetooth world */
4372 if (foreach_device_config(DEV_BT
, bt_parse
))
4375 if (!xen_enabled()) {
4376 /* On 32-bit hosts, QEMU is limited by virtual address space */
4377 if (ram_size
> (2047 << 20) && HOST_LONG_BITS
== 32) {
4378 fprintf(stderr
, "qemu: at most 2047 MB RAM can be simulated\n");
4386 /* If the currently selected machine wishes to override the units-per-bus
4387 * property of its default HBA interface type, do so now. */
4388 if (machine_class
->units_per_default_bus
) {
4389 override_max_devs(machine_class
->block_default_type
,
4390 machine_class
->units_per_default_bus
);
4393 /* open the virtual block devices */
4395 qemu_opts_foreach(qemu_find_opts("drive"),
4396 drive_enable_snapshot
, NULL
, NULL
);
4397 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func
,
4398 &machine_class
->block_default_type
, NULL
)) {
4402 default_drive(default_cdrom
, snapshot
, machine_class
->block_default_type
, 2,
4404 default_drive(default_floppy
, snapshot
, IF_FLOPPY
, 0, FD_OPTS
);
4405 default_drive(default_sdcard
, snapshot
, IF_SD
, 0, SD_OPTS
);
4407 parse_numa_opts(machine_class
);
4409 if (qemu_opts_foreach(qemu_find_opts("mon"),
4410 mon_init_func
, NULL
, NULL
)) {
4414 if (foreach_device_config(DEV_SERIAL
, serial_parse
) < 0)
4416 if (foreach_device_config(DEV_PARALLEL
, parallel_parse
) < 0)
4418 if (foreach_device_config(DEV_VIRTCON
, virtcon_parse
) < 0)
4420 if (foreach_device_config(DEV_SCLP
, sclp_parse
) < 0) {
4423 if (foreach_device_config(DEV_DEBUGCON
, debugcon_parse
) < 0)
4426 /* If no default VGA is requested, the default is "none". */
4428 if (machine_class
->default_display
) {
4429 vga_model
= machine_class
->default_display
;
4430 } else if (cirrus_vga_available()) {
4431 vga_model
= "cirrus";
4432 } else if (vga_available()) {
4437 select_vgahw(vga_model
);
4441 i
= select_watchdog(watchdog
);
4443 exit (i
== 1 ? 1 : 0);
4446 if (machine_class
->compat_props
) {
4447 qdev_prop_register_global_list(machine_class
->compat_props
);
4451 qdev_machine_init();
4453 current_machine
->ram_size
= ram_size
;
4454 current_machine
->maxram_size
= maxram_size
;
4455 current_machine
->ram_slots
= ram_slots
;
4456 current_machine
->boot_order
= boot_order
;
4457 current_machine
->cpu_model
= cpu_model
;
4459 machine_class
->init(current_machine
);
4465 cpu_synchronize_all_post_init();
4467 numa_post_machine_init();
4469 if (qemu_opts_foreach(qemu_find_opts("fw_cfg"),
4470 parse_fw_cfg
, fw_cfg_find(), NULL
) != 0) {
4474 /* init USB devices */
4475 if (usb_enabled()) {
4476 if (foreach_device_config(DEV_USB
, usb_parse
) < 0)
4480 /* init generic devices */
4481 if (qemu_opts_foreach(qemu_find_opts("device"),
4482 device_init_func
, NULL
, NULL
)) {
4486 /* Did we create any drives that we failed to create a device for? */
4487 drive_check_orphaned();
4489 net_check_clients();
4492 Error
*local_err
= NULL
;
4493 qemu_boot_set(boot_once
, &local_err
);
4495 error_report("%s", error_get_pretty(local_err
));
4498 qemu_register_reset(restore_boot_order
, g_strdup(boot_order
));
4501 ds
= init_displaystate();
4503 /* init local displays */
4504 switch (display_type
) {
4506 (void)ds
; /* avoid warning if no display is configured */
4508 #if defined(CONFIG_CURSES)
4510 curses_display_init(ds
, full_screen
);
4513 #if defined(CONFIG_SDL)
4515 sdl_display_init(ds
, full_screen
, no_frame
);
4517 #elif defined(CONFIG_COCOA)
4519 cocoa_display_init(ds
, full_screen
);
4522 #if defined(CONFIG_GTK)
4524 gtk_display_init(ds
, full_screen
, grab_on_hover
);
4531 /* must be after terminal init, SDL library changes signal handlers */
4532 os_setup_signal_handling();
4535 /* init remote displays */
4536 qemu_opts_foreach(qemu_find_opts("vnc"),
4537 vnc_init_func
, NULL
, NULL
);
4538 if (show_vnc_port
) {
4539 char *ret
= vnc_display_local_addr("default");
4540 printf("VNC server running on `%s'\n", ret
);
4546 qemu_spice_display_init();
4550 if (foreach_device_config(DEV_GDB
, gdbserver_start
) < 0) {
4554 qdev_machine_creation_done();
4556 if (rom_load_all() != 0) {
4557 fprintf(stderr
, "rom loading failed\n");
4561 /* TODO: once all bus devices are qdevified, this should be done
4562 * when bus is created by qdev.c */
4563 qemu_register_reset(qbus_reset_all_fn
, sysbus_get_default());
4564 qemu_run_machine_init_done_notifiers();
4566 /* Done notifiers can load ROMs */
4569 qemu_system_reset(VMRESET_SILENT
);
4571 if (load_vmstate(loadvm
) < 0) {
4576 qdev_prop_check_globals();
4577 if (vmstate_dump_file
) {
4579 dump_vmstate_json_to_file(vmstate_dump_file
);
4584 Error
*local_err
= NULL
;
4585 qemu_start_incoming_migration(incoming
, &local_err
);
4587 error_report("-incoming %s: %s", incoming
,
4588 error_get_pretty(local_err
));
4589 error_free(local_err
);
4592 } else if (autostart
) {
4598 if (is_daemonized()) {
4599 if (!trace_init_backends(trace_events
, trace_file
)) {