target/loongarch: Implement xvexth
[qemu/ar7.git] / softmmu / vl.c
blob3db4fd2680842cdd1a79fa215ab334b7e2d151fd
1 /*
2 * QEMU System Emulator
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
22 * THE SOFTWARE.
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"
52 #include "qemu/async-teardown.h"
53 #include "hw/usb.h"
54 #include "hw/isa/isa.h"
55 #include "hw/scsi/scsi.h"
56 #include "hw/display/vga.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"
62 #include "net/net.h"
63 #include "net/slirp.h"
64 #include "monitor/monitor.h"
65 #include "ui/console.h"
66 #include "ui/input.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"
74 #include "qemu/log.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 "qapi/qobject-input-visitor.h"
91 #include "qemu/option.h"
92 #include "qemu/config-file.h"
93 #include "qemu/main-loop.h"
94 #ifdef CONFIG_VIRTFS
95 #include "fsdev/qemu-fsdev.h"
96 #endif
97 #include "sysemu/qtest.h"
98 #ifdef CONFIG_TCG
99 #include "accel/tcg/perf.h"
100 #endif
102 #include "disas/disas.h"
104 #include "trace.h"
105 #include "trace/control.h"
106 #include "qemu/plugin.h"
107 #include "qemu/queue.h"
108 #include "sysemu/arch_init.h"
109 #include "exec/confidential-guest-support.h"
111 #include "ui/qemu-spice.h"
112 #include "qapi/string-input-visitor.h"
113 #include "qapi/opts-visitor.h"
114 #include "qapi/clone-visitor.h"
115 #include "qom/object_interfaces.h"
116 #include "semihosting/semihost.h"
117 #include "crypto/init.h"
118 #include "sysemu/replay.h"
119 #include "qapi/qapi-events-run-state.h"
120 #include "qapi/qapi-types-audio.h"
121 #include "qapi/qapi-visit-audio.h"
122 #include "qapi/qapi-visit-block-core.h"
123 #include "qapi/qapi-visit-compat.h"
124 #include "qapi/qapi-visit-machine.h"
125 #include "qapi/qapi-visit-ui.h"
126 #include "qapi/qapi-commands-block-core.h"
127 #include "qapi/qapi-commands-migration.h"
128 #include "qapi/qapi-commands-misc.h"
129 #include "qapi/qapi-visit-qom.h"
130 #include "qapi/qapi-commands-ui.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 #define MAX_VIRTIO_CONSOLES 1
139 typedef struct BlockdevOptionsQueueEntry {
140 BlockdevOptions *bdo;
141 Location loc;
142 QSIMPLEQ_ENTRY(BlockdevOptionsQueueEntry) entry;
143 } BlockdevOptionsQueueEntry;
145 typedef QSIMPLEQ_HEAD(, BlockdevOptionsQueueEntry) BlockdevOptionsQueue;
147 typedef struct ObjectOption {
148 ObjectOptions *opts;
149 QTAILQ_ENTRY(ObjectOption) next;
150 } ObjectOption;
152 typedef struct DeviceOption {
153 QDict *opts;
154 Location loc;
155 QTAILQ_ENTRY(DeviceOption) next;
156 } DeviceOption;
158 static const char *cpu_option;
159 static const char *mem_path;
160 static const char *incoming;
161 static const char *loadvm;
162 static const char *accelerators;
163 static bool have_custom_ram_size;
164 static const char *ram_memdev_id;
165 static QDict *machine_opts_dict;
166 static QTAILQ_HEAD(, ObjectOption) object_opts = QTAILQ_HEAD_INITIALIZER(object_opts);
167 static QTAILQ_HEAD(, DeviceOption) device_opts = QTAILQ_HEAD_INITIALIZER(device_opts);
168 static int display_remote;
169 static int snapshot;
170 static bool preconfig_requested;
171 static QemuPluginList plugin_list = QTAILQ_HEAD_INITIALIZER(plugin_list);
172 static BlockdevOptionsQueue bdo_queue = QSIMPLEQ_HEAD_INITIALIZER(bdo_queue);
173 static bool nographic = false;
174 static int mem_prealloc; /* force preallocation of physical target memory */
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 *qtest_chrdev;
183 static const char *qtest_log;
184 static bool opt_one_insn_per_tb;
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;
196 static struct {
197 const char *driver;
198 int *flag;
199 } default_list[] = {
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 = {
221 .name = "rtc",
222 .head = QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts.head),
223 .merge_lists = true,
224 .desc = {
226 .name = "base",
227 .type = QEMU_OPT_STRING,
229 .name = "clock",
230 .type = QEMU_OPT_STRING,
232 .name = "driftfix",
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),
243 .desc = {
245 .name = "bootindex",
246 .type = QEMU_OPT_NUMBER,
247 }, {
248 .name = "romfile",
249 .type = QEMU_OPT_STRING,
251 { /* end of list */ }
255 static QemuOptsList qemu_accel_opts = {
256 .name = "accel",
257 .implied_opt_name = "accel",
258 .head = QTAILQ_HEAD_INITIALIZER(qemu_accel_opts.head),
259 .desc = {
261 * no elements => accept any
262 * sanity checking will happen later
263 * when setting accelerator properties
269 static QemuOptsList qemu_boot_opts = {
270 .name = "boot-opts",
271 .implied_opt_name = "order",
272 .merge_lists = true,
273 .head = QTAILQ_HEAD_INITIALIZER(qemu_boot_opts.head),
274 .desc = {
276 .name = "order",
277 .type = QEMU_OPT_STRING,
278 }, {
279 .name = "once",
280 .type = QEMU_OPT_STRING,
281 }, {
282 .name = "menu",
283 .type = QEMU_OPT_BOOL,
284 }, {
285 .name = "splash",
286 .type = QEMU_OPT_STRING,
287 }, {
288 .name = "splash-time",
289 .type = QEMU_OPT_NUMBER,
290 }, {
291 .name = "reboot-timeout",
292 .type = QEMU_OPT_NUMBER,
293 }, {
294 .name = "strict",
295 .type = QEMU_OPT_BOOL,
297 { /*End of list */ }
301 static QemuOptsList qemu_add_fd_opts = {
302 .name = "add-fd",
303 .head = QTAILQ_HEAD_INITIALIZER(qemu_add_fd_opts.head),
304 .desc = {
306 .name = "fd",
307 .type = QEMU_OPT_NUMBER,
308 .help = "file descriptor of which a duplicate is added to fd set",
310 .name = "set",
311 .type = QEMU_OPT_NUMBER,
312 .help = "ID of the fd set to add fd to",
314 .name = "opaque",
315 .type = QEMU_OPT_STRING,
316 .help = "free-form string used to describe fd",
318 { /* end of list */ }
322 static QemuOptsList qemu_object_opts = {
323 .name = "object",
324 .implied_opt_name = "qom-type",
325 .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head),
326 .desc = {
331 static QemuOptsList qemu_tpmdev_opts = {
332 .name = "tpmdev",
333 .implied_opt_name = "type",
334 .head = QTAILQ_HEAD_INITIALIZER(qemu_tpmdev_opts.head),
335 .desc = {
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),
344 .desc = {
346 .name = "mem-lock",
347 .type = QEMU_OPT_BOOL,
350 .name = "cpu-pm",
351 .type = QEMU_OPT_BOOL,
353 { /* end of list */ }
357 static QemuOptsList qemu_msg_opts = {
358 .name = "msg",
359 .head = QTAILQ_HEAD_INITIALIZER(qemu_msg_opts.head),
360 .desc = {
362 .name = "timestamp",
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 = {
376 .name = "name",
377 .implied_opt_name = "guest",
378 .merge_lists = true,
379 .head = QTAILQ_HEAD_INITIALIZER(qemu_name_opts.head),
380 .desc = {
382 .name = "guest",
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",
387 }, {
388 .name = "process",
389 .type = QEMU_OPT_STRING,
390 .help = "Sets the name of the QEMU process, as shown in top etc",
391 }, {
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"
396 "stable API.",
398 { /* End of list */ }
402 static QemuOptsList qemu_mem_opts = {
403 .name = "memory",
404 .implied_opt_name = "size",
405 .head = QTAILQ_HEAD_INITIALIZER(qemu_mem_opts.head),
406 .merge_lists = true,
407 .desc = {
409 .name = "size",
410 .type = QEMU_OPT_SIZE,
413 .name = "slots",
414 .type = QEMU_OPT_NUMBER,
417 .name = "maxmem",
418 .type = QEMU_OPT_SIZE,
420 { /* end of list */ }
424 static QemuOptsList qemu_icount_opts = {
425 .name = "icount",
426 .implied_opt_name = "shift",
427 .merge_lists = true,
428 .head = QTAILQ_HEAD_INITIALIZER(qemu_icount_opts.head),
429 .desc = {
431 .name = "shift",
432 .type = QEMU_OPT_STRING,
433 }, {
434 .name = "align",
435 .type = QEMU_OPT_BOOL,
436 }, {
437 .name = "sleep",
438 .type = QEMU_OPT_BOOL,
439 }, {
440 .name = "rr",
441 .type = QEMU_OPT_STRING,
442 }, {
443 .name = "rrfile",
444 .type = QEMU_OPT_STRING,
445 }, {
446 .name = "rrsnapshot",
447 .type = QEMU_OPT_STRING,
449 { /* end of list */ }
453 static QemuOptsList qemu_fw_cfg_opts = {
454 .name = "fw_cfg",
455 .implied_opt_name = "name",
456 .head = QTAILQ_HEAD_INITIALIZER(qemu_fw_cfg_opts.head),
457 .desc = {
459 .name = "name",
460 .type = QEMU_OPT_STRING,
461 .help = "Sets the fw_cfg name of the blob to be inserted",
462 }, {
463 .name = "file",
464 .type = QEMU_OPT_STRING,
465 .help = "Sets the name of the file from which "
466 "the fw_cfg blob will be loaded",
467 }, {
468 .name = "string",
469 .type = QEMU_OPT_STRING,
470 .help = "Sets content of the blob to be inserted from a string",
471 }, {
472 .name = "gen_id",
473 .type = QEMU_OPT_STRING,
474 .help = "Sets id of the object generating the fw_cfg blob "
475 "to be inserted",
477 { /* end of list */ }
481 static QemuOptsList qemu_action_opts = {
482 .name = "action",
483 .merge_lists = true,
484 .head = QTAILQ_HEAD_INITIALIZER(qemu_action_opts.head),
485 .desc = {
487 .name = "shutdown",
488 .type = QEMU_OPT_STRING,
490 .name = "reboot",
491 .type = QEMU_OPT_STRING,
493 .name = "panic",
494 .type = QEMU_OPT_STRING,
496 .name = "watchdog",
497 .type = QEMU_OPT_STRING,
499 { /* end of list */ }
503 const char *qemu_get_vm_name(void)
505 return qemu_name;
508 static void default_driver_disable(const char *driver)
510 int i;
512 if (!driver) {
513 return;
516 for (i = 0; i < ARRAY_SIZE(default_list); i++) {
517 if (strcmp(default_list[i].driver, driver) != 0)
518 continue;
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);
528 return 0;
531 static void default_driver_check_json(void)
533 DeviceOption *opt;
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");
551 if (proc_name) {
552 os_set_proc_name(proc_name);
555 return 0;
558 bool defaults_enabled(void)
560 return has_defaults;
563 #ifndef _WIN32
564 static int parse_add_fd(void *opaque, QemuOpts *opts, Error **errp)
566 int fd, dupfd, flags;
567 int64_t fdset_id;
568 const char *fd_opaque = NULL;
569 AddfdInfo *fdinfo;
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");
575 if (fd < 0) {
576 error_setg(errp, "fd option is required and must be non-negative");
577 return -1;
580 if (fd <= STDERR_FILENO) {
581 error_setg(errp, "fd cannot be a standard I/O stream");
582 return -1;
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");
592 return -1;
595 if (fdset_id < 0) {
596 error_setg(errp, "set option is required and must be non-negative");
597 return -1;
600 #ifdef F_DUPFD_CLOEXEC
601 dupfd = fcntl(fd, F_DUPFD_CLOEXEC, 0);
602 #else
603 dupfd = dup(fd);
604 if (dupfd != -1) {
605 qemu_set_cloexec(dupfd);
607 #endif
608 if (dupfd == -1) {
609 error_setg(errp, "error duplicating fd: %s", strerror(errno));
610 return -1;
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,
615 &error_abort);
616 g_free(fdinfo);
618 return 0;
621 static int cleanup_add_fd(void *opaque, QemuOpts *opts, Error **errp)
623 int fd;
625 fd = qemu_opt_get_number(opts, "fd", -1);
626 close(fd);
628 return 0;
630 #endif
632 /***********************************************************/
633 /* QEMU Block devices */
635 #define HD_OPTS "media=disk"
636 #define CDROM_OPTS "media=cdrom"
637 #define FD_OPTS ""
638 #define PFLASH_OPTS ""
639 #define MTD_OPTS ""
640 #define SD_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);
654 return 0;
657 static void default_drive(int enable, int snapshot, BlockInterfaceType type,
658 int index, const char *optstr)
660 QemuOpts *opts;
661 DriveInfo *dinfo;
663 if (!enable || drive_get_by_index(type, index)) {
664 return;
667 opts = drive_add(type, index, NULL, optstr);
668 if (snapshot) {
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
683 * now.
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);
697 loc_pop(&bdo->loc);
698 qapi_free_BlockdevOptions(bdo->bdo);
699 g_free(bdo);
701 if (snapshot) {
702 qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot,
703 NULL, NULL);
705 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func,
706 &machine_class->block_default_type, &error_fatal)) {
707 /* We printed help */
708 exit(0);
711 default_drive(default_cdrom, snapshot, machine_class->block_default_type, 2,
712 CDROM_OPTS);
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 = {
719 .name = "smp-opts",
720 .implied_opt_name = "cpus",
721 .merge_lists = true,
722 .head = QTAILQ_HEAD_INITIALIZER(qemu_smp_opts.head),
723 .desc = {
725 .name = "cpus",
726 .type = QEMU_OPT_NUMBER,
727 }, {
728 .name = "sockets",
729 .type = QEMU_OPT_NUMBER,
730 }, {
731 .name = "dies",
732 .type = QEMU_OPT_NUMBER,
733 }, {
734 .name = "clusters",
735 .type = QEMU_OPT_NUMBER,
736 }, {
737 .name = "cores",
738 .type = QEMU_OPT_NUMBER,
739 }, {
740 .name = "threads",
741 .type = QEMU_OPT_NUMBER,
742 }, {
743 .name = "maxcpus",
744 .type = QEMU_OPT_NUMBER,
746 { /*End of list */ }
750 #if defined(CONFIG_POSIX)
751 static QemuOptsList qemu_run_with_opts = {
752 .name = "run-with",
753 .head = QTAILQ_HEAD_INITIALIZER(qemu_run_with_opts.head),
754 .desc = {
755 #if defined(CONFIG_LINUX)
757 .name = "async-teardown",
758 .type = QEMU_OPT_BOOL,
760 #endif
762 .name = "chroot",
763 .type = QEMU_OPT_STRING,
765 { /* end of list */ }
769 #define qemu_add_run_with_opts() qemu_add_opts(&qemu_run_with_opts)
771 #else
773 #define qemu_add_run_with_opts()
775 #endif /* CONFIG_POSIX */
777 static void realtime_init(void)
779 if (enable_mlock) {
780 if (os_mlock() < 0) {
781 error_report("locking memory failed");
782 exit(1);
788 static void configure_msg(QemuOpts *opts)
790 message_with_timestamp = qemu_opt_get_bool(opts, "timestamp", false);
791 error_with_guestname = qemu_opt_get_bool(opts, "guest-name", false);
795 /***********************************************************/
796 /* USB devices */
798 static int usb_device_add(const char *devname)
800 USBDevice *dev = NULL;
802 if (!machine_usb(current_machine)) {
803 return -1;
806 dev = usbdevice_create(devname);
807 if (!dev)
808 return -1;
810 return 0;
813 static int usb_parse(const char *cmdline)
815 int r;
816 r = usb_device_add(cmdline);
817 if (r < 0) {
818 error_report("could not add USB device '%s'", cmdline);
820 return r;
823 /***********************************************************/
824 /* machine registration */
826 static MachineClass *find_machine(const char *name, GSList *machines)
828 GSList *el;
830 for (el = machines; el; el = el->next) {
831 MachineClass *mc = el->data;
833 if (!strcmp(mc->name, name) || !g_strcmp0(mc->alias, name)) {
834 return mc;
838 return NULL;
841 static MachineClass *find_default_machine(GSList *machines)
843 GSList *el;
844 MachineClass *default_machineclass = NULL;
846 for (el = machines; el; el = el->next) {
847 MachineClass *mc = el->data;
849 if (mc->is_default) {
850 assert(default_machineclass == NULL && "Multiple default machines");
851 default_machineclass = mc;
855 return default_machineclass;
858 static void version(void)
860 printf("QEMU emulator version " QEMU_FULL_VERSION "\n"
861 QEMU_COPYRIGHT "\n");
864 static void help(int exitcode)
866 version();
867 printf("usage: %s [options] [disk_image]\n\n"
868 "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
869 g_get_prgname());
871 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
872 if ((arch_mask) & arch_type) \
873 fputs(opt_help, stdout);
875 #define ARCHHEADING(text, arch_mask) \
876 if ((arch_mask) & arch_type) \
877 puts(stringify(text));
879 #define DEFHEADING(text) ARCHHEADING(text, QEMU_ARCH_ALL)
881 #include "qemu-options.def"
883 printf("\nDuring emulation, the following keys are useful:\n"
884 "ctrl-alt-f toggle full screen\n"
885 "ctrl-alt-n switch to virtual console 'n'\n"
886 "ctrl-alt toggle mouse and keyboard grab\n"
887 "\n"
888 "When using -nographic, press 'ctrl-a h' to get some help.\n"
889 "\n"
890 QEMU_HELP_BOTTOM "\n");
892 exit(exitcode);
895 enum {
897 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
898 opt_enum,
899 #define DEFHEADING(text)
900 #define ARCHHEADING(text, arch_mask)
902 #include "qemu-options.def"
905 #define HAS_ARG 0x0001
907 typedef struct QEMUOption {
908 const char *name;
909 int flags;
910 int index;
911 uint32_t arch_mask;
912 } QEMUOption;
914 static const QEMUOption qemu_options[] = {
915 { "h", 0, QEMU_OPTION_h, QEMU_ARCH_ALL },
917 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
918 { option, opt_arg, opt_enum, arch_mask },
919 #define DEFHEADING(text)
920 #define ARCHHEADING(text, arch_mask)
922 #include "qemu-options.def"
923 { /* end of list */ }
926 typedef struct VGAInterfaceInfo {
927 const char *opt_name; /* option name */
928 const char *name; /* human-readable name */
929 /* Class names indicating that support is available.
930 * If no class is specified, the interface is always available */
931 const char *class_names[2];
932 } VGAInterfaceInfo;
934 static const VGAInterfaceInfo vga_interfaces[VGA_TYPE_MAX] = {
935 [VGA_NONE] = {
936 .opt_name = "none",
937 .name = "no graphic card",
939 [VGA_STD] = {
940 .opt_name = "std",
941 .name = "standard VGA",
942 .class_names = { "VGA", "isa-vga" },
944 [VGA_CIRRUS] = {
945 .opt_name = "cirrus",
946 .name = "Cirrus VGA",
947 .class_names = { "cirrus-vga", "isa-cirrus-vga" },
949 [VGA_VMWARE] = {
950 .opt_name = "vmware",
951 .name = "VMWare SVGA",
952 .class_names = { "vmware-svga" },
954 [VGA_VIRTIO] = {
955 .opt_name = "virtio",
956 .name = "Virtio VGA",
957 .class_names = { "virtio-vga" },
959 [VGA_QXL] = {
960 .opt_name = "qxl",
961 .name = "QXL VGA",
962 .class_names = { "qxl-vga" },
964 [VGA_TCX] = {
965 .opt_name = "tcx",
966 .name = "TCX framebuffer",
967 .class_names = { "sun-tcx" },
969 [VGA_CG3] = {
970 .opt_name = "cg3",
971 .name = "CG3 framebuffer",
972 .class_names = { "cgthree" },
974 #ifdef CONFIG_XEN_BACKEND
975 [VGA_XENFB] = {
976 .opt_name = "xenfb",
977 .name = "Xen paravirtualized framebuffer",
979 #endif
982 static bool vga_interface_available(VGAInterfaceType t)
984 const VGAInterfaceInfo *ti = &vga_interfaces[t];
986 assert(t < VGA_TYPE_MAX);
987 return !ti->class_names[0] ||
988 module_object_class_by_name(ti->class_names[0]) ||
989 module_object_class_by_name(ti->class_names[1]);
992 static const char *
993 get_default_vga_model(const MachineClass *machine_class)
995 if (machine_class->default_display) {
996 for (int t = 0; t < VGA_TYPE_MAX; t++) {
997 const VGAInterfaceInfo *ti = &vga_interfaces[t];
999 if (ti->opt_name && vga_interface_available(t) &&
1000 g_str_equal(ti->opt_name, machine_class->default_display)) {
1001 return machine_class->default_display;
1005 warn_report_once("Default display '%s' is not available in this binary",
1006 machine_class->default_display);
1007 return NULL;
1008 } else if (vga_interface_available(VGA_CIRRUS)) {
1009 return "cirrus";
1010 } else if (vga_interface_available(VGA_STD)) {
1011 return "std";
1014 return NULL;
1017 static void select_vgahw(const MachineClass *machine_class, const char *p)
1019 const char *opts;
1020 int t;
1022 if (g_str_equal(p, "help")) {
1023 const char *def = get_default_vga_model(machine_class);
1025 for (t = 0; t < VGA_TYPE_MAX; t++) {
1026 const VGAInterfaceInfo *ti = &vga_interfaces[t];
1028 if (vga_interface_available(t) && ti->opt_name) {
1029 printf("%-20s %s%s\n", ti->opt_name, ti->name ?: "",
1030 (def && g_str_equal(ti->opt_name, def)) ?
1031 " (default)" : "");
1034 exit(0);
1037 assert(vga_interface_type == VGA_NONE);
1038 for (t = 0; t < VGA_TYPE_MAX; t++) {
1039 const VGAInterfaceInfo *ti = &vga_interfaces[t];
1040 if (ti->opt_name && strstart(p, ti->opt_name, &opts)) {
1041 if (!vga_interface_available(t)) {
1042 error_report("%s not available", ti->name);
1043 exit(1);
1045 vga_interface_type = t;
1046 break;
1049 if (t == VGA_TYPE_MAX) {
1050 invalid_vga:
1051 error_report("unknown vga type: %s", p);
1052 exit(1);
1054 while (*opts) {
1055 const char *nextopt;
1057 if (strstart(opts, ",retrace=", &nextopt)) {
1058 opts = nextopt;
1059 if (strstart(opts, "dumb", &nextopt))
1060 vga_retrace_method = VGA_RETRACE_DUMB;
1061 else if (strstart(opts, "precise", &nextopt))
1062 vga_retrace_method = VGA_RETRACE_PRECISE;
1063 else goto invalid_vga;
1064 } else goto invalid_vga;
1065 opts = nextopt;
1069 static void parse_display_qapi(const char *optarg)
1071 DisplayOptions *opts;
1072 Visitor *v;
1074 v = qobject_input_visitor_new_str(optarg, "type", &error_fatal);
1076 visit_type_DisplayOptions(v, NULL, &opts, &error_fatal);
1077 QAPI_CLONE_MEMBERS(DisplayOptions, &dpy, opts);
1079 qapi_free_DisplayOptions(opts);
1080 visit_free(v);
1083 DisplayOptions *qmp_query_display_options(Error **errp)
1085 return QAPI_CLONE(DisplayOptions, &dpy);
1088 static void parse_display(const char *p)
1090 const char *opts;
1092 if (is_help_option(p)) {
1093 qemu_display_help();
1094 exit(0);
1097 if (strstart(p, "vnc", &opts)) {
1099 * vnc isn't a (local) DisplayType but a protocol for remote
1100 * display access.
1102 if (*opts == '=') {
1103 vnc_parse(opts + 1);
1104 } else {
1105 error_report("VNC requires a display argument vnc=<display>");
1106 exit(1);
1108 } else {
1109 parse_display_qapi(p);
1113 static inline bool nonempty_str(const char *str)
1115 return str && *str;
1118 static int parse_fw_cfg(void *opaque, QemuOpts *opts, Error **errp)
1120 gchar *buf;
1121 size_t size;
1122 const char *name, *file, *str, *gen_id;
1123 FWCfgState *fw_cfg = (FWCfgState *) opaque;
1125 if (fw_cfg == NULL) {
1126 error_setg(errp, "fw_cfg device not available");
1127 return -1;
1129 name = qemu_opt_get(opts, "name");
1130 file = qemu_opt_get(opts, "file");
1131 str = qemu_opt_get(opts, "string");
1132 gen_id = qemu_opt_get(opts, "gen_id");
1134 /* we need the name, and exactly one of: file, content string, gen_id */
1135 if (!nonempty_str(name) ||
1136 nonempty_str(file) + nonempty_str(str) + nonempty_str(gen_id) != 1) {
1137 error_setg(errp, "name, plus exactly one of file,"
1138 " string and gen_id, are needed");
1139 return -1;
1141 if (strlen(name) > FW_CFG_MAX_FILE_PATH - 1) {
1142 error_setg(errp, "name too long (max. %d char)",
1143 FW_CFG_MAX_FILE_PATH - 1);
1144 return -1;
1146 if (nonempty_str(gen_id)) {
1148 * In this particular case where the content is populated
1149 * internally, the "etc/" namespace protection is relaxed,
1150 * so do not emit a warning.
1152 } else if (strncmp(name, "opt/", 4) != 0) {
1153 warn_report("externally provided fw_cfg item names "
1154 "should be prefixed with \"opt/\"");
1156 if (nonempty_str(str)) {
1157 size = strlen(str); /* NUL terminator NOT included in fw_cfg blob */
1158 buf = g_memdup(str, size);
1159 } else if (nonempty_str(gen_id)) {
1160 if (!fw_cfg_add_from_generator(fw_cfg, name, gen_id, errp)) {
1161 return -1;
1163 return 0;
1164 } else {
1165 GError *err = NULL;
1166 if (!g_file_get_contents(file, &buf, &size, &err)) {
1167 error_setg(errp, "can't load %s: %s", file, err->message);
1168 g_error_free(err);
1169 return -1;
1172 /* For legacy, keep user files in a specific global order. */
1173 fw_cfg_set_order_override(fw_cfg, FW_CFG_ORDER_OVERRIDE_USER);
1174 fw_cfg_add_file(fw_cfg, name, buf, size);
1175 fw_cfg_reset_order_override(fw_cfg);
1176 return 0;
1179 static int device_help_func(void *opaque, QemuOpts *opts, Error **errp)
1181 return qdev_device_help(opts);
1184 static int device_init_func(void *opaque, QemuOpts *opts, Error **errp)
1186 DeviceState *dev;
1188 dev = qdev_device_add(opts, errp);
1189 if (!dev && *errp) {
1190 error_report_err(*errp);
1191 return -1;
1192 } else if (dev) {
1193 object_unref(OBJECT(dev));
1195 return 0;
1198 static int chardev_init_func(void *opaque, QemuOpts *opts, Error **errp)
1200 Error *local_err = NULL;
1202 if (!qemu_chr_new_from_opts(opts, NULL, &local_err)) {
1203 if (local_err) {
1204 error_propagate(errp, local_err);
1205 return -1;
1207 exit(0);
1209 return 0;
1212 #ifdef CONFIG_VIRTFS
1213 static int fsdev_init_func(void *opaque, QemuOpts *opts, Error **errp)
1215 return qemu_fsdev_add(opts, errp);
1217 #endif
1219 static int mon_init_func(void *opaque, QemuOpts *opts, Error **errp)
1221 return monitor_init_opts(opts, errp);
1224 static void monitor_parse(const char *optarg, const char *mode, bool pretty)
1226 static int monitor_device_index = 0;
1227 QemuOpts *opts;
1228 const char *p;
1229 char label[32];
1231 if (strstart(optarg, "chardev:", &p)) {
1232 snprintf(label, sizeof(label), "%s", p);
1233 } else {
1234 snprintf(label, sizeof(label), "compat_monitor%d",
1235 monitor_device_index);
1236 opts = qemu_chr_parse_compat(label, optarg, true);
1237 if (!opts) {
1238 error_report("parse error: %s", optarg);
1239 exit(1);
1243 opts = qemu_opts_create(qemu_find_opts("mon"), label, 1, &error_fatal);
1244 qemu_opt_set(opts, "mode", mode, &error_abort);
1245 qemu_opt_set(opts, "chardev", label, &error_abort);
1246 if (!strcmp(mode, "control")) {
1247 qemu_opt_set_bool(opts, "pretty", pretty, &error_abort);
1248 } else {
1249 assert(pretty == false);
1251 monitor_device_index++;
1254 struct device_config {
1255 enum {
1256 DEV_USB, /* -usbdevice */
1257 DEV_SERIAL, /* -serial */
1258 DEV_PARALLEL, /* -parallel */
1259 DEV_DEBUGCON, /* -debugcon */
1260 DEV_GDB, /* -gdb, -s */
1261 DEV_SCLP, /* s390 sclp */
1262 } type;
1263 const char *cmdline;
1264 Location loc;
1265 QTAILQ_ENTRY(device_config) next;
1268 static QTAILQ_HEAD(, device_config) device_configs =
1269 QTAILQ_HEAD_INITIALIZER(device_configs);
1271 static void add_device_config(int type, const char *cmdline)
1273 struct device_config *conf;
1275 conf = g_malloc0(sizeof(*conf));
1276 conf->type = type;
1277 conf->cmdline = cmdline;
1278 loc_save(&conf->loc);
1279 QTAILQ_INSERT_TAIL(&device_configs, conf, next);
1282 static int foreach_device_config(int type, int (*func)(const char *cmdline))
1284 struct device_config *conf;
1285 int rc;
1287 QTAILQ_FOREACH(conf, &device_configs, next) {
1288 if (conf->type != type)
1289 continue;
1290 loc_push_restore(&conf->loc);
1291 rc = func(conf->cmdline);
1292 loc_pop(&conf->loc);
1293 if (rc) {
1294 return rc;
1297 return 0;
1300 static void qemu_disable_default_devices(void)
1302 MachineClass *machine_class = MACHINE_GET_CLASS(current_machine);
1304 default_driver_check_json();
1305 qemu_opts_foreach(qemu_find_opts("device"),
1306 default_driver_check, NULL, NULL);
1307 qemu_opts_foreach(qemu_find_opts("global"),
1308 default_driver_check, NULL, NULL);
1310 if (!vga_model && !default_vga) {
1311 vga_interface_type = VGA_DEVICE;
1312 vga_interface_created = true;
1314 if (!has_defaults || machine_class->no_serial) {
1315 default_serial = 0;
1317 if (!has_defaults || machine_class->no_parallel) {
1318 default_parallel = 0;
1320 if (!has_defaults || machine_class->no_floppy) {
1321 default_floppy = 0;
1323 if (!has_defaults || machine_class->no_cdrom) {
1324 default_cdrom = 0;
1326 if (!has_defaults || machine_class->no_sdcard) {
1327 default_sdcard = 0;
1329 if (!has_defaults) {
1330 default_monitor = 0;
1331 default_net = 0;
1332 default_vga = 0;
1333 } else {
1334 if (default_net && machine_class->default_nic &&
1335 !module_object_class_by_name(machine_class->default_nic)) {
1336 warn_report("Default NIC '%s' is not available in this binary",
1337 machine_class->default_nic);
1338 default_net = 0;
1343 static void qemu_create_default_devices(void)
1345 MachineClass *machine_class = MACHINE_GET_CLASS(current_machine);
1347 if (is_daemonized()) {
1348 /* According to documentation and historically, -nographic redirects
1349 * serial port, parallel port and monitor to stdio, which does not work
1350 * with -daemonize. We can redirect these to null instead, but since
1351 * -nographic is legacy, let's just error out.
1352 * We disallow -nographic only if all other ports are not redirected
1353 * explicitly, to not break existing legacy setups which uses
1354 * -nographic _and_ redirects all ports explicitly - this is valid
1355 * usage, -nographic is just a no-op in this case.
1357 if (nographic
1358 && (default_parallel || default_serial || default_monitor)) {
1359 error_report("-nographic cannot be used with -daemonize");
1360 exit(1);
1364 if (nographic) {
1365 if (default_parallel)
1366 add_device_config(DEV_PARALLEL, "null");
1367 if (default_serial && default_monitor) {
1368 add_device_config(DEV_SERIAL, "mon:stdio");
1369 } else {
1370 if (default_serial)
1371 add_device_config(DEV_SERIAL, "stdio");
1372 if (default_monitor)
1373 monitor_parse("stdio", "readline", false);
1375 } else {
1376 if (default_serial)
1377 add_device_config(DEV_SERIAL, "vc:80Cx24C");
1378 if (default_parallel)
1379 add_device_config(DEV_PARALLEL, "vc:80Cx24C");
1380 if (default_monitor)
1381 monitor_parse("vc:80Cx24C", "readline", false);
1384 if (default_net) {
1385 QemuOptsList *net = qemu_find_opts("net");
1386 qemu_opts_parse(net, "nic", true, &error_abort);
1387 #ifdef CONFIG_SLIRP
1388 qemu_opts_parse(net, "user", true, &error_abort);
1389 #endif
1392 #if defined(CONFIG_VNC)
1393 if (!QTAILQ_EMPTY(&(qemu_find_opts("vnc")->head))) {
1394 display_remote++;
1396 #endif
1397 if (dpy.type == DISPLAY_TYPE_DEFAULT && !display_remote) {
1398 if (!qemu_display_find_default(&dpy)) {
1399 dpy.type = DISPLAY_TYPE_NONE;
1400 #if defined(CONFIG_VNC)
1401 vnc_parse("localhost:0,to=99,id=default");
1402 #endif
1405 if (dpy.type == DISPLAY_TYPE_DEFAULT) {
1406 dpy.type = DISPLAY_TYPE_NONE;
1409 /* If no default VGA is requested, the default is "none". */
1410 if (default_vga) {
1411 vga_model = get_default_vga_model(machine_class);
1413 if (vga_model) {
1414 select_vgahw(machine_class, vga_model);
1418 static int serial_parse(const char *devname)
1420 int index = num_serial_hds;
1421 char label[32];
1423 if (strcmp(devname, "none") == 0)
1424 return 0;
1425 snprintf(label, sizeof(label), "serial%d", index);
1426 serial_hds = g_renew(Chardev *, serial_hds, index + 1);
1428 serial_hds[index] = qemu_chr_new_mux_mon(label, devname, NULL);
1429 if (!serial_hds[index]) {
1430 error_report("could not connect serial device"
1431 " to character backend '%s'", devname);
1432 return -1;
1434 num_serial_hds++;
1435 return 0;
1438 Chardev *serial_hd(int i)
1440 assert(i >= 0);
1441 if (i < num_serial_hds) {
1442 return serial_hds[i];
1444 return NULL;
1447 static int parallel_parse(const char *devname)
1449 static int index = 0;
1450 char label[32];
1452 if (strcmp(devname, "none") == 0)
1453 return 0;
1454 if (index == MAX_PARALLEL_PORTS) {
1455 error_report("too many parallel ports");
1456 exit(1);
1458 snprintf(label, sizeof(label), "parallel%d", index);
1459 parallel_hds[index] = qemu_chr_new_mux_mon(label, devname, NULL);
1460 if (!parallel_hds[index]) {
1461 error_report("could not connect parallel device"
1462 " to character backend '%s'", devname);
1463 return -1;
1465 index++;
1466 return 0;
1469 static int debugcon_parse(const char *devname)
1471 QemuOpts *opts;
1473 if (!qemu_chr_new_mux_mon("debugcon", devname, NULL)) {
1474 error_report("invalid character backend '%s'", devname);
1475 exit(1);
1477 opts = qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL);
1478 if (!opts) {
1479 error_report("already have a debugcon device");
1480 exit(1);
1482 qemu_opt_set(opts, "driver", "isa-debugcon", &error_abort);
1483 qemu_opt_set(opts, "chardev", "debugcon", &error_abort);
1484 return 0;
1487 static gint machine_class_cmp(gconstpointer a, gconstpointer b)
1489 const MachineClass *mc1 = a, *mc2 = b;
1490 int res;
1492 if (mc1->family == NULL) {
1493 if (mc2->family == NULL) {
1494 /* Compare standalone machine types against each other; they sort
1495 * in increasing order.
1497 return strcmp(object_class_get_name(OBJECT_CLASS(mc1)),
1498 object_class_get_name(OBJECT_CLASS(mc2)));
1501 /* Standalone machine types sort after families. */
1502 return 1;
1505 if (mc2->family == NULL) {
1506 /* Families sort before standalone machine types. */
1507 return -1;
1510 /* Families sort between each other alphabetically increasingly. */
1511 res = strcmp(mc1->family, mc2->family);
1512 if (res != 0) {
1513 return res;
1516 /* Within the same family, machine types sort in decreasing order. */
1517 return strcmp(object_class_get_name(OBJECT_CLASS(mc2)),
1518 object_class_get_name(OBJECT_CLASS(mc1)));
1521 static void machine_help_func(const QDict *qdict)
1523 GSList *machines, *el;
1524 const char *type = qdict_get_try_str(qdict, "type");
1526 machines = object_class_get_list(TYPE_MACHINE, false);
1527 if (type) {
1528 ObjectClass *machine_class = OBJECT_CLASS(find_machine(type, machines));
1529 if (machine_class) {
1530 type_print_class_properties(object_class_get_name(machine_class));
1531 return;
1535 printf("Supported machines are:\n");
1536 machines = g_slist_sort(machines, machine_class_cmp);
1537 for (el = machines; el; el = el->next) {
1538 MachineClass *mc = el->data;
1539 if (mc->alias) {
1540 printf("%-20s %s (alias of %s)\n", mc->alias, mc->desc, mc->name);
1542 printf("%-20s %s%s%s\n", mc->name, mc->desc,
1543 mc->is_default ? " (default)" : "",
1544 mc->deprecation_reason ? " (deprecated)" : "");
1548 static void
1549 machine_merge_property(const char *propname, QDict *prop, Error **errp)
1551 QDict *opts;
1553 opts = qdict_new();
1554 /* Preserve the caller's reference to prop. */
1555 qobject_ref(prop);
1556 qdict_put(opts, propname, prop);
1557 keyval_merge(machine_opts_dict, opts, errp);
1558 qobject_unref(opts);
1561 static void
1562 machine_parse_property_opt(QemuOptsList *opts_list, const char *propname,
1563 const char *arg)
1565 QDict *prop = NULL;
1566 bool help = false;
1568 prop = keyval_parse(arg, opts_list->implied_opt_name, &help, &error_fatal);
1569 if (help) {
1570 qemu_opts_print_help(opts_list, true);
1571 exit(0);
1573 machine_merge_property(propname, prop, &error_fatal);
1574 qobject_unref(prop);
1577 static const char *pid_file;
1578 struct UnlinkPidfileNotifier {
1579 Notifier notifier;
1580 char *pid_file_realpath;
1582 static struct UnlinkPidfileNotifier qemu_unlink_pidfile_notifier;
1584 static void qemu_unlink_pidfile(Notifier *n, void *data)
1586 struct UnlinkPidfileNotifier *upn;
1588 upn = DO_UPCAST(struct UnlinkPidfileNotifier, notifier, n);
1589 unlink(upn->pid_file_realpath);
1592 static const QEMUOption *lookup_opt(int argc, char **argv,
1593 const char **poptarg, int *poptind)
1595 const QEMUOption *popt;
1596 int optind = *poptind;
1597 char *r = argv[optind];
1598 const char *optarg;
1600 loc_set_cmdline(argv, optind, 1);
1601 optind++;
1602 /* Treat --foo the same as -foo. */
1603 if (r[1] == '-')
1604 r++;
1605 popt = qemu_options;
1606 for(;;) {
1607 if (!popt->name) {
1608 error_report("invalid option");
1609 exit(1);
1611 if (!strcmp(popt->name, r + 1))
1612 break;
1613 popt++;
1615 if (popt->flags & HAS_ARG) {
1616 if (optind >= argc) {
1617 error_report("requires an argument");
1618 exit(1);
1620 optarg = argv[optind++];
1621 loc_set_cmdline(argv, optind - 2, 2);
1622 } else {
1623 optarg = NULL;
1626 *poptarg = optarg;
1627 *poptind = optind;
1629 return popt;
1632 static MachineClass *select_machine(QDict *qdict, Error **errp)
1634 const char *optarg = qdict_get_try_str(qdict, "type");
1635 GSList *machines = object_class_get_list(TYPE_MACHINE, false);
1636 MachineClass *machine_class;
1637 Error *local_err = NULL;
1639 if (optarg) {
1640 machine_class = find_machine(optarg, machines);
1641 qdict_del(qdict, "type");
1642 if (!machine_class) {
1643 error_setg(&local_err, "unsupported machine type");
1645 } else {
1646 machine_class = find_default_machine(machines);
1647 if (!machine_class) {
1648 error_setg(&local_err, "No machine specified, and there is no default");
1652 g_slist_free(machines);
1653 if (local_err) {
1654 error_append_hint(&local_err, "Use -machine help to list supported machines\n");
1655 error_propagate(errp, local_err);
1657 return machine_class;
1660 static int object_parse_property_opt(Object *obj,
1661 const char *name, const char *value,
1662 const char *skip, Error **errp)
1664 if (g_str_equal(name, skip)) {
1665 return 0;
1668 if (!object_property_parse(obj, name, value, errp)) {
1669 return -1;
1672 return 0;
1675 /* *Non*recursively replace underscores with dashes in QDict keys. */
1676 static void keyval_dashify(QDict *qdict, Error **errp)
1678 const QDictEntry *ent, *next;
1679 char *p;
1681 for (ent = qdict_first(qdict); ent; ent = next) {
1682 g_autofree char *new_key = NULL;
1684 next = qdict_next(qdict, ent);
1685 if (!strchr(ent->key, '_')) {
1686 continue;
1688 new_key = g_strdup(ent->key);
1689 for (p = new_key; *p; p++) {
1690 if (*p == '_') {
1691 *p = '-';
1694 if (qdict_haskey(qdict, new_key)) {
1695 error_setg(errp, "Conflict between '%s' and '%s'", ent->key, new_key);
1696 return;
1698 qobject_ref(ent->value);
1699 qdict_put_obj(qdict, new_key, ent->value);
1700 qdict_del(qdict, ent->key);
1704 static void qemu_apply_legacy_machine_options(QDict *qdict)
1706 const char *value;
1707 QObject *prop;
1709 keyval_dashify(qdict, &error_fatal);
1711 /* Legacy options do not correspond to MachineState properties. */
1712 value = qdict_get_try_str(qdict, "accel");
1713 if (value) {
1714 accelerators = g_strdup(value);
1715 qdict_del(qdict, "accel");
1718 value = qdict_get_try_str(qdict, "igd-passthru");
1719 if (value) {
1720 object_register_sugar_prop(ACCEL_CLASS_NAME("xen"), "igd-passthru", value,
1721 false);
1722 qdict_del(qdict, "igd-passthru");
1725 value = qdict_get_try_str(qdict, "kvm-shadow-mem");
1726 if (value) {
1727 object_register_sugar_prop(ACCEL_CLASS_NAME("kvm"), "kvm-shadow-mem", value,
1728 false);
1729 qdict_del(qdict, "kvm-shadow-mem");
1732 value = qdict_get_try_str(qdict, "kernel-irqchip");
1733 if (value) {
1734 object_register_sugar_prop(ACCEL_CLASS_NAME("kvm"), "kernel-irqchip", value,
1735 false);
1736 object_register_sugar_prop(ACCEL_CLASS_NAME("whpx"), "kernel-irqchip", value,
1737 false);
1738 qdict_del(qdict, "kernel-irqchip");
1741 value = qdict_get_try_str(qdict, "memory-backend");
1742 if (value) {
1743 if (mem_path) {
1744 error_report("'-mem-path' can't be used together with"
1745 "'-machine memory-backend'");
1746 exit(EXIT_FAILURE);
1749 /* Resolved later. */
1750 ram_memdev_id = g_strdup(value);
1751 qdict_del(qdict, "memory-backend");
1754 prop = qdict_get(qdict, "memory");
1755 if (prop) {
1756 have_custom_ram_size =
1757 qobject_type(prop) == QTYPE_QDICT &&
1758 qdict_haskey(qobject_to(QDict, prop), "size");
1762 static void object_option_foreach_add(bool (*type_opt_predicate)(const char *))
1764 ObjectOption *opt, *next;
1766 QTAILQ_FOREACH_SAFE(opt, &object_opts, next, next) {
1767 const char *type = ObjectType_str(opt->opts->qom_type);
1768 if (type_opt_predicate(type)) {
1769 user_creatable_add_qapi(opt->opts, &error_fatal);
1770 qapi_free_ObjectOptions(opt->opts);
1771 QTAILQ_REMOVE(&object_opts, opt, next);
1772 g_free(opt);
1777 static void object_option_add_visitor(Visitor *v)
1779 ObjectOption *opt = g_new0(ObjectOption, 1);
1780 visit_type_ObjectOptions(v, NULL, &opt->opts, &error_fatal);
1781 QTAILQ_INSERT_TAIL(&object_opts, opt, next);
1784 static void object_option_parse(const char *optarg)
1786 QemuOpts *opts;
1787 const char *type;
1788 Visitor *v;
1790 if (optarg[0] == '{') {
1791 QObject *obj = qobject_from_json(optarg, &error_fatal);
1793 v = qobject_input_visitor_new(obj);
1794 qobject_unref(obj);
1795 } else {
1796 opts = qemu_opts_parse_noisily(qemu_find_opts("object"),
1797 optarg, true);
1798 if (!opts) {
1799 exit(1);
1802 type = qemu_opt_get(opts, "qom-type");
1803 if (!type) {
1804 error_setg(&error_fatal, QERR_MISSING_PARAMETER, "qom-type");
1806 if (user_creatable_print_help(type, opts)) {
1807 exit(0);
1810 v = opts_visitor_new(opts);
1813 object_option_add_visitor(v);
1814 visit_free(v);
1818 * Very early object creation, before the sandbox options have been activated.
1820 static bool object_create_pre_sandbox(const char *type)
1823 * Objects should in general not get initialized "too early" without
1824 * a reason. If you add one, state the reason in a comment!
1828 * Reason: -sandbox on,resourcecontrol=deny disallows setting CPU
1829 * affinity of threads.
1831 if (g_str_equal(type, "thread-context")) {
1832 return true;
1835 return false;
1839 * Initial object creation happens before all other
1840 * QEMU data types are created. The majority of objects
1841 * can be created at this point. The rng-egd object
1842 * cannot be created here, as it depends on the chardev
1843 * already existing.
1845 static bool object_create_early(const char *type)
1848 * Objects should not be made "delayed" without a reason. If you
1849 * add one, state the reason in a comment!
1852 /* Reason: already created. */
1853 if (object_create_pre_sandbox(type)) {
1854 return false;
1857 /* Reason: property "chardev" */
1858 if (g_str_equal(type, "rng-egd") ||
1859 g_str_equal(type, "qtest")) {
1860 return false;
1863 #if defined(CONFIG_VHOST_USER) && defined(CONFIG_LINUX)
1864 /* Reason: cryptodev-vhost-user property "chardev" */
1865 if (g_str_equal(type, "cryptodev-vhost-user")) {
1866 return false;
1868 #endif
1870 /* Reason: vhost-user-blk-server property "node-name" */
1871 if (g_str_equal(type, "vhost-user-blk-server")) {
1872 return false;
1875 * Reason: filter-* property "netdev" etc.
1877 if (g_str_equal(type, "filter-buffer") ||
1878 g_str_equal(type, "filter-dump") ||
1879 g_str_equal(type, "filter-mirror") ||
1880 g_str_equal(type, "filter-redirector") ||
1881 g_str_equal(type, "colo-compare") ||
1882 g_str_equal(type, "filter-rewriter") ||
1883 g_str_equal(type, "filter-replay")) {
1884 return false;
1888 * Allocation of large amounts of memory may delay
1889 * chardev initialization for too long, and trigger timeouts
1890 * on software that waits for a monitor socket to be created
1891 * (e.g. libvirt).
1893 if (g_str_has_prefix(type, "memory-backend-")) {
1894 return false;
1897 return true;
1900 static void qemu_apply_machine_options(QDict *qdict)
1902 object_set_properties_from_keyval(OBJECT(current_machine), qdict, false, &error_fatal);
1904 if (semihosting_enabled(false) && !semihosting_get_argc()) {
1905 /* fall back to the -kernel/-append */
1906 semihosting_arg_fallback(current_machine->kernel_filename, current_machine->kernel_cmdline);
1909 if (current_machine->smp.cpus > 1) {
1910 replay_add_blocker("smp");
1914 static void qemu_create_early_backends(void)
1916 MachineClass *machine_class = MACHINE_GET_CLASS(current_machine);
1917 #if defined(CONFIG_SDL)
1918 const bool use_sdl = (dpy.type == DISPLAY_TYPE_SDL);
1919 #else
1920 const bool use_sdl = false;
1921 #endif
1922 #if defined(CONFIG_GTK)
1923 const bool use_gtk = (dpy.type == DISPLAY_TYPE_GTK);
1924 #else
1925 const bool use_gtk = false;
1926 #endif
1928 if (dpy.has_window_close && !use_gtk && !use_sdl) {
1929 error_report("window-close is only valid for GTK and SDL, "
1930 "ignoring option");
1933 qemu_display_early_init(&dpy);
1934 qemu_console_early_init();
1936 if (dpy.has_gl && dpy.gl != DISPLAYGL_MODE_OFF && display_opengl == 0) {
1937 #if defined(CONFIG_OPENGL)
1938 error_report("OpenGL is not supported by the display");
1939 #else
1940 error_report("OpenGL support is disabled");
1941 #endif
1942 exit(1);
1945 object_option_foreach_add(object_create_early);
1947 /* spice needs the timers to be initialized by this point */
1948 /* spice must initialize before audio as it changes the default audiodev */
1949 /* spice must initialize before chardevs (for spicevmc and spiceport) */
1950 qemu_spice.init();
1952 qemu_opts_foreach(qemu_find_opts("chardev"),
1953 chardev_init_func, NULL, &error_fatal);
1955 #ifdef CONFIG_VIRTFS
1956 qemu_opts_foreach(qemu_find_opts("fsdev"),
1957 fsdev_init_func, NULL, &error_fatal);
1958 #endif
1961 * Note: we need to create audio and block backends before
1962 * setting machine properties, so they can be referred to.
1964 configure_blockdev(&bdo_queue, machine_class, snapshot);
1965 if (!audio_init_audiodevs()) {
1966 exit(1);
1972 * The remainder of object creation happens after the
1973 * creation of chardev, fsdev, net clients and device data types.
1975 static bool object_create_late(const char *type)
1977 return !object_create_early(type) && !object_create_pre_sandbox(type);
1980 static void qemu_create_late_backends(void)
1982 if (qtest_chrdev) {
1983 qtest_server_init(qtest_chrdev, qtest_log, &error_fatal);
1986 net_init_clients();
1988 object_option_foreach_add(object_create_late);
1990 if (tpm_init() < 0) {
1991 exit(1);
1994 qemu_opts_foreach(qemu_find_opts("mon"),
1995 mon_init_func, NULL, &error_fatal);
1997 if (foreach_device_config(DEV_SERIAL, serial_parse) < 0)
1998 exit(1);
1999 if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0)
2000 exit(1);
2001 if (foreach_device_config(DEV_DEBUGCON, debugcon_parse) < 0)
2002 exit(1);
2004 /* now chardevs have been created we may have semihosting to connect */
2005 qemu_semihosting_chardev_init();
2008 static void qemu_resolve_machine_memdev(void)
2010 if (ram_memdev_id) {
2011 Object *backend;
2012 ram_addr_t backend_size;
2014 backend = object_resolve_path_type(ram_memdev_id,
2015 TYPE_MEMORY_BACKEND, NULL);
2016 if (!backend) {
2017 error_report("Memory backend '%s' not found", ram_memdev_id);
2018 exit(EXIT_FAILURE);
2020 if (!have_custom_ram_size) {
2021 backend_size = object_property_get_uint(backend, "size", &error_abort);
2022 current_machine->ram_size = backend_size;
2024 object_property_set_link(OBJECT(current_machine),
2025 "memory-backend", backend, &error_fatal);
2029 static void parse_memory_options(void)
2031 QemuOpts *opts = qemu_find_opts_singleton("memory");
2032 QDict *dict, *prop;
2033 const char *mem_str;
2034 Location loc;
2036 loc_push_none(&loc);
2037 qemu_opts_loc_restore(opts);
2039 prop = qdict_new();
2041 if (qemu_opt_get_size(opts, "size", 0) != 0) {
2042 /* Fix up legacy suffix-less format */
2043 mem_str = qemu_opt_get(opts, "size");
2044 if (g_ascii_isdigit(mem_str[strlen(mem_str) - 1])) {
2045 g_autofree char *mib_str = g_strdup_printf("%sM", mem_str);
2046 qdict_put_str(prop, "size", mib_str);
2047 } else {
2048 qdict_put_str(prop, "size", mem_str);
2052 if (qemu_opt_get(opts, "maxmem")) {
2053 qdict_put_str(prop, "max-size", qemu_opt_get(opts, "maxmem"));
2055 if (qemu_opt_get(opts, "slots")) {
2056 qdict_put_str(prop, "slots", qemu_opt_get(opts, "slots"));
2059 dict = qdict_new();
2060 qdict_put(dict, "memory", prop);
2061 keyval_merge(machine_opts_dict, dict, &error_fatal);
2062 qobject_unref(dict);
2063 loc_pop(&loc);
2066 static void qemu_create_machine(QDict *qdict)
2068 MachineClass *machine_class = select_machine(qdict, &error_fatal);
2069 object_set_machine_compat_props(machine_class->compat_props);
2071 current_machine = MACHINE(object_new_with_class(OBJECT_CLASS(machine_class)));
2072 object_property_add_child(object_get_root(), "machine",
2073 OBJECT(current_machine));
2074 object_property_add_child(container_get(OBJECT(current_machine),
2075 "/unattached"),
2076 "sysbus", OBJECT(sysbus_get_default()));
2078 if (machine_class->minimum_page_bits) {
2079 if (!set_preferred_target_page_bits(machine_class->minimum_page_bits)) {
2080 /* This would be a board error: specifying a minimum smaller than
2081 * a target's compile-time fixed setting.
2083 g_assert_not_reached();
2087 cpu_exec_init_all();
2088 page_size_init();
2090 if (machine_class->hw_version) {
2091 qemu_set_hw_version(machine_class->hw_version);
2095 * Get the default machine options from the machine if it is not already
2096 * specified either by the configuration file or by the command line.
2098 if (machine_class->default_machine_opts) {
2099 QDict *default_opts =
2100 keyval_parse(machine_class->default_machine_opts, NULL, NULL,
2101 &error_abort);
2102 qemu_apply_legacy_machine_options(default_opts);
2103 object_set_properties_from_keyval(OBJECT(current_machine), default_opts,
2104 false, &error_abort);
2105 qobject_unref(default_opts);
2109 static int global_init_func(void *opaque, QemuOpts *opts, Error **errp)
2111 GlobalProperty *g;
2113 g = g_malloc0(sizeof(*g));
2114 g->driver = qemu_opt_get(opts, "driver");
2115 g->property = qemu_opt_get(opts, "property");
2116 g->value = qemu_opt_get(opts, "value");
2117 qdev_prop_register_global(g);
2118 return 0;
2122 * Return whether configuration group @group is stored in QemuOpts, or
2123 * recorded as one or more QDicts by qemu_record_config_group.
2125 static bool is_qemuopts_group(const char *group)
2127 if (g_str_equal(group, "object") ||
2128 g_str_equal(group, "machine") ||
2129 g_str_equal(group, "smp-opts") ||
2130 g_str_equal(group, "boot-opts")) {
2131 return false;
2133 return true;
2136 static void qemu_record_config_group(const char *group, QDict *dict,
2137 bool from_json, Error **errp)
2139 if (g_str_equal(group, "object")) {
2140 Visitor *v = qobject_input_visitor_new_keyval(QOBJECT(dict));
2141 object_option_add_visitor(v);
2142 visit_free(v);
2143 } else if (g_str_equal(group, "machine")) {
2145 * Cannot merge string-valued and type-safe dictionaries, so JSON
2146 * is not accepted yet for -M.
2148 assert(!from_json);
2149 keyval_merge(machine_opts_dict, dict, errp);
2150 } else if (g_str_equal(group, "smp-opts")) {
2151 machine_merge_property("smp", dict, &error_fatal);
2152 } else if (g_str_equal(group, "boot-opts")) {
2153 machine_merge_property("boot", dict, &error_fatal);
2154 } else {
2155 abort();
2160 * Parse non-QemuOpts config file groups, pass the rest to
2161 * qemu_config_do_parse.
2163 static void qemu_parse_config_group(const char *group, QDict *qdict,
2164 void *opaque, Error **errp)
2166 QObject *crumpled;
2167 if (is_qemuopts_group(group)) {
2168 qemu_config_do_parse(group, qdict, opaque, errp);
2169 return;
2172 crumpled = qdict_crumple(qdict, errp);
2173 if (!crumpled) {
2174 return;
2176 switch (qobject_type(crumpled)) {
2177 case QTYPE_QDICT:
2178 qemu_record_config_group(group, qobject_to(QDict, crumpled), false, errp);
2179 break;
2180 case QTYPE_QLIST:
2181 error_setg(errp, "Lists cannot be at top level of a configuration section");
2182 break;
2183 default:
2184 g_assert_not_reached();
2186 qobject_unref(crumpled);
2189 static void qemu_read_default_config_file(Error **errp)
2191 ERRP_GUARD();
2192 int ret;
2193 g_autofree char *file = get_relocated_path(CONFIG_QEMU_CONFDIR "/qemu.conf");
2195 ret = qemu_read_config_file(file, qemu_parse_config_group, errp);
2196 if (ret < 0) {
2197 if (ret == -ENOENT) {
2198 error_free(*errp);
2199 *errp = NULL;
2204 static void qemu_set_option(const char *str, Error **errp)
2206 char group[64], id[64], arg[64];
2207 QemuOptsList *list;
2208 QemuOpts *opts;
2209 int rc, offset;
2211 rc = sscanf(str, "%63[^.].%63[^.].%63[^=]%n", group, id, arg, &offset);
2212 if (rc < 3 || str[offset] != '=') {
2213 error_setg(errp, "can't parse: \"%s\"", str);
2214 return;
2217 if (!is_qemuopts_group(group)) {
2218 error_setg(errp, "-set is not supported with %s", group);
2219 } else {
2220 list = qemu_find_opts_err(group, errp);
2221 if (list) {
2222 opts = qemu_opts_find(list, id);
2223 if (!opts) {
2224 error_setg(errp, "there is no %s \"%s\" defined", group, id);
2225 return;
2227 qemu_opt_set(opts, arg, str + offset + 1, errp);
2232 static void user_register_global_props(void)
2234 qemu_opts_foreach(qemu_find_opts("global"),
2235 global_init_func, NULL, NULL);
2238 static int do_configure_icount(void *opaque, QemuOpts *opts, Error **errp)
2240 icount_configure(opts, errp);
2241 return 0;
2244 static int accelerator_set_property(void *opaque,
2245 const char *name, const char *value,
2246 Error **errp)
2248 return object_parse_property_opt(opaque, name, value, "accel", errp);
2251 static int do_configure_accelerator(void *opaque, QemuOpts *opts, Error **errp)
2253 bool *p_init_failed = opaque;
2254 const char *acc = qemu_opt_get(opts, "accel");
2255 AccelClass *ac = accel_find(acc);
2256 AccelState *accel;
2257 int ret;
2258 bool qtest_with_kvm;
2260 if (!acc) {
2261 error_setg(errp, QERR_MISSING_PARAMETER, "accel");
2262 goto bad;
2265 qtest_with_kvm = g_str_equal(acc, "kvm") && qtest_chrdev != NULL;
2267 if (!ac) {
2268 if (!qtest_with_kvm) {
2269 error_report("invalid accelerator %s", acc);
2271 goto bad;
2273 accel = ACCEL(object_new_with_class(OBJECT_CLASS(ac)));
2274 object_apply_compat_props(OBJECT(accel));
2275 qemu_opt_foreach(opts, accelerator_set_property,
2276 accel,
2277 &error_fatal);
2279 * If legacy -singlestep option is set, honour it for TCG and
2280 * silently ignore for any other accelerator (which is how this
2281 * option has always behaved).
2283 if (opt_one_insn_per_tb) {
2285 * This will always succeed for TCG, and we want to ignore
2286 * the error from trying to set a nonexistent property
2287 * on any other accelerator.
2289 object_property_set_bool(OBJECT(accel), "one-insn-per-tb", true, NULL);
2291 ret = accel_init_machine(accel, current_machine);
2292 if (ret < 0) {
2293 if (!qtest_with_kvm || ret != -ENOENT) {
2294 error_report("failed to initialize %s: %s", acc, strerror(-ret));
2296 goto bad;
2299 return 1;
2301 bad:
2302 *p_init_failed = true;
2303 return 0;
2306 static void configure_accelerators(const char *progname)
2308 bool init_failed = false;
2310 qemu_opts_foreach(qemu_find_opts("icount"),
2311 do_configure_icount, NULL, &error_fatal);
2313 if (QTAILQ_EMPTY(&qemu_accel_opts.head)) {
2314 char **accel_list, **tmp;
2316 if (accelerators == NULL) {
2317 /* Select the default accelerator */
2318 bool have_tcg = accel_find("tcg");
2319 bool have_kvm = accel_find("kvm");
2321 if (have_tcg && have_kvm) {
2322 if (g_str_has_suffix(progname, "kvm")) {
2323 /* If the program name ends with "kvm", we prefer KVM */
2324 accelerators = "kvm:tcg";
2325 } else {
2326 accelerators = "tcg:kvm";
2328 } else if (have_kvm) {
2329 accelerators = "kvm";
2330 } else if (have_tcg) {
2331 accelerators = "tcg";
2332 } else {
2333 error_report("No accelerator selected and"
2334 " no default accelerator available");
2335 exit(1);
2338 accel_list = g_strsplit(accelerators, ":", 0);
2340 for (tmp = accel_list; *tmp; tmp++) {
2342 * Filter invalid accelerators here, to prevent obscenities
2343 * such as "-machine accel=tcg,,thread=single".
2345 if (accel_find(*tmp)) {
2346 qemu_opts_parse_noisily(qemu_find_opts("accel"), *tmp, true);
2347 } else {
2348 init_failed = true;
2349 error_report("invalid accelerator %s", *tmp);
2352 g_strfreev(accel_list);
2353 } else {
2354 if (accelerators != NULL) {
2355 error_report("The -accel and \"-machine accel=\" options are incompatible");
2356 exit(1);
2360 if (!qemu_opts_foreach(qemu_find_opts("accel"),
2361 do_configure_accelerator, &init_failed, &error_fatal)) {
2362 if (!init_failed) {
2363 error_report("no accelerator found");
2365 exit(1);
2368 if (init_failed && !qtest_chrdev) {
2369 error_report("falling back to %s", current_accel_name());
2372 if (icount_enabled() && !tcg_enabled()) {
2373 error_report("-icount is not allowed with hardware virtualization");
2374 exit(1);
2378 static void qemu_validate_options(const QDict *machine_opts)
2380 const char *kernel_filename = qdict_get_try_str(machine_opts, "kernel");
2381 const char *initrd_filename = qdict_get_try_str(machine_opts, "initrd");
2382 const char *kernel_cmdline = qdict_get_try_str(machine_opts, "append");
2384 if (kernel_filename == NULL) {
2385 if (kernel_cmdline != NULL) {
2386 error_report("-append only allowed with -kernel option");
2387 exit(1);
2390 if (initrd_filename != NULL) {
2391 error_report("-initrd only allowed with -kernel option");
2392 exit(1);
2396 if (loadvm && preconfig_requested) {
2397 error_report("'preconfig' and 'loadvm' options are "
2398 "mutually exclusive");
2399 exit(EXIT_FAILURE);
2401 if (incoming && preconfig_requested && strcmp(incoming, "defer") != 0) {
2402 error_report("'preconfig' supports '-incoming defer' only");
2403 exit(EXIT_FAILURE);
2406 #ifdef CONFIG_CURSES
2407 if (is_daemonized() && dpy.type == DISPLAY_TYPE_CURSES) {
2408 error_report("curses display cannot be used with -daemonize");
2409 exit(1);
2411 #endif
2414 static void qemu_process_sugar_options(void)
2416 if (mem_prealloc) {
2417 QObject *smp = qdict_get(machine_opts_dict, "smp");
2418 if (smp && qobject_type(smp) == QTYPE_QDICT) {
2419 QObject *cpus = qdict_get(qobject_to(QDict, smp), "cpus");
2420 if (cpus && qobject_type(cpus) == QTYPE_QSTRING) {
2421 const char *val = qstring_get_str(qobject_to(QString, cpus));
2422 object_register_sugar_prop("memory-backend", "prealloc-threads",
2423 val, false);
2426 object_register_sugar_prop("memory-backend", "prealloc", "on", false);
2430 /* -action processing */
2433 * Process all the -action parameters parsed from cmdline.
2435 static int process_runstate_actions(void *opaque, QemuOpts *opts, Error **errp)
2437 Error *local_err = NULL;
2438 QDict *qdict = qemu_opts_to_qdict(opts, NULL);
2439 QObject *ret = NULL;
2440 qmp_marshal_set_action(qdict, &ret, &local_err);
2441 qobject_unref(ret);
2442 qobject_unref(qdict);
2443 if (local_err) {
2444 error_propagate(errp, local_err);
2445 return 1;
2447 return 0;
2450 static void qemu_process_early_options(void)
2452 qemu_opts_foreach(qemu_find_opts("name"),
2453 parse_name, NULL, &error_fatal);
2455 object_option_foreach_add(object_create_pre_sandbox);
2457 #ifdef CONFIG_SECCOMP
2458 QemuOptsList *olist = qemu_find_opts_err("sandbox", NULL);
2459 if (olist) {
2460 qemu_opts_foreach(olist, parse_sandbox, NULL, &error_fatal);
2462 #endif
2464 if (qemu_opts_foreach(qemu_find_opts("action"),
2465 process_runstate_actions, NULL, &error_fatal)) {
2466 exit(1);
2469 #ifndef _WIN32
2470 qemu_opts_foreach(qemu_find_opts("add-fd"),
2471 parse_add_fd, NULL, &error_fatal);
2473 qemu_opts_foreach(qemu_find_opts("add-fd"),
2474 cleanup_add_fd, NULL, &error_fatal);
2475 #endif
2477 /* Open the logfile at this point and set the log mask if necessary. */
2479 int mask = 0;
2480 if (log_mask) {
2481 mask = qemu_str_to_log_mask(log_mask);
2482 if (!mask) {
2483 qemu_print_log_usage(stdout);
2484 exit(1);
2487 qemu_set_log_filename_flags(log_file, mask, &error_fatal);
2490 qemu_add_default_firmwarepath();
2493 static void qemu_process_help_options(void)
2496 * Check for -cpu help and -device help before we call select_machine(),
2497 * which will return an error if the architecture has no default machine
2498 * type and the user did not specify one, so that the user doesn't need
2499 * to say '-cpu help -machine something'.
2501 if (cpu_option && is_help_option(cpu_option)) {
2502 list_cpus();
2503 exit(0);
2506 if (qemu_opts_foreach(qemu_find_opts("device"),
2507 device_help_func, NULL, NULL)) {
2508 exit(0);
2511 /* -L help lists the data directories and exits. */
2512 if (list_data_dirs) {
2513 qemu_list_data_dirs();
2514 exit(0);
2518 static void qemu_maybe_daemonize(const char *pid_file)
2520 Error *err = NULL;
2522 os_daemonize();
2523 rcu_disable_atfork();
2525 if (pid_file) {
2526 char *pid_file_realpath = NULL;
2528 if (!qemu_write_pidfile(pid_file, &err)) {
2529 error_reportf_err(err, "cannot create PID file: ");
2530 exit(1);
2533 pid_file_realpath = g_malloc0(PATH_MAX);
2534 if (!realpath(pid_file, pid_file_realpath)) {
2535 if (errno != ENOENT) {
2536 warn_report("not removing PID file on exit: cannot resolve PID "
2537 "file path: %s: %s", pid_file, strerror(errno));
2539 return;
2542 qemu_unlink_pidfile_notifier = (struct UnlinkPidfileNotifier) {
2543 .notifier = {
2544 .notify = qemu_unlink_pidfile,
2546 .pid_file_realpath = pid_file_realpath,
2548 qemu_add_exit_notifier(&qemu_unlink_pidfile_notifier.notifier);
2552 static void qemu_init_displays(void)
2554 DisplayState *ds;
2556 /* init local displays */
2557 ds = init_displaystate();
2558 qemu_display_init(ds, &dpy);
2560 /* must be after terminal init, SDL library changes signal handlers */
2561 os_setup_signal_handling();
2563 /* init remote displays */
2564 #ifdef CONFIG_VNC
2565 qemu_opts_foreach(qemu_find_opts("vnc"),
2566 vnc_init_func, NULL, &error_fatal);
2567 #endif
2569 if (using_spice) {
2570 qemu_spice.display_init();
2574 static void qemu_init_board(void)
2576 /* process plugin before CPUs are created, but once -smp has been parsed */
2577 qemu_plugin_load_list(&plugin_list, &error_fatal);
2579 /* From here on we enter MACHINE_PHASE_INITIALIZED. */
2580 machine_run_board_init(current_machine, mem_path, &error_fatal);
2582 drive_check_orphaned();
2584 realtime_init();
2587 static void qemu_create_cli_devices(void)
2589 DeviceOption *opt;
2591 soundhw_init();
2593 qemu_opts_foreach(qemu_find_opts("fw_cfg"),
2594 parse_fw_cfg, fw_cfg_find(), &error_fatal);
2596 /* init USB devices */
2597 if (machine_usb(current_machine)) {
2598 if (foreach_device_config(DEV_USB, usb_parse) < 0)
2599 exit(1);
2602 /* init generic devices */
2603 rom_set_order_override(FW_CFG_ORDER_OVERRIDE_DEVICE);
2604 qemu_opts_foreach(qemu_find_opts("device"),
2605 device_init_func, NULL, &error_fatal);
2606 QTAILQ_FOREACH(opt, &device_opts, next) {
2607 DeviceState *dev;
2608 loc_push_restore(&opt->loc);
2610 * TODO Eventually we should call qmp_device_add() here to make sure it
2611 * behaves the same, but QMP still has to accept incorrectly typed
2612 * options until libvirt is fixed and we want to be strict on the CLI
2613 * from the start, so call qdev_device_add_from_qdict() directly for
2614 * now.
2616 dev = qdev_device_add_from_qdict(opt->opts, true, &error_fatal);
2617 object_unref(OBJECT(dev));
2618 loc_pop(&opt->loc);
2620 rom_reset_order_override();
2623 static void qemu_machine_creation_done(void)
2625 MachineState *machine = MACHINE(qdev_get_machine());
2627 /* Did we create any drives that we failed to create a device for? */
2628 drive_check_orphaned();
2630 /* Don't warn about the default network setup that you get if
2631 * no command line -net or -netdev options are specified. There
2632 * are two cases that we would otherwise complain about:
2633 * (1) board doesn't support a NIC but the implicit "-net nic"
2634 * requested one
2635 * (2) CONFIG_SLIRP not set, in which case the implicit "-net nic"
2636 * sets up a nic that isn't connected to anything.
2638 if (!default_net && (!qtest_enabled() || has_defaults)) {
2639 net_check_clients();
2642 qdev_prop_check_globals();
2644 qdev_machine_creation_done();
2646 if (machine->cgs) {
2648 * Verify that Confidential Guest Support has actually been initialized
2650 assert(machine->cgs->ready);
2653 if (foreach_device_config(DEV_GDB, gdbserver_start) < 0) {
2654 exit(1);
2656 if (!vga_interface_created && !default_vga &&
2657 vga_interface_type != VGA_NONE) {
2658 warn_report("A -vga option was passed but this machine "
2659 "type does not use that option; "
2660 "No VGA device has been created");
2664 void qmp_x_exit_preconfig(Error **errp)
2666 if (phase_check(PHASE_MACHINE_INITIALIZED)) {
2667 error_setg(errp, "The command is permitted only before machine initialization");
2668 return;
2671 qemu_init_board();
2672 qemu_create_cli_devices();
2673 qemu_machine_creation_done();
2675 if (loadvm) {
2676 load_snapshot(loadvm, NULL, false, NULL, &error_fatal);
2678 if (replay_mode != REPLAY_MODE_NONE) {
2679 replay_vmstate_init();
2682 if (incoming) {
2683 Error *local_err = NULL;
2684 if (strcmp(incoming, "defer") != 0) {
2685 qmp_migrate_incoming(incoming, &local_err);
2686 if (local_err) {
2687 error_reportf_err(local_err, "-incoming %s: ", incoming);
2688 exit(1);
2691 } else if (autostart) {
2692 qmp_cont(NULL);
2696 void qemu_init(int argc, char **argv)
2698 QemuOpts *opts;
2699 QemuOpts *icount_opts = NULL, *accel_opts = NULL;
2700 QemuOptsList *olist;
2701 int optind;
2702 const char *optarg;
2703 MachineClass *machine_class;
2704 bool userconfig = true;
2705 FILE *vmstate_dump_file = NULL;
2707 qemu_add_opts(&qemu_drive_opts);
2708 qemu_add_drive_opts(&qemu_legacy_drive_opts);
2709 qemu_add_drive_opts(&qemu_common_drive_opts);
2710 qemu_add_drive_opts(&qemu_drive_opts);
2711 qemu_add_drive_opts(&bdrv_runtime_opts);
2712 qemu_add_opts(&qemu_chardev_opts);
2713 qemu_add_opts(&qemu_device_opts);
2714 qemu_add_opts(&qemu_netdev_opts);
2715 qemu_add_opts(&qemu_nic_opts);
2716 qemu_add_opts(&qemu_net_opts);
2717 qemu_add_opts(&qemu_rtc_opts);
2718 qemu_add_opts(&qemu_global_opts);
2719 qemu_add_opts(&qemu_mon_opts);
2720 qemu_add_opts(&qemu_trace_opts);
2721 qemu_plugin_add_opts();
2722 qemu_add_opts(&qemu_option_rom_opts);
2723 qemu_add_opts(&qemu_accel_opts);
2724 qemu_add_opts(&qemu_mem_opts);
2725 qemu_add_opts(&qemu_smp_opts);
2726 qemu_add_opts(&qemu_boot_opts);
2727 qemu_add_opts(&qemu_add_fd_opts);
2728 qemu_add_opts(&qemu_object_opts);
2729 qemu_add_opts(&qemu_tpmdev_opts);
2730 qemu_add_opts(&qemu_overcommit_opts);
2731 qemu_add_opts(&qemu_msg_opts);
2732 qemu_add_opts(&qemu_name_opts);
2733 qemu_add_opts(&qemu_numa_opts);
2734 qemu_add_opts(&qemu_icount_opts);
2735 qemu_add_opts(&qemu_semihosting_config_opts);
2736 qemu_add_opts(&qemu_fw_cfg_opts);
2737 qemu_add_opts(&qemu_action_opts);
2738 qemu_add_run_with_opts();
2739 module_call_init(MODULE_INIT_OPTS);
2741 error_init(argv[0]);
2742 qemu_init_exec_dir(argv[0]);
2744 qemu_init_arch_modules();
2746 qemu_init_subsystems();
2748 /* first pass of option parsing */
2749 optind = 1;
2750 while (optind < argc) {
2751 if (argv[optind][0] != '-') {
2752 /* disk image */
2753 optind++;
2754 } else {
2755 const QEMUOption *popt;
2757 popt = lookup_opt(argc, argv, &optarg, &optind);
2758 switch (popt->index) {
2759 case QEMU_OPTION_nouserconfig:
2760 userconfig = false;
2761 break;
2766 machine_opts_dict = qdict_new();
2767 if (userconfig) {
2768 qemu_read_default_config_file(&error_fatal);
2771 /* second pass of option parsing */
2772 optind = 1;
2773 for(;;) {
2774 if (optind >= argc)
2775 break;
2776 if (argv[optind][0] != '-') {
2777 loc_set_cmdline(argv, optind, 1);
2778 drive_add(IF_DEFAULT, 0, argv[optind++], HD_OPTS);
2779 } else {
2780 const QEMUOption *popt;
2782 popt = lookup_opt(argc, argv, &optarg, &optind);
2783 if (!(popt->arch_mask & arch_type)) {
2784 error_report("Option not supported for this target");
2785 exit(1);
2787 switch(popt->index) {
2788 case QEMU_OPTION_cpu:
2789 /* hw initialization will check this */
2790 cpu_option = optarg;
2791 break;
2792 case QEMU_OPTION_hda:
2793 case QEMU_OPTION_hdb:
2794 case QEMU_OPTION_hdc:
2795 case QEMU_OPTION_hdd:
2796 drive_add(IF_DEFAULT, popt->index - QEMU_OPTION_hda, optarg,
2797 HD_OPTS);
2798 break;
2799 case QEMU_OPTION_blockdev:
2801 Visitor *v;
2802 BlockdevOptionsQueueEntry *bdo;
2804 v = qobject_input_visitor_new_str(optarg, "driver",
2805 &error_fatal);
2807 bdo = g_new(BlockdevOptionsQueueEntry, 1);
2808 visit_type_BlockdevOptions(v, NULL, &bdo->bdo,
2809 &error_fatal);
2810 visit_free(v);
2811 loc_save(&bdo->loc);
2812 QSIMPLEQ_INSERT_TAIL(&bdo_queue, bdo, entry);
2813 break;
2815 case QEMU_OPTION_drive:
2816 opts = qemu_opts_parse_noisily(qemu_find_opts("drive"),
2817 optarg, false);
2818 if (opts == NULL) {
2819 exit(1);
2821 break;
2822 case QEMU_OPTION_set:
2823 qemu_set_option(optarg, &error_fatal);
2824 break;
2825 case QEMU_OPTION_global:
2826 if (qemu_global_option(optarg) != 0)
2827 exit(1);
2828 break;
2829 case QEMU_OPTION_mtdblock:
2830 drive_add(IF_MTD, -1, optarg, MTD_OPTS);
2831 break;
2832 case QEMU_OPTION_sd:
2833 drive_add(IF_SD, -1, optarg, SD_OPTS);
2834 break;
2835 case QEMU_OPTION_pflash:
2836 drive_add(IF_PFLASH, -1, optarg, PFLASH_OPTS);
2837 break;
2838 case QEMU_OPTION_snapshot:
2839 snapshot = 1;
2840 replay_add_blocker("-snapshot");
2841 break;
2842 case QEMU_OPTION_numa:
2843 opts = qemu_opts_parse_noisily(qemu_find_opts("numa"),
2844 optarg, true);
2845 if (!opts) {
2846 exit(1);
2848 break;
2849 case QEMU_OPTION_display:
2850 parse_display(optarg);
2851 break;
2852 case QEMU_OPTION_nographic:
2853 qdict_put_str(machine_opts_dict, "graphics", "off");
2854 nographic = true;
2855 dpy.type = DISPLAY_TYPE_NONE;
2856 break;
2857 case QEMU_OPTION_portrait:
2858 graphic_rotate = 90;
2859 break;
2860 case QEMU_OPTION_rotate:
2861 graphic_rotate = strtol(optarg, (char **) &optarg, 10);
2862 if (graphic_rotate != 0 && graphic_rotate != 90 &&
2863 graphic_rotate != 180 && graphic_rotate != 270) {
2864 error_report("only 90, 180, 270 deg rotation is available");
2865 exit(1);
2867 break;
2868 case QEMU_OPTION_kernel:
2869 qdict_put_str(machine_opts_dict, "kernel", optarg);
2870 break;
2871 case QEMU_OPTION_initrd:
2872 qdict_put_str(machine_opts_dict, "initrd", optarg);
2873 break;
2874 case QEMU_OPTION_append:
2875 qdict_put_str(machine_opts_dict, "append", optarg);
2876 break;
2877 case QEMU_OPTION_dtb:
2878 qdict_put_str(machine_opts_dict, "dtb", optarg);
2879 break;
2880 case QEMU_OPTION_cdrom:
2881 drive_add(IF_DEFAULT, 2, optarg, CDROM_OPTS);
2882 break;
2883 case QEMU_OPTION_boot:
2884 machine_parse_property_opt(qemu_find_opts("boot-opts"), "boot", optarg);
2885 break;
2886 case QEMU_OPTION_fda:
2887 case QEMU_OPTION_fdb:
2888 drive_add(IF_FLOPPY, popt->index - QEMU_OPTION_fda,
2889 optarg, FD_OPTS);
2890 break;
2891 case QEMU_OPTION_no_fd_bootchk:
2892 fd_bootchk = 0;
2893 break;
2894 case QEMU_OPTION_netdev:
2895 default_net = 0;
2896 if (netdev_is_modern(optarg)) {
2897 netdev_parse_modern(optarg);
2898 } else {
2899 net_client_parse(qemu_find_opts("netdev"), optarg);
2901 break;
2902 case QEMU_OPTION_nic:
2903 default_net = 0;
2904 net_client_parse(qemu_find_opts("nic"), optarg);
2905 break;
2906 case QEMU_OPTION_net:
2907 default_net = 0;
2908 net_client_parse(qemu_find_opts("net"), optarg);
2909 break;
2910 #ifdef CONFIG_LIBISCSI
2911 case QEMU_OPTION_iscsi:
2912 opts = qemu_opts_parse_noisily(qemu_find_opts("iscsi"),
2913 optarg, false);
2914 if (!opts) {
2915 exit(1);
2917 break;
2918 #endif
2919 case QEMU_OPTION_audio_help:
2920 audio_legacy_help();
2921 exit (0);
2922 break;
2923 case QEMU_OPTION_audiodev:
2924 audio_parse_option(optarg);
2925 break;
2926 case QEMU_OPTION_audio: {
2927 bool help;
2928 char *model;
2929 Audiodev *dev = NULL;
2930 Visitor *v;
2931 QDict *dict = keyval_parse(optarg, "driver", &help, &error_fatal);
2932 if (help || (qdict_haskey(dict, "driver") &&
2933 is_help_option(qdict_get_str(dict, "driver")))) {
2934 audio_help();
2935 exit(EXIT_SUCCESS);
2937 if (!qdict_haskey(dict, "id")) {
2938 qdict_put_str(dict, "id", "audiodev0");
2940 if (!qdict_haskey(dict, "model")) {
2941 error_setg(&error_fatal, "Parameter 'model' is missing");
2943 model = g_strdup(qdict_get_str(dict, "model"));
2944 qdict_del(dict, "model");
2945 if (is_help_option(model)) {
2946 show_valid_soundhw();
2947 exit(0);
2949 v = qobject_input_visitor_new_keyval(QOBJECT(dict));
2950 qobject_unref(dict);
2951 visit_type_Audiodev(v, NULL, &dev, &error_fatal);
2952 visit_free(v);
2953 audio_define(dev);
2954 select_soundhw(model, dev->id);
2955 g_free(model);
2956 break;
2958 case QEMU_OPTION_h:
2959 help(0);
2960 break;
2961 case QEMU_OPTION_version:
2962 version();
2963 exit(0);
2964 break;
2965 case QEMU_OPTION_m:
2966 opts = qemu_opts_parse_noisily(qemu_find_opts("memory"), optarg, true);
2967 if (opts == NULL) {
2968 exit(1);
2970 break;
2971 #ifdef CONFIG_TPM
2972 case QEMU_OPTION_tpmdev:
2973 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg) < 0) {
2974 exit(1);
2976 break;
2977 #endif
2978 case QEMU_OPTION_mempath:
2979 mem_path = optarg;
2980 break;
2981 case QEMU_OPTION_mem_prealloc:
2982 mem_prealloc = 1;
2983 break;
2984 case QEMU_OPTION_d:
2985 log_mask = optarg;
2986 break;
2987 case QEMU_OPTION_D:
2988 log_file = optarg;
2989 break;
2990 case QEMU_OPTION_DFILTER:
2991 qemu_set_dfilter_ranges(optarg, &error_fatal);
2992 break;
2993 #if defined(CONFIG_TCG) && defined(CONFIG_LINUX)
2994 case QEMU_OPTION_perfmap:
2995 perf_enable_perfmap();
2996 break;
2997 case QEMU_OPTION_jitdump:
2998 perf_enable_jitdump();
2999 break;
3000 #endif
3001 case QEMU_OPTION_seed:
3002 qemu_guest_random_seed_main(optarg, &error_fatal);
3003 break;
3004 case QEMU_OPTION_s:
3005 add_device_config(DEV_GDB, "tcp::" DEFAULT_GDBSTUB_PORT);
3006 break;
3007 case QEMU_OPTION_gdb:
3008 add_device_config(DEV_GDB, optarg);
3009 break;
3010 case QEMU_OPTION_L:
3011 if (is_help_option(optarg)) {
3012 list_data_dirs = true;
3013 } else {
3014 qemu_add_data_dir(g_strdup(optarg));
3016 break;
3017 case QEMU_OPTION_bios:
3018 qdict_put_str(machine_opts_dict, "firmware", optarg);
3019 break;
3020 case QEMU_OPTION_singlestep:
3021 opt_one_insn_per_tb = true;
3022 break;
3023 case QEMU_OPTION_S:
3024 autostart = 0;
3025 break;
3026 case QEMU_OPTION_k:
3027 keyboard_layout = optarg;
3028 break;
3029 case QEMU_OPTION_vga:
3030 vga_model = optarg;
3031 default_vga = 0;
3032 break;
3033 case QEMU_OPTION_g:
3035 const char *p;
3036 int w, h, depth;
3037 p = optarg;
3038 w = strtol(p, (char **)&p, 10);
3039 if (w <= 0) {
3040 graphic_error:
3041 error_report("invalid resolution or depth");
3042 exit(1);
3044 if (*p != 'x')
3045 goto graphic_error;
3046 p++;
3047 h = strtol(p, (char **)&p, 10);
3048 if (h <= 0)
3049 goto graphic_error;
3050 if (*p == 'x') {
3051 p++;
3052 depth = strtol(p, (char **)&p, 10);
3053 if (depth != 1 && depth != 2 && depth != 4 &&
3054 depth != 8 && depth != 15 && depth != 16 &&
3055 depth != 24 && depth != 32)
3056 goto graphic_error;
3057 } else if (*p == '\0') {
3058 depth = graphic_depth;
3059 } else {
3060 goto graphic_error;
3063 graphic_width = w;
3064 graphic_height = h;
3065 graphic_depth = depth;
3067 break;
3068 case QEMU_OPTION_echr:
3070 char *r;
3071 term_escape_char = strtol(optarg, &r, 0);
3072 if (r == optarg)
3073 printf("Bad argument to echr\n");
3074 break;
3076 case QEMU_OPTION_monitor:
3077 default_monitor = 0;
3078 if (strncmp(optarg, "none", 4)) {
3079 monitor_parse(optarg, "readline", false);
3081 break;
3082 case QEMU_OPTION_qmp:
3083 monitor_parse(optarg, "control", false);
3084 default_monitor = 0;
3085 break;
3086 case QEMU_OPTION_qmp_pretty:
3087 monitor_parse(optarg, "control", true);
3088 default_monitor = 0;
3089 break;
3090 case QEMU_OPTION_mon:
3091 opts = qemu_opts_parse_noisily(qemu_find_opts("mon"), optarg,
3092 true);
3093 if (!opts) {
3094 exit(1);
3096 default_monitor = 0;
3097 break;
3098 case QEMU_OPTION_chardev:
3099 opts = qemu_opts_parse_noisily(qemu_find_opts("chardev"),
3100 optarg, true);
3101 if (!opts) {
3102 exit(1);
3104 break;
3105 case QEMU_OPTION_fsdev:
3106 olist = qemu_find_opts("fsdev");
3107 if (!olist) {
3108 error_report("fsdev support is disabled");
3109 exit(1);
3111 opts = qemu_opts_parse_noisily(olist, optarg, true);
3112 if (!opts) {
3113 exit(1);
3115 break;
3116 case QEMU_OPTION_virtfs: {
3117 QemuOpts *fsdev;
3118 QemuOpts *device;
3119 const char *writeout, *sock_fd, *socket, *path, *security_model,
3120 *multidevs;
3122 olist = qemu_find_opts("virtfs");
3123 if (!olist) {
3124 error_report("virtfs support is disabled");
3125 exit(1);
3127 opts = qemu_opts_parse_noisily(olist, optarg, true);
3128 if (!opts) {
3129 exit(1);
3132 if (qemu_opt_get(opts, "fsdriver") == NULL ||
3133 qemu_opt_get(opts, "mount_tag") == NULL) {
3134 error_report("Usage: -virtfs fsdriver,mount_tag=tag");
3135 exit(1);
3137 fsdev = qemu_opts_create(qemu_find_opts("fsdev"),
3138 qemu_opts_id(opts) ?:
3139 qemu_opt_get(opts, "mount_tag"),
3140 1, NULL);
3141 if (!fsdev) {
3142 error_report("duplicate or invalid fsdev id: %s",
3143 qemu_opt_get(opts, "mount_tag"));
3144 exit(1);
3147 writeout = qemu_opt_get(opts, "writeout");
3148 if (writeout) {
3149 #ifdef CONFIG_SYNC_FILE_RANGE
3150 qemu_opt_set(fsdev, "writeout", writeout, &error_abort);
3151 #else
3152 error_report("writeout=immediate not supported "
3153 "on this platform");
3154 exit(1);
3155 #endif
3157 qemu_opt_set(fsdev, "fsdriver",
3158 qemu_opt_get(opts, "fsdriver"), &error_abort);
3159 path = qemu_opt_get(opts, "path");
3160 if (path) {
3161 qemu_opt_set(fsdev, "path", path, &error_abort);
3163 security_model = qemu_opt_get(opts, "security_model");
3164 if (security_model) {
3165 qemu_opt_set(fsdev, "security_model", security_model,
3166 &error_abort);
3168 socket = qemu_opt_get(opts, "socket");
3169 if (socket) {
3170 qemu_opt_set(fsdev, "socket", socket, &error_abort);
3172 sock_fd = qemu_opt_get(opts, "sock_fd");
3173 if (sock_fd) {
3174 qemu_opt_set(fsdev, "sock_fd", sock_fd, &error_abort);
3177 qemu_opt_set_bool(fsdev, "readonly",
3178 qemu_opt_get_bool(opts, "readonly", 0),
3179 &error_abort);
3180 multidevs = qemu_opt_get(opts, "multidevs");
3181 if (multidevs) {
3182 qemu_opt_set(fsdev, "multidevs", multidevs, &error_abort);
3184 device = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
3185 &error_abort);
3186 qemu_opt_set(device, "driver", "virtio-9p-pci", &error_abort);
3187 qemu_opt_set(device, "fsdev",
3188 qemu_opts_id(fsdev), &error_abort);
3189 qemu_opt_set(device, "mount_tag",
3190 qemu_opt_get(opts, "mount_tag"), &error_abort);
3191 break;
3193 case QEMU_OPTION_serial:
3194 add_device_config(DEV_SERIAL, optarg);
3195 default_serial = 0;
3196 if (strncmp(optarg, "mon:", 4) == 0) {
3197 default_monitor = 0;
3199 break;
3200 case QEMU_OPTION_action:
3201 olist = qemu_find_opts("action");
3202 if (!qemu_opts_parse_noisily(olist, optarg, false)) {
3203 exit(1);
3205 break;
3206 case QEMU_OPTION_watchdog_action: {
3207 QemuOpts *opts;
3208 opts = qemu_opts_create(qemu_find_opts("action"), NULL, 0, &error_abort);
3209 qemu_opt_set(opts, "watchdog", optarg, &error_abort);
3210 break;
3212 case QEMU_OPTION_parallel:
3213 add_device_config(DEV_PARALLEL, optarg);
3214 default_parallel = 0;
3215 if (strncmp(optarg, "mon:", 4) == 0) {
3216 default_monitor = 0;
3218 break;
3219 case QEMU_OPTION_debugcon:
3220 add_device_config(DEV_DEBUGCON, optarg);
3221 break;
3222 case QEMU_OPTION_loadvm:
3223 loadvm = optarg;
3224 break;
3225 case QEMU_OPTION_full_screen:
3226 dpy.has_full_screen = true;
3227 dpy.full_screen = true;
3228 break;
3229 case QEMU_OPTION_pidfile:
3230 pid_file = optarg;
3231 break;
3232 case QEMU_OPTION_win2k_hack:
3233 win2k_install_hack = 1;
3234 break;
3235 case QEMU_OPTION_acpitable:
3236 opts = qemu_opts_parse_noisily(qemu_find_opts("acpi"),
3237 optarg, true);
3238 if (!opts) {
3239 exit(1);
3241 acpi_table_add(opts, &error_fatal);
3242 break;
3243 case QEMU_OPTION_smbios:
3244 opts = qemu_opts_parse_noisily(qemu_find_opts("smbios"),
3245 optarg, false);
3246 if (!opts) {
3247 exit(1);
3249 smbios_entry_add(opts, &error_fatal);
3250 break;
3251 case QEMU_OPTION_fwcfg:
3252 opts = qemu_opts_parse_noisily(qemu_find_opts("fw_cfg"),
3253 optarg, true);
3254 if (opts == NULL) {
3255 exit(1);
3257 break;
3258 case QEMU_OPTION_preconfig:
3259 preconfig_requested = true;
3260 break;
3261 case QEMU_OPTION_enable_kvm:
3262 qdict_put_str(machine_opts_dict, "accel", "kvm");
3263 break;
3264 case QEMU_OPTION_M:
3265 case QEMU_OPTION_machine:
3267 bool help;
3269 keyval_parse_into(machine_opts_dict, optarg, "type", &help, &error_fatal);
3270 if (help) {
3271 machine_help_func(machine_opts_dict);
3272 exit(EXIT_SUCCESS);
3274 break;
3276 case QEMU_OPTION_accel:
3277 accel_opts = qemu_opts_parse_noisily(qemu_find_opts("accel"),
3278 optarg, true);
3279 optarg = qemu_opt_get(accel_opts, "accel");
3280 if (!optarg || is_help_option(optarg)) {
3281 printf("Accelerators supported in QEMU binary:\n");
3282 GSList *el, *accel_list = object_class_get_list(TYPE_ACCEL,
3283 false);
3284 for (el = accel_list; el; el = el->next) {
3285 gchar *typename = g_strdup(object_class_get_name(
3286 OBJECT_CLASS(el->data)));
3287 /* omit qtest which is used for tests only */
3288 if (g_strcmp0(typename, ACCEL_CLASS_NAME("qtest")) &&
3289 g_str_has_suffix(typename, ACCEL_CLASS_SUFFIX)) {
3290 gchar **optname = g_strsplit(typename,
3291 ACCEL_CLASS_SUFFIX, 0);
3292 printf("%s\n", optname[0]);
3293 g_strfreev(optname);
3295 g_free(typename);
3297 g_slist_free(accel_list);
3298 exit(0);
3300 break;
3301 case QEMU_OPTION_usb:
3302 qdict_put_str(machine_opts_dict, "usb", "on");
3303 break;
3304 case QEMU_OPTION_usbdevice:
3305 qdict_put_str(machine_opts_dict, "usb", "on");
3306 add_device_config(DEV_USB, optarg);
3307 break;
3308 case QEMU_OPTION_device:
3309 if (optarg[0] == '{') {
3310 QObject *obj = qobject_from_json(optarg, &error_fatal);
3311 DeviceOption *opt = g_new0(DeviceOption, 1);
3312 opt->opts = qobject_to(QDict, obj);
3313 loc_save(&opt->loc);
3314 assert(opt->opts != NULL);
3315 QTAILQ_INSERT_TAIL(&device_opts, opt, next);
3316 } else {
3317 if (!qemu_opts_parse_noisily(qemu_find_opts("device"),
3318 optarg, true)) {
3319 exit(1);
3322 break;
3323 case QEMU_OPTION_smp:
3324 machine_parse_property_opt(qemu_find_opts("smp-opts"),
3325 "smp", optarg);
3326 break;
3327 case QEMU_OPTION_vnc:
3328 vnc_parse(optarg);
3329 break;
3330 case QEMU_OPTION_no_acpi:
3331 warn_report("-no-acpi is deprecated, use '-machine acpi=off' instead");
3332 qdict_put_str(machine_opts_dict, "acpi", "off");
3333 break;
3334 case QEMU_OPTION_no_hpet:
3335 warn_report("-no-hpet is deprecated, use '-machine hpet=off' instead");
3336 qdict_put_str(machine_opts_dict, "hpet", "off");
3337 break;
3338 case QEMU_OPTION_no_reboot:
3339 olist = qemu_find_opts("action");
3340 qemu_opts_parse_noisily(olist, "reboot=shutdown", false);
3341 break;
3342 case QEMU_OPTION_no_shutdown:
3343 olist = qemu_find_opts("action");
3344 qemu_opts_parse_noisily(olist, "shutdown=pause", false);
3345 break;
3346 case QEMU_OPTION_uuid:
3347 if (qemu_uuid_parse(optarg, &qemu_uuid) < 0) {
3348 error_report("failed to parse UUID string: wrong format");
3349 exit(1);
3351 qemu_uuid_set = true;
3352 break;
3353 case QEMU_OPTION_option_rom:
3354 if (nb_option_roms >= MAX_OPTION_ROMS) {
3355 error_report("too many option ROMs");
3356 exit(1);
3358 opts = qemu_opts_parse_noisily(qemu_find_opts("option-rom"),
3359 optarg, true);
3360 if (!opts) {
3361 exit(1);
3363 option_rom[nb_option_roms].name = qemu_opt_get(opts, "romfile");
3364 option_rom[nb_option_roms].bootindex =
3365 qemu_opt_get_number(opts, "bootindex", -1);
3366 if (!option_rom[nb_option_roms].name) {
3367 error_report("Option ROM file is not specified");
3368 exit(1);
3370 nb_option_roms++;
3371 break;
3372 case QEMU_OPTION_semihosting:
3373 qemu_semihosting_enable();
3374 break;
3375 case QEMU_OPTION_semihosting_config:
3376 if (qemu_semihosting_config_options(optarg) != 0) {
3377 exit(1);
3379 break;
3380 case QEMU_OPTION_name:
3381 opts = qemu_opts_parse_noisily(qemu_find_opts("name"),
3382 optarg, true);
3383 if (!opts) {
3384 exit(1);
3386 /* Capture guest name if -msg guest-name is used later */
3387 error_guest_name = qemu_opt_get(opts, "guest");
3388 break;
3389 case QEMU_OPTION_prom_env:
3390 if (nb_prom_envs >= MAX_PROM_ENVS) {
3391 error_report("too many prom variables");
3392 exit(1);
3394 prom_envs[nb_prom_envs] = optarg;
3395 nb_prom_envs++;
3396 break;
3397 case QEMU_OPTION_old_param:
3398 old_param = 1;
3399 break;
3400 case QEMU_OPTION_rtc:
3401 opts = qemu_opts_parse_noisily(qemu_find_opts("rtc"), optarg,
3402 false);
3403 if (!opts) {
3404 exit(1);
3406 break;
3407 case QEMU_OPTION_icount:
3408 icount_opts = qemu_opts_parse_noisily(qemu_find_opts("icount"),
3409 optarg, true);
3410 if (!icount_opts) {
3411 exit(1);
3413 break;
3414 case QEMU_OPTION_incoming:
3415 if (!incoming) {
3416 runstate_set(RUN_STATE_INMIGRATE);
3418 incoming = optarg;
3419 break;
3420 case QEMU_OPTION_only_migratable:
3421 only_migratable = 1;
3422 break;
3423 case QEMU_OPTION_nodefaults:
3424 has_defaults = 0;
3425 break;
3426 case QEMU_OPTION_xen_domid:
3427 if (!(accel_find("xen")) && !(accel_find("kvm"))) {
3428 error_report("Option not supported for this target");
3429 exit(1);
3431 xen_domid = atoi(optarg);
3432 break;
3433 case QEMU_OPTION_xen_attach:
3434 if (!(accel_find("xen"))) {
3435 error_report("Option not supported for this target");
3436 exit(1);
3438 xen_mode = XEN_ATTACH;
3439 break;
3440 case QEMU_OPTION_xen_domid_restrict:
3441 if (!(accel_find("xen"))) {
3442 error_report("Option not supported for this target");
3443 exit(1);
3445 xen_domid_restrict = true;
3446 break;
3447 case QEMU_OPTION_trace:
3448 trace_opt_parse(optarg);
3449 break;
3450 case QEMU_OPTION_plugin:
3451 qemu_plugin_opt_parse(optarg, &plugin_list);
3452 break;
3453 case QEMU_OPTION_readconfig:
3454 qemu_read_config_file(optarg, qemu_parse_config_group, &error_fatal);
3455 break;
3456 #ifdef CONFIG_SPICE
3457 case QEMU_OPTION_spice:
3458 olist = qemu_find_opts_err("spice", NULL);
3459 if (!olist) {
3460 error_report("spice support is disabled");
3461 exit(1);
3463 opts = qemu_opts_parse_noisily(olist, optarg, false);
3464 if (!opts) {
3465 exit(1);
3467 display_remote++;
3468 break;
3469 #endif
3470 case QEMU_OPTION_qtest:
3471 qtest_chrdev = optarg;
3472 break;
3473 case QEMU_OPTION_qtest_log:
3474 qtest_log = optarg;
3475 break;
3476 case QEMU_OPTION_sandbox:
3477 olist = qemu_find_opts("sandbox");
3478 if (!olist) {
3479 #ifndef CONFIG_SECCOMP
3480 error_report("-sandbox support is not enabled "
3481 "in this QEMU binary");
3482 #endif
3483 exit(1);
3486 opts = qemu_opts_parse_noisily(olist, optarg, true);
3487 if (!opts) {
3488 exit(1);
3490 break;
3491 case QEMU_OPTION_add_fd:
3492 #ifndef _WIN32
3493 opts = qemu_opts_parse_noisily(qemu_find_opts("add-fd"),
3494 optarg, false);
3495 if (!opts) {
3496 exit(1);
3498 #else
3499 error_report("File descriptor passing is disabled on this "
3500 "platform");
3501 exit(1);
3502 #endif
3503 break;
3504 case QEMU_OPTION_object:
3505 object_option_parse(optarg);
3506 break;
3507 case QEMU_OPTION_overcommit:
3508 opts = qemu_opts_parse_noisily(qemu_find_opts("overcommit"),
3509 optarg, false);
3510 if (!opts) {
3511 exit(1);
3513 enable_mlock = qemu_opt_get_bool(opts, "mem-lock", false);
3514 enable_cpu_pm = qemu_opt_get_bool(opts, "cpu-pm", false);
3515 break;
3516 case QEMU_OPTION_compat:
3518 CompatPolicy *opts;
3519 Visitor *v;
3521 v = qobject_input_visitor_new_str(optarg, NULL,
3522 &error_fatal);
3524 visit_type_CompatPolicy(v, NULL, &opts, &error_fatal);
3525 QAPI_CLONE_MEMBERS(CompatPolicy, &compat_policy, opts);
3527 qapi_free_CompatPolicy(opts);
3528 visit_free(v);
3529 break;
3531 case QEMU_OPTION_msg:
3532 opts = qemu_opts_parse_noisily(qemu_find_opts("msg"), optarg,
3533 false);
3534 if (!opts) {
3535 exit(1);
3537 configure_msg(opts);
3538 break;
3539 case QEMU_OPTION_dump_vmstate:
3540 if (vmstate_dump_file) {
3541 error_report("only one '-dump-vmstate' "
3542 "option may be given");
3543 exit(1);
3545 vmstate_dump_file = fopen(optarg, "w");
3546 if (vmstate_dump_file == NULL) {
3547 error_report("open %s: %s", optarg, strerror(errno));
3548 exit(1);
3550 break;
3551 case QEMU_OPTION_enable_sync_profile:
3552 qsp_enable();
3553 break;
3554 case QEMU_OPTION_nouserconfig:
3555 /* Nothing to be parsed here. Especially, do not error out below. */
3556 break;
3557 #if defined(CONFIG_POSIX)
3558 case QEMU_OPTION_runas:
3559 if (!os_set_runas(optarg)) {
3560 error_report("User \"%s\" doesn't exist"
3561 " (and is not <uid>:<gid>)",
3562 optarg);
3563 exit(1);
3565 break;
3566 case QEMU_OPTION_chroot:
3567 warn_report("option is deprecated,"
3568 " use '-run-with chroot=...' instead");
3569 os_set_chroot(optarg);
3570 break;
3571 case QEMU_OPTION_daemonize:
3572 os_set_daemonize(true);
3573 break;
3574 #if defined(CONFIG_LINUX)
3575 /* deprecated */
3576 case QEMU_OPTION_asyncteardown:
3577 init_async_teardown();
3578 break;
3579 #endif
3580 case QEMU_OPTION_run_with: {
3581 const char *str;
3582 opts = qemu_opts_parse_noisily(qemu_find_opts("run-with"),
3583 optarg, false);
3584 if (!opts) {
3585 exit(1);
3587 #if defined(CONFIG_LINUX)
3588 if (qemu_opt_get_bool(opts, "async-teardown", false)) {
3589 init_async_teardown();
3591 #endif
3592 str = qemu_opt_get(opts, "chroot");
3593 if (str) {
3594 os_set_chroot(str);
3596 break;
3598 #endif /* CONFIG_POSIX */
3600 default:
3601 error_report("Option not supported in this build");
3602 exit(1);
3607 * Clear error location left behind by the loop.
3608 * Best done right after the loop. Do not insert code here!
3610 loc_set_none();
3612 qemu_validate_options(machine_opts_dict);
3613 qemu_process_sugar_options();
3616 * These options affect everything else and should be processed
3617 * before daemonizing.
3619 qemu_process_early_options();
3621 qemu_process_help_options();
3622 qemu_maybe_daemonize(pid_file);
3625 * The trace backend must be initialized after daemonizing.
3626 * trace_init_backends() will call st_init(), which will create the
3627 * trace thread in the parent, and also register st_flush_trace_buffer()
3628 * in atexit(). This function will force the parent to wait for the
3629 * writeout thread to finish, which will not occur, and the parent
3630 * process will be left in the host.
3632 if (!trace_init_backends()) {
3633 exit(1);
3635 trace_init_file();
3637 qemu_init_main_loop(&error_fatal);
3638 cpu_timers_init();
3640 user_register_global_props();
3641 replay_configure(icount_opts);
3643 configure_rtc(qemu_find_opts_singleton("rtc"));
3645 /* Transfer QemuOpts options into machine options */
3646 parse_memory_options();
3648 qemu_create_machine(machine_opts_dict);
3650 suspend_mux_open();
3652 qemu_disable_default_devices();
3653 qemu_create_default_devices();
3654 qemu_create_early_backends();
3656 qemu_apply_legacy_machine_options(machine_opts_dict);
3657 qemu_apply_machine_options(machine_opts_dict);
3658 qobject_unref(machine_opts_dict);
3659 phase_advance(PHASE_MACHINE_CREATED);
3662 * Note: uses machine properties such as kernel-irqchip, must run
3663 * after qemu_apply_machine_options.
3665 configure_accelerators(argv[0]);
3666 phase_advance(PHASE_ACCEL_CREATED);
3669 * Beware, QOM objects created before this point miss global and
3670 * compat properties.
3672 * Global properties get set up by qdev_prop_register_global(),
3673 * called from user_register_global_props(), and certain option
3674 * desugaring. Also in CPU feature desugaring (buried in
3675 * parse_cpu_option()), which happens below this point, but may
3676 * only target the CPU type, which can only be created after
3677 * parse_cpu_option() returned the type.
3679 * Machine compat properties: object_set_machine_compat_props().
3680 * Accelerator compat props: object_set_accelerator_compat_props(),
3681 * called from do_configure_accelerator().
3684 machine_class = MACHINE_GET_CLASS(current_machine);
3685 if (!qtest_enabled() && machine_class->deprecation_reason) {
3686 warn_report("Machine type '%s' is deprecated: %s",
3687 machine_class->name, machine_class->deprecation_reason);
3691 * Create backends before creating migration objects, so that it can
3692 * check against compatibilities on the backend memories (e.g. postcopy
3693 * over memory-backend-file objects).
3695 qemu_create_late_backends();
3698 * Note: creates a QOM object, must run only after global and
3699 * compat properties have been set up.
3701 migration_object_init();
3703 /* parse features once if machine provides default cpu_type */
3704 current_machine->cpu_type = machine_class->default_cpu_type;
3705 if (cpu_option) {
3706 current_machine->cpu_type = parse_cpu_option(cpu_option);
3708 /* NB: for machine none cpu_type could STILL be NULL here! */
3710 qemu_resolve_machine_memdev();
3711 parse_numa_opts(current_machine);
3713 if (vmstate_dump_file) {
3714 /* dump and exit */
3715 module_load_qom_all();
3716 dump_vmstate_json_to_file(vmstate_dump_file);
3717 exit(0);
3720 if (!preconfig_requested) {
3721 qmp_x_exit_preconfig(&error_fatal);
3723 qemu_init_displays();
3724 accel_setup_post(current_machine);
3725 os_setup_post();
3726 resume_mux_open();