target/arm: Implement SVE Bitwise Shift - Unpredicated Group
[qemu/ar7.git] / vl.c
blob3b39bbd7a8514eecac83f9b89498c3f149e93453
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 "qapi/error.h"
27 #include "qemu-version.h"
28 #include "qemu/cutils.h"
29 #include "qemu/help_option.h"
30 #include "qemu/uuid.h"
32 #ifdef CONFIG_SECCOMP
33 #include <sys/prctl.h>
34 #include "sysemu/seccomp.h"
35 #endif
37 #ifdef CONFIG_SDL
38 #if defined(__APPLE__) || defined(main)
39 #include <SDL.h>
40 int qemu_main(int argc, char **argv, char **envp);
41 int main(int argc, char **argv)
43 return qemu_main(argc, argv, NULL);
45 #undef main
46 #define main qemu_main
47 #endif
48 #endif /* CONFIG_SDL */
50 #ifdef CONFIG_COCOA
51 #undef main
52 #define main qemu_main
53 #endif /* CONFIG_COCOA */
56 #include "qemu/error-report.h"
57 #include "qemu/sockets.h"
58 #include "hw/hw.h"
59 #include "hw/boards.h"
60 #include "sysemu/accel.h"
61 #include "hw/usb.h"
62 #include "hw/isa/isa.h"
63 #include "hw/scsi/scsi.h"
64 #include "hw/display/vga.h"
65 #include "hw/bt.h"
66 #include "sysemu/watchdog.h"
67 #include "hw/smbios/smbios.h"
68 #include "hw/acpi/acpi.h"
69 #include "hw/xen/xen.h"
70 #include "hw/qdev.h"
71 #include "hw/loader.h"
72 #include "monitor/qdev.h"
73 #include "sysemu/bt.h"
74 #include "net/net.h"
75 #include "net/slirp.h"
76 #include "monitor/monitor.h"
77 #include "ui/console.h"
78 #include "ui/input.h"
79 #include "sysemu/sysemu.h"
80 #include "sysemu/numa.h"
81 #include "exec/gdbstub.h"
82 #include "qemu/timer.h"
83 #include "chardev/char.h"
84 #include "qemu/bitmap.h"
85 #include "qemu/log.h"
86 #include "sysemu/blockdev.h"
87 #include "hw/block/block.h"
88 #include "migration/misc.h"
89 #include "migration/snapshot.h"
90 #include "migration/global_state.h"
91 #include "sysemu/tpm.h"
92 #include "sysemu/dma.h"
93 #include "hw/audio/soundhw.h"
94 #include "audio/audio.h"
95 #include "sysemu/cpus.h"
96 #include "migration/colo.h"
97 #include "migration/postcopy-ram.h"
98 #include "sysemu/kvm.h"
99 #include "sysemu/hax.h"
100 #include "qapi/qobject-input-visitor.h"
101 #include "qemu/option.h"
102 #include "qemu/config-file.h"
103 #include "qemu-options.h"
104 #include "qemu/main-loop.h"
105 #ifdef CONFIG_VIRTFS
106 #include "fsdev/qemu-fsdev.h"
107 #endif
108 #include "sysemu/qtest.h"
110 #include "disas/disas.h"
113 #include "slirp/libslirp.h"
115 #include "trace-root.h"
116 #include "trace/control.h"
117 #include "qemu/queue.h"
118 #include "sysemu/arch_init.h"
120 #include "ui/qemu-spice.h"
121 #include "qapi/string-input-visitor.h"
122 #include "qapi/opts-visitor.h"
123 #include "qapi/clone-visitor.h"
124 #include "qom/object_interfaces.h"
125 #include "exec/semihost.h"
126 #include "crypto/init.h"
127 #include "sysemu/replay.h"
128 #include "qapi/qapi-events-run-state.h"
129 #include "qapi/qapi-visit-block-core.h"
130 #include "qapi/qapi-visit-ui.h"
131 #include "qapi/qapi-commands-block-core.h"
132 #include "qapi/qapi-commands-misc.h"
133 #include "qapi/qapi-commands-run-state.h"
134 #include "qapi/qmp/qerror.h"
135 #include "sysemu/iothread.h"
137 #define MAX_VIRTIO_CONSOLES 1
139 static const char *data_dir[16];
140 static int data_dir_idx;
141 const char *bios_name = NULL;
142 enum vga_retrace_method vga_retrace_method = VGA_RETRACE_DUMB;
143 int display_opengl;
144 const char* keyboard_layout = NULL;
145 ram_addr_t ram_size;
146 const char *mem_path = NULL;
147 int mem_prealloc = 0; /* force preallocation of physical target memory */
148 bool enable_mlock = false;
149 int nb_nics;
150 NICInfo nd_table[MAX_NICS];
151 int autostart;
152 static int rtc_utc = 1;
153 static int rtc_date_offset = -1; /* -1 means no change */
154 QEMUClockType rtc_clock;
155 int vga_interface_type = VGA_NONE;
156 static DisplayOptions dpy;
157 int no_frame;
158 static int num_serial_hds = 0;
159 static Chardev **serial_hds = NULL;
160 Chardev *parallel_hds[MAX_PARALLEL_PORTS];
161 Chardev *virtcon_hds[MAX_VIRTIO_CONSOLES];
162 int win2k_install_hack = 0;
163 int singlestep = 0;
164 int smp_cpus;
165 unsigned int max_cpus;
166 int smp_cores = 1;
167 int smp_threads = 1;
168 int acpi_enabled = 1;
169 int no_hpet = 0;
170 int fd_bootchk = 1;
171 static int no_reboot;
172 int no_shutdown = 0;
173 int cursor_hide = 1;
174 int graphic_rotate = 0;
175 const char *watchdog;
176 QEMUOptionRom option_rom[MAX_OPTION_ROMS];
177 int nb_option_roms;
178 int old_param = 0;
179 const char *qemu_name;
180 int alt_grab = 0;
181 int ctrl_grab = 0;
182 unsigned int nb_prom_envs = 0;
183 const char *prom_envs[MAX_PROM_ENVS];
184 int boot_menu;
185 bool boot_strict;
186 uint8_t *boot_splash_filedata;
187 size_t boot_splash_filedata_size;
188 uint8_t qemu_extra_params_fw[2];
190 int icount_align_option;
192 /* The bytes in qemu_uuid are in the order specified by RFC4122, _not_ in the
193 * little-endian "wire format" described in the SMBIOS 2.6 specification.
195 QemuUUID qemu_uuid;
196 bool qemu_uuid_set;
198 static NotifierList exit_notifiers =
199 NOTIFIER_LIST_INITIALIZER(exit_notifiers);
201 static NotifierList machine_init_done_notifiers =
202 NOTIFIER_LIST_INITIALIZER(machine_init_done_notifiers);
204 bool xen_allowed;
205 uint32_t xen_domid;
206 enum xen_mode xen_mode = XEN_EMULATE;
207 bool xen_domid_restrict;
209 static int has_defaults = 1;
210 static int default_serial = 1;
211 static int default_parallel = 1;
212 static int default_virtcon = 1;
213 static int default_monitor = 1;
214 static int default_floppy = 1;
215 static int default_cdrom = 1;
216 static int default_sdcard = 1;
217 static int default_vga = 1;
218 static int default_net = 1;
220 static struct {
221 const char *driver;
222 int *flag;
223 } default_list[] = {
224 { .driver = "isa-serial", .flag = &default_serial },
225 { .driver = "isa-parallel", .flag = &default_parallel },
226 { .driver = "isa-fdc", .flag = &default_floppy },
227 { .driver = "floppy", .flag = &default_floppy },
228 { .driver = "ide-cd", .flag = &default_cdrom },
229 { .driver = "ide-hd", .flag = &default_cdrom },
230 { .driver = "ide-drive", .flag = &default_cdrom },
231 { .driver = "scsi-cd", .flag = &default_cdrom },
232 { .driver = "scsi-hd", .flag = &default_cdrom },
233 { .driver = "virtio-serial-pci", .flag = &default_virtcon },
234 { .driver = "virtio-serial", .flag = &default_virtcon },
235 { .driver = "VGA", .flag = &default_vga },
236 { .driver = "isa-vga", .flag = &default_vga },
237 { .driver = "cirrus-vga", .flag = &default_vga },
238 { .driver = "isa-cirrus-vga", .flag = &default_vga },
239 { .driver = "vmware-svga", .flag = &default_vga },
240 { .driver = "qxl-vga", .flag = &default_vga },
241 { .driver = "virtio-vga", .flag = &default_vga },
244 static QemuOptsList qemu_rtc_opts = {
245 .name = "rtc",
246 .head = QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts.head),
247 .desc = {
249 .name = "base",
250 .type = QEMU_OPT_STRING,
252 .name = "clock",
253 .type = QEMU_OPT_STRING,
255 .name = "driftfix",
256 .type = QEMU_OPT_STRING,
258 { /* end of list */ }
262 static QemuOptsList qemu_sandbox_opts = {
263 .name = "sandbox",
264 .implied_opt_name = "enable",
265 .head = QTAILQ_HEAD_INITIALIZER(qemu_sandbox_opts.head),
266 .desc = {
268 .name = "enable",
269 .type = QEMU_OPT_BOOL,
272 .name = "obsolete",
273 .type = QEMU_OPT_STRING,
276 .name = "elevateprivileges",
277 .type = QEMU_OPT_STRING,
280 .name = "spawn",
281 .type = QEMU_OPT_STRING,
284 .name = "resourcecontrol",
285 .type = QEMU_OPT_STRING,
287 { /* end of list */ }
291 static QemuOptsList qemu_option_rom_opts = {
292 .name = "option-rom",
293 .implied_opt_name = "romfile",
294 .head = QTAILQ_HEAD_INITIALIZER(qemu_option_rom_opts.head),
295 .desc = {
297 .name = "bootindex",
298 .type = QEMU_OPT_NUMBER,
299 }, {
300 .name = "romfile",
301 .type = QEMU_OPT_STRING,
303 { /* end of list */ }
307 static QemuOptsList qemu_machine_opts = {
308 .name = "machine",
309 .implied_opt_name = "type",
310 .merge_lists = true,
311 .head = QTAILQ_HEAD_INITIALIZER(qemu_machine_opts.head),
312 .desc = {
314 * no elements => accept any
315 * sanity checking will happen later
316 * when setting machine properties
322 static QemuOptsList qemu_accel_opts = {
323 .name = "accel",
324 .implied_opt_name = "accel",
325 .head = QTAILQ_HEAD_INITIALIZER(qemu_accel_opts.head),
326 .merge_lists = true,
327 .desc = {
329 .name = "accel",
330 .type = QEMU_OPT_STRING,
331 .help = "Select the type of accelerator",
334 .name = "thread",
335 .type = QEMU_OPT_STRING,
336 .help = "Enable/disable multi-threaded TCG",
338 { /* end of list */ }
342 static QemuOptsList qemu_boot_opts = {
343 .name = "boot-opts",
344 .implied_opt_name = "order",
345 .merge_lists = true,
346 .head = QTAILQ_HEAD_INITIALIZER(qemu_boot_opts.head),
347 .desc = {
349 .name = "order",
350 .type = QEMU_OPT_STRING,
351 }, {
352 .name = "once",
353 .type = QEMU_OPT_STRING,
354 }, {
355 .name = "menu",
356 .type = QEMU_OPT_BOOL,
357 }, {
358 .name = "splash",
359 .type = QEMU_OPT_STRING,
360 }, {
361 .name = "splash-time",
362 .type = QEMU_OPT_STRING,
363 }, {
364 .name = "reboot-timeout",
365 .type = QEMU_OPT_STRING,
366 }, {
367 .name = "strict",
368 .type = QEMU_OPT_BOOL,
370 { /*End of list */ }
374 static QemuOptsList qemu_add_fd_opts = {
375 .name = "add-fd",
376 .head = QTAILQ_HEAD_INITIALIZER(qemu_add_fd_opts.head),
377 .desc = {
379 .name = "fd",
380 .type = QEMU_OPT_NUMBER,
381 .help = "file descriptor of which a duplicate is added to fd set",
383 .name = "set",
384 .type = QEMU_OPT_NUMBER,
385 .help = "ID of the fd set to add fd to",
387 .name = "opaque",
388 .type = QEMU_OPT_STRING,
389 .help = "free-form string used to describe fd",
391 { /* end of list */ }
395 static QemuOptsList qemu_object_opts = {
396 .name = "object",
397 .implied_opt_name = "qom-type",
398 .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head),
399 .desc = {
404 static QemuOptsList qemu_tpmdev_opts = {
405 .name = "tpmdev",
406 .implied_opt_name = "type",
407 .head = QTAILQ_HEAD_INITIALIZER(qemu_tpmdev_opts.head),
408 .desc = {
409 /* options are defined in the TPM backends */
410 { /* end of list */ }
414 static QemuOptsList qemu_realtime_opts = {
415 .name = "realtime",
416 .head = QTAILQ_HEAD_INITIALIZER(qemu_realtime_opts.head),
417 .desc = {
419 .name = "mlock",
420 .type = QEMU_OPT_BOOL,
422 { /* end of list */ }
426 static QemuOptsList qemu_msg_opts = {
427 .name = "msg",
428 .head = QTAILQ_HEAD_INITIALIZER(qemu_msg_opts.head),
429 .desc = {
431 .name = "timestamp",
432 .type = QEMU_OPT_BOOL,
434 { /* end of list */ }
438 static QemuOptsList qemu_name_opts = {
439 .name = "name",
440 .implied_opt_name = "guest",
441 .merge_lists = true,
442 .head = QTAILQ_HEAD_INITIALIZER(qemu_name_opts.head),
443 .desc = {
445 .name = "guest",
446 .type = QEMU_OPT_STRING,
447 .help = "Sets the name of the guest.\n"
448 "This name will be displayed in the SDL window caption.\n"
449 "The name will also be used for the VNC server",
450 }, {
451 .name = "process",
452 .type = QEMU_OPT_STRING,
453 .help = "Sets the name of the QEMU process, as shown in top etc",
454 }, {
455 .name = "debug-threads",
456 .type = QEMU_OPT_BOOL,
457 .help = "When enabled, name the individual threads; defaults off.\n"
458 "NOTE: The thread names are for debugging and not a\n"
459 "stable API.",
461 { /* End of list */ }
465 static QemuOptsList qemu_mem_opts = {
466 .name = "memory",
467 .implied_opt_name = "size",
468 .head = QTAILQ_HEAD_INITIALIZER(qemu_mem_opts.head),
469 .merge_lists = true,
470 .desc = {
472 .name = "size",
473 .type = QEMU_OPT_SIZE,
476 .name = "slots",
477 .type = QEMU_OPT_NUMBER,
480 .name = "maxmem",
481 .type = QEMU_OPT_SIZE,
483 { /* end of list */ }
487 static QemuOptsList qemu_icount_opts = {
488 .name = "icount",
489 .implied_opt_name = "shift",
490 .merge_lists = true,
491 .head = QTAILQ_HEAD_INITIALIZER(qemu_icount_opts.head),
492 .desc = {
494 .name = "shift",
495 .type = QEMU_OPT_STRING,
496 }, {
497 .name = "align",
498 .type = QEMU_OPT_BOOL,
499 }, {
500 .name = "sleep",
501 .type = QEMU_OPT_BOOL,
502 }, {
503 .name = "rr",
504 .type = QEMU_OPT_STRING,
505 }, {
506 .name = "rrfile",
507 .type = QEMU_OPT_STRING,
508 }, {
509 .name = "rrsnapshot",
510 .type = QEMU_OPT_STRING,
512 { /* end of list */ }
516 static QemuOptsList qemu_semihosting_config_opts = {
517 .name = "semihosting-config",
518 .implied_opt_name = "enable",
519 .head = QTAILQ_HEAD_INITIALIZER(qemu_semihosting_config_opts.head),
520 .desc = {
522 .name = "enable",
523 .type = QEMU_OPT_BOOL,
524 }, {
525 .name = "target",
526 .type = QEMU_OPT_STRING,
527 }, {
528 .name = "arg",
529 .type = QEMU_OPT_STRING,
531 { /* end of list */ }
535 static QemuOptsList qemu_fw_cfg_opts = {
536 .name = "fw_cfg",
537 .implied_opt_name = "name",
538 .head = QTAILQ_HEAD_INITIALIZER(qemu_fw_cfg_opts.head),
539 .desc = {
541 .name = "name",
542 .type = QEMU_OPT_STRING,
543 .help = "Sets the fw_cfg name of the blob to be inserted",
544 }, {
545 .name = "file",
546 .type = QEMU_OPT_STRING,
547 .help = "Sets the name of the file from which\n"
548 "the fw_cfg blob will be loaded",
549 }, {
550 .name = "string",
551 .type = QEMU_OPT_STRING,
552 .help = "Sets content of the blob to be inserted from a string",
554 { /* end of list */ }
559 * Get machine options
561 * Returns: machine options (never null).
563 QemuOpts *qemu_get_machine_opts(void)
565 return qemu_find_opts_singleton("machine");
568 const char *qemu_get_vm_name(void)
570 return qemu_name;
573 static void res_free(void)
575 g_free(boot_splash_filedata);
576 boot_splash_filedata = NULL;
579 static int default_driver_check(void *opaque, QemuOpts *opts, Error **errp)
581 const char *driver = qemu_opt_get(opts, "driver");
582 int i;
584 if (!driver)
585 return 0;
586 for (i = 0; i < ARRAY_SIZE(default_list); i++) {
587 if (strcmp(default_list[i].driver, driver) != 0)
588 continue;
589 *(default_list[i].flag) = 0;
591 return 0;
594 /***********************************************************/
595 /* QEMU state */
597 static RunState current_run_state = RUN_STATE_PRELAUNCH;
599 /* We use RUN_STATE__MAX but any invalid value will do */
600 static RunState vmstop_requested = RUN_STATE__MAX;
601 static QemuMutex vmstop_lock;
603 typedef struct {
604 RunState from;
605 RunState to;
606 } RunStateTransition;
608 static const RunStateTransition runstate_transitions_def[] = {
609 /* from -> to */
610 { RUN_STATE_DEBUG, RUN_STATE_RUNNING },
611 { RUN_STATE_DEBUG, RUN_STATE_FINISH_MIGRATE },
612 { RUN_STATE_DEBUG, RUN_STATE_PRELAUNCH },
614 { RUN_STATE_INMIGRATE, RUN_STATE_INTERNAL_ERROR },
615 { RUN_STATE_INMIGRATE, RUN_STATE_IO_ERROR },
616 { RUN_STATE_INMIGRATE, RUN_STATE_PAUSED },
617 { RUN_STATE_INMIGRATE, RUN_STATE_RUNNING },
618 { RUN_STATE_INMIGRATE, RUN_STATE_SHUTDOWN },
619 { RUN_STATE_INMIGRATE, RUN_STATE_SUSPENDED },
620 { RUN_STATE_INMIGRATE, RUN_STATE_WATCHDOG },
621 { RUN_STATE_INMIGRATE, RUN_STATE_GUEST_PANICKED },
622 { RUN_STATE_INMIGRATE, RUN_STATE_FINISH_MIGRATE },
623 { RUN_STATE_INMIGRATE, RUN_STATE_PRELAUNCH },
624 { RUN_STATE_INMIGRATE, RUN_STATE_POSTMIGRATE },
625 { RUN_STATE_INMIGRATE, RUN_STATE_COLO },
627 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_PAUSED },
628 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_FINISH_MIGRATE },
629 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_PRELAUNCH },
631 { RUN_STATE_IO_ERROR, RUN_STATE_RUNNING },
632 { RUN_STATE_IO_ERROR, RUN_STATE_FINISH_MIGRATE },
633 { RUN_STATE_IO_ERROR, RUN_STATE_PRELAUNCH },
635 { RUN_STATE_PAUSED, RUN_STATE_RUNNING },
636 { RUN_STATE_PAUSED, RUN_STATE_FINISH_MIGRATE },
637 { RUN_STATE_PAUSED, RUN_STATE_POSTMIGRATE },
638 { RUN_STATE_PAUSED, RUN_STATE_PRELAUNCH },
639 { RUN_STATE_PAUSED, RUN_STATE_COLO},
641 { RUN_STATE_POSTMIGRATE, RUN_STATE_RUNNING },
642 { RUN_STATE_POSTMIGRATE, RUN_STATE_FINISH_MIGRATE },
643 { RUN_STATE_POSTMIGRATE, RUN_STATE_PRELAUNCH },
645 { RUN_STATE_PRELAUNCH, RUN_STATE_RUNNING },
646 { RUN_STATE_PRELAUNCH, RUN_STATE_FINISH_MIGRATE },
647 { RUN_STATE_PRELAUNCH, RUN_STATE_INMIGRATE },
649 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_RUNNING },
650 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_PAUSED },
651 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_POSTMIGRATE },
652 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_PRELAUNCH },
653 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_COLO},
655 { RUN_STATE_RESTORE_VM, RUN_STATE_RUNNING },
656 { RUN_STATE_RESTORE_VM, RUN_STATE_PRELAUNCH },
658 { RUN_STATE_COLO, RUN_STATE_RUNNING },
660 { RUN_STATE_RUNNING, RUN_STATE_DEBUG },
661 { RUN_STATE_RUNNING, RUN_STATE_INTERNAL_ERROR },
662 { RUN_STATE_RUNNING, RUN_STATE_IO_ERROR },
663 { RUN_STATE_RUNNING, RUN_STATE_PAUSED },
664 { RUN_STATE_RUNNING, RUN_STATE_FINISH_MIGRATE },
665 { RUN_STATE_RUNNING, RUN_STATE_RESTORE_VM },
666 { RUN_STATE_RUNNING, RUN_STATE_SAVE_VM },
667 { RUN_STATE_RUNNING, RUN_STATE_SHUTDOWN },
668 { RUN_STATE_RUNNING, RUN_STATE_WATCHDOG },
669 { RUN_STATE_RUNNING, RUN_STATE_GUEST_PANICKED },
670 { RUN_STATE_RUNNING, RUN_STATE_COLO},
672 { RUN_STATE_SAVE_VM, RUN_STATE_RUNNING },
674 { RUN_STATE_SHUTDOWN, RUN_STATE_PAUSED },
675 { RUN_STATE_SHUTDOWN, RUN_STATE_FINISH_MIGRATE },
676 { RUN_STATE_SHUTDOWN, RUN_STATE_PRELAUNCH },
678 { RUN_STATE_DEBUG, RUN_STATE_SUSPENDED },
679 { RUN_STATE_RUNNING, RUN_STATE_SUSPENDED },
680 { RUN_STATE_SUSPENDED, RUN_STATE_RUNNING },
681 { RUN_STATE_SUSPENDED, RUN_STATE_FINISH_MIGRATE },
682 { RUN_STATE_SUSPENDED, RUN_STATE_PRELAUNCH },
683 { RUN_STATE_SUSPENDED, RUN_STATE_COLO},
685 { RUN_STATE_WATCHDOG, RUN_STATE_RUNNING },
686 { RUN_STATE_WATCHDOG, RUN_STATE_FINISH_MIGRATE },
687 { RUN_STATE_WATCHDOG, RUN_STATE_PRELAUNCH },
688 { RUN_STATE_WATCHDOG, RUN_STATE_COLO},
690 { RUN_STATE_GUEST_PANICKED, RUN_STATE_RUNNING },
691 { RUN_STATE_GUEST_PANICKED, RUN_STATE_FINISH_MIGRATE },
692 { RUN_STATE_GUEST_PANICKED, RUN_STATE_PRELAUNCH },
694 { RUN_STATE__MAX, RUN_STATE__MAX },
697 static bool runstate_valid_transitions[RUN_STATE__MAX][RUN_STATE__MAX];
699 bool runstate_check(RunState state)
701 return current_run_state == state;
704 bool runstate_store(char *str, size_t size)
706 const char *state = RunState_str(current_run_state);
707 size_t len = strlen(state) + 1;
709 if (len > size) {
710 return false;
712 memcpy(str, state, len);
713 return true;
716 static void runstate_init(void)
718 const RunStateTransition *p;
720 memset(&runstate_valid_transitions, 0, sizeof(runstate_valid_transitions));
721 for (p = &runstate_transitions_def[0]; p->from != RUN_STATE__MAX; p++) {
722 runstate_valid_transitions[p->from][p->to] = true;
725 qemu_mutex_init(&vmstop_lock);
728 /* This function will abort() on invalid state transitions */
729 void runstate_set(RunState new_state)
731 assert(new_state < RUN_STATE__MAX);
733 if (current_run_state == new_state) {
734 return;
737 if (!runstate_valid_transitions[current_run_state][new_state]) {
738 error_report("invalid runstate transition: '%s' -> '%s'",
739 RunState_str(current_run_state),
740 RunState_str(new_state));
741 abort();
743 trace_runstate_set(new_state);
744 current_run_state = new_state;
747 int runstate_is_running(void)
749 return runstate_check(RUN_STATE_RUNNING);
752 bool runstate_needs_reset(void)
754 return runstate_check(RUN_STATE_INTERNAL_ERROR) ||
755 runstate_check(RUN_STATE_SHUTDOWN);
758 StatusInfo *qmp_query_status(Error **errp)
760 StatusInfo *info = g_malloc0(sizeof(*info));
762 info->running = runstate_is_running();
763 info->singlestep = singlestep;
764 info->status = current_run_state;
766 return info;
769 bool qemu_vmstop_requested(RunState *r)
771 qemu_mutex_lock(&vmstop_lock);
772 *r = vmstop_requested;
773 vmstop_requested = RUN_STATE__MAX;
774 qemu_mutex_unlock(&vmstop_lock);
775 return *r < RUN_STATE__MAX;
778 void qemu_system_vmstop_request_prepare(void)
780 qemu_mutex_lock(&vmstop_lock);
783 void qemu_system_vmstop_request(RunState state)
785 vmstop_requested = state;
786 qemu_mutex_unlock(&vmstop_lock);
787 qemu_notify_event();
790 /***********************************************************/
791 /* real time host monotonic timer */
793 static time_t qemu_time(void)
795 return qemu_clock_get_ms(QEMU_CLOCK_HOST) / 1000;
798 /***********************************************************/
799 /* host time/date access */
800 void qemu_get_timedate(struct tm *tm, int offset)
802 time_t ti = qemu_time();
804 ti += offset;
805 if (rtc_date_offset == -1) {
806 if (rtc_utc)
807 gmtime_r(&ti, tm);
808 else
809 localtime_r(&ti, tm);
810 } else {
811 ti -= rtc_date_offset;
812 gmtime_r(&ti, tm);
816 int qemu_timedate_diff(struct tm *tm)
818 time_t seconds;
820 if (rtc_date_offset == -1)
821 if (rtc_utc)
822 seconds = mktimegm(tm);
823 else {
824 struct tm tmp = *tm;
825 tmp.tm_isdst = -1; /* use timezone to figure it out */
826 seconds = mktime(&tmp);
828 else
829 seconds = mktimegm(tm) + rtc_date_offset;
831 return seconds - qemu_time();
834 static void configure_rtc_date_offset(const char *startdate, int legacy)
836 time_t rtc_start_date;
837 struct tm tm;
839 if (!strcmp(startdate, "now") && legacy) {
840 rtc_date_offset = -1;
841 } else {
842 if (sscanf(startdate, "%d-%d-%dT%d:%d:%d",
843 &tm.tm_year,
844 &tm.tm_mon,
845 &tm.tm_mday,
846 &tm.tm_hour,
847 &tm.tm_min,
848 &tm.tm_sec) == 6) {
849 /* OK */
850 } else if (sscanf(startdate, "%d-%d-%d",
851 &tm.tm_year,
852 &tm.tm_mon,
853 &tm.tm_mday) == 3) {
854 tm.tm_hour = 0;
855 tm.tm_min = 0;
856 tm.tm_sec = 0;
857 } else {
858 goto date_fail;
860 tm.tm_year -= 1900;
861 tm.tm_mon--;
862 rtc_start_date = mktimegm(&tm);
863 if (rtc_start_date == -1) {
864 date_fail:
865 error_report("invalid date format");
866 error_printf("valid formats: "
867 "'2006-06-17T16:01:21' or '2006-06-17'\n");
868 exit(1);
870 rtc_date_offset = qemu_time() - rtc_start_date;
874 static void configure_rtc(QemuOpts *opts)
876 const char *value;
878 value = qemu_opt_get(opts, "base");
879 if (value) {
880 if (!strcmp(value, "utc")) {
881 rtc_utc = 1;
882 } else if (!strcmp(value, "localtime")) {
883 Error *blocker = NULL;
884 rtc_utc = 0;
885 error_setg(&blocker, QERR_REPLAY_NOT_SUPPORTED,
886 "-rtc base=localtime");
887 replay_add_blocker(blocker);
888 } else {
889 configure_rtc_date_offset(value, 0);
892 value = qemu_opt_get(opts, "clock");
893 if (value) {
894 if (!strcmp(value, "host")) {
895 rtc_clock = QEMU_CLOCK_HOST;
896 } else if (!strcmp(value, "rt")) {
897 rtc_clock = QEMU_CLOCK_REALTIME;
898 } else if (!strcmp(value, "vm")) {
899 rtc_clock = QEMU_CLOCK_VIRTUAL;
900 } else {
901 error_report("invalid option value '%s'", value);
902 exit(1);
905 value = qemu_opt_get(opts, "driftfix");
906 if (value) {
907 if (!strcmp(value, "slew")) {
908 static GlobalProperty slew_lost_ticks = {
909 .driver = "mc146818rtc",
910 .property = "lost_tick_policy",
911 .value = "slew",
914 qdev_prop_register_global(&slew_lost_ticks);
915 } else if (!strcmp(value, "none")) {
916 /* discard is default */
917 } else {
918 error_report("invalid option value '%s'", value);
919 exit(1);
924 /***********************************************************/
925 /* Bluetooth support */
926 static int nb_hcis;
927 static int cur_hci;
928 static struct HCIInfo *hci_table[MAX_NICS];
930 struct HCIInfo *qemu_next_hci(void)
932 if (cur_hci == nb_hcis)
933 return &null_hci;
935 return hci_table[cur_hci++];
938 static int bt_hci_parse(const char *str)
940 struct HCIInfo *hci;
941 bdaddr_t bdaddr;
943 if (nb_hcis >= MAX_NICS) {
944 error_report("too many bluetooth HCIs (max %i)", MAX_NICS);
945 return -1;
948 hci = hci_init(str);
949 if (!hci)
950 return -1;
952 bdaddr.b[0] = 0x52;
953 bdaddr.b[1] = 0x54;
954 bdaddr.b[2] = 0x00;
955 bdaddr.b[3] = 0x12;
956 bdaddr.b[4] = 0x34;
957 bdaddr.b[5] = 0x56 + nb_hcis;
958 hci->bdaddr_set(hci, bdaddr.b);
960 hci_table[nb_hcis++] = hci;
962 return 0;
965 static void bt_vhci_add(int vlan_id)
967 struct bt_scatternet_s *vlan = qemu_find_bt_vlan(vlan_id);
969 if (!vlan->slave)
970 warn_report("adding a VHCI to an empty scatternet %i",
971 vlan_id);
973 bt_vhci_init(bt_new_hci(vlan));
976 static struct bt_device_s *bt_device_add(const char *opt)
978 struct bt_scatternet_s *vlan;
979 int vlan_id = 0;
980 char *endp = strstr(opt, ",vlan=");
981 int len = (endp ? endp - opt : strlen(opt)) + 1;
982 char devname[10];
984 pstrcpy(devname, MIN(sizeof(devname), len), opt);
986 if (endp) {
987 vlan_id = strtol(endp + 6, &endp, 0);
988 if (*endp) {
989 error_report("unrecognised bluetooth vlan Id");
990 return 0;
994 vlan = qemu_find_bt_vlan(vlan_id);
996 if (!vlan->slave)
997 warn_report("adding a slave device to an empty scatternet %i",
998 vlan_id);
1000 if (!strcmp(devname, "keyboard"))
1001 return bt_keyboard_init(vlan);
1003 error_report("unsupported bluetooth device '%s'", devname);
1004 return 0;
1007 static int bt_parse(const char *opt)
1009 const char *endp, *p;
1010 int vlan;
1012 if (strstart(opt, "hci", &endp)) {
1013 if (!*endp || *endp == ',') {
1014 if (*endp)
1015 if (!strstart(endp, ",vlan=", 0))
1016 opt = endp + 1;
1018 return bt_hci_parse(opt);
1020 } else if (strstart(opt, "vhci", &endp)) {
1021 if (!*endp || *endp == ',') {
1022 if (*endp) {
1023 if (strstart(endp, ",vlan=", &p)) {
1024 vlan = strtol(p, (char **) &endp, 0);
1025 if (*endp) {
1026 error_report("bad scatternet '%s'", p);
1027 return 1;
1029 } else {
1030 error_report("bad parameter '%s'", endp + 1);
1031 return 1;
1033 } else
1034 vlan = 0;
1036 bt_vhci_add(vlan);
1037 return 0;
1039 } else if (strstart(opt, "device:", &endp))
1040 return !bt_device_add(endp);
1042 error_report("bad bluetooth parameter '%s'", opt);
1043 return 1;
1046 static int parse_sandbox(void *opaque, QemuOpts *opts, Error **errp)
1048 if (qemu_opt_get_bool(opts, "enable", false)) {
1049 #ifdef CONFIG_SECCOMP
1050 uint32_t seccomp_opts = QEMU_SECCOMP_SET_DEFAULT
1051 | QEMU_SECCOMP_SET_OBSOLETE;
1052 const char *value = NULL;
1054 value = qemu_opt_get(opts, "obsolete");
1055 if (value) {
1056 if (g_str_equal(value, "allow")) {
1057 seccomp_opts &= ~QEMU_SECCOMP_SET_OBSOLETE;
1058 } else if (g_str_equal(value, "deny")) {
1059 /* this is the default option, this if is here
1060 * to provide a little bit of consistency for
1061 * the command line */
1062 } else {
1063 error_report("invalid argument for obsolete");
1064 return -1;
1068 value = qemu_opt_get(opts, "elevateprivileges");
1069 if (value) {
1070 if (g_str_equal(value, "deny")) {
1071 seccomp_opts |= QEMU_SECCOMP_SET_PRIVILEGED;
1072 } else if (g_str_equal(value, "children")) {
1073 seccomp_opts |= QEMU_SECCOMP_SET_PRIVILEGED;
1075 /* calling prctl directly because we're
1076 * not sure if host has CAP_SYS_ADMIN set*/
1077 if (prctl(PR_SET_NO_NEW_PRIVS, 1)) {
1078 error_report("failed to set no_new_privs "
1079 "aborting");
1080 return -1;
1082 } else if (g_str_equal(value, "allow")) {
1083 /* default value */
1084 } else {
1085 error_report("invalid argument for elevateprivileges");
1086 return -1;
1090 value = qemu_opt_get(opts, "spawn");
1091 if (value) {
1092 if (g_str_equal(value, "deny")) {
1093 seccomp_opts |= QEMU_SECCOMP_SET_SPAWN;
1094 } else if (g_str_equal(value, "allow")) {
1095 /* default value */
1096 } else {
1097 error_report("invalid argument for spawn");
1098 return -1;
1102 value = qemu_opt_get(opts, "resourcecontrol");
1103 if (value) {
1104 if (g_str_equal(value, "deny")) {
1105 seccomp_opts |= QEMU_SECCOMP_SET_RESOURCECTL;
1106 } else if (g_str_equal(value, "allow")) {
1107 /* default value */
1108 } else {
1109 error_report("invalid argument for resourcecontrol");
1110 return -1;
1114 if (seccomp_start(seccomp_opts) < 0) {
1115 error_report("failed to install seccomp syscall filter "
1116 "in the kernel");
1117 return -1;
1119 #else
1120 error_report("seccomp support is disabled");
1121 return -1;
1122 #endif
1125 return 0;
1128 static int parse_name(void *opaque, QemuOpts *opts, Error **errp)
1130 const char *proc_name;
1132 if (qemu_opt_get(opts, "debug-threads")) {
1133 qemu_thread_naming(qemu_opt_get_bool(opts, "debug-threads", false));
1135 qemu_name = qemu_opt_get(opts, "guest");
1137 proc_name = qemu_opt_get(opts, "process");
1138 if (proc_name) {
1139 os_set_proc_name(proc_name);
1142 return 0;
1145 bool defaults_enabled(void)
1147 return has_defaults;
1150 #ifndef _WIN32
1151 static int parse_add_fd(void *opaque, QemuOpts *opts, Error **errp)
1153 int fd, dupfd, flags;
1154 int64_t fdset_id;
1155 const char *fd_opaque = NULL;
1156 AddfdInfo *fdinfo;
1158 fd = qemu_opt_get_number(opts, "fd", -1);
1159 fdset_id = qemu_opt_get_number(opts, "set", -1);
1160 fd_opaque = qemu_opt_get(opts, "opaque");
1162 if (fd < 0) {
1163 error_report("fd option is required and must be non-negative");
1164 return -1;
1167 if (fd <= STDERR_FILENO) {
1168 error_report("fd cannot be a standard I/O stream");
1169 return -1;
1173 * All fds inherited across exec() necessarily have FD_CLOEXEC
1174 * clear, while qemu sets FD_CLOEXEC on all other fds used internally.
1176 flags = fcntl(fd, F_GETFD);
1177 if (flags == -1 || (flags & FD_CLOEXEC)) {
1178 error_report("fd is not valid or already in use");
1179 return -1;
1182 if (fdset_id < 0) {
1183 error_report("set option is required and must be non-negative");
1184 return -1;
1187 #ifdef F_DUPFD_CLOEXEC
1188 dupfd = fcntl(fd, F_DUPFD_CLOEXEC, 0);
1189 #else
1190 dupfd = dup(fd);
1191 if (dupfd != -1) {
1192 qemu_set_cloexec(dupfd);
1194 #endif
1195 if (dupfd == -1) {
1196 error_report("error duplicating fd: %s", strerror(errno));
1197 return -1;
1200 /* add the duplicate fd, and optionally the opaque string, to the fd set */
1201 fdinfo = monitor_fdset_add_fd(dupfd, true, fdset_id, !!fd_opaque, fd_opaque,
1202 &error_abort);
1203 g_free(fdinfo);
1205 return 0;
1208 static int cleanup_add_fd(void *opaque, QemuOpts *opts, Error **errp)
1210 int fd;
1212 fd = qemu_opt_get_number(opts, "fd", -1);
1213 close(fd);
1215 return 0;
1217 #endif
1219 /***********************************************************/
1220 /* QEMU Block devices */
1222 #define HD_OPTS "media=disk"
1223 #define CDROM_OPTS "media=cdrom"
1224 #define FD_OPTS ""
1225 #define PFLASH_OPTS ""
1226 #define MTD_OPTS ""
1227 #define SD_OPTS ""
1229 static int drive_init_func(void *opaque, QemuOpts *opts, Error **errp)
1231 BlockInterfaceType *block_default_type = opaque;
1233 return drive_new(opts, *block_default_type) == NULL;
1236 static int drive_enable_snapshot(void *opaque, QemuOpts *opts, Error **errp)
1238 if (qemu_opt_get(opts, "snapshot") == NULL) {
1239 qemu_opt_set(opts, "snapshot", "on", &error_abort);
1241 return 0;
1244 static void default_drive(int enable, int snapshot, BlockInterfaceType type,
1245 int index, const char *optstr)
1247 QemuOpts *opts;
1248 DriveInfo *dinfo;
1250 if (!enable || drive_get_by_index(type, index)) {
1251 return;
1254 opts = drive_add(type, index, NULL, optstr);
1255 if (snapshot) {
1256 drive_enable_snapshot(NULL, opts, NULL);
1259 dinfo = drive_new(opts, type);
1260 if (!dinfo) {
1261 exit(1);
1263 dinfo->is_default = true;
1267 static QemuOptsList qemu_smp_opts = {
1268 .name = "smp-opts",
1269 .implied_opt_name = "cpus",
1270 .merge_lists = true,
1271 .head = QTAILQ_HEAD_INITIALIZER(qemu_smp_opts.head),
1272 .desc = {
1274 .name = "cpus",
1275 .type = QEMU_OPT_NUMBER,
1276 }, {
1277 .name = "sockets",
1278 .type = QEMU_OPT_NUMBER,
1279 }, {
1280 .name = "cores",
1281 .type = QEMU_OPT_NUMBER,
1282 }, {
1283 .name = "threads",
1284 .type = QEMU_OPT_NUMBER,
1285 }, {
1286 .name = "maxcpus",
1287 .type = QEMU_OPT_NUMBER,
1289 { /*End of list */ }
1293 static void smp_parse(QemuOpts *opts)
1295 if (opts) {
1296 unsigned cpus = qemu_opt_get_number(opts, "cpus", 0);
1297 unsigned sockets = qemu_opt_get_number(opts, "sockets", 0);
1298 unsigned cores = qemu_opt_get_number(opts, "cores", 0);
1299 unsigned threads = qemu_opt_get_number(opts, "threads", 0);
1301 /* compute missing values, prefer sockets over cores over threads */
1302 if (cpus == 0 || sockets == 0) {
1303 sockets = sockets > 0 ? sockets : 1;
1304 cores = cores > 0 ? cores : 1;
1305 threads = threads > 0 ? threads : 1;
1306 if (cpus == 0) {
1307 cpus = cores * threads * sockets;
1309 } else if (cores == 0) {
1310 threads = threads > 0 ? threads : 1;
1311 cores = cpus / (sockets * threads);
1312 cores = cores > 0 ? cores : 1;
1313 } else if (threads == 0) {
1314 threads = cpus / (cores * sockets);
1315 threads = threads > 0 ? threads : 1;
1316 } else if (sockets * cores * threads < cpus) {
1317 error_report("cpu topology: "
1318 "sockets (%u) * cores (%u) * threads (%u) < "
1319 "smp_cpus (%u)",
1320 sockets, cores, threads, cpus);
1321 exit(1);
1324 max_cpus = qemu_opt_get_number(opts, "maxcpus", cpus);
1326 if (max_cpus < cpus) {
1327 error_report("maxcpus must be equal to or greater than smp");
1328 exit(1);
1331 if (sockets * cores * threads > max_cpus) {
1332 error_report("cpu topology: "
1333 "sockets (%u) * cores (%u) * threads (%u) > "
1334 "maxcpus (%u)",
1335 sockets, cores, threads, max_cpus);
1336 exit(1);
1339 smp_cpus = cpus;
1340 smp_cores = cores;
1341 smp_threads = threads;
1344 if (smp_cpus > 1) {
1345 Error *blocker = NULL;
1346 error_setg(&blocker, QERR_REPLAY_NOT_SUPPORTED, "smp");
1347 replay_add_blocker(blocker);
1351 static void realtime_init(void)
1353 if (enable_mlock) {
1354 if (os_mlock() < 0) {
1355 error_report("locking memory failed");
1356 exit(1);
1362 static void configure_msg(QemuOpts *opts)
1364 enable_timestamp_msg = qemu_opt_get_bool(opts, "timestamp", true);
1367 /***********************************************************/
1368 /* Semihosting */
1370 typedef struct SemihostingConfig {
1371 bool enabled;
1372 SemihostingTarget target;
1373 const char **argv;
1374 int argc;
1375 const char *cmdline; /* concatenated argv */
1376 } SemihostingConfig;
1378 static SemihostingConfig semihosting;
1380 bool semihosting_enabled(void)
1382 return semihosting.enabled;
1385 SemihostingTarget semihosting_get_target(void)
1387 return semihosting.target;
1390 const char *semihosting_get_arg(int i)
1392 if (i >= semihosting.argc) {
1393 return NULL;
1395 return semihosting.argv[i];
1398 int semihosting_get_argc(void)
1400 return semihosting.argc;
1403 const char *semihosting_get_cmdline(void)
1405 if (semihosting.cmdline == NULL && semihosting.argc > 0) {
1406 semihosting.cmdline = g_strjoinv(" ", (gchar **)semihosting.argv);
1408 return semihosting.cmdline;
1411 static int add_semihosting_arg(void *opaque,
1412 const char *name, const char *val,
1413 Error **errp)
1415 SemihostingConfig *s = opaque;
1416 if (strcmp(name, "arg") == 0) {
1417 s->argc++;
1418 /* one extra element as g_strjoinv() expects NULL-terminated array */
1419 s->argv = g_realloc(s->argv, (s->argc + 1) * sizeof(void *));
1420 s->argv[s->argc - 1] = val;
1421 s->argv[s->argc] = NULL;
1423 return 0;
1426 /* Use strings passed via -kernel/-append to initialize semihosting.argv[] */
1427 static inline void semihosting_arg_fallback(const char *file, const char *cmd)
1429 char *cmd_token;
1431 /* argv[0] */
1432 add_semihosting_arg(&semihosting, "arg", file, NULL);
1434 /* split -append and initialize argv[1..n] */
1435 cmd_token = strtok(g_strdup(cmd), " ");
1436 while (cmd_token) {
1437 add_semihosting_arg(&semihosting, "arg", cmd_token, NULL);
1438 cmd_token = strtok(NULL, " ");
1442 /* Now we still need this for compatibility with XEN. */
1443 bool has_igd_gfx_passthru;
1444 static void igd_gfx_passthru(void)
1446 has_igd_gfx_passthru = current_machine->igd_gfx_passthru;
1449 /***********************************************************/
1450 /* USB devices */
1452 static int usb_device_add(const char *devname)
1454 USBDevice *dev = NULL;
1456 if (!machine_usb(current_machine)) {
1457 return -1;
1460 dev = usbdevice_create(devname);
1461 if (!dev)
1462 return -1;
1464 return 0;
1467 static int usb_parse(const char *cmdline)
1469 int r;
1470 r = usb_device_add(cmdline);
1471 if (r < 0) {
1472 error_report("could not add USB device '%s'", cmdline);
1474 return r;
1477 /***********************************************************/
1478 /* machine registration */
1480 MachineState *current_machine;
1482 static MachineClass *find_machine(const char *name)
1484 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
1485 MachineClass *mc = NULL;
1487 for (el = machines; el; el = el->next) {
1488 MachineClass *temp = el->data;
1490 if (!strcmp(temp->name, name)) {
1491 mc = temp;
1492 break;
1494 if (temp->alias &&
1495 !strcmp(temp->alias, name)) {
1496 mc = temp;
1497 break;
1501 g_slist_free(machines);
1502 return mc;
1505 MachineClass *find_default_machine(void)
1507 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
1508 MachineClass *mc = NULL;
1510 for (el = machines; el; el = el->next) {
1511 MachineClass *temp = el->data;
1513 if (temp->is_default) {
1514 mc = temp;
1515 break;
1519 g_slist_free(machines);
1520 return mc;
1523 MachineInfoList *qmp_query_machines(Error **errp)
1525 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
1526 MachineInfoList *mach_list = NULL;
1528 for (el = machines; el; el = el->next) {
1529 MachineClass *mc = el->data;
1530 MachineInfoList *entry;
1531 MachineInfo *info;
1533 info = g_malloc0(sizeof(*info));
1534 if (mc->is_default) {
1535 info->has_is_default = true;
1536 info->is_default = true;
1539 if (mc->alias) {
1540 info->has_alias = true;
1541 info->alias = g_strdup(mc->alias);
1544 info->name = g_strdup(mc->name);
1545 info->cpu_max = !mc->max_cpus ? 1 : mc->max_cpus;
1546 info->hotpluggable_cpus = mc->has_hotpluggable_cpus;
1548 entry = g_malloc0(sizeof(*entry));
1549 entry->value = info;
1550 entry->next = mach_list;
1551 mach_list = entry;
1554 g_slist_free(machines);
1555 return mach_list;
1558 static int machine_help_func(QemuOpts *opts, MachineState *machine)
1560 ObjectProperty *prop;
1561 ObjectPropertyIterator iter;
1563 if (!qemu_opt_has_help_opt(opts)) {
1564 return 0;
1567 object_property_iter_init(&iter, OBJECT(machine));
1568 while ((prop = object_property_iter_next(&iter))) {
1569 if (!prop->set) {
1570 continue;
1573 error_printf("%s.%s=%s", MACHINE_GET_CLASS(machine)->name,
1574 prop->name, prop->type);
1575 if (prop->description) {
1576 error_printf(" (%s)\n", prop->description);
1577 } else {
1578 error_printf("\n");
1582 return 1;
1585 /***********************************************************/
1586 /* main execution loop */
1588 struct vm_change_state_entry {
1589 VMChangeStateHandler *cb;
1590 void *opaque;
1591 QLIST_ENTRY (vm_change_state_entry) entries;
1594 static QLIST_HEAD(vm_change_state_head, vm_change_state_entry) vm_change_state_head;
1596 VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
1597 void *opaque)
1599 VMChangeStateEntry *e;
1601 e = g_malloc0(sizeof (*e));
1603 e->cb = cb;
1604 e->opaque = opaque;
1605 QLIST_INSERT_HEAD(&vm_change_state_head, e, entries);
1606 return e;
1609 void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
1611 QLIST_REMOVE (e, entries);
1612 g_free (e);
1615 void vm_state_notify(int running, RunState state)
1617 VMChangeStateEntry *e, *next;
1619 trace_vm_state_notify(running, state);
1621 QLIST_FOREACH_SAFE(e, &vm_change_state_head, entries, next) {
1622 e->cb(e->opaque, running, state);
1626 static ShutdownCause reset_requested;
1627 static ShutdownCause shutdown_requested;
1628 static int shutdown_signal;
1629 static pid_t shutdown_pid;
1630 static int powerdown_requested;
1631 static int debug_requested;
1632 static int suspend_requested;
1633 static WakeupReason wakeup_reason;
1634 static NotifierList powerdown_notifiers =
1635 NOTIFIER_LIST_INITIALIZER(powerdown_notifiers);
1636 static NotifierList suspend_notifiers =
1637 NOTIFIER_LIST_INITIALIZER(suspend_notifiers);
1638 static NotifierList wakeup_notifiers =
1639 NOTIFIER_LIST_INITIALIZER(wakeup_notifiers);
1640 static uint32_t wakeup_reason_mask = ~(1 << QEMU_WAKEUP_REASON_NONE);
1642 ShutdownCause qemu_shutdown_requested_get(void)
1644 return shutdown_requested;
1647 ShutdownCause qemu_reset_requested_get(void)
1649 return reset_requested;
1652 static int qemu_shutdown_requested(void)
1654 return atomic_xchg(&shutdown_requested, SHUTDOWN_CAUSE_NONE);
1657 static void qemu_kill_report(void)
1659 if (!qtest_driver() && shutdown_signal) {
1660 if (shutdown_pid == 0) {
1661 /* This happens for eg ^C at the terminal, so it's worth
1662 * avoiding printing an odd message in that case.
1664 error_report("terminating on signal %d", shutdown_signal);
1665 } else {
1666 char *shutdown_cmd = qemu_get_pid_name(shutdown_pid);
1668 error_report("terminating on signal %d from pid " FMT_pid " (%s)",
1669 shutdown_signal, shutdown_pid,
1670 shutdown_cmd ? shutdown_cmd : "<unknown process>");
1671 g_free(shutdown_cmd);
1673 shutdown_signal = 0;
1677 static ShutdownCause qemu_reset_requested(void)
1679 ShutdownCause r = reset_requested;
1681 if (r && replay_checkpoint(CHECKPOINT_RESET_REQUESTED)) {
1682 reset_requested = SHUTDOWN_CAUSE_NONE;
1683 return r;
1685 return SHUTDOWN_CAUSE_NONE;
1688 static int qemu_suspend_requested(void)
1690 int r = suspend_requested;
1691 if (r && replay_checkpoint(CHECKPOINT_SUSPEND_REQUESTED)) {
1692 suspend_requested = 0;
1693 return r;
1695 return false;
1698 static WakeupReason qemu_wakeup_requested(void)
1700 return wakeup_reason;
1703 static int qemu_powerdown_requested(void)
1705 int r = powerdown_requested;
1706 powerdown_requested = 0;
1707 return r;
1710 static int qemu_debug_requested(void)
1712 int r = debug_requested;
1713 debug_requested = 0;
1714 return r;
1718 * Reset the VM. Issue an event unless @reason is SHUTDOWN_CAUSE_NONE.
1720 void qemu_system_reset(ShutdownCause reason)
1722 MachineClass *mc;
1724 mc = current_machine ? MACHINE_GET_CLASS(current_machine) : NULL;
1726 cpu_synchronize_all_states();
1728 if (mc && mc->reset) {
1729 mc->reset();
1730 } else {
1731 qemu_devices_reset();
1733 if (reason) {
1734 qapi_event_send_reset(shutdown_caused_by_guest(reason),
1735 &error_abort);
1737 cpu_synchronize_all_post_reset();
1740 void qemu_system_guest_panicked(GuestPanicInformation *info)
1742 qemu_log_mask(LOG_GUEST_ERROR, "Guest crashed");
1744 if (current_cpu) {
1745 current_cpu->crash_occurred = true;
1747 qapi_event_send_guest_panicked(GUEST_PANIC_ACTION_PAUSE,
1748 !!info, info, &error_abort);
1749 vm_stop(RUN_STATE_GUEST_PANICKED);
1750 if (!no_shutdown) {
1751 qapi_event_send_guest_panicked(GUEST_PANIC_ACTION_POWEROFF,
1752 !!info, info, &error_abort);
1753 qemu_system_shutdown_request(SHUTDOWN_CAUSE_GUEST_PANIC);
1756 if (info) {
1757 if (info->type == GUEST_PANIC_INFORMATION_TYPE_HYPER_V) {
1758 qemu_log_mask(LOG_GUEST_ERROR, "\nHV crash parameters: (%#"PRIx64
1759 " %#"PRIx64" %#"PRIx64" %#"PRIx64" %#"PRIx64")\n",
1760 info->u.hyper_v.arg1,
1761 info->u.hyper_v.arg2,
1762 info->u.hyper_v.arg3,
1763 info->u.hyper_v.arg4,
1764 info->u.hyper_v.arg5);
1765 } else if (info->type == GUEST_PANIC_INFORMATION_TYPE_S390) {
1766 qemu_log_mask(LOG_GUEST_ERROR, " on cpu %d: %s\n"
1767 "PSW: 0x%016" PRIx64 " 0x%016" PRIx64"\n",
1768 info->u.s390.core,
1769 S390CrashReason_str(info->u.s390.reason),
1770 info->u.s390.psw_mask,
1771 info->u.s390.psw_addr);
1773 qapi_free_GuestPanicInformation(info);
1777 void qemu_system_reset_request(ShutdownCause reason)
1779 if (no_reboot) {
1780 shutdown_requested = reason;
1781 } else {
1782 reset_requested = reason;
1784 cpu_stop_current();
1785 qemu_notify_event();
1788 static void qemu_system_suspend(void)
1790 pause_all_vcpus();
1791 notifier_list_notify(&suspend_notifiers, NULL);
1792 runstate_set(RUN_STATE_SUSPENDED);
1793 qapi_event_send_suspend(&error_abort);
1796 void qemu_system_suspend_request(void)
1798 if (runstate_check(RUN_STATE_SUSPENDED)) {
1799 return;
1801 suspend_requested = 1;
1802 cpu_stop_current();
1803 qemu_notify_event();
1806 void qemu_register_suspend_notifier(Notifier *notifier)
1808 notifier_list_add(&suspend_notifiers, notifier);
1811 void qemu_system_wakeup_request(WakeupReason reason)
1813 trace_system_wakeup_request(reason);
1815 if (!runstate_check(RUN_STATE_SUSPENDED)) {
1816 return;
1818 if (!(wakeup_reason_mask & (1 << reason))) {
1819 return;
1821 runstate_set(RUN_STATE_RUNNING);
1822 wakeup_reason = reason;
1823 qemu_notify_event();
1826 void qemu_system_wakeup_enable(WakeupReason reason, bool enabled)
1828 if (enabled) {
1829 wakeup_reason_mask |= (1 << reason);
1830 } else {
1831 wakeup_reason_mask &= ~(1 << reason);
1835 void qemu_register_wakeup_notifier(Notifier *notifier)
1837 notifier_list_add(&wakeup_notifiers, notifier);
1840 void qemu_system_killed(int signal, pid_t pid)
1842 shutdown_signal = signal;
1843 shutdown_pid = pid;
1844 no_shutdown = 0;
1846 /* Cannot call qemu_system_shutdown_request directly because
1847 * we are in a signal handler.
1849 shutdown_requested = SHUTDOWN_CAUSE_HOST_SIGNAL;
1850 qemu_notify_event();
1853 void qemu_system_shutdown_request(ShutdownCause reason)
1855 trace_qemu_system_shutdown_request(reason);
1856 replay_shutdown_request(reason);
1857 shutdown_requested = reason;
1858 qemu_notify_event();
1861 static void qemu_system_powerdown(void)
1863 qapi_event_send_powerdown(&error_abort);
1864 notifier_list_notify(&powerdown_notifiers, NULL);
1867 void qemu_system_powerdown_request(void)
1869 trace_qemu_system_powerdown_request();
1870 powerdown_requested = 1;
1871 qemu_notify_event();
1874 void qemu_register_powerdown_notifier(Notifier *notifier)
1876 notifier_list_add(&powerdown_notifiers, notifier);
1879 void qemu_system_debug_request(void)
1881 debug_requested = 1;
1882 qemu_notify_event();
1885 static bool main_loop_should_exit(void)
1887 RunState r;
1888 ShutdownCause request;
1890 if (qemu_debug_requested()) {
1891 vm_stop(RUN_STATE_DEBUG);
1893 if (qemu_suspend_requested()) {
1894 qemu_system_suspend();
1896 request = qemu_shutdown_requested();
1897 if (request) {
1898 qemu_kill_report();
1899 qapi_event_send_shutdown(shutdown_caused_by_guest(request),
1900 &error_abort);
1901 if (no_shutdown) {
1902 vm_stop(RUN_STATE_SHUTDOWN);
1903 } else {
1904 return true;
1907 request = qemu_reset_requested();
1908 if (request) {
1909 pause_all_vcpus();
1910 qemu_system_reset(request);
1911 resume_all_vcpus();
1912 if (!runstate_check(RUN_STATE_RUNNING) &&
1913 !runstate_check(RUN_STATE_INMIGRATE)) {
1914 runstate_set(RUN_STATE_PRELAUNCH);
1917 if (qemu_wakeup_requested()) {
1918 pause_all_vcpus();
1919 qemu_system_reset(SHUTDOWN_CAUSE_NONE);
1920 notifier_list_notify(&wakeup_notifiers, &wakeup_reason);
1921 wakeup_reason = QEMU_WAKEUP_REASON_NONE;
1922 resume_all_vcpus();
1923 qapi_event_send_wakeup(&error_abort);
1925 if (qemu_powerdown_requested()) {
1926 qemu_system_powerdown();
1928 if (qemu_vmstop_requested(&r)) {
1929 vm_stop(r);
1931 return false;
1934 static void main_loop(void)
1936 #ifdef CONFIG_PROFILER
1937 int64_t ti;
1938 #endif
1939 do {
1940 #ifdef CONFIG_PROFILER
1941 ti = profile_getclock();
1942 #endif
1943 main_loop_wait(false);
1944 #ifdef CONFIG_PROFILER
1945 dev_time += profile_getclock() - ti;
1946 #endif
1947 } while (!main_loop_should_exit());
1950 static void version(void)
1952 printf("QEMU emulator version " QEMU_FULL_VERSION "\n"
1953 QEMU_COPYRIGHT "\n");
1956 static void help(int exitcode)
1958 version();
1959 printf("usage: %s [options] [disk_image]\n\n"
1960 "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
1961 error_get_progname());
1963 #define QEMU_OPTIONS_GENERATE_HELP
1964 #include "qemu-options-wrapper.h"
1966 printf("\nDuring emulation, the following keys are useful:\n"
1967 "ctrl-alt-f toggle full screen\n"
1968 "ctrl-alt-n switch to virtual console 'n'\n"
1969 "ctrl-alt toggle mouse and keyboard grab\n"
1970 "\n"
1971 "When using -nographic, press 'ctrl-a h' to get some help.\n"
1972 "\n"
1973 QEMU_HELP_BOTTOM "\n");
1975 exit(exitcode);
1978 #define HAS_ARG 0x0001
1980 typedef struct QEMUOption {
1981 const char *name;
1982 int flags;
1983 int index;
1984 uint32_t arch_mask;
1985 } QEMUOption;
1987 static const QEMUOption qemu_options[] = {
1988 { "h", 0, QEMU_OPTION_h, QEMU_ARCH_ALL },
1989 #define QEMU_OPTIONS_GENERATE_OPTIONS
1990 #include "qemu-options-wrapper.h"
1991 { NULL },
1994 typedef struct VGAInterfaceInfo {
1995 const char *opt_name; /* option name */
1996 const char *name; /* human-readable name */
1997 /* Class names indicating that support is available.
1998 * If no class is specified, the interface is always available */
1999 const char *class_names[2];
2000 } VGAInterfaceInfo;
2002 static VGAInterfaceInfo vga_interfaces[VGA_TYPE_MAX] = {
2003 [VGA_NONE] = {
2004 .opt_name = "none",
2006 [VGA_STD] = {
2007 .opt_name = "std",
2008 .name = "standard VGA",
2009 .class_names = { "VGA", "isa-vga" },
2011 [VGA_CIRRUS] = {
2012 .opt_name = "cirrus",
2013 .name = "Cirrus VGA",
2014 .class_names = { "cirrus-vga", "isa-cirrus-vga" },
2016 [VGA_VMWARE] = {
2017 .opt_name = "vmware",
2018 .name = "VMWare SVGA",
2019 .class_names = { "vmware-svga" },
2021 [VGA_VIRTIO] = {
2022 .opt_name = "virtio",
2023 .name = "Virtio VGA",
2024 .class_names = { "virtio-vga" },
2026 [VGA_QXL] = {
2027 .opt_name = "qxl",
2028 .name = "QXL VGA",
2029 .class_names = { "qxl-vga" },
2031 [VGA_TCX] = {
2032 .opt_name = "tcx",
2033 .name = "TCX framebuffer",
2034 .class_names = { "SUNW,tcx" },
2036 [VGA_CG3] = {
2037 .opt_name = "cg3",
2038 .name = "CG3 framebuffer",
2039 .class_names = { "cgthree" },
2041 [VGA_XENFB] = {
2042 .opt_name = "xenfb",
2046 static bool vga_interface_available(VGAInterfaceType t)
2048 VGAInterfaceInfo *ti = &vga_interfaces[t];
2050 assert(t < VGA_TYPE_MAX);
2051 return !ti->class_names[0] ||
2052 object_class_by_name(ti->class_names[0]) ||
2053 object_class_by_name(ti->class_names[1]);
2056 static void select_vgahw(const char *p)
2058 const char *opts;
2059 int t;
2061 assert(vga_interface_type == VGA_NONE);
2062 for (t = 0; t < VGA_TYPE_MAX; t++) {
2063 VGAInterfaceInfo *ti = &vga_interfaces[t];
2064 if (ti->opt_name && strstart(p, ti->opt_name, &opts)) {
2065 if (!vga_interface_available(t)) {
2066 error_report("%s not available", ti->name);
2067 exit(1);
2069 vga_interface_type = t;
2070 break;
2073 if (t == VGA_TYPE_MAX) {
2074 invalid_vga:
2075 error_report("unknown vga type: %s", p);
2076 exit(1);
2078 while (*opts) {
2079 const char *nextopt;
2081 if (strstart(opts, ",retrace=", &nextopt)) {
2082 opts = nextopt;
2083 if (strstart(opts, "dumb", &nextopt))
2084 vga_retrace_method = VGA_RETRACE_DUMB;
2085 else if (strstart(opts, "precise", &nextopt))
2086 vga_retrace_method = VGA_RETRACE_PRECISE;
2087 else goto invalid_vga;
2088 } else goto invalid_vga;
2089 opts = nextopt;
2093 static void parse_display_qapi(const char *optarg)
2095 Error *err = NULL;
2096 DisplayOptions *opts;
2097 Visitor *v;
2099 v = qobject_input_visitor_new_str(optarg, "type", &err);
2100 if (!v) {
2101 error_report_err(err);
2102 exit(1);
2105 visit_type_DisplayOptions(v, NULL, &opts, &error_fatal);
2106 QAPI_CLONE_MEMBERS(DisplayOptions, &dpy, opts);
2108 qapi_free_DisplayOptions(opts);
2109 visit_free(v);
2112 static void parse_display(const char *p)
2114 const char *opts;
2116 if (strstart(p, "sdl", &opts)) {
2118 * sdl DisplayType needs hand-crafted parser instead of
2119 * parse_display_qapi() due to some options not in
2120 * DisplayOptions, specifically:
2121 * - frame
2122 * Already deprecated.
2123 * - ctrl_grab + alt_grab
2124 * Not clear yet what happens to them long-term. Should
2125 * replaced by something better or deprecated and dropped.
2127 dpy.type = DISPLAY_TYPE_SDL;
2128 while (*opts) {
2129 const char *nextopt;
2131 if (strstart(opts, ",frame=", &nextopt)) {
2132 g_printerr("The frame= sdl option is deprecated, and will be\n"
2133 "removed in a future release.\n");
2134 opts = nextopt;
2135 if (strstart(opts, "on", &nextopt)) {
2136 no_frame = 0;
2137 } else if (strstart(opts, "off", &nextopt)) {
2138 no_frame = 1;
2139 } else {
2140 goto invalid_sdl_args;
2142 } else if (strstart(opts, ",alt_grab=", &nextopt)) {
2143 opts = nextopt;
2144 if (strstart(opts, "on", &nextopt)) {
2145 alt_grab = 1;
2146 } else if (strstart(opts, "off", &nextopt)) {
2147 alt_grab = 0;
2148 } else {
2149 goto invalid_sdl_args;
2151 } else if (strstart(opts, ",ctrl_grab=", &nextopt)) {
2152 opts = nextopt;
2153 if (strstart(opts, "on", &nextopt)) {
2154 ctrl_grab = 1;
2155 } else if (strstart(opts, "off", &nextopt)) {
2156 ctrl_grab = 0;
2157 } else {
2158 goto invalid_sdl_args;
2160 } else if (strstart(opts, ",window_close=", &nextopt)) {
2161 opts = nextopt;
2162 dpy.has_window_close = true;
2163 if (strstart(opts, "on", &nextopt)) {
2164 dpy.window_close = true;
2165 } else if (strstart(opts, "off", &nextopt)) {
2166 dpy.window_close = false;
2167 } else {
2168 goto invalid_sdl_args;
2170 } else if (strstart(opts, ",gl=", &nextopt)) {
2171 opts = nextopt;
2172 dpy.has_gl = true;
2173 if (strstart(opts, "on", &nextopt)) {
2174 dpy.gl = DISPLAYGL_MODE_ON;
2175 } else if (strstart(opts, "core", &nextopt)) {
2176 dpy.gl = DISPLAYGL_MODE_CORE;
2177 } else if (strstart(opts, "es", &nextopt)) {
2178 dpy.gl = DISPLAYGL_MODE_ES;
2179 } else if (strstart(opts, "off", &nextopt)) {
2180 dpy.gl = DISPLAYGL_MODE_OFF;
2181 } else {
2182 goto invalid_sdl_args;
2184 } else {
2185 invalid_sdl_args:
2186 error_report("invalid SDL option string");
2187 exit(1);
2189 opts = nextopt;
2191 } else if (strstart(p, "vnc", &opts)) {
2193 * vnc isn't a (local) DisplayType but a protocol for remote
2194 * display access.
2196 if (*opts == '=') {
2197 vnc_parse(opts + 1, &error_fatal);
2198 } else {
2199 error_report("VNC requires a display argument vnc=<display>");
2200 exit(1);
2202 } else {
2203 parse_display_qapi(p);
2207 static int balloon_parse(const char *arg)
2209 QemuOpts *opts;
2211 warn_report("This option is deprecated. "
2212 "Use '--device virtio-balloon' to enable the balloon device.");
2214 if (strcmp(arg, "none") == 0) {
2215 return 0;
2218 if (!strncmp(arg, "virtio", 6)) {
2219 if (arg[6] == ',') {
2220 /* have params -> parse them */
2221 opts = qemu_opts_parse_noisily(qemu_find_opts("device"), arg + 7,
2222 false);
2223 if (!opts)
2224 return -1;
2225 } else {
2226 /* create empty opts */
2227 opts = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
2228 &error_abort);
2230 qemu_opt_set(opts, "driver", "virtio-balloon", &error_abort);
2231 return 0;
2234 return -1;
2237 char *qemu_find_file(int type, const char *name)
2239 int i;
2240 const char *subdir;
2241 char *buf;
2243 /* Try the name as a straight path first */
2244 if (access(name, R_OK) == 0) {
2245 trace_load_file(name, name);
2246 return g_strdup(name);
2249 switch (type) {
2250 case QEMU_FILE_TYPE_BIOS:
2251 subdir = "";
2252 break;
2253 case QEMU_FILE_TYPE_KEYMAP:
2254 subdir = "keymaps/";
2255 break;
2256 default:
2257 abort();
2260 for (i = 0; i < data_dir_idx; i++) {
2261 buf = g_strdup_printf("%s/%s%s", data_dir[i], subdir, name);
2262 if (access(buf, R_OK) == 0) {
2263 trace_load_file(name, buf);
2264 return buf;
2266 g_free(buf);
2268 return NULL;
2271 static void qemu_add_data_dir(const char *path)
2273 int i;
2275 if (path == NULL) {
2276 return;
2278 if (data_dir_idx == ARRAY_SIZE(data_dir)) {
2279 return;
2281 for (i = 0; i < data_dir_idx; i++) {
2282 if (strcmp(data_dir[i], path) == 0) {
2283 return; /* duplicate */
2286 data_dir[data_dir_idx++] = g_strdup(path);
2289 static inline bool nonempty_str(const char *str)
2291 return str && *str;
2294 static int parse_fw_cfg(void *opaque, QemuOpts *opts, Error **errp)
2296 gchar *buf;
2297 size_t size;
2298 const char *name, *file, *str;
2299 FWCfgState *fw_cfg = (FWCfgState *) opaque;
2301 if (fw_cfg == NULL) {
2302 error_report("fw_cfg device not available");
2303 return -1;
2305 name = qemu_opt_get(opts, "name");
2306 file = qemu_opt_get(opts, "file");
2307 str = qemu_opt_get(opts, "string");
2309 /* we need name and either a file or the content string */
2310 if (!(nonempty_str(name) && (nonempty_str(file) || nonempty_str(str)))) {
2311 error_report("invalid argument(s)");
2312 return -1;
2314 if (nonempty_str(file) && nonempty_str(str)) {
2315 error_report("file and string are mutually exclusive");
2316 return -1;
2318 if (strlen(name) > FW_CFG_MAX_FILE_PATH - 1) {
2319 error_report("name too long (max. %d char)", FW_CFG_MAX_FILE_PATH - 1);
2320 return -1;
2322 if (strncmp(name, "opt/", 4) != 0) {
2323 warn_report("externally provided fw_cfg item names "
2324 "should be prefixed with \"opt/\"");
2326 if (nonempty_str(str)) {
2327 size = strlen(str); /* NUL terminator NOT included in fw_cfg blob */
2328 buf = g_memdup(str, size);
2329 } else {
2330 if (!g_file_get_contents(file, &buf, &size, NULL)) {
2331 error_report("can't load %s", file);
2332 return -1;
2335 /* For legacy, keep user files in a specific global order. */
2336 fw_cfg_set_order_override(fw_cfg, FW_CFG_ORDER_OVERRIDE_USER);
2337 fw_cfg_add_file(fw_cfg, name, buf, size);
2338 fw_cfg_reset_order_override(fw_cfg);
2339 return 0;
2342 static int device_help_func(void *opaque, QemuOpts *opts, Error **errp)
2344 return qdev_device_help(opts);
2347 static int device_init_func(void *opaque, QemuOpts *opts, Error **errp)
2349 Error *err = NULL;
2350 DeviceState *dev;
2352 dev = qdev_device_add(opts, &err);
2353 if (!dev) {
2354 error_report_err(err);
2355 return -1;
2357 object_unref(OBJECT(dev));
2358 return 0;
2361 static int chardev_init_func(void *opaque, QemuOpts *opts, Error **errp)
2363 Error *local_err = NULL;
2365 if (!qemu_chr_new_from_opts(opts, &local_err)) {
2366 if (local_err) {
2367 error_report_err(local_err);
2368 return -1;
2370 exit(0);
2372 return 0;
2375 #ifdef CONFIG_VIRTFS
2376 static int fsdev_init_func(void *opaque, QemuOpts *opts, Error **errp)
2378 return qemu_fsdev_add(opts);
2380 #endif
2382 static int mon_init_func(void *opaque, QemuOpts *opts, Error **errp)
2384 Chardev *chr;
2385 const char *chardev;
2386 const char *mode;
2387 int flags;
2389 mode = qemu_opt_get(opts, "mode");
2390 if (mode == NULL) {
2391 mode = "readline";
2393 if (strcmp(mode, "readline") == 0) {
2394 flags = MONITOR_USE_READLINE;
2395 } else if (strcmp(mode, "control") == 0) {
2396 flags = MONITOR_USE_CONTROL;
2397 } else {
2398 error_report("unknown monitor mode \"%s\"", mode);
2399 exit(1);
2402 if (qemu_opt_get_bool(opts, "pretty", 0))
2403 flags |= MONITOR_USE_PRETTY;
2405 /* OOB is off by default */
2406 if (qemu_opt_get_bool(opts, "x-oob", 0)) {
2407 flags |= MONITOR_USE_OOB;
2410 chardev = qemu_opt_get(opts, "chardev");
2411 chr = qemu_chr_find(chardev);
2412 if (chr == NULL) {
2413 error_report("chardev \"%s\" not found", chardev);
2414 exit(1);
2417 monitor_init(chr, flags);
2418 return 0;
2421 static void monitor_parse(const char *optarg, const char *mode, bool pretty)
2423 static int monitor_device_index = 0;
2424 QemuOpts *opts;
2425 const char *p;
2426 char label[32];
2428 if (strstart(optarg, "chardev:", &p)) {
2429 snprintf(label, sizeof(label), "%s", p);
2430 } else {
2431 snprintf(label, sizeof(label), "compat_monitor%d",
2432 monitor_device_index);
2433 opts = qemu_chr_parse_compat(label, optarg);
2434 if (!opts) {
2435 error_report("parse error: %s", optarg);
2436 exit(1);
2440 opts = qemu_opts_create(qemu_find_opts("mon"), label, 1, &error_fatal);
2441 qemu_opt_set(opts, "mode", mode, &error_abort);
2442 qemu_opt_set(opts, "chardev", label, &error_abort);
2443 qemu_opt_set_bool(opts, "pretty", pretty, &error_abort);
2444 monitor_device_index++;
2447 struct device_config {
2448 enum {
2449 DEV_USB, /* -usbdevice */
2450 DEV_BT, /* -bt */
2451 DEV_SERIAL, /* -serial */
2452 DEV_PARALLEL, /* -parallel */
2453 DEV_VIRTCON, /* -virtioconsole */
2454 DEV_DEBUGCON, /* -debugcon */
2455 DEV_GDB, /* -gdb, -s */
2456 DEV_SCLP, /* s390 sclp */
2457 } type;
2458 const char *cmdline;
2459 Location loc;
2460 QTAILQ_ENTRY(device_config) next;
2463 static QTAILQ_HEAD(, device_config) device_configs =
2464 QTAILQ_HEAD_INITIALIZER(device_configs);
2466 static void add_device_config(int type, const char *cmdline)
2468 struct device_config *conf;
2470 conf = g_malloc0(sizeof(*conf));
2471 conf->type = type;
2472 conf->cmdline = cmdline;
2473 loc_save(&conf->loc);
2474 QTAILQ_INSERT_TAIL(&device_configs, conf, next);
2477 static int foreach_device_config(int type, int (*func)(const char *cmdline))
2479 struct device_config *conf;
2480 int rc;
2482 QTAILQ_FOREACH(conf, &device_configs, next) {
2483 if (conf->type != type)
2484 continue;
2485 loc_push_restore(&conf->loc);
2486 rc = func(conf->cmdline);
2487 loc_pop(&conf->loc);
2488 if (rc) {
2489 return rc;
2492 return 0;
2495 static int serial_parse(const char *devname)
2497 int index = num_serial_hds;
2498 char label[32];
2500 if (strcmp(devname, "none") == 0)
2501 return 0;
2502 snprintf(label, sizeof(label), "serial%d", index);
2503 serial_hds = g_renew(Chardev *, serial_hds, index + 1);
2505 serial_hds[index] = qemu_chr_new(label, devname);
2506 if (!serial_hds[index]) {
2507 error_report("could not connect serial device"
2508 " to character backend '%s'", devname);
2509 return -1;
2511 num_serial_hds++;
2512 return 0;
2515 Chardev *serial_hd(int i)
2517 assert(i >= 0);
2518 if (i < num_serial_hds) {
2519 return serial_hds[i];
2521 return NULL;
2524 int serial_max_hds(void)
2526 return num_serial_hds;
2529 static int parallel_parse(const char *devname)
2531 static int index = 0;
2532 char label[32];
2534 if (strcmp(devname, "none") == 0)
2535 return 0;
2536 if (index == MAX_PARALLEL_PORTS) {
2537 error_report("too many parallel ports");
2538 exit(1);
2540 snprintf(label, sizeof(label), "parallel%d", index);
2541 parallel_hds[index] = qemu_chr_new(label, devname);
2542 if (!parallel_hds[index]) {
2543 error_report("could not connect parallel device"
2544 " to character backend '%s'", devname);
2545 return -1;
2547 index++;
2548 return 0;
2551 static int virtcon_parse(const char *devname)
2553 QemuOptsList *device = qemu_find_opts("device");
2554 static int index = 0;
2555 char label[32];
2556 QemuOpts *bus_opts, *dev_opts;
2558 if (strcmp(devname, "none") == 0)
2559 return 0;
2560 if (index == MAX_VIRTIO_CONSOLES) {
2561 error_report("too many virtio consoles");
2562 exit(1);
2565 bus_opts = qemu_opts_create(device, NULL, 0, &error_abort);
2566 qemu_opt_set(bus_opts, "driver", "virtio-serial", &error_abort);
2568 dev_opts = qemu_opts_create(device, NULL, 0, &error_abort);
2569 qemu_opt_set(dev_opts, "driver", "virtconsole", &error_abort);
2571 snprintf(label, sizeof(label), "virtcon%d", index);
2572 virtcon_hds[index] = qemu_chr_new(label, devname);
2573 if (!virtcon_hds[index]) {
2574 error_report("could not connect virtio console"
2575 " to character backend '%s'", devname);
2576 return -1;
2578 qemu_opt_set(dev_opts, "chardev", label, &error_abort);
2580 index++;
2581 return 0;
2584 static int debugcon_parse(const char *devname)
2586 QemuOpts *opts;
2588 if (!qemu_chr_new("debugcon", devname)) {
2589 exit(1);
2591 opts = qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL);
2592 if (!opts) {
2593 error_report("already have a debugcon device");
2594 exit(1);
2596 qemu_opt_set(opts, "driver", "isa-debugcon", &error_abort);
2597 qemu_opt_set(opts, "chardev", "debugcon", &error_abort);
2598 return 0;
2601 static gint machine_class_cmp(gconstpointer a, gconstpointer b)
2603 const MachineClass *mc1 = a, *mc2 = b;
2604 int res;
2606 if (mc1->family == NULL) {
2607 if (mc2->family == NULL) {
2608 /* Compare standalone machine types against each other; they sort
2609 * in increasing order.
2611 return strcmp(object_class_get_name(OBJECT_CLASS(mc1)),
2612 object_class_get_name(OBJECT_CLASS(mc2)));
2615 /* Standalone machine types sort after families. */
2616 return 1;
2619 if (mc2->family == NULL) {
2620 /* Families sort before standalone machine types. */
2621 return -1;
2624 /* Families sort between each other alphabetically increasingly. */
2625 res = strcmp(mc1->family, mc2->family);
2626 if (res != 0) {
2627 return res;
2630 /* Within the same family, machine types sort in decreasing order. */
2631 return strcmp(object_class_get_name(OBJECT_CLASS(mc2)),
2632 object_class_get_name(OBJECT_CLASS(mc1)));
2635 static MachineClass *machine_parse(const char *name)
2637 MachineClass *mc = NULL;
2638 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
2640 if (name) {
2641 mc = find_machine(name);
2643 if (mc) {
2644 g_slist_free(machines);
2645 return mc;
2647 if (name && !is_help_option(name)) {
2648 error_report("unsupported machine type");
2649 error_printf("Use -machine help to list supported machines\n");
2650 } else {
2651 printf("Supported machines are:\n");
2652 machines = g_slist_sort(machines, machine_class_cmp);
2653 for (el = machines; el; el = el->next) {
2654 MachineClass *mc = el->data;
2655 if (mc->alias) {
2656 printf("%-20s %s (alias of %s)\n", mc->alias, mc->desc, mc->name);
2658 printf("%-20s %s%s\n", mc->name, mc->desc,
2659 mc->is_default ? " (default)" : "");
2663 g_slist_free(machines);
2664 exit(!name || !is_help_option(name));
2667 void qemu_add_exit_notifier(Notifier *notify)
2669 notifier_list_add(&exit_notifiers, notify);
2672 void qemu_remove_exit_notifier(Notifier *notify)
2674 notifier_remove(notify);
2677 static void qemu_run_exit_notifiers(void)
2679 notifier_list_notify(&exit_notifiers, NULL);
2682 bool machine_init_done;
2684 void qemu_add_machine_init_done_notifier(Notifier *notify)
2686 notifier_list_add(&machine_init_done_notifiers, notify);
2687 if (machine_init_done) {
2688 notify->notify(notify, NULL);
2692 void qemu_remove_machine_init_done_notifier(Notifier *notify)
2694 notifier_remove(notify);
2697 static void qemu_run_machine_init_done_notifiers(void)
2699 machine_init_done = true;
2700 notifier_list_notify(&machine_init_done_notifiers, NULL);
2703 static const QEMUOption *lookup_opt(int argc, char **argv,
2704 const char **poptarg, int *poptind)
2706 const QEMUOption *popt;
2707 int optind = *poptind;
2708 char *r = argv[optind];
2709 const char *optarg;
2711 loc_set_cmdline(argv, optind, 1);
2712 optind++;
2713 /* Treat --foo the same as -foo. */
2714 if (r[1] == '-')
2715 r++;
2716 popt = qemu_options;
2717 for(;;) {
2718 if (!popt->name) {
2719 error_report("invalid option");
2720 exit(1);
2722 if (!strcmp(popt->name, r + 1))
2723 break;
2724 popt++;
2726 if (popt->flags & HAS_ARG) {
2727 if (optind >= argc) {
2728 error_report("requires an argument");
2729 exit(1);
2731 optarg = argv[optind++];
2732 loc_set_cmdline(argv, optind - 2, 2);
2733 } else {
2734 optarg = NULL;
2737 *poptarg = optarg;
2738 *poptind = optind;
2740 return popt;
2743 static MachineClass *select_machine(void)
2745 MachineClass *machine_class = find_default_machine();
2746 const char *optarg;
2747 QemuOpts *opts;
2748 Location loc;
2750 loc_push_none(&loc);
2752 opts = qemu_get_machine_opts();
2753 qemu_opts_loc_restore(opts);
2755 optarg = qemu_opt_get(opts, "type");
2756 if (optarg) {
2757 machine_class = machine_parse(optarg);
2760 if (!machine_class) {
2761 error_report("No machine specified, and there is no default");
2762 error_printf("Use -machine help to list supported machines\n");
2763 exit(1);
2766 loc_pop(&loc);
2767 return machine_class;
2770 static int machine_set_property(void *opaque,
2771 const char *name, const char *value,
2772 Error **errp)
2774 Object *obj = OBJECT(opaque);
2775 Error *local_err = NULL;
2776 char *p, *qom_name;
2778 if (strcmp(name, "type") == 0) {
2779 return 0;
2782 qom_name = g_strdup(name);
2783 for (p = qom_name; *p; p++) {
2784 if (*p == '_') {
2785 *p = '-';
2789 object_property_parse(obj, value, qom_name, &local_err);
2790 g_free(qom_name);
2792 if (local_err) {
2793 error_report_err(local_err);
2794 return -1;
2797 return 0;
2802 * Initial object creation happens before all other
2803 * QEMU data types are created. The majority of objects
2804 * can be created at this point. The rng-egd object
2805 * cannot be created here, as it depends on the chardev
2806 * already existing.
2808 static bool object_create_initial(const char *type)
2810 if (g_str_equal(type, "rng-egd") ||
2811 g_str_has_prefix(type, "pr-manager-")) {
2812 return false;
2815 #if defined(CONFIG_VHOST_USER) && defined(CONFIG_LINUX)
2816 if (g_str_equal(type, "cryptodev-vhost-user")) {
2817 return false;
2819 #endif
2822 * return false for concrete netfilters since
2823 * they depend on netdevs already existing
2825 if (g_str_equal(type, "filter-buffer") ||
2826 g_str_equal(type, "filter-dump") ||
2827 g_str_equal(type, "filter-mirror") ||
2828 g_str_equal(type, "filter-redirector") ||
2829 g_str_equal(type, "colo-compare") ||
2830 g_str_equal(type, "filter-rewriter") ||
2831 g_str_equal(type, "filter-replay")) {
2832 return false;
2835 /* Memory allocation by backends needs to be done
2836 * after configure_accelerator() (due to the tcg_enabled()
2837 * checks at memory_region_init_*()).
2839 * Also, allocation of large amounts of memory may delay
2840 * chardev initialization for too long, and trigger timeouts
2841 * on software that waits for a monitor socket to be created
2842 * (e.g. libvirt).
2844 if (g_str_has_prefix(type, "memory-backend-")) {
2845 return false;
2848 return true;
2853 * The remainder of object creation happens after the
2854 * creation of chardev, fsdev, net clients and device data types.
2856 static bool object_create_delayed(const char *type)
2858 return !object_create_initial(type);
2862 static void set_memory_options(uint64_t *ram_slots, ram_addr_t *maxram_size,
2863 MachineClass *mc)
2865 uint64_t sz;
2866 const char *mem_str;
2867 const ram_addr_t default_ram_size = mc->default_ram_size;
2868 QemuOpts *opts = qemu_find_opts_singleton("memory");
2869 Location loc;
2871 loc_push_none(&loc);
2872 qemu_opts_loc_restore(opts);
2874 sz = 0;
2875 mem_str = qemu_opt_get(opts, "size");
2876 if (mem_str) {
2877 if (!*mem_str) {
2878 error_report("missing 'size' option value");
2879 exit(EXIT_FAILURE);
2882 sz = qemu_opt_get_size(opts, "size", ram_size);
2884 /* Fix up legacy suffix-less format */
2885 if (g_ascii_isdigit(mem_str[strlen(mem_str) - 1])) {
2886 uint64_t overflow_check = sz;
2888 sz <<= 20;
2889 if ((sz >> 20) != overflow_check) {
2890 error_report("too large 'size' option value");
2891 exit(EXIT_FAILURE);
2896 /* backward compatibility behaviour for case "-m 0" */
2897 if (sz == 0) {
2898 sz = default_ram_size;
2901 sz = QEMU_ALIGN_UP(sz, 8192);
2902 ram_size = sz;
2903 if (ram_size != sz) {
2904 error_report("ram size too large");
2905 exit(EXIT_FAILURE);
2908 /* store value for the future use */
2909 qemu_opt_set_number(opts, "size", ram_size, &error_abort);
2910 *maxram_size = ram_size;
2912 if (qemu_opt_get(opts, "maxmem")) {
2913 uint64_t slots;
2915 sz = qemu_opt_get_size(opts, "maxmem", 0);
2916 slots = qemu_opt_get_number(opts, "slots", 0);
2917 if (sz < ram_size) {
2918 error_report("invalid value of -m option maxmem: "
2919 "maximum memory size (0x%" PRIx64 ") must be at least "
2920 "the initial memory size (0x" RAM_ADDR_FMT ")",
2921 sz, ram_size);
2922 exit(EXIT_FAILURE);
2923 } else if (slots && sz == ram_size) {
2924 error_report("invalid value of -m option maxmem: "
2925 "memory slots were specified but maximum memory size "
2926 "(0x%" PRIx64 ") is equal to the initial memory size "
2927 "(0x" RAM_ADDR_FMT ")", sz, ram_size);
2928 exit(EXIT_FAILURE);
2931 *maxram_size = sz;
2932 *ram_slots = slots;
2933 } else if (qemu_opt_get(opts, "slots")) {
2934 error_report("invalid -m option value: missing 'maxmem' option");
2935 exit(EXIT_FAILURE);
2938 loc_pop(&loc);
2941 static int global_init_func(void *opaque, QemuOpts *opts, Error **errp)
2943 GlobalProperty *g;
2945 g = g_malloc0(sizeof(*g));
2946 g->driver = qemu_opt_get(opts, "driver");
2947 g->property = qemu_opt_get(opts, "property");
2948 g->value = qemu_opt_get(opts, "value");
2949 g->user_provided = true;
2950 g->errp = &error_fatal;
2951 qdev_prop_register_global(g);
2952 return 0;
2955 static int qemu_read_default_config_file(void)
2957 int ret;
2959 ret = qemu_read_config_file(CONFIG_QEMU_CONFDIR "/qemu.conf");
2960 if (ret < 0 && ret != -ENOENT) {
2961 return ret;
2964 return 0;
2967 static void user_register_global_props(void)
2969 qemu_opts_foreach(qemu_find_opts("global"),
2970 global_init_func, NULL, NULL);
2974 * Note: we should see that these properties are actually having a
2975 * priority: accel < machine < user. This means e.g. when user
2976 * specifies something in "-global", it'll always be used with highest
2977 * priority than either machine/accelerator compat properties.
2979 static void register_global_properties(MachineState *ms)
2981 accel_register_compat_props(ms->accelerator);
2982 machine_register_compat_props(ms);
2983 user_register_global_props();
2986 int main(int argc, char **argv, char **envp)
2988 int i;
2989 int snapshot, linux_boot;
2990 const char *initrd_filename;
2991 const char *kernel_filename, *kernel_cmdline;
2992 const char *boot_order = NULL;
2993 const char *boot_once = NULL;
2994 DisplayState *ds;
2995 QemuOpts *opts, *machine_opts;
2996 QemuOpts *icount_opts = NULL, *accel_opts = NULL;
2997 QemuOptsList *olist;
2998 int optind;
2999 const char *optarg;
3000 const char *loadvm = NULL;
3001 MachineClass *machine_class;
3002 const char *cpu_model;
3003 const char *vga_model = NULL;
3004 const char *qtest_chrdev = NULL;
3005 const char *qtest_log = NULL;
3006 const char *pid_file = NULL;
3007 const char *incoming = NULL;
3008 bool userconfig = true;
3009 bool nographic = false;
3010 int display_remote = 0;
3011 const char *log_mask = NULL;
3012 const char *log_file = NULL;
3013 char *trace_file = NULL;
3014 ram_addr_t maxram_size;
3015 uint64_t ram_slots = 0;
3016 FILE *vmstate_dump_file = NULL;
3017 Error *main_loop_err = NULL;
3018 Error *err = NULL;
3019 bool list_data_dirs = false;
3020 char *dir, **dirs;
3021 typedef struct BlockdevOptions_queue {
3022 BlockdevOptions *bdo;
3023 Location loc;
3024 QSIMPLEQ_ENTRY(BlockdevOptions_queue) entry;
3025 } BlockdevOptions_queue;
3026 QSIMPLEQ_HEAD(, BlockdevOptions_queue) bdo_queue
3027 = QSIMPLEQ_HEAD_INITIALIZER(bdo_queue);
3029 module_call_init(MODULE_INIT_TRACE);
3031 qemu_init_cpu_list();
3032 qemu_init_cpu_loop();
3034 qemu_mutex_lock_iothread();
3036 atexit(qemu_run_exit_notifiers);
3037 error_set_progname(argv[0]);
3038 qemu_init_exec_dir(argv[0]);
3040 module_call_init(MODULE_INIT_QOM);
3042 qemu_add_opts(&qemu_drive_opts);
3043 qemu_add_drive_opts(&qemu_legacy_drive_opts);
3044 qemu_add_drive_opts(&qemu_common_drive_opts);
3045 qemu_add_drive_opts(&qemu_drive_opts);
3046 qemu_add_drive_opts(&bdrv_runtime_opts);
3047 qemu_add_opts(&qemu_chardev_opts);
3048 qemu_add_opts(&qemu_device_opts);
3049 qemu_add_opts(&qemu_netdev_opts);
3050 qemu_add_opts(&qemu_nic_opts);
3051 qemu_add_opts(&qemu_net_opts);
3052 qemu_add_opts(&qemu_rtc_opts);
3053 qemu_add_opts(&qemu_global_opts);
3054 qemu_add_opts(&qemu_mon_opts);
3055 qemu_add_opts(&qemu_trace_opts);
3056 qemu_add_opts(&qemu_option_rom_opts);
3057 qemu_add_opts(&qemu_machine_opts);
3058 qemu_add_opts(&qemu_accel_opts);
3059 qemu_add_opts(&qemu_mem_opts);
3060 qemu_add_opts(&qemu_smp_opts);
3061 qemu_add_opts(&qemu_boot_opts);
3062 qemu_add_opts(&qemu_sandbox_opts);
3063 qemu_add_opts(&qemu_add_fd_opts);
3064 qemu_add_opts(&qemu_object_opts);
3065 qemu_add_opts(&qemu_tpmdev_opts);
3066 qemu_add_opts(&qemu_realtime_opts);
3067 qemu_add_opts(&qemu_msg_opts);
3068 qemu_add_opts(&qemu_name_opts);
3069 qemu_add_opts(&qemu_numa_opts);
3070 qemu_add_opts(&qemu_icount_opts);
3071 qemu_add_opts(&qemu_semihosting_config_opts);
3072 qemu_add_opts(&qemu_fw_cfg_opts);
3073 module_call_init(MODULE_INIT_OPTS);
3075 runstate_init();
3076 postcopy_infrastructure_init();
3078 if (qcrypto_init(&err) < 0) {
3079 error_reportf_err(err, "cannot initialize crypto: ");
3080 exit(1);
3082 rtc_clock = QEMU_CLOCK_HOST;
3084 QLIST_INIT (&vm_change_state_head);
3085 os_setup_early_signal_handling();
3087 cpu_model = NULL;
3088 snapshot = 0;
3090 nb_nics = 0;
3092 bdrv_init_with_whitelist();
3094 autostart = 1;
3096 /* first pass of option parsing */
3097 optind = 1;
3098 while (optind < argc) {
3099 if (argv[optind][0] != '-') {
3100 /* disk image */
3101 optind++;
3102 } else {
3103 const QEMUOption *popt;
3105 popt = lookup_opt(argc, argv, &optarg, &optind);
3106 switch (popt->index) {
3107 case QEMU_OPTION_nodefconfig:
3108 case QEMU_OPTION_nouserconfig:
3109 userconfig = false;
3110 break;
3115 if (userconfig) {
3116 if (qemu_read_default_config_file() < 0) {
3117 exit(1);
3121 /* second pass of option parsing */
3122 optind = 1;
3123 for(;;) {
3124 if (optind >= argc)
3125 break;
3126 if (argv[optind][0] != '-') {
3127 drive_add(IF_DEFAULT, 0, argv[optind++], HD_OPTS);
3128 } else {
3129 const QEMUOption *popt;
3131 popt = lookup_opt(argc, argv, &optarg, &optind);
3132 if (!(popt->arch_mask & arch_type)) {
3133 error_report("Option not supported for this target");
3134 exit(1);
3136 switch(popt->index) {
3137 case QEMU_OPTION_cpu:
3138 /* hw initialization will check this */
3139 cpu_model = optarg;
3140 break;
3141 case QEMU_OPTION_hda:
3142 case QEMU_OPTION_hdb:
3143 case QEMU_OPTION_hdc:
3144 case QEMU_OPTION_hdd:
3145 drive_add(IF_DEFAULT, popt->index - QEMU_OPTION_hda, optarg,
3146 HD_OPTS);
3147 break;
3148 case QEMU_OPTION_blockdev:
3150 Visitor *v;
3151 BlockdevOptions_queue *bdo;
3153 v = qobject_input_visitor_new_str(optarg, "driver", &err);
3154 if (!v) {
3155 error_report_err(err);
3156 exit(1);
3159 bdo = g_new(BlockdevOptions_queue, 1);
3160 visit_type_BlockdevOptions(v, NULL, &bdo->bdo,
3161 &error_fatal);
3162 visit_free(v);
3163 loc_save(&bdo->loc);
3164 QSIMPLEQ_INSERT_TAIL(&bdo_queue, bdo, entry);
3165 break;
3167 case QEMU_OPTION_drive:
3168 if (drive_def(optarg) == NULL) {
3169 exit(1);
3171 break;
3172 case QEMU_OPTION_set:
3173 if (qemu_set_option(optarg) != 0)
3174 exit(1);
3175 break;
3176 case QEMU_OPTION_global:
3177 if (qemu_global_option(optarg) != 0)
3178 exit(1);
3179 break;
3180 case QEMU_OPTION_mtdblock:
3181 drive_add(IF_MTD, -1, optarg, MTD_OPTS);
3182 break;
3183 case QEMU_OPTION_sd:
3184 drive_add(IF_SD, -1, optarg, SD_OPTS);
3185 break;
3186 case QEMU_OPTION_pflash:
3187 drive_add(IF_PFLASH, -1, optarg, PFLASH_OPTS);
3188 break;
3189 case QEMU_OPTION_snapshot:
3190 snapshot = 1;
3191 break;
3192 case QEMU_OPTION_numa:
3193 opts = qemu_opts_parse_noisily(qemu_find_opts("numa"),
3194 optarg, true);
3195 if (!opts) {
3196 exit(1);
3198 break;
3199 case QEMU_OPTION_display:
3200 parse_display(optarg);
3201 break;
3202 case QEMU_OPTION_nographic:
3203 olist = qemu_find_opts("machine");
3204 qemu_opts_parse_noisily(olist, "graphics=off", false);
3205 nographic = true;
3206 dpy.type = DISPLAY_TYPE_NONE;
3207 break;
3208 case QEMU_OPTION_curses:
3209 #ifdef CONFIG_CURSES
3210 dpy.type = DISPLAY_TYPE_CURSES;
3211 #else
3212 error_report("curses support is disabled");
3213 exit(1);
3214 #endif
3215 break;
3216 case QEMU_OPTION_portrait:
3217 graphic_rotate = 90;
3218 break;
3219 case QEMU_OPTION_rotate:
3220 graphic_rotate = strtol(optarg, (char **) &optarg, 10);
3221 if (graphic_rotate != 0 && graphic_rotate != 90 &&
3222 graphic_rotate != 180 && graphic_rotate != 270) {
3223 error_report("only 90, 180, 270 deg rotation is available");
3224 exit(1);
3226 break;
3227 case QEMU_OPTION_kernel:
3228 qemu_opts_set(qemu_find_opts("machine"), 0, "kernel", optarg,
3229 &error_abort);
3230 break;
3231 case QEMU_OPTION_initrd:
3232 qemu_opts_set(qemu_find_opts("machine"), 0, "initrd", optarg,
3233 &error_abort);
3234 break;
3235 case QEMU_OPTION_append:
3236 qemu_opts_set(qemu_find_opts("machine"), 0, "append", optarg,
3237 &error_abort);
3238 break;
3239 case QEMU_OPTION_dtb:
3240 qemu_opts_set(qemu_find_opts("machine"), 0, "dtb", optarg,
3241 &error_abort);
3242 break;
3243 case QEMU_OPTION_cdrom:
3244 drive_add(IF_DEFAULT, 2, optarg, CDROM_OPTS);
3245 break;
3246 case QEMU_OPTION_boot:
3247 opts = qemu_opts_parse_noisily(qemu_find_opts("boot-opts"),
3248 optarg, true);
3249 if (!opts) {
3250 exit(1);
3252 break;
3253 case QEMU_OPTION_fda:
3254 case QEMU_OPTION_fdb:
3255 drive_add(IF_FLOPPY, popt->index - QEMU_OPTION_fda,
3256 optarg, FD_OPTS);
3257 break;
3258 case QEMU_OPTION_no_fd_bootchk:
3259 fd_bootchk = 0;
3260 break;
3261 case QEMU_OPTION_netdev:
3262 default_net = 0;
3263 if (net_client_parse(qemu_find_opts("netdev"), optarg) == -1) {
3264 exit(1);
3266 break;
3267 case QEMU_OPTION_nic:
3268 default_net = 0;
3269 if (net_client_parse(qemu_find_opts("nic"), optarg) == -1) {
3270 exit(1);
3272 break;
3273 case QEMU_OPTION_net:
3274 default_net = 0;
3275 if (net_client_parse(qemu_find_opts("net"), optarg) == -1) {
3276 exit(1);
3278 break;
3279 #ifdef CONFIG_LIBISCSI
3280 case QEMU_OPTION_iscsi:
3281 opts = qemu_opts_parse_noisily(qemu_find_opts("iscsi"),
3282 optarg, false);
3283 if (!opts) {
3284 exit(1);
3286 break;
3287 #endif
3288 #ifdef CONFIG_SLIRP
3289 case QEMU_OPTION_tftp:
3290 error_report("The -tftp option is deprecated. "
3291 "Please use '-netdev user,tftp=...' instead.");
3292 legacy_tftp_prefix = optarg;
3293 break;
3294 case QEMU_OPTION_bootp:
3295 error_report("The -bootp option is deprecated. "
3296 "Please use '-netdev user,bootfile=...' instead.");
3297 legacy_bootp_filename = optarg;
3298 break;
3299 case QEMU_OPTION_redir:
3300 error_report("The -redir option is deprecated. "
3301 "Please use '-netdev user,hostfwd=...' instead.");
3302 if (net_slirp_redir(optarg) < 0)
3303 exit(1);
3304 break;
3305 #endif
3306 case QEMU_OPTION_bt:
3307 add_device_config(DEV_BT, optarg);
3308 break;
3309 case QEMU_OPTION_audio_help:
3310 AUD_help ();
3311 exit (0);
3312 break;
3313 case QEMU_OPTION_soundhw:
3314 select_soundhw (optarg);
3315 break;
3316 case QEMU_OPTION_h:
3317 help(0);
3318 break;
3319 case QEMU_OPTION_version:
3320 version();
3321 exit(0);
3322 break;
3323 case QEMU_OPTION_m:
3324 opts = qemu_opts_parse_noisily(qemu_find_opts("memory"),
3325 optarg, true);
3326 if (!opts) {
3327 exit(EXIT_FAILURE);
3329 break;
3330 #ifdef CONFIG_TPM
3331 case QEMU_OPTION_tpmdev:
3332 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg) < 0) {
3333 exit(1);
3335 break;
3336 #endif
3337 case QEMU_OPTION_mempath:
3338 mem_path = optarg;
3339 break;
3340 case QEMU_OPTION_mem_prealloc:
3341 mem_prealloc = 1;
3342 break;
3343 case QEMU_OPTION_d:
3344 log_mask = optarg;
3345 break;
3346 case QEMU_OPTION_D:
3347 log_file = optarg;
3348 break;
3349 case QEMU_OPTION_DFILTER:
3350 qemu_set_dfilter_ranges(optarg, &error_fatal);
3351 break;
3352 case QEMU_OPTION_s:
3353 add_device_config(DEV_GDB, "tcp::" DEFAULT_GDBSTUB_PORT);
3354 break;
3355 case QEMU_OPTION_gdb:
3356 add_device_config(DEV_GDB, optarg);
3357 break;
3358 case QEMU_OPTION_L:
3359 if (is_help_option(optarg)) {
3360 list_data_dirs = true;
3361 } else {
3362 qemu_add_data_dir(optarg);
3364 break;
3365 case QEMU_OPTION_bios:
3366 qemu_opts_set(qemu_find_opts("machine"), 0, "firmware", optarg,
3367 &error_abort);
3368 break;
3369 case QEMU_OPTION_singlestep:
3370 singlestep = 1;
3371 break;
3372 case QEMU_OPTION_S:
3373 autostart = 0;
3374 break;
3375 case QEMU_OPTION_k:
3376 keyboard_layout = optarg;
3377 break;
3378 case QEMU_OPTION_localtime:
3379 rtc_utc = 0;
3380 warn_report("This option is deprecated, "
3381 "use '-rtc base=localtime' instead.");
3382 break;
3383 case QEMU_OPTION_vga:
3384 vga_model = optarg;
3385 default_vga = 0;
3386 break;
3387 case QEMU_OPTION_g:
3389 const char *p;
3390 int w, h, depth;
3391 p = optarg;
3392 w = strtol(p, (char **)&p, 10);
3393 if (w <= 0) {
3394 graphic_error:
3395 error_report("invalid resolution or depth");
3396 exit(1);
3398 if (*p != 'x')
3399 goto graphic_error;
3400 p++;
3401 h = strtol(p, (char **)&p, 10);
3402 if (h <= 0)
3403 goto graphic_error;
3404 if (*p == 'x') {
3405 p++;
3406 depth = strtol(p, (char **)&p, 10);
3407 if (depth != 8 && depth != 15 && depth != 16 &&
3408 depth != 24 && depth != 32)
3409 goto graphic_error;
3410 } else if (*p == '\0') {
3411 depth = graphic_depth;
3412 } else {
3413 goto graphic_error;
3416 graphic_width = w;
3417 graphic_height = h;
3418 graphic_depth = depth;
3420 break;
3421 case QEMU_OPTION_echr:
3423 char *r;
3424 term_escape_char = strtol(optarg, &r, 0);
3425 if (r == optarg)
3426 printf("Bad argument to echr\n");
3427 break;
3429 case QEMU_OPTION_monitor:
3430 default_monitor = 0;
3431 if (strncmp(optarg, "none", 4)) {
3432 monitor_parse(optarg, "readline", false);
3434 break;
3435 case QEMU_OPTION_qmp:
3436 monitor_parse(optarg, "control", false);
3437 default_monitor = 0;
3438 break;
3439 case QEMU_OPTION_qmp_pretty:
3440 monitor_parse(optarg, "control", true);
3441 default_monitor = 0;
3442 break;
3443 case QEMU_OPTION_mon:
3444 opts = qemu_opts_parse_noisily(qemu_find_opts("mon"), optarg,
3445 true);
3446 if (!opts) {
3447 exit(1);
3449 default_monitor = 0;
3450 break;
3451 case QEMU_OPTION_chardev:
3452 opts = qemu_opts_parse_noisily(qemu_find_opts("chardev"),
3453 optarg, true);
3454 if (!opts) {
3455 exit(1);
3457 break;
3458 case QEMU_OPTION_fsdev:
3459 olist = qemu_find_opts("fsdev");
3460 if (!olist) {
3461 error_report("fsdev support is disabled");
3462 exit(1);
3464 opts = qemu_opts_parse_noisily(olist, optarg, true);
3465 if (!opts) {
3466 exit(1);
3468 break;
3469 case QEMU_OPTION_virtfs: {
3470 QemuOpts *fsdev;
3471 QemuOpts *device;
3472 const char *writeout, *sock_fd, *socket, *path, *security_model;
3474 olist = qemu_find_opts("virtfs");
3475 if (!olist) {
3476 error_report("virtfs support is disabled");
3477 exit(1);
3479 opts = qemu_opts_parse_noisily(olist, optarg, true);
3480 if (!opts) {
3481 exit(1);
3484 if (qemu_opt_get(opts, "fsdriver") == NULL ||
3485 qemu_opt_get(opts, "mount_tag") == NULL) {
3486 error_report("Usage: -virtfs fsdriver,mount_tag=tag");
3487 exit(1);
3489 fsdev = qemu_opts_create(qemu_find_opts("fsdev"),
3490 qemu_opts_id(opts) ?:
3491 qemu_opt_get(opts, "mount_tag"),
3492 1, NULL);
3493 if (!fsdev) {
3494 error_report("duplicate or invalid fsdev id: %s",
3495 qemu_opt_get(opts, "mount_tag"));
3496 exit(1);
3499 writeout = qemu_opt_get(opts, "writeout");
3500 if (writeout) {
3501 #ifdef CONFIG_SYNC_FILE_RANGE
3502 qemu_opt_set(fsdev, "writeout", writeout, &error_abort);
3503 #else
3504 error_report("writeout=immediate not supported "
3505 "on this platform");
3506 exit(1);
3507 #endif
3509 qemu_opt_set(fsdev, "fsdriver",
3510 qemu_opt_get(opts, "fsdriver"), &error_abort);
3511 path = qemu_opt_get(opts, "path");
3512 if (path) {
3513 qemu_opt_set(fsdev, "path", path, &error_abort);
3515 security_model = qemu_opt_get(opts, "security_model");
3516 if (security_model) {
3517 qemu_opt_set(fsdev, "security_model", security_model,
3518 &error_abort);
3520 socket = qemu_opt_get(opts, "socket");
3521 if (socket) {
3522 qemu_opt_set(fsdev, "socket", socket, &error_abort);
3524 sock_fd = qemu_opt_get(opts, "sock_fd");
3525 if (sock_fd) {
3526 qemu_opt_set(fsdev, "sock_fd", sock_fd, &error_abort);
3529 qemu_opt_set_bool(fsdev, "readonly",
3530 qemu_opt_get_bool(opts, "readonly", 0),
3531 &error_abort);
3532 device = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
3533 &error_abort);
3534 qemu_opt_set(device, "driver", "virtio-9p-pci", &error_abort);
3535 qemu_opt_set(device, "fsdev",
3536 qemu_opts_id(fsdev), &error_abort);
3537 qemu_opt_set(device, "mount_tag",
3538 qemu_opt_get(opts, "mount_tag"), &error_abort);
3539 break;
3541 case QEMU_OPTION_virtfs_synth: {
3542 QemuOpts *fsdev;
3543 QemuOpts *device;
3545 fsdev = qemu_opts_create(qemu_find_opts("fsdev"), "v_synth",
3546 1, NULL);
3547 if (!fsdev) {
3548 error_report("duplicate option: %s", "virtfs_synth");
3549 exit(1);
3551 qemu_opt_set(fsdev, "fsdriver", "synth", &error_abort);
3553 device = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
3554 &error_abort);
3555 qemu_opt_set(device, "driver", "virtio-9p-pci", &error_abort);
3556 qemu_opt_set(device, "fsdev", "v_synth", &error_abort);
3557 qemu_opt_set(device, "mount_tag", "v_synth", &error_abort);
3558 break;
3560 case QEMU_OPTION_serial:
3561 add_device_config(DEV_SERIAL, optarg);
3562 default_serial = 0;
3563 if (strncmp(optarg, "mon:", 4) == 0) {
3564 default_monitor = 0;
3566 break;
3567 case QEMU_OPTION_watchdog:
3568 if (watchdog) {
3569 error_report("only one watchdog option may be given");
3570 return 1;
3572 watchdog = optarg;
3573 break;
3574 case QEMU_OPTION_watchdog_action:
3575 if (select_watchdog_action(optarg) == -1) {
3576 error_report("unknown -watchdog-action parameter");
3577 exit(1);
3579 break;
3580 case QEMU_OPTION_virtiocon:
3581 warn_report("This option is deprecated, "
3582 "use '-device virtconsole' instead");
3583 add_device_config(DEV_VIRTCON, optarg);
3584 default_virtcon = 0;
3585 if (strncmp(optarg, "mon:", 4) == 0) {
3586 default_monitor = 0;
3588 break;
3589 case QEMU_OPTION_parallel:
3590 add_device_config(DEV_PARALLEL, optarg);
3591 default_parallel = 0;
3592 if (strncmp(optarg, "mon:", 4) == 0) {
3593 default_monitor = 0;
3595 break;
3596 case QEMU_OPTION_debugcon:
3597 add_device_config(DEV_DEBUGCON, optarg);
3598 break;
3599 case QEMU_OPTION_loadvm:
3600 loadvm = optarg;
3601 break;
3602 case QEMU_OPTION_full_screen:
3603 dpy.has_full_screen = true;
3604 dpy.full_screen = true;
3605 break;
3606 case QEMU_OPTION_no_frame:
3607 g_printerr("The -no-frame switch is deprecated, and will be\n"
3608 "removed in a future release.\n");
3609 no_frame = 1;
3610 break;
3611 case QEMU_OPTION_alt_grab:
3612 alt_grab = 1;
3613 break;
3614 case QEMU_OPTION_ctrl_grab:
3615 ctrl_grab = 1;
3616 break;
3617 case QEMU_OPTION_no_quit:
3618 dpy.has_window_close = true;
3619 dpy.window_close = false;
3620 break;
3621 case QEMU_OPTION_sdl:
3622 #ifdef CONFIG_SDL
3623 dpy.type = DISPLAY_TYPE_SDL;
3624 break;
3625 #else
3626 error_report("SDL support is disabled");
3627 exit(1);
3628 #endif
3629 case QEMU_OPTION_pidfile:
3630 pid_file = optarg;
3631 break;
3632 case QEMU_OPTION_win2k_hack:
3633 win2k_install_hack = 1;
3634 break;
3635 case QEMU_OPTION_rtc_td_hack: {
3636 static GlobalProperty slew_lost_ticks = {
3637 .driver = "mc146818rtc",
3638 .property = "lost_tick_policy",
3639 .value = "slew",
3642 qdev_prop_register_global(&slew_lost_ticks);
3643 warn_report("This option is deprecated, "
3644 "use '-rtc driftfix=slew' instead.");
3645 break;
3647 case QEMU_OPTION_acpitable:
3648 opts = qemu_opts_parse_noisily(qemu_find_opts("acpi"),
3649 optarg, true);
3650 if (!opts) {
3651 exit(1);
3653 acpi_table_add(opts, &error_fatal);
3654 break;
3655 case QEMU_OPTION_smbios:
3656 opts = qemu_opts_parse_noisily(qemu_find_opts("smbios"),
3657 optarg, false);
3658 if (!opts) {
3659 exit(1);
3661 smbios_entry_add(opts, &error_fatal);
3662 break;
3663 case QEMU_OPTION_fwcfg:
3664 opts = qemu_opts_parse_noisily(qemu_find_opts("fw_cfg"),
3665 optarg, true);
3666 if (opts == NULL) {
3667 exit(1);
3669 break;
3670 case QEMU_OPTION_enable_kvm:
3671 olist = qemu_find_opts("machine");
3672 qemu_opts_parse_noisily(olist, "accel=kvm", false);
3673 break;
3674 case QEMU_OPTION_enable_hax:
3675 olist = qemu_find_opts("machine");
3676 qemu_opts_parse_noisily(olist, "accel=hax", false);
3677 break;
3678 case QEMU_OPTION_M:
3679 case QEMU_OPTION_machine:
3680 olist = qemu_find_opts("machine");
3681 opts = qemu_opts_parse_noisily(olist, optarg, true);
3682 if (!opts) {
3683 exit(1);
3685 break;
3686 case QEMU_OPTION_no_kvm:
3687 olist = qemu_find_opts("machine");
3688 qemu_opts_parse_noisily(olist, "accel=tcg", false);
3689 break;
3690 case QEMU_OPTION_accel:
3691 accel_opts = qemu_opts_parse_noisily(qemu_find_opts("accel"),
3692 optarg, true);
3693 optarg = qemu_opt_get(accel_opts, "accel");
3694 if (!optarg || is_help_option(optarg)) {
3695 error_printf("Possible accelerators: kvm, xen, hax, tcg\n");
3696 exit(0);
3698 opts = qemu_opts_create(qemu_find_opts("machine"), NULL,
3699 false, &error_abort);
3700 qemu_opt_set(opts, "accel", optarg, &error_abort);
3701 break;
3702 case QEMU_OPTION_usb:
3703 olist = qemu_find_opts("machine");
3704 qemu_opts_parse_noisily(olist, "usb=on", false);
3705 break;
3706 case QEMU_OPTION_usbdevice:
3707 error_report("'-usbdevice' is deprecated, please use "
3708 "'-device usb-...' instead");
3709 olist = qemu_find_opts("machine");
3710 qemu_opts_parse_noisily(olist, "usb=on", false);
3711 add_device_config(DEV_USB, optarg);
3712 break;
3713 case QEMU_OPTION_device:
3714 if (!qemu_opts_parse_noisily(qemu_find_opts("device"),
3715 optarg, true)) {
3716 exit(1);
3718 break;
3719 case QEMU_OPTION_smp:
3720 if (!qemu_opts_parse_noisily(qemu_find_opts("smp-opts"),
3721 optarg, true)) {
3722 exit(1);
3724 break;
3725 case QEMU_OPTION_vnc:
3726 vnc_parse(optarg, &error_fatal);
3727 break;
3728 case QEMU_OPTION_no_acpi:
3729 acpi_enabled = 0;
3730 break;
3731 case QEMU_OPTION_no_hpet:
3732 no_hpet = 1;
3733 break;
3734 case QEMU_OPTION_balloon:
3735 if (balloon_parse(optarg) < 0) {
3736 error_report("unknown -balloon argument %s", optarg);
3737 exit(1);
3739 break;
3740 case QEMU_OPTION_no_reboot:
3741 no_reboot = 1;
3742 break;
3743 case QEMU_OPTION_no_shutdown:
3744 no_shutdown = 1;
3745 break;
3746 case QEMU_OPTION_show_cursor:
3747 cursor_hide = 0;
3748 break;
3749 case QEMU_OPTION_uuid:
3750 if (qemu_uuid_parse(optarg, &qemu_uuid) < 0) {
3751 error_report("failed to parse UUID string: wrong format");
3752 exit(1);
3754 qemu_uuid_set = true;
3755 break;
3756 case QEMU_OPTION_option_rom:
3757 if (nb_option_roms >= MAX_OPTION_ROMS) {
3758 error_report("too many option ROMs");
3759 exit(1);
3761 opts = qemu_opts_parse_noisily(qemu_find_opts("option-rom"),
3762 optarg, true);
3763 if (!opts) {
3764 exit(1);
3766 option_rom[nb_option_roms].name = qemu_opt_get(opts, "romfile");
3767 option_rom[nb_option_roms].bootindex =
3768 qemu_opt_get_number(opts, "bootindex", -1);
3769 if (!option_rom[nb_option_roms].name) {
3770 error_report("Option ROM file is not specified");
3771 exit(1);
3773 nb_option_roms++;
3774 break;
3775 case QEMU_OPTION_semihosting:
3776 semihosting.enabled = true;
3777 semihosting.target = SEMIHOSTING_TARGET_AUTO;
3778 break;
3779 case QEMU_OPTION_semihosting_config:
3780 semihosting.enabled = true;
3781 opts = qemu_opts_parse_noisily(qemu_find_opts("semihosting-config"),
3782 optarg, false);
3783 if (opts != NULL) {
3784 semihosting.enabled = qemu_opt_get_bool(opts, "enable",
3785 true);
3786 const char *target = qemu_opt_get(opts, "target");
3787 if (target != NULL) {
3788 if (strcmp("native", target) == 0) {
3789 semihosting.target = SEMIHOSTING_TARGET_NATIVE;
3790 } else if (strcmp("gdb", target) == 0) {
3791 semihosting.target = SEMIHOSTING_TARGET_GDB;
3792 } else if (strcmp("auto", target) == 0) {
3793 semihosting.target = SEMIHOSTING_TARGET_AUTO;
3794 } else {
3795 error_report("unsupported semihosting-config %s",
3796 optarg);
3797 exit(1);
3799 } else {
3800 semihosting.target = SEMIHOSTING_TARGET_AUTO;
3802 /* Set semihosting argument count and vector */
3803 qemu_opt_foreach(opts, add_semihosting_arg,
3804 &semihosting, NULL);
3805 } else {
3806 error_report("unsupported semihosting-config %s", optarg);
3807 exit(1);
3809 break;
3810 case QEMU_OPTION_name:
3811 opts = qemu_opts_parse_noisily(qemu_find_opts("name"),
3812 optarg, true);
3813 if (!opts) {
3814 exit(1);
3816 break;
3817 case QEMU_OPTION_prom_env:
3818 if (nb_prom_envs >= MAX_PROM_ENVS) {
3819 error_report("too many prom variables");
3820 exit(1);
3822 prom_envs[nb_prom_envs] = optarg;
3823 nb_prom_envs++;
3824 break;
3825 case QEMU_OPTION_old_param:
3826 old_param = 1;
3827 break;
3828 case QEMU_OPTION_clock:
3829 /* Clock options no longer exist. Keep this option for
3830 * backward compatibility.
3832 break;
3833 case QEMU_OPTION_startdate:
3834 warn_report("This option is deprecated, use '-rtc base=' instead.");
3835 configure_rtc_date_offset(optarg, 1);
3836 break;
3837 case QEMU_OPTION_rtc:
3838 opts = qemu_opts_parse_noisily(qemu_find_opts("rtc"), optarg,
3839 false);
3840 if (!opts) {
3841 exit(1);
3843 configure_rtc(opts);
3844 break;
3845 case QEMU_OPTION_tb_size:
3846 #ifndef CONFIG_TCG
3847 error_report("TCG is disabled");
3848 exit(1);
3849 #endif
3850 if (qemu_strtoul(optarg, NULL, 0, &tcg_tb_size) < 0) {
3851 error_report("Invalid argument to -tb-size");
3852 exit(1);
3854 break;
3855 case QEMU_OPTION_icount:
3856 icount_opts = qemu_opts_parse_noisily(qemu_find_opts("icount"),
3857 optarg, true);
3858 if (!icount_opts) {
3859 exit(1);
3861 break;
3862 case QEMU_OPTION_incoming:
3863 if (!incoming) {
3864 runstate_set(RUN_STATE_INMIGRATE);
3866 incoming = optarg;
3867 break;
3868 case QEMU_OPTION_only_migratable:
3870 * TODO: we can remove this option one day, and we
3871 * should all use:
3873 * "-global migration.only-migratable=true"
3875 qemu_global_option("migration.only-migratable=true");
3876 break;
3877 case QEMU_OPTION_nodefaults:
3878 has_defaults = 0;
3879 break;
3880 case QEMU_OPTION_xen_domid:
3881 if (!(xen_available())) {
3882 error_report("Option not supported for this target");
3883 exit(1);
3885 xen_domid = atoi(optarg);
3886 break;
3887 case QEMU_OPTION_xen_create:
3888 if (!(xen_available())) {
3889 error_report("Option not supported for this target");
3890 exit(1);
3892 xen_mode = XEN_CREATE;
3893 break;
3894 case QEMU_OPTION_xen_attach:
3895 if (!(xen_available())) {
3896 error_report("Option not supported for this target");
3897 exit(1);
3899 xen_mode = XEN_ATTACH;
3900 break;
3901 case QEMU_OPTION_xen_domid_restrict:
3902 if (!(xen_available())) {
3903 error_report("Option not supported for this target");
3904 exit(1);
3906 xen_domid_restrict = true;
3907 break;
3908 case QEMU_OPTION_trace:
3909 g_free(trace_file);
3910 trace_file = trace_opt_parse(optarg);
3911 break;
3912 case QEMU_OPTION_readconfig:
3914 int ret = qemu_read_config_file(optarg);
3915 if (ret < 0) {
3916 error_report("read config %s: %s", optarg,
3917 strerror(-ret));
3918 exit(1);
3920 break;
3922 case QEMU_OPTION_spice:
3923 olist = qemu_find_opts("spice");
3924 if (!olist) {
3925 error_report("spice support is disabled");
3926 exit(1);
3928 opts = qemu_opts_parse_noisily(olist, optarg, false);
3929 if (!opts) {
3930 exit(1);
3932 display_remote++;
3933 break;
3934 case QEMU_OPTION_writeconfig:
3936 FILE *fp;
3937 if (strcmp(optarg, "-") == 0) {
3938 fp = stdout;
3939 } else {
3940 fp = fopen(optarg, "w");
3941 if (fp == NULL) {
3942 error_report("open %s: %s", optarg,
3943 strerror(errno));
3944 exit(1);
3947 qemu_config_write(fp);
3948 if (fp != stdout) {
3949 fclose(fp);
3951 break;
3953 case QEMU_OPTION_qtest:
3954 qtest_chrdev = optarg;
3955 break;
3956 case QEMU_OPTION_qtest_log:
3957 qtest_log = optarg;
3958 break;
3959 case QEMU_OPTION_sandbox:
3960 opts = qemu_opts_parse_noisily(qemu_find_opts("sandbox"),
3961 optarg, true);
3962 if (!opts) {
3963 exit(1);
3965 break;
3966 case QEMU_OPTION_add_fd:
3967 #ifndef _WIN32
3968 opts = qemu_opts_parse_noisily(qemu_find_opts("add-fd"),
3969 optarg, false);
3970 if (!opts) {
3971 exit(1);
3973 #else
3974 error_report("File descriptor passing is disabled on this "
3975 "platform");
3976 exit(1);
3977 #endif
3978 break;
3979 case QEMU_OPTION_object:
3980 opts = qemu_opts_parse_noisily(qemu_find_opts("object"),
3981 optarg, true);
3982 if (!opts) {
3983 exit(1);
3985 break;
3986 case QEMU_OPTION_realtime:
3987 opts = qemu_opts_parse_noisily(qemu_find_opts("realtime"),
3988 optarg, false);
3989 if (!opts) {
3990 exit(1);
3992 enable_mlock = qemu_opt_get_bool(opts, "mlock", true);
3993 break;
3994 case QEMU_OPTION_msg:
3995 opts = qemu_opts_parse_noisily(qemu_find_opts("msg"), optarg,
3996 false);
3997 if (!opts) {
3998 exit(1);
4000 configure_msg(opts);
4001 break;
4002 case QEMU_OPTION_dump_vmstate:
4003 if (vmstate_dump_file) {
4004 error_report("only one '-dump-vmstate' "
4005 "option may be given");
4006 exit(1);
4008 vmstate_dump_file = fopen(optarg, "w");
4009 if (vmstate_dump_file == NULL) {
4010 error_report("open %s: %s", optarg, strerror(errno));
4011 exit(1);
4013 break;
4014 default:
4015 if (os_parse_cmd_args(popt->index, optarg)) {
4016 error_report("Option not supported in this build");
4017 exit(1);
4023 * Clear error location left behind by the loop.
4024 * Best done right after the loop. Do not insert code here!
4026 loc_set_none();
4028 replay_configure(icount_opts);
4030 machine_class = select_machine();
4032 set_memory_options(&ram_slots, &maxram_size, machine_class);
4034 os_daemonize();
4035 rcu_disable_atfork();
4037 if (pid_file && qemu_create_pidfile(pid_file) != 0) {
4038 error_report("could not acquire pid file: %s", strerror(errno));
4039 exit(1);
4042 if (qemu_init_main_loop(&main_loop_err)) {
4043 error_report_err(main_loop_err);
4044 exit(1);
4047 if (qemu_opts_foreach(qemu_find_opts("sandbox"),
4048 parse_sandbox, NULL, NULL)) {
4049 exit(1);
4052 if (qemu_opts_foreach(qemu_find_opts("name"),
4053 parse_name, NULL, NULL)) {
4054 exit(1);
4057 #ifndef _WIN32
4058 if (qemu_opts_foreach(qemu_find_opts("add-fd"),
4059 parse_add_fd, NULL, NULL)) {
4060 exit(1);
4063 if (qemu_opts_foreach(qemu_find_opts("add-fd"),
4064 cleanup_add_fd, NULL, NULL)) {
4065 exit(1);
4067 #endif
4069 current_machine = MACHINE(object_new(object_class_get_name(
4070 OBJECT_CLASS(machine_class))));
4071 if (machine_help_func(qemu_get_machine_opts(), current_machine)) {
4072 exit(0);
4074 object_property_add_child(object_get_root(), "machine",
4075 OBJECT(current_machine), &error_abort);
4077 if (machine_class->minimum_page_bits) {
4078 if (!set_preferred_target_page_bits(machine_class->minimum_page_bits)) {
4079 /* This would be a board error: specifying a minimum smaller than
4080 * a target's compile-time fixed setting.
4082 g_assert_not_reached();
4086 cpu_exec_init_all();
4088 if (machine_class->hw_version) {
4089 qemu_set_hw_version(machine_class->hw_version);
4092 if (cpu_model && is_help_option(cpu_model)) {
4093 list_cpus(stdout, &fprintf, cpu_model);
4094 exit(0);
4097 if (!trace_init_backends()) {
4098 exit(1);
4100 trace_init_file(trace_file);
4102 /* Open the logfile at this point and set the log mask if necessary.
4104 if (log_file) {
4105 qemu_set_log_filename(log_file, &error_fatal);
4108 if (log_mask) {
4109 int mask;
4110 mask = qemu_str_to_log_mask(log_mask);
4111 if (!mask) {
4112 qemu_print_log_usage(stdout);
4113 exit(1);
4115 qemu_set_log(mask);
4116 } else {
4117 qemu_set_log(0);
4120 /* add configured firmware directories */
4121 dirs = g_strsplit(CONFIG_QEMU_FIRMWAREPATH, G_SEARCHPATH_SEPARATOR_S, 0);
4122 for (i = 0; dirs[i] != NULL; i++) {
4123 qemu_add_data_dir(dirs[i]);
4125 g_strfreev(dirs);
4127 /* try to find datadir relative to the executable path */
4128 dir = os_find_datadir();
4129 qemu_add_data_dir(dir);
4130 g_free(dir);
4132 /* add the datadir specified when building */
4133 qemu_add_data_dir(CONFIG_QEMU_DATADIR);
4135 /* -L help lists the data directories and exits. */
4136 if (list_data_dirs) {
4137 for (i = 0; i < data_dir_idx; i++) {
4138 printf("%s\n", data_dir[i]);
4140 exit(0);
4143 /* machine_class: default to UP */
4144 machine_class->max_cpus = machine_class->max_cpus ?: 1;
4145 machine_class->min_cpus = machine_class->min_cpus ?: 1;
4146 machine_class->default_cpus = machine_class->default_cpus ?: 1;
4148 /* default to machine_class->default_cpus */
4149 smp_cpus = machine_class->default_cpus;
4150 max_cpus = machine_class->default_cpus;
4152 smp_parse(qemu_opts_find(qemu_find_opts("smp-opts"), NULL));
4154 /* sanity-check smp_cpus and max_cpus against machine_class */
4155 if (smp_cpus < machine_class->min_cpus) {
4156 error_report("Invalid SMP CPUs %d. The min CPUs "
4157 "supported by machine '%s' is %d", smp_cpus,
4158 machine_class->name, machine_class->min_cpus);
4159 exit(1);
4161 if (max_cpus > machine_class->max_cpus) {
4162 error_report("Invalid SMP CPUs %d. The max CPUs "
4163 "supported by machine '%s' is %d", max_cpus,
4164 machine_class->name, machine_class->max_cpus);
4165 exit(1);
4169 * Get the default machine options from the machine if it is not already
4170 * specified either by the configuration file or by the command line.
4172 if (machine_class->default_machine_opts) {
4173 qemu_opts_set_defaults(qemu_find_opts("machine"),
4174 machine_class->default_machine_opts, 0);
4177 qemu_opts_foreach(qemu_find_opts("device"),
4178 default_driver_check, NULL, NULL);
4179 qemu_opts_foreach(qemu_find_opts("global"),
4180 default_driver_check, NULL, NULL);
4182 if (!vga_model && !default_vga) {
4183 vga_interface_type = VGA_DEVICE;
4185 if (!has_defaults || machine_class->no_serial) {
4186 default_serial = 0;
4188 if (!has_defaults || machine_class->no_parallel) {
4189 default_parallel = 0;
4191 if (!has_defaults || !machine_class->use_virtcon) {
4192 default_virtcon = 0;
4194 if (!has_defaults || machine_class->no_floppy) {
4195 default_floppy = 0;
4197 if (!has_defaults || machine_class->no_cdrom) {
4198 default_cdrom = 0;
4200 if (!has_defaults || machine_class->no_sdcard) {
4201 default_sdcard = 0;
4203 if (!has_defaults) {
4204 default_monitor = 0;
4205 default_net = 0;
4206 default_vga = 0;
4209 if (is_daemonized()) {
4210 /* According to documentation and historically, -nographic redirects
4211 * serial port, parallel port and monitor to stdio, which does not work
4212 * with -daemonize. We can redirect these to null instead, but since
4213 * -nographic is legacy, let's just error out.
4214 * We disallow -nographic only if all other ports are not redirected
4215 * explicitly, to not break existing legacy setups which uses
4216 * -nographic _and_ redirects all ports explicitly - this is valid
4217 * usage, -nographic is just a no-op in this case.
4219 if (nographic
4220 && (default_parallel || default_serial
4221 || default_monitor || default_virtcon)) {
4222 error_report("-nographic cannot be used with -daemonize");
4223 exit(1);
4225 #ifdef CONFIG_CURSES
4226 if (dpy.type == DISPLAY_TYPE_CURSES) {
4227 error_report("curses display cannot be used with -daemonize");
4228 exit(1);
4230 #endif
4233 if (nographic) {
4234 if (default_parallel)
4235 add_device_config(DEV_PARALLEL, "null");
4236 if (default_serial && default_monitor) {
4237 add_device_config(DEV_SERIAL, "mon:stdio");
4238 } else if (default_virtcon && default_monitor) {
4239 add_device_config(DEV_VIRTCON, "mon:stdio");
4240 } else {
4241 if (default_serial)
4242 add_device_config(DEV_SERIAL, "stdio");
4243 if (default_virtcon)
4244 add_device_config(DEV_VIRTCON, "stdio");
4245 if (default_monitor)
4246 monitor_parse("stdio", "readline", false);
4248 } else {
4249 if (default_serial)
4250 add_device_config(DEV_SERIAL, "vc:80Cx24C");
4251 if (default_parallel)
4252 add_device_config(DEV_PARALLEL, "vc:80Cx24C");
4253 if (default_monitor)
4254 monitor_parse("vc:80Cx24C", "readline", false);
4255 if (default_virtcon)
4256 add_device_config(DEV_VIRTCON, "vc:80Cx24C");
4259 #if defined(CONFIG_VNC)
4260 if (!QTAILQ_EMPTY(&(qemu_find_opts("vnc")->head))) {
4261 display_remote++;
4263 #endif
4264 if (dpy.type == DISPLAY_TYPE_DEFAULT && !display_remote) {
4265 if (!qemu_display_find_default(&dpy)) {
4266 dpy.type = DISPLAY_TYPE_NONE;
4267 #if defined(CONFIG_VNC)
4268 vnc_parse("localhost:0,to=99,id=default", &error_abort);
4269 #endif
4272 if (dpy.type == DISPLAY_TYPE_DEFAULT) {
4273 dpy.type = DISPLAY_TYPE_NONE;
4276 if ((no_frame || alt_grab || ctrl_grab) && dpy.type != DISPLAY_TYPE_SDL) {
4277 error_report("-no-frame, -alt-grab and -ctrl-grab are only valid "
4278 "for SDL, ignoring option");
4280 if (dpy.has_window_close &&
4281 (dpy.type != DISPLAY_TYPE_GTK && dpy.type != DISPLAY_TYPE_SDL)) {
4282 error_report("-no-quit is only valid for GTK and SDL, "
4283 "ignoring option");
4286 qemu_display_early_init(&dpy);
4287 qemu_console_early_init();
4289 if (dpy.has_gl && dpy.gl != DISPLAYGL_MODE_OFF && display_opengl == 0) {
4290 #if defined(CONFIG_OPENGL)
4291 error_report("OpenGL is not supported by the display");
4292 #else
4293 error_report("OpenGL support is disabled");
4294 #endif
4295 exit(1);
4298 page_size_init();
4299 socket_init();
4301 if (qemu_opts_foreach(qemu_find_opts("object"),
4302 user_creatable_add_opts_foreach,
4303 object_create_initial, NULL)) {
4304 exit(1);
4307 if (qemu_opts_foreach(qemu_find_opts("chardev"),
4308 chardev_init_func, NULL, NULL)) {
4309 exit(1);
4312 #ifdef CONFIG_VIRTFS
4313 if (qemu_opts_foreach(qemu_find_opts("fsdev"),
4314 fsdev_init_func, NULL, NULL)) {
4315 exit(1);
4317 #endif
4319 if (qemu_opts_foreach(qemu_find_opts("device"),
4320 device_help_func, NULL, NULL)) {
4321 exit(0);
4324 machine_opts = qemu_get_machine_opts();
4325 if (qemu_opt_foreach(machine_opts, machine_set_property, current_machine,
4326 NULL)) {
4327 object_unref(OBJECT(current_machine));
4328 exit(1);
4331 configure_accelerator(current_machine);
4334 * Register all the global properties, including accel properties,
4335 * machine properties, and user-specified ones.
4337 register_global_properties(current_machine);
4340 * Migration object can only be created after global properties
4341 * are applied correctly.
4343 migration_object_init();
4345 if (qtest_chrdev) {
4346 qtest_init(qtest_chrdev, qtest_log, &error_fatal);
4349 machine_opts = qemu_get_machine_opts();
4350 kernel_filename = qemu_opt_get(machine_opts, "kernel");
4351 initrd_filename = qemu_opt_get(machine_opts, "initrd");
4352 kernel_cmdline = qemu_opt_get(machine_opts, "append");
4353 bios_name = qemu_opt_get(machine_opts, "firmware");
4355 opts = qemu_opts_find(qemu_find_opts("boot-opts"), NULL);
4356 if (opts) {
4357 boot_order = qemu_opt_get(opts, "order");
4358 if (boot_order) {
4359 validate_bootdevices(boot_order, &error_fatal);
4362 boot_once = qemu_opt_get(opts, "once");
4363 if (boot_once) {
4364 validate_bootdevices(boot_once, &error_fatal);
4367 boot_menu = qemu_opt_get_bool(opts, "menu", boot_menu);
4368 boot_strict = qemu_opt_get_bool(opts, "strict", false);
4371 if (!boot_order) {
4372 boot_order = machine_class->default_boot_order;
4375 if (!kernel_cmdline) {
4376 kernel_cmdline = "";
4377 current_machine->kernel_cmdline = (char *)kernel_cmdline;
4380 linux_boot = (kernel_filename != NULL);
4382 if (!linux_boot && *kernel_cmdline != '\0') {
4383 error_report("-append only allowed with -kernel option");
4384 exit(1);
4387 if (!linux_boot && initrd_filename != NULL) {
4388 error_report("-initrd only allowed with -kernel option");
4389 exit(1);
4392 if (semihosting_enabled() && !semihosting_get_argc() && kernel_filename) {
4393 /* fall back to the -kernel/-append */
4394 semihosting_arg_fallback(kernel_filename, kernel_cmdline);
4397 os_set_line_buffering();
4399 /* spice needs the timers to be initialized by this point */
4400 qemu_spice_init();
4402 cpu_ticks_init();
4403 if (icount_opts) {
4404 if (!tcg_enabled()) {
4405 error_report("-icount is not allowed with hardware virtualization");
4406 exit(1);
4408 configure_icount(icount_opts, &error_abort);
4409 qemu_opts_del(icount_opts);
4412 if (tcg_enabled()) {
4413 qemu_tcg_configure(accel_opts, &error_fatal);
4416 if (default_net) {
4417 QemuOptsList *net = qemu_find_opts("net");
4418 qemu_opts_set(net, NULL, "type", "nic", &error_abort);
4419 #ifdef CONFIG_SLIRP
4420 qemu_opts_set(net, NULL, "type", "user", &error_abort);
4421 #endif
4424 colo_info_init();
4426 if (net_init_clients(&err) < 0) {
4427 error_report_err(err);
4428 exit(1);
4431 if (qemu_opts_foreach(qemu_find_opts("object"),
4432 user_creatable_add_opts_foreach,
4433 object_create_delayed, NULL)) {
4434 exit(1);
4437 if (tpm_init() < 0) {
4438 exit(1);
4441 /* init the bluetooth world */
4442 if (foreach_device_config(DEV_BT, bt_parse))
4443 exit(1);
4445 if (!xen_enabled()) {
4446 /* On 32-bit hosts, QEMU is limited by virtual address space */
4447 if (ram_size > (2047 << 20) && HOST_LONG_BITS == 32) {
4448 error_report("at most 2047 MB RAM can be simulated");
4449 exit(1);
4453 blk_mig_init();
4454 ram_mig_init();
4455 dirty_bitmap_mig_init();
4457 /* If the currently selected machine wishes to override the units-per-bus
4458 * property of its default HBA interface type, do so now. */
4459 if (machine_class->units_per_default_bus) {
4460 override_max_devs(machine_class->block_default_type,
4461 machine_class->units_per_default_bus);
4464 /* open the virtual block devices */
4465 while (!QSIMPLEQ_EMPTY(&bdo_queue)) {
4466 BlockdevOptions_queue *bdo = QSIMPLEQ_FIRST(&bdo_queue);
4468 QSIMPLEQ_REMOVE_HEAD(&bdo_queue, entry);
4469 loc_push_restore(&bdo->loc);
4470 qmp_blockdev_add(bdo->bdo, &error_fatal);
4471 loc_pop(&bdo->loc);
4472 qapi_free_BlockdevOptions(bdo->bdo);
4473 g_free(bdo);
4475 if (snapshot || replay_mode != REPLAY_MODE_NONE) {
4476 qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot,
4477 NULL, NULL);
4479 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func,
4480 &machine_class->block_default_type, NULL)) {
4481 exit(1);
4484 default_drive(default_cdrom, snapshot, machine_class->block_default_type, 2,
4485 CDROM_OPTS);
4486 default_drive(default_floppy, snapshot, IF_FLOPPY, 0, FD_OPTS);
4487 default_drive(default_sdcard, snapshot, IF_SD, 0, SD_OPTS);
4490 * Note: qtest_enabled() (which is used in monitor_qapi_event_init())
4491 * depends on configure_accelerator() above.
4493 monitor_init_globals();
4495 if (qemu_opts_foreach(qemu_find_opts("mon"),
4496 mon_init_func, NULL, NULL)) {
4497 exit(1);
4500 if (foreach_device_config(DEV_SERIAL, serial_parse) < 0)
4501 exit(1);
4502 if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0)
4503 exit(1);
4504 if (foreach_device_config(DEV_VIRTCON, virtcon_parse) < 0)
4505 exit(1);
4506 if (foreach_device_config(DEV_DEBUGCON, debugcon_parse) < 0)
4507 exit(1);
4509 /* If no default VGA is requested, the default is "none". */
4510 if (default_vga) {
4511 if (machine_class->default_display) {
4512 vga_model = machine_class->default_display;
4513 } else if (vga_interface_available(VGA_CIRRUS)) {
4514 vga_model = "cirrus";
4515 } else if (vga_interface_available(VGA_STD)) {
4516 vga_model = "std";
4519 if (vga_model) {
4520 select_vgahw(vga_model);
4523 if (watchdog) {
4524 i = select_watchdog(watchdog);
4525 if (i > 0)
4526 exit (i == 1 ? 1 : 0);
4529 /* This checkpoint is required by replay to separate prior clock
4530 reading from the other reads, because timer polling functions query
4531 clock values from the log. */
4532 replay_checkpoint(CHECKPOINT_INIT);
4533 qdev_machine_init();
4535 current_machine->ram_size = ram_size;
4536 current_machine->maxram_size = maxram_size;
4537 current_machine->ram_slots = ram_slots;
4538 current_machine->boot_order = boot_order;
4540 /* parse features once if machine provides default cpu_type */
4541 current_machine->cpu_type = machine_class->default_cpu_type;
4542 if (cpu_model) {
4543 current_machine->cpu_type = parse_cpu_model(cpu_model);
4545 parse_numa_opts(current_machine);
4547 machine_run_board_init(current_machine);
4549 realtime_init();
4551 soundhw_init();
4553 if (hax_enabled()) {
4554 hax_sync_vcpus();
4557 if (qemu_opts_foreach(qemu_find_opts("fw_cfg"),
4558 parse_fw_cfg, fw_cfg_find(), NULL) != 0) {
4559 exit(1);
4562 /* init USB devices */
4563 if (machine_usb(current_machine)) {
4564 if (foreach_device_config(DEV_USB, usb_parse) < 0)
4565 exit(1);
4568 /* Check if IGD GFX passthrough. */
4569 igd_gfx_passthru();
4571 /* init generic devices */
4572 rom_set_order_override(FW_CFG_ORDER_OVERRIDE_DEVICE);
4573 if (qemu_opts_foreach(qemu_find_opts("device"),
4574 device_init_func, NULL, NULL)) {
4575 exit(1);
4578 cpu_synchronize_all_post_init();
4580 rom_reset_order_override();
4582 /* Did we create any drives that we failed to create a device for? */
4583 drive_check_orphaned();
4585 /* Don't warn about the default network setup that you get if
4586 * no command line -net or -netdev options are specified. There
4587 * are two cases that we would otherwise complain about:
4588 * (1) board doesn't support a NIC but the implicit "-net nic"
4589 * requested one
4590 * (2) CONFIG_SLIRP not set, in which case the implicit "-net nic"
4591 * sets up a nic that isn't connected to anything.
4593 if (!default_net) {
4594 net_check_clients();
4598 if (boot_once) {
4599 qemu_boot_set(boot_once, &error_fatal);
4600 qemu_register_reset(restore_boot_order, g_strdup(boot_order));
4603 /* init local displays */
4604 ds = init_displaystate();
4605 qemu_display_init(ds, &dpy);
4607 /* must be after terminal init, SDL library changes signal handlers */
4608 os_setup_signal_handling();
4610 /* init remote displays */
4611 #ifdef CONFIG_VNC
4612 qemu_opts_foreach(qemu_find_opts("vnc"),
4613 vnc_init_func, NULL, NULL);
4614 #endif
4616 if (using_spice) {
4617 qemu_spice_display_init();
4620 if (foreach_device_config(DEV_GDB, gdbserver_start) < 0) {
4621 exit(1);
4624 qdev_machine_creation_done();
4626 /* TODO: once all bus devices are qdevified, this should be done
4627 * when bus is created by qdev.c */
4628 qemu_register_reset(qbus_reset_all_fn, sysbus_get_default());
4629 qemu_run_machine_init_done_notifiers();
4631 if (rom_check_and_register_reset() != 0) {
4632 error_report("rom check and register reset failed");
4633 exit(1);
4636 replay_start();
4638 /* This checkpoint is required by replay to separate prior clock
4639 reading from the other reads, because timer polling functions query
4640 clock values from the log. */
4641 replay_checkpoint(CHECKPOINT_RESET);
4642 qemu_system_reset(SHUTDOWN_CAUSE_NONE);
4643 register_global_state();
4644 if (replay_mode != REPLAY_MODE_NONE) {
4645 replay_vmstate_init();
4646 } else if (loadvm) {
4647 Error *local_err = NULL;
4648 if (load_snapshot(loadvm, &local_err) < 0) {
4649 error_report_err(local_err);
4650 autostart = 0;
4654 qdev_prop_check_globals();
4655 if (vmstate_dump_file) {
4656 /* dump and exit */
4657 dump_vmstate_json_to_file(vmstate_dump_file);
4658 return 0;
4661 if (incoming) {
4662 Error *local_err = NULL;
4663 qemu_start_incoming_migration(incoming, &local_err);
4664 if (local_err) {
4665 error_reportf_err(local_err, "-incoming %s: ", incoming);
4666 exit(1);
4668 } else if (autostart) {
4669 vm_start();
4672 accel_setup_post(current_machine);
4673 os_setup_post();
4675 main_loop();
4677 gdbserver_cleanup();
4679 /* No more vcpu or device emulation activity beyond this point */
4680 vm_shutdown();
4682 bdrv_close_all();
4684 res_free();
4686 /* vhost-user must be cleaned up before chardevs. */
4687 tpm_cleanup();
4688 net_cleanup();
4689 audio_cleanup();
4690 monitor_cleanup();
4691 qemu_chr_cleanup();
4692 user_creatable_cleanup();
4693 migration_object_finalize();
4694 /* TODO: unref root container, check all devices are ok */
4696 return 0;