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-visit-block-core.h"
120 #include "qapi/qapi-visit-compat.h"
121 #include "qapi/qapi-visit-ui.h"
122 #include "qapi/qapi-commands-block-core.h"
123 #include "qapi/qapi-commands-migration.h"
124 #include "qapi/qapi-commands-misc.h"
125 #include "qapi/qapi-visit-qom.h"
126 #include "qapi/qapi-commands-ui.h"
127 #include "qapi/qmp/qdict.h"
128 #include "block/qdict.h"
129 #include "qapi/qmp/qerror.h"
130 #include "sysemu/iothread.h"
131 #include "qemu/guest-random.h"
132 #include "qemu/keyval.h"
134 #include "config-host.h"
136 #define MAX_VIRTIO_CONSOLES 1
138 typedef struct BlockdevOptionsQueueEntry
{
139 BlockdevOptions
*bdo
;
141 QSIMPLEQ_ENTRY(BlockdevOptionsQueueEntry
) entry
;
142 } BlockdevOptionsQueueEntry
;
144 typedef QSIMPLEQ_HEAD(, BlockdevOptionsQueueEntry
) BlockdevOptionsQueue
;
146 typedef struct ObjectOption
{
148 QTAILQ_ENTRY(ObjectOption
) next
;
151 typedef struct DeviceOption
{
154 QTAILQ_ENTRY(DeviceOption
) next
;
157 static const char *cpu_option
;
158 static const char *mem_path
;
159 static const char *incoming
;
160 static const char *loadvm
;
161 static const char *accelerators
;
162 static QDict
*machine_opts_dict
;
163 static QTAILQ_HEAD(, ObjectOption
) object_opts
= QTAILQ_HEAD_INITIALIZER(object_opts
);
164 static QTAILQ_HEAD(, DeviceOption
) device_opts
= QTAILQ_HEAD_INITIALIZER(device_opts
);
165 static ram_addr_t maxram_size
;
166 static uint64_t ram_slots
;
167 static int display_remote
;
169 static bool preconfig_requested
;
170 static QemuPluginList plugin_list
= QTAILQ_HEAD_INITIALIZER(plugin_list
);
171 static BlockdevOptionsQueue bdo_queue
= QSIMPLEQ_HEAD_INITIALIZER(bdo_queue
);
172 static bool nographic
= false;
173 static int mem_prealloc
; /* force preallocation of physical target memory */
174 static ram_addr_t ram_size
;
175 static const char *vga_model
= NULL
;
176 static DisplayOptions dpy
;
177 static int num_serial_hds
;
178 static Chardev
**serial_hds
;
179 static const char *log_mask
;
180 static const char *log_file
;
181 static bool list_data_dirs
;
182 static const char *watchdog
;
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" },
939 .name
= "Xen paravirtualized framebuffer",
943 static bool vga_interface_available(VGAInterfaceType t
)
945 const VGAInterfaceInfo
*ti
= &vga_interfaces
[t
];
947 assert(t
< VGA_TYPE_MAX
);
948 return !ti
->class_names
[0] ||
949 module_object_class_by_name(ti
->class_names
[0]) ||
950 module_object_class_by_name(ti
->class_names
[1]);
954 get_default_vga_model(const MachineClass
*machine_class
)
956 if (machine_class
->default_display
) {
957 return machine_class
->default_display
;
958 } else if (vga_interface_available(VGA_CIRRUS
)) {
960 } else if (vga_interface_available(VGA_STD
)) {
967 static void select_vgahw(const MachineClass
*machine_class
, const char *p
)
972 if (g_str_equal(p
, "help")) {
973 const char *def
= get_default_vga_model(machine_class
);
975 for (t
= 0; t
< VGA_TYPE_MAX
; t
++) {
976 const VGAInterfaceInfo
*ti
= &vga_interfaces
[t
];
978 if (vga_interface_available(t
) && ti
->opt_name
) {
979 printf("%-20s %s%s\n", ti
->opt_name
, ti
->name
?: "",
980 g_str_equal(ti
->opt_name
, def
) ? " (default)" : "");
986 assert(vga_interface_type
== VGA_NONE
);
987 for (t
= 0; t
< VGA_TYPE_MAX
; t
++) {
988 const VGAInterfaceInfo
*ti
= &vga_interfaces
[t
];
989 if (ti
->opt_name
&& strstart(p
, ti
->opt_name
, &opts
)) {
990 if (!vga_interface_available(t
)) {
991 error_report("%s not available", ti
->name
);
994 vga_interface_type
= t
;
998 if (t
== VGA_TYPE_MAX
) {
1000 error_report("unknown vga type: %s", p
);
1004 const char *nextopt
;
1006 if (strstart(opts
, ",retrace=", &nextopt
)) {
1008 if (strstart(opts
, "dumb", &nextopt
))
1009 vga_retrace_method
= VGA_RETRACE_DUMB
;
1010 else if (strstart(opts
, "precise", &nextopt
))
1011 vga_retrace_method
= VGA_RETRACE_PRECISE
;
1012 else goto invalid_vga
;
1013 } else goto invalid_vga
;
1018 static void parse_display_qapi(const char *optarg
)
1020 DisplayOptions
*opts
;
1023 v
= qobject_input_visitor_new_str(optarg
, "type", &error_fatal
);
1025 visit_type_DisplayOptions(v
, NULL
, &opts
, &error_fatal
);
1026 QAPI_CLONE_MEMBERS(DisplayOptions
, &dpy
, opts
);
1028 qapi_free_DisplayOptions(opts
);
1032 DisplayOptions
*qmp_query_display_options(Error
**errp
)
1034 return QAPI_CLONE(DisplayOptions
, &dpy
);
1037 static void parse_display(const char *p
)
1041 if (is_help_option(p
)) {
1042 qemu_display_help();
1046 if (strstart(p
, "sdl", &opts
)) {
1048 * sdl DisplayType needs hand-crafted parser instead of
1049 * parse_display_qapi() due to some options not in
1050 * DisplayOptions, specifically:
1051 * - ctrl_grab + alt_grab
1052 * They can't be moved into the QAPI since they use underscores,
1053 * thus they will get replaced by "grab-mod" in the long term
1055 #if defined(CONFIG_SDL)
1056 dpy
.type
= DISPLAY_TYPE_SDL
;
1058 const char *nextopt
;
1060 if (strstart(opts
, ",grab-mod=", &nextopt
)) {
1062 if (strstart(opts
, "lshift-lctrl-lalt", &nextopt
)) {
1064 } else if (strstart(opts
, "rctrl", &nextopt
)) {
1067 goto invalid_sdl_args
;
1069 } else if (strstart(opts
, ",alt_grab=", &nextopt
)) {
1071 if (strstart(opts
, "on", &nextopt
)) {
1073 } else if (strstart(opts
, "off", &nextopt
)) {
1076 goto invalid_sdl_args
;
1078 warn_report("alt_grab is deprecated, use grab-mod instead.");
1079 } else if (strstart(opts
, ",ctrl_grab=", &nextopt
)) {
1081 if (strstart(opts
, "on", &nextopt
)) {
1083 } else if (strstart(opts
, "off", &nextopt
)) {
1086 goto invalid_sdl_args
;
1088 warn_report("ctrl_grab is deprecated, use grab-mod instead.");
1089 } else if (strstart(opts
, ",window_close=", &nextopt
) ||
1090 strstart(opts
, ",window-close=", &nextopt
)) {
1091 if (strstart(opts
, ",window_close=", NULL
)) {
1092 warn_report("window_close with an underscore is deprecated,"
1093 " please use window-close instead.");
1096 dpy
.has_window_close
= true;
1097 if (strstart(opts
, "on", &nextopt
)) {
1098 dpy
.window_close
= true;
1099 } else if (strstart(opts
, "off", &nextopt
)) {
1100 dpy
.window_close
= false;
1102 goto invalid_sdl_args
;
1104 } else if (strstart(opts
, ",show-cursor=", &nextopt
)) {
1106 dpy
.has_show_cursor
= true;
1107 if (strstart(opts
, "on", &nextopt
)) {
1108 dpy
.show_cursor
= true;
1109 } else if (strstart(opts
, "off", &nextopt
)) {
1110 dpy
.show_cursor
= false;
1112 goto invalid_sdl_args
;
1114 } else if (strstart(opts
, ",gl=", &nextopt
)) {
1117 if (strstart(opts
, "on", &nextopt
)) {
1118 dpy
.gl
= DISPLAYGL_MODE_ON
;
1119 } else if (strstart(opts
, "core", &nextopt
)) {
1120 dpy
.gl
= DISPLAYGL_MODE_CORE
;
1121 } else if (strstart(opts
, "es", &nextopt
)) {
1122 dpy
.gl
= DISPLAYGL_MODE_ES
;
1123 } else if (strstart(opts
, "off", &nextopt
)) {
1124 dpy
.gl
= DISPLAYGL_MODE_OFF
;
1126 goto invalid_sdl_args
;
1130 error_report("invalid SDL option string");
1136 error_report("SDL display supported is not available in this binary");
1139 } else if (strstart(p
, "vnc", &opts
)) {
1141 * vnc isn't a (local) DisplayType but a protocol for remote
1145 vnc_parse(opts
+ 1);
1147 error_report("VNC requires a display argument vnc=<display>");
1151 parse_display_qapi(p
);
1155 static inline bool nonempty_str(const char *str
)
1160 static int parse_fw_cfg(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1164 const char *name
, *file
, *str
, *gen_id
;
1165 FWCfgState
*fw_cfg
= (FWCfgState
*) opaque
;
1167 if (fw_cfg
== NULL
) {
1168 error_setg(errp
, "fw_cfg device not available");
1171 name
= qemu_opt_get(opts
, "name");
1172 file
= qemu_opt_get(opts
, "file");
1173 str
= qemu_opt_get(opts
, "string");
1174 gen_id
= qemu_opt_get(opts
, "gen_id");
1176 /* we need the name, and exactly one of: file, content string, gen_id */
1177 if (!nonempty_str(name
) ||
1178 nonempty_str(file
) + nonempty_str(str
) + nonempty_str(gen_id
) != 1) {
1179 error_setg(errp
, "name, plus exactly one of file,"
1180 " string and gen_id, are needed");
1183 if (strlen(name
) > FW_CFG_MAX_FILE_PATH
- 1) {
1184 error_setg(errp
, "name too long (max. %d char)",
1185 FW_CFG_MAX_FILE_PATH
- 1);
1188 if (nonempty_str(gen_id
)) {
1190 * In this particular case where the content is populated
1191 * internally, the "etc/" namespace protection is relaxed,
1192 * so do not emit a warning.
1194 } else if (strncmp(name
, "opt/", 4) != 0) {
1195 warn_report("externally provided fw_cfg item names "
1196 "should be prefixed with \"opt/\"");
1198 if (nonempty_str(str
)) {
1199 size
= strlen(str
); /* NUL terminator NOT included in fw_cfg blob */
1200 buf
= g_memdup(str
, size
);
1201 } else if (nonempty_str(gen_id
)) {
1202 if (!fw_cfg_add_from_generator(fw_cfg
, name
, gen_id
, errp
)) {
1208 if (!g_file_get_contents(file
, &buf
, &size
, &err
)) {
1209 error_setg(errp
, "can't load %s: %s", file
, err
->message
);
1214 /* For legacy, keep user files in a specific global order. */
1215 fw_cfg_set_order_override(fw_cfg
, FW_CFG_ORDER_OVERRIDE_USER
);
1216 fw_cfg_add_file(fw_cfg
, name
, buf
, size
);
1217 fw_cfg_reset_order_override(fw_cfg
);
1221 static int device_help_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1223 return qdev_device_help(opts
);
1226 static int device_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1230 dev
= qdev_device_add(opts
, errp
);
1231 if (!dev
&& *errp
) {
1232 error_report_err(*errp
);
1235 object_unref(OBJECT(dev
));
1240 static int chardev_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1242 Error
*local_err
= NULL
;
1244 if (!qemu_chr_new_from_opts(opts
, NULL
, &local_err
)) {
1246 error_propagate(errp
, local_err
);
1254 #ifdef CONFIG_VIRTFS
1255 static int fsdev_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1257 return qemu_fsdev_add(opts
, errp
);
1261 static int mon_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1263 return monitor_init_opts(opts
, errp
);
1266 static void monitor_parse(const char *optarg
, const char *mode
, bool pretty
)
1268 static int monitor_device_index
= 0;
1273 if (strstart(optarg
, "chardev:", &p
)) {
1274 snprintf(label
, sizeof(label
), "%s", p
);
1276 snprintf(label
, sizeof(label
), "compat_monitor%d",
1277 monitor_device_index
);
1278 opts
= qemu_chr_parse_compat(label
, optarg
, true);
1280 error_report("parse error: %s", optarg
);
1285 opts
= qemu_opts_create(qemu_find_opts("mon"), label
, 1, &error_fatal
);
1286 qemu_opt_set(opts
, "mode", mode
, &error_abort
);
1287 qemu_opt_set(opts
, "chardev", label
, &error_abort
);
1288 if (!strcmp(mode
, "control")) {
1289 qemu_opt_set_bool(opts
, "pretty", pretty
, &error_abort
);
1291 assert(pretty
== false);
1293 monitor_device_index
++;
1296 struct device_config
{
1298 DEV_USB
, /* -usbdevice */
1299 DEV_SERIAL
, /* -serial */
1300 DEV_PARALLEL
, /* -parallel */
1301 DEV_DEBUGCON
, /* -debugcon */
1302 DEV_GDB
, /* -gdb, -s */
1303 DEV_SCLP
, /* s390 sclp */
1305 const char *cmdline
;
1307 QTAILQ_ENTRY(device_config
) next
;
1310 static QTAILQ_HEAD(, device_config
) device_configs
=
1311 QTAILQ_HEAD_INITIALIZER(device_configs
);
1313 static void add_device_config(int type
, const char *cmdline
)
1315 struct device_config
*conf
;
1317 conf
= g_malloc0(sizeof(*conf
));
1319 conf
->cmdline
= cmdline
;
1320 loc_save(&conf
->loc
);
1321 QTAILQ_INSERT_TAIL(&device_configs
, conf
, next
);
1324 static int foreach_device_config(int type
, int (*func
)(const char *cmdline
))
1326 struct device_config
*conf
;
1329 QTAILQ_FOREACH(conf
, &device_configs
, next
) {
1330 if (conf
->type
!= type
)
1332 loc_push_restore(&conf
->loc
);
1333 rc
= func(conf
->cmdline
);
1334 loc_pop(&conf
->loc
);
1342 static void qemu_disable_default_devices(void)
1344 MachineClass
*machine_class
= MACHINE_GET_CLASS(current_machine
);
1346 default_driver_check_json();
1347 qemu_opts_foreach(qemu_find_opts("device"),
1348 default_driver_check
, NULL
, NULL
);
1349 qemu_opts_foreach(qemu_find_opts("global"),
1350 default_driver_check
, NULL
, NULL
);
1352 if (!vga_model
&& !default_vga
) {
1353 vga_interface_type
= VGA_DEVICE
;
1355 if (!has_defaults
|| machine_class
->no_serial
) {
1358 if (!has_defaults
|| machine_class
->no_parallel
) {
1359 default_parallel
= 0;
1361 if (!has_defaults
|| machine_class
->no_floppy
) {
1364 if (!has_defaults
|| machine_class
->no_cdrom
) {
1367 if (!has_defaults
|| machine_class
->no_sdcard
) {
1370 if (!has_defaults
) {
1371 default_monitor
= 0;
1377 static void qemu_create_default_devices(void)
1379 MachineClass
*machine_class
= MACHINE_GET_CLASS(current_machine
);
1381 if (is_daemonized()) {
1382 /* According to documentation and historically, -nographic redirects
1383 * serial port, parallel port and monitor to stdio, which does not work
1384 * with -daemonize. We can redirect these to null instead, but since
1385 * -nographic is legacy, let's just error out.
1386 * We disallow -nographic only if all other ports are not redirected
1387 * explicitly, to not break existing legacy setups which uses
1388 * -nographic _and_ redirects all ports explicitly - this is valid
1389 * usage, -nographic is just a no-op in this case.
1392 && (default_parallel
|| default_serial
|| default_monitor
)) {
1393 error_report("-nographic cannot be used with -daemonize");
1399 if (default_parallel
)
1400 add_device_config(DEV_PARALLEL
, "null");
1401 if (default_serial
&& default_monitor
) {
1402 add_device_config(DEV_SERIAL
, "mon:stdio");
1405 add_device_config(DEV_SERIAL
, "stdio");
1406 if (default_monitor
)
1407 monitor_parse("stdio", "readline", false);
1411 add_device_config(DEV_SERIAL
, "vc:80Cx24C");
1412 if (default_parallel
)
1413 add_device_config(DEV_PARALLEL
, "vc:80Cx24C");
1414 if (default_monitor
)
1415 monitor_parse("vc:80Cx24C", "readline", false);
1419 QemuOptsList
*net
= qemu_find_opts("net");
1420 qemu_opts_parse(net
, "nic", true, &error_abort
);
1422 qemu_opts_parse(net
, "user", true, &error_abort
);
1426 #if defined(CONFIG_VNC)
1427 if (!QTAILQ_EMPTY(&(qemu_find_opts("vnc")->head
))) {
1431 if (dpy
.type
== DISPLAY_TYPE_DEFAULT
&& !display_remote
) {
1432 if (!qemu_display_find_default(&dpy
)) {
1433 dpy
.type
= DISPLAY_TYPE_NONE
;
1434 #if defined(CONFIG_VNC)
1435 vnc_parse("localhost:0,to=99,id=default");
1439 if (dpy
.type
== DISPLAY_TYPE_DEFAULT
) {
1440 dpy
.type
= DISPLAY_TYPE_NONE
;
1443 /* If no default VGA is requested, the default is "none". */
1445 vga_model
= get_default_vga_model(machine_class
);
1448 select_vgahw(machine_class
, vga_model
);
1452 static int serial_parse(const char *devname
)
1454 int index
= num_serial_hds
;
1457 if (strcmp(devname
, "none") == 0)
1459 snprintf(label
, sizeof(label
), "serial%d", index
);
1460 serial_hds
= g_renew(Chardev
*, serial_hds
, index
+ 1);
1462 serial_hds
[index
] = qemu_chr_new_mux_mon(label
, devname
, NULL
);
1463 if (!serial_hds
[index
]) {
1464 error_report("could not connect serial device"
1465 " to character backend '%s'", devname
);
1472 Chardev
*serial_hd(int i
)
1475 if (i
< num_serial_hds
) {
1476 return serial_hds
[i
];
1481 static int parallel_parse(const char *devname
)
1483 static int index
= 0;
1486 if (strcmp(devname
, "none") == 0)
1488 if (index
== MAX_PARALLEL_PORTS
) {
1489 error_report("too many parallel ports");
1492 snprintf(label
, sizeof(label
), "parallel%d", index
);
1493 parallel_hds
[index
] = qemu_chr_new_mux_mon(label
, devname
, NULL
);
1494 if (!parallel_hds
[index
]) {
1495 error_report("could not connect parallel device"
1496 " to character backend '%s'", devname
);
1503 static int debugcon_parse(const char *devname
)
1507 if (!qemu_chr_new_mux_mon("debugcon", devname
, NULL
)) {
1508 error_report("invalid character backend '%s'", devname
);
1511 opts
= qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL
);
1513 error_report("already have a debugcon device");
1516 qemu_opt_set(opts
, "driver", "isa-debugcon", &error_abort
);
1517 qemu_opt_set(opts
, "chardev", "debugcon", &error_abort
);
1521 static gint
machine_class_cmp(gconstpointer a
, gconstpointer b
)
1523 const MachineClass
*mc1
= a
, *mc2
= b
;
1526 if (mc1
->family
== NULL
) {
1527 if (mc2
->family
== NULL
) {
1528 /* Compare standalone machine types against each other; they sort
1529 * in increasing order.
1531 return strcmp(object_class_get_name(OBJECT_CLASS(mc1
)),
1532 object_class_get_name(OBJECT_CLASS(mc2
)));
1535 /* Standalone machine types sort after families. */
1539 if (mc2
->family
== NULL
) {
1540 /* Families sort before standalone machine types. */
1544 /* Families sort between each other alphabetically increasingly. */
1545 res
= strcmp(mc1
->family
, mc2
->family
);
1550 /* Within the same family, machine types sort in decreasing order. */
1551 return strcmp(object_class_get_name(OBJECT_CLASS(mc2
)),
1552 object_class_get_name(OBJECT_CLASS(mc1
)));
1555 static void machine_help_func(const QDict
*qdict
)
1557 GSList
*machines
, *el
;
1558 const char *type
= qdict_get_try_str(qdict
, "type");
1560 machines
= object_class_get_list(TYPE_MACHINE
, false);
1562 ObjectClass
*machine_class
= OBJECT_CLASS(find_machine(type
, machines
));
1563 if (machine_class
) {
1564 type_print_class_properties(object_class_get_name(machine_class
));
1569 printf("Supported machines are:\n");
1570 machines
= g_slist_sort(machines
, machine_class_cmp
);
1571 for (el
= machines
; el
; el
= el
->next
) {
1572 MachineClass
*mc
= el
->data
;
1574 printf("%-20s %s (alias of %s)\n", mc
->alias
, mc
->desc
, mc
->name
);
1576 printf("%-20s %s%s%s\n", mc
->name
, mc
->desc
,
1577 mc
->is_default
? " (default)" : "",
1578 mc
->deprecation_reason
? " (deprecated)" : "");
1583 machine_merge_property(const char *propname
, QDict
*prop
, Error
**errp
)
1588 /* Preserve the caller's reference to prop. */
1590 qdict_put(opts
, propname
, prop
);
1591 keyval_merge(machine_opts_dict
, opts
, errp
);
1592 qobject_unref(opts
);
1596 machine_parse_property_opt(QemuOptsList
*opts_list
, const char *propname
,
1602 prop
= keyval_parse(arg
, opts_list
->implied_opt_name
, &help
, &error_fatal
);
1604 qemu_opts_print_help(opts_list
, true);
1607 machine_merge_property(propname
, prop
, &error_fatal
);
1608 qobject_unref(prop
);
1611 static const char *pid_file
;
1612 static Notifier qemu_unlink_pidfile_notifier
;
1614 static void qemu_unlink_pidfile(Notifier
*n
, void *data
)
1621 static const QEMUOption
*lookup_opt(int argc
, char **argv
,
1622 const char **poptarg
, int *poptind
)
1624 const QEMUOption
*popt
;
1625 int optind
= *poptind
;
1626 char *r
= argv
[optind
];
1629 loc_set_cmdline(argv
, optind
, 1);
1631 /* Treat --foo the same as -foo. */
1634 popt
= qemu_options
;
1637 error_report("invalid option");
1640 if (!strcmp(popt
->name
, r
+ 1))
1644 if (popt
->flags
& HAS_ARG
) {
1645 if (optind
>= argc
) {
1646 error_report("requires an argument");
1649 optarg
= argv
[optind
++];
1650 loc_set_cmdline(argv
, optind
- 2, 2);
1661 static MachineClass
*select_machine(QDict
*qdict
, Error
**errp
)
1663 const char *optarg
= qdict_get_try_str(qdict
, "type");
1664 GSList
*machines
= object_class_get_list(TYPE_MACHINE
, false);
1665 MachineClass
*machine_class
;
1666 Error
*local_err
= NULL
;
1669 machine_class
= find_machine(optarg
, machines
);
1670 qdict_del(qdict
, "type");
1671 if (!machine_class
) {
1672 error_setg(&local_err
, "unsupported machine type");
1675 machine_class
= find_default_machine(machines
);
1676 if (!machine_class
) {
1677 error_setg(&local_err
, "No machine specified, and there is no default");
1681 g_slist_free(machines
);
1683 error_append_hint(&local_err
, "Use -machine help to list supported machines\n");
1684 error_propagate(errp
, local_err
);
1686 return machine_class
;
1689 static int object_parse_property_opt(Object
*obj
,
1690 const char *name
, const char *value
,
1691 const char *skip
, Error
**errp
)
1693 if (g_str_equal(name
, skip
)) {
1697 if (!object_property_parse(obj
, name
, value
, errp
)) {
1704 /* *Non*recursively replace underscores with dashes in QDict keys. */
1705 static void keyval_dashify(QDict
*qdict
, Error
**errp
)
1707 const QDictEntry
*ent
, *next
;
1710 for (ent
= qdict_first(qdict
); ent
; ent
= next
) {
1711 g_autofree
char *new_key
= NULL
;
1713 next
= qdict_next(qdict
, ent
);
1714 if (!strchr(ent
->key
, '_')) {
1717 new_key
= g_strdup(ent
->key
);
1718 for (p
= new_key
; *p
; p
++) {
1723 if (qdict_haskey(qdict
, new_key
)) {
1724 error_setg(errp
, "Conflict between '%s' and '%s'", ent
->key
, new_key
);
1727 qobject_ref(ent
->value
);
1728 qdict_put_obj(qdict
, new_key
, ent
->value
);
1729 qdict_del(qdict
, ent
->key
);
1733 static void qemu_apply_legacy_machine_options(QDict
*qdict
)
1737 keyval_dashify(qdict
, &error_fatal
);
1739 /* Legacy options do not correspond to MachineState properties. */
1740 value
= qdict_get_try_str(qdict
, "accel");
1742 accelerators
= g_strdup(value
);
1743 qdict_del(qdict
, "accel");
1746 value
= qdict_get_try_str(qdict
, "igd-passthru");
1748 object_register_sugar_prop(ACCEL_CLASS_NAME("xen"), "igd-passthru", value
,
1750 qdict_del(qdict
, "igd-passthru");
1753 value
= qdict_get_try_str(qdict
, "kvm-shadow-mem");
1755 object_register_sugar_prop(ACCEL_CLASS_NAME("kvm"), "kvm-shadow-mem", value
,
1757 qdict_del(qdict
, "kvm-shadow-mem");
1760 value
= qdict_get_try_str(qdict
, "kernel-irqchip");
1762 object_register_sugar_prop(ACCEL_CLASS_NAME("kvm"), "kernel-irqchip", value
,
1764 object_register_sugar_prop(ACCEL_CLASS_NAME("whpx"), "kernel-irqchip", value
,
1766 qdict_del(qdict
, "kernel-irqchip");
1770 static void object_option_foreach_add(bool (*type_opt_predicate
)(const char *))
1772 ObjectOption
*opt
, *next
;
1774 QTAILQ_FOREACH_SAFE(opt
, &object_opts
, next
, next
) {
1775 const char *type
= ObjectType_str(opt
->opts
->qom_type
);
1776 if (type_opt_predicate(type
)) {
1777 user_creatable_add_qapi(opt
->opts
, &error_fatal
);
1778 qapi_free_ObjectOptions(opt
->opts
);
1779 QTAILQ_REMOVE(&object_opts
, opt
, next
);
1785 static void object_option_add_visitor(Visitor
*v
)
1787 ObjectOption
*opt
= g_new0(ObjectOption
, 1);
1788 visit_type_ObjectOptions(v
, NULL
, &opt
->opts
, &error_fatal
);
1789 QTAILQ_INSERT_TAIL(&object_opts
, opt
, next
);
1792 static void object_option_parse(const char *optarg
)
1798 if (optarg
[0] == '{') {
1799 QObject
*obj
= qobject_from_json(optarg
, &error_fatal
);
1801 v
= qobject_input_visitor_new(obj
);
1804 opts
= qemu_opts_parse_noisily(qemu_find_opts("object"),
1810 type
= qemu_opt_get(opts
, "qom-type");
1812 error_setg(&error_fatal
, QERR_MISSING_PARAMETER
, "qom-type");
1814 if (user_creatable_print_help(type
, opts
)) {
1818 v
= opts_visitor_new(opts
);
1821 object_option_add_visitor(v
);
1826 * Initial object creation happens before all other
1827 * QEMU data types are created. The majority of objects
1828 * can be created at this point. The rng-egd object
1829 * cannot be created here, as it depends on the chardev
1832 static bool object_create_early(const char *type
)
1835 * Objects should not be made "delayed" without a reason. If you
1836 * add one, state the reason in a comment!
1839 /* Reason: property "chardev" */
1840 if (g_str_equal(type
, "rng-egd") ||
1841 g_str_equal(type
, "qtest")) {
1845 #if defined(CONFIG_VHOST_USER) && defined(CONFIG_LINUX)
1846 /* Reason: cryptodev-vhost-user property "chardev" */
1847 if (g_str_equal(type
, "cryptodev-vhost-user")) {
1852 /* Reason: vhost-user-blk-server property "node-name" */
1853 if (g_str_equal(type
, "vhost-user-blk-server")) {
1857 * Reason: filter-* property "netdev" etc.
1859 if (g_str_equal(type
, "filter-buffer") ||
1860 g_str_equal(type
, "filter-dump") ||
1861 g_str_equal(type
, "filter-mirror") ||
1862 g_str_equal(type
, "filter-redirector") ||
1863 g_str_equal(type
, "colo-compare") ||
1864 g_str_equal(type
, "filter-rewriter") ||
1865 g_str_equal(type
, "filter-replay")) {
1870 * Allocation of large amounts of memory may delay
1871 * chardev initialization for too long, and trigger timeouts
1872 * on software that waits for a monitor socket to be created
1875 if (g_str_has_prefix(type
, "memory-backend-")) {
1882 static void qemu_apply_machine_options(QDict
*qdict
)
1884 MachineClass
*machine_class
= MACHINE_GET_CLASS(current_machine
);
1885 const char *boot_order
= NULL
;
1886 const char *boot_once
= NULL
;
1889 object_set_properties_from_keyval(OBJECT(current_machine
), qdict
, false, &error_fatal
);
1890 current_machine
->ram_size
= ram_size
;
1891 current_machine
->maxram_size
= maxram_size
;
1892 current_machine
->ram_slots
= ram_slots
;
1894 opts
= qemu_opts_find(qemu_find_opts("boot-opts"), NULL
);
1896 boot_order
= qemu_opt_get(opts
, "order");
1898 validate_bootdevices(boot_order
, &error_fatal
);
1901 boot_once
= qemu_opt_get(opts
, "once");
1903 validate_bootdevices(boot_once
, &error_fatal
);
1906 boot_menu
= qemu_opt_get_bool(opts
, "menu", boot_menu
);
1907 boot_strict
= qemu_opt_get_bool(opts
, "strict", false);
1911 boot_order
= machine_class
->default_boot_order
;
1914 current_machine
->boot_order
= boot_order
;
1915 current_machine
->boot_once
= boot_once
;
1917 if (semihosting_enabled() && !semihosting_get_argc()) {
1918 /* fall back to the -kernel/-append */
1919 semihosting_arg_fallback(current_machine
->kernel_filename
, current_machine
->kernel_cmdline
);
1922 if (current_machine
->smp
.cpus
> 1) {
1923 Error
*blocker
= NULL
;
1924 error_setg(&blocker
, QERR_REPLAY_NOT_SUPPORTED
, "smp");
1925 replay_add_blocker(blocker
);
1929 static void qemu_create_early_backends(void)
1931 MachineClass
*machine_class
= MACHINE_GET_CLASS(current_machine
);
1932 #if defined(CONFIG_SDL)
1933 const bool use_sdl
= (dpy
.type
== DISPLAY_TYPE_SDL
);
1935 const bool use_sdl
= false;
1937 #if defined(CONFIG_GTK)
1938 const bool use_gtk
= (dpy
.type
== DISPLAY_TYPE_GTK
);
1940 const bool use_gtk
= false;
1943 if ((alt_grab
|| ctrl_grab
) && !use_sdl
) {
1944 error_report("-alt-grab and -ctrl-grab are only valid "
1945 "for SDL, ignoring option");
1947 if (dpy
.has_window_close
&& !use_gtk
&& !use_sdl
) {
1948 error_report("window-close is only valid for GTK and SDL, "
1952 qemu_display_early_init(&dpy
);
1953 qemu_console_early_init();
1955 if (dpy
.has_gl
&& dpy
.gl
!= DISPLAYGL_MODE_OFF
&& display_opengl
== 0) {
1956 #if defined(CONFIG_OPENGL)
1957 error_report("OpenGL is not supported by the display");
1959 error_report("OpenGL support is disabled");
1964 object_option_foreach_add(object_create_early
);
1966 /* spice needs the timers to be initialized by this point */
1967 /* spice must initialize before audio as it changes the default audiodev */
1968 /* spice must initialize before chardevs (for spicevmc and spiceport) */
1971 qemu_opts_foreach(qemu_find_opts("chardev"),
1972 chardev_init_func
, NULL
, &error_fatal
);
1974 #ifdef CONFIG_VIRTFS
1975 qemu_opts_foreach(qemu_find_opts("fsdev"),
1976 fsdev_init_func
, NULL
, &error_fatal
);
1980 * Note: we need to create audio and block backends before
1981 * setting machine properties, so they can be referred to.
1983 configure_blockdev(&bdo_queue
, machine_class
, snapshot
);
1984 audio_init_audiodevs();
1989 * The remainder of object creation happens after the
1990 * creation of chardev, fsdev, net clients and device data types.
1992 static bool object_create_late(const char *type
)
1994 return !object_create_early(type
);
1997 static void qemu_create_late_backends(void)
2000 qtest_server_init(qtest_chrdev
, qtest_log
, &error_fatal
);
2003 net_init_clients(&error_fatal
);
2005 object_option_foreach_add(object_create_late
);
2007 if (tpm_init() < 0) {
2011 qemu_opts_foreach(qemu_find_opts("mon"),
2012 mon_init_func
, NULL
, &error_fatal
);
2014 if (foreach_device_config(DEV_SERIAL
, serial_parse
) < 0)
2016 if (foreach_device_config(DEV_PARALLEL
, parallel_parse
) < 0)
2018 if (foreach_device_config(DEV_DEBUGCON
, debugcon_parse
) < 0)
2021 /* now chardevs have been created we may have semihosting to connect */
2022 qemu_semihosting_connect_chardevs();
2023 qemu_semihosting_console_init();
2026 static bool have_custom_ram_size(void)
2028 QemuOpts
*opts
= qemu_find_opts_singleton("memory");
2029 return !!qemu_opt_get_size(opts
, "size", 0);
2032 static void qemu_resolve_machine_memdev(void)
2034 if (current_machine
->ram_memdev_id
) {
2036 ram_addr_t backend_size
;
2038 backend
= object_resolve_path_type(current_machine
->ram_memdev_id
,
2039 TYPE_MEMORY_BACKEND
, NULL
);
2041 error_report("Memory backend '%s' not found",
2042 current_machine
->ram_memdev_id
);
2045 backend_size
= object_property_get_uint(backend
, "size", &error_abort
);
2046 if (have_custom_ram_size() && backend_size
!= ram_size
) {
2047 error_report("Size specified by -m option must match size of "
2048 "explicitly specified 'memory-backend' property");
2052 error_report("'-mem-path' can't be used together with"
2053 "'-machine memory-backend'");
2056 ram_size
= backend_size
;
2059 if (!xen_enabled()) {
2060 /* On 32-bit hosts, QEMU is limited by virtual address space */
2061 if (ram_size
> (2047 << 20) && HOST_LONG_BITS
== 32) {
2062 error_report("at most 2047 MB RAM can be simulated");
2068 static void set_memory_options(MachineClass
*mc
)
2071 const char *mem_str
;
2072 const ram_addr_t default_ram_size
= mc
->default_ram_size
;
2073 QemuOpts
*opts
= qemu_find_opts_singleton("memory");
2076 loc_push_none(&loc
);
2077 qemu_opts_loc_restore(opts
);
2080 mem_str
= qemu_opt_get(opts
, "size");
2083 error_report("missing 'size' option value");
2087 sz
= qemu_opt_get_size(opts
, "size", ram_size
);
2089 /* Fix up legacy suffix-less format */
2090 if (g_ascii_isdigit(mem_str
[strlen(mem_str
) - 1])) {
2091 uint64_t overflow_check
= sz
;
2094 if (sz
/ MiB
!= overflow_check
) {
2095 error_report("too large 'size' option value");
2101 /* backward compatibility behaviour for case "-m 0" */
2103 sz
= default_ram_size
;
2106 sz
= QEMU_ALIGN_UP(sz
, 8192);
2107 if (mc
->fixup_ram_size
) {
2108 sz
= mc
->fixup_ram_size(sz
);
2111 if (ram_size
!= sz
) {
2112 error_report("ram size too large");
2116 maxram_size
= ram_size
;
2118 if (qemu_opt_get(opts
, "maxmem")) {
2121 sz
= qemu_opt_get_size(opts
, "maxmem", 0);
2122 slots
= qemu_opt_get_number(opts
, "slots", 0);
2123 if (sz
< ram_size
) {
2124 error_report("invalid value of -m option maxmem: "
2125 "maximum memory size (0x%" PRIx64
") must be at least "
2126 "the initial memory size (0x" RAM_ADDR_FMT
")",
2129 } else if (slots
&& sz
== ram_size
) {
2130 error_report("invalid value of -m option maxmem: "
2131 "memory slots were specified but maximum memory size "
2132 "(0x%" PRIx64
") is equal to the initial memory size "
2133 "(0x" RAM_ADDR_FMT
")", sz
, ram_size
);
2139 } else if (qemu_opt_get(opts
, "slots")) {
2140 error_report("invalid -m option value: missing 'maxmem' option");
2147 static void qemu_create_machine(QDict
*qdict
)
2149 MachineClass
*machine_class
= select_machine(qdict
, &error_fatal
);
2150 object_set_machine_compat_props(machine_class
->compat_props
);
2152 set_memory_options(machine_class
);
2154 current_machine
= MACHINE(object_new_with_class(OBJECT_CLASS(machine_class
)));
2155 object_property_add_child(object_get_root(), "machine",
2156 OBJECT(current_machine
));
2157 object_property_add_child(container_get(OBJECT(current_machine
),
2159 "sysbus", OBJECT(sysbus_get_default()));
2161 if (machine_class
->minimum_page_bits
) {
2162 if (!set_preferred_target_page_bits(machine_class
->minimum_page_bits
)) {
2163 /* This would be a board error: specifying a minimum smaller than
2164 * a target's compile-time fixed setting.
2166 g_assert_not_reached();
2170 cpu_exec_init_all();
2173 if (machine_class
->hw_version
) {
2174 qemu_set_hw_version(machine_class
->hw_version
);
2178 * Get the default machine options from the machine if it is not already
2179 * specified either by the configuration file or by the command line.
2181 if (machine_class
->default_machine_opts
) {
2182 QDict
*default_opts
=
2183 keyval_parse(machine_class
->default_machine_opts
, NULL
, NULL
,
2185 qemu_apply_legacy_machine_options(default_opts
);
2186 object_set_properties_from_keyval(OBJECT(current_machine
), default_opts
,
2187 false, &error_abort
);
2188 qobject_unref(default_opts
);
2192 static int global_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2196 g
= g_malloc0(sizeof(*g
));
2197 g
->driver
= qemu_opt_get(opts
, "driver");
2198 g
->property
= qemu_opt_get(opts
, "property");
2199 g
->value
= qemu_opt_get(opts
, "value");
2200 qdev_prop_register_global(g
);
2205 * Return whether configuration group @group is stored in QemuOpts, or
2206 * recorded as one or more QDicts by qemu_record_config_group.
2208 static bool is_qemuopts_group(const char *group
)
2210 if (g_str_equal(group
, "object") ||
2211 g_str_equal(group
, "machine") ||
2212 g_str_equal(group
, "smp-opts")) {
2218 static void qemu_record_config_group(const char *group
, QDict
*dict
,
2219 bool from_json
, Error
**errp
)
2221 if (g_str_equal(group
, "object")) {
2222 Visitor
*v
= qobject_input_visitor_new_keyval(QOBJECT(dict
));
2223 object_option_add_visitor(v
);
2225 } else if (g_str_equal(group
, "machine")) {
2227 * Cannot merge string-valued and type-safe dictionaries, so JSON
2228 * is not accepted yet for -M.
2231 keyval_merge(machine_opts_dict
, dict
, errp
);
2232 } else if (g_str_equal(group
, "smp-opts")) {
2233 machine_merge_property("smp", dict
, &error_fatal
);
2240 * Parse non-QemuOpts config file groups, pass the rest to
2241 * qemu_config_do_parse.
2243 static void qemu_parse_config_group(const char *group
, QDict
*qdict
,
2244 void *opaque
, Error
**errp
)
2247 if (is_qemuopts_group(group
)) {
2248 qemu_config_do_parse(group
, qdict
, opaque
, errp
);
2252 crumpled
= qdict_crumple(qdict
, errp
);
2256 switch (qobject_type(crumpled
)) {
2258 qemu_record_config_group(group
, qobject_to(QDict
, crumpled
), false, errp
);
2261 error_setg(errp
, "Lists cannot be at top level of a configuration section");
2264 g_assert_not_reached();
2266 qobject_unref(crumpled
);
2269 static void qemu_read_default_config_file(Error
**errp
)
2273 g_autofree
char *file
= get_relocated_path(CONFIG_QEMU_CONFDIR
"/qemu.conf");
2275 ret
= qemu_read_config_file(file
, qemu_parse_config_group
, errp
);
2277 if (ret
== -ENOENT
) {
2284 static void qemu_set_option(const char *str
, Error
**errp
)
2286 char group
[64], id
[64], arg
[64];
2291 rc
= sscanf(str
, "%63[^.].%63[^.].%63[^=]%n", group
, id
, arg
, &offset
);
2292 if (rc
< 3 || str
[offset
] != '=') {
2293 error_setg(errp
, "can't parse: \"%s\"", str
);
2297 if (!is_qemuopts_group(group
)) {
2298 error_setg(errp
, "-set is not supported with %s", group
);
2300 list
= qemu_find_opts_err(group
, errp
);
2302 opts
= qemu_opts_find(list
, id
);
2304 error_setg(errp
, "there is no %s \"%s\" defined", group
, id
);
2307 qemu_opt_set(opts
, arg
, str
+ offset
+ 1, errp
);
2312 static void user_register_global_props(void)
2314 qemu_opts_foreach(qemu_find_opts("global"),
2315 global_init_func
, NULL
, NULL
);
2318 static int do_configure_icount(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2320 icount_configure(opts
, errp
);
2324 static int accelerator_set_property(void *opaque
,
2325 const char *name
, const char *value
,
2328 return object_parse_property_opt(opaque
, name
, value
, "accel", errp
);
2331 static int do_configure_accelerator(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2333 bool *p_init_failed
= opaque
;
2334 const char *acc
= qemu_opt_get(opts
, "accel");
2335 AccelClass
*ac
= accel_find(acc
);
2338 bool qtest_with_kvm
;
2340 qtest_with_kvm
= g_str_equal(acc
, "kvm") && qtest_chrdev
!= NULL
;
2343 *p_init_failed
= true;
2344 if (!qtest_with_kvm
) {
2345 error_report("invalid accelerator %s", acc
);
2349 accel
= ACCEL(object_new_with_class(OBJECT_CLASS(ac
)));
2350 object_apply_compat_props(OBJECT(accel
));
2351 qemu_opt_foreach(opts
, accelerator_set_property
,
2355 ret
= accel_init_machine(accel
, current_machine
);
2357 *p_init_failed
= true;
2358 if (!qtest_with_kvm
|| ret
!= -ENOENT
) {
2359 error_report("failed to initialize %s: %s", acc
, strerror(-ret
));
2367 static void configure_accelerators(const char *progname
)
2369 bool init_failed
= false;
2371 qemu_opts_foreach(qemu_find_opts("icount"),
2372 do_configure_icount
, NULL
, &error_fatal
);
2374 if (QTAILQ_EMPTY(&qemu_accel_opts
.head
)) {
2375 char **accel_list
, **tmp
;
2377 if (accelerators
== NULL
) {
2378 /* Select the default accelerator */
2379 bool have_tcg
= accel_find("tcg");
2380 bool have_kvm
= accel_find("kvm");
2382 if (have_tcg
&& have_kvm
) {
2383 if (g_str_has_suffix(progname
, "kvm")) {
2384 /* If the program name ends with "kvm", we prefer KVM */
2385 accelerators
= "kvm:tcg";
2387 accelerators
= "tcg:kvm";
2389 } else if (have_kvm
) {
2390 accelerators
= "kvm";
2391 } else if (have_tcg
) {
2392 accelerators
= "tcg";
2394 error_report("No accelerator selected and"
2395 " no default accelerator available");
2399 accel_list
= g_strsplit(accelerators
, ":", 0);
2401 for (tmp
= accel_list
; *tmp
; tmp
++) {
2403 * Filter invalid accelerators here, to prevent obscenities
2404 * such as "-machine accel=tcg,,thread=single".
2406 if (accel_find(*tmp
)) {
2407 qemu_opts_parse_noisily(qemu_find_opts("accel"), *tmp
, true);
2410 error_report("invalid accelerator %s", *tmp
);
2413 g_strfreev(accel_list
);
2415 if (accelerators
!= NULL
) {
2416 error_report("The -accel and \"-machine accel=\" options are incompatible");
2421 if (!qemu_opts_foreach(qemu_find_opts("accel"),
2422 do_configure_accelerator
, &init_failed
, &error_fatal
)) {
2424 error_report("no accelerator found");
2429 if (init_failed
&& !qtest_chrdev
) {
2430 AccelClass
*ac
= ACCEL_GET_CLASS(current_accel());
2431 error_report("falling back to %s", ac
->name
);
2434 if (icount_enabled() && !tcg_enabled()) {
2435 error_report("-icount is not allowed with hardware virtualization");
2440 static void create_default_memdev(MachineState
*ms
, const char *path
)
2443 MachineClass
*mc
= MACHINE_GET_CLASS(ms
);
2445 obj
= object_new(path
? TYPE_MEMORY_BACKEND_FILE
: TYPE_MEMORY_BACKEND_RAM
);
2447 object_property_set_str(obj
, "mem-path", path
, &error_fatal
);
2449 object_property_set_int(obj
, "size", ms
->ram_size
, &error_fatal
);
2450 object_property_add_child(object_get_objects_root(), mc
->default_ram_id
,
2452 /* Ensure backend's memory region name is equal to mc->default_ram_id */
2453 object_property_set_bool(obj
, "x-use-canonical-path-for-ramblock-id",
2454 false, &error_fatal
);
2455 user_creatable_complete(USER_CREATABLE(obj
), &error_fatal
);
2457 object_property_set_str(OBJECT(ms
), "memory-backend", mc
->default_ram_id
,
2461 static void qemu_validate_options(const QDict
*machine_opts
)
2463 const char *kernel_filename
= qdict_get_try_str(machine_opts
, "kernel");
2464 const char *initrd_filename
= qdict_get_try_str(machine_opts
, "initrd");
2465 const char *kernel_cmdline
= qdict_get_try_str(machine_opts
, "append");
2467 if (kernel_filename
== NULL
) {
2468 if (kernel_cmdline
!= NULL
) {
2469 error_report("-append only allowed with -kernel option");
2473 if (initrd_filename
!= NULL
) {
2474 error_report("-initrd only allowed with -kernel option");
2479 if (loadvm
&& preconfig_requested
) {
2480 error_report("'preconfig' and 'loadvm' options are "
2481 "mutually exclusive");
2484 if (incoming
&& preconfig_requested
&& strcmp(incoming
, "defer") != 0) {
2485 error_report("'preconfig' supports '-incoming defer' only");
2489 #ifdef CONFIG_CURSES
2490 if (is_daemonized() && dpy
.type
== DISPLAY_TYPE_CURSES
) {
2491 error_report("curses display cannot be used with -daemonize");
2497 static void qemu_process_sugar_options(void)
2500 QObject
*smp
= qdict_get(machine_opts_dict
, "smp");
2501 if (smp
&& qobject_type(smp
) == QTYPE_QDICT
) {
2502 QObject
*cpus
= qdict_get(qobject_to(QDict
, smp
), "cpus");
2503 if (cpus
&& qobject_type(cpus
) == QTYPE_QSTRING
) {
2504 const char *val
= qstring_get_str(qobject_to(QString
, cpus
));
2505 object_register_sugar_prop("memory-backend", "prealloc-threads",
2509 object_register_sugar_prop("memory-backend", "prealloc", "on", false);
2513 int i
= select_watchdog(watchdog
);
2515 exit (i
== 1 ? 1 : 0);
2519 /* -action processing */
2522 * Process all the -action parameters parsed from cmdline.
2524 static int process_runstate_actions(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2526 Error
*local_err
= NULL
;
2527 QDict
*qdict
= qemu_opts_to_qdict(opts
, NULL
);
2528 QObject
*ret
= NULL
;
2529 qmp_marshal_set_action(qdict
, &ret
, &local_err
);
2531 qobject_unref(qdict
);
2533 error_propagate(errp
, local_err
);
2539 static void qemu_process_early_options(void)
2541 #ifdef CONFIG_SECCOMP
2542 QemuOptsList
*olist
= qemu_find_opts_err("sandbox", NULL
);
2544 qemu_opts_foreach(olist
, parse_sandbox
, NULL
, &error_fatal
);
2548 qemu_opts_foreach(qemu_find_opts("name"),
2549 parse_name
, NULL
, &error_fatal
);
2551 if (qemu_opts_foreach(qemu_find_opts("action"),
2552 process_runstate_actions
, NULL
, &error_fatal
)) {
2557 qemu_opts_foreach(qemu_find_opts("add-fd"),
2558 parse_add_fd
, NULL
, &error_fatal
);
2560 qemu_opts_foreach(qemu_find_opts("add-fd"),
2561 cleanup_add_fd
, NULL
, &error_fatal
);
2564 /* Open the logfile at this point and set the log mask if necessary. */
2568 mask
= qemu_str_to_log_mask(log_mask
);
2570 qemu_print_log_usage(stdout
);
2574 qemu_set_log_filename_flags(log_file
, mask
, &error_fatal
);
2577 qemu_add_default_firmwarepath();
2580 static void qemu_process_help_options(void)
2583 * Check for -cpu help and -device help before we call select_machine(),
2584 * which will return an error if the architecture has no default machine
2585 * type and the user did not specify one, so that the user doesn't need
2586 * to say '-cpu help -machine something'.
2588 if (cpu_option
&& is_help_option(cpu_option
)) {
2589 list_cpus(cpu_option
);
2593 if (qemu_opts_foreach(qemu_find_opts("device"),
2594 device_help_func
, NULL
, NULL
)) {
2598 /* -L help lists the data directories and exits. */
2599 if (list_data_dirs
) {
2600 qemu_list_data_dirs();
2605 static void qemu_maybe_daemonize(const char *pid_file
)
2610 rcu_disable_atfork();
2612 if (pid_file
&& !qemu_write_pidfile(pid_file
, &err
)) {
2613 error_reportf_err(err
, "cannot create PID file: ");
2617 qemu_unlink_pidfile_notifier
.notify
= qemu_unlink_pidfile
;
2618 qemu_add_exit_notifier(&qemu_unlink_pidfile_notifier
);
2621 static void qemu_init_displays(void)
2625 /* init local displays */
2626 ds
= init_displaystate();
2627 qemu_display_init(ds
, &dpy
);
2629 /* must be after terminal init, SDL library changes signal handlers */
2630 os_setup_signal_handling();
2632 /* init remote displays */
2634 qemu_opts_foreach(qemu_find_opts("vnc"),
2635 vnc_init_func
, NULL
, &error_fatal
);
2639 qemu_spice
.display_init();
2643 static void qemu_init_board(void)
2645 MachineClass
*machine_class
= MACHINE_GET_CLASS(current_machine
);
2647 if (machine_class
->default_ram_id
&& current_machine
->ram_size
&&
2648 numa_uses_legacy_mem() && !current_machine
->ram_memdev_id
) {
2649 create_default_memdev(current_machine
, mem_path
);
2652 /* process plugin before CPUs are created, but once -smp has been parsed */
2653 qemu_plugin_load_list(&plugin_list
, &error_fatal
);
2655 /* From here on we enter MACHINE_PHASE_INITIALIZED. */
2656 machine_run_board_init(current_machine
);
2658 drive_check_orphaned();
2662 if (hax_enabled()) {
2663 /* FIXME: why isn't cpu_synchronize_all_post_init enough? */
2668 static void qemu_create_cli_devices(void)
2674 qemu_opts_foreach(qemu_find_opts("fw_cfg"),
2675 parse_fw_cfg
, fw_cfg_find(), &error_fatal
);
2677 /* init USB devices */
2678 if (machine_usb(current_machine
)) {
2679 if (foreach_device_config(DEV_USB
, usb_parse
) < 0)
2683 /* init generic devices */
2684 rom_set_order_override(FW_CFG_ORDER_OVERRIDE_DEVICE
);
2685 qemu_opts_foreach(qemu_find_opts("device"),
2686 device_init_func
, NULL
, &error_fatal
);
2687 QTAILQ_FOREACH(opt
, &device_opts
, next
) {
2689 loc_push_restore(&opt
->loc
);
2691 * TODO Eventually we should call qmp_device_add() here to make sure it
2692 * behaves the same, but QMP still has to accept incorrectly typed
2693 * options until libvirt is fixed and we want to be strict on the CLI
2694 * from the start, so call qdev_device_add_from_qdict() directly for
2697 dev
= qdev_device_add_from_qdict(opt
->opts
, true, &error_fatal
);
2698 object_unref(OBJECT(dev
));
2701 rom_reset_order_override();
2704 static void qemu_machine_creation_done(void)
2706 MachineState
*machine
= MACHINE(qdev_get_machine());
2708 /* Did we create any drives that we failed to create a device for? */
2709 drive_check_orphaned();
2711 /* Don't warn about the default network setup that you get if
2712 * no command line -net or -netdev options are specified. There
2713 * are two cases that we would otherwise complain about:
2714 * (1) board doesn't support a NIC but the implicit "-net nic"
2716 * (2) CONFIG_SLIRP not set, in which case the implicit "-net nic"
2717 * sets up a nic that isn't connected to anything.
2719 if (!default_net
&& (!qtest_enabled() || has_defaults
)) {
2720 net_check_clients();
2723 qdev_prop_check_globals();
2725 qdev_machine_creation_done();
2729 * Verify that Confidential Guest Support has actually been initialized
2731 assert(machine
->cgs
->ready
);
2734 if (foreach_device_config(DEV_GDB
, gdbserver_start
) < 0) {
2739 void qmp_x_exit_preconfig(Error
**errp
)
2741 if (phase_check(PHASE_MACHINE_INITIALIZED
)) {
2742 error_setg(errp
, "The command is permitted only before machine initialization");
2747 qemu_create_cli_devices();
2748 qemu_machine_creation_done();
2751 load_snapshot(loadvm
, NULL
, false, NULL
, &error_fatal
);
2753 if (replay_mode
!= REPLAY_MODE_NONE
) {
2754 replay_vmstate_init();
2758 Error
*local_err
= NULL
;
2759 if (strcmp(incoming
, "defer") != 0) {
2760 qmp_migrate_incoming(incoming
, &local_err
);
2762 error_reportf_err(local_err
, "-incoming %s: ", incoming
);
2766 } else if (autostart
) {
2771 void qemu_init(int argc
, char **argv
, char **envp
)
2774 QemuOpts
*icount_opts
= NULL
, *accel_opts
= NULL
;
2775 QemuOptsList
*olist
;
2778 MachineClass
*machine_class
;
2779 bool userconfig
= true;
2780 FILE *vmstate_dump_file
= NULL
;
2782 qemu_add_opts(&qemu_drive_opts
);
2783 qemu_add_drive_opts(&qemu_legacy_drive_opts
);
2784 qemu_add_drive_opts(&qemu_common_drive_opts
);
2785 qemu_add_drive_opts(&qemu_drive_opts
);
2786 qemu_add_drive_opts(&bdrv_runtime_opts
);
2787 qemu_add_opts(&qemu_chardev_opts
);
2788 qemu_add_opts(&qemu_device_opts
);
2789 qemu_add_opts(&qemu_netdev_opts
);
2790 qemu_add_opts(&qemu_nic_opts
);
2791 qemu_add_opts(&qemu_net_opts
);
2792 qemu_add_opts(&qemu_rtc_opts
);
2793 qemu_add_opts(&qemu_global_opts
);
2794 qemu_add_opts(&qemu_mon_opts
);
2795 qemu_add_opts(&qemu_trace_opts
);
2796 qemu_plugin_add_opts();
2797 qemu_add_opts(&qemu_option_rom_opts
);
2798 qemu_add_opts(&qemu_accel_opts
);
2799 qemu_add_opts(&qemu_mem_opts
);
2800 qemu_add_opts(&qemu_smp_opts
);
2801 qemu_add_opts(&qemu_boot_opts
);
2802 qemu_add_opts(&qemu_add_fd_opts
);
2803 qemu_add_opts(&qemu_object_opts
);
2804 qemu_add_opts(&qemu_tpmdev_opts
);
2805 qemu_add_opts(&qemu_overcommit_opts
);
2806 qemu_add_opts(&qemu_msg_opts
);
2807 qemu_add_opts(&qemu_name_opts
);
2808 qemu_add_opts(&qemu_numa_opts
);
2809 qemu_add_opts(&qemu_icount_opts
);
2810 qemu_add_opts(&qemu_semihosting_config_opts
);
2811 qemu_add_opts(&qemu_fw_cfg_opts
);
2812 qemu_add_opts(&qemu_action_opts
);
2813 module_call_init(MODULE_INIT_OPTS
);
2815 error_init(argv
[0]);
2816 qemu_init_exec_dir(argv
[0]);
2818 qemu_init_arch_modules();
2820 qemu_init_subsystems();
2822 /* first pass of option parsing */
2824 while (optind
< argc
) {
2825 if (argv
[optind
][0] != '-') {
2829 const QEMUOption
*popt
;
2831 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
2832 switch (popt
->index
) {
2833 case QEMU_OPTION_nouserconfig
:
2840 machine_opts_dict
= qdict_new();
2842 qemu_read_default_config_file(&error_fatal
);
2845 /* second pass of option parsing */
2850 if (argv
[optind
][0] != '-') {
2851 loc_set_cmdline(argv
, optind
, 1);
2852 drive_add(IF_DEFAULT
, 0, argv
[optind
++], HD_OPTS
);
2854 const QEMUOption
*popt
;
2856 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
2857 if (!(popt
->arch_mask
& arch_type
)) {
2858 error_report("Option not supported for this target");
2861 switch(popt
->index
) {
2862 case QEMU_OPTION_cpu
:
2863 /* hw initialization will check this */
2864 cpu_option
= optarg
;
2866 case QEMU_OPTION_hda
:
2867 case QEMU_OPTION_hdb
:
2868 case QEMU_OPTION_hdc
:
2869 case QEMU_OPTION_hdd
:
2870 drive_add(IF_DEFAULT
, popt
->index
- QEMU_OPTION_hda
, optarg
,
2873 case QEMU_OPTION_blockdev
:
2876 BlockdevOptionsQueueEntry
*bdo
;
2878 v
= qobject_input_visitor_new_str(optarg
, "driver",
2881 bdo
= g_new(BlockdevOptionsQueueEntry
, 1);
2882 visit_type_BlockdevOptions(v
, NULL
, &bdo
->bdo
,
2885 loc_save(&bdo
->loc
);
2886 QSIMPLEQ_INSERT_TAIL(&bdo_queue
, bdo
, entry
);
2889 case QEMU_OPTION_drive
:
2890 opts
= qemu_opts_parse_noisily(qemu_find_opts("drive"),
2896 case QEMU_OPTION_set
:
2897 qemu_set_option(optarg
, &error_fatal
);
2899 case QEMU_OPTION_global
:
2900 if (qemu_global_option(optarg
) != 0)
2903 case QEMU_OPTION_mtdblock
:
2904 drive_add(IF_MTD
, -1, optarg
, MTD_OPTS
);
2906 case QEMU_OPTION_sd
:
2907 drive_add(IF_SD
, -1, optarg
, SD_OPTS
);
2909 case QEMU_OPTION_pflash
:
2910 drive_add(IF_PFLASH
, -1, optarg
, PFLASH_OPTS
);
2912 case QEMU_OPTION_snapshot
:
2914 Error
*blocker
= NULL
;
2916 error_setg(&blocker
, QERR_REPLAY_NOT_SUPPORTED
,
2918 replay_add_blocker(blocker
);
2921 case QEMU_OPTION_numa
:
2922 opts
= qemu_opts_parse_noisily(qemu_find_opts("numa"),
2928 case QEMU_OPTION_display
:
2929 parse_display(optarg
);
2931 case QEMU_OPTION_nographic
:
2932 qdict_put_str(machine_opts_dict
, "graphics", "off");
2934 dpy
.type
= DISPLAY_TYPE_NONE
;
2936 case QEMU_OPTION_curses
:
2937 warn_report("-curses is deprecated, "
2938 "use -display curses instead.");
2939 #ifdef CONFIG_CURSES
2940 dpy
.type
= DISPLAY_TYPE_CURSES
;
2942 error_report("curses or iconv support is disabled");
2946 case QEMU_OPTION_portrait
:
2947 graphic_rotate
= 90;
2949 case QEMU_OPTION_rotate
:
2950 graphic_rotate
= strtol(optarg
, (char **) &optarg
, 10);
2951 if (graphic_rotate
!= 0 && graphic_rotate
!= 90 &&
2952 graphic_rotate
!= 180 && graphic_rotate
!= 270) {
2953 error_report("only 90, 180, 270 deg rotation is available");
2957 case QEMU_OPTION_kernel
:
2958 qdict_put_str(machine_opts_dict
, "kernel", optarg
);
2960 case QEMU_OPTION_initrd
:
2961 qdict_put_str(machine_opts_dict
, "initrd", optarg
);
2963 case QEMU_OPTION_append
:
2964 qdict_put_str(machine_opts_dict
, "append", optarg
);
2966 case QEMU_OPTION_dtb
:
2967 qdict_put_str(machine_opts_dict
, "dtb", optarg
);
2969 case QEMU_OPTION_cdrom
:
2970 drive_add(IF_DEFAULT
, 2, optarg
, CDROM_OPTS
);
2972 case QEMU_OPTION_boot
:
2973 opts
= qemu_opts_parse_noisily(qemu_find_opts("boot-opts"),
2979 case QEMU_OPTION_fda
:
2980 case QEMU_OPTION_fdb
:
2981 drive_add(IF_FLOPPY
, popt
->index
- QEMU_OPTION_fda
,
2984 case QEMU_OPTION_no_fd_bootchk
:
2987 case QEMU_OPTION_netdev
:
2989 if (net_client_parse(qemu_find_opts("netdev"), optarg
) == -1) {
2993 case QEMU_OPTION_nic
:
2995 if (net_client_parse(qemu_find_opts("nic"), optarg
) == -1) {
2999 case QEMU_OPTION_net
:
3001 if (net_client_parse(qemu_find_opts("net"), optarg
) == -1) {
3005 #ifdef CONFIG_LIBISCSI
3006 case QEMU_OPTION_iscsi
:
3007 opts
= qemu_opts_parse_noisily(qemu_find_opts("iscsi"),
3014 case QEMU_OPTION_audio_help
:
3015 audio_legacy_help();
3018 case QEMU_OPTION_audiodev
:
3019 audio_parse_option(optarg
);
3021 case QEMU_OPTION_soundhw
:
3022 select_soundhw (optarg
);
3027 case QEMU_OPTION_version
:
3032 opts
= qemu_opts_parse_noisily(qemu_find_opts("memory"),
3039 case QEMU_OPTION_tpmdev
:
3040 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg
) < 0) {
3045 case QEMU_OPTION_mempath
:
3048 case QEMU_OPTION_mem_prealloc
:
3057 case QEMU_OPTION_DFILTER
:
3058 qemu_set_dfilter_ranges(optarg
, &error_fatal
);
3060 case QEMU_OPTION_seed
:
3061 qemu_guest_random_seed_main(optarg
, &error_fatal
);
3064 add_device_config(DEV_GDB
, "tcp::" DEFAULT_GDBSTUB_PORT
);
3066 case QEMU_OPTION_gdb
:
3067 add_device_config(DEV_GDB
, optarg
);
3070 if (is_help_option(optarg
)) {
3071 list_data_dirs
= true;
3073 qemu_add_data_dir(g_strdup(optarg
));
3076 case QEMU_OPTION_bios
:
3077 qdict_put_str(machine_opts_dict
, "firmware", optarg
);
3079 case QEMU_OPTION_singlestep
:
3086 keyboard_layout
= optarg
;
3088 case QEMU_OPTION_vga
:
3097 w
= strtol(p
, (char **)&p
, 10);
3100 error_report("invalid resolution or depth");
3106 h
= strtol(p
, (char **)&p
, 10);
3111 depth
= strtol(p
, (char **)&p
, 10);
3112 if (depth
!= 1 && depth
!= 2 && depth
!= 4 &&
3113 depth
!= 8 && depth
!= 15 && depth
!= 16 &&
3114 depth
!= 24 && depth
!= 32)
3116 } else if (*p
== '\0') {
3117 depth
= graphic_depth
;
3124 graphic_depth
= depth
;
3127 case QEMU_OPTION_echr
:
3130 term_escape_char
= strtol(optarg
, &r
, 0);
3132 printf("Bad argument to echr\n");
3135 case QEMU_OPTION_monitor
:
3136 default_monitor
= 0;
3137 if (strncmp(optarg
, "none", 4)) {
3138 monitor_parse(optarg
, "readline", false);
3141 case QEMU_OPTION_qmp
:
3142 monitor_parse(optarg
, "control", false);
3143 default_monitor
= 0;
3145 case QEMU_OPTION_qmp_pretty
:
3146 monitor_parse(optarg
, "control", true);
3147 default_monitor
= 0;
3149 case QEMU_OPTION_mon
:
3150 opts
= qemu_opts_parse_noisily(qemu_find_opts("mon"), optarg
,
3155 default_monitor
= 0;
3157 case QEMU_OPTION_chardev
:
3158 opts
= qemu_opts_parse_noisily(qemu_find_opts("chardev"),
3164 case QEMU_OPTION_fsdev
:
3165 olist
= qemu_find_opts("fsdev");
3167 error_report("fsdev support is disabled");
3170 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3175 case QEMU_OPTION_virtfs
: {
3178 const char *writeout
, *sock_fd
, *socket
, *path
, *security_model
,
3181 olist
= qemu_find_opts("virtfs");
3183 error_report("virtfs support is disabled");
3186 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3191 if (qemu_opt_get(opts
, "fsdriver") == NULL
||
3192 qemu_opt_get(opts
, "mount_tag") == NULL
) {
3193 error_report("Usage: -virtfs fsdriver,mount_tag=tag");
3196 fsdev
= qemu_opts_create(qemu_find_opts("fsdev"),
3197 qemu_opts_id(opts
) ?:
3198 qemu_opt_get(opts
, "mount_tag"),
3201 error_report("duplicate or invalid fsdev id: %s",
3202 qemu_opt_get(opts
, "mount_tag"));
3206 writeout
= qemu_opt_get(opts
, "writeout");
3208 #ifdef CONFIG_SYNC_FILE_RANGE
3209 qemu_opt_set(fsdev
, "writeout", writeout
, &error_abort
);
3211 error_report("writeout=immediate not supported "
3212 "on this platform");
3216 qemu_opt_set(fsdev
, "fsdriver",
3217 qemu_opt_get(opts
, "fsdriver"), &error_abort
);
3218 path
= qemu_opt_get(opts
, "path");
3220 qemu_opt_set(fsdev
, "path", path
, &error_abort
);
3222 security_model
= qemu_opt_get(opts
, "security_model");
3223 if (security_model
) {
3224 qemu_opt_set(fsdev
, "security_model", security_model
,
3227 socket
= qemu_opt_get(opts
, "socket");
3229 qemu_opt_set(fsdev
, "socket", socket
, &error_abort
);
3231 sock_fd
= qemu_opt_get(opts
, "sock_fd");
3233 qemu_opt_set(fsdev
, "sock_fd", sock_fd
, &error_abort
);
3236 qemu_opt_set_bool(fsdev
, "readonly",
3237 qemu_opt_get_bool(opts
, "readonly", 0),
3239 multidevs
= qemu_opt_get(opts
, "multidevs");
3241 qemu_opt_set(fsdev
, "multidevs", multidevs
, &error_abort
);
3243 device
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
3245 qemu_opt_set(device
, "driver", "virtio-9p-pci", &error_abort
);
3246 qemu_opt_set(device
, "fsdev",
3247 qemu_opts_id(fsdev
), &error_abort
);
3248 qemu_opt_set(device
, "mount_tag",
3249 qemu_opt_get(opts
, "mount_tag"), &error_abort
);
3252 case QEMU_OPTION_serial
:
3253 add_device_config(DEV_SERIAL
, optarg
);
3255 if (strncmp(optarg
, "mon:", 4) == 0) {
3256 default_monitor
= 0;
3259 case QEMU_OPTION_watchdog
:
3261 error_report("only one watchdog option may be given");
3264 warn_report("-watchdog is deprecated; use -device instead.");
3267 case QEMU_OPTION_action
:
3268 olist
= qemu_find_opts("action");
3269 if (!qemu_opts_parse_noisily(olist
, optarg
, false)) {
3273 case QEMU_OPTION_watchdog_action
: {
3275 opts
= qemu_opts_create(qemu_find_opts("action"), NULL
, 0, &error_abort
);
3276 qemu_opt_set(opts
, "watchdog", optarg
, &error_abort
);
3279 case QEMU_OPTION_parallel
:
3280 add_device_config(DEV_PARALLEL
, optarg
);
3281 default_parallel
= 0;
3282 if (strncmp(optarg
, "mon:", 4) == 0) {
3283 default_monitor
= 0;
3286 case QEMU_OPTION_debugcon
:
3287 add_device_config(DEV_DEBUGCON
, optarg
);
3289 case QEMU_OPTION_loadvm
:
3292 case QEMU_OPTION_full_screen
:
3293 dpy
.has_full_screen
= true;
3294 dpy
.full_screen
= true;
3296 case QEMU_OPTION_alt_grab
:
3298 warn_report("-alt-grab is deprecated, please use "
3299 "-display sdl,grab-mod=lshift-lctrl-lalt instead.");
3301 case QEMU_OPTION_ctrl_grab
:
3303 warn_report("-ctrl-grab is deprecated, please use "
3304 "-display sdl,grab-mod=rctrl instead.");
3306 case QEMU_OPTION_sdl
:
3307 warn_report("-sdl is deprecated, use -display sdl instead.");
3309 dpy
.type
= DISPLAY_TYPE_SDL
;
3312 error_report("SDL support is disabled");
3315 case QEMU_OPTION_pidfile
:
3318 case QEMU_OPTION_win2k_hack
:
3319 win2k_install_hack
= 1;
3321 case QEMU_OPTION_acpitable
:
3322 opts
= qemu_opts_parse_noisily(qemu_find_opts("acpi"),
3327 acpi_table_add(opts
, &error_fatal
);
3329 case QEMU_OPTION_smbios
:
3330 opts
= qemu_opts_parse_noisily(qemu_find_opts("smbios"),
3335 smbios_entry_add(opts
, &error_fatal
);
3337 case QEMU_OPTION_fwcfg
:
3338 opts
= qemu_opts_parse_noisily(qemu_find_opts("fw_cfg"),
3344 case QEMU_OPTION_preconfig
:
3345 preconfig_requested
= true;
3347 case QEMU_OPTION_enable_kvm
:
3348 qdict_put_str(machine_opts_dict
, "accel", "kvm");
3351 case QEMU_OPTION_machine
:
3355 keyval_parse_into(machine_opts_dict
, optarg
, "type", &help
, &error_fatal
);
3357 machine_help_func(machine_opts_dict
);
3362 case QEMU_OPTION_accel
:
3363 accel_opts
= qemu_opts_parse_noisily(qemu_find_opts("accel"),
3365 optarg
= qemu_opt_get(accel_opts
, "accel");
3366 if (!optarg
|| is_help_option(optarg
)) {
3367 printf("Accelerators supported in QEMU binary:\n");
3368 GSList
*el
, *accel_list
= object_class_get_list(TYPE_ACCEL
,
3370 for (el
= accel_list
; el
; el
= el
->next
) {
3371 gchar
*typename
= g_strdup(object_class_get_name(
3372 OBJECT_CLASS(el
->data
)));
3373 /* omit qtest which is used for tests only */
3374 if (g_strcmp0(typename
, ACCEL_CLASS_NAME("qtest")) &&
3375 g_str_has_suffix(typename
, ACCEL_CLASS_SUFFIX
)) {
3376 gchar
**optname
= g_strsplit(typename
,
3377 ACCEL_CLASS_SUFFIX
, 0);
3378 printf("%s\n", optname
[0]);
3379 g_strfreev(optname
);
3383 g_slist_free(accel_list
);
3387 case QEMU_OPTION_usb
:
3388 qdict_put_str(machine_opts_dict
, "usb", "on");
3390 case QEMU_OPTION_usbdevice
:
3391 qdict_put_str(machine_opts_dict
, "usb", "on");
3392 add_device_config(DEV_USB
, optarg
);
3394 case QEMU_OPTION_device
:
3395 if (optarg
[0] == '{') {
3396 QObject
*obj
= qobject_from_json(optarg
, &error_fatal
);
3397 DeviceOption
*opt
= g_new0(DeviceOption
, 1);
3398 opt
->opts
= qobject_to(QDict
, obj
);
3399 loc_save(&opt
->loc
);
3400 assert(opt
->opts
!= NULL
);
3401 QTAILQ_INSERT_TAIL(&device_opts
, opt
, next
);
3403 if (!qemu_opts_parse_noisily(qemu_find_opts("device"),
3409 case QEMU_OPTION_smp
:
3410 machine_parse_property_opt(qemu_find_opts("smp-opts"),
3413 case QEMU_OPTION_vnc
:
3416 case QEMU_OPTION_no_acpi
:
3417 qdict_put_str(machine_opts_dict
, "acpi", "off");
3419 case QEMU_OPTION_no_hpet
:
3420 qdict_put_str(machine_opts_dict
, "hpet", "off");
3422 case QEMU_OPTION_no_reboot
:
3423 olist
= qemu_find_opts("action");
3424 qemu_opts_parse_noisily(olist
, "reboot=shutdown", false);
3426 case QEMU_OPTION_no_shutdown
:
3427 olist
= qemu_find_opts("action");
3428 qemu_opts_parse_noisily(olist
, "shutdown=pause", false);
3430 case QEMU_OPTION_uuid
:
3431 if (qemu_uuid_parse(optarg
, &qemu_uuid
) < 0) {
3432 error_report("failed to parse UUID string: wrong format");
3435 qemu_uuid_set
= true;
3437 case QEMU_OPTION_option_rom
:
3438 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
3439 error_report("too many option ROMs");
3442 opts
= qemu_opts_parse_noisily(qemu_find_opts("option-rom"),
3447 option_rom
[nb_option_roms
].name
= qemu_opt_get(opts
, "romfile");
3448 option_rom
[nb_option_roms
].bootindex
=
3449 qemu_opt_get_number(opts
, "bootindex", -1);
3450 if (!option_rom
[nb_option_roms
].name
) {
3451 error_report("Option ROM file is not specified");
3456 case QEMU_OPTION_semihosting
:
3457 qemu_semihosting_enable();
3459 case QEMU_OPTION_semihosting_config
:
3460 if (qemu_semihosting_config_options(optarg
) != 0) {
3464 case QEMU_OPTION_name
:
3465 opts
= qemu_opts_parse_noisily(qemu_find_opts("name"),
3470 /* Capture guest name if -msg guest-name is used later */
3471 error_guest_name
= qemu_opt_get(opts
, "guest");
3473 case QEMU_OPTION_prom_env
:
3474 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
3475 error_report("too many prom variables");
3478 prom_envs
[nb_prom_envs
] = optarg
;
3481 case QEMU_OPTION_old_param
:
3484 case QEMU_OPTION_rtc
:
3485 opts
= qemu_opts_parse_noisily(qemu_find_opts("rtc"), optarg
,
3491 case QEMU_OPTION_icount
:
3492 icount_opts
= qemu_opts_parse_noisily(qemu_find_opts("icount"),
3498 case QEMU_OPTION_incoming
:
3500 runstate_set(RUN_STATE_INMIGRATE
);
3504 case QEMU_OPTION_only_migratable
:
3505 only_migratable
= 1;
3507 case QEMU_OPTION_nodefaults
:
3510 case QEMU_OPTION_xen_domid
:
3511 if (!(accel_find("xen"))) {
3512 error_report("Option not supported for this target");
3515 xen_domid
= atoi(optarg
);
3517 case QEMU_OPTION_xen_attach
:
3518 if (!(accel_find("xen"))) {
3519 error_report("Option not supported for this target");
3522 xen_mode
= XEN_ATTACH
;
3524 case QEMU_OPTION_xen_domid_restrict
:
3525 if (!(accel_find("xen"))) {
3526 error_report("Option not supported for this target");
3529 xen_domid_restrict
= true;
3531 case QEMU_OPTION_trace
:
3532 trace_opt_parse(optarg
);
3534 case QEMU_OPTION_plugin
:
3535 qemu_plugin_opt_parse(optarg
, &plugin_list
);
3537 case QEMU_OPTION_readconfig
:
3538 qemu_read_config_file(optarg
, qemu_parse_config_group
, &error_fatal
);
3541 case QEMU_OPTION_spice
:
3542 olist
= qemu_find_opts_err("spice", NULL
);
3544 error_report("spice support is disabled");
3547 opts
= qemu_opts_parse_noisily(olist
, optarg
, false);
3554 case QEMU_OPTION_qtest
:
3555 qtest_chrdev
= optarg
;
3557 case QEMU_OPTION_qtest_log
:
3560 case QEMU_OPTION_sandbox
:
3561 olist
= qemu_find_opts("sandbox");
3563 #ifndef CONFIG_SECCOMP
3564 error_report("-sandbox support is not enabled "
3565 "in this QEMU binary");
3570 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3575 case QEMU_OPTION_add_fd
:
3577 opts
= qemu_opts_parse_noisily(qemu_find_opts("add-fd"),
3583 error_report("File descriptor passing is disabled on this "
3588 case QEMU_OPTION_object
:
3589 object_option_parse(optarg
);
3591 case QEMU_OPTION_overcommit
:
3592 opts
= qemu_opts_parse_noisily(qemu_find_opts("overcommit"),
3597 enable_mlock
= qemu_opt_get_bool(opts
, "mem-lock", false);
3598 enable_cpu_pm
= qemu_opt_get_bool(opts
, "cpu-pm", false);
3600 case QEMU_OPTION_compat
:
3605 v
= qobject_input_visitor_new_str(optarg
, NULL
,
3608 visit_type_CompatPolicy(v
, NULL
, &opts
, &error_fatal
);
3609 QAPI_CLONE_MEMBERS(CompatPolicy
, &compat_policy
, opts
);
3611 qapi_free_CompatPolicy(opts
);
3615 case QEMU_OPTION_msg
:
3616 opts
= qemu_opts_parse_noisily(qemu_find_opts("msg"), optarg
,
3621 configure_msg(opts
);
3623 case QEMU_OPTION_dump_vmstate
:
3624 if (vmstate_dump_file
) {
3625 error_report("only one '-dump-vmstate' "
3626 "option may be given");
3629 vmstate_dump_file
= fopen(optarg
, "w");
3630 if (vmstate_dump_file
== NULL
) {
3631 error_report("open %s: %s", optarg
, strerror(errno
));
3635 case QEMU_OPTION_enable_sync_profile
:
3638 case QEMU_OPTION_nouserconfig
:
3639 /* Nothing to be parsed here. Especially, do not error out below. */
3642 if (os_parse_cmd_args(popt
->index
, optarg
)) {
3643 error_report("Option not supported in this build");
3650 * Clear error location left behind by the loop.
3651 * Best done right after the loop. Do not insert code here!
3655 qemu_validate_options(machine_opts_dict
);
3656 qemu_process_sugar_options();
3659 * These options affect everything else and should be processed
3660 * before daemonizing.
3662 qemu_process_early_options();
3664 qemu_process_help_options();
3665 qemu_maybe_daemonize(pid_file
);
3668 * The trace backend must be initialized after daemonizing.
3669 * trace_init_backends() will call st_init(), which will create the
3670 * trace thread in the parent, and also register st_flush_trace_buffer()
3671 * in atexit(). This function will force the parent to wait for the
3672 * writeout thread to finish, which will not occur, and the parent
3673 * process will be left in the host.
3675 if (!trace_init_backends()) {
3680 qemu_init_main_loop(&error_fatal
);
3683 user_register_global_props();
3684 replay_configure(icount_opts
);
3686 configure_rtc(qemu_find_opts_singleton("rtc"));
3688 qemu_create_machine(machine_opts_dict
);
3692 qemu_disable_default_devices();
3693 qemu_create_default_devices();
3694 qemu_create_early_backends();
3696 qemu_apply_legacy_machine_options(machine_opts_dict
);
3697 qemu_apply_machine_options(machine_opts_dict
);
3698 qobject_unref(machine_opts_dict
);
3699 phase_advance(PHASE_MACHINE_CREATED
);
3702 * Note: uses machine properties such as kernel-irqchip, must run
3703 * after qemu_apply_machine_options.
3705 configure_accelerators(argv
[0]);
3706 phase_advance(PHASE_ACCEL_CREATED
);
3709 * Beware, QOM objects created before this point miss global and
3710 * compat properties.
3712 * Global properties get set up by qdev_prop_register_global(),
3713 * called from user_register_global_props(), and certain option
3714 * desugaring. Also in CPU feature desugaring (buried in
3715 * parse_cpu_option()), which happens below this point, but may
3716 * only target the CPU type, which can only be created after
3717 * parse_cpu_option() returned the type.
3719 * Machine compat properties: object_set_machine_compat_props().
3720 * Accelerator compat props: object_set_accelerator_compat_props(),
3721 * called from do_configure_accelerator().
3724 machine_class
= MACHINE_GET_CLASS(current_machine
);
3725 if (!qtest_enabled() && machine_class
->deprecation_reason
) {
3726 error_report("Machine type '%s' is deprecated: %s",
3727 machine_class
->name
, machine_class
->deprecation_reason
);
3731 * Note: creates a QOM object, must run only after global and
3732 * compat properties have been set up.
3734 migration_object_init();
3736 qemu_create_late_backends();
3738 /* parse features once if machine provides default cpu_type */
3739 current_machine
->cpu_type
= machine_class
->default_cpu_type
;
3741 current_machine
->cpu_type
= parse_cpu_option(cpu_option
);
3743 /* NB: for machine none cpu_type could STILL be NULL here! */
3745 qemu_resolve_machine_memdev();
3746 parse_numa_opts(current_machine
);
3748 if (vmstate_dump_file
) {
3750 module_load_qom_all();
3751 dump_vmstate_json_to_file(vmstate_dump_file
);
3755 if (!preconfig_requested
) {
3756 qmp_x_exit_preconfig(&error_fatal
);
3758 qemu_init_displays();
3759 accel_setup_post(current_machine
);