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