mptsas: change .realize function name
[qemu/ar7.git] / vl.c
blobad2664bbc4fb2546a837cae32a26c96b1b653332
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.
24 #include "qemu/osdep.h"
25 #include "qemu-version.h"
26 #include "qemu/cutils.h"
27 #include "qemu/help_option.h"
29 #ifdef CONFIG_SECCOMP
30 #include "sysemu/seccomp.h"
31 #endif
33 #if defined(CONFIG_VDE)
34 #include <libvdeplug.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/i386/pc.h"
63 #include "hw/isa/isa.h"
64 #include "hw/bt.h"
65 #include "sysemu/watchdog.h"
66 #include "hw/smbios/smbios.h"
67 #include "hw/xen/xen.h"
68 #include "hw/qdev.h"
69 #include "hw/loader.h"
70 #include "monitor/qdev.h"
71 #include "sysemu/bt.h"
72 #include "net/net.h"
73 #include "net/slirp.h"
74 #include "monitor/monitor.h"
75 #include "ui/console.h"
76 #include "ui/input.h"
77 #include "sysemu/sysemu.h"
78 #include "sysemu/numa.h"
79 #include "exec/gdbstub.h"
80 #include "qemu/timer.h"
81 #include "sysemu/char.h"
82 #include "qemu/bitmap.h"
83 #include "qemu/log.h"
84 #include "sysemu/blockdev.h"
85 #include "hw/block/block.h"
86 #include "migration/block.h"
87 #include "sysemu/tpm.h"
88 #include "sysemu/dma.h"
89 #include "audio/audio.h"
90 #include "migration/migration.h"
91 #include "sysemu/cpus.h"
92 #include "sysemu/kvm.h"
93 #include "qapi/qmp/qjson.h"
94 #include "qemu/option.h"
95 #include "qemu/config-file.h"
96 #include "qemu-options.h"
97 #include "qmp-commands.h"
98 #include "qemu/main-loop.h"
99 #ifdef CONFIG_VIRTFS
100 #include "fsdev/qemu-fsdev.h"
101 #endif
102 #include "sysemu/qtest.h"
104 #include "disas/disas.h"
107 #include "slirp/libslirp.h"
109 #include "trace.h"
110 #include "trace/control.h"
111 #include "qemu/queue.h"
112 #include "sysemu/cpus.h"
113 #include "sysemu/arch_init.h"
115 #include "ui/qemu-spice.h"
116 #include "qapi/string-input-visitor.h"
117 #include "qapi/opts-visitor.h"
118 #include "qom/object_interfaces.h"
119 #include "qapi-event.h"
120 #include "exec/semihost.h"
121 #include "crypto/init.h"
122 #include "sysemu/replay.h"
123 #include "qapi/qmp/qerror.h"
124 #include "sysemu/iothread.h"
126 #define MAX_VIRTIO_CONSOLES 1
127 #define MAX_SCLP_CONSOLES 1
129 static const char *data_dir[16];
130 static int data_dir_idx;
131 const char *bios_name = NULL;
132 enum vga_retrace_method vga_retrace_method = VGA_RETRACE_DUMB;
133 int request_opengl = -1;
134 int display_opengl;
135 const char* keyboard_layout = NULL;
136 ram_addr_t ram_size;
137 const char *mem_path = NULL;
138 int mem_prealloc = 0; /* force preallocation of physical target memory */
139 bool enable_mlock = false;
140 int nb_nics;
141 NICInfo nd_table[MAX_NICS];
142 int autostart;
143 static int rtc_utc = 1;
144 static int rtc_date_offset = -1; /* -1 means no change */
145 QEMUClockType rtc_clock;
146 int vga_interface_type = VGA_NONE;
147 static int full_screen = 0;
148 static int no_frame = 0;
149 int no_quit = 0;
150 static bool grab_on_hover;
151 CharDriverState *serial_hds[MAX_SERIAL_PORTS];
152 CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
153 CharDriverState *virtcon_hds[MAX_VIRTIO_CONSOLES];
154 CharDriverState *sclp_hds[MAX_SCLP_CONSOLES];
155 int win2k_install_hack = 0;
156 int singlestep = 0;
157 int smp_cpus = 1;
158 int max_cpus = 1;
159 int smp_cores = 1;
160 int smp_threads = 1;
161 int acpi_enabled = 1;
162 int no_hpet = 0;
163 int fd_bootchk = 1;
164 static int no_reboot;
165 int no_shutdown = 0;
166 int cursor_hide = 1;
167 int graphic_rotate = 0;
168 const char *watchdog;
169 QEMUOptionRom option_rom[MAX_OPTION_ROMS];
170 int nb_option_roms;
171 int old_param = 0;
172 const char *qemu_name;
173 int alt_grab = 0;
174 int ctrl_grab = 0;
175 unsigned int nb_prom_envs = 0;
176 const char *prom_envs[MAX_PROM_ENVS];
177 int boot_menu;
178 bool boot_strict;
179 uint8_t *boot_splash_filedata;
180 size_t boot_splash_filedata_size;
181 uint8_t qemu_extra_params_fw[2];
183 int icount_align_option;
185 /* The bytes in qemu_uuid[] are in the order specified by RFC4122, _not_ in the
186 * little-endian "wire format" described in the SMBIOS 2.6 specification.
188 uint8_t qemu_uuid[16];
189 bool qemu_uuid_set;
191 static NotifierList exit_notifiers =
192 NOTIFIER_LIST_INITIALIZER(exit_notifiers);
194 static NotifierList machine_init_done_notifiers =
195 NOTIFIER_LIST_INITIALIZER(machine_init_done_notifiers);
197 bool xen_allowed;
198 uint32_t xen_domid;
199 enum xen_mode xen_mode = XEN_EMULATE;
201 static int has_defaults = 1;
202 static int default_serial = 1;
203 static int default_parallel = 1;
204 static int default_virtcon = 1;
205 static int default_sclp = 1;
206 static int default_monitor = 1;
207 static int default_floppy = 1;
208 static int default_cdrom = 1;
209 static int default_sdcard = 1;
210 static int default_vga = 1;
211 static int default_net = 1;
213 static struct {
214 const char *driver;
215 int *flag;
216 } default_list[] = {
217 { .driver = "isa-serial", .flag = &default_serial },
218 { .driver = "isa-parallel", .flag = &default_parallel },
219 { .driver = "isa-fdc", .flag = &default_floppy },
220 { .driver = "ide-cd", .flag = &default_cdrom },
221 { .driver = "ide-hd", .flag = &default_cdrom },
222 { .driver = "ide-drive", .flag = &default_cdrom },
223 { .driver = "scsi-cd", .flag = &default_cdrom },
224 { .driver = "virtio-serial-pci", .flag = &default_virtcon },
225 { .driver = "virtio-serial", .flag = &default_virtcon },
226 { .driver = "VGA", .flag = &default_vga },
227 { .driver = "isa-vga", .flag = &default_vga },
228 { .driver = "cirrus-vga", .flag = &default_vga },
229 { .driver = "isa-cirrus-vga", .flag = &default_vga },
230 { .driver = "vmware-svga", .flag = &default_vga },
231 { .driver = "qxl-vga", .flag = &default_vga },
232 { .driver = "virtio-vga", .flag = &default_vga },
235 static QemuOptsList qemu_rtc_opts = {
236 .name = "rtc",
237 .head = QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts.head),
238 .desc = {
240 .name = "base",
241 .type = QEMU_OPT_STRING,
243 .name = "clock",
244 .type = QEMU_OPT_STRING,
246 .name = "driftfix",
247 .type = QEMU_OPT_STRING,
249 { /* end of list */ }
253 static QemuOptsList qemu_sandbox_opts = {
254 .name = "sandbox",
255 .implied_opt_name = "enable",
256 .head = QTAILQ_HEAD_INITIALIZER(qemu_sandbox_opts.head),
257 .desc = {
259 .name = "enable",
260 .type = QEMU_OPT_BOOL,
262 { /* end of list */ }
266 static QemuOptsList qemu_option_rom_opts = {
267 .name = "option-rom",
268 .implied_opt_name = "romfile",
269 .head = QTAILQ_HEAD_INITIALIZER(qemu_option_rom_opts.head),
270 .desc = {
272 .name = "bootindex",
273 .type = QEMU_OPT_NUMBER,
274 }, {
275 .name = "romfile",
276 .type = QEMU_OPT_STRING,
278 { /* end of list */ }
282 static QemuOptsList qemu_machine_opts = {
283 .name = "machine",
284 .implied_opt_name = "type",
285 .merge_lists = true,
286 .head = QTAILQ_HEAD_INITIALIZER(qemu_machine_opts.head),
287 .desc = {
289 * no elements => accept any
290 * sanity checking will happen later
291 * when setting machine properties
297 static QemuOptsList qemu_boot_opts = {
298 .name = "boot-opts",
299 .implied_opt_name = "order",
300 .merge_lists = true,
301 .head = QTAILQ_HEAD_INITIALIZER(qemu_boot_opts.head),
302 .desc = {
304 .name = "order",
305 .type = QEMU_OPT_STRING,
306 }, {
307 .name = "once",
308 .type = QEMU_OPT_STRING,
309 }, {
310 .name = "menu",
311 .type = QEMU_OPT_BOOL,
312 }, {
313 .name = "splash",
314 .type = QEMU_OPT_STRING,
315 }, {
316 .name = "splash-time",
317 .type = QEMU_OPT_STRING,
318 }, {
319 .name = "reboot-timeout",
320 .type = QEMU_OPT_STRING,
321 }, {
322 .name = "strict",
323 .type = QEMU_OPT_BOOL,
325 { /*End of list */ }
329 static QemuOptsList qemu_add_fd_opts = {
330 .name = "add-fd",
331 .head = QTAILQ_HEAD_INITIALIZER(qemu_add_fd_opts.head),
332 .desc = {
334 .name = "fd",
335 .type = QEMU_OPT_NUMBER,
336 .help = "file descriptor of which a duplicate is added to fd set",
338 .name = "set",
339 .type = QEMU_OPT_NUMBER,
340 .help = "ID of the fd set to add fd to",
342 .name = "opaque",
343 .type = QEMU_OPT_STRING,
344 .help = "free-form string used to describe fd",
346 { /* end of list */ }
350 static QemuOptsList qemu_object_opts = {
351 .name = "object",
352 .implied_opt_name = "qom-type",
353 .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head),
354 .desc = {
359 static QemuOptsList qemu_tpmdev_opts = {
360 .name = "tpmdev",
361 .implied_opt_name = "type",
362 .head = QTAILQ_HEAD_INITIALIZER(qemu_tpmdev_opts.head),
363 .desc = {
364 /* options are defined in the TPM backends */
365 { /* end of list */ }
369 static QemuOptsList qemu_realtime_opts = {
370 .name = "realtime",
371 .head = QTAILQ_HEAD_INITIALIZER(qemu_realtime_opts.head),
372 .desc = {
374 .name = "mlock",
375 .type = QEMU_OPT_BOOL,
377 { /* end of list */ }
381 static QemuOptsList qemu_msg_opts = {
382 .name = "msg",
383 .head = QTAILQ_HEAD_INITIALIZER(qemu_msg_opts.head),
384 .desc = {
386 .name = "timestamp",
387 .type = QEMU_OPT_BOOL,
389 { /* end of list */ }
393 static QemuOptsList qemu_name_opts = {
394 .name = "name",
395 .implied_opt_name = "guest",
396 .merge_lists = true,
397 .head = QTAILQ_HEAD_INITIALIZER(qemu_name_opts.head),
398 .desc = {
400 .name = "guest",
401 .type = QEMU_OPT_STRING,
402 .help = "Sets the name of the guest.\n"
403 "This name will be displayed in the SDL window caption.\n"
404 "The name will also be used for the VNC server",
405 }, {
406 .name = "process",
407 .type = QEMU_OPT_STRING,
408 .help = "Sets the name of the QEMU process, as shown in top etc",
409 }, {
410 .name = "debug-threads",
411 .type = QEMU_OPT_BOOL,
412 .help = "When enabled, name the individual threads; defaults off.\n"
413 "NOTE: The thread names are for debugging and not a\n"
414 "stable API.",
416 { /* End of list */ }
420 static QemuOptsList qemu_mem_opts = {
421 .name = "memory",
422 .implied_opt_name = "size",
423 .head = QTAILQ_HEAD_INITIALIZER(qemu_mem_opts.head),
424 .merge_lists = true,
425 .desc = {
427 .name = "size",
428 .type = QEMU_OPT_SIZE,
431 .name = "slots",
432 .type = QEMU_OPT_NUMBER,
435 .name = "maxmem",
436 .type = QEMU_OPT_SIZE,
438 { /* end of list */ }
442 static QemuOptsList qemu_icount_opts = {
443 .name = "icount",
444 .implied_opt_name = "shift",
445 .merge_lists = true,
446 .head = QTAILQ_HEAD_INITIALIZER(qemu_icount_opts.head),
447 .desc = {
449 .name = "shift",
450 .type = QEMU_OPT_STRING,
451 }, {
452 .name = "align",
453 .type = QEMU_OPT_BOOL,
454 }, {
455 .name = "sleep",
456 .type = QEMU_OPT_BOOL,
457 }, {
458 .name = "rr",
459 .type = QEMU_OPT_STRING,
460 }, {
461 .name = "rrfile",
462 .type = QEMU_OPT_STRING,
464 { /* end of list */ }
468 static QemuOptsList qemu_semihosting_config_opts = {
469 .name = "semihosting-config",
470 .implied_opt_name = "enable",
471 .head = QTAILQ_HEAD_INITIALIZER(qemu_semihosting_config_opts.head),
472 .desc = {
474 .name = "enable",
475 .type = QEMU_OPT_BOOL,
476 }, {
477 .name = "target",
478 .type = QEMU_OPT_STRING,
479 }, {
480 .name = "arg",
481 .type = QEMU_OPT_STRING,
483 { /* end of list */ }
487 static QemuOptsList qemu_fw_cfg_opts = {
488 .name = "fw_cfg",
489 .implied_opt_name = "name",
490 .head = QTAILQ_HEAD_INITIALIZER(qemu_fw_cfg_opts.head),
491 .desc = {
493 .name = "name",
494 .type = QEMU_OPT_STRING,
495 .help = "Sets the fw_cfg name of the blob to be inserted",
496 }, {
497 .name = "file",
498 .type = QEMU_OPT_STRING,
499 .help = "Sets the name of the file from which\n"
500 "the fw_cfg blob will be loaded",
501 }, {
502 .name = "string",
503 .type = QEMU_OPT_STRING,
504 .help = "Sets content of the blob to be inserted from a string",
506 { /* end of list */ }
511 * Get machine options
513 * Returns: machine options (never null).
515 QemuOpts *qemu_get_machine_opts(void)
517 return qemu_find_opts_singleton("machine");
520 const char *qemu_get_vm_name(void)
522 return qemu_name;
525 static void res_free(void)
527 g_free(boot_splash_filedata);
528 boot_splash_filedata = NULL;
531 static int default_driver_check(void *opaque, QemuOpts *opts, Error **errp)
533 const char *driver = qemu_opt_get(opts, "driver");
534 int i;
536 if (!driver)
537 return 0;
538 for (i = 0; i < ARRAY_SIZE(default_list); i++) {
539 if (strcmp(default_list[i].driver, driver) != 0)
540 continue;
541 *(default_list[i].flag) = 0;
543 return 0;
546 /***********************************************************/
547 /* QEMU state */
549 static RunState current_run_state = RUN_STATE_PRELAUNCH;
551 /* We use RUN_STATE__MAX but any invalid value will do */
552 static RunState vmstop_requested = RUN_STATE__MAX;
553 static QemuMutex vmstop_lock;
555 typedef struct {
556 RunState from;
557 RunState to;
558 } RunStateTransition;
560 static const RunStateTransition runstate_transitions_def[] = {
561 /* from -> to */
562 { RUN_STATE_DEBUG, RUN_STATE_RUNNING },
563 { RUN_STATE_DEBUG, RUN_STATE_FINISH_MIGRATE },
564 { RUN_STATE_DEBUG, RUN_STATE_PRELAUNCH },
566 { RUN_STATE_INMIGRATE, RUN_STATE_INTERNAL_ERROR },
567 { RUN_STATE_INMIGRATE, RUN_STATE_IO_ERROR },
568 { RUN_STATE_INMIGRATE, RUN_STATE_PAUSED },
569 { RUN_STATE_INMIGRATE, RUN_STATE_RUNNING },
570 { RUN_STATE_INMIGRATE, RUN_STATE_SHUTDOWN },
571 { RUN_STATE_INMIGRATE, RUN_STATE_SUSPENDED },
572 { RUN_STATE_INMIGRATE, RUN_STATE_WATCHDOG },
573 { RUN_STATE_INMIGRATE, RUN_STATE_GUEST_PANICKED },
574 { RUN_STATE_INMIGRATE, RUN_STATE_FINISH_MIGRATE },
575 { RUN_STATE_INMIGRATE, RUN_STATE_PRELAUNCH },
576 { RUN_STATE_INMIGRATE, RUN_STATE_POSTMIGRATE },
578 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_PAUSED },
579 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_FINISH_MIGRATE },
580 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_PRELAUNCH },
582 { RUN_STATE_IO_ERROR, RUN_STATE_RUNNING },
583 { RUN_STATE_IO_ERROR, RUN_STATE_FINISH_MIGRATE },
584 { RUN_STATE_IO_ERROR, RUN_STATE_PRELAUNCH },
586 { RUN_STATE_PAUSED, RUN_STATE_RUNNING },
587 { RUN_STATE_PAUSED, RUN_STATE_FINISH_MIGRATE },
588 { RUN_STATE_PAUSED, RUN_STATE_PRELAUNCH },
590 { RUN_STATE_POSTMIGRATE, RUN_STATE_RUNNING },
591 { RUN_STATE_POSTMIGRATE, RUN_STATE_FINISH_MIGRATE },
592 { RUN_STATE_POSTMIGRATE, RUN_STATE_PRELAUNCH },
594 { RUN_STATE_PRELAUNCH, RUN_STATE_RUNNING },
595 { RUN_STATE_PRELAUNCH, RUN_STATE_FINISH_MIGRATE },
596 { RUN_STATE_PRELAUNCH, RUN_STATE_INMIGRATE },
598 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_RUNNING },
599 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_POSTMIGRATE },
600 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_PRELAUNCH },
602 { RUN_STATE_RESTORE_VM, RUN_STATE_RUNNING },
603 { RUN_STATE_RESTORE_VM, RUN_STATE_PRELAUNCH },
605 { RUN_STATE_RUNNING, RUN_STATE_DEBUG },
606 { RUN_STATE_RUNNING, RUN_STATE_INTERNAL_ERROR },
607 { RUN_STATE_RUNNING, RUN_STATE_IO_ERROR },
608 { RUN_STATE_RUNNING, RUN_STATE_PAUSED },
609 { RUN_STATE_RUNNING, RUN_STATE_FINISH_MIGRATE },
610 { RUN_STATE_RUNNING, RUN_STATE_RESTORE_VM },
611 { RUN_STATE_RUNNING, RUN_STATE_SAVE_VM },
612 { RUN_STATE_RUNNING, RUN_STATE_SHUTDOWN },
613 { RUN_STATE_RUNNING, RUN_STATE_WATCHDOG },
614 { RUN_STATE_RUNNING, RUN_STATE_GUEST_PANICKED },
616 { RUN_STATE_SAVE_VM, RUN_STATE_RUNNING },
618 { RUN_STATE_SHUTDOWN, RUN_STATE_PAUSED },
619 { RUN_STATE_SHUTDOWN, RUN_STATE_FINISH_MIGRATE },
620 { RUN_STATE_SHUTDOWN, RUN_STATE_PRELAUNCH },
622 { RUN_STATE_DEBUG, RUN_STATE_SUSPENDED },
623 { RUN_STATE_RUNNING, RUN_STATE_SUSPENDED },
624 { RUN_STATE_SUSPENDED, RUN_STATE_RUNNING },
625 { RUN_STATE_SUSPENDED, RUN_STATE_FINISH_MIGRATE },
626 { RUN_STATE_SUSPENDED, RUN_STATE_PRELAUNCH },
628 { RUN_STATE_WATCHDOG, RUN_STATE_RUNNING },
629 { RUN_STATE_WATCHDOG, RUN_STATE_FINISH_MIGRATE },
630 { RUN_STATE_WATCHDOG, RUN_STATE_PRELAUNCH },
632 { RUN_STATE_GUEST_PANICKED, RUN_STATE_RUNNING },
633 { RUN_STATE_GUEST_PANICKED, RUN_STATE_FINISH_MIGRATE },
634 { RUN_STATE_GUEST_PANICKED, RUN_STATE_PRELAUNCH },
636 { RUN_STATE__MAX, RUN_STATE__MAX },
639 static bool runstate_valid_transitions[RUN_STATE__MAX][RUN_STATE__MAX];
641 bool runstate_check(RunState state)
643 return current_run_state == state;
646 bool runstate_store(char *str, size_t size)
648 const char *state = RunState_lookup[current_run_state];
649 size_t len = strlen(state) + 1;
651 if (len > size) {
652 return false;
654 memcpy(str, state, len);
655 return true;
658 static void runstate_init(void)
660 const RunStateTransition *p;
662 memset(&runstate_valid_transitions, 0, sizeof(runstate_valid_transitions));
663 for (p = &runstate_transitions_def[0]; p->from != RUN_STATE__MAX; p++) {
664 runstate_valid_transitions[p->from][p->to] = true;
667 qemu_mutex_init(&vmstop_lock);
670 /* This function will abort() on invalid state transitions */
671 void runstate_set(RunState new_state)
673 assert(new_state < RUN_STATE__MAX);
675 if (current_run_state == new_state) {
676 return;
679 if (!runstate_valid_transitions[current_run_state][new_state]) {
680 error_report("invalid runstate transition: '%s' -> '%s'",
681 RunState_lookup[current_run_state],
682 RunState_lookup[new_state]);
683 abort();
685 trace_runstate_set(new_state);
686 current_run_state = new_state;
689 int runstate_is_running(void)
691 return runstate_check(RUN_STATE_RUNNING);
694 bool runstate_needs_reset(void)
696 return runstate_check(RUN_STATE_INTERNAL_ERROR) ||
697 runstate_check(RUN_STATE_SHUTDOWN);
700 StatusInfo *qmp_query_status(Error **errp)
702 StatusInfo *info = g_malloc0(sizeof(*info));
704 info->running = runstate_is_running();
705 info->singlestep = singlestep;
706 info->status = current_run_state;
708 return info;
711 static bool qemu_vmstop_requested(RunState *r)
713 qemu_mutex_lock(&vmstop_lock);
714 *r = vmstop_requested;
715 vmstop_requested = RUN_STATE__MAX;
716 qemu_mutex_unlock(&vmstop_lock);
717 return *r < RUN_STATE__MAX;
720 void qemu_system_vmstop_request_prepare(void)
722 qemu_mutex_lock(&vmstop_lock);
725 void qemu_system_vmstop_request(RunState state)
727 vmstop_requested = state;
728 qemu_mutex_unlock(&vmstop_lock);
729 qemu_notify_event();
732 void vm_start(void)
734 RunState requested;
736 qemu_vmstop_requested(&requested);
737 if (runstate_is_running() && requested == RUN_STATE__MAX) {
738 return;
741 /* Ensure that a STOP/RESUME pair of events is emitted if a
742 * vmstop request was pending. The BLOCK_IO_ERROR event, for
743 * example, according to documentation is always followed by
744 * the STOP event.
746 if (runstate_is_running()) {
747 qapi_event_send_stop(&error_abort);
748 } else {
749 cpu_enable_ticks();
750 runstate_set(RUN_STATE_RUNNING);
751 vm_state_notify(1, RUN_STATE_RUNNING);
752 resume_all_vcpus();
755 qapi_event_send_resume(&error_abort);
759 /***********************************************************/
760 /* real time host monotonic timer */
762 static time_t qemu_time(void)
764 return qemu_clock_get_ms(QEMU_CLOCK_HOST) / 1000;
767 /***********************************************************/
768 /* host time/date access */
769 void qemu_get_timedate(struct tm *tm, int offset)
771 time_t ti = qemu_time();
773 ti += offset;
774 if (rtc_date_offset == -1) {
775 if (rtc_utc)
776 gmtime_r(&ti, tm);
777 else
778 localtime_r(&ti, tm);
779 } else {
780 ti -= rtc_date_offset;
781 gmtime_r(&ti, tm);
785 int qemu_timedate_diff(struct tm *tm)
787 time_t seconds;
789 if (rtc_date_offset == -1)
790 if (rtc_utc)
791 seconds = mktimegm(tm);
792 else {
793 struct tm tmp = *tm;
794 tmp.tm_isdst = -1; /* use timezone to figure it out */
795 seconds = mktime(&tmp);
797 else
798 seconds = mktimegm(tm) + rtc_date_offset;
800 return seconds - qemu_time();
803 static void configure_rtc_date_offset(const char *startdate, int legacy)
805 time_t rtc_start_date;
806 struct tm tm;
808 if (!strcmp(startdate, "now") && legacy) {
809 rtc_date_offset = -1;
810 } else {
811 if (sscanf(startdate, "%d-%d-%dT%d:%d:%d",
812 &tm.tm_year,
813 &tm.tm_mon,
814 &tm.tm_mday,
815 &tm.tm_hour,
816 &tm.tm_min,
817 &tm.tm_sec) == 6) {
818 /* OK */
819 } else if (sscanf(startdate, "%d-%d-%d",
820 &tm.tm_year,
821 &tm.tm_mon,
822 &tm.tm_mday) == 3) {
823 tm.tm_hour = 0;
824 tm.tm_min = 0;
825 tm.tm_sec = 0;
826 } else {
827 goto date_fail;
829 tm.tm_year -= 1900;
830 tm.tm_mon--;
831 rtc_start_date = mktimegm(&tm);
832 if (rtc_start_date == -1) {
833 date_fail:
834 error_report("invalid date format");
835 error_printf("valid formats: "
836 "'2006-06-17T16:01:21' or '2006-06-17'\n");
837 exit(1);
839 rtc_date_offset = qemu_time() - rtc_start_date;
843 static void configure_rtc(QemuOpts *opts)
845 const char *value;
847 value = qemu_opt_get(opts, "base");
848 if (value) {
849 if (!strcmp(value, "utc")) {
850 rtc_utc = 1;
851 } else if (!strcmp(value, "localtime")) {
852 Error *blocker = NULL;
853 rtc_utc = 0;
854 error_setg(&blocker, QERR_REPLAY_NOT_SUPPORTED,
855 "-rtc base=localtime");
856 replay_add_blocker(blocker);
857 } else {
858 configure_rtc_date_offset(value, 0);
861 value = qemu_opt_get(opts, "clock");
862 if (value) {
863 if (!strcmp(value, "host")) {
864 rtc_clock = QEMU_CLOCK_HOST;
865 } else if (!strcmp(value, "rt")) {
866 rtc_clock = QEMU_CLOCK_REALTIME;
867 } else if (!strcmp(value, "vm")) {
868 rtc_clock = QEMU_CLOCK_VIRTUAL;
869 } else {
870 error_report("invalid option value '%s'", value);
871 exit(1);
874 value = qemu_opt_get(opts, "driftfix");
875 if (value) {
876 if (!strcmp(value, "slew")) {
877 static GlobalProperty slew_lost_ticks = {
878 .driver = "mc146818rtc",
879 .property = "lost_tick_policy",
880 .value = "slew",
883 qdev_prop_register_global(&slew_lost_ticks);
884 } else if (!strcmp(value, "none")) {
885 /* discard is default */
886 } else {
887 error_report("invalid option value '%s'", value);
888 exit(1);
893 /***********************************************************/
894 /* Bluetooth support */
895 static int nb_hcis;
896 static int cur_hci;
897 static struct HCIInfo *hci_table[MAX_NICS];
899 struct HCIInfo *qemu_next_hci(void)
901 if (cur_hci == nb_hcis)
902 return &null_hci;
904 return hci_table[cur_hci++];
907 static int bt_hci_parse(const char *str)
909 struct HCIInfo *hci;
910 bdaddr_t bdaddr;
912 if (nb_hcis >= MAX_NICS) {
913 error_report("too many bluetooth HCIs (max %i)", MAX_NICS);
914 return -1;
917 hci = hci_init(str);
918 if (!hci)
919 return -1;
921 bdaddr.b[0] = 0x52;
922 bdaddr.b[1] = 0x54;
923 bdaddr.b[2] = 0x00;
924 bdaddr.b[3] = 0x12;
925 bdaddr.b[4] = 0x34;
926 bdaddr.b[5] = 0x56 + nb_hcis;
927 hci->bdaddr_set(hci, bdaddr.b);
929 hci_table[nb_hcis++] = hci;
931 return 0;
934 static void bt_vhci_add(int vlan_id)
936 struct bt_scatternet_s *vlan = qemu_find_bt_vlan(vlan_id);
938 if (!vlan->slave)
939 error_report("warning: adding a VHCI to an empty scatternet %i",
940 vlan_id);
942 bt_vhci_init(bt_new_hci(vlan));
945 static struct bt_device_s *bt_device_add(const char *opt)
947 struct bt_scatternet_s *vlan;
948 int vlan_id = 0;
949 char *endp = strstr(opt, ",vlan=");
950 int len = (endp ? endp - opt : strlen(opt)) + 1;
951 char devname[10];
953 pstrcpy(devname, MIN(sizeof(devname), len), opt);
955 if (endp) {
956 vlan_id = strtol(endp + 6, &endp, 0);
957 if (*endp) {
958 error_report("unrecognised bluetooth vlan Id");
959 return 0;
963 vlan = qemu_find_bt_vlan(vlan_id);
965 if (!vlan->slave)
966 error_report("warning: adding a slave device to an empty scatternet %i",
967 vlan_id);
969 if (!strcmp(devname, "keyboard"))
970 return bt_keyboard_init(vlan);
972 error_report("unsupported bluetooth device '%s'", devname);
973 return 0;
976 static int bt_parse(const char *opt)
978 const char *endp, *p;
979 int vlan;
981 if (strstart(opt, "hci", &endp)) {
982 if (!*endp || *endp == ',') {
983 if (*endp)
984 if (!strstart(endp, ",vlan=", 0))
985 opt = endp + 1;
987 return bt_hci_parse(opt);
989 } else if (strstart(opt, "vhci", &endp)) {
990 if (!*endp || *endp == ',') {
991 if (*endp) {
992 if (strstart(endp, ",vlan=", &p)) {
993 vlan = strtol(p, (char **) &endp, 0);
994 if (*endp) {
995 error_report("bad scatternet '%s'", p);
996 return 1;
998 } else {
999 error_report("bad parameter '%s'", endp + 1);
1000 return 1;
1002 } else
1003 vlan = 0;
1005 bt_vhci_add(vlan);
1006 return 0;
1008 } else if (strstart(opt, "device:", &endp))
1009 return !bt_device_add(endp);
1011 error_report("bad bluetooth parameter '%s'", opt);
1012 return 1;
1015 static int parse_sandbox(void *opaque, QemuOpts *opts, Error **errp)
1017 /* FIXME: change this to true for 1.3 */
1018 if (qemu_opt_get_bool(opts, "enable", false)) {
1019 #ifdef CONFIG_SECCOMP
1020 if (seccomp_start() < 0) {
1021 error_report("failed to install seccomp syscall filter "
1022 "in the kernel");
1023 return -1;
1025 #else
1026 error_report("seccomp support is disabled");
1027 return -1;
1028 #endif
1031 return 0;
1034 static int parse_name(void *opaque, QemuOpts *opts, Error **errp)
1036 const char *proc_name;
1038 if (qemu_opt_get(opts, "debug-threads")) {
1039 qemu_thread_naming(qemu_opt_get_bool(opts, "debug-threads", false));
1041 qemu_name = qemu_opt_get(opts, "guest");
1043 proc_name = qemu_opt_get(opts, "process");
1044 if (proc_name) {
1045 os_set_proc_name(proc_name);
1048 return 0;
1051 bool defaults_enabled(void)
1053 return has_defaults;
1056 #ifndef _WIN32
1057 static int parse_add_fd(void *opaque, QemuOpts *opts, Error **errp)
1059 int fd, dupfd, flags;
1060 int64_t fdset_id;
1061 const char *fd_opaque = NULL;
1062 AddfdInfo *fdinfo;
1064 fd = qemu_opt_get_number(opts, "fd", -1);
1065 fdset_id = qemu_opt_get_number(opts, "set", -1);
1066 fd_opaque = qemu_opt_get(opts, "opaque");
1068 if (fd < 0) {
1069 error_report("fd option is required and must be non-negative");
1070 return -1;
1073 if (fd <= STDERR_FILENO) {
1074 error_report("fd cannot be a standard I/O stream");
1075 return -1;
1079 * All fds inherited across exec() necessarily have FD_CLOEXEC
1080 * clear, while qemu sets FD_CLOEXEC on all other fds used internally.
1082 flags = fcntl(fd, F_GETFD);
1083 if (flags == -1 || (flags & FD_CLOEXEC)) {
1084 error_report("fd is not valid or already in use");
1085 return -1;
1088 if (fdset_id < 0) {
1089 error_report("set option is required and must be non-negative");
1090 return -1;
1093 #ifdef F_DUPFD_CLOEXEC
1094 dupfd = fcntl(fd, F_DUPFD_CLOEXEC, 0);
1095 #else
1096 dupfd = dup(fd);
1097 if (dupfd != -1) {
1098 qemu_set_cloexec(dupfd);
1100 #endif
1101 if (dupfd == -1) {
1102 error_report("error duplicating fd: %s", strerror(errno));
1103 return -1;
1106 /* add the duplicate fd, and optionally the opaque string, to the fd set */
1107 fdinfo = monitor_fdset_add_fd(dupfd, true, fdset_id, !!fd_opaque, fd_opaque,
1108 &error_abort);
1109 g_free(fdinfo);
1111 return 0;
1114 static int cleanup_add_fd(void *opaque, QemuOpts *opts, Error **errp)
1116 int fd;
1118 fd = qemu_opt_get_number(opts, "fd", -1);
1119 close(fd);
1121 return 0;
1123 #endif
1125 /***********************************************************/
1126 /* QEMU Block devices */
1128 #define HD_OPTS "media=disk"
1129 #define CDROM_OPTS "media=cdrom"
1130 #define FD_OPTS ""
1131 #define PFLASH_OPTS ""
1132 #define MTD_OPTS ""
1133 #define SD_OPTS ""
1135 static int drive_init_func(void *opaque, QemuOpts *opts, Error **errp)
1137 BlockInterfaceType *block_default_type = opaque;
1139 return drive_new(opts, *block_default_type) == NULL;
1142 static int drive_enable_snapshot(void *opaque, QemuOpts *opts, Error **errp)
1144 if (qemu_opt_get(opts, "snapshot") == NULL) {
1145 qemu_opt_set(opts, "snapshot", "on", &error_abort);
1147 return 0;
1150 static void default_drive(int enable, int snapshot, BlockInterfaceType type,
1151 int index, const char *optstr)
1153 QemuOpts *opts;
1154 DriveInfo *dinfo;
1156 if (!enable || drive_get_by_index(type, index)) {
1157 return;
1160 opts = drive_add(type, index, NULL, optstr);
1161 if (snapshot) {
1162 drive_enable_snapshot(NULL, opts, NULL);
1165 dinfo = drive_new(opts, type);
1166 if (!dinfo) {
1167 exit(1);
1169 dinfo->is_default = true;
1173 static QemuOptsList qemu_smp_opts = {
1174 .name = "smp-opts",
1175 .implied_opt_name = "cpus",
1176 .merge_lists = true,
1177 .head = QTAILQ_HEAD_INITIALIZER(qemu_smp_opts.head),
1178 .desc = {
1180 .name = "cpus",
1181 .type = QEMU_OPT_NUMBER,
1182 }, {
1183 .name = "sockets",
1184 .type = QEMU_OPT_NUMBER,
1185 }, {
1186 .name = "cores",
1187 .type = QEMU_OPT_NUMBER,
1188 }, {
1189 .name = "threads",
1190 .type = QEMU_OPT_NUMBER,
1191 }, {
1192 .name = "maxcpus",
1193 .type = QEMU_OPT_NUMBER,
1195 { /*End of list */ }
1199 static void smp_parse(QemuOpts *opts)
1201 if (opts) {
1202 unsigned cpus = qemu_opt_get_number(opts, "cpus", 0);
1203 unsigned sockets = qemu_opt_get_number(opts, "sockets", 0);
1204 unsigned cores = qemu_opt_get_number(opts, "cores", 0);
1205 unsigned threads = qemu_opt_get_number(opts, "threads", 0);
1207 /* compute missing values, prefer sockets over cores over threads */
1208 if (cpus == 0 || sockets == 0) {
1209 sockets = sockets > 0 ? sockets : 1;
1210 cores = cores > 0 ? cores : 1;
1211 threads = threads > 0 ? threads : 1;
1212 if (cpus == 0) {
1213 cpus = cores * threads * sockets;
1215 } else if (cores == 0) {
1216 threads = threads > 0 ? threads : 1;
1217 cores = cpus / (sockets * threads);
1218 cores = cores > 0 ? cores : 1;
1219 } else if (threads == 0) {
1220 threads = cpus / (cores * sockets);
1221 threads = threads > 0 ? threads : 1;
1222 } else if (sockets * cores * threads < cpus) {
1223 error_report("cpu topology: "
1224 "sockets (%u) * cores (%u) * threads (%u) < "
1225 "smp_cpus (%u)",
1226 sockets, cores, threads, cpus);
1227 exit(1);
1230 max_cpus = qemu_opt_get_number(opts, "maxcpus", cpus);
1232 if (max_cpus > MAX_CPUMASK_BITS) {
1233 error_report("unsupported number of maxcpus");
1234 exit(1);
1237 if (max_cpus < cpus) {
1238 error_report("maxcpus must be equal to or greater than smp");
1239 exit(1);
1242 if (sockets * cores * threads > max_cpus) {
1243 error_report("cpu topology: "
1244 "sockets (%u) * cores (%u) * threads (%u) > "
1245 "maxcpus (%u)",
1246 sockets, cores, threads, max_cpus);
1247 exit(1);
1250 smp_cpus = cpus;
1251 smp_cores = cores;
1252 smp_threads = threads;
1255 if (smp_cpus > 1) {
1256 Error *blocker = NULL;
1257 error_setg(&blocker, QERR_REPLAY_NOT_SUPPORTED, "smp");
1258 replay_add_blocker(blocker);
1262 static void realtime_init(void)
1264 if (enable_mlock) {
1265 if (os_mlock() < 0) {
1266 error_report("locking memory failed");
1267 exit(1);
1273 static void configure_msg(QemuOpts *opts)
1275 enable_timestamp_msg = qemu_opt_get_bool(opts, "timestamp", true);
1278 /***********************************************************/
1279 /* Semihosting */
1281 typedef struct SemihostingConfig {
1282 bool enabled;
1283 SemihostingTarget target;
1284 const char **argv;
1285 int argc;
1286 const char *cmdline; /* concatenated argv */
1287 } SemihostingConfig;
1289 static SemihostingConfig semihosting;
1291 bool semihosting_enabled(void)
1293 return semihosting.enabled;
1296 SemihostingTarget semihosting_get_target(void)
1298 return semihosting.target;
1301 const char *semihosting_get_arg(int i)
1303 if (i >= semihosting.argc) {
1304 return NULL;
1306 return semihosting.argv[i];
1309 int semihosting_get_argc(void)
1311 return semihosting.argc;
1314 const char *semihosting_get_cmdline(void)
1316 if (semihosting.cmdline == NULL && semihosting.argc > 0) {
1317 semihosting.cmdline = g_strjoinv(" ", (gchar **)semihosting.argv);
1319 return semihosting.cmdline;
1322 static int add_semihosting_arg(void *opaque,
1323 const char *name, const char *val,
1324 Error **errp)
1326 SemihostingConfig *s = opaque;
1327 if (strcmp(name, "arg") == 0) {
1328 s->argc++;
1329 /* one extra element as g_strjoinv() expects NULL-terminated array */
1330 s->argv = g_realloc(s->argv, (s->argc + 1) * sizeof(void *));
1331 s->argv[s->argc - 1] = val;
1332 s->argv[s->argc] = NULL;
1334 return 0;
1337 /* Use strings passed via -kernel/-append to initialize semihosting.argv[] */
1338 static inline void semihosting_arg_fallback(const char *file, const char *cmd)
1340 char *cmd_token;
1342 /* argv[0] */
1343 add_semihosting_arg(&semihosting, "arg", file, NULL);
1345 /* split -append and initialize argv[1..n] */
1346 cmd_token = strtok(g_strdup(cmd), " ");
1347 while (cmd_token) {
1348 add_semihosting_arg(&semihosting, "arg", cmd_token, NULL);
1349 cmd_token = strtok(NULL, " ");
1353 /* Now we still need this for compatibility with XEN. */
1354 bool has_igd_gfx_passthru;
1355 static void igd_gfx_passthru(void)
1357 has_igd_gfx_passthru = current_machine->igd_gfx_passthru;
1360 /***********************************************************/
1361 /* USB devices */
1363 static int usb_device_add(const char *devname)
1365 USBDevice *dev = NULL;
1366 #ifndef CONFIG_LINUX
1367 const char *p;
1368 #endif
1370 if (!machine_usb(current_machine)) {
1371 return -1;
1374 /* drivers with .usbdevice_name entry in USBDeviceInfo */
1375 dev = usbdevice_create(devname);
1376 if (dev)
1377 goto done;
1379 /* the other ones */
1380 #ifndef CONFIG_LINUX
1381 /* only the linux version is qdev-ified, usb-bsd still needs this */
1382 if (strstart(devname, "host:", &p)) {
1383 dev = usb_host_device_open(usb_bus_find(-1), p);
1385 #endif
1386 if (!dev)
1387 return -1;
1389 done:
1390 return 0;
1393 static int usb_device_del(const char *devname)
1395 int bus_num, addr;
1396 const char *p;
1398 if (strstart(devname, "host:", &p)) {
1399 return -1;
1402 if (!machine_usb(current_machine)) {
1403 return -1;
1406 p = strchr(devname, '.');
1407 if (!p)
1408 return -1;
1409 bus_num = strtoul(devname, NULL, 0);
1410 addr = strtoul(p + 1, NULL, 0);
1412 return usb_device_delete_addr(bus_num, addr);
1415 static int usb_parse(const char *cmdline)
1417 int r;
1418 r = usb_device_add(cmdline);
1419 if (r < 0) {
1420 error_report("could not add USB device '%s'", cmdline);
1422 return r;
1425 void hmp_usb_add(Monitor *mon, const QDict *qdict)
1427 const char *devname = qdict_get_str(qdict, "devname");
1428 if (usb_device_add(devname) < 0) {
1429 error_report("could not add USB device '%s'", devname);
1433 void hmp_usb_del(Monitor *mon, const QDict *qdict)
1435 const char *devname = qdict_get_str(qdict, "devname");
1436 if (usb_device_del(devname) < 0) {
1437 error_report("could not delete USB device '%s'", devname);
1441 /***********************************************************/
1442 /* machine registration */
1444 MachineState *current_machine;
1446 static MachineClass *find_machine(const char *name)
1448 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
1449 MachineClass *mc = NULL;
1451 for (el = machines; el; el = el->next) {
1452 MachineClass *temp = el->data;
1454 if (!strcmp(temp->name, name)) {
1455 mc = temp;
1456 break;
1458 if (temp->alias &&
1459 !strcmp(temp->alias, name)) {
1460 mc = temp;
1461 break;
1465 g_slist_free(machines);
1466 return mc;
1469 MachineClass *find_default_machine(void)
1471 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
1472 MachineClass *mc = NULL;
1474 for (el = machines; el; el = el->next) {
1475 MachineClass *temp = el->data;
1477 if (temp->is_default) {
1478 mc = temp;
1479 break;
1483 g_slist_free(machines);
1484 return mc;
1487 MachineInfoList *qmp_query_machines(Error **errp)
1489 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
1490 MachineInfoList *mach_list = NULL;
1492 for (el = machines; el; el = el->next) {
1493 MachineClass *mc = el->data;
1494 MachineInfoList *entry;
1495 MachineInfo *info;
1497 info = g_malloc0(sizeof(*info));
1498 if (mc->is_default) {
1499 info->has_is_default = true;
1500 info->is_default = true;
1503 if (mc->alias) {
1504 info->has_alias = true;
1505 info->alias = g_strdup(mc->alias);
1508 info->name = g_strdup(mc->name);
1509 info->cpu_max = !mc->max_cpus ? 1 : mc->max_cpus;
1510 info->hotpluggable_cpus = !!mc->query_hotpluggable_cpus;
1512 entry = g_malloc0(sizeof(*entry));
1513 entry->value = info;
1514 entry->next = mach_list;
1515 mach_list = entry;
1518 g_slist_free(machines);
1519 return mach_list;
1522 static int machine_help_func(QemuOpts *opts, MachineState *machine)
1524 ObjectProperty *prop;
1525 ObjectPropertyIterator iter;
1527 if (!qemu_opt_has_help_opt(opts)) {
1528 return 0;
1531 object_property_iter_init(&iter, OBJECT(machine));
1532 while ((prop = object_property_iter_next(&iter))) {
1533 if (!prop->set) {
1534 continue;
1537 error_printf("%s.%s=%s", MACHINE_GET_CLASS(machine)->name,
1538 prop->name, prop->type);
1539 if (prop->description) {
1540 error_printf(" (%s)\n", prop->description);
1541 } else {
1542 error_printf("\n");
1546 return 1;
1549 /***********************************************************/
1550 /* main execution loop */
1552 struct vm_change_state_entry {
1553 VMChangeStateHandler *cb;
1554 void *opaque;
1555 QLIST_ENTRY (vm_change_state_entry) entries;
1558 static QLIST_HEAD(vm_change_state_head, vm_change_state_entry) vm_change_state_head;
1560 VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
1561 void *opaque)
1563 VMChangeStateEntry *e;
1565 e = g_malloc0(sizeof (*e));
1567 e->cb = cb;
1568 e->opaque = opaque;
1569 QLIST_INSERT_HEAD(&vm_change_state_head, e, entries);
1570 return e;
1573 void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
1575 QLIST_REMOVE (e, entries);
1576 g_free (e);
1579 void vm_state_notify(int running, RunState state)
1581 VMChangeStateEntry *e, *next;
1583 trace_vm_state_notify(running, state);
1585 QLIST_FOREACH_SAFE(e, &vm_change_state_head, entries, next) {
1586 e->cb(e->opaque, running, state);
1590 /* reset/shutdown handler */
1592 typedef struct QEMUResetEntry {
1593 QTAILQ_ENTRY(QEMUResetEntry) entry;
1594 QEMUResetHandler *func;
1595 void *opaque;
1596 } QEMUResetEntry;
1598 static QTAILQ_HEAD(reset_handlers, QEMUResetEntry) reset_handlers =
1599 QTAILQ_HEAD_INITIALIZER(reset_handlers);
1600 static int reset_requested;
1601 static int shutdown_requested, shutdown_signal = -1;
1602 static pid_t shutdown_pid;
1603 static int powerdown_requested;
1604 static int debug_requested;
1605 static int suspend_requested;
1606 static WakeupReason wakeup_reason;
1607 static NotifierList powerdown_notifiers =
1608 NOTIFIER_LIST_INITIALIZER(powerdown_notifiers);
1609 static NotifierList suspend_notifiers =
1610 NOTIFIER_LIST_INITIALIZER(suspend_notifiers);
1611 static NotifierList wakeup_notifiers =
1612 NOTIFIER_LIST_INITIALIZER(wakeup_notifiers);
1613 static uint32_t wakeup_reason_mask = ~(1 << QEMU_WAKEUP_REASON_NONE);
1615 int qemu_shutdown_requested_get(void)
1617 return shutdown_requested;
1620 int qemu_reset_requested_get(void)
1622 return reset_requested;
1625 static int qemu_shutdown_requested(void)
1627 return atomic_xchg(&shutdown_requested, 0);
1630 static void qemu_kill_report(void)
1632 if (!qtest_driver() && shutdown_signal != -1) {
1633 if (shutdown_pid == 0) {
1634 /* This happens for eg ^C at the terminal, so it's worth
1635 * avoiding printing an odd message in that case.
1637 error_report("terminating on signal %d", shutdown_signal);
1638 } else {
1639 error_report("terminating on signal %d from pid " FMT_pid,
1640 shutdown_signal, shutdown_pid);
1642 shutdown_signal = -1;
1646 static int qemu_reset_requested(void)
1648 int r = reset_requested;
1649 if (r && replay_checkpoint(CHECKPOINT_RESET_REQUESTED)) {
1650 reset_requested = 0;
1651 return r;
1653 return false;
1656 static int qemu_suspend_requested(void)
1658 int r = suspend_requested;
1659 if (r && replay_checkpoint(CHECKPOINT_SUSPEND_REQUESTED)) {
1660 suspend_requested = 0;
1661 return r;
1663 return false;
1666 static WakeupReason qemu_wakeup_requested(void)
1668 return wakeup_reason;
1671 static int qemu_powerdown_requested(void)
1673 int r = powerdown_requested;
1674 powerdown_requested = 0;
1675 return r;
1678 static int qemu_debug_requested(void)
1680 int r = debug_requested;
1681 debug_requested = 0;
1682 return r;
1685 void qemu_register_reset(QEMUResetHandler *func, void *opaque)
1687 QEMUResetEntry *re = g_malloc0(sizeof(QEMUResetEntry));
1689 re->func = func;
1690 re->opaque = opaque;
1691 QTAILQ_INSERT_TAIL(&reset_handlers, re, entry);
1694 void qemu_unregister_reset(QEMUResetHandler *func, void *opaque)
1696 QEMUResetEntry *re;
1698 QTAILQ_FOREACH(re, &reset_handlers, entry) {
1699 if (re->func == func && re->opaque == opaque) {
1700 QTAILQ_REMOVE(&reset_handlers, re, entry);
1701 g_free(re);
1702 return;
1707 void qemu_devices_reset(void)
1709 QEMUResetEntry *re, *nre;
1711 /* reset all devices */
1712 QTAILQ_FOREACH_SAFE(re, &reset_handlers, entry, nre) {
1713 re->func(re->opaque);
1717 void qemu_system_reset(bool report)
1719 MachineClass *mc;
1721 mc = current_machine ? MACHINE_GET_CLASS(current_machine) : NULL;
1723 cpu_synchronize_all_states();
1725 if (mc && mc->reset) {
1726 mc->reset();
1727 } else {
1728 qemu_devices_reset();
1730 if (report) {
1731 qapi_event_send_reset(&error_abort);
1733 cpu_synchronize_all_post_reset();
1736 void qemu_system_guest_panicked(void)
1738 if (current_cpu) {
1739 current_cpu->crash_occurred = true;
1741 qapi_event_send_guest_panicked(GUEST_PANIC_ACTION_PAUSE, &error_abort);
1742 vm_stop(RUN_STATE_GUEST_PANICKED);
1745 void qemu_system_reset_request(void)
1747 if (no_reboot) {
1748 shutdown_requested = 1;
1749 } else {
1750 reset_requested = 1;
1752 cpu_stop_current();
1753 qemu_notify_event();
1756 static void qemu_system_suspend(void)
1758 pause_all_vcpus();
1759 notifier_list_notify(&suspend_notifiers, NULL);
1760 runstate_set(RUN_STATE_SUSPENDED);
1761 qapi_event_send_suspend(&error_abort);
1764 void qemu_system_suspend_request(void)
1766 if (runstate_check(RUN_STATE_SUSPENDED)) {
1767 return;
1769 suspend_requested = 1;
1770 cpu_stop_current();
1771 qemu_notify_event();
1774 void qemu_register_suspend_notifier(Notifier *notifier)
1776 notifier_list_add(&suspend_notifiers, notifier);
1779 void qemu_system_wakeup_request(WakeupReason reason)
1781 trace_system_wakeup_request(reason);
1783 if (!runstate_check(RUN_STATE_SUSPENDED)) {
1784 return;
1786 if (!(wakeup_reason_mask & (1 << reason))) {
1787 return;
1789 runstate_set(RUN_STATE_RUNNING);
1790 wakeup_reason = reason;
1791 qemu_notify_event();
1794 void qemu_system_wakeup_enable(WakeupReason reason, bool enabled)
1796 if (enabled) {
1797 wakeup_reason_mask |= (1 << reason);
1798 } else {
1799 wakeup_reason_mask &= ~(1 << reason);
1803 void qemu_register_wakeup_notifier(Notifier *notifier)
1805 notifier_list_add(&wakeup_notifiers, notifier);
1808 void qemu_system_killed(int signal, pid_t pid)
1810 shutdown_signal = signal;
1811 shutdown_pid = pid;
1812 no_shutdown = 0;
1814 /* Cannot call qemu_system_shutdown_request directly because
1815 * we are in a signal handler.
1817 shutdown_requested = 1;
1818 qemu_notify_event();
1821 void qemu_system_shutdown_request(void)
1823 trace_qemu_system_shutdown_request();
1824 replay_shutdown_request();
1825 shutdown_requested = 1;
1826 qemu_notify_event();
1829 static void qemu_system_powerdown(void)
1831 qapi_event_send_powerdown(&error_abort);
1832 notifier_list_notify(&powerdown_notifiers, NULL);
1835 void qemu_system_powerdown_request(void)
1837 trace_qemu_system_powerdown_request();
1838 powerdown_requested = 1;
1839 qemu_notify_event();
1842 void qemu_register_powerdown_notifier(Notifier *notifier)
1844 notifier_list_add(&powerdown_notifiers, notifier);
1847 void qemu_system_debug_request(void)
1849 debug_requested = 1;
1850 qemu_notify_event();
1853 static bool main_loop_should_exit(void)
1855 RunState r;
1856 if (qemu_debug_requested()) {
1857 vm_stop(RUN_STATE_DEBUG);
1859 if (qemu_suspend_requested()) {
1860 qemu_system_suspend();
1862 if (qemu_shutdown_requested()) {
1863 qemu_kill_report();
1864 qapi_event_send_shutdown(&error_abort);
1865 if (no_shutdown) {
1866 vm_stop(RUN_STATE_SHUTDOWN);
1867 } else {
1868 return true;
1871 if (qemu_reset_requested()) {
1872 pause_all_vcpus();
1873 qemu_system_reset(VMRESET_REPORT);
1874 resume_all_vcpus();
1875 if (!runstate_check(RUN_STATE_RUNNING) &&
1876 !runstate_check(RUN_STATE_INMIGRATE)) {
1877 runstate_set(RUN_STATE_PRELAUNCH);
1880 if (qemu_wakeup_requested()) {
1881 pause_all_vcpus();
1882 qemu_system_reset(VMRESET_SILENT);
1883 notifier_list_notify(&wakeup_notifiers, &wakeup_reason);
1884 wakeup_reason = QEMU_WAKEUP_REASON_NONE;
1885 resume_all_vcpus();
1886 qapi_event_send_wakeup(&error_abort);
1888 if (qemu_powerdown_requested()) {
1889 qemu_system_powerdown();
1891 if (qemu_vmstop_requested(&r)) {
1892 vm_stop(r);
1894 return false;
1897 static void main_loop(void)
1899 bool nonblocking;
1900 int last_io = 0;
1901 #ifdef CONFIG_PROFILER
1902 int64_t ti;
1903 #endif
1904 do {
1905 nonblocking = !kvm_enabled() && !xen_enabled() && last_io > 0;
1906 #ifdef CONFIG_PROFILER
1907 ti = profile_getclock();
1908 #endif
1909 last_io = main_loop_wait(nonblocking);
1910 #ifdef CONFIG_PROFILER
1911 dev_time += profile_getclock() - ti;
1912 #endif
1913 } while (!main_loop_should_exit());
1916 static void version(void)
1918 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION ", "
1919 QEMU_COPYRIGHT "\n");
1922 static void help(int exitcode)
1924 version();
1925 printf("usage: %s [options] [disk_image]\n\n"
1926 "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
1927 error_get_progname());
1929 #define QEMU_OPTIONS_GENERATE_HELP
1930 #include "qemu-options-wrapper.h"
1932 printf("\nDuring emulation, the following keys are useful:\n"
1933 "ctrl-alt-f toggle full screen\n"
1934 "ctrl-alt-n switch to virtual console 'n'\n"
1935 "ctrl-alt toggle mouse and keyboard grab\n"
1936 "\n"
1937 "When using -nographic, press 'ctrl-a h' to get some help.\n");
1939 exit(exitcode);
1942 #define HAS_ARG 0x0001
1944 typedef struct QEMUOption {
1945 const char *name;
1946 int flags;
1947 int index;
1948 uint32_t arch_mask;
1949 } QEMUOption;
1951 static const QEMUOption qemu_options[] = {
1952 { "h", 0, QEMU_OPTION_h, QEMU_ARCH_ALL },
1953 #define QEMU_OPTIONS_GENERATE_OPTIONS
1954 #include "qemu-options-wrapper.h"
1955 { NULL },
1958 typedef struct VGAInterfaceInfo {
1959 const char *opt_name; /* option name */
1960 const char *name; /* human-readable name */
1961 /* Class names indicating that support is available.
1962 * If no class is specified, the interface is always available */
1963 const char *class_names[2];
1964 } VGAInterfaceInfo;
1966 static VGAInterfaceInfo vga_interfaces[VGA_TYPE_MAX] = {
1967 [VGA_NONE] = {
1968 .opt_name = "none",
1970 [VGA_STD] = {
1971 .opt_name = "std",
1972 .name = "standard VGA",
1973 .class_names = { "VGA", "isa-vga" },
1975 [VGA_CIRRUS] = {
1976 .opt_name = "cirrus",
1977 .name = "Cirrus VGA",
1978 .class_names = { "cirrus-vga", "isa-cirrus-vga" },
1980 [VGA_VMWARE] = {
1981 .opt_name = "vmware",
1982 .name = "VMWare SVGA",
1983 .class_names = { "vmware-svga" },
1985 [VGA_VIRTIO] = {
1986 .opt_name = "virtio",
1987 .name = "Virtio VGA",
1988 .class_names = { "virtio-vga" },
1990 [VGA_QXL] = {
1991 .opt_name = "qxl",
1992 .name = "QXL VGA",
1993 .class_names = { "qxl-vga" },
1995 [VGA_TCX] = {
1996 .opt_name = "tcx",
1997 .name = "TCX framebuffer",
1998 .class_names = { "SUNW,tcx" },
2000 [VGA_CG3] = {
2001 .opt_name = "cg3",
2002 .name = "CG3 framebuffer",
2003 .class_names = { "cgthree" },
2005 [VGA_XENFB] = {
2006 .opt_name = "xenfb",
2010 static bool vga_interface_available(VGAInterfaceType t)
2012 VGAInterfaceInfo *ti = &vga_interfaces[t];
2014 assert(t < VGA_TYPE_MAX);
2015 return !ti->class_names[0] ||
2016 object_class_by_name(ti->class_names[0]) ||
2017 object_class_by_name(ti->class_names[1]);
2020 static void select_vgahw(const char *p)
2022 const char *opts;
2023 int t;
2025 assert(vga_interface_type == VGA_NONE);
2026 for (t = 0; t < VGA_TYPE_MAX; t++) {
2027 VGAInterfaceInfo *ti = &vga_interfaces[t];
2028 if (ti->opt_name && strstart(p, ti->opt_name, &opts)) {
2029 if (!vga_interface_available(t)) {
2030 error_report("%s not available", ti->name);
2031 exit(1);
2033 vga_interface_type = t;
2034 break;
2037 if (t == VGA_TYPE_MAX) {
2038 invalid_vga:
2039 error_report("unknown vga type: %s", p);
2040 exit(1);
2042 while (*opts) {
2043 const char *nextopt;
2045 if (strstart(opts, ",retrace=", &nextopt)) {
2046 opts = nextopt;
2047 if (strstart(opts, "dumb", &nextopt))
2048 vga_retrace_method = VGA_RETRACE_DUMB;
2049 else if (strstart(opts, "precise", &nextopt))
2050 vga_retrace_method = VGA_RETRACE_PRECISE;
2051 else goto invalid_vga;
2052 } else goto invalid_vga;
2053 opts = nextopt;
2057 typedef enum DisplayType {
2058 DT_DEFAULT,
2059 DT_CURSES,
2060 DT_SDL,
2061 DT_COCOA,
2062 DT_GTK,
2063 DT_NONE,
2064 } DisplayType;
2066 static DisplayType select_display(const char *p)
2068 const char *opts;
2069 DisplayType display = DT_DEFAULT;
2071 if (strstart(p, "sdl", &opts)) {
2072 #ifdef CONFIG_SDL
2073 display = DT_SDL;
2074 while (*opts) {
2075 const char *nextopt;
2077 if (strstart(opts, ",frame=", &nextopt)) {
2078 opts = nextopt;
2079 if (strstart(opts, "on", &nextopt)) {
2080 no_frame = 0;
2081 } else if (strstart(opts, "off", &nextopt)) {
2082 no_frame = 1;
2083 } else {
2084 goto invalid_sdl_args;
2086 } else if (strstart(opts, ",alt_grab=", &nextopt)) {
2087 opts = nextopt;
2088 if (strstart(opts, "on", &nextopt)) {
2089 alt_grab = 1;
2090 } else if (strstart(opts, "off", &nextopt)) {
2091 alt_grab = 0;
2092 } else {
2093 goto invalid_sdl_args;
2095 } else if (strstart(opts, ",ctrl_grab=", &nextopt)) {
2096 opts = nextopt;
2097 if (strstart(opts, "on", &nextopt)) {
2098 ctrl_grab = 1;
2099 } else if (strstart(opts, "off", &nextopt)) {
2100 ctrl_grab = 0;
2101 } else {
2102 goto invalid_sdl_args;
2104 } else if (strstart(opts, ",window_close=", &nextopt)) {
2105 opts = nextopt;
2106 if (strstart(opts, "on", &nextopt)) {
2107 no_quit = 0;
2108 } else if (strstart(opts, "off", &nextopt)) {
2109 no_quit = 1;
2110 } else {
2111 goto invalid_sdl_args;
2113 } else if (strstart(opts, ",gl=", &nextopt)) {
2114 opts = nextopt;
2115 if (strstart(opts, "on", &nextopt)) {
2116 request_opengl = 1;
2117 } else if (strstart(opts, "off", &nextopt)) {
2118 request_opengl = 0;
2119 } else {
2120 goto invalid_sdl_args;
2122 } else {
2123 invalid_sdl_args:
2124 error_report("invalid SDL option string");
2125 exit(1);
2127 opts = nextopt;
2129 #else
2130 error_report("SDL support is disabled");
2131 exit(1);
2132 #endif
2133 } else if (strstart(p, "vnc", &opts)) {
2134 if (*opts == '=') {
2135 vnc_parse(opts + 1, &error_fatal);
2136 } else {
2137 error_report("VNC requires a display argument vnc=<display>");
2138 exit(1);
2140 } else if (strstart(p, "curses", &opts)) {
2141 #ifdef CONFIG_CURSES
2142 display = DT_CURSES;
2143 #else
2144 error_report("curses support is disabled");
2145 exit(1);
2146 #endif
2147 } else if (strstart(p, "gtk", &opts)) {
2148 #ifdef CONFIG_GTK
2149 display = DT_GTK;
2150 while (*opts) {
2151 const char *nextopt;
2153 if (strstart(opts, ",grab_on_hover=", &nextopt)) {
2154 opts = nextopt;
2155 if (strstart(opts, "on", &nextopt)) {
2156 grab_on_hover = true;
2157 } else if (strstart(opts, "off", &nextopt)) {
2158 grab_on_hover = false;
2159 } else {
2160 goto invalid_gtk_args;
2162 } else if (strstart(opts, ",gl=", &nextopt)) {
2163 opts = nextopt;
2164 if (strstart(opts, "on", &nextopt)) {
2165 request_opengl = 1;
2166 } else if (strstart(opts, "off", &nextopt)) {
2167 request_opengl = 0;
2168 } else {
2169 goto invalid_gtk_args;
2171 } else {
2172 invalid_gtk_args:
2173 error_report("invalid GTK option string");
2174 exit(1);
2176 opts = nextopt;
2178 #else
2179 error_report("GTK support is disabled");
2180 exit(1);
2181 #endif
2182 } else if (strstart(p, "none", &opts)) {
2183 display = DT_NONE;
2184 } else {
2185 error_report("unknown display type");
2186 exit(1);
2189 return display;
2192 static int balloon_parse(const char *arg)
2194 QemuOpts *opts;
2196 if (strcmp(arg, "none") == 0) {
2197 return 0;
2200 if (!strncmp(arg, "virtio", 6)) {
2201 if (arg[6] == ',') {
2202 /* have params -> parse them */
2203 opts = qemu_opts_parse_noisily(qemu_find_opts("device"), arg + 7,
2204 false);
2205 if (!opts)
2206 return -1;
2207 } else {
2208 /* create empty opts */
2209 opts = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
2210 &error_abort);
2212 qemu_opt_set(opts, "driver", "virtio-balloon", &error_abort);
2213 return 0;
2216 return -1;
2219 char *qemu_find_file(int type, const char *name)
2221 int i;
2222 const char *subdir;
2223 char *buf;
2225 /* Try the name as a straight path first */
2226 if (access(name, R_OK) == 0) {
2227 trace_load_file(name, name);
2228 return g_strdup(name);
2231 switch (type) {
2232 case QEMU_FILE_TYPE_BIOS:
2233 subdir = "";
2234 break;
2235 case QEMU_FILE_TYPE_KEYMAP:
2236 subdir = "keymaps/";
2237 break;
2238 default:
2239 abort();
2242 for (i = 0; i < data_dir_idx; i++) {
2243 buf = g_strdup_printf("%s/%s%s", data_dir[i], subdir, name);
2244 if (access(buf, R_OK) == 0) {
2245 trace_load_file(name, buf);
2246 return buf;
2248 g_free(buf);
2250 return NULL;
2253 static inline bool nonempty_str(const char *str)
2255 return str && *str;
2258 static int parse_fw_cfg(void *opaque, QemuOpts *opts, Error **errp)
2260 gchar *buf;
2261 size_t size;
2262 const char *name, *file, *str;
2263 FWCfgState *fw_cfg = (FWCfgState *) opaque;
2265 if (fw_cfg == NULL) {
2266 error_report("fw_cfg device not available");
2267 return -1;
2269 name = qemu_opt_get(opts, "name");
2270 file = qemu_opt_get(opts, "file");
2271 str = qemu_opt_get(opts, "string");
2273 /* we need name and either a file or the content string */
2274 if (!(nonempty_str(name) && (nonempty_str(file) || nonempty_str(str)))) {
2275 error_report("invalid argument(s)");
2276 return -1;
2278 if (nonempty_str(file) && nonempty_str(str)) {
2279 error_report("file and string are mutually exclusive");
2280 return -1;
2282 if (strlen(name) > FW_CFG_MAX_FILE_PATH - 1) {
2283 error_report("name too long (max. %d char)", FW_CFG_MAX_FILE_PATH - 1);
2284 return -1;
2286 if (strncmp(name, "opt/", 4) != 0) {
2287 error_report("warning: externally provided fw_cfg item names "
2288 "should be prefixed with \"opt/\"");
2290 if (nonempty_str(str)) {
2291 size = strlen(str); /* NUL terminator NOT included in fw_cfg blob */
2292 buf = g_memdup(str, size);
2293 } else {
2294 if (!g_file_get_contents(file, &buf, &size, NULL)) {
2295 error_report("can't load %s", file);
2296 return -1;
2299 /* For legacy, keep user files in a specific global order. */
2300 fw_cfg_set_order_override(fw_cfg, FW_CFG_ORDER_OVERRIDE_USER);
2301 fw_cfg_add_file(fw_cfg, name, buf, size);
2302 fw_cfg_reset_order_override(fw_cfg);
2303 return 0;
2306 static int device_help_func(void *opaque, QemuOpts *opts, Error **errp)
2308 return qdev_device_help(opts);
2311 static int device_init_func(void *opaque, QemuOpts *opts, Error **errp)
2313 Error *err = NULL;
2314 DeviceState *dev;
2316 dev = qdev_device_add(opts, &err);
2317 if (!dev) {
2318 error_report_err(err);
2319 return -1;
2321 object_unref(OBJECT(dev));
2322 return 0;
2325 static int chardev_init_func(void *opaque, QemuOpts *opts, Error **errp)
2327 Error *local_err = NULL;
2329 qemu_chr_new_from_opts(opts, NULL, &local_err);
2330 if (local_err) {
2331 error_report_err(local_err);
2332 return -1;
2334 return 0;
2337 #ifdef CONFIG_VIRTFS
2338 static int fsdev_init_func(void *opaque, QemuOpts *opts, Error **errp)
2340 return qemu_fsdev_add(opts);
2342 #endif
2344 static int mon_init_func(void *opaque, QemuOpts *opts, Error **errp)
2346 CharDriverState *chr;
2347 const char *chardev;
2348 const char *mode;
2349 int flags;
2351 mode = qemu_opt_get(opts, "mode");
2352 if (mode == NULL) {
2353 mode = "readline";
2355 if (strcmp(mode, "readline") == 0) {
2356 flags = MONITOR_USE_READLINE;
2357 } else if (strcmp(mode, "control") == 0) {
2358 flags = MONITOR_USE_CONTROL;
2359 } else {
2360 error_report("unknown monitor mode \"%s\"", mode);
2361 exit(1);
2364 if (qemu_opt_get_bool(opts, "pretty", 0))
2365 flags |= MONITOR_USE_PRETTY;
2367 if (qemu_opt_get_bool(opts, "default", 0))
2368 flags |= MONITOR_IS_DEFAULT;
2370 chardev = qemu_opt_get(opts, "chardev");
2371 chr = qemu_chr_find(chardev);
2372 if (chr == NULL) {
2373 error_report("chardev \"%s\" not found", chardev);
2374 exit(1);
2377 qemu_chr_fe_claim_no_fail(chr);
2378 monitor_init(chr, flags);
2379 return 0;
2382 static void monitor_parse(const char *optarg, const char *mode, bool pretty)
2384 static int monitor_device_index = 0;
2385 QemuOpts *opts;
2386 const char *p;
2387 char label[32];
2388 int def = 0;
2390 if (strstart(optarg, "chardev:", &p)) {
2391 snprintf(label, sizeof(label), "%s", p);
2392 } else {
2393 snprintf(label, sizeof(label), "compat_monitor%d",
2394 monitor_device_index);
2395 if (monitor_device_index == 0) {
2396 def = 1;
2398 opts = qemu_chr_parse_compat(label, optarg);
2399 if (!opts) {
2400 error_report("parse error: %s", optarg);
2401 exit(1);
2405 opts = qemu_opts_create(qemu_find_opts("mon"), label, 1, &error_fatal);
2406 qemu_opt_set(opts, "mode", mode, &error_abort);
2407 qemu_opt_set(opts, "chardev", label, &error_abort);
2408 qemu_opt_set_bool(opts, "pretty", pretty, &error_abort);
2409 if (def)
2410 qemu_opt_set(opts, "default", "on", &error_abort);
2411 monitor_device_index++;
2414 struct device_config {
2415 enum {
2416 DEV_USB, /* -usbdevice */
2417 DEV_BT, /* -bt */
2418 DEV_SERIAL, /* -serial */
2419 DEV_PARALLEL, /* -parallel */
2420 DEV_VIRTCON, /* -virtioconsole */
2421 DEV_DEBUGCON, /* -debugcon */
2422 DEV_GDB, /* -gdb, -s */
2423 DEV_SCLP, /* s390 sclp */
2424 } type;
2425 const char *cmdline;
2426 Location loc;
2427 QTAILQ_ENTRY(device_config) next;
2430 static QTAILQ_HEAD(, device_config) device_configs =
2431 QTAILQ_HEAD_INITIALIZER(device_configs);
2433 static void add_device_config(int type, const char *cmdline)
2435 struct device_config *conf;
2437 conf = g_malloc0(sizeof(*conf));
2438 conf->type = type;
2439 conf->cmdline = cmdline;
2440 loc_save(&conf->loc);
2441 QTAILQ_INSERT_TAIL(&device_configs, conf, next);
2444 static int foreach_device_config(int type, int (*func)(const char *cmdline))
2446 struct device_config *conf;
2447 int rc;
2449 QTAILQ_FOREACH(conf, &device_configs, next) {
2450 if (conf->type != type)
2451 continue;
2452 loc_push_restore(&conf->loc);
2453 rc = func(conf->cmdline);
2454 loc_pop(&conf->loc);
2455 if (rc) {
2456 return rc;
2459 return 0;
2462 static int serial_parse(const char *devname)
2464 static int index = 0;
2465 char label[32];
2467 if (strcmp(devname, "none") == 0)
2468 return 0;
2469 if (index == MAX_SERIAL_PORTS) {
2470 error_report("too many serial ports");
2471 exit(1);
2473 snprintf(label, sizeof(label), "serial%d", index);
2474 serial_hds[index] = qemu_chr_new(label, devname, NULL);
2475 if (!serial_hds[index]) {
2476 error_report("could not connect serial device"
2477 " to character backend '%s'", devname);
2478 return -1;
2480 index++;
2481 return 0;
2484 static int parallel_parse(const char *devname)
2486 static int index = 0;
2487 char label[32];
2489 if (strcmp(devname, "none") == 0)
2490 return 0;
2491 if (index == MAX_PARALLEL_PORTS) {
2492 error_report("too many parallel ports");
2493 exit(1);
2495 snprintf(label, sizeof(label), "parallel%d", index);
2496 parallel_hds[index] = qemu_chr_new(label, devname, NULL);
2497 if (!parallel_hds[index]) {
2498 error_report("could not connect parallel device"
2499 " to character backend '%s'", devname);
2500 return -1;
2502 index++;
2503 return 0;
2506 static int virtcon_parse(const char *devname)
2508 QemuOptsList *device = qemu_find_opts("device");
2509 static int index = 0;
2510 char label[32];
2511 QemuOpts *bus_opts, *dev_opts;
2513 if (strcmp(devname, "none") == 0)
2514 return 0;
2515 if (index == MAX_VIRTIO_CONSOLES) {
2516 error_report("too many virtio consoles");
2517 exit(1);
2520 bus_opts = qemu_opts_create(device, NULL, 0, &error_abort);
2521 qemu_opt_set(bus_opts, "driver", "virtio-serial", &error_abort);
2523 dev_opts = qemu_opts_create(device, NULL, 0, &error_abort);
2524 qemu_opt_set(dev_opts, "driver", "virtconsole", &error_abort);
2526 snprintf(label, sizeof(label), "virtcon%d", index);
2527 virtcon_hds[index] = qemu_chr_new(label, devname, NULL);
2528 if (!virtcon_hds[index]) {
2529 error_report("could not connect virtio console"
2530 " to character backend '%s'", devname);
2531 return -1;
2533 qemu_opt_set(dev_opts, "chardev", label, &error_abort);
2535 index++;
2536 return 0;
2539 static int sclp_parse(const char *devname)
2541 QemuOptsList *device = qemu_find_opts("device");
2542 static int index = 0;
2543 char label[32];
2544 QemuOpts *dev_opts;
2546 if (strcmp(devname, "none") == 0) {
2547 return 0;
2549 if (index == MAX_SCLP_CONSOLES) {
2550 error_report("too many sclp consoles");
2551 exit(1);
2554 assert(arch_type == QEMU_ARCH_S390X);
2556 dev_opts = qemu_opts_create(device, NULL, 0, NULL);
2557 qemu_opt_set(dev_opts, "driver", "sclpconsole", &error_abort);
2559 snprintf(label, sizeof(label), "sclpcon%d", index);
2560 sclp_hds[index] = qemu_chr_new(label, devname, NULL);
2561 if (!sclp_hds[index]) {
2562 error_report("could not connect sclp console"
2563 " to character backend '%s'", devname);
2564 return -1;
2566 qemu_opt_set(dev_opts, "chardev", label, &error_abort);
2568 index++;
2569 return 0;
2572 static int debugcon_parse(const char *devname)
2574 QemuOpts *opts;
2576 if (!qemu_chr_new("debugcon", devname, NULL)) {
2577 exit(1);
2579 opts = qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL);
2580 if (!opts) {
2581 error_report("already have a debugcon device");
2582 exit(1);
2584 qemu_opt_set(opts, "driver", "isa-debugcon", &error_abort);
2585 qemu_opt_set(opts, "chardev", "debugcon", &error_abort);
2586 return 0;
2589 static gint machine_class_cmp(gconstpointer a, gconstpointer b)
2591 const MachineClass *mc1 = a, *mc2 = b;
2592 int res;
2594 if (mc1->family == NULL) {
2595 if (mc2->family == NULL) {
2596 /* Compare standalone machine types against each other; they sort
2597 * in increasing order.
2599 return strcmp(object_class_get_name(OBJECT_CLASS(mc1)),
2600 object_class_get_name(OBJECT_CLASS(mc2)));
2603 /* Standalone machine types sort after families. */
2604 return 1;
2607 if (mc2->family == NULL) {
2608 /* Families sort before standalone machine types. */
2609 return -1;
2612 /* Families sort between each other alphabetically increasingly. */
2613 res = strcmp(mc1->family, mc2->family);
2614 if (res != 0) {
2615 return res;
2618 /* Within the same family, machine types sort in decreasing order. */
2619 return strcmp(object_class_get_name(OBJECT_CLASS(mc2)),
2620 object_class_get_name(OBJECT_CLASS(mc1)));
2623 static MachineClass *machine_parse(const char *name)
2625 MachineClass *mc = NULL;
2626 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
2628 if (name) {
2629 mc = find_machine(name);
2631 if (mc) {
2632 g_slist_free(machines);
2633 return mc;
2635 if (name && !is_help_option(name)) {
2636 error_report("unsupported machine type");
2637 error_printf("Use -machine help to list supported machines\n");
2638 } else {
2639 printf("Supported machines are:\n");
2640 machines = g_slist_sort(machines, machine_class_cmp);
2641 for (el = machines; el; el = el->next) {
2642 MachineClass *mc = el->data;
2643 if (mc->alias) {
2644 printf("%-20s %s (alias of %s)\n", mc->alias, mc->desc, mc->name);
2646 printf("%-20s %s%s\n", mc->name, mc->desc,
2647 mc->is_default ? " (default)" : "");
2651 g_slist_free(machines);
2652 exit(!name || !is_help_option(name));
2655 void qemu_add_exit_notifier(Notifier *notify)
2657 notifier_list_add(&exit_notifiers, notify);
2660 void qemu_remove_exit_notifier(Notifier *notify)
2662 notifier_remove(notify);
2665 static void qemu_run_exit_notifiers(void)
2667 notifier_list_notify(&exit_notifiers, NULL);
2670 static bool machine_init_done;
2672 void qemu_add_machine_init_done_notifier(Notifier *notify)
2674 notifier_list_add(&machine_init_done_notifiers, notify);
2675 if (machine_init_done) {
2676 notify->notify(notify, NULL);
2680 void qemu_remove_machine_init_done_notifier(Notifier *notify)
2682 notifier_remove(notify);
2685 static void qemu_run_machine_init_done_notifiers(void)
2687 notifier_list_notify(&machine_init_done_notifiers, NULL);
2688 machine_init_done = true;
2691 static const QEMUOption *lookup_opt(int argc, char **argv,
2692 const char **poptarg, int *poptind)
2694 const QEMUOption *popt;
2695 int optind = *poptind;
2696 char *r = argv[optind];
2697 const char *optarg;
2699 loc_set_cmdline(argv, optind, 1);
2700 optind++;
2701 /* Treat --foo the same as -foo. */
2702 if (r[1] == '-')
2703 r++;
2704 popt = qemu_options;
2705 for(;;) {
2706 if (!popt->name) {
2707 error_report("invalid option");
2708 exit(1);
2710 if (!strcmp(popt->name, r + 1))
2711 break;
2712 popt++;
2714 if (popt->flags & HAS_ARG) {
2715 if (optind >= argc) {
2716 error_report("requires an argument");
2717 exit(1);
2719 optarg = argv[optind++];
2720 loc_set_cmdline(argv, optind - 2, 2);
2721 } else {
2722 optarg = NULL;
2725 *poptarg = optarg;
2726 *poptind = optind;
2728 return popt;
2731 static MachineClass *select_machine(void)
2733 MachineClass *machine_class = find_default_machine();
2734 const char *optarg;
2735 QemuOpts *opts;
2736 Location loc;
2738 loc_push_none(&loc);
2740 opts = qemu_get_machine_opts();
2741 qemu_opts_loc_restore(opts);
2743 optarg = qemu_opt_get(opts, "type");
2744 if (optarg) {
2745 machine_class = machine_parse(optarg);
2748 if (!machine_class) {
2749 error_report("No machine specified, and there is no default");
2750 error_printf("Use -machine help to list supported machines\n");
2751 exit(1);
2754 loc_pop(&loc);
2755 return machine_class;
2758 static int machine_set_property(void *opaque,
2759 const char *name, const char *value,
2760 Error **errp)
2762 Object *obj = OBJECT(opaque);
2763 Error *local_err = NULL;
2764 char *c, *qom_name;
2766 if (strcmp(name, "type") == 0) {
2767 return 0;
2770 qom_name = g_strdup(name);
2771 c = qom_name;
2772 while (*c++) {
2773 if (*c == '_') {
2774 *c = '-';
2778 object_property_parse(obj, value, qom_name, &local_err);
2779 g_free(qom_name);
2781 if (local_err) {
2782 error_report_err(local_err);
2783 return -1;
2786 return 0;
2791 * Initial object creation happens before all other
2792 * QEMU data types are created. The majority of objects
2793 * can be created at this point. The rng-egd object
2794 * cannot be created here, as it depends on the chardev
2795 * already existing.
2797 static bool object_create_initial(const char *type)
2799 if (g_str_equal(type, "rng-egd")) {
2800 return false;
2804 * return false for concrete netfilters since
2805 * they depend on netdevs already existing
2807 if (g_str_equal(type, "filter-buffer") ||
2808 g_str_equal(type, "filter-dump") ||
2809 g_str_equal(type, "filter-mirror") ||
2810 g_str_equal(type, "filter-redirector")) {
2811 return false;
2814 /* Memory allocation by backends needs to be done
2815 * after configure_accelerator() (due to the tcg_enabled()
2816 * checks at memory_region_init_*()).
2818 * Also, allocation of large amounts of memory may delay
2819 * chardev initialization for too long, and trigger timeouts
2820 * on software that waits for a monitor socket to be created
2821 * (e.g. libvirt).
2823 if (g_str_has_prefix(type, "memory-backend-")) {
2824 return false;
2827 return true;
2832 * The remainder of object creation happens after the
2833 * creation of chardev, fsdev, net clients and device data types.
2835 static bool object_create_delayed(const char *type)
2837 return !object_create_initial(type);
2841 static void set_memory_options(uint64_t *ram_slots, ram_addr_t *maxram_size,
2842 MachineClass *mc)
2844 uint64_t sz;
2845 const char *mem_str;
2846 const char *maxmem_str, *slots_str;
2847 const ram_addr_t default_ram_size = mc->default_ram_size;
2848 QemuOpts *opts = qemu_find_opts_singleton("memory");
2849 Location loc;
2851 loc_push_none(&loc);
2852 qemu_opts_loc_restore(opts);
2854 sz = 0;
2855 mem_str = qemu_opt_get(opts, "size");
2856 if (mem_str) {
2857 if (!*mem_str) {
2858 error_report("missing 'size' option value");
2859 exit(EXIT_FAILURE);
2862 sz = qemu_opt_get_size(opts, "size", ram_size);
2864 /* Fix up legacy suffix-less format */
2865 if (g_ascii_isdigit(mem_str[strlen(mem_str) - 1])) {
2866 uint64_t overflow_check = sz;
2868 sz <<= 20;
2869 if ((sz >> 20) != overflow_check) {
2870 error_report("too large 'size' option value");
2871 exit(EXIT_FAILURE);
2876 /* backward compatibility behaviour for case "-m 0" */
2877 if (sz == 0) {
2878 sz = default_ram_size;
2881 sz = QEMU_ALIGN_UP(sz, 8192);
2882 ram_size = sz;
2883 if (ram_size != sz) {
2884 error_report("ram size too large");
2885 exit(EXIT_FAILURE);
2888 /* store value for the future use */
2889 qemu_opt_set_number(opts, "size", ram_size, &error_abort);
2890 *maxram_size = ram_size;
2892 maxmem_str = qemu_opt_get(opts, "maxmem");
2893 slots_str = qemu_opt_get(opts, "slots");
2894 if (maxmem_str && slots_str) {
2895 uint64_t slots;
2897 sz = qemu_opt_get_size(opts, "maxmem", 0);
2898 slots = qemu_opt_get_number(opts, "slots", 0);
2899 if (sz < ram_size) {
2900 error_report("invalid value of -m option maxmem: "
2901 "maximum memory size (0x%" PRIx64 ") must be at least "
2902 "the initial memory size (0x" RAM_ADDR_FMT ")",
2903 sz, ram_size);
2904 exit(EXIT_FAILURE);
2905 } else if (sz > ram_size) {
2906 if (!slots) {
2907 error_report("invalid value of -m option: maxmem was "
2908 "specified, but no hotplug slots were specified");
2909 exit(EXIT_FAILURE);
2911 } else if (slots) {
2912 error_report("invalid value of -m option maxmem: "
2913 "memory slots were specified but maximum memory size "
2914 "(0x%" PRIx64 ") is equal to the initial memory size "
2915 "(0x" RAM_ADDR_FMT ")", sz, ram_size);
2916 exit(EXIT_FAILURE);
2919 *maxram_size = sz;
2920 *ram_slots = slots;
2921 } else if ((!maxmem_str && slots_str) ||
2922 (maxmem_str && !slots_str)) {
2923 error_report("invalid -m option value: missing "
2924 "'%s' option", slots_str ? "maxmem" : "slots");
2925 exit(EXIT_FAILURE);
2928 loc_pop(&loc);
2931 static int global_init_func(void *opaque, QemuOpts *opts, Error **errp)
2933 GlobalProperty *g;
2935 g = g_malloc0(sizeof(*g));
2936 g->driver = qemu_opt_get(opts, "driver");
2937 g->property = qemu_opt_get(opts, "property");
2938 g->value = qemu_opt_get(opts, "value");
2939 g->user_provided = true;
2940 g->errp = &error_fatal;
2941 qdev_prop_register_global(g);
2942 return 0;
2945 int main(int argc, char **argv, char **envp)
2947 int i;
2948 int snapshot, linux_boot;
2949 const char *initrd_filename;
2950 const char *kernel_filename, *kernel_cmdline;
2951 const char *boot_order = NULL;
2952 const char *boot_once = NULL;
2953 DisplayState *ds;
2954 int cyls, heads, secs, translation;
2955 QemuOpts *hda_opts = NULL, *opts, *machine_opts, *icount_opts = NULL;
2956 QemuOptsList *olist;
2957 int optind;
2958 const char *optarg;
2959 const char *loadvm = NULL;
2960 MachineClass *machine_class;
2961 const char *cpu_model;
2962 const char *vga_model = NULL;
2963 const char *qtest_chrdev = NULL;
2964 const char *qtest_log = NULL;
2965 const char *pid_file = NULL;
2966 const char *incoming = NULL;
2967 bool defconfig = true;
2968 bool userconfig = true;
2969 bool nographic = false;
2970 DisplayType display_type = DT_DEFAULT;
2971 int display_remote = 0;
2972 const char *log_mask = NULL;
2973 const char *log_file = NULL;
2974 char *trace_file = NULL;
2975 ram_addr_t maxram_size;
2976 uint64_t ram_slots = 0;
2977 FILE *vmstate_dump_file = NULL;
2978 Error *main_loop_err = NULL;
2979 Error *err = NULL;
2980 bool list_data_dirs = false;
2982 qemu_init_cpu_loop();
2983 qemu_mutex_lock_iothread();
2985 atexit(qemu_run_exit_notifiers);
2986 error_set_progname(argv[0]);
2987 qemu_init_exec_dir(argv[0]);
2989 module_call_init(MODULE_INIT_QOM);
2991 qemu_add_opts(&qemu_drive_opts);
2992 qemu_add_drive_opts(&qemu_legacy_drive_opts);
2993 qemu_add_drive_opts(&qemu_common_drive_opts);
2994 qemu_add_drive_opts(&qemu_drive_opts);
2995 qemu_add_opts(&qemu_chardev_opts);
2996 qemu_add_opts(&qemu_device_opts);
2997 qemu_add_opts(&qemu_netdev_opts);
2998 qemu_add_opts(&qemu_net_opts);
2999 qemu_add_opts(&qemu_rtc_opts);
3000 qemu_add_opts(&qemu_global_opts);
3001 qemu_add_opts(&qemu_mon_opts);
3002 qemu_add_opts(&qemu_trace_opts);
3003 qemu_add_opts(&qemu_option_rom_opts);
3004 qemu_add_opts(&qemu_machine_opts);
3005 qemu_add_opts(&qemu_mem_opts);
3006 qemu_add_opts(&qemu_smp_opts);
3007 qemu_add_opts(&qemu_boot_opts);
3008 qemu_add_opts(&qemu_sandbox_opts);
3009 qemu_add_opts(&qemu_add_fd_opts);
3010 qemu_add_opts(&qemu_object_opts);
3011 qemu_add_opts(&qemu_tpmdev_opts);
3012 qemu_add_opts(&qemu_realtime_opts);
3013 qemu_add_opts(&qemu_msg_opts);
3014 qemu_add_opts(&qemu_name_opts);
3015 qemu_add_opts(&qemu_numa_opts);
3016 qemu_add_opts(&qemu_icount_opts);
3017 qemu_add_opts(&qemu_semihosting_config_opts);
3018 qemu_add_opts(&qemu_fw_cfg_opts);
3019 module_call_init(MODULE_INIT_OPTS);
3021 runstate_init();
3023 if (qcrypto_init(&err) < 0) {
3024 error_reportf_err(err, "cannot initialize crypto: ");
3025 exit(1);
3027 rtc_clock = QEMU_CLOCK_HOST;
3029 QLIST_INIT (&vm_change_state_head);
3030 os_setup_early_signal_handling();
3032 cpu_model = NULL;
3033 snapshot = 0;
3034 cyls = heads = secs = 0;
3035 translation = BIOS_ATA_TRANSLATION_AUTO;
3037 nb_nics = 0;
3039 bdrv_init_with_whitelist();
3041 autostart = 1;
3043 /* first pass of option parsing */
3044 optind = 1;
3045 while (optind < argc) {
3046 if (argv[optind][0] != '-') {
3047 /* disk image */
3048 optind++;
3049 } else {
3050 const QEMUOption *popt;
3052 popt = lookup_opt(argc, argv, &optarg, &optind);
3053 switch (popt->index) {
3054 case QEMU_OPTION_nodefconfig:
3055 defconfig = false;
3056 break;
3057 case QEMU_OPTION_nouserconfig:
3058 userconfig = false;
3059 break;
3064 if (defconfig) {
3065 int ret;
3066 ret = qemu_read_default_config_files(userconfig);
3067 if (ret < 0) {
3068 exit(1);
3072 /* second pass of option parsing */
3073 optind = 1;
3074 for(;;) {
3075 if (optind >= argc)
3076 break;
3077 if (argv[optind][0] != '-') {
3078 hda_opts = drive_add(IF_DEFAULT, 0, argv[optind++], HD_OPTS);
3079 } else {
3080 const QEMUOption *popt;
3082 popt = lookup_opt(argc, argv, &optarg, &optind);
3083 if (!(popt->arch_mask & arch_type)) {
3084 error_report("Option not supported for this target");
3085 exit(1);
3087 switch(popt->index) {
3088 case QEMU_OPTION_no_kvm_irqchip: {
3089 olist = qemu_find_opts("machine");
3090 qemu_opts_parse_noisily(olist, "kernel_irqchip=off", false);
3091 break;
3093 case QEMU_OPTION_cpu:
3094 /* hw initialization will check this */
3095 cpu_model = optarg;
3096 break;
3097 case QEMU_OPTION_hda:
3099 char buf[256];
3100 if (cyls == 0)
3101 snprintf(buf, sizeof(buf), "%s", HD_OPTS);
3102 else
3103 snprintf(buf, sizeof(buf),
3104 "%s,cyls=%d,heads=%d,secs=%d%s",
3105 HD_OPTS , cyls, heads, secs,
3106 translation == BIOS_ATA_TRANSLATION_LBA ?
3107 ",trans=lba" :
3108 translation == BIOS_ATA_TRANSLATION_NONE ?
3109 ",trans=none" : "");
3110 drive_add(IF_DEFAULT, 0, optarg, buf);
3111 break;
3113 case QEMU_OPTION_hdb:
3114 case QEMU_OPTION_hdc:
3115 case QEMU_OPTION_hdd:
3116 drive_add(IF_DEFAULT, popt->index - QEMU_OPTION_hda, optarg,
3117 HD_OPTS);
3118 break;
3119 case QEMU_OPTION_drive:
3120 if (drive_def(optarg) == NULL) {
3121 exit(1);
3123 break;
3124 case QEMU_OPTION_set:
3125 if (qemu_set_option(optarg) != 0)
3126 exit(1);
3127 break;
3128 case QEMU_OPTION_global:
3129 if (qemu_global_option(optarg) != 0)
3130 exit(1);
3131 break;
3132 case QEMU_OPTION_mtdblock:
3133 drive_add(IF_MTD, -1, optarg, MTD_OPTS);
3134 break;
3135 case QEMU_OPTION_sd:
3136 drive_add(IF_SD, -1, optarg, SD_OPTS);
3137 break;
3138 case QEMU_OPTION_pflash:
3139 drive_add(IF_PFLASH, -1, optarg, PFLASH_OPTS);
3140 break;
3141 case QEMU_OPTION_snapshot:
3142 snapshot = 1;
3143 break;
3144 case QEMU_OPTION_hdachs:
3146 const char *p;
3147 p = optarg;
3148 cyls = strtol(p, (char **)&p, 0);
3149 if (cyls < 1 || cyls > 16383)
3150 goto chs_fail;
3151 if (*p != ',')
3152 goto chs_fail;
3153 p++;
3154 heads = strtol(p, (char **)&p, 0);
3155 if (heads < 1 || heads > 16)
3156 goto chs_fail;
3157 if (*p != ',')
3158 goto chs_fail;
3159 p++;
3160 secs = strtol(p, (char **)&p, 0);
3161 if (secs < 1 || secs > 63)
3162 goto chs_fail;
3163 if (*p == ',') {
3164 p++;
3165 if (!strcmp(p, "large")) {
3166 translation = BIOS_ATA_TRANSLATION_LARGE;
3167 } else if (!strcmp(p, "rechs")) {
3168 translation = BIOS_ATA_TRANSLATION_RECHS;
3169 } else if (!strcmp(p, "none")) {
3170 translation = BIOS_ATA_TRANSLATION_NONE;
3171 } else if (!strcmp(p, "lba")) {
3172 translation = BIOS_ATA_TRANSLATION_LBA;
3173 } else if (!strcmp(p, "auto")) {
3174 translation = BIOS_ATA_TRANSLATION_AUTO;
3175 } else {
3176 goto chs_fail;
3178 } else if (*p != '\0') {
3179 chs_fail:
3180 error_report("invalid physical CHS format");
3181 exit(1);
3183 if (hda_opts != NULL) {
3184 qemu_opt_set_number(hda_opts, "cyls", cyls,
3185 &error_abort);
3186 qemu_opt_set_number(hda_opts, "heads", heads,
3187 &error_abort);
3188 qemu_opt_set_number(hda_opts, "secs", secs,
3189 &error_abort);
3190 if (translation == BIOS_ATA_TRANSLATION_LARGE) {
3191 qemu_opt_set(hda_opts, "trans", "large",
3192 &error_abort);
3193 } else if (translation == BIOS_ATA_TRANSLATION_RECHS) {
3194 qemu_opt_set(hda_opts, "trans", "rechs",
3195 &error_abort);
3196 } else if (translation == BIOS_ATA_TRANSLATION_LBA) {
3197 qemu_opt_set(hda_opts, "trans", "lba",
3198 &error_abort);
3199 } else if (translation == BIOS_ATA_TRANSLATION_NONE) {
3200 qemu_opt_set(hda_opts, "trans", "none",
3201 &error_abort);
3205 break;
3206 case QEMU_OPTION_numa:
3207 opts = qemu_opts_parse_noisily(qemu_find_opts("numa"),
3208 optarg, true);
3209 if (!opts) {
3210 exit(1);
3212 break;
3213 case QEMU_OPTION_display:
3214 display_type = select_display(optarg);
3215 break;
3216 case QEMU_OPTION_nographic:
3217 olist = qemu_find_opts("machine");
3218 qemu_opts_parse_noisily(olist, "graphics=off", false);
3219 nographic = true;
3220 display_type = DT_NONE;
3221 break;
3222 case QEMU_OPTION_curses:
3223 #ifdef CONFIG_CURSES
3224 display_type = DT_CURSES;
3225 #else
3226 error_report("curses support is disabled");
3227 exit(1);
3228 #endif
3229 break;
3230 case QEMU_OPTION_portrait:
3231 graphic_rotate = 90;
3232 break;
3233 case QEMU_OPTION_rotate:
3234 graphic_rotate = strtol(optarg, (char **) &optarg, 10);
3235 if (graphic_rotate != 0 && graphic_rotate != 90 &&
3236 graphic_rotate != 180 && graphic_rotate != 270) {
3237 error_report("only 90, 180, 270 deg rotation is available");
3238 exit(1);
3240 break;
3241 case QEMU_OPTION_kernel:
3242 qemu_opts_set(qemu_find_opts("machine"), 0, "kernel", optarg,
3243 &error_abort);
3244 break;
3245 case QEMU_OPTION_initrd:
3246 qemu_opts_set(qemu_find_opts("machine"), 0, "initrd", optarg,
3247 &error_abort);
3248 break;
3249 case QEMU_OPTION_append:
3250 qemu_opts_set(qemu_find_opts("machine"), 0, "append", optarg,
3251 &error_abort);
3252 break;
3253 case QEMU_OPTION_dtb:
3254 qemu_opts_set(qemu_find_opts("machine"), 0, "dtb", optarg,
3255 &error_abort);
3256 break;
3257 case QEMU_OPTION_cdrom:
3258 drive_add(IF_DEFAULT, 2, optarg, CDROM_OPTS);
3259 break;
3260 case QEMU_OPTION_boot:
3261 opts = qemu_opts_parse_noisily(qemu_find_opts("boot-opts"),
3262 optarg, true);
3263 if (!opts) {
3264 exit(1);
3266 break;
3267 case QEMU_OPTION_fda:
3268 case QEMU_OPTION_fdb:
3269 drive_add(IF_FLOPPY, popt->index - QEMU_OPTION_fda,
3270 optarg, FD_OPTS);
3271 break;
3272 case QEMU_OPTION_no_fd_bootchk:
3273 fd_bootchk = 0;
3274 break;
3275 case QEMU_OPTION_netdev:
3276 default_net = 0;
3277 if (net_client_parse(qemu_find_opts("netdev"), optarg) == -1) {
3278 exit(1);
3280 break;
3281 case QEMU_OPTION_net:
3282 default_net = 0;
3283 if (net_client_parse(qemu_find_opts("net"), optarg) == -1) {
3284 exit(1);
3286 break;
3287 #ifdef CONFIG_LIBISCSI
3288 case QEMU_OPTION_iscsi:
3289 opts = qemu_opts_parse_noisily(qemu_find_opts("iscsi"),
3290 optarg, false);
3291 if (!opts) {
3292 exit(1);
3294 break;
3295 #endif
3296 #ifdef CONFIG_SLIRP
3297 case QEMU_OPTION_tftp:
3298 error_report("The -tftp option is deprecated. "
3299 "Please use '-netdev user,tftp=...' instead.");
3300 legacy_tftp_prefix = optarg;
3301 break;
3302 case QEMU_OPTION_bootp:
3303 error_report("The -bootp option is deprecated. "
3304 "Please use '-netdev user,bootfile=...' instead.");
3305 legacy_bootp_filename = optarg;
3306 break;
3307 case QEMU_OPTION_redir:
3308 error_report("The -redir option is deprecated. "
3309 "Please use '-netdev user,hostfwd=...' instead.");
3310 if (net_slirp_redir(optarg) < 0)
3311 exit(1);
3312 break;
3313 #endif
3314 case QEMU_OPTION_bt:
3315 add_device_config(DEV_BT, optarg);
3316 break;
3317 case QEMU_OPTION_audio_help:
3318 AUD_help ();
3319 exit (0);
3320 break;
3321 case QEMU_OPTION_soundhw:
3322 select_soundhw (optarg);
3323 break;
3324 case QEMU_OPTION_h:
3325 help(0);
3326 break;
3327 case QEMU_OPTION_version:
3328 version();
3329 exit(0);
3330 break;
3331 case QEMU_OPTION_m:
3332 opts = qemu_opts_parse_noisily(qemu_find_opts("memory"),
3333 optarg, true);
3334 if (!opts) {
3335 exit(EXIT_FAILURE);
3337 break;
3338 #ifdef CONFIG_TPM
3339 case QEMU_OPTION_tpmdev:
3340 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg) < 0) {
3341 exit(1);
3343 break;
3344 #endif
3345 case QEMU_OPTION_mempath:
3346 mem_path = optarg;
3347 break;
3348 case QEMU_OPTION_mem_prealloc:
3349 mem_prealloc = 1;
3350 break;
3351 case QEMU_OPTION_d:
3352 log_mask = optarg;
3353 break;
3354 case QEMU_OPTION_D:
3355 log_file = optarg;
3356 break;
3357 case QEMU_OPTION_DFILTER:
3358 qemu_set_dfilter_ranges(optarg, &error_fatal);
3359 break;
3360 case QEMU_OPTION_s:
3361 add_device_config(DEV_GDB, "tcp::" DEFAULT_GDBSTUB_PORT);
3362 break;
3363 case QEMU_OPTION_gdb:
3364 add_device_config(DEV_GDB, optarg);
3365 break;
3366 case QEMU_OPTION_L:
3367 if (is_help_option(optarg)) {
3368 list_data_dirs = true;
3369 } else if (data_dir_idx < ARRAY_SIZE(data_dir)) {
3370 data_dir[data_dir_idx++] = optarg;
3372 break;
3373 case QEMU_OPTION_bios:
3374 qemu_opts_set(qemu_find_opts("machine"), 0, "firmware", optarg,
3375 &error_abort);
3376 break;
3377 case QEMU_OPTION_singlestep:
3378 singlestep = 1;
3379 break;
3380 case QEMU_OPTION_S:
3381 autostart = 0;
3382 break;
3383 case QEMU_OPTION_k:
3384 keyboard_layout = optarg;
3385 break;
3386 case QEMU_OPTION_localtime:
3387 rtc_utc = 0;
3388 break;
3389 case QEMU_OPTION_vga:
3390 vga_model = optarg;
3391 default_vga = 0;
3392 break;
3393 case QEMU_OPTION_g:
3395 const char *p;
3396 int w, h, depth;
3397 p = optarg;
3398 w = strtol(p, (char **)&p, 10);
3399 if (w <= 0) {
3400 graphic_error:
3401 error_report("invalid resolution or depth");
3402 exit(1);
3404 if (*p != 'x')
3405 goto graphic_error;
3406 p++;
3407 h = strtol(p, (char **)&p, 10);
3408 if (h <= 0)
3409 goto graphic_error;
3410 if (*p == 'x') {
3411 p++;
3412 depth = strtol(p, (char **)&p, 10);
3413 if (depth != 8 && depth != 15 && depth != 16 &&
3414 depth != 24 && depth != 32)
3415 goto graphic_error;
3416 } else if (*p == '\0') {
3417 depth = graphic_depth;
3418 } else {
3419 goto graphic_error;
3422 graphic_width = w;
3423 graphic_height = h;
3424 graphic_depth = depth;
3426 break;
3427 case QEMU_OPTION_echr:
3429 char *r;
3430 term_escape_char = strtol(optarg, &r, 0);
3431 if (r == optarg)
3432 printf("Bad argument to echr\n");
3433 break;
3435 case QEMU_OPTION_monitor:
3436 default_monitor = 0;
3437 if (strncmp(optarg, "none", 4)) {
3438 monitor_parse(optarg, "readline", false);
3440 break;
3441 case QEMU_OPTION_qmp:
3442 monitor_parse(optarg, "control", false);
3443 default_monitor = 0;
3444 break;
3445 case QEMU_OPTION_qmp_pretty:
3446 monitor_parse(optarg, "control", true);
3447 default_monitor = 0;
3448 break;
3449 case QEMU_OPTION_mon:
3450 opts = qemu_opts_parse_noisily(qemu_find_opts("mon"), optarg,
3451 true);
3452 if (!opts) {
3453 exit(1);
3455 default_monitor = 0;
3456 break;
3457 case QEMU_OPTION_chardev:
3458 opts = qemu_opts_parse_noisily(qemu_find_opts("chardev"),
3459 optarg, true);
3460 if (!opts) {
3461 exit(1);
3463 break;
3464 case QEMU_OPTION_fsdev:
3465 olist = qemu_find_opts("fsdev");
3466 if (!olist) {
3467 error_report("fsdev support is disabled");
3468 exit(1);
3470 opts = qemu_opts_parse_noisily(olist, optarg, true);
3471 if (!opts) {
3472 exit(1);
3474 break;
3475 case QEMU_OPTION_virtfs: {
3476 QemuOpts *fsdev;
3477 QemuOpts *device;
3478 const char *writeout, *sock_fd, *socket;
3480 olist = qemu_find_opts("virtfs");
3481 if (!olist) {
3482 error_report("virtfs support is disabled");
3483 exit(1);
3485 opts = qemu_opts_parse_noisily(olist, optarg, true);
3486 if (!opts) {
3487 exit(1);
3490 if (qemu_opt_get(opts, "fsdriver") == NULL ||
3491 qemu_opt_get(opts, "mount_tag") == NULL) {
3492 error_report("Usage: -virtfs fsdriver,mount_tag=tag");
3493 exit(1);
3495 fsdev = qemu_opts_create(qemu_find_opts("fsdev"),
3496 qemu_opt_get(opts, "mount_tag"),
3497 1, NULL);
3498 if (!fsdev) {
3499 error_report("duplicate fsdev id: %s",
3500 qemu_opt_get(opts, "mount_tag"));
3501 exit(1);
3504 writeout = qemu_opt_get(opts, "writeout");
3505 if (writeout) {
3506 #ifdef CONFIG_SYNC_FILE_RANGE
3507 qemu_opt_set(fsdev, "writeout", writeout, &error_abort);
3508 #else
3509 error_report("writeout=immediate not supported "
3510 "on this platform");
3511 exit(1);
3512 #endif
3514 qemu_opt_set(fsdev, "fsdriver",
3515 qemu_opt_get(opts, "fsdriver"), &error_abort);
3516 qemu_opt_set(fsdev, "path", qemu_opt_get(opts, "path"),
3517 &error_abort);
3518 qemu_opt_set(fsdev, "security_model",
3519 qemu_opt_get(opts, "security_model"),
3520 &error_abort);
3521 socket = qemu_opt_get(opts, "socket");
3522 if (socket) {
3523 qemu_opt_set(fsdev, "socket", socket, &error_abort);
3525 sock_fd = qemu_opt_get(opts, "sock_fd");
3526 if (sock_fd) {
3527 qemu_opt_set(fsdev, "sock_fd", sock_fd, &error_abort);
3530 qemu_opt_set_bool(fsdev, "readonly",
3531 qemu_opt_get_bool(opts, "readonly", 0),
3532 &error_abort);
3533 device = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
3534 &error_abort);
3535 qemu_opt_set(device, "driver", "virtio-9p-pci", &error_abort);
3536 qemu_opt_set(device, "fsdev",
3537 qemu_opt_get(opts, "mount_tag"), &error_abort);
3538 qemu_opt_set(device, "mount_tag",
3539 qemu_opt_get(opts, "mount_tag"), &error_abort);
3540 break;
3542 case QEMU_OPTION_virtfs_synth: {
3543 QemuOpts *fsdev;
3544 QemuOpts *device;
3546 fsdev = qemu_opts_create(qemu_find_opts("fsdev"), "v_synth",
3547 1, NULL);
3548 if (!fsdev) {
3549 error_report("duplicate option: %s", "virtfs_synth");
3550 exit(1);
3552 qemu_opt_set(fsdev, "fsdriver", "synth", &error_abort);
3554 device = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
3555 &error_abort);
3556 qemu_opt_set(device, "driver", "virtio-9p-pci", &error_abort);
3557 qemu_opt_set(device, "fsdev", "v_synth", &error_abort);
3558 qemu_opt_set(device, "mount_tag", "v_synth", &error_abort);
3559 break;
3561 case QEMU_OPTION_serial:
3562 add_device_config(DEV_SERIAL, optarg);
3563 default_serial = 0;
3564 if (strncmp(optarg, "mon:", 4) == 0) {
3565 default_monitor = 0;
3567 break;
3568 case QEMU_OPTION_watchdog:
3569 if (watchdog) {
3570 error_report("only one watchdog option may be given");
3571 return 1;
3573 watchdog = optarg;
3574 break;
3575 case QEMU_OPTION_watchdog_action:
3576 if (select_watchdog_action(optarg) == -1) {
3577 error_report("unknown -watchdog-action parameter");
3578 exit(1);
3580 break;
3581 case QEMU_OPTION_virtiocon:
3582 add_device_config(DEV_VIRTCON, optarg);
3583 default_virtcon = 0;
3584 if (strncmp(optarg, "mon:", 4) == 0) {
3585 default_monitor = 0;
3587 break;
3588 case QEMU_OPTION_parallel:
3589 add_device_config(DEV_PARALLEL, optarg);
3590 default_parallel = 0;
3591 if (strncmp(optarg, "mon:", 4) == 0) {
3592 default_monitor = 0;
3594 break;
3595 case QEMU_OPTION_debugcon:
3596 add_device_config(DEV_DEBUGCON, optarg);
3597 break;
3598 case QEMU_OPTION_loadvm:
3599 loadvm = optarg;
3600 break;
3601 case QEMU_OPTION_full_screen:
3602 full_screen = 1;
3603 break;
3604 case QEMU_OPTION_no_frame:
3605 no_frame = 1;
3606 break;
3607 case QEMU_OPTION_alt_grab:
3608 alt_grab = 1;
3609 break;
3610 case QEMU_OPTION_ctrl_grab:
3611 ctrl_grab = 1;
3612 break;
3613 case QEMU_OPTION_no_quit:
3614 no_quit = 1;
3615 break;
3616 case QEMU_OPTION_sdl:
3617 #ifdef CONFIG_SDL
3618 display_type = DT_SDL;
3619 break;
3620 #else
3621 error_report("SDL support is disabled");
3622 exit(1);
3623 #endif
3624 case QEMU_OPTION_pidfile:
3625 pid_file = optarg;
3626 break;
3627 case QEMU_OPTION_win2k_hack:
3628 win2k_install_hack = 1;
3629 break;
3630 case QEMU_OPTION_rtc_td_hack: {
3631 static GlobalProperty slew_lost_ticks = {
3632 .driver = "mc146818rtc",
3633 .property = "lost_tick_policy",
3634 .value = "slew",
3637 qdev_prop_register_global(&slew_lost_ticks);
3638 break;
3640 case QEMU_OPTION_acpitable:
3641 opts = qemu_opts_parse_noisily(qemu_find_opts("acpi"),
3642 optarg, true);
3643 if (!opts) {
3644 exit(1);
3646 do_acpitable_option(opts);
3647 break;
3648 case QEMU_OPTION_smbios:
3649 opts = qemu_opts_parse_noisily(qemu_find_opts("smbios"),
3650 optarg, false);
3651 if (!opts) {
3652 exit(1);
3654 do_smbios_option(opts);
3655 break;
3656 case QEMU_OPTION_fwcfg:
3657 opts = qemu_opts_parse_noisily(qemu_find_opts("fw_cfg"),
3658 optarg, true);
3659 if (opts == NULL) {
3660 exit(1);
3662 break;
3663 case QEMU_OPTION_enable_kvm:
3664 olist = qemu_find_opts("machine");
3665 qemu_opts_parse_noisily(olist, "accel=kvm", false);
3666 break;
3667 case QEMU_OPTION_M:
3668 case QEMU_OPTION_machine:
3669 olist = qemu_find_opts("machine");
3670 opts = qemu_opts_parse_noisily(olist, optarg, true);
3671 if (!opts) {
3672 exit(1);
3674 break;
3675 case QEMU_OPTION_no_kvm:
3676 olist = qemu_find_opts("machine");
3677 qemu_opts_parse_noisily(olist, "accel=tcg", false);
3678 break;
3679 case QEMU_OPTION_no_kvm_pit: {
3680 error_report("warning: ignoring deprecated option");
3681 break;
3683 case QEMU_OPTION_no_kvm_pit_reinjection: {
3684 static GlobalProperty kvm_pit_lost_tick_policy = {
3685 .driver = "kvm-pit",
3686 .property = "lost_tick_policy",
3687 .value = "discard",
3690 error_report("warning: deprecated, replaced by "
3691 "-global kvm-pit.lost_tick_policy=discard");
3692 qdev_prop_register_global(&kvm_pit_lost_tick_policy);
3693 break;
3695 case QEMU_OPTION_usb:
3696 olist = qemu_find_opts("machine");
3697 qemu_opts_parse_noisily(olist, "usb=on", false);
3698 break;
3699 case QEMU_OPTION_usbdevice:
3700 olist = qemu_find_opts("machine");
3701 qemu_opts_parse_noisily(olist, "usb=on", false);
3702 add_device_config(DEV_USB, optarg);
3703 break;
3704 case QEMU_OPTION_device:
3705 if (!qemu_opts_parse_noisily(qemu_find_opts("device"),
3706 optarg, true)) {
3707 exit(1);
3709 break;
3710 case QEMU_OPTION_smp:
3711 if (!qemu_opts_parse_noisily(qemu_find_opts("smp-opts"),
3712 optarg, true)) {
3713 exit(1);
3715 break;
3716 case QEMU_OPTION_vnc:
3717 vnc_parse(optarg, &error_fatal);
3718 break;
3719 case QEMU_OPTION_no_acpi:
3720 acpi_enabled = 0;
3721 break;
3722 case QEMU_OPTION_no_hpet:
3723 no_hpet = 1;
3724 break;
3725 case QEMU_OPTION_balloon:
3726 if (balloon_parse(optarg) < 0) {
3727 error_report("unknown -balloon argument %s", optarg);
3728 exit(1);
3730 break;
3731 case QEMU_OPTION_no_reboot:
3732 no_reboot = 1;
3733 break;
3734 case QEMU_OPTION_no_shutdown:
3735 no_shutdown = 1;
3736 break;
3737 case QEMU_OPTION_show_cursor:
3738 cursor_hide = 0;
3739 break;
3740 case QEMU_OPTION_uuid:
3741 if(qemu_uuid_parse(optarg, qemu_uuid) < 0) {
3742 error_report("failed to parse UUID string: wrong format");
3743 exit(1);
3745 qemu_uuid_set = true;
3746 break;
3747 case QEMU_OPTION_option_rom:
3748 if (nb_option_roms >= MAX_OPTION_ROMS) {
3749 error_report("too many option ROMs");
3750 exit(1);
3752 opts = qemu_opts_parse_noisily(qemu_find_opts("option-rom"),
3753 optarg, true);
3754 if (!opts) {
3755 exit(1);
3757 option_rom[nb_option_roms].name = qemu_opt_get(opts, "romfile");
3758 option_rom[nb_option_roms].bootindex =
3759 qemu_opt_get_number(opts, "bootindex", -1);
3760 if (!option_rom[nb_option_roms].name) {
3761 error_report("Option ROM file is not specified");
3762 exit(1);
3764 nb_option_roms++;
3765 break;
3766 case QEMU_OPTION_semihosting:
3767 semihosting.enabled = true;
3768 semihosting.target = SEMIHOSTING_TARGET_AUTO;
3769 break;
3770 case QEMU_OPTION_semihosting_config:
3771 semihosting.enabled = true;
3772 opts = qemu_opts_parse_noisily(qemu_find_opts("semihosting-config"),
3773 optarg, false);
3774 if (opts != NULL) {
3775 semihosting.enabled = qemu_opt_get_bool(opts, "enable",
3776 true);
3777 const char *target = qemu_opt_get(opts, "target");
3778 if (target != NULL) {
3779 if (strcmp("native", target) == 0) {
3780 semihosting.target = SEMIHOSTING_TARGET_NATIVE;
3781 } else if (strcmp("gdb", target) == 0) {
3782 semihosting.target = SEMIHOSTING_TARGET_GDB;
3783 } else if (strcmp("auto", target) == 0) {
3784 semihosting.target = SEMIHOSTING_TARGET_AUTO;
3785 } else {
3786 error_report("unsupported semihosting-config %s",
3787 optarg);
3788 exit(1);
3790 } else {
3791 semihosting.target = SEMIHOSTING_TARGET_AUTO;
3793 /* Set semihosting argument count and vector */
3794 qemu_opt_foreach(opts, add_semihosting_arg,
3795 &semihosting, NULL);
3796 } else {
3797 error_report("unsupported semihosting-config %s", optarg);
3798 exit(1);
3800 break;
3801 case QEMU_OPTION_tdf:
3802 error_report("warning: ignoring deprecated option");
3803 break;
3804 case QEMU_OPTION_name:
3805 opts = qemu_opts_parse_noisily(qemu_find_opts("name"),
3806 optarg, true);
3807 if (!opts) {
3808 exit(1);
3810 break;
3811 case QEMU_OPTION_prom_env:
3812 if (nb_prom_envs >= MAX_PROM_ENVS) {
3813 error_report("too many prom variables");
3814 exit(1);
3816 prom_envs[nb_prom_envs] = optarg;
3817 nb_prom_envs++;
3818 break;
3819 case QEMU_OPTION_old_param:
3820 old_param = 1;
3821 break;
3822 case QEMU_OPTION_clock:
3823 /* Clock options no longer exist. Keep this option for
3824 * backward compatibility.
3826 break;
3827 case QEMU_OPTION_startdate:
3828 configure_rtc_date_offset(optarg, 1);
3829 break;
3830 case QEMU_OPTION_rtc:
3831 opts = qemu_opts_parse_noisily(qemu_find_opts("rtc"), optarg,
3832 false);
3833 if (!opts) {
3834 exit(1);
3836 configure_rtc(opts);
3837 break;
3838 case QEMU_OPTION_tb_size:
3839 tcg_tb_size = strtol(optarg, NULL, 0);
3840 if (tcg_tb_size < 0) {
3841 tcg_tb_size = 0;
3843 break;
3844 case QEMU_OPTION_icount:
3845 icount_opts = qemu_opts_parse_noisily(qemu_find_opts("icount"),
3846 optarg, true);
3847 if (!icount_opts) {
3848 exit(1);
3850 break;
3851 case QEMU_OPTION_incoming:
3852 if (!incoming) {
3853 runstate_set(RUN_STATE_INMIGRATE);
3855 incoming = optarg;
3856 break;
3857 case QEMU_OPTION_nodefaults:
3858 has_defaults = 0;
3859 break;
3860 case QEMU_OPTION_xen_domid:
3861 if (!(xen_available())) {
3862 error_report("Option not supported for this target");
3863 exit(1);
3865 xen_domid = atoi(optarg);
3866 break;
3867 case QEMU_OPTION_xen_create:
3868 if (!(xen_available())) {
3869 error_report("Option not supported for this target");
3870 exit(1);
3872 xen_mode = XEN_CREATE;
3873 break;
3874 case QEMU_OPTION_xen_attach:
3875 if (!(xen_available())) {
3876 error_report("Option not supported for this target");
3877 exit(1);
3879 xen_mode = XEN_ATTACH;
3880 break;
3881 case QEMU_OPTION_trace:
3882 g_free(trace_file);
3883 trace_file = trace_opt_parse(optarg);
3884 break;
3885 case QEMU_OPTION_readconfig:
3887 int ret = qemu_read_config_file(optarg);
3888 if (ret < 0) {
3889 error_report("read config %s: %s", optarg,
3890 strerror(-ret));
3891 exit(1);
3893 break;
3895 case QEMU_OPTION_spice:
3896 olist = qemu_find_opts("spice");
3897 if (!olist) {
3898 error_report("spice support is disabled");
3899 exit(1);
3901 opts = qemu_opts_parse_noisily(olist, optarg, false);
3902 if (!opts) {
3903 exit(1);
3905 display_remote++;
3906 break;
3907 case QEMU_OPTION_writeconfig:
3909 FILE *fp;
3910 if (strcmp(optarg, "-") == 0) {
3911 fp = stdout;
3912 } else {
3913 fp = fopen(optarg, "w");
3914 if (fp == NULL) {
3915 error_report("open %s: %s", optarg,
3916 strerror(errno));
3917 exit(1);
3920 qemu_config_write(fp);
3921 if (fp != stdout) {
3922 fclose(fp);
3924 break;
3926 case QEMU_OPTION_qtest:
3927 qtest_chrdev = optarg;
3928 break;
3929 case QEMU_OPTION_qtest_log:
3930 qtest_log = optarg;
3931 break;
3932 case QEMU_OPTION_sandbox:
3933 opts = qemu_opts_parse_noisily(qemu_find_opts("sandbox"),
3934 optarg, true);
3935 if (!opts) {
3936 exit(1);
3938 break;
3939 case QEMU_OPTION_add_fd:
3940 #ifndef _WIN32
3941 opts = qemu_opts_parse_noisily(qemu_find_opts("add-fd"),
3942 optarg, false);
3943 if (!opts) {
3944 exit(1);
3946 #else
3947 error_report("File descriptor passing is disabled on this "
3948 "platform");
3949 exit(1);
3950 #endif
3951 break;
3952 case QEMU_OPTION_object:
3953 opts = qemu_opts_parse_noisily(qemu_find_opts("object"),
3954 optarg, true);
3955 if (!opts) {
3956 exit(1);
3958 break;
3959 case QEMU_OPTION_realtime:
3960 opts = qemu_opts_parse_noisily(qemu_find_opts("realtime"),
3961 optarg, false);
3962 if (!opts) {
3963 exit(1);
3965 enable_mlock = qemu_opt_get_bool(opts, "mlock", true);
3966 break;
3967 case QEMU_OPTION_msg:
3968 opts = qemu_opts_parse_noisily(qemu_find_opts("msg"), optarg,
3969 false);
3970 if (!opts) {
3971 exit(1);
3973 configure_msg(opts);
3974 break;
3975 case QEMU_OPTION_dump_vmstate:
3976 if (vmstate_dump_file) {
3977 error_report("only one '-dump-vmstate' "
3978 "option may be given");
3979 exit(1);
3981 vmstate_dump_file = fopen(optarg, "w");
3982 if (vmstate_dump_file == NULL) {
3983 error_report("open %s: %s", optarg, strerror(errno));
3984 exit(1);
3986 break;
3987 default:
3988 os_parse_cmd_args(popt->index, optarg);
3993 * Clear error location left behind by the loop.
3994 * Best done right after the loop. Do not insert code here!
3996 loc_set_none();
3998 replay_configure(icount_opts);
4000 machine_class = select_machine();
4002 set_memory_options(&ram_slots, &maxram_size, machine_class);
4004 os_daemonize();
4006 if (qemu_init_main_loop(&main_loop_err)) {
4007 error_report_err(main_loop_err);
4008 exit(1);
4011 if (qemu_opts_foreach(qemu_find_opts("sandbox"),
4012 parse_sandbox, NULL, NULL)) {
4013 exit(1);
4016 if (qemu_opts_foreach(qemu_find_opts("name"),
4017 parse_name, NULL, NULL)) {
4018 exit(1);
4021 #ifndef _WIN32
4022 if (qemu_opts_foreach(qemu_find_opts("add-fd"),
4023 parse_add_fd, NULL, NULL)) {
4024 exit(1);
4027 if (qemu_opts_foreach(qemu_find_opts("add-fd"),
4028 cleanup_add_fd, NULL, NULL)) {
4029 exit(1);
4031 #endif
4033 current_machine = MACHINE(object_new(object_class_get_name(
4034 OBJECT_CLASS(machine_class))));
4035 if (machine_help_func(qemu_get_machine_opts(), current_machine)) {
4036 exit(0);
4038 object_property_add_child(object_get_root(), "machine",
4039 OBJECT(current_machine), &error_abort);
4040 cpu_exec_init_all();
4042 if (machine_class->hw_version) {
4043 qemu_set_hw_version(machine_class->hw_version);
4046 if (cpu_model && is_help_option(cpu_model)) {
4047 list_cpus(stdout, &fprintf, cpu_model);
4048 exit(0);
4051 if (!trace_init_backends()) {
4052 exit(1);
4054 trace_init_file(trace_file);
4056 /* Open the logfile at this point and set the log mask if necessary.
4058 if (log_file) {
4059 qemu_set_log_filename(log_file, &error_fatal);
4062 if (log_mask) {
4063 int mask;
4064 mask = qemu_str_to_log_mask(log_mask);
4065 if (!mask) {
4066 qemu_print_log_usage(stdout);
4067 exit(1);
4069 qemu_set_log(mask);
4070 } else {
4071 qemu_set_log(0);
4074 /* If no data_dir is specified then try to find it relative to the
4075 executable path. */
4076 if (data_dir_idx < ARRAY_SIZE(data_dir)) {
4077 data_dir[data_dir_idx] = os_find_datadir();
4078 if (data_dir[data_dir_idx] != NULL) {
4079 data_dir_idx++;
4082 /* If all else fails use the install path specified when building. */
4083 if (data_dir_idx < ARRAY_SIZE(data_dir)) {
4084 data_dir[data_dir_idx++] = CONFIG_QEMU_DATADIR;
4087 /* -L help lists the data directories and exits. */
4088 if (list_data_dirs) {
4089 for (i = 0; i < data_dir_idx; i++) {
4090 printf("%s\n", data_dir[i]);
4092 exit(0);
4095 smp_parse(qemu_opts_find(qemu_find_opts("smp-opts"), NULL));
4097 machine_class->max_cpus = machine_class->max_cpus ?: 1; /* Default to UP */
4098 if (max_cpus > machine_class->max_cpus) {
4099 error_report("Number of SMP CPUs requested (%d) exceeds max CPUs "
4100 "supported by machine '%s' (%d)", max_cpus,
4101 machine_class->name, machine_class->max_cpus);
4102 exit(1);
4106 * Get the default machine options from the machine if it is not already
4107 * specified either by the configuration file or by the command line.
4109 if (machine_class->default_machine_opts) {
4110 qemu_opts_set_defaults(qemu_find_opts("machine"),
4111 machine_class->default_machine_opts, 0);
4114 qemu_opts_foreach(qemu_find_opts("device"),
4115 default_driver_check, NULL, NULL);
4116 qemu_opts_foreach(qemu_find_opts("global"),
4117 default_driver_check, NULL, NULL);
4119 if (!vga_model && !default_vga) {
4120 vga_interface_type = VGA_DEVICE;
4122 if (!has_defaults || machine_class->no_serial) {
4123 default_serial = 0;
4125 if (!has_defaults || machine_class->no_parallel) {
4126 default_parallel = 0;
4128 if (!has_defaults || !machine_class->use_virtcon) {
4129 default_virtcon = 0;
4131 if (!has_defaults || !machine_class->use_sclp) {
4132 default_sclp = 0;
4134 if (!has_defaults || machine_class->no_floppy) {
4135 default_floppy = 0;
4137 if (!has_defaults || machine_class->no_cdrom) {
4138 default_cdrom = 0;
4140 if (!has_defaults || machine_class->no_sdcard) {
4141 default_sdcard = 0;
4143 if (!has_defaults) {
4144 default_monitor = 0;
4145 default_net = 0;
4146 default_vga = 0;
4149 if (is_daemonized()) {
4150 /* According to documentation and historically, -nographic redirects
4151 * serial port, parallel port and monitor to stdio, which does not work
4152 * with -daemonize. We can redirect these to null instead, but since
4153 * -nographic is legacy, let's just error out.
4154 * We disallow -nographic only if all other ports are not redirected
4155 * explicitly, to not break existing legacy setups which uses
4156 * -nographic _and_ redirects all ports explicitly - this is valid
4157 * usage, -nographic is just a no-op in this case.
4159 if (nographic
4160 && (default_parallel || default_serial
4161 || default_monitor || default_virtcon)) {
4162 error_report("-nographic cannot be used with -daemonize");
4163 exit(1);
4165 #ifdef CONFIG_CURSES
4166 if (display_type == DT_CURSES) {
4167 error_report("curses display cannot be used with -daemonize");
4168 exit(1);
4170 #endif
4173 if (nographic) {
4174 if (default_parallel)
4175 add_device_config(DEV_PARALLEL, "null");
4176 if (default_serial && default_monitor) {
4177 add_device_config(DEV_SERIAL, "mon:stdio");
4178 } else if (default_virtcon && default_monitor) {
4179 add_device_config(DEV_VIRTCON, "mon:stdio");
4180 } else if (default_sclp && default_monitor) {
4181 add_device_config(DEV_SCLP, "mon:stdio");
4182 } else {
4183 if (default_serial)
4184 add_device_config(DEV_SERIAL, "stdio");
4185 if (default_virtcon)
4186 add_device_config(DEV_VIRTCON, "stdio");
4187 if (default_sclp) {
4188 add_device_config(DEV_SCLP, "stdio");
4190 if (default_monitor)
4191 monitor_parse("stdio", "readline", false);
4193 } else {
4194 if (default_serial)
4195 add_device_config(DEV_SERIAL, "vc:80Cx24C");
4196 if (default_parallel)
4197 add_device_config(DEV_PARALLEL, "vc:80Cx24C");
4198 if (default_monitor)
4199 monitor_parse("vc:80Cx24C", "readline", false);
4200 if (default_virtcon)
4201 add_device_config(DEV_VIRTCON, "vc:80Cx24C");
4202 if (default_sclp) {
4203 add_device_config(DEV_SCLP, "vc:80Cx24C");
4207 #if defined(CONFIG_VNC)
4208 if (!QTAILQ_EMPTY(&(qemu_find_opts("vnc")->head))) {
4209 display_remote++;
4211 #endif
4212 if (display_type == DT_DEFAULT && !display_remote) {
4213 #if defined(CONFIG_GTK)
4214 display_type = DT_GTK;
4215 #elif defined(CONFIG_SDL)
4216 display_type = DT_SDL;
4217 #elif defined(CONFIG_COCOA)
4218 display_type = DT_COCOA;
4219 #elif defined(CONFIG_VNC)
4220 vnc_parse("localhost:0,to=99,id=default", &error_abort);
4221 #else
4222 display_type = DT_NONE;
4223 #endif
4226 if ((no_frame || alt_grab || ctrl_grab) && display_type != DT_SDL) {
4227 error_report("-no-frame, -alt-grab and -ctrl-grab are only valid "
4228 "for SDL, ignoring option");
4230 if (no_quit && (display_type != DT_GTK && display_type != DT_SDL)) {
4231 error_report("-no-quit is only valid for GTK and SDL, "
4232 "ignoring option");
4235 if (display_type == DT_GTK) {
4236 early_gtk_display_init(request_opengl);
4239 if (display_type == DT_SDL) {
4240 sdl_display_early_init(request_opengl);
4243 if (request_opengl == 1 && display_opengl == 0) {
4244 #if defined(CONFIG_OPENGL)
4245 error_report("OpenGL is not supported by the display");
4246 #else
4247 error_report("OpenGL support is disabled");
4248 #endif
4249 exit(1);
4252 page_size_init();
4253 socket_init();
4255 if (qemu_opts_foreach(qemu_find_opts("object"),
4256 user_creatable_add_opts_foreach,
4257 object_create_initial, NULL)) {
4258 exit(1);
4261 if (qemu_opts_foreach(qemu_find_opts("chardev"),
4262 chardev_init_func, NULL, NULL)) {
4263 exit(1);
4266 #ifdef CONFIG_VIRTFS
4267 if (qemu_opts_foreach(qemu_find_opts("fsdev"),
4268 fsdev_init_func, NULL, NULL)) {
4269 exit(1);
4271 #endif
4273 if (pid_file && qemu_create_pidfile(pid_file) != 0) {
4274 error_report("could not acquire pid file: %s", strerror(errno));
4275 exit(1);
4278 if (qemu_opts_foreach(qemu_find_opts("device"),
4279 device_help_func, NULL, NULL)) {
4280 exit(0);
4283 machine_opts = qemu_get_machine_opts();
4284 if (qemu_opt_foreach(machine_opts, machine_set_property, current_machine,
4285 NULL)) {
4286 object_unref(OBJECT(current_machine));
4287 exit(1);
4290 configure_accelerator(current_machine);
4292 if (qtest_chrdev) {
4293 qtest_init(qtest_chrdev, qtest_log, &error_fatal);
4296 machine_opts = qemu_get_machine_opts();
4297 kernel_filename = qemu_opt_get(machine_opts, "kernel");
4298 initrd_filename = qemu_opt_get(machine_opts, "initrd");
4299 kernel_cmdline = qemu_opt_get(machine_opts, "append");
4300 bios_name = qemu_opt_get(machine_opts, "firmware");
4302 opts = qemu_opts_find(qemu_find_opts("boot-opts"), NULL);
4303 if (opts) {
4304 boot_order = qemu_opt_get(opts, "order");
4305 if (boot_order) {
4306 validate_bootdevices(boot_order, &error_fatal);
4309 boot_once = qemu_opt_get(opts, "once");
4310 if (boot_once) {
4311 validate_bootdevices(boot_once, &error_fatal);
4314 boot_menu = qemu_opt_get_bool(opts, "menu", boot_menu);
4315 boot_strict = qemu_opt_get_bool(opts, "strict", false);
4318 if (!boot_order) {
4319 boot_order = machine_class->default_boot_order;
4322 if (!kernel_cmdline) {
4323 kernel_cmdline = "";
4324 current_machine->kernel_cmdline = (char *)kernel_cmdline;
4327 linux_boot = (kernel_filename != NULL);
4329 if (!linux_boot && *kernel_cmdline != '\0') {
4330 error_report("-append only allowed with -kernel option");
4331 exit(1);
4334 if (!linux_boot && initrd_filename != NULL) {
4335 error_report("-initrd only allowed with -kernel option");
4336 exit(1);
4339 if (!linux_boot && qemu_opt_get(machine_opts, "dtb")) {
4340 error_report("-dtb only allowed with -kernel option");
4341 exit(1);
4344 if (semihosting_enabled() && !semihosting_get_argc() && kernel_filename) {
4345 /* fall back to the -kernel/-append */
4346 semihosting_arg_fallback(kernel_filename, kernel_cmdline);
4349 os_set_line_buffering();
4351 /* spice needs the timers to be initialized by this point */
4352 qemu_spice_init();
4354 cpu_ticks_init();
4355 if (icount_opts) {
4356 if (kvm_enabled() || xen_enabled()) {
4357 error_report("-icount is not allowed with kvm or xen");
4358 exit(1);
4360 configure_icount(icount_opts, &error_abort);
4361 qemu_opts_del(icount_opts);
4364 if (default_net) {
4365 QemuOptsList *net = qemu_find_opts("net");
4366 qemu_opts_set(net, NULL, "type", "nic", &error_abort);
4367 #ifdef CONFIG_SLIRP
4368 qemu_opts_set(net, NULL, "type", "user", &error_abort);
4369 #endif
4372 if (net_init_clients() < 0) {
4373 exit(1);
4376 if (qemu_opts_foreach(qemu_find_opts("object"),
4377 user_creatable_add_opts_foreach,
4378 object_create_delayed, NULL)) {
4379 exit(1);
4382 #ifdef CONFIG_TPM
4383 if (tpm_init() < 0) {
4384 exit(1);
4386 #endif
4388 /* init the bluetooth world */
4389 if (foreach_device_config(DEV_BT, bt_parse))
4390 exit(1);
4392 if (!xen_enabled()) {
4393 /* On 32-bit hosts, QEMU is limited by virtual address space */
4394 if (ram_size > (2047 << 20) && HOST_LONG_BITS == 32) {
4395 error_report("at most 2047 MB RAM can be simulated");
4396 exit(1);
4400 blk_mig_init();
4401 ram_mig_init();
4403 /* If the currently selected machine wishes to override the units-per-bus
4404 * property of its default HBA interface type, do so now. */
4405 if (machine_class->units_per_default_bus) {
4406 override_max_devs(machine_class->block_default_type,
4407 machine_class->units_per_default_bus);
4410 /* open the virtual block devices */
4411 if (snapshot || replay_mode != REPLAY_MODE_NONE) {
4412 qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot,
4413 NULL, NULL);
4415 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func,
4416 &machine_class->block_default_type, NULL)) {
4417 exit(1);
4420 default_drive(default_cdrom, snapshot, machine_class->block_default_type, 2,
4421 CDROM_OPTS);
4422 default_drive(default_floppy, snapshot, IF_FLOPPY, 0, FD_OPTS);
4423 default_drive(default_sdcard, snapshot, IF_SD, 0, SD_OPTS);
4425 parse_numa_opts(machine_class);
4427 if (qemu_opts_foreach(qemu_find_opts("mon"),
4428 mon_init_func, NULL, NULL)) {
4429 exit(1);
4432 if (foreach_device_config(DEV_SERIAL, serial_parse) < 0)
4433 exit(1);
4434 if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0)
4435 exit(1);
4436 if (foreach_device_config(DEV_VIRTCON, virtcon_parse) < 0)
4437 exit(1);
4438 if (foreach_device_config(DEV_SCLP, sclp_parse) < 0) {
4439 exit(1);
4441 if (foreach_device_config(DEV_DEBUGCON, debugcon_parse) < 0)
4442 exit(1);
4444 /* If no default VGA is requested, the default is "none". */
4445 if (default_vga) {
4446 if (machine_class->default_display) {
4447 vga_model = machine_class->default_display;
4448 } else if (vga_interface_available(VGA_CIRRUS)) {
4449 vga_model = "cirrus";
4450 } else if (vga_interface_available(VGA_STD)) {
4451 vga_model = "std";
4454 if (vga_model) {
4455 select_vgahw(vga_model);
4458 if (watchdog) {
4459 i = select_watchdog(watchdog);
4460 if (i > 0)
4461 exit (i == 1 ? 1 : 0);
4464 machine_register_compat_props(current_machine);
4466 qemu_opts_foreach(qemu_find_opts("global"),
4467 global_init_func, NULL, NULL);
4469 /* This checkpoint is required by replay to separate prior clock
4470 reading from the other reads, because timer polling functions query
4471 clock values from the log. */
4472 replay_checkpoint(CHECKPOINT_INIT);
4473 qdev_machine_init();
4475 current_machine->ram_size = ram_size;
4476 current_machine->maxram_size = maxram_size;
4477 current_machine->ram_slots = ram_slots;
4478 current_machine->boot_order = boot_order;
4479 current_machine->cpu_model = cpu_model;
4481 machine_class->init(current_machine);
4483 realtime_init();
4485 audio_init();
4487 cpu_synchronize_all_post_init();
4489 numa_post_machine_init();
4491 if (qemu_opts_foreach(qemu_find_opts("fw_cfg"),
4492 parse_fw_cfg, fw_cfg_find(), NULL) != 0) {
4493 exit(1);
4496 /* init USB devices */
4497 if (machine_usb(current_machine)) {
4498 if (foreach_device_config(DEV_USB, usb_parse) < 0)
4499 exit(1);
4502 /* Check if IGD GFX passthrough. */
4503 igd_gfx_passthru();
4505 /* init generic devices */
4506 rom_set_order_override(FW_CFG_ORDER_OVERRIDE_DEVICE);
4507 if (qemu_opts_foreach(qemu_find_opts("device"),
4508 device_init_func, NULL, NULL)) {
4509 exit(1);
4511 rom_reset_order_override();
4513 /* Did we create any drives that we failed to create a device for? */
4514 drive_check_orphaned();
4516 /* Don't warn about the default network setup that you get if
4517 * no command line -net or -netdev options are specified. There
4518 * are two cases that we would otherwise complain about:
4519 * (1) board doesn't support a NIC but the implicit "-net nic"
4520 * requested one
4521 * (2) CONFIG_SLIRP not set, in which case the implicit "-net nic"
4522 * sets up a nic that isn't connected to anything.
4524 if (!default_net) {
4525 net_check_clients();
4529 if (boot_once) {
4530 qemu_boot_set(boot_once, &error_fatal);
4531 qemu_register_reset(restore_boot_order, g_strdup(boot_order));
4534 ds = init_displaystate();
4536 /* init local displays */
4537 switch (display_type) {
4538 case DT_CURSES:
4539 curses_display_init(ds, full_screen);
4540 break;
4541 case DT_SDL:
4542 sdl_display_init(ds, full_screen, no_frame);
4543 break;
4544 case DT_COCOA:
4545 cocoa_display_init(ds, full_screen);
4546 break;
4547 case DT_GTK:
4548 gtk_display_init(ds, full_screen, grab_on_hover);
4549 break;
4550 default:
4551 break;
4554 /* must be after terminal init, SDL library changes signal handlers */
4555 os_setup_signal_handling();
4557 /* init remote displays */
4558 #ifdef CONFIG_VNC
4559 qemu_opts_foreach(qemu_find_opts("vnc"),
4560 vnc_init_func, NULL, NULL);
4561 #endif
4563 if (using_spice) {
4564 qemu_spice_display_init();
4567 if (foreach_device_config(DEV_GDB, gdbserver_start) < 0) {
4568 exit(1);
4571 qdev_machine_creation_done();
4573 /* TODO: once all bus devices are qdevified, this should be done
4574 * when bus is created by qdev.c */
4575 qemu_register_reset(qbus_reset_all_fn, sysbus_get_default());
4576 qemu_run_machine_init_done_notifiers();
4578 if (rom_check_and_register_reset() != 0) {
4579 error_report("rom check and register reset failed");
4580 exit(1);
4583 replay_start();
4585 /* This checkpoint is required by replay to separate prior clock
4586 reading from the other reads, because timer polling functions query
4587 clock values from the log. */
4588 replay_checkpoint(CHECKPOINT_RESET);
4589 qemu_system_reset(VMRESET_SILENT);
4590 register_global_state();
4591 if (loadvm) {
4592 if (load_vmstate(loadvm) < 0) {
4593 autostart = 0;
4597 qdev_prop_check_globals();
4598 if (vmstate_dump_file) {
4599 /* dump and exit */
4600 dump_vmstate_json_to_file(vmstate_dump_file);
4601 return 0;
4604 if (incoming) {
4605 Error *local_err = NULL;
4606 qemu_start_incoming_migration(incoming, &local_err);
4607 if (local_err) {
4608 error_reportf_err(local_err, "-incoming %s: ", incoming);
4609 exit(1);
4611 } else if (autostart) {
4612 vm_start();
4615 os_setup_post();
4617 trace_init_vcpu_events();
4618 main_loop();
4619 replay_disable_events();
4620 iothread_stop_all();
4622 bdrv_close_all();
4623 pause_all_vcpus();
4624 res_free();
4626 /* vhost-user must be cleaned up before chardevs. */
4627 net_cleanup();
4628 audio_cleanup();
4629 monitor_cleanup();
4630 qemu_chr_cleanup();
4632 return 0;