pc-dimm: correct comment of MemoryHotplugState
[qemu/cris-port.git] / vl.c
bloba43a3bad182a6cedce6058f35012189df092859d
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/cutils.h"
26 #include "qemu/help_option.h"
28 #ifdef CONFIG_SECCOMP
29 #include "sysemu/seccomp.h"
30 #endif
32 #if defined(CONFIG_VDE)
33 #include <libvdeplug.h>
34 #endif
36 #ifdef CONFIG_SDL
37 #if defined(__APPLE__) || defined(main)
38 #include <SDL.h>
39 int qemu_main(int argc, char **argv, char **envp);
40 int main(int argc, char **argv)
42 return qemu_main(argc, argv, NULL);
44 #undef main
45 #define main qemu_main
46 #endif
47 #endif /* CONFIG_SDL */
49 #ifdef CONFIG_COCOA
50 #undef main
51 #define main qemu_main
52 #endif /* CONFIG_COCOA */
54 #include <glib.h>
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"
125 #define MAX_VIRTIO_CONSOLES 1
126 #define MAX_SCLP_CONSOLES 1
128 static const char *data_dir[16];
129 static int data_dir_idx;
130 const char *bios_name = NULL;
131 enum vga_retrace_method vga_retrace_method = VGA_RETRACE_DUMB;
132 DisplayType display_type = DT_DEFAULT;
133 int request_opengl = -1;
134 int display_opengl;
135 static int display_remote;
136 const char* keyboard_layout = NULL;
137 ram_addr_t ram_size;
138 const char *mem_path = NULL;
139 int mem_prealloc = 0; /* force preallocation of physical target memory */
140 bool enable_mlock = false;
141 int nb_nics;
142 NICInfo nd_table[MAX_NICS];
143 int autostart;
144 static int rtc_utc = 1;
145 static int rtc_date_offset = -1; /* -1 means no change */
146 QEMUClockType rtc_clock;
147 int vga_interface_type = VGA_NONE;
148 static int full_screen = 0;
149 static int no_frame = 0;
150 int no_quit = 0;
151 #ifdef CONFIG_GTK
152 static bool grab_on_hover;
153 #endif
154 CharDriverState *serial_hds[MAX_SERIAL_PORTS];
155 CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
156 CharDriverState *virtcon_hds[MAX_VIRTIO_CONSOLES];
157 CharDriverState *sclp_hds[MAX_SCLP_CONSOLES];
158 int win2k_install_hack = 0;
159 int singlestep = 0;
160 int smp_cpus = 1;
161 int max_cpus = 0;
162 int smp_cores = 1;
163 int smp_threads = 1;
164 int acpi_enabled = 1;
165 int no_hpet = 0;
166 int fd_bootchk = 1;
167 static int no_reboot;
168 int no_shutdown = 0;
169 int cursor_hide = 1;
170 int graphic_rotate = 0;
171 const char *watchdog;
172 QEMUOptionRom option_rom[MAX_OPTION_ROMS];
173 int nb_option_roms;
174 int old_param = 0;
175 const char *qemu_name;
176 int alt_grab = 0;
177 int ctrl_grab = 0;
178 unsigned int nb_prom_envs = 0;
179 const char *prom_envs[MAX_PROM_ENVS];
180 int boot_menu;
181 bool boot_strict;
182 uint8_t *boot_splash_filedata;
183 size_t boot_splash_filedata_size;
184 uint8_t qemu_extra_params_fw[2];
186 int icount_align_option;
188 /* The bytes in qemu_uuid[] are in the order specified by RFC4122, _not_ in the
189 * little-endian "wire format" described in the SMBIOS 2.6 specification.
191 uint8_t qemu_uuid[16];
192 bool qemu_uuid_set;
194 static NotifierList exit_notifiers =
195 NOTIFIER_LIST_INITIALIZER(exit_notifiers);
197 static NotifierList machine_init_done_notifiers =
198 NOTIFIER_LIST_INITIALIZER(machine_init_done_notifiers);
200 bool xen_allowed;
201 uint32_t xen_domid;
202 enum xen_mode xen_mode = XEN_EMULATE;
204 static int has_defaults = 1;
205 static int default_serial = 1;
206 static int default_parallel = 1;
207 static int default_virtcon = 1;
208 static int default_sclp = 1;
209 static int default_monitor = 1;
210 static int default_floppy = 1;
211 static int default_cdrom = 1;
212 static int default_sdcard = 1;
213 static int default_vga = 1;
215 static struct {
216 const char *driver;
217 int *flag;
218 } default_list[] = {
219 { .driver = "isa-serial", .flag = &default_serial },
220 { .driver = "isa-parallel", .flag = &default_parallel },
221 { .driver = "isa-fdc", .flag = &default_floppy },
222 { .driver = "ide-cd", .flag = &default_cdrom },
223 { .driver = "ide-hd", .flag = &default_cdrom },
224 { .driver = "ide-drive", .flag = &default_cdrom },
225 { .driver = "scsi-cd", .flag = &default_cdrom },
226 { .driver = "virtio-serial-pci", .flag = &default_virtcon },
227 { .driver = "virtio-serial", .flag = &default_virtcon },
228 { .driver = "VGA", .flag = &default_vga },
229 { .driver = "isa-vga", .flag = &default_vga },
230 { .driver = "cirrus-vga", .flag = &default_vga },
231 { .driver = "isa-cirrus-vga", .flag = &default_vga },
232 { .driver = "vmware-svga", .flag = &default_vga },
233 { .driver = "qxl-vga", .flag = &default_vga },
234 { .driver = "virtio-vga", .flag = &default_vga },
237 static QemuOptsList qemu_rtc_opts = {
238 .name = "rtc",
239 .head = QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts.head),
240 .desc = {
242 .name = "base",
243 .type = QEMU_OPT_STRING,
245 .name = "clock",
246 .type = QEMU_OPT_STRING,
248 .name = "driftfix",
249 .type = QEMU_OPT_STRING,
251 { /* end of list */ }
255 static QemuOptsList qemu_sandbox_opts = {
256 .name = "sandbox",
257 .implied_opt_name = "enable",
258 .head = QTAILQ_HEAD_INITIALIZER(qemu_sandbox_opts.head),
259 .desc = {
261 .name = "enable",
262 .type = QEMU_OPT_BOOL,
264 { /* end of list */ }
268 static QemuOptsList qemu_trace_opts = {
269 .name = "trace",
270 .implied_opt_name = "enable",
271 .head = QTAILQ_HEAD_INITIALIZER(qemu_trace_opts.head),
272 .desc = {
274 .name = "enable",
275 .type = QEMU_OPT_STRING,
278 .name = "events",
279 .type = QEMU_OPT_STRING,
281 .name = "file",
282 .type = QEMU_OPT_STRING,
284 { /* end of list */ }
288 static QemuOptsList qemu_option_rom_opts = {
289 .name = "option-rom",
290 .implied_opt_name = "romfile",
291 .head = QTAILQ_HEAD_INITIALIZER(qemu_option_rom_opts.head),
292 .desc = {
294 .name = "bootindex",
295 .type = QEMU_OPT_NUMBER,
296 }, {
297 .name = "romfile",
298 .type = QEMU_OPT_STRING,
300 { /* end of list */ }
304 static QemuOptsList qemu_machine_opts = {
305 .name = "machine",
306 .implied_opt_name = "type",
307 .merge_lists = true,
308 .head = QTAILQ_HEAD_INITIALIZER(qemu_machine_opts.head),
309 .desc = {
311 * no elements => accept any
312 * sanity checking will happen later
313 * when setting machine properties
319 static QemuOptsList qemu_boot_opts = {
320 .name = "boot-opts",
321 .implied_opt_name = "order",
322 .merge_lists = true,
323 .head = QTAILQ_HEAD_INITIALIZER(qemu_boot_opts.head),
324 .desc = {
326 .name = "order",
327 .type = QEMU_OPT_STRING,
328 }, {
329 .name = "once",
330 .type = QEMU_OPT_STRING,
331 }, {
332 .name = "menu",
333 .type = QEMU_OPT_BOOL,
334 }, {
335 .name = "splash",
336 .type = QEMU_OPT_STRING,
337 }, {
338 .name = "splash-time",
339 .type = QEMU_OPT_STRING,
340 }, {
341 .name = "reboot-timeout",
342 .type = QEMU_OPT_STRING,
343 }, {
344 .name = "strict",
345 .type = QEMU_OPT_BOOL,
347 { /*End of list */ }
351 static QemuOptsList qemu_add_fd_opts = {
352 .name = "add-fd",
353 .head = QTAILQ_HEAD_INITIALIZER(qemu_add_fd_opts.head),
354 .desc = {
356 .name = "fd",
357 .type = QEMU_OPT_NUMBER,
358 .help = "file descriptor of which a duplicate is added to fd set",
360 .name = "set",
361 .type = QEMU_OPT_NUMBER,
362 .help = "ID of the fd set to add fd to",
364 .name = "opaque",
365 .type = QEMU_OPT_STRING,
366 .help = "free-form string used to describe fd",
368 { /* end of list */ }
372 static QemuOptsList qemu_object_opts = {
373 .name = "object",
374 .implied_opt_name = "qom-type",
375 .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head),
376 .desc = {
381 static QemuOptsList qemu_tpmdev_opts = {
382 .name = "tpmdev",
383 .implied_opt_name = "type",
384 .head = QTAILQ_HEAD_INITIALIZER(qemu_tpmdev_opts.head),
385 .desc = {
386 /* options are defined in the TPM backends */
387 { /* end of list */ }
391 static QemuOptsList qemu_realtime_opts = {
392 .name = "realtime",
393 .head = QTAILQ_HEAD_INITIALIZER(qemu_realtime_opts.head),
394 .desc = {
396 .name = "mlock",
397 .type = QEMU_OPT_BOOL,
399 { /* end of list */ }
403 static QemuOptsList qemu_msg_opts = {
404 .name = "msg",
405 .head = QTAILQ_HEAD_INITIALIZER(qemu_msg_opts.head),
406 .desc = {
408 .name = "timestamp",
409 .type = QEMU_OPT_BOOL,
411 { /* end of list */ }
415 static QemuOptsList qemu_name_opts = {
416 .name = "name",
417 .implied_opt_name = "guest",
418 .merge_lists = true,
419 .head = QTAILQ_HEAD_INITIALIZER(qemu_name_opts.head),
420 .desc = {
422 .name = "guest",
423 .type = QEMU_OPT_STRING,
424 .help = "Sets the name of the guest.\n"
425 "This name will be displayed in the SDL window caption.\n"
426 "The name will also be used for the VNC server",
427 }, {
428 .name = "process",
429 .type = QEMU_OPT_STRING,
430 .help = "Sets the name of the QEMU process, as shown in top etc",
431 }, {
432 .name = "debug-threads",
433 .type = QEMU_OPT_BOOL,
434 .help = "When enabled, name the individual threads; defaults off.\n"
435 "NOTE: The thread names are for debugging and not a\n"
436 "stable API.",
438 { /* End of list */ }
442 static QemuOptsList qemu_mem_opts = {
443 .name = "memory",
444 .implied_opt_name = "size",
445 .head = QTAILQ_HEAD_INITIALIZER(qemu_mem_opts.head),
446 .merge_lists = true,
447 .desc = {
449 .name = "size",
450 .type = QEMU_OPT_SIZE,
453 .name = "slots",
454 .type = QEMU_OPT_NUMBER,
457 .name = "maxmem",
458 .type = QEMU_OPT_SIZE,
460 { /* end of list */ }
464 static QemuOptsList qemu_icount_opts = {
465 .name = "icount",
466 .implied_opt_name = "shift",
467 .merge_lists = true,
468 .head = QTAILQ_HEAD_INITIALIZER(qemu_icount_opts.head),
469 .desc = {
471 .name = "shift",
472 .type = QEMU_OPT_STRING,
473 }, {
474 .name = "align",
475 .type = QEMU_OPT_BOOL,
476 }, {
477 .name = "sleep",
478 .type = QEMU_OPT_BOOL,
479 }, {
480 .name = "rr",
481 .type = QEMU_OPT_STRING,
482 }, {
483 .name = "rrfile",
484 .type = QEMU_OPT_STRING,
486 { /* end of list */ }
490 static QemuOptsList qemu_semihosting_config_opts = {
491 .name = "semihosting-config",
492 .implied_opt_name = "enable",
493 .head = QTAILQ_HEAD_INITIALIZER(qemu_semihosting_config_opts.head),
494 .desc = {
496 .name = "enable",
497 .type = QEMU_OPT_BOOL,
498 }, {
499 .name = "target",
500 .type = QEMU_OPT_STRING,
501 }, {
502 .name = "arg",
503 .type = QEMU_OPT_STRING,
505 { /* end of list */ }
509 static QemuOptsList qemu_fw_cfg_opts = {
510 .name = "fw_cfg",
511 .implied_opt_name = "name",
512 .head = QTAILQ_HEAD_INITIALIZER(qemu_fw_cfg_opts.head),
513 .desc = {
515 .name = "name",
516 .type = QEMU_OPT_STRING,
517 .help = "Sets the fw_cfg name of the blob to be inserted",
518 }, {
519 .name = "file",
520 .type = QEMU_OPT_STRING,
521 .help = "Sets the name of the file from which\n"
522 "the fw_cfg blob will be loaded",
523 }, {
524 .name = "string",
525 .type = QEMU_OPT_STRING,
526 .help = "Sets content of the blob to be inserted from a string",
528 { /* end of list */ }
533 * Get machine options
535 * Returns: machine options (never null).
537 QemuOpts *qemu_get_machine_opts(void)
539 return qemu_find_opts_singleton("machine");
542 const char *qemu_get_vm_name(void)
544 return qemu_name;
547 static void res_free(void)
549 g_free(boot_splash_filedata);
550 boot_splash_filedata = NULL;
553 static int default_driver_check(void *opaque, QemuOpts *opts, Error **errp)
555 const char *driver = qemu_opt_get(opts, "driver");
556 int i;
558 if (!driver)
559 return 0;
560 for (i = 0; i < ARRAY_SIZE(default_list); i++) {
561 if (strcmp(default_list[i].driver, driver) != 0)
562 continue;
563 *(default_list[i].flag) = 0;
565 return 0;
568 /***********************************************************/
569 /* QEMU state */
571 static RunState current_run_state = RUN_STATE_PRELAUNCH;
573 /* We use RUN_STATE__MAX but any invalid value will do */
574 static RunState vmstop_requested = RUN_STATE__MAX;
575 static QemuMutex vmstop_lock;
577 typedef struct {
578 RunState from;
579 RunState to;
580 } RunStateTransition;
582 static const RunStateTransition runstate_transitions_def[] = {
583 /* from -> to */
584 { RUN_STATE_DEBUG, RUN_STATE_RUNNING },
585 { RUN_STATE_DEBUG, RUN_STATE_FINISH_MIGRATE },
586 { RUN_STATE_DEBUG, RUN_STATE_PRELAUNCH },
588 { RUN_STATE_INMIGRATE, RUN_STATE_INTERNAL_ERROR },
589 { RUN_STATE_INMIGRATE, RUN_STATE_IO_ERROR },
590 { RUN_STATE_INMIGRATE, RUN_STATE_PAUSED },
591 { RUN_STATE_INMIGRATE, RUN_STATE_RUNNING },
592 { RUN_STATE_INMIGRATE, RUN_STATE_SHUTDOWN },
593 { RUN_STATE_INMIGRATE, RUN_STATE_SUSPENDED },
594 { RUN_STATE_INMIGRATE, RUN_STATE_WATCHDOG },
595 { RUN_STATE_INMIGRATE, RUN_STATE_GUEST_PANICKED },
596 { RUN_STATE_INMIGRATE, RUN_STATE_FINISH_MIGRATE },
597 { RUN_STATE_INMIGRATE, RUN_STATE_PRELAUNCH },
598 { RUN_STATE_INMIGRATE, RUN_STATE_POSTMIGRATE },
600 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_PAUSED },
601 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_FINISH_MIGRATE },
602 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_PRELAUNCH },
604 { RUN_STATE_IO_ERROR, RUN_STATE_RUNNING },
605 { RUN_STATE_IO_ERROR, RUN_STATE_FINISH_MIGRATE },
606 { RUN_STATE_IO_ERROR, RUN_STATE_PRELAUNCH },
608 { RUN_STATE_PAUSED, RUN_STATE_RUNNING },
609 { RUN_STATE_PAUSED, RUN_STATE_FINISH_MIGRATE },
610 { RUN_STATE_PAUSED, RUN_STATE_PRELAUNCH },
612 { RUN_STATE_POSTMIGRATE, RUN_STATE_RUNNING },
613 { RUN_STATE_POSTMIGRATE, RUN_STATE_FINISH_MIGRATE },
614 { RUN_STATE_POSTMIGRATE, RUN_STATE_PRELAUNCH },
616 { RUN_STATE_PRELAUNCH, RUN_STATE_RUNNING },
617 { RUN_STATE_PRELAUNCH, RUN_STATE_FINISH_MIGRATE },
618 { RUN_STATE_PRELAUNCH, RUN_STATE_INMIGRATE },
620 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_RUNNING },
621 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_POSTMIGRATE },
622 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_PRELAUNCH },
624 { RUN_STATE_RESTORE_VM, RUN_STATE_RUNNING },
625 { RUN_STATE_RESTORE_VM, RUN_STATE_PRELAUNCH },
627 { RUN_STATE_RUNNING, RUN_STATE_DEBUG },
628 { RUN_STATE_RUNNING, RUN_STATE_INTERNAL_ERROR },
629 { RUN_STATE_RUNNING, RUN_STATE_IO_ERROR },
630 { RUN_STATE_RUNNING, RUN_STATE_PAUSED },
631 { RUN_STATE_RUNNING, RUN_STATE_FINISH_MIGRATE },
632 { RUN_STATE_RUNNING, RUN_STATE_RESTORE_VM },
633 { RUN_STATE_RUNNING, RUN_STATE_SAVE_VM },
634 { RUN_STATE_RUNNING, RUN_STATE_SHUTDOWN },
635 { RUN_STATE_RUNNING, RUN_STATE_WATCHDOG },
636 { RUN_STATE_RUNNING, RUN_STATE_GUEST_PANICKED },
638 { RUN_STATE_SAVE_VM, RUN_STATE_RUNNING },
640 { RUN_STATE_SHUTDOWN, RUN_STATE_PAUSED },
641 { RUN_STATE_SHUTDOWN, RUN_STATE_FINISH_MIGRATE },
642 { RUN_STATE_SHUTDOWN, RUN_STATE_PRELAUNCH },
644 { RUN_STATE_DEBUG, RUN_STATE_SUSPENDED },
645 { RUN_STATE_RUNNING, RUN_STATE_SUSPENDED },
646 { RUN_STATE_SUSPENDED, RUN_STATE_RUNNING },
647 { RUN_STATE_SUSPENDED, RUN_STATE_FINISH_MIGRATE },
648 { RUN_STATE_SUSPENDED, RUN_STATE_PRELAUNCH },
650 { RUN_STATE_WATCHDOG, RUN_STATE_RUNNING },
651 { RUN_STATE_WATCHDOG, RUN_STATE_FINISH_MIGRATE },
652 { RUN_STATE_WATCHDOG, RUN_STATE_PRELAUNCH },
654 { RUN_STATE_GUEST_PANICKED, RUN_STATE_RUNNING },
655 { RUN_STATE_GUEST_PANICKED, RUN_STATE_FINISH_MIGRATE },
656 { RUN_STATE_GUEST_PANICKED, RUN_STATE_PRELAUNCH },
658 { RUN_STATE__MAX, RUN_STATE__MAX },
661 static bool runstate_valid_transitions[RUN_STATE__MAX][RUN_STATE__MAX];
663 bool runstate_check(RunState state)
665 return current_run_state == state;
668 bool runstate_store(char *str, size_t size)
670 const char *state = RunState_lookup[current_run_state];
671 size_t len = strlen(state) + 1;
673 if (len > size) {
674 return false;
676 memcpy(str, state, len);
677 return true;
680 static void runstate_init(void)
682 const RunStateTransition *p;
684 memset(&runstate_valid_transitions, 0, sizeof(runstate_valid_transitions));
685 for (p = &runstate_transitions_def[0]; p->from != RUN_STATE__MAX; p++) {
686 runstate_valid_transitions[p->from][p->to] = true;
689 qemu_mutex_init(&vmstop_lock);
692 /* This function will abort() on invalid state transitions */
693 void runstate_set(RunState new_state)
695 assert(new_state < RUN_STATE__MAX);
697 if (!runstate_valid_transitions[current_run_state][new_state]) {
698 error_report("invalid runstate transition: '%s' -> '%s'",
699 RunState_lookup[current_run_state],
700 RunState_lookup[new_state]);
701 abort();
703 trace_runstate_set(new_state);
704 current_run_state = new_state;
707 int runstate_is_running(void)
709 return runstate_check(RUN_STATE_RUNNING);
712 bool runstate_needs_reset(void)
714 return runstate_check(RUN_STATE_INTERNAL_ERROR) ||
715 runstate_check(RUN_STATE_SHUTDOWN);
718 StatusInfo *qmp_query_status(Error **errp)
720 StatusInfo *info = g_malloc0(sizeof(*info));
722 info->running = runstate_is_running();
723 info->singlestep = singlestep;
724 info->status = current_run_state;
726 return info;
729 static bool qemu_vmstop_requested(RunState *r)
731 qemu_mutex_lock(&vmstop_lock);
732 *r = vmstop_requested;
733 vmstop_requested = RUN_STATE__MAX;
734 qemu_mutex_unlock(&vmstop_lock);
735 return *r < RUN_STATE__MAX;
738 void qemu_system_vmstop_request_prepare(void)
740 qemu_mutex_lock(&vmstop_lock);
743 void qemu_system_vmstop_request(RunState state)
745 vmstop_requested = state;
746 qemu_mutex_unlock(&vmstop_lock);
747 qemu_notify_event();
750 void vm_start(void)
752 RunState requested;
754 qemu_vmstop_requested(&requested);
755 if (runstate_is_running() && requested == RUN_STATE__MAX) {
756 return;
759 /* Ensure that a STOP/RESUME pair of events is emitted if a
760 * vmstop request was pending. The BLOCK_IO_ERROR event, for
761 * example, according to documentation is always followed by
762 * the STOP event.
764 if (runstate_is_running()) {
765 qapi_event_send_stop(&error_abort);
766 } else {
767 cpu_enable_ticks();
768 runstate_set(RUN_STATE_RUNNING);
769 vm_state_notify(1, RUN_STATE_RUNNING);
770 resume_all_vcpus();
773 qapi_event_send_resume(&error_abort);
777 /***********************************************************/
778 /* real time host monotonic timer */
780 static time_t qemu_time(void)
782 return qemu_clock_get_ms(QEMU_CLOCK_HOST) / 1000;
785 /***********************************************************/
786 /* host time/date access */
787 void qemu_get_timedate(struct tm *tm, int offset)
789 time_t ti = qemu_time();
791 ti += offset;
792 if (rtc_date_offset == -1) {
793 if (rtc_utc)
794 gmtime_r(&ti, tm);
795 else
796 localtime_r(&ti, tm);
797 } else {
798 ti -= rtc_date_offset;
799 gmtime_r(&ti, tm);
803 int qemu_timedate_diff(struct tm *tm)
805 time_t seconds;
807 if (rtc_date_offset == -1)
808 if (rtc_utc)
809 seconds = mktimegm(tm);
810 else {
811 struct tm tmp = *tm;
812 tmp.tm_isdst = -1; /* use timezone to figure it out */
813 seconds = mktime(&tmp);
815 else
816 seconds = mktimegm(tm) + rtc_date_offset;
818 return seconds - qemu_time();
821 static void configure_rtc_date_offset(const char *startdate, int legacy)
823 time_t rtc_start_date;
824 struct tm tm;
826 if (!strcmp(startdate, "now") && legacy) {
827 rtc_date_offset = -1;
828 } else {
829 if (sscanf(startdate, "%d-%d-%dT%d:%d:%d",
830 &tm.tm_year,
831 &tm.tm_mon,
832 &tm.tm_mday,
833 &tm.tm_hour,
834 &tm.tm_min,
835 &tm.tm_sec) == 6) {
836 /* OK */
837 } else if (sscanf(startdate, "%d-%d-%d",
838 &tm.tm_year,
839 &tm.tm_mon,
840 &tm.tm_mday) == 3) {
841 tm.tm_hour = 0;
842 tm.tm_min = 0;
843 tm.tm_sec = 0;
844 } else {
845 goto date_fail;
847 tm.tm_year -= 1900;
848 tm.tm_mon--;
849 rtc_start_date = mktimegm(&tm);
850 if (rtc_start_date == -1) {
851 date_fail:
852 error_report("invalid date format");
853 error_printf("valid formats: "
854 "'2006-06-17T16:01:21' or '2006-06-17'\n");
855 exit(1);
857 rtc_date_offset = qemu_time() - rtc_start_date;
861 static void configure_rtc(QemuOpts *opts)
863 const char *value;
865 value = qemu_opt_get(opts, "base");
866 if (value) {
867 if (!strcmp(value, "utc")) {
868 rtc_utc = 1;
869 } else if (!strcmp(value, "localtime")) {
870 Error *blocker = NULL;
871 rtc_utc = 0;
872 error_setg(&blocker, QERR_REPLAY_NOT_SUPPORTED,
873 "-rtc base=localtime");
874 replay_add_blocker(blocker);
875 } else {
876 configure_rtc_date_offset(value, 0);
879 value = qemu_opt_get(opts, "clock");
880 if (value) {
881 if (!strcmp(value, "host")) {
882 rtc_clock = QEMU_CLOCK_HOST;
883 } else if (!strcmp(value, "rt")) {
884 rtc_clock = QEMU_CLOCK_REALTIME;
885 } else if (!strcmp(value, "vm")) {
886 rtc_clock = QEMU_CLOCK_VIRTUAL;
887 } else {
888 error_report("invalid option value '%s'", value);
889 exit(1);
892 value = qemu_opt_get(opts, "driftfix");
893 if (value) {
894 if (!strcmp(value, "slew")) {
895 static GlobalProperty slew_lost_ticks[] = {
897 .driver = "mc146818rtc",
898 .property = "lost_tick_policy",
899 .value = "slew",
901 { /* end of list */ }
904 qdev_prop_register_global_list(slew_lost_ticks);
905 } else if (!strcmp(value, "none")) {
906 /* discard is default */
907 } else {
908 error_report("invalid option value '%s'", value);
909 exit(1);
914 /***********************************************************/
915 /* Bluetooth support */
916 static int nb_hcis;
917 static int cur_hci;
918 static struct HCIInfo *hci_table[MAX_NICS];
920 struct HCIInfo *qemu_next_hci(void)
922 if (cur_hci == nb_hcis)
923 return &null_hci;
925 return hci_table[cur_hci++];
928 static int bt_hci_parse(const char *str)
930 struct HCIInfo *hci;
931 bdaddr_t bdaddr;
933 if (nb_hcis >= MAX_NICS) {
934 error_report("too many bluetooth HCIs (max %i)", MAX_NICS);
935 return -1;
938 hci = hci_init(str);
939 if (!hci)
940 return -1;
942 bdaddr.b[0] = 0x52;
943 bdaddr.b[1] = 0x54;
944 bdaddr.b[2] = 0x00;
945 bdaddr.b[3] = 0x12;
946 bdaddr.b[4] = 0x34;
947 bdaddr.b[5] = 0x56 + nb_hcis;
948 hci->bdaddr_set(hci, bdaddr.b);
950 hci_table[nb_hcis++] = hci;
952 return 0;
955 static void bt_vhci_add(int vlan_id)
957 struct bt_scatternet_s *vlan = qemu_find_bt_vlan(vlan_id);
959 if (!vlan->slave)
960 error_report("warning: adding a VHCI to an empty scatternet %i",
961 vlan_id);
963 bt_vhci_init(bt_new_hci(vlan));
966 static struct bt_device_s *bt_device_add(const char *opt)
968 struct bt_scatternet_s *vlan;
969 int vlan_id = 0;
970 char *endp = strstr(opt, ",vlan=");
971 int len = (endp ? endp - opt : strlen(opt)) + 1;
972 char devname[10];
974 pstrcpy(devname, MIN(sizeof(devname), len), opt);
976 if (endp) {
977 vlan_id = strtol(endp + 6, &endp, 0);
978 if (*endp) {
979 error_report("unrecognised bluetooth vlan Id");
980 return 0;
984 vlan = qemu_find_bt_vlan(vlan_id);
986 if (!vlan->slave)
987 error_report("warning: adding a slave device to an empty scatternet %i",
988 vlan_id);
990 if (!strcmp(devname, "keyboard"))
991 return bt_keyboard_init(vlan);
993 error_report("unsupported bluetooth device '%s'", devname);
994 return 0;
997 static int bt_parse(const char *opt)
999 const char *endp, *p;
1000 int vlan;
1002 if (strstart(opt, "hci", &endp)) {
1003 if (!*endp || *endp == ',') {
1004 if (*endp)
1005 if (!strstart(endp, ",vlan=", 0))
1006 opt = endp + 1;
1008 return bt_hci_parse(opt);
1010 } else if (strstart(opt, "vhci", &endp)) {
1011 if (!*endp || *endp == ',') {
1012 if (*endp) {
1013 if (strstart(endp, ",vlan=", &p)) {
1014 vlan = strtol(p, (char **) &endp, 0);
1015 if (*endp) {
1016 error_report("bad scatternet '%s'", p);
1017 return 1;
1019 } else {
1020 error_report("bad parameter '%s'", endp + 1);
1021 return 1;
1023 } else
1024 vlan = 0;
1026 bt_vhci_add(vlan);
1027 return 0;
1029 } else if (strstart(opt, "device:", &endp))
1030 return !bt_device_add(endp);
1032 error_report("bad bluetooth parameter '%s'", opt);
1033 return 1;
1036 static int parse_sandbox(void *opaque, QemuOpts *opts, Error **errp)
1038 /* FIXME: change this to true for 1.3 */
1039 if (qemu_opt_get_bool(opts, "enable", false)) {
1040 #ifdef CONFIG_SECCOMP
1041 if (seccomp_start() < 0) {
1042 error_report("failed to install seccomp syscall filter "
1043 "in the kernel");
1044 return -1;
1046 #else
1047 error_report("seccomp support is disabled");
1048 return -1;
1049 #endif
1052 return 0;
1055 static int parse_name(void *opaque, QemuOpts *opts, Error **errp)
1057 const char *proc_name;
1059 if (qemu_opt_get(opts, "debug-threads")) {
1060 qemu_thread_naming(qemu_opt_get_bool(opts, "debug-threads", false));
1062 qemu_name = qemu_opt_get(opts, "guest");
1064 proc_name = qemu_opt_get(opts, "process");
1065 if (proc_name) {
1066 os_set_proc_name(proc_name);
1069 return 0;
1072 bool defaults_enabled(void)
1074 return has_defaults;
1077 bool usb_enabled(void)
1079 return machine_usb(current_machine);
1082 #ifndef _WIN32
1083 static int parse_add_fd(void *opaque, QemuOpts *opts, Error **errp)
1085 int fd, dupfd, flags;
1086 int64_t fdset_id;
1087 const char *fd_opaque = NULL;
1088 AddfdInfo *fdinfo;
1090 fd = qemu_opt_get_number(opts, "fd", -1);
1091 fdset_id = qemu_opt_get_number(opts, "set", -1);
1092 fd_opaque = qemu_opt_get(opts, "opaque");
1094 if (fd < 0) {
1095 error_report("fd option is required and must be non-negative");
1096 return -1;
1099 if (fd <= STDERR_FILENO) {
1100 error_report("fd cannot be a standard I/O stream");
1101 return -1;
1105 * All fds inherited across exec() necessarily have FD_CLOEXEC
1106 * clear, while qemu sets FD_CLOEXEC on all other fds used internally.
1108 flags = fcntl(fd, F_GETFD);
1109 if (flags == -1 || (flags & FD_CLOEXEC)) {
1110 error_report("fd is not valid or already in use");
1111 return -1;
1114 if (fdset_id < 0) {
1115 error_report("set option is required and must be non-negative");
1116 return -1;
1119 #ifdef F_DUPFD_CLOEXEC
1120 dupfd = fcntl(fd, F_DUPFD_CLOEXEC, 0);
1121 #else
1122 dupfd = dup(fd);
1123 if (dupfd != -1) {
1124 qemu_set_cloexec(dupfd);
1126 #endif
1127 if (dupfd == -1) {
1128 error_report("error duplicating fd: %s", strerror(errno));
1129 return -1;
1132 /* add the duplicate fd, and optionally the opaque string, to the fd set */
1133 fdinfo = monitor_fdset_add_fd(dupfd, true, fdset_id, !!fd_opaque, fd_opaque,
1134 &error_abort);
1135 g_free(fdinfo);
1137 return 0;
1140 static int cleanup_add_fd(void *opaque, QemuOpts *opts, Error **errp)
1142 int fd;
1144 fd = qemu_opt_get_number(opts, "fd", -1);
1145 close(fd);
1147 return 0;
1149 #endif
1151 /***********************************************************/
1152 /* QEMU Block devices */
1154 #define HD_OPTS "media=disk"
1155 #define CDROM_OPTS "media=cdrom"
1156 #define FD_OPTS ""
1157 #define PFLASH_OPTS ""
1158 #define MTD_OPTS ""
1159 #define SD_OPTS ""
1161 static int drive_init_func(void *opaque, QemuOpts *opts, Error **errp)
1163 BlockInterfaceType *block_default_type = opaque;
1165 return drive_new(opts, *block_default_type) == NULL;
1168 static int drive_enable_snapshot(void *opaque, QemuOpts *opts, Error **errp)
1170 if (qemu_opt_get(opts, "snapshot") == NULL) {
1171 qemu_opt_set(opts, "snapshot", "on", &error_abort);
1173 return 0;
1176 static void default_drive(int enable, int snapshot, BlockInterfaceType type,
1177 int index, const char *optstr)
1179 QemuOpts *opts;
1180 DriveInfo *dinfo;
1182 if (!enable || drive_get_by_index(type, index)) {
1183 return;
1186 opts = drive_add(type, index, NULL, optstr);
1187 if (snapshot) {
1188 drive_enable_snapshot(NULL, opts, NULL);
1191 dinfo = drive_new(opts, type);
1192 if (!dinfo) {
1193 exit(1);
1195 dinfo->is_default = true;
1199 static QemuOptsList qemu_smp_opts = {
1200 .name = "smp-opts",
1201 .implied_opt_name = "cpus",
1202 .merge_lists = true,
1203 .head = QTAILQ_HEAD_INITIALIZER(qemu_smp_opts.head),
1204 .desc = {
1206 .name = "cpus",
1207 .type = QEMU_OPT_NUMBER,
1208 }, {
1209 .name = "sockets",
1210 .type = QEMU_OPT_NUMBER,
1211 }, {
1212 .name = "cores",
1213 .type = QEMU_OPT_NUMBER,
1214 }, {
1215 .name = "threads",
1216 .type = QEMU_OPT_NUMBER,
1217 }, {
1218 .name = "maxcpus",
1219 .type = QEMU_OPT_NUMBER,
1221 { /*End of list */ }
1225 static void smp_parse(QemuOpts *opts)
1227 if (opts) {
1229 unsigned cpus = qemu_opt_get_number(opts, "cpus", 0);
1230 unsigned sockets = qemu_opt_get_number(opts, "sockets", 0);
1231 unsigned cores = qemu_opt_get_number(opts, "cores", 0);
1232 unsigned threads = qemu_opt_get_number(opts, "threads", 0);
1234 /* compute missing values, prefer sockets over cores over threads */
1235 if (cpus == 0 || sockets == 0) {
1236 sockets = sockets > 0 ? sockets : 1;
1237 cores = cores > 0 ? cores : 1;
1238 threads = threads > 0 ? threads : 1;
1239 if (cpus == 0) {
1240 cpus = cores * threads * sockets;
1242 } else if (cores == 0) {
1243 threads = threads > 0 ? threads : 1;
1244 cores = cpus / (sockets * threads);
1245 } else if (threads == 0) {
1246 threads = cpus / (cores * sockets);
1247 } else if (sockets * cores * threads < cpus) {
1248 error_report("cpu topology: "
1249 "sockets (%u) * cores (%u) * threads (%u) < "
1250 "smp_cpus (%u)",
1251 sockets, cores, threads, cpus);
1252 exit(1);
1255 max_cpus = qemu_opt_get_number(opts, "maxcpus", cpus);
1256 if (sockets * cores * threads > max_cpus) {
1257 error_report("cpu topology: "
1258 "sockets (%u) * cores (%u) * threads (%u) > "
1259 "maxcpus (%u)",
1260 sockets, cores, threads, max_cpus);
1261 exit(1);
1264 smp_cpus = cpus;
1265 smp_cores = cores > 0 ? cores : 1;
1266 smp_threads = threads > 0 ? threads : 1;
1270 if (max_cpus == 0) {
1271 max_cpus = smp_cpus;
1274 if (max_cpus > MAX_CPUMASK_BITS) {
1275 error_report("unsupported number of maxcpus");
1276 exit(1);
1278 if (max_cpus < smp_cpus) {
1279 error_report("maxcpus must be equal to or greater than smp");
1280 exit(1);
1283 if (smp_cpus > 1 || smp_cores > 1 || smp_threads > 1) {
1284 Error *blocker = NULL;
1285 error_setg(&blocker, QERR_REPLAY_NOT_SUPPORTED, "smp");
1286 replay_add_blocker(blocker);
1290 static void realtime_init(void)
1292 if (enable_mlock) {
1293 if (os_mlock() < 0) {
1294 error_report("locking memory failed");
1295 exit(1);
1301 static void configure_msg(QemuOpts *opts)
1303 enable_timestamp_msg = qemu_opt_get_bool(opts, "timestamp", true);
1306 /***********************************************************/
1307 /* Semihosting */
1309 typedef struct SemihostingConfig {
1310 bool enabled;
1311 SemihostingTarget target;
1312 const char **argv;
1313 int argc;
1314 const char *cmdline; /* concatenated argv */
1315 } SemihostingConfig;
1317 static SemihostingConfig semihosting;
1319 bool semihosting_enabled(void)
1321 return semihosting.enabled;
1324 SemihostingTarget semihosting_get_target(void)
1326 return semihosting.target;
1329 const char *semihosting_get_arg(int i)
1331 if (i >= semihosting.argc) {
1332 return NULL;
1334 return semihosting.argv[i];
1337 int semihosting_get_argc(void)
1339 return semihosting.argc;
1342 const char *semihosting_get_cmdline(void)
1344 if (semihosting.cmdline == NULL && semihosting.argc > 0) {
1345 semihosting.cmdline = g_strjoinv(" ", (gchar **)semihosting.argv);
1347 return semihosting.cmdline;
1350 static int add_semihosting_arg(void *opaque,
1351 const char *name, const char *val,
1352 Error **errp)
1354 SemihostingConfig *s = opaque;
1355 if (strcmp(name, "arg") == 0) {
1356 s->argc++;
1357 /* one extra element as g_strjoinv() expects NULL-terminated array */
1358 s->argv = g_realloc(s->argv, (s->argc + 1) * sizeof(void *));
1359 s->argv[s->argc - 1] = val;
1360 s->argv[s->argc] = NULL;
1362 return 0;
1365 /* Use strings passed via -kernel/-append to initialize semihosting.argv[] */
1366 static inline void semihosting_arg_fallback(const char *file, const char *cmd)
1368 char *cmd_token;
1370 /* argv[0] */
1371 add_semihosting_arg(&semihosting, "arg", file, NULL);
1373 /* split -append and initialize argv[1..n] */
1374 cmd_token = strtok(g_strdup(cmd), " ");
1375 while (cmd_token) {
1376 add_semihosting_arg(&semihosting, "arg", cmd_token, NULL);
1377 cmd_token = strtok(NULL, " ");
1381 /* Now we still need this for compatibility with XEN. */
1382 bool has_igd_gfx_passthru;
1383 static void igd_gfx_passthru(void)
1385 has_igd_gfx_passthru = current_machine->igd_gfx_passthru;
1388 /***********************************************************/
1389 /* USB devices */
1391 static int usb_device_add(const char *devname)
1393 USBDevice *dev = NULL;
1394 #ifndef CONFIG_LINUX
1395 const char *p;
1396 #endif
1398 if (!usb_enabled()) {
1399 return -1;
1402 /* drivers with .usbdevice_name entry in USBDeviceInfo */
1403 dev = usbdevice_create(devname);
1404 if (dev)
1405 goto done;
1407 /* the other ones */
1408 #ifndef CONFIG_LINUX
1409 /* only the linux version is qdev-ified, usb-bsd still needs this */
1410 if (strstart(devname, "host:", &p)) {
1411 dev = usb_host_device_open(usb_bus_find(-1), p);
1413 #endif
1414 if (!dev)
1415 return -1;
1417 done:
1418 return 0;
1421 static int usb_device_del(const char *devname)
1423 int bus_num, addr;
1424 const char *p;
1426 if (strstart(devname, "host:", &p)) {
1427 return -1;
1430 if (!usb_enabled()) {
1431 return -1;
1434 p = strchr(devname, '.');
1435 if (!p)
1436 return -1;
1437 bus_num = strtoul(devname, NULL, 0);
1438 addr = strtoul(p + 1, NULL, 0);
1440 return usb_device_delete_addr(bus_num, addr);
1443 static int usb_parse(const char *cmdline)
1445 int r;
1446 r = usb_device_add(cmdline);
1447 if (r < 0) {
1448 error_report("could not add USB device '%s'", cmdline);
1450 return r;
1453 void hmp_usb_add(Monitor *mon, const QDict *qdict)
1455 const char *devname = qdict_get_str(qdict, "devname");
1456 if (usb_device_add(devname) < 0) {
1457 error_report("could not add USB device '%s'", devname);
1461 void hmp_usb_del(Monitor *mon, const QDict *qdict)
1463 const char *devname = qdict_get_str(qdict, "devname");
1464 if (usb_device_del(devname) < 0) {
1465 error_report("could not delete USB device '%s'", devname);
1469 /***********************************************************/
1470 /* machine registration */
1472 MachineState *current_machine;
1474 static MachineClass *find_machine(const char *name)
1476 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
1477 MachineClass *mc = NULL;
1479 for (el = machines; el; el = el->next) {
1480 MachineClass *temp = el->data;
1482 if (!strcmp(temp->name, name)) {
1483 mc = temp;
1484 break;
1486 if (temp->alias &&
1487 !strcmp(temp->alias, name)) {
1488 mc = temp;
1489 break;
1493 g_slist_free(machines);
1494 return mc;
1497 MachineClass *find_default_machine(void)
1499 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
1500 MachineClass *mc = NULL;
1502 for (el = machines; el; el = el->next) {
1503 MachineClass *temp = el->data;
1505 if (temp->is_default) {
1506 mc = temp;
1507 break;
1511 g_slist_free(machines);
1512 return mc;
1515 MachineInfoList *qmp_query_machines(Error **errp)
1517 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
1518 MachineInfoList *mach_list = NULL;
1520 for (el = machines; el; el = el->next) {
1521 MachineClass *mc = el->data;
1522 MachineInfoList *entry;
1523 MachineInfo *info;
1525 info = g_malloc0(sizeof(*info));
1526 if (mc->is_default) {
1527 info->has_is_default = true;
1528 info->is_default = true;
1531 if (mc->alias) {
1532 info->has_alias = true;
1533 info->alias = g_strdup(mc->alias);
1536 info->name = g_strdup(mc->name);
1537 info->cpu_max = !mc->max_cpus ? 1 : mc->max_cpus;
1539 entry = g_malloc0(sizeof(*entry));
1540 entry->value = info;
1541 entry->next = mach_list;
1542 mach_list = entry;
1545 g_slist_free(machines);
1546 return mach_list;
1549 static int machine_help_func(QemuOpts *opts, MachineState *machine)
1551 ObjectProperty *prop;
1552 ObjectPropertyIterator iter;
1554 if (!qemu_opt_has_help_opt(opts)) {
1555 return 0;
1558 object_property_iter_init(&iter, OBJECT(machine));
1559 while ((prop = object_property_iter_next(&iter))) {
1560 if (!prop->set) {
1561 continue;
1564 error_printf("%s.%s=%s", MACHINE_GET_CLASS(machine)->name,
1565 prop->name, prop->type);
1566 if (prop->description) {
1567 error_printf(" (%s)\n", prop->description);
1568 } else {
1569 error_printf("\n");
1573 return 1;
1576 /***********************************************************/
1577 /* main execution loop */
1579 struct vm_change_state_entry {
1580 VMChangeStateHandler *cb;
1581 void *opaque;
1582 QLIST_ENTRY (vm_change_state_entry) entries;
1585 static QLIST_HEAD(vm_change_state_head, vm_change_state_entry) vm_change_state_head;
1587 VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
1588 void *opaque)
1590 VMChangeStateEntry *e;
1592 e = g_malloc0(sizeof (*e));
1594 e->cb = cb;
1595 e->opaque = opaque;
1596 QLIST_INSERT_HEAD(&vm_change_state_head, e, entries);
1597 return e;
1600 void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
1602 QLIST_REMOVE (e, entries);
1603 g_free (e);
1606 void vm_state_notify(int running, RunState state)
1608 VMChangeStateEntry *e, *next;
1610 trace_vm_state_notify(running, state);
1612 QLIST_FOREACH_SAFE(e, &vm_change_state_head, entries, next) {
1613 e->cb(e->opaque, running, state);
1617 /* reset/shutdown handler */
1619 typedef struct QEMUResetEntry {
1620 QTAILQ_ENTRY(QEMUResetEntry) entry;
1621 QEMUResetHandler *func;
1622 void *opaque;
1623 } QEMUResetEntry;
1625 static QTAILQ_HEAD(reset_handlers, QEMUResetEntry) reset_handlers =
1626 QTAILQ_HEAD_INITIALIZER(reset_handlers);
1627 static int reset_requested;
1628 static int shutdown_requested, shutdown_signal = -1;
1629 static pid_t shutdown_pid;
1630 static int powerdown_requested;
1631 static int debug_requested;
1632 static int suspend_requested;
1633 static WakeupReason wakeup_reason;
1634 static NotifierList powerdown_notifiers =
1635 NOTIFIER_LIST_INITIALIZER(powerdown_notifiers);
1636 static NotifierList suspend_notifiers =
1637 NOTIFIER_LIST_INITIALIZER(suspend_notifiers);
1638 static NotifierList wakeup_notifiers =
1639 NOTIFIER_LIST_INITIALIZER(wakeup_notifiers);
1640 static uint32_t wakeup_reason_mask = ~(1 << QEMU_WAKEUP_REASON_NONE);
1642 int qemu_shutdown_requested_get(void)
1644 return shutdown_requested;
1647 int qemu_reset_requested_get(void)
1649 return reset_requested;
1652 static int qemu_shutdown_requested(void)
1654 return atomic_xchg(&shutdown_requested, 0);
1657 static void qemu_kill_report(void)
1659 if (!qtest_driver() && shutdown_signal != -1) {
1660 if (shutdown_pid == 0) {
1661 /* This happens for eg ^C at the terminal, so it's worth
1662 * avoiding printing an odd message in that case.
1664 error_report("terminating on signal %d", shutdown_signal);
1665 } else {
1666 error_report("terminating on signal %d from pid " FMT_pid,
1667 shutdown_signal, shutdown_pid);
1669 shutdown_signal = -1;
1673 static int qemu_reset_requested(void)
1675 int r = reset_requested;
1676 if (r && replay_checkpoint(CHECKPOINT_RESET_REQUESTED)) {
1677 reset_requested = 0;
1678 return r;
1680 return false;
1683 static int qemu_suspend_requested(void)
1685 int r = suspend_requested;
1686 if (r && replay_checkpoint(CHECKPOINT_SUSPEND_REQUESTED)) {
1687 suspend_requested = 0;
1688 return r;
1690 return false;
1693 static WakeupReason qemu_wakeup_requested(void)
1695 return wakeup_reason;
1698 static int qemu_powerdown_requested(void)
1700 int r = powerdown_requested;
1701 powerdown_requested = 0;
1702 return r;
1705 static int qemu_debug_requested(void)
1707 int r = debug_requested;
1708 debug_requested = 0;
1709 return r;
1712 void qemu_register_reset(QEMUResetHandler *func, void *opaque)
1714 QEMUResetEntry *re = g_malloc0(sizeof(QEMUResetEntry));
1716 re->func = func;
1717 re->opaque = opaque;
1718 QTAILQ_INSERT_TAIL(&reset_handlers, re, entry);
1721 void qemu_unregister_reset(QEMUResetHandler *func, void *opaque)
1723 QEMUResetEntry *re;
1725 QTAILQ_FOREACH(re, &reset_handlers, entry) {
1726 if (re->func == func && re->opaque == opaque) {
1727 QTAILQ_REMOVE(&reset_handlers, re, entry);
1728 g_free(re);
1729 return;
1734 void qemu_devices_reset(void)
1736 QEMUResetEntry *re, *nre;
1738 /* reset all devices */
1739 QTAILQ_FOREACH_SAFE(re, &reset_handlers, entry, nre) {
1740 re->func(re->opaque);
1744 void qemu_system_reset(bool report)
1746 MachineClass *mc;
1748 mc = current_machine ? MACHINE_GET_CLASS(current_machine) : NULL;
1750 cpu_synchronize_all_states();
1752 if (mc && mc->reset) {
1753 mc->reset();
1754 } else {
1755 qemu_devices_reset();
1757 if (report) {
1758 qapi_event_send_reset(&error_abort);
1760 cpu_synchronize_all_post_reset();
1763 void qemu_system_guest_panicked(void)
1765 if (current_cpu) {
1766 current_cpu->crash_occurred = true;
1768 qapi_event_send_guest_panicked(GUEST_PANIC_ACTION_PAUSE, &error_abort);
1769 vm_stop(RUN_STATE_GUEST_PANICKED);
1772 void qemu_system_reset_request(void)
1774 if (no_reboot) {
1775 shutdown_requested = 1;
1776 } else {
1777 reset_requested = 1;
1779 cpu_stop_current();
1780 qemu_notify_event();
1783 static void qemu_system_suspend(void)
1785 pause_all_vcpus();
1786 notifier_list_notify(&suspend_notifiers, NULL);
1787 runstate_set(RUN_STATE_SUSPENDED);
1788 qapi_event_send_suspend(&error_abort);
1791 void qemu_system_suspend_request(void)
1793 if (runstate_check(RUN_STATE_SUSPENDED)) {
1794 return;
1796 suspend_requested = 1;
1797 cpu_stop_current();
1798 qemu_notify_event();
1801 void qemu_register_suspend_notifier(Notifier *notifier)
1803 notifier_list_add(&suspend_notifiers, notifier);
1806 void qemu_system_wakeup_request(WakeupReason reason)
1808 trace_system_wakeup_request(reason);
1810 if (!runstate_check(RUN_STATE_SUSPENDED)) {
1811 return;
1813 if (!(wakeup_reason_mask & (1 << reason))) {
1814 return;
1816 runstate_set(RUN_STATE_RUNNING);
1817 wakeup_reason = reason;
1818 qemu_notify_event();
1821 void qemu_system_wakeup_enable(WakeupReason reason, bool enabled)
1823 if (enabled) {
1824 wakeup_reason_mask |= (1 << reason);
1825 } else {
1826 wakeup_reason_mask &= ~(1 << reason);
1830 void qemu_register_wakeup_notifier(Notifier *notifier)
1832 notifier_list_add(&wakeup_notifiers, notifier);
1835 void qemu_system_killed(int signal, pid_t pid)
1837 shutdown_signal = signal;
1838 shutdown_pid = pid;
1839 no_shutdown = 0;
1841 /* Cannot call qemu_system_shutdown_request directly because
1842 * we are in a signal handler.
1844 shutdown_requested = 1;
1845 qemu_notify_event();
1848 void qemu_system_shutdown_request(void)
1850 trace_qemu_system_shutdown_request();
1851 replay_shutdown_request();
1852 shutdown_requested = 1;
1853 qemu_notify_event();
1856 static void qemu_system_powerdown(void)
1858 qapi_event_send_powerdown(&error_abort);
1859 notifier_list_notify(&powerdown_notifiers, NULL);
1862 void qemu_system_powerdown_request(void)
1864 trace_qemu_system_powerdown_request();
1865 powerdown_requested = 1;
1866 qemu_notify_event();
1869 void qemu_register_powerdown_notifier(Notifier *notifier)
1871 notifier_list_add(&powerdown_notifiers, notifier);
1874 void qemu_system_debug_request(void)
1876 debug_requested = 1;
1877 qemu_notify_event();
1880 static bool main_loop_should_exit(void)
1882 RunState r;
1883 if (qemu_debug_requested()) {
1884 vm_stop(RUN_STATE_DEBUG);
1886 if (qemu_suspend_requested()) {
1887 qemu_system_suspend();
1889 if (qemu_shutdown_requested()) {
1890 qemu_kill_report();
1891 qapi_event_send_shutdown(&error_abort);
1892 if (no_shutdown) {
1893 vm_stop(RUN_STATE_SHUTDOWN);
1894 } else {
1895 return true;
1898 if (qemu_reset_requested()) {
1899 pause_all_vcpus();
1900 qemu_system_reset(VMRESET_REPORT);
1901 resume_all_vcpus();
1902 if (!runstate_check(RUN_STATE_RUNNING) &&
1903 !runstate_check(RUN_STATE_INMIGRATE)) {
1904 runstate_set(RUN_STATE_PRELAUNCH);
1907 if (qemu_wakeup_requested()) {
1908 pause_all_vcpus();
1909 qemu_system_reset(VMRESET_SILENT);
1910 notifier_list_notify(&wakeup_notifiers, &wakeup_reason);
1911 wakeup_reason = QEMU_WAKEUP_REASON_NONE;
1912 resume_all_vcpus();
1913 qapi_event_send_wakeup(&error_abort);
1915 if (qemu_powerdown_requested()) {
1916 qemu_system_powerdown();
1918 if (qemu_vmstop_requested(&r)) {
1919 vm_stop(r);
1921 return false;
1924 static void main_loop(void)
1926 bool nonblocking;
1927 int last_io = 0;
1928 #ifdef CONFIG_PROFILER
1929 int64_t ti;
1930 #endif
1931 do {
1932 nonblocking = !kvm_enabled() && !xen_enabled() && last_io > 0;
1933 #ifdef CONFIG_PROFILER
1934 ti = profile_getclock();
1935 #endif
1936 last_io = main_loop_wait(nonblocking);
1937 #ifdef CONFIG_PROFILER
1938 dev_time += profile_getclock() - ti;
1939 #endif
1940 } while (!main_loop_should_exit());
1943 static void version(void)
1945 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n");
1948 static void help(int exitcode)
1950 version();
1951 printf("usage: %s [options] [disk_image]\n\n"
1952 "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
1953 error_get_progname());
1955 #define QEMU_OPTIONS_GENERATE_HELP
1956 #include "qemu-options-wrapper.h"
1958 printf("\nDuring emulation, the following keys are useful:\n"
1959 "ctrl-alt-f toggle full screen\n"
1960 "ctrl-alt-n switch to virtual console 'n'\n"
1961 "ctrl-alt toggle mouse and keyboard grab\n"
1962 "\n"
1963 "When using -nographic, press 'ctrl-a h' to get some help.\n");
1965 exit(exitcode);
1968 #define HAS_ARG 0x0001
1970 typedef struct QEMUOption {
1971 const char *name;
1972 int flags;
1973 int index;
1974 uint32_t arch_mask;
1975 } QEMUOption;
1977 static const QEMUOption qemu_options[] = {
1978 { "h", 0, QEMU_OPTION_h, QEMU_ARCH_ALL },
1979 #define QEMU_OPTIONS_GENERATE_OPTIONS
1980 #include "qemu-options-wrapper.h"
1981 { NULL },
1984 static bool vga_available(void)
1986 return object_class_by_name("VGA") || object_class_by_name("isa-vga");
1989 static bool cirrus_vga_available(void)
1991 return object_class_by_name("cirrus-vga")
1992 || object_class_by_name("isa-cirrus-vga");
1995 static bool vmware_vga_available(void)
1997 return object_class_by_name("vmware-svga");
2000 static bool qxl_vga_available(void)
2002 return object_class_by_name("qxl-vga");
2005 static bool tcx_vga_available(void)
2007 return object_class_by_name("SUNW,tcx");
2010 static bool cg3_vga_available(void)
2012 return object_class_by_name("cgthree");
2015 static bool virtio_vga_available(void)
2017 return object_class_by_name("virtio-vga");
2020 static void select_vgahw (const char *p)
2022 const char *opts;
2024 assert(vga_interface_type == VGA_NONE);
2025 if (strstart(p, "std", &opts)) {
2026 if (vga_available()) {
2027 vga_interface_type = VGA_STD;
2028 } else {
2029 error_report("standard VGA not available");
2030 exit(0);
2032 } else if (strstart(p, "cirrus", &opts)) {
2033 if (cirrus_vga_available()) {
2034 vga_interface_type = VGA_CIRRUS;
2035 } else {
2036 error_report("Cirrus VGA not available");
2037 exit(0);
2039 } else if (strstart(p, "vmware", &opts)) {
2040 if (vmware_vga_available()) {
2041 vga_interface_type = VGA_VMWARE;
2042 } else {
2043 error_report("VMWare SVGA not available");
2044 exit(0);
2046 } else if (strstart(p, "virtio", &opts)) {
2047 if (virtio_vga_available()) {
2048 vga_interface_type = VGA_VIRTIO;
2049 } else {
2050 error_report("Virtio VGA not available");
2051 exit(0);
2053 } else if (strstart(p, "xenfb", &opts)) {
2054 vga_interface_type = VGA_XENFB;
2055 } else if (strstart(p, "qxl", &opts)) {
2056 if (qxl_vga_available()) {
2057 vga_interface_type = VGA_QXL;
2058 } else {
2059 error_report("QXL VGA not available");
2060 exit(0);
2062 } else if (strstart(p, "tcx", &opts)) {
2063 if (tcx_vga_available()) {
2064 vga_interface_type = VGA_TCX;
2065 } else {
2066 error_report("TCX framebuffer not available");
2067 exit(0);
2069 } else if (strstart(p, "cg3", &opts)) {
2070 if (cg3_vga_available()) {
2071 vga_interface_type = VGA_CG3;
2072 } else {
2073 error_report("CG3 framebuffer not available");
2074 exit(0);
2076 } else if (!strstart(p, "none", &opts)) {
2077 invalid_vga:
2078 error_report("unknown vga type: %s", p);
2079 exit(1);
2081 while (*opts) {
2082 const char *nextopt;
2084 if (strstart(opts, ",retrace=", &nextopt)) {
2085 opts = nextopt;
2086 if (strstart(opts, "dumb", &nextopt))
2087 vga_retrace_method = VGA_RETRACE_DUMB;
2088 else if (strstart(opts, "precise", &nextopt))
2089 vga_retrace_method = VGA_RETRACE_PRECISE;
2090 else goto invalid_vga;
2091 } else goto invalid_vga;
2092 opts = nextopt;
2096 static DisplayType select_display(const char *p)
2098 const char *opts;
2099 DisplayType display = DT_DEFAULT;
2101 if (strstart(p, "sdl", &opts)) {
2102 #ifdef CONFIG_SDL
2103 display = DT_SDL;
2104 while (*opts) {
2105 const char *nextopt;
2107 if (strstart(opts, ",frame=", &nextopt)) {
2108 opts = nextopt;
2109 if (strstart(opts, "on", &nextopt)) {
2110 no_frame = 0;
2111 } else if (strstart(opts, "off", &nextopt)) {
2112 no_frame = 1;
2113 } else {
2114 goto invalid_sdl_args;
2116 } else if (strstart(opts, ",alt_grab=", &nextopt)) {
2117 opts = nextopt;
2118 if (strstart(opts, "on", &nextopt)) {
2119 alt_grab = 1;
2120 } else if (strstart(opts, "off", &nextopt)) {
2121 alt_grab = 0;
2122 } else {
2123 goto invalid_sdl_args;
2125 } else if (strstart(opts, ",ctrl_grab=", &nextopt)) {
2126 opts = nextopt;
2127 if (strstart(opts, "on", &nextopt)) {
2128 ctrl_grab = 1;
2129 } else if (strstart(opts, "off", &nextopt)) {
2130 ctrl_grab = 0;
2131 } else {
2132 goto invalid_sdl_args;
2134 } else if (strstart(opts, ",window_close=", &nextopt)) {
2135 opts = nextopt;
2136 if (strstart(opts, "on", &nextopt)) {
2137 no_quit = 0;
2138 } else if (strstart(opts, "off", &nextopt)) {
2139 no_quit = 1;
2140 } else {
2141 goto invalid_sdl_args;
2143 } else if (strstart(opts, ",gl=", &nextopt)) {
2144 opts = nextopt;
2145 if (strstart(opts, "on", &nextopt)) {
2146 request_opengl = 1;
2147 } else if (strstart(opts, "off", &nextopt)) {
2148 request_opengl = 0;
2149 } else {
2150 goto invalid_sdl_args;
2152 } else {
2153 invalid_sdl_args:
2154 error_report("invalid SDL option string");
2155 exit(1);
2157 opts = nextopt;
2159 #else
2160 error_report("SDL support is disabled");
2161 exit(1);
2162 #endif
2163 } else if (strstart(p, "vnc", &opts)) {
2164 #ifdef CONFIG_VNC
2165 if (*opts == '=') {
2166 Error *err = NULL;
2167 if (vnc_parse(opts + 1, &err) == NULL) {
2168 error_report_err(err);
2169 exit(1);
2171 } else {
2172 error_report("VNC requires a display argument vnc=<display>");
2173 exit(1);
2175 #else
2176 error_report("VNC support is disabled");
2177 exit(1);
2178 #endif
2179 } else if (strstart(p, "curses", &opts)) {
2180 #ifdef CONFIG_CURSES
2181 display = DT_CURSES;
2182 #else
2183 error_report("curses support is disabled");
2184 exit(1);
2185 #endif
2186 } else if (strstart(p, "gtk", &opts)) {
2187 #ifdef CONFIG_GTK
2188 display = DT_GTK;
2189 while (*opts) {
2190 const char *nextopt;
2192 if (strstart(opts, ",grab_on_hover=", &nextopt)) {
2193 opts = nextopt;
2194 if (strstart(opts, "on", &nextopt)) {
2195 grab_on_hover = true;
2196 } else if (strstart(opts, "off", &nextopt)) {
2197 grab_on_hover = false;
2198 } else {
2199 goto invalid_gtk_args;
2201 } else if (strstart(opts, ",gl=", &nextopt)) {
2202 opts = nextopt;
2203 if (strstart(opts, "on", &nextopt)) {
2204 request_opengl = 1;
2205 } else if (strstart(opts, "off", &nextopt)) {
2206 request_opengl = 0;
2207 } else {
2208 goto invalid_gtk_args;
2210 } else {
2211 invalid_gtk_args:
2212 error_report("invalid GTK option string");
2213 exit(1);
2215 opts = nextopt;
2217 #else
2218 error_report("GTK support is disabled");
2219 exit(1);
2220 #endif
2221 } else if (strstart(p, "none", &opts)) {
2222 display = DT_NONE;
2223 } else {
2224 error_report("unknown display type");
2225 exit(1);
2228 return display;
2231 static int balloon_parse(const char *arg)
2233 QemuOpts *opts;
2235 if (strcmp(arg, "none") == 0) {
2236 return 0;
2239 if (!strncmp(arg, "virtio", 6)) {
2240 if (arg[6] == ',') {
2241 /* have params -> parse them */
2242 opts = qemu_opts_parse_noisily(qemu_find_opts("device"), arg + 7,
2243 false);
2244 if (!opts)
2245 return -1;
2246 } else {
2247 /* create empty opts */
2248 opts = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
2249 &error_abort);
2251 qemu_opt_set(opts, "driver", "virtio-balloon", &error_abort);
2252 return 0;
2255 return -1;
2258 char *qemu_find_file(int type, const char *name)
2260 int i;
2261 const char *subdir;
2262 char *buf;
2264 /* Try the name as a straight path first */
2265 if (access(name, R_OK) == 0) {
2266 trace_load_file(name, name);
2267 return g_strdup(name);
2270 switch (type) {
2271 case QEMU_FILE_TYPE_BIOS:
2272 subdir = "";
2273 break;
2274 case QEMU_FILE_TYPE_KEYMAP:
2275 subdir = "keymaps/";
2276 break;
2277 default:
2278 abort();
2281 for (i = 0; i < data_dir_idx; i++) {
2282 buf = g_strdup_printf("%s/%s%s", data_dir[i], subdir, name);
2283 if (access(buf, R_OK) == 0) {
2284 trace_load_file(name, buf);
2285 return buf;
2287 g_free(buf);
2289 return NULL;
2292 static inline bool nonempty_str(const char *str)
2294 return str && *str;
2297 static int parse_fw_cfg(void *opaque, QemuOpts *opts, Error **errp)
2299 gchar *buf;
2300 size_t size;
2301 const char *name, *file, *str;
2302 FWCfgState *fw_cfg = (FWCfgState *) opaque;
2304 if (fw_cfg == NULL) {
2305 error_report("fw_cfg device not available");
2306 return -1;
2308 name = qemu_opt_get(opts, "name");
2309 file = qemu_opt_get(opts, "file");
2310 str = qemu_opt_get(opts, "string");
2312 /* we need name and either a file or the content string */
2313 if (!(nonempty_str(name) && (nonempty_str(file) || nonempty_str(str)))) {
2314 error_report("invalid argument(s)");
2315 return -1;
2317 if (nonempty_str(file) && nonempty_str(str)) {
2318 error_report("file and string are mutually exclusive");
2319 return -1;
2321 if (strlen(name) > FW_CFG_MAX_FILE_PATH - 1) {
2322 error_report("name too long (max. %d char)", FW_CFG_MAX_FILE_PATH - 1);
2323 return -1;
2325 if (strncmp(name, "opt/", 4) != 0) {
2326 error_report("warning: externally provided fw_cfg item names "
2327 "should be prefixed with \"opt/\"");
2329 if (nonempty_str(str)) {
2330 size = strlen(str); /* NUL terminator NOT included in fw_cfg blob */
2331 buf = g_memdup(str, size);
2332 } else {
2333 if (!g_file_get_contents(file, &buf, &size, NULL)) {
2334 error_report("can't load %s", file);
2335 return -1;
2338 /* For legacy, keep user files in a specific global order. */
2339 fw_cfg_set_order_override(fw_cfg, FW_CFG_ORDER_OVERRIDE_USER);
2340 fw_cfg_add_file(fw_cfg, name, buf, size);
2341 fw_cfg_reset_order_override(fw_cfg);
2342 return 0;
2345 static int device_help_func(void *opaque, QemuOpts *opts, Error **errp)
2347 return qdev_device_help(opts);
2350 static int device_init_func(void *opaque, QemuOpts *opts, Error **errp)
2352 Error *err = NULL;
2353 DeviceState *dev;
2355 dev = qdev_device_add(opts, &err);
2356 if (!dev) {
2357 error_report_err(err);
2358 return -1;
2360 object_unref(OBJECT(dev));
2361 return 0;
2364 static int chardev_init_func(void *opaque, QemuOpts *opts, Error **errp)
2366 Error *local_err = NULL;
2368 qemu_chr_new_from_opts(opts, NULL, &local_err);
2369 if (local_err) {
2370 error_report_err(local_err);
2371 return -1;
2373 return 0;
2376 #ifdef CONFIG_VIRTFS
2377 static int fsdev_init_func(void *opaque, QemuOpts *opts, Error **errp)
2379 int ret;
2380 ret = qemu_fsdev_add(opts);
2382 return ret;
2384 #endif
2386 static int mon_init_func(void *opaque, QemuOpts *opts, Error **errp)
2388 CharDriverState *chr;
2389 const char *chardev;
2390 const char *mode;
2391 int flags;
2393 mode = qemu_opt_get(opts, "mode");
2394 if (mode == NULL) {
2395 mode = "readline";
2397 if (strcmp(mode, "readline") == 0) {
2398 flags = MONITOR_USE_READLINE;
2399 } else if (strcmp(mode, "control") == 0) {
2400 flags = MONITOR_USE_CONTROL;
2401 } else {
2402 error_report("unknown monitor mode \"%s\"", mode);
2403 exit(1);
2406 if (qemu_opt_get_bool(opts, "pretty", 0))
2407 flags |= MONITOR_USE_PRETTY;
2409 if (qemu_opt_get_bool(opts, "default", 0))
2410 flags |= MONITOR_IS_DEFAULT;
2412 chardev = qemu_opt_get(opts, "chardev");
2413 chr = qemu_chr_find(chardev);
2414 if (chr == NULL) {
2415 error_report("chardev \"%s\" not found", chardev);
2416 exit(1);
2419 qemu_chr_fe_claim_no_fail(chr);
2420 monitor_init(chr, flags);
2421 return 0;
2424 static void monitor_parse(const char *optarg, const char *mode, bool pretty)
2426 static int monitor_device_index = 0;
2427 Error *local_err = NULL;
2428 QemuOpts *opts;
2429 const char *p;
2430 char label[32];
2431 int def = 0;
2433 if (strstart(optarg, "chardev:", &p)) {
2434 snprintf(label, sizeof(label), "%s", p);
2435 } else {
2436 snprintf(label, sizeof(label), "compat_monitor%d",
2437 monitor_device_index);
2438 if (monitor_device_index == 0) {
2439 def = 1;
2441 opts = qemu_chr_parse_compat(label, optarg);
2442 if (!opts) {
2443 error_report("parse error: %s", optarg);
2444 exit(1);
2448 opts = qemu_opts_create(qemu_find_opts("mon"), label, 1, &local_err);
2449 if (!opts) {
2450 error_report_err(local_err);
2451 exit(1);
2453 qemu_opt_set(opts, "mode", mode, &error_abort);
2454 qemu_opt_set(opts, "chardev", label, &error_abort);
2455 qemu_opt_set_bool(opts, "pretty", pretty, &error_abort);
2456 if (def)
2457 qemu_opt_set(opts, "default", "on", &error_abort);
2458 monitor_device_index++;
2461 struct device_config {
2462 enum {
2463 DEV_USB, /* -usbdevice */
2464 DEV_BT, /* -bt */
2465 DEV_SERIAL, /* -serial */
2466 DEV_PARALLEL, /* -parallel */
2467 DEV_VIRTCON, /* -virtioconsole */
2468 DEV_DEBUGCON, /* -debugcon */
2469 DEV_GDB, /* -gdb, -s */
2470 DEV_SCLP, /* s390 sclp */
2471 } type;
2472 const char *cmdline;
2473 Location loc;
2474 QTAILQ_ENTRY(device_config) next;
2477 static QTAILQ_HEAD(, device_config) device_configs =
2478 QTAILQ_HEAD_INITIALIZER(device_configs);
2480 static void add_device_config(int type, const char *cmdline)
2482 struct device_config *conf;
2484 conf = g_malloc0(sizeof(*conf));
2485 conf->type = type;
2486 conf->cmdline = cmdline;
2487 loc_save(&conf->loc);
2488 QTAILQ_INSERT_TAIL(&device_configs, conf, next);
2491 static int foreach_device_config(int type, int (*func)(const char *cmdline))
2493 struct device_config *conf;
2494 int rc;
2496 QTAILQ_FOREACH(conf, &device_configs, next) {
2497 if (conf->type != type)
2498 continue;
2499 loc_push_restore(&conf->loc);
2500 rc = func(conf->cmdline);
2501 loc_pop(&conf->loc);
2502 if (rc) {
2503 return rc;
2506 return 0;
2509 static int serial_parse(const char *devname)
2511 static int index = 0;
2512 char label[32];
2514 if (strcmp(devname, "none") == 0)
2515 return 0;
2516 if (index == MAX_SERIAL_PORTS) {
2517 error_report("too many serial ports");
2518 exit(1);
2520 snprintf(label, sizeof(label), "serial%d", index);
2521 serial_hds[index] = qemu_chr_new(label, devname, NULL);
2522 if (!serial_hds[index]) {
2523 error_report("could not connect serial device"
2524 " to character backend '%s'", devname);
2525 return -1;
2527 index++;
2528 return 0;
2531 static int parallel_parse(const char *devname)
2533 static int index = 0;
2534 char label[32];
2536 if (strcmp(devname, "none") == 0)
2537 return 0;
2538 if (index == MAX_PARALLEL_PORTS) {
2539 error_report("too many parallel ports");
2540 exit(1);
2542 snprintf(label, sizeof(label), "parallel%d", index);
2543 parallel_hds[index] = qemu_chr_new(label, devname, NULL);
2544 if (!parallel_hds[index]) {
2545 error_report("could not connect parallel device"
2546 " to character backend '%s'", devname);
2547 return -1;
2549 index++;
2550 return 0;
2553 static int virtcon_parse(const char *devname)
2555 QemuOptsList *device = qemu_find_opts("device");
2556 static int index = 0;
2557 char label[32];
2558 QemuOpts *bus_opts, *dev_opts;
2560 if (strcmp(devname, "none") == 0)
2561 return 0;
2562 if (index == MAX_VIRTIO_CONSOLES) {
2563 error_report("too many virtio consoles");
2564 exit(1);
2567 bus_opts = qemu_opts_create(device, NULL, 0, &error_abort);
2568 qemu_opt_set(bus_opts, "driver", "virtio-serial", &error_abort);
2570 dev_opts = qemu_opts_create(device, NULL, 0, &error_abort);
2571 qemu_opt_set(dev_opts, "driver", "virtconsole", &error_abort);
2573 snprintf(label, sizeof(label), "virtcon%d", index);
2574 virtcon_hds[index] = qemu_chr_new(label, devname, NULL);
2575 if (!virtcon_hds[index]) {
2576 error_report("could not connect virtio console"
2577 " to character backend '%s'", devname);
2578 return -1;
2580 qemu_opt_set(dev_opts, "chardev", label, &error_abort);
2582 index++;
2583 return 0;
2586 static int sclp_parse(const char *devname)
2588 QemuOptsList *device = qemu_find_opts("device");
2589 static int index = 0;
2590 char label[32];
2591 QemuOpts *dev_opts;
2593 if (strcmp(devname, "none") == 0) {
2594 return 0;
2596 if (index == MAX_SCLP_CONSOLES) {
2597 error_report("too many sclp consoles");
2598 exit(1);
2601 assert(arch_type == QEMU_ARCH_S390X);
2603 dev_opts = qemu_opts_create(device, NULL, 0, NULL);
2604 qemu_opt_set(dev_opts, "driver", "sclpconsole", &error_abort);
2606 snprintf(label, sizeof(label), "sclpcon%d", index);
2607 sclp_hds[index] = qemu_chr_new(label, devname, NULL);
2608 if (!sclp_hds[index]) {
2609 error_report("could not connect sclp console"
2610 " to character backend '%s'", devname);
2611 return -1;
2613 qemu_opt_set(dev_opts, "chardev", label, &error_abort);
2615 index++;
2616 return 0;
2619 static int debugcon_parse(const char *devname)
2621 QemuOpts *opts;
2623 if (!qemu_chr_new("debugcon", devname, NULL)) {
2624 exit(1);
2626 opts = qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL);
2627 if (!opts) {
2628 error_report("already have a debugcon device");
2629 exit(1);
2631 qemu_opt_set(opts, "driver", "isa-debugcon", &error_abort);
2632 qemu_opt_set(opts, "chardev", "debugcon", &error_abort);
2633 return 0;
2636 static gint machine_class_cmp(gconstpointer a, gconstpointer b)
2638 const MachineClass *mc1 = a, *mc2 = b;
2639 int res;
2641 if (mc1->family == NULL) {
2642 if (mc2->family == NULL) {
2643 /* Compare standalone machine types against each other; they sort
2644 * in increasing order.
2646 return strcmp(object_class_get_name(OBJECT_CLASS(mc1)),
2647 object_class_get_name(OBJECT_CLASS(mc2)));
2650 /* Standalone machine types sort after families. */
2651 return 1;
2654 if (mc2->family == NULL) {
2655 /* Families sort before standalone machine types. */
2656 return -1;
2659 /* Families sort between each other alphabetically increasingly. */
2660 res = strcmp(mc1->family, mc2->family);
2661 if (res != 0) {
2662 return res;
2665 /* Within the same family, machine types sort in decreasing order. */
2666 return strcmp(object_class_get_name(OBJECT_CLASS(mc2)),
2667 object_class_get_name(OBJECT_CLASS(mc1)));
2670 static MachineClass *machine_parse(const char *name)
2672 MachineClass *mc = NULL;
2673 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
2675 if (name) {
2676 mc = find_machine(name);
2678 if (mc) {
2679 g_slist_free(machines);
2680 return mc;
2682 if (name && !is_help_option(name)) {
2683 error_report("unsupported machine type");
2684 error_printf("Use -machine help to list supported machines\n");
2685 } else {
2686 printf("Supported machines are:\n");
2687 machines = g_slist_sort(machines, machine_class_cmp);
2688 for (el = machines; el; el = el->next) {
2689 MachineClass *mc = el->data;
2690 if (mc->alias) {
2691 printf("%-20s %s (alias of %s)\n", mc->alias, mc->desc, mc->name);
2693 printf("%-20s %s%s\n", mc->name, mc->desc,
2694 mc->is_default ? " (default)" : "");
2698 g_slist_free(machines);
2699 exit(!name || !is_help_option(name));
2702 void qemu_add_exit_notifier(Notifier *notify)
2704 notifier_list_add(&exit_notifiers, notify);
2707 void qemu_remove_exit_notifier(Notifier *notify)
2709 notifier_remove(notify);
2712 static void qemu_run_exit_notifiers(void)
2714 notifier_list_notify(&exit_notifiers, NULL);
2717 static bool machine_init_done;
2719 void qemu_add_machine_init_done_notifier(Notifier *notify)
2721 notifier_list_add(&machine_init_done_notifiers, notify);
2722 if (machine_init_done) {
2723 notify->notify(notify, NULL);
2727 static void qemu_run_machine_init_done_notifiers(void)
2729 notifier_list_notify(&machine_init_done_notifiers, NULL);
2730 machine_init_done = true;
2733 static const QEMUOption *lookup_opt(int argc, char **argv,
2734 const char **poptarg, int *poptind)
2736 const QEMUOption *popt;
2737 int optind = *poptind;
2738 char *r = argv[optind];
2739 const char *optarg;
2741 loc_set_cmdline(argv, optind, 1);
2742 optind++;
2743 /* Treat --foo the same as -foo. */
2744 if (r[1] == '-')
2745 r++;
2746 popt = qemu_options;
2747 for(;;) {
2748 if (!popt->name) {
2749 error_report("invalid option");
2750 exit(1);
2752 if (!strcmp(popt->name, r + 1))
2753 break;
2754 popt++;
2756 if (popt->flags & HAS_ARG) {
2757 if (optind >= argc) {
2758 error_report("requires an argument");
2759 exit(1);
2761 optarg = argv[optind++];
2762 loc_set_cmdline(argv, optind - 2, 2);
2763 } else {
2764 optarg = NULL;
2767 *poptarg = optarg;
2768 *poptind = optind;
2770 return popt;
2773 static MachineClass *select_machine(void)
2775 MachineClass *machine_class = find_default_machine();
2776 const char *optarg;
2777 QemuOpts *opts;
2778 Location loc;
2780 loc_push_none(&loc);
2782 opts = qemu_get_machine_opts();
2783 qemu_opts_loc_restore(opts);
2785 optarg = qemu_opt_get(opts, "type");
2786 if (optarg) {
2787 machine_class = machine_parse(optarg);
2790 if (!machine_class) {
2791 error_report("No machine specified, and there is no default");
2792 error_printf("Use -machine help to list supported machines\n");
2793 exit(1);
2796 loc_pop(&loc);
2797 return machine_class;
2800 static int machine_set_property(void *opaque,
2801 const char *name, const char *value,
2802 Error **errp)
2804 Object *obj = OBJECT(opaque);
2805 Error *local_err = NULL;
2806 char *c, *qom_name;
2808 if (strcmp(name, "type") == 0) {
2809 return 0;
2812 qom_name = g_strdup(name);
2813 c = qom_name;
2814 while (*c++) {
2815 if (*c == '_') {
2816 *c = '-';
2820 object_property_parse(obj, value, qom_name, &local_err);
2821 g_free(qom_name);
2823 if (local_err) {
2824 error_report_err(local_err);
2825 return -1;
2828 return 0;
2833 * Initial object creation happens before all other
2834 * QEMU data types are created. The majority of objects
2835 * can be created at this point. The rng-egd object
2836 * cannot be created here, as it depends on the chardev
2837 * already existing.
2839 static bool object_create_initial(const char *type)
2841 if (g_str_equal(type, "rng-egd")) {
2842 return false;
2846 * return false for concrete netfilters since
2847 * they depend on netdevs already existing
2849 if (g_str_equal(type, "filter-buffer") ||
2850 g_str_equal(type, "filter-dump") ||
2851 g_str_equal(type, "filter-mirror") ||
2852 g_str_equal(type, "filter-redirector")) {
2853 return false;
2856 return true;
2861 * The remainder of object creation happens after the
2862 * creation of chardev, fsdev, net clients and device data types.
2864 static bool object_create_delayed(const char *type)
2866 return !object_create_initial(type);
2870 static void set_memory_options(uint64_t *ram_slots, ram_addr_t *maxram_size,
2871 MachineClass *mc)
2873 uint64_t sz;
2874 const char *mem_str;
2875 const char *maxmem_str, *slots_str;
2876 const ram_addr_t default_ram_size = mc->default_ram_size;
2877 QemuOpts *opts = qemu_find_opts_singleton("memory");
2878 Location loc;
2880 loc_push_none(&loc);
2881 qemu_opts_loc_restore(opts);
2883 sz = 0;
2884 mem_str = qemu_opt_get(opts, "size");
2885 if (mem_str) {
2886 if (!*mem_str) {
2887 error_report("missing 'size' option value");
2888 exit(EXIT_FAILURE);
2891 sz = qemu_opt_get_size(opts, "size", ram_size);
2893 /* Fix up legacy suffix-less format */
2894 if (g_ascii_isdigit(mem_str[strlen(mem_str) - 1])) {
2895 uint64_t overflow_check = sz;
2897 sz <<= 20;
2898 if ((sz >> 20) != overflow_check) {
2899 error_report("too large 'size' option value");
2900 exit(EXIT_FAILURE);
2905 /* backward compatibility behaviour for case "-m 0" */
2906 if (sz == 0) {
2907 sz = default_ram_size;
2910 sz = QEMU_ALIGN_UP(sz, 8192);
2911 ram_size = sz;
2912 if (ram_size != sz) {
2913 error_report("ram size too large");
2914 exit(EXIT_FAILURE);
2917 /* store value for the future use */
2918 qemu_opt_set_number(opts, "size", ram_size, &error_abort);
2919 *maxram_size = ram_size;
2921 maxmem_str = qemu_opt_get(opts, "maxmem");
2922 slots_str = qemu_opt_get(opts, "slots");
2923 if (maxmem_str && slots_str) {
2924 uint64_t slots;
2926 sz = qemu_opt_get_size(opts, "maxmem", 0);
2927 slots = qemu_opt_get_number(opts, "slots", 0);
2928 if (sz < ram_size) {
2929 error_report("invalid value of -m option maxmem: "
2930 "maximum memory size (0x%" PRIx64 ") must be at least "
2931 "the initial memory size (0x" RAM_ADDR_FMT ")",
2932 sz, ram_size);
2933 exit(EXIT_FAILURE);
2934 } else if (sz > ram_size) {
2935 if (!slots) {
2936 error_report("invalid value of -m option: maxmem was "
2937 "specified, but no hotplug slots were specified");
2938 exit(EXIT_FAILURE);
2940 } else if (slots) {
2941 error_report("invalid value of -m option maxmem: "
2942 "memory slots were specified but maximum memory size "
2943 "(0x%" PRIx64 ") is equal to the initial memory size "
2944 "(0x" RAM_ADDR_FMT ")", sz, ram_size);
2945 exit(EXIT_FAILURE);
2948 *maxram_size = sz;
2949 *ram_slots = slots;
2950 } else if ((!maxmem_str && slots_str) ||
2951 (maxmem_str && !slots_str)) {
2952 error_report("invalid -m option value: missing "
2953 "'%s' option", slots_str ? "maxmem" : "slots");
2954 exit(EXIT_FAILURE);
2957 loc_pop(&loc);
2960 int main(int argc, char **argv, char **envp)
2962 int i;
2963 int snapshot, linux_boot;
2964 const char *initrd_filename;
2965 const char *kernel_filename, *kernel_cmdline;
2966 const char *boot_order = NULL;
2967 const char *boot_once = NULL;
2968 DisplayState *ds;
2969 int cyls, heads, secs, translation;
2970 QemuOpts *hda_opts = NULL, *opts, *machine_opts, *icount_opts = NULL;
2971 QemuOptsList *olist;
2972 int optind;
2973 const char *optarg;
2974 const char *loadvm = NULL;
2975 MachineClass *machine_class;
2976 const char *cpu_model;
2977 const char *vga_model = NULL;
2978 const char *qtest_chrdev = NULL;
2979 const char *qtest_log = NULL;
2980 const char *pid_file = NULL;
2981 const char *incoming = NULL;
2982 #ifdef CONFIG_VNC
2983 int show_vnc_port = 0;
2984 #endif
2985 bool defconfig = true;
2986 bool userconfig = true;
2987 const char *log_mask = NULL;
2988 const char *log_file = NULL;
2989 char *trace_file = NULL;
2990 ram_addr_t maxram_size;
2991 uint64_t ram_slots = 0;
2992 FILE *vmstate_dump_file = NULL;
2993 Error *main_loop_err = NULL;
2994 Error *err = NULL;
2996 qemu_init_cpu_loop();
2997 qemu_mutex_lock_iothread();
2999 atexit(qemu_run_exit_notifiers);
3000 error_set_progname(argv[0]);
3001 qemu_init_exec_dir(argv[0]);
3003 module_call_init(MODULE_INIT_QOM);
3005 qemu_add_opts(&qemu_drive_opts);
3006 qemu_add_drive_opts(&qemu_legacy_drive_opts);
3007 qemu_add_drive_opts(&qemu_common_drive_opts);
3008 qemu_add_drive_opts(&qemu_drive_opts);
3009 qemu_add_opts(&qemu_chardev_opts);
3010 qemu_add_opts(&qemu_device_opts);
3011 qemu_add_opts(&qemu_netdev_opts);
3012 qemu_add_opts(&qemu_net_opts);
3013 qemu_add_opts(&qemu_rtc_opts);
3014 qemu_add_opts(&qemu_global_opts);
3015 qemu_add_opts(&qemu_mon_opts);
3016 qemu_add_opts(&qemu_trace_opts);
3017 qemu_add_opts(&qemu_option_rom_opts);
3018 qemu_add_opts(&qemu_machine_opts);
3019 qemu_add_opts(&qemu_mem_opts);
3020 qemu_add_opts(&qemu_smp_opts);
3021 qemu_add_opts(&qemu_boot_opts);
3022 qemu_add_opts(&qemu_sandbox_opts);
3023 qemu_add_opts(&qemu_add_fd_opts);
3024 qemu_add_opts(&qemu_object_opts);
3025 qemu_add_opts(&qemu_tpmdev_opts);
3026 qemu_add_opts(&qemu_realtime_opts);
3027 qemu_add_opts(&qemu_msg_opts);
3028 qemu_add_opts(&qemu_name_opts);
3029 qemu_add_opts(&qemu_numa_opts);
3030 qemu_add_opts(&qemu_icount_opts);
3031 qemu_add_opts(&qemu_semihosting_config_opts);
3032 qemu_add_opts(&qemu_fw_cfg_opts);
3033 module_call_init(MODULE_INIT_OPTS);
3035 runstate_init();
3037 if (qcrypto_init(&err) < 0) {
3038 error_reportf_err(err, "cannot initialize crypto: ");
3039 exit(1);
3041 rtc_clock = QEMU_CLOCK_HOST;
3043 QLIST_INIT (&vm_change_state_head);
3044 os_setup_early_signal_handling();
3046 cpu_model = NULL;
3047 snapshot = 0;
3048 cyls = heads = secs = 0;
3049 translation = BIOS_ATA_TRANSLATION_AUTO;
3051 nb_nics = 0;
3053 bdrv_init_with_whitelist();
3055 autostart = 1;
3057 /* first pass of option parsing */
3058 optind = 1;
3059 while (optind < argc) {
3060 if (argv[optind][0] != '-') {
3061 /* disk image */
3062 optind++;
3063 } else {
3064 const QEMUOption *popt;
3066 popt = lookup_opt(argc, argv, &optarg, &optind);
3067 switch (popt->index) {
3068 case QEMU_OPTION_nodefconfig:
3069 defconfig = false;
3070 break;
3071 case QEMU_OPTION_nouserconfig:
3072 userconfig = false;
3073 break;
3078 if (defconfig) {
3079 int ret;
3080 ret = qemu_read_default_config_files(userconfig);
3081 if (ret < 0) {
3082 exit(1);
3086 /* second pass of option parsing */
3087 optind = 1;
3088 for(;;) {
3089 if (optind >= argc)
3090 break;
3091 if (argv[optind][0] != '-') {
3092 hda_opts = drive_add(IF_DEFAULT, 0, argv[optind++], HD_OPTS);
3093 } else {
3094 const QEMUOption *popt;
3096 popt = lookup_opt(argc, argv, &optarg, &optind);
3097 if (!(popt->arch_mask & arch_type)) {
3098 printf("Option %s not supported for this target\n", popt->name);
3099 exit(1);
3101 switch(popt->index) {
3102 case QEMU_OPTION_no_kvm_irqchip: {
3103 olist = qemu_find_opts("machine");
3104 qemu_opts_parse_noisily(olist, "kernel_irqchip=off", false);
3105 break;
3107 case QEMU_OPTION_cpu:
3108 /* hw initialization will check this */
3109 cpu_model = optarg;
3110 break;
3111 case QEMU_OPTION_hda:
3113 char buf[256];
3114 if (cyls == 0)
3115 snprintf(buf, sizeof(buf), "%s", HD_OPTS);
3116 else
3117 snprintf(buf, sizeof(buf),
3118 "%s,cyls=%d,heads=%d,secs=%d%s",
3119 HD_OPTS , cyls, heads, secs,
3120 translation == BIOS_ATA_TRANSLATION_LBA ?
3121 ",trans=lba" :
3122 translation == BIOS_ATA_TRANSLATION_NONE ?
3123 ",trans=none" : "");
3124 drive_add(IF_DEFAULT, 0, optarg, buf);
3125 break;
3127 case QEMU_OPTION_hdb:
3128 case QEMU_OPTION_hdc:
3129 case QEMU_OPTION_hdd:
3130 drive_add(IF_DEFAULT, popt->index - QEMU_OPTION_hda, optarg,
3131 HD_OPTS);
3132 break;
3133 case QEMU_OPTION_drive:
3134 if (drive_def(optarg) == NULL) {
3135 exit(1);
3137 break;
3138 case QEMU_OPTION_set:
3139 if (qemu_set_option(optarg) != 0)
3140 exit(1);
3141 break;
3142 case QEMU_OPTION_global:
3143 if (qemu_global_option(optarg) != 0)
3144 exit(1);
3145 break;
3146 case QEMU_OPTION_mtdblock:
3147 drive_add(IF_MTD, -1, optarg, MTD_OPTS);
3148 break;
3149 case QEMU_OPTION_sd:
3150 drive_add(IF_SD, -1, optarg, SD_OPTS);
3151 break;
3152 case QEMU_OPTION_pflash:
3153 drive_add(IF_PFLASH, -1, optarg, PFLASH_OPTS);
3154 break;
3155 case QEMU_OPTION_snapshot:
3156 snapshot = 1;
3157 break;
3158 case QEMU_OPTION_hdachs:
3160 const char *p;
3161 p = optarg;
3162 cyls = strtol(p, (char **)&p, 0);
3163 if (cyls < 1 || cyls > 16383)
3164 goto chs_fail;
3165 if (*p != ',')
3166 goto chs_fail;
3167 p++;
3168 heads = strtol(p, (char **)&p, 0);
3169 if (heads < 1 || heads > 16)
3170 goto chs_fail;
3171 if (*p != ',')
3172 goto chs_fail;
3173 p++;
3174 secs = strtol(p, (char **)&p, 0);
3175 if (secs < 1 || secs > 63)
3176 goto chs_fail;
3177 if (*p == ',') {
3178 p++;
3179 if (!strcmp(p, "large")) {
3180 translation = BIOS_ATA_TRANSLATION_LARGE;
3181 } else if (!strcmp(p, "rechs")) {
3182 translation = BIOS_ATA_TRANSLATION_RECHS;
3183 } else if (!strcmp(p, "none")) {
3184 translation = BIOS_ATA_TRANSLATION_NONE;
3185 } else if (!strcmp(p, "lba")) {
3186 translation = BIOS_ATA_TRANSLATION_LBA;
3187 } else if (!strcmp(p, "auto")) {
3188 translation = BIOS_ATA_TRANSLATION_AUTO;
3189 } else {
3190 goto chs_fail;
3192 } else if (*p != '\0') {
3193 chs_fail:
3194 error_report("invalid physical CHS format");
3195 exit(1);
3197 if (hda_opts != NULL) {
3198 qemu_opt_set_number(hda_opts, "cyls", cyls,
3199 &error_abort);
3200 qemu_opt_set_number(hda_opts, "heads", heads,
3201 &error_abort);
3202 qemu_opt_set_number(hda_opts, "secs", secs,
3203 &error_abort);
3204 if (translation == BIOS_ATA_TRANSLATION_LARGE) {
3205 qemu_opt_set(hda_opts, "trans", "large",
3206 &error_abort);
3207 } else if (translation == BIOS_ATA_TRANSLATION_RECHS) {
3208 qemu_opt_set(hda_opts, "trans", "rechs",
3209 &error_abort);
3210 } else if (translation == BIOS_ATA_TRANSLATION_LBA) {
3211 qemu_opt_set(hda_opts, "trans", "lba",
3212 &error_abort);
3213 } else if (translation == BIOS_ATA_TRANSLATION_NONE) {
3214 qemu_opt_set(hda_opts, "trans", "none",
3215 &error_abort);
3219 break;
3220 case QEMU_OPTION_numa:
3221 opts = qemu_opts_parse_noisily(qemu_find_opts("numa"),
3222 optarg, true);
3223 if (!opts) {
3224 exit(1);
3226 break;
3227 case QEMU_OPTION_display:
3228 display_type = select_display(optarg);
3229 break;
3230 case QEMU_OPTION_nographic:
3231 display_type = DT_NOGRAPHIC;
3232 break;
3233 case QEMU_OPTION_curses:
3234 #ifdef CONFIG_CURSES
3235 display_type = DT_CURSES;
3236 #else
3237 error_report("curses support is disabled");
3238 exit(1);
3239 #endif
3240 break;
3241 case QEMU_OPTION_portrait:
3242 graphic_rotate = 90;
3243 break;
3244 case QEMU_OPTION_rotate:
3245 graphic_rotate = strtol(optarg, (char **) &optarg, 10);
3246 if (graphic_rotate != 0 && graphic_rotate != 90 &&
3247 graphic_rotate != 180 && graphic_rotate != 270) {
3248 error_report("only 90, 180, 270 deg rotation is available");
3249 exit(1);
3251 break;
3252 case QEMU_OPTION_kernel:
3253 qemu_opts_set(qemu_find_opts("machine"), 0, "kernel", optarg,
3254 &error_abort);
3255 break;
3256 case QEMU_OPTION_initrd:
3257 qemu_opts_set(qemu_find_opts("machine"), 0, "initrd", optarg,
3258 &error_abort);
3259 break;
3260 case QEMU_OPTION_append:
3261 qemu_opts_set(qemu_find_opts("machine"), 0, "append", optarg,
3262 &error_abort);
3263 break;
3264 case QEMU_OPTION_dtb:
3265 qemu_opts_set(qemu_find_opts("machine"), 0, "dtb", optarg,
3266 &error_abort);
3267 break;
3268 case QEMU_OPTION_cdrom:
3269 drive_add(IF_DEFAULT, 2, optarg, CDROM_OPTS);
3270 break;
3271 case QEMU_OPTION_boot:
3272 opts = qemu_opts_parse_noisily(qemu_find_opts("boot-opts"),
3273 optarg, true);
3274 if (!opts) {
3275 exit(1);
3277 break;
3278 case QEMU_OPTION_fda:
3279 case QEMU_OPTION_fdb:
3280 drive_add(IF_FLOPPY, popt->index - QEMU_OPTION_fda,
3281 optarg, FD_OPTS);
3282 break;
3283 case QEMU_OPTION_no_fd_bootchk:
3284 fd_bootchk = 0;
3285 break;
3286 case QEMU_OPTION_netdev:
3287 if (net_client_parse(qemu_find_opts("netdev"), optarg) == -1) {
3288 exit(1);
3290 break;
3291 case QEMU_OPTION_net:
3292 if (net_client_parse(qemu_find_opts("net"), optarg) == -1) {
3293 exit(1);
3295 break;
3296 #ifdef CONFIG_LIBISCSI
3297 case QEMU_OPTION_iscsi:
3298 opts = qemu_opts_parse_noisily(qemu_find_opts("iscsi"),
3299 optarg, false);
3300 if (!opts) {
3301 exit(1);
3303 break;
3304 #endif
3305 #ifdef CONFIG_SLIRP
3306 case QEMU_OPTION_tftp:
3307 error_report("The -tftp option is deprecated. "
3308 "Please use '-netdev user,tftp=...' instead.");
3309 legacy_tftp_prefix = optarg;
3310 break;
3311 case QEMU_OPTION_bootp:
3312 error_report("The -bootp option is deprecated. "
3313 "Please use '-netdev user,bootfile=...' instead.");
3314 legacy_bootp_filename = optarg;
3315 break;
3316 case QEMU_OPTION_redir:
3317 error_report("The -redir option is deprecated. "
3318 "Please use '-netdev user,hostfwd=...' instead.");
3319 if (net_slirp_redir(optarg) < 0)
3320 exit(1);
3321 break;
3322 #endif
3323 case QEMU_OPTION_bt:
3324 add_device_config(DEV_BT, optarg);
3325 break;
3326 case QEMU_OPTION_audio_help:
3327 AUD_help ();
3328 exit (0);
3329 break;
3330 case QEMU_OPTION_soundhw:
3331 select_soundhw (optarg);
3332 break;
3333 case QEMU_OPTION_h:
3334 help(0);
3335 break;
3336 case QEMU_OPTION_version:
3337 version();
3338 exit(0);
3339 break;
3340 case QEMU_OPTION_m:
3341 opts = qemu_opts_parse_noisily(qemu_find_opts("memory"),
3342 optarg, true);
3343 if (!opts) {
3344 exit(EXIT_FAILURE);
3346 break;
3347 #ifdef CONFIG_TPM
3348 case QEMU_OPTION_tpmdev:
3349 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg) < 0) {
3350 exit(1);
3352 break;
3353 #endif
3354 case QEMU_OPTION_mempath:
3355 mem_path = optarg;
3356 break;
3357 case QEMU_OPTION_mem_prealloc:
3358 mem_prealloc = 1;
3359 break;
3360 case QEMU_OPTION_d:
3361 log_mask = optarg;
3362 break;
3363 case QEMU_OPTION_D:
3364 log_file = optarg;
3365 break;
3366 case QEMU_OPTION_DFILTER:
3367 qemu_set_dfilter_ranges(optarg);
3368 break;
3369 case QEMU_OPTION_s:
3370 add_device_config(DEV_GDB, "tcp::" DEFAULT_GDBSTUB_PORT);
3371 break;
3372 case QEMU_OPTION_gdb:
3373 add_device_config(DEV_GDB, optarg);
3374 break;
3375 case QEMU_OPTION_L:
3376 if (data_dir_idx < ARRAY_SIZE(data_dir)) {
3377 data_dir[data_dir_idx++] = optarg;
3379 break;
3380 case QEMU_OPTION_bios:
3381 qemu_opts_set(qemu_find_opts("machine"), 0, "firmware", optarg,
3382 &error_abort);
3383 break;
3384 case QEMU_OPTION_singlestep:
3385 singlestep = 1;
3386 break;
3387 case QEMU_OPTION_S:
3388 autostart = 0;
3389 break;
3390 case QEMU_OPTION_k:
3391 keyboard_layout = optarg;
3392 break;
3393 case QEMU_OPTION_localtime:
3394 rtc_utc = 0;
3395 break;
3396 case QEMU_OPTION_vga:
3397 vga_model = optarg;
3398 default_vga = 0;
3399 break;
3400 case QEMU_OPTION_g:
3402 const char *p;
3403 int w, h, depth;
3404 p = optarg;
3405 w = strtol(p, (char **)&p, 10);
3406 if (w <= 0) {
3407 graphic_error:
3408 error_report("invalid resolution or depth");
3409 exit(1);
3411 if (*p != 'x')
3412 goto graphic_error;
3413 p++;
3414 h = strtol(p, (char **)&p, 10);
3415 if (h <= 0)
3416 goto graphic_error;
3417 if (*p == 'x') {
3418 p++;
3419 depth = strtol(p, (char **)&p, 10);
3420 if (depth != 8 && depth != 15 && depth != 16 &&
3421 depth != 24 && depth != 32)
3422 goto graphic_error;
3423 } else if (*p == '\0') {
3424 depth = graphic_depth;
3425 } else {
3426 goto graphic_error;
3429 graphic_width = w;
3430 graphic_height = h;
3431 graphic_depth = depth;
3433 break;
3434 case QEMU_OPTION_echr:
3436 char *r;
3437 term_escape_char = strtol(optarg, &r, 0);
3438 if (r == optarg)
3439 printf("Bad argument to echr\n");
3440 break;
3442 case QEMU_OPTION_monitor:
3443 default_monitor = 0;
3444 if (strncmp(optarg, "none", 4)) {
3445 monitor_parse(optarg, "readline", false);
3447 break;
3448 case QEMU_OPTION_qmp:
3449 monitor_parse(optarg, "control", false);
3450 default_monitor = 0;
3451 break;
3452 case QEMU_OPTION_qmp_pretty:
3453 monitor_parse(optarg, "control", true);
3454 default_monitor = 0;
3455 break;
3456 case QEMU_OPTION_mon:
3457 opts = qemu_opts_parse_noisily(qemu_find_opts("mon"), optarg,
3458 true);
3459 if (!opts) {
3460 exit(1);
3462 default_monitor = 0;
3463 break;
3464 case QEMU_OPTION_chardev:
3465 opts = qemu_opts_parse_noisily(qemu_find_opts("chardev"),
3466 optarg, true);
3467 if (!opts) {
3468 exit(1);
3470 break;
3471 case QEMU_OPTION_fsdev:
3472 olist = qemu_find_opts("fsdev");
3473 if (!olist) {
3474 error_report("fsdev support is disabled");
3475 exit(1);
3477 opts = qemu_opts_parse_noisily(olist, optarg, true);
3478 if (!opts) {
3479 exit(1);
3481 break;
3482 case QEMU_OPTION_virtfs: {
3483 QemuOpts *fsdev;
3484 QemuOpts *device;
3485 const char *writeout, *sock_fd, *socket;
3487 olist = qemu_find_opts("virtfs");
3488 if (!olist) {
3489 error_report("virtfs support is disabled");
3490 exit(1);
3492 opts = qemu_opts_parse_noisily(olist, optarg, true);
3493 if (!opts) {
3494 exit(1);
3497 if (qemu_opt_get(opts, "fsdriver") == NULL ||
3498 qemu_opt_get(opts, "mount_tag") == NULL) {
3499 error_report("Usage: -virtfs fsdriver,mount_tag=tag");
3500 exit(1);
3502 fsdev = qemu_opts_create(qemu_find_opts("fsdev"),
3503 qemu_opt_get(opts, "mount_tag"),
3504 1, NULL);
3505 if (!fsdev) {
3506 error_report("duplicate fsdev id: %s",
3507 qemu_opt_get(opts, "mount_tag"));
3508 exit(1);
3511 writeout = qemu_opt_get(opts, "writeout");
3512 if (writeout) {
3513 #ifdef CONFIG_SYNC_FILE_RANGE
3514 qemu_opt_set(fsdev, "writeout", writeout, &error_abort);
3515 #else
3516 error_report("writeout=immediate not supported "
3517 "on this platform");
3518 exit(1);
3519 #endif
3521 qemu_opt_set(fsdev, "fsdriver",
3522 qemu_opt_get(opts, "fsdriver"), &error_abort);
3523 qemu_opt_set(fsdev, "path", qemu_opt_get(opts, "path"),
3524 &error_abort);
3525 qemu_opt_set(fsdev, "security_model",
3526 qemu_opt_get(opts, "security_model"),
3527 &error_abort);
3528 socket = qemu_opt_get(opts, "socket");
3529 if (socket) {
3530 qemu_opt_set(fsdev, "socket", socket, &error_abort);
3532 sock_fd = qemu_opt_get(opts, "sock_fd");
3533 if (sock_fd) {
3534 qemu_opt_set(fsdev, "sock_fd", sock_fd, &error_abort);
3537 qemu_opt_set_bool(fsdev, "readonly",
3538 qemu_opt_get_bool(opts, "readonly", 0),
3539 &error_abort);
3540 device = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
3541 &error_abort);
3542 qemu_opt_set(device, "driver", "virtio-9p-pci", &error_abort);
3543 qemu_opt_set(device, "fsdev",
3544 qemu_opt_get(opts, "mount_tag"), &error_abort);
3545 qemu_opt_set(device, "mount_tag",
3546 qemu_opt_get(opts, "mount_tag"), &error_abort);
3547 break;
3549 case QEMU_OPTION_virtfs_synth: {
3550 QemuOpts *fsdev;
3551 QemuOpts *device;
3553 fsdev = qemu_opts_create(qemu_find_opts("fsdev"), "v_synth",
3554 1, NULL);
3555 if (!fsdev) {
3556 error_report("duplicate option: %s", "virtfs_synth");
3557 exit(1);
3559 qemu_opt_set(fsdev, "fsdriver", "synth", &error_abort);
3561 device = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
3562 &error_abort);
3563 qemu_opt_set(device, "driver", "virtio-9p-pci", &error_abort);
3564 qemu_opt_set(device, "fsdev", "v_synth", &error_abort);
3565 qemu_opt_set(device, "mount_tag", "v_synth", &error_abort);
3566 break;
3568 case QEMU_OPTION_serial:
3569 add_device_config(DEV_SERIAL, optarg);
3570 default_serial = 0;
3571 if (strncmp(optarg, "mon:", 4) == 0) {
3572 default_monitor = 0;
3574 break;
3575 case QEMU_OPTION_watchdog:
3576 if (watchdog) {
3577 error_report("only one watchdog option may be given");
3578 return 1;
3580 watchdog = optarg;
3581 break;
3582 case QEMU_OPTION_watchdog_action:
3583 if (select_watchdog_action(optarg) == -1) {
3584 error_report("unknown -watchdog-action parameter");
3585 exit(1);
3587 break;
3588 case QEMU_OPTION_virtiocon:
3589 add_device_config(DEV_VIRTCON, optarg);
3590 default_virtcon = 0;
3591 if (strncmp(optarg, "mon:", 4) == 0) {
3592 default_monitor = 0;
3594 break;
3595 case QEMU_OPTION_parallel:
3596 add_device_config(DEV_PARALLEL, optarg);
3597 default_parallel = 0;
3598 if (strncmp(optarg, "mon:", 4) == 0) {
3599 default_monitor = 0;
3601 break;
3602 case QEMU_OPTION_debugcon:
3603 add_device_config(DEV_DEBUGCON, optarg);
3604 break;
3605 case QEMU_OPTION_loadvm:
3606 loadvm = optarg;
3607 break;
3608 case QEMU_OPTION_full_screen:
3609 full_screen = 1;
3610 break;
3611 case QEMU_OPTION_no_frame:
3612 no_frame = 1;
3613 break;
3614 case QEMU_OPTION_alt_grab:
3615 alt_grab = 1;
3616 break;
3617 case QEMU_OPTION_ctrl_grab:
3618 ctrl_grab = 1;
3619 break;
3620 case QEMU_OPTION_no_quit:
3621 no_quit = 1;
3622 break;
3623 case QEMU_OPTION_sdl:
3624 #ifdef CONFIG_SDL
3625 display_type = DT_SDL;
3626 break;
3627 #else
3628 error_report("SDL support is disabled");
3629 exit(1);
3630 #endif
3631 case QEMU_OPTION_pidfile:
3632 pid_file = optarg;
3633 break;
3634 case QEMU_OPTION_win2k_hack:
3635 win2k_install_hack = 1;
3636 break;
3637 case QEMU_OPTION_rtc_td_hack: {
3638 static GlobalProperty slew_lost_ticks[] = {
3640 .driver = "mc146818rtc",
3641 .property = "lost_tick_policy",
3642 .value = "slew",
3644 { /* end of list */ }
3647 qdev_prop_register_global_list(slew_lost_ticks);
3648 break;
3650 case QEMU_OPTION_acpitable:
3651 opts = qemu_opts_parse_noisily(qemu_find_opts("acpi"),
3652 optarg, true);
3653 if (!opts) {
3654 exit(1);
3656 do_acpitable_option(opts);
3657 break;
3658 case QEMU_OPTION_smbios:
3659 opts = qemu_opts_parse_noisily(qemu_find_opts("smbios"),
3660 optarg, false);
3661 if (!opts) {
3662 exit(1);
3664 do_smbios_option(opts);
3665 break;
3666 case QEMU_OPTION_fwcfg:
3667 opts = qemu_opts_parse_noisily(qemu_find_opts("fw_cfg"),
3668 optarg, true);
3669 if (opts == NULL) {
3670 exit(1);
3672 break;
3673 case QEMU_OPTION_enable_kvm:
3674 olist = qemu_find_opts("machine");
3675 qemu_opts_parse_noisily(olist, "accel=kvm", false);
3676 break;
3677 case QEMU_OPTION_M:
3678 case QEMU_OPTION_machine:
3679 olist = qemu_find_opts("machine");
3680 opts = qemu_opts_parse_noisily(olist, optarg, true);
3681 if (!opts) {
3682 exit(1);
3684 break;
3685 case QEMU_OPTION_no_kvm:
3686 olist = qemu_find_opts("machine");
3687 qemu_opts_parse_noisily(olist, "accel=tcg", false);
3688 break;
3689 case QEMU_OPTION_no_kvm_pit: {
3690 error_report("warning: ignoring deprecated option");
3691 break;
3693 case QEMU_OPTION_no_kvm_pit_reinjection: {
3694 static GlobalProperty kvm_pit_lost_tick_policy[] = {
3696 .driver = "kvm-pit",
3697 .property = "lost_tick_policy",
3698 .value = "discard",
3700 { /* end of list */ }
3703 error_report("warning: deprecated, replaced by "
3704 "-global kvm-pit.lost_tick_policy=discard");
3705 qdev_prop_register_global_list(kvm_pit_lost_tick_policy);
3706 break;
3708 case QEMU_OPTION_usb:
3709 olist = qemu_find_opts("machine");
3710 qemu_opts_parse_noisily(olist, "usb=on", false);
3711 break;
3712 case QEMU_OPTION_usbdevice:
3713 olist = qemu_find_opts("machine");
3714 qemu_opts_parse_noisily(olist, "usb=on", false);
3715 add_device_config(DEV_USB, optarg);
3716 break;
3717 case QEMU_OPTION_device:
3718 if (!qemu_opts_parse_noisily(qemu_find_opts("device"),
3719 optarg, true)) {
3720 exit(1);
3722 break;
3723 case QEMU_OPTION_smp:
3724 if (!qemu_opts_parse_noisily(qemu_find_opts("smp-opts"),
3725 optarg, true)) {
3726 exit(1);
3728 break;
3729 case QEMU_OPTION_vnc:
3731 #ifdef CONFIG_VNC
3732 Error *local_err = NULL;
3734 if (vnc_parse(optarg, &local_err) == NULL) {
3735 error_report_err(local_err);
3736 exit(1);
3738 #else
3739 error_report("VNC support is disabled");
3740 exit(1);
3741 #endif
3742 break;
3744 case QEMU_OPTION_no_acpi:
3745 acpi_enabled = 0;
3746 break;
3747 case QEMU_OPTION_no_hpet:
3748 no_hpet = 1;
3749 break;
3750 case QEMU_OPTION_balloon:
3751 if (balloon_parse(optarg) < 0) {
3752 error_report("unknown -balloon argument %s", optarg);
3753 exit(1);
3755 break;
3756 case QEMU_OPTION_no_reboot:
3757 no_reboot = 1;
3758 break;
3759 case QEMU_OPTION_no_shutdown:
3760 no_shutdown = 1;
3761 break;
3762 case QEMU_OPTION_show_cursor:
3763 cursor_hide = 0;
3764 break;
3765 case QEMU_OPTION_uuid:
3766 if(qemu_uuid_parse(optarg, qemu_uuid) < 0) {
3767 error_report("failed to parse UUID string: wrong format");
3768 exit(1);
3770 qemu_uuid_set = true;
3771 break;
3772 case QEMU_OPTION_option_rom:
3773 if (nb_option_roms >= MAX_OPTION_ROMS) {
3774 error_report("too many option ROMs");
3775 exit(1);
3777 opts = qemu_opts_parse_noisily(qemu_find_opts("option-rom"),
3778 optarg, true);
3779 if (!opts) {
3780 exit(1);
3782 option_rom[nb_option_roms].name = qemu_opt_get(opts, "romfile");
3783 option_rom[nb_option_roms].bootindex =
3784 qemu_opt_get_number(opts, "bootindex", -1);
3785 if (!option_rom[nb_option_roms].name) {
3786 error_report("Option ROM file is not specified");
3787 exit(1);
3789 nb_option_roms++;
3790 break;
3791 case QEMU_OPTION_semihosting:
3792 semihosting.enabled = true;
3793 semihosting.target = SEMIHOSTING_TARGET_AUTO;
3794 break;
3795 case QEMU_OPTION_semihosting_config:
3796 semihosting.enabled = true;
3797 opts = qemu_opts_parse_noisily(qemu_find_opts("semihosting-config"),
3798 optarg, false);
3799 if (opts != NULL) {
3800 semihosting.enabled = qemu_opt_get_bool(opts, "enable",
3801 true);
3802 const char *target = qemu_opt_get(opts, "target");
3803 if (target != NULL) {
3804 if (strcmp("native", target) == 0) {
3805 semihosting.target = SEMIHOSTING_TARGET_NATIVE;
3806 } else if (strcmp("gdb", target) == 0) {
3807 semihosting.target = SEMIHOSTING_TARGET_GDB;
3808 } else if (strcmp("auto", target) == 0) {
3809 semihosting.target = SEMIHOSTING_TARGET_AUTO;
3810 } else {
3811 error_report("unsupported semihosting-config %s",
3812 optarg);
3813 exit(1);
3815 } else {
3816 semihosting.target = SEMIHOSTING_TARGET_AUTO;
3818 /* Set semihosting argument count and vector */
3819 qemu_opt_foreach(opts, add_semihosting_arg,
3820 &semihosting, NULL);
3821 } else {
3822 error_report("unsupported semihosting-config %s", optarg);
3823 exit(1);
3825 break;
3826 case QEMU_OPTION_tdf:
3827 error_report("warning: ignoring deprecated option");
3828 break;
3829 case QEMU_OPTION_name:
3830 opts = qemu_opts_parse_noisily(qemu_find_opts("name"),
3831 optarg, true);
3832 if (!opts) {
3833 exit(1);
3835 break;
3836 case QEMU_OPTION_prom_env:
3837 if (nb_prom_envs >= MAX_PROM_ENVS) {
3838 error_report("too many prom variables");
3839 exit(1);
3841 prom_envs[nb_prom_envs] = optarg;
3842 nb_prom_envs++;
3843 break;
3844 case QEMU_OPTION_old_param:
3845 old_param = 1;
3846 break;
3847 case QEMU_OPTION_clock:
3848 /* Clock options no longer exist. Keep this option for
3849 * backward compatibility.
3851 break;
3852 case QEMU_OPTION_startdate:
3853 configure_rtc_date_offset(optarg, 1);
3854 break;
3855 case QEMU_OPTION_rtc:
3856 opts = qemu_opts_parse_noisily(qemu_find_opts("rtc"), optarg,
3857 false);
3858 if (!opts) {
3859 exit(1);
3861 configure_rtc(opts);
3862 break;
3863 case QEMU_OPTION_tb_size:
3864 tcg_tb_size = strtol(optarg, NULL, 0);
3865 if (tcg_tb_size < 0) {
3866 tcg_tb_size = 0;
3868 break;
3869 case QEMU_OPTION_icount:
3870 icount_opts = qemu_opts_parse_noisily(qemu_find_opts("icount"),
3871 optarg, true);
3872 if (!icount_opts) {
3873 exit(1);
3875 break;
3876 case QEMU_OPTION_incoming:
3877 if (!incoming) {
3878 runstate_set(RUN_STATE_INMIGRATE);
3880 incoming = optarg;
3881 break;
3882 case QEMU_OPTION_nodefaults:
3883 has_defaults = 0;
3884 break;
3885 case QEMU_OPTION_xen_domid:
3886 if (!(xen_available())) {
3887 printf("Option %s not supported for this target\n", popt->name);
3888 exit(1);
3890 xen_domid = atoi(optarg);
3891 break;
3892 case QEMU_OPTION_xen_create:
3893 if (!(xen_available())) {
3894 printf("Option %s not supported for this target\n", popt->name);
3895 exit(1);
3897 xen_mode = XEN_CREATE;
3898 break;
3899 case QEMU_OPTION_xen_attach:
3900 if (!(xen_available())) {
3901 printf("Option %s not supported for this target\n", popt->name);
3902 exit(1);
3904 xen_mode = XEN_ATTACH;
3905 break;
3906 case QEMU_OPTION_trace:
3908 opts = qemu_opts_parse_noisily(qemu_find_opts("trace"),
3909 optarg, true);
3910 if (!opts) {
3911 exit(1);
3913 if (qemu_opt_get(opts, "enable")) {
3914 trace_enable_events(qemu_opt_get(opts, "enable"));
3916 trace_init_events(qemu_opt_get(opts, "events"));
3917 if (trace_file) {
3918 g_free(trace_file);
3920 trace_file = g_strdup(qemu_opt_get(opts, "file"));
3921 qemu_opts_del(opts);
3922 break;
3924 case QEMU_OPTION_readconfig:
3926 int ret = qemu_read_config_file(optarg);
3927 if (ret < 0) {
3928 error_report("read config %s: %s", optarg,
3929 strerror(-ret));
3930 exit(1);
3932 break;
3934 case QEMU_OPTION_spice:
3935 olist = qemu_find_opts("spice");
3936 if (!olist) {
3937 error_report("spice support is disabled");
3938 exit(1);
3940 opts = qemu_opts_parse_noisily(olist, optarg, false);
3941 if (!opts) {
3942 exit(1);
3944 display_remote++;
3945 break;
3946 case QEMU_OPTION_writeconfig:
3948 FILE *fp;
3949 if (strcmp(optarg, "-") == 0) {
3950 fp = stdout;
3951 } else {
3952 fp = fopen(optarg, "w");
3953 if (fp == NULL) {
3954 error_report("open %s: %s", optarg,
3955 strerror(errno));
3956 exit(1);
3959 qemu_config_write(fp);
3960 if (fp != stdout) {
3961 fclose(fp);
3963 break;
3965 case QEMU_OPTION_qtest:
3966 qtest_chrdev = optarg;
3967 break;
3968 case QEMU_OPTION_qtest_log:
3969 qtest_log = optarg;
3970 break;
3971 case QEMU_OPTION_sandbox:
3972 opts = qemu_opts_parse_noisily(qemu_find_opts("sandbox"),
3973 optarg, true);
3974 if (!opts) {
3975 exit(1);
3977 break;
3978 case QEMU_OPTION_add_fd:
3979 #ifndef _WIN32
3980 opts = qemu_opts_parse_noisily(qemu_find_opts("add-fd"),
3981 optarg, false);
3982 if (!opts) {
3983 exit(1);
3985 #else
3986 error_report("File descriptor passing is disabled on this "
3987 "platform");
3988 exit(1);
3989 #endif
3990 break;
3991 case QEMU_OPTION_object:
3992 opts = qemu_opts_parse_noisily(qemu_find_opts("object"),
3993 optarg, true);
3994 if (!opts) {
3995 exit(1);
3997 break;
3998 case QEMU_OPTION_realtime:
3999 opts = qemu_opts_parse_noisily(qemu_find_opts("realtime"),
4000 optarg, false);
4001 if (!opts) {
4002 exit(1);
4004 enable_mlock = qemu_opt_get_bool(opts, "mlock", true);
4005 break;
4006 case QEMU_OPTION_msg:
4007 opts = qemu_opts_parse_noisily(qemu_find_opts("msg"), optarg,
4008 false);
4009 if (!opts) {
4010 exit(1);
4012 configure_msg(opts);
4013 break;
4014 case QEMU_OPTION_dump_vmstate:
4015 if (vmstate_dump_file) {
4016 error_report("only one '-dump-vmstate' "
4017 "option may be given");
4018 exit(1);
4020 vmstate_dump_file = fopen(optarg, "w");
4021 if (vmstate_dump_file == NULL) {
4022 error_report("open %s: %s", optarg, strerror(errno));
4023 exit(1);
4025 break;
4026 default:
4027 os_parse_cmd_args(popt->index, optarg);
4032 * Clear error location left behind by the loop.
4033 * Best done right after the loop. Do not insert code here!
4035 loc_set_none();
4037 replay_configure(icount_opts);
4039 machine_class = select_machine();
4041 set_memory_options(&ram_slots, &maxram_size, machine_class);
4043 os_daemonize();
4045 if (qemu_init_main_loop(&main_loop_err)) {
4046 error_report_err(main_loop_err);
4047 exit(1);
4050 if (qemu_opts_foreach(qemu_find_opts("sandbox"),
4051 parse_sandbox, NULL, NULL)) {
4052 exit(1);
4055 if (qemu_opts_foreach(qemu_find_opts("name"),
4056 parse_name, NULL, NULL)) {
4057 exit(1);
4060 #ifndef _WIN32
4061 if (qemu_opts_foreach(qemu_find_opts("add-fd"),
4062 parse_add_fd, NULL, NULL)) {
4063 exit(1);
4066 if (qemu_opts_foreach(qemu_find_opts("add-fd"),
4067 cleanup_add_fd, NULL, NULL)) {
4068 exit(1);
4070 #endif
4072 current_machine = MACHINE(object_new(object_class_get_name(
4073 OBJECT_CLASS(machine_class))));
4074 if (machine_help_func(qemu_get_machine_opts(), current_machine)) {
4075 exit(0);
4077 object_property_add_child(object_get_root(), "machine",
4078 OBJECT(current_machine), &error_abort);
4079 cpu_exec_init_all();
4081 if (machine_class->hw_version) {
4082 qemu_set_hw_version(machine_class->hw_version);
4085 /* Init CPU def lists, based on config
4086 * - Must be called after all the qemu_read_config_file() calls
4087 * - Must be called before list_cpus()
4088 * - Must be called before machine_class->init()
4090 cpudef_init();
4092 if (cpu_model && is_help_option(cpu_model)) {
4093 list_cpus(stdout, &fprintf, cpu_model);
4094 exit(0);
4097 if (!trace_init_backends()) {
4098 exit(1);
4100 trace_init_file(trace_file);
4102 /* Open the logfile at this point and set the log mask if necessary.
4104 if (log_file) {
4105 qemu_set_log_filename(log_file);
4108 if (log_mask) {
4109 int mask;
4110 mask = qemu_str_to_log_mask(log_mask);
4111 if (!mask) {
4112 qemu_print_log_usage(stdout);
4113 exit(1);
4115 qemu_set_log(mask);
4116 } else {
4117 qemu_set_log(0);
4120 /* If no data_dir is specified then try to find it relative to the
4121 executable path. */
4122 if (data_dir_idx < ARRAY_SIZE(data_dir)) {
4123 data_dir[data_dir_idx] = os_find_datadir();
4124 if (data_dir[data_dir_idx] != NULL) {
4125 data_dir_idx++;
4128 /* If all else fails use the install path specified when building. */
4129 if (data_dir_idx < ARRAY_SIZE(data_dir)) {
4130 data_dir[data_dir_idx++] = CONFIG_QEMU_DATADIR;
4133 smp_parse(qemu_opts_find(qemu_find_opts("smp-opts"), NULL));
4135 machine_class->max_cpus = machine_class->max_cpus ?: 1; /* Default to UP */
4136 if (max_cpus > machine_class->max_cpus) {
4137 error_report("Number of SMP CPUs requested (%d) exceeds max CPUs "
4138 "supported by machine '%s' (%d)", max_cpus,
4139 machine_class->name, machine_class->max_cpus);
4140 exit(1);
4144 * Get the default machine options from the machine if it is not already
4145 * specified either by the configuration file or by the command line.
4147 if (machine_class->default_machine_opts) {
4148 qemu_opts_set_defaults(qemu_find_opts("machine"),
4149 machine_class->default_machine_opts, 0);
4152 qemu_opts_foreach(qemu_find_opts("device"),
4153 default_driver_check, NULL, NULL);
4154 qemu_opts_foreach(qemu_find_opts("global"),
4155 default_driver_check, NULL, NULL);
4157 if (!vga_model && !default_vga) {
4158 vga_interface_type = VGA_DEVICE;
4160 if (!has_defaults || machine_class->no_serial) {
4161 default_serial = 0;
4163 if (!has_defaults || machine_class->no_parallel) {
4164 default_parallel = 0;
4166 if (!has_defaults || !machine_class->use_virtcon) {
4167 default_virtcon = 0;
4169 if (!has_defaults || !machine_class->use_sclp) {
4170 default_sclp = 0;
4172 if (!has_defaults || machine_class->no_floppy) {
4173 default_floppy = 0;
4175 if (!has_defaults || machine_class->no_cdrom) {
4176 default_cdrom = 0;
4178 if (!has_defaults || machine_class->no_sdcard) {
4179 default_sdcard = 0;
4181 if (!has_defaults) {
4182 default_monitor = 0;
4183 default_net = 0;
4184 default_vga = 0;
4187 if (is_daemonized()) {
4188 /* According to documentation and historically, -nographic redirects
4189 * serial port, parallel port and monitor to stdio, which does not work
4190 * with -daemonize. We can redirect these to null instead, but since
4191 * -nographic is legacy, let's just error out.
4192 * We disallow -nographic only if all other ports are not redirected
4193 * explicitly, to not break existing legacy setups which uses
4194 * -nographic _and_ redirects all ports explicitly - this is valid
4195 * usage, -nographic is just a no-op in this case.
4197 if (display_type == DT_NOGRAPHIC
4198 && (default_parallel || default_serial
4199 || default_monitor || default_virtcon)) {
4200 error_report("-nographic cannot be used with -daemonize");
4201 exit(1);
4203 #ifdef CONFIG_CURSES
4204 if (display_type == DT_CURSES) {
4205 error_report("curses display cannot be used with -daemonize");
4206 exit(1);
4208 #endif
4211 if (display_type == DT_NOGRAPHIC) {
4212 if (default_parallel)
4213 add_device_config(DEV_PARALLEL, "null");
4214 if (default_serial && default_monitor) {
4215 add_device_config(DEV_SERIAL, "mon:stdio");
4216 } else if (default_virtcon && default_monitor) {
4217 add_device_config(DEV_VIRTCON, "mon:stdio");
4218 } else if (default_sclp && default_monitor) {
4219 add_device_config(DEV_SCLP, "mon:stdio");
4220 } else {
4221 if (default_serial)
4222 add_device_config(DEV_SERIAL, "stdio");
4223 if (default_virtcon)
4224 add_device_config(DEV_VIRTCON, "stdio");
4225 if (default_sclp) {
4226 add_device_config(DEV_SCLP, "stdio");
4228 if (default_monitor)
4229 monitor_parse("stdio", "readline", false);
4231 } else {
4232 if (default_serial)
4233 add_device_config(DEV_SERIAL, "vc:80Cx24C");
4234 if (default_parallel)
4235 add_device_config(DEV_PARALLEL, "vc:80Cx24C");
4236 if (default_monitor)
4237 monitor_parse("vc:80Cx24C", "readline", false);
4238 if (default_virtcon)
4239 add_device_config(DEV_VIRTCON, "vc:80Cx24C");
4240 if (default_sclp) {
4241 add_device_config(DEV_SCLP, "vc:80Cx24C");
4245 #if defined(CONFIG_VNC)
4246 if (!QTAILQ_EMPTY(&(qemu_find_opts("vnc")->head))) {
4247 display_remote++;
4249 #endif
4250 if (display_type == DT_DEFAULT && !display_remote) {
4251 #if defined(CONFIG_GTK)
4252 display_type = DT_GTK;
4253 #elif defined(CONFIG_SDL) || defined(CONFIG_COCOA)
4254 display_type = DT_SDL;
4255 #elif defined(CONFIG_VNC)
4256 vnc_parse("localhost:0,to=99,id=default", &error_abort);
4257 show_vnc_port = 1;
4258 #else
4259 display_type = DT_NONE;
4260 #endif
4263 if ((no_frame || alt_grab || ctrl_grab) && display_type != DT_SDL) {
4264 error_report("-no-frame, -alt-grab and -ctrl-grab are only valid "
4265 "for SDL, ignoring option");
4267 if (no_quit && (display_type != DT_GTK && display_type != DT_SDL)) {
4268 error_report("-no-quit is only valid for GTK and SDL, "
4269 "ignoring option");
4272 #if defined(CONFIG_GTK)
4273 if (display_type == DT_GTK) {
4274 early_gtk_display_init(request_opengl);
4276 #endif
4277 #if defined(CONFIG_SDL)
4278 if (display_type == DT_SDL) {
4279 sdl_display_early_init(request_opengl);
4281 #endif
4282 if (request_opengl == 1 && display_opengl == 0) {
4283 #if defined(CONFIG_OPENGL)
4284 error_report("OpenGL is not supported by the display");
4285 #else
4286 error_report("OpenGL support is disabled");
4287 #endif
4288 exit(1);
4291 page_size_init();
4292 socket_init();
4294 if (qemu_opts_foreach(qemu_find_opts("object"),
4295 user_creatable_add_opts_foreach,
4296 object_create_initial, NULL)) {
4297 exit(1);
4300 if (qemu_opts_foreach(qemu_find_opts("chardev"),
4301 chardev_init_func, NULL, NULL)) {
4302 exit(1);
4305 #ifdef CONFIG_VIRTFS
4306 if (qemu_opts_foreach(qemu_find_opts("fsdev"),
4307 fsdev_init_func, NULL, NULL)) {
4308 exit(1);
4310 #endif
4312 if (pid_file && qemu_create_pidfile(pid_file) != 0) {
4313 error_report("could not acquire pid file: %s", strerror(errno));
4314 exit(1);
4317 if (qemu_opts_foreach(qemu_find_opts("device"),
4318 device_help_func, NULL, NULL)) {
4319 exit(0);
4322 machine_opts = qemu_get_machine_opts();
4323 if (qemu_opt_foreach(machine_opts, machine_set_property, current_machine,
4324 NULL)) {
4325 object_unref(OBJECT(current_machine));
4326 exit(1);
4329 configure_accelerator(current_machine);
4331 if (qtest_chrdev) {
4332 qtest_init(qtest_chrdev, qtest_log, &error_fatal);
4335 machine_opts = qemu_get_machine_opts();
4336 kernel_filename = qemu_opt_get(machine_opts, "kernel");
4337 initrd_filename = qemu_opt_get(machine_opts, "initrd");
4338 kernel_cmdline = qemu_opt_get(machine_opts, "append");
4339 bios_name = qemu_opt_get(machine_opts, "firmware");
4341 opts = qemu_opts_find(qemu_find_opts("boot-opts"), NULL);
4342 if (opts) {
4343 boot_order = qemu_opt_get(opts, "order");
4344 if (boot_order) {
4345 validate_bootdevices(boot_order, &error_fatal);
4348 boot_once = qemu_opt_get(opts, "once");
4349 if (boot_once) {
4350 validate_bootdevices(boot_once, &error_fatal);
4353 boot_menu = qemu_opt_get_bool(opts, "menu", boot_menu);
4354 boot_strict = qemu_opt_get_bool(opts, "strict", false);
4357 if (!boot_order) {
4358 boot_order = machine_class->default_boot_order;
4361 if (!kernel_cmdline) {
4362 kernel_cmdline = "";
4363 current_machine->kernel_cmdline = (char *)kernel_cmdline;
4366 linux_boot = (kernel_filename != NULL);
4368 if (!linux_boot && *kernel_cmdline != '\0') {
4369 error_report("-append only allowed with -kernel option");
4370 exit(1);
4373 if (!linux_boot && initrd_filename != NULL) {
4374 error_report("-initrd only allowed with -kernel option");
4375 exit(1);
4378 if (!linux_boot && qemu_opt_get(machine_opts, "dtb")) {
4379 error_report("-dtb only allowed with -kernel option");
4380 exit(1);
4383 if (semihosting_enabled() && !semihosting_get_argc() && kernel_filename) {
4384 /* fall back to the -kernel/-append */
4385 semihosting_arg_fallback(kernel_filename, kernel_cmdline);
4388 os_set_line_buffering();
4390 #ifdef CONFIG_SPICE
4391 /* spice needs the timers to be initialized by this point */
4392 qemu_spice_init();
4393 #endif
4395 cpu_ticks_init();
4396 if (icount_opts) {
4397 if (kvm_enabled() || xen_enabled()) {
4398 error_report("-icount is not allowed with kvm or xen");
4399 exit(1);
4401 configure_icount(icount_opts, &error_abort);
4402 qemu_opts_del(icount_opts);
4405 /* clean up network at qemu process termination */
4406 atexit(&net_cleanup);
4408 if (net_init_clients() < 0) {
4409 exit(1);
4412 if (qemu_opts_foreach(qemu_find_opts("object"),
4413 user_creatable_add_opts_foreach,
4414 object_create_delayed, NULL)) {
4415 exit(1);
4418 #ifdef CONFIG_TPM
4419 if (tpm_init() < 0) {
4420 exit(1);
4422 #endif
4424 /* init the bluetooth world */
4425 if (foreach_device_config(DEV_BT, bt_parse))
4426 exit(1);
4428 if (!xen_enabled()) {
4429 /* On 32-bit hosts, QEMU is limited by virtual address space */
4430 if (ram_size > (2047 << 20) && HOST_LONG_BITS == 32) {
4431 error_report("at most 2047 MB RAM can be simulated");
4432 exit(1);
4436 blk_mig_init();
4437 ram_mig_init();
4439 /* If the currently selected machine wishes to override the units-per-bus
4440 * property of its default HBA interface type, do so now. */
4441 if (machine_class->units_per_default_bus) {
4442 override_max_devs(machine_class->block_default_type,
4443 machine_class->units_per_default_bus);
4446 /* open the virtual block devices */
4447 if (snapshot || replay_mode != REPLAY_MODE_NONE) {
4448 qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot,
4449 NULL, NULL);
4451 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func,
4452 &machine_class->block_default_type, NULL)) {
4453 exit(1);
4456 default_drive(default_cdrom, snapshot, machine_class->block_default_type, 2,
4457 CDROM_OPTS);
4458 default_drive(default_floppy, snapshot, IF_FLOPPY, 0, FD_OPTS);
4459 default_drive(default_sdcard, snapshot, IF_SD, 0, SD_OPTS);
4461 parse_numa_opts(machine_class);
4463 if (qemu_opts_foreach(qemu_find_opts("mon"),
4464 mon_init_func, NULL, NULL)) {
4465 exit(1);
4468 if (foreach_device_config(DEV_SERIAL, serial_parse) < 0)
4469 exit(1);
4470 if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0)
4471 exit(1);
4472 if (foreach_device_config(DEV_VIRTCON, virtcon_parse) < 0)
4473 exit(1);
4474 if (foreach_device_config(DEV_SCLP, sclp_parse) < 0) {
4475 exit(1);
4477 if (foreach_device_config(DEV_DEBUGCON, debugcon_parse) < 0)
4478 exit(1);
4480 /* If no default VGA is requested, the default is "none". */
4481 if (default_vga) {
4482 if (machine_class->default_display) {
4483 vga_model = machine_class->default_display;
4484 } else if (cirrus_vga_available()) {
4485 vga_model = "cirrus";
4486 } else if (vga_available()) {
4487 vga_model = "std";
4490 if (vga_model) {
4491 select_vgahw(vga_model);
4494 if (watchdog) {
4495 i = select_watchdog(watchdog);
4496 if (i > 0)
4497 exit (i == 1 ? 1 : 0);
4500 if (machine_class->compat_props) {
4501 qdev_prop_register_global_list(machine_class->compat_props);
4503 qemu_add_globals();
4505 /* This checkpoint is required by replay to separate prior clock
4506 reading from the other reads, because timer polling functions query
4507 clock values from the log. */
4508 replay_checkpoint(CHECKPOINT_INIT);
4509 qdev_machine_init();
4511 current_machine->ram_size = ram_size;
4512 current_machine->maxram_size = maxram_size;
4513 current_machine->ram_slots = ram_slots;
4514 current_machine->boot_order = boot_order;
4515 current_machine->cpu_model = cpu_model;
4517 machine_class->init(current_machine);
4519 realtime_init();
4521 audio_init();
4523 cpu_synchronize_all_post_init();
4525 numa_post_machine_init();
4527 if (qemu_opts_foreach(qemu_find_opts("fw_cfg"),
4528 parse_fw_cfg, fw_cfg_find(), NULL) != 0) {
4529 exit(1);
4532 /* init USB devices */
4533 if (usb_enabled()) {
4534 if (foreach_device_config(DEV_USB, usb_parse) < 0)
4535 exit(1);
4538 /* Check if IGD GFX passthrough. */
4539 igd_gfx_passthru();
4541 /* init generic devices */
4542 rom_set_order_override(FW_CFG_ORDER_OVERRIDE_DEVICE);
4543 if (qemu_opts_foreach(qemu_find_opts("device"),
4544 device_init_func, NULL, NULL)) {
4545 exit(1);
4547 rom_reset_order_override();
4549 /* Did we create any drives that we failed to create a device for? */
4550 drive_check_orphaned();
4552 net_check_clients();
4554 if (boot_once) {
4555 qemu_boot_set(boot_once, &error_fatal);
4556 qemu_register_reset(restore_boot_order, g_strdup(boot_order));
4559 ds = init_displaystate();
4561 /* init local displays */
4562 switch (display_type) {
4563 case DT_NOGRAPHIC:
4564 (void)ds; /* avoid warning if no display is configured */
4565 break;
4566 #if defined(CONFIG_CURSES)
4567 case DT_CURSES:
4568 curses_display_init(ds, full_screen);
4569 break;
4570 #endif
4571 #if defined(CONFIG_SDL)
4572 case DT_SDL:
4573 sdl_display_init(ds, full_screen, no_frame);
4574 break;
4575 #elif defined(CONFIG_COCOA)
4576 case DT_SDL:
4577 cocoa_display_init(ds, full_screen);
4578 break;
4579 #endif
4580 #if defined(CONFIG_GTK)
4581 case DT_GTK:
4582 gtk_display_init(ds, full_screen, grab_on_hover);
4583 break;
4584 #endif
4585 default:
4586 break;
4589 /* must be after terminal init, SDL library changes signal handlers */
4590 os_setup_signal_handling();
4592 #ifdef CONFIG_VNC
4593 /* init remote displays */
4594 qemu_opts_foreach(qemu_find_opts("vnc"),
4595 vnc_init_func, NULL, NULL);
4596 if (show_vnc_port) {
4597 char *ret = vnc_display_local_addr("default");
4598 printf("VNC server running on '%s'\n", ret);
4599 g_free(ret);
4601 #endif
4602 #ifdef CONFIG_SPICE
4603 if (using_spice) {
4604 qemu_spice_display_init();
4606 #endif
4608 if (foreach_device_config(DEV_GDB, gdbserver_start) < 0) {
4609 exit(1);
4612 qdev_machine_creation_done();
4614 /* TODO: once all bus devices are qdevified, this should be done
4615 * when bus is created by qdev.c */
4616 qemu_register_reset(qbus_reset_all_fn, sysbus_get_default());
4617 qemu_run_machine_init_done_notifiers();
4619 if (rom_check_and_register_reset() != 0) {
4620 error_report("rom check and register reset failed");
4621 exit(1);
4624 replay_start();
4626 /* This checkpoint is required by replay to separate prior clock
4627 reading from the other reads, because timer polling functions query
4628 clock values from the log. */
4629 replay_checkpoint(CHECKPOINT_RESET);
4630 qemu_system_reset(VMRESET_SILENT);
4631 register_global_state();
4632 if (loadvm) {
4633 if (load_vmstate(loadvm) < 0) {
4634 autostart = 0;
4638 qdev_prop_check_globals();
4639 if (vmstate_dump_file) {
4640 /* dump and exit */
4641 dump_vmstate_json_to_file(vmstate_dump_file);
4642 return 0;
4645 if (incoming) {
4646 Error *local_err = NULL;
4647 qemu_start_incoming_migration(incoming, &local_err);
4648 if (local_err) {
4649 error_reportf_err(local_err, "-incoming %s: ", incoming);
4650 exit(1);
4652 } else if (autostart) {
4653 vm_start();
4656 os_setup_post();
4658 main_loop();
4659 replay_disable_events();
4661 bdrv_close_all();
4662 pause_all_vcpus();
4663 res_free();
4664 #ifdef CONFIG_TPM
4665 tpm_cleanup();
4666 #endif
4668 return 0;