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 "sysemu/watchdog.h"
57 #include "hw/firmware/smbios.h"
58 #include "hw/acpi/acpi.h"
59 #include "hw/xen/xen.h"
60 #include "hw/loader.h"
61 #include "monitor/qdev.h"
63 #include "net/slirp.h"
64 #include "monitor/monitor.h"
65 #include "ui/console.h"
67 #include "sysemu/sysemu.h"
68 #include "sysemu/numa.h"
69 #include "sysemu/hostmem.h"
70 #include "exec/gdbstub.h"
71 #include "qemu/timer.h"
72 #include "chardev/char.h"
73 #include "qemu/bitmap.h"
75 #include "sysemu/blockdev.h"
76 #include "hw/block/block.h"
77 #include "hw/i386/x86.h"
78 #include "hw/i386/pc.h"
79 #include "migration/misc.h"
80 #include "migration/snapshot.h"
81 #include "sysemu/tpm.h"
82 #include "sysemu/dma.h"
83 #include "hw/audio/soundhw.h"
84 #include "audio/audio.h"
85 #include "sysemu/cpus.h"
86 #include "sysemu/cpu-timers.h"
87 #include "migration/colo.h"
88 #include "migration/postcopy-ram.h"
89 #include "sysemu/kvm.h"
90 #include "sysemu/hax.h"
91 #include "qapi/qobject-input-visitor.h"
92 #include "qemu/option.h"
93 #include "qemu/config-file.h"
94 #include "qemu/qemu-options.h"
95 #include "qemu/main-loop.h"
97 #include "fsdev/qemu-fsdev.h"
99 #include "sysemu/qtest.h"
101 #include "disas/disas.h"
104 #include "trace/control.h"
105 #include "qemu/plugin.h"
106 #include "qemu/queue.h"
107 #include "sysemu/arch_init.h"
108 #include "exec/confidential-guest-support.h"
110 #include "ui/qemu-spice.h"
111 #include "qapi/string-input-visitor.h"
112 #include "qapi/opts-visitor.h"
113 #include "qapi/clone-visitor.h"
114 #include "qom/object_interfaces.h"
115 #include "semihosting/semihost.h"
116 #include "crypto/init.h"
117 #include "sysemu/replay.h"
118 #include "qapi/qapi-events-run-state.h"
119 #include "qapi/qapi-types-audio.h"
120 #include "qapi/qapi-visit-audio.h"
121 #include "qapi/qapi-visit-block-core.h"
122 #include "qapi/qapi-visit-compat.h"
123 #include "qapi/qapi-visit-machine.h"
124 #include "qapi/qapi-visit-ui.h"
125 #include "qapi/qapi-commands-block-core.h"
126 #include "qapi/qapi-commands-migration.h"
127 #include "qapi/qapi-commands-misc.h"
128 #include "qapi/qapi-visit-qom.h"
129 #include "qapi/qapi-commands-ui.h"
130 #include "qapi/qmp/qdict.h"
131 #include "block/qdict.h"
132 #include "qapi/qmp/qerror.h"
133 #include "sysemu/iothread.h"
134 #include "qemu/guest-random.h"
135 #include "qemu/keyval.h"
137 #include "config-host.h"
139 #define MAX_VIRTIO_CONSOLES 1
141 typedef struct BlockdevOptionsQueueEntry
{
142 BlockdevOptions
*bdo
;
144 QSIMPLEQ_ENTRY(BlockdevOptionsQueueEntry
) entry
;
145 } BlockdevOptionsQueueEntry
;
147 typedef QSIMPLEQ_HEAD(, BlockdevOptionsQueueEntry
) BlockdevOptionsQueue
;
149 typedef struct ObjectOption
{
151 QTAILQ_ENTRY(ObjectOption
) next
;
154 typedef struct DeviceOption
{
157 QTAILQ_ENTRY(DeviceOption
) next
;
160 static const char *cpu_option
;
161 static const char *mem_path
;
162 static const char *incoming
;
163 static const char *loadvm
;
164 static const char *accelerators
;
165 static bool have_custom_ram_size
;
166 static const char *ram_memdev_id
;
167 static QDict
*machine_opts_dict
;
168 static QTAILQ_HEAD(, ObjectOption
) object_opts
= QTAILQ_HEAD_INITIALIZER(object_opts
);
169 static QTAILQ_HEAD(, DeviceOption
) device_opts
= QTAILQ_HEAD_INITIALIZER(device_opts
);
170 static int display_remote
;
172 static bool preconfig_requested
;
173 static QemuPluginList plugin_list
= QTAILQ_HEAD_INITIALIZER(plugin_list
);
174 static BlockdevOptionsQueue bdo_queue
= QSIMPLEQ_HEAD_INITIALIZER(bdo_queue
);
175 static bool nographic
= false;
176 static int mem_prealloc
; /* force preallocation of physical target memory */
177 static const char *vga_model
= NULL
;
178 static DisplayOptions dpy
;
179 static int num_serial_hds
;
180 static Chardev
**serial_hds
;
181 static const char *log_mask
;
182 static const char *log_file
;
183 static bool list_data_dirs
;
184 static const char *watchdog
;
185 static const char *qtest_chrdev
;
186 static const char *qtest_log
;
188 static int has_defaults
= 1;
189 static int default_serial
= 1;
190 static int default_parallel
= 1;
191 static int default_monitor
= 1;
192 static int default_floppy
= 1;
193 static int default_cdrom
= 1;
194 static int default_sdcard
= 1;
195 static int default_vga
= 1;
196 static int default_net
= 1;
202 { .driver
= "isa-serial", .flag
= &default_serial
},
203 { .driver
= "isa-parallel", .flag
= &default_parallel
},
204 { .driver
= "isa-fdc", .flag
= &default_floppy
},
205 { .driver
= "floppy", .flag
= &default_floppy
},
206 { .driver
= "ide-cd", .flag
= &default_cdrom
},
207 { .driver
= "ide-hd", .flag
= &default_cdrom
},
208 { .driver
= "scsi-cd", .flag
= &default_cdrom
},
209 { .driver
= "scsi-hd", .flag
= &default_cdrom
},
210 { .driver
= "VGA", .flag
= &default_vga
},
211 { .driver
= "isa-vga", .flag
= &default_vga
},
212 { .driver
= "cirrus-vga", .flag
= &default_vga
},
213 { .driver
= "isa-cirrus-vga", .flag
= &default_vga
},
214 { .driver
= "vmware-svga", .flag
= &default_vga
},
215 { .driver
= "qxl-vga", .flag
= &default_vga
},
216 { .driver
= "virtio-vga", .flag
= &default_vga
},
217 { .driver
= "ati-vga", .flag
= &default_vga
},
218 { .driver
= "vhost-user-vga", .flag
= &default_vga
},
219 { .driver
= "virtio-vga-gl", .flag
= &default_vga
},
222 static QemuOptsList qemu_rtc_opts
= {
224 .head
= QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts
.head
),
229 .type
= QEMU_OPT_STRING
,
232 .type
= QEMU_OPT_STRING
,
235 .type
= QEMU_OPT_STRING
,
237 { /* end of list */ }
241 static QemuOptsList qemu_option_rom_opts
= {
242 .name
= "option-rom",
243 .implied_opt_name
= "romfile",
244 .head
= QTAILQ_HEAD_INITIALIZER(qemu_option_rom_opts
.head
),
248 .type
= QEMU_OPT_NUMBER
,
251 .type
= QEMU_OPT_STRING
,
253 { /* end of list */ }
257 static QemuOptsList qemu_accel_opts
= {
259 .implied_opt_name
= "accel",
260 .head
= QTAILQ_HEAD_INITIALIZER(qemu_accel_opts
.head
),
263 * no elements => accept any
264 * sanity checking will happen later
265 * when setting accelerator properties
271 static QemuOptsList qemu_boot_opts
= {
273 .implied_opt_name
= "order",
275 .head
= QTAILQ_HEAD_INITIALIZER(qemu_boot_opts
.head
),
279 .type
= QEMU_OPT_STRING
,
282 .type
= QEMU_OPT_STRING
,
285 .type
= QEMU_OPT_BOOL
,
288 .type
= QEMU_OPT_STRING
,
290 .name
= "splash-time",
291 .type
= QEMU_OPT_NUMBER
,
293 .name
= "reboot-timeout",
294 .type
= QEMU_OPT_NUMBER
,
297 .type
= QEMU_OPT_BOOL
,
303 static QemuOptsList qemu_add_fd_opts
= {
305 .head
= QTAILQ_HEAD_INITIALIZER(qemu_add_fd_opts
.head
),
309 .type
= QEMU_OPT_NUMBER
,
310 .help
= "file descriptor of which a duplicate is added to fd set",
313 .type
= QEMU_OPT_NUMBER
,
314 .help
= "ID of the fd set to add fd to",
317 .type
= QEMU_OPT_STRING
,
318 .help
= "free-form string used to describe fd",
320 { /* end of list */ }
324 static QemuOptsList qemu_object_opts
= {
326 .implied_opt_name
= "qom-type",
327 .head
= QTAILQ_HEAD_INITIALIZER(qemu_object_opts
.head
),
333 static QemuOptsList qemu_tpmdev_opts
= {
335 .implied_opt_name
= "type",
336 .head
= QTAILQ_HEAD_INITIALIZER(qemu_tpmdev_opts
.head
),
338 /* options are defined in the TPM backends */
339 { /* end of list */ }
343 static QemuOptsList qemu_overcommit_opts
= {
344 .name
= "overcommit",
345 .head
= QTAILQ_HEAD_INITIALIZER(qemu_overcommit_opts
.head
),
349 .type
= QEMU_OPT_BOOL
,
353 .type
= QEMU_OPT_BOOL
,
355 { /* end of list */ }
359 static QemuOptsList qemu_msg_opts
= {
361 .head
= QTAILQ_HEAD_INITIALIZER(qemu_msg_opts
.head
),
365 .type
= QEMU_OPT_BOOL
,
368 .name
= "guest-name",
369 .type
= QEMU_OPT_BOOL
,
370 .help
= "Prepends guest name for error messages but only if "
371 "-name guest is set otherwise option is ignored\n",
373 { /* end of list */ }
377 static QemuOptsList qemu_name_opts
= {
379 .implied_opt_name
= "guest",
381 .head
= QTAILQ_HEAD_INITIALIZER(qemu_name_opts
.head
),
385 .type
= QEMU_OPT_STRING
,
386 .help
= "Sets the name of the guest.\n"
387 "This name will be displayed in the SDL window caption.\n"
388 "The name will also be used for the VNC server",
391 .type
= QEMU_OPT_STRING
,
392 .help
= "Sets the name of the QEMU process, as shown in top etc",
394 .name
= "debug-threads",
395 .type
= QEMU_OPT_BOOL
,
396 .help
= "When enabled, name the individual threads; defaults off.\n"
397 "NOTE: The thread names are for debugging and not a\n"
400 { /* End of list */ }
404 static QemuOptsList qemu_mem_opts
= {
406 .implied_opt_name
= "size",
407 .head
= QTAILQ_HEAD_INITIALIZER(qemu_mem_opts
.head
),
412 .type
= QEMU_OPT_SIZE
,
416 .type
= QEMU_OPT_NUMBER
,
420 .type
= QEMU_OPT_SIZE
,
422 { /* end of list */ }
426 static QemuOptsList qemu_icount_opts
= {
428 .implied_opt_name
= "shift",
430 .head
= QTAILQ_HEAD_INITIALIZER(qemu_icount_opts
.head
),
434 .type
= QEMU_OPT_STRING
,
437 .type
= QEMU_OPT_BOOL
,
440 .type
= QEMU_OPT_BOOL
,
443 .type
= QEMU_OPT_STRING
,
446 .type
= QEMU_OPT_STRING
,
448 .name
= "rrsnapshot",
449 .type
= QEMU_OPT_STRING
,
451 { /* end of list */ }
455 static QemuOptsList qemu_fw_cfg_opts
= {
457 .implied_opt_name
= "name",
458 .head
= QTAILQ_HEAD_INITIALIZER(qemu_fw_cfg_opts
.head
),
462 .type
= QEMU_OPT_STRING
,
463 .help
= "Sets the fw_cfg name of the blob to be inserted",
466 .type
= QEMU_OPT_STRING
,
467 .help
= "Sets the name of the file from which "
468 "the fw_cfg blob will be loaded",
471 .type
= QEMU_OPT_STRING
,
472 .help
= "Sets content of the blob to be inserted from a string",
475 .type
= QEMU_OPT_STRING
,
476 .help
= "Sets id of the object generating the fw_cfg blob "
479 { /* end of list */ }
483 static QemuOptsList qemu_action_opts
= {
486 .head
= QTAILQ_HEAD_INITIALIZER(qemu_action_opts
.head
),
490 .type
= QEMU_OPT_STRING
,
493 .type
= QEMU_OPT_STRING
,
496 .type
= QEMU_OPT_STRING
,
499 .type
= QEMU_OPT_STRING
,
501 { /* end of list */ }
505 const char *qemu_get_vm_name(void)
510 static void default_driver_disable(const char *driver
)
518 for (i
= 0; i
< ARRAY_SIZE(default_list
); i
++) {
519 if (strcmp(default_list
[i
].driver
, driver
) != 0)
521 *(default_list
[i
].flag
) = 0;
525 static int default_driver_check(void *opaque
, QemuOpts
*opts
, Error
**errp
)
527 const char *driver
= qemu_opt_get(opts
, "driver");
529 default_driver_disable(driver
);
533 static void default_driver_check_json(void)
537 QTAILQ_FOREACH(opt
, &device_opts
, next
) {
538 const char *driver
= qdict_get_try_str(opt
->opts
, "driver");
539 default_driver_disable(driver
);
543 static int parse_name(void *opaque
, QemuOpts
*opts
, Error
**errp
)
545 const char *proc_name
;
547 if (qemu_opt_get(opts
, "debug-threads")) {
548 qemu_thread_naming(qemu_opt_get_bool(opts
, "debug-threads", false));
550 qemu_name
= qemu_opt_get(opts
, "guest");
552 proc_name
= qemu_opt_get(opts
, "process");
554 os_set_proc_name(proc_name
);
560 bool defaults_enabled(void)
566 static int parse_add_fd(void *opaque
, QemuOpts
*opts
, Error
**errp
)
568 int fd
, dupfd
, flags
;
570 const char *fd_opaque
= NULL
;
573 fd
= qemu_opt_get_number(opts
, "fd", -1);
574 fdset_id
= qemu_opt_get_number(opts
, "set", -1);
575 fd_opaque
= qemu_opt_get(opts
, "opaque");
578 error_setg(errp
, "fd option is required and must be non-negative");
582 if (fd
<= STDERR_FILENO
) {
583 error_setg(errp
, "fd cannot be a standard I/O stream");
588 * All fds inherited across exec() necessarily have FD_CLOEXEC
589 * clear, while qemu sets FD_CLOEXEC on all other fds used internally.
591 flags
= fcntl(fd
, F_GETFD
);
592 if (flags
== -1 || (flags
& FD_CLOEXEC
)) {
593 error_setg(errp
, "fd is not valid or already in use");
598 error_setg(errp
, "set option is required and must be non-negative");
602 #ifdef F_DUPFD_CLOEXEC
603 dupfd
= fcntl(fd
, F_DUPFD_CLOEXEC
, 0);
607 qemu_set_cloexec(dupfd
);
611 error_setg(errp
, "error duplicating fd: %s", strerror(errno
));
615 /* add the duplicate fd, and optionally the opaque string, to the fd set */
616 fdinfo
= monitor_fdset_add_fd(dupfd
, true, fdset_id
, !!fd_opaque
, fd_opaque
,
623 static int cleanup_add_fd(void *opaque
, QemuOpts
*opts
, Error
**errp
)
627 fd
= qemu_opt_get_number(opts
, "fd", -1);
634 /***********************************************************/
635 /* QEMU Block devices */
637 #define HD_OPTS "media=disk"
638 #define CDROM_OPTS "media=cdrom"
640 #define PFLASH_OPTS ""
644 static int drive_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
646 BlockInterfaceType
*block_default_type
= opaque
;
648 return drive_new(opts
, *block_default_type
, errp
) == NULL
;
651 static int drive_enable_snapshot(void *opaque
, QemuOpts
*opts
, Error
**errp
)
653 if (qemu_opt_get(opts
, "snapshot") == NULL
) {
654 qemu_opt_set(opts
, "snapshot", "on", &error_abort
);
659 static void default_drive(int enable
, int snapshot
, BlockInterfaceType type
,
660 int index
, const char *optstr
)
665 if (!enable
|| drive_get_by_index(type
, index
)) {
669 opts
= drive_add(type
, index
, NULL
, optstr
);
671 drive_enable_snapshot(NULL
, opts
, NULL
);
674 dinfo
= drive_new(opts
, type
, &error_abort
);
675 dinfo
->is_default
= true;
679 static void configure_blockdev(BlockdevOptionsQueue
*bdo_queue
,
680 MachineClass
*machine_class
, int snapshot
)
683 * If the currently selected machine wishes to override the
684 * units-per-bus property of its default HBA interface type, do so
687 if (machine_class
->units_per_default_bus
) {
688 override_max_devs(machine_class
->block_default_type
,
689 machine_class
->units_per_default_bus
);
692 /* open the virtual block devices */
693 while (!QSIMPLEQ_EMPTY(bdo_queue
)) {
694 BlockdevOptionsQueueEntry
*bdo
= QSIMPLEQ_FIRST(bdo_queue
);
696 QSIMPLEQ_REMOVE_HEAD(bdo_queue
, entry
);
697 loc_push_restore(&bdo
->loc
);
698 qmp_blockdev_add(bdo
->bdo
, &error_fatal
);
700 qapi_free_BlockdevOptions(bdo
->bdo
);
704 qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot
,
707 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func
,
708 &machine_class
->block_default_type
, &error_fatal
)) {
709 /* We printed help */
713 default_drive(default_cdrom
, snapshot
, machine_class
->block_default_type
, 2,
715 default_drive(default_floppy
, snapshot
, IF_FLOPPY
, 0, FD_OPTS
);
716 default_drive(default_sdcard
, snapshot
, IF_SD
, 0, SD_OPTS
);
720 static QemuOptsList qemu_smp_opts
= {
722 .implied_opt_name
= "cpus",
724 .head
= QTAILQ_HEAD_INITIALIZER(qemu_smp_opts
.head
),
728 .type
= QEMU_OPT_NUMBER
,
731 .type
= QEMU_OPT_NUMBER
,
734 .type
= QEMU_OPT_NUMBER
,
737 .type
= QEMU_OPT_NUMBER
,
740 .type
= QEMU_OPT_NUMBER
,
743 .type
= QEMU_OPT_NUMBER
,
746 .type
= QEMU_OPT_NUMBER
,
752 static void realtime_init(void)
755 if (os_mlock() < 0) {
756 error_report("locking memory failed");
763 static void configure_msg(QemuOpts
*opts
)
765 message_with_timestamp
= qemu_opt_get_bool(opts
, "timestamp", false);
766 error_with_guestname
= qemu_opt_get_bool(opts
, "guest-name", false);
770 /***********************************************************/
773 static int usb_device_add(const char *devname
)
775 USBDevice
*dev
= NULL
;
777 if (!machine_usb(current_machine
)) {
781 dev
= usbdevice_create(devname
);
788 static int usb_parse(const char *cmdline
)
791 r
= usb_device_add(cmdline
);
793 error_report("could not add USB device '%s'", cmdline
);
798 /***********************************************************/
799 /* machine registration */
801 static MachineClass
*find_machine(const char *name
, GSList
*machines
)
805 for (el
= machines
; el
; el
= el
->next
) {
806 MachineClass
*mc
= el
->data
;
808 if (!strcmp(mc
->name
, name
) || !g_strcmp0(mc
->alias
, name
)) {
816 static MachineClass
*find_default_machine(GSList
*machines
)
819 MachineClass
*default_machineclass
= NULL
;
821 for (el
= machines
; el
; el
= el
->next
) {
822 MachineClass
*mc
= el
->data
;
824 if (mc
->is_default
) {
825 assert(default_machineclass
== NULL
&& "Multiple default machines");
826 default_machineclass
= mc
;
830 return default_machineclass
;
833 static void version(void)
835 printf("QEMU emulator version " QEMU_FULL_VERSION
"\n"
836 QEMU_COPYRIGHT
"\n");
839 static void help(int exitcode
)
842 printf("usage: %s [options] [disk_image]\n\n"
843 "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
846 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
847 if ((arch_mask) & arch_type) \
848 fputs(opt_help, stdout);
850 #define ARCHHEADING(text, arch_mask) \
851 if ((arch_mask) & arch_type) \
852 puts(stringify(text));
854 #define DEFHEADING(text) ARCHHEADING(text, QEMU_ARCH_ALL)
856 #include "qemu-options.def"
858 printf("\nDuring emulation, the following keys are useful:\n"
859 "ctrl-alt-f toggle full screen\n"
860 "ctrl-alt-n switch to virtual console 'n'\n"
861 "ctrl-alt toggle mouse and keyboard grab\n"
863 "When using -nographic, press 'ctrl-a h' to get some help.\n"
865 QEMU_HELP_BOTTOM
"\n");
870 #define HAS_ARG 0x0001
872 typedef struct QEMUOption
{
879 static const QEMUOption qemu_options
[] = {
880 { "h", 0, QEMU_OPTION_h
, QEMU_ARCH_ALL
},
882 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
883 { option, opt_arg, opt_enum, arch_mask },
884 #define DEFHEADING(text)
885 #define ARCHHEADING(text, arch_mask)
887 #include "qemu-options.def"
891 typedef struct VGAInterfaceInfo
{
892 const char *opt_name
; /* option name */
893 const char *name
; /* human-readable name */
894 /* Class names indicating that support is available.
895 * If no class is specified, the interface is always available */
896 const char *class_names
[2];
899 static const VGAInterfaceInfo vga_interfaces
[VGA_TYPE_MAX
] = {
902 .name
= "no graphic card",
906 .name
= "standard VGA",
907 .class_names
= { "VGA", "isa-vga" },
910 .opt_name
= "cirrus",
911 .name
= "Cirrus VGA",
912 .class_names
= { "cirrus-vga", "isa-cirrus-vga" },
915 .opt_name
= "vmware",
916 .name
= "VMWare SVGA",
917 .class_names
= { "vmware-svga" },
920 .opt_name
= "virtio",
921 .name
= "Virtio VGA",
922 .class_names
= { "virtio-vga" },
927 .class_names
= { "qxl-vga" },
931 .name
= "TCX framebuffer",
932 .class_names
= { "sun-tcx" },
936 .name
= "CG3 framebuffer",
937 .class_names
= { "cgthree" },
939 #ifdef CONFIG_XEN_BACKEND
942 .name
= "Xen paravirtualized framebuffer",
947 static bool vga_interface_available(VGAInterfaceType t
)
949 const VGAInterfaceInfo
*ti
= &vga_interfaces
[t
];
951 assert(t
< VGA_TYPE_MAX
);
952 return !ti
->class_names
[0] ||
953 module_object_class_by_name(ti
->class_names
[0]) ||
954 module_object_class_by_name(ti
->class_names
[1]);
958 get_default_vga_model(const MachineClass
*machine_class
)
960 if (machine_class
->default_display
) {
961 return machine_class
->default_display
;
962 } else if (vga_interface_available(VGA_CIRRUS
)) {
964 } else if (vga_interface_available(VGA_STD
)) {
971 static void select_vgahw(const MachineClass
*machine_class
, const char *p
)
976 if (g_str_equal(p
, "help")) {
977 const char *def
= get_default_vga_model(machine_class
);
979 for (t
= 0; t
< VGA_TYPE_MAX
; t
++) {
980 const VGAInterfaceInfo
*ti
= &vga_interfaces
[t
];
982 if (vga_interface_available(t
) && ti
->opt_name
) {
983 printf("%-20s %s%s\n", ti
->opt_name
, ti
->name
?: "",
984 (def
&& g_str_equal(ti
->opt_name
, def
)) ?
991 assert(vga_interface_type
== VGA_NONE
);
992 for (t
= 0; t
< VGA_TYPE_MAX
; t
++) {
993 const VGAInterfaceInfo
*ti
= &vga_interfaces
[t
];
994 if (ti
->opt_name
&& strstart(p
, ti
->opt_name
, &opts
)) {
995 if (!vga_interface_available(t
)) {
996 error_report("%s not available", ti
->name
);
999 vga_interface_type
= t
;
1003 if (t
== VGA_TYPE_MAX
) {
1005 error_report("unknown vga type: %s", p
);
1009 const char *nextopt
;
1011 if (strstart(opts
, ",retrace=", &nextopt
)) {
1013 if (strstart(opts
, "dumb", &nextopt
))
1014 vga_retrace_method
= VGA_RETRACE_DUMB
;
1015 else if (strstart(opts
, "precise", &nextopt
))
1016 vga_retrace_method
= VGA_RETRACE_PRECISE
;
1017 else goto invalid_vga
;
1018 } else goto invalid_vga
;
1023 static void parse_display_qapi(const char *optarg
)
1025 DisplayOptions
*opts
;
1028 v
= qobject_input_visitor_new_str(optarg
, "type", &error_fatal
);
1030 visit_type_DisplayOptions(v
, NULL
, &opts
, &error_fatal
);
1031 QAPI_CLONE_MEMBERS(DisplayOptions
, &dpy
, opts
);
1033 qapi_free_DisplayOptions(opts
);
1037 DisplayOptions
*qmp_query_display_options(Error
**errp
)
1039 return QAPI_CLONE(DisplayOptions
, &dpy
);
1042 static void parse_display(const char *p
)
1046 if (is_help_option(p
)) {
1047 qemu_display_help();
1051 if (strstart(p
, "vnc", &opts
)) {
1053 * vnc isn't a (local) DisplayType but a protocol for remote
1057 vnc_parse(opts
+ 1);
1059 error_report("VNC requires a display argument vnc=<display>");
1063 parse_display_qapi(p
);
1067 static inline bool nonempty_str(const char *str
)
1072 static int parse_fw_cfg(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1076 const char *name
, *file
, *str
, *gen_id
;
1077 FWCfgState
*fw_cfg
= (FWCfgState
*) opaque
;
1079 if (fw_cfg
== NULL
) {
1080 error_setg(errp
, "fw_cfg device not available");
1083 name
= qemu_opt_get(opts
, "name");
1084 file
= qemu_opt_get(opts
, "file");
1085 str
= qemu_opt_get(opts
, "string");
1086 gen_id
= qemu_opt_get(opts
, "gen_id");
1088 /* we need the name, and exactly one of: file, content string, gen_id */
1089 if (!nonempty_str(name
) ||
1090 nonempty_str(file
) + nonempty_str(str
) + nonempty_str(gen_id
) != 1) {
1091 error_setg(errp
, "name, plus exactly one of file,"
1092 " string and gen_id, are needed");
1095 if (strlen(name
) > FW_CFG_MAX_FILE_PATH
- 1) {
1096 error_setg(errp
, "name too long (max. %d char)",
1097 FW_CFG_MAX_FILE_PATH
- 1);
1100 if (nonempty_str(gen_id
)) {
1102 * In this particular case where the content is populated
1103 * internally, the "etc/" namespace protection is relaxed,
1104 * so do not emit a warning.
1106 } else if (strncmp(name
, "opt/", 4) != 0) {
1107 warn_report("externally provided fw_cfg item names "
1108 "should be prefixed with \"opt/\"");
1110 if (nonempty_str(str
)) {
1111 size
= strlen(str
); /* NUL terminator NOT included in fw_cfg blob */
1112 buf
= g_memdup(str
, size
);
1113 } else if (nonempty_str(gen_id
)) {
1114 if (!fw_cfg_add_from_generator(fw_cfg
, name
, gen_id
, errp
)) {
1120 if (!g_file_get_contents(file
, &buf
, &size
, &err
)) {
1121 error_setg(errp
, "can't load %s: %s", file
, err
->message
);
1126 /* For legacy, keep user files in a specific global order. */
1127 fw_cfg_set_order_override(fw_cfg
, FW_CFG_ORDER_OVERRIDE_USER
);
1128 fw_cfg_add_file(fw_cfg
, name
, buf
, size
);
1129 fw_cfg_reset_order_override(fw_cfg
);
1133 static int device_help_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1135 return qdev_device_help(opts
);
1138 static int device_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1142 dev
= qdev_device_add(opts
, errp
);
1143 if (!dev
&& *errp
) {
1144 error_report_err(*errp
);
1147 object_unref(OBJECT(dev
));
1152 static int chardev_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1154 Error
*local_err
= NULL
;
1156 if (!qemu_chr_new_from_opts(opts
, NULL
, &local_err
)) {
1158 error_propagate(errp
, local_err
);
1166 #ifdef CONFIG_VIRTFS
1167 static int fsdev_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1169 return qemu_fsdev_add(opts
, errp
);
1173 static int mon_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1175 return monitor_init_opts(opts
, errp
);
1178 static void monitor_parse(const char *optarg
, const char *mode
, bool pretty
)
1180 static int monitor_device_index
= 0;
1185 if (strstart(optarg
, "chardev:", &p
)) {
1186 snprintf(label
, sizeof(label
), "%s", p
);
1188 snprintf(label
, sizeof(label
), "compat_monitor%d",
1189 monitor_device_index
);
1190 opts
= qemu_chr_parse_compat(label
, optarg
, true);
1192 error_report("parse error: %s", optarg
);
1197 opts
= qemu_opts_create(qemu_find_opts("mon"), label
, 1, &error_fatal
);
1198 qemu_opt_set(opts
, "mode", mode
, &error_abort
);
1199 qemu_opt_set(opts
, "chardev", label
, &error_abort
);
1200 if (!strcmp(mode
, "control")) {
1201 qemu_opt_set_bool(opts
, "pretty", pretty
, &error_abort
);
1203 assert(pretty
== false);
1205 monitor_device_index
++;
1208 struct device_config
{
1210 DEV_USB
, /* -usbdevice */
1211 DEV_SERIAL
, /* -serial */
1212 DEV_PARALLEL
, /* -parallel */
1213 DEV_DEBUGCON
, /* -debugcon */
1214 DEV_GDB
, /* -gdb, -s */
1215 DEV_SCLP
, /* s390 sclp */
1217 const char *cmdline
;
1219 QTAILQ_ENTRY(device_config
) next
;
1222 static QTAILQ_HEAD(, device_config
) device_configs
=
1223 QTAILQ_HEAD_INITIALIZER(device_configs
);
1225 static void add_device_config(int type
, const char *cmdline
)
1227 struct device_config
*conf
;
1229 conf
= g_malloc0(sizeof(*conf
));
1231 conf
->cmdline
= cmdline
;
1232 loc_save(&conf
->loc
);
1233 QTAILQ_INSERT_TAIL(&device_configs
, conf
, next
);
1236 static int foreach_device_config(int type
, int (*func
)(const char *cmdline
))
1238 struct device_config
*conf
;
1241 QTAILQ_FOREACH(conf
, &device_configs
, next
) {
1242 if (conf
->type
!= type
)
1244 loc_push_restore(&conf
->loc
);
1245 rc
= func(conf
->cmdline
);
1246 loc_pop(&conf
->loc
);
1254 static void qemu_disable_default_devices(void)
1256 MachineClass
*machine_class
= MACHINE_GET_CLASS(current_machine
);
1258 default_driver_check_json();
1259 qemu_opts_foreach(qemu_find_opts("device"),
1260 default_driver_check
, NULL
, NULL
);
1261 qemu_opts_foreach(qemu_find_opts("global"),
1262 default_driver_check
, NULL
, NULL
);
1264 if (!vga_model
&& !default_vga
) {
1265 vga_interface_type
= VGA_DEVICE
;
1266 vga_interface_created
= true;
1268 if (!has_defaults
|| machine_class
->no_serial
) {
1271 if (!has_defaults
|| machine_class
->no_parallel
) {
1272 default_parallel
= 0;
1274 if (!has_defaults
|| machine_class
->no_floppy
) {
1277 if (!has_defaults
|| machine_class
->no_cdrom
) {
1280 if (!has_defaults
|| machine_class
->no_sdcard
) {
1283 if (!has_defaults
) {
1284 default_monitor
= 0;
1290 static void qemu_create_default_devices(void)
1292 MachineClass
*machine_class
= MACHINE_GET_CLASS(current_machine
);
1294 if (is_daemonized()) {
1295 /* According to documentation and historically, -nographic redirects
1296 * serial port, parallel port and monitor to stdio, which does not work
1297 * with -daemonize. We can redirect these to null instead, but since
1298 * -nographic is legacy, let's just error out.
1299 * We disallow -nographic only if all other ports are not redirected
1300 * explicitly, to not break existing legacy setups which uses
1301 * -nographic _and_ redirects all ports explicitly - this is valid
1302 * usage, -nographic is just a no-op in this case.
1305 && (default_parallel
|| default_serial
|| default_monitor
)) {
1306 error_report("-nographic cannot be used with -daemonize");
1312 if (default_parallel
)
1313 add_device_config(DEV_PARALLEL
, "null");
1314 if (default_serial
&& default_monitor
) {
1315 add_device_config(DEV_SERIAL
, "mon:stdio");
1318 add_device_config(DEV_SERIAL
, "stdio");
1319 if (default_monitor
)
1320 monitor_parse("stdio", "readline", false);
1324 add_device_config(DEV_SERIAL
, "vc:80Cx24C");
1325 if (default_parallel
)
1326 add_device_config(DEV_PARALLEL
, "vc:80Cx24C");
1327 if (default_monitor
)
1328 monitor_parse("vc:80Cx24C", "readline", false);
1332 QemuOptsList
*net
= qemu_find_opts("net");
1333 qemu_opts_parse(net
, "nic", true, &error_abort
);
1335 qemu_opts_parse(net
, "user", true, &error_abort
);
1339 #if defined(CONFIG_VNC)
1340 if (!QTAILQ_EMPTY(&(qemu_find_opts("vnc")->head
))) {
1344 if (dpy
.type
== DISPLAY_TYPE_DEFAULT
&& !display_remote
) {
1345 if (!qemu_display_find_default(&dpy
)) {
1346 dpy
.type
= DISPLAY_TYPE_NONE
;
1347 #if defined(CONFIG_VNC)
1348 vnc_parse("localhost:0,to=99,id=default");
1352 if (dpy
.type
== DISPLAY_TYPE_DEFAULT
) {
1353 dpy
.type
= DISPLAY_TYPE_NONE
;
1356 /* If no default VGA is requested, the default is "none". */
1358 vga_model
= get_default_vga_model(machine_class
);
1361 select_vgahw(machine_class
, vga_model
);
1365 static int serial_parse(const char *devname
)
1367 int index
= num_serial_hds
;
1370 if (strcmp(devname
, "none") == 0)
1372 snprintf(label
, sizeof(label
), "serial%d", index
);
1373 serial_hds
= g_renew(Chardev
*, serial_hds
, index
+ 1);
1375 serial_hds
[index
] = qemu_chr_new_mux_mon(label
, devname
, NULL
);
1376 if (!serial_hds
[index
]) {
1377 error_report("could not connect serial device"
1378 " to character backend '%s'", devname
);
1385 Chardev
*serial_hd(int i
)
1388 if (i
< num_serial_hds
) {
1389 return serial_hds
[i
];
1394 static int parallel_parse(const char *devname
)
1396 static int index
= 0;
1399 if (strcmp(devname
, "none") == 0)
1401 if (index
== MAX_PARALLEL_PORTS
) {
1402 error_report("too many parallel ports");
1405 snprintf(label
, sizeof(label
), "parallel%d", index
);
1406 parallel_hds
[index
] = qemu_chr_new_mux_mon(label
, devname
, NULL
);
1407 if (!parallel_hds
[index
]) {
1408 error_report("could not connect parallel device"
1409 " to character backend '%s'", devname
);
1416 static int debugcon_parse(const char *devname
)
1420 if (!qemu_chr_new_mux_mon("debugcon", devname
, NULL
)) {
1421 error_report("invalid character backend '%s'", devname
);
1424 opts
= qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL
);
1426 error_report("already have a debugcon device");
1429 qemu_opt_set(opts
, "driver", "isa-debugcon", &error_abort
);
1430 qemu_opt_set(opts
, "chardev", "debugcon", &error_abort
);
1434 static gint
machine_class_cmp(gconstpointer a
, gconstpointer b
)
1436 const MachineClass
*mc1
= a
, *mc2
= b
;
1439 if (mc1
->family
== NULL
) {
1440 if (mc2
->family
== NULL
) {
1441 /* Compare standalone machine types against each other; they sort
1442 * in increasing order.
1444 return strcmp(object_class_get_name(OBJECT_CLASS(mc1
)),
1445 object_class_get_name(OBJECT_CLASS(mc2
)));
1448 /* Standalone machine types sort after families. */
1452 if (mc2
->family
== NULL
) {
1453 /* Families sort before standalone machine types. */
1457 /* Families sort between each other alphabetically increasingly. */
1458 res
= strcmp(mc1
->family
, mc2
->family
);
1463 /* Within the same family, machine types sort in decreasing order. */
1464 return strcmp(object_class_get_name(OBJECT_CLASS(mc2
)),
1465 object_class_get_name(OBJECT_CLASS(mc1
)));
1468 static void machine_help_func(const QDict
*qdict
)
1470 GSList
*machines
, *el
;
1471 const char *type
= qdict_get_try_str(qdict
, "type");
1473 machines
= object_class_get_list(TYPE_MACHINE
, false);
1475 ObjectClass
*machine_class
= OBJECT_CLASS(find_machine(type
, machines
));
1476 if (machine_class
) {
1477 type_print_class_properties(object_class_get_name(machine_class
));
1482 printf("Supported machines are:\n");
1483 machines
= g_slist_sort(machines
, machine_class_cmp
);
1484 for (el
= machines
; el
; el
= el
->next
) {
1485 MachineClass
*mc
= el
->data
;
1487 printf("%-20s %s (alias of %s)\n", mc
->alias
, mc
->desc
, mc
->name
);
1489 printf("%-20s %s%s%s\n", mc
->name
, mc
->desc
,
1490 mc
->is_default
? " (default)" : "",
1491 mc
->deprecation_reason
? " (deprecated)" : "");
1496 machine_merge_property(const char *propname
, QDict
*prop
, Error
**errp
)
1501 /* Preserve the caller's reference to prop. */
1503 qdict_put(opts
, propname
, prop
);
1504 keyval_merge(machine_opts_dict
, opts
, errp
);
1505 qobject_unref(opts
);
1509 machine_parse_property_opt(QemuOptsList
*opts_list
, const char *propname
,
1515 prop
= keyval_parse(arg
, opts_list
->implied_opt_name
, &help
, &error_fatal
);
1517 qemu_opts_print_help(opts_list
, true);
1520 machine_merge_property(propname
, prop
, &error_fatal
);
1521 qobject_unref(prop
);
1524 static const char *pid_file
;
1525 struct UnlinkPidfileNotifier
{
1527 char *pid_file_realpath
;
1529 static struct UnlinkPidfileNotifier qemu_unlink_pidfile_notifier
;
1531 static void qemu_unlink_pidfile(Notifier
*n
, void *data
)
1533 struct UnlinkPidfileNotifier
*upn
;
1535 upn
= DO_UPCAST(struct UnlinkPidfileNotifier
, notifier
, n
);
1536 unlink(upn
->pid_file_realpath
);
1539 static const QEMUOption
*lookup_opt(int argc
, char **argv
,
1540 const char **poptarg
, int *poptind
)
1542 const QEMUOption
*popt
;
1543 int optind
= *poptind
;
1544 char *r
= argv
[optind
];
1547 loc_set_cmdline(argv
, optind
, 1);
1549 /* Treat --foo the same as -foo. */
1552 popt
= qemu_options
;
1555 error_report("invalid option");
1558 if (!strcmp(popt
->name
, r
+ 1))
1562 if (popt
->flags
& HAS_ARG
) {
1563 if (optind
>= argc
) {
1564 error_report("requires an argument");
1567 optarg
= argv
[optind
++];
1568 loc_set_cmdline(argv
, optind
- 2, 2);
1579 static MachineClass
*select_machine(QDict
*qdict
, Error
**errp
)
1581 const char *optarg
= qdict_get_try_str(qdict
, "type");
1582 GSList
*machines
= object_class_get_list(TYPE_MACHINE
, false);
1583 MachineClass
*machine_class
;
1584 Error
*local_err
= NULL
;
1587 machine_class
= find_machine(optarg
, machines
);
1588 qdict_del(qdict
, "type");
1589 if (!machine_class
) {
1590 error_setg(&local_err
, "unsupported machine type");
1593 machine_class
= find_default_machine(machines
);
1594 if (!machine_class
) {
1595 error_setg(&local_err
, "No machine specified, and there is no default");
1599 g_slist_free(machines
);
1601 error_append_hint(&local_err
, "Use -machine help to list supported machines\n");
1602 error_propagate(errp
, local_err
);
1604 return machine_class
;
1607 static int object_parse_property_opt(Object
*obj
,
1608 const char *name
, const char *value
,
1609 const char *skip
, Error
**errp
)
1611 if (g_str_equal(name
, skip
)) {
1615 if (!object_property_parse(obj
, name
, value
, errp
)) {
1622 /* *Non*recursively replace underscores with dashes in QDict keys. */
1623 static void keyval_dashify(QDict
*qdict
, Error
**errp
)
1625 const QDictEntry
*ent
, *next
;
1628 for (ent
= qdict_first(qdict
); ent
; ent
= next
) {
1629 g_autofree
char *new_key
= NULL
;
1631 next
= qdict_next(qdict
, ent
);
1632 if (!strchr(ent
->key
, '_')) {
1635 new_key
= g_strdup(ent
->key
);
1636 for (p
= new_key
; *p
; p
++) {
1641 if (qdict_haskey(qdict
, new_key
)) {
1642 error_setg(errp
, "Conflict between '%s' and '%s'", ent
->key
, new_key
);
1645 qobject_ref(ent
->value
);
1646 qdict_put_obj(qdict
, new_key
, ent
->value
);
1647 qdict_del(qdict
, ent
->key
);
1651 static void qemu_apply_legacy_machine_options(QDict
*qdict
)
1656 keyval_dashify(qdict
, &error_fatal
);
1658 /* Legacy options do not correspond to MachineState properties. */
1659 value
= qdict_get_try_str(qdict
, "accel");
1661 accelerators
= g_strdup(value
);
1662 qdict_del(qdict
, "accel");
1665 value
= qdict_get_try_str(qdict
, "igd-passthru");
1667 object_register_sugar_prop(ACCEL_CLASS_NAME("xen"), "igd-passthru", value
,
1669 qdict_del(qdict
, "igd-passthru");
1672 value
= qdict_get_try_str(qdict
, "kvm-shadow-mem");
1674 object_register_sugar_prop(ACCEL_CLASS_NAME("kvm"), "kvm-shadow-mem", value
,
1676 qdict_del(qdict
, "kvm-shadow-mem");
1679 value
= qdict_get_try_str(qdict
, "kernel-irqchip");
1681 object_register_sugar_prop(ACCEL_CLASS_NAME("kvm"), "kernel-irqchip", value
,
1683 object_register_sugar_prop(ACCEL_CLASS_NAME("whpx"), "kernel-irqchip", value
,
1685 qdict_del(qdict
, "kernel-irqchip");
1688 value
= qdict_get_try_str(qdict
, "memory-backend");
1691 error_report("'-mem-path' can't be used together with"
1692 "'-machine memory-backend'");
1696 /* Resolved later. */
1697 ram_memdev_id
= g_strdup(value
);
1698 qdict_del(qdict
, "memory-backend");
1701 prop
= qdict_get(qdict
, "memory");
1703 have_custom_ram_size
=
1704 qobject_type(prop
) == QTYPE_QDICT
&&
1705 qdict_haskey(qobject_to(QDict
, prop
), "size");
1709 static void object_option_foreach_add(bool (*type_opt_predicate
)(const char *))
1711 ObjectOption
*opt
, *next
;
1713 QTAILQ_FOREACH_SAFE(opt
, &object_opts
, next
, next
) {
1714 const char *type
= ObjectType_str(opt
->opts
->qom_type
);
1715 if (type_opt_predicate(type
)) {
1716 user_creatable_add_qapi(opt
->opts
, &error_fatal
);
1717 qapi_free_ObjectOptions(opt
->opts
);
1718 QTAILQ_REMOVE(&object_opts
, opt
, next
);
1724 static void object_option_add_visitor(Visitor
*v
)
1726 ObjectOption
*opt
= g_new0(ObjectOption
, 1);
1727 visit_type_ObjectOptions(v
, NULL
, &opt
->opts
, &error_fatal
);
1728 QTAILQ_INSERT_TAIL(&object_opts
, opt
, next
);
1731 static void object_option_parse(const char *optarg
)
1737 if (optarg
[0] == '{') {
1738 QObject
*obj
= qobject_from_json(optarg
, &error_fatal
);
1740 v
= qobject_input_visitor_new(obj
);
1743 opts
= qemu_opts_parse_noisily(qemu_find_opts("object"),
1749 type
= qemu_opt_get(opts
, "qom-type");
1751 error_setg(&error_fatal
, QERR_MISSING_PARAMETER
, "qom-type");
1753 if (user_creatable_print_help(type
, opts
)) {
1757 v
= opts_visitor_new(opts
);
1760 object_option_add_visitor(v
);
1765 * Initial object creation happens before all other
1766 * QEMU data types are created. The majority of objects
1767 * can be created at this point. The rng-egd object
1768 * cannot be created here, as it depends on the chardev
1771 static bool object_create_early(const char *type
)
1774 * Objects should not be made "delayed" without a reason. If you
1775 * add one, state the reason in a comment!
1778 /* Reason: property "chardev" */
1779 if (g_str_equal(type
, "rng-egd") ||
1780 g_str_equal(type
, "qtest")) {
1784 #if defined(CONFIG_VHOST_USER) && defined(CONFIG_LINUX)
1785 /* Reason: cryptodev-vhost-user property "chardev" */
1786 if (g_str_equal(type
, "cryptodev-vhost-user")) {
1791 /* Reason: vhost-user-blk-server property "node-name" */
1792 if (g_str_equal(type
, "vhost-user-blk-server")) {
1796 * Reason: filter-* property "netdev" etc.
1798 if (g_str_equal(type
, "filter-buffer") ||
1799 g_str_equal(type
, "filter-dump") ||
1800 g_str_equal(type
, "filter-mirror") ||
1801 g_str_equal(type
, "filter-redirector") ||
1802 g_str_equal(type
, "colo-compare") ||
1803 g_str_equal(type
, "filter-rewriter") ||
1804 g_str_equal(type
, "filter-replay")) {
1809 * Allocation of large amounts of memory may delay
1810 * chardev initialization for too long, and trigger timeouts
1811 * on software that waits for a monitor socket to be created
1814 if (g_str_has_prefix(type
, "memory-backend-")) {
1821 static void qemu_apply_machine_options(QDict
*qdict
)
1823 object_set_properties_from_keyval(OBJECT(current_machine
), qdict
, false, &error_fatal
);
1825 if (semihosting_enabled() && !semihosting_get_argc()) {
1826 /* fall back to the -kernel/-append */
1827 semihosting_arg_fallback(current_machine
->kernel_filename
, current_machine
->kernel_cmdline
);
1830 if (current_machine
->smp
.cpus
> 1) {
1831 Error
*blocker
= NULL
;
1832 error_setg(&blocker
, QERR_REPLAY_NOT_SUPPORTED
, "smp");
1833 replay_add_blocker(blocker
);
1837 static void qemu_create_early_backends(void)
1839 MachineClass
*machine_class
= MACHINE_GET_CLASS(current_machine
);
1840 #if defined(CONFIG_SDL)
1841 const bool use_sdl
= (dpy
.type
== DISPLAY_TYPE_SDL
);
1843 const bool use_sdl
= false;
1845 #if defined(CONFIG_GTK)
1846 const bool use_gtk
= (dpy
.type
== DISPLAY_TYPE_GTK
);
1848 const bool use_gtk
= false;
1851 if (dpy
.has_window_close
&& !use_gtk
&& !use_sdl
) {
1852 error_report("window-close is only valid for GTK and SDL, "
1856 qemu_display_early_init(&dpy
);
1857 qemu_console_early_init();
1859 if (dpy
.has_gl
&& dpy
.gl
!= DISPLAYGL_MODE_OFF
&& display_opengl
== 0) {
1860 #if defined(CONFIG_OPENGL)
1861 error_report("OpenGL is not supported by the display");
1863 error_report("OpenGL support is disabled");
1868 object_option_foreach_add(object_create_early
);
1870 /* spice needs the timers to be initialized by this point */
1871 /* spice must initialize before audio as it changes the default audiodev */
1872 /* spice must initialize before chardevs (for spicevmc and spiceport) */
1875 qemu_opts_foreach(qemu_find_opts("chardev"),
1876 chardev_init_func
, NULL
, &error_fatal
);
1878 #ifdef CONFIG_VIRTFS
1879 qemu_opts_foreach(qemu_find_opts("fsdev"),
1880 fsdev_init_func
, NULL
, &error_fatal
);
1884 * Note: we need to create audio and block backends before
1885 * setting machine properties, so they can be referred to.
1887 configure_blockdev(&bdo_queue
, machine_class
, snapshot
);
1888 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 int i
= select_watchdog(watchdog
);
2334 exit (i
== 1 ? 1 : 0);
2338 /* -action processing */
2341 * Process all the -action parameters parsed from cmdline.
2343 static int process_runstate_actions(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2345 Error
*local_err
= NULL
;
2346 QDict
*qdict
= qemu_opts_to_qdict(opts
, NULL
);
2347 QObject
*ret
= NULL
;
2348 qmp_marshal_set_action(qdict
, &ret
, &local_err
);
2350 qobject_unref(qdict
);
2352 error_propagate(errp
, local_err
);
2358 static void qemu_process_early_options(void)
2360 #ifdef CONFIG_SECCOMP
2361 QemuOptsList
*olist
= qemu_find_opts_err("sandbox", NULL
);
2363 qemu_opts_foreach(olist
, parse_sandbox
, NULL
, &error_fatal
);
2367 qemu_opts_foreach(qemu_find_opts("name"),
2368 parse_name
, NULL
, &error_fatal
);
2370 if (qemu_opts_foreach(qemu_find_opts("action"),
2371 process_runstate_actions
, NULL
, &error_fatal
)) {
2376 qemu_opts_foreach(qemu_find_opts("add-fd"),
2377 parse_add_fd
, NULL
, &error_fatal
);
2379 qemu_opts_foreach(qemu_find_opts("add-fd"),
2380 cleanup_add_fd
, NULL
, &error_fatal
);
2383 /* Open the logfile at this point and set the log mask if necessary. */
2387 mask
= qemu_str_to_log_mask(log_mask
);
2389 qemu_print_log_usage(stdout
);
2393 qemu_set_log_filename_flags(log_file
, mask
, &error_fatal
);
2396 qemu_add_default_firmwarepath();
2399 static void qemu_process_help_options(void)
2402 * Check for -cpu help and -device help before we call select_machine(),
2403 * which will return an error if the architecture has no default machine
2404 * type and the user did not specify one, so that the user doesn't need
2405 * to say '-cpu help -machine something'.
2407 if (cpu_option
&& is_help_option(cpu_option
)) {
2408 list_cpus(cpu_option
);
2412 if (qemu_opts_foreach(qemu_find_opts("device"),
2413 device_help_func
, NULL
, NULL
)) {
2417 /* -L help lists the data directories and exits. */
2418 if (list_data_dirs
) {
2419 qemu_list_data_dirs();
2424 static void qemu_maybe_daemonize(const char *pid_file
)
2429 rcu_disable_atfork();
2432 char *pid_file_realpath
= NULL
;
2434 if (!qemu_write_pidfile(pid_file
, &err
)) {
2435 error_reportf_err(err
, "cannot create PID file: ");
2439 pid_file_realpath
= g_malloc0(PATH_MAX
);
2440 if (!realpath(pid_file
, pid_file_realpath
)) {
2441 error_report("cannot resolve PID file path: %s: %s",
2442 pid_file
, strerror(errno
));
2447 qemu_unlink_pidfile_notifier
= (struct UnlinkPidfileNotifier
) {
2449 .notify
= qemu_unlink_pidfile
,
2451 .pid_file_realpath
= pid_file_realpath
,
2453 qemu_add_exit_notifier(&qemu_unlink_pidfile_notifier
.notifier
);
2457 static void qemu_init_displays(void)
2461 /* init local displays */
2462 ds
= init_displaystate();
2463 qemu_display_init(ds
, &dpy
);
2465 /* must be after terminal init, SDL library changes signal handlers */
2466 os_setup_signal_handling();
2468 /* init remote displays */
2470 qemu_opts_foreach(qemu_find_opts("vnc"),
2471 vnc_init_func
, NULL
, &error_fatal
);
2475 qemu_spice
.display_init();
2479 static void qemu_init_board(void)
2481 /* process plugin before CPUs are created, but once -smp has been parsed */
2482 qemu_plugin_load_list(&plugin_list
, &error_fatal
);
2484 /* From here on we enter MACHINE_PHASE_INITIALIZED. */
2485 machine_run_board_init(current_machine
, mem_path
, &error_fatal
);
2487 drive_check_orphaned();
2491 if (hax_enabled()) {
2492 /* FIXME: why isn't cpu_synchronize_all_post_init enough? */
2497 static void qemu_create_cli_devices(void)
2503 qemu_opts_foreach(qemu_find_opts("fw_cfg"),
2504 parse_fw_cfg
, fw_cfg_find(), &error_fatal
);
2506 /* init USB devices */
2507 if (machine_usb(current_machine
)) {
2508 if (foreach_device_config(DEV_USB
, usb_parse
) < 0)
2512 /* init generic devices */
2513 rom_set_order_override(FW_CFG_ORDER_OVERRIDE_DEVICE
);
2514 qemu_opts_foreach(qemu_find_opts("device"),
2515 device_init_func
, NULL
, &error_fatal
);
2516 QTAILQ_FOREACH(opt
, &device_opts
, next
) {
2518 loc_push_restore(&opt
->loc
);
2520 * TODO Eventually we should call qmp_device_add() here to make sure it
2521 * behaves the same, but QMP still has to accept incorrectly typed
2522 * options until libvirt is fixed and we want to be strict on the CLI
2523 * from the start, so call qdev_device_add_from_qdict() directly for
2526 dev
= qdev_device_add_from_qdict(opt
->opts
, true, &error_fatal
);
2527 object_unref(OBJECT(dev
));
2530 rom_reset_order_override();
2533 static void qemu_machine_creation_done(void)
2535 MachineState
*machine
= MACHINE(qdev_get_machine());
2537 /* Did we create any drives that we failed to create a device for? */
2538 drive_check_orphaned();
2540 /* Don't warn about the default network setup that you get if
2541 * no command line -net or -netdev options are specified. There
2542 * are two cases that we would otherwise complain about:
2543 * (1) board doesn't support a NIC but the implicit "-net nic"
2545 * (2) CONFIG_SLIRP not set, in which case the implicit "-net nic"
2546 * sets up a nic that isn't connected to anything.
2548 if (!default_net
&& (!qtest_enabled() || has_defaults
)) {
2549 net_check_clients();
2552 qdev_prop_check_globals();
2554 qdev_machine_creation_done();
2558 * Verify that Confidential Guest Support has actually been initialized
2560 assert(machine
->cgs
->ready
);
2563 if (foreach_device_config(DEV_GDB
, gdbserver_start
) < 0) {
2566 if (!vga_interface_created
&& !default_vga
&&
2567 vga_interface_type
!= VGA_NONE
) {
2568 warn_report("A -vga option was passed but this machine "
2569 "type does not use that option; "
2570 "No VGA device has been created");
2574 void qmp_x_exit_preconfig(Error
**errp
)
2576 if (phase_check(PHASE_MACHINE_INITIALIZED
)) {
2577 error_setg(errp
, "The command is permitted only before machine initialization");
2582 qemu_create_cli_devices();
2583 qemu_machine_creation_done();
2586 load_snapshot(loadvm
, NULL
, false, NULL
, &error_fatal
);
2588 if (replay_mode
!= REPLAY_MODE_NONE
) {
2589 replay_vmstate_init();
2593 Error
*local_err
= NULL
;
2594 if (strcmp(incoming
, "defer") != 0) {
2595 qmp_migrate_incoming(incoming
, &local_err
);
2597 error_reportf_err(local_err
, "-incoming %s: ", incoming
);
2601 } else if (autostart
) {
2606 void qemu_init(int argc
, char **argv
, char **envp
)
2609 QemuOpts
*icount_opts
= NULL
, *accel_opts
= NULL
;
2610 QemuOptsList
*olist
;
2613 MachineClass
*machine_class
;
2614 bool userconfig
= true;
2615 FILE *vmstate_dump_file
= NULL
;
2617 qemu_add_opts(&qemu_drive_opts
);
2618 qemu_add_drive_opts(&qemu_legacy_drive_opts
);
2619 qemu_add_drive_opts(&qemu_common_drive_opts
);
2620 qemu_add_drive_opts(&qemu_drive_opts
);
2621 qemu_add_drive_opts(&bdrv_runtime_opts
);
2622 qemu_add_opts(&qemu_chardev_opts
);
2623 qemu_add_opts(&qemu_device_opts
);
2624 qemu_add_opts(&qemu_netdev_opts
);
2625 qemu_add_opts(&qemu_nic_opts
);
2626 qemu_add_opts(&qemu_net_opts
);
2627 qemu_add_opts(&qemu_rtc_opts
);
2628 qemu_add_opts(&qemu_global_opts
);
2629 qemu_add_opts(&qemu_mon_opts
);
2630 qemu_add_opts(&qemu_trace_opts
);
2631 qemu_plugin_add_opts();
2632 qemu_add_opts(&qemu_option_rom_opts
);
2633 qemu_add_opts(&qemu_accel_opts
);
2634 qemu_add_opts(&qemu_mem_opts
);
2635 qemu_add_opts(&qemu_smp_opts
);
2636 qemu_add_opts(&qemu_boot_opts
);
2637 qemu_add_opts(&qemu_add_fd_opts
);
2638 qemu_add_opts(&qemu_object_opts
);
2639 qemu_add_opts(&qemu_tpmdev_opts
);
2640 qemu_add_opts(&qemu_overcommit_opts
);
2641 qemu_add_opts(&qemu_msg_opts
);
2642 qemu_add_opts(&qemu_name_opts
);
2643 qemu_add_opts(&qemu_numa_opts
);
2644 qemu_add_opts(&qemu_icount_opts
);
2645 qemu_add_opts(&qemu_semihosting_config_opts
);
2646 qemu_add_opts(&qemu_fw_cfg_opts
);
2647 qemu_add_opts(&qemu_action_opts
);
2648 module_call_init(MODULE_INIT_OPTS
);
2650 error_init(argv
[0]);
2651 qemu_init_exec_dir(argv
[0]);
2653 qemu_init_arch_modules();
2655 qemu_init_subsystems();
2657 /* first pass of option parsing */
2659 while (optind
< argc
) {
2660 if (argv
[optind
][0] != '-') {
2664 const QEMUOption
*popt
;
2666 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
2667 switch (popt
->index
) {
2668 case QEMU_OPTION_nouserconfig
:
2675 machine_opts_dict
= qdict_new();
2677 qemu_read_default_config_file(&error_fatal
);
2680 /* second pass of option parsing */
2685 if (argv
[optind
][0] != '-') {
2686 loc_set_cmdline(argv
, optind
, 1);
2687 drive_add(IF_DEFAULT
, 0, argv
[optind
++], HD_OPTS
);
2689 const QEMUOption
*popt
;
2691 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
2692 if (!(popt
->arch_mask
& arch_type
)) {
2693 error_report("Option not supported for this target");
2696 switch(popt
->index
) {
2697 case QEMU_OPTION_cpu
:
2698 /* hw initialization will check this */
2699 cpu_option
= optarg
;
2701 case QEMU_OPTION_hda
:
2702 case QEMU_OPTION_hdb
:
2703 case QEMU_OPTION_hdc
:
2704 case QEMU_OPTION_hdd
:
2705 drive_add(IF_DEFAULT
, popt
->index
- QEMU_OPTION_hda
, optarg
,
2708 case QEMU_OPTION_blockdev
:
2711 BlockdevOptionsQueueEntry
*bdo
;
2713 v
= qobject_input_visitor_new_str(optarg
, "driver",
2716 bdo
= g_new(BlockdevOptionsQueueEntry
, 1);
2717 visit_type_BlockdevOptions(v
, NULL
, &bdo
->bdo
,
2720 loc_save(&bdo
->loc
);
2721 QSIMPLEQ_INSERT_TAIL(&bdo_queue
, bdo
, entry
);
2724 case QEMU_OPTION_drive
:
2725 opts
= qemu_opts_parse_noisily(qemu_find_opts("drive"),
2731 case QEMU_OPTION_set
:
2732 qemu_set_option(optarg
, &error_fatal
);
2734 case QEMU_OPTION_global
:
2735 if (qemu_global_option(optarg
) != 0)
2738 case QEMU_OPTION_mtdblock
:
2739 drive_add(IF_MTD
, -1, optarg
, MTD_OPTS
);
2741 case QEMU_OPTION_sd
:
2742 drive_add(IF_SD
, -1, optarg
, SD_OPTS
);
2744 case QEMU_OPTION_pflash
:
2745 drive_add(IF_PFLASH
, -1, optarg
, PFLASH_OPTS
);
2747 case QEMU_OPTION_snapshot
:
2749 Error
*blocker
= NULL
;
2751 error_setg(&blocker
, QERR_REPLAY_NOT_SUPPORTED
,
2753 replay_add_blocker(blocker
);
2756 case QEMU_OPTION_numa
:
2757 opts
= qemu_opts_parse_noisily(qemu_find_opts("numa"),
2763 case QEMU_OPTION_display
:
2764 parse_display(optarg
);
2766 case QEMU_OPTION_nographic
:
2767 qdict_put_str(machine_opts_dict
, "graphics", "off");
2769 dpy
.type
= DISPLAY_TYPE_NONE
;
2771 case QEMU_OPTION_portrait
:
2772 graphic_rotate
= 90;
2774 case QEMU_OPTION_rotate
:
2775 graphic_rotate
= strtol(optarg
, (char **) &optarg
, 10);
2776 if (graphic_rotate
!= 0 && graphic_rotate
!= 90 &&
2777 graphic_rotate
!= 180 && graphic_rotate
!= 270) {
2778 error_report("only 90, 180, 270 deg rotation is available");
2782 case QEMU_OPTION_kernel
:
2783 qdict_put_str(machine_opts_dict
, "kernel", optarg
);
2785 case QEMU_OPTION_initrd
:
2786 qdict_put_str(machine_opts_dict
, "initrd", optarg
);
2788 case QEMU_OPTION_append
:
2789 qdict_put_str(machine_opts_dict
, "append", optarg
);
2791 case QEMU_OPTION_dtb
:
2792 qdict_put_str(machine_opts_dict
, "dtb", optarg
);
2794 case QEMU_OPTION_cdrom
:
2795 drive_add(IF_DEFAULT
, 2, optarg
, CDROM_OPTS
);
2797 case QEMU_OPTION_boot
:
2798 machine_parse_property_opt(qemu_find_opts("boot-opts"), "boot", optarg
);
2800 case QEMU_OPTION_fda
:
2801 case QEMU_OPTION_fdb
:
2802 drive_add(IF_FLOPPY
, popt
->index
- QEMU_OPTION_fda
,
2805 case QEMU_OPTION_no_fd_bootchk
:
2808 case QEMU_OPTION_netdev
:
2810 if (net_client_parse(qemu_find_opts("netdev"), optarg
) == -1) {
2814 case QEMU_OPTION_nic
:
2816 if (net_client_parse(qemu_find_opts("nic"), optarg
) == -1) {
2820 case QEMU_OPTION_net
:
2822 if (net_client_parse(qemu_find_opts("net"), optarg
) == -1) {
2826 #ifdef CONFIG_LIBISCSI
2827 case QEMU_OPTION_iscsi
:
2828 opts
= qemu_opts_parse_noisily(qemu_find_opts("iscsi"),
2835 case QEMU_OPTION_audio_help
:
2836 audio_legacy_help();
2839 case QEMU_OPTION_audiodev
:
2840 audio_parse_option(optarg
);
2842 case QEMU_OPTION_audio
: {
2843 QDict
*dict
= keyval_parse(optarg
, "driver", NULL
, &error_fatal
);
2845 Audiodev
*dev
= NULL
;
2848 if (!qdict_haskey(dict
, "id")) {
2849 qdict_put_str(dict
, "id", "audiodev0");
2851 if (!qdict_haskey(dict
, "model")) {
2852 error_setg(&error_fatal
, "Parameter 'model' is missing");
2854 model
= g_strdup(qdict_get_str(dict
, "model"));
2855 qdict_del(dict
, "model");
2856 if (is_help_option(model
)) {
2857 show_valid_soundhw();
2860 v
= qobject_input_visitor_new_keyval(QOBJECT(dict
));
2861 qobject_unref(dict
);
2862 visit_type_Audiodev(v
, NULL
, &dev
, &error_fatal
);
2865 select_soundhw(model
, dev
->id
);
2872 case QEMU_OPTION_version
:
2877 opts
= qemu_opts_parse_noisily(qemu_find_opts("memory"), optarg
, true);
2883 case QEMU_OPTION_tpmdev
:
2884 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg
) < 0) {
2889 case QEMU_OPTION_mempath
:
2892 case QEMU_OPTION_mem_prealloc
:
2901 case QEMU_OPTION_DFILTER
:
2902 qemu_set_dfilter_ranges(optarg
, &error_fatal
);
2904 case QEMU_OPTION_seed
:
2905 qemu_guest_random_seed_main(optarg
, &error_fatal
);
2908 add_device_config(DEV_GDB
, "tcp::" DEFAULT_GDBSTUB_PORT
);
2910 case QEMU_OPTION_gdb
:
2911 add_device_config(DEV_GDB
, optarg
);
2914 if (is_help_option(optarg
)) {
2915 list_data_dirs
= true;
2917 qemu_add_data_dir(g_strdup(optarg
));
2920 case QEMU_OPTION_bios
:
2921 qdict_put_str(machine_opts_dict
, "firmware", optarg
);
2923 case QEMU_OPTION_singlestep
:
2930 keyboard_layout
= optarg
;
2932 case QEMU_OPTION_vga
:
2941 w
= strtol(p
, (char **)&p
, 10);
2944 error_report("invalid resolution or depth");
2950 h
= strtol(p
, (char **)&p
, 10);
2955 depth
= strtol(p
, (char **)&p
, 10);
2956 if (depth
!= 1 && depth
!= 2 && depth
!= 4 &&
2957 depth
!= 8 && depth
!= 15 && depth
!= 16 &&
2958 depth
!= 24 && depth
!= 32)
2960 } else if (*p
== '\0') {
2961 depth
= graphic_depth
;
2968 graphic_depth
= depth
;
2971 case QEMU_OPTION_echr
:
2974 term_escape_char
= strtol(optarg
, &r
, 0);
2976 printf("Bad argument to echr\n");
2979 case QEMU_OPTION_monitor
:
2980 default_monitor
= 0;
2981 if (strncmp(optarg
, "none", 4)) {
2982 monitor_parse(optarg
, "readline", false);
2985 case QEMU_OPTION_qmp
:
2986 monitor_parse(optarg
, "control", false);
2987 default_monitor
= 0;
2989 case QEMU_OPTION_qmp_pretty
:
2990 monitor_parse(optarg
, "control", true);
2991 default_monitor
= 0;
2993 case QEMU_OPTION_mon
:
2994 opts
= qemu_opts_parse_noisily(qemu_find_opts("mon"), optarg
,
2999 default_monitor
= 0;
3001 case QEMU_OPTION_chardev
:
3002 opts
= qemu_opts_parse_noisily(qemu_find_opts("chardev"),
3008 case QEMU_OPTION_fsdev
:
3009 olist
= qemu_find_opts("fsdev");
3011 error_report("fsdev support is disabled");
3014 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3019 case QEMU_OPTION_virtfs
: {
3022 const char *writeout
, *sock_fd
, *socket
, *path
, *security_model
,
3025 olist
= qemu_find_opts("virtfs");
3027 error_report("virtfs support is disabled");
3030 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3035 if (qemu_opt_get(opts
, "fsdriver") == NULL
||
3036 qemu_opt_get(opts
, "mount_tag") == NULL
) {
3037 error_report("Usage: -virtfs fsdriver,mount_tag=tag");
3040 fsdev
= qemu_opts_create(qemu_find_opts("fsdev"),
3041 qemu_opts_id(opts
) ?:
3042 qemu_opt_get(opts
, "mount_tag"),
3045 error_report("duplicate or invalid fsdev id: %s",
3046 qemu_opt_get(opts
, "mount_tag"));
3050 writeout
= qemu_opt_get(opts
, "writeout");
3052 #ifdef CONFIG_SYNC_FILE_RANGE
3053 qemu_opt_set(fsdev
, "writeout", writeout
, &error_abort
);
3055 error_report("writeout=immediate not supported "
3056 "on this platform");
3060 qemu_opt_set(fsdev
, "fsdriver",
3061 qemu_opt_get(opts
, "fsdriver"), &error_abort
);
3062 path
= qemu_opt_get(opts
, "path");
3064 qemu_opt_set(fsdev
, "path", path
, &error_abort
);
3066 security_model
= qemu_opt_get(opts
, "security_model");
3067 if (security_model
) {
3068 qemu_opt_set(fsdev
, "security_model", security_model
,
3071 socket
= qemu_opt_get(opts
, "socket");
3073 qemu_opt_set(fsdev
, "socket", socket
, &error_abort
);
3075 sock_fd
= qemu_opt_get(opts
, "sock_fd");
3077 qemu_opt_set(fsdev
, "sock_fd", sock_fd
, &error_abort
);
3080 qemu_opt_set_bool(fsdev
, "readonly",
3081 qemu_opt_get_bool(opts
, "readonly", 0),
3083 multidevs
= qemu_opt_get(opts
, "multidevs");
3085 qemu_opt_set(fsdev
, "multidevs", multidevs
, &error_abort
);
3087 device
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
3089 qemu_opt_set(device
, "driver", "virtio-9p-pci", &error_abort
);
3090 qemu_opt_set(device
, "fsdev",
3091 qemu_opts_id(fsdev
), &error_abort
);
3092 qemu_opt_set(device
, "mount_tag",
3093 qemu_opt_get(opts
, "mount_tag"), &error_abort
);
3096 case QEMU_OPTION_serial
:
3097 add_device_config(DEV_SERIAL
, optarg
);
3099 if (strncmp(optarg
, "mon:", 4) == 0) {
3100 default_monitor
= 0;
3103 case QEMU_OPTION_watchdog
:
3105 error_report("only one watchdog option may be given");
3108 warn_report("-watchdog is deprecated; use -device instead.");
3111 case QEMU_OPTION_action
:
3112 olist
= qemu_find_opts("action");
3113 if (!qemu_opts_parse_noisily(olist
, optarg
, false)) {
3117 case QEMU_OPTION_watchdog_action
: {
3119 opts
= qemu_opts_create(qemu_find_opts("action"), NULL
, 0, &error_abort
);
3120 qemu_opt_set(opts
, "watchdog", optarg
, &error_abort
);
3123 case QEMU_OPTION_parallel
:
3124 add_device_config(DEV_PARALLEL
, optarg
);
3125 default_parallel
= 0;
3126 if (strncmp(optarg
, "mon:", 4) == 0) {
3127 default_monitor
= 0;
3130 case QEMU_OPTION_debugcon
:
3131 add_device_config(DEV_DEBUGCON
, optarg
);
3133 case QEMU_OPTION_loadvm
:
3136 case QEMU_OPTION_full_screen
:
3137 dpy
.has_full_screen
= true;
3138 dpy
.full_screen
= true;
3140 case QEMU_OPTION_pidfile
:
3143 case QEMU_OPTION_win2k_hack
:
3144 win2k_install_hack
= 1;
3146 case QEMU_OPTION_acpitable
:
3147 opts
= qemu_opts_parse_noisily(qemu_find_opts("acpi"),
3152 acpi_table_add(opts
, &error_fatal
);
3154 case QEMU_OPTION_smbios
:
3155 opts
= qemu_opts_parse_noisily(qemu_find_opts("smbios"),
3160 smbios_entry_add(opts
, &error_fatal
);
3162 case QEMU_OPTION_fwcfg
:
3163 opts
= qemu_opts_parse_noisily(qemu_find_opts("fw_cfg"),
3169 case QEMU_OPTION_preconfig
:
3170 preconfig_requested
= true;
3172 case QEMU_OPTION_enable_kvm
:
3173 qdict_put_str(machine_opts_dict
, "accel", "kvm");
3176 case QEMU_OPTION_machine
:
3180 keyval_parse_into(machine_opts_dict
, optarg
, "type", &help
, &error_fatal
);
3182 machine_help_func(machine_opts_dict
);
3187 case QEMU_OPTION_accel
:
3188 accel_opts
= qemu_opts_parse_noisily(qemu_find_opts("accel"),
3190 optarg
= qemu_opt_get(accel_opts
, "accel");
3191 if (!optarg
|| is_help_option(optarg
)) {
3192 printf("Accelerators supported in QEMU binary:\n");
3193 GSList
*el
, *accel_list
= object_class_get_list(TYPE_ACCEL
,
3195 for (el
= accel_list
; el
; el
= el
->next
) {
3196 gchar
*typename
= g_strdup(object_class_get_name(
3197 OBJECT_CLASS(el
->data
)));
3198 /* omit qtest which is used for tests only */
3199 if (g_strcmp0(typename
, ACCEL_CLASS_NAME("qtest")) &&
3200 g_str_has_suffix(typename
, ACCEL_CLASS_SUFFIX
)) {
3201 gchar
**optname
= g_strsplit(typename
,
3202 ACCEL_CLASS_SUFFIX
, 0);
3203 printf("%s\n", optname
[0]);
3204 g_strfreev(optname
);
3208 g_slist_free(accel_list
);
3212 case QEMU_OPTION_usb
:
3213 qdict_put_str(machine_opts_dict
, "usb", "on");
3215 case QEMU_OPTION_usbdevice
:
3216 qdict_put_str(machine_opts_dict
, "usb", "on");
3217 add_device_config(DEV_USB
, optarg
);
3219 case QEMU_OPTION_device
:
3220 if (optarg
[0] == '{') {
3221 QObject
*obj
= qobject_from_json(optarg
, &error_fatal
);
3222 DeviceOption
*opt
= g_new0(DeviceOption
, 1);
3223 opt
->opts
= qobject_to(QDict
, obj
);
3224 loc_save(&opt
->loc
);
3225 assert(opt
->opts
!= NULL
);
3226 QTAILQ_INSERT_TAIL(&device_opts
, opt
, next
);
3228 if (!qemu_opts_parse_noisily(qemu_find_opts("device"),
3234 case QEMU_OPTION_smp
:
3235 machine_parse_property_opt(qemu_find_opts("smp-opts"),
3238 case QEMU_OPTION_vnc
:
3241 case QEMU_OPTION_no_acpi
:
3242 qdict_put_str(machine_opts_dict
, "acpi", "off");
3244 case QEMU_OPTION_no_hpet
:
3245 qdict_put_str(machine_opts_dict
, "hpet", "off");
3247 case QEMU_OPTION_no_reboot
:
3248 olist
= qemu_find_opts("action");
3249 qemu_opts_parse_noisily(olist
, "reboot=shutdown", false);
3251 case QEMU_OPTION_no_shutdown
:
3252 olist
= qemu_find_opts("action");
3253 qemu_opts_parse_noisily(olist
, "shutdown=pause", false);
3255 case QEMU_OPTION_uuid
:
3256 if (qemu_uuid_parse(optarg
, &qemu_uuid
) < 0) {
3257 error_report("failed to parse UUID string: wrong format");
3260 qemu_uuid_set
= true;
3262 case QEMU_OPTION_option_rom
:
3263 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
3264 error_report("too many option ROMs");
3267 opts
= qemu_opts_parse_noisily(qemu_find_opts("option-rom"),
3272 option_rom
[nb_option_roms
].name
= qemu_opt_get(opts
, "romfile");
3273 option_rom
[nb_option_roms
].bootindex
=
3274 qemu_opt_get_number(opts
, "bootindex", -1);
3275 if (!option_rom
[nb_option_roms
].name
) {
3276 error_report("Option ROM file is not specified");
3281 case QEMU_OPTION_semihosting
:
3282 qemu_semihosting_enable();
3284 case QEMU_OPTION_semihosting_config
:
3285 if (qemu_semihosting_config_options(optarg
) != 0) {
3289 case QEMU_OPTION_name
:
3290 opts
= qemu_opts_parse_noisily(qemu_find_opts("name"),
3295 /* Capture guest name if -msg guest-name is used later */
3296 error_guest_name
= qemu_opt_get(opts
, "guest");
3298 case QEMU_OPTION_prom_env
:
3299 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
3300 error_report("too many prom variables");
3303 prom_envs
[nb_prom_envs
] = optarg
;
3306 case QEMU_OPTION_old_param
:
3309 case QEMU_OPTION_rtc
:
3310 opts
= qemu_opts_parse_noisily(qemu_find_opts("rtc"), optarg
,
3316 case QEMU_OPTION_icount
:
3317 icount_opts
= qemu_opts_parse_noisily(qemu_find_opts("icount"),
3323 case QEMU_OPTION_incoming
:
3325 runstate_set(RUN_STATE_INMIGRATE
);
3329 case QEMU_OPTION_only_migratable
:
3330 only_migratable
= 1;
3332 case QEMU_OPTION_nodefaults
:
3335 case QEMU_OPTION_xen_domid
:
3336 if (!(accel_find("xen"))) {
3337 error_report("Option not supported for this target");
3340 xen_domid
= atoi(optarg
);
3342 case QEMU_OPTION_xen_attach
:
3343 if (!(accel_find("xen"))) {
3344 error_report("Option not supported for this target");
3347 xen_mode
= XEN_ATTACH
;
3349 case QEMU_OPTION_xen_domid_restrict
:
3350 if (!(accel_find("xen"))) {
3351 error_report("Option not supported for this target");
3354 xen_domid_restrict
= true;
3356 case QEMU_OPTION_trace
:
3357 trace_opt_parse(optarg
);
3359 case QEMU_OPTION_plugin
:
3360 qemu_plugin_opt_parse(optarg
, &plugin_list
);
3362 case QEMU_OPTION_readconfig
:
3363 qemu_read_config_file(optarg
, qemu_parse_config_group
, &error_fatal
);
3366 case QEMU_OPTION_spice
:
3367 olist
= qemu_find_opts_err("spice", NULL
);
3369 error_report("spice support is disabled");
3372 opts
= qemu_opts_parse_noisily(olist
, optarg
, false);
3379 case QEMU_OPTION_qtest
:
3380 qtest_chrdev
= optarg
;
3382 case QEMU_OPTION_qtest_log
:
3385 case QEMU_OPTION_sandbox
:
3386 olist
= qemu_find_opts("sandbox");
3388 #ifndef CONFIG_SECCOMP
3389 error_report("-sandbox support is not enabled "
3390 "in this QEMU binary");
3395 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3400 case QEMU_OPTION_add_fd
:
3402 opts
= qemu_opts_parse_noisily(qemu_find_opts("add-fd"),
3408 error_report("File descriptor passing is disabled on this "
3413 case QEMU_OPTION_object
:
3414 object_option_parse(optarg
);
3416 case QEMU_OPTION_overcommit
:
3417 opts
= qemu_opts_parse_noisily(qemu_find_opts("overcommit"),
3422 enable_mlock
= qemu_opt_get_bool(opts
, "mem-lock", false);
3423 enable_cpu_pm
= qemu_opt_get_bool(opts
, "cpu-pm", false);
3425 case QEMU_OPTION_compat
:
3430 v
= qobject_input_visitor_new_str(optarg
, NULL
,
3433 visit_type_CompatPolicy(v
, NULL
, &opts
, &error_fatal
);
3434 QAPI_CLONE_MEMBERS(CompatPolicy
, &compat_policy
, opts
);
3436 qapi_free_CompatPolicy(opts
);
3440 case QEMU_OPTION_msg
:
3441 opts
= qemu_opts_parse_noisily(qemu_find_opts("msg"), optarg
,
3446 configure_msg(opts
);
3448 case QEMU_OPTION_dump_vmstate
:
3449 if (vmstate_dump_file
) {
3450 error_report("only one '-dump-vmstate' "
3451 "option may be given");
3454 vmstate_dump_file
= fopen(optarg
, "w");
3455 if (vmstate_dump_file
== NULL
) {
3456 error_report("open %s: %s", optarg
, strerror(errno
));
3460 case QEMU_OPTION_enable_sync_profile
:
3463 case QEMU_OPTION_nouserconfig
:
3464 /* Nothing to be parsed here. Especially, do not error out below. */
3467 if (os_parse_cmd_args(popt
->index
, optarg
)) {
3468 error_report("Option not supported in this build");
3475 * Clear error location left behind by the loop.
3476 * Best done right after the loop. Do not insert code here!
3480 qemu_validate_options(machine_opts_dict
);
3481 qemu_process_sugar_options();
3484 * These options affect everything else and should be processed
3485 * before daemonizing.
3487 qemu_process_early_options();
3489 qemu_process_help_options();
3490 qemu_maybe_daemonize(pid_file
);
3493 * The trace backend must be initialized after daemonizing.
3494 * trace_init_backends() will call st_init(), which will create the
3495 * trace thread in the parent, and also register st_flush_trace_buffer()
3496 * in atexit(). This function will force the parent to wait for the
3497 * writeout thread to finish, which will not occur, and the parent
3498 * process will be left in the host.
3500 if (!trace_init_backends()) {
3505 qemu_init_main_loop(&error_fatal
);
3508 user_register_global_props();
3509 replay_configure(icount_opts
);
3511 configure_rtc(qemu_find_opts_singleton("rtc"));
3513 /* Transfer QemuOpts options into machine options */
3514 parse_memory_options();
3516 qemu_create_machine(machine_opts_dict
);
3520 qemu_disable_default_devices();
3521 qemu_create_default_devices();
3522 qemu_create_early_backends();
3524 qemu_apply_legacy_machine_options(machine_opts_dict
);
3525 qemu_apply_machine_options(machine_opts_dict
);
3526 qobject_unref(machine_opts_dict
);
3527 phase_advance(PHASE_MACHINE_CREATED
);
3530 * Note: uses machine properties such as kernel-irqchip, must run
3531 * after qemu_apply_machine_options.
3533 configure_accelerators(argv
[0]);
3534 phase_advance(PHASE_ACCEL_CREATED
);
3537 * Beware, QOM objects created before this point miss global and
3538 * compat properties.
3540 * Global properties get set up by qdev_prop_register_global(),
3541 * called from user_register_global_props(), and certain option
3542 * desugaring. Also in CPU feature desugaring (buried in
3543 * parse_cpu_option()), which happens below this point, but may
3544 * only target the CPU type, which can only be created after
3545 * parse_cpu_option() returned the type.
3547 * Machine compat properties: object_set_machine_compat_props().
3548 * Accelerator compat props: object_set_accelerator_compat_props(),
3549 * called from do_configure_accelerator().
3552 machine_class
= MACHINE_GET_CLASS(current_machine
);
3553 if (!qtest_enabled() && machine_class
->deprecation_reason
) {
3554 warn_report("Machine type '%s' is deprecated: %s",
3555 machine_class
->name
, machine_class
->deprecation_reason
);
3559 * Note: creates a QOM object, must run only after global and
3560 * compat properties have been set up.
3562 migration_object_init();
3564 qemu_create_late_backends();
3566 /* parse features once if machine provides default cpu_type */
3567 current_machine
->cpu_type
= machine_class
->default_cpu_type
;
3569 current_machine
->cpu_type
= parse_cpu_option(cpu_option
);
3571 /* NB: for machine none cpu_type could STILL be NULL here! */
3573 qemu_resolve_machine_memdev();
3574 parse_numa_opts(current_machine
);
3576 if (vmstate_dump_file
) {
3578 module_load_qom_all();
3579 dump_vmstate_json_to_file(vmstate_dump_file
);
3583 if (!preconfig_requested
) {
3584 qmp_x_exit_preconfig(&error_fatal
);
3586 qemu_init_displays();
3587 accel_setup_post(current_machine
);