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