qemu-nbd: Fix coverity issues
[qemu/ar7.git] / vl.c
blob842e897d75460104b57f47436efbfcbea7b502d5
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 <unistd.h>
25 #include <fcntl.h>
26 #include <signal.h>
27 #include <time.h>
28 #include <errno.h>
29 #include <sys/time.h>
31 #include "config-host.h"
33 #ifdef CONFIG_SECCOMP
34 #include "sysemu/seccomp.h"
35 #endif
37 #if defined(CONFIG_VDE)
38 #include <libvdeplug.h>
39 #endif
41 #ifdef CONFIG_SDL
42 #if defined(__APPLE__) || defined(main)
43 #include <SDL.h>
44 int qemu_main(int argc, char **argv, char **envp);
45 int main(int argc, char **argv)
47 return qemu_main(argc, argv, NULL);
49 #undef main
50 #define main qemu_main
51 #endif
52 #endif /* CONFIG_SDL */
54 #ifdef CONFIG_COCOA
55 #undef main
56 #define main qemu_main
57 #endif /* CONFIG_COCOA */
59 #include <glib.h>
61 #include "hw/hw.h"
62 #include "hw/boards.h"
63 #include "hw/usb.h"
64 #include "hw/pcmcia.h"
65 #include "hw/i386/pc.h"
66 #include "hw/isa/isa.h"
67 #include "hw/bt.h"
68 #include "sysemu/watchdog.h"
69 #include "hw/i386/smbios.h"
70 #include "hw/xen/xen.h"
71 #include "hw/qdev.h"
72 #include "hw/loader.h"
73 #include "monitor/qdev.h"
74 #include "sysemu/bt.h"
75 #include "net/net.h"
76 #include "net/slirp.h"
77 #include "monitor/monitor.h"
78 #include "ui/console.h"
79 #include "sysemu/sysemu.h"
80 #include "exec/gdbstub.h"
81 #include "qemu/timer.h"
82 #include "sysemu/char.h"
83 #include "qemu/bitmap.h"
84 #include "qemu/cache-utils.h"
85 #include "sysemu/blockdev.h"
86 #include "hw/block/block.h"
87 #include "migration/block.h"
88 #include "sysemu/tpm.h"
89 #include "sysemu/dma.h"
90 #include "audio/audio.h"
91 #include "migration/migration.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"
106 #include "qemu/sockets.h"
108 #include "slirp/libslirp.h"
110 #include "trace.h"
111 #include "trace/control.h"
112 #include "qemu/queue.h"
113 #include "sysemu/cpus.h"
114 #include "sysemu/arch_init.h"
115 #include "qemu/osdep.h"
117 #include "ui/qemu-spice.h"
118 #include "qapi/string-input-visitor.h"
119 #include "qom/object_interfaces.h"
121 #define DEFAULT_RAM_SIZE 128
123 #define MAX_VIRTIO_CONSOLES 1
124 #define MAX_SCLP_CONSOLES 1
126 static const char *data_dir[16];
127 static int data_dir_idx;
128 const char *bios_name = NULL;
129 enum vga_retrace_method vga_retrace_method = VGA_RETRACE_DUMB;
130 DisplayType display_type = DT_DEFAULT;
131 static int display_remote;
132 const char* keyboard_layout = NULL;
133 ram_addr_t ram_size;
134 const char *mem_path = NULL;
135 int mem_prealloc = 0; /* force preallocation of physical target memory */
136 int nb_nics;
137 NICInfo nd_table[MAX_NICS];
138 int autostart;
139 static int rtc_utc = 1;
140 static int rtc_date_offset = -1; /* -1 means no change */
141 QEMUClockType rtc_clock;
142 int vga_interface_type = VGA_NONE;
143 static int full_screen = 0;
144 static int no_frame = 0;
145 int no_quit = 0;
146 CharDriverState *serial_hds[MAX_SERIAL_PORTS];
147 CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
148 CharDriverState *virtcon_hds[MAX_VIRTIO_CONSOLES];
149 CharDriverState *sclp_hds[MAX_SCLP_CONSOLES];
150 int win2k_install_hack = 0;
151 int singlestep = 0;
152 int smp_cpus = 1;
153 int max_cpus = 0;
154 int smp_cores = 1;
155 int smp_threads = 1;
156 #ifdef CONFIG_VNC
157 const char *vnc_display;
158 #endif
159 int acpi_enabled = 1;
160 int no_hpet = 0;
161 int fd_bootchk = 1;
162 static int no_reboot;
163 int no_shutdown = 0;
164 int cursor_hide = 1;
165 int graphic_rotate = 0;
166 const char *watchdog;
167 QEMUOptionRom option_rom[MAX_OPTION_ROMS];
168 int nb_option_roms;
169 int semihosting_enabled = 0;
170 int old_param = 0;
171 const char *qemu_name;
172 int alt_grab = 0;
173 int ctrl_grab = 0;
174 unsigned int nb_prom_envs = 0;
175 const char *prom_envs[MAX_PROM_ENVS];
176 int boot_menu;
177 static bool boot_strict;
178 uint8_t *boot_splash_filedata;
179 size_t boot_splash_filedata_size;
180 uint8_t qemu_extra_params_fw[2];
182 typedef struct FWBootEntry FWBootEntry;
184 struct FWBootEntry {
185 QTAILQ_ENTRY(FWBootEntry) link;
186 int32_t bootindex;
187 DeviceState *dev;
188 char *suffix;
191 static QTAILQ_HEAD(, FWBootEntry) fw_boot_order =
192 QTAILQ_HEAD_INITIALIZER(fw_boot_order);
194 int nb_numa_nodes;
195 uint64_t node_mem[MAX_NODES];
196 unsigned long *node_cpumask[MAX_NODES];
198 uint8_t qemu_uuid[16];
199 bool qemu_uuid_set;
201 static QEMUBootSetHandler *boot_set_handler;
202 static void *boot_set_opaque;
204 static NotifierList exit_notifiers =
205 NOTIFIER_LIST_INITIALIZER(exit_notifiers);
207 static NotifierList machine_init_done_notifiers =
208 NOTIFIER_LIST_INITIALIZER(machine_init_done_notifiers);
210 static bool tcg_allowed = true;
211 bool xen_allowed;
212 uint32_t xen_domid;
213 enum xen_mode xen_mode = XEN_EMULATE;
214 static int tcg_tb_size;
216 static int has_defaults = 1;
217 static int default_serial = 1;
218 static int default_parallel = 1;
219 static int default_virtcon = 1;
220 static int default_sclp = 1;
221 static int default_monitor = 1;
222 static int default_floppy = 1;
223 static int default_cdrom = 1;
224 static int default_sdcard = 1;
225 static int default_vga = 1;
227 static struct {
228 const char *driver;
229 int *flag;
230 } default_list[] = {
231 { .driver = "isa-serial", .flag = &default_serial },
232 { .driver = "isa-parallel", .flag = &default_parallel },
233 { .driver = "isa-fdc", .flag = &default_floppy },
234 { .driver = "ide-cd", .flag = &default_cdrom },
235 { .driver = "ide-hd", .flag = &default_cdrom },
236 { .driver = "ide-drive", .flag = &default_cdrom },
237 { .driver = "scsi-cd", .flag = &default_cdrom },
238 { .driver = "virtio-serial-pci", .flag = &default_virtcon },
239 { .driver = "virtio-serial-s390", .flag = &default_virtcon },
240 { .driver = "virtio-serial", .flag = &default_virtcon },
241 { .driver = "VGA", .flag = &default_vga },
242 { .driver = "isa-vga", .flag = &default_vga },
243 { .driver = "cirrus-vga", .flag = &default_vga },
244 { .driver = "isa-cirrus-vga", .flag = &default_vga },
245 { .driver = "vmware-svga", .flag = &default_vga },
246 { .driver = "qxl-vga", .flag = &default_vga },
249 static QemuOptsList qemu_rtc_opts = {
250 .name = "rtc",
251 .head = QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts.head),
252 .desc = {
254 .name = "base",
255 .type = QEMU_OPT_STRING,
257 .name = "clock",
258 .type = QEMU_OPT_STRING,
260 .name = "driftfix",
261 .type = QEMU_OPT_STRING,
263 { /* end of list */ }
267 static QemuOptsList qemu_sandbox_opts = {
268 .name = "sandbox",
269 .implied_opt_name = "enable",
270 .head = QTAILQ_HEAD_INITIALIZER(qemu_sandbox_opts.head),
271 .desc = {
273 .name = "enable",
274 .type = QEMU_OPT_BOOL,
276 { /* end of list */ }
280 static QemuOptsList qemu_trace_opts = {
281 .name = "trace",
282 .implied_opt_name = "trace",
283 .head = QTAILQ_HEAD_INITIALIZER(qemu_trace_opts.head),
284 .desc = {
286 .name = "events",
287 .type = QEMU_OPT_STRING,
289 .name = "file",
290 .type = QEMU_OPT_STRING,
292 { /* end of list */ }
296 static QemuOptsList qemu_option_rom_opts = {
297 .name = "option-rom",
298 .implied_opt_name = "romfile",
299 .head = QTAILQ_HEAD_INITIALIZER(qemu_option_rom_opts.head),
300 .desc = {
302 .name = "bootindex",
303 .type = QEMU_OPT_NUMBER,
304 }, {
305 .name = "romfile",
306 .type = QEMU_OPT_STRING,
308 { /* end of list */ }
312 static QemuOptsList qemu_machine_opts = {
313 .name = "machine",
314 .implied_opt_name = "type",
315 .merge_lists = true,
316 .head = QTAILQ_HEAD_INITIALIZER(qemu_machine_opts.head),
317 .desc = {
319 .name = "type",
320 .type = QEMU_OPT_STRING,
321 .help = "emulated machine"
322 }, {
323 .name = "accel",
324 .type = QEMU_OPT_STRING,
325 .help = "accelerator list",
326 }, {
327 .name = "kernel_irqchip",
328 .type = QEMU_OPT_BOOL,
329 .help = "use KVM in-kernel irqchip",
330 }, {
331 .name = "kvm_shadow_mem",
332 .type = QEMU_OPT_SIZE,
333 .help = "KVM shadow MMU size",
334 }, {
335 .name = "kernel",
336 .type = QEMU_OPT_STRING,
337 .help = "Linux kernel image file",
338 }, {
339 .name = "initrd",
340 .type = QEMU_OPT_STRING,
341 .help = "Linux initial ramdisk file",
342 }, {
343 .name = "append",
344 .type = QEMU_OPT_STRING,
345 .help = "Linux kernel command line",
346 }, {
347 .name = "dtb",
348 .type = QEMU_OPT_STRING,
349 .help = "Linux kernel device tree file",
350 }, {
351 .name = "dumpdtb",
352 .type = QEMU_OPT_STRING,
353 .help = "Dump current dtb to a file and quit",
354 }, {
355 .name = "phandle_start",
356 .type = QEMU_OPT_NUMBER,
357 .help = "The first phandle ID we may generate dynamically",
358 }, {
359 .name = "dt_compatible",
360 .type = QEMU_OPT_STRING,
361 .help = "Overrides the \"compatible\" property of the dt root node",
362 }, {
363 .name = "dump-guest-core",
364 .type = QEMU_OPT_BOOL,
365 .help = "Include guest memory in a core dump",
366 }, {
367 .name = "mem-merge",
368 .type = QEMU_OPT_BOOL,
369 .help = "enable/disable memory merge support",
371 .name = "usb",
372 .type = QEMU_OPT_BOOL,
373 .help = "Set on/off to enable/disable usb",
375 .name = "firmware",
376 .type = QEMU_OPT_STRING,
377 .help = "firmware image",
379 .name = "kvm-type",
380 .type = QEMU_OPT_STRING,
381 .help = "Specifies the KVM virtualization mode (HV, PR)",
383 { /* End of list */ }
387 static QemuOptsList qemu_boot_opts = {
388 .name = "boot-opts",
389 .implied_opt_name = "order",
390 .merge_lists = true,
391 .head = QTAILQ_HEAD_INITIALIZER(qemu_boot_opts.head),
392 .desc = {
394 .name = "order",
395 .type = QEMU_OPT_STRING,
396 }, {
397 .name = "once",
398 .type = QEMU_OPT_STRING,
399 }, {
400 .name = "menu",
401 .type = QEMU_OPT_BOOL,
402 }, {
403 .name = "splash",
404 .type = QEMU_OPT_STRING,
405 }, {
406 .name = "splash-time",
407 .type = QEMU_OPT_STRING,
408 }, {
409 .name = "reboot-timeout",
410 .type = QEMU_OPT_STRING,
411 }, {
412 .name = "strict",
413 .type = QEMU_OPT_BOOL,
415 { /*End of list */ }
419 static QemuOptsList qemu_add_fd_opts = {
420 .name = "add-fd",
421 .head = QTAILQ_HEAD_INITIALIZER(qemu_add_fd_opts.head),
422 .desc = {
424 .name = "fd",
425 .type = QEMU_OPT_NUMBER,
426 .help = "file descriptor of which a duplicate is added to fd set",
428 .name = "set",
429 .type = QEMU_OPT_NUMBER,
430 .help = "ID of the fd set to add fd to",
432 .name = "opaque",
433 .type = QEMU_OPT_STRING,
434 .help = "free-form string used to describe fd",
436 { /* end of list */ }
440 static QemuOptsList qemu_object_opts = {
441 .name = "object",
442 .implied_opt_name = "qom-type",
443 .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head),
444 .desc = {
449 static QemuOptsList qemu_tpmdev_opts = {
450 .name = "tpmdev",
451 .implied_opt_name = "type",
452 .head = QTAILQ_HEAD_INITIALIZER(qemu_tpmdev_opts.head),
453 .desc = {
454 /* options are defined in the TPM backends */
455 { /* end of list */ }
459 static QemuOptsList qemu_realtime_opts = {
460 .name = "realtime",
461 .head = QTAILQ_HEAD_INITIALIZER(qemu_realtime_opts.head),
462 .desc = {
464 .name = "mlock",
465 .type = QEMU_OPT_BOOL,
467 { /* end of list */ }
471 static QemuOptsList qemu_msg_opts = {
472 .name = "msg",
473 .head = QTAILQ_HEAD_INITIALIZER(qemu_msg_opts.head),
474 .desc = {
476 .name = "timestamp",
477 .type = QEMU_OPT_BOOL,
479 { /* end of list */ }
483 static QemuOptsList qemu_name_opts = {
484 .name = "name",
485 .implied_opt_name = "guest",
486 .merge_lists = true,
487 .head = QTAILQ_HEAD_INITIALIZER(qemu_name_opts.head),
488 .desc = {
490 .name = "guest",
491 .type = QEMU_OPT_STRING,
492 .help = "Sets the name of the guest.\n"
493 "This name will be displayed in the SDL window caption.\n"
494 "The name will also be used for the VNC server",
495 }, {
496 .name = "process",
497 .type = QEMU_OPT_STRING,
498 .help = "Sets the name of the QEMU process, as shown in top etc",
499 }, {
500 .name = "debug-threads",
501 .type = QEMU_OPT_BOOL,
502 .help = "When enabled, name the individual threads; defaults off.\n"
503 "NOTE: The thread names are for debugging and not a\n"
504 "stable API.",
506 { /* End of list */ }
511 * Get machine options
513 * Returns: machine options (never null).
515 QemuOpts *qemu_get_machine_opts(void)
517 QemuOptsList *list;
518 QemuOpts *opts;
520 list = qemu_find_opts("machine");
521 assert(list);
522 opts = qemu_opts_find(list, NULL);
523 if (!opts) {
524 opts = qemu_opts_create(list, NULL, 0, &error_abort);
526 return opts;
529 const char *qemu_get_vm_name(void)
531 return qemu_name;
534 static void res_free(void)
536 if (boot_splash_filedata != NULL) {
537 g_free(boot_splash_filedata);
538 boot_splash_filedata = NULL;
542 static int default_driver_check(QemuOpts *opts, void *opaque)
544 const char *driver = qemu_opt_get(opts, "driver");
545 int i;
547 if (!driver)
548 return 0;
549 for (i = 0; i < ARRAY_SIZE(default_list); i++) {
550 if (strcmp(default_list[i].driver, driver) != 0)
551 continue;
552 *(default_list[i].flag) = 0;
554 return 0;
557 /***********************************************************/
558 /* QEMU state */
560 static RunState current_run_state = RUN_STATE_PRELAUNCH;
562 typedef struct {
563 RunState from;
564 RunState to;
565 } RunStateTransition;
567 static const RunStateTransition runstate_transitions_def[] = {
568 /* from -> to */
569 { RUN_STATE_DEBUG, RUN_STATE_RUNNING },
570 { RUN_STATE_DEBUG, RUN_STATE_FINISH_MIGRATE },
572 { RUN_STATE_INMIGRATE, RUN_STATE_RUNNING },
573 { RUN_STATE_INMIGRATE, RUN_STATE_PAUSED },
575 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_PAUSED },
576 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_FINISH_MIGRATE },
578 { RUN_STATE_IO_ERROR, RUN_STATE_RUNNING },
579 { RUN_STATE_IO_ERROR, RUN_STATE_FINISH_MIGRATE },
581 { RUN_STATE_PAUSED, RUN_STATE_RUNNING },
582 { RUN_STATE_PAUSED, RUN_STATE_FINISH_MIGRATE },
584 { RUN_STATE_POSTMIGRATE, RUN_STATE_RUNNING },
585 { RUN_STATE_POSTMIGRATE, RUN_STATE_FINISH_MIGRATE },
587 { RUN_STATE_PRELAUNCH, RUN_STATE_RUNNING },
588 { RUN_STATE_PRELAUNCH, RUN_STATE_FINISH_MIGRATE },
589 { RUN_STATE_PRELAUNCH, RUN_STATE_INMIGRATE },
591 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_RUNNING },
592 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_POSTMIGRATE },
594 { RUN_STATE_RESTORE_VM, RUN_STATE_RUNNING },
596 { RUN_STATE_RUNNING, RUN_STATE_DEBUG },
597 { RUN_STATE_RUNNING, RUN_STATE_INTERNAL_ERROR },
598 { RUN_STATE_RUNNING, RUN_STATE_IO_ERROR },
599 { RUN_STATE_RUNNING, RUN_STATE_PAUSED },
600 { RUN_STATE_RUNNING, RUN_STATE_FINISH_MIGRATE },
601 { RUN_STATE_RUNNING, RUN_STATE_RESTORE_VM },
602 { RUN_STATE_RUNNING, RUN_STATE_SAVE_VM },
603 { RUN_STATE_RUNNING, RUN_STATE_SHUTDOWN },
604 { RUN_STATE_RUNNING, RUN_STATE_WATCHDOG },
605 { RUN_STATE_RUNNING, RUN_STATE_GUEST_PANICKED },
607 { RUN_STATE_SAVE_VM, RUN_STATE_RUNNING },
609 { RUN_STATE_SHUTDOWN, RUN_STATE_PAUSED },
610 { RUN_STATE_SHUTDOWN, RUN_STATE_FINISH_MIGRATE },
612 { RUN_STATE_DEBUG, RUN_STATE_SUSPENDED },
613 { RUN_STATE_RUNNING, RUN_STATE_SUSPENDED },
614 { RUN_STATE_SUSPENDED, RUN_STATE_RUNNING },
615 { RUN_STATE_SUSPENDED, RUN_STATE_FINISH_MIGRATE },
617 { RUN_STATE_WATCHDOG, RUN_STATE_RUNNING },
618 { RUN_STATE_WATCHDOG, RUN_STATE_FINISH_MIGRATE },
620 { RUN_STATE_GUEST_PANICKED, RUN_STATE_RUNNING },
621 { RUN_STATE_GUEST_PANICKED, RUN_STATE_FINISH_MIGRATE },
623 { RUN_STATE_MAX, RUN_STATE_MAX },
626 static bool runstate_valid_transitions[RUN_STATE_MAX][RUN_STATE_MAX];
628 bool runstate_check(RunState state)
630 return current_run_state == state;
633 static void runstate_init(void)
635 const RunStateTransition *p;
637 memset(&runstate_valid_transitions, 0, sizeof(runstate_valid_transitions));
639 for (p = &runstate_transitions_def[0]; p->from != RUN_STATE_MAX; p++) {
640 runstate_valid_transitions[p->from][p->to] = true;
644 /* This function will abort() on invalid state transitions */
645 void runstate_set(RunState new_state)
647 assert(new_state < RUN_STATE_MAX);
649 if (!runstate_valid_transitions[current_run_state][new_state]) {
650 fprintf(stderr, "ERROR: invalid runstate transition: '%s' -> '%s'\n",
651 RunState_lookup[current_run_state],
652 RunState_lookup[new_state]);
653 abort();
655 trace_runstate_set(new_state);
656 current_run_state = new_state;
659 int runstate_is_running(void)
661 return runstate_check(RUN_STATE_RUNNING);
664 bool runstate_needs_reset(void)
666 return runstate_check(RUN_STATE_INTERNAL_ERROR) ||
667 runstate_check(RUN_STATE_SHUTDOWN);
670 StatusInfo *qmp_query_status(Error **errp)
672 StatusInfo *info = g_malloc0(sizeof(*info));
674 info->running = runstate_is_running();
675 info->singlestep = singlestep;
676 info->status = current_run_state;
678 return info;
681 /***********************************************************/
682 /* real time host monotonic timer */
684 /***********************************************************/
685 /* host time/date access */
686 void qemu_get_timedate(struct tm *tm, int offset)
688 time_t ti;
690 time(&ti);
691 ti += offset;
692 if (rtc_date_offset == -1) {
693 if (rtc_utc)
694 gmtime_r(&ti, tm);
695 else
696 localtime_r(&ti, tm);
697 } else {
698 ti -= rtc_date_offset;
699 gmtime_r(&ti, tm);
703 int qemu_timedate_diff(struct tm *tm)
705 time_t seconds;
707 if (rtc_date_offset == -1)
708 if (rtc_utc)
709 seconds = mktimegm(tm);
710 else {
711 struct tm tmp = *tm;
712 tmp.tm_isdst = -1; /* use timezone to figure it out */
713 seconds = mktime(&tmp);
715 else
716 seconds = mktimegm(tm) + rtc_date_offset;
718 return seconds - time(NULL);
721 void rtc_change_mon_event(struct tm *tm)
723 QObject *data;
725 data = qobject_from_jsonf("{ 'offset': %d }", qemu_timedate_diff(tm));
726 monitor_protocol_event(QEVENT_RTC_CHANGE, data);
727 qobject_decref(data);
730 static void configure_rtc_date_offset(const char *startdate, int legacy)
732 time_t rtc_start_date;
733 struct tm tm;
735 if (!strcmp(startdate, "now") && legacy) {
736 rtc_date_offset = -1;
737 } else {
738 if (sscanf(startdate, "%d-%d-%dT%d:%d:%d",
739 &tm.tm_year,
740 &tm.tm_mon,
741 &tm.tm_mday,
742 &tm.tm_hour,
743 &tm.tm_min,
744 &tm.tm_sec) == 6) {
745 /* OK */
746 } else if (sscanf(startdate, "%d-%d-%d",
747 &tm.tm_year,
748 &tm.tm_mon,
749 &tm.tm_mday) == 3) {
750 tm.tm_hour = 0;
751 tm.tm_min = 0;
752 tm.tm_sec = 0;
753 } else {
754 goto date_fail;
756 tm.tm_year -= 1900;
757 tm.tm_mon--;
758 rtc_start_date = mktimegm(&tm);
759 if (rtc_start_date == -1) {
760 date_fail:
761 fprintf(stderr, "Invalid date format. Valid formats are:\n"
762 "'2006-06-17T16:01:21' or '2006-06-17'\n");
763 exit(1);
765 rtc_date_offset = time(NULL) - rtc_start_date;
769 static void configure_rtc(QemuOpts *opts)
771 const char *value;
773 value = qemu_opt_get(opts, "base");
774 if (value) {
775 if (!strcmp(value, "utc")) {
776 rtc_utc = 1;
777 } else if (!strcmp(value, "localtime")) {
778 rtc_utc = 0;
779 } else {
780 configure_rtc_date_offset(value, 0);
783 value = qemu_opt_get(opts, "clock");
784 if (value) {
785 if (!strcmp(value, "host")) {
786 rtc_clock = QEMU_CLOCK_HOST;
787 } else if (!strcmp(value, "rt")) {
788 rtc_clock = QEMU_CLOCK_REALTIME;
789 } else if (!strcmp(value, "vm")) {
790 rtc_clock = QEMU_CLOCK_VIRTUAL;
791 } else {
792 fprintf(stderr, "qemu: invalid option value '%s'\n", value);
793 exit(1);
796 value = qemu_opt_get(opts, "driftfix");
797 if (value) {
798 if (!strcmp(value, "slew")) {
799 static GlobalProperty slew_lost_ticks[] = {
801 .driver = "mc146818rtc",
802 .property = "lost_tick_policy",
803 .value = "slew",
805 { /* end of list */ }
808 qdev_prop_register_global_list(slew_lost_ticks);
809 } else if (!strcmp(value, "none")) {
810 /* discard is default */
811 } else {
812 fprintf(stderr, "qemu: invalid option value '%s'\n", value);
813 exit(1);
818 /***********************************************************/
819 /* Bluetooth support */
820 static int nb_hcis;
821 static int cur_hci;
822 static struct HCIInfo *hci_table[MAX_NICS];
824 struct HCIInfo *qemu_next_hci(void)
826 if (cur_hci == nb_hcis)
827 return &null_hci;
829 return hci_table[cur_hci++];
832 static int bt_hci_parse(const char *str)
834 struct HCIInfo *hci;
835 bdaddr_t bdaddr;
837 if (nb_hcis >= MAX_NICS) {
838 fprintf(stderr, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS);
839 return -1;
842 hci = hci_init(str);
843 if (!hci)
844 return -1;
846 bdaddr.b[0] = 0x52;
847 bdaddr.b[1] = 0x54;
848 bdaddr.b[2] = 0x00;
849 bdaddr.b[3] = 0x12;
850 bdaddr.b[4] = 0x34;
851 bdaddr.b[5] = 0x56 + nb_hcis;
852 hci->bdaddr_set(hci, bdaddr.b);
854 hci_table[nb_hcis++] = hci;
856 return 0;
859 static void bt_vhci_add(int vlan_id)
861 struct bt_scatternet_s *vlan = qemu_find_bt_vlan(vlan_id);
863 if (!vlan->slave)
864 fprintf(stderr, "qemu: warning: adding a VHCI to "
865 "an empty scatternet %i\n", vlan_id);
867 bt_vhci_init(bt_new_hci(vlan));
870 static struct bt_device_s *bt_device_add(const char *opt)
872 struct bt_scatternet_s *vlan;
873 int vlan_id = 0;
874 char *endp = strstr(opt, ",vlan=");
875 int len = (endp ? endp - opt : strlen(opt)) + 1;
876 char devname[10];
878 pstrcpy(devname, MIN(sizeof(devname), len), opt);
880 if (endp) {
881 vlan_id = strtol(endp + 6, &endp, 0);
882 if (*endp) {
883 fprintf(stderr, "qemu: unrecognised bluetooth vlan Id\n");
884 return 0;
888 vlan = qemu_find_bt_vlan(vlan_id);
890 if (!vlan->slave)
891 fprintf(stderr, "qemu: warning: adding a slave device to "
892 "an empty scatternet %i\n", vlan_id);
894 if (!strcmp(devname, "keyboard"))
895 return bt_keyboard_init(vlan);
897 fprintf(stderr, "qemu: unsupported bluetooth device `%s'\n", devname);
898 return 0;
901 static int bt_parse(const char *opt)
903 const char *endp, *p;
904 int vlan;
906 if (strstart(opt, "hci", &endp)) {
907 if (!*endp || *endp == ',') {
908 if (*endp)
909 if (!strstart(endp, ",vlan=", 0))
910 opt = endp + 1;
912 return bt_hci_parse(opt);
914 } else if (strstart(opt, "vhci", &endp)) {
915 if (!*endp || *endp == ',') {
916 if (*endp) {
917 if (strstart(endp, ",vlan=", &p)) {
918 vlan = strtol(p, (char **) &endp, 0);
919 if (*endp) {
920 fprintf(stderr, "qemu: bad scatternet '%s'\n", p);
921 return 1;
923 } else {
924 fprintf(stderr, "qemu: bad parameter '%s'\n", endp + 1);
925 return 1;
927 } else
928 vlan = 0;
930 bt_vhci_add(vlan);
931 return 0;
933 } else if (strstart(opt, "device:", &endp))
934 return !bt_device_add(endp);
936 fprintf(stderr, "qemu: bad bluetooth parameter '%s'\n", opt);
937 return 1;
940 static int parse_sandbox(QemuOpts *opts, void *opaque)
942 /* FIXME: change this to true for 1.3 */
943 if (qemu_opt_get_bool(opts, "enable", false)) {
944 #ifdef CONFIG_SECCOMP
945 if (seccomp_start() < 0) {
946 qerror_report(ERROR_CLASS_GENERIC_ERROR,
947 "failed to install seccomp syscall filter in the kernel");
948 return -1;
950 #else
951 qerror_report(ERROR_CLASS_GENERIC_ERROR,
952 "sandboxing request but seccomp is not compiled into this build");
953 return -1;
954 #endif
957 return 0;
960 static void parse_name(QemuOpts *opts)
962 const char *proc_name;
964 if (qemu_opt_get(opts, "debug-threads")) {
965 qemu_thread_naming(qemu_opt_get_bool(opts, "debug-threads", false));
967 qemu_name = qemu_opt_get(opts, "guest");
969 proc_name = qemu_opt_get(opts, "process");
970 if (proc_name) {
971 os_set_proc_name(proc_name);
975 bool usb_enabled(bool default_usb)
977 return qemu_opt_get_bool(qemu_get_machine_opts(), "usb",
978 has_defaults && default_usb);
981 #ifndef _WIN32
982 static int parse_add_fd(QemuOpts *opts, void *opaque)
984 int fd, dupfd, flags;
985 int64_t fdset_id;
986 const char *fd_opaque = NULL;
988 fd = qemu_opt_get_number(opts, "fd", -1);
989 fdset_id = qemu_opt_get_number(opts, "set", -1);
990 fd_opaque = qemu_opt_get(opts, "opaque");
992 if (fd < 0) {
993 qerror_report(ERROR_CLASS_GENERIC_ERROR,
994 "fd option is required and must be non-negative");
995 return -1;
998 if (fd <= STDERR_FILENO) {
999 qerror_report(ERROR_CLASS_GENERIC_ERROR,
1000 "fd cannot be a standard I/O stream");
1001 return -1;
1005 * All fds inherited across exec() necessarily have FD_CLOEXEC
1006 * clear, while qemu sets FD_CLOEXEC on all other fds used internally.
1008 flags = fcntl(fd, F_GETFD);
1009 if (flags == -1 || (flags & FD_CLOEXEC)) {
1010 qerror_report(ERROR_CLASS_GENERIC_ERROR,
1011 "fd is not valid or already in use");
1012 return -1;
1015 if (fdset_id < 0) {
1016 qerror_report(ERROR_CLASS_GENERIC_ERROR,
1017 "set option is required and must be non-negative");
1018 return -1;
1021 #ifdef F_DUPFD_CLOEXEC
1022 dupfd = fcntl(fd, F_DUPFD_CLOEXEC, 0);
1023 #else
1024 dupfd = dup(fd);
1025 if (dupfd != -1) {
1026 qemu_set_cloexec(dupfd);
1028 #endif
1029 if (dupfd == -1) {
1030 qerror_report(ERROR_CLASS_GENERIC_ERROR,
1031 "Error duplicating fd: %s", strerror(errno));
1032 return -1;
1035 /* add the duplicate fd, and optionally the opaque string, to the fd set */
1036 monitor_fdset_add_fd(dupfd, true, fdset_id, fd_opaque ? true : false,
1037 fd_opaque, NULL);
1039 return 0;
1042 static int cleanup_add_fd(QemuOpts *opts, void *opaque)
1044 int fd;
1046 fd = qemu_opt_get_number(opts, "fd", -1);
1047 close(fd);
1049 return 0;
1051 #endif
1053 /***********************************************************/
1054 /* QEMU Block devices */
1056 #define HD_OPTS "media=disk"
1057 #define CDROM_OPTS "media=cdrom"
1058 #define FD_OPTS ""
1059 #define PFLASH_OPTS ""
1060 #define MTD_OPTS ""
1061 #define SD_OPTS ""
1063 static int drive_init_func(QemuOpts *opts, void *opaque)
1065 BlockInterfaceType *block_default_type = opaque;
1067 return drive_init(opts, *block_default_type) == NULL;
1070 static int drive_enable_snapshot(QemuOpts *opts, void *opaque)
1072 if (NULL == qemu_opt_get(opts, "snapshot")) {
1073 qemu_opt_set(opts, "snapshot", "on");
1075 return 0;
1078 static void default_drive(int enable, int snapshot, BlockInterfaceType type,
1079 int index, const char *optstr)
1081 QemuOpts *opts;
1083 if (!enable || drive_get_by_index(type, index)) {
1084 return;
1087 opts = drive_add(type, index, NULL, optstr);
1088 if (snapshot) {
1089 drive_enable_snapshot(opts, NULL);
1091 if (!drive_init(opts, type)) {
1092 exit(1);
1096 void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque)
1098 boot_set_handler = func;
1099 boot_set_opaque = opaque;
1102 int qemu_boot_set(const char *boot_order)
1104 if (!boot_set_handler) {
1105 return -EINVAL;
1107 return boot_set_handler(boot_set_opaque, boot_order);
1110 static void validate_bootdevices(const char *devices)
1112 /* We just do some generic consistency checks */
1113 const char *p;
1114 int bitmap = 0;
1116 for (p = devices; *p != '\0'; p++) {
1117 /* Allowed boot devices are:
1118 * a-b: floppy disk drives
1119 * c-f: IDE disk drives
1120 * g-m: machine implementation dependent drives
1121 * n-p: network devices
1122 * It's up to each machine implementation to check if the given boot
1123 * devices match the actual hardware implementation and firmware
1124 * features.
1126 if (*p < 'a' || *p > 'p') {
1127 fprintf(stderr, "Invalid boot device '%c'\n", *p);
1128 exit(1);
1130 if (bitmap & (1 << (*p - 'a'))) {
1131 fprintf(stderr, "Boot device '%c' was given twice\n", *p);
1132 exit(1);
1134 bitmap |= 1 << (*p - 'a');
1138 static void restore_boot_order(void *opaque)
1140 char *normal_boot_order = opaque;
1141 static int first = 1;
1143 /* Restore boot order and remove ourselves after the first boot */
1144 if (first) {
1145 first = 0;
1146 return;
1149 qemu_boot_set(normal_boot_order);
1151 qemu_unregister_reset(restore_boot_order, normal_boot_order);
1152 g_free(normal_boot_order);
1155 void add_boot_device_path(int32_t bootindex, DeviceState *dev,
1156 const char *suffix)
1158 FWBootEntry *node, *i;
1160 if (bootindex < 0) {
1161 return;
1164 assert(dev != NULL || suffix != NULL);
1166 node = g_malloc0(sizeof(FWBootEntry));
1167 node->bootindex = bootindex;
1168 node->suffix = g_strdup(suffix);
1169 node->dev = dev;
1171 QTAILQ_FOREACH(i, &fw_boot_order, link) {
1172 if (i->bootindex == bootindex) {
1173 fprintf(stderr, "Two devices with same boot index %d\n", bootindex);
1174 exit(1);
1175 } else if (i->bootindex < bootindex) {
1176 continue;
1178 QTAILQ_INSERT_BEFORE(i, node, link);
1179 return;
1181 QTAILQ_INSERT_TAIL(&fw_boot_order, node, link);
1184 DeviceState *get_boot_device(uint32_t position)
1186 uint32_t counter = 0;
1187 FWBootEntry *i = NULL;
1188 DeviceState *res = NULL;
1190 if (!QTAILQ_EMPTY(&fw_boot_order)) {
1191 QTAILQ_FOREACH(i, &fw_boot_order, link) {
1192 if (counter == position) {
1193 res = i->dev;
1194 break;
1196 counter++;
1199 return res;
1203 * This function returns null terminated string that consist of new line
1204 * separated device paths.
1206 * memory pointed by "size" is assigned total length of the array in bytes
1209 char *get_boot_devices_list(size_t *size)
1211 FWBootEntry *i;
1212 size_t total = 0;
1213 char *list = NULL;
1215 QTAILQ_FOREACH(i, &fw_boot_order, link) {
1216 char *devpath = NULL, *bootpath;
1217 size_t len;
1219 if (i->dev) {
1220 devpath = qdev_get_fw_dev_path(i->dev);
1221 assert(devpath);
1224 if (i->suffix && devpath) {
1225 size_t bootpathlen = strlen(devpath) + strlen(i->suffix) + 1;
1227 bootpath = g_malloc(bootpathlen);
1228 snprintf(bootpath, bootpathlen, "%s%s", devpath, i->suffix);
1229 g_free(devpath);
1230 } else if (devpath) {
1231 bootpath = devpath;
1232 } else {
1233 assert(i->suffix);
1234 bootpath = g_strdup(i->suffix);
1237 if (total) {
1238 list[total-1] = '\n';
1240 len = strlen(bootpath) + 1;
1241 list = g_realloc(list, total + len);
1242 memcpy(&list[total], bootpath, len);
1243 total += len;
1244 g_free(bootpath);
1247 *size = total;
1249 if (boot_strict && *size > 0) {
1250 list[total-1] = '\n';
1251 list = g_realloc(list, total + 5);
1252 memcpy(&list[total], "HALT", 5);
1253 *size = total + 5;
1255 return list;
1258 static void numa_node_parse_cpus(int nodenr, const char *cpus)
1260 char *endptr;
1261 unsigned long long value, endvalue;
1263 /* Empty CPU range strings will be considered valid, they will simply
1264 * not set any bit in the CPU bitmap.
1266 if (!*cpus) {
1267 return;
1270 if (parse_uint(cpus, &value, &endptr, 10) < 0) {
1271 goto error;
1273 if (*endptr == '-') {
1274 if (parse_uint_full(endptr + 1, &endvalue, 10) < 0) {
1275 goto error;
1277 } else if (*endptr == '\0') {
1278 endvalue = value;
1279 } else {
1280 goto error;
1283 if (endvalue >= MAX_CPUMASK_BITS) {
1284 endvalue = MAX_CPUMASK_BITS - 1;
1285 fprintf(stderr,
1286 "qemu: NUMA: A max of %d VCPUs are supported\n",
1287 MAX_CPUMASK_BITS);
1290 if (endvalue < value) {
1291 goto error;
1294 bitmap_set(node_cpumask[nodenr], value, endvalue-value+1);
1295 return;
1297 error:
1298 fprintf(stderr, "qemu: Invalid NUMA CPU range: %s\n", cpus);
1299 exit(1);
1302 static void numa_add(const char *optarg)
1304 char option[128];
1305 char *endptr;
1306 unsigned long long nodenr;
1308 optarg = get_opt_name(option, 128, optarg, ',');
1309 if (*optarg == ',') {
1310 optarg++;
1312 if (!strcmp(option, "node")) {
1314 if (nb_numa_nodes >= MAX_NODES) {
1315 fprintf(stderr, "qemu: too many NUMA nodes\n");
1316 exit(1);
1319 if (get_param_value(option, 128, "nodeid", optarg) == 0) {
1320 nodenr = nb_numa_nodes;
1321 } else {
1322 if (parse_uint_full(option, &nodenr, 10) < 0) {
1323 fprintf(stderr, "qemu: Invalid NUMA nodeid: %s\n", option);
1324 exit(1);
1328 if (nodenr >= MAX_NODES) {
1329 fprintf(stderr, "qemu: invalid NUMA nodeid: %llu\n", nodenr);
1330 exit(1);
1333 if (get_param_value(option, 128, "mem", optarg) == 0) {
1334 node_mem[nodenr] = 0;
1335 } else {
1336 int64_t sval;
1337 sval = strtosz(option, &endptr);
1338 if (sval < 0 || *endptr) {
1339 fprintf(stderr, "qemu: invalid numa mem size: %s\n", optarg);
1340 exit(1);
1342 node_mem[nodenr] = sval;
1344 if (get_param_value(option, 128, "cpus", optarg) != 0) {
1345 numa_node_parse_cpus(nodenr, option);
1347 nb_numa_nodes++;
1348 } else {
1349 fprintf(stderr, "Invalid -numa option: %s\n", option);
1350 exit(1);
1354 static QemuOptsList qemu_smp_opts = {
1355 .name = "smp-opts",
1356 .implied_opt_name = "cpus",
1357 .merge_lists = true,
1358 .head = QTAILQ_HEAD_INITIALIZER(qemu_smp_opts.head),
1359 .desc = {
1361 .name = "cpus",
1362 .type = QEMU_OPT_NUMBER,
1363 }, {
1364 .name = "sockets",
1365 .type = QEMU_OPT_NUMBER,
1366 }, {
1367 .name = "cores",
1368 .type = QEMU_OPT_NUMBER,
1369 }, {
1370 .name = "threads",
1371 .type = QEMU_OPT_NUMBER,
1372 }, {
1373 .name = "maxcpus",
1374 .type = QEMU_OPT_NUMBER,
1376 { /*End of list */ }
1380 static void smp_parse(QemuOpts *opts)
1382 if (opts) {
1384 unsigned cpus = qemu_opt_get_number(opts, "cpus", 0);
1385 unsigned sockets = qemu_opt_get_number(opts, "sockets", 0);
1386 unsigned cores = qemu_opt_get_number(opts, "cores", 0);
1387 unsigned threads = qemu_opt_get_number(opts, "threads", 0);
1389 /* compute missing values, prefer sockets over cores over threads */
1390 if (cpus == 0 || sockets == 0) {
1391 sockets = sockets > 0 ? sockets : 1;
1392 cores = cores > 0 ? cores : 1;
1393 threads = threads > 0 ? threads : 1;
1394 if (cpus == 0) {
1395 cpus = cores * threads * sockets;
1397 } else {
1398 if (cores == 0) {
1399 threads = threads > 0 ? threads : 1;
1400 cores = cpus / (sockets * threads);
1401 } else {
1402 threads = cpus / (cores * sockets);
1406 max_cpus = qemu_opt_get_number(opts, "maxcpus", 0);
1408 smp_cpus = cpus;
1409 smp_cores = cores > 0 ? cores : 1;
1410 smp_threads = threads > 0 ? threads : 1;
1414 if (max_cpus == 0) {
1415 max_cpus = smp_cpus;
1418 if (max_cpus > 255) {
1419 fprintf(stderr, "Unsupported number of maxcpus\n");
1420 exit(1);
1422 if (max_cpus < smp_cpus) {
1423 fprintf(stderr, "maxcpus must be equal to or greater than smp\n");
1424 exit(1);
1429 static void configure_realtime(QemuOpts *opts)
1431 bool enable_mlock;
1433 enable_mlock = qemu_opt_get_bool(opts, "mlock", true);
1435 if (enable_mlock) {
1436 if (os_mlock() < 0) {
1437 fprintf(stderr, "qemu: locking memory failed\n");
1438 exit(1);
1444 static void configure_msg(QemuOpts *opts)
1446 enable_timestamp_msg = qemu_opt_get_bool(opts, "timestamp", true);
1449 /***********************************************************/
1450 /* USB devices */
1452 static int usb_device_add(const char *devname)
1454 USBDevice *dev = NULL;
1455 #ifndef CONFIG_LINUX
1456 const char *p;
1457 #endif
1459 if (!usb_enabled(false)) {
1460 return -1;
1463 /* drivers with .usbdevice_name entry in USBDeviceInfo */
1464 dev = usbdevice_create(devname);
1465 if (dev)
1466 goto done;
1468 /* the other ones */
1469 #ifndef CONFIG_LINUX
1470 /* only the linux version is qdev-ified, usb-bsd still needs this */
1471 if (strstart(devname, "host:", &p)) {
1472 dev = usb_host_device_open(usb_bus_find(-1), p);
1474 #endif
1475 if (!dev)
1476 return -1;
1478 done:
1479 return 0;
1482 static int usb_device_del(const char *devname)
1484 int bus_num, addr;
1485 const char *p;
1487 if (strstart(devname, "host:", &p)) {
1488 return -1;
1491 if (!usb_enabled(false)) {
1492 return -1;
1495 p = strchr(devname, '.');
1496 if (!p)
1497 return -1;
1498 bus_num = strtoul(devname, NULL, 0);
1499 addr = strtoul(p + 1, NULL, 0);
1501 return usb_device_delete_addr(bus_num, addr);
1504 static int usb_parse(const char *cmdline)
1506 int r;
1507 r = usb_device_add(cmdline);
1508 if (r < 0) {
1509 fprintf(stderr, "qemu: could not add USB device '%s'\n", cmdline);
1511 return r;
1514 void do_usb_add(Monitor *mon, const QDict *qdict)
1516 const char *devname = qdict_get_str(qdict, "devname");
1517 if (usb_device_add(devname) < 0) {
1518 error_report("could not add USB device '%s'", devname);
1522 void do_usb_del(Monitor *mon, const QDict *qdict)
1524 const char *devname = qdict_get_str(qdict, "devname");
1525 if (usb_device_del(devname) < 0) {
1526 error_report("could not delete USB device '%s'", devname);
1530 /***********************************************************/
1531 /* PCMCIA/Cardbus */
1533 static struct pcmcia_socket_entry_s {
1534 PCMCIASocket *socket;
1535 struct pcmcia_socket_entry_s *next;
1536 } *pcmcia_sockets = 0;
1538 void pcmcia_socket_register(PCMCIASocket *socket)
1540 struct pcmcia_socket_entry_s *entry;
1542 entry = g_malloc(sizeof(struct pcmcia_socket_entry_s));
1543 entry->socket = socket;
1544 entry->next = pcmcia_sockets;
1545 pcmcia_sockets = entry;
1548 void pcmcia_socket_unregister(PCMCIASocket *socket)
1550 struct pcmcia_socket_entry_s *entry, **ptr;
1552 ptr = &pcmcia_sockets;
1553 for (entry = *ptr; entry; ptr = &entry->next, entry = *ptr)
1554 if (entry->socket == socket) {
1555 *ptr = entry->next;
1556 g_free(entry);
1560 void pcmcia_info(Monitor *mon, const QDict *qdict)
1562 struct pcmcia_socket_entry_s *iter;
1564 if (!pcmcia_sockets)
1565 monitor_printf(mon, "No PCMCIA sockets\n");
1567 for (iter = pcmcia_sockets; iter; iter = iter->next)
1568 monitor_printf(mon, "%s: %s\n", iter->socket->slot_string,
1569 iter->socket->attached ? iter->socket->card_string :
1570 "Empty");
1573 /***********************************************************/
1574 /* machine registration */
1576 MachineState *current_machine;
1578 static void machine_class_init(ObjectClass *oc, void *data)
1580 MachineClass *mc = MACHINE_CLASS(oc);
1582 mc->qemu_machine = data;
1585 int qemu_register_machine(QEMUMachine *m)
1587 TypeInfo ti = {
1588 .name = g_strconcat(m->name, TYPE_MACHINE_SUFFIX, NULL),
1589 .parent = TYPE_MACHINE,
1590 .class_init = machine_class_init,
1591 .class_data = (void *)m,
1594 type_register(&ti);
1596 return 0;
1599 static MachineClass *find_machine(const char *name)
1601 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
1602 MachineClass *mc = NULL;
1604 for (el = machines; el; el = el->next) {
1605 MachineClass *temp = el->data;
1607 if (!strcmp(temp->qemu_machine->name, name)) {
1608 mc = temp;
1609 break;
1611 if (temp->qemu_machine->alias &&
1612 !strcmp(temp->qemu_machine->alias, name)) {
1613 mc = temp;
1614 break;
1618 g_slist_free(machines);
1619 return mc;
1622 MachineClass *find_default_machine(void)
1624 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
1625 MachineClass *mc = NULL;
1627 for (el = machines; el; el = el->next) {
1628 MachineClass *temp = el->data;
1630 if (temp->qemu_machine->is_default) {
1631 mc = temp;
1632 break;
1636 g_slist_free(machines);
1637 return mc;
1640 MachineInfoList *qmp_query_machines(Error **errp)
1642 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
1643 MachineInfoList *mach_list = NULL;
1644 QEMUMachine *m;
1646 for (el = machines; el; el = el->next) {
1647 MachineClass *mc = el->data;
1648 MachineInfoList *entry;
1649 MachineInfo *info;
1651 m = mc->qemu_machine;
1652 info = g_malloc0(sizeof(*info));
1653 if (m->is_default) {
1654 info->has_is_default = true;
1655 info->is_default = true;
1658 if (m->alias) {
1659 info->has_alias = true;
1660 info->alias = g_strdup(m->alias);
1663 info->name = g_strdup(m->name);
1664 info->cpu_max = !m->max_cpus ? 1 : m->max_cpus;
1666 entry = g_malloc0(sizeof(*entry));
1667 entry->value = info;
1668 entry->next = mach_list;
1669 mach_list = entry;
1672 g_slist_free(machines);
1673 return mach_list;
1676 /***********************************************************/
1677 /* main execution loop */
1679 struct vm_change_state_entry {
1680 VMChangeStateHandler *cb;
1681 void *opaque;
1682 QLIST_ENTRY (vm_change_state_entry) entries;
1685 static QLIST_HEAD(vm_change_state_head, vm_change_state_entry) vm_change_state_head;
1687 VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
1688 void *opaque)
1690 VMChangeStateEntry *e;
1692 e = g_malloc0(sizeof (*e));
1694 e->cb = cb;
1695 e->opaque = opaque;
1696 QLIST_INSERT_HEAD(&vm_change_state_head, e, entries);
1697 return e;
1700 void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
1702 QLIST_REMOVE (e, entries);
1703 g_free (e);
1706 void vm_state_notify(int running, RunState state)
1708 VMChangeStateEntry *e;
1710 trace_vm_state_notify(running, state);
1712 for (e = vm_change_state_head.lh_first; e; e = e->entries.le_next) {
1713 e->cb(e->opaque, running, state);
1717 void vm_start(void)
1719 if (!runstate_is_running()) {
1720 cpu_enable_ticks();
1721 runstate_set(RUN_STATE_RUNNING);
1722 vm_state_notify(1, RUN_STATE_RUNNING);
1723 resume_all_vcpus();
1724 monitor_protocol_event(QEVENT_RESUME, NULL);
1728 /* reset/shutdown handler */
1730 typedef struct QEMUResetEntry {
1731 QTAILQ_ENTRY(QEMUResetEntry) entry;
1732 QEMUResetHandler *func;
1733 void *opaque;
1734 } QEMUResetEntry;
1736 static QTAILQ_HEAD(reset_handlers, QEMUResetEntry) reset_handlers =
1737 QTAILQ_HEAD_INITIALIZER(reset_handlers);
1738 static int reset_requested;
1739 static int shutdown_requested, shutdown_signal = -1;
1740 static pid_t shutdown_pid;
1741 static int powerdown_requested;
1742 static int debug_requested;
1743 static int suspend_requested;
1744 static WakeupReason wakeup_reason;
1745 static NotifierList powerdown_notifiers =
1746 NOTIFIER_LIST_INITIALIZER(powerdown_notifiers);
1747 static NotifierList suspend_notifiers =
1748 NOTIFIER_LIST_INITIALIZER(suspend_notifiers);
1749 static NotifierList wakeup_notifiers =
1750 NOTIFIER_LIST_INITIALIZER(wakeup_notifiers);
1751 static uint32_t wakeup_reason_mask = ~(1 << QEMU_WAKEUP_REASON_NONE);
1752 static RunState vmstop_requested = RUN_STATE_MAX;
1754 int qemu_shutdown_requested_get(void)
1756 return shutdown_requested;
1759 int qemu_reset_requested_get(void)
1761 return reset_requested;
1764 static int qemu_shutdown_requested(void)
1766 int r = shutdown_requested;
1767 shutdown_requested = 0;
1768 return r;
1771 static void qemu_kill_report(void)
1773 if (!qtest_driver() && shutdown_signal != -1) {
1774 fprintf(stderr, "qemu: terminating on signal %d", shutdown_signal);
1775 if (shutdown_pid == 0) {
1776 /* This happens for eg ^C at the terminal, so it's worth
1777 * avoiding printing an odd message in that case.
1779 fputc('\n', stderr);
1780 } else {
1781 fprintf(stderr, " from pid " FMT_pid "\n", shutdown_pid);
1783 shutdown_signal = -1;
1787 static int qemu_reset_requested(void)
1789 int r = reset_requested;
1790 reset_requested = 0;
1791 return r;
1794 static int qemu_suspend_requested(void)
1796 int r = suspend_requested;
1797 suspend_requested = 0;
1798 return r;
1801 static WakeupReason qemu_wakeup_requested(void)
1803 return wakeup_reason;
1806 static int qemu_powerdown_requested(void)
1808 int r = powerdown_requested;
1809 powerdown_requested = 0;
1810 return r;
1813 static int qemu_debug_requested(void)
1815 int r = debug_requested;
1816 debug_requested = 0;
1817 return r;
1820 /* We use RUN_STATE_MAX but any invalid value will do */
1821 static bool qemu_vmstop_requested(RunState *r)
1823 if (vmstop_requested < RUN_STATE_MAX) {
1824 *r = vmstop_requested;
1825 vmstop_requested = RUN_STATE_MAX;
1826 return true;
1829 return false;
1832 void qemu_register_reset(QEMUResetHandler *func, void *opaque)
1834 QEMUResetEntry *re = g_malloc0(sizeof(QEMUResetEntry));
1836 re->func = func;
1837 re->opaque = opaque;
1838 QTAILQ_INSERT_TAIL(&reset_handlers, re, entry);
1841 void qemu_unregister_reset(QEMUResetHandler *func, void *opaque)
1843 QEMUResetEntry *re;
1845 QTAILQ_FOREACH(re, &reset_handlers, entry) {
1846 if (re->func == func && re->opaque == opaque) {
1847 QTAILQ_REMOVE(&reset_handlers, re, entry);
1848 g_free(re);
1849 return;
1854 void qemu_devices_reset(void)
1856 QEMUResetEntry *re, *nre;
1858 /* reset all devices */
1859 QTAILQ_FOREACH_SAFE(re, &reset_handlers, entry, nre) {
1860 re->func(re->opaque);
1864 void qemu_system_reset(bool report)
1866 MachineClass *mc;
1868 mc = current_machine ? MACHINE_GET_CLASS(current_machine) : NULL;
1870 if (mc && mc->qemu_machine->reset) {
1871 mc->qemu_machine->reset();
1872 } else {
1873 qemu_devices_reset();
1875 if (report) {
1876 monitor_protocol_event(QEVENT_RESET, NULL);
1878 cpu_synchronize_all_post_reset();
1881 void qemu_system_reset_request(void)
1883 if (no_reboot) {
1884 shutdown_requested = 1;
1885 } else {
1886 reset_requested = 1;
1888 cpu_stop_current();
1889 qemu_notify_event();
1892 static void qemu_system_suspend(void)
1894 pause_all_vcpus();
1895 notifier_list_notify(&suspend_notifiers, NULL);
1896 runstate_set(RUN_STATE_SUSPENDED);
1897 monitor_protocol_event(QEVENT_SUSPEND, NULL);
1900 void qemu_system_suspend_request(void)
1902 if (runstate_check(RUN_STATE_SUSPENDED)) {
1903 return;
1905 suspend_requested = 1;
1906 cpu_stop_current();
1907 qemu_notify_event();
1910 void qemu_register_suspend_notifier(Notifier *notifier)
1912 notifier_list_add(&suspend_notifiers, notifier);
1915 void qemu_system_wakeup_request(WakeupReason reason)
1917 trace_system_wakeup_request(reason);
1919 if (!runstate_check(RUN_STATE_SUSPENDED)) {
1920 return;
1922 if (!(wakeup_reason_mask & (1 << reason))) {
1923 return;
1925 runstate_set(RUN_STATE_RUNNING);
1926 wakeup_reason = reason;
1927 qemu_notify_event();
1930 void qemu_system_wakeup_enable(WakeupReason reason, bool enabled)
1932 if (enabled) {
1933 wakeup_reason_mask |= (1 << reason);
1934 } else {
1935 wakeup_reason_mask &= ~(1 << reason);
1939 void qemu_register_wakeup_notifier(Notifier *notifier)
1941 notifier_list_add(&wakeup_notifiers, notifier);
1944 void qemu_system_killed(int signal, pid_t pid)
1946 shutdown_signal = signal;
1947 shutdown_pid = pid;
1948 no_shutdown = 0;
1949 qemu_system_shutdown_request();
1952 void qemu_system_shutdown_request(void)
1954 shutdown_requested = 1;
1955 qemu_notify_event();
1958 static void qemu_system_powerdown(void)
1960 monitor_protocol_event(QEVENT_POWERDOWN, NULL);
1961 notifier_list_notify(&powerdown_notifiers, NULL);
1964 void qemu_system_powerdown_request(void)
1966 powerdown_requested = 1;
1967 qemu_notify_event();
1970 void qemu_register_powerdown_notifier(Notifier *notifier)
1972 notifier_list_add(&powerdown_notifiers, notifier);
1975 void qemu_system_debug_request(void)
1977 debug_requested = 1;
1978 qemu_notify_event();
1981 void qemu_system_vmstop_request(RunState state)
1983 vmstop_requested = state;
1984 qemu_notify_event();
1987 static bool main_loop_should_exit(void)
1989 RunState r;
1990 if (qemu_debug_requested()) {
1991 vm_stop(RUN_STATE_DEBUG);
1993 if (qemu_suspend_requested()) {
1994 qemu_system_suspend();
1996 if (qemu_shutdown_requested()) {
1997 qemu_kill_report();
1998 monitor_protocol_event(QEVENT_SHUTDOWN, NULL);
1999 if (no_shutdown) {
2000 vm_stop(RUN_STATE_SHUTDOWN);
2001 } else {
2002 return true;
2005 if (qemu_reset_requested()) {
2006 pause_all_vcpus();
2007 cpu_synchronize_all_states();
2008 qemu_system_reset(VMRESET_REPORT);
2009 resume_all_vcpus();
2010 if (runstate_needs_reset()) {
2011 runstate_set(RUN_STATE_PAUSED);
2014 if (qemu_wakeup_requested()) {
2015 pause_all_vcpus();
2016 cpu_synchronize_all_states();
2017 qemu_system_reset(VMRESET_SILENT);
2018 notifier_list_notify(&wakeup_notifiers, &wakeup_reason);
2019 wakeup_reason = QEMU_WAKEUP_REASON_NONE;
2020 resume_all_vcpus();
2021 monitor_protocol_event(QEVENT_WAKEUP, NULL);
2023 if (qemu_powerdown_requested()) {
2024 qemu_system_powerdown();
2026 if (qemu_vmstop_requested(&r)) {
2027 vm_stop(r);
2029 return false;
2032 static void main_loop(void)
2034 bool nonblocking;
2035 int last_io = 0;
2036 #ifdef CONFIG_PROFILER
2037 int64_t ti;
2038 #endif
2039 do {
2040 nonblocking = !kvm_enabled() && !xen_enabled() && last_io > 0;
2041 #ifdef CONFIG_PROFILER
2042 ti = profile_getclock();
2043 #endif
2044 last_io = main_loop_wait(nonblocking);
2045 #ifdef CONFIG_PROFILER
2046 dev_time += profile_getclock() - ti;
2047 #endif
2048 } while (!main_loop_should_exit());
2051 static void version(void)
2053 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n");
2056 static void help(int exitcode)
2058 version();
2059 printf("usage: %s [options] [disk_image]\n\n"
2060 "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
2061 error_get_progname());
2063 #define QEMU_OPTIONS_GENERATE_HELP
2064 #include "qemu-options-wrapper.h"
2066 printf("\nDuring emulation, the following keys are useful:\n"
2067 "ctrl-alt-f toggle full screen\n"
2068 "ctrl-alt-n switch to virtual console 'n'\n"
2069 "ctrl-alt toggle mouse and keyboard grab\n"
2070 "\n"
2071 "When using -nographic, press 'ctrl-a h' to get some help.\n");
2073 exit(exitcode);
2076 #define HAS_ARG 0x0001
2078 typedef struct QEMUOption {
2079 const char *name;
2080 int flags;
2081 int index;
2082 uint32_t arch_mask;
2083 } QEMUOption;
2085 static const QEMUOption qemu_options[] = {
2086 { "h", 0, QEMU_OPTION_h, QEMU_ARCH_ALL },
2087 #define QEMU_OPTIONS_GENERATE_OPTIONS
2088 #include "qemu-options-wrapper.h"
2089 { NULL },
2092 static bool vga_available(void)
2094 return object_class_by_name("VGA") || object_class_by_name("isa-vga");
2097 static bool cirrus_vga_available(void)
2099 return object_class_by_name("cirrus-vga")
2100 || object_class_by_name("isa-cirrus-vga");
2103 static bool vmware_vga_available(void)
2105 return object_class_by_name("vmware-svga");
2108 static bool qxl_vga_available(void)
2110 return object_class_by_name("qxl-vga");
2113 static bool tcx_vga_available(void)
2115 return object_class_by_name("SUNW,tcx");
2118 static bool cg3_vga_available(void)
2120 return object_class_by_name("cgthree");
2123 static void select_vgahw (const char *p)
2125 const char *opts;
2127 assert(vga_interface_type == VGA_NONE);
2128 if (strstart(p, "std", &opts)) {
2129 if (vga_available()) {
2130 vga_interface_type = VGA_STD;
2131 } else {
2132 fprintf(stderr, "Error: standard VGA not available\n");
2133 exit(0);
2135 } else if (strstart(p, "cirrus", &opts)) {
2136 if (cirrus_vga_available()) {
2137 vga_interface_type = VGA_CIRRUS;
2138 } else {
2139 fprintf(stderr, "Error: Cirrus VGA not available\n");
2140 exit(0);
2142 } else if (strstart(p, "vmware", &opts)) {
2143 if (vmware_vga_available()) {
2144 vga_interface_type = VGA_VMWARE;
2145 } else {
2146 fprintf(stderr, "Error: VMWare SVGA not available\n");
2147 exit(0);
2149 } else if (strstart(p, "xenfb", &opts)) {
2150 vga_interface_type = VGA_XENFB;
2151 } else if (strstart(p, "qxl", &opts)) {
2152 if (qxl_vga_available()) {
2153 vga_interface_type = VGA_QXL;
2154 } else {
2155 fprintf(stderr, "Error: QXL VGA not available\n");
2156 exit(0);
2158 } else if (strstart(p, "tcx", &opts)) {
2159 if (tcx_vga_available()) {
2160 vga_interface_type = VGA_TCX;
2161 } else {
2162 fprintf(stderr, "Error: TCX framebuffer not available\n");
2163 exit(0);
2165 } else if (strstart(p, "cg3", &opts)) {
2166 if (cg3_vga_available()) {
2167 vga_interface_type = VGA_CG3;
2168 } else {
2169 fprintf(stderr, "Error: CG3 framebuffer not available\n");
2170 exit(0);
2172 } else if (!strstart(p, "none", &opts)) {
2173 invalid_vga:
2174 fprintf(stderr, "Unknown vga type: %s\n", p);
2175 exit(1);
2177 while (*opts) {
2178 const char *nextopt;
2180 if (strstart(opts, ",retrace=", &nextopt)) {
2181 opts = nextopt;
2182 if (strstart(opts, "dumb", &nextopt))
2183 vga_retrace_method = VGA_RETRACE_DUMB;
2184 else if (strstart(opts, "precise", &nextopt))
2185 vga_retrace_method = VGA_RETRACE_PRECISE;
2186 else goto invalid_vga;
2187 } else goto invalid_vga;
2188 opts = nextopt;
2192 static DisplayType select_display(const char *p)
2194 const char *opts;
2195 DisplayType display = DT_DEFAULT;
2197 if (strstart(p, "sdl", &opts)) {
2198 #ifdef CONFIG_SDL
2199 display = DT_SDL;
2200 while (*opts) {
2201 const char *nextopt;
2203 if (strstart(opts, ",frame=", &nextopt)) {
2204 opts = nextopt;
2205 if (strstart(opts, "on", &nextopt)) {
2206 no_frame = 0;
2207 } else if (strstart(opts, "off", &nextopt)) {
2208 no_frame = 1;
2209 } else {
2210 goto invalid_sdl_args;
2212 } else if (strstart(opts, ",alt_grab=", &nextopt)) {
2213 opts = nextopt;
2214 if (strstart(opts, "on", &nextopt)) {
2215 alt_grab = 1;
2216 } else if (strstart(opts, "off", &nextopt)) {
2217 alt_grab = 0;
2218 } else {
2219 goto invalid_sdl_args;
2221 } else if (strstart(opts, ",ctrl_grab=", &nextopt)) {
2222 opts = nextopt;
2223 if (strstart(opts, "on", &nextopt)) {
2224 ctrl_grab = 1;
2225 } else if (strstart(opts, "off", &nextopt)) {
2226 ctrl_grab = 0;
2227 } else {
2228 goto invalid_sdl_args;
2230 } else if (strstart(opts, ",window_close=", &nextopt)) {
2231 opts = nextopt;
2232 if (strstart(opts, "on", &nextopt)) {
2233 no_quit = 0;
2234 } else if (strstart(opts, "off", &nextopt)) {
2235 no_quit = 1;
2236 } else {
2237 goto invalid_sdl_args;
2239 } else {
2240 invalid_sdl_args:
2241 fprintf(stderr, "Invalid SDL option string: %s\n", p);
2242 exit(1);
2244 opts = nextopt;
2246 #else
2247 fprintf(stderr, "SDL support is disabled\n");
2248 exit(1);
2249 #endif
2250 } else if (strstart(p, "vnc", &opts)) {
2251 #ifdef CONFIG_VNC
2252 display_remote++;
2254 if (*opts) {
2255 const char *nextopt;
2257 if (strstart(opts, "=", &nextopt)) {
2258 vnc_display = nextopt;
2261 if (!vnc_display) {
2262 fprintf(stderr, "VNC requires a display argument vnc=<display>\n");
2263 exit(1);
2265 #else
2266 fprintf(stderr, "VNC support is disabled\n");
2267 exit(1);
2268 #endif
2269 } else if (strstart(p, "curses", &opts)) {
2270 #ifdef CONFIG_CURSES
2271 display = DT_CURSES;
2272 #else
2273 fprintf(stderr, "Curses support is disabled\n");
2274 exit(1);
2275 #endif
2276 } else if (strstart(p, "gtk", &opts)) {
2277 #ifdef CONFIG_GTK
2278 display = DT_GTK;
2279 #else
2280 fprintf(stderr, "GTK support is disabled\n");
2281 exit(1);
2282 #endif
2283 } else if (strstart(p, "none", &opts)) {
2284 display = DT_NONE;
2285 } else {
2286 fprintf(stderr, "Unknown display type: %s\n", p);
2287 exit(1);
2290 return display;
2293 static int balloon_parse(const char *arg)
2295 QemuOpts *opts;
2297 if (strcmp(arg, "none") == 0) {
2298 return 0;
2301 if (!strncmp(arg, "virtio", 6)) {
2302 if (arg[6] == ',') {
2303 /* have params -> parse them */
2304 opts = qemu_opts_parse(qemu_find_opts("device"), arg+7, 0);
2305 if (!opts)
2306 return -1;
2307 } else {
2308 /* create empty opts */
2309 opts = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
2310 &error_abort);
2312 qemu_opt_set(opts, "driver", "virtio-balloon");
2313 return 0;
2316 return -1;
2319 char *qemu_find_file(int type, const char *name)
2321 int i;
2322 const char *subdir;
2323 char *buf;
2325 /* Try the name as a straight path first */
2326 if (access(name, R_OK) == 0) {
2327 trace_load_file(name, name);
2328 return g_strdup(name);
2331 switch (type) {
2332 case QEMU_FILE_TYPE_BIOS:
2333 subdir = "";
2334 break;
2335 case QEMU_FILE_TYPE_KEYMAP:
2336 subdir = "keymaps/";
2337 break;
2338 default:
2339 abort();
2342 for (i = 0; i < data_dir_idx; i++) {
2343 buf = g_strdup_printf("%s/%s%s", data_dir[i], subdir, name);
2344 if (access(buf, R_OK) == 0) {
2345 trace_load_file(name, buf);
2346 return buf;
2348 g_free(buf);
2350 return NULL;
2353 static int device_help_func(QemuOpts *opts, void *opaque)
2355 return qdev_device_help(opts);
2358 static int device_init_func(QemuOpts *opts, void *opaque)
2360 DeviceState *dev;
2362 dev = qdev_device_add(opts);
2363 if (!dev)
2364 return -1;
2365 object_unref(OBJECT(dev));
2366 return 0;
2369 static int chardev_init_func(QemuOpts *opts, void *opaque)
2371 Error *local_err = NULL;
2373 qemu_chr_new_from_opts(opts, NULL, &local_err);
2374 if (local_err) {
2375 error_report("%s", error_get_pretty(local_err));
2376 error_free(local_err);
2377 return -1;
2379 return 0;
2382 #ifdef CONFIG_VIRTFS
2383 static int fsdev_init_func(QemuOpts *opts, void *opaque)
2385 int ret;
2386 ret = qemu_fsdev_add(opts);
2388 return ret;
2390 #endif
2392 static int mon_init_func(QemuOpts *opts, void *opaque)
2394 CharDriverState *chr;
2395 const char *chardev;
2396 const char *mode;
2397 int flags;
2399 mode = qemu_opt_get(opts, "mode");
2400 if (mode == NULL) {
2401 mode = "readline";
2403 if (strcmp(mode, "readline") == 0) {
2404 flags = MONITOR_USE_READLINE;
2405 } else if (strcmp(mode, "control") == 0) {
2406 flags = MONITOR_USE_CONTROL;
2407 } else {
2408 fprintf(stderr, "unknown monitor mode \"%s\"\n", mode);
2409 exit(1);
2412 if (qemu_opt_get_bool(opts, "pretty", 0))
2413 flags |= MONITOR_USE_PRETTY;
2415 if (qemu_opt_get_bool(opts, "default", 0))
2416 flags |= MONITOR_IS_DEFAULT;
2418 chardev = qemu_opt_get(opts, "chardev");
2419 chr = qemu_chr_find(chardev);
2420 if (chr == NULL) {
2421 fprintf(stderr, "chardev \"%s\" not found\n", chardev);
2422 exit(1);
2425 qemu_chr_fe_claim_no_fail(chr);
2426 monitor_init(chr, flags);
2427 return 0;
2430 static void monitor_parse(const char *optarg, const char *mode)
2432 static int monitor_device_index = 0;
2433 QemuOpts *opts;
2434 const char *p;
2435 char label[32];
2436 int def = 0;
2438 if (strstart(optarg, "chardev:", &p)) {
2439 snprintf(label, sizeof(label), "%s", p);
2440 } else {
2441 snprintf(label, sizeof(label), "compat_monitor%d",
2442 monitor_device_index);
2443 if (monitor_device_index == 0) {
2444 def = 1;
2446 opts = qemu_chr_parse_compat(label, optarg);
2447 if (!opts) {
2448 fprintf(stderr, "parse error: %s\n", optarg);
2449 exit(1);
2453 opts = qemu_opts_create(qemu_find_opts("mon"), label, 1, NULL);
2454 if (!opts) {
2455 fprintf(stderr, "duplicate chardev: %s\n", label);
2456 exit(1);
2458 qemu_opt_set(opts, "mode", mode);
2459 qemu_opt_set(opts, "chardev", label);
2460 if (def)
2461 qemu_opt_set(opts, "default", "on");
2462 monitor_device_index++;
2465 struct device_config {
2466 enum {
2467 DEV_USB, /* -usbdevice */
2468 DEV_BT, /* -bt */
2469 DEV_SERIAL, /* -serial */
2470 DEV_PARALLEL, /* -parallel */
2471 DEV_VIRTCON, /* -virtioconsole */
2472 DEV_DEBUGCON, /* -debugcon */
2473 DEV_GDB, /* -gdb, -s */
2474 DEV_SCLP, /* s390 sclp */
2475 } type;
2476 const char *cmdline;
2477 Location loc;
2478 QTAILQ_ENTRY(device_config) next;
2481 static QTAILQ_HEAD(, device_config) device_configs =
2482 QTAILQ_HEAD_INITIALIZER(device_configs);
2484 static void add_device_config(int type, const char *cmdline)
2486 struct device_config *conf;
2488 conf = g_malloc0(sizeof(*conf));
2489 conf->type = type;
2490 conf->cmdline = cmdline;
2491 loc_save(&conf->loc);
2492 QTAILQ_INSERT_TAIL(&device_configs, conf, next);
2495 static int foreach_device_config(int type, int (*func)(const char *cmdline))
2497 struct device_config *conf;
2498 int rc;
2500 QTAILQ_FOREACH(conf, &device_configs, next) {
2501 if (conf->type != type)
2502 continue;
2503 loc_push_restore(&conf->loc);
2504 rc = func(conf->cmdline);
2505 loc_pop(&conf->loc);
2506 if (0 != rc)
2507 return rc;
2509 return 0;
2512 static int serial_parse(const char *devname)
2514 static int index = 0;
2515 char label[32];
2517 if (strcmp(devname, "none") == 0)
2518 return 0;
2519 if (index == MAX_SERIAL_PORTS) {
2520 fprintf(stderr, "qemu: too many serial ports\n");
2521 exit(1);
2523 snprintf(label, sizeof(label), "serial%d", index);
2524 serial_hds[index] = qemu_chr_new(label, devname, NULL);
2525 if (!serial_hds[index]) {
2526 fprintf(stderr, "qemu: could not connect serial device"
2527 " to character backend '%s'\n", devname);
2528 return -1;
2530 index++;
2531 return 0;
2534 static int parallel_parse(const char *devname)
2536 static int index = 0;
2537 char label[32];
2539 if (strcmp(devname, "none") == 0)
2540 return 0;
2541 if (index == MAX_PARALLEL_PORTS) {
2542 fprintf(stderr, "qemu: too many parallel ports\n");
2543 exit(1);
2545 snprintf(label, sizeof(label), "parallel%d", index);
2546 parallel_hds[index] = qemu_chr_new(label, devname, NULL);
2547 if (!parallel_hds[index]) {
2548 fprintf(stderr, "qemu: could not connect parallel device"
2549 " to character backend '%s'\n", devname);
2550 return -1;
2552 index++;
2553 return 0;
2556 static int virtcon_parse(const char *devname)
2558 QemuOptsList *device = qemu_find_opts("device");
2559 static int index = 0;
2560 char label[32];
2561 QemuOpts *bus_opts, *dev_opts;
2563 if (strcmp(devname, "none") == 0)
2564 return 0;
2565 if (index == MAX_VIRTIO_CONSOLES) {
2566 fprintf(stderr, "qemu: too many virtio consoles\n");
2567 exit(1);
2570 bus_opts = qemu_opts_create(device, NULL, 0, &error_abort);
2571 if (arch_type == QEMU_ARCH_S390X) {
2572 qemu_opt_set(bus_opts, "driver", "virtio-serial-s390");
2573 } else {
2574 qemu_opt_set(bus_opts, "driver", "virtio-serial-pci");
2577 dev_opts = qemu_opts_create(device, NULL, 0, &error_abort);
2578 qemu_opt_set(dev_opts, "driver", "virtconsole");
2580 snprintf(label, sizeof(label), "virtcon%d", index);
2581 virtcon_hds[index] = qemu_chr_new(label, devname, NULL);
2582 if (!virtcon_hds[index]) {
2583 fprintf(stderr, "qemu: could not connect virtio console"
2584 " to character backend '%s'\n", devname);
2585 return -1;
2587 qemu_opt_set(dev_opts, "chardev", label);
2589 index++;
2590 return 0;
2593 static int sclp_parse(const char *devname)
2595 QemuOptsList *device = qemu_find_opts("device");
2596 static int index = 0;
2597 char label[32];
2598 QemuOpts *dev_opts;
2600 if (strcmp(devname, "none") == 0) {
2601 return 0;
2603 if (index == MAX_SCLP_CONSOLES) {
2604 fprintf(stderr, "qemu: too many sclp consoles\n");
2605 exit(1);
2608 assert(arch_type == QEMU_ARCH_S390X);
2610 dev_opts = qemu_opts_create(device, NULL, 0, NULL);
2611 qemu_opt_set(dev_opts, "driver", "sclpconsole");
2613 snprintf(label, sizeof(label), "sclpcon%d", index);
2614 sclp_hds[index] = qemu_chr_new(label, devname, NULL);
2615 if (!sclp_hds[index]) {
2616 fprintf(stderr, "qemu: could not connect sclp console"
2617 " to character backend '%s'\n", devname);
2618 return -1;
2620 qemu_opt_set(dev_opts, "chardev", label);
2622 index++;
2623 return 0;
2626 static int debugcon_parse(const char *devname)
2628 QemuOpts *opts;
2630 if (!qemu_chr_new("debugcon", devname, NULL)) {
2631 exit(1);
2633 opts = qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL);
2634 if (!opts) {
2635 fprintf(stderr, "qemu: already have a debugcon device\n");
2636 exit(1);
2638 qemu_opt_set(opts, "driver", "isa-debugcon");
2639 qemu_opt_set(opts, "chardev", "debugcon");
2640 return 0;
2643 static MachineClass *machine_parse(const char *name)
2645 MachineClass *mc = NULL;
2646 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
2648 if (name) {
2649 mc = find_machine(name);
2651 if (mc) {
2652 return mc;
2654 printf("Supported machines are:\n");
2655 for (el = machines; el; el = el->next) {
2656 MachineClass *mc = el->data;
2657 QEMUMachine *m = mc->qemu_machine;
2658 if (m->alias) {
2659 printf("%-20s %s (alias of %s)\n", m->alias, m->desc, m->name);
2661 printf("%-20s %s%s\n", m->name, m->desc,
2662 m->is_default ? " (default)" : "");
2665 g_slist_free(machines);
2666 exit(!name || !is_help_option(name));
2669 static int tcg_init(QEMUMachine *machine)
2671 tcg_exec_init(tcg_tb_size * 1024 * 1024);
2672 return 0;
2675 static struct {
2676 const char *opt_name;
2677 const char *name;
2678 int (*available)(void);
2679 int (*init)(QEMUMachine *);
2680 bool *allowed;
2681 } accel_list[] = {
2682 { "tcg", "tcg", tcg_available, tcg_init, &tcg_allowed },
2683 { "xen", "Xen", xen_available, xen_init, &xen_allowed },
2684 { "kvm", "KVM", kvm_available, kvm_init, &kvm_allowed },
2685 { "qtest", "QTest", qtest_available, qtest_init_accel, &qtest_allowed },
2688 static int configure_accelerator(QEMUMachine *machine)
2690 const char *p;
2691 char buf[10];
2692 int i, ret;
2693 bool accel_initialised = false;
2694 bool init_failed = false;
2696 p = qemu_opt_get(qemu_get_machine_opts(), "accel");
2697 if (p == NULL) {
2698 /* Use the default "accelerator", tcg */
2699 p = "tcg";
2702 while (!accel_initialised && *p != '\0') {
2703 if (*p == ':') {
2704 p++;
2706 p = get_opt_name(buf, sizeof (buf), p, ':');
2707 for (i = 0; i < ARRAY_SIZE(accel_list); i++) {
2708 if (strcmp(accel_list[i].opt_name, buf) == 0) {
2709 if (!accel_list[i].available()) {
2710 printf("%s not supported for this target\n",
2711 accel_list[i].name);
2712 continue;
2714 *(accel_list[i].allowed) = true;
2715 ret = accel_list[i].init(machine);
2716 if (ret < 0) {
2717 init_failed = true;
2718 fprintf(stderr, "failed to initialize %s: %s\n",
2719 accel_list[i].name,
2720 strerror(-ret));
2721 *(accel_list[i].allowed) = false;
2722 } else {
2723 accel_initialised = true;
2725 break;
2728 if (i == ARRAY_SIZE(accel_list)) {
2729 fprintf(stderr, "\"%s\" accelerator does not exist.\n", buf);
2733 if (!accel_initialised) {
2734 if (!init_failed) {
2735 fprintf(stderr, "No accelerator found!\n");
2737 exit(1);
2740 if (init_failed) {
2741 fprintf(stderr, "Back to %s accelerator.\n", accel_list[i].name);
2744 return !accel_initialised;
2747 void qemu_add_exit_notifier(Notifier *notify)
2749 notifier_list_add(&exit_notifiers, notify);
2752 void qemu_remove_exit_notifier(Notifier *notify)
2754 notifier_remove(notify);
2757 static void qemu_run_exit_notifiers(void)
2759 notifier_list_notify(&exit_notifiers, NULL);
2762 void qemu_add_machine_init_done_notifier(Notifier *notify)
2764 notifier_list_add(&machine_init_done_notifiers, notify);
2767 static void qemu_run_machine_init_done_notifiers(void)
2769 notifier_list_notify(&machine_init_done_notifiers, NULL);
2772 static const QEMUOption *lookup_opt(int argc, char **argv,
2773 const char **poptarg, int *poptind)
2775 const QEMUOption *popt;
2776 int optind = *poptind;
2777 char *r = argv[optind];
2778 const char *optarg;
2780 loc_set_cmdline(argv, optind, 1);
2781 optind++;
2782 /* Treat --foo the same as -foo. */
2783 if (r[1] == '-')
2784 r++;
2785 popt = qemu_options;
2786 for(;;) {
2787 if (!popt->name) {
2788 error_report("invalid option");
2789 exit(1);
2791 if (!strcmp(popt->name, r + 1))
2792 break;
2793 popt++;
2795 if (popt->flags & HAS_ARG) {
2796 if (optind >= argc) {
2797 error_report("requires an argument");
2798 exit(1);
2800 optarg = argv[optind++];
2801 loc_set_cmdline(argv, optind - 2, 2);
2802 } else {
2803 optarg = NULL;
2806 *poptarg = optarg;
2807 *poptind = optind;
2809 return popt;
2812 static gpointer malloc_and_trace(gsize n_bytes)
2814 void *ptr = malloc(n_bytes);
2815 trace_g_malloc(n_bytes, ptr);
2816 return ptr;
2819 static gpointer realloc_and_trace(gpointer mem, gsize n_bytes)
2821 void *ptr = realloc(mem, n_bytes);
2822 trace_g_realloc(mem, n_bytes, ptr);
2823 return ptr;
2826 static void free_and_trace(gpointer mem)
2828 trace_g_free(mem);
2829 free(mem);
2832 static int object_set_property(const char *name, const char *value, void *opaque)
2834 Object *obj = OBJECT(opaque);
2835 StringInputVisitor *siv;
2836 Error *local_err = NULL;
2838 if (strcmp(name, "qom-type") == 0 || strcmp(name, "id") == 0) {
2839 return 0;
2842 siv = string_input_visitor_new(value);
2843 object_property_set(obj, string_input_get_visitor(siv), name, &local_err);
2844 string_input_visitor_cleanup(siv);
2846 if (local_err) {
2847 qerror_report_err(local_err);
2848 error_free(local_err);
2849 return -1;
2852 return 0;
2855 static int object_create(QemuOpts *opts, void *opaque)
2857 const char *type = qemu_opt_get(opts, "qom-type");
2858 const char *id = qemu_opts_id(opts);
2859 Error *local_err = NULL;
2860 Object *obj;
2862 g_assert(type != NULL);
2864 if (id == NULL) {
2865 qerror_report(QERR_MISSING_PARAMETER, "id");
2866 return -1;
2869 obj = object_new(type);
2870 if (qemu_opt_foreach(opts, object_set_property, obj, 1) < 0) {
2871 object_unref(obj);
2872 return -1;
2875 if (!object_dynamic_cast(obj, TYPE_USER_CREATABLE)) {
2876 error_setg(&local_err, "object '%s' isn't supported by -object",
2877 id);
2878 goto out;
2881 user_creatable_complete(obj, &local_err);
2882 if (local_err) {
2883 goto out;
2886 object_property_add_child(container_get(object_get_root(), "/objects"),
2887 id, obj, &local_err);
2889 out:
2890 object_unref(obj);
2891 if (local_err) {
2892 qerror_report_err(local_err);
2893 error_free(local_err);
2894 return -1;
2896 return 0;
2899 int main(int argc, char **argv, char **envp)
2901 int i;
2902 int snapshot, linux_boot;
2903 const char *icount_option = NULL;
2904 const char *initrd_filename;
2905 const char *kernel_filename, *kernel_cmdline;
2906 const char *boot_order;
2907 DisplayState *ds;
2908 int cyls, heads, secs, translation;
2909 QemuOpts *hda_opts = NULL, *opts, *machine_opts;
2910 QemuOptsList *olist;
2911 int optind;
2912 const char *optarg;
2913 const char *loadvm = NULL;
2914 MachineClass *machine_class;
2915 QEMUMachine *machine;
2916 const char *cpu_model;
2917 const char *vga_model = NULL;
2918 const char *qtest_chrdev = NULL;
2919 const char *qtest_log = NULL;
2920 const char *pid_file = NULL;
2921 const char *incoming = NULL;
2922 #ifdef CONFIG_VNC
2923 int show_vnc_port = 0;
2924 #endif
2925 bool defconfig = true;
2926 bool userconfig = true;
2927 const char *log_mask = NULL;
2928 const char *log_file = NULL;
2929 GMemVTable mem_trace = {
2930 .malloc = malloc_and_trace,
2931 .realloc = realloc_and_trace,
2932 .free = free_and_trace,
2934 const char *trace_events = NULL;
2935 const char *trace_file = NULL;
2937 atexit(qemu_run_exit_notifiers);
2938 error_set_progname(argv[0]);
2939 qemu_init_exec_dir(argv[0]);
2941 g_mem_set_vtable(&mem_trace);
2942 if (!g_thread_supported()) {
2943 #if !GLIB_CHECK_VERSION(2, 31, 0)
2944 g_thread_init(NULL);
2945 #else
2946 fprintf(stderr, "glib threading failed to initialize.\n");
2947 exit(1);
2948 #endif
2951 module_call_init(MODULE_INIT_QOM);
2953 qemu_add_opts(&qemu_drive_opts);
2954 qemu_add_drive_opts(&qemu_legacy_drive_opts);
2955 qemu_add_drive_opts(&qemu_common_drive_opts);
2956 qemu_add_drive_opts(&qemu_drive_opts);
2957 qemu_add_opts(&qemu_chardev_opts);
2958 qemu_add_opts(&qemu_device_opts);
2959 qemu_add_opts(&qemu_netdev_opts);
2960 qemu_add_opts(&qemu_net_opts);
2961 qemu_add_opts(&qemu_rtc_opts);
2962 qemu_add_opts(&qemu_global_opts);
2963 qemu_add_opts(&qemu_mon_opts);
2964 qemu_add_opts(&qemu_trace_opts);
2965 qemu_add_opts(&qemu_option_rom_opts);
2966 qemu_add_opts(&qemu_machine_opts);
2967 qemu_add_opts(&qemu_smp_opts);
2968 qemu_add_opts(&qemu_boot_opts);
2969 qemu_add_opts(&qemu_sandbox_opts);
2970 qemu_add_opts(&qemu_add_fd_opts);
2971 qemu_add_opts(&qemu_object_opts);
2972 qemu_add_opts(&qemu_tpmdev_opts);
2973 qemu_add_opts(&qemu_realtime_opts);
2974 qemu_add_opts(&qemu_msg_opts);
2975 qemu_add_opts(&qemu_name_opts);
2977 runstate_init();
2979 init_clocks();
2980 rtc_clock = QEMU_CLOCK_HOST;
2982 qemu_init_auxval(envp);
2983 qemu_cache_utils_init();
2985 QLIST_INIT (&vm_change_state_head);
2986 os_setup_early_signal_handling();
2988 module_call_init(MODULE_INIT_MACHINE);
2989 machine_class = find_default_machine();
2990 cpu_model = NULL;
2991 ram_size = 0;
2992 snapshot = 0;
2993 cyls = heads = secs = 0;
2994 translation = BIOS_ATA_TRANSLATION_AUTO;
2996 for (i = 0; i < MAX_NODES; i++) {
2997 node_mem[i] = 0;
2998 node_cpumask[i] = bitmap_new(MAX_CPUMASK_BITS);
3001 nb_numa_nodes = 0;
3002 nb_nics = 0;
3004 bdrv_init_with_whitelist();
3006 autostart = 1;
3008 /* first pass of option parsing */
3009 optind = 1;
3010 while (optind < argc) {
3011 if (argv[optind][0] != '-') {
3012 /* disk image */
3013 optind++;
3014 continue;
3015 } else {
3016 const QEMUOption *popt;
3018 popt = lookup_opt(argc, argv, &optarg, &optind);
3019 switch (popt->index) {
3020 case QEMU_OPTION_nodefconfig:
3021 defconfig = false;
3022 break;
3023 case QEMU_OPTION_nouserconfig:
3024 userconfig = false;
3025 break;
3030 if (defconfig) {
3031 int ret;
3032 ret = qemu_read_default_config_files(userconfig);
3033 if (ret < 0) {
3034 exit(1);
3038 /* second pass of option parsing */
3039 optind = 1;
3040 for(;;) {
3041 if (optind >= argc)
3042 break;
3043 if (argv[optind][0] != '-') {
3044 hda_opts = drive_add(IF_DEFAULT, 0, argv[optind++], HD_OPTS);
3045 } else {
3046 const QEMUOption *popt;
3048 popt = lookup_opt(argc, argv, &optarg, &optind);
3049 if (!(popt->arch_mask & arch_type)) {
3050 printf("Option %s not supported for this target\n", popt->name);
3051 exit(1);
3053 switch(popt->index) {
3054 case QEMU_OPTION_M:
3055 machine_class = machine_parse(optarg);
3056 break;
3057 case QEMU_OPTION_no_kvm_irqchip: {
3058 olist = qemu_find_opts("machine");
3059 qemu_opts_parse(olist, "kernel_irqchip=off", 0);
3060 break;
3062 case QEMU_OPTION_cpu:
3063 /* hw initialization will check this */
3064 cpu_model = optarg;
3065 break;
3066 case QEMU_OPTION_hda:
3068 char buf[256];
3069 if (cyls == 0)
3070 snprintf(buf, sizeof(buf), "%s", HD_OPTS);
3071 else
3072 snprintf(buf, sizeof(buf),
3073 "%s,cyls=%d,heads=%d,secs=%d%s",
3074 HD_OPTS , cyls, heads, secs,
3075 translation == BIOS_ATA_TRANSLATION_LBA ?
3076 ",trans=lba" :
3077 translation == BIOS_ATA_TRANSLATION_NONE ?
3078 ",trans=none" : "");
3079 drive_add(IF_DEFAULT, 0, optarg, buf);
3080 break;
3082 case QEMU_OPTION_hdb:
3083 case QEMU_OPTION_hdc:
3084 case QEMU_OPTION_hdd:
3085 drive_add(IF_DEFAULT, popt->index - QEMU_OPTION_hda, optarg,
3086 HD_OPTS);
3087 break;
3088 case QEMU_OPTION_drive:
3089 if (drive_def(optarg) == NULL) {
3090 exit(1);
3092 break;
3093 case QEMU_OPTION_set:
3094 if (qemu_set_option(optarg) != 0)
3095 exit(1);
3096 break;
3097 case QEMU_OPTION_global:
3098 if (qemu_global_option(optarg) != 0)
3099 exit(1);
3100 break;
3101 case QEMU_OPTION_mtdblock:
3102 drive_add(IF_MTD, -1, optarg, MTD_OPTS);
3103 break;
3104 case QEMU_OPTION_sd:
3105 drive_add(IF_SD, -1, optarg, SD_OPTS);
3106 break;
3107 case QEMU_OPTION_pflash:
3108 drive_add(IF_PFLASH, -1, optarg, PFLASH_OPTS);
3109 break;
3110 case QEMU_OPTION_snapshot:
3111 snapshot = 1;
3112 break;
3113 case QEMU_OPTION_hdachs:
3115 const char *p;
3116 p = optarg;
3117 cyls = strtol(p, (char **)&p, 0);
3118 if (cyls < 1 || cyls > 16383)
3119 goto chs_fail;
3120 if (*p != ',')
3121 goto chs_fail;
3122 p++;
3123 heads = strtol(p, (char **)&p, 0);
3124 if (heads < 1 || heads > 16)
3125 goto chs_fail;
3126 if (*p != ',')
3127 goto chs_fail;
3128 p++;
3129 secs = strtol(p, (char **)&p, 0);
3130 if (secs < 1 || secs > 63)
3131 goto chs_fail;
3132 if (*p == ',') {
3133 p++;
3134 if (!strcmp(p, "large")) {
3135 translation = BIOS_ATA_TRANSLATION_LARGE;
3136 } else if (!strcmp(p, "rechs")) {
3137 translation = BIOS_ATA_TRANSLATION_RECHS;
3138 } else if (!strcmp(p, "none")) {
3139 translation = BIOS_ATA_TRANSLATION_NONE;
3140 } else if (!strcmp(p, "lba")) {
3141 translation = BIOS_ATA_TRANSLATION_LBA;
3142 } else if (!strcmp(p, "auto")) {
3143 translation = BIOS_ATA_TRANSLATION_AUTO;
3144 } else {
3145 goto chs_fail;
3147 } else if (*p != '\0') {
3148 chs_fail:
3149 fprintf(stderr, "qemu: invalid physical CHS format\n");
3150 exit(1);
3152 if (hda_opts != NULL) {
3153 char num[16];
3154 snprintf(num, sizeof(num), "%d", cyls);
3155 qemu_opt_set(hda_opts, "cyls", num);
3156 snprintf(num, sizeof(num), "%d", heads);
3157 qemu_opt_set(hda_opts, "heads", num);
3158 snprintf(num, sizeof(num), "%d", secs);
3159 qemu_opt_set(hda_opts, "secs", num);
3160 if (translation == BIOS_ATA_TRANSLATION_LARGE) {
3161 qemu_opt_set(hda_opts, "trans", "large");
3162 } else if (translation == BIOS_ATA_TRANSLATION_RECHS) {
3163 qemu_opt_set(hda_opts, "trans", "rechs");
3164 } else if (translation == BIOS_ATA_TRANSLATION_LBA) {
3165 qemu_opt_set(hda_opts, "trans", "lba");
3166 } else if (translation == BIOS_ATA_TRANSLATION_NONE) {
3167 qemu_opt_set(hda_opts, "trans", "none");
3171 break;
3172 case QEMU_OPTION_numa:
3173 numa_add(optarg);
3174 break;
3175 case QEMU_OPTION_display:
3176 display_type = select_display(optarg);
3177 break;
3178 case QEMU_OPTION_nographic:
3179 display_type = DT_NOGRAPHIC;
3180 break;
3181 case QEMU_OPTION_curses:
3182 #ifdef CONFIG_CURSES
3183 display_type = DT_CURSES;
3184 #else
3185 fprintf(stderr, "Curses support is disabled\n");
3186 exit(1);
3187 #endif
3188 break;
3189 case QEMU_OPTION_portrait:
3190 graphic_rotate = 90;
3191 break;
3192 case QEMU_OPTION_rotate:
3193 graphic_rotate = strtol(optarg, (char **) &optarg, 10);
3194 if (graphic_rotate != 0 && graphic_rotate != 90 &&
3195 graphic_rotate != 180 && graphic_rotate != 270) {
3196 fprintf(stderr,
3197 "qemu: only 90, 180, 270 deg rotation is available\n");
3198 exit(1);
3200 break;
3201 case QEMU_OPTION_kernel:
3202 qemu_opts_set(qemu_find_opts("machine"), 0, "kernel", optarg);
3203 break;
3204 case QEMU_OPTION_initrd:
3205 qemu_opts_set(qemu_find_opts("machine"), 0, "initrd", optarg);
3206 break;
3207 case QEMU_OPTION_append:
3208 qemu_opts_set(qemu_find_opts("machine"), 0, "append", optarg);
3209 break;
3210 case QEMU_OPTION_dtb:
3211 qemu_opts_set(qemu_find_opts("machine"), 0, "dtb", optarg);
3212 break;
3213 case QEMU_OPTION_cdrom:
3214 drive_add(IF_DEFAULT, 2, optarg, CDROM_OPTS);
3215 break;
3216 case QEMU_OPTION_boot:
3217 opts = qemu_opts_parse(qemu_find_opts("boot-opts"), optarg, 1);
3218 if (!opts) {
3219 exit(1);
3221 break;
3222 case QEMU_OPTION_fda:
3223 case QEMU_OPTION_fdb:
3224 drive_add(IF_FLOPPY, popt->index - QEMU_OPTION_fda,
3225 optarg, FD_OPTS);
3226 break;
3227 case QEMU_OPTION_no_fd_bootchk:
3228 fd_bootchk = 0;
3229 break;
3230 case QEMU_OPTION_netdev:
3231 if (net_client_parse(qemu_find_opts("netdev"), optarg) == -1) {
3232 exit(1);
3234 break;
3235 case QEMU_OPTION_net:
3236 if (net_client_parse(qemu_find_opts("net"), optarg) == -1) {
3237 exit(1);
3239 break;
3240 #ifdef CONFIG_LIBISCSI
3241 case QEMU_OPTION_iscsi:
3242 opts = qemu_opts_parse(qemu_find_opts("iscsi"), optarg, 0);
3243 if (!opts) {
3244 exit(1);
3246 break;
3247 #endif
3248 #ifdef CONFIG_SLIRP
3249 case QEMU_OPTION_tftp:
3250 legacy_tftp_prefix = optarg;
3251 break;
3252 case QEMU_OPTION_bootp:
3253 legacy_bootp_filename = optarg;
3254 break;
3255 case QEMU_OPTION_redir:
3256 if (net_slirp_redir(optarg) < 0)
3257 exit(1);
3258 break;
3259 #endif
3260 case QEMU_OPTION_bt:
3261 add_device_config(DEV_BT, optarg);
3262 break;
3263 case QEMU_OPTION_audio_help:
3264 AUD_help ();
3265 exit (0);
3266 break;
3267 case QEMU_OPTION_soundhw:
3268 select_soundhw (optarg);
3269 break;
3270 case QEMU_OPTION_h:
3271 help(0);
3272 break;
3273 case QEMU_OPTION_version:
3274 version();
3275 exit(0);
3276 break;
3277 case QEMU_OPTION_m: {
3278 int64_t value;
3279 uint64_t sz;
3280 char *end;
3282 value = strtosz(optarg, &end);
3283 if (value < 0 || *end) {
3284 fprintf(stderr, "qemu: invalid ram size: %s\n", optarg);
3285 exit(1);
3287 sz = QEMU_ALIGN_UP((uint64_t)value, 8192);
3288 ram_size = sz;
3289 if (ram_size != sz) {
3290 fprintf(stderr, "qemu: ram size too large\n");
3291 exit(1);
3293 break;
3295 #ifdef CONFIG_TPM
3296 case QEMU_OPTION_tpmdev:
3297 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg) < 0) {
3298 exit(1);
3300 break;
3301 #endif
3302 case QEMU_OPTION_mempath:
3303 mem_path = optarg;
3304 break;
3305 case QEMU_OPTION_mem_prealloc:
3306 mem_prealloc = 1;
3307 break;
3308 case QEMU_OPTION_d:
3309 log_mask = optarg;
3310 break;
3311 case QEMU_OPTION_D:
3312 log_file = optarg;
3313 break;
3314 case QEMU_OPTION_s:
3315 add_device_config(DEV_GDB, "tcp::" DEFAULT_GDBSTUB_PORT);
3316 break;
3317 case QEMU_OPTION_gdb:
3318 add_device_config(DEV_GDB, optarg);
3319 break;
3320 case QEMU_OPTION_L:
3321 if (data_dir_idx < ARRAY_SIZE(data_dir)) {
3322 data_dir[data_dir_idx++] = optarg;
3324 break;
3325 case QEMU_OPTION_bios:
3326 qemu_opts_set(qemu_find_opts("machine"), 0, "firmware", optarg);
3327 break;
3328 case QEMU_OPTION_singlestep:
3329 singlestep = 1;
3330 break;
3331 case QEMU_OPTION_S:
3332 autostart = 0;
3333 break;
3334 case QEMU_OPTION_k:
3335 keyboard_layout = optarg;
3336 break;
3337 case QEMU_OPTION_localtime:
3338 rtc_utc = 0;
3339 break;
3340 case QEMU_OPTION_vga:
3341 vga_model = optarg;
3342 default_vga = 0;
3343 break;
3344 case QEMU_OPTION_g:
3346 const char *p;
3347 int w, h, depth;
3348 p = optarg;
3349 w = strtol(p, (char **)&p, 10);
3350 if (w <= 0) {
3351 graphic_error:
3352 fprintf(stderr, "qemu: invalid resolution or depth\n");
3353 exit(1);
3355 if (*p != 'x')
3356 goto graphic_error;
3357 p++;
3358 h = strtol(p, (char **)&p, 10);
3359 if (h <= 0)
3360 goto graphic_error;
3361 if (*p == 'x') {
3362 p++;
3363 depth = strtol(p, (char **)&p, 10);
3364 if (depth != 8 && depth != 15 && depth != 16 &&
3365 depth != 24 && depth != 32)
3366 goto graphic_error;
3367 } else if (*p == '\0') {
3368 depth = graphic_depth;
3369 } else {
3370 goto graphic_error;
3373 graphic_width = w;
3374 graphic_height = h;
3375 graphic_depth = depth;
3377 break;
3378 case QEMU_OPTION_echr:
3380 char *r;
3381 term_escape_char = strtol(optarg, &r, 0);
3382 if (r == optarg)
3383 printf("Bad argument to echr\n");
3384 break;
3386 case QEMU_OPTION_monitor:
3387 default_monitor = 0;
3388 if (strncmp(optarg, "none", 4)) {
3389 monitor_parse(optarg, "readline");
3391 break;
3392 case QEMU_OPTION_qmp:
3393 monitor_parse(optarg, "control");
3394 default_monitor = 0;
3395 break;
3396 case QEMU_OPTION_mon:
3397 opts = qemu_opts_parse(qemu_find_opts("mon"), optarg, 1);
3398 if (!opts) {
3399 exit(1);
3401 default_monitor = 0;
3402 break;
3403 case QEMU_OPTION_chardev:
3404 opts = qemu_opts_parse(qemu_find_opts("chardev"), optarg, 1);
3405 if (!opts) {
3406 exit(1);
3408 break;
3409 case QEMU_OPTION_fsdev:
3410 olist = qemu_find_opts("fsdev");
3411 if (!olist) {
3412 fprintf(stderr, "fsdev is not supported by this qemu build.\n");
3413 exit(1);
3415 opts = qemu_opts_parse(olist, optarg, 1);
3416 if (!opts) {
3417 exit(1);
3419 break;
3420 case QEMU_OPTION_virtfs: {
3421 QemuOpts *fsdev;
3422 QemuOpts *device;
3423 const char *writeout, *sock_fd, *socket;
3425 olist = qemu_find_opts("virtfs");
3426 if (!olist) {
3427 fprintf(stderr, "virtfs is not supported by this qemu build.\n");
3428 exit(1);
3430 opts = qemu_opts_parse(olist, optarg, 1);
3431 if (!opts) {
3432 exit(1);
3435 if (qemu_opt_get(opts, "fsdriver") == NULL ||
3436 qemu_opt_get(opts, "mount_tag") == NULL) {
3437 fprintf(stderr, "Usage: -virtfs fsdriver,mount_tag=tag.\n");
3438 exit(1);
3440 fsdev = qemu_opts_create(qemu_find_opts("fsdev"),
3441 qemu_opt_get(opts, "mount_tag"),
3442 1, NULL);
3443 if (!fsdev) {
3444 fprintf(stderr, "duplicate fsdev id: %s\n",
3445 qemu_opt_get(opts, "mount_tag"));
3446 exit(1);
3449 writeout = qemu_opt_get(opts, "writeout");
3450 if (writeout) {
3451 #ifdef CONFIG_SYNC_FILE_RANGE
3452 qemu_opt_set(fsdev, "writeout", writeout);
3453 #else
3454 fprintf(stderr, "writeout=immediate not supported on "
3455 "this platform\n");
3456 exit(1);
3457 #endif
3459 qemu_opt_set(fsdev, "fsdriver", qemu_opt_get(opts, "fsdriver"));
3460 qemu_opt_set(fsdev, "path", qemu_opt_get(opts, "path"));
3461 qemu_opt_set(fsdev, "security_model",
3462 qemu_opt_get(opts, "security_model"));
3463 socket = qemu_opt_get(opts, "socket");
3464 if (socket) {
3465 qemu_opt_set(fsdev, "socket", socket);
3467 sock_fd = qemu_opt_get(opts, "sock_fd");
3468 if (sock_fd) {
3469 qemu_opt_set(fsdev, "sock_fd", sock_fd);
3472 qemu_opt_set_bool(fsdev, "readonly",
3473 qemu_opt_get_bool(opts, "readonly", 0));
3474 device = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
3475 &error_abort);
3476 qemu_opt_set(device, "driver", "virtio-9p-pci");
3477 qemu_opt_set(device, "fsdev",
3478 qemu_opt_get(opts, "mount_tag"));
3479 qemu_opt_set(device, "mount_tag",
3480 qemu_opt_get(opts, "mount_tag"));
3481 break;
3483 case QEMU_OPTION_virtfs_synth: {
3484 QemuOpts *fsdev;
3485 QemuOpts *device;
3487 fsdev = qemu_opts_create(qemu_find_opts("fsdev"), "v_synth",
3488 1, NULL);
3489 if (!fsdev) {
3490 fprintf(stderr, "duplicate option: %s\n", "virtfs_synth");
3491 exit(1);
3493 qemu_opt_set(fsdev, "fsdriver", "synth");
3495 device = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
3496 &error_abort);
3497 qemu_opt_set(device, "driver", "virtio-9p-pci");
3498 qemu_opt_set(device, "fsdev", "v_synth");
3499 qemu_opt_set(device, "mount_tag", "v_synth");
3500 break;
3502 case QEMU_OPTION_serial:
3503 add_device_config(DEV_SERIAL, optarg);
3504 default_serial = 0;
3505 if (strncmp(optarg, "mon:", 4) == 0) {
3506 default_monitor = 0;
3508 break;
3509 case QEMU_OPTION_watchdog:
3510 if (watchdog) {
3511 fprintf(stderr,
3512 "qemu: only one watchdog option may be given\n");
3513 return 1;
3515 watchdog = optarg;
3516 break;
3517 case QEMU_OPTION_watchdog_action:
3518 if (select_watchdog_action(optarg) == -1) {
3519 fprintf(stderr, "Unknown -watchdog-action parameter\n");
3520 exit(1);
3522 break;
3523 case QEMU_OPTION_virtiocon:
3524 add_device_config(DEV_VIRTCON, optarg);
3525 default_virtcon = 0;
3526 if (strncmp(optarg, "mon:", 4) == 0) {
3527 default_monitor = 0;
3529 break;
3530 case QEMU_OPTION_parallel:
3531 add_device_config(DEV_PARALLEL, optarg);
3532 default_parallel = 0;
3533 if (strncmp(optarg, "mon:", 4) == 0) {
3534 default_monitor = 0;
3536 break;
3537 case QEMU_OPTION_debugcon:
3538 add_device_config(DEV_DEBUGCON, optarg);
3539 break;
3540 case QEMU_OPTION_loadvm:
3541 loadvm = optarg;
3542 break;
3543 case QEMU_OPTION_full_screen:
3544 full_screen = 1;
3545 break;
3546 case QEMU_OPTION_no_frame:
3547 no_frame = 1;
3548 break;
3549 case QEMU_OPTION_alt_grab:
3550 alt_grab = 1;
3551 break;
3552 case QEMU_OPTION_ctrl_grab:
3553 ctrl_grab = 1;
3554 break;
3555 case QEMU_OPTION_no_quit:
3556 no_quit = 1;
3557 break;
3558 case QEMU_OPTION_sdl:
3559 #ifdef CONFIG_SDL
3560 display_type = DT_SDL;
3561 break;
3562 #else
3563 fprintf(stderr, "SDL support is disabled\n");
3564 exit(1);
3565 #endif
3566 case QEMU_OPTION_pidfile:
3567 pid_file = optarg;
3568 break;
3569 case QEMU_OPTION_win2k_hack:
3570 win2k_install_hack = 1;
3571 break;
3572 case QEMU_OPTION_rtc_td_hack: {
3573 static GlobalProperty slew_lost_ticks[] = {
3575 .driver = "mc146818rtc",
3576 .property = "lost_tick_policy",
3577 .value = "slew",
3579 { /* end of list */ }
3582 qdev_prop_register_global_list(slew_lost_ticks);
3583 break;
3585 case QEMU_OPTION_acpitable:
3586 opts = qemu_opts_parse(qemu_find_opts("acpi"), optarg, 1);
3587 if (!opts) {
3588 exit(1);
3590 do_acpitable_option(opts);
3591 break;
3592 case QEMU_OPTION_smbios:
3593 opts = qemu_opts_parse(qemu_find_opts("smbios"), optarg, 0);
3594 if (!opts) {
3595 exit(1);
3597 do_smbios_option(opts);
3598 break;
3599 case QEMU_OPTION_enable_kvm:
3600 olist = qemu_find_opts("machine");
3601 qemu_opts_parse(olist, "accel=kvm", 0);
3602 break;
3603 case QEMU_OPTION_machine:
3604 olist = qemu_find_opts("machine");
3605 opts = qemu_opts_parse(olist, optarg, 1);
3606 if (!opts) {
3607 exit(1);
3609 optarg = qemu_opt_get(opts, "type");
3610 if (optarg) {
3611 machine_class = machine_parse(optarg);
3613 break;
3614 case QEMU_OPTION_no_kvm:
3615 olist = qemu_find_opts("machine");
3616 qemu_opts_parse(olist, "accel=tcg", 0);
3617 break;
3618 case QEMU_OPTION_no_kvm_pit: {
3619 fprintf(stderr, "Warning: KVM PIT can no longer be disabled "
3620 "separately.\n");
3621 break;
3623 case QEMU_OPTION_no_kvm_pit_reinjection: {
3624 static GlobalProperty kvm_pit_lost_tick_policy[] = {
3626 .driver = "kvm-pit",
3627 .property = "lost_tick_policy",
3628 .value = "discard",
3630 { /* end of list */ }
3633 fprintf(stderr, "Warning: option deprecated, use "
3634 "lost_tick_policy property of kvm-pit instead.\n");
3635 qdev_prop_register_global_list(kvm_pit_lost_tick_policy);
3636 break;
3638 case QEMU_OPTION_usb:
3639 olist = qemu_find_opts("machine");
3640 qemu_opts_parse(olist, "usb=on", 0);
3641 break;
3642 case QEMU_OPTION_usbdevice:
3643 olist = qemu_find_opts("machine");
3644 qemu_opts_parse(olist, "usb=on", 0);
3645 add_device_config(DEV_USB, optarg);
3646 break;
3647 case QEMU_OPTION_device:
3648 if (!qemu_opts_parse(qemu_find_opts("device"), optarg, 1)) {
3649 exit(1);
3651 break;
3652 case QEMU_OPTION_smp:
3653 if (!qemu_opts_parse(qemu_find_opts("smp-opts"), optarg, 1)) {
3654 exit(1);
3656 break;
3657 case QEMU_OPTION_vnc:
3658 #ifdef CONFIG_VNC
3659 display_remote++;
3660 vnc_display = optarg;
3661 #else
3662 fprintf(stderr, "VNC support is disabled\n");
3663 exit(1);
3664 #endif
3665 break;
3666 case QEMU_OPTION_no_acpi:
3667 acpi_enabled = 0;
3668 break;
3669 case QEMU_OPTION_no_hpet:
3670 no_hpet = 1;
3671 break;
3672 case QEMU_OPTION_balloon:
3673 if (balloon_parse(optarg) < 0) {
3674 fprintf(stderr, "Unknown -balloon argument %s\n", optarg);
3675 exit(1);
3677 break;
3678 case QEMU_OPTION_no_reboot:
3679 no_reboot = 1;
3680 break;
3681 case QEMU_OPTION_no_shutdown:
3682 no_shutdown = 1;
3683 break;
3684 case QEMU_OPTION_show_cursor:
3685 cursor_hide = 0;
3686 break;
3687 case QEMU_OPTION_uuid:
3688 if(qemu_uuid_parse(optarg, qemu_uuid) < 0) {
3689 fprintf(stderr, "Fail to parse UUID string."
3690 " Wrong format.\n");
3691 exit(1);
3693 qemu_uuid_set = true;
3694 break;
3695 case QEMU_OPTION_option_rom:
3696 if (nb_option_roms >= MAX_OPTION_ROMS) {
3697 fprintf(stderr, "Too many option ROMs\n");
3698 exit(1);
3700 opts = qemu_opts_parse(qemu_find_opts("option-rom"), optarg, 1);
3701 if (!opts) {
3702 exit(1);
3704 option_rom[nb_option_roms].name = qemu_opt_get(opts, "romfile");
3705 option_rom[nb_option_roms].bootindex =
3706 qemu_opt_get_number(opts, "bootindex", -1);
3707 if (!option_rom[nb_option_roms].name) {
3708 fprintf(stderr, "Option ROM file is not specified\n");
3709 exit(1);
3711 nb_option_roms++;
3712 break;
3713 case QEMU_OPTION_semihosting:
3714 semihosting_enabled = 1;
3715 break;
3716 case QEMU_OPTION_tdf:
3717 fprintf(stderr, "Warning: user space PIT time drift fix "
3718 "is no longer supported.\n");
3719 break;
3720 case QEMU_OPTION_name:
3721 opts = qemu_opts_parse(qemu_find_opts("name"), optarg, 1);
3722 if (!opts) {
3723 exit(1);
3725 parse_name(opts);
3726 break;
3727 case QEMU_OPTION_prom_env:
3728 if (nb_prom_envs >= MAX_PROM_ENVS) {
3729 fprintf(stderr, "Too many prom variables\n");
3730 exit(1);
3732 prom_envs[nb_prom_envs] = optarg;
3733 nb_prom_envs++;
3734 break;
3735 case QEMU_OPTION_old_param:
3736 old_param = 1;
3737 break;
3738 case QEMU_OPTION_clock:
3739 /* Clock options no longer exist. Keep this option for
3740 * backward compatibility.
3742 break;
3743 case QEMU_OPTION_startdate:
3744 configure_rtc_date_offset(optarg, 1);
3745 break;
3746 case QEMU_OPTION_rtc:
3747 opts = qemu_opts_parse(qemu_find_opts("rtc"), optarg, 0);
3748 if (!opts) {
3749 exit(1);
3751 configure_rtc(opts);
3752 break;
3753 case QEMU_OPTION_tb_size:
3754 tcg_tb_size = strtol(optarg, NULL, 0);
3755 if (tcg_tb_size < 0) {
3756 tcg_tb_size = 0;
3758 break;
3759 case QEMU_OPTION_icount:
3760 icount_option = optarg;
3761 break;
3762 case QEMU_OPTION_incoming:
3763 incoming = optarg;
3764 runstate_set(RUN_STATE_INMIGRATE);
3765 break;
3766 case QEMU_OPTION_nodefaults:
3767 has_defaults = 0;
3768 break;
3769 case QEMU_OPTION_xen_domid:
3770 if (!(xen_available())) {
3771 printf("Option %s not supported for this target\n", popt->name);
3772 exit(1);
3774 xen_domid = atoi(optarg);
3775 break;
3776 case QEMU_OPTION_xen_create:
3777 if (!(xen_available())) {
3778 printf("Option %s not supported for this target\n", popt->name);
3779 exit(1);
3781 xen_mode = XEN_CREATE;
3782 break;
3783 case QEMU_OPTION_xen_attach:
3784 if (!(xen_available())) {
3785 printf("Option %s not supported for this target\n", popt->name);
3786 exit(1);
3788 xen_mode = XEN_ATTACH;
3789 break;
3790 case QEMU_OPTION_trace:
3792 opts = qemu_opts_parse(qemu_find_opts("trace"), optarg, 0);
3793 if (!opts) {
3794 exit(1);
3796 trace_events = qemu_opt_get(opts, "events");
3797 trace_file = qemu_opt_get(opts, "file");
3798 break;
3800 case QEMU_OPTION_readconfig:
3802 int ret = qemu_read_config_file(optarg);
3803 if (ret < 0) {
3804 fprintf(stderr, "read config %s: %s\n", optarg,
3805 strerror(-ret));
3806 exit(1);
3808 break;
3810 case QEMU_OPTION_spice:
3811 olist = qemu_find_opts("spice");
3812 if (!olist) {
3813 fprintf(stderr, "spice is not supported by this qemu build.\n");
3814 exit(1);
3816 opts = qemu_opts_parse(olist, optarg, 0);
3817 if (!opts) {
3818 exit(1);
3820 display_remote++;
3821 break;
3822 case QEMU_OPTION_writeconfig:
3824 FILE *fp;
3825 if (strcmp(optarg, "-") == 0) {
3826 fp = stdout;
3827 } else {
3828 fp = fopen(optarg, "w");
3829 if (fp == NULL) {
3830 fprintf(stderr, "open %s: %s\n", optarg, strerror(errno));
3831 exit(1);
3834 qemu_config_write(fp);
3835 fclose(fp);
3836 break;
3838 case QEMU_OPTION_qtest:
3839 qtest_chrdev = optarg;
3840 break;
3841 case QEMU_OPTION_qtest_log:
3842 qtest_log = optarg;
3843 break;
3844 case QEMU_OPTION_sandbox:
3845 opts = qemu_opts_parse(qemu_find_opts("sandbox"), optarg, 1);
3846 if (!opts) {
3847 exit(1);
3849 break;
3850 case QEMU_OPTION_add_fd:
3851 #ifndef _WIN32
3852 opts = qemu_opts_parse(qemu_find_opts("add-fd"), optarg, 0);
3853 if (!opts) {
3854 exit(1);
3856 #else
3857 error_report("File descriptor passing is disabled on this "
3858 "platform");
3859 exit(1);
3860 #endif
3861 break;
3862 case QEMU_OPTION_object:
3863 opts = qemu_opts_parse(qemu_find_opts("object"), optarg, 1);
3864 if (!opts) {
3865 exit(1);
3867 break;
3868 case QEMU_OPTION_realtime:
3869 opts = qemu_opts_parse(qemu_find_opts("realtime"), optarg, 0);
3870 if (!opts) {
3871 exit(1);
3873 configure_realtime(opts);
3874 break;
3875 case QEMU_OPTION_msg:
3876 opts = qemu_opts_parse(qemu_find_opts("msg"), optarg, 0);
3877 if (!opts) {
3878 exit(1);
3880 configure_msg(opts);
3881 break;
3882 default:
3883 os_parse_cmd_args(popt->index, optarg);
3887 loc_set_none();
3889 if (qemu_init_main_loop()) {
3890 fprintf(stderr, "qemu_init_main_loop failed\n");
3891 exit(1);
3894 if (qemu_opts_foreach(qemu_find_opts("sandbox"), parse_sandbox, NULL, 0)) {
3895 exit(1);
3898 #ifndef _WIN32
3899 if (qemu_opts_foreach(qemu_find_opts("add-fd"), parse_add_fd, NULL, 1)) {
3900 exit(1);
3903 if (qemu_opts_foreach(qemu_find_opts("add-fd"), cleanup_add_fd, NULL, 1)) {
3904 exit(1);
3906 #endif
3908 if (machine_class == NULL) {
3909 fprintf(stderr, "No machine found.\n");
3910 exit(1);
3913 current_machine = MACHINE(object_new(object_class_get_name(
3914 OBJECT_CLASS(machine_class))));
3915 object_property_add_child(object_get_root(), "machine",
3916 OBJECT(current_machine), &error_abort);
3918 machine = machine_class->qemu_machine;
3919 if (machine->hw_version) {
3920 qemu_set_version(machine->hw_version);
3923 if (qemu_opts_foreach(qemu_find_opts("object"),
3924 object_create, NULL, 0) != 0) {
3925 exit(1);
3928 /* Init CPU def lists, based on config
3929 * - Must be called after all the qemu_read_config_file() calls
3930 * - Must be called before list_cpus()
3931 * - Must be called before machine->init()
3933 cpudef_init();
3935 if (cpu_model && is_help_option(cpu_model)) {
3936 list_cpus(stdout, &fprintf, cpu_model);
3937 exit(0);
3940 /* Open the logfile at this point, if necessary. We can't open the logfile
3941 * when encountering either of the logging options (-d or -D) because the
3942 * other one may be encountered later on the command line, changing the
3943 * location or level of logging.
3945 if (log_mask) {
3946 int mask;
3947 if (log_file) {
3948 qemu_set_log_filename(log_file);
3951 mask = qemu_str_to_log_mask(log_mask);
3952 if (!mask) {
3953 qemu_print_log_usage(stdout);
3954 exit(1);
3956 qemu_set_log(mask);
3959 if (!is_daemonized()) {
3960 if (!trace_backend_init(trace_events, trace_file)) {
3961 exit(1);
3965 /* If no data_dir is specified then try to find it relative to the
3966 executable path. */
3967 if (data_dir_idx < ARRAY_SIZE(data_dir)) {
3968 data_dir[data_dir_idx] = os_find_datadir();
3969 if (data_dir[data_dir_idx] != NULL) {
3970 data_dir_idx++;
3973 /* If all else fails use the install path specified when building. */
3974 if (data_dir_idx < ARRAY_SIZE(data_dir)) {
3975 data_dir[data_dir_idx++] = CONFIG_QEMU_DATADIR;
3978 smp_parse(qemu_opts_find(qemu_find_opts("smp-opts"), NULL));
3980 machine->max_cpus = machine->max_cpus ?: 1; /* Default to UP */
3981 if (smp_cpus > machine->max_cpus) {
3982 fprintf(stderr, "Number of SMP cpus requested (%d), exceeds max cpus "
3983 "supported by machine `%s' (%d)\n", smp_cpus, machine->name,
3984 machine->max_cpus);
3985 exit(1);
3989 * Get the default machine options from the machine if it is not already
3990 * specified either by the configuration file or by the command line.
3992 if (machine->default_machine_opts) {
3993 qemu_opts_set_defaults(qemu_find_opts("machine"),
3994 machine->default_machine_opts, 0);
3997 qemu_opts_foreach(qemu_find_opts("device"), default_driver_check, NULL, 0);
3998 qemu_opts_foreach(qemu_find_opts("global"), default_driver_check, NULL, 0);
4000 if (!vga_model && !default_vga) {
4001 vga_interface_type = VGA_DEVICE;
4003 if (!has_defaults || machine->no_serial) {
4004 default_serial = 0;
4006 if (!has_defaults || machine->no_parallel) {
4007 default_parallel = 0;
4009 if (!has_defaults || !machine->use_virtcon) {
4010 default_virtcon = 0;
4012 if (!has_defaults || !machine->use_sclp) {
4013 default_sclp = 0;
4015 if (!has_defaults || machine->no_floppy) {
4016 default_floppy = 0;
4018 if (!has_defaults || machine->no_cdrom) {
4019 default_cdrom = 0;
4021 if (!has_defaults || machine->no_sdcard) {
4022 default_sdcard = 0;
4024 if (!has_defaults) {
4025 default_monitor = 0;
4026 default_net = 0;
4027 default_vga = 0;
4030 if (is_daemonized()) {
4031 /* According to documentation and historically, -nographic redirects
4032 * serial port, parallel port and monitor to stdio, which does not work
4033 * with -daemonize. We can redirect these to null instead, but since
4034 * -nographic is legacy, let's just error out.
4035 * We disallow -nographic only if all other ports are not redirected
4036 * explicitly, to not break existing legacy setups which uses
4037 * -nographic _and_ redirects all ports explicitly - this is valid
4038 * usage, -nographic is just a no-op in this case.
4040 if (display_type == DT_NOGRAPHIC
4041 && (default_parallel || default_serial
4042 || default_monitor || default_virtcon)) {
4043 fprintf(stderr, "-nographic can not be used with -daemonize\n");
4044 exit(1);
4046 #ifdef CONFIG_CURSES
4047 if (display_type == DT_CURSES) {
4048 fprintf(stderr, "curses display can not be used with -daemonize\n");
4049 exit(1);
4051 #endif
4054 if (display_type == DT_NOGRAPHIC) {
4055 if (default_parallel)
4056 add_device_config(DEV_PARALLEL, "null");
4057 if (default_serial && default_monitor) {
4058 add_device_config(DEV_SERIAL, "mon:stdio");
4059 } else if (default_virtcon && default_monitor) {
4060 add_device_config(DEV_VIRTCON, "mon:stdio");
4061 } else if (default_sclp && default_monitor) {
4062 add_device_config(DEV_SCLP, "mon:stdio");
4063 } else {
4064 if (default_serial)
4065 add_device_config(DEV_SERIAL, "stdio");
4066 if (default_virtcon)
4067 add_device_config(DEV_VIRTCON, "stdio");
4068 if (default_sclp) {
4069 add_device_config(DEV_SCLP, "stdio");
4071 if (default_monitor)
4072 monitor_parse("stdio", "readline");
4074 } else {
4075 if (default_serial)
4076 add_device_config(DEV_SERIAL, "vc:80Cx24C");
4077 if (default_parallel)
4078 add_device_config(DEV_PARALLEL, "vc:80Cx24C");
4079 if (default_monitor)
4080 monitor_parse("vc:80Cx24C", "readline");
4081 if (default_virtcon)
4082 add_device_config(DEV_VIRTCON, "vc:80Cx24C");
4083 if (default_sclp) {
4084 add_device_config(DEV_SCLP, "vc:80Cx24C");
4088 if (display_type == DT_DEFAULT && !display_remote) {
4089 #if defined(CONFIG_GTK)
4090 display_type = DT_GTK;
4091 #elif defined(CONFIG_SDL) || defined(CONFIG_COCOA)
4092 display_type = DT_SDL;
4093 #elif defined(CONFIG_VNC)
4094 vnc_display = "localhost:0,to=99";
4095 show_vnc_port = 1;
4096 #else
4097 display_type = DT_NONE;
4098 #endif
4101 if ((no_frame || alt_grab || ctrl_grab) && display_type != DT_SDL) {
4102 fprintf(stderr, "-no-frame, -alt-grab and -ctrl-grab are only valid "
4103 "for SDL, ignoring option\n");
4105 if (no_quit && (display_type != DT_GTK && display_type != DT_SDL)) {
4106 fprintf(stderr, "-no-quit is only valid for GTK and SDL, "
4107 "ignoring option\n");
4110 #if defined(CONFIG_GTK)
4111 if (display_type == DT_GTK) {
4112 early_gtk_display_init();
4114 #endif
4116 socket_init();
4118 if (qemu_opts_foreach(qemu_find_opts("chardev"), chardev_init_func, NULL, 1) != 0)
4119 exit(1);
4120 #ifdef CONFIG_VIRTFS
4121 if (qemu_opts_foreach(qemu_find_opts("fsdev"), fsdev_init_func, NULL, 1) != 0) {
4122 exit(1);
4124 #endif
4126 os_daemonize();
4128 if (pid_file && qemu_create_pidfile(pid_file) != 0) {
4129 os_pidfile_error();
4130 exit(1);
4133 /* init the memory */
4134 if (ram_size == 0) {
4135 ram_size = DEFAULT_RAM_SIZE * 1024 * 1024;
4138 if (qemu_opts_foreach(qemu_find_opts("device"), device_help_func, NULL, 0)
4139 != 0) {
4140 exit(0);
4143 configure_accelerator(machine);
4145 if (qtest_chrdev) {
4146 Error *local_err = NULL;
4147 qtest_init(qtest_chrdev, qtest_log, &local_err);
4148 if (local_err) {
4149 error_report("%s", error_get_pretty(local_err));
4150 error_free(local_err);
4151 exit(1);
4155 machine_opts = qemu_get_machine_opts();
4156 kernel_filename = qemu_opt_get(machine_opts, "kernel");
4157 initrd_filename = qemu_opt_get(machine_opts, "initrd");
4158 kernel_cmdline = qemu_opt_get(machine_opts, "append");
4159 bios_name = qemu_opt_get(machine_opts, "firmware");
4161 boot_order = machine->default_boot_order;
4162 opts = qemu_opts_find(qemu_find_opts("boot-opts"), NULL);
4163 if (opts) {
4164 char *normal_boot_order;
4165 const char *order, *once;
4167 order = qemu_opt_get(opts, "order");
4168 if (order) {
4169 validate_bootdevices(order);
4170 boot_order = order;
4173 once = qemu_opt_get(opts, "once");
4174 if (once) {
4175 validate_bootdevices(once);
4176 normal_boot_order = g_strdup(boot_order);
4177 boot_order = once;
4178 qemu_register_reset(restore_boot_order, normal_boot_order);
4181 boot_menu = qemu_opt_get_bool(opts, "menu", boot_menu);
4182 boot_strict = qemu_opt_get_bool(opts, "strict", false);
4185 if (!kernel_cmdline) {
4186 kernel_cmdline = "";
4189 linux_boot = (kernel_filename != NULL);
4191 if (!linux_boot && *kernel_cmdline != '\0') {
4192 fprintf(stderr, "-append only allowed with -kernel option\n");
4193 exit(1);
4196 if (!linux_boot && initrd_filename != NULL) {
4197 fprintf(stderr, "-initrd only allowed with -kernel option\n");
4198 exit(1);
4201 if (!linux_boot && qemu_opt_get(machine_opts, "dtb")) {
4202 fprintf(stderr, "-dtb only allowed with -kernel option\n");
4203 exit(1);
4206 os_set_line_buffering();
4208 qemu_init_cpu_loop();
4209 qemu_mutex_lock_iothread();
4211 #ifdef CONFIG_SPICE
4212 /* spice needs the timers to be initialized by this point */
4213 qemu_spice_init();
4214 #endif
4216 if (icount_option && (kvm_enabled() || xen_enabled())) {
4217 fprintf(stderr, "-icount is not allowed with kvm or xen\n");
4218 exit(1);
4220 configure_icount(icount_option);
4222 /* clean up network at qemu process termination */
4223 atexit(&net_cleanup);
4225 if (net_init_clients() < 0) {
4226 exit(1);
4229 #ifdef CONFIG_TPM
4230 if (tpm_init() < 0) {
4231 exit(1);
4233 #endif
4235 /* init the bluetooth world */
4236 if (foreach_device_config(DEV_BT, bt_parse))
4237 exit(1);
4239 if (!xen_enabled()) {
4240 /* On 32-bit hosts, QEMU is limited by virtual address space */
4241 if (ram_size > (2047 << 20) && HOST_LONG_BITS == 32) {
4242 fprintf(stderr, "qemu: at most 2047 MB RAM can be simulated\n");
4243 exit(1);
4247 cpu_exec_init_all();
4249 blk_mig_init();
4251 /* open the virtual block devices */
4252 if (snapshot)
4253 qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot, NULL, 0);
4254 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func,
4255 &machine->block_default_type, 1) != 0) {
4256 exit(1);
4259 default_drive(default_cdrom, snapshot, machine->block_default_type, 2,
4260 CDROM_OPTS);
4261 default_drive(default_floppy, snapshot, IF_FLOPPY, 0, FD_OPTS);
4262 default_drive(default_sdcard, snapshot, IF_SD, 0, SD_OPTS);
4264 register_savevm_live(NULL, "ram", 0, 4, &savevm_ram_handlers, NULL);
4266 if (nb_numa_nodes > 0) {
4267 int i;
4269 if (nb_numa_nodes > MAX_NODES) {
4270 nb_numa_nodes = MAX_NODES;
4273 /* If no memory size if given for any node, assume the default case
4274 * and distribute the available memory equally across all nodes
4276 for (i = 0; i < nb_numa_nodes; i++) {
4277 if (node_mem[i] != 0)
4278 break;
4280 if (i == nb_numa_nodes) {
4281 uint64_t usedmem = 0;
4283 /* On Linux, the each node's border has to be 8MB aligned,
4284 * the final node gets the rest.
4286 for (i = 0; i < nb_numa_nodes - 1; i++) {
4287 node_mem[i] = (ram_size / nb_numa_nodes) & ~((1 << 23UL) - 1);
4288 usedmem += node_mem[i];
4290 node_mem[i] = ram_size - usedmem;
4293 for (i = 0; i < nb_numa_nodes; i++) {
4294 if (!bitmap_empty(node_cpumask[i], MAX_CPUMASK_BITS)) {
4295 break;
4298 /* assigning the VCPUs round-robin is easier to implement, guest OSes
4299 * must cope with this anyway, because there are BIOSes out there in
4300 * real machines which also use this scheme.
4302 if (i == nb_numa_nodes) {
4303 for (i = 0; i < max_cpus; i++) {
4304 set_bit(i, node_cpumask[i % nb_numa_nodes]);
4309 if (qemu_opts_foreach(qemu_find_opts("mon"), mon_init_func, NULL, 1) != 0) {
4310 exit(1);
4313 if (foreach_device_config(DEV_SERIAL, serial_parse) < 0)
4314 exit(1);
4315 if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0)
4316 exit(1);
4317 if (foreach_device_config(DEV_VIRTCON, virtcon_parse) < 0)
4318 exit(1);
4319 if (foreach_device_config(DEV_SCLP, sclp_parse) < 0) {
4320 exit(1);
4322 if (foreach_device_config(DEV_DEBUGCON, debugcon_parse) < 0)
4323 exit(1);
4325 /* If no default VGA is requested, the default is "none". */
4326 if (default_vga) {
4327 if (cirrus_vga_available()) {
4328 vga_model = "cirrus";
4329 } else if (vga_available()) {
4330 vga_model = "std";
4333 if (vga_model) {
4334 select_vgahw(vga_model);
4337 if (watchdog) {
4338 i = select_watchdog(watchdog);
4339 if (i > 0)
4340 exit (i == 1 ? 1 : 0);
4343 if (machine->compat_props) {
4344 qdev_prop_register_global_list(machine->compat_props);
4346 qemu_add_globals();
4348 qdev_machine_init();
4350 QEMUMachineInitArgs args = { .machine = machine,
4351 .ram_size = ram_size,
4352 .boot_order = boot_order,
4353 .kernel_filename = kernel_filename,
4354 .kernel_cmdline = kernel_cmdline,
4355 .initrd_filename = initrd_filename,
4356 .cpu_model = cpu_model };
4358 current_machine->init_args = args;
4359 machine->init(&current_machine->init_args);
4361 audio_init();
4363 cpu_synchronize_all_post_init();
4365 set_numa_modes();
4367 /* init USB devices */
4368 if (usb_enabled(false)) {
4369 if (foreach_device_config(DEV_USB, usb_parse) < 0)
4370 exit(1);
4373 /* init generic devices */
4374 if (qemu_opts_foreach(qemu_find_opts("device"), device_init_func, NULL, 1) != 0)
4375 exit(1);
4377 net_check_clients();
4379 ds = init_displaystate();
4381 /* init local displays */
4382 switch (display_type) {
4383 case DT_NOGRAPHIC:
4384 (void)ds; /* avoid warning if no display is configured */
4385 break;
4386 #if defined(CONFIG_CURSES)
4387 case DT_CURSES:
4388 curses_display_init(ds, full_screen);
4389 break;
4390 #endif
4391 #if defined(CONFIG_SDL)
4392 case DT_SDL:
4393 sdl_display_init(ds, full_screen, no_frame);
4394 break;
4395 #elif defined(CONFIG_COCOA)
4396 case DT_SDL:
4397 cocoa_display_init(ds, full_screen);
4398 break;
4399 #endif
4400 #if defined(CONFIG_GTK)
4401 case DT_GTK:
4402 gtk_display_init(ds, full_screen);
4403 break;
4404 #endif
4405 default:
4406 break;
4409 /* must be after terminal init, SDL library changes signal handlers */
4410 os_setup_signal_handling();
4412 #ifdef CONFIG_VNC
4413 /* init remote displays */
4414 if (vnc_display) {
4415 Error *local_err = NULL;
4416 vnc_display_init(ds);
4417 vnc_display_open(ds, vnc_display, &local_err);
4418 if (local_err != NULL) {
4419 error_report("Failed to start VNC server on `%s': %s",
4420 vnc_display, error_get_pretty(local_err));
4421 error_free(local_err);
4422 exit(1);
4425 if (show_vnc_port) {
4426 printf("VNC server running on `%s'\n", vnc_display_local_addr(ds));
4429 #endif
4430 #ifdef CONFIG_SPICE
4431 if (using_spice) {
4432 qemu_spice_display_init();
4434 #endif
4436 if (foreach_device_config(DEV_GDB, gdbserver_start) < 0) {
4437 exit(1);
4440 qdev_machine_creation_done();
4442 if (rom_load_all() != 0) {
4443 fprintf(stderr, "rom loading failed\n");
4444 exit(1);
4447 /* TODO: once all bus devices are qdevified, this should be done
4448 * when bus is created by qdev.c */
4449 qemu_register_reset(qbus_reset_all_fn, sysbus_get_default());
4450 qemu_run_machine_init_done_notifiers();
4452 /* Done notifiers can load ROMs */
4453 rom_load_done();
4455 qemu_system_reset(VMRESET_SILENT);
4456 if (loadvm) {
4457 if (load_vmstate(loadvm) < 0) {
4458 autostart = 0;
4462 if (incoming) {
4463 Error *local_err = NULL;
4464 qemu_start_incoming_migration(incoming, &local_err);
4465 if (local_err) {
4466 error_report("-incoming %s: %s", incoming,
4467 error_get_pretty(local_err));
4468 error_free(local_err);
4469 exit(1);
4471 } else if (autostart) {
4472 vm_start();
4475 os_setup_post();
4477 if (is_daemonized()) {
4478 if (!trace_backend_init(trace_events, trace_file)) {
4479 exit(1);
4483 main_loop();
4484 bdrv_close_all();
4485 pause_all_vcpus();
4486 res_free();
4487 #ifdef CONFIG_TPM
4488 tpm_cleanup();
4489 #endif
4491 return 0;