4 * Copyright (c) 2003-2008 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
31 #include "config-host.h"
34 #include "sysemu/seccomp.h"
37 #if defined(CONFIG_VDE)
38 #include <libvdeplug.h>
42 #if defined(__APPLE__) || defined(main)
44 int qemu_main(int argc
, char **argv
, char **envp
);
45 int main(int argc
, char **argv
)
47 return qemu_main(argc
, argv
, NULL
);
50 #define main qemu_main
52 #endif /* CONFIG_SDL */
56 #define main qemu_main
57 #endif /* CONFIG_COCOA */
61 #include "qemu/sockets.h"
63 #include "hw/boards.h"
64 #include "sysemu/accel.h"
66 #include "hw/i386/pc.h"
67 #include "hw/isa/isa.h"
69 #include "sysemu/watchdog.h"
70 #include "hw/i386/smbios.h"
71 #include "hw/xen/xen.h"
73 #include "hw/loader.h"
74 #include "monitor/qdev.h"
75 #include "sysemu/bt.h"
77 #include "net/slirp.h"
78 #include "monitor/monitor.h"
79 #include "ui/console.h"
80 #include "sysemu/sysemu.h"
81 #include "exec/gdbstub.h"
82 #include "qemu/timer.h"
83 #include "sysemu/char.h"
84 #include "qemu/bitmap.h"
85 #include "sysemu/blockdev.h"
86 #include "hw/block/block.h"
87 #include "migration/block.h"
88 #include "sysemu/tpm.h"
89 #include "sysemu/dma.h"
90 #include "audio/audio.h"
91 #include "migration/migration.h"
92 #include "sysemu/kvm.h"
93 #include "qapi/qmp/qjson.h"
94 #include "qemu/option.h"
95 #include "qemu/config-file.h"
96 #include "qemu-options.h"
97 #include "qmp-commands.h"
98 #include "qemu/main-loop.h"
100 #include "fsdev/qemu-fsdev.h"
102 #include "sysemu/qtest.h"
104 #include "disas/disas.h"
107 #include "slirp/libslirp.h"
110 #include "trace/control.h"
111 #include "qemu/queue.h"
112 #include "sysemu/cpus.h"
113 #include "sysemu/arch_init.h"
114 #include "qemu/osdep.h"
116 #include "ui/qemu-spice.h"
117 #include "qapi/string-input-visitor.h"
118 #include "qapi/opts-visitor.h"
119 #include "qom/object_interfaces.h"
120 #include "qapi-event.h"
122 #define DEFAULT_RAM_SIZE 128
124 #define MAX_VIRTIO_CONSOLES 1
125 #define MAX_SCLP_CONSOLES 1
127 static const char *data_dir
[16];
128 static int data_dir_idx
;
129 const char *bios_name
= NULL
;
130 enum vga_retrace_method vga_retrace_method
= VGA_RETRACE_DUMB
;
131 DisplayType display_type
= DT_DEFAULT
;
132 static int display_remote
;
133 const char* keyboard_layout
= NULL
;
135 const char *mem_path
= NULL
;
136 int mem_prealloc
= 0; /* force preallocation of physical target memory */
137 bool enable_mlock
= false;
139 NICInfo nd_table
[MAX_NICS
];
141 static int rtc_utc
= 1;
142 static int rtc_date_offset
= -1; /* -1 means no change */
143 QEMUClockType rtc_clock
;
144 int vga_interface_type
= VGA_NONE
;
145 static int full_screen
= 0;
146 static int no_frame
= 0;
149 static bool grab_on_hover
;
151 CharDriverState
*serial_hds
[MAX_SERIAL_PORTS
];
152 CharDriverState
*parallel_hds
[MAX_PARALLEL_PORTS
];
153 CharDriverState
*virtcon_hds
[MAX_VIRTIO_CONSOLES
];
154 CharDriverState
*sclp_hds
[MAX_SCLP_CONSOLES
];
155 int win2k_install_hack
= 0;
162 const char *vnc_display
;
164 int acpi_enabled
= 1;
167 static int no_reboot
;
170 int graphic_rotate
= 0;
171 const char *watchdog
;
172 QEMUOptionRom option_rom
[MAX_OPTION_ROMS
];
174 int semihosting_enabled
= 0;
176 const char *qemu_name
;
179 unsigned int nb_prom_envs
= 0;
180 const char *prom_envs
[MAX_PROM_ENVS
];
183 uint8_t *boot_splash_filedata
;
184 size_t boot_splash_filedata_size
;
185 uint8_t qemu_extra_params_fw
[2];
187 int icount_align_option
;
191 NodeInfo numa_info
[MAX_NODES
];
193 /* The bytes in qemu_uuid[] are in the order specified by RFC4122, _not_ in the
194 * little-endian "wire format" described in the SMBIOS 2.6 specification.
196 uint8_t qemu_uuid
[16];
199 static QEMUBootSetHandler
*boot_set_handler
;
200 static void *boot_set_opaque
;
202 static NotifierList exit_notifiers
=
203 NOTIFIER_LIST_INITIALIZER(exit_notifiers
);
205 static NotifierList machine_init_done_notifiers
=
206 NOTIFIER_LIST_INITIALIZER(machine_init_done_notifiers
);
210 enum xen_mode xen_mode
= XEN_EMULATE
;
212 static int has_defaults
= 1;
213 static int default_serial
= 1;
214 static int default_parallel
= 1;
215 static int default_virtcon
= 1;
216 static int default_sclp
= 1;
217 static int default_monitor
= 1;
218 static int default_floppy
= 1;
219 static int default_cdrom
= 1;
220 static int default_sdcard
= 1;
221 static int default_vga
= 1;
227 { .driver
= "isa-serial", .flag
= &default_serial
},
228 { .driver
= "isa-parallel", .flag
= &default_parallel
},
229 { .driver
= "isa-fdc", .flag
= &default_floppy
},
230 { .driver
= "ide-cd", .flag
= &default_cdrom
},
231 { .driver
= "ide-hd", .flag
= &default_cdrom
},
232 { .driver
= "ide-drive", .flag
= &default_cdrom
},
233 { .driver
= "scsi-cd", .flag
= &default_cdrom
},
234 { .driver
= "virtio-serial-pci", .flag
= &default_virtcon
},
235 { .driver
= "virtio-serial-s390", .flag
= &default_virtcon
},
236 { .driver
= "virtio-serial", .flag
= &default_virtcon
},
237 { .driver
= "VGA", .flag
= &default_vga
},
238 { .driver
= "isa-vga", .flag
= &default_vga
},
239 { .driver
= "cirrus-vga", .flag
= &default_vga
},
240 { .driver
= "isa-cirrus-vga", .flag
= &default_vga
},
241 { .driver
= "vmware-svga", .flag
= &default_vga
},
242 { .driver
= "qxl-vga", .flag
= &default_vga
},
245 static QemuOptsList qemu_rtc_opts
= {
247 .head
= QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts
.head
),
251 .type
= QEMU_OPT_STRING
,
254 .type
= QEMU_OPT_STRING
,
257 .type
= QEMU_OPT_STRING
,
259 { /* end of list */ }
263 static QemuOptsList qemu_sandbox_opts
= {
265 .implied_opt_name
= "enable",
266 .head
= QTAILQ_HEAD_INITIALIZER(qemu_sandbox_opts
.head
),
270 .type
= QEMU_OPT_BOOL
,
272 { /* end of list */ }
276 static QemuOptsList qemu_trace_opts
= {
278 .implied_opt_name
= "trace",
279 .head
= QTAILQ_HEAD_INITIALIZER(qemu_trace_opts
.head
),
283 .type
= QEMU_OPT_STRING
,
286 .type
= QEMU_OPT_STRING
,
288 { /* end of list */ }
292 static QemuOptsList qemu_option_rom_opts
= {
293 .name
= "option-rom",
294 .implied_opt_name
= "romfile",
295 .head
= QTAILQ_HEAD_INITIALIZER(qemu_option_rom_opts
.head
),
299 .type
= QEMU_OPT_NUMBER
,
302 .type
= QEMU_OPT_STRING
,
304 { /* end of list */ }
308 static QemuOptsList qemu_machine_opts
= {
310 .implied_opt_name
= "type",
312 .head
= QTAILQ_HEAD_INITIALIZER(qemu_machine_opts
.head
),
316 .type
= QEMU_OPT_STRING
,
317 .help
= "emulated machine"
320 .type
= QEMU_OPT_STRING
,
321 .help
= "accelerator list",
323 .name
= "kernel_irqchip",
324 .type
= QEMU_OPT_BOOL
,
325 .help
= "use KVM in-kernel irqchip",
327 .name
= "kvm_shadow_mem",
328 .type
= QEMU_OPT_SIZE
,
329 .help
= "KVM shadow MMU size",
332 .type
= QEMU_OPT_STRING
,
333 .help
= "Linux kernel image file",
336 .type
= QEMU_OPT_STRING
,
337 .help
= "Linux initial ramdisk file",
340 .type
= QEMU_OPT_STRING
,
341 .help
= "Linux kernel command line",
344 .type
= QEMU_OPT_STRING
,
345 .help
= "Linux kernel device tree file",
348 .type
= QEMU_OPT_STRING
,
349 .help
= "Dump current dtb to a file and quit",
351 .name
= "phandle_start",
352 .type
= QEMU_OPT_NUMBER
,
353 .help
= "The first phandle ID we may generate dynamically",
355 .name
= "dt_compatible",
356 .type
= QEMU_OPT_STRING
,
357 .help
= "Overrides the \"compatible\" property of the dt root node",
359 .name
= "dump-guest-core",
360 .type
= QEMU_OPT_BOOL
,
361 .help
= "Include guest memory in a core dump",
364 .type
= QEMU_OPT_BOOL
,
365 .help
= "enable/disable memory merge support",
368 .type
= QEMU_OPT_BOOL
,
369 .help
= "Set on/off to enable/disable usb",
372 .type
= QEMU_OPT_STRING
,
373 .help
= "firmware image",
376 .type
= QEMU_OPT_STRING
,
377 .help
= "Specifies the KVM virtualization mode (HV, PR)",
379 .name
= PC_MACHINE_MAX_RAM_BELOW_4G
,
380 .type
= QEMU_OPT_SIZE
,
381 .help
= "maximum ram below the 4G boundary (32bit boundary)",
383 .name
= PC_MACHINE_VMPORT
,
384 .type
= QEMU_OPT_STRING
,
385 .help
= "Enable vmport (pc & q35)",
388 .type
= QEMU_OPT_BOOL
,
389 .help
= "Set on/off to enable/disable Intel IOMMU (VT-d)",
391 { /* End of list */ }
395 static QemuOptsList qemu_boot_opts
= {
397 .implied_opt_name
= "order",
399 .head
= QTAILQ_HEAD_INITIALIZER(qemu_boot_opts
.head
),
403 .type
= QEMU_OPT_STRING
,
406 .type
= QEMU_OPT_STRING
,
409 .type
= QEMU_OPT_BOOL
,
412 .type
= QEMU_OPT_STRING
,
414 .name
= "splash-time",
415 .type
= QEMU_OPT_STRING
,
417 .name
= "reboot-timeout",
418 .type
= QEMU_OPT_STRING
,
421 .type
= QEMU_OPT_BOOL
,
427 static QemuOptsList qemu_add_fd_opts
= {
429 .head
= QTAILQ_HEAD_INITIALIZER(qemu_add_fd_opts
.head
),
433 .type
= QEMU_OPT_NUMBER
,
434 .help
= "file descriptor of which a duplicate is added to fd set",
437 .type
= QEMU_OPT_NUMBER
,
438 .help
= "ID of the fd set to add fd to",
441 .type
= QEMU_OPT_STRING
,
442 .help
= "free-form string used to describe fd",
444 { /* end of list */ }
448 static QemuOptsList qemu_object_opts
= {
450 .implied_opt_name
= "qom-type",
451 .head
= QTAILQ_HEAD_INITIALIZER(qemu_object_opts
.head
),
457 static QemuOptsList qemu_tpmdev_opts
= {
459 .implied_opt_name
= "type",
460 .head
= QTAILQ_HEAD_INITIALIZER(qemu_tpmdev_opts
.head
),
462 /* options are defined in the TPM backends */
463 { /* end of list */ }
467 static QemuOptsList qemu_realtime_opts
= {
469 .head
= QTAILQ_HEAD_INITIALIZER(qemu_realtime_opts
.head
),
473 .type
= QEMU_OPT_BOOL
,
475 { /* end of list */ }
479 static QemuOptsList qemu_msg_opts
= {
481 .head
= QTAILQ_HEAD_INITIALIZER(qemu_msg_opts
.head
),
485 .type
= QEMU_OPT_BOOL
,
487 { /* end of list */ }
491 static QemuOptsList qemu_name_opts
= {
493 .implied_opt_name
= "guest",
495 .head
= QTAILQ_HEAD_INITIALIZER(qemu_name_opts
.head
),
499 .type
= QEMU_OPT_STRING
,
500 .help
= "Sets the name of the guest.\n"
501 "This name will be displayed in the SDL window caption.\n"
502 "The name will also be used for the VNC server",
505 .type
= QEMU_OPT_STRING
,
506 .help
= "Sets the name of the QEMU process, as shown in top etc",
508 .name
= "debug-threads",
509 .type
= QEMU_OPT_BOOL
,
510 .help
= "When enabled, name the individual threads; defaults off.\n"
511 "NOTE: The thread names are for debugging and not a\n"
514 { /* End of list */ }
518 static QemuOptsList qemu_mem_opts
= {
520 .implied_opt_name
= "size",
521 .head
= QTAILQ_HEAD_INITIALIZER(qemu_mem_opts
.head
),
526 .type
= QEMU_OPT_SIZE
,
530 .type
= QEMU_OPT_NUMBER
,
534 .type
= QEMU_OPT_SIZE
,
536 { /* end of list */ }
540 static QemuOptsList qemu_icount_opts
= {
542 .implied_opt_name
= "shift",
544 .head
= QTAILQ_HEAD_INITIALIZER(qemu_icount_opts
.head
),
548 .type
= QEMU_OPT_STRING
,
551 .type
= QEMU_OPT_BOOL
,
553 { /* end of list */ }
557 static QemuOptsList qemu_semihosting_config_opts
= {
558 .name
= "semihosting-config",
559 .implied_opt_name
= "enable",
560 .head
= QTAILQ_HEAD_INITIALIZER(qemu_semihosting_config_opts
.head
),
564 .type
= QEMU_OPT_BOOL
,
567 .type
= QEMU_OPT_STRING
,
569 { /* end of list */ }
574 * Get machine options
576 * Returns: machine options (never null).
578 QemuOpts
*qemu_get_machine_opts(void)
580 return qemu_find_opts_singleton("machine");
583 const char *qemu_get_vm_name(void)
588 static void res_free(void)
590 if (boot_splash_filedata
!= NULL
) {
591 g_free(boot_splash_filedata
);
592 boot_splash_filedata
= NULL
;
596 static int default_driver_check(QemuOpts
*opts
, void *opaque
)
598 const char *driver
= qemu_opt_get(opts
, "driver");
603 for (i
= 0; i
< ARRAY_SIZE(default_list
); i
++) {
604 if (strcmp(default_list
[i
].driver
, driver
) != 0)
606 *(default_list
[i
].flag
) = 0;
611 /***********************************************************/
614 static RunState current_run_state
= RUN_STATE_PRELAUNCH
;
616 /* We use RUN_STATE_MAX but any invalid value will do */
617 static RunState vmstop_requested
= RUN_STATE_MAX
;
618 static QemuMutex vmstop_lock
;
623 } RunStateTransition
;
625 static const RunStateTransition runstate_transitions_def
[] = {
627 { RUN_STATE_DEBUG
, RUN_STATE_RUNNING
},
628 { RUN_STATE_DEBUG
, RUN_STATE_FINISH_MIGRATE
},
630 { RUN_STATE_INMIGRATE
, RUN_STATE_RUNNING
},
631 { RUN_STATE_INMIGRATE
, RUN_STATE_PAUSED
},
633 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_PAUSED
},
634 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_FINISH_MIGRATE
},
636 { RUN_STATE_IO_ERROR
, RUN_STATE_RUNNING
},
637 { RUN_STATE_IO_ERROR
, RUN_STATE_FINISH_MIGRATE
},
639 { RUN_STATE_PAUSED
, RUN_STATE_RUNNING
},
640 { RUN_STATE_PAUSED
, RUN_STATE_FINISH_MIGRATE
},
642 { RUN_STATE_POSTMIGRATE
, RUN_STATE_RUNNING
},
643 { RUN_STATE_POSTMIGRATE
, RUN_STATE_FINISH_MIGRATE
},
645 { RUN_STATE_PRELAUNCH
, RUN_STATE_RUNNING
},
646 { RUN_STATE_PRELAUNCH
, RUN_STATE_FINISH_MIGRATE
},
647 { RUN_STATE_PRELAUNCH
, RUN_STATE_INMIGRATE
},
649 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_RUNNING
},
650 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_POSTMIGRATE
},
652 { RUN_STATE_RESTORE_VM
, RUN_STATE_RUNNING
},
654 { RUN_STATE_RUNNING
, RUN_STATE_DEBUG
},
655 { RUN_STATE_RUNNING
, RUN_STATE_INTERNAL_ERROR
},
656 { RUN_STATE_RUNNING
, RUN_STATE_IO_ERROR
},
657 { RUN_STATE_RUNNING
, RUN_STATE_PAUSED
},
658 { RUN_STATE_RUNNING
, RUN_STATE_FINISH_MIGRATE
},
659 { RUN_STATE_RUNNING
, RUN_STATE_RESTORE_VM
},
660 { RUN_STATE_RUNNING
, RUN_STATE_SAVE_VM
},
661 { RUN_STATE_RUNNING
, RUN_STATE_SHUTDOWN
},
662 { RUN_STATE_RUNNING
, RUN_STATE_WATCHDOG
},
663 { RUN_STATE_RUNNING
, RUN_STATE_GUEST_PANICKED
},
665 { RUN_STATE_SAVE_VM
, RUN_STATE_RUNNING
},
667 { RUN_STATE_SHUTDOWN
, RUN_STATE_PAUSED
},
668 { RUN_STATE_SHUTDOWN
, RUN_STATE_FINISH_MIGRATE
},
670 { RUN_STATE_DEBUG
, RUN_STATE_SUSPENDED
},
671 { RUN_STATE_RUNNING
, RUN_STATE_SUSPENDED
},
672 { RUN_STATE_SUSPENDED
, RUN_STATE_RUNNING
},
673 { RUN_STATE_SUSPENDED
, RUN_STATE_FINISH_MIGRATE
},
675 { RUN_STATE_WATCHDOG
, RUN_STATE_RUNNING
},
676 { RUN_STATE_WATCHDOG
, RUN_STATE_FINISH_MIGRATE
},
678 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_RUNNING
},
679 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_FINISH_MIGRATE
},
681 { RUN_STATE_MAX
, RUN_STATE_MAX
},
684 static bool runstate_valid_transitions
[RUN_STATE_MAX
][RUN_STATE_MAX
];
686 bool runstate_check(RunState state
)
688 return current_run_state
== state
;
691 static void runstate_init(void)
693 const RunStateTransition
*p
;
695 memset(&runstate_valid_transitions
, 0, sizeof(runstate_valid_transitions
));
696 for (p
= &runstate_transitions_def
[0]; p
->from
!= RUN_STATE_MAX
; p
++) {
697 runstate_valid_transitions
[p
->from
][p
->to
] = true;
700 qemu_mutex_init(&vmstop_lock
);
703 /* This function will abort() on invalid state transitions */
704 void runstate_set(RunState new_state
)
706 assert(new_state
< RUN_STATE_MAX
);
708 if (!runstate_valid_transitions
[current_run_state
][new_state
]) {
709 fprintf(stderr
, "ERROR: invalid runstate transition: '%s' -> '%s'\n",
710 RunState_lookup
[current_run_state
],
711 RunState_lookup
[new_state
]);
714 trace_runstate_set(new_state
);
715 current_run_state
= new_state
;
718 int runstate_is_running(void)
720 return runstate_check(RUN_STATE_RUNNING
);
723 bool runstate_needs_reset(void)
725 return runstate_check(RUN_STATE_INTERNAL_ERROR
) ||
726 runstate_check(RUN_STATE_SHUTDOWN
);
729 StatusInfo
*qmp_query_status(Error
**errp
)
731 StatusInfo
*info
= g_malloc0(sizeof(*info
));
733 info
->running
= runstate_is_running();
734 info
->singlestep
= singlestep
;
735 info
->status
= current_run_state
;
740 static bool qemu_vmstop_requested(RunState
*r
)
742 qemu_mutex_lock(&vmstop_lock
);
743 *r
= vmstop_requested
;
744 vmstop_requested
= RUN_STATE_MAX
;
745 qemu_mutex_unlock(&vmstop_lock
);
746 return *r
< RUN_STATE_MAX
;
749 void qemu_system_vmstop_request_prepare(void)
751 qemu_mutex_lock(&vmstop_lock
);
754 void qemu_system_vmstop_request(RunState state
)
756 vmstop_requested
= state
;
757 qemu_mutex_unlock(&vmstop_lock
);
765 qemu_vmstop_requested(&requested
);
766 if (runstate_is_running() && requested
== RUN_STATE_MAX
) {
770 /* Ensure that a STOP/RESUME pair of events is emitted if a
771 * vmstop request was pending. The BLOCK_IO_ERROR event, for
772 * example, according to documentation is always followed by
775 if (runstate_is_running()) {
776 qapi_event_send_stop(&error_abort
);
779 runstate_set(RUN_STATE_RUNNING
);
780 vm_state_notify(1, RUN_STATE_RUNNING
);
784 qapi_event_send_resume(&error_abort
);
788 /***********************************************************/
789 /* real time host monotonic timer */
791 /***********************************************************/
792 /* host time/date access */
793 void qemu_get_timedate(struct tm
*tm
, int offset
)
799 if (rtc_date_offset
== -1) {
803 localtime_r(&ti
, tm
);
805 ti
-= rtc_date_offset
;
810 int qemu_timedate_diff(struct tm
*tm
)
814 if (rtc_date_offset
== -1)
816 seconds
= mktimegm(tm
);
819 tmp
.tm_isdst
= -1; /* use timezone to figure it out */
820 seconds
= mktime(&tmp
);
823 seconds
= mktimegm(tm
) + rtc_date_offset
;
825 return seconds
- time(NULL
);
828 static void configure_rtc_date_offset(const char *startdate
, int legacy
)
830 time_t rtc_start_date
;
833 if (!strcmp(startdate
, "now") && legacy
) {
834 rtc_date_offset
= -1;
836 if (sscanf(startdate
, "%d-%d-%dT%d:%d:%d",
844 } else if (sscanf(startdate
, "%d-%d-%d",
856 rtc_start_date
= mktimegm(&tm
);
857 if (rtc_start_date
== -1) {
859 fprintf(stderr
, "Invalid date format. Valid formats are:\n"
860 "'2006-06-17T16:01:21' or '2006-06-17'\n");
863 rtc_date_offset
= time(NULL
) - rtc_start_date
;
867 static void configure_rtc(QemuOpts
*opts
)
871 value
= qemu_opt_get(opts
, "base");
873 if (!strcmp(value
, "utc")) {
875 } else if (!strcmp(value
, "localtime")) {
878 configure_rtc_date_offset(value
, 0);
881 value
= qemu_opt_get(opts
, "clock");
883 if (!strcmp(value
, "host")) {
884 rtc_clock
= QEMU_CLOCK_HOST
;
885 } else if (!strcmp(value
, "rt")) {
886 rtc_clock
= QEMU_CLOCK_REALTIME
;
887 } else if (!strcmp(value
, "vm")) {
888 rtc_clock
= QEMU_CLOCK_VIRTUAL
;
890 fprintf(stderr
, "qemu: invalid option value '%s'\n", value
);
894 value
= qemu_opt_get(opts
, "driftfix");
896 if (!strcmp(value
, "slew")) {
897 static GlobalProperty slew_lost_ticks
[] = {
899 .driver
= "mc146818rtc",
900 .property
= "lost_tick_policy",
903 { /* end of list */ }
906 qdev_prop_register_global_list(slew_lost_ticks
);
907 } else if (!strcmp(value
, "none")) {
908 /* discard is default */
910 fprintf(stderr
, "qemu: invalid option value '%s'\n", value
);
916 /***********************************************************/
917 /* Bluetooth support */
920 static struct HCIInfo
*hci_table
[MAX_NICS
];
922 struct HCIInfo
*qemu_next_hci(void)
924 if (cur_hci
== nb_hcis
)
927 return hci_table
[cur_hci
++];
930 static int bt_hci_parse(const char *str
)
935 if (nb_hcis
>= MAX_NICS
) {
936 fprintf(stderr
, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS
);
949 bdaddr
.b
[5] = 0x56 + nb_hcis
;
950 hci
->bdaddr_set(hci
, bdaddr
.b
);
952 hci_table
[nb_hcis
++] = hci
;
957 static void bt_vhci_add(int vlan_id
)
959 struct bt_scatternet_s
*vlan
= qemu_find_bt_vlan(vlan_id
);
962 fprintf(stderr
, "qemu: warning: adding a VHCI to "
963 "an empty scatternet %i\n", vlan_id
);
965 bt_vhci_init(bt_new_hci(vlan
));
968 static struct bt_device_s
*bt_device_add(const char *opt
)
970 struct bt_scatternet_s
*vlan
;
972 char *endp
= strstr(opt
, ",vlan=");
973 int len
= (endp
? endp
- opt
: strlen(opt
)) + 1;
976 pstrcpy(devname
, MIN(sizeof(devname
), len
), opt
);
979 vlan_id
= strtol(endp
+ 6, &endp
, 0);
981 fprintf(stderr
, "qemu: unrecognised bluetooth vlan Id\n");
986 vlan
= qemu_find_bt_vlan(vlan_id
);
989 fprintf(stderr
, "qemu: warning: adding a slave device to "
990 "an empty scatternet %i\n", vlan_id
);
992 if (!strcmp(devname
, "keyboard"))
993 return bt_keyboard_init(vlan
);
995 fprintf(stderr
, "qemu: unsupported bluetooth device `%s'\n", devname
);
999 static int bt_parse(const char *opt
)
1001 const char *endp
, *p
;
1004 if (strstart(opt
, "hci", &endp
)) {
1005 if (!*endp
|| *endp
== ',') {
1007 if (!strstart(endp
, ",vlan=", 0))
1010 return bt_hci_parse(opt
);
1012 } else if (strstart(opt
, "vhci", &endp
)) {
1013 if (!*endp
|| *endp
== ',') {
1015 if (strstart(endp
, ",vlan=", &p
)) {
1016 vlan
= strtol(p
, (char **) &endp
, 0);
1018 fprintf(stderr
, "qemu: bad scatternet '%s'\n", p
);
1022 fprintf(stderr
, "qemu: bad parameter '%s'\n", endp
+ 1);
1031 } else if (strstart(opt
, "device:", &endp
))
1032 return !bt_device_add(endp
);
1034 fprintf(stderr
, "qemu: bad bluetooth parameter '%s'\n", opt
);
1038 static int parse_sandbox(QemuOpts
*opts
, void *opaque
)
1040 /* FIXME: change this to true for 1.3 */
1041 if (qemu_opt_get_bool(opts
, "enable", false)) {
1042 #ifdef CONFIG_SECCOMP
1043 if (seccomp_start() < 0) {
1044 qerror_report(ERROR_CLASS_GENERIC_ERROR
,
1045 "failed to install seccomp syscall filter in the kernel");
1049 qerror_report(ERROR_CLASS_GENERIC_ERROR
,
1050 "sandboxing request but seccomp is not compiled into this build");
1058 static int parse_name(QemuOpts
*opts
, void *opaque
)
1060 const char *proc_name
;
1062 if (qemu_opt_get(opts
, "debug-threads")) {
1063 qemu_thread_naming(qemu_opt_get_bool(opts
, "debug-threads", false));
1065 qemu_name
= qemu_opt_get(opts
, "guest");
1067 proc_name
= qemu_opt_get(opts
, "process");
1069 os_set_proc_name(proc_name
);
1075 bool usb_enabled(bool default_usb
)
1077 return qemu_opt_get_bool(qemu_get_machine_opts(), "usb",
1078 has_defaults
&& default_usb
);
1082 static int parse_add_fd(QemuOpts
*opts
, void *opaque
)
1084 int fd
, dupfd
, flags
;
1086 const char *fd_opaque
= NULL
;
1088 fd
= qemu_opt_get_number(opts
, "fd", -1);
1089 fdset_id
= qemu_opt_get_number(opts
, "set", -1);
1090 fd_opaque
= qemu_opt_get(opts
, "opaque");
1093 qerror_report(ERROR_CLASS_GENERIC_ERROR
,
1094 "fd option is required and must be non-negative");
1098 if (fd
<= STDERR_FILENO
) {
1099 qerror_report(ERROR_CLASS_GENERIC_ERROR
,
1100 "fd cannot be a standard I/O stream");
1105 * All fds inherited across exec() necessarily have FD_CLOEXEC
1106 * clear, while qemu sets FD_CLOEXEC on all other fds used internally.
1108 flags
= fcntl(fd
, F_GETFD
);
1109 if (flags
== -1 || (flags
& FD_CLOEXEC
)) {
1110 qerror_report(ERROR_CLASS_GENERIC_ERROR
,
1111 "fd is not valid or already in use");
1116 qerror_report(ERROR_CLASS_GENERIC_ERROR
,
1117 "set option is required and must be non-negative");
1121 #ifdef F_DUPFD_CLOEXEC
1122 dupfd
= fcntl(fd
, F_DUPFD_CLOEXEC
, 0);
1126 qemu_set_cloexec(dupfd
);
1130 qerror_report(ERROR_CLASS_GENERIC_ERROR
,
1131 "Error duplicating fd: %s", strerror(errno
));
1135 /* add the duplicate fd, and optionally the opaque string, to the fd set */
1136 monitor_fdset_add_fd(dupfd
, true, fdset_id
, fd_opaque
? true : false,
1142 static int cleanup_add_fd(QemuOpts
*opts
, void *opaque
)
1146 fd
= qemu_opt_get_number(opts
, "fd", -1);
1153 /***********************************************************/
1154 /* QEMU Block devices */
1156 #define HD_OPTS "media=disk"
1157 #define CDROM_OPTS "media=cdrom"
1159 #define PFLASH_OPTS ""
1163 static int drive_init_func(QemuOpts
*opts
, void *opaque
)
1165 BlockInterfaceType
*block_default_type
= opaque
;
1167 return drive_new(opts
, *block_default_type
) == NULL
;
1170 static int drive_enable_snapshot(QemuOpts
*opts
, void *opaque
)
1172 if (qemu_opt_get(opts
, "snapshot") == NULL
) {
1173 qemu_opt_set(opts
, "snapshot", "on");
1178 static void default_drive(int enable
, int snapshot
, BlockInterfaceType type
,
1179 int index
, const char *optstr
)
1184 if (!enable
|| drive_get_by_index(type
, index
)) {
1188 opts
= drive_add(type
, index
, NULL
, optstr
);
1190 drive_enable_snapshot(opts
, NULL
);
1193 dinfo
= drive_new(opts
, type
);
1197 dinfo
->is_default
= true;
1201 void qemu_register_boot_set(QEMUBootSetHandler
*func
, void *opaque
)
1203 boot_set_handler
= func
;
1204 boot_set_opaque
= opaque
;
1207 int qemu_boot_set(const char *boot_order
)
1209 if (!boot_set_handler
) {
1212 return boot_set_handler(boot_set_opaque
, boot_order
);
1215 static void validate_bootdevices(const char *devices
)
1217 /* We just do some generic consistency checks */
1221 for (p
= devices
; *p
!= '\0'; p
++) {
1222 /* Allowed boot devices are:
1223 * a-b: floppy disk drives
1224 * c-f: IDE disk drives
1225 * g-m: machine implementation dependent drives
1226 * n-p: network devices
1227 * It's up to each machine implementation to check if the given boot
1228 * devices match the actual hardware implementation and firmware
1231 if (*p
< 'a' || *p
> 'p') {
1232 fprintf(stderr
, "Invalid boot device '%c'\n", *p
);
1235 if (bitmap
& (1 << (*p
- 'a'))) {
1236 fprintf(stderr
, "Boot device '%c' was given twice\n", *p
);
1239 bitmap
|= 1 << (*p
- 'a');
1243 static void restore_boot_order(void *opaque
)
1245 char *normal_boot_order
= opaque
;
1246 static int first
= 1;
1248 /* Restore boot order and remove ourselves after the first boot */
1254 qemu_boot_set(normal_boot_order
);
1256 qemu_unregister_reset(restore_boot_order
, normal_boot_order
);
1257 g_free(normal_boot_order
);
1260 static QemuOptsList qemu_smp_opts
= {
1262 .implied_opt_name
= "cpus",
1263 .merge_lists
= true,
1264 .head
= QTAILQ_HEAD_INITIALIZER(qemu_smp_opts
.head
),
1268 .type
= QEMU_OPT_NUMBER
,
1271 .type
= QEMU_OPT_NUMBER
,
1274 .type
= QEMU_OPT_NUMBER
,
1277 .type
= QEMU_OPT_NUMBER
,
1280 .type
= QEMU_OPT_NUMBER
,
1282 { /*End of list */ }
1286 static void smp_parse(QemuOpts
*opts
)
1290 unsigned cpus
= qemu_opt_get_number(opts
, "cpus", 0);
1291 unsigned sockets
= qemu_opt_get_number(opts
, "sockets", 0);
1292 unsigned cores
= qemu_opt_get_number(opts
, "cores", 0);
1293 unsigned threads
= qemu_opt_get_number(opts
, "threads", 0);
1295 /* compute missing values, prefer sockets over cores over threads */
1296 if (cpus
== 0 || sockets
== 0) {
1297 sockets
= sockets
> 0 ? sockets
: 1;
1298 cores
= cores
> 0 ? cores
: 1;
1299 threads
= threads
> 0 ? threads
: 1;
1301 cpus
= cores
* threads
* sockets
;
1305 threads
= threads
> 0 ? threads
: 1;
1306 cores
= cpus
/ (sockets
* threads
);
1308 threads
= cpus
/ (cores
* sockets
);
1312 max_cpus
= qemu_opt_get_number(opts
, "maxcpus", 0);
1315 smp_cores
= cores
> 0 ? cores
: 1;
1316 smp_threads
= threads
> 0 ? threads
: 1;
1320 if (max_cpus
== 0) {
1321 max_cpus
= smp_cpus
;
1324 if (max_cpus
> MAX_CPUMASK_BITS
) {
1325 fprintf(stderr
, "Unsupported number of maxcpus\n");
1328 if (max_cpus
< smp_cpus
) {
1329 fprintf(stderr
, "maxcpus must be equal to or greater than smp\n");
1335 static void realtime_init(void)
1338 if (os_mlock() < 0) {
1339 fprintf(stderr
, "qemu: locking memory failed\n");
1346 static void configure_msg(QemuOpts
*opts
)
1348 enable_timestamp_msg
= qemu_opt_get_bool(opts
, "timestamp", true);
1351 /***********************************************************/
1354 static int usb_device_add(const char *devname
)
1356 USBDevice
*dev
= NULL
;
1357 #ifndef CONFIG_LINUX
1361 if (!usb_enabled(false)) {
1365 /* drivers with .usbdevice_name entry in USBDeviceInfo */
1366 dev
= usbdevice_create(devname
);
1370 /* the other ones */
1371 #ifndef CONFIG_LINUX
1372 /* only the linux version is qdev-ified, usb-bsd still needs this */
1373 if (strstart(devname
, "host:", &p
)) {
1374 dev
= usb_host_device_open(usb_bus_find(-1), p
);
1384 static int usb_device_del(const char *devname
)
1389 if (strstart(devname
, "host:", &p
)) {
1393 if (!usb_enabled(false)) {
1397 p
= strchr(devname
, '.');
1400 bus_num
= strtoul(devname
, NULL
, 0);
1401 addr
= strtoul(p
+ 1, NULL
, 0);
1403 return usb_device_delete_addr(bus_num
, addr
);
1406 static int usb_parse(const char *cmdline
)
1409 r
= usb_device_add(cmdline
);
1411 fprintf(stderr
, "qemu: could not add USB device '%s'\n", cmdline
);
1416 void do_usb_add(Monitor
*mon
, const QDict
*qdict
)
1418 const char *devname
= qdict_get_str(qdict
, "devname");
1419 if (usb_device_add(devname
) < 0) {
1420 error_report("could not add USB device '%s'", devname
);
1424 void do_usb_del(Monitor
*mon
, const QDict
*qdict
)
1426 const char *devname
= qdict_get_str(qdict
, "devname");
1427 if (usb_device_del(devname
) < 0) {
1428 error_report("could not delete USB device '%s'", devname
);
1432 /***********************************************************/
1433 /* machine registration */
1435 MachineState
*current_machine
;
1437 static void machine_class_init(ObjectClass
*oc
, void *data
)
1439 MachineClass
*mc
= MACHINE_CLASS(oc
);
1440 QEMUMachine
*qm
= data
;
1442 mc
->family
= qm
->family
;
1443 mc
->name
= qm
->name
;
1444 mc
->alias
= qm
->alias
;
1445 mc
->desc
= qm
->desc
;
1446 mc
->init
= qm
->init
;
1447 mc
->reset
= qm
->reset
;
1448 mc
->hot_add_cpu
= qm
->hot_add_cpu
;
1449 mc
->kvm_type
= qm
->kvm_type
;
1450 mc
->block_default_type
= qm
->block_default_type
;
1451 mc
->units_per_default_bus
= qm
->units_per_default_bus
;
1452 mc
->max_cpus
= qm
->max_cpus
;
1453 mc
->no_serial
= qm
->no_serial
;
1454 mc
->no_parallel
= qm
->no_parallel
;
1455 mc
->use_virtcon
= qm
->use_virtcon
;
1456 mc
->use_sclp
= qm
->use_sclp
;
1457 mc
->no_floppy
= qm
->no_floppy
;
1458 mc
->no_cdrom
= qm
->no_cdrom
;
1459 mc
->no_sdcard
= qm
->no_sdcard
;
1460 mc
->has_dynamic_sysbus
= qm
->has_dynamic_sysbus
;
1461 mc
->is_default
= qm
->is_default
;
1462 mc
->default_machine_opts
= qm
->default_machine_opts
;
1463 mc
->default_boot_order
= qm
->default_boot_order
;
1464 mc
->default_display
= qm
->default_display
;
1465 mc
->compat_props
= qm
->compat_props
;
1466 mc
->hw_version
= qm
->hw_version
;
1469 int qemu_register_machine(QEMUMachine
*m
)
1471 char *name
= g_strconcat(m
->name
, TYPE_MACHINE_SUFFIX
, NULL
);
1474 .parent
= TYPE_MACHINE
,
1475 .class_init
= machine_class_init
,
1476 .class_data
= (void *)m
,
1485 static MachineClass
*find_machine(const char *name
)
1487 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
1488 MachineClass
*mc
= NULL
;
1490 for (el
= machines
; el
; el
= el
->next
) {
1491 MachineClass
*temp
= el
->data
;
1493 if (!strcmp(temp
->name
, name
)) {
1498 !strcmp(temp
->alias
, name
)) {
1504 g_slist_free(machines
);
1508 MachineClass
*find_default_machine(void)
1510 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
1511 MachineClass
*mc
= NULL
;
1513 for (el
= machines
; el
; el
= el
->next
) {
1514 MachineClass
*temp
= el
->data
;
1516 if (temp
->is_default
) {
1522 g_slist_free(machines
);
1526 MachineInfoList
*qmp_query_machines(Error
**errp
)
1528 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
1529 MachineInfoList
*mach_list
= NULL
;
1531 for (el
= machines
; el
; el
= el
->next
) {
1532 MachineClass
*mc
= el
->data
;
1533 MachineInfoList
*entry
;
1536 info
= g_malloc0(sizeof(*info
));
1537 if (mc
->is_default
) {
1538 info
->has_is_default
= true;
1539 info
->is_default
= true;
1543 info
->has_alias
= true;
1544 info
->alias
= g_strdup(mc
->alias
);
1547 info
->name
= g_strdup(mc
->name
);
1548 info
->cpu_max
= !mc
->max_cpus
? 1 : mc
->max_cpus
;
1550 entry
= g_malloc0(sizeof(*entry
));
1551 entry
->value
= info
;
1552 entry
->next
= mach_list
;
1556 g_slist_free(machines
);
1560 /***********************************************************/
1561 /* main execution loop */
1563 struct vm_change_state_entry
{
1564 VMChangeStateHandler
*cb
;
1566 QLIST_ENTRY (vm_change_state_entry
) entries
;
1569 static QLIST_HEAD(vm_change_state_head
, vm_change_state_entry
) vm_change_state_head
;
1571 VMChangeStateEntry
*qemu_add_vm_change_state_handler(VMChangeStateHandler
*cb
,
1574 VMChangeStateEntry
*e
;
1576 e
= g_malloc0(sizeof (*e
));
1580 QLIST_INSERT_HEAD(&vm_change_state_head
, e
, entries
);
1584 void qemu_del_vm_change_state_handler(VMChangeStateEntry
*e
)
1586 QLIST_REMOVE (e
, entries
);
1590 void vm_state_notify(int running
, RunState state
)
1592 VMChangeStateEntry
*e
, *next
;
1594 trace_vm_state_notify(running
, state
);
1596 QLIST_FOREACH_SAFE(e
, &vm_change_state_head
, entries
, next
) {
1597 e
->cb(e
->opaque
, running
, state
);
1601 /* reset/shutdown handler */
1603 typedef struct QEMUResetEntry
{
1604 QTAILQ_ENTRY(QEMUResetEntry
) entry
;
1605 QEMUResetHandler
*func
;
1609 static QTAILQ_HEAD(reset_handlers
, QEMUResetEntry
) reset_handlers
=
1610 QTAILQ_HEAD_INITIALIZER(reset_handlers
);
1611 static int reset_requested
;
1612 static int shutdown_requested
, shutdown_signal
= -1;
1613 static pid_t shutdown_pid
;
1614 static int powerdown_requested
;
1615 static int debug_requested
;
1616 static int suspend_requested
;
1617 static WakeupReason wakeup_reason
;
1618 static NotifierList powerdown_notifiers
=
1619 NOTIFIER_LIST_INITIALIZER(powerdown_notifiers
);
1620 static NotifierList suspend_notifiers
=
1621 NOTIFIER_LIST_INITIALIZER(suspend_notifiers
);
1622 static NotifierList wakeup_notifiers
=
1623 NOTIFIER_LIST_INITIALIZER(wakeup_notifiers
);
1624 static uint32_t wakeup_reason_mask
= ~(1 << QEMU_WAKEUP_REASON_NONE
);
1626 int qemu_shutdown_requested_get(void)
1628 return shutdown_requested
;
1631 int qemu_reset_requested_get(void)
1633 return reset_requested
;
1636 static int qemu_shutdown_requested(void)
1638 return atomic_xchg(&shutdown_requested
, 0);
1641 static void qemu_kill_report(void)
1643 if (!qtest_driver() && shutdown_signal
!= -1) {
1644 fprintf(stderr
, "qemu: terminating on signal %d", shutdown_signal
);
1645 if (shutdown_pid
== 0) {
1646 /* This happens for eg ^C at the terminal, so it's worth
1647 * avoiding printing an odd message in that case.
1649 fputc('\n', stderr
);
1651 fprintf(stderr
, " from pid " FMT_pid
"\n", shutdown_pid
);
1653 shutdown_signal
= -1;
1657 static int qemu_reset_requested(void)
1659 int r
= reset_requested
;
1660 reset_requested
= 0;
1664 static int qemu_suspend_requested(void)
1666 int r
= suspend_requested
;
1667 suspend_requested
= 0;
1671 static WakeupReason
qemu_wakeup_requested(void)
1673 return wakeup_reason
;
1676 static int qemu_powerdown_requested(void)
1678 int r
= powerdown_requested
;
1679 powerdown_requested
= 0;
1683 static int qemu_debug_requested(void)
1685 int r
= debug_requested
;
1686 debug_requested
= 0;
1690 void qemu_register_reset(QEMUResetHandler
*func
, void *opaque
)
1692 QEMUResetEntry
*re
= g_malloc0(sizeof(QEMUResetEntry
));
1695 re
->opaque
= opaque
;
1696 QTAILQ_INSERT_TAIL(&reset_handlers
, re
, entry
);
1699 void qemu_unregister_reset(QEMUResetHandler
*func
, void *opaque
)
1703 QTAILQ_FOREACH(re
, &reset_handlers
, entry
) {
1704 if (re
->func
== func
&& re
->opaque
== opaque
) {
1705 QTAILQ_REMOVE(&reset_handlers
, re
, entry
);
1712 void qemu_devices_reset(void)
1714 QEMUResetEntry
*re
, *nre
;
1716 /* reset all devices */
1717 QTAILQ_FOREACH_SAFE(re
, &reset_handlers
, entry
, nre
) {
1718 re
->func(re
->opaque
);
1722 void qemu_system_reset(bool report
)
1726 mc
= current_machine
? MACHINE_GET_CLASS(current_machine
) : NULL
;
1728 if (mc
&& mc
->reset
) {
1731 qemu_devices_reset();
1734 qapi_event_send_reset(&error_abort
);
1736 cpu_synchronize_all_post_reset();
1739 void qemu_system_reset_request(void)
1742 shutdown_requested
= 1;
1744 reset_requested
= 1;
1747 qemu_notify_event();
1750 static void qemu_system_suspend(void)
1753 notifier_list_notify(&suspend_notifiers
, NULL
);
1754 runstate_set(RUN_STATE_SUSPENDED
);
1755 qapi_event_send_suspend(&error_abort
);
1758 void qemu_system_suspend_request(void)
1760 if (runstate_check(RUN_STATE_SUSPENDED
)) {
1763 suspend_requested
= 1;
1765 qemu_notify_event();
1768 void qemu_register_suspend_notifier(Notifier
*notifier
)
1770 notifier_list_add(&suspend_notifiers
, notifier
);
1773 void qemu_system_wakeup_request(WakeupReason reason
)
1775 trace_system_wakeup_request(reason
);
1777 if (!runstate_check(RUN_STATE_SUSPENDED
)) {
1780 if (!(wakeup_reason_mask
& (1 << reason
))) {
1783 runstate_set(RUN_STATE_RUNNING
);
1784 wakeup_reason
= reason
;
1785 qemu_notify_event();
1788 void qemu_system_wakeup_enable(WakeupReason reason
, bool enabled
)
1791 wakeup_reason_mask
|= (1 << reason
);
1793 wakeup_reason_mask
&= ~(1 << reason
);
1797 void qemu_register_wakeup_notifier(Notifier
*notifier
)
1799 notifier_list_add(&wakeup_notifiers
, notifier
);
1802 void qemu_system_killed(int signal
, pid_t pid
)
1804 shutdown_signal
= signal
;
1807 qemu_system_shutdown_request();
1810 void qemu_system_shutdown_request(void)
1812 trace_qemu_system_shutdown_request();
1813 shutdown_requested
= 1;
1814 qemu_notify_event();
1817 static void qemu_system_powerdown(void)
1819 qapi_event_send_powerdown(&error_abort
);
1820 notifier_list_notify(&powerdown_notifiers
, NULL
);
1823 void qemu_system_powerdown_request(void)
1825 trace_qemu_system_powerdown_request();
1826 powerdown_requested
= 1;
1827 qemu_notify_event();
1830 void qemu_register_powerdown_notifier(Notifier
*notifier
)
1832 notifier_list_add(&powerdown_notifiers
, notifier
);
1835 void qemu_system_debug_request(void)
1837 debug_requested
= 1;
1838 qemu_notify_event();
1841 static bool main_loop_should_exit(void)
1844 if (qemu_debug_requested()) {
1845 vm_stop(RUN_STATE_DEBUG
);
1847 if (qemu_suspend_requested()) {
1848 qemu_system_suspend();
1850 if (qemu_shutdown_requested()) {
1852 qapi_event_send_shutdown(&error_abort
);
1854 vm_stop(RUN_STATE_SHUTDOWN
);
1859 if (qemu_reset_requested()) {
1861 cpu_synchronize_all_states();
1862 qemu_system_reset(VMRESET_REPORT
);
1864 if (runstate_needs_reset()) {
1865 runstate_set(RUN_STATE_PAUSED
);
1868 if (qemu_wakeup_requested()) {
1870 cpu_synchronize_all_states();
1871 qemu_system_reset(VMRESET_SILENT
);
1872 notifier_list_notify(&wakeup_notifiers
, &wakeup_reason
);
1873 wakeup_reason
= QEMU_WAKEUP_REASON_NONE
;
1875 qapi_event_send_wakeup(&error_abort
);
1877 if (qemu_powerdown_requested()) {
1878 qemu_system_powerdown();
1880 if (qemu_vmstop_requested(&r
)) {
1886 static void main_loop(void)
1890 #ifdef CONFIG_PROFILER
1894 nonblocking
= !kvm_enabled() && !xen_enabled() && last_io
> 0;
1895 #ifdef CONFIG_PROFILER
1896 ti
= profile_getclock();
1898 last_io
= main_loop_wait(nonblocking
);
1899 #ifdef CONFIG_PROFILER
1900 dev_time
+= profile_getclock() - ti
;
1902 } while (!main_loop_should_exit());
1905 static void version(void)
1907 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION
", Copyright (c) 2003-2008 Fabrice Bellard\n");
1910 static void help(int exitcode
)
1913 printf("usage: %s [options] [disk_image]\n\n"
1914 "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
1915 error_get_progname());
1917 #define QEMU_OPTIONS_GENERATE_HELP
1918 #include "qemu-options-wrapper.h"
1920 printf("\nDuring emulation, the following keys are useful:\n"
1921 "ctrl-alt-f toggle full screen\n"
1922 "ctrl-alt-n switch to virtual console 'n'\n"
1923 "ctrl-alt toggle mouse and keyboard grab\n"
1925 "When using -nographic, press 'ctrl-a h' to get some help.\n");
1930 #define HAS_ARG 0x0001
1932 typedef struct QEMUOption
{
1939 static const QEMUOption qemu_options
[] = {
1940 { "h", 0, QEMU_OPTION_h
, QEMU_ARCH_ALL
},
1941 #define QEMU_OPTIONS_GENERATE_OPTIONS
1942 #include "qemu-options-wrapper.h"
1946 static bool vga_available(void)
1948 return object_class_by_name("VGA") || object_class_by_name("isa-vga");
1951 static bool cirrus_vga_available(void)
1953 return object_class_by_name("cirrus-vga")
1954 || object_class_by_name("isa-cirrus-vga");
1957 static bool vmware_vga_available(void)
1959 return object_class_by_name("vmware-svga");
1962 static bool qxl_vga_available(void)
1964 return object_class_by_name("qxl-vga");
1967 static bool tcx_vga_available(void)
1969 return object_class_by_name("SUNW,tcx");
1972 static bool cg3_vga_available(void)
1974 return object_class_by_name("cgthree");
1977 static void select_vgahw (const char *p
)
1981 assert(vga_interface_type
== VGA_NONE
);
1982 if (strstart(p
, "std", &opts
)) {
1983 if (vga_available()) {
1984 vga_interface_type
= VGA_STD
;
1986 fprintf(stderr
, "Error: standard VGA not available\n");
1989 } else if (strstart(p
, "cirrus", &opts
)) {
1990 if (cirrus_vga_available()) {
1991 vga_interface_type
= VGA_CIRRUS
;
1993 fprintf(stderr
, "Error: Cirrus VGA not available\n");
1996 } else if (strstart(p
, "vmware", &opts
)) {
1997 if (vmware_vga_available()) {
1998 vga_interface_type
= VGA_VMWARE
;
2000 fprintf(stderr
, "Error: VMWare SVGA not available\n");
2003 } else if (strstart(p
, "xenfb", &opts
)) {
2004 vga_interface_type
= VGA_XENFB
;
2005 } else if (strstart(p
, "qxl", &opts
)) {
2006 if (qxl_vga_available()) {
2007 vga_interface_type
= VGA_QXL
;
2009 fprintf(stderr
, "Error: QXL VGA not available\n");
2012 } else if (strstart(p
, "tcx", &opts
)) {
2013 if (tcx_vga_available()) {
2014 vga_interface_type
= VGA_TCX
;
2016 fprintf(stderr
, "Error: TCX framebuffer not available\n");
2019 } else if (strstart(p
, "cg3", &opts
)) {
2020 if (cg3_vga_available()) {
2021 vga_interface_type
= VGA_CG3
;
2023 fprintf(stderr
, "Error: CG3 framebuffer not available\n");
2026 } else if (!strstart(p
, "none", &opts
)) {
2028 fprintf(stderr
, "Unknown vga type: %s\n", p
);
2032 const char *nextopt
;
2034 if (strstart(opts
, ",retrace=", &nextopt
)) {
2036 if (strstart(opts
, "dumb", &nextopt
))
2037 vga_retrace_method
= VGA_RETRACE_DUMB
;
2038 else if (strstart(opts
, "precise", &nextopt
))
2039 vga_retrace_method
= VGA_RETRACE_PRECISE
;
2040 else goto invalid_vga
;
2041 } else goto invalid_vga
;
2046 static DisplayType
select_display(const char *p
)
2049 DisplayType display
= DT_DEFAULT
;
2051 if (strstart(p
, "sdl", &opts
)) {
2055 const char *nextopt
;
2057 if (strstart(opts
, ",frame=", &nextopt
)) {
2059 if (strstart(opts
, "on", &nextopt
)) {
2061 } else if (strstart(opts
, "off", &nextopt
)) {
2064 goto invalid_sdl_args
;
2066 } else if (strstart(opts
, ",alt_grab=", &nextopt
)) {
2068 if (strstart(opts
, "on", &nextopt
)) {
2070 } else if (strstart(opts
, "off", &nextopt
)) {
2073 goto invalid_sdl_args
;
2075 } else if (strstart(opts
, ",ctrl_grab=", &nextopt
)) {
2077 if (strstart(opts
, "on", &nextopt
)) {
2079 } else if (strstart(opts
, "off", &nextopt
)) {
2082 goto invalid_sdl_args
;
2084 } else if (strstart(opts
, ",window_close=", &nextopt
)) {
2086 if (strstart(opts
, "on", &nextopt
)) {
2088 } else if (strstart(opts
, "off", &nextopt
)) {
2091 goto invalid_sdl_args
;
2095 fprintf(stderr
, "Invalid SDL option string: %s\n", p
);
2101 fprintf(stderr
, "SDL support is disabled\n");
2104 } else if (strstart(p
, "vnc", &opts
)) {
2109 const char *nextopt
;
2111 if (strstart(opts
, "=", &nextopt
)) {
2112 vnc_display
= nextopt
;
2116 fprintf(stderr
, "VNC requires a display argument vnc=<display>\n");
2120 fprintf(stderr
, "VNC support is disabled\n");
2123 } else if (strstart(p
, "curses", &opts
)) {
2124 #ifdef CONFIG_CURSES
2125 display
= DT_CURSES
;
2127 fprintf(stderr
, "Curses support is disabled\n");
2130 } else if (strstart(p
, "gtk", &opts
)) {
2134 const char *nextopt
;
2136 if (strstart(opts
, ",grab_on_hover=", &nextopt
)) {
2138 if (strstart(opts
, "on", &nextopt
)) {
2139 grab_on_hover
= true;
2140 } else if (strstart(opts
, "off", &nextopt
)) {
2141 grab_on_hover
= false;
2143 goto invalid_gtk_args
;
2147 fprintf(stderr
, "Invalid GTK option string: %s\n", p
);
2153 fprintf(stderr
, "GTK support is disabled\n");
2156 } else if (strstart(p
, "none", &opts
)) {
2159 fprintf(stderr
, "Unknown display type: %s\n", p
);
2166 static int balloon_parse(const char *arg
)
2170 if (strcmp(arg
, "none") == 0) {
2174 if (!strncmp(arg
, "virtio", 6)) {
2175 if (arg
[6] == ',') {
2176 /* have params -> parse them */
2177 opts
= qemu_opts_parse(qemu_find_opts("device"), arg
+7, 0);
2181 /* create empty opts */
2182 opts
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
2185 qemu_opt_set(opts
, "driver", "virtio-balloon");
2192 char *qemu_find_file(int type
, const char *name
)
2198 /* Try the name as a straight path first */
2199 if (access(name
, R_OK
) == 0) {
2200 trace_load_file(name
, name
);
2201 return g_strdup(name
);
2205 case QEMU_FILE_TYPE_BIOS
:
2208 case QEMU_FILE_TYPE_KEYMAP
:
2209 subdir
= "keymaps/";
2215 for (i
= 0; i
< data_dir_idx
; i
++) {
2216 buf
= g_strdup_printf("%s/%s%s", data_dir
[i
], subdir
, name
);
2217 if (access(buf
, R_OK
) == 0) {
2218 trace_load_file(name
, buf
);
2226 static int device_help_func(QemuOpts
*opts
, void *opaque
)
2228 return qdev_device_help(opts
);
2231 static int device_init_func(QemuOpts
*opts
, void *opaque
)
2235 dev
= qdev_device_add(opts
);
2238 object_unref(OBJECT(dev
));
2242 static int chardev_init_func(QemuOpts
*opts
, void *opaque
)
2244 Error
*local_err
= NULL
;
2246 qemu_chr_new_from_opts(opts
, NULL
, &local_err
);
2248 error_report("%s", error_get_pretty(local_err
));
2249 error_free(local_err
);
2255 #ifdef CONFIG_VIRTFS
2256 static int fsdev_init_func(QemuOpts
*opts
, void *opaque
)
2259 ret
= qemu_fsdev_add(opts
);
2265 static int mon_init_func(QemuOpts
*opts
, void *opaque
)
2267 CharDriverState
*chr
;
2268 const char *chardev
;
2272 mode
= qemu_opt_get(opts
, "mode");
2276 if (strcmp(mode
, "readline") == 0) {
2277 flags
= MONITOR_USE_READLINE
;
2278 } else if (strcmp(mode
, "control") == 0) {
2279 flags
= MONITOR_USE_CONTROL
;
2281 fprintf(stderr
, "unknown monitor mode \"%s\"\n", mode
);
2285 if (qemu_opt_get_bool(opts
, "pretty", 0))
2286 flags
|= MONITOR_USE_PRETTY
;
2288 if (qemu_opt_get_bool(opts
, "default", 0))
2289 flags
|= MONITOR_IS_DEFAULT
;
2291 chardev
= qemu_opt_get(opts
, "chardev");
2292 chr
= qemu_chr_find(chardev
);
2294 fprintf(stderr
, "chardev \"%s\" not found\n", chardev
);
2298 qemu_chr_fe_claim_no_fail(chr
);
2299 monitor_init(chr
, flags
);
2303 static void monitor_parse(const char *optarg
, const char *mode
, bool pretty
)
2305 static int monitor_device_index
= 0;
2311 if (strstart(optarg
, "chardev:", &p
)) {
2312 snprintf(label
, sizeof(label
), "%s", p
);
2314 snprintf(label
, sizeof(label
), "compat_monitor%d",
2315 monitor_device_index
);
2316 if (monitor_device_index
== 0) {
2319 opts
= qemu_chr_parse_compat(label
, optarg
);
2321 fprintf(stderr
, "parse error: %s\n", optarg
);
2326 opts
= qemu_opts_create(qemu_find_opts("mon"), label
, 1, NULL
);
2328 fprintf(stderr
, "duplicate chardev: %s\n", label
);
2331 qemu_opt_set(opts
, "mode", mode
);
2332 qemu_opt_set(opts
, "chardev", label
);
2333 qemu_opt_set_bool(opts
, "pretty", pretty
);
2335 qemu_opt_set(opts
, "default", "on");
2336 monitor_device_index
++;
2339 struct device_config
{
2341 DEV_USB
, /* -usbdevice */
2343 DEV_SERIAL
, /* -serial */
2344 DEV_PARALLEL
, /* -parallel */
2345 DEV_VIRTCON
, /* -virtioconsole */
2346 DEV_DEBUGCON
, /* -debugcon */
2347 DEV_GDB
, /* -gdb, -s */
2348 DEV_SCLP
, /* s390 sclp */
2350 const char *cmdline
;
2352 QTAILQ_ENTRY(device_config
) next
;
2355 static QTAILQ_HEAD(, device_config
) device_configs
=
2356 QTAILQ_HEAD_INITIALIZER(device_configs
);
2358 static void add_device_config(int type
, const char *cmdline
)
2360 struct device_config
*conf
;
2362 conf
= g_malloc0(sizeof(*conf
));
2364 conf
->cmdline
= cmdline
;
2365 loc_save(&conf
->loc
);
2366 QTAILQ_INSERT_TAIL(&device_configs
, conf
, next
);
2369 static int foreach_device_config(int type
, int (*func
)(const char *cmdline
))
2371 struct device_config
*conf
;
2374 QTAILQ_FOREACH(conf
, &device_configs
, next
) {
2375 if (conf
->type
!= type
)
2377 loc_push_restore(&conf
->loc
);
2378 rc
= func(conf
->cmdline
);
2379 loc_pop(&conf
->loc
);
2387 static int serial_parse(const char *devname
)
2389 static int index
= 0;
2392 if (strcmp(devname
, "none") == 0)
2394 if (index
== MAX_SERIAL_PORTS
) {
2395 fprintf(stderr
, "qemu: too many serial ports\n");
2398 snprintf(label
, sizeof(label
), "serial%d", index
);
2399 serial_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2400 if (!serial_hds
[index
]) {
2401 fprintf(stderr
, "qemu: could not connect serial device"
2402 " to character backend '%s'\n", devname
);
2409 static int parallel_parse(const char *devname
)
2411 static int index
= 0;
2414 if (strcmp(devname
, "none") == 0)
2416 if (index
== MAX_PARALLEL_PORTS
) {
2417 fprintf(stderr
, "qemu: too many parallel ports\n");
2420 snprintf(label
, sizeof(label
), "parallel%d", index
);
2421 parallel_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2422 if (!parallel_hds
[index
]) {
2423 fprintf(stderr
, "qemu: could not connect parallel device"
2424 " to character backend '%s'\n", devname
);
2431 static int virtcon_parse(const char *devname
)
2433 QemuOptsList
*device
= qemu_find_opts("device");
2434 static int index
= 0;
2436 QemuOpts
*bus_opts
, *dev_opts
;
2438 if (strcmp(devname
, "none") == 0)
2440 if (index
== MAX_VIRTIO_CONSOLES
) {
2441 fprintf(stderr
, "qemu: too many virtio consoles\n");
2445 bus_opts
= qemu_opts_create(device
, NULL
, 0, &error_abort
);
2446 if (arch_type
== QEMU_ARCH_S390X
) {
2447 qemu_opt_set(bus_opts
, "driver", "virtio-serial-s390");
2449 qemu_opt_set(bus_opts
, "driver", "virtio-serial-pci");
2452 dev_opts
= qemu_opts_create(device
, NULL
, 0, &error_abort
);
2453 qemu_opt_set(dev_opts
, "driver", "virtconsole");
2455 snprintf(label
, sizeof(label
), "virtcon%d", index
);
2456 virtcon_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2457 if (!virtcon_hds
[index
]) {
2458 fprintf(stderr
, "qemu: could not connect virtio console"
2459 " to character backend '%s'\n", devname
);
2462 qemu_opt_set(dev_opts
, "chardev", label
);
2468 static int sclp_parse(const char *devname
)
2470 QemuOptsList
*device
= qemu_find_opts("device");
2471 static int index
= 0;
2475 if (strcmp(devname
, "none") == 0) {
2478 if (index
== MAX_SCLP_CONSOLES
) {
2479 fprintf(stderr
, "qemu: too many sclp consoles\n");
2483 assert(arch_type
== QEMU_ARCH_S390X
);
2485 dev_opts
= qemu_opts_create(device
, NULL
, 0, NULL
);
2486 qemu_opt_set(dev_opts
, "driver", "sclpconsole");
2488 snprintf(label
, sizeof(label
), "sclpcon%d", index
);
2489 sclp_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2490 if (!sclp_hds
[index
]) {
2491 fprintf(stderr
, "qemu: could not connect sclp console"
2492 " to character backend '%s'\n", devname
);
2495 qemu_opt_set(dev_opts
, "chardev", label
);
2501 static int debugcon_parse(const char *devname
)
2505 if (!qemu_chr_new("debugcon", devname
, NULL
)) {
2508 opts
= qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL
);
2510 fprintf(stderr
, "qemu: already have a debugcon device\n");
2513 qemu_opt_set(opts
, "driver", "isa-debugcon");
2514 qemu_opt_set(opts
, "chardev", "debugcon");
2518 static gint
machine_class_cmp(gconstpointer a
, gconstpointer b
)
2520 const MachineClass
*mc1
= a
, *mc2
= b
;
2523 if (mc1
->family
== NULL
) {
2524 if (mc2
->family
== NULL
) {
2525 /* Compare standalone machine types against each other; they sort
2526 * in increasing order.
2528 return strcmp(object_class_get_name(OBJECT_CLASS(mc1
)),
2529 object_class_get_name(OBJECT_CLASS(mc2
)));
2532 /* Standalone machine types sort after families. */
2536 if (mc2
->family
== NULL
) {
2537 /* Families sort before standalone machine types. */
2541 /* Families sort between each other alphabetically increasingly. */
2542 res
= strcmp(mc1
->family
, mc2
->family
);
2547 /* Within the same family, machine types sort in decreasing order. */
2548 return strcmp(object_class_get_name(OBJECT_CLASS(mc2
)),
2549 object_class_get_name(OBJECT_CLASS(mc1
)));
2552 static MachineClass
*machine_parse(const char *name
)
2554 MachineClass
*mc
= NULL
;
2555 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
2558 mc
= find_machine(name
);
2563 if (name
&& !is_help_option(name
)) {
2564 error_report("Unsupported machine type");
2565 error_printf("Use -machine help to list supported machines!\n");
2567 printf("Supported machines are:\n");
2568 machines
= g_slist_sort(machines
, machine_class_cmp
);
2569 for (el
= machines
; el
; el
= el
->next
) {
2570 MachineClass
*mc
= el
->data
;
2572 printf("%-20s %s (alias of %s)\n", mc
->alias
, mc
->desc
, mc
->name
);
2574 printf("%-20s %s%s\n", mc
->name
, mc
->desc
,
2575 mc
->is_default
? " (default)" : "");
2579 g_slist_free(machines
);
2580 exit(!name
|| !is_help_option(name
));
2583 void qemu_add_exit_notifier(Notifier
*notify
)
2585 notifier_list_add(&exit_notifiers
, notify
);
2588 void qemu_remove_exit_notifier(Notifier
*notify
)
2590 notifier_remove(notify
);
2593 static void qemu_run_exit_notifiers(void)
2595 notifier_list_notify(&exit_notifiers
, NULL
);
2598 void qemu_add_machine_init_done_notifier(Notifier
*notify
)
2600 notifier_list_add(&machine_init_done_notifiers
, notify
);
2603 static void qemu_run_machine_init_done_notifiers(void)
2605 notifier_list_notify(&machine_init_done_notifiers
, NULL
);
2608 static const QEMUOption
*lookup_opt(int argc
, char **argv
,
2609 const char **poptarg
, int *poptind
)
2611 const QEMUOption
*popt
;
2612 int optind
= *poptind
;
2613 char *r
= argv
[optind
];
2616 loc_set_cmdline(argv
, optind
, 1);
2618 /* Treat --foo the same as -foo. */
2621 popt
= qemu_options
;
2624 error_report("invalid option");
2627 if (!strcmp(popt
->name
, r
+ 1))
2631 if (popt
->flags
& HAS_ARG
) {
2632 if (optind
>= argc
) {
2633 error_report("requires an argument");
2636 optarg
= argv
[optind
++];
2637 loc_set_cmdline(argv
, optind
- 2, 2);
2648 static gpointer
malloc_and_trace(gsize n_bytes
)
2650 void *ptr
= malloc(n_bytes
);
2651 trace_g_malloc(n_bytes
, ptr
);
2655 static gpointer
realloc_and_trace(gpointer mem
, gsize n_bytes
)
2657 void *ptr
= realloc(mem
, n_bytes
);
2658 trace_g_realloc(mem
, n_bytes
, ptr
);
2662 static void free_and_trace(gpointer mem
)
2668 static int machine_set_property(const char *name
, const char *value
,
2671 Object
*obj
= OBJECT(opaque
);
2672 StringInputVisitor
*siv
;
2673 Error
*local_err
= NULL
;
2676 if (strcmp(name
, "type") == 0) {
2680 qom_name
= g_strdup(name
);
2688 siv
= string_input_visitor_new(value
);
2689 object_property_set(obj
, string_input_get_visitor(siv
), qom_name
, &local_err
);
2690 string_input_visitor_cleanup(siv
);
2694 qerror_report_err(local_err
);
2695 error_free(local_err
);
2702 static int object_create(QemuOpts
*opts
, void *opaque
)
2711 ov
= opts_visitor_new(opts
);
2712 pdict
= qemu_opts_to_qdict(opts
, NULL
);
2714 visit_start_struct(opts_get_visitor(ov
), &dummy
, NULL
, NULL
, 0, &err
);
2719 qdict_del(pdict
, "qom-type");
2720 visit_type_str(opts_get_visitor(ov
), &type
, "qom-type", &err
);
2725 qdict_del(pdict
, "id");
2726 visit_type_str(opts_get_visitor(ov
), &id
, "id", &err
);
2731 object_add(type
, id
, pdict
, opts_get_visitor(ov
), &err
);
2735 visit_end_struct(opts_get_visitor(ov
), &err
);
2737 qmp_object_del(id
, NULL
);
2741 opts_visitor_cleanup(ov
);
2748 qerror_report_err(err
);
2755 int main(int argc
, char **argv
, char **envp
)
2758 int snapshot
, linux_boot
;
2759 const char *initrd_filename
;
2760 const char *kernel_filename
, *kernel_cmdline
;
2761 const char *boot_order
;
2763 int cyls
, heads
, secs
, translation
;
2764 QemuOpts
*hda_opts
= NULL
, *opts
, *machine_opts
, *icount_opts
= NULL
;
2765 QemuOptsList
*olist
;
2768 const char *loadvm
= NULL
;
2769 MachineClass
*machine_class
;
2770 const char *cpu_model
;
2771 const char *vga_model
= NULL
;
2772 const char *qtest_chrdev
= NULL
;
2773 const char *qtest_log
= NULL
;
2774 const char *pid_file
= NULL
;
2775 const char *incoming
= NULL
;
2777 int show_vnc_port
= 0;
2779 bool defconfig
= true;
2780 bool userconfig
= true;
2781 const char *log_mask
= NULL
;
2782 const char *log_file
= NULL
;
2783 GMemVTable mem_trace
= {
2784 .malloc
= malloc_and_trace
,
2785 .realloc
= realloc_and_trace
,
2786 .free
= free_and_trace
,
2788 const char *trace_events
= NULL
;
2789 const char *trace_file
= NULL
;
2790 const ram_addr_t default_ram_size
= (ram_addr_t
)DEFAULT_RAM_SIZE
*
2792 ram_addr_t maxram_size
= default_ram_size
;
2793 uint64_t ram_slots
= 0;
2794 FILE *vmstate_dump_file
= NULL
;
2795 Error
*main_loop_err
= NULL
;
2797 atexit(qemu_run_exit_notifiers
);
2798 error_set_progname(argv
[0]);
2799 qemu_init_exec_dir(argv
[0]);
2801 g_mem_set_vtable(&mem_trace
);
2803 module_call_init(MODULE_INIT_QOM
);
2805 qemu_add_opts(&qemu_drive_opts
);
2806 qemu_add_drive_opts(&qemu_legacy_drive_opts
);
2807 qemu_add_drive_opts(&qemu_common_drive_opts
);
2808 qemu_add_drive_opts(&qemu_drive_opts
);
2809 qemu_add_opts(&qemu_chardev_opts
);
2810 qemu_add_opts(&qemu_device_opts
);
2811 qemu_add_opts(&qemu_netdev_opts
);
2812 qemu_add_opts(&qemu_net_opts
);
2813 qemu_add_opts(&qemu_rtc_opts
);
2814 qemu_add_opts(&qemu_global_opts
);
2815 qemu_add_opts(&qemu_mon_opts
);
2816 qemu_add_opts(&qemu_trace_opts
);
2817 qemu_add_opts(&qemu_option_rom_opts
);
2818 qemu_add_opts(&qemu_machine_opts
);
2819 qemu_add_opts(&qemu_mem_opts
);
2820 qemu_add_opts(&qemu_smp_opts
);
2821 qemu_add_opts(&qemu_boot_opts
);
2822 qemu_add_opts(&qemu_sandbox_opts
);
2823 qemu_add_opts(&qemu_add_fd_opts
);
2824 qemu_add_opts(&qemu_object_opts
);
2825 qemu_add_opts(&qemu_tpmdev_opts
);
2826 qemu_add_opts(&qemu_realtime_opts
);
2827 qemu_add_opts(&qemu_msg_opts
);
2828 qemu_add_opts(&qemu_name_opts
);
2829 qemu_add_opts(&qemu_numa_opts
);
2830 qemu_add_opts(&qemu_icount_opts
);
2831 qemu_add_opts(&qemu_semihosting_config_opts
);
2835 rtc_clock
= QEMU_CLOCK_HOST
;
2837 QLIST_INIT (&vm_change_state_head
);
2838 os_setup_early_signal_handling();
2840 module_call_init(MODULE_INIT_MACHINE
);
2841 machine_class
= find_default_machine();
2843 ram_size
= default_ram_size
;
2845 cyls
= heads
= secs
= 0;
2846 translation
= BIOS_ATA_TRANSLATION_AUTO
;
2848 for (i
= 0; i
< MAX_NODES
; i
++) {
2849 numa_info
[i
].node_mem
= 0;
2850 numa_info
[i
].present
= false;
2851 bitmap_zero(numa_info
[i
].node_cpu
, MAX_CPUMASK_BITS
);
2855 max_numa_nodeid
= 0;
2858 bdrv_init_with_whitelist();
2862 /* first pass of option parsing */
2864 while (optind
< argc
) {
2865 if (argv
[optind
][0] != '-') {
2869 const QEMUOption
*popt
;
2871 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
2872 switch (popt
->index
) {
2873 case QEMU_OPTION_nodefconfig
:
2876 case QEMU_OPTION_nouserconfig
:
2885 ret
= qemu_read_default_config_files(userconfig
);
2891 /* second pass of option parsing */
2896 if (argv
[optind
][0] != '-') {
2897 hda_opts
= drive_add(IF_DEFAULT
, 0, argv
[optind
++], HD_OPTS
);
2899 const QEMUOption
*popt
;
2901 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
2902 if (!(popt
->arch_mask
& arch_type
)) {
2903 printf("Option %s not supported for this target\n", popt
->name
);
2906 switch(popt
->index
) {
2908 machine_class
= machine_parse(optarg
);
2910 case QEMU_OPTION_no_kvm_irqchip
: {
2911 olist
= qemu_find_opts("machine");
2912 qemu_opts_parse(olist
, "kernel_irqchip=off", 0);
2915 case QEMU_OPTION_cpu
:
2916 /* hw initialization will check this */
2919 case QEMU_OPTION_hda
:
2923 snprintf(buf
, sizeof(buf
), "%s", HD_OPTS
);
2925 snprintf(buf
, sizeof(buf
),
2926 "%s,cyls=%d,heads=%d,secs=%d%s",
2927 HD_OPTS
, cyls
, heads
, secs
,
2928 translation
== BIOS_ATA_TRANSLATION_LBA
?
2930 translation
== BIOS_ATA_TRANSLATION_NONE
?
2931 ",trans=none" : "");
2932 drive_add(IF_DEFAULT
, 0, optarg
, buf
);
2935 case QEMU_OPTION_hdb
:
2936 case QEMU_OPTION_hdc
:
2937 case QEMU_OPTION_hdd
:
2938 drive_add(IF_DEFAULT
, popt
->index
- QEMU_OPTION_hda
, optarg
,
2941 case QEMU_OPTION_drive
:
2942 if (drive_def(optarg
) == NULL
) {
2946 case QEMU_OPTION_set
:
2947 if (qemu_set_option(optarg
) != 0)
2950 case QEMU_OPTION_global
:
2951 if (qemu_global_option(optarg
) != 0)
2954 case QEMU_OPTION_mtdblock
:
2955 drive_add(IF_MTD
, -1, optarg
, MTD_OPTS
);
2957 case QEMU_OPTION_sd
:
2958 drive_add(IF_SD
, -1, optarg
, SD_OPTS
);
2960 case QEMU_OPTION_pflash
:
2961 drive_add(IF_PFLASH
, -1, optarg
, PFLASH_OPTS
);
2963 case QEMU_OPTION_snapshot
:
2966 case QEMU_OPTION_hdachs
:
2970 cyls
= strtol(p
, (char **)&p
, 0);
2971 if (cyls
< 1 || cyls
> 16383)
2976 heads
= strtol(p
, (char **)&p
, 0);
2977 if (heads
< 1 || heads
> 16)
2982 secs
= strtol(p
, (char **)&p
, 0);
2983 if (secs
< 1 || secs
> 63)
2987 if (!strcmp(p
, "large")) {
2988 translation
= BIOS_ATA_TRANSLATION_LARGE
;
2989 } else if (!strcmp(p
, "rechs")) {
2990 translation
= BIOS_ATA_TRANSLATION_RECHS
;
2991 } else if (!strcmp(p
, "none")) {
2992 translation
= BIOS_ATA_TRANSLATION_NONE
;
2993 } else if (!strcmp(p
, "lba")) {
2994 translation
= BIOS_ATA_TRANSLATION_LBA
;
2995 } else if (!strcmp(p
, "auto")) {
2996 translation
= BIOS_ATA_TRANSLATION_AUTO
;
3000 } else if (*p
!= '\0') {
3002 fprintf(stderr
, "qemu: invalid physical CHS format\n");
3005 if (hda_opts
!= NULL
) {
3007 snprintf(num
, sizeof(num
), "%d", cyls
);
3008 qemu_opt_set(hda_opts
, "cyls", num
);
3009 snprintf(num
, sizeof(num
), "%d", heads
);
3010 qemu_opt_set(hda_opts
, "heads", num
);
3011 snprintf(num
, sizeof(num
), "%d", secs
);
3012 qemu_opt_set(hda_opts
, "secs", num
);
3013 if (translation
== BIOS_ATA_TRANSLATION_LARGE
) {
3014 qemu_opt_set(hda_opts
, "trans", "large");
3015 } else if (translation
== BIOS_ATA_TRANSLATION_RECHS
) {
3016 qemu_opt_set(hda_opts
, "trans", "rechs");
3017 } else if (translation
== BIOS_ATA_TRANSLATION_LBA
) {
3018 qemu_opt_set(hda_opts
, "trans", "lba");
3019 } else if (translation
== BIOS_ATA_TRANSLATION_NONE
) {
3020 qemu_opt_set(hda_opts
, "trans", "none");
3025 case QEMU_OPTION_numa
:
3026 opts
= qemu_opts_parse(qemu_find_opts("numa"), optarg
, 1);
3031 case QEMU_OPTION_display
:
3032 display_type
= select_display(optarg
);
3034 case QEMU_OPTION_nographic
:
3035 display_type
= DT_NOGRAPHIC
;
3037 case QEMU_OPTION_curses
:
3038 #ifdef CONFIG_CURSES
3039 display_type
= DT_CURSES
;
3041 fprintf(stderr
, "Curses support is disabled\n");
3045 case QEMU_OPTION_portrait
:
3046 graphic_rotate
= 90;
3048 case QEMU_OPTION_rotate
:
3049 graphic_rotate
= strtol(optarg
, (char **) &optarg
, 10);
3050 if (graphic_rotate
!= 0 && graphic_rotate
!= 90 &&
3051 graphic_rotate
!= 180 && graphic_rotate
!= 270) {
3053 "qemu: only 90, 180, 270 deg rotation is available\n");
3057 case QEMU_OPTION_kernel
:
3058 qemu_opts_set(qemu_find_opts("machine"), 0, "kernel", optarg
);
3060 case QEMU_OPTION_initrd
:
3061 qemu_opts_set(qemu_find_opts("machine"), 0, "initrd", optarg
);
3063 case QEMU_OPTION_append
:
3064 qemu_opts_set(qemu_find_opts("machine"), 0, "append", optarg
);
3066 case QEMU_OPTION_dtb
:
3067 qemu_opts_set(qemu_find_opts("machine"), 0, "dtb", optarg
);
3069 case QEMU_OPTION_cdrom
:
3070 drive_add(IF_DEFAULT
, 2, optarg
, CDROM_OPTS
);
3072 case QEMU_OPTION_boot
:
3073 opts
= qemu_opts_parse(qemu_find_opts("boot-opts"), optarg
, 1);
3078 case QEMU_OPTION_fda
:
3079 case QEMU_OPTION_fdb
:
3080 drive_add(IF_FLOPPY
, popt
->index
- QEMU_OPTION_fda
,
3083 case QEMU_OPTION_no_fd_bootchk
:
3086 case QEMU_OPTION_netdev
:
3087 if (net_client_parse(qemu_find_opts("netdev"), optarg
) == -1) {
3091 case QEMU_OPTION_net
:
3092 if (net_client_parse(qemu_find_opts("net"), optarg
) == -1) {
3096 #ifdef CONFIG_LIBISCSI
3097 case QEMU_OPTION_iscsi
:
3098 opts
= qemu_opts_parse(qemu_find_opts("iscsi"), optarg
, 0);
3105 case QEMU_OPTION_tftp
:
3106 legacy_tftp_prefix
= optarg
;
3108 case QEMU_OPTION_bootp
:
3109 legacy_bootp_filename
= optarg
;
3111 case QEMU_OPTION_redir
:
3112 if (net_slirp_redir(optarg
) < 0)
3116 case QEMU_OPTION_bt
:
3117 add_device_config(DEV_BT
, optarg
);
3119 case QEMU_OPTION_audio_help
:
3123 case QEMU_OPTION_soundhw
:
3124 select_soundhw (optarg
);
3129 case QEMU_OPTION_version
:
3133 case QEMU_OPTION_m
: {
3135 const char *mem_str
;
3136 const char *maxmem_str
, *slots_str
;
3138 opts
= qemu_opts_parse(qemu_find_opts("memory"),
3144 mem_str
= qemu_opt_get(opts
, "size");
3146 error_report("invalid -m option, missing 'size' option");
3150 error_report("missing 'size' option value");
3154 sz
= qemu_opt_get_size(opts
, "size", ram_size
);
3156 /* Fix up legacy suffix-less format */
3157 if (g_ascii_isdigit(mem_str
[strlen(mem_str
) - 1])) {
3158 uint64_t overflow_check
= sz
;
3161 if ((sz
>> 20) != overflow_check
) {
3162 error_report("too large 'size' option value");
3167 /* backward compatibility behaviour for case "-m 0" */
3169 sz
= default_ram_size
;
3172 sz
= QEMU_ALIGN_UP(sz
, 8192);
3174 if (ram_size
!= sz
) {
3175 error_report("ram size too large");
3178 maxram_size
= ram_size
;
3180 maxmem_str
= qemu_opt_get(opts
, "maxmem");
3181 slots_str
= qemu_opt_get(opts
, "slots");
3182 if (maxmem_str
&& slots_str
) {
3185 sz
= qemu_opt_get_size(opts
, "maxmem", 0);
3186 if (sz
< ram_size
) {
3187 error_report("invalid -m option value: maxmem "
3188 "(0x%" PRIx64
") <= initial memory (0x"
3189 RAM_ADDR_FMT
")", sz
, ram_size
);
3193 slots
= qemu_opt_get_number(opts
, "slots", 0);
3194 if ((sz
> ram_size
) && !slots
) {
3195 error_report("invalid -m option value: maxmem "
3196 "(0x%" PRIx64
") more than initial memory (0x"
3197 RAM_ADDR_FMT
") but no hotplug slots where "
3198 "specified", sz
, ram_size
);
3202 if ((sz
<= ram_size
) && slots
) {
3203 error_report("invalid -m option value: %"
3204 PRIu64
" hotplug slots where specified but "
3205 "maxmem (0x%" PRIx64
") <= initial memory (0x"
3206 RAM_ADDR_FMT
")", slots
, sz
, ram_size
);
3211 } else if ((!maxmem_str
&& slots_str
) ||
3212 (maxmem_str
&& !slots_str
)) {
3213 error_report("invalid -m option value: missing "
3214 "'%s' option", slots_str
? "maxmem" : "slots");
3220 case QEMU_OPTION_tpmdev
:
3221 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg
) < 0) {
3226 case QEMU_OPTION_mempath
:
3229 case QEMU_OPTION_mem_prealloc
:
3239 add_device_config(DEV_GDB
, "tcp::" DEFAULT_GDBSTUB_PORT
);
3241 case QEMU_OPTION_gdb
:
3242 add_device_config(DEV_GDB
, optarg
);
3245 if (data_dir_idx
< ARRAY_SIZE(data_dir
)) {
3246 data_dir
[data_dir_idx
++] = optarg
;
3249 case QEMU_OPTION_bios
:
3250 qemu_opts_set(qemu_find_opts("machine"), 0, "firmware", optarg
);
3252 case QEMU_OPTION_singlestep
:
3259 keyboard_layout
= optarg
;
3261 case QEMU_OPTION_localtime
:
3264 case QEMU_OPTION_vga
:
3273 w
= strtol(p
, (char **)&p
, 10);
3276 fprintf(stderr
, "qemu: invalid resolution or depth\n");
3282 h
= strtol(p
, (char **)&p
, 10);
3287 depth
= strtol(p
, (char **)&p
, 10);
3288 if (depth
!= 8 && depth
!= 15 && depth
!= 16 &&
3289 depth
!= 24 && depth
!= 32)
3291 } else if (*p
== '\0') {
3292 depth
= graphic_depth
;
3299 graphic_depth
= depth
;
3302 case QEMU_OPTION_echr
:
3305 term_escape_char
= strtol(optarg
, &r
, 0);
3307 printf("Bad argument to echr\n");
3310 case QEMU_OPTION_monitor
:
3311 default_monitor
= 0;
3312 if (strncmp(optarg
, "none", 4)) {
3313 monitor_parse(optarg
, "readline", false);
3316 case QEMU_OPTION_qmp
:
3317 monitor_parse(optarg
, "control", false);
3318 default_monitor
= 0;
3320 case QEMU_OPTION_qmp_pretty
:
3321 monitor_parse(optarg
, "control", true);
3322 default_monitor
= 0;
3324 case QEMU_OPTION_mon
:
3325 opts
= qemu_opts_parse(qemu_find_opts("mon"), optarg
, 1);
3329 default_monitor
= 0;
3331 case QEMU_OPTION_chardev
:
3332 opts
= qemu_opts_parse(qemu_find_opts("chardev"), optarg
, 1);
3337 case QEMU_OPTION_fsdev
:
3338 olist
= qemu_find_opts("fsdev");
3340 fprintf(stderr
, "fsdev is not supported by this qemu build.\n");
3343 opts
= qemu_opts_parse(olist
, optarg
, 1);
3348 case QEMU_OPTION_virtfs
: {
3351 const char *writeout
, *sock_fd
, *socket
;
3353 olist
= qemu_find_opts("virtfs");
3355 fprintf(stderr
, "virtfs is not supported by this qemu build.\n");
3358 opts
= qemu_opts_parse(olist
, optarg
, 1);
3363 if (qemu_opt_get(opts
, "fsdriver") == NULL
||
3364 qemu_opt_get(opts
, "mount_tag") == NULL
) {
3365 fprintf(stderr
, "Usage: -virtfs fsdriver,mount_tag=tag.\n");
3368 fsdev
= qemu_opts_create(qemu_find_opts("fsdev"),
3369 qemu_opt_get(opts
, "mount_tag"),
3372 fprintf(stderr
, "duplicate fsdev id: %s\n",
3373 qemu_opt_get(opts
, "mount_tag"));
3377 writeout
= qemu_opt_get(opts
, "writeout");
3379 #ifdef CONFIG_SYNC_FILE_RANGE
3380 qemu_opt_set(fsdev
, "writeout", writeout
);
3382 fprintf(stderr
, "writeout=immediate not supported on "
3387 qemu_opt_set(fsdev
, "fsdriver", qemu_opt_get(opts
, "fsdriver"));
3388 qemu_opt_set(fsdev
, "path", qemu_opt_get(opts
, "path"));
3389 qemu_opt_set(fsdev
, "security_model",
3390 qemu_opt_get(opts
, "security_model"));
3391 socket
= qemu_opt_get(opts
, "socket");
3393 qemu_opt_set(fsdev
, "socket", socket
);
3395 sock_fd
= qemu_opt_get(opts
, "sock_fd");
3397 qemu_opt_set(fsdev
, "sock_fd", sock_fd
);
3400 qemu_opt_set_bool(fsdev
, "readonly",
3401 qemu_opt_get_bool(opts
, "readonly", 0));
3402 device
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
3404 qemu_opt_set(device
, "driver", "virtio-9p-pci");
3405 qemu_opt_set(device
, "fsdev",
3406 qemu_opt_get(opts
, "mount_tag"));
3407 qemu_opt_set(device
, "mount_tag",
3408 qemu_opt_get(opts
, "mount_tag"));
3411 case QEMU_OPTION_virtfs_synth
: {
3415 fsdev
= qemu_opts_create(qemu_find_opts("fsdev"), "v_synth",
3418 fprintf(stderr
, "duplicate option: %s\n", "virtfs_synth");
3421 qemu_opt_set(fsdev
, "fsdriver", "synth");
3423 device
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
3425 qemu_opt_set(device
, "driver", "virtio-9p-pci");
3426 qemu_opt_set(device
, "fsdev", "v_synth");
3427 qemu_opt_set(device
, "mount_tag", "v_synth");
3430 case QEMU_OPTION_serial
:
3431 add_device_config(DEV_SERIAL
, optarg
);
3433 if (strncmp(optarg
, "mon:", 4) == 0) {
3434 default_monitor
= 0;
3437 case QEMU_OPTION_watchdog
:
3440 "qemu: only one watchdog option may be given\n");
3445 case QEMU_OPTION_watchdog_action
:
3446 if (select_watchdog_action(optarg
) == -1) {
3447 fprintf(stderr
, "Unknown -watchdog-action parameter\n");
3451 case QEMU_OPTION_virtiocon
:
3452 add_device_config(DEV_VIRTCON
, optarg
);
3453 default_virtcon
= 0;
3454 if (strncmp(optarg
, "mon:", 4) == 0) {
3455 default_monitor
= 0;
3458 case QEMU_OPTION_parallel
:
3459 add_device_config(DEV_PARALLEL
, optarg
);
3460 default_parallel
= 0;
3461 if (strncmp(optarg
, "mon:", 4) == 0) {
3462 default_monitor
= 0;
3465 case QEMU_OPTION_debugcon
:
3466 add_device_config(DEV_DEBUGCON
, optarg
);
3468 case QEMU_OPTION_loadvm
:
3471 case QEMU_OPTION_full_screen
:
3474 case QEMU_OPTION_no_frame
:
3477 case QEMU_OPTION_alt_grab
:
3480 case QEMU_OPTION_ctrl_grab
:
3483 case QEMU_OPTION_no_quit
:
3486 case QEMU_OPTION_sdl
:
3488 display_type
= DT_SDL
;
3491 fprintf(stderr
, "SDL support is disabled\n");
3494 case QEMU_OPTION_pidfile
:
3497 case QEMU_OPTION_win2k_hack
:
3498 win2k_install_hack
= 1;
3500 case QEMU_OPTION_rtc_td_hack
: {
3501 static GlobalProperty slew_lost_ticks
[] = {
3503 .driver
= "mc146818rtc",
3504 .property
= "lost_tick_policy",
3507 { /* end of list */ }
3510 qdev_prop_register_global_list(slew_lost_ticks
);
3513 case QEMU_OPTION_acpitable
:
3514 opts
= qemu_opts_parse(qemu_find_opts("acpi"), optarg
, 1);
3518 do_acpitable_option(opts
);
3520 case QEMU_OPTION_smbios
:
3521 opts
= qemu_opts_parse(qemu_find_opts("smbios"), optarg
, 0);
3525 do_smbios_option(opts
);
3527 case QEMU_OPTION_enable_kvm
:
3528 olist
= qemu_find_opts("machine");
3529 qemu_opts_parse(olist
, "accel=kvm", 0);
3531 case QEMU_OPTION_machine
:
3532 olist
= qemu_find_opts("machine");
3533 opts
= qemu_opts_parse(olist
, optarg
, 1);
3537 optarg
= qemu_opt_get(opts
, "type");
3539 machine_class
= machine_parse(optarg
);
3542 case QEMU_OPTION_no_kvm
:
3543 olist
= qemu_find_opts("machine");
3544 qemu_opts_parse(olist
, "accel=tcg", 0);
3546 case QEMU_OPTION_no_kvm_pit
: {
3547 fprintf(stderr
, "Warning: KVM PIT can no longer be disabled "
3551 case QEMU_OPTION_no_kvm_pit_reinjection
: {
3552 static GlobalProperty kvm_pit_lost_tick_policy
[] = {
3554 .driver
= "kvm-pit",
3555 .property
= "lost_tick_policy",
3558 { /* end of list */ }
3561 fprintf(stderr
, "Warning: option deprecated, use "
3562 "lost_tick_policy property of kvm-pit instead.\n");
3563 qdev_prop_register_global_list(kvm_pit_lost_tick_policy
);
3566 case QEMU_OPTION_usb
:
3567 olist
= qemu_find_opts("machine");
3568 qemu_opts_parse(olist
, "usb=on", 0);
3570 case QEMU_OPTION_usbdevice
:
3571 olist
= qemu_find_opts("machine");
3572 qemu_opts_parse(olist
, "usb=on", 0);
3573 add_device_config(DEV_USB
, optarg
);
3575 case QEMU_OPTION_device
:
3576 if (!qemu_opts_parse(qemu_find_opts("device"), optarg
, 1)) {
3580 case QEMU_OPTION_smp
:
3581 if (!qemu_opts_parse(qemu_find_opts("smp-opts"), optarg
, 1)) {
3585 case QEMU_OPTION_vnc
:
3588 vnc_display
= optarg
;
3590 fprintf(stderr
, "VNC support is disabled\n");
3594 case QEMU_OPTION_no_acpi
:
3597 case QEMU_OPTION_no_hpet
:
3600 case QEMU_OPTION_balloon
:
3601 if (balloon_parse(optarg
) < 0) {
3602 fprintf(stderr
, "Unknown -balloon argument %s\n", optarg
);
3606 case QEMU_OPTION_no_reboot
:
3609 case QEMU_OPTION_no_shutdown
:
3612 case QEMU_OPTION_show_cursor
:
3615 case QEMU_OPTION_uuid
:
3616 if(qemu_uuid_parse(optarg
, qemu_uuid
) < 0) {
3617 fprintf(stderr
, "Fail to parse UUID string."
3618 " Wrong format.\n");
3621 qemu_uuid_set
= true;
3623 case QEMU_OPTION_option_rom
:
3624 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
3625 fprintf(stderr
, "Too many option ROMs\n");
3628 opts
= qemu_opts_parse(qemu_find_opts("option-rom"), optarg
, 1);
3632 option_rom
[nb_option_roms
].name
= qemu_opt_get(opts
, "romfile");
3633 option_rom
[nb_option_roms
].bootindex
=
3634 qemu_opt_get_number(opts
, "bootindex", -1);
3635 if (!option_rom
[nb_option_roms
].name
) {
3636 fprintf(stderr
, "Option ROM file is not specified\n");
3641 case QEMU_OPTION_semihosting
:
3642 semihosting_enabled
= 1;
3643 semihosting_target
= SEMIHOSTING_TARGET_AUTO
;
3645 case QEMU_OPTION_semihosting_config
:
3646 semihosting_enabled
= 1;
3647 opts
= qemu_opts_parse(qemu_find_opts("semihosting-config"),
3650 semihosting_enabled
= qemu_opt_get_bool(opts
, "enable",
3652 const char *target
= qemu_opt_get(opts
, "target");
3653 if (target
!= NULL
) {
3654 if (strcmp("native", target
) == 0) {
3655 semihosting_target
= SEMIHOSTING_TARGET_NATIVE
;
3656 } else if (strcmp("gdb", target
) == 0) {
3657 semihosting_target
= SEMIHOSTING_TARGET_GDB
;
3658 } else if (strcmp("auto", target
) == 0) {
3659 semihosting_target
= SEMIHOSTING_TARGET_AUTO
;
3661 fprintf(stderr
, "Unsupported semihosting-config"
3667 semihosting_target
= SEMIHOSTING_TARGET_AUTO
;
3670 fprintf(stderr
, "Unsupported semihosting-config %s\n",
3675 case QEMU_OPTION_tdf
:
3676 fprintf(stderr
, "Warning: user space PIT time drift fix "
3677 "is no longer supported.\n");
3679 case QEMU_OPTION_name
:
3680 opts
= qemu_opts_parse(qemu_find_opts("name"), optarg
, 1);
3685 case QEMU_OPTION_prom_env
:
3686 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
3687 fprintf(stderr
, "Too many prom variables\n");
3690 prom_envs
[nb_prom_envs
] = optarg
;
3693 case QEMU_OPTION_old_param
:
3696 case QEMU_OPTION_clock
:
3697 /* Clock options no longer exist. Keep this option for
3698 * backward compatibility.
3701 case QEMU_OPTION_startdate
:
3702 configure_rtc_date_offset(optarg
, 1);
3704 case QEMU_OPTION_rtc
:
3705 opts
= qemu_opts_parse(qemu_find_opts("rtc"), optarg
, 0);
3709 configure_rtc(opts
);
3711 case QEMU_OPTION_tb_size
:
3712 tcg_tb_size
= strtol(optarg
, NULL
, 0);
3713 if (tcg_tb_size
< 0) {
3717 case QEMU_OPTION_icount
:
3718 icount_opts
= qemu_opts_parse(qemu_find_opts("icount"),
3724 case QEMU_OPTION_incoming
:
3726 runstate_set(RUN_STATE_INMIGRATE
);
3728 case QEMU_OPTION_nodefaults
:
3731 case QEMU_OPTION_xen_domid
:
3732 if (!(xen_available())) {
3733 printf("Option %s not supported for this target\n", popt
->name
);
3736 xen_domid
= atoi(optarg
);
3738 case QEMU_OPTION_xen_create
:
3739 if (!(xen_available())) {
3740 printf("Option %s not supported for this target\n", popt
->name
);
3743 xen_mode
= XEN_CREATE
;
3745 case QEMU_OPTION_xen_attach
:
3746 if (!(xen_available())) {
3747 printf("Option %s not supported for this target\n", popt
->name
);
3750 xen_mode
= XEN_ATTACH
;
3752 case QEMU_OPTION_trace
:
3754 opts
= qemu_opts_parse(qemu_find_opts("trace"), optarg
, 0);
3758 trace_events
= qemu_opt_get(opts
, "events");
3759 trace_file
= qemu_opt_get(opts
, "file");
3762 case QEMU_OPTION_readconfig
:
3764 int ret
= qemu_read_config_file(optarg
);
3766 fprintf(stderr
, "read config %s: %s\n", optarg
,
3772 case QEMU_OPTION_spice
:
3773 olist
= qemu_find_opts("spice");
3775 fprintf(stderr
, "spice is not supported by this qemu build.\n");
3778 opts
= qemu_opts_parse(olist
, optarg
, 0);
3784 case QEMU_OPTION_writeconfig
:
3787 if (strcmp(optarg
, "-") == 0) {
3790 fp
= fopen(optarg
, "w");
3792 fprintf(stderr
, "open %s: %s\n", optarg
, strerror(errno
));
3796 qemu_config_write(fp
);
3802 case QEMU_OPTION_qtest
:
3803 qtest_chrdev
= optarg
;
3805 case QEMU_OPTION_qtest_log
:
3808 case QEMU_OPTION_sandbox
:
3809 opts
= qemu_opts_parse(qemu_find_opts("sandbox"), optarg
, 1);
3814 case QEMU_OPTION_add_fd
:
3816 opts
= qemu_opts_parse(qemu_find_opts("add-fd"), optarg
, 0);
3821 error_report("File descriptor passing is disabled on this "
3826 case QEMU_OPTION_object
:
3827 opts
= qemu_opts_parse(qemu_find_opts("object"), optarg
, 1);
3832 case QEMU_OPTION_realtime
:
3833 opts
= qemu_opts_parse(qemu_find_opts("realtime"), optarg
, 0);
3837 enable_mlock
= qemu_opt_get_bool(opts
, "mlock", true);
3839 case QEMU_OPTION_msg
:
3840 opts
= qemu_opts_parse(qemu_find_opts("msg"), optarg
, 0);
3844 configure_msg(opts
);
3846 case QEMU_OPTION_dump_vmstate
:
3847 if (vmstate_dump_file
) {
3848 fprintf(stderr
, "qemu: only one '-dump-vmstate' "
3849 "option may be given\n");
3852 vmstate_dump_file
= fopen(optarg
, "w");
3853 if (vmstate_dump_file
== NULL
) {
3854 fprintf(stderr
, "open %s: %s\n", optarg
, strerror(errno
));
3859 os_parse_cmd_args(popt
->index
, optarg
);
3867 if (qemu_init_main_loop(&main_loop_err
)) {
3868 error_report("%s", error_get_pretty(main_loop_err
));
3872 if (qemu_opts_foreach(qemu_find_opts("sandbox"), parse_sandbox
, NULL
, 0)) {
3876 if (qemu_opts_foreach(qemu_find_opts("name"), parse_name
, NULL
, 1)) {
3881 if (qemu_opts_foreach(qemu_find_opts("add-fd"), parse_add_fd
, NULL
, 1)) {
3885 if (qemu_opts_foreach(qemu_find_opts("add-fd"), cleanup_add_fd
, NULL
, 1)) {
3890 if (machine_class
== NULL
) {
3891 fprintf(stderr
, "No machine specified, and there is no default.\n"
3892 "Use -machine help to list supported machines!\n");
3896 current_machine
= MACHINE(object_new(object_class_get_name(
3897 OBJECT_CLASS(machine_class
))));
3898 object_property_add_child(object_get_root(), "machine",
3899 OBJECT(current_machine
), &error_abort
);
3900 cpu_exec_init_all();
3902 if (machine_class
->hw_version
) {
3903 qemu_set_version(machine_class
->hw_version
);
3906 /* Init CPU def lists, based on config
3907 * - Must be called after all the qemu_read_config_file() calls
3908 * - Must be called before list_cpus()
3909 * - Must be called before machine->init()
3913 if (cpu_model
&& is_help_option(cpu_model
)) {
3914 list_cpus(stdout
, &fprintf
, cpu_model
);
3918 /* Open the logfile at this point, if necessary. We can't open the logfile
3919 * when encountering either of the logging options (-d or -D) because the
3920 * other one may be encountered later on the command line, changing the
3921 * location or level of logging.
3926 qemu_set_log_filename(log_file
);
3929 mask
= qemu_str_to_log_mask(log_mask
);
3931 qemu_print_log_usage(stdout
);
3937 if (!is_daemonized()) {
3938 if (!trace_init_backends(trace_events
, trace_file
)) {
3943 /* If no data_dir is specified then try to find it relative to the
3945 if (data_dir_idx
< ARRAY_SIZE(data_dir
)) {
3946 data_dir
[data_dir_idx
] = os_find_datadir();
3947 if (data_dir
[data_dir_idx
] != NULL
) {
3951 /* If all else fails use the install path specified when building. */
3952 if (data_dir_idx
< ARRAY_SIZE(data_dir
)) {
3953 data_dir
[data_dir_idx
++] = CONFIG_QEMU_DATADIR
;
3956 smp_parse(qemu_opts_find(qemu_find_opts("smp-opts"), NULL
));
3958 machine_class
->max_cpus
= machine_class
->max_cpus
?: 1; /* Default to UP */
3959 if (smp_cpus
> machine_class
->max_cpus
) {
3960 fprintf(stderr
, "Number of SMP cpus requested (%d), exceeds max cpus "
3961 "supported by machine `%s' (%d)\n", smp_cpus
,
3962 machine_class
->name
, machine_class
->max_cpus
);
3967 * Get the default machine options from the machine if it is not already
3968 * specified either by the configuration file or by the command line.
3970 if (machine_class
->default_machine_opts
) {
3971 qemu_opts_set_defaults(qemu_find_opts("machine"),
3972 machine_class
->default_machine_opts
, 0);
3975 qemu_opts_foreach(qemu_find_opts("device"), default_driver_check
, NULL
, 0);
3976 qemu_opts_foreach(qemu_find_opts("global"), default_driver_check
, NULL
, 0);
3978 if (!vga_model
&& !default_vga
) {
3979 vga_interface_type
= VGA_DEVICE
;
3981 if (!has_defaults
|| machine_class
->no_serial
) {
3984 if (!has_defaults
|| machine_class
->no_parallel
) {
3985 default_parallel
= 0;
3987 if (!has_defaults
|| !machine_class
->use_virtcon
) {
3988 default_virtcon
= 0;
3990 if (!has_defaults
|| !machine_class
->use_sclp
) {
3993 if (!has_defaults
|| machine_class
->no_floppy
) {
3996 if (!has_defaults
|| machine_class
->no_cdrom
) {
3999 if (!has_defaults
|| machine_class
->no_sdcard
) {
4002 if (!has_defaults
) {
4003 default_monitor
= 0;
4008 if (is_daemonized()) {
4009 /* According to documentation and historically, -nographic redirects
4010 * serial port, parallel port and monitor to stdio, which does not work
4011 * with -daemonize. We can redirect these to null instead, but since
4012 * -nographic is legacy, let's just error out.
4013 * We disallow -nographic only if all other ports are not redirected
4014 * explicitly, to not break existing legacy setups which uses
4015 * -nographic _and_ redirects all ports explicitly - this is valid
4016 * usage, -nographic is just a no-op in this case.
4018 if (display_type
== DT_NOGRAPHIC
4019 && (default_parallel
|| default_serial
4020 || default_monitor
|| default_virtcon
)) {
4021 fprintf(stderr
, "-nographic can not be used with -daemonize\n");
4024 #ifdef CONFIG_CURSES
4025 if (display_type
== DT_CURSES
) {
4026 fprintf(stderr
, "curses display can not be used with -daemonize\n");
4032 if (display_type
== DT_NOGRAPHIC
) {
4033 if (default_parallel
)
4034 add_device_config(DEV_PARALLEL
, "null");
4035 if (default_serial
&& default_monitor
) {
4036 add_device_config(DEV_SERIAL
, "mon:stdio");
4037 } else if (default_virtcon
&& default_monitor
) {
4038 add_device_config(DEV_VIRTCON
, "mon:stdio");
4039 } else if (default_sclp
&& default_monitor
) {
4040 add_device_config(DEV_SCLP
, "mon:stdio");
4043 add_device_config(DEV_SERIAL
, "stdio");
4044 if (default_virtcon
)
4045 add_device_config(DEV_VIRTCON
, "stdio");
4047 add_device_config(DEV_SCLP
, "stdio");
4049 if (default_monitor
)
4050 monitor_parse("stdio", "readline", false);
4054 add_device_config(DEV_SERIAL
, "vc:80Cx24C");
4055 if (default_parallel
)
4056 add_device_config(DEV_PARALLEL
, "vc:80Cx24C");
4057 if (default_monitor
)
4058 monitor_parse("vc:80Cx24C", "readline", false);
4059 if (default_virtcon
)
4060 add_device_config(DEV_VIRTCON
, "vc:80Cx24C");
4062 add_device_config(DEV_SCLP
, "vc:80Cx24C");
4066 if (display_type
== DT_DEFAULT
&& !display_remote
) {
4067 #if defined(CONFIG_GTK)
4068 display_type
= DT_GTK
;
4069 #elif defined(CONFIG_SDL) || defined(CONFIG_COCOA)
4070 display_type
= DT_SDL
;
4071 #elif defined(CONFIG_VNC)
4072 vnc_display
= "localhost:0,to=99";
4075 display_type
= DT_NONE
;
4079 if ((no_frame
|| alt_grab
|| ctrl_grab
) && display_type
!= DT_SDL
) {
4080 fprintf(stderr
, "-no-frame, -alt-grab and -ctrl-grab are only valid "
4081 "for SDL, ignoring option\n");
4083 if (no_quit
&& (display_type
!= DT_GTK
&& display_type
!= DT_SDL
)) {
4084 fprintf(stderr
, "-no-quit is only valid for GTK and SDL, "
4085 "ignoring option\n");
4088 #if defined(CONFIG_GTK)
4089 if (display_type
== DT_GTK
) {
4090 early_gtk_display_init();
4096 if (qemu_opts_foreach(qemu_find_opts("chardev"), chardev_init_func
, NULL
, 1) != 0)
4098 #ifdef CONFIG_VIRTFS
4099 if (qemu_opts_foreach(qemu_find_opts("fsdev"), fsdev_init_func
, NULL
, 1) != 0) {
4104 if (pid_file
&& qemu_create_pidfile(pid_file
) != 0) {
4105 fprintf(stderr
, "Could not acquire pid file: %s\n", strerror(errno
));
4109 /* store value for the future use */
4110 qemu_opt_set_number(qemu_find_opts_singleton("memory"), "size", ram_size
);
4112 if (qemu_opts_foreach(qemu_find_opts("device"), device_help_func
, NULL
, 0)
4117 if (qemu_opts_foreach(qemu_find_opts("object"),
4118 object_create
, NULL
, 0) != 0) {
4122 machine_opts
= qemu_get_machine_opts();
4123 if (qemu_opt_foreach(machine_opts
, machine_set_property
, current_machine
,
4125 object_unref(OBJECT(current_machine
));
4129 configure_accelerator(current_machine
);
4132 Error
*local_err
= NULL
;
4133 qtest_init(qtest_chrdev
, qtest_log
, &local_err
);
4135 error_report("%s", error_get_pretty(local_err
));
4136 error_free(local_err
);
4141 machine_opts
= qemu_get_machine_opts();
4142 kernel_filename
= qemu_opt_get(machine_opts
, "kernel");
4143 initrd_filename
= qemu_opt_get(machine_opts
, "initrd");
4144 kernel_cmdline
= qemu_opt_get(machine_opts
, "append");
4145 bios_name
= qemu_opt_get(machine_opts
, "firmware");
4147 boot_order
= machine_class
->default_boot_order
;
4148 opts
= qemu_opts_find(qemu_find_opts("boot-opts"), NULL
);
4150 char *normal_boot_order
;
4151 const char *order
, *once
;
4153 order
= qemu_opt_get(opts
, "order");
4155 validate_bootdevices(order
);
4159 once
= qemu_opt_get(opts
, "once");
4161 validate_bootdevices(once
);
4162 normal_boot_order
= g_strdup(boot_order
);
4164 qemu_register_reset(restore_boot_order
, normal_boot_order
);
4167 boot_menu
= qemu_opt_get_bool(opts
, "menu", boot_menu
);
4168 boot_strict
= qemu_opt_get_bool(opts
, "strict", false);
4171 if (!kernel_cmdline
) {
4172 kernel_cmdline
= "";
4173 current_machine
->kernel_cmdline
= (char *)kernel_cmdline
;
4176 linux_boot
= (kernel_filename
!= NULL
);
4178 if (!linux_boot
&& *kernel_cmdline
!= '\0') {
4179 fprintf(stderr
, "-append only allowed with -kernel option\n");
4183 if (!linux_boot
&& initrd_filename
!= NULL
) {
4184 fprintf(stderr
, "-initrd only allowed with -kernel option\n");
4188 if (!linux_boot
&& qemu_opt_get(machine_opts
, "dtb")) {
4189 fprintf(stderr
, "-dtb only allowed with -kernel option\n");
4193 os_set_line_buffering();
4195 qemu_init_cpu_loop();
4196 qemu_mutex_lock_iothread();
4199 /* spice needs the timers to be initialized by this point */
4205 if (kvm_enabled() || xen_enabled()) {
4206 fprintf(stderr
, "-icount is not allowed with kvm or xen\n");
4209 configure_icount(icount_opts
, &error_abort
);
4210 qemu_opts_del(icount_opts
);
4213 /* clean up network at qemu process termination */
4214 atexit(&net_cleanup
);
4216 if (net_init_clients() < 0) {
4221 if (tpm_init() < 0) {
4226 /* init the bluetooth world */
4227 if (foreach_device_config(DEV_BT
, bt_parse
))
4230 if (!xen_enabled()) {
4231 /* On 32-bit hosts, QEMU is limited by virtual address space */
4232 if (ram_size
> (2047 << 20) && HOST_LONG_BITS
== 32) {
4233 fprintf(stderr
, "qemu: at most 2047 MB RAM can be simulated\n");
4241 /* If the currently selected machine wishes to override the units-per-bus
4242 * property of its default HBA interface type, do so now. */
4243 if (machine_class
->units_per_default_bus
) {
4244 override_max_devs(machine_class
->block_default_type
,
4245 machine_class
->units_per_default_bus
);
4248 /* open the virtual block devices */
4250 qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot
, NULL
, 0);
4251 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func
,
4252 &machine_class
->block_default_type
, 1) != 0) {
4256 default_drive(default_cdrom
, snapshot
, machine_class
->block_default_type
, 2,
4258 default_drive(default_floppy
, snapshot
, IF_FLOPPY
, 0, FD_OPTS
);
4259 default_drive(default_sdcard
, snapshot
, IF_SD
, 0, SD_OPTS
);
4261 if (qemu_opts_foreach(qemu_find_opts("numa"), numa_init_func
,
4268 if (qemu_opts_foreach(qemu_find_opts("mon"), mon_init_func
, NULL
, 1) != 0) {
4272 if (foreach_device_config(DEV_SERIAL
, serial_parse
) < 0)
4274 if (foreach_device_config(DEV_PARALLEL
, parallel_parse
) < 0)
4276 if (foreach_device_config(DEV_VIRTCON
, virtcon_parse
) < 0)
4278 if (foreach_device_config(DEV_SCLP
, sclp_parse
) < 0) {
4281 if (foreach_device_config(DEV_DEBUGCON
, debugcon_parse
) < 0)
4284 /* If no default VGA is requested, the default is "none". */
4286 if (machine_class
->default_display
) {
4287 vga_model
= machine_class
->default_display
;
4288 } else if (cirrus_vga_available()) {
4289 vga_model
= "cirrus";
4290 } else if (vga_available()) {
4295 select_vgahw(vga_model
);
4299 i
= select_watchdog(watchdog
);
4301 exit (i
== 1 ? 1 : 0);
4304 if (machine_class
->compat_props
) {
4305 qdev_prop_register_global_list(machine_class
->compat_props
);
4309 qdev_machine_init();
4311 current_machine
->ram_size
= ram_size
;
4312 current_machine
->maxram_size
= maxram_size
;
4313 current_machine
->ram_slots
= ram_slots
;
4314 current_machine
->boot_order
= boot_order
;
4315 current_machine
->cpu_model
= cpu_model
;
4317 machine_class
->init(current_machine
);
4323 cpu_synchronize_all_post_init();
4327 /* init USB devices */
4328 if (usb_enabled(false)) {
4329 if (foreach_device_config(DEV_USB
, usb_parse
) < 0)
4333 /* init generic devices */
4334 if (qemu_opts_foreach(qemu_find_opts("device"), device_init_func
, NULL
, 1) != 0)
4337 /* Did we create any drives that we failed to create a device for? */
4338 drive_check_orphaned();
4340 net_check_clients();
4342 ds
= init_displaystate();
4344 /* init local displays */
4345 switch (display_type
) {
4347 (void)ds
; /* avoid warning if no display is configured */
4349 #if defined(CONFIG_CURSES)
4351 curses_display_init(ds
, full_screen
);
4354 #if defined(CONFIG_SDL)
4356 sdl_display_init(ds
, full_screen
, no_frame
);
4358 #elif defined(CONFIG_COCOA)
4360 cocoa_display_init(ds
, full_screen
);
4363 #if defined(CONFIG_GTK)
4365 gtk_display_init(ds
, full_screen
, grab_on_hover
);
4372 /* must be after terminal init, SDL library changes signal handlers */
4373 os_setup_signal_handling();
4376 /* init remote displays */
4378 Error
*local_err
= NULL
;
4379 vnc_display_init(ds
);
4380 vnc_display_open(ds
, vnc_display
, &local_err
);
4381 if (local_err
!= NULL
) {
4382 error_report("Failed to start VNC server on `%s': %s",
4383 vnc_display
, error_get_pretty(local_err
));
4384 error_free(local_err
);
4388 if (show_vnc_port
) {
4389 printf("VNC server running on `%s'\n", vnc_display_local_addr(ds
));
4395 qemu_spice_display_init();
4399 if (foreach_device_config(DEV_GDB
, gdbserver_start
) < 0) {
4403 qdev_machine_creation_done();
4405 if (rom_load_all() != 0) {
4406 fprintf(stderr
, "rom loading failed\n");
4410 /* TODO: once all bus devices are qdevified, this should be done
4411 * when bus is created by qdev.c */
4412 qemu_register_reset(qbus_reset_all_fn
, sysbus_get_default());
4413 qemu_run_machine_init_done_notifiers();
4415 /* Done notifiers can load ROMs */
4418 qemu_system_reset(VMRESET_SILENT
);
4420 if (load_vmstate(loadvm
) < 0) {
4425 qdev_prop_check_globals();
4426 if (vmstate_dump_file
) {
4428 dump_vmstate_json_to_file(vmstate_dump_file
);
4433 Error
*local_err
= NULL
;
4434 qemu_start_incoming_migration(incoming
, &local_err
);
4436 error_report("-incoming %s: %s", incoming
,
4437 error_get_pretty(local_err
));
4438 error_free(local_err
);
4441 } else if (autostart
) {
4447 if (is_daemonized()) {
4448 if (!trace_init_backends(trace_events
, trace_file
)) {