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
25 #include "qemu/osdep.h"
26 #include "qemu/help-texts.h"
27 #include "qemu/datadir.h"
28 #include "qemu/units.h"
29 #include "exec/cpu-common.h"
30 #include "exec/page-vary.h"
31 #include "hw/qdev-properties.h"
32 #include "qapi/compat-policy.h"
33 #include "qapi/error.h"
34 #include "qapi/qmp/qdict.h"
35 #include "qapi/qmp/qstring.h"
36 #include "qapi/qmp/qjson.h"
37 #include "qemu-version.h"
38 #include "qemu/cutils.h"
39 #include "qemu/help_option.h"
40 #include "qemu/hw-version.h"
41 #include "qemu/uuid.h"
42 #include "sysemu/reset.h"
43 #include "sysemu/runstate.h"
44 #include "sysemu/runstate-action.h"
45 #include "sysemu/seccomp.h"
46 #include "sysemu/tcg.h"
47 #include "sysemu/xen.h"
49 #include "qemu/error-report.h"
50 #include "qemu/sockets.h"
51 #include "qemu/accel.h"
53 #include "hw/isa/isa.h"
54 #include "hw/scsi/scsi.h"
55 #include "hw/display/vga.h"
56 #include "hw/firmware/smbios.h"
57 #include "hw/acpi/acpi.h"
58 #include "hw/xen/xen.h"
59 #include "hw/loader.h"
60 #include "monitor/qdev.h"
62 #include "net/slirp.h"
63 #include "monitor/monitor.h"
64 #include "ui/console.h"
66 #include "sysemu/sysemu.h"
67 #include "sysemu/numa.h"
68 #include "sysemu/hostmem.h"
69 #include "exec/gdbstub.h"
70 #include "qemu/timer.h"
71 #include "chardev/char.h"
72 #include "qemu/bitmap.h"
74 #include "sysemu/blockdev.h"
75 #include "hw/block/block.h"
76 #include "hw/i386/x86.h"
77 #include "hw/i386/pc.h"
78 #include "migration/misc.h"
79 #include "migration/snapshot.h"
80 #include "sysemu/tpm.h"
81 #include "sysemu/dma.h"
82 #include "hw/audio/soundhw.h"
83 #include "audio/audio.h"
84 #include "sysemu/cpus.h"
85 #include "sysemu/cpu-timers.h"
86 #include "migration/colo.h"
87 #include "migration/postcopy-ram.h"
88 #include "sysemu/kvm.h"
89 #include "sysemu/hax.h"
90 #include "qapi/qobject-input-visitor.h"
91 #include "qemu/option.h"
92 #include "qemu/config-file.h"
93 #include "qemu/qemu-options.h"
94 #include "qemu/main-loop.h"
96 #include "fsdev/qemu-fsdev.h"
98 #include "sysemu/qtest.h"
100 #include "disas/disas.h"
103 #include "trace/control.h"
104 #include "qemu/plugin.h"
105 #include "qemu/queue.h"
106 #include "sysemu/arch_init.h"
107 #include "exec/confidential-guest-support.h"
109 #include "ui/qemu-spice.h"
110 #include "qapi/string-input-visitor.h"
111 #include "qapi/opts-visitor.h"
112 #include "qapi/clone-visitor.h"
113 #include "qom/object_interfaces.h"
114 #include "semihosting/semihost.h"
115 #include "crypto/init.h"
116 #include "sysemu/replay.h"
117 #include "qapi/qapi-events-run-state.h"
118 #include "qapi/qapi-types-audio.h"
119 #include "qapi/qapi-visit-audio.h"
120 #include "qapi/qapi-visit-block-core.h"
121 #include "qapi/qapi-visit-compat.h"
122 #include "qapi/qapi-visit-machine.h"
123 #include "qapi/qapi-visit-ui.h"
124 #include "qapi/qapi-commands-block-core.h"
125 #include "qapi/qapi-commands-migration.h"
126 #include "qapi/qapi-commands-misc.h"
127 #include "qapi/qapi-visit-qom.h"
128 #include "qapi/qapi-commands-ui.h"
129 #include "qapi/qmp/qdict.h"
130 #include "block/qdict.h"
131 #include "qapi/qmp/qerror.h"
132 #include "sysemu/iothread.h"
133 #include "qemu/guest-random.h"
134 #include "qemu/keyval.h"
136 #include "config-host.h"
138 #define MAX_VIRTIO_CONSOLES 1
140 typedef struct BlockdevOptionsQueueEntry
{
141 BlockdevOptions
*bdo
;
143 QSIMPLEQ_ENTRY(BlockdevOptionsQueueEntry
) entry
;
144 } BlockdevOptionsQueueEntry
;
146 typedef QSIMPLEQ_HEAD(, BlockdevOptionsQueueEntry
) BlockdevOptionsQueue
;
148 typedef struct ObjectOption
{
150 QTAILQ_ENTRY(ObjectOption
) next
;
153 typedef struct DeviceOption
{
156 QTAILQ_ENTRY(DeviceOption
) next
;
159 static const char *cpu_option
;
160 static const char *mem_path
;
161 static const char *incoming
;
162 static const char *loadvm
;
163 static const char *accelerators
;
164 static bool have_custom_ram_size
;
165 static const char *ram_memdev_id
;
166 static QDict
*machine_opts_dict
;
167 static QTAILQ_HEAD(, ObjectOption
) object_opts
= QTAILQ_HEAD_INITIALIZER(object_opts
);
168 static QTAILQ_HEAD(, DeviceOption
) device_opts
= QTAILQ_HEAD_INITIALIZER(device_opts
);
169 static int display_remote
;
171 static bool preconfig_requested
;
172 static QemuPluginList plugin_list
= QTAILQ_HEAD_INITIALIZER(plugin_list
);
173 static BlockdevOptionsQueue bdo_queue
= QSIMPLEQ_HEAD_INITIALIZER(bdo_queue
);
174 static bool nographic
= false;
175 static int mem_prealloc
; /* force preallocation of physical target memory */
176 static const char *vga_model
= NULL
;
177 static DisplayOptions dpy
;
178 static int num_serial_hds
;
179 static Chardev
**serial_hds
;
180 static const char *log_mask
;
181 static const char *log_file
;
182 static bool list_data_dirs
;
183 static const char *qtest_chrdev
;
184 static const char *qtest_log
;
186 static int has_defaults
= 1;
187 static int default_serial
= 1;
188 static int default_parallel
= 1;
189 static int default_monitor
= 1;
190 static int default_floppy
= 1;
191 static int default_cdrom
= 1;
192 static int default_sdcard
= 1;
193 static int default_vga
= 1;
194 static int default_net
= 1;
200 { .driver
= "isa-serial", .flag
= &default_serial
},
201 { .driver
= "isa-parallel", .flag
= &default_parallel
},
202 { .driver
= "isa-fdc", .flag
= &default_floppy
},
203 { .driver
= "floppy", .flag
= &default_floppy
},
204 { .driver
= "ide-cd", .flag
= &default_cdrom
},
205 { .driver
= "ide-hd", .flag
= &default_cdrom
},
206 { .driver
= "scsi-cd", .flag
= &default_cdrom
},
207 { .driver
= "scsi-hd", .flag
= &default_cdrom
},
208 { .driver
= "VGA", .flag
= &default_vga
},
209 { .driver
= "isa-vga", .flag
= &default_vga
},
210 { .driver
= "cirrus-vga", .flag
= &default_vga
},
211 { .driver
= "isa-cirrus-vga", .flag
= &default_vga
},
212 { .driver
= "vmware-svga", .flag
= &default_vga
},
213 { .driver
= "qxl-vga", .flag
= &default_vga
},
214 { .driver
= "virtio-vga", .flag
= &default_vga
},
215 { .driver
= "ati-vga", .flag
= &default_vga
},
216 { .driver
= "vhost-user-vga", .flag
= &default_vga
},
217 { .driver
= "virtio-vga-gl", .flag
= &default_vga
},
220 static QemuOptsList qemu_rtc_opts
= {
222 .head
= QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts
.head
),
227 .type
= QEMU_OPT_STRING
,
230 .type
= QEMU_OPT_STRING
,
233 .type
= QEMU_OPT_STRING
,
235 { /* end of list */ }
239 static QemuOptsList qemu_option_rom_opts
= {
240 .name
= "option-rom",
241 .implied_opt_name
= "romfile",
242 .head
= QTAILQ_HEAD_INITIALIZER(qemu_option_rom_opts
.head
),
246 .type
= QEMU_OPT_NUMBER
,
249 .type
= QEMU_OPT_STRING
,
251 { /* end of list */ }
255 static QemuOptsList qemu_accel_opts
= {
257 .implied_opt_name
= "accel",
258 .head
= QTAILQ_HEAD_INITIALIZER(qemu_accel_opts
.head
),
261 * no elements => accept any
262 * sanity checking will happen later
263 * when setting accelerator properties
269 static QemuOptsList qemu_boot_opts
= {
271 .implied_opt_name
= "order",
273 .head
= QTAILQ_HEAD_INITIALIZER(qemu_boot_opts
.head
),
277 .type
= QEMU_OPT_STRING
,
280 .type
= QEMU_OPT_STRING
,
283 .type
= QEMU_OPT_BOOL
,
286 .type
= QEMU_OPT_STRING
,
288 .name
= "splash-time",
289 .type
= QEMU_OPT_NUMBER
,
291 .name
= "reboot-timeout",
292 .type
= QEMU_OPT_NUMBER
,
295 .type
= QEMU_OPT_BOOL
,
301 static QemuOptsList qemu_add_fd_opts
= {
303 .head
= QTAILQ_HEAD_INITIALIZER(qemu_add_fd_opts
.head
),
307 .type
= QEMU_OPT_NUMBER
,
308 .help
= "file descriptor of which a duplicate is added to fd set",
311 .type
= QEMU_OPT_NUMBER
,
312 .help
= "ID of the fd set to add fd to",
315 .type
= QEMU_OPT_STRING
,
316 .help
= "free-form string used to describe fd",
318 { /* end of list */ }
322 static QemuOptsList qemu_object_opts
= {
324 .implied_opt_name
= "qom-type",
325 .head
= QTAILQ_HEAD_INITIALIZER(qemu_object_opts
.head
),
331 static QemuOptsList qemu_tpmdev_opts
= {
333 .implied_opt_name
= "type",
334 .head
= QTAILQ_HEAD_INITIALIZER(qemu_tpmdev_opts
.head
),
336 /* options are defined in the TPM backends */
337 { /* end of list */ }
341 static QemuOptsList qemu_overcommit_opts
= {
342 .name
= "overcommit",
343 .head
= QTAILQ_HEAD_INITIALIZER(qemu_overcommit_opts
.head
),
347 .type
= QEMU_OPT_BOOL
,
351 .type
= QEMU_OPT_BOOL
,
353 { /* end of list */ }
357 static QemuOptsList qemu_msg_opts
= {
359 .head
= QTAILQ_HEAD_INITIALIZER(qemu_msg_opts
.head
),
363 .type
= QEMU_OPT_BOOL
,
366 .name
= "guest-name",
367 .type
= QEMU_OPT_BOOL
,
368 .help
= "Prepends guest name for error messages but only if "
369 "-name guest is set otherwise option is ignored\n",
371 { /* end of list */ }
375 static QemuOptsList qemu_name_opts
= {
377 .implied_opt_name
= "guest",
379 .head
= QTAILQ_HEAD_INITIALIZER(qemu_name_opts
.head
),
383 .type
= QEMU_OPT_STRING
,
384 .help
= "Sets the name of the guest.\n"
385 "This name will be displayed in the SDL window caption.\n"
386 "The name will also be used for the VNC server",
389 .type
= QEMU_OPT_STRING
,
390 .help
= "Sets the name of the QEMU process, as shown in top etc",
392 .name
= "debug-threads",
393 .type
= QEMU_OPT_BOOL
,
394 .help
= "When enabled, name the individual threads; defaults off.\n"
395 "NOTE: The thread names are for debugging and not a\n"
398 { /* End of list */ }
402 static QemuOptsList qemu_mem_opts
= {
404 .implied_opt_name
= "size",
405 .head
= QTAILQ_HEAD_INITIALIZER(qemu_mem_opts
.head
),
410 .type
= QEMU_OPT_SIZE
,
414 .type
= QEMU_OPT_NUMBER
,
418 .type
= QEMU_OPT_SIZE
,
420 { /* end of list */ }
424 static QemuOptsList qemu_icount_opts
= {
426 .implied_opt_name
= "shift",
428 .head
= QTAILQ_HEAD_INITIALIZER(qemu_icount_opts
.head
),
432 .type
= QEMU_OPT_STRING
,
435 .type
= QEMU_OPT_BOOL
,
438 .type
= QEMU_OPT_BOOL
,
441 .type
= QEMU_OPT_STRING
,
444 .type
= QEMU_OPT_STRING
,
446 .name
= "rrsnapshot",
447 .type
= QEMU_OPT_STRING
,
449 { /* end of list */ }
453 static QemuOptsList qemu_fw_cfg_opts
= {
455 .implied_opt_name
= "name",
456 .head
= QTAILQ_HEAD_INITIALIZER(qemu_fw_cfg_opts
.head
),
460 .type
= QEMU_OPT_STRING
,
461 .help
= "Sets the fw_cfg name of the blob to be inserted",
464 .type
= QEMU_OPT_STRING
,
465 .help
= "Sets the name of the file from which "
466 "the fw_cfg blob will be loaded",
469 .type
= QEMU_OPT_STRING
,
470 .help
= "Sets content of the blob to be inserted from a string",
473 .type
= QEMU_OPT_STRING
,
474 .help
= "Sets id of the object generating the fw_cfg blob "
477 { /* end of list */ }
481 static QemuOptsList qemu_action_opts
= {
484 .head
= QTAILQ_HEAD_INITIALIZER(qemu_action_opts
.head
),
488 .type
= QEMU_OPT_STRING
,
491 .type
= QEMU_OPT_STRING
,
494 .type
= QEMU_OPT_STRING
,
497 .type
= QEMU_OPT_STRING
,
499 { /* end of list */ }
503 const char *qemu_get_vm_name(void)
508 static void default_driver_disable(const char *driver
)
516 for (i
= 0; i
< ARRAY_SIZE(default_list
); i
++) {
517 if (strcmp(default_list
[i
].driver
, driver
) != 0)
519 *(default_list
[i
].flag
) = 0;
523 static int default_driver_check(void *opaque
, QemuOpts
*opts
, Error
**errp
)
525 const char *driver
= qemu_opt_get(opts
, "driver");
527 default_driver_disable(driver
);
531 static void default_driver_check_json(void)
535 QTAILQ_FOREACH(opt
, &device_opts
, next
) {
536 const char *driver
= qdict_get_try_str(opt
->opts
, "driver");
537 default_driver_disable(driver
);
541 static int parse_name(void *opaque
, QemuOpts
*opts
, Error
**errp
)
543 const char *proc_name
;
545 if (qemu_opt_get(opts
, "debug-threads")) {
546 qemu_thread_naming(qemu_opt_get_bool(opts
, "debug-threads", false));
548 qemu_name
= qemu_opt_get(opts
, "guest");
550 proc_name
= qemu_opt_get(opts
, "process");
552 os_set_proc_name(proc_name
);
558 bool defaults_enabled(void)
564 static int parse_add_fd(void *opaque
, QemuOpts
*opts
, Error
**errp
)
566 int fd
, dupfd
, flags
;
568 const char *fd_opaque
= NULL
;
571 fd
= qemu_opt_get_number(opts
, "fd", -1);
572 fdset_id
= qemu_opt_get_number(opts
, "set", -1);
573 fd_opaque
= qemu_opt_get(opts
, "opaque");
576 error_setg(errp
, "fd option is required and must be non-negative");
580 if (fd
<= STDERR_FILENO
) {
581 error_setg(errp
, "fd cannot be a standard I/O stream");
586 * All fds inherited across exec() necessarily have FD_CLOEXEC
587 * clear, while qemu sets FD_CLOEXEC on all other fds used internally.
589 flags
= fcntl(fd
, F_GETFD
);
590 if (flags
== -1 || (flags
& FD_CLOEXEC
)) {
591 error_setg(errp
, "fd is not valid or already in use");
596 error_setg(errp
, "set option is required and must be non-negative");
600 #ifdef F_DUPFD_CLOEXEC
601 dupfd
= fcntl(fd
, F_DUPFD_CLOEXEC
, 0);
605 qemu_set_cloexec(dupfd
);
609 error_setg(errp
, "error duplicating fd: %s", strerror(errno
));
613 /* add the duplicate fd, and optionally the opaque string, to the fd set */
614 fdinfo
= monitor_fdset_add_fd(dupfd
, true, fdset_id
, !!fd_opaque
, fd_opaque
,
621 static int cleanup_add_fd(void *opaque
, QemuOpts
*opts
, Error
**errp
)
625 fd
= qemu_opt_get_number(opts
, "fd", -1);
632 /***********************************************************/
633 /* QEMU Block devices */
635 #define HD_OPTS "media=disk"
636 #define CDROM_OPTS "media=cdrom"
638 #define PFLASH_OPTS ""
642 static int drive_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
644 BlockInterfaceType
*block_default_type
= opaque
;
646 return drive_new(opts
, *block_default_type
, errp
) == NULL
;
649 static int drive_enable_snapshot(void *opaque
, QemuOpts
*opts
, Error
**errp
)
651 if (qemu_opt_get(opts
, "snapshot") == NULL
) {
652 qemu_opt_set(opts
, "snapshot", "on", &error_abort
);
657 static void default_drive(int enable
, int snapshot
, BlockInterfaceType type
,
658 int index
, const char *optstr
)
663 if (!enable
|| drive_get_by_index(type
, index
)) {
667 opts
= drive_add(type
, index
, NULL
, optstr
);
669 drive_enable_snapshot(NULL
, opts
, NULL
);
672 dinfo
= drive_new(opts
, type
, &error_abort
);
673 dinfo
->is_default
= true;
677 static void configure_blockdev(BlockdevOptionsQueue
*bdo_queue
,
678 MachineClass
*machine_class
, int snapshot
)
681 * If the currently selected machine wishes to override the
682 * units-per-bus property of its default HBA interface type, do so
685 if (machine_class
->units_per_default_bus
) {
686 override_max_devs(machine_class
->block_default_type
,
687 machine_class
->units_per_default_bus
);
690 /* open the virtual block devices */
691 while (!QSIMPLEQ_EMPTY(bdo_queue
)) {
692 BlockdevOptionsQueueEntry
*bdo
= QSIMPLEQ_FIRST(bdo_queue
);
694 QSIMPLEQ_REMOVE_HEAD(bdo_queue
, entry
);
695 loc_push_restore(&bdo
->loc
);
696 qmp_blockdev_add(bdo
->bdo
, &error_fatal
);
698 qapi_free_BlockdevOptions(bdo
->bdo
);
702 qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot
,
705 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func
,
706 &machine_class
->block_default_type
, &error_fatal
)) {
707 /* We printed help */
711 default_drive(default_cdrom
, snapshot
, machine_class
->block_default_type
, 2,
713 default_drive(default_floppy
, snapshot
, IF_FLOPPY
, 0, FD_OPTS
);
714 default_drive(default_sdcard
, snapshot
, IF_SD
, 0, SD_OPTS
);
718 static QemuOptsList qemu_smp_opts
= {
720 .implied_opt_name
= "cpus",
722 .head
= QTAILQ_HEAD_INITIALIZER(qemu_smp_opts
.head
),
726 .type
= QEMU_OPT_NUMBER
,
729 .type
= QEMU_OPT_NUMBER
,
732 .type
= QEMU_OPT_NUMBER
,
735 .type
= QEMU_OPT_NUMBER
,
738 .type
= QEMU_OPT_NUMBER
,
741 .type
= QEMU_OPT_NUMBER
,
744 .type
= QEMU_OPT_NUMBER
,
750 static void realtime_init(void)
753 if (os_mlock() < 0) {
754 error_report("locking memory failed");
761 static void configure_msg(QemuOpts
*opts
)
763 message_with_timestamp
= qemu_opt_get_bool(opts
, "timestamp", false);
764 error_with_guestname
= qemu_opt_get_bool(opts
, "guest-name", false);
768 /***********************************************************/
771 static int usb_device_add(const char *devname
)
773 USBDevice
*dev
= NULL
;
775 if (!machine_usb(current_machine
)) {
779 dev
= usbdevice_create(devname
);
786 static int usb_parse(const char *cmdline
)
789 r
= usb_device_add(cmdline
);
791 error_report("could not add USB device '%s'", cmdline
);
796 /***********************************************************/
797 /* machine registration */
799 static MachineClass
*find_machine(const char *name
, GSList
*machines
)
803 for (el
= machines
; el
; el
= el
->next
) {
804 MachineClass
*mc
= el
->data
;
806 if (!strcmp(mc
->name
, name
) || !g_strcmp0(mc
->alias
, name
)) {
814 static MachineClass
*find_default_machine(GSList
*machines
)
817 MachineClass
*default_machineclass
= NULL
;
819 for (el
= machines
; el
; el
= el
->next
) {
820 MachineClass
*mc
= el
->data
;
822 if (mc
->is_default
) {
823 assert(default_machineclass
== NULL
&& "Multiple default machines");
824 default_machineclass
= mc
;
828 return default_machineclass
;
831 static void version(void)
833 printf("QEMU emulator version " QEMU_FULL_VERSION
"\n"
834 QEMU_COPYRIGHT
"\n");
837 static void help(int exitcode
)
840 printf("usage: %s [options] [disk_image]\n\n"
841 "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
844 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
845 if ((arch_mask) & arch_type) \
846 fputs(opt_help, stdout);
848 #define ARCHHEADING(text, arch_mask) \
849 if ((arch_mask) & arch_type) \
850 puts(stringify(text));
852 #define DEFHEADING(text) ARCHHEADING(text, QEMU_ARCH_ALL)
854 #include "qemu-options.def"
856 printf("\nDuring emulation, the following keys are useful:\n"
857 "ctrl-alt-f toggle full screen\n"
858 "ctrl-alt-n switch to virtual console 'n'\n"
859 "ctrl-alt toggle mouse and keyboard grab\n"
861 "When using -nographic, press 'ctrl-a h' to get some help.\n"
863 QEMU_HELP_BOTTOM
"\n");
868 #define HAS_ARG 0x0001
870 typedef struct QEMUOption
{
877 static const QEMUOption qemu_options
[] = {
878 { "h", 0, QEMU_OPTION_h
, QEMU_ARCH_ALL
},
880 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
881 { option, opt_arg, opt_enum, arch_mask },
882 #define DEFHEADING(text)
883 #define ARCHHEADING(text, arch_mask)
885 #include "qemu-options.def"
889 typedef struct VGAInterfaceInfo
{
890 const char *opt_name
; /* option name */
891 const char *name
; /* human-readable name */
892 /* Class names indicating that support is available.
893 * If no class is specified, the interface is always available */
894 const char *class_names
[2];
897 static const VGAInterfaceInfo vga_interfaces
[VGA_TYPE_MAX
] = {
900 .name
= "no graphic card",
904 .name
= "standard VGA",
905 .class_names
= { "VGA", "isa-vga" },
908 .opt_name
= "cirrus",
909 .name
= "Cirrus VGA",
910 .class_names
= { "cirrus-vga", "isa-cirrus-vga" },
913 .opt_name
= "vmware",
914 .name
= "VMWare SVGA",
915 .class_names
= { "vmware-svga" },
918 .opt_name
= "virtio",
919 .name
= "Virtio VGA",
920 .class_names
= { "virtio-vga" },
925 .class_names
= { "qxl-vga" },
929 .name
= "TCX framebuffer",
930 .class_names
= { "sun-tcx" },
934 .name
= "CG3 framebuffer",
935 .class_names
= { "cgthree" },
937 #ifdef CONFIG_XEN_BACKEND
940 .name
= "Xen paravirtualized framebuffer",
945 static bool vga_interface_available(VGAInterfaceType t
)
947 const VGAInterfaceInfo
*ti
= &vga_interfaces
[t
];
949 assert(t
< VGA_TYPE_MAX
);
950 return !ti
->class_names
[0] ||
951 module_object_class_by_name(ti
->class_names
[0]) ||
952 module_object_class_by_name(ti
->class_names
[1]);
956 get_default_vga_model(const MachineClass
*machine_class
)
958 if (machine_class
->default_display
) {
959 return machine_class
->default_display
;
960 } else if (vga_interface_available(VGA_CIRRUS
)) {
962 } else if (vga_interface_available(VGA_STD
)) {
969 static void select_vgahw(const MachineClass
*machine_class
, const char *p
)
974 if (g_str_equal(p
, "help")) {
975 const char *def
= get_default_vga_model(machine_class
);
977 for (t
= 0; t
< VGA_TYPE_MAX
; t
++) {
978 const VGAInterfaceInfo
*ti
= &vga_interfaces
[t
];
980 if (vga_interface_available(t
) && ti
->opt_name
) {
981 printf("%-20s %s%s\n", ti
->opt_name
, ti
->name
?: "",
982 (def
&& g_str_equal(ti
->opt_name
, def
)) ?
989 assert(vga_interface_type
== VGA_NONE
);
990 for (t
= 0; t
< VGA_TYPE_MAX
; t
++) {
991 const VGAInterfaceInfo
*ti
= &vga_interfaces
[t
];
992 if (ti
->opt_name
&& strstart(p
, ti
->opt_name
, &opts
)) {
993 if (!vga_interface_available(t
)) {
994 error_report("%s not available", ti
->name
);
997 vga_interface_type
= t
;
1001 if (t
== VGA_TYPE_MAX
) {
1003 error_report("unknown vga type: %s", p
);
1007 const char *nextopt
;
1009 if (strstart(opts
, ",retrace=", &nextopt
)) {
1011 if (strstart(opts
, "dumb", &nextopt
))
1012 vga_retrace_method
= VGA_RETRACE_DUMB
;
1013 else if (strstart(opts
, "precise", &nextopt
))
1014 vga_retrace_method
= VGA_RETRACE_PRECISE
;
1015 else goto invalid_vga
;
1016 } else goto invalid_vga
;
1021 static void parse_display_qapi(const char *optarg
)
1023 DisplayOptions
*opts
;
1026 v
= qobject_input_visitor_new_str(optarg
, "type", &error_fatal
);
1028 visit_type_DisplayOptions(v
, NULL
, &opts
, &error_fatal
);
1029 QAPI_CLONE_MEMBERS(DisplayOptions
, &dpy
, opts
);
1031 qapi_free_DisplayOptions(opts
);
1035 DisplayOptions
*qmp_query_display_options(Error
**errp
)
1037 return QAPI_CLONE(DisplayOptions
, &dpy
);
1040 static void parse_display(const char *p
)
1044 if (is_help_option(p
)) {
1045 qemu_display_help();
1049 if (strstart(p
, "vnc", &opts
)) {
1051 * vnc isn't a (local) DisplayType but a protocol for remote
1055 vnc_parse(opts
+ 1);
1057 error_report("VNC requires a display argument vnc=<display>");
1061 parse_display_qapi(p
);
1065 static inline bool nonempty_str(const char *str
)
1070 static int parse_fw_cfg(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1074 const char *name
, *file
, *str
, *gen_id
;
1075 FWCfgState
*fw_cfg
= (FWCfgState
*) opaque
;
1077 if (fw_cfg
== NULL
) {
1078 error_setg(errp
, "fw_cfg device not available");
1081 name
= qemu_opt_get(opts
, "name");
1082 file
= qemu_opt_get(opts
, "file");
1083 str
= qemu_opt_get(opts
, "string");
1084 gen_id
= qemu_opt_get(opts
, "gen_id");
1086 /* we need the name, and exactly one of: file, content string, gen_id */
1087 if (!nonempty_str(name
) ||
1088 nonempty_str(file
) + nonempty_str(str
) + nonempty_str(gen_id
) != 1) {
1089 error_setg(errp
, "name, plus exactly one of file,"
1090 " string and gen_id, are needed");
1093 if (strlen(name
) > FW_CFG_MAX_FILE_PATH
- 1) {
1094 error_setg(errp
, "name too long (max. %d char)",
1095 FW_CFG_MAX_FILE_PATH
- 1);
1098 if (nonempty_str(gen_id
)) {
1100 * In this particular case where the content is populated
1101 * internally, the "etc/" namespace protection is relaxed,
1102 * so do not emit a warning.
1104 } else if (strncmp(name
, "opt/", 4) != 0) {
1105 warn_report("externally provided fw_cfg item names "
1106 "should be prefixed with \"opt/\"");
1108 if (nonempty_str(str
)) {
1109 size
= strlen(str
); /* NUL terminator NOT included in fw_cfg blob */
1110 buf
= g_memdup(str
, size
);
1111 } else if (nonempty_str(gen_id
)) {
1112 if (!fw_cfg_add_from_generator(fw_cfg
, name
, gen_id
, errp
)) {
1118 if (!g_file_get_contents(file
, &buf
, &size
, &err
)) {
1119 error_setg(errp
, "can't load %s: %s", file
, err
->message
);
1124 /* For legacy, keep user files in a specific global order. */
1125 fw_cfg_set_order_override(fw_cfg
, FW_CFG_ORDER_OVERRIDE_USER
);
1126 fw_cfg_add_file(fw_cfg
, name
, buf
, size
);
1127 fw_cfg_reset_order_override(fw_cfg
);
1131 static int device_help_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1133 return qdev_device_help(opts
);
1136 static int device_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1140 dev
= qdev_device_add(opts
, errp
);
1141 if (!dev
&& *errp
) {
1142 error_report_err(*errp
);
1145 object_unref(OBJECT(dev
));
1150 static int chardev_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1152 Error
*local_err
= NULL
;
1154 if (!qemu_chr_new_from_opts(opts
, NULL
, &local_err
)) {
1156 error_propagate(errp
, local_err
);
1164 #ifdef CONFIG_VIRTFS
1165 static int fsdev_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1167 return qemu_fsdev_add(opts
, errp
);
1171 static int mon_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1173 return monitor_init_opts(opts
, errp
);
1176 static void monitor_parse(const char *optarg
, const char *mode
, bool pretty
)
1178 static int monitor_device_index
= 0;
1183 if (strstart(optarg
, "chardev:", &p
)) {
1184 snprintf(label
, sizeof(label
), "%s", p
);
1186 snprintf(label
, sizeof(label
), "compat_monitor%d",
1187 monitor_device_index
);
1188 opts
= qemu_chr_parse_compat(label
, optarg
, true);
1190 error_report("parse error: %s", optarg
);
1195 opts
= qemu_opts_create(qemu_find_opts("mon"), label
, 1, &error_fatal
);
1196 qemu_opt_set(opts
, "mode", mode
, &error_abort
);
1197 qemu_opt_set(opts
, "chardev", label
, &error_abort
);
1198 if (!strcmp(mode
, "control")) {
1199 qemu_opt_set_bool(opts
, "pretty", pretty
, &error_abort
);
1201 assert(pretty
== false);
1203 monitor_device_index
++;
1206 struct device_config
{
1208 DEV_USB
, /* -usbdevice */
1209 DEV_SERIAL
, /* -serial */
1210 DEV_PARALLEL
, /* -parallel */
1211 DEV_DEBUGCON
, /* -debugcon */
1212 DEV_GDB
, /* -gdb, -s */
1213 DEV_SCLP
, /* s390 sclp */
1215 const char *cmdline
;
1217 QTAILQ_ENTRY(device_config
) next
;
1220 static QTAILQ_HEAD(, device_config
) device_configs
=
1221 QTAILQ_HEAD_INITIALIZER(device_configs
);
1223 static void add_device_config(int type
, const char *cmdline
)
1225 struct device_config
*conf
;
1227 conf
= g_malloc0(sizeof(*conf
));
1229 conf
->cmdline
= cmdline
;
1230 loc_save(&conf
->loc
);
1231 QTAILQ_INSERT_TAIL(&device_configs
, conf
, next
);
1234 static int foreach_device_config(int type
, int (*func
)(const char *cmdline
))
1236 struct device_config
*conf
;
1239 QTAILQ_FOREACH(conf
, &device_configs
, next
) {
1240 if (conf
->type
!= type
)
1242 loc_push_restore(&conf
->loc
);
1243 rc
= func(conf
->cmdline
);
1244 loc_pop(&conf
->loc
);
1252 static void qemu_disable_default_devices(void)
1254 MachineClass
*machine_class
= MACHINE_GET_CLASS(current_machine
);
1256 default_driver_check_json();
1257 qemu_opts_foreach(qemu_find_opts("device"),
1258 default_driver_check
, NULL
, NULL
);
1259 qemu_opts_foreach(qemu_find_opts("global"),
1260 default_driver_check
, NULL
, NULL
);
1262 if (!vga_model
&& !default_vga
) {
1263 vga_interface_type
= VGA_DEVICE
;
1264 vga_interface_created
= true;
1266 if (!has_defaults
|| machine_class
->no_serial
) {
1269 if (!has_defaults
|| machine_class
->no_parallel
) {
1270 default_parallel
= 0;
1272 if (!has_defaults
|| machine_class
->no_floppy
) {
1275 if (!has_defaults
|| machine_class
->no_cdrom
) {
1278 if (!has_defaults
|| machine_class
->no_sdcard
) {
1281 if (!has_defaults
) {
1282 default_monitor
= 0;
1288 static void qemu_create_default_devices(void)
1290 MachineClass
*machine_class
= MACHINE_GET_CLASS(current_machine
);
1292 if (is_daemonized()) {
1293 /* According to documentation and historically, -nographic redirects
1294 * serial port, parallel port and monitor to stdio, which does not work
1295 * with -daemonize. We can redirect these to null instead, but since
1296 * -nographic is legacy, let's just error out.
1297 * We disallow -nographic only if all other ports are not redirected
1298 * explicitly, to not break existing legacy setups which uses
1299 * -nographic _and_ redirects all ports explicitly - this is valid
1300 * usage, -nographic is just a no-op in this case.
1303 && (default_parallel
|| default_serial
|| default_monitor
)) {
1304 error_report("-nographic cannot be used with -daemonize");
1310 if (default_parallel
)
1311 add_device_config(DEV_PARALLEL
, "null");
1312 if (default_serial
&& default_monitor
) {
1313 add_device_config(DEV_SERIAL
, "mon:stdio");
1316 add_device_config(DEV_SERIAL
, "stdio");
1317 if (default_monitor
)
1318 monitor_parse("stdio", "readline", false);
1322 add_device_config(DEV_SERIAL
, "vc:80Cx24C");
1323 if (default_parallel
)
1324 add_device_config(DEV_PARALLEL
, "vc:80Cx24C");
1325 if (default_monitor
)
1326 monitor_parse("vc:80Cx24C", "readline", false);
1330 QemuOptsList
*net
= qemu_find_opts("net");
1331 qemu_opts_parse(net
, "nic", true, &error_abort
);
1333 qemu_opts_parse(net
, "user", true, &error_abort
);
1337 #if defined(CONFIG_VNC)
1338 if (!QTAILQ_EMPTY(&(qemu_find_opts("vnc")->head
))) {
1342 if (dpy
.type
== DISPLAY_TYPE_DEFAULT
&& !display_remote
) {
1343 if (!qemu_display_find_default(&dpy
)) {
1344 dpy
.type
= DISPLAY_TYPE_NONE
;
1345 #if defined(CONFIG_VNC)
1346 vnc_parse("localhost:0,to=99,id=default");
1350 if (dpy
.type
== DISPLAY_TYPE_DEFAULT
) {
1351 dpy
.type
= DISPLAY_TYPE_NONE
;
1354 /* If no default VGA is requested, the default is "none". */
1356 vga_model
= get_default_vga_model(machine_class
);
1359 select_vgahw(machine_class
, vga_model
);
1363 static int serial_parse(const char *devname
)
1365 int index
= num_serial_hds
;
1368 if (strcmp(devname
, "none") == 0)
1370 snprintf(label
, sizeof(label
), "serial%d", index
);
1371 serial_hds
= g_renew(Chardev
*, serial_hds
, index
+ 1);
1373 serial_hds
[index
] = qemu_chr_new_mux_mon(label
, devname
, NULL
);
1374 if (!serial_hds
[index
]) {
1375 error_report("could not connect serial device"
1376 " to character backend '%s'", devname
);
1383 Chardev
*serial_hd(int i
)
1386 if (i
< num_serial_hds
) {
1387 return serial_hds
[i
];
1392 static int parallel_parse(const char *devname
)
1394 static int index
= 0;
1397 if (strcmp(devname
, "none") == 0)
1399 if (index
== MAX_PARALLEL_PORTS
) {
1400 error_report("too many parallel ports");
1403 snprintf(label
, sizeof(label
), "parallel%d", index
);
1404 parallel_hds
[index
] = qemu_chr_new_mux_mon(label
, devname
, NULL
);
1405 if (!parallel_hds
[index
]) {
1406 error_report("could not connect parallel device"
1407 " to character backend '%s'", devname
);
1414 static int debugcon_parse(const char *devname
)
1418 if (!qemu_chr_new_mux_mon("debugcon", devname
, NULL
)) {
1419 error_report("invalid character backend '%s'", devname
);
1422 opts
= qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL
);
1424 error_report("already have a debugcon device");
1427 qemu_opt_set(opts
, "driver", "isa-debugcon", &error_abort
);
1428 qemu_opt_set(opts
, "chardev", "debugcon", &error_abort
);
1432 static gint
machine_class_cmp(gconstpointer a
, gconstpointer b
)
1434 const MachineClass
*mc1
= a
, *mc2
= b
;
1437 if (mc1
->family
== NULL
) {
1438 if (mc2
->family
== NULL
) {
1439 /* Compare standalone machine types against each other; they sort
1440 * in increasing order.
1442 return strcmp(object_class_get_name(OBJECT_CLASS(mc1
)),
1443 object_class_get_name(OBJECT_CLASS(mc2
)));
1446 /* Standalone machine types sort after families. */
1450 if (mc2
->family
== NULL
) {
1451 /* Families sort before standalone machine types. */
1455 /* Families sort between each other alphabetically increasingly. */
1456 res
= strcmp(mc1
->family
, mc2
->family
);
1461 /* Within the same family, machine types sort in decreasing order. */
1462 return strcmp(object_class_get_name(OBJECT_CLASS(mc2
)),
1463 object_class_get_name(OBJECT_CLASS(mc1
)));
1466 static void machine_help_func(const QDict
*qdict
)
1468 GSList
*machines
, *el
;
1469 const char *type
= qdict_get_try_str(qdict
, "type");
1471 machines
= object_class_get_list(TYPE_MACHINE
, false);
1473 ObjectClass
*machine_class
= OBJECT_CLASS(find_machine(type
, machines
));
1474 if (machine_class
) {
1475 type_print_class_properties(object_class_get_name(machine_class
));
1480 printf("Supported machines are:\n");
1481 machines
= g_slist_sort(machines
, machine_class_cmp
);
1482 for (el
= machines
; el
; el
= el
->next
) {
1483 MachineClass
*mc
= el
->data
;
1485 printf("%-20s %s (alias of %s)\n", mc
->alias
, mc
->desc
, mc
->name
);
1487 printf("%-20s %s%s%s\n", mc
->name
, mc
->desc
,
1488 mc
->is_default
? " (default)" : "",
1489 mc
->deprecation_reason
? " (deprecated)" : "");
1494 machine_merge_property(const char *propname
, QDict
*prop
, Error
**errp
)
1499 /* Preserve the caller's reference to prop. */
1501 qdict_put(opts
, propname
, prop
);
1502 keyval_merge(machine_opts_dict
, opts
, errp
);
1503 qobject_unref(opts
);
1507 machine_parse_property_opt(QemuOptsList
*opts_list
, const char *propname
,
1513 prop
= keyval_parse(arg
, opts_list
->implied_opt_name
, &help
, &error_fatal
);
1515 qemu_opts_print_help(opts_list
, true);
1518 machine_merge_property(propname
, prop
, &error_fatal
);
1519 qobject_unref(prop
);
1522 static const char *pid_file
;
1523 struct UnlinkPidfileNotifier
{
1525 char *pid_file_realpath
;
1527 static struct UnlinkPidfileNotifier qemu_unlink_pidfile_notifier
;
1529 static void qemu_unlink_pidfile(Notifier
*n
, void *data
)
1531 struct UnlinkPidfileNotifier
*upn
;
1533 upn
= DO_UPCAST(struct UnlinkPidfileNotifier
, notifier
, n
);
1534 unlink(upn
->pid_file_realpath
);
1537 static const QEMUOption
*lookup_opt(int argc
, char **argv
,
1538 const char **poptarg
, int *poptind
)
1540 const QEMUOption
*popt
;
1541 int optind
= *poptind
;
1542 char *r
= argv
[optind
];
1545 loc_set_cmdline(argv
, optind
, 1);
1547 /* Treat --foo the same as -foo. */
1550 popt
= qemu_options
;
1553 error_report("invalid option");
1556 if (!strcmp(popt
->name
, r
+ 1))
1560 if (popt
->flags
& HAS_ARG
) {
1561 if (optind
>= argc
) {
1562 error_report("requires an argument");
1565 optarg
= argv
[optind
++];
1566 loc_set_cmdline(argv
, optind
- 2, 2);
1577 static MachineClass
*select_machine(QDict
*qdict
, Error
**errp
)
1579 const char *optarg
= qdict_get_try_str(qdict
, "type");
1580 GSList
*machines
= object_class_get_list(TYPE_MACHINE
, false);
1581 MachineClass
*machine_class
;
1582 Error
*local_err
= NULL
;
1585 machine_class
= find_machine(optarg
, machines
);
1586 qdict_del(qdict
, "type");
1587 if (!machine_class
) {
1588 error_setg(&local_err
, "unsupported machine type");
1591 machine_class
= find_default_machine(machines
);
1592 if (!machine_class
) {
1593 error_setg(&local_err
, "No machine specified, and there is no default");
1597 g_slist_free(machines
);
1599 error_append_hint(&local_err
, "Use -machine help to list supported machines\n");
1600 error_propagate(errp
, local_err
);
1602 return machine_class
;
1605 static int object_parse_property_opt(Object
*obj
,
1606 const char *name
, const char *value
,
1607 const char *skip
, Error
**errp
)
1609 if (g_str_equal(name
, skip
)) {
1613 if (!object_property_parse(obj
, name
, value
, errp
)) {
1620 /* *Non*recursively replace underscores with dashes in QDict keys. */
1621 static void keyval_dashify(QDict
*qdict
, Error
**errp
)
1623 const QDictEntry
*ent
, *next
;
1626 for (ent
= qdict_first(qdict
); ent
; ent
= next
) {
1627 g_autofree
char *new_key
= NULL
;
1629 next
= qdict_next(qdict
, ent
);
1630 if (!strchr(ent
->key
, '_')) {
1633 new_key
= g_strdup(ent
->key
);
1634 for (p
= new_key
; *p
; p
++) {
1639 if (qdict_haskey(qdict
, new_key
)) {
1640 error_setg(errp
, "Conflict between '%s' and '%s'", ent
->key
, new_key
);
1643 qobject_ref(ent
->value
);
1644 qdict_put_obj(qdict
, new_key
, ent
->value
);
1645 qdict_del(qdict
, ent
->key
);
1649 static void qemu_apply_legacy_machine_options(QDict
*qdict
)
1654 keyval_dashify(qdict
, &error_fatal
);
1656 /* Legacy options do not correspond to MachineState properties. */
1657 value
= qdict_get_try_str(qdict
, "accel");
1659 accelerators
= g_strdup(value
);
1660 qdict_del(qdict
, "accel");
1663 value
= qdict_get_try_str(qdict
, "igd-passthru");
1665 object_register_sugar_prop(ACCEL_CLASS_NAME("xen"), "igd-passthru", value
,
1667 qdict_del(qdict
, "igd-passthru");
1670 value
= qdict_get_try_str(qdict
, "kvm-shadow-mem");
1672 object_register_sugar_prop(ACCEL_CLASS_NAME("kvm"), "kvm-shadow-mem", value
,
1674 qdict_del(qdict
, "kvm-shadow-mem");
1677 value
= qdict_get_try_str(qdict
, "kernel-irqchip");
1679 object_register_sugar_prop(ACCEL_CLASS_NAME("kvm"), "kernel-irqchip", value
,
1681 object_register_sugar_prop(ACCEL_CLASS_NAME("whpx"), "kernel-irqchip", value
,
1683 qdict_del(qdict
, "kernel-irqchip");
1686 value
= qdict_get_try_str(qdict
, "memory-backend");
1689 error_report("'-mem-path' can't be used together with"
1690 "'-machine memory-backend'");
1694 /* Resolved later. */
1695 ram_memdev_id
= g_strdup(value
);
1696 qdict_del(qdict
, "memory-backend");
1699 prop
= qdict_get(qdict
, "memory");
1701 have_custom_ram_size
=
1702 qobject_type(prop
) == QTYPE_QDICT
&&
1703 qdict_haskey(qobject_to(QDict
, prop
), "size");
1707 static void object_option_foreach_add(bool (*type_opt_predicate
)(const char *))
1709 ObjectOption
*opt
, *next
;
1711 QTAILQ_FOREACH_SAFE(opt
, &object_opts
, next
, next
) {
1712 const char *type
= ObjectType_str(opt
->opts
->qom_type
);
1713 if (type_opt_predicate(type
)) {
1714 user_creatable_add_qapi(opt
->opts
, &error_fatal
);
1715 qapi_free_ObjectOptions(opt
->opts
);
1716 QTAILQ_REMOVE(&object_opts
, opt
, next
);
1722 static void object_option_add_visitor(Visitor
*v
)
1724 ObjectOption
*opt
= g_new0(ObjectOption
, 1);
1725 visit_type_ObjectOptions(v
, NULL
, &opt
->opts
, &error_fatal
);
1726 QTAILQ_INSERT_TAIL(&object_opts
, opt
, next
);
1729 static void object_option_parse(const char *optarg
)
1735 if (optarg
[0] == '{') {
1736 QObject
*obj
= qobject_from_json(optarg
, &error_fatal
);
1738 v
= qobject_input_visitor_new(obj
);
1741 opts
= qemu_opts_parse_noisily(qemu_find_opts("object"),
1747 type
= qemu_opt_get(opts
, "qom-type");
1749 error_setg(&error_fatal
, QERR_MISSING_PARAMETER
, "qom-type");
1751 if (user_creatable_print_help(type
, opts
)) {
1755 v
= opts_visitor_new(opts
);
1758 object_option_add_visitor(v
);
1763 * Initial object creation happens before all other
1764 * QEMU data types are created. The majority of objects
1765 * can be created at this point. The rng-egd object
1766 * cannot be created here, as it depends on the chardev
1769 static bool object_create_early(const char *type
)
1772 * Objects should not be made "delayed" without a reason. If you
1773 * add one, state the reason in a comment!
1776 /* Reason: property "chardev" */
1777 if (g_str_equal(type
, "rng-egd") ||
1778 g_str_equal(type
, "qtest")) {
1782 #if defined(CONFIG_VHOST_USER) && defined(CONFIG_LINUX)
1783 /* Reason: cryptodev-vhost-user property "chardev" */
1784 if (g_str_equal(type
, "cryptodev-vhost-user")) {
1789 /* Reason: vhost-user-blk-server property "node-name" */
1790 if (g_str_equal(type
, "vhost-user-blk-server")) {
1794 * Reason: filter-* property "netdev" etc.
1796 if (g_str_equal(type
, "filter-buffer") ||
1797 g_str_equal(type
, "filter-dump") ||
1798 g_str_equal(type
, "filter-mirror") ||
1799 g_str_equal(type
, "filter-redirector") ||
1800 g_str_equal(type
, "colo-compare") ||
1801 g_str_equal(type
, "filter-rewriter") ||
1802 g_str_equal(type
, "filter-replay")) {
1807 * Allocation of large amounts of memory may delay
1808 * chardev initialization for too long, and trigger timeouts
1809 * on software that waits for a monitor socket to be created
1812 if (g_str_has_prefix(type
, "memory-backend-")) {
1819 static void qemu_apply_machine_options(QDict
*qdict
)
1821 object_set_properties_from_keyval(OBJECT(current_machine
), qdict
, false, &error_fatal
);
1823 if (semihosting_enabled(false) && !semihosting_get_argc()) {
1824 /* fall back to the -kernel/-append */
1825 semihosting_arg_fallback(current_machine
->kernel_filename
, current_machine
->kernel_cmdline
);
1828 if (current_machine
->smp
.cpus
> 1) {
1829 Error
*blocker
= NULL
;
1830 error_setg(&blocker
, QERR_REPLAY_NOT_SUPPORTED
, "smp");
1831 replay_add_blocker(blocker
);
1835 static void qemu_create_early_backends(void)
1837 MachineClass
*machine_class
= MACHINE_GET_CLASS(current_machine
);
1838 #if defined(CONFIG_SDL)
1839 const bool use_sdl
= (dpy
.type
== DISPLAY_TYPE_SDL
);
1841 const bool use_sdl
= false;
1843 #if defined(CONFIG_GTK)
1844 const bool use_gtk
= (dpy
.type
== DISPLAY_TYPE_GTK
);
1846 const bool use_gtk
= false;
1849 if (dpy
.has_window_close
&& !use_gtk
&& !use_sdl
) {
1850 error_report("window-close is only valid for GTK and SDL, "
1854 qemu_display_early_init(&dpy
);
1855 qemu_console_early_init();
1857 if (dpy
.has_gl
&& dpy
.gl
!= DISPLAYGL_MODE_OFF
&& display_opengl
== 0) {
1858 #if defined(CONFIG_OPENGL)
1859 error_report("OpenGL is not supported by the display");
1861 error_report("OpenGL support is disabled");
1866 object_option_foreach_add(object_create_early
);
1868 /* spice needs the timers to be initialized by this point */
1869 /* spice must initialize before audio as it changes the default audiodev */
1870 /* spice must initialize before chardevs (for spicevmc and spiceport) */
1873 qemu_opts_foreach(qemu_find_opts("chardev"),
1874 chardev_init_func
, NULL
, &error_fatal
);
1876 #ifdef CONFIG_VIRTFS
1877 qemu_opts_foreach(qemu_find_opts("fsdev"),
1878 fsdev_init_func
, NULL
, &error_fatal
);
1882 * Note: we need to create audio and block backends before
1883 * setting machine properties, so they can be referred to.
1885 configure_blockdev(&bdo_queue
, machine_class
, snapshot
);
1886 if (!audio_init_audiodevs()) {
1893 * The remainder of object creation happens after the
1894 * creation of chardev, fsdev, net clients and device data types.
1896 static bool object_create_late(const char *type
)
1898 return !object_create_early(type
);
1901 static void qemu_create_late_backends(void)
1904 qtest_server_init(qtest_chrdev
, qtest_log
, &error_fatal
);
1907 net_init_clients(&error_fatal
);
1909 object_option_foreach_add(object_create_late
);
1911 if (tpm_init() < 0) {
1915 qemu_opts_foreach(qemu_find_opts("mon"),
1916 mon_init_func
, NULL
, &error_fatal
);
1918 if (foreach_device_config(DEV_SERIAL
, serial_parse
) < 0)
1920 if (foreach_device_config(DEV_PARALLEL
, parallel_parse
) < 0)
1922 if (foreach_device_config(DEV_DEBUGCON
, debugcon_parse
) < 0)
1925 /* now chardevs have been created we may have semihosting to connect */
1926 qemu_semihosting_chardev_init();
1929 static void qemu_resolve_machine_memdev(void)
1931 if (ram_memdev_id
) {
1933 ram_addr_t backend_size
;
1935 backend
= object_resolve_path_type(ram_memdev_id
,
1936 TYPE_MEMORY_BACKEND
, NULL
);
1938 error_report("Memory backend '%s' not found", ram_memdev_id
);
1941 if (!have_custom_ram_size
) {
1942 backend_size
= object_property_get_uint(backend
, "size", &error_abort
);
1943 current_machine
->ram_size
= backend_size
;
1945 object_property_set_link(OBJECT(current_machine
),
1946 "memory-backend", backend
, &error_fatal
);
1950 static void parse_memory_options(void)
1952 QemuOpts
*opts
= qemu_find_opts_singleton("memory");
1954 const char *mem_str
;
1957 loc_push_none(&loc
);
1958 qemu_opts_loc_restore(opts
);
1962 if (qemu_opt_get_size(opts
, "size", 0) != 0) {
1963 /* Fix up legacy suffix-less format */
1964 mem_str
= qemu_opt_get(opts
, "size");
1965 if (g_ascii_isdigit(mem_str
[strlen(mem_str
) - 1])) {
1966 g_autofree
char *mib_str
= g_strdup_printf("%sM", mem_str
);
1967 qdict_put_str(prop
, "size", mib_str
);
1969 qdict_put_str(prop
, "size", mem_str
);
1973 if (qemu_opt_get(opts
, "maxmem")) {
1974 qdict_put_str(prop
, "max-size", qemu_opt_get(opts
, "maxmem"));
1976 if (qemu_opt_get(opts
, "slots")) {
1977 qdict_put_str(prop
, "slots", qemu_opt_get(opts
, "slots"));
1981 qdict_put(dict
, "memory", prop
);
1982 keyval_merge(machine_opts_dict
, dict
, &error_fatal
);
1983 qobject_unref(dict
);
1987 static void qemu_create_machine(QDict
*qdict
)
1989 MachineClass
*machine_class
= select_machine(qdict
, &error_fatal
);
1990 object_set_machine_compat_props(machine_class
->compat_props
);
1992 current_machine
= MACHINE(object_new_with_class(OBJECT_CLASS(machine_class
)));
1993 object_property_add_child(object_get_root(), "machine",
1994 OBJECT(current_machine
));
1995 object_property_add_child(container_get(OBJECT(current_machine
),
1997 "sysbus", OBJECT(sysbus_get_default()));
1999 if (machine_class
->minimum_page_bits
) {
2000 if (!set_preferred_target_page_bits(machine_class
->minimum_page_bits
)) {
2001 /* This would be a board error: specifying a minimum smaller than
2002 * a target's compile-time fixed setting.
2004 g_assert_not_reached();
2008 cpu_exec_init_all();
2011 if (machine_class
->hw_version
) {
2012 qemu_set_hw_version(machine_class
->hw_version
);
2016 * Get the default machine options from the machine if it is not already
2017 * specified either by the configuration file or by the command line.
2019 if (machine_class
->default_machine_opts
) {
2020 QDict
*default_opts
=
2021 keyval_parse(machine_class
->default_machine_opts
, NULL
, NULL
,
2023 qemu_apply_legacy_machine_options(default_opts
);
2024 object_set_properties_from_keyval(OBJECT(current_machine
), default_opts
,
2025 false, &error_abort
);
2026 qobject_unref(default_opts
);
2030 static int global_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2034 g
= g_malloc0(sizeof(*g
));
2035 g
->driver
= qemu_opt_get(opts
, "driver");
2036 g
->property
= qemu_opt_get(opts
, "property");
2037 g
->value
= qemu_opt_get(opts
, "value");
2038 qdev_prop_register_global(g
);
2043 * Return whether configuration group @group is stored in QemuOpts, or
2044 * recorded as one or more QDicts by qemu_record_config_group.
2046 static bool is_qemuopts_group(const char *group
)
2048 if (g_str_equal(group
, "object") ||
2049 g_str_equal(group
, "machine") ||
2050 g_str_equal(group
, "smp-opts") ||
2051 g_str_equal(group
, "boot-opts")) {
2057 static void qemu_record_config_group(const char *group
, QDict
*dict
,
2058 bool from_json
, Error
**errp
)
2060 if (g_str_equal(group
, "object")) {
2061 Visitor
*v
= qobject_input_visitor_new_keyval(QOBJECT(dict
));
2062 object_option_add_visitor(v
);
2064 } else if (g_str_equal(group
, "machine")) {
2066 * Cannot merge string-valued and type-safe dictionaries, so JSON
2067 * is not accepted yet for -M.
2070 keyval_merge(machine_opts_dict
, dict
, errp
);
2071 } else if (g_str_equal(group
, "smp-opts")) {
2072 machine_merge_property("smp", dict
, &error_fatal
);
2073 } else if (g_str_equal(group
, "boot-opts")) {
2074 machine_merge_property("boot", dict
, &error_fatal
);
2081 * Parse non-QemuOpts config file groups, pass the rest to
2082 * qemu_config_do_parse.
2084 static void qemu_parse_config_group(const char *group
, QDict
*qdict
,
2085 void *opaque
, Error
**errp
)
2088 if (is_qemuopts_group(group
)) {
2089 qemu_config_do_parse(group
, qdict
, opaque
, errp
);
2093 crumpled
= qdict_crumple(qdict
, errp
);
2097 switch (qobject_type(crumpled
)) {
2099 qemu_record_config_group(group
, qobject_to(QDict
, crumpled
), false, errp
);
2102 error_setg(errp
, "Lists cannot be at top level of a configuration section");
2105 g_assert_not_reached();
2107 qobject_unref(crumpled
);
2110 static void qemu_read_default_config_file(Error
**errp
)
2114 g_autofree
char *file
= get_relocated_path(CONFIG_QEMU_CONFDIR
"/qemu.conf");
2116 ret
= qemu_read_config_file(file
, qemu_parse_config_group
, errp
);
2118 if (ret
== -ENOENT
) {
2125 static void qemu_set_option(const char *str
, Error
**errp
)
2127 char group
[64], id
[64], arg
[64];
2132 rc
= sscanf(str
, "%63[^.].%63[^.].%63[^=]%n", group
, id
, arg
, &offset
);
2133 if (rc
< 3 || str
[offset
] != '=') {
2134 error_setg(errp
, "can't parse: \"%s\"", str
);
2138 if (!is_qemuopts_group(group
)) {
2139 error_setg(errp
, "-set is not supported with %s", group
);
2141 list
= qemu_find_opts_err(group
, errp
);
2143 opts
= qemu_opts_find(list
, id
);
2145 error_setg(errp
, "there is no %s \"%s\" defined", group
, id
);
2148 qemu_opt_set(opts
, arg
, str
+ offset
+ 1, errp
);
2153 static void user_register_global_props(void)
2155 qemu_opts_foreach(qemu_find_opts("global"),
2156 global_init_func
, NULL
, NULL
);
2159 static int do_configure_icount(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2161 icount_configure(opts
, errp
);
2165 static int accelerator_set_property(void *opaque
,
2166 const char *name
, const char *value
,
2169 return object_parse_property_opt(opaque
, name
, value
, "accel", errp
);
2172 static int do_configure_accelerator(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2174 bool *p_init_failed
= opaque
;
2175 const char *acc
= qemu_opt_get(opts
, "accel");
2176 AccelClass
*ac
= accel_find(acc
);
2179 bool qtest_with_kvm
;
2181 qtest_with_kvm
= g_str_equal(acc
, "kvm") && qtest_chrdev
!= NULL
;
2184 *p_init_failed
= true;
2185 if (!qtest_with_kvm
) {
2186 error_report("invalid accelerator %s", acc
);
2190 accel
= ACCEL(object_new_with_class(OBJECT_CLASS(ac
)));
2191 object_apply_compat_props(OBJECT(accel
));
2192 qemu_opt_foreach(opts
, accelerator_set_property
,
2196 ret
= accel_init_machine(accel
, current_machine
);
2198 *p_init_failed
= true;
2199 if (!qtest_with_kvm
|| ret
!= -ENOENT
) {
2200 error_report("failed to initialize %s: %s", acc
, strerror(-ret
));
2208 static void configure_accelerators(const char *progname
)
2210 bool init_failed
= false;
2212 qemu_opts_foreach(qemu_find_opts("icount"),
2213 do_configure_icount
, NULL
, &error_fatal
);
2215 if (QTAILQ_EMPTY(&qemu_accel_opts
.head
)) {
2216 char **accel_list
, **tmp
;
2218 if (accelerators
== NULL
) {
2219 /* Select the default accelerator */
2220 bool have_tcg
= accel_find("tcg");
2221 bool have_kvm
= accel_find("kvm");
2223 if (have_tcg
&& have_kvm
) {
2224 if (g_str_has_suffix(progname
, "kvm")) {
2225 /* If the program name ends with "kvm", we prefer KVM */
2226 accelerators
= "kvm:tcg";
2228 accelerators
= "tcg:kvm";
2230 } else if (have_kvm
) {
2231 accelerators
= "kvm";
2232 } else if (have_tcg
) {
2233 accelerators
= "tcg";
2235 error_report("No accelerator selected and"
2236 " no default accelerator available");
2240 accel_list
= g_strsplit(accelerators
, ":", 0);
2242 for (tmp
= accel_list
; *tmp
; tmp
++) {
2244 * Filter invalid accelerators here, to prevent obscenities
2245 * such as "-machine accel=tcg,,thread=single".
2247 if (accel_find(*tmp
)) {
2248 qemu_opts_parse_noisily(qemu_find_opts("accel"), *tmp
, true);
2251 error_report("invalid accelerator %s", *tmp
);
2254 g_strfreev(accel_list
);
2256 if (accelerators
!= NULL
) {
2257 error_report("The -accel and \"-machine accel=\" options are incompatible");
2262 if (!qemu_opts_foreach(qemu_find_opts("accel"),
2263 do_configure_accelerator
, &init_failed
, &error_fatal
)) {
2265 error_report("no accelerator found");
2270 if (init_failed
&& !qtest_chrdev
) {
2271 error_report("falling back to %s", current_accel_name());
2274 if (icount_enabled() && !tcg_enabled()) {
2275 error_report("-icount is not allowed with hardware virtualization");
2280 static void qemu_validate_options(const QDict
*machine_opts
)
2282 const char *kernel_filename
= qdict_get_try_str(machine_opts
, "kernel");
2283 const char *initrd_filename
= qdict_get_try_str(machine_opts
, "initrd");
2284 const char *kernel_cmdline
= qdict_get_try_str(machine_opts
, "append");
2286 if (kernel_filename
== NULL
) {
2287 if (kernel_cmdline
!= NULL
) {
2288 error_report("-append only allowed with -kernel option");
2292 if (initrd_filename
!= NULL
) {
2293 error_report("-initrd only allowed with -kernel option");
2298 if (loadvm
&& preconfig_requested
) {
2299 error_report("'preconfig' and 'loadvm' options are "
2300 "mutually exclusive");
2303 if (incoming
&& preconfig_requested
&& strcmp(incoming
, "defer") != 0) {
2304 error_report("'preconfig' supports '-incoming defer' only");
2308 #ifdef CONFIG_CURSES
2309 if (is_daemonized() && dpy
.type
== DISPLAY_TYPE_CURSES
) {
2310 error_report("curses display cannot be used with -daemonize");
2316 static void qemu_process_sugar_options(void)
2319 QObject
*smp
= qdict_get(machine_opts_dict
, "smp");
2320 if (smp
&& qobject_type(smp
) == QTYPE_QDICT
) {
2321 QObject
*cpus
= qdict_get(qobject_to(QDict
, smp
), "cpus");
2322 if (cpus
&& qobject_type(cpus
) == QTYPE_QSTRING
) {
2323 const char *val
= qstring_get_str(qobject_to(QString
, cpus
));
2324 object_register_sugar_prop("memory-backend", "prealloc-threads",
2328 object_register_sugar_prop("memory-backend", "prealloc", "on", false);
2332 /* -action processing */
2335 * Process all the -action parameters parsed from cmdline.
2337 static int process_runstate_actions(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2339 Error
*local_err
= NULL
;
2340 QDict
*qdict
= qemu_opts_to_qdict(opts
, NULL
);
2341 QObject
*ret
= NULL
;
2342 qmp_marshal_set_action(qdict
, &ret
, &local_err
);
2344 qobject_unref(qdict
);
2346 error_propagate(errp
, local_err
);
2352 static void qemu_process_early_options(void)
2354 #ifdef CONFIG_SECCOMP
2355 QemuOptsList
*olist
= qemu_find_opts_err("sandbox", NULL
);
2357 qemu_opts_foreach(olist
, parse_sandbox
, NULL
, &error_fatal
);
2361 qemu_opts_foreach(qemu_find_opts("name"),
2362 parse_name
, NULL
, &error_fatal
);
2364 if (qemu_opts_foreach(qemu_find_opts("action"),
2365 process_runstate_actions
, NULL
, &error_fatal
)) {
2370 qemu_opts_foreach(qemu_find_opts("add-fd"),
2371 parse_add_fd
, NULL
, &error_fatal
);
2373 qemu_opts_foreach(qemu_find_opts("add-fd"),
2374 cleanup_add_fd
, NULL
, &error_fatal
);
2377 /* Open the logfile at this point and set the log mask if necessary. */
2381 mask
= qemu_str_to_log_mask(log_mask
);
2383 qemu_print_log_usage(stdout
);
2387 qemu_set_log_filename_flags(log_file
, mask
, &error_fatal
);
2390 qemu_add_default_firmwarepath();
2393 static void qemu_process_help_options(void)
2396 * Check for -cpu help and -device help before we call select_machine(),
2397 * which will return an error if the architecture has no default machine
2398 * type and the user did not specify one, so that the user doesn't need
2399 * to say '-cpu help -machine something'.
2401 if (cpu_option
&& is_help_option(cpu_option
)) {
2402 list_cpus(cpu_option
);
2406 if (qemu_opts_foreach(qemu_find_opts("device"),
2407 device_help_func
, NULL
, NULL
)) {
2411 /* -L help lists the data directories and exits. */
2412 if (list_data_dirs
) {
2413 qemu_list_data_dirs();
2418 static void qemu_maybe_daemonize(const char *pid_file
)
2423 rcu_disable_atfork();
2426 char *pid_file_realpath
= NULL
;
2428 if (!qemu_write_pidfile(pid_file
, &err
)) {
2429 error_reportf_err(err
, "cannot create PID file: ");
2433 pid_file_realpath
= g_malloc0(PATH_MAX
);
2434 if (!realpath(pid_file
, pid_file_realpath
)) {
2435 error_report("cannot resolve PID file path: %s: %s",
2436 pid_file
, strerror(errno
));
2441 qemu_unlink_pidfile_notifier
= (struct UnlinkPidfileNotifier
) {
2443 .notify
= qemu_unlink_pidfile
,
2445 .pid_file_realpath
= pid_file_realpath
,
2447 qemu_add_exit_notifier(&qemu_unlink_pidfile_notifier
.notifier
);
2451 static void qemu_init_displays(void)
2455 /* init local displays */
2456 ds
= init_displaystate();
2457 qemu_display_init(ds
, &dpy
);
2459 /* must be after terminal init, SDL library changes signal handlers */
2460 os_setup_signal_handling();
2462 /* init remote displays */
2464 qemu_opts_foreach(qemu_find_opts("vnc"),
2465 vnc_init_func
, NULL
, &error_fatal
);
2469 qemu_spice
.display_init();
2473 static void qemu_init_board(void)
2475 /* process plugin before CPUs are created, but once -smp has been parsed */
2476 qemu_plugin_load_list(&plugin_list
, &error_fatal
);
2478 /* From here on we enter MACHINE_PHASE_INITIALIZED. */
2479 machine_run_board_init(current_machine
, mem_path
, &error_fatal
);
2481 drive_check_orphaned();
2485 if (hax_enabled()) {
2486 /* FIXME: why isn't cpu_synchronize_all_post_init enough? */
2491 static void qemu_create_cli_devices(void)
2497 qemu_opts_foreach(qemu_find_opts("fw_cfg"),
2498 parse_fw_cfg
, fw_cfg_find(), &error_fatal
);
2500 /* init USB devices */
2501 if (machine_usb(current_machine
)) {
2502 if (foreach_device_config(DEV_USB
, usb_parse
) < 0)
2506 /* init generic devices */
2507 rom_set_order_override(FW_CFG_ORDER_OVERRIDE_DEVICE
);
2508 qemu_opts_foreach(qemu_find_opts("device"),
2509 device_init_func
, NULL
, &error_fatal
);
2510 QTAILQ_FOREACH(opt
, &device_opts
, next
) {
2512 loc_push_restore(&opt
->loc
);
2514 * TODO Eventually we should call qmp_device_add() here to make sure it
2515 * behaves the same, but QMP still has to accept incorrectly typed
2516 * options until libvirt is fixed and we want to be strict on the CLI
2517 * from the start, so call qdev_device_add_from_qdict() directly for
2520 dev
= qdev_device_add_from_qdict(opt
->opts
, true, &error_fatal
);
2521 object_unref(OBJECT(dev
));
2524 rom_reset_order_override();
2527 static void qemu_machine_creation_done(void)
2529 MachineState
*machine
= MACHINE(qdev_get_machine());
2531 /* Did we create any drives that we failed to create a device for? */
2532 drive_check_orphaned();
2534 /* Don't warn about the default network setup that you get if
2535 * no command line -net or -netdev options are specified. There
2536 * are two cases that we would otherwise complain about:
2537 * (1) board doesn't support a NIC but the implicit "-net nic"
2539 * (2) CONFIG_SLIRP not set, in which case the implicit "-net nic"
2540 * sets up a nic that isn't connected to anything.
2542 if (!default_net
&& (!qtest_enabled() || has_defaults
)) {
2543 net_check_clients();
2546 qdev_prop_check_globals();
2548 qdev_machine_creation_done();
2552 * Verify that Confidential Guest Support has actually been initialized
2554 assert(machine
->cgs
->ready
);
2557 if (foreach_device_config(DEV_GDB
, gdbserver_start
) < 0) {
2560 if (!vga_interface_created
&& !default_vga
&&
2561 vga_interface_type
!= VGA_NONE
) {
2562 warn_report("A -vga option was passed but this machine "
2563 "type does not use that option; "
2564 "No VGA device has been created");
2568 void qmp_x_exit_preconfig(Error
**errp
)
2570 if (phase_check(PHASE_MACHINE_INITIALIZED
)) {
2571 error_setg(errp
, "The command is permitted only before machine initialization");
2576 qemu_create_cli_devices();
2577 qemu_machine_creation_done();
2580 load_snapshot(loadvm
, NULL
, false, NULL
, &error_fatal
);
2582 if (replay_mode
!= REPLAY_MODE_NONE
) {
2583 replay_vmstate_init();
2587 Error
*local_err
= NULL
;
2588 if (strcmp(incoming
, "defer") != 0) {
2589 qmp_migrate_incoming(incoming
, &local_err
);
2591 error_reportf_err(local_err
, "-incoming %s: ", incoming
);
2595 } else if (autostart
) {
2600 void qemu_init(int argc
, char **argv
)
2603 QemuOpts
*icount_opts
= NULL
, *accel_opts
= NULL
;
2604 QemuOptsList
*olist
;
2607 MachineClass
*machine_class
;
2608 bool userconfig
= true;
2609 FILE *vmstate_dump_file
= NULL
;
2611 qemu_add_opts(&qemu_drive_opts
);
2612 qemu_add_drive_opts(&qemu_legacy_drive_opts
);
2613 qemu_add_drive_opts(&qemu_common_drive_opts
);
2614 qemu_add_drive_opts(&qemu_drive_opts
);
2615 qemu_add_drive_opts(&bdrv_runtime_opts
);
2616 qemu_add_opts(&qemu_chardev_opts
);
2617 qemu_add_opts(&qemu_device_opts
);
2618 qemu_add_opts(&qemu_netdev_opts
);
2619 qemu_add_opts(&qemu_nic_opts
);
2620 qemu_add_opts(&qemu_net_opts
);
2621 qemu_add_opts(&qemu_rtc_opts
);
2622 qemu_add_opts(&qemu_global_opts
);
2623 qemu_add_opts(&qemu_mon_opts
);
2624 qemu_add_opts(&qemu_trace_opts
);
2625 qemu_plugin_add_opts();
2626 qemu_add_opts(&qemu_option_rom_opts
);
2627 qemu_add_opts(&qemu_accel_opts
);
2628 qemu_add_opts(&qemu_mem_opts
);
2629 qemu_add_opts(&qemu_smp_opts
);
2630 qemu_add_opts(&qemu_boot_opts
);
2631 qemu_add_opts(&qemu_add_fd_opts
);
2632 qemu_add_opts(&qemu_object_opts
);
2633 qemu_add_opts(&qemu_tpmdev_opts
);
2634 qemu_add_opts(&qemu_overcommit_opts
);
2635 qemu_add_opts(&qemu_msg_opts
);
2636 qemu_add_opts(&qemu_name_opts
);
2637 qemu_add_opts(&qemu_numa_opts
);
2638 qemu_add_opts(&qemu_icount_opts
);
2639 qemu_add_opts(&qemu_semihosting_config_opts
);
2640 qemu_add_opts(&qemu_fw_cfg_opts
);
2641 qemu_add_opts(&qemu_action_opts
);
2642 module_call_init(MODULE_INIT_OPTS
);
2644 error_init(argv
[0]);
2645 qemu_init_exec_dir(argv
[0]);
2647 qemu_init_arch_modules();
2649 qemu_init_subsystems();
2651 /* first pass of option parsing */
2653 while (optind
< argc
) {
2654 if (argv
[optind
][0] != '-') {
2658 const QEMUOption
*popt
;
2660 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
2661 switch (popt
->index
) {
2662 case QEMU_OPTION_nouserconfig
:
2669 machine_opts_dict
= qdict_new();
2671 qemu_read_default_config_file(&error_fatal
);
2674 /* second pass of option parsing */
2679 if (argv
[optind
][0] != '-') {
2680 loc_set_cmdline(argv
, optind
, 1);
2681 drive_add(IF_DEFAULT
, 0, argv
[optind
++], HD_OPTS
);
2683 const QEMUOption
*popt
;
2685 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
2686 if (!(popt
->arch_mask
& arch_type
)) {
2687 error_report("Option not supported for this target");
2690 switch(popt
->index
) {
2691 case QEMU_OPTION_cpu
:
2692 /* hw initialization will check this */
2693 cpu_option
= optarg
;
2695 case QEMU_OPTION_hda
:
2696 case QEMU_OPTION_hdb
:
2697 case QEMU_OPTION_hdc
:
2698 case QEMU_OPTION_hdd
:
2699 drive_add(IF_DEFAULT
, popt
->index
- QEMU_OPTION_hda
, optarg
,
2702 case QEMU_OPTION_blockdev
:
2705 BlockdevOptionsQueueEntry
*bdo
;
2707 v
= qobject_input_visitor_new_str(optarg
, "driver",
2710 bdo
= g_new(BlockdevOptionsQueueEntry
, 1);
2711 visit_type_BlockdevOptions(v
, NULL
, &bdo
->bdo
,
2714 loc_save(&bdo
->loc
);
2715 QSIMPLEQ_INSERT_TAIL(&bdo_queue
, bdo
, entry
);
2718 case QEMU_OPTION_drive
:
2719 opts
= qemu_opts_parse_noisily(qemu_find_opts("drive"),
2725 case QEMU_OPTION_set
:
2726 qemu_set_option(optarg
, &error_fatal
);
2728 case QEMU_OPTION_global
:
2729 if (qemu_global_option(optarg
) != 0)
2732 case QEMU_OPTION_mtdblock
:
2733 drive_add(IF_MTD
, -1, optarg
, MTD_OPTS
);
2735 case QEMU_OPTION_sd
:
2736 drive_add(IF_SD
, -1, optarg
, SD_OPTS
);
2738 case QEMU_OPTION_pflash
:
2739 drive_add(IF_PFLASH
, -1, optarg
, PFLASH_OPTS
);
2741 case QEMU_OPTION_snapshot
:
2743 Error
*blocker
= NULL
;
2745 error_setg(&blocker
, QERR_REPLAY_NOT_SUPPORTED
,
2747 replay_add_blocker(blocker
);
2750 case QEMU_OPTION_numa
:
2751 opts
= qemu_opts_parse_noisily(qemu_find_opts("numa"),
2757 case QEMU_OPTION_display
:
2758 parse_display(optarg
);
2760 case QEMU_OPTION_nographic
:
2761 qdict_put_str(machine_opts_dict
, "graphics", "off");
2763 dpy
.type
= DISPLAY_TYPE_NONE
;
2765 case QEMU_OPTION_portrait
:
2766 graphic_rotate
= 90;
2768 case QEMU_OPTION_rotate
:
2769 graphic_rotate
= strtol(optarg
, (char **) &optarg
, 10);
2770 if (graphic_rotate
!= 0 && graphic_rotate
!= 90 &&
2771 graphic_rotate
!= 180 && graphic_rotate
!= 270) {
2772 error_report("only 90, 180, 270 deg rotation is available");
2776 case QEMU_OPTION_kernel
:
2777 qdict_put_str(machine_opts_dict
, "kernel", optarg
);
2779 case QEMU_OPTION_initrd
:
2780 qdict_put_str(machine_opts_dict
, "initrd", optarg
);
2782 case QEMU_OPTION_append
:
2783 qdict_put_str(machine_opts_dict
, "append", optarg
);
2785 case QEMU_OPTION_dtb
:
2786 qdict_put_str(machine_opts_dict
, "dtb", optarg
);
2788 case QEMU_OPTION_cdrom
:
2789 drive_add(IF_DEFAULT
, 2, optarg
, CDROM_OPTS
);
2791 case QEMU_OPTION_boot
:
2792 machine_parse_property_opt(qemu_find_opts("boot-opts"), "boot", optarg
);
2794 case QEMU_OPTION_fda
:
2795 case QEMU_OPTION_fdb
:
2796 drive_add(IF_FLOPPY
, popt
->index
- QEMU_OPTION_fda
,
2799 case QEMU_OPTION_no_fd_bootchk
:
2802 case QEMU_OPTION_netdev
:
2804 if (net_client_parse(qemu_find_opts("netdev"), optarg
) == -1) {
2808 case QEMU_OPTION_nic
:
2810 if (net_client_parse(qemu_find_opts("nic"), optarg
) == -1) {
2814 case QEMU_OPTION_net
:
2816 if (net_client_parse(qemu_find_opts("net"), optarg
) == -1) {
2820 #ifdef CONFIG_LIBISCSI
2821 case QEMU_OPTION_iscsi
:
2822 opts
= qemu_opts_parse_noisily(qemu_find_opts("iscsi"),
2829 case QEMU_OPTION_audio_help
:
2830 audio_legacy_help();
2833 case QEMU_OPTION_audiodev
:
2834 audio_parse_option(optarg
);
2836 case QEMU_OPTION_audio
: {
2839 Audiodev
*dev
= NULL
;
2841 QDict
*dict
= keyval_parse(optarg
, "driver", &help
, &error_fatal
);
2842 if (help
|| (qdict_haskey(dict
, "driver") &&
2843 is_help_option(qdict_get_str(dict
, "driver")))) {
2847 if (!qdict_haskey(dict
, "id")) {
2848 qdict_put_str(dict
, "id", "audiodev0");
2850 if (!qdict_haskey(dict
, "model")) {
2851 error_setg(&error_fatal
, "Parameter 'model' is missing");
2853 model
= g_strdup(qdict_get_str(dict
, "model"));
2854 qdict_del(dict
, "model");
2855 if (is_help_option(model
)) {
2856 show_valid_soundhw();
2859 v
= qobject_input_visitor_new_keyval(QOBJECT(dict
));
2860 qobject_unref(dict
);
2861 visit_type_Audiodev(v
, NULL
, &dev
, &error_fatal
);
2864 select_soundhw(model
, dev
->id
);
2871 case QEMU_OPTION_version
:
2876 opts
= qemu_opts_parse_noisily(qemu_find_opts("memory"), optarg
, true);
2882 case QEMU_OPTION_tpmdev
:
2883 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg
) < 0) {
2888 case QEMU_OPTION_mempath
:
2891 case QEMU_OPTION_mem_prealloc
:
2900 case QEMU_OPTION_DFILTER
:
2901 qemu_set_dfilter_ranges(optarg
, &error_fatal
);
2903 case QEMU_OPTION_seed
:
2904 qemu_guest_random_seed_main(optarg
, &error_fatal
);
2907 add_device_config(DEV_GDB
, "tcp::" DEFAULT_GDBSTUB_PORT
);
2909 case QEMU_OPTION_gdb
:
2910 add_device_config(DEV_GDB
, optarg
);
2913 if (is_help_option(optarg
)) {
2914 list_data_dirs
= true;
2916 qemu_add_data_dir(g_strdup(optarg
));
2919 case QEMU_OPTION_bios
:
2920 qdict_put_str(machine_opts_dict
, "firmware", optarg
);
2922 case QEMU_OPTION_singlestep
:
2929 keyboard_layout
= optarg
;
2931 case QEMU_OPTION_vga
:
2940 w
= strtol(p
, (char **)&p
, 10);
2943 error_report("invalid resolution or depth");
2949 h
= strtol(p
, (char **)&p
, 10);
2954 depth
= strtol(p
, (char **)&p
, 10);
2955 if (depth
!= 1 && depth
!= 2 && depth
!= 4 &&
2956 depth
!= 8 && depth
!= 15 && depth
!= 16 &&
2957 depth
!= 24 && depth
!= 32)
2959 } else if (*p
== '\0') {
2960 depth
= graphic_depth
;
2967 graphic_depth
= depth
;
2970 case QEMU_OPTION_echr
:
2973 term_escape_char
= strtol(optarg
, &r
, 0);
2975 printf("Bad argument to echr\n");
2978 case QEMU_OPTION_monitor
:
2979 default_monitor
= 0;
2980 if (strncmp(optarg
, "none", 4)) {
2981 monitor_parse(optarg
, "readline", false);
2984 case QEMU_OPTION_qmp
:
2985 monitor_parse(optarg
, "control", false);
2986 default_monitor
= 0;
2988 case QEMU_OPTION_qmp_pretty
:
2989 monitor_parse(optarg
, "control", true);
2990 default_monitor
= 0;
2992 case QEMU_OPTION_mon
:
2993 opts
= qemu_opts_parse_noisily(qemu_find_opts("mon"), optarg
,
2998 default_monitor
= 0;
3000 case QEMU_OPTION_chardev
:
3001 opts
= qemu_opts_parse_noisily(qemu_find_opts("chardev"),
3007 case QEMU_OPTION_fsdev
:
3008 olist
= qemu_find_opts("fsdev");
3010 error_report("fsdev support is disabled");
3013 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3018 case QEMU_OPTION_virtfs
: {
3021 const char *writeout
, *sock_fd
, *socket
, *path
, *security_model
,
3024 olist
= qemu_find_opts("virtfs");
3026 error_report("virtfs support is disabled");
3029 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3034 if (qemu_opt_get(opts
, "fsdriver") == NULL
||
3035 qemu_opt_get(opts
, "mount_tag") == NULL
) {
3036 error_report("Usage: -virtfs fsdriver,mount_tag=tag");
3039 fsdev
= qemu_opts_create(qemu_find_opts("fsdev"),
3040 qemu_opts_id(opts
) ?:
3041 qemu_opt_get(opts
, "mount_tag"),
3044 error_report("duplicate or invalid fsdev id: %s",
3045 qemu_opt_get(opts
, "mount_tag"));
3049 writeout
= qemu_opt_get(opts
, "writeout");
3051 #ifdef CONFIG_SYNC_FILE_RANGE
3052 qemu_opt_set(fsdev
, "writeout", writeout
, &error_abort
);
3054 error_report("writeout=immediate not supported "
3055 "on this platform");
3059 qemu_opt_set(fsdev
, "fsdriver",
3060 qemu_opt_get(opts
, "fsdriver"), &error_abort
);
3061 path
= qemu_opt_get(opts
, "path");
3063 qemu_opt_set(fsdev
, "path", path
, &error_abort
);
3065 security_model
= qemu_opt_get(opts
, "security_model");
3066 if (security_model
) {
3067 qemu_opt_set(fsdev
, "security_model", security_model
,
3070 socket
= qemu_opt_get(opts
, "socket");
3072 qemu_opt_set(fsdev
, "socket", socket
, &error_abort
);
3074 sock_fd
= qemu_opt_get(opts
, "sock_fd");
3076 qemu_opt_set(fsdev
, "sock_fd", sock_fd
, &error_abort
);
3079 qemu_opt_set_bool(fsdev
, "readonly",
3080 qemu_opt_get_bool(opts
, "readonly", 0),
3082 multidevs
= qemu_opt_get(opts
, "multidevs");
3084 qemu_opt_set(fsdev
, "multidevs", multidevs
, &error_abort
);
3086 device
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
3088 qemu_opt_set(device
, "driver", "virtio-9p-pci", &error_abort
);
3089 qemu_opt_set(device
, "fsdev",
3090 qemu_opts_id(fsdev
), &error_abort
);
3091 qemu_opt_set(device
, "mount_tag",
3092 qemu_opt_get(opts
, "mount_tag"), &error_abort
);
3095 case QEMU_OPTION_serial
:
3096 add_device_config(DEV_SERIAL
, optarg
);
3098 if (strncmp(optarg
, "mon:", 4) == 0) {
3099 default_monitor
= 0;
3102 case QEMU_OPTION_action
:
3103 olist
= qemu_find_opts("action");
3104 if (!qemu_opts_parse_noisily(olist
, optarg
, false)) {
3108 case QEMU_OPTION_watchdog_action
: {
3110 opts
= qemu_opts_create(qemu_find_opts("action"), NULL
, 0, &error_abort
);
3111 qemu_opt_set(opts
, "watchdog", optarg
, &error_abort
);
3114 case QEMU_OPTION_parallel
:
3115 add_device_config(DEV_PARALLEL
, optarg
);
3116 default_parallel
= 0;
3117 if (strncmp(optarg
, "mon:", 4) == 0) {
3118 default_monitor
= 0;
3121 case QEMU_OPTION_debugcon
:
3122 add_device_config(DEV_DEBUGCON
, optarg
);
3124 case QEMU_OPTION_loadvm
:
3127 case QEMU_OPTION_full_screen
:
3128 dpy
.has_full_screen
= true;
3129 dpy
.full_screen
= true;
3131 case QEMU_OPTION_pidfile
:
3134 case QEMU_OPTION_win2k_hack
:
3135 win2k_install_hack
= 1;
3137 case QEMU_OPTION_acpitable
:
3138 opts
= qemu_opts_parse_noisily(qemu_find_opts("acpi"),
3143 acpi_table_add(opts
, &error_fatal
);
3145 case QEMU_OPTION_smbios
:
3146 opts
= qemu_opts_parse_noisily(qemu_find_opts("smbios"),
3151 smbios_entry_add(opts
, &error_fatal
);
3153 case QEMU_OPTION_fwcfg
:
3154 opts
= qemu_opts_parse_noisily(qemu_find_opts("fw_cfg"),
3160 case QEMU_OPTION_preconfig
:
3161 preconfig_requested
= true;
3163 case QEMU_OPTION_enable_kvm
:
3164 qdict_put_str(machine_opts_dict
, "accel", "kvm");
3167 case QEMU_OPTION_machine
:
3171 keyval_parse_into(machine_opts_dict
, optarg
, "type", &help
, &error_fatal
);
3173 machine_help_func(machine_opts_dict
);
3178 case QEMU_OPTION_accel
:
3179 accel_opts
= qemu_opts_parse_noisily(qemu_find_opts("accel"),
3181 optarg
= qemu_opt_get(accel_opts
, "accel");
3182 if (!optarg
|| is_help_option(optarg
)) {
3183 printf("Accelerators supported in QEMU binary:\n");
3184 GSList
*el
, *accel_list
= object_class_get_list(TYPE_ACCEL
,
3186 for (el
= accel_list
; el
; el
= el
->next
) {
3187 gchar
*typename
= g_strdup(object_class_get_name(
3188 OBJECT_CLASS(el
->data
)));
3189 /* omit qtest which is used for tests only */
3190 if (g_strcmp0(typename
, ACCEL_CLASS_NAME("qtest")) &&
3191 g_str_has_suffix(typename
, ACCEL_CLASS_SUFFIX
)) {
3192 gchar
**optname
= g_strsplit(typename
,
3193 ACCEL_CLASS_SUFFIX
, 0);
3194 printf("%s\n", optname
[0]);
3195 g_strfreev(optname
);
3199 g_slist_free(accel_list
);
3203 case QEMU_OPTION_usb
:
3204 qdict_put_str(machine_opts_dict
, "usb", "on");
3206 case QEMU_OPTION_usbdevice
:
3207 qdict_put_str(machine_opts_dict
, "usb", "on");
3208 add_device_config(DEV_USB
, optarg
);
3210 case QEMU_OPTION_device
:
3211 if (optarg
[0] == '{') {
3212 QObject
*obj
= qobject_from_json(optarg
, &error_fatal
);
3213 DeviceOption
*opt
= g_new0(DeviceOption
, 1);
3214 opt
->opts
= qobject_to(QDict
, obj
);
3215 loc_save(&opt
->loc
);
3216 assert(opt
->opts
!= NULL
);
3217 QTAILQ_INSERT_TAIL(&device_opts
, opt
, next
);
3219 if (!qemu_opts_parse_noisily(qemu_find_opts("device"),
3225 case QEMU_OPTION_smp
:
3226 machine_parse_property_opt(qemu_find_opts("smp-opts"),
3229 case QEMU_OPTION_vnc
:
3232 case QEMU_OPTION_no_acpi
:
3233 qdict_put_str(machine_opts_dict
, "acpi", "off");
3235 case QEMU_OPTION_no_hpet
:
3236 qdict_put_str(machine_opts_dict
, "hpet", "off");
3238 case QEMU_OPTION_no_reboot
:
3239 olist
= qemu_find_opts("action");
3240 qemu_opts_parse_noisily(olist
, "reboot=shutdown", false);
3242 case QEMU_OPTION_no_shutdown
:
3243 olist
= qemu_find_opts("action");
3244 qemu_opts_parse_noisily(olist
, "shutdown=pause", false);
3246 case QEMU_OPTION_uuid
:
3247 if (qemu_uuid_parse(optarg
, &qemu_uuid
) < 0) {
3248 error_report("failed to parse UUID string: wrong format");
3251 qemu_uuid_set
= true;
3253 case QEMU_OPTION_option_rom
:
3254 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
3255 error_report("too many option ROMs");
3258 opts
= qemu_opts_parse_noisily(qemu_find_opts("option-rom"),
3263 option_rom
[nb_option_roms
].name
= qemu_opt_get(opts
, "romfile");
3264 option_rom
[nb_option_roms
].bootindex
=
3265 qemu_opt_get_number(opts
, "bootindex", -1);
3266 if (!option_rom
[nb_option_roms
].name
) {
3267 error_report("Option ROM file is not specified");
3272 case QEMU_OPTION_semihosting
:
3273 qemu_semihosting_enable();
3275 case QEMU_OPTION_semihosting_config
:
3276 if (qemu_semihosting_config_options(optarg
) != 0) {
3280 case QEMU_OPTION_name
:
3281 opts
= qemu_opts_parse_noisily(qemu_find_opts("name"),
3286 /* Capture guest name if -msg guest-name is used later */
3287 error_guest_name
= qemu_opt_get(opts
, "guest");
3289 case QEMU_OPTION_prom_env
:
3290 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
3291 error_report("too many prom variables");
3294 prom_envs
[nb_prom_envs
] = optarg
;
3297 case QEMU_OPTION_old_param
:
3300 case QEMU_OPTION_rtc
:
3301 opts
= qemu_opts_parse_noisily(qemu_find_opts("rtc"), optarg
,
3307 case QEMU_OPTION_icount
:
3308 icount_opts
= qemu_opts_parse_noisily(qemu_find_opts("icount"),
3314 case QEMU_OPTION_incoming
:
3316 runstate_set(RUN_STATE_INMIGRATE
);
3320 case QEMU_OPTION_only_migratable
:
3321 only_migratable
= 1;
3323 case QEMU_OPTION_nodefaults
:
3326 case QEMU_OPTION_xen_domid
:
3327 if (!(accel_find("xen"))) {
3328 error_report("Option not supported for this target");
3331 xen_domid
= atoi(optarg
);
3333 case QEMU_OPTION_xen_attach
:
3334 if (!(accel_find("xen"))) {
3335 error_report("Option not supported for this target");
3338 xen_mode
= XEN_ATTACH
;
3340 case QEMU_OPTION_xen_domid_restrict
:
3341 if (!(accel_find("xen"))) {
3342 error_report("Option not supported for this target");
3345 xen_domid_restrict
= true;
3347 case QEMU_OPTION_trace
:
3348 trace_opt_parse(optarg
);
3350 case QEMU_OPTION_plugin
:
3351 qemu_plugin_opt_parse(optarg
, &plugin_list
);
3353 case QEMU_OPTION_readconfig
:
3354 qemu_read_config_file(optarg
, qemu_parse_config_group
, &error_fatal
);
3357 case QEMU_OPTION_spice
:
3358 olist
= qemu_find_opts_err("spice", NULL
);
3360 error_report("spice support is disabled");
3363 opts
= qemu_opts_parse_noisily(olist
, optarg
, false);
3370 case QEMU_OPTION_qtest
:
3371 qtest_chrdev
= optarg
;
3373 case QEMU_OPTION_qtest_log
:
3376 case QEMU_OPTION_sandbox
:
3377 olist
= qemu_find_opts("sandbox");
3379 #ifndef CONFIG_SECCOMP
3380 error_report("-sandbox support is not enabled "
3381 "in this QEMU binary");
3386 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3391 case QEMU_OPTION_add_fd
:
3393 opts
= qemu_opts_parse_noisily(qemu_find_opts("add-fd"),
3399 error_report("File descriptor passing is disabled on this "
3404 case QEMU_OPTION_object
:
3405 object_option_parse(optarg
);
3407 case QEMU_OPTION_overcommit
:
3408 opts
= qemu_opts_parse_noisily(qemu_find_opts("overcommit"),
3413 enable_mlock
= qemu_opt_get_bool(opts
, "mem-lock", false);
3414 enable_cpu_pm
= qemu_opt_get_bool(opts
, "cpu-pm", false);
3416 case QEMU_OPTION_compat
:
3421 v
= qobject_input_visitor_new_str(optarg
, NULL
,
3424 visit_type_CompatPolicy(v
, NULL
, &opts
, &error_fatal
);
3425 QAPI_CLONE_MEMBERS(CompatPolicy
, &compat_policy
, opts
);
3427 qapi_free_CompatPolicy(opts
);
3431 case QEMU_OPTION_msg
:
3432 opts
= qemu_opts_parse_noisily(qemu_find_opts("msg"), optarg
,
3437 configure_msg(opts
);
3439 case QEMU_OPTION_dump_vmstate
:
3440 if (vmstate_dump_file
) {
3441 error_report("only one '-dump-vmstate' "
3442 "option may be given");
3445 vmstate_dump_file
= fopen(optarg
, "w");
3446 if (vmstate_dump_file
== NULL
) {
3447 error_report("open %s: %s", optarg
, strerror(errno
));
3451 case QEMU_OPTION_enable_sync_profile
:
3454 case QEMU_OPTION_nouserconfig
:
3455 /* Nothing to be parsed here. Especially, do not error out below. */
3458 if (os_parse_cmd_args(popt
->index
, optarg
)) {
3459 error_report("Option not supported in this build");
3466 * Clear error location left behind by the loop.
3467 * Best done right after the loop. Do not insert code here!
3471 qemu_validate_options(machine_opts_dict
);
3472 qemu_process_sugar_options();
3475 * These options affect everything else and should be processed
3476 * before daemonizing.
3478 qemu_process_early_options();
3480 qemu_process_help_options();
3481 qemu_maybe_daemonize(pid_file
);
3484 * The trace backend must be initialized after daemonizing.
3485 * trace_init_backends() will call st_init(), which will create the
3486 * trace thread in the parent, and also register st_flush_trace_buffer()
3487 * in atexit(). This function will force the parent to wait for the
3488 * writeout thread to finish, which will not occur, and the parent
3489 * process will be left in the host.
3491 if (!trace_init_backends()) {
3496 qemu_init_main_loop(&error_fatal
);
3499 user_register_global_props();
3500 replay_configure(icount_opts
);
3502 configure_rtc(qemu_find_opts_singleton("rtc"));
3504 /* Transfer QemuOpts options into machine options */
3505 parse_memory_options();
3507 qemu_create_machine(machine_opts_dict
);
3511 qemu_disable_default_devices();
3512 qemu_create_default_devices();
3513 qemu_create_early_backends();
3515 qemu_apply_legacy_machine_options(machine_opts_dict
);
3516 qemu_apply_machine_options(machine_opts_dict
);
3517 qobject_unref(machine_opts_dict
);
3518 phase_advance(PHASE_MACHINE_CREATED
);
3521 * Note: uses machine properties such as kernel-irqchip, must run
3522 * after qemu_apply_machine_options.
3524 configure_accelerators(argv
[0]);
3525 phase_advance(PHASE_ACCEL_CREATED
);
3528 * Beware, QOM objects created before this point miss global and
3529 * compat properties.
3531 * Global properties get set up by qdev_prop_register_global(),
3532 * called from user_register_global_props(), and certain option
3533 * desugaring. Also in CPU feature desugaring (buried in
3534 * parse_cpu_option()), which happens below this point, but may
3535 * only target the CPU type, which can only be created after
3536 * parse_cpu_option() returned the type.
3538 * Machine compat properties: object_set_machine_compat_props().
3539 * Accelerator compat props: object_set_accelerator_compat_props(),
3540 * called from do_configure_accelerator().
3543 machine_class
= MACHINE_GET_CLASS(current_machine
);
3544 if (!qtest_enabled() && machine_class
->deprecation_reason
) {
3545 warn_report("Machine type '%s' is deprecated: %s",
3546 machine_class
->name
, machine_class
->deprecation_reason
);
3550 * Note: creates a QOM object, must run only after global and
3551 * compat properties have been set up.
3553 migration_object_init();
3555 qemu_create_late_backends();
3557 /* parse features once if machine provides default cpu_type */
3558 current_machine
->cpu_type
= machine_class
->default_cpu_type
;
3560 current_machine
->cpu_type
= parse_cpu_option(cpu_option
);
3562 /* NB: for machine none cpu_type could STILL be NULL here! */
3564 qemu_resolve_machine_memdev();
3565 parse_numa_opts(current_machine
);
3567 if (vmstate_dump_file
) {
3569 module_load_qom_all();
3570 dump_vmstate_json_to_file(vmstate_dump_file
);
3574 if (!preconfig_requested
) {
3575 qmp_x_exit_preconfig(&error_fatal
);
3577 qemu_init_displays();
3578 accel_setup_post(current_machine
);