4 * Copyright (c) 2003-2008 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
31 #include "config-host.h"
34 #include "sysemu/seccomp.h"
37 #if defined(CONFIG_VDE)
38 #include <libvdeplug.h>
42 #if defined(__APPLE__) || defined(main)
44 int qemu_main(int argc
, char **argv
, char **envp
);
45 int main(int argc
, char **argv
)
47 return qemu_main(argc
, argv
, NULL
);
50 #define main qemu_main
52 #endif /* CONFIG_SDL */
56 #define main qemu_main
57 #endif /* CONFIG_COCOA */
61 #include "qemu/error-report.h"
62 #include "qemu/sockets.h"
64 #include "hw/boards.h"
65 #include "sysemu/accel.h"
67 #include "hw/i386/pc.h"
68 #include "hw/isa/isa.h"
70 #include "sysemu/watchdog.h"
71 #include "hw/smbios/smbios.h"
72 #include "hw/xen/xen.h"
74 #include "hw/loader.h"
75 #include "monitor/qdev.h"
76 #include "sysemu/bt.h"
78 #include "net/slirp.h"
79 #include "monitor/monitor.h"
80 #include "ui/console.h"
81 #include "sysemu/sysemu.h"
82 #include "sysemu/numa.h"
83 #include "exec/gdbstub.h"
84 #include "qemu/timer.h"
85 #include "sysemu/char.h"
86 #include "qemu/bitmap.h"
87 #include "sysemu/blockdev.h"
88 #include "hw/block/block.h"
89 #include "migration/block.h"
90 #include "sysemu/tpm.h"
91 #include "sysemu/dma.h"
92 #include "audio/audio.h"
93 #include "migration/migration.h"
94 #include "sysemu/kvm.h"
95 #include "qapi/qmp/qjson.h"
96 #include "qemu/option.h"
97 #include "qemu/config-file.h"
98 #include "qemu-options.h"
99 #include "qmp-commands.h"
100 #include "qemu/main-loop.h"
102 #include "fsdev/qemu-fsdev.h"
104 #include "sysemu/qtest.h"
106 #include "disas/disas.h"
109 #include "slirp/libslirp.h"
112 #include "trace/control.h"
113 #include "qemu/queue.h"
114 #include "sysemu/cpus.h"
115 #include "sysemu/arch_init.h"
116 #include "qemu/osdep.h"
118 #include "ui/qemu-spice.h"
119 #include "qapi/string-input-visitor.h"
120 #include "qapi/opts-visitor.h"
121 #include "qom/object_interfaces.h"
122 #include "qapi-event.h"
123 #include "exec/semihost.h"
124 #include "crypto/init.h"
125 #include "sysemu/replay.h"
126 #include "qapi/qmp/qerror.h"
128 #define MAX_VIRTIO_CONSOLES 1
129 #define MAX_SCLP_CONSOLES 1
131 static const char *data_dir
[16];
132 static int data_dir_idx
;
133 const char *bios_name
= NULL
;
134 enum vga_retrace_method vga_retrace_method
= VGA_RETRACE_DUMB
;
135 DisplayType display_type
= DT_DEFAULT
;
136 int request_opengl
= -1;
138 static int display_remote
;
139 const char* keyboard_layout
= NULL
;
141 const char *mem_path
= NULL
;
142 int mem_prealloc
= 0; /* force preallocation of physical target memory */
143 bool enable_mlock
= false;
145 NICInfo nd_table
[MAX_NICS
];
147 static int rtc_utc
= 1;
148 static int rtc_date_offset
= -1; /* -1 means no change */
149 QEMUClockType rtc_clock
;
150 int vga_interface_type
= VGA_NONE
;
151 static int full_screen
= 0;
152 static int no_frame
= 0;
155 static bool grab_on_hover
;
157 CharDriverState
*serial_hds
[MAX_SERIAL_PORTS
];
158 CharDriverState
*parallel_hds
[MAX_PARALLEL_PORTS
];
159 CharDriverState
*virtcon_hds
[MAX_VIRTIO_CONSOLES
];
160 CharDriverState
*sclp_hds
[MAX_SCLP_CONSOLES
];
161 int win2k_install_hack
= 0;
167 int acpi_enabled
= 1;
170 static int no_reboot
;
173 int graphic_rotate
= 0;
174 const char *watchdog
;
175 QEMUOptionRom option_rom
[MAX_OPTION_ROMS
];
178 const char *qemu_name
;
181 unsigned int nb_prom_envs
= 0;
182 const char *prom_envs
[MAX_PROM_ENVS
];
185 uint8_t *boot_splash_filedata
;
186 size_t boot_splash_filedata_size
;
187 uint8_t qemu_extra_params_fw
[2];
189 int icount_align_option
;
191 /* The bytes in qemu_uuid[] are in the order specified by RFC4122, _not_ in the
192 * little-endian "wire format" described in the SMBIOS 2.6 specification.
194 uint8_t qemu_uuid
[16];
197 static NotifierList exit_notifiers
=
198 NOTIFIER_LIST_INITIALIZER(exit_notifiers
);
200 static NotifierList machine_init_done_notifiers
=
201 NOTIFIER_LIST_INITIALIZER(machine_init_done_notifiers
);
205 enum xen_mode xen_mode
= XEN_EMULATE
;
207 static int has_defaults
= 1;
208 static int default_serial
= 1;
209 static int default_parallel
= 1;
210 static int default_virtcon
= 1;
211 static int default_sclp
= 1;
212 static int default_monitor
= 1;
213 static int default_floppy
= 1;
214 static int default_cdrom
= 1;
215 static int default_sdcard
= 1;
216 static int default_vga
= 1;
222 { .driver
= "isa-serial", .flag
= &default_serial
},
223 { .driver
= "isa-parallel", .flag
= &default_parallel
},
224 { .driver
= "isa-fdc", .flag
= &default_floppy
},
225 { .driver
= "ide-cd", .flag
= &default_cdrom
},
226 { .driver
= "ide-hd", .flag
= &default_cdrom
},
227 { .driver
= "ide-drive", .flag
= &default_cdrom
},
228 { .driver
= "scsi-cd", .flag
= &default_cdrom
},
229 { .driver
= "virtio-serial-pci", .flag
= &default_virtcon
},
230 { .driver
= "virtio-serial", .flag
= &default_virtcon
},
231 { .driver
= "VGA", .flag
= &default_vga
},
232 { .driver
= "isa-vga", .flag
= &default_vga
},
233 { .driver
= "cirrus-vga", .flag
= &default_vga
},
234 { .driver
= "isa-cirrus-vga", .flag
= &default_vga
},
235 { .driver
= "vmware-svga", .flag
= &default_vga
},
236 { .driver
= "qxl-vga", .flag
= &default_vga
},
237 { .driver
= "virtio-vga", .flag
= &default_vga
},
240 static QemuOptsList qemu_rtc_opts
= {
242 .head
= QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts
.head
),
246 .type
= QEMU_OPT_STRING
,
249 .type
= QEMU_OPT_STRING
,
252 .type
= QEMU_OPT_STRING
,
254 { /* end of list */ }
258 static QemuOptsList qemu_sandbox_opts
= {
260 .implied_opt_name
= "enable",
261 .head
= QTAILQ_HEAD_INITIALIZER(qemu_sandbox_opts
.head
),
265 .type
= QEMU_OPT_BOOL
,
267 { /* end of list */ }
271 static QemuOptsList qemu_trace_opts
= {
273 .implied_opt_name
= "trace",
274 .head
= QTAILQ_HEAD_INITIALIZER(qemu_trace_opts
.head
),
278 .type
= QEMU_OPT_STRING
,
281 .type
= QEMU_OPT_STRING
,
283 { /* end of list */ }
287 static QemuOptsList qemu_option_rom_opts
= {
288 .name
= "option-rom",
289 .implied_opt_name
= "romfile",
290 .head
= QTAILQ_HEAD_INITIALIZER(qemu_option_rom_opts
.head
),
294 .type
= QEMU_OPT_NUMBER
,
297 .type
= QEMU_OPT_STRING
,
299 { /* end of list */ }
303 static QemuOptsList qemu_machine_opts
= {
305 .implied_opt_name
= "type",
307 .head
= QTAILQ_HEAD_INITIALIZER(qemu_machine_opts
.head
),
310 * no elements => accept any
311 * sanity checking will happen later
312 * when setting machine properties
318 static QemuOptsList qemu_boot_opts
= {
320 .implied_opt_name
= "order",
322 .head
= QTAILQ_HEAD_INITIALIZER(qemu_boot_opts
.head
),
326 .type
= QEMU_OPT_STRING
,
329 .type
= QEMU_OPT_STRING
,
332 .type
= QEMU_OPT_BOOL
,
335 .type
= QEMU_OPT_STRING
,
337 .name
= "splash-time",
338 .type
= QEMU_OPT_STRING
,
340 .name
= "reboot-timeout",
341 .type
= QEMU_OPT_STRING
,
344 .type
= QEMU_OPT_BOOL
,
350 static QemuOptsList qemu_add_fd_opts
= {
352 .head
= QTAILQ_HEAD_INITIALIZER(qemu_add_fd_opts
.head
),
356 .type
= QEMU_OPT_NUMBER
,
357 .help
= "file descriptor of which a duplicate is added to fd set",
360 .type
= QEMU_OPT_NUMBER
,
361 .help
= "ID of the fd set to add fd to",
364 .type
= QEMU_OPT_STRING
,
365 .help
= "free-form string used to describe fd",
367 { /* end of list */ }
371 static QemuOptsList qemu_object_opts
= {
373 .implied_opt_name
= "qom-type",
374 .head
= QTAILQ_HEAD_INITIALIZER(qemu_object_opts
.head
),
380 static QemuOptsList qemu_tpmdev_opts
= {
382 .implied_opt_name
= "type",
383 .head
= QTAILQ_HEAD_INITIALIZER(qemu_tpmdev_opts
.head
),
385 /* options are defined in the TPM backends */
386 { /* end of list */ }
390 static QemuOptsList qemu_realtime_opts
= {
392 .head
= QTAILQ_HEAD_INITIALIZER(qemu_realtime_opts
.head
),
396 .type
= QEMU_OPT_BOOL
,
398 { /* end of list */ }
402 static QemuOptsList qemu_msg_opts
= {
404 .head
= QTAILQ_HEAD_INITIALIZER(qemu_msg_opts
.head
),
408 .type
= QEMU_OPT_BOOL
,
410 { /* end of list */ }
414 static QemuOptsList qemu_name_opts
= {
416 .implied_opt_name
= "guest",
418 .head
= QTAILQ_HEAD_INITIALIZER(qemu_name_opts
.head
),
422 .type
= QEMU_OPT_STRING
,
423 .help
= "Sets the name of the guest.\n"
424 "This name will be displayed in the SDL window caption.\n"
425 "The name will also be used for the VNC server",
428 .type
= QEMU_OPT_STRING
,
429 .help
= "Sets the name of the QEMU process, as shown in top etc",
431 .name
= "debug-threads",
432 .type
= QEMU_OPT_BOOL
,
433 .help
= "When enabled, name the individual threads; defaults off.\n"
434 "NOTE: The thread names are for debugging and not a\n"
437 { /* End of list */ }
441 static QemuOptsList qemu_mem_opts
= {
443 .implied_opt_name
= "size",
444 .head
= QTAILQ_HEAD_INITIALIZER(qemu_mem_opts
.head
),
449 .type
= QEMU_OPT_SIZE
,
453 .type
= QEMU_OPT_NUMBER
,
457 .type
= QEMU_OPT_SIZE
,
459 { /* end of list */ }
463 static QemuOptsList qemu_icount_opts
= {
465 .implied_opt_name
= "shift",
467 .head
= QTAILQ_HEAD_INITIALIZER(qemu_icount_opts
.head
),
471 .type
= QEMU_OPT_STRING
,
474 .type
= QEMU_OPT_BOOL
,
477 .type
= QEMU_OPT_BOOL
,
480 .type
= QEMU_OPT_STRING
,
483 .type
= QEMU_OPT_STRING
,
485 { /* end of list */ }
489 static QemuOptsList qemu_semihosting_config_opts
= {
490 .name
= "semihosting-config",
491 .implied_opt_name
= "enable",
492 .head
= QTAILQ_HEAD_INITIALIZER(qemu_semihosting_config_opts
.head
),
496 .type
= QEMU_OPT_BOOL
,
499 .type
= QEMU_OPT_STRING
,
502 .type
= QEMU_OPT_STRING
,
504 { /* end of list */ }
508 static QemuOptsList qemu_fw_cfg_opts
= {
510 .implied_opt_name
= "name",
511 .head
= QTAILQ_HEAD_INITIALIZER(qemu_fw_cfg_opts
.head
),
515 .type
= QEMU_OPT_STRING
,
516 .help
= "Sets the fw_cfg name of the blob to be inserted",
519 .type
= QEMU_OPT_STRING
,
520 .help
= "Sets the name of the file from which\n"
521 "the fw_cfg blob will be loaded",
524 .type
= QEMU_OPT_STRING
,
525 .help
= "Sets content of the blob to be inserted from a string",
527 { /* end of list */ }
532 * Get machine options
534 * Returns: machine options (never null).
536 QemuOpts
*qemu_get_machine_opts(void)
538 return qemu_find_opts_singleton("machine");
541 const char *qemu_get_vm_name(void)
546 static void res_free(void)
548 g_free(boot_splash_filedata
);
549 boot_splash_filedata
= NULL
;
552 static int default_driver_check(void *opaque
, QemuOpts
*opts
, Error
**errp
)
554 const char *driver
= qemu_opt_get(opts
, "driver");
559 for (i
= 0; i
< ARRAY_SIZE(default_list
); i
++) {
560 if (strcmp(default_list
[i
].driver
, driver
) != 0)
562 *(default_list
[i
].flag
) = 0;
567 /***********************************************************/
570 static RunState current_run_state
= RUN_STATE_PRELAUNCH
;
572 /* We use RUN_STATE__MAX but any invalid value will do */
573 static RunState vmstop_requested
= RUN_STATE__MAX
;
574 static QemuMutex vmstop_lock
;
579 } RunStateTransition
;
581 static const RunStateTransition runstate_transitions_def
[] = {
583 { RUN_STATE_DEBUG
, RUN_STATE_RUNNING
},
584 { RUN_STATE_DEBUG
, RUN_STATE_FINISH_MIGRATE
},
586 { RUN_STATE_INMIGRATE
, RUN_STATE_INTERNAL_ERROR
},
587 { RUN_STATE_INMIGRATE
, RUN_STATE_IO_ERROR
},
588 { RUN_STATE_INMIGRATE
, RUN_STATE_PAUSED
},
589 { RUN_STATE_INMIGRATE
, RUN_STATE_RUNNING
},
590 { RUN_STATE_INMIGRATE
, RUN_STATE_SHUTDOWN
},
591 { RUN_STATE_INMIGRATE
, RUN_STATE_SUSPENDED
},
592 { RUN_STATE_INMIGRATE
, RUN_STATE_WATCHDOG
},
593 { RUN_STATE_INMIGRATE
, RUN_STATE_GUEST_PANICKED
},
594 { RUN_STATE_INMIGRATE
, RUN_STATE_FINISH_MIGRATE
},
596 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_PAUSED
},
597 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_FINISH_MIGRATE
},
599 { RUN_STATE_IO_ERROR
, RUN_STATE_RUNNING
},
600 { RUN_STATE_IO_ERROR
, RUN_STATE_FINISH_MIGRATE
},
602 { RUN_STATE_PAUSED
, RUN_STATE_RUNNING
},
603 { RUN_STATE_PAUSED
, RUN_STATE_FINISH_MIGRATE
},
605 { RUN_STATE_POSTMIGRATE
, RUN_STATE_RUNNING
},
606 { RUN_STATE_POSTMIGRATE
, RUN_STATE_FINISH_MIGRATE
},
608 { RUN_STATE_PRELAUNCH
, RUN_STATE_RUNNING
},
609 { RUN_STATE_PRELAUNCH
, RUN_STATE_FINISH_MIGRATE
},
610 { RUN_STATE_PRELAUNCH
, RUN_STATE_INMIGRATE
},
612 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_RUNNING
},
613 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_POSTMIGRATE
},
615 { RUN_STATE_RESTORE_VM
, RUN_STATE_RUNNING
},
617 { RUN_STATE_RUNNING
, RUN_STATE_DEBUG
},
618 { RUN_STATE_RUNNING
, RUN_STATE_INTERNAL_ERROR
},
619 { RUN_STATE_RUNNING
, RUN_STATE_IO_ERROR
},
620 { RUN_STATE_RUNNING
, RUN_STATE_PAUSED
},
621 { RUN_STATE_RUNNING
, RUN_STATE_FINISH_MIGRATE
},
622 { RUN_STATE_RUNNING
, RUN_STATE_RESTORE_VM
},
623 { RUN_STATE_RUNNING
, RUN_STATE_SAVE_VM
},
624 { RUN_STATE_RUNNING
, RUN_STATE_SHUTDOWN
},
625 { RUN_STATE_RUNNING
, RUN_STATE_WATCHDOG
},
626 { RUN_STATE_RUNNING
, RUN_STATE_GUEST_PANICKED
},
628 { RUN_STATE_SAVE_VM
, RUN_STATE_RUNNING
},
630 { RUN_STATE_SHUTDOWN
, RUN_STATE_PAUSED
},
631 { RUN_STATE_SHUTDOWN
, RUN_STATE_FINISH_MIGRATE
},
633 { RUN_STATE_DEBUG
, RUN_STATE_SUSPENDED
},
634 { RUN_STATE_RUNNING
, RUN_STATE_SUSPENDED
},
635 { RUN_STATE_SUSPENDED
, RUN_STATE_RUNNING
},
636 { RUN_STATE_SUSPENDED
, RUN_STATE_FINISH_MIGRATE
},
638 { RUN_STATE_WATCHDOG
, RUN_STATE_RUNNING
},
639 { RUN_STATE_WATCHDOG
, RUN_STATE_FINISH_MIGRATE
},
641 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_RUNNING
},
642 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_FINISH_MIGRATE
},
644 { RUN_STATE__MAX
, RUN_STATE__MAX
},
647 static bool runstate_valid_transitions
[RUN_STATE__MAX
][RUN_STATE__MAX
];
649 bool runstate_check(RunState state
)
651 return current_run_state
== state
;
654 bool runstate_store(char *str
, size_t size
)
656 const char *state
= RunState_lookup
[current_run_state
];
657 size_t len
= strlen(state
) + 1;
662 memcpy(str
, state
, len
);
666 static void runstate_init(void)
668 const RunStateTransition
*p
;
670 memset(&runstate_valid_transitions
, 0, sizeof(runstate_valid_transitions
));
671 for (p
= &runstate_transitions_def
[0]; p
->from
!= RUN_STATE__MAX
; p
++) {
672 runstate_valid_transitions
[p
->from
][p
->to
] = true;
675 qemu_mutex_init(&vmstop_lock
);
678 /* This function will abort() on invalid state transitions */
679 void runstate_set(RunState new_state
)
681 assert(new_state
< RUN_STATE__MAX
);
683 if (!runstate_valid_transitions
[current_run_state
][new_state
]) {
684 error_report("invalid runstate transition: '%s' -> '%s'",
685 RunState_lookup
[current_run_state
],
686 RunState_lookup
[new_state
]);
689 trace_runstate_set(new_state
);
690 current_run_state
= new_state
;
693 int runstate_is_running(void)
695 return runstate_check(RUN_STATE_RUNNING
);
698 bool runstate_needs_reset(void)
700 return runstate_check(RUN_STATE_INTERNAL_ERROR
) ||
701 runstate_check(RUN_STATE_SHUTDOWN
);
704 StatusInfo
*qmp_query_status(Error
**errp
)
706 StatusInfo
*info
= g_malloc0(sizeof(*info
));
708 info
->running
= runstate_is_running();
709 info
->singlestep
= singlestep
;
710 info
->status
= current_run_state
;
715 static bool qemu_vmstop_requested(RunState
*r
)
717 qemu_mutex_lock(&vmstop_lock
);
718 *r
= vmstop_requested
;
719 vmstop_requested
= RUN_STATE__MAX
;
720 qemu_mutex_unlock(&vmstop_lock
);
721 return *r
< RUN_STATE__MAX
;
724 void qemu_system_vmstop_request_prepare(void)
726 qemu_mutex_lock(&vmstop_lock
);
729 void qemu_system_vmstop_request(RunState state
)
731 vmstop_requested
= state
;
732 qemu_mutex_unlock(&vmstop_lock
);
740 qemu_vmstop_requested(&requested
);
741 if (runstate_is_running() && requested
== RUN_STATE__MAX
) {
745 /* Ensure that a STOP/RESUME pair of events is emitted if a
746 * vmstop request was pending. The BLOCK_IO_ERROR event, for
747 * example, according to documentation is always followed by
750 if (runstate_is_running()) {
751 qapi_event_send_stop(&error_abort
);
754 runstate_set(RUN_STATE_RUNNING
);
755 vm_state_notify(1, RUN_STATE_RUNNING
);
759 qapi_event_send_resume(&error_abort
);
763 /***********************************************************/
764 /* real time host monotonic timer */
766 static time_t qemu_time(void)
768 return qemu_clock_get_ms(QEMU_CLOCK_HOST
) / 1000;
771 /***********************************************************/
772 /* host time/date access */
773 void qemu_get_timedate(struct tm
*tm
, int offset
)
775 time_t ti
= qemu_time();
778 if (rtc_date_offset
== -1) {
782 localtime_r(&ti
, tm
);
784 ti
-= rtc_date_offset
;
789 int qemu_timedate_diff(struct tm
*tm
)
793 if (rtc_date_offset
== -1)
795 seconds
= mktimegm(tm
);
798 tmp
.tm_isdst
= -1; /* use timezone to figure it out */
799 seconds
= mktime(&tmp
);
802 seconds
= mktimegm(tm
) + rtc_date_offset
;
804 return seconds
- qemu_time();
807 static void configure_rtc_date_offset(const char *startdate
, int legacy
)
809 time_t rtc_start_date
;
812 if (!strcmp(startdate
, "now") && legacy
) {
813 rtc_date_offset
= -1;
815 if (sscanf(startdate
, "%d-%d-%dT%d:%d:%d",
823 } else if (sscanf(startdate
, "%d-%d-%d",
835 rtc_start_date
= mktimegm(&tm
);
836 if (rtc_start_date
== -1) {
838 error_report("invalid date format");
839 error_printf("valid formats: "
840 "'2006-06-17T16:01:21' or '2006-06-17'\n");
843 rtc_date_offset
= qemu_time() - rtc_start_date
;
847 static void configure_rtc(QemuOpts
*opts
)
851 value
= qemu_opt_get(opts
, "base");
853 if (!strcmp(value
, "utc")) {
855 } else if (!strcmp(value
, "localtime")) {
856 Error
*blocker
= NULL
;
858 error_setg(&blocker
, QERR_REPLAY_NOT_SUPPORTED
,
859 "-rtc base=localtime");
860 replay_add_blocker(blocker
);
862 configure_rtc_date_offset(value
, 0);
865 value
= qemu_opt_get(opts
, "clock");
867 if (!strcmp(value
, "host")) {
868 rtc_clock
= QEMU_CLOCK_HOST
;
869 } else if (!strcmp(value
, "rt")) {
870 rtc_clock
= QEMU_CLOCK_REALTIME
;
871 } else if (!strcmp(value
, "vm")) {
872 rtc_clock
= QEMU_CLOCK_VIRTUAL
;
874 error_report("invalid option value '%s'", value
);
878 value
= qemu_opt_get(opts
, "driftfix");
880 if (!strcmp(value
, "slew")) {
881 static GlobalProperty slew_lost_ticks
[] = {
883 .driver
= "mc146818rtc",
884 .property
= "lost_tick_policy",
887 { /* end of list */ }
890 qdev_prop_register_global_list(slew_lost_ticks
);
891 } else if (!strcmp(value
, "none")) {
892 /* discard is default */
894 error_report("invalid option value '%s'", value
);
900 /***********************************************************/
901 /* Bluetooth support */
904 static struct HCIInfo
*hci_table
[MAX_NICS
];
906 struct HCIInfo
*qemu_next_hci(void)
908 if (cur_hci
== nb_hcis
)
911 return hci_table
[cur_hci
++];
914 static int bt_hci_parse(const char *str
)
919 if (nb_hcis
>= MAX_NICS
) {
920 error_report("too many bluetooth HCIs (max %i)", MAX_NICS
);
933 bdaddr
.b
[5] = 0x56 + nb_hcis
;
934 hci
->bdaddr_set(hci
, bdaddr
.b
);
936 hci_table
[nb_hcis
++] = hci
;
941 static void bt_vhci_add(int vlan_id
)
943 struct bt_scatternet_s
*vlan
= qemu_find_bt_vlan(vlan_id
);
946 error_report("warning: adding a VHCI to an empty scatternet %i",
949 bt_vhci_init(bt_new_hci(vlan
));
952 static struct bt_device_s
*bt_device_add(const char *opt
)
954 struct bt_scatternet_s
*vlan
;
956 char *endp
= strstr(opt
, ",vlan=");
957 int len
= (endp
? endp
- opt
: strlen(opt
)) + 1;
960 pstrcpy(devname
, MIN(sizeof(devname
), len
), opt
);
963 vlan_id
= strtol(endp
+ 6, &endp
, 0);
965 error_report("unrecognised bluetooth vlan Id");
970 vlan
= qemu_find_bt_vlan(vlan_id
);
973 error_report("warning: adding a slave device to an empty scatternet %i",
976 if (!strcmp(devname
, "keyboard"))
977 return bt_keyboard_init(vlan
);
979 error_report("unsupported bluetooth device '%s'", devname
);
983 static int bt_parse(const char *opt
)
985 const char *endp
, *p
;
988 if (strstart(opt
, "hci", &endp
)) {
989 if (!*endp
|| *endp
== ',') {
991 if (!strstart(endp
, ",vlan=", 0))
994 return bt_hci_parse(opt
);
996 } else if (strstart(opt
, "vhci", &endp
)) {
997 if (!*endp
|| *endp
== ',') {
999 if (strstart(endp
, ",vlan=", &p
)) {
1000 vlan
= strtol(p
, (char **) &endp
, 0);
1002 error_report("bad scatternet '%s'", p
);
1006 error_report("bad parameter '%s'", endp
+ 1);
1015 } else if (strstart(opt
, "device:", &endp
))
1016 return !bt_device_add(endp
);
1018 error_report("bad bluetooth parameter '%s'", opt
);
1022 static int parse_sandbox(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1024 /* FIXME: change this to true for 1.3 */
1025 if (qemu_opt_get_bool(opts
, "enable", false)) {
1026 #ifdef CONFIG_SECCOMP
1027 if (seccomp_start() < 0) {
1028 error_report("failed to install seccomp syscall filter "
1033 error_report("seccomp support is disabled");
1041 static int parse_name(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1043 const char *proc_name
;
1045 if (qemu_opt_get(opts
, "debug-threads")) {
1046 qemu_thread_naming(qemu_opt_get_bool(opts
, "debug-threads", false));
1048 qemu_name
= qemu_opt_get(opts
, "guest");
1050 proc_name
= qemu_opt_get(opts
, "process");
1052 os_set_proc_name(proc_name
);
1058 bool defaults_enabled(void)
1060 return has_defaults
;
1063 bool usb_enabled(void)
1065 return machine_usb(current_machine
);
1069 static int parse_add_fd(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1071 int fd
, dupfd
, flags
;
1073 const char *fd_opaque
= NULL
;
1076 fd
= qemu_opt_get_number(opts
, "fd", -1);
1077 fdset_id
= qemu_opt_get_number(opts
, "set", -1);
1078 fd_opaque
= qemu_opt_get(opts
, "opaque");
1081 error_report("fd option is required and must be non-negative");
1085 if (fd
<= STDERR_FILENO
) {
1086 error_report("fd cannot be a standard I/O stream");
1091 * All fds inherited across exec() necessarily have FD_CLOEXEC
1092 * clear, while qemu sets FD_CLOEXEC on all other fds used internally.
1094 flags
= fcntl(fd
, F_GETFD
);
1095 if (flags
== -1 || (flags
& FD_CLOEXEC
)) {
1096 error_report("fd is not valid or already in use");
1101 error_report("set option is required and must be non-negative");
1105 #ifdef F_DUPFD_CLOEXEC
1106 dupfd
= fcntl(fd
, F_DUPFD_CLOEXEC
, 0);
1110 qemu_set_cloexec(dupfd
);
1114 error_report("error duplicating fd: %s", strerror(errno
));
1118 /* add the duplicate fd, and optionally the opaque string, to the fd set */
1119 fdinfo
= monitor_fdset_add_fd(dupfd
, true, fdset_id
, !!fd_opaque
, fd_opaque
,
1126 static int cleanup_add_fd(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1130 fd
= qemu_opt_get_number(opts
, "fd", -1);
1137 /***********************************************************/
1138 /* QEMU Block devices */
1140 #define HD_OPTS "media=disk"
1141 #define CDROM_OPTS "media=cdrom"
1143 #define PFLASH_OPTS ""
1147 static int drive_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1149 BlockInterfaceType
*block_default_type
= opaque
;
1151 return drive_new(opts
, *block_default_type
) == NULL
;
1154 static int drive_enable_snapshot(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1156 if (qemu_opt_get(opts
, "snapshot") == NULL
) {
1157 qemu_opt_set(opts
, "snapshot", "on", &error_abort
);
1162 static void default_drive(int enable
, int snapshot
, BlockInterfaceType type
,
1163 int index
, const char *optstr
)
1168 if (!enable
|| drive_get_by_index(type
, index
)) {
1172 opts
= drive_add(type
, index
, NULL
, optstr
);
1174 drive_enable_snapshot(NULL
, opts
, NULL
);
1177 dinfo
= drive_new(opts
, type
);
1181 dinfo
->is_default
= true;
1185 static QemuOptsList qemu_smp_opts
= {
1187 .implied_opt_name
= "cpus",
1188 .merge_lists
= true,
1189 .head
= QTAILQ_HEAD_INITIALIZER(qemu_smp_opts
.head
),
1193 .type
= QEMU_OPT_NUMBER
,
1196 .type
= QEMU_OPT_NUMBER
,
1199 .type
= QEMU_OPT_NUMBER
,
1202 .type
= QEMU_OPT_NUMBER
,
1205 .type
= QEMU_OPT_NUMBER
,
1207 { /*End of list */ }
1211 static void smp_parse(QemuOpts
*opts
)
1215 unsigned cpus
= qemu_opt_get_number(opts
, "cpus", 0);
1216 unsigned sockets
= qemu_opt_get_number(opts
, "sockets", 0);
1217 unsigned cores
= qemu_opt_get_number(opts
, "cores", 0);
1218 unsigned threads
= qemu_opt_get_number(opts
, "threads", 0);
1220 /* compute missing values, prefer sockets over cores over threads */
1221 if (cpus
== 0 || sockets
== 0) {
1222 sockets
= sockets
> 0 ? sockets
: 1;
1223 cores
= cores
> 0 ? cores
: 1;
1224 threads
= threads
> 0 ? threads
: 1;
1226 cpus
= cores
* threads
* sockets
;
1228 } else if (cores
== 0) {
1229 threads
= threads
> 0 ? threads
: 1;
1230 cores
= cpus
/ (sockets
* threads
);
1231 } else if (threads
== 0) {
1232 threads
= cpus
/ (cores
* sockets
);
1233 } else if (sockets
* cores
* threads
< cpus
) {
1234 error_report("cpu topology: "
1235 "sockets (%u) * cores (%u) * threads (%u) < "
1237 sockets
, cores
, threads
, cpus
);
1241 max_cpus
= qemu_opt_get_number(opts
, "maxcpus", cpus
);
1242 if (sockets
* cores
* threads
> max_cpus
) {
1243 error_report("cpu topology: "
1244 "sockets (%u) * cores (%u) * threads (%u) > "
1246 sockets
, cores
, threads
, max_cpus
);
1251 smp_cores
= cores
> 0 ? cores
: 1;
1252 smp_threads
= threads
> 0 ? threads
: 1;
1256 if (max_cpus
== 0) {
1257 max_cpus
= smp_cpus
;
1260 if (max_cpus
> MAX_CPUMASK_BITS
) {
1261 error_report("unsupported number of maxcpus");
1264 if (max_cpus
< smp_cpus
) {
1265 error_report("maxcpus must be equal to or greater than smp");
1269 if (smp_cpus
> 1 || smp_cores
> 1 || smp_threads
> 1) {
1270 Error
*blocker
= NULL
;
1271 error_setg(&blocker
, QERR_REPLAY_NOT_SUPPORTED
, "smp");
1272 replay_add_blocker(blocker
);
1276 static void realtime_init(void)
1279 if (os_mlock() < 0) {
1280 error_report("locking memory failed");
1287 static void configure_msg(QemuOpts
*opts
)
1289 enable_timestamp_msg
= qemu_opt_get_bool(opts
, "timestamp", true);
1292 /***********************************************************/
1295 typedef struct SemihostingConfig
{
1297 SemihostingTarget target
;
1300 const char *cmdline
; /* concatenated argv */
1301 } SemihostingConfig
;
1303 static SemihostingConfig semihosting
;
1305 bool semihosting_enabled(void)
1307 return semihosting
.enabled
;
1310 SemihostingTarget
semihosting_get_target(void)
1312 return semihosting
.target
;
1315 const char *semihosting_get_arg(int i
)
1317 if (i
>= semihosting
.argc
) {
1320 return semihosting
.argv
[i
];
1323 int semihosting_get_argc(void)
1325 return semihosting
.argc
;
1328 const char *semihosting_get_cmdline(void)
1330 if (semihosting
.cmdline
== NULL
&& semihosting
.argc
> 0) {
1331 semihosting
.cmdline
= g_strjoinv(" ", (gchar
**)semihosting
.argv
);
1333 return semihosting
.cmdline
;
1336 static int add_semihosting_arg(void *opaque
,
1337 const char *name
, const char *val
,
1340 SemihostingConfig
*s
= opaque
;
1341 if (strcmp(name
, "arg") == 0) {
1343 /* one extra element as g_strjoinv() expects NULL-terminated array */
1344 s
->argv
= g_realloc(s
->argv
, (s
->argc
+ 1) * sizeof(void *));
1345 s
->argv
[s
->argc
- 1] = val
;
1346 s
->argv
[s
->argc
] = NULL
;
1351 /* Use strings passed via -kernel/-append to initialize semihosting.argv[] */
1352 static inline void semihosting_arg_fallback(const char *file
, const char *cmd
)
1357 add_semihosting_arg(&semihosting
, "arg", file
, NULL
);
1359 /* split -append and initialize argv[1..n] */
1360 cmd_token
= strtok(g_strdup(cmd
), " ");
1362 add_semihosting_arg(&semihosting
, "arg", cmd_token
, NULL
);
1363 cmd_token
= strtok(NULL
, " ");
1367 /* Now we still need this for compatibility with XEN. */
1368 bool has_igd_gfx_passthru
;
1369 static void igd_gfx_passthru(void)
1371 has_igd_gfx_passthru
= current_machine
->igd_gfx_passthru
;
1374 /***********************************************************/
1377 static int usb_device_add(const char *devname
)
1379 USBDevice
*dev
= NULL
;
1380 #ifndef CONFIG_LINUX
1384 if (!usb_enabled()) {
1388 /* drivers with .usbdevice_name entry in USBDeviceInfo */
1389 dev
= usbdevice_create(devname
);
1393 /* the other ones */
1394 #ifndef CONFIG_LINUX
1395 /* only the linux version is qdev-ified, usb-bsd still needs this */
1396 if (strstart(devname
, "host:", &p
)) {
1397 dev
= usb_host_device_open(usb_bus_find(-1), p
);
1407 static int usb_device_del(const char *devname
)
1412 if (strstart(devname
, "host:", &p
)) {
1416 if (!usb_enabled()) {
1420 p
= strchr(devname
, '.');
1423 bus_num
= strtoul(devname
, NULL
, 0);
1424 addr
= strtoul(p
+ 1, NULL
, 0);
1426 return usb_device_delete_addr(bus_num
, addr
);
1429 static int usb_parse(const char *cmdline
)
1432 r
= usb_device_add(cmdline
);
1434 error_report("could not add USB device '%s'", cmdline
);
1439 void hmp_usb_add(Monitor
*mon
, const QDict
*qdict
)
1441 const char *devname
= qdict_get_str(qdict
, "devname");
1442 if (usb_device_add(devname
) < 0) {
1443 error_report("could not add USB device '%s'", devname
);
1447 void hmp_usb_del(Monitor
*mon
, const QDict
*qdict
)
1449 const char *devname
= qdict_get_str(qdict
, "devname");
1450 if (usb_device_del(devname
) < 0) {
1451 error_report("could not delete USB device '%s'", devname
);
1455 /***********************************************************/
1456 /* machine registration */
1458 MachineState
*current_machine
;
1460 static MachineClass
*find_machine(const char *name
)
1462 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
1463 MachineClass
*mc
= NULL
;
1465 for (el
= machines
; el
; el
= el
->next
) {
1466 MachineClass
*temp
= el
->data
;
1468 if (!strcmp(temp
->name
, name
)) {
1473 !strcmp(temp
->alias
, name
)) {
1479 g_slist_free(machines
);
1483 MachineClass
*find_default_machine(void)
1485 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
1486 MachineClass
*mc
= NULL
;
1488 for (el
= machines
; el
; el
= el
->next
) {
1489 MachineClass
*temp
= el
->data
;
1491 if (temp
->is_default
) {
1497 g_slist_free(machines
);
1501 MachineInfoList
*qmp_query_machines(Error
**errp
)
1503 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
1504 MachineInfoList
*mach_list
= NULL
;
1506 for (el
= machines
; el
; el
= el
->next
) {
1507 MachineClass
*mc
= el
->data
;
1508 MachineInfoList
*entry
;
1511 info
= g_malloc0(sizeof(*info
));
1512 if (mc
->is_default
) {
1513 info
->has_is_default
= true;
1514 info
->is_default
= true;
1518 info
->has_alias
= true;
1519 info
->alias
= g_strdup(mc
->alias
);
1522 info
->name
= g_strdup(mc
->name
);
1523 info
->cpu_max
= !mc
->max_cpus
? 1 : mc
->max_cpus
;
1525 entry
= g_malloc0(sizeof(*entry
));
1526 entry
->value
= info
;
1527 entry
->next
= mach_list
;
1531 g_slist_free(machines
);
1535 static int machine_help_func(QemuOpts
*opts
, MachineState
*machine
)
1537 ObjectProperty
*prop
;
1538 ObjectPropertyIterator
*iter
;
1540 if (!qemu_opt_has_help_opt(opts
)) {
1544 iter
= object_property_iter_init(OBJECT(machine
));
1545 while ((prop
= object_property_iter_next(iter
))) {
1550 error_printf("%s.%s=%s", MACHINE_GET_CLASS(machine
)->name
,
1551 prop
->name
, prop
->type
);
1552 if (prop
->description
) {
1553 error_printf(" (%s)\n", prop
->description
);
1558 object_property_iter_free(iter
);
1563 /***********************************************************/
1564 /* main execution loop */
1566 struct vm_change_state_entry
{
1567 VMChangeStateHandler
*cb
;
1569 QLIST_ENTRY (vm_change_state_entry
) entries
;
1572 static QLIST_HEAD(vm_change_state_head
, vm_change_state_entry
) vm_change_state_head
;
1574 VMChangeStateEntry
*qemu_add_vm_change_state_handler(VMChangeStateHandler
*cb
,
1577 VMChangeStateEntry
*e
;
1579 e
= g_malloc0(sizeof (*e
));
1583 QLIST_INSERT_HEAD(&vm_change_state_head
, e
, entries
);
1587 void qemu_del_vm_change_state_handler(VMChangeStateEntry
*e
)
1589 QLIST_REMOVE (e
, entries
);
1593 void vm_state_notify(int running
, RunState state
)
1595 VMChangeStateEntry
*e
, *next
;
1597 trace_vm_state_notify(running
, state
);
1599 QLIST_FOREACH_SAFE(e
, &vm_change_state_head
, entries
, next
) {
1600 e
->cb(e
->opaque
, running
, state
);
1604 /* reset/shutdown handler */
1606 typedef struct QEMUResetEntry
{
1607 QTAILQ_ENTRY(QEMUResetEntry
) entry
;
1608 QEMUResetHandler
*func
;
1612 static QTAILQ_HEAD(reset_handlers
, QEMUResetEntry
) reset_handlers
=
1613 QTAILQ_HEAD_INITIALIZER(reset_handlers
);
1614 static int reset_requested
;
1615 static int shutdown_requested
, shutdown_signal
= -1;
1616 static pid_t shutdown_pid
;
1617 static int powerdown_requested
;
1618 static int debug_requested
;
1619 static int suspend_requested
;
1620 static WakeupReason wakeup_reason
;
1621 static NotifierList powerdown_notifiers
=
1622 NOTIFIER_LIST_INITIALIZER(powerdown_notifiers
);
1623 static NotifierList suspend_notifiers
=
1624 NOTIFIER_LIST_INITIALIZER(suspend_notifiers
);
1625 static NotifierList wakeup_notifiers
=
1626 NOTIFIER_LIST_INITIALIZER(wakeup_notifiers
);
1627 static uint32_t wakeup_reason_mask
= ~(1 << QEMU_WAKEUP_REASON_NONE
);
1629 int qemu_shutdown_requested_get(void)
1631 return shutdown_requested
;
1634 int qemu_reset_requested_get(void)
1636 return reset_requested
;
1639 static int qemu_shutdown_requested(void)
1641 return atomic_xchg(&shutdown_requested
, 0);
1644 static void qemu_kill_report(void)
1646 if (!qtest_driver() && shutdown_signal
!= -1) {
1647 if (shutdown_pid
== 0) {
1648 /* This happens for eg ^C at the terminal, so it's worth
1649 * avoiding printing an odd message in that case.
1651 error_report("terminating on signal %d", shutdown_signal
);
1653 error_report("terminating on signal %d from pid " FMT_pid
,
1654 shutdown_signal
, shutdown_pid
);
1656 shutdown_signal
= -1;
1660 static int qemu_reset_requested(void)
1662 int r
= reset_requested
;
1663 if (r
&& replay_checkpoint(CHECKPOINT_RESET_REQUESTED
)) {
1664 reset_requested
= 0;
1670 static int qemu_suspend_requested(void)
1672 int r
= suspend_requested
;
1673 if (r
&& replay_checkpoint(CHECKPOINT_SUSPEND_REQUESTED
)) {
1674 suspend_requested
= 0;
1680 static WakeupReason
qemu_wakeup_requested(void)
1682 return wakeup_reason
;
1685 static int qemu_powerdown_requested(void)
1687 int r
= powerdown_requested
;
1688 powerdown_requested
= 0;
1692 static int qemu_debug_requested(void)
1694 int r
= debug_requested
;
1695 debug_requested
= 0;
1699 void qemu_register_reset(QEMUResetHandler
*func
, void *opaque
)
1701 QEMUResetEntry
*re
= g_malloc0(sizeof(QEMUResetEntry
));
1704 re
->opaque
= opaque
;
1705 QTAILQ_INSERT_TAIL(&reset_handlers
, re
, entry
);
1708 void qemu_unregister_reset(QEMUResetHandler
*func
, void *opaque
)
1712 QTAILQ_FOREACH(re
, &reset_handlers
, entry
) {
1713 if (re
->func
== func
&& re
->opaque
== opaque
) {
1714 QTAILQ_REMOVE(&reset_handlers
, re
, entry
);
1721 void qemu_devices_reset(void)
1723 QEMUResetEntry
*re
, *nre
;
1725 /* reset all devices */
1726 QTAILQ_FOREACH_SAFE(re
, &reset_handlers
, entry
, nre
) {
1727 re
->func(re
->opaque
);
1731 void qemu_system_reset(bool report
)
1735 mc
= current_machine
? MACHINE_GET_CLASS(current_machine
) : NULL
;
1737 if (mc
&& mc
->reset
) {
1740 qemu_devices_reset();
1743 qapi_event_send_reset(&error_abort
);
1745 cpu_synchronize_all_post_reset();
1748 void qemu_system_guest_panicked(void)
1751 current_cpu
->crash_occurred
= true;
1753 qapi_event_send_guest_panicked(GUEST_PANIC_ACTION_PAUSE
, &error_abort
);
1754 vm_stop(RUN_STATE_GUEST_PANICKED
);
1757 void qemu_system_reset_request(void)
1760 shutdown_requested
= 1;
1762 reset_requested
= 1;
1765 qemu_notify_event();
1768 static void qemu_system_suspend(void)
1771 notifier_list_notify(&suspend_notifiers
, NULL
);
1772 runstate_set(RUN_STATE_SUSPENDED
);
1773 qapi_event_send_suspend(&error_abort
);
1776 void qemu_system_suspend_request(void)
1778 if (runstate_check(RUN_STATE_SUSPENDED
)) {
1781 suspend_requested
= 1;
1783 qemu_notify_event();
1786 void qemu_register_suspend_notifier(Notifier
*notifier
)
1788 notifier_list_add(&suspend_notifiers
, notifier
);
1791 void qemu_system_wakeup_request(WakeupReason reason
)
1793 trace_system_wakeup_request(reason
);
1795 if (!runstate_check(RUN_STATE_SUSPENDED
)) {
1798 if (!(wakeup_reason_mask
& (1 << reason
))) {
1801 runstate_set(RUN_STATE_RUNNING
);
1802 wakeup_reason
= reason
;
1803 qemu_notify_event();
1806 void qemu_system_wakeup_enable(WakeupReason reason
, bool enabled
)
1809 wakeup_reason_mask
|= (1 << reason
);
1811 wakeup_reason_mask
&= ~(1 << reason
);
1815 void qemu_register_wakeup_notifier(Notifier
*notifier
)
1817 notifier_list_add(&wakeup_notifiers
, notifier
);
1820 void qemu_system_killed(int signal
, pid_t pid
)
1822 shutdown_signal
= signal
;
1826 /* Cannot call qemu_system_shutdown_request directly because
1827 * we are in a signal handler.
1829 shutdown_requested
= 1;
1830 qemu_notify_event();
1833 void qemu_system_shutdown_request(void)
1835 trace_qemu_system_shutdown_request();
1836 replay_shutdown_request();
1837 shutdown_requested
= 1;
1838 qemu_notify_event();
1841 static void qemu_system_powerdown(void)
1843 qapi_event_send_powerdown(&error_abort
);
1844 notifier_list_notify(&powerdown_notifiers
, NULL
);
1847 void qemu_system_powerdown_request(void)
1849 trace_qemu_system_powerdown_request();
1850 powerdown_requested
= 1;
1851 qemu_notify_event();
1854 void qemu_register_powerdown_notifier(Notifier
*notifier
)
1856 notifier_list_add(&powerdown_notifiers
, notifier
);
1859 void qemu_system_debug_request(void)
1861 debug_requested
= 1;
1862 qemu_notify_event();
1865 static bool main_loop_should_exit(void)
1868 if (qemu_debug_requested()) {
1869 vm_stop(RUN_STATE_DEBUG
);
1871 if (qemu_suspend_requested()) {
1872 qemu_system_suspend();
1874 if (qemu_shutdown_requested()) {
1876 qapi_event_send_shutdown(&error_abort
);
1878 vm_stop(RUN_STATE_SHUTDOWN
);
1883 if (qemu_reset_requested()) {
1885 cpu_synchronize_all_states();
1886 qemu_system_reset(VMRESET_REPORT
);
1888 if (runstate_needs_reset()) {
1889 runstate_set(RUN_STATE_PAUSED
);
1892 if (qemu_wakeup_requested()) {
1894 cpu_synchronize_all_states();
1895 qemu_system_reset(VMRESET_SILENT
);
1896 notifier_list_notify(&wakeup_notifiers
, &wakeup_reason
);
1897 wakeup_reason
= QEMU_WAKEUP_REASON_NONE
;
1899 qapi_event_send_wakeup(&error_abort
);
1901 if (qemu_powerdown_requested()) {
1902 qemu_system_powerdown();
1904 if (qemu_vmstop_requested(&r
)) {
1910 static void main_loop(void)
1914 #ifdef CONFIG_PROFILER
1918 nonblocking
= !kvm_enabled() && !xen_enabled() && last_io
> 0;
1919 #ifdef CONFIG_PROFILER
1920 ti
= profile_getclock();
1922 last_io
= main_loop_wait(nonblocking
);
1923 #ifdef CONFIG_PROFILER
1924 dev_time
+= profile_getclock() - ti
;
1926 } while (!main_loop_should_exit());
1929 static void version(void)
1931 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION
", Copyright (c) 2003-2008 Fabrice Bellard\n");
1934 static void help(int exitcode
)
1937 printf("usage: %s [options] [disk_image]\n\n"
1938 "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
1939 error_get_progname());
1941 #define QEMU_OPTIONS_GENERATE_HELP
1942 #include "qemu-options-wrapper.h"
1944 printf("\nDuring emulation, the following keys are useful:\n"
1945 "ctrl-alt-f toggle full screen\n"
1946 "ctrl-alt-n switch to virtual console 'n'\n"
1947 "ctrl-alt toggle mouse and keyboard grab\n"
1949 "When using -nographic, press 'ctrl-a h' to get some help.\n");
1954 #define HAS_ARG 0x0001
1956 typedef struct QEMUOption
{
1963 static const QEMUOption qemu_options
[] = {
1964 { "h", 0, QEMU_OPTION_h
, QEMU_ARCH_ALL
},
1965 #define QEMU_OPTIONS_GENERATE_OPTIONS
1966 #include "qemu-options-wrapper.h"
1970 static bool vga_available(void)
1972 return object_class_by_name("VGA") || object_class_by_name("isa-vga");
1975 static bool cirrus_vga_available(void)
1977 return object_class_by_name("cirrus-vga")
1978 || object_class_by_name("isa-cirrus-vga");
1981 static bool vmware_vga_available(void)
1983 return object_class_by_name("vmware-svga");
1986 static bool qxl_vga_available(void)
1988 return object_class_by_name("qxl-vga");
1991 static bool tcx_vga_available(void)
1993 return object_class_by_name("SUNW,tcx");
1996 static bool cg3_vga_available(void)
1998 return object_class_by_name("cgthree");
2001 static bool virtio_vga_available(void)
2003 return object_class_by_name("virtio-vga");
2006 static void select_vgahw (const char *p
)
2010 assert(vga_interface_type
== VGA_NONE
);
2011 if (strstart(p
, "std", &opts
)) {
2012 if (vga_available()) {
2013 vga_interface_type
= VGA_STD
;
2015 error_report("standard VGA not available");
2018 } else if (strstart(p
, "cirrus", &opts
)) {
2019 if (cirrus_vga_available()) {
2020 vga_interface_type
= VGA_CIRRUS
;
2022 error_report("Cirrus VGA not available");
2025 } else if (strstart(p
, "vmware", &opts
)) {
2026 if (vmware_vga_available()) {
2027 vga_interface_type
= VGA_VMWARE
;
2029 error_report("VMWare SVGA not available");
2032 } else if (strstart(p
, "virtio", &opts
)) {
2033 if (virtio_vga_available()) {
2034 vga_interface_type
= VGA_VIRTIO
;
2036 error_report("Virtio VGA not available");
2039 } else if (strstart(p
, "xenfb", &opts
)) {
2040 vga_interface_type
= VGA_XENFB
;
2041 } else if (strstart(p
, "qxl", &opts
)) {
2042 if (qxl_vga_available()) {
2043 vga_interface_type
= VGA_QXL
;
2045 error_report("QXL VGA not available");
2048 } else if (strstart(p
, "tcx", &opts
)) {
2049 if (tcx_vga_available()) {
2050 vga_interface_type
= VGA_TCX
;
2052 error_report("TCX framebuffer not available");
2055 } else if (strstart(p
, "cg3", &opts
)) {
2056 if (cg3_vga_available()) {
2057 vga_interface_type
= VGA_CG3
;
2059 error_report("CG3 framebuffer not available");
2062 } else if (!strstart(p
, "none", &opts
)) {
2064 error_report("unknown vga type: %s", p
);
2068 const char *nextopt
;
2070 if (strstart(opts
, ",retrace=", &nextopt
)) {
2072 if (strstart(opts
, "dumb", &nextopt
))
2073 vga_retrace_method
= VGA_RETRACE_DUMB
;
2074 else if (strstart(opts
, "precise", &nextopt
))
2075 vga_retrace_method
= VGA_RETRACE_PRECISE
;
2076 else goto invalid_vga
;
2077 } else goto invalid_vga
;
2082 static DisplayType
select_display(const char *p
)
2085 DisplayType display
= DT_DEFAULT
;
2087 if (strstart(p
, "sdl", &opts
)) {
2091 const char *nextopt
;
2093 if (strstart(opts
, ",frame=", &nextopt
)) {
2095 if (strstart(opts
, "on", &nextopt
)) {
2097 } else if (strstart(opts
, "off", &nextopt
)) {
2100 goto invalid_sdl_args
;
2102 } else if (strstart(opts
, ",alt_grab=", &nextopt
)) {
2104 if (strstart(opts
, "on", &nextopt
)) {
2106 } else if (strstart(opts
, "off", &nextopt
)) {
2109 goto invalid_sdl_args
;
2111 } else if (strstart(opts
, ",ctrl_grab=", &nextopt
)) {
2113 if (strstart(opts
, "on", &nextopt
)) {
2115 } else if (strstart(opts
, "off", &nextopt
)) {
2118 goto invalid_sdl_args
;
2120 } else if (strstart(opts
, ",window_close=", &nextopt
)) {
2122 if (strstart(opts
, "on", &nextopt
)) {
2124 } else if (strstart(opts
, "off", &nextopt
)) {
2127 goto invalid_sdl_args
;
2129 } else if (strstart(opts
, ",gl=", &nextopt
)) {
2131 if (strstart(opts
, "on", &nextopt
)) {
2133 } else if (strstart(opts
, "off", &nextopt
)) {
2136 goto invalid_sdl_args
;
2140 error_report("invalid SDL option string");
2146 error_report("SDL support is disabled");
2149 } else if (strstart(p
, "vnc", &opts
)) {
2153 if (vnc_parse(opts
+ 1, &err
) == NULL
) {
2154 error_report_err(err
);
2158 error_report("VNC requires a display argument vnc=<display>");
2162 error_report("VNC support is disabled");
2165 } else if (strstart(p
, "curses", &opts
)) {
2166 #ifdef CONFIG_CURSES
2167 display
= DT_CURSES
;
2169 error_report("curses support is disabled");
2172 } else if (strstart(p
, "gtk", &opts
)) {
2176 const char *nextopt
;
2178 if (strstart(opts
, ",grab_on_hover=", &nextopt
)) {
2180 if (strstart(opts
, "on", &nextopt
)) {
2181 grab_on_hover
= true;
2182 } else if (strstart(opts
, "off", &nextopt
)) {
2183 grab_on_hover
= false;
2185 goto invalid_gtk_args
;
2187 } else if (strstart(opts
, ",gl=", &nextopt
)) {
2189 if (strstart(opts
, "on", &nextopt
)) {
2191 } else if (strstart(opts
, "off", &nextopt
)) {
2194 goto invalid_gtk_args
;
2198 error_report("invalid GTK option string");
2204 error_report("GTK support is disabled");
2207 } else if (strstart(p
, "none", &opts
)) {
2210 error_report("unknown display type");
2217 static int balloon_parse(const char *arg
)
2221 if (strcmp(arg
, "none") == 0) {
2225 if (!strncmp(arg
, "virtio", 6)) {
2226 if (arg
[6] == ',') {
2227 /* have params -> parse them */
2228 opts
= qemu_opts_parse_noisily(qemu_find_opts("device"), arg
+ 7,
2233 /* create empty opts */
2234 opts
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
2237 qemu_opt_set(opts
, "driver", "virtio-balloon", &error_abort
);
2244 char *qemu_find_file(int type
, const char *name
)
2250 /* Try the name as a straight path first */
2251 if (access(name
, R_OK
) == 0) {
2252 trace_load_file(name
, name
);
2253 return g_strdup(name
);
2257 case QEMU_FILE_TYPE_BIOS
:
2260 case QEMU_FILE_TYPE_KEYMAP
:
2261 subdir
= "keymaps/";
2267 for (i
= 0; i
< data_dir_idx
; i
++) {
2268 buf
= g_strdup_printf("%s/%s%s", data_dir
[i
], subdir
, name
);
2269 if (access(buf
, R_OK
) == 0) {
2270 trace_load_file(name
, buf
);
2278 static inline bool nonempty_str(const char *str
)
2283 static int parse_fw_cfg(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2287 const char *name
, *file
, *str
;
2289 if (opaque
== NULL
) {
2290 error_report("fw_cfg device not available");
2293 name
= qemu_opt_get(opts
, "name");
2294 file
= qemu_opt_get(opts
, "file");
2295 str
= qemu_opt_get(opts
, "string");
2297 /* we need name and either a file or the content string */
2298 if (!(nonempty_str(name
) && (nonempty_str(file
) || nonempty_str(str
)))) {
2299 error_report("invalid argument(s)");
2302 if (nonempty_str(file
) && nonempty_str(str
)) {
2303 error_report("file and string are mutually exclusive");
2306 if (strlen(name
) > FW_CFG_MAX_FILE_PATH
- 1) {
2307 error_report("name too long (max. %d char)", FW_CFG_MAX_FILE_PATH
- 1);
2310 if (strncmp(name
, "opt/", 4) != 0) {
2311 error_report("warning: externally provided fw_cfg item names "
2312 "should be prefixed with \"opt/\"");
2314 if (nonempty_str(str
)) {
2315 size
= strlen(str
); /* NUL terminator NOT included in fw_cfg blob */
2316 buf
= g_memdup(str
, size
);
2318 if (!g_file_get_contents(file
, &buf
, &size
, NULL
)) {
2319 error_report("can't load %s", file
);
2323 fw_cfg_add_file((FWCfgState
*)opaque
, name
, buf
, size
);
2327 static int device_help_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2329 return qdev_device_help(opts
);
2332 static int device_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2337 dev
= qdev_device_add(opts
, &err
);
2339 error_report_err(err
);
2342 object_unref(OBJECT(dev
));
2346 static int chardev_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2348 Error
*local_err
= NULL
;
2350 qemu_chr_new_from_opts(opts
, NULL
, &local_err
);
2352 error_report_err(local_err
);
2358 #ifdef CONFIG_VIRTFS
2359 static int fsdev_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2362 ret
= qemu_fsdev_add(opts
);
2368 static int mon_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2370 CharDriverState
*chr
;
2371 const char *chardev
;
2375 mode
= qemu_opt_get(opts
, "mode");
2379 if (strcmp(mode
, "readline") == 0) {
2380 flags
= MONITOR_USE_READLINE
;
2381 } else if (strcmp(mode
, "control") == 0) {
2382 flags
= MONITOR_USE_CONTROL
;
2384 error_report("unknown monitor mode \"%s\"", mode
);
2388 if (qemu_opt_get_bool(opts
, "pretty", 0))
2389 flags
|= MONITOR_USE_PRETTY
;
2391 if (qemu_opt_get_bool(opts
, "default", 0))
2392 flags
|= MONITOR_IS_DEFAULT
;
2394 chardev
= qemu_opt_get(opts
, "chardev");
2395 chr
= qemu_chr_find(chardev
);
2397 error_report("chardev \"%s\" not found", chardev
);
2401 qemu_chr_fe_claim_no_fail(chr
);
2402 monitor_init(chr
, flags
);
2406 static void monitor_parse(const char *optarg
, const char *mode
, bool pretty
)
2408 static int monitor_device_index
= 0;
2409 Error
*local_err
= NULL
;
2415 if (strstart(optarg
, "chardev:", &p
)) {
2416 snprintf(label
, sizeof(label
), "%s", p
);
2418 snprintf(label
, sizeof(label
), "compat_monitor%d",
2419 monitor_device_index
);
2420 if (monitor_device_index
== 0) {
2423 opts
= qemu_chr_parse_compat(label
, optarg
);
2425 error_report("parse error: %s", optarg
);
2430 opts
= qemu_opts_create(qemu_find_opts("mon"), label
, 1, &local_err
);
2432 error_report_err(local_err
);
2435 qemu_opt_set(opts
, "mode", mode
, &error_abort
);
2436 qemu_opt_set(opts
, "chardev", label
, &error_abort
);
2437 qemu_opt_set_bool(opts
, "pretty", pretty
, &error_abort
);
2439 qemu_opt_set(opts
, "default", "on", &error_abort
);
2440 monitor_device_index
++;
2443 struct device_config
{
2445 DEV_USB
, /* -usbdevice */
2447 DEV_SERIAL
, /* -serial */
2448 DEV_PARALLEL
, /* -parallel */
2449 DEV_VIRTCON
, /* -virtioconsole */
2450 DEV_DEBUGCON
, /* -debugcon */
2451 DEV_GDB
, /* -gdb, -s */
2452 DEV_SCLP
, /* s390 sclp */
2454 const char *cmdline
;
2456 QTAILQ_ENTRY(device_config
) next
;
2459 static QTAILQ_HEAD(, device_config
) device_configs
=
2460 QTAILQ_HEAD_INITIALIZER(device_configs
);
2462 static void add_device_config(int type
, const char *cmdline
)
2464 struct device_config
*conf
;
2466 conf
= g_malloc0(sizeof(*conf
));
2468 conf
->cmdline
= cmdline
;
2469 loc_save(&conf
->loc
);
2470 QTAILQ_INSERT_TAIL(&device_configs
, conf
, next
);
2473 static int foreach_device_config(int type
, int (*func
)(const char *cmdline
))
2475 struct device_config
*conf
;
2478 QTAILQ_FOREACH(conf
, &device_configs
, next
) {
2479 if (conf
->type
!= type
)
2481 loc_push_restore(&conf
->loc
);
2482 rc
= func(conf
->cmdline
);
2483 loc_pop(&conf
->loc
);
2491 static int serial_parse(const char *devname
)
2493 static int index
= 0;
2496 if (strcmp(devname
, "none") == 0)
2498 if (index
== MAX_SERIAL_PORTS
) {
2499 error_report("too many serial ports");
2502 snprintf(label
, sizeof(label
), "serial%d", index
);
2503 serial_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2504 if (!serial_hds
[index
]) {
2505 error_report("could not connect serial device"
2506 " to character backend '%s'", devname
);
2513 static int parallel_parse(const char *devname
)
2515 static int index
= 0;
2518 if (strcmp(devname
, "none") == 0)
2520 if (index
== MAX_PARALLEL_PORTS
) {
2521 error_report("too many parallel ports");
2524 snprintf(label
, sizeof(label
), "parallel%d", index
);
2525 parallel_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2526 if (!parallel_hds
[index
]) {
2527 error_report("could not connect parallel device"
2528 " to character backend '%s'", devname
);
2535 static int virtcon_parse(const char *devname
)
2537 QemuOptsList
*device
= qemu_find_opts("device");
2538 static int index
= 0;
2540 QemuOpts
*bus_opts
, *dev_opts
;
2542 if (strcmp(devname
, "none") == 0)
2544 if (index
== MAX_VIRTIO_CONSOLES
) {
2545 error_report("too many virtio consoles");
2549 bus_opts
= qemu_opts_create(device
, NULL
, 0, &error_abort
);
2550 qemu_opt_set(bus_opts
, "driver", "virtio-serial", &error_abort
);
2552 dev_opts
= qemu_opts_create(device
, NULL
, 0, &error_abort
);
2553 qemu_opt_set(dev_opts
, "driver", "virtconsole", &error_abort
);
2555 snprintf(label
, sizeof(label
), "virtcon%d", index
);
2556 virtcon_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2557 if (!virtcon_hds
[index
]) {
2558 error_report("could not connect virtio console"
2559 " to character backend '%s'", devname
);
2562 qemu_opt_set(dev_opts
, "chardev", label
, &error_abort
);
2568 static int sclp_parse(const char *devname
)
2570 QemuOptsList
*device
= qemu_find_opts("device");
2571 static int index
= 0;
2575 if (strcmp(devname
, "none") == 0) {
2578 if (index
== MAX_SCLP_CONSOLES
) {
2579 error_report("too many sclp consoles");
2583 assert(arch_type
== QEMU_ARCH_S390X
);
2585 dev_opts
= qemu_opts_create(device
, NULL
, 0, NULL
);
2586 qemu_opt_set(dev_opts
, "driver", "sclpconsole", &error_abort
);
2588 snprintf(label
, sizeof(label
), "sclpcon%d", index
);
2589 sclp_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2590 if (!sclp_hds
[index
]) {
2591 error_report("could not connect sclp console"
2592 " to character backend '%s'", devname
);
2595 qemu_opt_set(dev_opts
, "chardev", label
, &error_abort
);
2601 static int debugcon_parse(const char *devname
)
2605 if (!qemu_chr_new("debugcon", devname
, NULL
)) {
2608 opts
= qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL
);
2610 error_report("already have a debugcon device");
2613 qemu_opt_set(opts
, "driver", "isa-debugcon", &error_abort
);
2614 qemu_opt_set(opts
, "chardev", "debugcon", &error_abort
);
2618 static gint
machine_class_cmp(gconstpointer a
, gconstpointer b
)
2620 const MachineClass
*mc1
= a
, *mc2
= b
;
2623 if (mc1
->family
== NULL
) {
2624 if (mc2
->family
== NULL
) {
2625 /* Compare standalone machine types against each other; they sort
2626 * in increasing order.
2628 return strcmp(object_class_get_name(OBJECT_CLASS(mc1
)),
2629 object_class_get_name(OBJECT_CLASS(mc2
)));
2632 /* Standalone machine types sort after families. */
2636 if (mc2
->family
== NULL
) {
2637 /* Families sort before standalone machine types. */
2641 /* Families sort between each other alphabetically increasingly. */
2642 res
= strcmp(mc1
->family
, mc2
->family
);
2647 /* Within the same family, machine types sort in decreasing order. */
2648 return strcmp(object_class_get_name(OBJECT_CLASS(mc2
)),
2649 object_class_get_name(OBJECT_CLASS(mc1
)));
2652 static MachineClass
*machine_parse(const char *name
)
2654 MachineClass
*mc
= NULL
;
2655 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
2658 mc
= find_machine(name
);
2661 g_slist_free(machines
);
2664 if (name
&& !is_help_option(name
)) {
2665 error_report("unsupported machine type");
2666 error_printf("Use -machine help to list supported machines\n");
2668 printf("Supported machines are:\n");
2669 machines
= g_slist_sort(machines
, machine_class_cmp
);
2670 for (el
= machines
; el
; el
= el
->next
) {
2671 MachineClass
*mc
= el
->data
;
2673 printf("%-20s %s (alias of %s)\n", mc
->alias
, mc
->desc
, mc
->name
);
2675 printf("%-20s %s%s\n", mc
->name
, mc
->desc
,
2676 mc
->is_default
? " (default)" : "");
2680 g_slist_free(machines
);
2681 exit(!name
|| !is_help_option(name
));
2684 void qemu_add_exit_notifier(Notifier
*notify
)
2686 notifier_list_add(&exit_notifiers
, notify
);
2689 void qemu_remove_exit_notifier(Notifier
*notify
)
2691 notifier_remove(notify
);
2694 static void qemu_run_exit_notifiers(void)
2696 notifier_list_notify(&exit_notifiers
, NULL
);
2699 static bool machine_init_done
;
2701 void qemu_add_machine_init_done_notifier(Notifier
*notify
)
2703 notifier_list_add(&machine_init_done_notifiers
, notify
);
2704 if (machine_init_done
) {
2705 notify
->notify(notify
, NULL
);
2709 static void qemu_run_machine_init_done_notifiers(void)
2711 notifier_list_notify(&machine_init_done_notifiers
, NULL
);
2712 machine_init_done
= true;
2715 static const QEMUOption
*lookup_opt(int argc
, char **argv
,
2716 const char **poptarg
, int *poptind
)
2718 const QEMUOption
*popt
;
2719 int optind
= *poptind
;
2720 char *r
= argv
[optind
];
2723 loc_set_cmdline(argv
, optind
, 1);
2725 /* Treat --foo the same as -foo. */
2728 popt
= qemu_options
;
2731 error_report("invalid option");
2734 if (!strcmp(popt
->name
, r
+ 1))
2738 if (popt
->flags
& HAS_ARG
) {
2739 if (optind
>= argc
) {
2740 error_report("requires an argument");
2743 optarg
= argv
[optind
++];
2744 loc_set_cmdline(argv
, optind
- 2, 2);
2755 static int machine_set_property(void *opaque
,
2756 const char *name
, const char *value
,
2759 Object
*obj
= OBJECT(opaque
);
2760 Error
*local_err
= NULL
;
2763 if (strcmp(name
, "type") == 0) {
2767 qom_name
= g_strdup(name
);
2775 object_property_parse(obj
, value
, qom_name
, &local_err
);
2779 error_report_err(local_err
);
2788 * Initial object creation happens before all other
2789 * QEMU data types are created. The majority of objects
2790 * can be created at this point. The rng-egd object
2791 * cannot be created here, as it depends on the chardev
2794 static bool object_create_initial(const char *type
)
2796 if (g_str_equal(type
, "rng-egd")) {
2801 * return false for concrete netfilters since
2802 * they depend on netdevs already existing
2804 if (g_str_equal(type
, "filter-buffer") ||
2805 g_str_equal(type
, "filter-dump")) {
2814 * The remainder of object creation happens after the
2815 * creation of chardev, fsdev, net clients and device data types.
2817 static bool object_create_delayed(const char *type
)
2819 return !object_create_initial(type
);
2823 static int object_create(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2831 bool (*type_predicate
)(const char *) = opaque
;
2833 ov
= opts_visitor_new(opts
);
2834 pdict
= qemu_opts_to_qdict(opts
, NULL
);
2836 visit_start_struct(opts_get_visitor(ov
), &dummy
, NULL
, NULL
, 0, &err
);
2841 qdict_del(pdict
, "qom-type");
2842 visit_type_str(opts_get_visitor(ov
), &type
, "qom-type", &err
);
2846 if (!type_predicate(type
)) {
2850 qdict_del(pdict
, "id");
2851 visit_type_str(opts_get_visitor(ov
), &id
, "id", &err
);
2856 object_add(type
, id
, pdict
, opts_get_visitor(ov
), &err
);
2860 visit_end_struct(opts_get_visitor(ov
), &err
);
2862 qmp_object_del(id
, NULL
);
2866 opts_visitor_cleanup(ov
);
2873 error_report_err(err
);
2879 static void set_memory_options(uint64_t *ram_slots
, ram_addr_t
*maxram_size
,
2883 const char *mem_str
;
2884 const char *maxmem_str
, *slots_str
;
2885 const ram_addr_t default_ram_size
= mc
->default_ram_size
;
2886 QemuOpts
*opts
= qemu_find_opts_singleton("memory");
2889 mem_str
= qemu_opt_get(opts
, "size");
2892 error_report("missing 'size' option value");
2896 sz
= qemu_opt_get_size(opts
, "size", ram_size
);
2898 /* Fix up legacy suffix-less format */
2899 if (g_ascii_isdigit(mem_str
[strlen(mem_str
) - 1])) {
2900 uint64_t overflow_check
= sz
;
2903 if ((sz
>> 20) != overflow_check
) {
2904 error_report("too large 'size' option value");
2910 /* backward compatibility behaviour for case "-m 0" */
2912 sz
= default_ram_size
;
2915 sz
= QEMU_ALIGN_UP(sz
, 8192);
2917 if (ram_size
!= sz
) {
2918 error_report("ram size too large");
2922 /* store value for the future use */
2923 qemu_opt_set_number(opts
, "size", ram_size
, &error_abort
);
2924 *maxram_size
= ram_size
;
2926 maxmem_str
= qemu_opt_get(opts
, "maxmem");
2927 slots_str
= qemu_opt_get(opts
, "slots");
2928 if (maxmem_str
&& slots_str
) {
2931 sz
= qemu_opt_get_size(opts
, "maxmem", 0);
2932 slots
= qemu_opt_get_number(opts
, "slots", 0);
2933 if (sz
< ram_size
) {
2934 error_report("invalid value of -m option maxmem: "
2935 "maximum memory size (0x%" PRIx64
") must be at least "
2936 "the initial memory size (0x" RAM_ADDR_FMT
")",
2939 } else if (sz
> ram_size
) {
2941 error_report("invalid value of -m option: maxmem was "
2942 "specified, but no hotplug slots were specified");
2946 error_report("invalid value of -m option maxmem: "
2947 "memory slots were specified but maximum memory size "
2948 "(0x%" PRIx64
") is equal to the initial memory size "
2949 "(0x" RAM_ADDR_FMT
")", sz
, ram_size
);
2955 } else if ((!maxmem_str
&& slots_str
) ||
2956 (maxmem_str
&& !slots_str
)) {
2957 error_report("invalid -m option value: missing "
2958 "'%s' option", slots_str
? "maxmem" : "slots");
2963 int main(int argc
, char **argv
, char **envp
)
2966 int snapshot
, linux_boot
;
2967 const char *initrd_filename
;
2968 const char *kernel_filename
, *kernel_cmdline
;
2969 const char *boot_order
= NULL
;
2970 const char *boot_once
= NULL
;
2972 int cyls
, heads
, secs
, translation
;
2973 QemuOpts
*hda_opts
= NULL
, *opts
, *machine_opts
, *icount_opts
= NULL
;
2974 QemuOptsList
*olist
;
2977 const char *loadvm
= NULL
;
2978 MachineClass
*machine_class
;
2979 const char *cpu_model
;
2980 const char *vga_model
= NULL
;
2981 const char *qtest_chrdev
= NULL
;
2982 const char *qtest_log
= NULL
;
2983 const char *pid_file
= NULL
;
2984 const char *incoming
= NULL
;
2986 int show_vnc_port
= 0;
2988 bool defconfig
= true;
2989 bool userconfig
= true;
2990 const char *log_mask
= NULL
;
2991 const char *log_file
= NULL
;
2992 const char *trace_events
= NULL
;
2993 const char *trace_file
= NULL
;
2994 ram_addr_t maxram_size
;
2995 uint64_t ram_slots
= 0;
2996 FILE *vmstate_dump_file
= NULL
;
2997 Error
*main_loop_err
= NULL
;
3000 qemu_init_cpu_loop();
3001 qemu_mutex_lock_iothread();
3003 atexit(qemu_run_exit_notifiers
);
3004 error_set_progname(argv
[0]);
3005 qemu_init_exec_dir(argv
[0]);
3007 module_call_init(MODULE_INIT_QOM
);
3009 qemu_add_opts(&qemu_drive_opts
);
3010 qemu_add_drive_opts(&qemu_legacy_drive_opts
);
3011 qemu_add_drive_opts(&qemu_common_drive_opts
);
3012 qemu_add_drive_opts(&qemu_drive_opts
);
3013 qemu_add_opts(&qemu_chardev_opts
);
3014 qemu_add_opts(&qemu_device_opts
);
3015 qemu_add_opts(&qemu_netdev_opts
);
3016 qemu_add_opts(&qemu_net_opts
);
3017 qemu_add_opts(&qemu_rtc_opts
);
3018 qemu_add_opts(&qemu_global_opts
);
3019 qemu_add_opts(&qemu_mon_opts
);
3020 qemu_add_opts(&qemu_trace_opts
);
3021 qemu_add_opts(&qemu_option_rom_opts
);
3022 qemu_add_opts(&qemu_machine_opts
);
3023 qemu_add_opts(&qemu_mem_opts
);
3024 qemu_add_opts(&qemu_smp_opts
);
3025 qemu_add_opts(&qemu_boot_opts
);
3026 qemu_add_opts(&qemu_sandbox_opts
);
3027 qemu_add_opts(&qemu_add_fd_opts
);
3028 qemu_add_opts(&qemu_object_opts
);
3029 qemu_add_opts(&qemu_tpmdev_opts
);
3030 qemu_add_opts(&qemu_realtime_opts
);
3031 qemu_add_opts(&qemu_msg_opts
);
3032 qemu_add_opts(&qemu_name_opts
);
3033 qemu_add_opts(&qemu_numa_opts
);
3034 qemu_add_opts(&qemu_icount_opts
);
3035 qemu_add_opts(&qemu_semihosting_config_opts
);
3036 qemu_add_opts(&qemu_fw_cfg_opts
);
3040 if (qcrypto_init(&err
) < 0) {
3041 error_reportf_err(err
, "cannot initialize crypto: ");
3044 rtc_clock
= QEMU_CLOCK_HOST
;
3046 QLIST_INIT (&vm_change_state_head
);
3047 os_setup_early_signal_handling();
3049 module_call_init(MODULE_INIT_MACHINE
);
3050 machine_class
= find_default_machine();
3053 cyls
= heads
= secs
= 0;
3054 translation
= BIOS_ATA_TRANSLATION_AUTO
;
3058 bdrv_init_with_whitelist();
3062 /* first pass of option parsing */
3064 while (optind
< argc
) {
3065 if (argv
[optind
][0] != '-') {
3069 const QEMUOption
*popt
;
3071 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
3072 switch (popt
->index
) {
3073 case QEMU_OPTION_nodefconfig
:
3076 case QEMU_OPTION_nouserconfig
:
3085 ret
= qemu_read_default_config_files(userconfig
);
3091 /* second pass of option parsing */
3096 if (argv
[optind
][0] != '-') {
3097 hda_opts
= drive_add(IF_DEFAULT
, 0, argv
[optind
++], HD_OPTS
);
3099 const QEMUOption
*popt
;
3101 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
3102 if (!(popt
->arch_mask
& arch_type
)) {
3103 printf("Option %s not supported for this target\n", popt
->name
);
3106 switch(popt
->index
) {
3107 case QEMU_OPTION_no_kvm_irqchip
: {
3108 olist
= qemu_find_opts("machine");
3109 qemu_opts_parse_noisily(olist
, "kernel_irqchip=off", false);
3112 case QEMU_OPTION_cpu
:
3113 /* hw initialization will check this */
3116 case QEMU_OPTION_hda
:
3120 snprintf(buf
, sizeof(buf
), "%s", HD_OPTS
);
3122 snprintf(buf
, sizeof(buf
),
3123 "%s,cyls=%d,heads=%d,secs=%d%s",
3124 HD_OPTS
, cyls
, heads
, secs
,
3125 translation
== BIOS_ATA_TRANSLATION_LBA
?
3127 translation
== BIOS_ATA_TRANSLATION_NONE
?
3128 ",trans=none" : "");
3129 drive_add(IF_DEFAULT
, 0, optarg
, buf
);
3132 case QEMU_OPTION_hdb
:
3133 case QEMU_OPTION_hdc
:
3134 case QEMU_OPTION_hdd
:
3135 drive_add(IF_DEFAULT
, popt
->index
- QEMU_OPTION_hda
, optarg
,
3138 case QEMU_OPTION_drive
:
3139 if (drive_def(optarg
) == NULL
) {
3143 case QEMU_OPTION_set
:
3144 if (qemu_set_option(optarg
) != 0)
3147 case QEMU_OPTION_global
:
3148 if (qemu_global_option(optarg
) != 0)
3151 case QEMU_OPTION_mtdblock
:
3152 drive_add(IF_MTD
, -1, optarg
, MTD_OPTS
);
3154 case QEMU_OPTION_sd
:
3155 drive_add(IF_SD
, -1, optarg
, SD_OPTS
);
3157 case QEMU_OPTION_pflash
:
3158 drive_add(IF_PFLASH
, -1, optarg
, PFLASH_OPTS
);
3160 case QEMU_OPTION_snapshot
:
3163 case QEMU_OPTION_hdachs
:
3167 cyls
= strtol(p
, (char **)&p
, 0);
3168 if (cyls
< 1 || cyls
> 16383)
3173 heads
= strtol(p
, (char **)&p
, 0);
3174 if (heads
< 1 || heads
> 16)
3179 secs
= strtol(p
, (char **)&p
, 0);
3180 if (secs
< 1 || secs
> 63)
3184 if (!strcmp(p
, "large")) {
3185 translation
= BIOS_ATA_TRANSLATION_LARGE
;
3186 } else if (!strcmp(p
, "rechs")) {
3187 translation
= BIOS_ATA_TRANSLATION_RECHS
;
3188 } else if (!strcmp(p
, "none")) {
3189 translation
= BIOS_ATA_TRANSLATION_NONE
;
3190 } else if (!strcmp(p
, "lba")) {
3191 translation
= BIOS_ATA_TRANSLATION_LBA
;
3192 } else if (!strcmp(p
, "auto")) {
3193 translation
= BIOS_ATA_TRANSLATION_AUTO
;
3197 } else if (*p
!= '\0') {
3199 error_report("invalid physical CHS format");
3202 if (hda_opts
!= NULL
) {
3203 qemu_opt_set_number(hda_opts
, "cyls", cyls
,
3205 qemu_opt_set_number(hda_opts
, "heads", heads
,
3207 qemu_opt_set_number(hda_opts
, "secs", secs
,
3209 if (translation
== BIOS_ATA_TRANSLATION_LARGE
) {
3210 qemu_opt_set(hda_opts
, "trans", "large",
3212 } else if (translation
== BIOS_ATA_TRANSLATION_RECHS
) {
3213 qemu_opt_set(hda_opts
, "trans", "rechs",
3215 } else if (translation
== BIOS_ATA_TRANSLATION_LBA
) {
3216 qemu_opt_set(hda_opts
, "trans", "lba",
3218 } else if (translation
== BIOS_ATA_TRANSLATION_NONE
) {
3219 qemu_opt_set(hda_opts
, "trans", "none",
3225 case QEMU_OPTION_numa
:
3226 opts
= qemu_opts_parse_noisily(qemu_find_opts("numa"),
3232 case QEMU_OPTION_display
:
3233 display_type
= select_display(optarg
);
3235 case QEMU_OPTION_nographic
:
3236 display_type
= DT_NOGRAPHIC
;
3238 case QEMU_OPTION_curses
:
3239 #ifdef CONFIG_CURSES
3240 display_type
= DT_CURSES
;
3242 error_report("curses support is disabled");
3246 case QEMU_OPTION_portrait
:
3247 graphic_rotate
= 90;
3249 case QEMU_OPTION_rotate
:
3250 graphic_rotate
= strtol(optarg
, (char **) &optarg
, 10);
3251 if (graphic_rotate
!= 0 && graphic_rotate
!= 90 &&
3252 graphic_rotate
!= 180 && graphic_rotate
!= 270) {
3253 error_report("only 90, 180, 270 deg rotation is available");
3257 case QEMU_OPTION_kernel
:
3258 qemu_opts_set(qemu_find_opts("machine"), 0, "kernel", optarg
,
3261 case QEMU_OPTION_initrd
:
3262 qemu_opts_set(qemu_find_opts("machine"), 0, "initrd", optarg
,
3265 case QEMU_OPTION_append
:
3266 qemu_opts_set(qemu_find_opts("machine"), 0, "append", optarg
,
3269 case QEMU_OPTION_dtb
:
3270 qemu_opts_set(qemu_find_opts("machine"), 0, "dtb", optarg
,
3273 case QEMU_OPTION_cdrom
:
3274 drive_add(IF_DEFAULT
, 2, optarg
, CDROM_OPTS
);
3276 case QEMU_OPTION_boot
:
3277 opts
= qemu_opts_parse_noisily(qemu_find_opts("boot-opts"),
3283 case QEMU_OPTION_fda
:
3284 case QEMU_OPTION_fdb
:
3285 drive_add(IF_FLOPPY
, popt
->index
- QEMU_OPTION_fda
,
3288 case QEMU_OPTION_no_fd_bootchk
:
3291 case QEMU_OPTION_netdev
:
3292 if (net_client_parse(qemu_find_opts("netdev"), optarg
) == -1) {
3296 case QEMU_OPTION_net
:
3297 if (net_client_parse(qemu_find_opts("net"), optarg
) == -1) {
3301 #ifdef CONFIG_LIBISCSI
3302 case QEMU_OPTION_iscsi
:
3303 opts
= qemu_opts_parse_noisily(qemu_find_opts("iscsi"),
3311 case QEMU_OPTION_tftp
:
3312 legacy_tftp_prefix
= optarg
;
3314 case QEMU_OPTION_bootp
:
3315 legacy_bootp_filename
= optarg
;
3317 case QEMU_OPTION_redir
:
3318 if (net_slirp_redir(optarg
) < 0)
3322 case QEMU_OPTION_bt
:
3323 add_device_config(DEV_BT
, optarg
);
3325 case QEMU_OPTION_audio_help
:
3329 case QEMU_OPTION_soundhw
:
3330 select_soundhw (optarg
);
3335 case QEMU_OPTION_version
:
3340 opts
= qemu_opts_parse_noisily(qemu_find_opts("memory"),
3347 case QEMU_OPTION_tpmdev
:
3348 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg
) < 0) {
3353 case QEMU_OPTION_mempath
:
3356 case QEMU_OPTION_mem_prealloc
:
3366 add_device_config(DEV_GDB
, "tcp::" DEFAULT_GDBSTUB_PORT
);
3368 case QEMU_OPTION_gdb
:
3369 add_device_config(DEV_GDB
, optarg
);
3372 if (data_dir_idx
< ARRAY_SIZE(data_dir
)) {
3373 data_dir
[data_dir_idx
++] = optarg
;
3376 case QEMU_OPTION_bios
:
3377 qemu_opts_set(qemu_find_opts("machine"), 0, "firmware", optarg
,
3380 case QEMU_OPTION_singlestep
:
3387 keyboard_layout
= optarg
;
3389 case QEMU_OPTION_localtime
:
3392 case QEMU_OPTION_vga
:
3401 w
= strtol(p
, (char **)&p
, 10);
3404 error_report("invalid resolution or depth");
3410 h
= strtol(p
, (char **)&p
, 10);
3415 depth
= strtol(p
, (char **)&p
, 10);
3416 if (depth
!= 8 && depth
!= 15 && depth
!= 16 &&
3417 depth
!= 24 && depth
!= 32)
3419 } else if (*p
== '\0') {
3420 depth
= graphic_depth
;
3427 graphic_depth
= depth
;
3430 case QEMU_OPTION_echr
:
3433 term_escape_char
= strtol(optarg
, &r
, 0);
3435 printf("Bad argument to echr\n");
3438 case QEMU_OPTION_monitor
:
3439 default_monitor
= 0;
3440 if (strncmp(optarg
, "none", 4)) {
3441 monitor_parse(optarg
, "readline", false);
3444 case QEMU_OPTION_qmp
:
3445 monitor_parse(optarg
, "control", false);
3446 default_monitor
= 0;
3448 case QEMU_OPTION_qmp_pretty
:
3449 monitor_parse(optarg
, "control", true);
3450 default_monitor
= 0;
3452 case QEMU_OPTION_mon
:
3453 opts
= qemu_opts_parse_noisily(qemu_find_opts("mon"), optarg
,
3458 default_monitor
= 0;
3460 case QEMU_OPTION_chardev
:
3461 opts
= qemu_opts_parse_noisily(qemu_find_opts("chardev"),
3467 case QEMU_OPTION_fsdev
:
3468 olist
= qemu_find_opts("fsdev");
3470 error_report("fsdev support is disabled");
3473 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3478 case QEMU_OPTION_virtfs
: {
3481 const char *writeout
, *sock_fd
, *socket
;
3483 olist
= qemu_find_opts("virtfs");
3485 error_report("virtfs support is disabled");
3488 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3493 if (qemu_opt_get(opts
, "fsdriver") == NULL
||
3494 qemu_opt_get(opts
, "mount_tag") == NULL
) {
3495 error_report("Usage: -virtfs fsdriver,mount_tag=tag");
3498 fsdev
= qemu_opts_create(qemu_find_opts("fsdev"),
3499 qemu_opt_get(opts
, "mount_tag"),
3502 error_report("duplicate fsdev id: %s",
3503 qemu_opt_get(opts
, "mount_tag"));
3507 writeout
= qemu_opt_get(opts
, "writeout");
3509 #ifdef CONFIG_SYNC_FILE_RANGE
3510 qemu_opt_set(fsdev
, "writeout", writeout
, &error_abort
);
3512 error_report("writeout=immediate not supported "
3513 "on this platform");
3517 qemu_opt_set(fsdev
, "fsdriver",
3518 qemu_opt_get(opts
, "fsdriver"), &error_abort
);
3519 qemu_opt_set(fsdev
, "path", qemu_opt_get(opts
, "path"),
3521 qemu_opt_set(fsdev
, "security_model",
3522 qemu_opt_get(opts
, "security_model"),
3524 socket
= qemu_opt_get(opts
, "socket");
3526 qemu_opt_set(fsdev
, "socket", socket
, &error_abort
);
3528 sock_fd
= qemu_opt_get(opts
, "sock_fd");
3530 qemu_opt_set(fsdev
, "sock_fd", sock_fd
, &error_abort
);
3533 qemu_opt_set_bool(fsdev
, "readonly",
3534 qemu_opt_get_bool(opts
, "readonly", 0),
3536 device
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
3538 qemu_opt_set(device
, "driver", "virtio-9p-pci", &error_abort
);
3539 qemu_opt_set(device
, "fsdev",
3540 qemu_opt_get(opts
, "mount_tag"), &error_abort
);
3541 qemu_opt_set(device
, "mount_tag",
3542 qemu_opt_get(opts
, "mount_tag"), &error_abort
);
3545 case QEMU_OPTION_virtfs_synth
: {
3549 fsdev
= qemu_opts_create(qemu_find_opts("fsdev"), "v_synth",
3552 error_report("duplicate option: %s", "virtfs_synth");
3555 qemu_opt_set(fsdev
, "fsdriver", "synth", &error_abort
);
3557 device
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
3559 qemu_opt_set(device
, "driver", "virtio-9p-pci", &error_abort
);
3560 qemu_opt_set(device
, "fsdev", "v_synth", &error_abort
);
3561 qemu_opt_set(device
, "mount_tag", "v_synth", &error_abort
);
3564 case QEMU_OPTION_serial
:
3565 add_device_config(DEV_SERIAL
, optarg
);
3567 if (strncmp(optarg
, "mon:", 4) == 0) {
3568 default_monitor
= 0;
3571 case QEMU_OPTION_watchdog
:
3573 error_report("only one watchdog option may be given");
3578 case QEMU_OPTION_watchdog_action
:
3579 if (select_watchdog_action(optarg
) == -1) {
3580 error_report("unknown -watchdog-action parameter");
3584 case QEMU_OPTION_virtiocon
:
3585 add_device_config(DEV_VIRTCON
, optarg
);
3586 default_virtcon
= 0;
3587 if (strncmp(optarg
, "mon:", 4) == 0) {
3588 default_monitor
= 0;
3591 case QEMU_OPTION_parallel
:
3592 add_device_config(DEV_PARALLEL
, optarg
);
3593 default_parallel
= 0;
3594 if (strncmp(optarg
, "mon:", 4) == 0) {
3595 default_monitor
= 0;
3598 case QEMU_OPTION_debugcon
:
3599 add_device_config(DEV_DEBUGCON
, optarg
);
3601 case QEMU_OPTION_loadvm
:
3604 case QEMU_OPTION_full_screen
:
3607 case QEMU_OPTION_no_frame
:
3610 case QEMU_OPTION_alt_grab
:
3613 case QEMU_OPTION_ctrl_grab
:
3616 case QEMU_OPTION_no_quit
:
3619 case QEMU_OPTION_sdl
:
3621 display_type
= DT_SDL
;
3624 error_report("SDL support is disabled");
3627 case QEMU_OPTION_pidfile
:
3630 case QEMU_OPTION_win2k_hack
:
3631 win2k_install_hack
= 1;
3633 case QEMU_OPTION_rtc_td_hack
: {
3634 static GlobalProperty slew_lost_ticks
[] = {
3636 .driver
= "mc146818rtc",
3637 .property
= "lost_tick_policy",
3640 { /* end of list */ }
3643 qdev_prop_register_global_list(slew_lost_ticks
);
3646 case QEMU_OPTION_acpitable
:
3647 opts
= qemu_opts_parse_noisily(qemu_find_opts("acpi"),
3652 do_acpitable_option(opts
);
3654 case QEMU_OPTION_smbios
:
3655 opts
= qemu_opts_parse_noisily(qemu_find_opts("smbios"),
3660 do_smbios_option(opts
);
3662 case QEMU_OPTION_fwcfg
:
3663 opts
= qemu_opts_parse_noisily(qemu_find_opts("fw_cfg"),
3669 case QEMU_OPTION_enable_kvm
:
3670 olist
= qemu_find_opts("machine");
3671 qemu_opts_parse_noisily(olist
, "accel=kvm", false);
3674 case QEMU_OPTION_machine
:
3675 olist
= qemu_find_opts("machine");
3676 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3681 case QEMU_OPTION_no_kvm
:
3682 olist
= qemu_find_opts("machine");
3683 qemu_opts_parse_noisily(olist
, "accel=tcg", false);
3685 case QEMU_OPTION_no_kvm_pit
: {
3686 error_report("warning: ignoring deprecated option");
3689 case QEMU_OPTION_no_kvm_pit_reinjection
: {
3690 static GlobalProperty kvm_pit_lost_tick_policy
[] = {
3692 .driver
= "kvm-pit",
3693 .property
= "lost_tick_policy",
3696 { /* end of list */ }
3699 error_report("warning: deprecated, replaced by "
3700 "-global kvm-pit.lost_tick_policy=discard");
3701 qdev_prop_register_global_list(kvm_pit_lost_tick_policy
);
3704 case QEMU_OPTION_usb
:
3705 olist
= qemu_find_opts("machine");
3706 qemu_opts_parse_noisily(olist
, "usb=on", false);
3708 case QEMU_OPTION_usbdevice
:
3709 olist
= qemu_find_opts("machine");
3710 qemu_opts_parse_noisily(olist
, "usb=on", false);
3711 add_device_config(DEV_USB
, optarg
);
3713 case QEMU_OPTION_device
:
3714 if (!qemu_opts_parse_noisily(qemu_find_opts("device"),
3719 case QEMU_OPTION_smp
:
3720 if (!qemu_opts_parse_noisily(qemu_find_opts("smp-opts"),
3725 case QEMU_OPTION_vnc
:
3728 Error
*local_err
= NULL
;
3730 if (vnc_parse(optarg
, &local_err
) == NULL
) {
3731 error_report_err(local_err
);
3735 error_report("VNC support is disabled");
3740 case QEMU_OPTION_no_acpi
:
3743 case QEMU_OPTION_no_hpet
:
3746 case QEMU_OPTION_balloon
:
3747 if (balloon_parse(optarg
) < 0) {
3748 error_report("unknown -balloon argument %s", optarg
);
3752 case QEMU_OPTION_no_reboot
:
3755 case QEMU_OPTION_no_shutdown
:
3758 case QEMU_OPTION_show_cursor
:
3761 case QEMU_OPTION_uuid
:
3762 if(qemu_uuid_parse(optarg
, qemu_uuid
) < 0) {
3763 error_report("failed to parse UUID string: wrong format");
3766 qemu_uuid_set
= true;
3768 case QEMU_OPTION_option_rom
:
3769 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
3770 error_report("too many option ROMs");
3773 opts
= qemu_opts_parse_noisily(qemu_find_opts("option-rom"),
3778 option_rom
[nb_option_roms
].name
= qemu_opt_get(opts
, "romfile");
3779 option_rom
[nb_option_roms
].bootindex
=
3780 qemu_opt_get_number(opts
, "bootindex", -1);
3781 if (!option_rom
[nb_option_roms
].name
) {
3782 error_report("Option ROM file is not specified");
3787 case QEMU_OPTION_semihosting
:
3788 semihosting
.enabled
= true;
3789 semihosting
.target
= SEMIHOSTING_TARGET_AUTO
;
3791 case QEMU_OPTION_semihosting_config
:
3792 semihosting
.enabled
= true;
3793 opts
= qemu_opts_parse_noisily(qemu_find_opts("semihosting-config"),
3796 semihosting
.enabled
= qemu_opt_get_bool(opts
, "enable",
3798 const char *target
= qemu_opt_get(opts
, "target");
3799 if (target
!= NULL
) {
3800 if (strcmp("native", target
) == 0) {
3801 semihosting
.target
= SEMIHOSTING_TARGET_NATIVE
;
3802 } else if (strcmp("gdb", target
) == 0) {
3803 semihosting
.target
= SEMIHOSTING_TARGET_GDB
;
3804 } else if (strcmp("auto", target
) == 0) {
3805 semihosting
.target
= SEMIHOSTING_TARGET_AUTO
;
3807 error_report("unsupported semihosting-config %s",
3812 semihosting
.target
= SEMIHOSTING_TARGET_AUTO
;
3814 /* Set semihosting argument count and vector */
3815 qemu_opt_foreach(opts
, add_semihosting_arg
,
3816 &semihosting
, NULL
);
3818 error_report("unsupported semihosting-config %s", optarg
);
3822 case QEMU_OPTION_tdf
:
3823 error_report("warning: ignoring deprecated option");
3825 case QEMU_OPTION_name
:
3826 opts
= qemu_opts_parse_noisily(qemu_find_opts("name"),
3832 case QEMU_OPTION_prom_env
:
3833 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
3834 error_report("too many prom variables");
3837 prom_envs
[nb_prom_envs
] = optarg
;
3840 case QEMU_OPTION_old_param
:
3843 case QEMU_OPTION_clock
:
3844 /* Clock options no longer exist. Keep this option for
3845 * backward compatibility.
3848 case QEMU_OPTION_startdate
:
3849 configure_rtc_date_offset(optarg
, 1);
3851 case QEMU_OPTION_rtc
:
3852 opts
= qemu_opts_parse_noisily(qemu_find_opts("rtc"), optarg
,
3857 configure_rtc(opts
);
3859 case QEMU_OPTION_tb_size
:
3860 tcg_tb_size
= strtol(optarg
, NULL
, 0);
3861 if (tcg_tb_size
< 0) {
3865 case QEMU_OPTION_icount
:
3866 icount_opts
= qemu_opts_parse_noisily(qemu_find_opts("icount"),
3872 case QEMU_OPTION_incoming
:
3874 runstate_set(RUN_STATE_INMIGRATE
);
3878 case QEMU_OPTION_nodefaults
:
3881 case QEMU_OPTION_xen_domid
:
3882 if (!(xen_available())) {
3883 printf("Option %s not supported for this target\n", popt
->name
);
3886 xen_domid
= atoi(optarg
);
3888 case QEMU_OPTION_xen_create
:
3889 if (!(xen_available())) {
3890 printf("Option %s not supported for this target\n", popt
->name
);
3893 xen_mode
= XEN_CREATE
;
3895 case QEMU_OPTION_xen_attach
:
3896 if (!(xen_available())) {
3897 printf("Option %s not supported for this target\n", popt
->name
);
3900 xen_mode
= XEN_ATTACH
;
3902 case QEMU_OPTION_trace
:
3904 opts
= qemu_opts_parse_noisily(qemu_find_opts("trace"),
3909 trace_events
= qemu_opt_get(opts
, "events");
3910 trace_file
= qemu_opt_get(opts
, "file");
3913 case QEMU_OPTION_readconfig
:
3915 int ret
= qemu_read_config_file(optarg
);
3917 error_report("read config %s: %s", optarg
,
3923 case QEMU_OPTION_spice
:
3924 olist
= qemu_find_opts("spice");
3926 error_report("spice support is disabled");
3929 opts
= qemu_opts_parse_noisily(olist
, optarg
, false);
3935 case QEMU_OPTION_writeconfig
:
3938 if (strcmp(optarg
, "-") == 0) {
3941 fp
= fopen(optarg
, "w");
3943 error_report("open %s: %s", optarg
,
3948 qemu_config_write(fp
);
3954 case QEMU_OPTION_qtest
:
3955 qtest_chrdev
= optarg
;
3957 case QEMU_OPTION_qtest_log
:
3960 case QEMU_OPTION_sandbox
:
3961 opts
= qemu_opts_parse_noisily(qemu_find_opts("sandbox"),
3967 case QEMU_OPTION_add_fd
:
3969 opts
= qemu_opts_parse_noisily(qemu_find_opts("add-fd"),
3975 error_report("File descriptor passing is disabled on this "
3980 case QEMU_OPTION_object
:
3981 opts
= qemu_opts_parse_noisily(qemu_find_opts("object"),
3987 case QEMU_OPTION_realtime
:
3988 opts
= qemu_opts_parse_noisily(qemu_find_opts("realtime"),
3993 enable_mlock
= qemu_opt_get_bool(opts
, "mlock", true);
3995 case QEMU_OPTION_msg
:
3996 opts
= qemu_opts_parse_noisily(qemu_find_opts("msg"), optarg
,
4001 configure_msg(opts
);
4003 case QEMU_OPTION_dump_vmstate
:
4004 if (vmstate_dump_file
) {
4005 error_report("only one '-dump-vmstate' "
4006 "option may be given");
4009 vmstate_dump_file
= fopen(optarg
, "w");
4010 if (vmstate_dump_file
== NULL
) {
4011 error_report("open %s: %s", optarg
, strerror(errno
));
4016 os_parse_cmd_args(popt
->index
, optarg
);
4021 replay_configure(icount_opts
);
4023 opts
= qemu_get_machine_opts();
4024 optarg
= qemu_opt_get(opts
, "type");
4026 machine_class
= machine_parse(optarg
);
4029 if (machine_class
== NULL
) {
4030 error_report("No machine specified, and there is no default");
4031 error_printf("Use -machine help to list supported machines\n");
4035 set_memory_options(&ram_slots
, &maxram_size
, machine_class
);
4041 if (qemu_init_main_loop(&main_loop_err
)) {
4042 error_report_err(main_loop_err
);
4046 if (qemu_opts_foreach(qemu_find_opts("sandbox"),
4047 parse_sandbox
, NULL
, NULL
)) {
4051 if (qemu_opts_foreach(qemu_find_opts("name"),
4052 parse_name
, NULL
, NULL
)) {
4057 if (qemu_opts_foreach(qemu_find_opts("add-fd"),
4058 parse_add_fd
, NULL
, NULL
)) {
4062 if (qemu_opts_foreach(qemu_find_opts("add-fd"),
4063 cleanup_add_fd
, NULL
, NULL
)) {
4068 current_machine
= MACHINE(object_new(object_class_get_name(
4069 OBJECT_CLASS(machine_class
))));
4070 if (machine_help_func(qemu_get_machine_opts(), current_machine
)) {
4073 object_property_add_child(object_get_root(), "machine",
4074 OBJECT(current_machine
), &error_abort
);
4075 cpu_exec_init_all();
4077 if (machine_class
->hw_version
) {
4078 qemu_set_hw_version(machine_class
->hw_version
);
4081 /* Init CPU def lists, based on config
4082 * - Must be called after all the qemu_read_config_file() calls
4083 * - Must be called before list_cpus()
4084 * - Must be called before machine->init()
4088 if (cpu_model
&& is_help_option(cpu_model
)) {
4089 list_cpus(stdout
, &fprintf
, cpu_model
);
4093 /* Open the logfile at this point and set the log mask if necessary.
4096 qemu_set_log_filename(log_file
);
4101 mask
= qemu_str_to_log_mask(log_mask
);
4103 qemu_print_log_usage(stdout
);
4109 if (!is_daemonized()) {
4110 if (!trace_init_backends(trace_events
, trace_file
)) {
4115 /* If no data_dir is specified then try to find it relative to the
4117 if (data_dir_idx
< ARRAY_SIZE(data_dir
)) {
4118 data_dir
[data_dir_idx
] = os_find_datadir();
4119 if (data_dir
[data_dir_idx
] != NULL
) {
4123 /* If all else fails use the install path specified when building. */
4124 if (data_dir_idx
< ARRAY_SIZE(data_dir
)) {
4125 data_dir
[data_dir_idx
++] = CONFIG_QEMU_DATADIR
;
4128 smp_parse(qemu_opts_find(qemu_find_opts("smp-opts"), NULL
));
4130 machine_class
->max_cpus
= machine_class
->max_cpus
?: 1; /* Default to UP */
4131 if (max_cpus
> machine_class
->max_cpus
) {
4132 error_report("Number of SMP CPUs requested (%d) exceeds max CPUs "
4133 "supported by machine '%s' (%d)", max_cpus
,
4134 machine_class
->name
, machine_class
->max_cpus
);
4139 * Get the default machine options from the machine if it is not already
4140 * specified either by the configuration file or by the command line.
4142 if (machine_class
->default_machine_opts
) {
4143 qemu_opts_set_defaults(qemu_find_opts("machine"),
4144 machine_class
->default_machine_opts
, 0);
4147 qemu_opts_foreach(qemu_find_opts("device"),
4148 default_driver_check
, NULL
, NULL
);
4149 qemu_opts_foreach(qemu_find_opts("global"),
4150 default_driver_check
, NULL
, NULL
);
4152 if (!vga_model
&& !default_vga
) {
4153 vga_interface_type
= VGA_DEVICE
;
4155 if (!has_defaults
|| machine_class
->no_serial
) {
4158 if (!has_defaults
|| machine_class
->no_parallel
) {
4159 default_parallel
= 0;
4161 if (!has_defaults
|| !machine_class
->use_virtcon
) {
4162 default_virtcon
= 0;
4164 if (!has_defaults
|| !machine_class
->use_sclp
) {
4167 if (!has_defaults
|| machine_class
->no_floppy
) {
4170 if (!has_defaults
|| machine_class
->no_cdrom
) {
4173 if (!has_defaults
|| machine_class
->no_sdcard
) {
4176 if (!has_defaults
) {
4177 default_monitor
= 0;
4182 if (is_daemonized()) {
4183 /* According to documentation and historically, -nographic redirects
4184 * serial port, parallel port and monitor to stdio, which does not work
4185 * with -daemonize. We can redirect these to null instead, but since
4186 * -nographic is legacy, let's just error out.
4187 * We disallow -nographic only if all other ports are not redirected
4188 * explicitly, to not break existing legacy setups which uses
4189 * -nographic _and_ redirects all ports explicitly - this is valid
4190 * usage, -nographic is just a no-op in this case.
4192 if (display_type
== DT_NOGRAPHIC
4193 && (default_parallel
|| default_serial
4194 || default_monitor
|| default_virtcon
)) {
4195 error_report("-nographic cannot be used with -daemonize");
4198 #ifdef CONFIG_CURSES
4199 if (display_type
== DT_CURSES
) {
4200 error_report("curses display cannot be used with -daemonize");
4206 if (display_type
== DT_NOGRAPHIC
) {
4207 if (default_parallel
)
4208 add_device_config(DEV_PARALLEL
, "null");
4209 if (default_serial
&& default_monitor
) {
4210 add_device_config(DEV_SERIAL
, "mon:stdio");
4211 } else if (default_virtcon
&& default_monitor
) {
4212 add_device_config(DEV_VIRTCON
, "mon:stdio");
4213 } else if (default_sclp
&& default_monitor
) {
4214 add_device_config(DEV_SCLP
, "mon:stdio");
4217 add_device_config(DEV_SERIAL
, "stdio");
4218 if (default_virtcon
)
4219 add_device_config(DEV_VIRTCON
, "stdio");
4221 add_device_config(DEV_SCLP
, "stdio");
4223 if (default_monitor
)
4224 monitor_parse("stdio", "readline", false);
4228 add_device_config(DEV_SERIAL
, "vc:80Cx24C");
4229 if (default_parallel
)
4230 add_device_config(DEV_PARALLEL
, "vc:80Cx24C");
4231 if (default_monitor
)
4232 monitor_parse("vc:80Cx24C", "readline", false);
4233 if (default_virtcon
)
4234 add_device_config(DEV_VIRTCON
, "vc:80Cx24C");
4236 add_device_config(DEV_SCLP
, "vc:80Cx24C");
4240 #if defined(CONFIG_VNC)
4241 if (!QTAILQ_EMPTY(&(qemu_find_opts("vnc")->head
))) {
4245 if (display_type
== DT_DEFAULT
&& !display_remote
) {
4246 #if defined(CONFIG_GTK)
4247 display_type
= DT_GTK
;
4248 #elif defined(CONFIG_SDL) || defined(CONFIG_COCOA)
4249 display_type
= DT_SDL
;
4250 #elif defined(CONFIG_VNC)
4251 vnc_parse("localhost:0,to=99,id=default", &error_abort
);
4254 display_type
= DT_NONE
;
4258 if ((no_frame
|| alt_grab
|| ctrl_grab
) && display_type
!= DT_SDL
) {
4259 error_report("-no-frame, -alt-grab and -ctrl-grab are only valid "
4260 "for SDL, ignoring option");
4262 if (no_quit
&& (display_type
!= DT_GTK
&& display_type
!= DT_SDL
)) {
4263 error_report("-no-quit is only valid for GTK and SDL, "
4267 #if defined(CONFIG_GTK)
4268 if (display_type
== DT_GTK
) {
4269 early_gtk_display_init(request_opengl
);
4272 #if defined(CONFIG_SDL)
4273 if (display_type
== DT_SDL
) {
4274 sdl_display_early_init(request_opengl
);
4277 if (request_opengl
== 1 && display_opengl
== 0) {
4278 #if defined(CONFIG_OPENGL)
4279 error_report("OpenGL is not supported by the display");
4281 error_report("OpenGL support is disabled");
4289 if (qemu_opts_foreach(qemu_find_opts("object"),
4291 object_create_initial
, NULL
)) {
4295 if (qemu_opts_foreach(qemu_find_opts("chardev"),
4296 chardev_init_func
, NULL
, NULL
)) {
4300 #ifdef CONFIG_VIRTFS
4301 if (qemu_opts_foreach(qemu_find_opts("fsdev"),
4302 fsdev_init_func
, NULL
, NULL
)) {
4307 if (pid_file
&& qemu_create_pidfile(pid_file
) != 0) {
4308 error_report("could not acquire pid file: %s", strerror(errno
));
4312 if (qemu_opts_foreach(qemu_find_opts("device"),
4313 device_help_func
, NULL
, NULL
)) {
4317 machine_opts
= qemu_get_machine_opts();
4318 if (qemu_opt_foreach(machine_opts
, machine_set_property
, current_machine
,
4320 object_unref(OBJECT(current_machine
));
4324 configure_accelerator(current_machine
);
4327 qtest_init(qtest_chrdev
, qtest_log
, &error_fatal
);
4330 machine_opts
= qemu_get_machine_opts();
4331 kernel_filename
= qemu_opt_get(machine_opts
, "kernel");
4332 initrd_filename
= qemu_opt_get(machine_opts
, "initrd");
4333 kernel_cmdline
= qemu_opt_get(machine_opts
, "append");
4334 bios_name
= qemu_opt_get(machine_opts
, "firmware");
4336 opts
= qemu_opts_find(qemu_find_opts("boot-opts"), NULL
);
4338 boot_order
= qemu_opt_get(opts
, "order");
4340 validate_bootdevices(boot_order
, &error_fatal
);
4343 boot_once
= qemu_opt_get(opts
, "once");
4345 validate_bootdevices(boot_once
, &error_fatal
);
4348 boot_menu
= qemu_opt_get_bool(opts
, "menu", boot_menu
);
4349 boot_strict
= qemu_opt_get_bool(opts
, "strict", false);
4353 boot_order
= machine_class
->default_boot_order
;
4356 if (!kernel_cmdline
) {
4357 kernel_cmdline
= "";
4358 current_machine
->kernel_cmdline
= (char *)kernel_cmdline
;
4361 linux_boot
= (kernel_filename
!= NULL
);
4363 if (!linux_boot
&& *kernel_cmdline
!= '\0') {
4364 error_report("-append only allowed with -kernel option");
4368 if (!linux_boot
&& initrd_filename
!= NULL
) {
4369 error_report("-initrd only allowed with -kernel option");
4373 if (!linux_boot
&& qemu_opt_get(machine_opts
, "dtb")) {
4374 error_report("-dtb only allowed with -kernel option");
4378 if (semihosting_enabled() && !semihosting_get_argc() && kernel_filename
) {
4379 /* fall back to the -kernel/-append */
4380 semihosting_arg_fallback(kernel_filename
, kernel_cmdline
);
4383 os_set_line_buffering();
4386 /* spice needs the timers to be initialized by this point */
4392 if (kvm_enabled() || xen_enabled()) {
4393 error_report("-icount is not allowed with kvm or xen");
4396 configure_icount(icount_opts
, &error_abort
);
4397 qemu_opts_del(icount_opts
);
4400 /* clean up network at qemu process termination */
4401 atexit(&net_cleanup
);
4403 if (net_init_clients() < 0) {
4407 if (qemu_opts_foreach(qemu_find_opts("object"),
4409 object_create_delayed
, NULL
)) {
4414 if (tpm_init() < 0) {
4419 /* init the bluetooth world */
4420 if (foreach_device_config(DEV_BT
, bt_parse
))
4423 if (!xen_enabled()) {
4424 /* On 32-bit hosts, QEMU is limited by virtual address space */
4425 if (ram_size
> (2047 << 20) && HOST_LONG_BITS
== 32) {
4426 error_report("at most 2047 MB RAM can be simulated");
4434 /* If the currently selected machine wishes to override the units-per-bus
4435 * property of its default HBA interface type, do so now. */
4436 if (machine_class
->units_per_default_bus
) {
4437 override_max_devs(machine_class
->block_default_type
,
4438 machine_class
->units_per_default_bus
);
4441 /* open the virtual block devices */
4442 if (snapshot
|| replay_mode
!= REPLAY_MODE_NONE
) {
4443 qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot
,
4446 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func
,
4447 &machine_class
->block_default_type
, NULL
)) {
4451 default_drive(default_cdrom
, snapshot
, machine_class
->block_default_type
, 2,
4453 default_drive(default_floppy
, snapshot
, IF_FLOPPY
, 0, FD_OPTS
);
4454 default_drive(default_sdcard
, snapshot
, IF_SD
, 0, SD_OPTS
);
4456 parse_numa_opts(machine_class
);
4458 if (qemu_opts_foreach(qemu_find_opts("mon"),
4459 mon_init_func
, NULL
, NULL
)) {
4463 if (foreach_device_config(DEV_SERIAL
, serial_parse
) < 0)
4465 if (foreach_device_config(DEV_PARALLEL
, parallel_parse
) < 0)
4467 if (foreach_device_config(DEV_VIRTCON
, virtcon_parse
) < 0)
4469 if (foreach_device_config(DEV_SCLP
, sclp_parse
) < 0) {
4472 if (foreach_device_config(DEV_DEBUGCON
, debugcon_parse
) < 0)
4475 /* If no default VGA is requested, the default is "none". */
4477 if (machine_class
->default_display
) {
4478 vga_model
= machine_class
->default_display
;
4479 } else if (cirrus_vga_available()) {
4480 vga_model
= "cirrus";
4481 } else if (vga_available()) {
4486 select_vgahw(vga_model
);
4490 i
= select_watchdog(watchdog
);
4492 exit (i
== 1 ? 1 : 0);
4495 if (machine_class
->compat_props
) {
4496 qdev_prop_register_global_list(machine_class
->compat_props
);
4500 /* This checkpoint is required by replay to separate prior clock
4501 reading from the other reads, because timer polling functions query
4502 clock values from the log. */
4503 replay_checkpoint(CHECKPOINT_INIT
);
4504 qdev_machine_init();
4506 current_machine
->ram_size
= ram_size
;
4507 current_machine
->maxram_size
= maxram_size
;
4508 current_machine
->ram_slots
= ram_slots
;
4509 current_machine
->boot_order
= boot_order
;
4510 current_machine
->cpu_model
= cpu_model
;
4512 machine_class
->init(current_machine
);
4518 cpu_synchronize_all_post_init();
4520 numa_post_machine_init();
4522 if (qemu_opts_foreach(qemu_find_opts("fw_cfg"),
4523 parse_fw_cfg
, fw_cfg_find(), NULL
) != 0) {
4527 /* init USB devices */
4528 if (usb_enabled()) {
4529 if (foreach_device_config(DEV_USB
, usb_parse
) < 0)
4533 /* Check if IGD GFX passthrough. */
4536 /* init generic devices */
4537 if (qemu_opts_foreach(qemu_find_opts("device"),
4538 device_init_func
, NULL
, NULL
)) {
4542 /* Did we create any drives that we failed to create a device for? */
4543 drive_check_orphaned();
4545 net_check_clients();
4548 Error
*local_err
= NULL
;
4549 qemu_boot_set(boot_once
, &local_err
);
4551 error_report_err(local_err
);
4554 qemu_register_reset(restore_boot_order
, g_strdup(boot_order
));
4557 ds
= init_displaystate();
4559 /* init local displays */
4560 switch (display_type
) {
4562 (void)ds
; /* avoid warning if no display is configured */
4564 #if defined(CONFIG_CURSES)
4566 curses_display_init(ds
, full_screen
);
4569 #if defined(CONFIG_SDL)
4571 sdl_display_init(ds
, full_screen
, no_frame
);
4573 #elif defined(CONFIG_COCOA)
4575 cocoa_display_init(ds
, full_screen
);
4578 #if defined(CONFIG_GTK)
4580 gtk_display_init(ds
, full_screen
, grab_on_hover
);
4587 /* must be after terminal init, SDL library changes signal handlers */
4588 os_setup_signal_handling();
4591 /* init remote displays */
4592 qemu_opts_foreach(qemu_find_opts("vnc"),
4593 vnc_init_func
, NULL
, NULL
);
4594 if (show_vnc_port
) {
4595 char *ret
= vnc_display_local_addr("default");
4596 printf("VNC server running on '%s'\n", ret
);
4602 qemu_spice_display_init();
4606 if (foreach_device_config(DEV_GDB
, gdbserver_start
) < 0) {
4610 qdev_machine_creation_done();
4612 /* TODO: once all bus devices are qdevified, this should be done
4613 * when bus is created by qdev.c */
4614 qemu_register_reset(qbus_reset_all_fn
, sysbus_get_default());
4615 qemu_run_machine_init_done_notifiers();
4617 if (rom_check_and_register_reset() != 0) {
4618 error_report("rom check and register reset failed");
4624 /* This checkpoint is required by replay to separate prior clock
4625 reading from the other reads, because timer polling functions query
4626 clock values from the log. */
4627 replay_checkpoint(CHECKPOINT_RESET
);
4628 qemu_system_reset(VMRESET_SILENT
);
4629 register_global_state();
4631 if (load_vmstate(loadvm
) < 0) {
4636 qdev_prop_check_globals();
4637 if (vmstate_dump_file
) {
4639 dump_vmstate_json_to_file(vmstate_dump_file
);
4644 Error
*local_err
= NULL
;
4645 qemu_start_incoming_migration(incoming
, &local_err
);
4647 error_reportf_err(local_err
, "-incoming %s: ", incoming
);
4650 } else if (autostart
) {
4656 if (is_daemonized()) {
4657 if (!trace_init_backends(trace_events
, trace_file
)) {
4663 replay_disable_events();