]> Git Repo - qemu.git/blob - vl.c
spice: remove spice-experimental.h include
[qemu.git] / vl.c
1 /*
2  * QEMU System Emulator
3  *
4  * Copyright (c) 2003-2008 Fabrice Bellard
5  *
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:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
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.
23  */
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>
30
31 #include "config-host.h"
32
33 #ifdef CONFIG_SECCOMP
34 #include "sysemu/seccomp.h"
35 #endif
36
37 #if defined(CONFIG_VDE)
38 #include <libvdeplug.h>
39 #endif
40
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)
46 {
47     return qemu_main(argc, argv, NULL);
48 }
49 #undef main
50 #define main qemu_main
51 #endif
52 #endif /* CONFIG_SDL */
53
54 #ifdef CONFIG_COCOA
55 #undef main
56 #define main qemu_main
57 #endif /* CONFIG_COCOA */
58
59 #include <glib.h>
60
61 #include "qemu/sockets.h"
62 #include "hw/hw.h"
63 #include "hw/boards.h"
64 #include "sysemu/accel.h"
65 #include "hw/usb.h"
66 #include "hw/i386/pc.h"
67 #include "hw/isa/isa.h"
68 #include "hw/bt.h"
69 #include "sysemu/watchdog.h"
70 #include "hw/i386/smbios.h"
71 #include "hw/xen/xen.h"
72 #include "hw/qdev.h"
73 #include "hw/loader.h"
74 #include "monitor/qdev.h"
75 #include "sysemu/bt.h"
76 #include "net/net.h"
77 #include "net/slirp.h"
78 #include "monitor/monitor.h"
79 #include "ui/console.h"
80 #include "sysemu/sysemu.h"
81 #include "exec/gdbstub.h"
82 #include "qemu/timer.h"
83 #include "sysemu/char.h"
84 #include "qemu/bitmap.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"
103
104 #include "disas/disas.h"
105
106
107 #include "slirp/libslirp.h"
108
109 #include "trace.h"
110 #include "trace/control.h"
111 #include "qemu/queue.h"
112 #include "sysemu/cpus.h"
113 #include "sysemu/arch_init.h"
114 #include "qemu/osdep.h"
115
116 #include "ui/qemu-spice.h"
117 #include "qapi/string-input-visitor.h"
118 #include "qapi/opts-visitor.h"
119 #include "qom/object_interfaces.h"
120 #include "qapi-event.h"
121
122 #define DEFAULT_RAM_SIZE 128
123
124 #define MAX_VIRTIO_CONSOLES 1
125 #define MAX_SCLP_CONSOLES 1
126
127 static const char *data_dir[16];
128 static int data_dir_idx;
129 const char *bios_name = NULL;
130 enum vga_retrace_method vga_retrace_method = VGA_RETRACE_DUMB;
131 DisplayType display_type = DT_DEFAULT;
132 static int display_remote;
133 const char* keyboard_layout = NULL;
134 ram_addr_t ram_size;
135 const char *mem_path = NULL;
136 int mem_prealloc = 0; /* force preallocation of physical target memory */
137 bool enable_mlock = false;
138 int nb_nics;
139 NICInfo nd_table[MAX_NICS];
140 int autostart;
141 static int rtc_utc = 1;
142 static int rtc_date_offset = -1; /* -1 means no change */
143 QEMUClockType rtc_clock;
144 int vga_interface_type = VGA_NONE;
145 static int full_screen = 0;
146 static int no_frame = 0;
147 int no_quit = 0;
148 #ifdef CONFIG_GTK
149 static bool grab_on_hover;
150 #endif
151 CharDriverState *serial_hds[MAX_SERIAL_PORTS];
152 CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
153 CharDriverState *virtcon_hds[MAX_VIRTIO_CONSOLES];
154 CharDriverState *sclp_hds[MAX_SCLP_CONSOLES];
155 int win2k_install_hack = 0;
156 int singlestep = 0;
157 int smp_cpus = 1;
158 int max_cpus = 0;
159 int smp_cores = 1;
160 int smp_threads = 1;
161 #ifdef CONFIG_VNC
162 const char *vnc_display;
163 #endif
164 int acpi_enabled = 1;
165 int no_hpet = 0;
166 int fd_bootchk = 1;
167 static int no_reboot;
168 int no_shutdown = 0;
169 int cursor_hide = 1;
170 int graphic_rotate = 0;
171 const char *watchdog;
172 QEMUOptionRom option_rom[MAX_OPTION_ROMS];
173 int nb_option_roms;
174 int semihosting_enabled = 0;
175 int old_param = 0;
176 const char *qemu_name;
177 int alt_grab = 0;
178 int ctrl_grab = 0;
179 unsigned int nb_prom_envs = 0;
180 const char *prom_envs[MAX_PROM_ENVS];
181 int boot_menu;
182 bool boot_strict;
183 uint8_t *boot_splash_filedata;
184 size_t boot_splash_filedata_size;
185 uint8_t qemu_extra_params_fw[2];
186
187 int icount_align_option;
188
189 int nb_numa_nodes;
190 int max_numa_nodeid;
191 NodeInfo numa_info[MAX_NODES];
192
193 /* The bytes in qemu_uuid[] are in the order specified by RFC4122, _not_ in the
194  * little-endian "wire format" described in the SMBIOS 2.6 specification.
195  */
196 uint8_t qemu_uuid[16];
197 bool qemu_uuid_set;
198
199 static QEMUBootSetHandler *boot_set_handler;
200 static void *boot_set_opaque;
201
202 static NotifierList exit_notifiers =
203     NOTIFIER_LIST_INITIALIZER(exit_notifiers);
204
205 static NotifierList machine_init_done_notifiers =
206     NOTIFIER_LIST_INITIALIZER(machine_init_done_notifiers);
207
208 bool xen_allowed;
209 uint32_t xen_domid;
210 enum xen_mode xen_mode = XEN_EMULATE;
211
212 static int has_defaults = 1;
213 static int default_serial = 1;
214 static int default_parallel = 1;
215 static int default_virtcon = 1;
216 static int default_sclp = 1;
217 static int default_monitor = 1;
218 static int default_floppy = 1;
219 static int default_cdrom = 1;
220 static int default_sdcard = 1;
221 static int default_vga = 1;
222
223 static struct {
224     const char *driver;
225     int *flag;
226 } default_list[] = {
227     { .driver = "isa-serial",           .flag = &default_serial    },
228     { .driver = "isa-parallel",         .flag = &default_parallel  },
229     { .driver = "isa-fdc",              .flag = &default_floppy    },
230     { .driver = "ide-cd",               .flag = &default_cdrom     },
231     { .driver = "ide-hd",               .flag = &default_cdrom     },
232     { .driver = "ide-drive",            .flag = &default_cdrom     },
233     { .driver = "scsi-cd",              .flag = &default_cdrom     },
234     { .driver = "virtio-serial-pci",    .flag = &default_virtcon   },
235     { .driver = "virtio-serial-s390",   .flag = &default_virtcon   },
236     { .driver = "virtio-serial",        .flag = &default_virtcon   },
237     { .driver = "VGA",                  .flag = &default_vga       },
238     { .driver = "isa-vga",              .flag = &default_vga       },
239     { .driver = "cirrus-vga",           .flag = &default_vga       },
240     { .driver = "isa-cirrus-vga",       .flag = &default_vga       },
241     { .driver = "vmware-svga",          .flag = &default_vga       },
242     { .driver = "qxl-vga",              .flag = &default_vga       },
243 };
244
245 static QemuOptsList qemu_rtc_opts = {
246     .name = "rtc",
247     .head = QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts.head),
248     .desc = {
249         {
250             .name = "base",
251             .type = QEMU_OPT_STRING,
252         },{
253             .name = "clock",
254             .type = QEMU_OPT_STRING,
255         },{
256             .name = "driftfix",
257             .type = QEMU_OPT_STRING,
258         },
259         { /* end of list */ }
260     },
261 };
262
263 static QemuOptsList qemu_sandbox_opts = {
264     .name = "sandbox",
265     .implied_opt_name = "enable",
266     .head = QTAILQ_HEAD_INITIALIZER(qemu_sandbox_opts.head),
267     .desc = {
268         {
269             .name = "enable",
270             .type = QEMU_OPT_BOOL,
271         },
272         { /* end of list */ }
273     },
274 };
275
276 static QemuOptsList qemu_trace_opts = {
277     .name = "trace",
278     .implied_opt_name = "trace",
279     .head = QTAILQ_HEAD_INITIALIZER(qemu_trace_opts.head),
280     .desc = {
281         {
282             .name = "events",
283             .type = QEMU_OPT_STRING,
284         },{
285             .name = "file",
286             .type = QEMU_OPT_STRING,
287         },
288         { /* end of list */ }
289     },
290 };
291
292 static QemuOptsList qemu_option_rom_opts = {
293     .name = "option-rom",
294     .implied_opt_name = "romfile",
295     .head = QTAILQ_HEAD_INITIALIZER(qemu_option_rom_opts.head),
296     .desc = {
297         {
298             .name = "bootindex",
299             .type = QEMU_OPT_NUMBER,
300         }, {
301             .name = "romfile",
302             .type = QEMU_OPT_STRING,
303         },
304         { /* end of list */ }
305     },
306 };
307
308 static QemuOptsList qemu_machine_opts = {
309     .name = "machine",
310     .implied_opt_name = "type",
311     .merge_lists = true,
312     .head = QTAILQ_HEAD_INITIALIZER(qemu_machine_opts.head),
313     .desc = {
314         {
315             .name = "type",
316             .type = QEMU_OPT_STRING,
317             .help = "emulated machine"
318         }, {
319             .name = "accel",
320             .type = QEMU_OPT_STRING,
321             .help = "accelerator list",
322         }, {
323             .name = "kernel_irqchip",
324             .type = QEMU_OPT_BOOL,
325             .help = "use KVM in-kernel irqchip",
326         }, {
327             .name = "kvm_shadow_mem",
328             .type = QEMU_OPT_SIZE,
329             .help = "KVM shadow MMU size",
330         }, {
331             .name = "kernel",
332             .type = QEMU_OPT_STRING,
333             .help = "Linux kernel image file",
334         }, {
335             .name = "initrd",
336             .type = QEMU_OPT_STRING,
337             .help = "Linux initial ramdisk file",
338         }, {
339             .name = "append",
340             .type = QEMU_OPT_STRING,
341             .help = "Linux kernel command line",
342         }, {
343             .name = "dtb",
344             .type = QEMU_OPT_STRING,
345             .help = "Linux kernel device tree file",
346         }, {
347             .name = "dumpdtb",
348             .type = QEMU_OPT_STRING,
349             .help = "Dump current dtb to a file and quit",
350         }, {
351             .name = "phandle_start",
352             .type = QEMU_OPT_NUMBER,
353             .help = "The first phandle ID we may generate dynamically",
354         }, {
355             .name = "dt_compatible",
356             .type = QEMU_OPT_STRING,
357             .help = "Overrides the \"compatible\" property of the dt root node",
358         }, {
359             .name = "dump-guest-core",
360             .type = QEMU_OPT_BOOL,
361             .help = "Include guest memory in  a core dump",
362         }, {
363             .name = "mem-merge",
364             .type = QEMU_OPT_BOOL,
365             .help = "enable/disable memory merge support",
366         },{
367             .name = "usb",
368             .type = QEMU_OPT_BOOL,
369             .help = "Set on/off to enable/disable usb",
370         },{
371             .name = "firmware",
372             .type = QEMU_OPT_STRING,
373             .help = "firmware image",
374         },{
375             .name = "kvm-type",
376             .type = QEMU_OPT_STRING,
377             .help = "Specifies the KVM virtualization mode (HV, PR)",
378         },{
379             .name = PC_MACHINE_MAX_RAM_BELOW_4G,
380             .type = QEMU_OPT_SIZE,
381             .help = "maximum ram below the 4G boundary (32bit boundary)",
382         }, {
383             .name = PC_MACHINE_VMPORT,
384             .type = QEMU_OPT_STRING,
385             .help = "Enable vmport (pc & q35)",
386         },{
387             .name = "iommu",
388             .type = QEMU_OPT_BOOL,
389             .help = "Set on/off to enable/disable Intel IOMMU (VT-d)",
390         },
391         { /* End of list */ }
392     },
393 };
394
395 static QemuOptsList qemu_boot_opts = {
396     .name = "boot-opts",
397     .implied_opt_name = "order",
398     .merge_lists = true,
399     .head = QTAILQ_HEAD_INITIALIZER(qemu_boot_opts.head),
400     .desc = {
401         {
402             .name = "order",
403             .type = QEMU_OPT_STRING,
404         }, {
405             .name = "once",
406             .type = QEMU_OPT_STRING,
407         }, {
408             .name = "menu",
409             .type = QEMU_OPT_BOOL,
410         }, {
411             .name = "splash",
412             .type = QEMU_OPT_STRING,
413         }, {
414             .name = "splash-time",
415             .type = QEMU_OPT_STRING,
416         }, {
417             .name = "reboot-timeout",
418             .type = QEMU_OPT_STRING,
419         }, {
420             .name = "strict",
421             .type = QEMU_OPT_BOOL,
422         },
423         { /*End of list */ }
424     },
425 };
426
427 static QemuOptsList qemu_add_fd_opts = {
428     .name = "add-fd",
429     .head = QTAILQ_HEAD_INITIALIZER(qemu_add_fd_opts.head),
430     .desc = {
431         {
432             .name = "fd",
433             .type = QEMU_OPT_NUMBER,
434             .help = "file descriptor of which a duplicate is added to fd set",
435         },{
436             .name = "set",
437             .type = QEMU_OPT_NUMBER,
438             .help = "ID of the fd set to add fd to",
439         },{
440             .name = "opaque",
441             .type = QEMU_OPT_STRING,
442             .help = "free-form string used to describe fd",
443         },
444         { /* end of list */ }
445     },
446 };
447
448 static QemuOptsList qemu_object_opts = {
449     .name = "object",
450     .implied_opt_name = "qom-type",
451     .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head),
452     .desc = {
453         { }
454     },
455 };
456
457 static QemuOptsList qemu_tpmdev_opts = {
458     .name = "tpmdev",
459     .implied_opt_name = "type",
460     .head = QTAILQ_HEAD_INITIALIZER(qemu_tpmdev_opts.head),
461     .desc = {
462         /* options are defined in the TPM backends */
463         { /* end of list */ }
464     },
465 };
466
467 static QemuOptsList qemu_realtime_opts = {
468     .name = "realtime",
469     .head = QTAILQ_HEAD_INITIALIZER(qemu_realtime_opts.head),
470     .desc = {
471         {
472             .name = "mlock",
473             .type = QEMU_OPT_BOOL,
474         },
475         { /* end of list */ }
476     },
477 };
478
479 static QemuOptsList qemu_msg_opts = {
480     .name = "msg",
481     .head = QTAILQ_HEAD_INITIALIZER(qemu_msg_opts.head),
482     .desc = {
483         {
484             .name = "timestamp",
485             .type = QEMU_OPT_BOOL,
486         },
487         { /* end of list */ }
488     },
489 };
490
491 static QemuOptsList qemu_name_opts = {
492     .name = "name",
493     .implied_opt_name = "guest",
494     .merge_lists = true,
495     .head = QTAILQ_HEAD_INITIALIZER(qemu_name_opts.head),
496     .desc = {
497         {
498             .name = "guest",
499             .type = QEMU_OPT_STRING,
500             .help = "Sets the name of the guest.\n"
501                     "This name will be displayed in the SDL window caption.\n"
502                     "The name will also be used for the VNC server",
503         }, {
504             .name = "process",
505             .type = QEMU_OPT_STRING,
506             .help = "Sets the name of the QEMU process, as shown in top etc",
507         }, {
508             .name = "debug-threads",
509             .type = QEMU_OPT_BOOL,
510             .help = "When enabled, name the individual threads; defaults off.\n"
511                     "NOTE: The thread names are for debugging and not a\n"
512                     "stable API.",
513         },
514         { /* End of list */ }
515     },
516 };
517
518 static QemuOptsList qemu_mem_opts = {
519     .name = "memory",
520     .implied_opt_name = "size",
521     .head = QTAILQ_HEAD_INITIALIZER(qemu_mem_opts.head),
522     .merge_lists = true,
523     .desc = {
524         {
525             .name = "size",
526             .type = QEMU_OPT_SIZE,
527         },
528         {
529             .name = "slots",
530             .type = QEMU_OPT_NUMBER,
531         },
532         {
533             .name = "maxmem",
534             .type = QEMU_OPT_SIZE,
535         },
536         { /* end of list */ }
537     },
538 };
539
540 static QemuOptsList qemu_icount_opts = {
541     .name = "icount",
542     .implied_opt_name = "shift",
543     .merge_lists = true,
544     .head = QTAILQ_HEAD_INITIALIZER(qemu_icount_opts.head),
545     .desc = {
546         {
547             .name = "shift",
548             .type = QEMU_OPT_STRING,
549         }, {
550             .name = "align",
551             .type = QEMU_OPT_BOOL,
552         },
553         { /* end of list */ }
554     },
555 };
556
557 static QemuOptsList qemu_semihosting_config_opts = {
558     .name = "semihosting-config",
559     .implied_opt_name = "enable",
560     .head = QTAILQ_HEAD_INITIALIZER(qemu_semihosting_config_opts.head),
561     .desc = {
562         {
563             .name = "enable",
564             .type = QEMU_OPT_BOOL,
565         }, {
566             .name = "target",
567             .type = QEMU_OPT_STRING,
568         },
569         { /* end of list */ }
570     },
571 };
572
573 /**
574  * Get machine options
575  *
576  * Returns: machine options (never null).
577  */
578 QemuOpts *qemu_get_machine_opts(void)
579 {
580     return qemu_find_opts_singleton("machine");
581 }
582
583 const char *qemu_get_vm_name(void)
584 {
585     return qemu_name;
586 }
587
588 static void res_free(void)
589 {
590     if (boot_splash_filedata != NULL) {
591         g_free(boot_splash_filedata);
592         boot_splash_filedata = NULL;
593     }
594 }
595
596 static int default_driver_check(QemuOpts *opts, void *opaque)
597 {
598     const char *driver = qemu_opt_get(opts, "driver");
599     int i;
600
601     if (!driver)
602         return 0;
603     for (i = 0; i < ARRAY_SIZE(default_list); i++) {
604         if (strcmp(default_list[i].driver, driver) != 0)
605             continue;
606         *(default_list[i].flag) = 0;
607     }
608     return 0;
609 }
610
611 /***********************************************************/
612 /* QEMU state */
613
614 static RunState current_run_state = RUN_STATE_PRELAUNCH;
615
616 /* We use RUN_STATE_MAX but any invalid value will do */
617 static RunState vmstop_requested = RUN_STATE_MAX;
618 static QemuMutex vmstop_lock;
619
620 typedef struct {
621     RunState from;
622     RunState to;
623 } RunStateTransition;
624
625 static const RunStateTransition runstate_transitions_def[] = {
626     /*     from      ->     to      */
627     { RUN_STATE_DEBUG, RUN_STATE_RUNNING },
628     { RUN_STATE_DEBUG, RUN_STATE_FINISH_MIGRATE },
629
630     { RUN_STATE_INMIGRATE, RUN_STATE_RUNNING },
631     { RUN_STATE_INMIGRATE, RUN_STATE_PAUSED },
632
633     { RUN_STATE_INTERNAL_ERROR, RUN_STATE_PAUSED },
634     { RUN_STATE_INTERNAL_ERROR, RUN_STATE_FINISH_MIGRATE },
635
636     { RUN_STATE_IO_ERROR, RUN_STATE_RUNNING },
637     { RUN_STATE_IO_ERROR, RUN_STATE_FINISH_MIGRATE },
638
639     { RUN_STATE_PAUSED, RUN_STATE_RUNNING },
640     { RUN_STATE_PAUSED, RUN_STATE_FINISH_MIGRATE },
641
642     { RUN_STATE_POSTMIGRATE, RUN_STATE_RUNNING },
643     { RUN_STATE_POSTMIGRATE, RUN_STATE_FINISH_MIGRATE },
644
645     { RUN_STATE_PRELAUNCH, RUN_STATE_RUNNING },
646     { RUN_STATE_PRELAUNCH, RUN_STATE_FINISH_MIGRATE },
647     { RUN_STATE_PRELAUNCH, RUN_STATE_INMIGRATE },
648
649     { RUN_STATE_FINISH_MIGRATE, RUN_STATE_RUNNING },
650     { RUN_STATE_FINISH_MIGRATE, RUN_STATE_POSTMIGRATE },
651
652     { RUN_STATE_RESTORE_VM, RUN_STATE_RUNNING },
653
654     { RUN_STATE_RUNNING, RUN_STATE_DEBUG },
655     { RUN_STATE_RUNNING, RUN_STATE_INTERNAL_ERROR },
656     { RUN_STATE_RUNNING, RUN_STATE_IO_ERROR },
657     { RUN_STATE_RUNNING, RUN_STATE_PAUSED },
658     { RUN_STATE_RUNNING, RUN_STATE_FINISH_MIGRATE },
659     { RUN_STATE_RUNNING, RUN_STATE_RESTORE_VM },
660     { RUN_STATE_RUNNING, RUN_STATE_SAVE_VM },
661     { RUN_STATE_RUNNING, RUN_STATE_SHUTDOWN },
662     { RUN_STATE_RUNNING, RUN_STATE_WATCHDOG },
663     { RUN_STATE_RUNNING, RUN_STATE_GUEST_PANICKED },
664
665     { RUN_STATE_SAVE_VM, RUN_STATE_RUNNING },
666
667     { RUN_STATE_SHUTDOWN, RUN_STATE_PAUSED },
668     { RUN_STATE_SHUTDOWN, RUN_STATE_FINISH_MIGRATE },
669
670     { RUN_STATE_DEBUG, RUN_STATE_SUSPENDED },
671     { RUN_STATE_RUNNING, RUN_STATE_SUSPENDED },
672     { RUN_STATE_SUSPENDED, RUN_STATE_RUNNING },
673     { RUN_STATE_SUSPENDED, RUN_STATE_FINISH_MIGRATE },
674
675     { RUN_STATE_WATCHDOG, RUN_STATE_RUNNING },
676     { RUN_STATE_WATCHDOG, RUN_STATE_FINISH_MIGRATE },
677
678     { RUN_STATE_GUEST_PANICKED, RUN_STATE_RUNNING },
679     { RUN_STATE_GUEST_PANICKED, RUN_STATE_FINISH_MIGRATE },
680
681     { RUN_STATE_MAX, RUN_STATE_MAX },
682 };
683
684 static bool runstate_valid_transitions[RUN_STATE_MAX][RUN_STATE_MAX];
685
686 bool runstate_check(RunState state)
687 {
688     return current_run_state == state;
689 }
690
691 static void runstate_init(void)
692 {
693     const RunStateTransition *p;
694
695     memset(&runstate_valid_transitions, 0, sizeof(runstate_valid_transitions));
696     for (p = &runstate_transitions_def[0]; p->from != RUN_STATE_MAX; p++) {
697         runstate_valid_transitions[p->from][p->to] = true;
698     }
699
700     qemu_mutex_init(&vmstop_lock);
701 }
702
703 /* This function will abort() on invalid state transitions */
704 void runstate_set(RunState new_state)
705 {
706     assert(new_state < RUN_STATE_MAX);
707
708     if (!runstate_valid_transitions[current_run_state][new_state]) {
709         fprintf(stderr, "ERROR: invalid runstate transition: '%s' -> '%s'\n",
710                 RunState_lookup[current_run_state],
711                 RunState_lookup[new_state]);
712         abort();
713     }
714     trace_runstate_set(new_state);
715     current_run_state = new_state;
716 }
717
718 int runstate_is_running(void)
719 {
720     return runstate_check(RUN_STATE_RUNNING);
721 }
722
723 bool runstate_needs_reset(void)
724 {
725     return runstate_check(RUN_STATE_INTERNAL_ERROR) ||
726         runstate_check(RUN_STATE_SHUTDOWN);
727 }
728
729 StatusInfo *qmp_query_status(Error **errp)
730 {
731     StatusInfo *info = g_malloc0(sizeof(*info));
732
733     info->running = runstate_is_running();
734     info->singlestep = singlestep;
735     info->status = current_run_state;
736
737     return info;
738 }
739
740 static bool qemu_vmstop_requested(RunState *r)
741 {
742     qemu_mutex_lock(&vmstop_lock);
743     *r = vmstop_requested;
744     vmstop_requested = RUN_STATE_MAX;
745     qemu_mutex_unlock(&vmstop_lock);
746     return *r < RUN_STATE_MAX;
747 }
748
749 void qemu_system_vmstop_request_prepare(void)
750 {
751     qemu_mutex_lock(&vmstop_lock);
752 }
753
754 void qemu_system_vmstop_request(RunState state)
755 {
756     vmstop_requested = state;
757     qemu_mutex_unlock(&vmstop_lock);
758     qemu_notify_event();
759 }
760
761 void vm_start(void)
762 {
763     RunState requested;
764
765     qemu_vmstop_requested(&requested);
766     if (runstate_is_running() && requested == RUN_STATE_MAX) {
767         return;
768     }
769
770     /* Ensure that a STOP/RESUME pair of events is emitted if a
771      * vmstop request was pending.  The BLOCK_IO_ERROR event, for
772      * example, according to documentation is always followed by
773      * the STOP event.
774      */
775     if (runstate_is_running()) {
776         qapi_event_send_stop(&error_abort);
777     } else {
778         cpu_enable_ticks();
779         runstate_set(RUN_STATE_RUNNING);
780         vm_state_notify(1, RUN_STATE_RUNNING);
781         resume_all_vcpus();
782     }
783
784     qapi_event_send_resume(&error_abort);
785 }
786
787
788 /***********************************************************/
789 /* real time host monotonic timer */
790
791 /***********************************************************/
792 /* host time/date access */
793 void qemu_get_timedate(struct tm *tm, int offset)
794 {
795     time_t ti;
796
797     time(&ti);
798     ti += offset;
799     if (rtc_date_offset == -1) {
800         if (rtc_utc)
801             gmtime_r(&ti, tm);
802         else
803             localtime_r(&ti, tm);
804     } else {
805         ti -= rtc_date_offset;
806         gmtime_r(&ti, tm);
807     }
808 }
809
810 int qemu_timedate_diff(struct tm *tm)
811 {
812     time_t seconds;
813
814     if (rtc_date_offset == -1)
815         if (rtc_utc)
816             seconds = mktimegm(tm);
817         else {
818             struct tm tmp = *tm;
819             tmp.tm_isdst = -1; /* use timezone to figure it out */
820             seconds = mktime(&tmp);
821         }
822     else
823         seconds = mktimegm(tm) + rtc_date_offset;
824
825     return seconds - time(NULL);
826 }
827
828 static void configure_rtc_date_offset(const char *startdate, int legacy)
829 {
830     time_t rtc_start_date;
831     struct tm tm;
832
833     if (!strcmp(startdate, "now") && legacy) {
834         rtc_date_offset = -1;
835     } else {
836         if (sscanf(startdate, "%d-%d-%dT%d:%d:%d",
837                    &tm.tm_year,
838                    &tm.tm_mon,
839                    &tm.tm_mday,
840                    &tm.tm_hour,
841                    &tm.tm_min,
842                    &tm.tm_sec) == 6) {
843             /* OK */
844         } else if (sscanf(startdate, "%d-%d-%d",
845                           &tm.tm_year,
846                           &tm.tm_mon,
847                           &tm.tm_mday) == 3) {
848             tm.tm_hour = 0;
849             tm.tm_min = 0;
850             tm.tm_sec = 0;
851         } else {
852             goto date_fail;
853         }
854         tm.tm_year -= 1900;
855         tm.tm_mon--;
856         rtc_start_date = mktimegm(&tm);
857         if (rtc_start_date == -1) {
858         date_fail:
859             fprintf(stderr, "Invalid date format. Valid formats are:\n"
860                             "'2006-06-17T16:01:21' or '2006-06-17'\n");
861             exit(1);
862         }
863         rtc_date_offset = time(NULL) - rtc_start_date;
864     }
865 }
866
867 static void configure_rtc(QemuOpts *opts)
868 {
869     const char *value;
870
871     value = qemu_opt_get(opts, "base");
872     if (value) {
873         if (!strcmp(value, "utc")) {
874             rtc_utc = 1;
875         } else if (!strcmp(value, "localtime")) {
876             rtc_utc = 0;
877         } else {
878             configure_rtc_date_offset(value, 0);
879         }
880     }
881     value = qemu_opt_get(opts, "clock");
882     if (value) {
883         if (!strcmp(value, "host")) {
884             rtc_clock = QEMU_CLOCK_HOST;
885         } else if (!strcmp(value, "rt")) {
886             rtc_clock = QEMU_CLOCK_REALTIME;
887         } else if (!strcmp(value, "vm")) {
888             rtc_clock = QEMU_CLOCK_VIRTUAL;
889         } else {
890             fprintf(stderr, "qemu: invalid option value '%s'\n", value);
891             exit(1);
892         }
893     }
894     value = qemu_opt_get(opts, "driftfix");
895     if (value) {
896         if (!strcmp(value, "slew")) {
897             static GlobalProperty slew_lost_ticks[] = {
898                 {
899                     .driver   = "mc146818rtc",
900                     .property = "lost_tick_policy",
901                     .value    = "slew",
902                 },
903                 { /* end of list */ }
904             };
905
906             qdev_prop_register_global_list(slew_lost_ticks);
907         } else if (!strcmp(value, "none")) {
908             /* discard is default */
909         } else {
910             fprintf(stderr, "qemu: invalid option value '%s'\n", value);
911             exit(1);
912         }
913     }
914 }
915
916 /***********************************************************/
917 /* Bluetooth support */
918 static int nb_hcis;
919 static int cur_hci;
920 static struct HCIInfo *hci_table[MAX_NICS];
921
922 struct HCIInfo *qemu_next_hci(void)
923 {
924     if (cur_hci == nb_hcis)
925         return &null_hci;
926
927     return hci_table[cur_hci++];
928 }
929
930 static int bt_hci_parse(const char *str)
931 {
932     struct HCIInfo *hci;
933     bdaddr_t bdaddr;
934
935     if (nb_hcis >= MAX_NICS) {
936         fprintf(stderr, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS);
937         return -1;
938     }
939
940     hci = hci_init(str);
941     if (!hci)
942         return -1;
943
944     bdaddr.b[0] = 0x52;
945     bdaddr.b[1] = 0x54;
946     bdaddr.b[2] = 0x00;
947     bdaddr.b[3] = 0x12;
948     bdaddr.b[4] = 0x34;
949     bdaddr.b[5] = 0x56 + nb_hcis;
950     hci->bdaddr_set(hci, bdaddr.b);
951
952     hci_table[nb_hcis++] = hci;
953
954     return 0;
955 }
956
957 static void bt_vhci_add(int vlan_id)
958 {
959     struct bt_scatternet_s *vlan = qemu_find_bt_vlan(vlan_id);
960
961     if (!vlan->slave)
962         fprintf(stderr, "qemu: warning: adding a VHCI to "
963                         "an empty scatternet %i\n", vlan_id);
964
965     bt_vhci_init(bt_new_hci(vlan));
966 }
967
968 static struct bt_device_s *bt_device_add(const char *opt)
969 {
970     struct bt_scatternet_s *vlan;
971     int vlan_id = 0;
972     char *endp = strstr(opt, ",vlan=");
973     int len = (endp ? endp - opt : strlen(opt)) + 1;
974     char devname[10];
975
976     pstrcpy(devname, MIN(sizeof(devname), len), opt);
977
978     if (endp) {
979         vlan_id = strtol(endp + 6, &endp, 0);
980         if (*endp) {
981             fprintf(stderr, "qemu: unrecognised bluetooth vlan Id\n");
982             return 0;
983         }
984     }
985
986     vlan = qemu_find_bt_vlan(vlan_id);
987
988     if (!vlan->slave)
989         fprintf(stderr, "qemu: warning: adding a slave device to "
990                         "an empty scatternet %i\n", vlan_id);
991
992     if (!strcmp(devname, "keyboard"))
993         return bt_keyboard_init(vlan);
994
995     fprintf(stderr, "qemu: unsupported bluetooth device `%s'\n", devname);
996     return 0;
997 }
998
999 static int bt_parse(const char *opt)
1000 {
1001     const char *endp, *p;
1002     int vlan;
1003
1004     if (strstart(opt, "hci", &endp)) {
1005         if (!*endp || *endp == ',') {
1006             if (*endp)
1007                 if (!strstart(endp, ",vlan=", 0))
1008                     opt = endp + 1;
1009
1010             return bt_hci_parse(opt);
1011        }
1012     } else if (strstart(opt, "vhci", &endp)) {
1013         if (!*endp || *endp == ',') {
1014             if (*endp) {
1015                 if (strstart(endp, ",vlan=", &p)) {
1016                     vlan = strtol(p, (char **) &endp, 0);
1017                     if (*endp) {
1018                         fprintf(stderr, "qemu: bad scatternet '%s'\n", p);
1019                         return 1;
1020                     }
1021                 } else {
1022                     fprintf(stderr, "qemu: bad parameter '%s'\n", endp + 1);
1023                     return 1;
1024                 }
1025             } else
1026                 vlan = 0;
1027
1028             bt_vhci_add(vlan);
1029             return 0;
1030         }
1031     } else if (strstart(opt, "device:", &endp))
1032         return !bt_device_add(endp);
1033
1034     fprintf(stderr, "qemu: bad bluetooth parameter '%s'\n", opt);
1035     return 1;
1036 }
1037
1038 static int parse_sandbox(QemuOpts *opts, void *opaque)
1039 {
1040     /* FIXME: change this to true for 1.3 */
1041     if (qemu_opt_get_bool(opts, "enable", false)) {
1042 #ifdef CONFIG_SECCOMP
1043         if (seccomp_start() < 0) {
1044             qerror_report(ERROR_CLASS_GENERIC_ERROR,
1045                           "failed to install seccomp syscall filter in the kernel");
1046             return -1;
1047         }
1048 #else
1049         qerror_report(ERROR_CLASS_GENERIC_ERROR,
1050                       "sandboxing request but seccomp is not compiled into this build");
1051         return -1;
1052 #endif
1053     }
1054
1055     return 0;
1056 }
1057
1058 static int parse_name(QemuOpts *opts, void *opaque)
1059 {
1060     const char *proc_name;
1061
1062     if (qemu_opt_get(opts, "debug-threads")) {
1063         qemu_thread_naming(qemu_opt_get_bool(opts, "debug-threads", false));
1064     }
1065     qemu_name = qemu_opt_get(opts, "guest");
1066
1067     proc_name = qemu_opt_get(opts, "process");
1068     if (proc_name) {
1069         os_set_proc_name(proc_name);
1070     }
1071
1072     return 0;
1073 }
1074
1075 bool usb_enabled(bool default_usb)
1076 {
1077     return qemu_opt_get_bool(qemu_get_machine_opts(), "usb",
1078                              has_defaults && default_usb);
1079 }
1080
1081 #ifndef _WIN32
1082 static int parse_add_fd(QemuOpts *opts, void *opaque)
1083 {
1084     int fd, dupfd, flags;
1085     int64_t fdset_id;
1086     const char *fd_opaque = NULL;
1087
1088     fd = qemu_opt_get_number(opts, "fd", -1);
1089     fdset_id = qemu_opt_get_number(opts, "set", -1);
1090     fd_opaque = qemu_opt_get(opts, "opaque");
1091
1092     if (fd < 0) {
1093         qerror_report(ERROR_CLASS_GENERIC_ERROR,
1094                       "fd option is required and must be non-negative");
1095         return -1;
1096     }
1097
1098     if (fd <= STDERR_FILENO) {
1099         qerror_report(ERROR_CLASS_GENERIC_ERROR,
1100                       "fd cannot be a standard I/O stream");
1101         return -1;
1102     }
1103
1104     /*
1105      * All fds inherited across exec() necessarily have FD_CLOEXEC
1106      * clear, while qemu sets FD_CLOEXEC on all other fds used internally.
1107      */
1108     flags = fcntl(fd, F_GETFD);
1109     if (flags == -1 || (flags & FD_CLOEXEC)) {
1110         qerror_report(ERROR_CLASS_GENERIC_ERROR,
1111                       "fd is not valid or already in use");
1112         return -1;
1113     }
1114
1115     if (fdset_id < 0) {
1116         qerror_report(ERROR_CLASS_GENERIC_ERROR,
1117                       "set option is required and must be non-negative");
1118         return -1;
1119     }
1120
1121 #ifdef F_DUPFD_CLOEXEC
1122     dupfd = fcntl(fd, F_DUPFD_CLOEXEC, 0);
1123 #else
1124     dupfd = dup(fd);
1125     if (dupfd != -1) {
1126         qemu_set_cloexec(dupfd);
1127     }
1128 #endif
1129     if (dupfd == -1) {
1130         qerror_report(ERROR_CLASS_GENERIC_ERROR,
1131                       "Error duplicating fd: %s", strerror(errno));
1132         return -1;
1133     }
1134
1135     /* add the duplicate fd, and optionally the opaque string, to the fd set */
1136     monitor_fdset_add_fd(dupfd, true, fdset_id, fd_opaque ? true : false,
1137                          fd_opaque, NULL);
1138
1139     return 0;
1140 }
1141
1142 static int cleanup_add_fd(QemuOpts *opts, void *opaque)
1143 {
1144     int fd;
1145
1146     fd = qemu_opt_get_number(opts, "fd", -1);
1147     close(fd);
1148
1149     return 0;
1150 }
1151 #endif
1152
1153 /***********************************************************/
1154 /* QEMU Block devices */
1155
1156 #define HD_OPTS "media=disk"
1157 #define CDROM_OPTS "media=cdrom"
1158 #define FD_OPTS ""
1159 #define PFLASH_OPTS ""
1160 #define MTD_OPTS ""
1161 #define SD_OPTS ""
1162
1163 static int drive_init_func(QemuOpts *opts, void *opaque)
1164 {
1165     BlockInterfaceType *block_default_type = opaque;
1166
1167     return drive_new(opts, *block_default_type) == NULL;
1168 }
1169
1170 static int drive_enable_snapshot(QemuOpts *opts, void *opaque)
1171 {
1172     if (qemu_opt_get(opts, "snapshot") == NULL) {
1173         qemu_opt_set(opts, "snapshot", "on");
1174     }
1175     return 0;
1176 }
1177
1178 static void default_drive(int enable, int snapshot, BlockInterfaceType type,
1179                           int index, const char *optstr)
1180 {
1181     QemuOpts *opts;
1182     DriveInfo *dinfo;
1183
1184     if (!enable || drive_get_by_index(type, index)) {
1185         return;
1186     }
1187
1188     opts = drive_add(type, index, NULL, optstr);
1189     if (snapshot) {
1190         drive_enable_snapshot(opts, NULL);
1191     }
1192
1193     dinfo = drive_new(opts, type);
1194     if (!dinfo) {
1195         exit(1);
1196     }
1197     dinfo->is_default = true;
1198
1199 }
1200
1201 void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque)
1202 {
1203     boot_set_handler = func;
1204     boot_set_opaque = opaque;
1205 }
1206
1207 int qemu_boot_set(const char *boot_order)
1208 {
1209     if (!boot_set_handler) {
1210         return -EINVAL;
1211     }
1212     return boot_set_handler(boot_set_opaque, boot_order);
1213 }
1214
1215 static void validate_bootdevices(const char *devices)
1216 {
1217     /* We just do some generic consistency checks */
1218     const char *p;
1219     int bitmap = 0;
1220
1221     for (p = devices; *p != '\0'; p++) {
1222         /* Allowed boot devices are:
1223          * a-b: floppy disk drives
1224          * c-f: IDE disk drives
1225          * g-m: machine implementation dependent drives
1226          * n-p: network devices
1227          * It's up to each machine implementation to check if the given boot
1228          * devices match the actual hardware implementation and firmware
1229          * features.
1230          */
1231         if (*p < 'a' || *p > 'p') {
1232             fprintf(stderr, "Invalid boot device '%c'\n", *p);
1233             exit(1);
1234         }
1235         if (bitmap & (1 << (*p - 'a'))) {
1236             fprintf(stderr, "Boot device '%c' was given twice\n", *p);
1237             exit(1);
1238         }
1239         bitmap |= 1 << (*p - 'a');
1240     }
1241 }
1242
1243 static void restore_boot_order(void *opaque)
1244 {
1245     char *normal_boot_order = opaque;
1246     static int first = 1;
1247
1248     /* Restore boot order and remove ourselves after the first boot */
1249     if (first) {
1250         first = 0;
1251         return;
1252     }
1253
1254     qemu_boot_set(normal_boot_order);
1255
1256     qemu_unregister_reset(restore_boot_order, normal_boot_order);
1257     g_free(normal_boot_order);
1258 }
1259
1260 static QemuOptsList qemu_smp_opts = {
1261     .name = "smp-opts",
1262     .implied_opt_name = "cpus",
1263     .merge_lists = true,
1264     .head = QTAILQ_HEAD_INITIALIZER(qemu_smp_opts.head),
1265     .desc = {
1266         {
1267             .name = "cpus",
1268             .type = QEMU_OPT_NUMBER,
1269         }, {
1270             .name = "sockets",
1271             .type = QEMU_OPT_NUMBER,
1272         }, {
1273             .name = "cores",
1274             .type = QEMU_OPT_NUMBER,
1275         }, {
1276             .name = "threads",
1277             .type = QEMU_OPT_NUMBER,
1278         }, {
1279             .name = "maxcpus",
1280             .type = QEMU_OPT_NUMBER,
1281         },
1282         { /*End of list */ }
1283     },
1284 };
1285
1286 static void smp_parse(QemuOpts *opts)
1287 {
1288     if (opts) {
1289
1290         unsigned cpus    = qemu_opt_get_number(opts, "cpus", 0);
1291         unsigned sockets = qemu_opt_get_number(opts, "sockets", 0);
1292         unsigned cores   = qemu_opt_get_number(opts, "cores", 0);
1293         unsigned threads = qemu_opt_get_number(opts, "threads", 0);
1294
1295         /* compute missing values, prefer sockets over cores over threads */
1296         if (cpus == 0 || sockets == 0) {
1297             sockets = sockets > 0 ? sockets : 1;
1298             cores = cores > 0 ? cores : 1;
1299             threads = threads > 0 ? threads : 1;
1300             if (cpus == 0) {
1301                 cpus = cores * threads * sockets;
1302             }
1303         } else {
1304             if (cores == 0) {
1305                 threads = threads > 0 ? threads : 1;
1306                 cores = cpus / (sockets * threads);
1307             } else {
1308                 threads = cpus / (cores * sockets);
1309             }
1310         }
1311
1312         max_cpus = qemu_opt_get_number(opts, "maxcpus", 0);
1313
1314         smp_cpus = cpus;
1315         smp_cores = cores > 0 ? cores : 1;
1316         smp_threads = threads > 0 ? threads : 1;
1317
1318     }
1319
1320     if (max_cpus == 0) {
1321         max_cpus = smp_cpus;
1322     }
1323
1324     if (max_cpus > MAX_CPUMASK_BITS) {
1325         fprintf(stderr, "Unsupported number of maxcpus\n");
1326         exit(1);
1327     }
1328     if (max_cpus < smp_cpus) {
1329         fprintf(stderr, "maxcpus must be equal to or greater than smp\n");
1330         exit(1);
1331     }
1332
1333 }
1334
1335 static void realtime_init(void)
1336 {
1337     if (enable_mlock) {
1338         if (os_mlock() < 0) {
1339             fprintf(stderr, "qemu: locking memory failed\n");
1340             exit(1);
1341         }
1342     }
1343 }
1344
1345
1346 static void configure_msg(QemuOpts *opts)
1347 {
1348     enable_timestamp_msg = qemu_opt_get_bool(opts, "timestamp", true);
1349 }
1350
1351 /***********************************************************/
1352 /* USB devices */
1353
1354 static int usb_device_add(const char *devname)
1355 {
1356     USBDevice *dev = NULL;
1357 #ifndef CONFIG_LINUX
1358     const char *p;
1359 #endif
1360
1361     if (!usb_enabled(false)) {
1362         return -1;
1363     }
1364
1365     /* drivers with .usbdevice_name entry in USBDeviceInfo */
1366     dev = usbdevice_create(devname);
1367     if (dev)
1368         goto done;
1369
1370     /* the other ones */
1371 #ifndef CONFIG_LINUX
1372     /* only the linux version is qdev-ified, usb-bsd still needs this */
1373     if (strstart(devname, "host:", &p)) {
1374         dev = usb_host_device_open(usb_bus_find(-1), p);
1375     }
1376 #endif
1377     if (!dev)
1378         return -1;
1379
1380 done:
1381     return 0;
1382 }
1383
1384 static int usb_device_del(const char *devname)
1385 {
1386     int bus_num, addr;
1387     const char *p;
1388
1389     if (strstart(devname, "host:", &p)) {
1390         return -1;
1391     }
1392
1393     if (!usb_enabled(false)) {
1394         return -1;
1395     }
1396
1397     p = strchr(devname, '.');
1398     if (!p)
1399         return -1;
1400     bus_num = strtoul(devname, NULL, 0);
1401     addr = strtoul(p + 1, NULL, 0);
1402
1403     return usb_device_delete_addr(bus_num, addr);
1404 }
1405
1406 static int usb_parse(const char *cmdline)
1407 {
1408     int r;
1409     r = usb_device_add(cmdline);
1410     if (r < 0) {
1411         fprintf(stderr, "qemu: could not add USB device '%s'\n", cmdline);
1412     }
1413     return r;
1414 }
1415
1416 void do_usb_add(Monitor *mon, const QDict *qdict)
1417 {
1418     const char *devname = qdict_get_str(qdict, "devname");
1419     if (usb_device_add(devname) < 0) {
1420         error_report("could not add USB device '%s'", devname);
1421     }
1422 }
1423
1424 void do_usb_del(Monitor *mon, const QDict *qdict)
1425 {
1426     const char *devname = qdict_get_str(qdict, "devname");
1427     if (usb_device_del(devname) < 0) {
1428         error_report("could not delete USB device '%s'", devname);
1429     }
1430 }
1431
1432 /***********************************************************/
1433 /* machine registration */
1434
1435 MachineState *current_machine;
1436
1437 static void machine_class_init(ObjectClass *oc, void *data)
1438 {
1439     MachineClass *mc = MACHINE_CLASS(oc);
1440     QEMUMachine *qm = data;
1441
1442     mc->family = qm->family;
1443     mc->name = qm->name;
1444     mc->alias = qm->alias;
1445     mc->desc = qm->desc;
1446     mc->init = qm->init;
1447     mc->reset = qm->reset;
1448     mc->hot_add_cpu = qm->hot_add_cpu;
1449     mc->kvm_type = qm->kvm_type;
1450     mc->block_default_type = qm->block_default_type;
1451     mc->units_per_default_bus = qm->units_per_default_bus;
1452     mc->max_cpus = qm->max_cpus;
1453     mc->no_serial = qm->no_serial;
1454     mc->no_parallel = qm->no_parallel;
1455     mc->use_virtcon = qm->use_virtcon;
1456     mc->use_sclp = qm->use_sclp;
1457     mc->no_floppy = qm->no_floppy;
1458     mc->no_cdrom = qm->no_cdrom;
1459     mc->no_sdcard = qm->no_sdcard;
1460     mc->has_dynamic_sysbus = qm->has_dynamic_sysbus;
1461     mc->is_default = qm->is_default;
1462     mc->default_machine_opts = qm->default_machine_opts;
1463     mc->default_boot_order = qm->default_boot_order;
1464     mc->default_display = qm->default_display;
1465     mc->compat_props = qm->compat_props;
1466     mc->hw_version = qm->hw_version;
1467 }
1468
1469 int qemu_register_machine(QEMUMachine *m)
1470 {
1471     char *name = g_strconcat(m->name, TYPE_MACHINE_SUFFIX, NULL);
1472     TypeInfo ti = {
1473         .name       = name,
1474         .parent     = TYPE_MACHINE,
1475         .class_init = machine_class_init,
1476         .class_data = (void *)m,
1477     };
1478
1479     type_register(&ti);
1480     g_free(name);
1481
1482     return 0;
1483 }
1484
1485 static MachineClass *find_machine(const char *name)
1486 {
1487     GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
1488     MachineClass *mc = NULL;
1489
1490     for (el = machines; el; el = el->next) {
1491         MachineClass *temp = el->data;
1492
1493         if (!strcmp(temp->name, name)) {
1494             mc = temp;
1495             break;
1496         }
1497         if (temp->alias &&
1498             !strcmp(temp->alias, name)) {
1499             mc = temp;
1500             break;
1501         }
1502     }
1503
1504     g_slist_free(machines);
1505     return mc;
1506 }
1507
1508 MachineClass *find_default_machine(void)
1509 {
1510     GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
1511     MachineClass *mc = NULL;
1512
1513     for (el = machines; el; el = el->next) {
1514         MachineClass *temp = el->data;
1515
1516         if (temp->is_default) {
1517             mc = temp;
1518             break;
1519         }
1520     }
1521
1522     g_slist_free(machines);
1523     return mc;
1524 }
1525
1526 MachineInfoList *qmp_query_machines(Error **errp)
1527 {
1528     GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
1529     MachineInfoList *mach_list = NULL;
1530
1531     for (el = machines; el; el = el->next) {
1532         MachineClass *mc = el->data;
1533         MachineInfoList *entry;
1534         MachineInfo *info;
1535
1536         info = g_malloc0(sizeof(*info));
1537         if (mc->is_default) {
1538             info->has_is_default = true;
1539             info->is_default = true;
1540         }
1541
1542         if (mc->alias) {
1543             info->has_alias = true;
1544             info->alias = g_strdup(mc->alias);
1545         }
1546
1547         info->name = g_strdup(mc->name);
1548         info->cpu_max = !mc->max_cpus ? 1 : mc->max_cpus;
1549
1550         entry = g_malloc0(sizeof(*entry));
1551         entry->value = info;
1552         entry->next = mach_list;
1553         mach_list = entry;
1554     }
1555
1556     g_slist_free(machines);
1557     return mach_list;
1558 }
1559
1560 /***********************************************************/
1561 /* main execution loop */
1562
1563 struct vm_change_state_entry {
1564     VMChangeStateHandler *cb;
1565     void *opaque;
1566     QLIST_ENTRY (vm_change_state_entry) entries;
1567 };
1568
1569 static QLIST_HEAD(vm_change_state_head, vm_change_state_entry) vm_change_state_head;
1570
1571 VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
1572                                                      void *opaque)
1573 {
1574     VMChangeStateEntry *e;
1575
1576     e = g_malloc0(sizeof (*e));
1577
1578     e->cb = cb;
1579     e->opaque = opaque;
1580     QLIST_INSERT_HEAD(&vm_change_state_head, e, entries);
1581     return e;
1582 }
1583
1584 void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
1585 {
1586     QLIST_REMOVE (e, entries);
1587     g_free (e);
1588 }
1589
1590 void vm_state_notify(int running, RunState state)
1591 {
1592     VMChangeStateEntry *e, *next;
1593
1594     trace_vm_state_notify(running, state);
1595
1596     QLIST_FOREACH_SAFE(e, &vm_change_state_head, entries, next) {
1597         e->cb(e->opaque, running, state);
1598     }
1599 }
1600
1601 /* reset/shutdown handler */
1602
1603 typedef struct QEMUResetEntry {
1604     QTAILQ_ENTRY(QEMUResetEntry) entry;
1605     QEMUResetHandler *func;
1606     void *opaque;
1607 } QEMUResetEntry;
1608
1609 static QTAILQ_HEAD(reset_handlers, QEMUResetEntry) reset_handlers =
1610     QTAILQ_HEAD_INITIALIZER(reset_handlers);
1611 static int reset_requested;
1612 static int shutdown_requested, shutdown_signal = -1;
1613 static pid_t shutdown_pid;
1614 static int powerdown_requested;
1615 static int debug_requested;
1616 static int suspend_requested;
1617 static WakeupReason wakeup_reason;
1618 static NotifierList powerdown_notifiers =
1619     NOTIFIER_LIST_INITIALIZER(powerdown_notifiers);
1620 static NotifierList suspend_notifiers =
1621     NOTIFIER_LIST_INITIALIZER(suspend_notifiers);
1622 static NotifierList wakeup_notifiers =
1623     NOTIFIER_LIST_INITIALIZER(wakeup_notifiers);
1624 static uint32_t wakeup_reason_mask = ~(1 << QEMU_WAKEUP_REASON_NONE);
1625
1626 int qemu_shutdown_requested_get(void)
1627 {
1628     return shutdown_requested;
1629 }
1630
1631 int qemu_reset_requested_get(void)
1632 {
1633     return reset_requested;
1634 }
1635
1636 static int qemu_shutdown_requested(void)
1637 {
1638     return atomic_xchg(&shutdown_requested, 0);
1639 }
1640
1641 static void qemu_kill_report(void)
1642 {
1643     if (!qtest_driver() && shutdown_signal != -1) {
1644         fprintf(stderr, "qemu: terminating on signal %d", shutdown_signal);
1645         if (shutdown_pid == 0) {
1646             /* This happens for eg ^C at the terminal, so it's worth
1647              * avoiding printing an odd message in that case.
1648              */
1649             fputc('\n', stderr);
1650         } else {
1651             fprintf(stderr, " from pid " FMT_pid "\n", shutdown_pid);
1652         }
1653         shutdown_signal = -1;
1654     }
1655 }
1656
1657 static int qemu_reset_requested(void)
1658 {
1659     int r = reset_requested;
1660     reset_requested = 0;
1661     return r;
1662 }
1663
1664 static int qemu_suspend_requested(void)
1665 {
1666     int r = suspend_requested;
1667     suspend_requested = 0;
1668     return r;
1669 }
1670
1671 static WakeupReason qemu_wakeup_requested(void)
1672 {
1673     return wakeup_reason;
1674 }
1675
1676 static int qemu_powerdown_requested(void)
1677 {
1678     int r = powerdown_requested;
1679     powerdown_requested = 0;
1680     return r;
1681 }
1682
1683 static int qemu_debug_requested(void)
1684 {
1685     int r = debug_requested;
1686     debug_requested = 0;
1687     return r;
1688 }
1689
1690 void qemu_register_reset(QEMUResetHandler *func, void *opaque)
1691 {
1692     QEMUResetEntry *re = g_malloc0(sizeof(QEMUResetEntry));
1693
1694     re->func = func;
1695     re->opaque = opaque;
1696     QTAILQ_INSERT_TAIL(&reset_handlers, re, entry);
1697 }
1698
1699 void qemu_unregister_reset(QEMUResetHandler *func, void *opaque)
1700 {
1701     QEMUResetEntry *re;
1702
1703     QTAILQ_FOREACH(re, &reset_handlers, entry) {
1704         if (re->func == func && re->opaque == opaque) {
1705             QTAILQ_REMOVE(&reset_handlers, re, entry);
1706             g_free(re);
1707             return;
1708         }
1709     }
1710 }
1711
1712 void qemu_devices_reset(void)
1713 {
1714     QEMUResetEntry *re, *nre;
1715
1716     /* reset all devices */
1717     QTAILQ_FOREACH_SAFE(re, &reset_handlers, entry, nre) {
1718         re->func(re->opaque);
1719     }
1720 }
1721
1722 void qemu_system_reset(bool report)
1723 {
1724     MachineClass *mc;
1725
1726     mc = current_machine ? MACHINE_GET_CLASS(current_machine) : NULL;
1727
1728     if (mc && mc->reset) {
1729         mc->reset();
1730     } else {
1731         qemu_devices_reset();
1732     }
1733     if (report) {
1734         qapi_event_send_reset(&error_abort);
1735     }
1736     cpu_synchronize_all_post_reset();
1737 }
1738
1739 void qemu_system_reset_request(void)
1740 {
1741     if (no_reboot) {
1742         shutdown_requested = 1;
1743     } else {
1744         reset_requested = 1;
1745     }
1746     cpu_stop_current();
1747     qemu_notify_event();
1748 }
1749
1750 static void qemu_system_suspend(void)
1751 {
1752     pause_all_vcpus();
1753     notifier_list_notify(&suspend_notifiers, NULL);
1754     runstate_set(RUN_STATE_SUSPENDED);
1755     qapi_event_send_suspend(&error_abort);
1756 }
1757
1758 void qemu_system_suspend_request(void)
1759 {
1760     if (runstate_check(RUN_STATE_SUSPENDED)) {
1761         return;
1762     }
1763     suspend_requested = 1;
1764     cpu_stop_current();
1765     qemu_notify_event();
1766 }
1767
1768 void qemu_register_suspend_notifier(Notifier *notifier)
1769 {
1770     notifier_list_add(&suspend_notifiers, notifier);
1771 }
1772
1773 void qemu_system_wakeup_request(WakeupReason reason)
1774 {
1775     trace_system_wakeup_request(reason);
1776
1777     if (!runstate_check(RUN_STATE_SUSPENDED)) {
1778         return;
1779     }
1780     if (!(wakeup_reason_mask & (1 << reason))) {
1781         return;
1782     }
1783     runstate_set(RUN_STATE_RUNNING);
1784     wakeup_reason = reason;
1785     qemu_notify_event();
1786 }
1787
1788 void qemu_system_wakeup_enable(WakeupReason reason, bool enabled)
1789 {
1790     if (enabled) {
1791         wakeup_reason_mask |= (1 << reason);
1792     } else {
1793         wakeup_reason_mask &= ~(1 << reason);
1794     }
1795 }
1796
1797 void qemu_register_wakeup_notifier(Notifier *notifier)
1798 {
1799     notifier_list_add(&wakeup_notifiers, notifier);
1800 }
1801
1802 void qemu_system_killed(int signal, pid_t pid)
1803 {
1804     shutdown_signal = signal;
1805     shutdown_pid = pid;
1806     no_shutdown = 0;
1807     qemu_system_shutdown_request();
1808 }
1809
1810 void qemu_system_shutdown_request(void)
1811 {
1812     trace_qemu_system_shutdown_request();
1813     shutdown_requested = 1;
1814     qemu_notify_event();
1815 }
1816
1817 static void qemu_system_powerdown(void)
1818 {
1819     qapi_event_send_powerdown(&error_abort);
1820     notifier_list_notify(&powerdown_notifiers, NULL);
1821 }
1822
1823 void qemu_system_powerdown_request(void)
1824 {
1825     trace_qemu_system_powerdown_request();
1826     powerdown_requested = 1;
1827     qemu_notify_event();
1828 }
1829
1830 void qemu_register_powerdown_notifier(Notifier *notifier)
1831 {
1832     notifier_list_add(&powerdown_notifiers, notifier);
1833 }
1834
1835 void qemu_system_debug_request(void)
1836 {
1837     debug_requested = 1;
1838     qemu_notify_event();
1839 }
1840
1841 static bool main_loop_should_exit(void)
1842 {
1843     RunState r;
1844     if (qemu_debug_requested()) {
1845         vm_stop(RUN_STATE_DEBUG);
1846     }
1847     if (qemu_suspend_requested()) {
1848         qemu_system_suspend();
1849     }
1850     if (qemu_shutdown_requested()) {
1851         qemu_kill_report();
1852         qapi_event_send_shutdown(&error_abort);
1853         if (no_shutdown) {
1854             vm_stop(RUN_STATE_SHUTDOWN);
1855         } else {
1856             return true;
1857         }
1858     }
1859     if (qemu_reset_requested()) {
1860         pause_all_vcpus();
1861         cpu_synchronize_all_states();
1862         qemu_system_reset(VMRESET_REPORT);
1863         resume_all_vcpus();
1864         if (runstate_needs_reset()) {
1865             runstate_set(RUN_STATE_PAUSED);
1866         }
1867     }
1868     if (qemu_wakeup_requested()) {
1869         pause_all_vcpus();
1870         cpu_synchronize_all_states();
1871         qemu_system_reset(VMRESET_SILENT);
1872         notifier_list_notify(&wakeup_notifiers, &wakeup_reason);
1873         wakeup_reason = QEMU_WAKEUP_REASON_NONE;
1874         resume_all_vcpus();
1875         qapi_event_send_wakeup(&error_abort);
1876     }
1877     if (qemu_powerdown_requested()) {
1878         qemu_system_powerdown();
1879     }
1880     if (qemu_vmstop_requested(&r)) {
1881         vm_stop(r);
1882     }
1883     return false;
1884 }
1885
1886 static void main_loop(void)
1887 {
1888     bool nonblocking;
1889     int last_io = 0;
1890 #ifdef CONFIG_PROFILER
1891     int64_t ti;
1892 #endif
1893     do {
1894         nonblocking = !kvm_enabled() && !xen_enabled() && last_io > 0;
1895 #ifdef CONFIG_PROFILER
1896         ti = profile_getclock();
1897 #endif
1898         last_io = main_loop_wait(nonblocking);
1899 #ifdef CONFIG_PROFILER
1900         dev_time += profile_getclock() - ti;
1901 #endif
1902     } while (!main_loop_should_exit());
1903 }
1904
1905 static void version(void)
1906 {
1907     printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n");
1908 }
1909
1910 static void help(int exitcode)
1911 {
1912     version();
1913     printf("usage: %s [options] [disk_image]\n\n"
1914            "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
1915             error_get_progname());
1916
1917 #define QEMU_OPTIONS_GENERATE_HELP
1918 #include "qemu-options-wrapper.h"
1919
1920     printf("\nDuring emulation, the following keys are useful:\n"
1921            "ctrl-alt-f      toggle full screen\n"
1922            "ctrl-alt-n      switch to virtual console 'n'\n"
1923            "ctrl-alt        toggle mouse and keyboard grab\n"
1924            "\n"
1925            "When using -nographic, press 'ctrl-a h' to get some help.\n");
1926
1927     exit(exitcode);
1928 }
1929
1930 #define HAS_ARG 0x0001
1931
1932 typedef struct QEMUOption {
1933     const char *name;
1934     int flags;
1935     int index;
1936     uint32_t arch_mask;
1937 } QEMUOption;
1938
1939 static const QEMUOption qemu_options[] = {
1940     { "h", 0, QEMU_OPTION_h, QEMU_ARCH_ALL },
1941 #define QEMU_OPTIONS_GENERATE_OPTIONS
1942 #include "qemu-options-wrapper.h"
1943     { NULL },
1944 };
1945
1946 static bool vga_available(void)
1947 {
1948     return object_class_by_name("VGA") || object_class_by_name("isa-vga");
1949 }
1950
1951 static bool cirrus_vga_available(void)
1952 {
1953     return object_class_by_name("cirrus-vga")
1954            || object_class_by_name("isa-cirrus-vga");
1955 }
1956
1957 static bool vmware_vga_available(void)
1958 {
1959     return object_class_by_name("vmware-svga");
1960 }
1961
1962 static bool qxl_vga_available(void)
1963 {
1964     return object_class_by_name("qxl-vga");
1965 }
1966
1967 static bool tcx_vga_available(void)
1968 {
1969     return object_class_by_name("SUNW,tcx");
1970 }
1971
1972 static bool cg3_vga_available(void)
1973 {
1974     return object_class_by_name("cgthree");
1975 }
1976
1977 static void select_vgahw (const char *p)
1978 {
1979     const char *opts;
1980
1981     assert(vga_interface_type == VGA_NONE);
1982     if (strstart(p, "std", &opts)) {
1983         if (vga_available()) {
1984             vga_interface_type = VGA_STD;
1985         } else {
1986             fprintf(stderr, "Error: standard VGA not available\n");
1987             exit(0);
1988         }
1989     } else if (strstart(p, "cirrus", &opts)) {
1990         if (cirrus_vga_available()) {
1991             vga_interface_type = VGA_CIRRUS;
1992         } else {
1993             fprintf(stderr, "Error: Cirrus VGA not available\n");
1994             exit(0);
1995         }
1996     } else if (strstart(p, "vmware", &opts)) {
1997         if (vmware_vga_available()) {
1998             vga_interface_type = VGA_VMWARE;
1999         } else {
2000             fprintf(stderr, "Error: VMWare SVGA not available\n");
2001             exit(0);
2002         }
2003     } else if (strstart(p, "xenfb", &opts)) {
2004         vga_interface_type = VGA_XENFB;
2005     } else if (strstart(p, "qxl", &opts)) {
2006         if (qxl_vga_available()) {
2007             vga_interface_type = VGA_QXL;
2008         } else {
2009             fprintf(stderr, "Error: QXL VGA not available\n");
2010             exit(0);
2011         }
2012     } else if (strstart(p, "tcx", &opts)) {
2013         if (tcx_vga_available()) {
2014             vga_interface_type = VGA_TCX;
2015         } else {
2016             fprintf(stderr, "Error: TCX framebuffer not available\n");
2017             exit(0);
2018         }
2019     } else if (strstart(p, "cg3", &opts)) {
2020         if (cg3_vga_available()) {
2021             vga_interface_type = VGA_CG3;
2022         } else {
2023             fprintf(stderr, "Error: CG3 framebuffer not available\n");
2024             exit(0);
2025         }
2026     } else if (!strstart(p, "none", &opts)) {
2027     invalid_vga:
2028         fprintf(stderr, "Unknown vga type: %s\n", p);
2029         exit(1);
2030     }
2031     while (*opts) {
2032         const char *nextopt;
2033
2034         if (strstart(opts, ",retrace=", &nextopt)) {
2035             opts = nextopt;
2036             if (strstart(opts, "dumb", &nextopt))
2037                 vga_retrace_method = VGA_RETRACE_DUMB;
2038             else if (strstart(opts, "precise", &nextopt))
2039                 vga_retrace_method = VGA_RETRACE_PRECISE;
2040             else goto invalid_vga;
2041         } else goto invalid_vga;
2042         opts = nextopt;
2043     }
2044 }
2045
2046 static DisplayType select_display(const char *p)
2047 {
2048     const char *opts;
2049     DisplayType display = DT_DEFAULT;
2050
2051     if (strstart(p, "sdl", &opts)) {
2052 #ifdef CONFIG_SDL
2053         display = DT_SDL;
2054         while (*opts) {
2055             const char *nextopt;
2056
2057             if (strstart(opts, ",frame=", &nextopt)) {
2058                 opts = nextopt;
2059                 if (strstart(opts, "on", &nextopt)) {
2060                     no_frame = 0;
2061                 } else if (strstart(opts, "off", &nextopt)) {
2062                     no_frame = 1;
2063                 } else {
2064                     goto invalid_sdl_args;
2065                 }
2066             } else if (strstart(opts, ",alt_grab=", &nextopt)) {
2067                 opts = nextopt;
2068                 if (strstart(opts, "on", &nextopt)) {
2069                     alt_grab = 1;
2070                 } else if (strstart(opts, "off", &nextopt)) {
2071                     alt_grab = 0;
2072                 } else {
2073                     goto invalid_sdl_args;
2074                 }
2075             } else if (strstart(opts, ",ctrl_grab=", &nextopt)) {
2076                 opts = nextopt;
2077                 if (strstart(opts, "on", &nextopt)) {
2078                     ctrl_grab = 1;
2079                 } else if (strstart(opts, "off", &nextopt)) {
2080                     ctrl_grab = 0;
2081                 } else {
2082                     goto invalid_sdl_args;
2083                 }
2084             } else if (strstart(opts, ",window_close=", &nextopt)) {
2085                 opts = nextopt;
2086                 if (strstart(opts, "on", &nextopt)) {
2087                     no_quit = 0;
2088                 } else if (strstart(opts, "off", &nextopt)) {
2089                     no_quit = 1;
2090                 } else {
2091                     goto invalid_sdl_args;
2092                 }
2093             } else {
2094             invalid_sdl_args:
2095                 fprintf(stderr, "Invalid SDL option string: %s\n", p);
2096                 exit(1);
2097             }
2098             opts = nextopt;
2099         }
2100 #else
2101         fprintf(stderr, "SDL support is disabled\n");
2102         exit(1);
2103 #endif
2104     } else if (strstart(p, "vnc", &opts)) {
2105 #ifdef CONFIG_VNC
2106         display_remote++;
2107
2108         if (*opts) {
2109             const char *nextopt;
2110
2111             if (strstart(opts, "=", &nextopt)) {
2112                 vnc_display = nextopt;
2113             }
2114         }
2115         if (!vnc_display) {
2116             fprintf(stderr, "VNC requires a display argument vnc=<display>\n");
2117             exit(1);
2118         }
2119 #else
2120         fprintf(stderr, "VNC support is disabled\n");
2121         exit(1);
2122 #endif
2123     } else if (strstart(p, "curses", &opts)) {
2124 #ifdef CONFIG_CURSES
2125         display = DT_CURSES;
2126 #else
2127         fprintf(stderr, "Curses support is disabled\n");
2128         exit(1);
2129 #endif
2130     } else if (strstart(p, "gtk", &opts)) {
2131 #ifdef CONFIG_GTK
2132         display = DT_GTK;
2133         while (*opts) {
2134             const char *nextopt;
2135
2136             if (strstart(opts, ",grab_on_hover=", &nextopt)) {
2137                 opts = nextopt;
2138                 if (strstart(opts, "on", &nextopt)) {
2139                     grab_on_hover = true;
2140                 } else if (strstart(opts, "off", &nextopt)) {
2141                     grab_on_hover = false;
2142                 } else {
2143                     goto invalid_gtk_args;
2144                 }
2145             } else {
2146             invalid_gtk_args:
2147                 fprintf(stderr, "Invalid GTK option string: %s\n", p);
2148                 exit(1);
2149             }
2150             opts = nextopt;
2151         }
2152 #else
2153         fprintf(stderr, "GTK support is disabled\n");
2154         exit(1);
2155 #endif
2156     } else if (strstart(p, "none", &opts)) {
2157         display = DT_NONE;
2158     } else {
2159         fprintf(stderr, "Unknown display type: %s\n", p);
2160         exit(1);
2161     }
2162
2163     return display;
2164 }
2165
2166 static int balloon_parse(const char *arg)
2167 {
2168     QemuOpts *opts;
2169
2170     if (strcmp(arg, "none") == 0) {
2171         return 0;
2172     }
2173
2174     if (!strncmp(arg, "virtio", 6)) {
2175         if (arg[6] == ',') {
2176             /* have params -> parse them */
2177             opts = qemu_opts_parse(qemu_find_opts("device"), arg+7, 0);
2178             if (!opts)
2179                 return  -1;
2180         } else {
2181             /* create empty opts */
2182             opts = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
2183                                     &error_abort);
2184         }
2185         qemu_opt_set(opts, "driver", "virtio-balloon");
2186         return 0;
2187     }
2188
2189     return -1;
2190 }
2191
2192 char *qemu_find_file(int type, const char *name)
2193 {
2194     int i;
2195     const char *subdir;
2196     char *buf;
2197
2198     /* Try the name as a straight path first */
2199     if (access(name, R_OK) == 0) {
2200         trace_load_file(name, name);
2201         return g_strdup(name);
2202     }
2203
2204     switch (type) {
2205     case QEMU_FILE_TYPE_BIOS:
2206         subdir = "";
2207         break;
2208     case QEMU_FILE_TYPE_KEYMAP:
2209         subdir = "keymaps/";
2210         break;
2211     default:
2212         abort();
2213     }
2214
2215     for (i = 0; i < data_dir_idx; i++) {
2216         buf = g_strdup_printf("%s/%s%s", data_dir[i], subdir, name);
2217         if (access(buf, R_OK) == 0) {
2218             trace_load_file(name, buf);
2219             return buf;
2220         }
2221         g_free(buf);
2222     }
2223     return NULL;
2224 }
2225
2226 static int device_help_func(QemuOpts *opts, void *opaque)
2227 {
2228     return qdev_device_help(opts);
2229 }
2230
2231 static int device_init_func(QemuOpts *opts, void *opaque)
2232 {
2233     DeviceState *dev;
2234
2235     dev = qdev_device_add(opts);
2236     if (!dev)
2237         return -1;
2238     object_unref(OBJECT(dev));
2239     return 0;
2240 }
2241
2242 static int chardev_init_func(QemuOpts *opts, void *opaque)
2243 {
2244     Error *local_err = NULL;
2245
2246     qemu_chr_new_from_opts(opts, NULL, &local_err);
2247     if (local_err) {
2248         error_report("%s", error_get_pretty(local_err));
2249         error_free(local_err);
2250         return -1;
2251     }
2252     return 0;
2253 }
2254
2255 #ifdef CONFIG_VIRTFS
2256 static int fsdev_init_func(QemuOpts *opts, void *opaque)
2257 {
2258     int ret;
2259     ret = qemu_fsdev_add(opts);
2260
2261     return ret;
2262 }
2263 #endif
2264
2265 static int mon_init_func(QemuOpts *opts, void *opaque)
2266 {
2267     CharDriverState *chr;
2268     const char *chardev;
2269     const char *mode;
2270     int flags;
2271
2272     mode = qemu_opt_get(opts, "mode");
2273     if (mode == NULL) {
2274         mode = "readline";
2275     }
2276     if (strcmp(mode, "readline") == 0) {
2277         flags = MONITOR_USE_READLINE;
2278     } else if (strcmp(mode, "control") == 0) {
2279         flags = MONITOR_USE_CONTROL;
2280     } else {
2281         fprintf(stderr, "unknown monitor mode \"%s\"\n", mode);
2282         exit(1);
2283     }
2284
2285     if (qemu_opt_get_bool(opts, "pretty", 0))
2286         flags |= MONITOR_USE_PRETTY;
2287
2288     if (qemu_opt_get_bool(opts, "default", 0))
2289         flags |= MONITOR_IS_DEFAULT;
2290
2291     chardev = qemu_opt_get(opts, "chardev");
2292     chr = qemu_chr_find(chardev);
2293     if (chr == NULL) {
2294         fprintf(stderr, "chardev \"%s\" not found\n", chardev);
2295         exit(1);
2296     }
2297
2298     qemu_chr_fe_claim_no_fail(chr);
2299     monitor_init(chr, flags);
2300     return 0;
2301 }
2302
2303 static void monitor_parse(const char *optarg, const char *mode, bool pretty)
2304 {
2305     static int monitor_device_index = 0;
2306     QemuOpts *opts;
2307     const char *p;
2308     char label[32];
2309     int def = 0;
2310
2311     if (strstart(optarg, "chardev:", &p)) {
2312         snprintf(label, sizeof(label), "%s", p);
2313     } else {
2314         snprintf(label, sizeof(label), "compat_monitor%d",
2315                  monitor_device_index);
2316         if (monitor_device_index == 0) {
2317             def = 1;
2318         }
2319         opts = qemu_chr_parse_compat(label, optarg);
2320         if (!opts) {
2321             fprintf(stderr, "parse error: %s\n", optarg);
2322             exit(1);
2323         }
2324     }
2325
2326     opts = qemu_opts_create(qemu_find_opts("mon"), label, 1, NULL);
2327     if (!opts) {
2328         fprintf(stderr, "duplicate chardev: %s\n", label);
2329         exit(1);
2330     }
2331     qemu_opt_set(opts, "mode", mode);
2332     qemu_opt_set(opts, "chardev", label);
2333     qemu_opt_set_bool(opts, "pretty", pretty);
2334     if (def)
2335         qemu_opt_set(opts, "default", "on");
2336     monitor_device_index++;
2337 }
2338
2339 struct device_config {
2340     enum {
2341         DEV_USB,       /* -usbdevice     */
2342         DEV_BT,        /* -bt            */
2343         DEV_SERIAL,    /* -serial        */
2344         DEV_PARALLEL,  /* -parallel      */
2345         DEV_VIRTCON,   /* -virtioconsole */
2346         DEV_DEBUGCON,  /* -debugcon */
2347         DEV_GDB,       /* -gdb, -s */
2348         DEV_SCLP,      /* s390 sclp */
2349     } type;
2350     const char *cmdline;
2351     Location loc;
2352     QTAILQ_ENTRY(device_config) next;
2353 };
2354
2355 static QTAILQ_HEAD(, device_config) device_configs =
2356     QTAILQ_HEAD_INITIALIZER(device_configs);
2357
2358 static void add_device_config(int type, const char *cmdline)
2359 {
2360     struct device_config *conf;
2361
2362     conf = g_malloc0(sizeof(*conf));
2363     conf->type = type;
2364     conf->cmdline = cmdline;
2365     loc_save(&conf->loc);
2366     QTAILQ_INSERT_TAIL(&device_configs, conf, next);
2367 }
2368
2369 static int foreach_device_config(int type, int (*func)(const char *cmdline))
2370 {
2371     struct device_config *conf;
2372     int rc;
2373
2374     QTAILQ_FOREACH(conf, &device_configs, next) {
2375         if (conf->type != type)
2376             continue;
2377         loc_push_restore(&conf->loc);
2378         rc = func(conf->cmdline);
2379         loc_pop(&conf->loc);
2380         if (rc) {
2381             return rc;
2382         }
2383     }
2384     return 0;
2385 }
2386
2387 static int serial_parse(const char *devname)
2388 {
2389     static int index = 0;
2390     char label[32];
2391
2392     if (strcmp(devname, "none") == 0)
2393         return 0;
2394     if (index == MAX_SERIAL_PORTS) {
2395         fprintf(stderr, "qemu: too many serial ports\n");
2396         exit(1);
2397     }
2398     snprintf(label, sizeof(label), "serial%d", index);
2399     serial_hds[index] = qemu_chr_new(label, devname, NULL);
2400     if (!serial_hds[index]) {
2401         fprintf(stderr, "qemu: could not connect serial device"
2402                 " to character backend '%s'\n", devname);
2403         return -1;
2404     }
2405     index++;
2406     return 0;
2407 }
2408
2409 static int parallel_parse(const char *devname)
2410 {
2411     static int index = 0;
2412     char label[32];
2413
2414     if (strcmp(devname, "none") == 0)
2415         return 0;
2416     if (index == MAX_PARALLEL_PORTS) {
2417         fprintf(stderr, "qemu: too many parallel ports\n");
2418         exit(1);
2419     }
2420     snprintf(label, sizeof(label), "parallel%d", index);
2421     parallel_hds[index] = qemu_chr_new(label, devname, NULL);
2422     if (!parallel_hds[index]) {
2423         fprintf(stderr, "qemu: could not connect parallel device"
2424                 " to character backend '%s'\n", devname);
2425         return -1;
2426     }
2427     index++;
2428     return 0;
2429 }
2430
2431 static int virtcon_parse(const char *devname)
2432 {
2433     QemuOptsList *device = qemu_find_opts("device");
2434     static int index = 0;
2435     char label[32];
2436     QemuOpts *bus_opts, *dev_opts;
2437
2438     if (strcmp(devname, "none") == 0)
2439         return 0;
2440     if (index == MAX_VIRTIO_CONSOLES) {
2441         fprintf(stderr, "qemu: too many virtio consoles\n");
2442         exit(1);
2443     }
2444
2445     bus_opts = qemu_opts_create(device, NULL, 0, &error_abort);
2446     if (arch_type == QEMU_ARCH_S390X) {
2447         qemu_opt_set(bus_opts, "driver", "virtio-serial-s390");
2448     } else {
2449         qemu_opt_set(bus_opts, "driver", "virtio-serial-pci");
2450     }
2451
2452     dev_opts = qemu_opts_create(device, NULL, 0, &error_abort);
2453     qemu_opt_set(dev_opts, "driver", "virtconsole");
2454
2455     snprintf(label, sizeof(label), "virtcon%d", index);
2456     virtcon_hds[index] = qemu_chr_new(label, devname, NULL);
2457     if (!virtcon_hds[index]) {
2458         fprintf(stderr, "qemu: could not connect virtio console"
2459                 " to character backend '%s'\n", devname);
2460         return -1;
2461     }
2462     qemu_opt_set(dev_opts, "chardev", label);
2463
2464     index++;
2465     return 0;
2466 }
2467
2468 static int sclp_parse(const char *devname)
2469 {
2470     QemuOptsList *device = qemu_find_opts("device");
2471     static int index = 0;
2472     char label[32];
2473     QemuOpts *dev_opts;
2474
2475     if (strcmp(devname, "none") == 0) {
2476         return 0;
2477     }
2478     if (index == MAX_SCLP_CONSOLES) {
2479         fprintf(stderr, "qemu: too many sclp consoles\n");
2480         exit(1);
2481     }
2482
2483     assert(arch_type == QEMU_ARCH_S390X);
2484
2485     dev_opts = qemu_opts_create(device, NULL, 0, NULL);
2486     qemu_opt_set(dev_opts, "driver", "sclpconsole");
2487
2488     snprintf(label, sizeof(label), "sclpcon%d", index);
2489     sclp_hds[index] = qemu_chr_new(label, devname, NULL);
2490     if (!sclp_hds[index]) {
2491         fprintf(stderr, "qemu: could not connect sclp console"
2492                 " to character backend '%s'\n", devname);
2493         return -1;
2494     }
2495     qemu_opt_set(dev_opts, "chardev", label);
2496
2497     index++;
2498     return 0;
2499 }
2500
2501 static int debugcon_parse(const char *devname)
2502 {
2503     QemuOpts *opts;
2504
2505     if (!qemu_chr_new("debugcon", devname, NULL)) {
2506         exit(1);
2507     }
2508     opts = qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL);
2509     if (!opts) {
2510         fprintf(stderr, "qemu: already have a debugcon device\n");
2511         exit(1);
2512     }
2513     qemu_opt_set(opts, "driver", "isa-debugcon");
2514     qemu_opt_set(opts, "chardev", "debugcon");
2515     return 0;
2516 }
2517
2518 static gint machine_class_cmp(gconstpointer a, gconstpointer b)
2519 {
2520     const MachineClass *mc1 = a, *mc2 = b;
2521     int res;
2522
2523     if (mc1->family == NULL) {
2524         if (mc2->family == NULL) {
2525             /* Compare standalone machine types against each other; they sort
2526              * in increasing order.
2527              */
2528             return strcmp(object_class_get_name(OBJECT_CLASS(mc1)),
2529                           object_class_get_name(OBJECT_CLASS(mc2)));
2530         }
2531
2532         /* Standalone machine types sort after families. */
2533         return 1;
2534     }
2535
2536     if (mc2->family == NULL) {
2537         /* Families sort before standalone machine types. */
2538         return -1;
2539     }
2540
2541     /* Families sort between each other alphabetically increasingly. */
2542     res = strcmp(mc1->family, mc2->family);
2543     if (res != 0) {
2544         return res;
2545     }
2546
2547     /* Within the same family, machine types sort in decreasing order. */
2548     return strcmp(object_class_get_name(OBJECT_CLASS(mc2)),
2549                   object_class_get_name(OBJECT_CLASS(mc1)));
2550 }
2551
2552  static MachineClass *machine_parse(const char *name)
2553 {
2554     MachineClass *mc = NULL;
2555     GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
2556
2557     if (name) {
2558         mc = find_machine(name);
2559     }
2560     if (mc) {
2561         return mc;
2562     }
2563     if (name && !is_help_option(name)) {
2564         error_report("Unsupported machine type");
2565         error_printf("Use -machine help to list supported machines!\n");
2566     } else {
2567         printf("Supported machines are:\n");
2568         machines = g_slist_sort(machines, machine_class_cmp);
2569         for (el = machines; el; el = el->next) {
2570             MachineClass *mc = el->data;
2571             if (mc->alias) {
2572                 printf("%-20s %s (alias of %s)\n", mc->alias, mc->desc, mc->name);
2573             }
2574             printf("%-20s %s%s\n", mc->name, mc->desc,
2575                    mc->is_default ? " (default)" : "");
2576         }
2577     }
2578
2579     g_slist_free(machines);
2580     exit(!name || !is_help_option(name));
2581 }
2582
2583 void qemu_add_exit_notifier(Notifier *notify)
2584 {
2585     notifier_list_add(&exit_notifiers, notify);
2586 }
2587
2588 void qemu_remove_exit_notifier(Notifier *notify)
2589 {
2590     notifier_remove(notify);
2591 }
2592
2593 static void qemu_run_exit_notifiers(void)
2594 {
2595     notifier_list_notify(&exit_notifiers, NULL);
2596 }
2597
2598 void qemu_add_machine_init_done_notifier(Notifier *notify)
2599 {
2600     notifier_list_add(&machine_init_done_notifiers, notify);
2601 }
2602
2603 static void qemu_run_machine_init_done_notifiers(void)
2604 {
2605     notifier_list_notify(&machine_init_done_notifiers, NULL);
2606 }
2607
2608 static const QEMUOption *lookup_opt(int argc, char **argv,
2609                                     const char **poptarg, int *poptind)
2610 {
2611     const QEMUOption *popt;
2612     int optind = *poptind;
2613     char *r = argv[optind];
2614     const char *optarg;
2615
2616     loc_set_cmdline(argv, optind, 1);
2617     optind++;
2618     /* Treat --foo the same as -foo.  */
2619     if (r[1] == '-')
2620         r++;
2621     popt = qemu_options;
2622     for(;;) {
2623         if (!popt->name) {
2624             error_report("invalid option");
2625             exit(1);
2626         }
2627         if (!strcmp(popt->name, r + 1))
2628             break;
2629         popt++;
2630     }
2631     if (popt->flags & HAS_ARG) {
2632         if (optind >= argc) {
2633             error_report("requires an argument");
2634             exit(1);
2635         }
2636         optarg = argv[optind++];
2637         loc_set_cmdline(argv, optind - 2, 2);
2638     } else {
2639         optarg = NULL;
2640     }
2641
2642     *poptarg = optarg;
2643     *poptind = optind;
2644
2645     return popt;
2646 }
2647
2648 static gpointer malloc_and_trace(gsize n_bytes)
2649 {
2650     void *ptr = malloc(n_bytes);
2651     trace_g_malloc(n_bytes, ptr);
2652     return ptr;
2653 }
2654
2655 static gpointer realloc_and_trace(gpointer mem, gsize n_bytes)
2656 {
2657     void *ptr = realloc(mem, n_bytes);
2658     trace_g_realloc(mem, n_bytes, ptr);
2659     return ptr;
2660 }
2661
2662 static void free_and_trace(gpointer mem)
2663 {
2664     trace_g_free(mem);
2665     free(mem);
2666 }
2667
2668 static int machine_set_property(const char *name, const char *value,
2669                                 void *opaque)
2670 {
2671     Object *obj = OBJECT(opaque);
2672     StringInputVisitor *siv;
2673     Error *local_err = NULL;
2674     char *c, *qom_name;
2675
2676     if (strcmp(name, "type") == 0) {
2677         return 0;
2678     }
2679
2680     qom_name = g_strdup(name);
2681     c = qom_name;
2682     while (*c++) {
2683         if (*c == '_') {
2684             *c = '-';
2685         }
2686     }
2687
2688     siv = string_input_visitor_new(value);
2689     object_property_set(obj, string_input_get_visitor(siv), qom_name, &local_err);
2690     string_input_visitor_cleanup(siv);
2691     g_free(qom_name);
2692
2693     if (local_err) {
2694         qerror_report_err(local_err);
2695         error_free(local_err);
2696         return -1;
2697     }
2698
2699     return 0;
2700 }
2701
2702 static int object_create(QemuOpts *opts, void *opaque)
2703 {
2704     Error *err = NULL;
2705     char *type = NULL;
2706     char *id = NULL;
2707     void *dummy = NULL;
2708     OptsVisitor *ov;
2709     QDict *pdict;
2710
2711     ov = opts_visitor_new(opts);
2712     pdict = qemu_opts_to_qdict(opts, NULL);
2713
2714     visit_start_struct(opts_get_visitor(ov), &dummy, NULL, NULL, 0, &err);
2715     if (err) {
2716         goto out;
2717     }
2718
2719     qdict_del(pdict, "qom-type");
2720     visit_type_str(opts_get_visitor(ov), &type, "qom-type", &err);
2721     if (err) {
2722         goto out;
2723     }
2724
2725     qdict_del(pdict, "id");
2726     visit_type_str(opts_get_visitor(ov), &id, "id", &err);
2727     if (err) {
2728         goto out;
2729     }
2730
2731     object_add(type, id, pdict, opts_get_visitor(ov), &err);
2732     if (err) {
2733         goto out;
2734     }
2735     visit_end_struct(opts_get_visitor(ov), &err);
2736     if (err) {
2737         qmp_object_del(id, NULL);
2738     }
2739
2740 out:
2741     opts_visitor_cleanup(ov);
2742
2743     QDECREF(pdict);
2744     g_free(id);
2745     g_free(type);
2746     g_free(dummy);
2747     if (err) {
2748         qerror_report_err(err);
2749         error_free(err);
2750         return -1;
2751     }
2752     return 0;
2753 }
2754
2755 int main(int argc, char **argv, char **envp)
2756 {
2757     int i;
2758     int snapshot, linux_boot;
2759     const char *initrd_filename;
2760     const char *kernel_filename, *kernel_cmdline;
2761     const char *boot_order;
2762     DisplayState *ds;
2763     int cyls, heads, secs, translation;
2764     QemuOpts *hda_opts = NULL, *opts, *machine_opts, *icount_opts = NULL;
2765     QemuOptsList *olist;
2766     int optind;
2767     const char *optarg;
2768     const char *loadvm = NULL;
2769     MachineClass *machine_class;
2770     const char *cpu_model;
2771     const char *vga_model = NULL;
2772     const char *qtest_chrdev = NULL;
2773     const char *qtest_log = NULL;
2774     const char *pid_file = NULL;
2775     const char *incoming = NULL;
2776 #ifdef CONFIG_VNC
2777     int show_vnc_port = 0;
2778 #endif
2779     bool defconfig = true;
2780     bool userconfig = true;
2781     const char *log_mask = NULL;
2782     const char *log_file = NULL;
2783     GMemVTable mem_trace = {
2784         .malloc = malloc_and_trace,
2785         .realloc = realloc_and_trace,
2786         .free = free_and_trace,
2787     };
2788     const char *trace_events = NULL;
2789     const char *trace_file = NULL;
2790     const ram_addr_t default_ram_size = (ram_addr_t)DEFAULT_RAM_SIZE *
2791                                         1024 * 1024;
2792     ram_addr_t maxram_size = default_ram_size;
2793     uint64_t ram_slots = 0;
2794     FILE *vmstate_dump_file = NULL;
2795     Error *main_loop_err = NULL;
2796
2797     atexit(qemu_run_exit_notifiers);
2798     error_set_progname(argv[0]);
2799     qemu_init_exec_dir(argv[0]);
2800
2801     g_mem_set_vtable(&mem_trace);
2802
2803     module_call_init(MODULE_INIT_QOM);
2804
2805     qemu_add_opts(&qemu_drive_opts);
2806     qemu_add_drive_opts(&qemu_legacy_drive_opts);
2807     qemu_add_drive_opts(&qemu_common_drive_opts);
2808     qemu_add_drive_opts(&qemu_drive_opts);
2809     qemu_add_opts(&qemu_chardev_opts);
2810     qemu_add_opts(&qemu_device_opts);
2811     qemu_add_opts(&qemu_netdev_opts);
2812     qemu_add_opts(&qemu_net_opts);
2813     qemu_add_opts(&qemu_rtc_opts);
2814     qemu_add_opts(&qemu_global_opts);
2815     qemu_add_opts(&qemu_mon_opts);
2816     qemu_add_opts(&qemu_trace_opts);
2817     qemu_add_opts(&qemu_option_rom_opts);
2818     qemu_add_opts(&qemu_machine_opts);
2819     qemu_add_opts(&qemu_mem_opts);
2820     qemu_add_opts(&qemu_smp_opts);
2821     qemu_add_opts(&qemu_boot_opts);
2822     qemu_add_opts(&qemu_sandbox_opts);
2823     qemu_add_opts(&qemu_add_fd_opts);
2824     qemu_add_opts(&qemu_object_opts);
2825     qemu_add_opts(&qemu_tpmdev_opts);
2826     qemu_add_opts(&qemu_realtime_opts);
2827     qemu_add_opts(&qemu_msg_opts);
2828     qemu_add_opts(&qemu_name_opts);
2829     qemu_add_opts(&qemu_numa_opts);
2830     qemu_add_opts(&qemu_icount_opts);
2831     qemu_add_opts(&qemu_semihosting_config_opts);
2832
2833     runstate_init();
2834
2835     rtc_clock = QEMU_CLOCK_HOST;
2836
2837     QLIST_INIT (&vm_change_state_head);
2838     os_setup_early_signal_handling();
2839
2840     module_call_init(MODULE_INIT_MACHINE);
2841     machine_class = find_default_machine();
2842     cpu_model = NULL;
2843     ram_size = default_ram_size;
2844     snapshot = 0;
2845     cyls = heads = secs = 0;
2846     translation = BIOS_ATA_TRANSLATION_AUTO;
2847
2848     for (i = 0; i < MAX_NODES; i++) {
2849         numa_info[i].node_mem = 0;
2850         numa_info[i].present = false;
2851         bitmap_zero(numa_info[i].node_cpu, MAX_CPUMASK_BITS);
2852     }
2853
2854     nb_numa_nodes = 0;
2855     max_numa_nodeid = 0;
2856     nb_nics = 0;
2857
2858     bdrv_init_with_whitelist();
2859
2860     autostart = 1;
2861
2862     /* first pass of option parsing */
2863     optind = 1;
2864     while (optind < argc) {
2865         if (argv[optind][0] != '-') {
2866             /* disk image */
2867             optind++;
2868         } else {
2869             const QEMUOption *popt;
2870
2871             popt = lookup_opt(argc, argv, &optarg, &optind);
2872             switch (popt->index) {
2873             case QEMU_OPTION_nodefconfig:
2874                 defconfig = false;
2875                 break;
2876             case QEMU_OPTION_nouserconfig:
2877                 userconfig = false;
2878                 break;
2879             }
2880         }
2881     }
2882
2883     if (defconfig) {
2884         int ret;
2885         ret = qemu_read_default_config_files(userconfig);
2886         if (ret < 0) {
2887             exit(1);
2888         }
2889     }
2890
2891     /* second pass of option parsing */
2892     optind = 1;
2893     for(;;) {
2894         if (optind >= argc)
2895             break;
2896         if (argv[optind][0] != '-') {
2897             hda_opts = drive_add(IF_DEFAULT, 0, argv[optind++], HD_OPTS);
2898         } else {
2899             const QEMUOption *popt;
2900
2901             popt = lookup_opt(argc, argv, &optarg, &optind);
2902             if (!(popt->arch_mask & arch_type)) {
2903                 printf("Option %s not supported for this target\n", popt->name);
2904                 exit(1);
2905             }
2906             switch(popt->index) {
2907             case QEMU_OPTION_M:
2908                 machine_class = machine_parse(optarg);
2909                 break;
2910             case QEMU_OPTION_no_kvm_irqchip: {
2911                 olist = qemu_find_opts("machine");
2912                 qemu_opts_parse(olist, "kernel_irqchip=off", 0);
2913                 break;
2914             }
2915             case QEMU_OPTION_cpu:
2916                 /* hw initialization will check this */
2917                 cpu_model = optarg;
2918                 break;
2919             case QEMU_OPTION_hda:
2920                 {
2921                     char buf[256];
2922                     if (cyls == 0)
2923                         snprintf(buf, sizeof(buf), "%s", HD_OPTS);
2924                     else
2925                         snprintf(buf, sizeof(buf),
2926                                  "%s,cyls=%d,heads=%d,secs=%d%s",
2927                                  HD_OPTS , cyls, heads, secs,
2928                                  translation == BIOS_ATA_TRANSLATION_LBA ?
2929                                  ",trans=lba" :
2930                                  translation == BIOS_ATA_TRANSLATION_NONE ?
2931                                  ",trans=none" : "");
2932                     drive_add(IF_DEFAULT, 0, optarg, buf);
2933                     break;
2934                 }
2935             case QEMU_OPTION_hdb:
2936             case QEMU_OPTION_hdc:
2937             case QEMU_OPTION_hdd:
2938                 drive_add(IF_DEFAULT, popt->index - QEMU_OPTION_hda, optarg,
2939                           HD_OPTS);
2940                 break;
2941             case QEMU_OPTION_drive:
2942                 if (drive_def(optarg) == NULL) {
2943                     exit(1);
2944                 }
2945                 break;
2946             case QEMU_OPTION_set:
2947                 if (qemu_set_option(optarg) != 0)
2948                     exit(1);
2949                 break;
2950             case QEMU_OPTION_global:
2951                 if (qemu_global_option(optarg) != 0)
2952                     exit(1);
2953                 break;
2954             case QEMU_OPTION_mtdblock:
2955                 drive_add(IF_MTD, -1, optarg, MTD_OPTS);
2956                 break;
2957             case QEMU_OPTION_sd:
2958                 drive_add(IF_SD, -1, optarg, SD_OPTS);
2959                 break;
2960             case QEMU_OPTION_pflash:
2961                 drive_add(IF_PFLASH, -1, optarg, PFLASH_OPTS);
2962                 break;
2963             case QEMU_OPTION_snapshot:
2964                 snapshot = 1;
2965                 break;
2966             case QEMU_OPTION_hdachs:
2967                 {
2968                     const char *p;
2969                     p = optarg;
2970                     cyls = strtol(p, (char **)&p, 0);
2971                     if (cyls < 1 || cyls > 16383)
2972                         goto chs_fail;
2973                     if (*p != ',')
2974                         goto chs_fail;
2975                     p++;
2976                     heads = strtol(p, (char **)&p, 0);
2977                     if (heads < 1 || heads > 16)
2978                         goto chs_fail;
2979                     if (*p != ',')
2980                         goto chs_fail;
2981                     p++;
2982                     secs = strtol(p, (char **)&p, 0);
2983                     if (secs < 1 || secs > 63)
2984                         goto chs_fail;
2985                     if (*p == ',') {
2986                         p++;
2987                         if (!strcmp(p, "large")) {
2988                             translation = BIOS_ATA_TRANSLATION_LARGE;
2989                         } else if (!strcmp(p, "rechs")) {
2990                             translation = BIOS_ATA_TRANSLATION_RECHS;
2991                         } else if (!strcmp(p, "none")) {
2992                             translation = BIOS_ATA_TRANSLATION_NONE;
2993                         } else if (!strcmp(p, "lba")) {
2994                             translation = BIOS_ATA_TRANSLATION_LBA;
2995                         } else if (!strcmp(p, "auto")) {
2996                             translation = BIOS_ATA_TRANSLATION_AUTO;
2997                         } else {
2998                             goto chs_fail;
2999                         }
3000                     } else if (*p != '\0') {
3001                     chs_fail:
3002                         fprintf(stderr, "qemu: invalid physical CHS format\n");
3003                         exit(1);
3004                     }
3005                     if (hda_opts != NULL) {
3006                         char num[16];
3007                         snprintf(num, sizeof(num), "%d", cyls);
3008                         qemu_opt_set(hda_opts, "cyls", num);
3009                         snprintf(num, sizeof(num), "%d", heads);
3010                         qemu_opt_set(hda_opts, "heads", num);
3011                         snprintf(num, sizeof(num), "%d", secs);
3012                         qemu_opt_set(hda_opts, "secs", num);
3013                         if (translation == BIOS_ATA_TRANSLATION_LARGE) {
3014                             qemu_opt_set(hda_opts, "trans", "large");
3015                         } else if (translation == BIOS_ATA_TRANSLATION_RECHS) {
3016                             qemu_opt_set(hda_opts, "trans", "rechs");
3017                         } else if (translation == BIOS_ATA_TRANSLATION_LBA) {
3018                             qemu_opt_set(hda_opts, "trans", "lba");
3019                         } else if (translation == BIOS_ATA_TRANSLATION_NONE) {
3020                             qemu_opt_set(hda_opts, "trans", "none");
3021                         }
3022                     }
3023                 }
3024                 break;
3025             case QEMU_OPTION_numa:
3026                 opts = qemu_opts_parse(qemu_find_opts("numa"), optarg, 1);
3027                 if (!opts) {
3028                     exit(1);
3029                 }
3030                 break;
3031             case QEMU_OPTION_display:
3032                 display_type = select_display(optarg);
3033                 break;
3034             case QEMU_OPTION_nographic:
3035                 display_type = DT_NOGRAPHIC;
3036                 break;
3037             case QEMU_OPTION_curses:
3038 #ifdef CONFIG_CURSES
3039                 display_type = DT_CURSES;
3040 #else
3041                 fprintf(stderr, "Curses support is disabled\n");
3042                 exit(1);
3043 #endif
3044                 break;
3045             case QEMU_OPTION_portrait:
3046                 graphic_rotate = 90;
3047                 break;
3048             case QEMU_OPTION_rotate:
3049                 graphic_rotate = strtol(optarg, (char **) &optarg, 10);
3050                 if (graphic_rotate != 0 && graphic_rotate != 90 &&
3051                     graphic_rotate != 180 && graphic_rotate != 270) {
3052                     fprintf(stderr,
3053                         "qemu: only 90, 180, 270 deg rotation is available\n");
3054                     exit(1);
3055                 }
3056                 break;
3057             case QEMU_OPTION_kernel:
3058                 qemu_opts_set(qemu_find_opts("machine"), 0, "kernel", optarg);
3059                 break;
3060             case QEMU_OPTION_initrd:
3061                 qemu_opts_set(qemu_find_opts("machine"), 0, "initrd", optarg);
3062                 break;
3063             case QEMU_OPTION_append:
3064                 qemu_opts_set(qemu_find_opts("machine"), 0, "append", optarg);
3065                 break;
3066             case QEMU_OPTION_dtb:
3067                 qemu_opts_set(qemu_find_opts("machine"), 0, "dtb", optarg);
3068                 break;
3069             case QEMU_OPTION_cdrom:
3070                 drive_add(IF_DEFAULT, 2, optarg, CDROM_OPTS);
3071                 break;
3072             case QEMU_OPTION_boot:
3073                 opts = qemu_opts_parse(qemu_find_opts("boot-opts"), optarg, 1);
3074                 if (!opts) {
3075                     exit(1);
3076                 }
3077                 break;
3078             case QEMU_OPTION_fda:
3079             case QEMU_OPTION_fdb:
3080                 drive_add(IF_FLOPPY, popt->index - QEMU_OPTION_fda,
3081                           optarg, FD_OPTS);
3082                 break;
3083             case QEMU_OPTION_no_fd_bootchk:
3084                 fd_bootchk = 0;
3085                 break;
3086             case QEMU_OPTION_netdev:
3087                 if (net_client_parse(qemu_find_opts("netdev"), optarg) == -1) {
3088                     exit(1);
3089                 }
3090                 break;
3091             case QEMU_OPTION_net:
3092                 if (net_client_parse(qemu_find_opts("net"), optarg) == -1) {
3093                     exit(1);
3094                 }
3095                 break;
3096 #ifdef CONFIG_LIBISCSI
3097             case QEMU_OPTION_iscsi:
3098                 opts = qemu_opts_parse(qemu_find_opts("iscsi"), optarg, 0);
3099                 if (!opts) {
3100                     exit(1);
3101                 }
3102                 break;
3103 #endif
3104 #ifdef CONFIG_SLIRP
3105             case QEMU_OPTION_tftp:
3106                 legacy_tftp_prefix = optarg;
3107                 break;
3108             case QEMU_OPTION_bootp:
3109                 legacy_bootp_filename = optarg;
3110                 break;
3111             case QEMU_OPTION_redir:
3112                 if (net_slirp_redir(optarg) < 0)
3113                     exit(1);
3114                 break;
3115 #endif
3116             case QEMU_OPTION_bt:
3117                 add_device_config(DEV_BT, optarg);
3118                 break;
3119             case QEMU_OPTION_audio_help:
3120                 AUD_help ();
3121                 exit (0);
3122                 break;
3123             case QEMU_OPTION_soundhw:
3124                 select_soundhw (optarg);
3125                 break;
3126             case QEMU_OPTION_h:
3127                 help(0);
3128                 break;
3129             case QEMU_OPTION_version:
3130                 version();
3131                 exit(0);
3132                 break;
3133             case QEMU_OPTION_m: {
3134                 uint64_t sz;
3135                 const char *mem_str;
3136                 const char *maxmem_str, *slots_str;
3137
3138                 opts = qemu_opts_parse(qemu_find_opts("memory"),
3139                                        optarg, 1);
3140                 if (!opts) {
3141                     exit(EXIT_FAILURE);
3142                 }
3143
3144                 mem_str = qemu_opt_get(opts, "size");
3145                 if (!mem_str) {
3146                     error_report("invalid -m option, missing 'size' option");
3147                     exit(EXIT_FAILURE);
3148                 }
3149                 if (!*mem_str) {
3150                     error_report("missing 'size' option value");
3151                     exit(EXIT_FAILURE);
3152                 }
3153
3154                 sz = qemu_opt_get_size(opts, "size", ram_size);
3155
3156                 /* Fix up legacy suffix-less format */
3157                 if (g_ascii_isdigit(mem_str[strlen(mem_str) - 1])) {
3158                     uint64_t overflow_check = sz;
3159
3160                     sz <<= 20;
3161                     if ((sz >> 20) != overflow_check) {
3162                         error_report("too large 'size' option value");
3163                         exit(EXIT_FAILURE);
3164                     }
3165                 }
3166
3167                 /* backward compatibility behaviour for case "-m 0" */
3168                 if (sz == 0) {
3169                     sz = default_ram_size;
3170                 }
3171
3172                 sz = QEMU_ALIGN_UP(sz, 8192);
3173                 ram_size = sz;
3174                 if (ram_size != sz) {
3175                     error_report("ram size too large");
3176                     exit(EXIT_FAILURE);
3177                 }
3178                 maxram_size = ram_size;
3179
3180                 maxmem_str = qemu_opt_get(opts, "maxmem");
3181                 slots_str = qemu_opt_get(opts, "slots");
3182                 if (maxmem_str && slots_str) {
3183                     uint64_t slots;
3184
3185                     sz = qemu_opt_get_size(opts, "maxmem", 0);
3186                     if (sz < ram_size) {
3187                         error_report("invalid -m option value: maxmem "
3188                                 "(0x%" PRIx64 ") <= initial memory (0x"
3189                                 RAM_ADDR_FMT ")", sz, ram_size);
3190                         exit(EXIT_FAILURE);
3191                     }
3192
3193                     slots = qemu_opt_get_number(opts, "slots", 0);
3194                     if ((sz > ram_size) && !slots) {
3195                         error_report("invalid -m option value: maxmem "
3196                                 "(0x%" PRIx64 ") more than initial memory (0x"
3197                                 RAM_ADDR_FMT ") but no hotplug slots where "
3198                                 "specified", sz, ram_size);
3199                         exit(EXIT_FAILURE);
3200                     }
3201
3202                     if ((sz <= ram_size) && slots) {
3203                         error_report("invalid -m option value:  %"
3204                                 PRIu64 " hotplug slots where specified but "
3205                                 "maxmem (0x%" PRIx64 ") <= initial memory (0x"
3206                                 RAM_ADDR_FMT ")", slots, sz, ram_size);
3207                         exit(EXIT_FAILURE);
3208                     }
3209                     maxram_size = sz;
3210                     ram_slots = slots;
3211                 } else if ((!maxmem_str && slots_str) ||
3212                            (maxmem_str && !slots_str)) {
3213                     error_report("invalid -m option value: missing "
3214                             "'%s' option", slots_str ? "maxmem" : "slots");
3215                     exit(EXIT_FAILURE);
3216                 }
3217                 break;
3218             }
3219 #ifdef CONFIG_TPM
3220             case QEMU_OPTION_tpmdev:
3221                 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg) < 0) {
3222                     exit(1);
3223                 }
3224                 break;
3225 #endif
3226             case QEMU_OPTION_mempath:
3227                 mem_path = optarg;
3228                 break;
3229             case QEMU_OPTION_mem_prealloc:
3230                 mem_prealloc = 1;
3231                 break;
3232             case QEMU_OPTION_d:
3233                 log_mask = optarg;
3234                 break;
3235             case QEMU_OPTION_D:
3236                 log_file = optarg;
3237                 break;
3238             case QEMU_OPTION_s:
3239                 add_device_config(DEV_GDB, "tcp::" DEFAULT_GDBSTUB_PORT);
3240                 break;
3241             case QEMU_OPTION_gdb:
3242                 add_device_config(DEV_GDB, optarg);
3243                 break;
3244             case QEMU_OPTION_L:
3245                 if (data_dir_idx < ARRAY_SIZE(data_dir)) {
3246                     data_dir[data_dir_idx++] = optarg;
3247                 }
3248                 break;
3249             case QEMU_OPTION_bios:
3250                 qemu_opts_set(qemu_find_opts("machine"), 0, "firmware", optarg);
3251                 break;
3252             case QEMU_OPTION_singlestep:
3253                 singlestep = 1;
3254                 break;
3255             case QEMU_OPTION_S:
3256                 autostart = 0;
3257                 break;
3258             case QEMU_OPTION_k:
3259                 keyboard_layout = optarg;
3260                 break;
3261             case QEMU_OPTION_localtime:
3262                 rtc_utc = 0;
3263                 break;
3264             case QEMU_OPTION_vga:
3265                 vga_model = optarg;
3266                 default_vga = 0;
3267                 break;
3268             case QEMU_OPTION_g:
3269                 {
3270                     const char *p;
3271                     int w, h, depth;
3272                     p = optarg;
3273                     w = strtol(p, (char **)&p, 10);
3274                     if (w <= 0) {
3275                     graphic_error:
3276                         fprintf(stderr, "qemu: invalid resolution or depth\n");
3277                         exit(1);
3278                     }
3279                     if (*p != 'x')
3280                         goto graphic_error;
3281                     p++;
3282                     h = strtol(p, (char **)&p, 10);
3283                     if (h <= 0)
3284                         goto graphic_error;
3285                     if (*p == 'x') {
3286                         p++;
3287                         depth = strtol(p, (char **)&p, 10);
3288                         if (depth != 8 && depth != 15 && depth != 16 &&
3289                             depth != 24 && depth != 32)
3290                             goto graphic_error;
3291                     } else if (*p == '\0') {
3292                         depth = graphic_depth;
3293                     } else {
3294                         goto graphic_error;
3295                     }
3296
3297                     graphic_width = w;
3298                     graphic_height = h;
3299                     graphic_depth = depth;
3300                 }
3301                 break;
3302             case QEMU_OPTION_echr:
3303                 {
3304                     char *r;
3305                     term_escape_char = strtol(optarg, &r, 0);
3306                     if (r == optarg)
3307                         printf("Bad argument to echr\n");
3308                     break;
3309                 }
3310             case QEMU_OPTION_monitor:
3311                 default_monitor = 0;
3312                 if (strncmp(optarg, "none", 4)) {
3313                     monitor_parse(optarg, "readline", false);
3314                 }
3315                 break;
3316             case QEMU_OPTION_qmp:
3317                 monitor_parse(optarg, "control", false);
3318                 default_monitor = 0;
3319                 break;
3320             case QEMU_OPTION_qmp_pretty:
3321                 monitor_parse(optarg, "control", true);
3322                 default_monitor = 0;
3323                 break;
3324             case QEMU_OPTION_mon:
3325                 opts = qemu_opts_parse(qemu_find_opts("mon"), optarg, 1);
3326                 if (!opts) {
3327                     exit(1);
3328                 }
3329                 default_monitor = 0;
3330                 break;
3331             case QEMU_OPTION_chardev:
3332                 opts = qemu_opts_parse(qemu_find_opts("chardev"), optarg, 1);
3333                 if (!opts) {
3334                     exit(1);
3335                 }
3336                 break;
3337             case QEMU_OPTION_fsdev:
3338                 olist = qemu_find_opts("fsdev");
3339                 if (!olist) {
3340                     fprintf(stderr, "fsdev is not supported by this qemu build.\n");
3341                     exit(1);
3342                 }
3343                 opts = qemu_opts_parse(olist, optarg, 1);
3344                 if (!opts) {
3345                     exit(1);
3346                 }
3347                 break;
3348             case QEMU_OPTION_virtfs: {
3349                 QemuOpts *fsdev;
3350                 QemuOpts *device;
3351                 const char *writeout, *sock_fd, *socket;
3352
3353                 olist = qemu_find_opts("virtfs");
3354                 if (!olist) {
3355                     fprintf(stderr, "virtfs is not supported by this qemu build.\n");
3356                     exit(1);
3357                 }
3358                 opts = qemu_opts_parse(olist, optarg, 1);
3359                 if (!opts) {
3360                     exit(1);
3361                 }
3362
3363                 if (qemu_opt_get(opts, "fsdriver") == NULL ||
3364                     qemu_opt_get(opts, "mount_tag") == NULL) {
3365                     fprintf(stderr, "Usage: -virtfs fsdriver,mount_tag=tag.\n");
3366                     exit(1);
3367                 }
3368                 fsdev = qemu_opts_create(qemu_find_opts("fsdev"),
3369                                          qemu_opt_get(opts, "mount_tag"),
3370                                          1, NULL);
3371                 if (!fsdev) {
3372                     fprintf(stderr, "duplicate fsdev id: %s\n",
3373                             qemu_opt_get(opts, "mount_tag"));
3374                     exit(1);
3375                 }
3376
3377                 writeout = qemu_opt_get(opts, "writeout");
3378                 if (writeout) {
3379 #ifdef CONFIG_SYNC_FILE_RANGE
3380                     qemu_opt_set(fsdev, "writeout", writeout);
3381 #else
3382                     fprintf(stderr, "writeout=immediate not supported on "
3383                             "this platform\n");
3384                     exit(1);
3385 #endif
3386                 }
3387                 qemu_opt_set(fsdev, "fsdriver", qemu_opt_get(opts, "fsdriver"));
3388                 qemu_opt_set(fsdev, "path", qemu_opt_get(opts, "path"));
3389                 qemu_opt_set(fsdev, "security_model",
3390                              qemu_opt_get(opts, "security_model"));
3391                 socket = qemu_opt_get(opts, "socket");
3392                 if (socket) {
3393                     qemu_opt_set(fsdev, "socket", socket);
3394                 }
3395                 sock_fd = qemu_opt_get(opts, "sock_fd");
3396                 if (sock_fd) {
3397                     qemu_opt_set(fsdev, "sock_fd", sock_fd);
3398                 }
3399
3400                 qemu_opt_set_bool(fsdev, "readonly",
3401                                 qemu_opt_get_bool(opts, "readonly", 0));
3402                 device = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
3403                                           &error_abort);
3404                 qemu_opt_set(device, "driver", "virtio-9p-pci");
3405                 qemu_opt_set(device, "fsdev",
3406                              qemu_opt_get(opts, "mount_tag"));
3407                 qemu_opt_set(device, "mount_tag",
3408                              qemu_opt_get(opts, "mount_tag"));
3409                 break;
3410             }
3411             case QEMU_OPTION_virtfs_synth: {
3412                 QemuOpts *fsdev;
3413                 QemuOpts *device;
3414
3415                 fsdev = qemu_opts_create(qemu_find_opts("fsdev"), "v_synth",
3416                                          1, NULL);
3417                 if (!fsdev) {
3418                     fprintf(stderr, "duplicate option: %s\n", "virtfs_synth");
3419                     exit(1);
3420                 }
3421                 qemu_opt_set(fsdev, "fsdriver", "synth");
3422
3423                 device = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
3424                                           &error_abort);
3425                 qemu_opt_set(device, "driver", "virtio-9p-pci");
3426                 qemu_opt_set(device, "fsdev", "v_synth");
3427                 qemu_opt_set(device, "mount_tag", "v_synth");
3428                 break;
3429             }
3430             case QEMU_OPTION_serial:
3431                 add_device_config(DEV_SERIAL, optarg);
3432                 default_serial = 0;
3433                 if (strncmp(optarg, "mon:", 4) == 0) {
3434                     default_monitor = 0;
3435                 }
3436                 break;
3437             case QEMU_OPTION_watchdog:
3438                 if (watchdog) {
3439                     fprintf(stderr,
3440                             "qemu: only one watchdog option may be given\n");
3441                     return 1;
3442                 }
3443                 watchdog = optarg;
3444                 break;
3445             case QEMU_OPTION_watchdog_action:
3446                 if (select_watchdog_action(optarg) == -1) {
3447                     fprintf(stderr, "Unknown -watchdog-action parameter\n");
3448                     exit(1);
3449                 }
3450                 break;
3451             case QEMU_OPTION_virtiocon:
3452                 add_device_config(DEV_VIRTCON, optarg);
3453                 default_virtcon = 0;
3454                 if (strncmp(optarg, "mon:", 4) == 0) {
3455                     default_monitor = 0;
3456                 }
3457                 break;
3458             case QEMU_OPTION_parallel:
3459                 add_device_config(DEV_PARALLEL, optarg);
3460                 default_parallel = 0;
3461                 if (strncmp(optarg, "mon:", 4) == 0) {
3462                     default_monitor = 0;
3463                 }
3464                 break;
3465             case QEMU_OPTION_debugcon:
3466                 add_device_config(DEV_DEBUGCON, optarg);
3467                 break;
3468             case QEMU_OPTION_loadvm:
3469                 loadvm = optarg;
3470                 break;
3471             case QEMU_OPTION_full_screen:
3472                 full_screen = 1;
3473                 break;
3474             case QEMU_OPTION_no_frame:
3475                 no_frame = 1;
3476                 break;
3477             case QEMU_OPTION_alt_grab:
3478                 alt_grab = 1;
3479                 break;
3480             case QEMU_OPTION_ctrl_grab:
3481                 ctrl_grab = 1;
3482                 break;
3483             case QEMU_OPTION_no_quit:
3484                 no_quit = 1;
3485                 break;
3486             case QEMU_OPTION_sdl:
3487 #ifdef CONFIG_SDL
3488                 display_type = DT_SDL;
3489                 break;
3490 #else
3491                 fprintf(stderr, "SDL support is disabled\n");
3492                 exit(1);
3493 #endif
3494             case QEMU_OPTION_pidfile:
3495                 pid_file = optarg;
3496                 break;
3497             case QEMU_OPTION_win2k_hack:
3498                 win2k_install_hack = 1;
3499                 break;
3500             case QEMU_OPTION_rtc_td_hack: {
3501                 static GlobalProperty slew_lost_ticks[] = {
3502                     {
3503                         .driver   = "mc146818rtc",
3504                         .property = "lost_tick_policy",
3505                         .value    = "slew",
3506                     },
3507                     { /* end of list */ }
3508                 };
3509
3510                 qdev_prop_register_global_list(slew_lost_ticks);
3511                 break;
3512             }
3513             case QEMU_OPTION_acpitable:
3514                 opts = qemu_opts_parse(qemu_find_opts("acpi"), optarg, 1);
3515                 if (!opts) {
3516                     exit(1);
3517                 }
3518                 do_acpitable_option(opts);
3519                 break;
3520             case QEMU_OPTION_smbios:
3521                 opts = qemu_opts_parse(qemu_find_opts("smbios"), optarg, 0);
3522                 if (!opts) {
3523                     exit(1);
3524                 }
3525                 do_smbios_option(opts);
3526                 break;
3527             case QEMU_OPTION_enable_kvm:
3528                 olist = qemu_find_opts("machine");
3529                 qemu_opts_parse(olist, "accel=kvm", 0);
3530                 break;
3531             case QEMU_OPTION_machine:
3532                 olist = qemu_find_opts("machine");
3533                 opts = qemu_opts_parse(olist, optarg, 1);
3534                 if (!opts) {
3535                     exit(1);
3536                 }
3537                 optarg = qemu_opt_get(opts, "type");
3538                 if (optarg) {
3539                     machine_class = machine_parse(optarg);
3540                 }
3541                 break;
3542              case QEMU_OPTION_no_kvm:
3543                 olist = qemu_find_opts("machine");
3544                 qemu_opts_parse(olist, "accel=tcg", 0);
3545                 break;
3546             case QEMU_OPTION_no_kvm_pit: {
3547                 fprintf(stderr, "Warning: KVM PIT can no longer be disabled "
3548                                 "separately.\n");
3549                 break;
3550             }
3551             case QEMU_OPTION_no_kvm_pit_reinjection: {
3552                 static GlobalProperty kvm_pit_lost_tick_policy[] = {
3553                     {
3554                         .driver   = "kvm-pit",
3555                         .property = "lost_tick_policy",
3556                         .value    = "discard",
3557                     },
3558                     { /* end of list */ }
3559                 };
3560
3561                 fprintf(stderr, "Warning: option deprecated, use "
3562                         "lost_tick_policy property of kvm-pit instead.\n");
3563                 qdev_prop_register_global_list(kvm_pit_lost_tick_policy);
3564                 break;
3565             }
3566             case QEMU_OPTION_usb:
3567                 olist = qemu_find_opts("machine");
3568                 qemu_opts_parse(olist, "usb=on", 0);
3569                 break;
3570             case QEMU_OPTION_usbdevice:
3571                 olist = qemu_find_opts("machine");
3572                 qemu_opts_parse(olist, "usb=on", 0);
3573                 add_device_config(DEV_USB, optarg);
3574                 break;
3575             case QEMU_OPTION_device:
3576                 if (!qemu_opts_parse(qemu_find_opts("device"), optarg, 1)) {
3577                     exit(1);
3578                 }
3579                 break;
3580             case QEMU_OPTION_smp:
3581                 if (!qemu_opts_parse(qemu_find_opts("smp-opts"), optarg, 1)) {
3582                     exit(1);
3583                 }
3584                 break;
3585             case QEMU_OPTION_vnc:
3586 #ifdef CONFIG_VNC
3587                 display_remote++;
3588                 vnc_display = optarg;
3589 #else
3590                 fprintf(stderr, "VNC support is disabled\n");
3591                 exit(1);
3592 #endif
3593                 break;
3594             case QEMU_OPTION_no_acpi:
3595                 acpi_enabled = 0;
3596                 break;
3597             case QEMU_OPTION_no_hpet:
3598                 no_hpet = 1;
3599                 break;
3600             case QEMU_OPTION_balloon:
3601                 if (balloon_parse(optarg) < 0) {
3602                     fprintf(stderr, "Unknown -balloon argument %s\n", optarg);
3603                     exit(1);
3604                 }
3605                 break;
3606             case QEMU_OPTION_no_reboot:
3607                 no_reboot = 1;
3608                 break;
3609             case QEMU_OPTION_no_shutdown:
3610                 no_shutdown = 1;
3611                 break;
3612             case QEMU_OPTION_show_cursor:
3613                 cursor_hide = 0;
3614                 break;
3615             case QEMU_OPTION_uuid:
3616                 if(qemu_uuid_parse(optarg, qemu_uuid) < 0) {
3617                     fprintf(stderr, "Fail to parse UUID string."
3618                             " Wrong format.\n");
3619                     exit(1);
3620                 }
3621                 qemu_uuid_set = true;
3622                 break;
3623             case QEMU_OPTION_option_rom:
3624                 if (nb_option_roms >= MAX_OPTION_ROMS) {
3625                     fprintf(stderr, "Too many option ROMs\n");
3626                     exit(1);
3627                 }
3628                 opts = qemu_opts_parse(qemu_find_opts("option-rom"), optarg, 1);
3629                 if (!opts) {
3630                     exit(1);
3631                 }
3632                 option_rom[nb_option_roms].name = qemu_opt_get(opts, "romfile");
3633                 option_rom[nb_option_roms].bootindex =
3634                     qemu_opt_get_number(opts, "bootindex", -1);
3635                 if (!option_rom[nb_option_roms].name) {
3636                     fprintf(stderr, "Option ROM file is not specified\n");
3637                     exit(1);
3638                 }
3639                 nb_option_roms++;
3640                 break;
3641             case QEMU_OPTION_semihosting:
3642                 semihosting_enabled = 1;
3643                 semihosting_target = SEMIHOSTING_TARGET_AUTO;
3644                 break;
3645             case QEMU_OPTION_semihosting_config:
3646                 semihosting_enabled = 1;
3647                 opts = qemu_opts_parse(qemu_find_opts("semihosting-config"),
3648                                            optarg, 0);
3649                 if (opts != NULL) {
3650                     semihosting_enabled = qemu_opt_get_bool(opts, "enable",
3651                                                             true);
3652                     const char *target = qemu_opt_get(opts, "target");
3653                     if (target != NULL) {
3654                         if (strcmp("native", target) == 0) {
3655                             semihosting_target = SEMIHOSTING_TARGET_NATIVE;
3656                         } else if (strcmp("gdb", target) == 0) {
3657                             semihosting_target = SEMIHOSTING_TARGET_GDB;
3658                         } else  if (strcmp("auto", target) == 0) {
3659                             semihosting_target = SEMIHOSTING_TARGET_AUTO;
3660                         } else {
3661                             fprintf(stderr, "Unsupported semihosting-config"
3662                                     " %s\n",
3663                                 optarg);
3664                             exit(1);
3665                         }
3666                     } else {
3667                         semihosting_target = SEMIHOSTING_TARGET_AUTO;
3668                     }
3669                 } else {
3670                     fprintf(stderr, "Unsupported semihosting-config %s\n",
3671                             optarg);
3672                     exit(1);
3673                 }
3674                 break;
3675             case QEMU_OPTION_tdf:
3676                 fprintf(stderr, "Warning: user space PIT time drift fix "
3677                                 "is no longer supported.\n");
3678                 break;
3679             case QEMU_OPTION_name:
3680                 opts = qemu_opts_parse(qemu_find_opts("name"), optarg, 1);
3681                 if (!opts) {
3682                     exit(1);
3683                 }
3684                 break;
3685             case QEMU_OPTION_prom_env:
3686                 if (nb_prom_envs >= MAX_PROM_ENVS) {
3687                     fprintf(stderr, "Too many prom variables\n");
3688                     exit(1);
3689                 }
3690                 prom_envs[nb_prom_envs] = optarg;
3691                 nb_prom_envs++;
3692                 break;
3693             case QEMU_OPTION_old_param:
3694                 old_param = 1;
3695                 break;
3696             case QEMU_OPTION_clock:
3697                 /* Clock options no longer exist.  Keep this option for
3698                  * backward compatibility.
3699                  */
3700                 break;
3701             case QEMU_OPTION_startdate:
3702                 configure_rtc_date_offset(optarg, 1);
3703                 break;
3704             case QEMU_OPTION_rtc:
3705                 opts = qemu_opts_parse(qemu_find_opts("rtc"), optarg, 0);
3706                 if (!opts) {
3707                     exit(1);
3708                 }
3709                 configure_rtc(opts);
3710                 break;
3711             case QEMU_OPTION_tb_size:
3712                 tcg_tb_size = strtol(optarg, NULL, 0);
3713                 if (tcg_tb_size < 0) {
3714                     tcg_tb_size = 0;
3715                 }
3716                 break;
3717             case QEMU_OPTION_icount:
3718                 icount_opts = qemu_opts_parse(qemu_find_opts("icount"),
3719                                               optarg, 1);
3720                 if (!icount_opts) {
3721                     exit(1);
3722                 }
3723                 break;
3724             case QEMU_OPTION_incoming:
3725                 incoming = optarg;
3726                 runstate_set(RUN_STATE_INMIGRATE);
3727                 break;
3728             case QEMU_OPTION_nodefaults:
3729                 has_defaults = 0;
3730                 break;
3731             case QEMU_OPTION_xen_domid:
3732                 if (!(xen_available())) {
3733                     printf("Option %s not supported for this target\n", popt->name);
3734                     exit(1);
3735                 }
3736                 xen_domid = atoi(optarg);
3737                 break;
3738             case QEMU_OPTION_xen_create:
3739                 if (!(xen_available())) {
3740                     printf("Option %s not supported for this target\n", popt->name);
3741                     exit(1);
3742                 }
3743                 xen_mode = XEN_CREATE;
3744                 break;
3745             case QEMU_OPTION_xen_attach:
3746                 if (!(xen_available())) {
3747                     printf("Option %s not supported for this target\n", popt->name);
3748                     exit(1);
3749                 }
3750                 xen_mode = XEN_ATTACH;
3751                 break;
3752             case QEMU_OPTION_trace:
3753             {
3754                 opts = qemu_opts_parse(qemu_find_opts("trace"), optarg, 0);
3755                 if (!opts) {
3756                     exit(1);
3757                 }
3758                 trace_events = qemu_opt_get(opts, "events");
3759                 trace_file = qemu_opt_get(opts, "file");
3760                 break;
3761             }
3762             case QEMU_OPTION_readconfig:
3763                 {
3764                     int ret = qemu_read_config_file(optarg);
3765                     if (ret < 0) {
3766                         fprintf(stderr, "read config %s: %s\n", optarg,
3767                             strerror(-ret));
3768                         exit(1);
3769                     }
3770                     break;
3771                 }
3772             case QEMU_OPTION_spice:
3773                 olist = qemu_find_opts("spice");
3774                 if (!olist) {
3775                     fprintf(stderr, "spice is not supported by this qemu build.\n");
3776                     exit(1);
3777                 }
3778                 opts = qemu_opts_parse(olist, optarg, 0);
3779                 if (!opts) {
3780                     exit(1);
3781                 }
3782                 display_remote++;
3783                 break;
3784             case QEMU_OPTION_writeconfig:
3785                 {
3786                     FILE *fp;
3787                     if (strcmp(optarg, "-") == 0) {
3788                         fp = stdout;
3789                     } else {
3790                         fp = fopen(optarg, "w");
3791                         if (fp == NULL) {
3792                             fprintf(stderr, "open %s: %s\n", optarg, strerror(errno));
3793                             exit(1);
3794                         }
3795                     }
3796                     qemu_config_write(fp);
3797                     if (fp != stdout) {
3798                         fclose(fp);
3799                     }
3800                     break;
3801                 }
3802             case QEMU_OPTION_qtest:
3803                 qtest_chrdev = optarg;
3804                 break;
3805             case QEMU_OPTION_qtest_log:
3806                 qtest_log = optarg;
3807                 break;
3808             case QEMU_OPTION_sandbox:
3809                 opts = qemu_opts_parse(qemu_find_opts("sandbox"), optarg, 1);
3810                 if (!opts) {
3811                     exit(1);
3812                 }
3813                 break;
3814             case QEMU_OPTION_add_fd:
3815 #ifndef _WIN32
3816                 opts = qemu_opts_parse(qemu_find_opts("add-fd"), optarg, 0);
3817                 if (!opts) {
3818                     exit(1);
3819                 }
3820 #else
3821                 error_report("File descriptor passing is disabled on this "
3822                              "platform");
3823                 exit(1);
3824 #endif
3825                 break;
3826             case QEMU_OPTION_object:
3827                 opts = qemu_opts_parse(qemu_find_opts("object"), optarg, 1);
3828                 if (!opts) {
3829                     exit(1);
3830                 }
3831                 break;
3832             case QEMU_OPTION_realtime:
3833                 opts = qemu_opts_parse(qemu_find_opts("realtime"), optarg, 0);
3834                 if (!opts) {
3835                     exit(1);
3836                 }
3837                 enable_mlock = qemu_opt_get_bool(opts, "mlock", true);
3838                 break;
3839             case QEMU_OPTION_msg:
3840                 opts = qemu_opts_parse(qemu_find_opts("msg"), optarg, 0);
3841                 if (!opts) {
3842                     exit(1);
3843                 }
3844                 configure_msg(opts);
3845                 break;
3846             case QEMU_OPTION_dump_vmstate:
3847                 if (vmstate_dump_file) {
3848                     fprintf(stderr, "qemu: only one '-dump-vmstate' "
3849                             "option may be given\n");
3850                     exit(1);
3851                 }
3852                 vmstate_dump_file = fopen(optarg, "w");
3853                 if (vmstate_dump_file == NULL) {
3854                     fprintf(stderr, "open %s: %s\n", optarg, strerror(errno));
3855                     exit(1);
3856                 }
3857                 break;
3858             default:
3859                 os_parse_cmd_args(popt->index, optarg);
3860             }
3861         }
3862     }
3863     loc_set_none();
3864
3865     os_daemonize();
3866
3867     if (qemu_init_main_loop(&main_loop_err)) {
3868         error_report("%s", error_get_pretty(main_loop_err));
3869         exit(1);
3870     }
3871
3872     if (qemu_opts_foreach(qemu_find_opts("sandbox"), parse_sandbox, NULL, 0)) {
3873         exit(1);
3874     }
3875
3876     if (qemu_opts_foreach(qemu_find_opts("name"), parse_name, NULL, 1)) {
3877         exit(1);
3878     }
3879
3880 #ifndef _WIN32
3881     if (qemu_opts_foreach(qemu_find_opts("add-fd"), parse_add_fd, NULL, 1)) {
3882         exit(1);
3883     }
3884
3885     if (qemu_opts_foreach(qemu_find_opts("add-fd"), cleanup_add_fd, NULL, 1)) {
3886         exit(1);
3887     }
3888 #endif
3889
3890     if (machine_class == NULL) {
3891         fprintf(stderr, "No machine specified, and there is no default.\n"
3892                 "Use -machine help to list supported machines!\n");
3893         exit(1);
3894     }
3895
3896     current_machine = MACHINE(object_new(object_class_get_name(
3897                           OBJECT_CLASS(machine_class))));
3898     object_property_add_child(object_get_root(), "machine",
3899                               OBJECT(current_machine), &error_abort);
3900     cpu_exec_init_all();
3901
3902     if (machine_class->hw_version) {
3903         qemu_set_version(machine_class->hw_version);
3904     }
3905
3906     /* Init CPU def lists, based on config
3907      * - Must be called after all the qemu_read_config_file() calls
3908      * - Must be called before list_cpus()
3909      * - Must be called before machine->init()
3910      */
3911     cpudef_init();
3912
3913     if (cpu_model && is_help_option(cpu_model)) {
3914         list_cpus(stdout, &fprintf, cpu_model);
3915         exit(0);
3916     }
3917
3918     /* Open the logfile at this point, if necessary. We can't open the logfile
3919      * when encountering either of the logging options (-d or -D) because the
3920      * other one may be encountered later on the command line, changing the
3921      * location or level of logging.
3922      */
3923     if (log_mask) {
3924         int mask;
3925         if (log_file) {
3926             qemu_set_log_filename(log_file);
3927         }
3928
3929         mask = qemu_str_to_log_mask(log_mask);
3930         if (!mask) {
3931             qemu_print_log_usage(stdout);
3932             exit(1);
3933         }
3934         qemu_set_log(mask);
3935     }
3936
3937     if (!is_daemonized()) {
3938         if (!trace_init_backends(trace_events, trace_file)) {
3939             exit(1);
3940         }
3941     }
3942
3943     /* If no data_dir is specified then try to find it relative to the
3944        executable path.  */
3945     if (data_dir_idx < ARRAY_SIZE(data_dir)) {
3946         data_dir[data_dir_idx] = os_find_datadir();
3947         if (data_dir[data_dir_idx] != NULL) {
3948             data_dir_idx++;
3949         }
3950     }
3951     /* If all else fails use the install path specified when building. */
3952     if (data_dir_idx < ARRAY_SIZE(data_dir)) {
3953         data_dir[data_dir_idx++] = CONFIG_QEMU_DATADIR;
3954     }
3955
3956     smp_parse(qemu_opts_find(qemu_find_opts("smp-opts"), NULL));
3957
3958     machine_class->max_cpus = machine_class->max_cpus ?: 1; /* Default to UP */
3959     if (smp_cpus > machine_class->max_cpus) {
3960         fprintf(stderr, "Number of SMP cpus requested (%d), exceeds max cpus "
3961                 "supported by machine `%s' (%d)\n", smp_cpus,
3962                 machine_class->name, machine_class->max_cpus);
3963         exit(1);
3964     }
3965
3966     /*
3967      * Get the default machine options from the machine if it is not already
3968      * specified either by the configuration file or by the command line.
3969      */
3970     if (machine_class->default_machine_opts) {
3971         qemu_opts_set_defaults(qemu_find_opts("machine"),
3972                                machine_class->default_machine_opts, 0);
3973     }
3974
3975     qemu_opts_foreach(qemu_find_opts("device"), default_driver_check, NULL, 0);
3976     qemu_opts_foreach(qemu_find_opts("global"), default_driver_check, NULL, 0);
3977
3978     if (!vga_model && !default_vga) {
3979         vga_interface_type = VGA_DEVICE;
3980     }
3981     if (!has_defaults || machine_class->no_serial) {
3982         default_serial = 0;
3983     }
3984     if (!has_defaults || machine_class->no_parallel) {
3985         default_parallel = 0;
3986     }
3987     if (!has_defaults || !machine_class->use_virtcon) {
3988         default_virtcon = 0;
3989     }
3990     if (!has_defaults || !machine_class->use_sclp) {
3991         default_sclp = 0;
3992     }
3993     if (!has_defaults || machine_class->no_floppy) {
3994         default_floppy = 0;
3995     }
3996     if (!has_defaults || machine_class->no_cdrom) {
3997         default_cdrom = 0;
3998     }
3999     if (!has_defaults || machine_class->no_sdcard) {
4000         default_sdcard = 0;
4001     }
4002     if (!has_defaults) {
4003         default_monitor = 0;
4004         default_net = 0;
4005         default_vga = 0;
4006     }
4007
4008     if (is_daemonized()) {
4009         /* According to documentation and historically, -nographic redirects
4010          * serial port, parallel port and monitor to stdio, which does not work
4011          * with -daemonize.  We can redirect these to null instead, but since
4012          * -nographic is legacy, let's just error out.
4013          * We disallow -nographic only if all other ports are not redirected
4014          * explicitly, to not break existing legacy setups which uses
4015          * -nographic _and_ redirects all ports explicitly - this is valid
4016          * usage, -nographic is just a no-op in this case.
4017          */
4018         if (display_type == DT_NOGRAPHIC
4019             && (default_parallel || default_serial
4020                 || default_monitor || default_virtcon)) {
4021             fprintf(stderr, "-nographic can not be used with -daemonize\n");
4022             exit(1);
4023         }
4024 #ifdef CONFIG_CURSES
4025         if (display_type == DT_CURSES) {
4026             fprintf(stderr, "curses display can not be used with -daemonize\n");
4027             exit(1);
4028         }
4029 #endif
4030     }
4031
4032     if (display_type == DT_NOGRAPHIC) {
4033         if (default_parallel)
4034             add_device_config(DEV_PARALLEL, "null");
4035         if (default_serial && default_monitor) {
4036             add_device_config(DEV_SERIAL, "mon:stdio");
4037         } else if (default_virtcon && default_monitor) {
4038             add_device_config(DEV_VIRTCON, "mon:stdio");
4039         } else if (default_sclp && default_monitor) {
4040             add_device_config(DEV_SCLP, "mon:stdio");
4041         } else {
4042             if (default_serial)
4043                 add_device_config(DEV_SERIAL, "stdio");
4044             if (default_virtcon)
4045                 add_device_config(DEV_VIRTCON, "stdio");
4046             if (default_sclp) {
4047                 add_device_config(DEV_SCLP, "stdio");
4048             }
4049             if (default_monitor)
4050                 monitor_parse("stdio", "readline", false);
4051         }
4052     } else {
4053         if (default_serial)
4054             add_device_config(DEV_SERIAL, "vc:80Cx24C");
4055         if (default_parallel)
4056             add_device_config(DEV_PARALLEL, "vc:80Cx24C");
4057         if (default_monitor)
4058             monitor_parse("vc:80Cx24C", "readline", false);
4059         if (default_virtcon)
4060             add_device_config(DEV_VIRTCON, "vc:80Cx24C");
4061         if (default_sclp) {
4062             add_device_config(DEV_SCLP, "vc:80Cx24C");
4063         }
4064     }
4065
4066     if (display_type == DT_DEFAULT && !display_remote) {
4067 #if defined(CONFIG_GTK)
4068         display_type = DT_GTK;
4069 #elif defined(CONFIG_SDL) || defined(CONFIG_COCOA)
4070         display_type = DT_SDL;
4071 #elif defined(CONFIG_VNC)
4072         vnc_display = "localhost:0,to=99";
4073         show_vnc_port = 1;
4074 #else
4075         display_type = DT_NONE;
4076 #endif
4077     }
4078
4079     if ((no_frame || alt_grab || ctrl_grab) && display_type != DT_SDL) {
4080         fprintf(stderr, "-no-frame, -alt-grab and -ctrl-grab are only valid "
4081                         "for SDL, ignoring option\n");
4082     }
4083     if (no_quit && (display_type != DT_GTK && display_type != DT_SDL)) {
4084         fprintf(stderr, "-no-quit is only valid for GTK and SDL, "
4085                         "ignoring option\n");
4086     }
4087
4088 #if defined(CONFIG_GTK)
4089     if (display_type == DT_GTK) {
4090         early_gtk_display_init();
4091     }
4092 #endif
4093
4094     socket_init();
4095
4096     if (qemu_opts_foreach(qemu_find_opts("chardev"), chardev_init_func, NULL, 1) != 0)
4097         exit(1);
4098 #ifdef CONFIG_VIRTFS
4099     if (qemu_opts_foreach(qemu_find_opts("fsdev"), fsdev_init_func, NULL, 1) != 0) {
4100         exit(1);
4101     }
4102 #endif
4103
4104     if (pid_file && qemu_create_pidfile(pid_file) != 0) {
4105         fprintf(stderr, "Could not acquire pid file: %s\n", strerror(errno));
4106         exit(1);
4107     }
4108
4109     /* store value for the future use */
4110     qemu_opt_set_number(qemu_find_opts_singleton("memory"), "size", ram_size);
4111
4112     if (qemu_opts_foreach(qemu_find_opts("device"), device_help_func, NULL, 0)
4113         != 0) {
4114         exit(0);
4115     }
4116
4117     if (qemu_opts_foreach(qemu_find_opts("object"),
4118                           object_create, NULL, 0) != 0) {
4119         exit(1);
4120     }
4121
4122     machine_opts = qemu_get_machine_opts();
4123     if (qemu_opt_foreach(machine_opts, machine_set_property, current_machine,
4124                          1) < 0) {
4125         object_unref(OBJECT(current_machine));
4126         exit(1);
4127     }
4128
4129     configure_accelerator(current_machine);
4130
4131     if (qtest_chrdev) {
4132         Error *local_err = NULL;
4133         qtest_init(qtest_chrdev, qtest_log, &local_err);
4134         if (local_err) {
4135             error_report("%s", error_get_pretty(local_err));
4136             error_free(local_err);
4137             exit(1);
4138         }
4139     }
4140
4141     machine_opts = qemu_get_machine_opts();
4142     kernel_filename = qemu_opt_get(machine_opts, "kernel");
4143     initrd_filename = qemu_opt_get(machine_opts, "initrd");
4144     kernel_cmdline = qemu_opt_get(machine_opts, "append");
4145     bios_name = qemu_opt_get(machine_opts, "firmware");
4146
4147     boot_order = machine_class->default_boot_order;
4148     opts = qemu_opts_find(qemu_find_opts("boot-opts"), NULL);
4149     if (opts) {
4150         char *normal_boot_order;
4151         const char *order, *once;
4152
4153         order = qemu_opt_get(opts, "order");
4154         if (order) {
4155             validate_bootdevices(order);
4156             boot_order = order;
4157         }
4158
4159         once = qemu_opt_get(opts, "once");
4160         if (once) {
4161             validate_bootdevices(once);
4162             normal_boot_order = g_strdup(boot_order);
4163             boot_order = once;
4164             qemu_register_reset(restore_boot_order, normal_boot_order);
4165         }
4166
4167         boot_menu = qemu_opt_get_bool(opts, "menu", boot_menu);
4168         boot_strict = qemu_opt_get_bool(opts, "strict", false);
4169     }
4170
4171     if (!kernel_cmdline) {
4172         kernel_cmdline = "";
4173         current_machine->kernel_cmdline = (char *)kernel_cmdline;
4174     }
4175
4176     linux_boot = (kernel_filename != NULL);
4177
4178     if (!linux_boot && *kernel_cmdline != '\0') {
4179         fprintf(stderr, "-append only allowed with -kernel option\n");
4180         exit(1);
4181     }
4182
4183     if (!linux_boot && initrd_filename != NULL) {
4184         fprintf(stderr, "-initrd only allowed with -kernel option\n");
4185         exit(1);
4186     }
4187
4188     if (!linux_boot && qemu_opt_get(machine_opts, "dtb")) {
4189         fprintf(stderr, "-dtb only allowed with -kernel option\n");
4190         exit(1);
4191     }
4192
4193     os_set_line_buffering();
4194
4195     qemu_init_cpu_loop();
4196     qemu_mutex_lock_iothread();
4197
4198 #ifdef CONFIG_SPICE
4199     /* spice needs the timers to be initialized by this point */
4200     qemu_spice_init();
4201 #endif
4202
4203     cpu_ticks_init();
4204     if (icount_opts) {
4205         if (kvm_enabled() || xen_enabled()) {
4206             fprintf(stderr, "-icount is not allowed with kvm or xen\n");
4207             exit(1);
4208         }
4209         configure_icount(icount_opts, &error_abort);
4210         qemu_opts_del(icount_opts);
4211     }
4212
4213     /* clean up network at qemu process termination */
4214     atexit(&net_cleanup);
4215
4216     if (net_init_clients() < 0) {
4217         exit(1);
4218     }
4219
4220 #ifdef CONFIG_TPM
4221     if (tpm_init() < 0) {
4222         exit(1);
4223     }
4224 #endif
4225
4226     /* init the bluetooth world */
4227     if (foreach_device_config(DEV_BT, bt_parse))
4228         exit(1);
4229
4230     if (!xen_enabled()) {
4231         /* On 32-bit hosts, QEMU is limited by virtual address space */
4232         if (ram_size > (2047 << 20) && HOST_LONG_BITS == 32) {
4233             fprintf(stderr, "qemu: at most 2047 MB RAM can be simulated\n");
4234             exit(1);
4235         }
4236     }
4237
4238     blk_mig_init();
4239     ram_mig_init();
4240
4241     /* If the currently selected machine wishes to override the units-per-bus
4242      * property of its default HBA interface type, do so now. */
4243     if (machine_class->units_per_default_bus) {
4244         override_max_devs(machine_class->block_default_type,
4245                           machine_class->units_per_default_bus);
4246     }
4247
4248     /* open the virtual block devices */
4249     if (snapshot)
4250         qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot, NULL, 0);
4251     if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func,
4252                           &machine_class->block_default_type, 1) != 0) {
4253         exit(1);
4254     }
4255
4256     default_drive(default_cdrom, snapshot, machine_class->block_default_type, 2,
4257                   CDROM_OPTS);
4258     default_drive(default_floppy, snapshot, IF_FLOPPY, 0, FD_OPTS);
4259     default_drive(default_sdcard, snapshot, IF_SD, 0, SD_OPTS);
4260
4261     if (qemu_opts_foreach(qemu_find_opts("numa"), numa_init_func,
4262                           NULL, 1) != 0) {
4263         exit(1);
4264     }
4265
4266     set_numa_nodes();
4267
4268     if (qemu_opts_foreach(qemu_find_opts("mon"), mon_init_func, NULL, 1) != 0) {
4269         exit(1);
4270     }
4271
4272     if (foreach_device_config(DEV_SERIAL, serial_parse) < 0)
4273         exit(1);
4274     if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0)
4275         exit(1);
4276     if (foreach_device_config(DEV_VIRTCON, virtcon_parse) < 0)
4277         exit(1);
4278     if (foreach_device_config(DEV_SCLP, sclp_parse) < 0) {
4279         exit(1);
4280     }
4281     if (foreach_device_config(DEV_DEBUGCON, debugcon_parse) < 0)
4282         exit(1);
4283
4284     /* If no default VGA is requested, the default is "none".  */
4285     if (default_vga) {
4286         if (machine_class->default_display) {
4287             vga_model = machine_class->default_display;
4288         } else if (cirrus_vga_available()) {
4289             vga_model = "cirrus";
4290         } else if (vga_available()) {
4291             vga_model = "std";
4292         }
4293     }
4294     if (vga_model) {
4295         select_vgahw(vga_model);
4296     }
4297
4298     if (watchdog) {
4299         i = select_watchdog(watchdog);
4300         if (i > 0)
4301             exit (i == 1 ? 1 : 0);
4302     }
4303
4304     if (machine_class->compat_props) {
4305         qdev_prop_register_global_list(machine_class->compat_props);
4306     }
4307     qemu_add_globals();
4308
4309     qdev_machine_init();
4310
4311     current_machine->ram_size = ram_size;
4312     current_machine->maxram_size = maxram_size;
4313     current_machine->ram_slots = ram_slots;
4314     current_machine->boot_order = boot_order;
4315     current_machine->cpu_model = cpu_model;
4316
4317     machine_class->init(current_machine);
4318
4319     realtime_init();
4320
4321     audio_init();
4322
4323     cpu_synchronize_all_post_init();
4324
4325     set_numa_modes();
4326
4327     /* init USB devices */
4328     if (usb_enabled(false)) {
4329         if (foreach_device_config(DEV_USB, usb_parse) < 0)
4330             exit(1);
4331     }
4332
4333     /* init generic devices */
4334     if (qemu_opts_foreach(qemu_find_opts("device"), device_init_func, NULL, 1) != 0)
4335         exit(1);
4336
4337     /* Did we create any drives that we failed to create a device for? */
4338     drive_check_orphaned();
4339
4340     net_check_clients();
4341
4342     ds = init_displaystate();
4343
4344     /* init local displays */
4345     switch (display_type) {
4346     case DT_NOGRAPHIC:
4347         (void)ds;       /* avoid warning if no display is configured */
4348         break;
4349 #if defined(CONFIG_CURSES)
4350     case DT_CURSES:
4351         curses_display_init(ds, full_screen);
4352         break;
4353 #endif
4354 #if defined(CONFIG_SDL)
4355     case DT_SDL:
4356         sdl_display_init(ds, full_screen, no_frame);
4357         break;
4358 #elif defined(CONFIG_COCOA)
4359     case DT_SDL:
4360         cocoa_display_init(ds, full_screen);
4361         break;
4362 #endif
4363 #if defined(CONFIG_GTK)
4364     case DT_GTK:
4365         gtk_display_init(ds, full_screen, grab_on_hover);
4366         break;
4367 #endif
4368     default:
4369         break;
4370     }
4371
4372     /* must be after terminal init, SDL library changes signal handlers */
4373     os_setup_signal_handling();
4374
4375 #ifdef CONFIG_VNC
4376     /* init remote displays */
4377     if (vnc_display) {
4378         Error *local_err = NULL;
4379         vnc_display_init(ds);
4380         vnc_display_open(ds, vnc_display, &local_err);
4381         if (local_err != NULL) {
4382             error_report("Failed to start VNC server on `%s': %s",
4383                          vnc_display, error_get_pretty(local_err));
4384             error_free(local_err);
4385             exit(1);
4386         }
4387
4388         if (show_vnc_port) {
4389             printf("VNC server running on `%s'\n", vnc_display_local_addr(ds));
4390         }
4391     }
4392 #endif
4393 #ifdef CONFIG_SPICE
4394     if (using_spice) {
4395         qemu_spice_display_init();
4396     }
4397 #endif
4398
4399     if (foreach_device_config(DEV_GDB, gdbserver_start) < 0) {
4400         exit(1);
4401     }
4402
4403     qdev_machine_creation_done();
4404
4405     if (rom_load_all() != 0) {
4406         fprintf(stderr, "rom loading failed\n");
4407         exit(1);
4408     }
4409
4410     /* TODO: once all bus devices are qdevified, this should be done
4411      * when bus is created by qdev.c */
4412     qemu_register_reset(qbus_reset_all_fn, sysbus_get_default());
4413     qemu_run_machine_init_done_notifiers();
4414
4415     /* Done notifiers can load ROMs */
4416     rom_load_done();
4417
4418     qemu_system_reset(VMRESET_SILENT);
4419     if (loadvm) {
4420         if (load_vmstate(loadvm) < 0) {
4421             autostart = 0;
4422         }
4423     }
4424
4425     qdev_prop_check_globals();
4426     if (vmstate_dump_file) {
4427         /* dump and exit */
4428         dump_vmstate_json_to_file(vmstate_dump_file);
4429         return 0;
4430     }
4431
4432     if (incoming) {
4433         Error *local_err = NULL;
4434         qemu_start_incoming_migration(incoming, &local_err);
4435         if (local_err) {
4436             error_report("-incoming %s: %s", incoming,
4437                          error_get_pretty(local_err));
4438             error_free(local_err);
4439             exit(1);
4440         }
4441     } else if (autostart) {
4442         vm_start();
4443     }
4444
4445     os_setup_post();
4446
4447     if (is_daemonized()) {
4448         if (!trace_init_backends(trace_events, trace_file)) {
4449             exit(1);
4450         }
4451     }
4452
4453     main_loop();
4454     bdrv_close_all();
4455     pause_all_vcpus();
4456     res_free();
4457 #ifdef CONFIG_TPM
4458     tpm_cleanup();
4459 #endif
4460
4461     return 0;
4462 }
This page took 0.274321 seconds and 4 git commands to generate.