]> git.proxmox.com Git - mirror_qemu.git/blame - vl.c
Merge remote-tracking branch 'remotes/bonzini/tags/for-upstream' into staging
[mirror_qemu.git] / vl.c
CommitLineData
0824d6fc 1/*
80cabfad 2 * QEMU System Emulator
5fafdf24 3 *
68d0f70e 4 * Copyright (c) 2003-2008 Fabrice Bellard
5fafdf24 5 *
1df912cf
FB
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.
0824d6fc 23 */
e688df6b 24
d38ea87a 25#include "qemu/osdep.h"
a8d25326 26#include "qemu-common.h"
3dc54b0e 27#include "qemu/units.h"
e688df6b 28#include "qapi/error.h"
67a1de0d 29#include "qemu-version.h"
f348b6d1
VB
30#include "qemu/cutils.h"
31#include "qemu/help_option.h"
cea25275 32#include "qemu/uuid.h"
9c17d615 33#include "sysemu/seccomp.h"
14a48c1d 34#include "sysemu/tcg.h"
452dfbef 35
73332e5c 36#ifdef CONFIG_SDL
59a36a2f 37#if defined(__APPLE__) || defined(main)
6693665a 38#include <SDL.h>
880fec5d 39int qemu_main(int argc, char **argv, char **envp);
40int main(int argc, char **argv)
41{
59a36a2f 42 return qemu_main(argc, argv, NULL);
880fec5d 43}
44#undef main
45#define main qemu_main
96bcd4f8 46#endif
73332e5c 47#endif /* CONFIG_SDL */
0824d6fc 48
5b0753e0
FB
49#ifdef CONFIG_COCOA
50#undef main
51#define main qemu_main
52#endif /* CONFIG_COCOA */
53
69e5bb68 54
d49b6836 55#include "qemu/error-report.h"
c8897e8e 56#include "qemu/sockets.h"
511d2b14 57#include "hw/hw.h"
a1a9cb0c 58#include "sysemu/accel.h"
511d2b14 59#include "hw/usb.h"
0d09e41a 60#include "hw/isa/isa.h"
fb8b660e 61#include "hw/scsi/scsi.h"
866e2b37 62#include "hw/display/vga.h"
511d2b14 63#include "hw/bt.h"
0d09e41a 64#include "sysemu/watchdog.h"
a2eb5c0c 65#include "hw/firmware/smbios.h"
9f57061c 66#include "hw/acpi/acpi.h"
0d09e41a 67#include "hw/xen/xen.h"
bd3c948d 68#include "hw/qdev.h"
45a50b16 69#include "hw/loader.h"
b4a42f81 70#include "monitor/qdev.h"
dccfcd0e 71#include "sysemu/bt.h"
1422e32d 72#include "net/net.h"
68ac40d2 73#include "net/slirp.h"
83c9089e 74#include "monitor/monitor.h"
28ecbaee 75#include "ui/console.h"
e0d2bd51 76#include "ui/input.h"
9c17d615 77#include "sysemu/sysemu.h"
e35704ba 78#include "sysemu/numa.h"
022c62cb 79#include "exec/gdbstub.h"
1de7afc9 80#include "qemu/timer.h"
8228e353 81#include "chardev/char.h"
b33276a7 82#include "qemu/bitmap.h"
03dd024f 83#include "qemu/log.h"
9c17d615 84#include "sysemu/blockdev.h"
0d09e41a 85#include "hw/block/block.h"
7b1e1a22 86#include "migration/misc.h"
5e22479a 87#include "migration/snapshot.h"
84a899de 88#include "migration/global_state.h"
bdee56f5 89#include "sysemu/tpm.h"
9c17d615 90#include "sysemu/dma.h"
8a824e4d 91#include "hw/audio/soundhw.h"
511d2b14 92#include "audio/audio.h"
4b4629d9 93#include "sysemu/cpus.h"
5821ebf9 94#include "migration/colo.h"
1693c64c 95#include "migration/postcopy-ram.h"
9c17d615 96#include "sysemu/kvm.h"
b0cb0a66 97#include "sysemu/hax.h"
42e5f393 98#include "qapi/qobject-input-visitor.h"
1de7afc9
PB
99#include "qemu/option.h"
100#include "qemu/config-file.h"
59a5264b 101#include "qemu-options.h"
1de7afc9 102#include "qemu/main-loop.h"
758e8e38 103#ifdef CONFIG_VIRTFS
74db920c
GS
104#include "fsdev/qemu-fsdev.h"
105#endif
9c17d615 106#include "sysemu/qtest.h"
511d2b14 107
76cad711 108#include "disas/disas.h"
fc01f7e7 109
0ab8ed18 110#include "trace-root.h"
e4858974 111#include "trace/control.h"
1de7afc9 112#include "qemu/queue.h"
9c17d615 113#include "sysemu/arch_init.h"
72cf2d4f 114
29b0040b 115#include "ui/qemu-spice.h"
68d98d3e 116#include "qapi/string-input-visitor.h"
c4090f8e 117#include "qapi/opts-visitor.h"
776d1344 118#include "qapi/clone-visitor.h"
84321831 119#include "qom/object_interfaces.h"
f1672e6f 120#include "hw/semihosting/semihost.h"
ddbb0d09 121#include "crypto/init.h"
b60c48a7 122#include "sysemu/replay.h"
9af23989
MA
123#include "qapi/qapi-events-run-state.h"
124#include "qapi/qapi-visit-block-core.h"
776d1344 125#include "qapi/qapi-visit-ui.h"
112ed241 126#include "qapi/qapi-commands-block-core.h"
112ed241 127#include "qapi/qapi-commands-run-state.h"
e1ca8f7e 128#include "qapi/qapi-commands-ui.h"
0194749a 129#include "qapi/qmp/qerror.h"
dce8921b 130#include "sysemu/iothread.h"
9c09a251 131#include "qemu/guest-random.h"
29b0040b 132
98b19252
AS
133#define MAX_VIRTIO_CONSOLES 1
134
4524051c
GH
135static const char *data_dir[16];
136static int data_dir_idx;
1192dad8 137const char *bios_name = NULL;
cb5a7aa8 138enum vga_retrace_method vga_retrace_method = VGA_RETRACE_DUMB;
da076ffe 139int display_opengl;
3d11d0eb 140const char* keyboard_layout = NULL;
c227f099 141ram_addr_t ram_size;
c902760f 142const char *mem_path = NULL;
c902760f 143int mem_prealloc = 0; /* force preallocation of physical target memory */
28d16f38 144bool enable_mlock = false;
6f131f13 145bool enable_cpu_pm = false;
c4b1fcc0 146int nb_nics;
7c9d8e07 147NICInfo nd_table[MAX_NICS];
d399f677 148int autostart;
7e166ebd
AP
149static enum {
150 RTC_BASE_UTC,
151 RTC_BASE_LOCALTIME,
152 RTC_BASE_DATETIME,
153} rtc_base_type = RTC_BASE_UTC;
eb6a5209
AP
154static time_t rtc_ref_start_datetime;
155static int rtc_realtime_clock_offset; /* used only with QEMU_CLOCK_REALTIME */
156static int rtc_host_datetime_offset = -1; /* valid & used only with
157 RTC_BASE_DATETIME */
884f17c2 158QEMUClockType rtc_clock;
64465297 159int vga_interface_type = VGA_NONE;
0c8d7065 160static DisplayOptions dpy;
b8d880ba
PM
161static int num_serial_hds;
162static Chardev **serial_hds;
0ec7b3e7 163Chardev *parallel_hds[MAX_PARALLEL_PORTS];
a09db21f 164int win2k_install_hack = 0;
1b530a6d 165int singlestep = 0;
6515b203 166int acpi_enabled = 1;
16b29ae1 167int no_hpet = 0;
52ca8d6a 168int fd_bootchk = 1;
4fdcac0e 169static int no_reboot;
b2f76161 170int no_shutdown = 0;
9467cd46 171int cursor_hide = 1;
a171fe39 172int graphic_rotate = 0;
09aaa160 173const char *watchdog;
2e55e842 174QEMUOptionRom option_rom[MAX_OPTION_ROMS];
9ae02555 175int nb_option_roms;
2b8f2d41 176int old_param = 0;
c35734b2 177const char *qemu_name;
3780e197 178int alt_grab = 0;
0ca9f8a4 179int ctrl_grab = 0;
66508601
BS
180unsigned int nb_prom_envs = 0;
181const char *prom_envs[MAX_PROM_ENVS];
95387491 182int boot_menu;
bc74112f 183bool boot_strict;
3d3b8303 184uint8_t *boot_splash_filedata;
811f8652 185int only_migratable; /* turn it off unless user states otherwise */
46ea94ca 186bool wakeup_suspend_enabled;
0824d6fc 187
a8bfac37 188int icount_align_option;
1ca4d09a 189
9c5ce8db 190/* The bytes in qemu_uuid are in the order specified by RFC4122, _not_ in the
caad057b
EH
191 * little-endian "wire format" described in the SMBIOS 2.6 specification.
192 */
9c5ce8db 193QemuUUID qemu_uuid;
fc3b3295 194bool qemu_uuid_set;
8fcb1b90 195
fd42deeb
GH
196static NotifierList exit_notifiers =
197 NOTIFIER_LIST_INITIALIZER(exit_notifiers);
198
4cab946a
GN
199static NotifierList machine_init_done_notifiers =
200 NOTIFIER_LIST_INITIALIZER(machine_init_done_notifiers);
201
d5286af5 202bool xen_allowed;
d745bef8
BS
203uint32_t xen_domid;
204enum xen_mode xen_mode = XEN_EMULATE;
1c599472 205bool xen_domid_restrict;
d745bef8 206
d44229c5 207static int has_defaults = 1;
998bbd74 208static int default_serial = 1;
6a5e8b0e 209static int default_parallel = 1;
abdeed06 210static int default_monitor = 1;
ac33f8fa
GH
211static int default_floppy = 1;
212static int default_cdrom = 1;
213static int default_sdcard = 1;
7f1b17f2 214static int default_vga = 1;
d30300f7 215static int default_net = 1;
998bbd74
GH
216
217static struct {
218 const char *driver;
219 int *flag;
220} default_list[] = {
6a5e8b0e
GH
221 { .driver = "isa-serial", .flag = &default_serial },
222 { .driver = "isa-parallel", .flag = &default_parallel },
d8bcbabf 223 { .driver = "isa-fdc", .flag = &default_floppy },
a92bd191 224 { .driver = "floppy", .flag = &default_floppy },
af6bf132
MA
225 { .driver = "ide-cd", .flag = &default_cdrom },
226 { .driver = "ide-hd", .flag = &default_cdrom },
d8bcbabf 227 { .driver = "ide-drive", .flag = &default_cdrom },
af6bf132 228 { .driver = "scsi-cd", .flag = &default_cdrom },
f6f99b48 229 { .driver = "scsi-hd", .flag = &default_cdrom },
7f1b17f2
PB
230 { .driver = "VGA", .flag = &default_vga },
231 { .driver = "isa-vga", .flag = &default_vga },
232 { .driver = "cirrus-vga", .flag = &default_vga },
233 { .driver = "isa-cirrus-vga", .flag = &default_vga },
234 { .driver = "vmware-svga", .flag = &default_vga },
235 { .driver = "qxl-vga", .flag = &default_vga },
a94f0c5c 236 { .driver = "virtio-vga", .flag = &default_vga },
862b4a29 237 { .driver = "ati-vga", .flag = &default_vga },
267f6646 238 { .driver = "vhost-user-vga", .flag = &default_vga },
998bbd74
GH
239};
240
4d454574
PB
241static QemuOptsList qemu_rtc_opts = {
242 .name = "rtc",
243 .head = QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts.head),
eb6a5209 244 .merge_lists = true,
4d454574
PB
245 .desc = {
246 {
247 .name = "base",
248 .type = QEMU_OPT_STRING,
249 },{
250 .name = "clock",
251 .type = QEMU_OPT_STRING,
252 },{
253 .name = "driftfix",
254 .type = QEMU_OPT_STRING,
255 },
256 { /* end of list */ }
257 },
258};
259
4d454574
PB
260static QemuOptsList qemu_option_rom_opts = {
261 .name = "option-rom",
262 .implied_opt_name = "romfile",
263 .head = QTAILQ_HEAD_INITIALIZER(qemu_option_rom_opts.head),
264 .desc = {
265 {
266 .name = "bootindex",
267 .type = QEMU_OPT_NUMBER,
268 }, {
269 .name = "romfile",
270 .type = QEMU_OPT_STRING,
271 },
272 { /* end of list */ }
273 },
274};
275
276static QemuOptsList qemu_machine_opts = {
277 .name = "machine",
278 .implied_opt_name = "type",
279 .merge_lists = true,
280 .head = QTAILQ_HEAD_INITIALIZER(qemu_machine_opts.head),
281 .desc = {
49d2e648
MA
282 /*
283 * no elements => accept any
284 * sanity checking will happen later
285 * when setting machine properties
286 */
287 { }
4d454574
PB
288 },
289};
290
8d4e9146
FK
291static QemuOptsList qemu_accel_opts = {
292 .name = "accel",
293 .implied_opt_name = "accel",
294 .head = QTAILQ_HEAD_INITIALIZER(qemu_accel_opts.head),
295 .merge_lists = true,
296 .desc = {
297 {
298 .name = "accel",
299 .type = QEMU_OPT_STRING,
300 .help = "Select the type of accelerator",
301 },
302 {
303 .name = "thread",
304 .type = QEMU_OPT_STRING,
305 .help = "Enable/disable multi-threaded TCG",
306 },
307 { /* end of list */ }
308 },
309};
310
4d454574
PB
311static QemuOptsList qemu_boot_opts = {
312 .name = "boot-opts",
6ef4716c
MA
313 .implied_opt_name = "order",
314 .merge_lists = true,
4d454574
PB
315 .head = QTAILQ_HEAD_INITIALIZER(qemu_boot_opts.head),
316 .desc = {
4d454574
PB
317 {
318 .name = "order",
319 .type = QEMU_OPT_STRING,
320 }, {
321 .name = "once",
322 .type = QEMU_OPT_STRING,
323 }, {
324 .name = "menu",
6ef4716c 325 .type = QEMU_OPT_BOOL,
4d454574
PB
326 }, {
327 .name = "splash",
328 .type = QEMU_OPT_STRING,
329 }, {
330 .name = "splash-time",
6912bb0b 331 .type = QEMU_OPT_NUMBER,
4d454574
PB
332 }, {
333 .name = "reboot-timeout",
ee5d0f89 334 .type = QEMU_OPT_NUMBER,
c8a6ae8b
AK
335 }, {
336 .name = "strict",
e5187b56 337 .type = QEMU_OPT_BOOL,
4d454574
PB
338 },
339 { /*End of list */ }
340 },
341};
342
343static QemuOptsList qemu_add_fd_opts = {
344 .name = "add-fd",
345 .head = QTAILQ_HEAD_INITIALIZER(qemu_add_fd_opts.head),
346 .desc = {
347 {
348 .name = "fd",
349 .type = QEMU_OPT_NUMBER,
350 .help = "file descriptor of which a duplicate is added to fd set",
351 },{
352 .name = "set",
353 .type = QEMU_OPT_NUMBER,
354 .help = "ID of the fd set to add fd to",
355 },{
356 .name = "opaque",
357 .type = QEMU_OPT_STRING,
358 .help = "free-form string used to describe fd",
359 },
360 { /* end of list */ }
361 },
362};
363
364static QemuOptsList qemu_object_opts = {
365 .name = "object",
366 .implied_opt_name = "qom-type",
367 .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head),
368 .desc = {
369 { }
370 },
371};
372
d1a0cf73
SB
373static QemuOptsList qemu_tpmdev_opts = {
374 .name = "tpmdev",
375 .implied_opt_name = "type",
376 .head = QTAILQ_HEAD_INITIALIZER(qemu_tpmdev_opts.head),
377 .desc = {
bb716238 378 /* options are defined in the TPM backends */
d1a0cf73
SB
379 { /* end of list */ }
380 },
381};
382
888a6bc6
SM
383static QemuOptsList qemu_realtime_opts = {
384 .name = "realtime",
385 .head = QTAILQ_HEAD_INITIALIZER(qemu_realtime_opts.head),
386 .desc = {
387 {
388 .name = "mlock",
389 .type = QEMU_OPT_BOOL,
390 },
391 { /* end of list */ }
392 },
393};
394
6f131f13
MT
395static QemuOptsList qemu_overcommit_opts = {
396 .name = "overcommit",
397 .head = QTAILQ_HEAD_INITIALIZER(qemu_overcommit_opts.head),
398 .desc = {
399 {
400 .name = "mem-lock",
401 .type = QEMU_OPT_BOOL,
402 },
403 {
404 .name = "cpu-pm",
405 .type = QEMU_OPT_BOOL,
406 },
407 { /* end of list */ }
408 },
409};
410
5e2ac519
SA
411static QemuOptsList qemu_msg_opts = {
412 .name = "msg",
413 .head = QTAILQ_HEAD_INITIALIZER(qemu_msg_opts.head),
414 .desc = {
415 {
416 .name = "timestamp",
417 .type = QEMU_OPT_BOOL,
418 },
419 { /* end of list */ }
420 },
421};
422
5d12f961
DDAG
423static QemuOptsList qemu_name_opts = {
424 .name = "name",
425 .implied_opt_name = "guest",
426 .merge_lists = true,
427 .head = QTAILQ_HEAD_INITIALIZER(qemu_name_opts.head),
428 .desc = {
429 {
430 .name = "guest",
431 .type = QEMU_OPT_STRING,
432 .help = "Sets the name of the guest.\n"
433 "This name will be displayed in the SDL window caption.\n"
434 "The name will also be used for the VNC server",
435 }, {
436 .name = "process",
437 .type = QEMU_OPT_STRING,
438 .help = "Sets the name of the QEMU process, as shown in top etc",
8f480de0
DDAG
439 }, {
440 .name = "debug-threads",
441 .type = QEMU_OPT_BOOL,
442 .help = "When enabled, name the individual threads; defaults off.\n"
443 "NOTE: The thread names are for debugging and not a\n"
444 "stable API.",
5d12f961
DDAG
445 },
446 { /* End of list */ }
447 },
448};
449
6e1d3c1c
IM
450static QemuOptsList qemu_mem_opts = {
451 .name = "memory",
452 .implied_opt_name = "size",
453 .head = QTAILQ_HEAD_INITIALIZER(qemu_mem_opts.head),
454 .merge_lists = true,
455 .desc = {
456 {
457 .name = "size",
458 .type = QEMU_OPT_SIZE,
459 },
c270fb9e
IM
460 {
461 .name = "slots",
462 .type = QEMU_OPT_NUMBER,
463 },
464 {
465 .name = "maxmem",
466 .type = QEMU_OPT_SIZE,
467 },
6e1d3c1c
IM
468 { /* end of list */ }
469 },
470};
471
1ad9580b
ST
472static QemuOptsList qemu_icount_opts = {
473 .name = "icount",
474 .implied_opt_name = "shift",
475 .merge_lists = true,
476 .head = QTAILQ_HEAD_INITIALIZER(qemu_icount_opts.head),
477 .desc = {
478 {
479 .name = "shift",
480 .type = QEMU_OPT_STRING,
a8bfac37
ST
481 }, {
482 .name = "align",
483 .type = QEMU_OPT_BOOL,
f1f4b57e
VC
484 }, {
485 .name = "sleep",
486 .type = QEMU_OPT_BOOL,
4c27b859
PD
487 }, {
488 .name = "rr",
489 .type = QEMU_OPT_STRING,
490 }, {
491 .name = "rrfile",
492 .type = QEMU_OPT_STRING,
9c2037d0
PD
493 }, {
494 .name = "rrsnapshot",
495 .type = QEMU_OPT_STRING,
1ad9580b
ST
496 },
497 { /* end of list */ }
498 },
499};
500
81b2b810
GS
501static QemuOptsList qemu_fw_cfg_opts = {
502 .name = "fw_cfg",
503 .implied_opt_name = "name",
504 .head = QTAILQ_HEAD_INITIALIZER(qemu_fw_cfg_opts.head),
505 .desc = {
506 {
507 .name = "name",
508 .type = QEMU_OPT_STRING,
509 .help = "Sets the fw_cfg name of the blob to be inserted",
510 }, {
511 .name = "file",
512 .type = QEMU_OPT_STRING,
679be303 513 .help = "Sets the name of the file from which "
81b2b810 514 "the fw_cfg blob will be loaded",
6407d76e
GS
515 }, {
516 .name = "string",
517 .type = QEMU_OPT_STRING,
518 .help = "Sets content of the blob to be inserted from a string",
81b2b810
GS
519 },
520 { /* end of list */ }
521 },
522};
523
7f9d6e54
MA
524/**
525 * Get machine options
526 *
527 * Returns: machine options (never null).
528 */
529QemuOpts *qemu_get_machine_opts(void)
530{
e96e5ae8 531 return qemu_find_opts_singleton("machine");
7f9d6e54
MA
532}
533
31459f46
RS
534const char *qemu_get_vm_name(void)
535{
536 return qemu_name;
537}
538
3d3b8303
WX
539static void res_free(void)
540{
012aef07
MA
541 g_free(boot_splash_filedata);
542 boot_splash_filedata = NULL;
3d3b8303
WX
543}
544
28d0de7a 545static int default_driver_check(void *opaque, QemuOpts *opts, Error **errp)
998bbd74
GH
546{
547 const char *driver = qemu_opt_get(opts, "driver");
548 int i;
549
550 if (!driver)
551 return 0;
552 for (i = 0; i < ARRAY_SIZE(default_list); i++) {
553 if (strcmp(default_list[i].driver, driver) != 0)
554 continue;
555 *(default_list[i].flag) = 0;
556 }
557 return 0;
558}
559
f5bbfba1
LC
560/***********************************************************/
561/* QEMU state */
562
047f7038 563static RunState current_run_state = RUN_STATE_PRECONFIG;
f5bbfba1 564
7fb1cf16
EB
565/* We use RUN_STATE__MAX but any invalid value will do */
566static RunState vmstop_requested = RUN_STATE__MAX;
74892d24
PB
567static QemuMutex vmstop_lock;
568
5db9d4d1
LC
569typedef struct {
570 RunState from;
571 RunState to;
572} RunStateTransition;
573
574static const RunStateTransition runstate_transitions_def[] = {
575 /* from -> to */
047f7038
IM
576 { RUN_STATE_PRECONFIG, RUN_STATE_PRELAUNCH },
577 /* Early switch to inmigrate state to allow -incoming CLI option work
578 * as it used to. TODO: delay actual switching to inmigrate state to
579 * the point after machine is built and remove this hack.
580 */
581 { RUN_STATE_PRECONFIG, RUN_STATE_INMIGRATE },
582
0461d5a6 583 { RUN_STATE_DEBUG, RUN_STATE_RUNNING },
eca01d3a 584 { RUN_STATE_DEBUG, RUN_STATE_FINISH_MIGRATE },
7ec13c79 585 { RUN_STATE_DEBUG, RUN_STATE_PRELAUNCH },
5db9d4d1 586
ca3fc39e
JQ
587 { RUN_STATE_INMIGRATE, RUN_STATE_INTERNAL_ERROR },
588 { RUN_STATE_INMIGRATE, RUN_STATE_IO_ERROR },
29ed72f1 589 { RUN_STATE_INMIGRATE, RUN_STATE_PAUSED },
ca3fc39e
JQ
590 { RUN_STATE_INMIGRATE, RUN_STATE_RUNNING },
591 { RUN_STATE_INMIGRATE, RUN_STATE_SHUTDOWN },
592 { RUN_STATE_INMIGRATE, RUN_STATE_SUSPENDED },
593 { RUN_STATE_INMIGRATE, RUN_STATE_WATCHDOG },
594 { RUN_STATE_INMIGRATE, RUN_STATE_GUEST_PANICKED },
2a6e6e59 595 { RUN_STATE_INMIGRATE, RUN_STATE_FINISH_MIGRATE },
98799b0d
PB
596 { RUN_STATE_INMIGRATE, RUN_STATE_PRELAUNCH },
597 { RUN_STATE_INMIGRATE, RUN_STATE_POSTMIGRATE },
21142ba7 598 { RUN_STATE_INMIGRATE, RUN_STATE_COLO },
5db9d4d1 599
0461d5a6 600 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_PAUSED },
8a9236f1 601 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_FINISH_MIGRATE },
7ec13c79 602 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_PRELAUNCH },
5db9d4d1 603
0461d5a6 604 { RUN_STATE_IO_ERROR, RUN_STATE_RUNNING },
8a9236f1 605 { RUN_STATE_IO_ERROR, RUN_STATE_FINISH_MIGRATE },
7ec13c79 606 { RUN_STATE_IO_ERROR, RUN_STATE_PRELAUNCH },
5db9d4d1 607
0461d5a6 608 { RUN_STATE_PAUSED, RUN_STATE_RUNNING },
8a9236f1 609 { RUN_STATE_PAUSED, RUN_STATE_FINISH_MIGRATE },
505d786f 610 { RUN_STATE_PAUSED, RUN_STATE_POSTMIGRATE },
7ec13c79 611 { RUN_STATE_PAUSED, RUN_STATE_PRELAUNCH },
21142ba7 612 { RUN_STATE_PAUSED, RUN_STATE_COLO},
5db9d4d1 613
0461d5a6 614 { RUN_STATE_POSTMIGRATE, RUN_STATE_RUNNING },
8a9236f1 615 { RUN_STATE_POSTMIGRATE, RUN_STATE_FINISH_MIGRATE },
7ec13c79 616 { RUN_STATE_POSTMIGRATE, RUN_STATE_PRELAUNCH },
5db9d4d1 617
0461d5a6 618 { RUN_STATE_PRELAUNCH, RUN_STATE_RUNNING },
8a9236f1 619 { RUN_STATE_PRELAUNCH, RUN_STATE_FINISH_MIGRATE },
0461d5a6 620 { RUN_STATE_PRELAUNCH, RUN_STATE_INMIGRATE },
5db9d4d1 621
0461d5a6 622 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_RUNNING },
505d786f 623 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_PAUSED },
0461d5a6 624 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_POSTMIGRATE },
7ec13c79 625 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_PRELAUNCH },
21142ba7 626 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_COLO},
5db9d4d1 627
0461d5a6 628 { RUN_STATE_RESTORE_VM, RUN_STATE_RUNNING },
7ec13c79 629 { RUN_STATE_RESTORE_VM, RUN_STATE_PRELAUNCH },
5db9d4d1 630
21142ba7
HZ
631 { RUN_STATE_COLO, RUN_STATE_RUNNING },
632
0461d5a6
LC
633 { RUN_STATE_RUNNING, RUN_STATE_DEBUG },
634 { RUN_STATE_RUNNING, RUN_STATE_INTERNAL_ERROR },
635 { RUN_STATE_RUNNING, RUN_STATE_IO_ERROR },
636 { RUN_STATE_RUNNING, RUN_STATE_PAUSED },
637 { RUN_STATE_RUNNING, RUN_STATE_FINISH_MIGRATE },
638 { RUN_STATE_RUNNING, RUN_STATE_RESTORE_VM },
639 { RUN_STATE_RUNNING, RUN_STATE_SAVE_VM },
640 { RUN_STATE_RUNNING, RUN_STATE_SHUTDOWN },
641 { RUN_STATE_RUNNING, RUN_STATE_WATCHDOG },
ede085b3 642 { RUN_STATE_RUNNING, RUN_STATE_GUEST_PANICKED },
21142ba7 643 { RUN_STATE_RUNNING, RUN_STATE_COLO},
5db9d4d1 644
0461d5a6 645 { RUN_STATE_SAVE_VM, RUN_STATE_RUNNING },
5db9d4d1 646
0461d5a6 647 { RUN_STATE_SHUTDOWN, RUN_STATE_PAUSED },
8a9236f1 648 { RUN_STATE_SHUTDOWN, RUN_STATE_FINISH_MIGRATE },
7ec13c79 649 { RUN_STATE_SHUTDOWN, RUN_STATE_PRELAUNCH },
5db9d4d1 650
ad02b96a
LC
651 { RUN_STATE_DEBUG, RUN_STATE_SUSPENDED },
652 { RUN_STATE_RUNNING, RUN_STATE_SUSPENDED },
653 { RUN_STATE_SUSPENDED, RUN_STATE_RUNNING },
654 { RUN_STATE_SUSPENDED, RUN_STATE_FINISH_MIGRATE },
7ec13c79 655 { RUN_STATE_SUSPENDED, RUN_STATE_PRELAUNCH },
21142ba7 656 { RUN_STATE_SUSPENDED, RUN_STATE_COLO},
ad02b96a 657
0461d5a6 658 { RUN_STATE_WATCHDOG, RUN_STATE_RUNNING },
8a9236f1 659 { RUN_STATE_WATCHDOG, RUN_STATE_FINISH_MIGRATE },
7ec13c79 660 { RUN_STATE_WATCHDOG, RUN_STATE_PRELAUNCH },
21142ba7 661 { RUN_STATE_WATCHDOG, RUN_STATE_COLO},
5db9d4d1 662
df390768 663 { RUN_STATE_GUEST_PANICKED, RUN_STATE_RUNNING },
fd2a2e1c 664 { RUN_STATE_GUEST_PANICKED, RUN_STATE_FINISH_MIGRATE },
7ec13c79 665 { RUN_STATE_GUEST_PANICKED, RUN_STATE_PRELAUNCH },
ede085b3 666
7fb1cf16 667 { RUN_STATE__MAX, RUN_STATE__MAX },
5db9d4d1
LC
668};
669
7fb1cf16 670static bool runstate_valid_transitions[RUN_STATE__MAX][RUN_STATE__MAX];
0461d5a6 671
f5bbfba1
LC
672bool runstate_check(RunState state)
673{
674 return current_run_state == state;
675}
676
5e0f1940
JQ
677bool runstate_store(char *str, size_t size)
678{
977c736f 679 const char *state = RunState_str(current_run_state);
5e0f1940
JQ
680 size_t len = strlen(state) + 1;
681
682 if (len > size) {
683 return false;
684 }
685 memcpy(str, state, len);
686 return true;
687}
688
4fdcac0e 689static void runstate_init(void)
5db9d4d1
LC
690{
691 const RunStateTransition *p;
692
693 memset(&runstate_valid_transitions, 0, sizeof(runstate_valid_transitions));
7fb1cf16 694 for (p = &runstate_transitions_def[0]; p->from != RUN_STATE__MAX; p++) {
5db9d4d1
LC
695 runstate_valid_transitions[p->from][p->to] = true;
696 }
74892d24
PB
697
698 qemu_mutex_init(&vmstop_lock);
5db9d4d1
LC
699}
700
701/* This function will abort() on invalid state transitions */
f5bbfba1
LC
702void runstate_set(RunState new_state)
703{
7fb1cf16 704 assert(new_state < RUN_STATE__MAX);
207c5cd2 705
ff12e3ae 706 trace_runstate_set(current_run_state, RunState_str(current_run_state),
b1939fcd 707 new_state, RunState_str(new_state));
ff12e3ae 708
e92a2d9c
LZ
709 if (current_run_state == new_state) {
710 return;
711 }
712
207c5cd2 713 if (!runstate_valid_transitions[current_run_state][new_state]) {
f61eddcb 714 error_report("invalid runstate transition: '%s' -> '%s'",
977c736f
MA
715 RunState_str(current_run_state),
716 RunState_str(new_state));
5db9d4d1
LC
717 abort();
718 }
ff12e3ae 719
f5bbfba1
LC
720 current_run_state = new_state;
721}
722
1fa9a5e4 723int runstate_is_running(void)
9e37b9dc 724{
1fa9a5e4 725 return runstate_check(RUN_STATE_RUNNING);
9e37b9dc
LC
726}
727
ede085b3
HT
728bool runstate_needs_reset(void)
729{
730 return runstate_check(RUN_STATE_INTERNAL_ERROR) ||
df390768 731 runstate_check(RUN_STATE_SHUTDOWN);
ede085b3
HT
732}
733
1fa9a5e4 734StatusInfo *qmp_query_status(Error **errp)
1354869c 735{
1fa9a5e4
LC
736 StatusInfo *info = g_malloc0(sizeof(*info));
737
738 info->running = runstate_is_running();
739 info->singlestep = singlestep;
740 info->status = current_run_state;
741
742 return info;
1354869c
LC
743}
744
2d76e823 745bool qemu_vmstop_requested(RunState *r)
74892d24
PB
746{
747 qemu_mutex_lock(&vmstop_lock);
748 *r = vmstop_requested;
7fb1cf16 749 vmstop_requested = RUN_STATE__MAX;
74892d24 750 qemu_mutex_unlock(&vmstop_lock);
7fb1cf16 751 return *r < RUN_STATE__MAX;
74892d24
PB
752}
753
754void qemu_system_vmstop_request_prepare(void)
755{
756 qemu_mutex_lock(&vmstop_lock);
757}
758
759void qemu_system_vmstop_request(RunState state)
760{
761 vmstop_requested = state;
762 qemu_mutex_unlock(&vmstop_lock);
763 qemu_notify_event();
764}
765
8f0056b7 766/***********************************************************/
eb6a5209 767/* RTC reference time/date access */
ac0989f5 768static time_t qemu_ref_timedate(QEMUClockType clock)
eb6a5209 769{
ac0989f5
AP
770 time_t value = qemu_clock_get_ms(clock) / 1000;
771 switch (clock) {
eb6a5209
AP
772 case QEMU_CLOCK_REALTIME:
773 value -= rtc_realtime_clock_offset;
774 /* no break */
775 case QEMU_CLOCK_VIRTUAL:
776 value += rtc_ref_start_datetime;
777 break;
778 case QEMU_CLOCK_HOST:
779 if (rtc_base_type == RTC_BASE_DATETIME) {
780 value -= rtc_host_datetime_offset;
781 }
782 break;
783 default:
784 assert(0);
785 }
786 return value;
2ed1ebcf
PD
787}
788
f6503059
AZ
789void qemu_get_timedate(struct tm *tm, int offset)
790{
ac0989f5 791 time_t ti = qemu_ref_timedate(rtc_clock);
f6503059 792
f6503059 793 ti += offset;
7e166ebd
AP
794
795 switch (rtc_base_type) {
eb6a5209 796 case RTC_BASE_DATETIME:
7e166ebd 797 case RTC_BASE_UTC:
eb7ff6fb 798 gmtime_r(&ti, tm);
7e166ebd
AP
799 break;
800 case RTC_BASE_LOCALTIME:
801 localtime_r(&ti, tm);
802 break;
f6503059 803 }
f6503059
AZ
804}
805
806int qemu_timedate_diff(struct tm *tm)
807{
808 time_t seconds;
809
7e166ebd 810 switch (rtc_base_type) {
eb6a5209 811 case RTC_BASE_DATETIME:
7e166ebd
AP
812 case RTC_BASE_UTC:
813 seconds = mktimegm(tm);
814 break;
815 case RTC_BASE_LOCALTIME:
816 {
817 struct tm tmp = *tm;
818 tmp.tm_isdst = -1; /* use timezone to figure it out */
819 seconds = mktime(&tmp);
820 break;
821 }
7e166ebd
AP
822 default:
823 abort();
824 }
f6503059 825
ac0989f5 826 return seconds - qemu_ref_timedate(QEMU_CLOCK_HOST);
f6503059
AZ
827}
828
eb6a5209 829static void configure_rtc_base_datetime(const char *startdate)
1ed2fc1f 830{
7e166ebd 831 time_t rtc_start_datetime;
1ed2fc1f
JK
832 struct tm tm;
833
fdaf2d58
TH
834 if (sscanf(startdate, "%d-%d-%dT%d:%d:%d", &tm.tm_year, &tm.tm_mon,
835 &tm.tm_mday, &tm.tm_hour, &tm.tm_min, &tm.tm_sec) == 6) {
836 /* OK */
837 } else if (sscanf(startdate, "%d-%d-%d",
838 &tm.tm_year, &tm.tm_mon, &tm.tm_mday) == 3) {
839 tm.tm_hour = 0;
840 tm.tm_min = 0;
841 tm.tm_sec = 0;
1ed2fc1f 842 } else {
fdaf2d58
TH
843 goto date_fail;
844 }
845 tm.tm_year -= 1900;
846 tm.tm_mon--;
7e166ebd
AP
847 rtc_start_datetime = mktimegm(&tm);
848 if (rtc_start_datetime == -1) {
fdaf2d58 849 date_fail:
7e166ebd 850 error_report("invalid datetime format");
fdaf2d58
TH
851 error_printf("valid formats: "
852 "'2006-06-17T16:01:21' or '2006-06-17'\n");
853 exit(1);
1ed2fc1f 854 }
eb6a5209
AP
855 rtc_host_datetime_offset = rtc_ref_start_datetime - rtc_start_datetime;
856 rtc_ref_start_datetime = rtc_start_datetime;
1ed2fc1f
JK
857}
858
859static void configure_rtc(QemuOpts *opts)
860{
861 const char *value;
862
eb6a5209
AP
863 /* Set defaults */
864 rtc_clock = QEMU_CLOCK_HOST;
865 rtc_ref_start_datetime = qemu_clock_get_ms(QEMU_CLOCK_HOST) / 1000;
866 rtc_realtime_clock_offset = qemu_clock_get_ms(QEMU_CLOCK_REALTIME) / 1000;
867
1ed2fc1f
JK
868 value = qemu_opt_get(opts, "base");
869 if (value) {
870 if (!strcmp(value, "utc")) {
7e166ebd 871 rtc_base_type = RTC_BASE_UTC;
1ed2fc1f 872 } else if (!strcmp(value, "localtime")) {
0194749a 873 Error *blocker = NULL;
7e166ebd 874 rtc_base_type = RTC_BASE_LOCALTIME;
0194749a
PD
875 error_setg(&blocker, QERR_REPLAY_NOT_SUPPORTED,
876 "-rtc base=localtime");
877 replay_add_blocker(blocker);
1ed2fc1f 878 } else {
7e166ebd 879 rtc_base_type = RTC_BASE_DATETIME;
eb6a5209 880 configure_rtc_base_datetime(value);
1ed2fc1f
JK
881 }
882 }
6875204c
JK
883 value = qemu_opt_get(opts, "clock");
884 if (value) {
885 if (!strcmp(value, "host")) {
884f17c2 886 rtc_clock = QEMU_CLOCK_HOST;
78808141 887 } else if (!strcmp(value, "rt")) {
884f17c2 888 rtc_clock = QEMU_CLOCK_REALTIME;
6875204c 889 } else if (!strcmp(value, "vm")) {
884f17c2 890 rtc_clock = QEMU_CLOCK_VIRTUAL;
6875204c 891 } else {
f61eddcb 892 error_report("invalid option value '%s'", value);
6875204c
JK
893 exit(1);
894 }
895 }
1ed2fc1f
JK
896 value = qemu_opt_get(opts, "driftfix");
897 if (value) {
7e4c0336 898 if (!strcmp(value, "slew")) {
16714b16
EH
899 static GlobalProperty slew_lost_ticks = {
900 .driver = "mc146818rtc",
901 .property = "lost_tick_policy",
902 .value = "slew",
433acf0d
JK
903 };
904
16714b16 905 qdev_prop_register_global(&slew_lost_ticks);
7e4c0336 906 } else if (!strcmp(value, "none")) {
433acf0d 907 /* discard is default */
1ed2fc1f 908 } else {
f61eddcb 909 error_report("invalid option value '%s'", value);
1ed2fc1f
JK
910 exit(1);
911 }
912 }
1ed2fc1f
JK
913}
914
1ae26a18
AZ
915/***********************************************************/
916/* Bluetooth support */
917static int nb_hcis;
918static int cur_hci;
919static struct HCIInfo *hci_table[MAX_NICS];
dc72ac14 920
1ae26a18
AZ
921struct HCIInfo *qemu_next_hci(void)
922{
923 if (cur_hci == nb_hcis)
924 return &null_hci;
925
926 return hci_table[cur_hci++];
927}
928
dc72ac14
AZ
929static int bt_hci_parse(const char *str)
930{
931 struct HCIInfo *hci;
c227f099 932 bdaddr_t bdaddr;
dc72ac14
AZ
933
934 if (nb_hcis >= MAX_NICS) {
3e515373 935 error_report("too many bluetooth HCIs (max %i)", MAX_NICS);
dc72ac14
AZ
936 return -1;
937 }
938
939 hci = hci_init(str);
940 if (!hci)
941 return -1;
942
943 bdaddr.b[0] = 0x52;
944 bdaddr.b[1] = 0x54;
945 bdaddr.b[2] = 0x00;
946 bdaddr.b[3] = 0x12;
947 bdaddr.b[4] = 0x34;
948 bdaddr.b[5] = 0x56 + nb_hcis;
949 hci->bdaddr_set(hci, bdaddr.b);
950
951 hci_table[nb_hcis++] = hci;
952
953 return 0;
954}
955
956static void bt_vhci_add(int vlan_id)
957{
958 struct bt_scatternet_s *vlan = qemu_find_bt_vlan(vlan_id);
959
960 if (!vlan->slave)
3dc6f869
AF
961 warn_report("adding a VHCI to an empty scatternet %i",
962 vlan_id);
dc72ac14
AZ
963
964 bt_vhci_init(bt_new_hci(vlan));
965}
966
967static struct bt_device_s *bt_device_add(const char *opt)
968{
969 struct bt_scatternet_s *vlan;
970 int vlan_id = 0;
971 char *endp = strstr(opt, ",vlan=");
972 int len = (endp ? endp - opt : strlen(opt)) + 1;
973 char devname[10];
974
975 pstrcpy(devname, MIN(sizeof(devname), len), opt);
976
977 if (endp) {
978 vlan_id = strtol(endp + 6, &endp, 0);
979 if (*endp) {
f61eddcb 980 error_report("unrecognised bluetooth vlan Id");
dc72ac14
AZ
981 return 0;
982 }
983 }
984
985 vlan = qemu_find_bt_vlan(vlan_id);
986
987 if (!vlan->slave)
3dc6f869
AF
988 warn_report("adding a slave device to an empty scatternet %i",
989 vlan_id);
dc72ac14
AZ
990
991 if (!strcmp(devname, "keyboard"))
992 return bt_keyboard_init(vlan);
993
4cd70f34 994 error_report("unsupported bluetooth device '%s'", devname);
dc72ac14
AZ
995 return 0;
996}
997
998static int bt_parse(const char *opt)
999{
1000 const char *endp, *p;
1001 int vlan;
1002
1003 if (strstart(opt, "hci", &endp)) {
1004 if (!*endp || *endp == ',') {
1005 if (*endp)
1006 if (!strstart(endp, ",vlan=", 0))
1007 opt = endp + 1;
1008
1009 return bt_hci_parse(opt);
1010 }
1011 } else if (strstart(opt, "vhci", &endp)) {
1012 if (!*endp || *endp == ',') {
1013 if (*endp) {
1014 if (strstart(endp, ",vlan=", &p)) {
1015 vlan = strtol(p, (char **) &endp, 0);
1016 if (*endp) {
f61eddcb 1017 error_report("bad scatternet '%s'", p);
dc72ac14
AZ
1018 return 1;
1019 }
1020 } else {
f61eddcb 1021 error_report("bad parameter '%s'", endp + 1);
dc72ac14
AZ
1022 return 1;
1023 }
1024 } else
1025 vlan = 0;
1026
1027 bt_vhci_add(vlan);
1028 return 0;
1029 }
1030 } else if (strstart(opt, "device:", &endp))
1031 return !bt_device_add(endp);
1032
f61eddcb 1033 error_report("bad bluetooth parameter '%s'", opt);
dc72ac14
AZ
1034 return 1;
1035}
1036
28d0de7a 1037static int parse_name(void *opaque, QemuOpts *opts, Error **errp)
5d12f961
DDAG
1038{
1039 const char *proc_name;
1040
8f480de0
DDAG
1041 if (qemu_opt_get(opts, "debug-threads")) {
1042 qemu_thread_naming(qemu_opt_get_bool(opts, "debug-threads", false));
1043 }
5d12f961
DDAG
1044 qemu_name = qemu_opt_get(opts, "guest");
1045
1046 proc_name = qemu_opt_get(opts, "process");
1047 if (proc_name) {
1048 os_set_proc_name(proc_name);
1049 }
5b9d313e
DDAG
1050
1051 return 0;
5d12f961
DDAG
1052}
1053
f8b6f8ed
MA
1054bool defaults_enabled(void)
1055{
1056 return has_defaults;
1057}
1058
587ed6be 1059#ifndef _WIN32
28d0de7a 1060static int parse_add_fd(void *opaque, QemuOpts *opts, Error **errp)
587ed6be
CB
1061{
1062 int fd, dupfd, flags;
1063 int64_t fdset_id;
1064 const char *fd_opaque = NULL;
636a30a8 1065 AddfdInfo *fdinfo;
587ed6be
CB
1066
1067 fd = qemu_opt_get_number(opts, "fd", -1);
1068 fdset_id = qemu_opt_get_number(opts, "set", -1);
1069 fd_opaque = qemu_opt_get(opts, "opaque");
1070
1071 if (fd < 0) {
6353218b 1072 error_setg(errp, "fd option is required and must be non-negative");
587ed6be
CB
1073 return -1;
1074 }
1075
1076 if (fd <= STDERR_FILENO) {
6353218b 1077 error_setg(errp, "fd cannot be a standard I/O stream");
587ed6be
CB
1078 return -1;
1079 }
1080
1081 /*
1082 * All fds inherited across exec() necessarily have FD_CLOEXEC
1083 * clear, while qemu sets FD_CLOEXEC on all other fds used internally.
1084 */
1085 flags = fcntl(fd, F_GETFD);
1086 if (flags == -1 || (flags & FD_CLOEXEC)) {
6353218b 1087 error_setg(errp, "fd is not valid or already in use");
587ed6be
CB
1088 return -1;
1089 }
1090
1091 if (fdset_id < 0) {
6353218b 1092 error_setg(errp, "set option is required and must be non-negative");
587ed6be
CB
1093 return -1;
1094 }
1095
1096#ifdef F_DUPFD_CLOEXEC
1097 dupfd = fcntl(fd, F_DUPFD_CLOEXEC, 0);
1098#else
1099 dupfd = dup(fd);
1100 if (dupfd != -1) {
1101 qemu_set_cloexec(dupfd);
1102 }
1103#endif
1104 if (dupfd == -1) {
6353218b 1105 error_setg(errp, "error duplicating fd: %s", strerror(errno));
587ed6be
CB
1106 return -1;
1107 }
1108
1109 /* add the duplicate fd, and optionally the opaque string, to the fd set */
636a30a8
PB
1110 fdinfo = monitor_fdset_add_fd(dupfd, true, fdset_id, !!fd_opaque, fd_opaque,
1111 &error_abort);
1112 g_free(fdinfo);
587ed6be
CB
1113
1114 return 0;
1115}
1116
28d0de7a 1117static int cleanup_add_fd(void *opaque, QemuOpts *opts, Error **errp)
587ed6be
CB
1118{
1119 int fd;
1120
1121 fd = qemu_opt_get_number(opts, "fd", -1);
1122 close(fd);
1123
1124 return 0;
1125}
1126#endif
1127
1ae26a18
AZ
1128/***********************************************************/
1129/* QEMU Block devices */
1130
2292ddae
MA
1131#define HD_OPTS "media=disk"
1132#define CDROM_OPTS "media=cdrom"
1133#define FD_OPTS ""
1134#define PFLASH_OPTS ""
1135#define MTD_OPTS ""
1136#define SD_OPTS ""
e4bcb14c 1137
28d0de7a 1138static int drive_init_func(void *opaque, QemuOpts *opts, Error **errp)
9dfd7c7a 1139{
2d0d2837 1140 BlockInterfaceType *block_default_type = opaque;
9dfd7c7a 1141
c4f26c9f 1142 return drive_new(opts, *block_default_type, errp) == NULL;
9dfd7c7a
GH
1143}
1144
28d0de7a 1145static int drive_enable_snapshot(void *opaque, QemuOpts *opts, Error **errp)
9dfd7c7a 1146{
28de2f88 1147 if (qemu_opt_get(opts, "snapshot") == NULL) {
f43e47db 1148 qemu_opt_set(opts, "snapshot", "on", &error_abort);
9dfd7c7a
GH
1149 }
1150 return 0;
1151}
1152
3c42ea66
CB
1153static void default_drive(int enable, int snapshot, BlockInterfaceType type,
1154 int index, const char *optstr)
4e5d9b57
MA
1155{
1156 QemuOpts *opts;
a66c9dc7 1157 DriveInfo *dinfo;
4e5d9b57 1158
4e5d9b57
MA
1159 if (!enable || drive_get_by_index(type, index)) {
1160 return;
1161 }
1162
1163 opts = drive_add(type, index, NULL, optstr);
1164 if (snapshot) {
28d0de7a 1165 drive_enable_snapshot(NULL, opts, NULL);
4e5d9b57 1166 }
a66c9dc7 1167
c4f26c9f 1168 dinfo = drive_new(opts, type, &error_abort);
a66c9dc7
JS
1169 dinfo->is_default = true;
1170
4e5d9b57
MA
1171}
1172
651af51c
MA
1173typedef struct BlockdevOptionsQueueEntry {
1174 BlockdevOptions *bdo;
1175 Location loc;
1176 QSIMPLEQ_ENTRY(BlockdevOptionsQueueEntry) entry;
1177} BlockdevOptionsQueueEntry;
1178
1179typedef QSIMPLEQ_HEAD(, BlockdevOptionsQueueEntry) BlockdevOptionsQueue;
1180
d11bf9bf
MA
1181static void configure_blockdev(BlockdevOptionsQueue *bdo_queue,
1182 MachineClass *machine_class, int snapshot)
1183{
1184 /*
1185 * If the currently selected machine wishes to override the
1186 * units-per-bus property of its default HBA interface type, do so
1187 * now.
1188 */
1189 if (machine_class->units_per_default_bus) {
1190 override_max_devs(machine_class->block_default_type,
1191 machine_class->units_per_default_bus);
1192 }
1193
1194 /* open the virtual block devices */
1195 while (!QSIMPLEQ_EMPTY(bdo_queue)) {
1196 BlockdevOptionsQueueEntry *bdo = QSIMPLEQ_FIRST(bdo_queue);
1197
1198 QSIMPLEQ_REMOVE_HEAD(bdo_queue, entry);
1199 loc_push_restore(&bdo->loc);
1200 qmp_blockdev_add(bdo->bdo, &error_fatal);
1201 loc_pop(&bdo->loc);
1202 qapi_free_BlockdevOptions(bdo->bdo);
1203 g_free(bdo);
1204 }
1205 if (snapshot || replay_mode != REPLAY_MODE_NONE) {
1206 qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot,
1207 NULL, NULL);
1208 }
1209 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func,
1210 &machine_class->block_default_type, &error_fatal)) {
1211 /* We printed help */
1212 exit(0);
1213 }
1214
1215 default_drive(default_cdrom, snapshot, machine_class->block_default_type, 2,
1216 CDROM_OPTS);
1217 default_drive(default_floppy, snapshot, IF_FLOPPY, 0, FD_OPTS);
1218 default_drive(default_sdcard, snapshot, IF_SD, 0, SD_OPTS);
1219
1220}
1221
12b7f57e
MT
1222static QemuOptsList qemu_smp_opts = {
1223 .name = "smp-opts",
1224 .implied_opt_name = "cpus",
1225 .merge_lists = true,
1226 .head = QTAILQ_HEAD_INITIALIZER(qemu_smp_opts.head),
1227 .desc = {
1228 {
1229 .name = "cpus",
1230 .type = QEMU_OPT_NUMBER,
1231 }, {
1232 .name = "sockets",
1233 .type = QEMU_OPT_NUMBER,
1b458422
LX
1234 }, {
1235 .name = "dies",
1236 .type = QEMU_OPT_NUMBER,
12b7f57e
MT
1237 }, {
1238 .name = "cores",
1239 .type = QEMU_OPT_NUMBER,
1240 }, {
1241 .name = "threads",
1242 .type = QEMU_OPT_NUMBER,
1243 }, {
1244 .name = "maxcpus",
1245 .type = QEMU_OPT_NUMBER,
1246 },
1247 { /*End of list */ }
1248 },
1249};
1250
28d16f38 1251static void realtime_init(void)
888a6bc6 1252{
888a6bc6
SM
1253 if (enable_mlock) {
1254 if (os_mlock() < 0) {
f61eddcb 1255 error_report("locking memory failed");
888a6bc6
SM
1256 exit(1);
1257 }
1258 }
1259}
1260
5e2ac519
SA
1261
1262static void configure_msg(QemuOpts *opts)
1263{
1264 enable_timestamp_msg = qemu_opt_get_bool(opts, "timestamp", true);
1265}
1266
a59d31a1 1267
79814179
TC
1268/* Now we still need this for compatibility with XEN. */
1269bool has_igd_gfx_passthru;
1270static void igd_gfx_passthru(void)
1271{
1272 has_igd_gfx_passthru = current_machine->igd_gfx_passthru;
1273}
1274
a594cfbf
FB
1275/***********************************************************/
1276/* USB devices */
1277
fb08000c 1278static int usb_device_add(const char *devname)
a594cfbf 1279{
a5d2f727 1280 USBDevice *dev = NULL;
a594cfbf 1281
4bcbe0b6 1282 if (!machine_usb(current_machine)) {
a594cfbf 1283 return -1;
094b287f 1284 }
a594cfbf 1285
0958b4cc 1286 dev = usbdevice_create(devname);
0d92ed30
PB
1287 if (!dev)
1288 return -1;
1289
a594cfbf
FB
1290 return 0;
1291}
1292
bd3c948d
GH
1293static int usb_parse(const char *cmdline)
1294{
59d1c1c2 1295 int r;
fb08000c 1296 r = usb_device_add(cmdline);
59d1c1c2 1297 if (r < 0) {
f61eddcb 1298 error_report("could not add USB device '%s'", cmdline);
59d1c1c2
ST
1299 }
1300 return r;
bd3c948d
GH
1301}
1302
cc1daa40
FB
1303/***********************************************************/
1304/* machine registration */
1305
0056ae24 1306MachineState *current_machine;
cc1daa40 1307
c516cd1b 1308static MachineClass *find_machine(const char *name, GSList *machines)
cc1daa40 1309{
c516cd1b 1310 GSList *el;
cc1daa40 1311
261747f1 1312 for (el = machines; el; el = el->next) {
f2c93021 1313 MachineClass *mc = el->data;
261747f1 1314
f2c93021
MA
1315 if (!strcmp(mc->name, name) || !g_strcmp0(mc->alias, name)) {
1316 return mc;
261747f1 1317 }
cc1daa40 1318 }
261747f1 1319
f2c93021 1320 return NULL;
cc1daa40
FB
1321}
1322
c516cd1b 1323static MachineClass *find_default_machine(GSList *machines)
0c257437 1324{
c516cd1b 1325 GSList *el;
0c257437 1326
261747f1 1327 for (el = machines; el; el = el->next) {
f2c93021 1328 MachineClass *mc = el->data;
261747f1 1329
f2c93021
MA
1330 if (mc->is_default) {
1331 return mc;
0c257437
AL
1332 }
1333 }
261747f1 1334
f2c93021 1335 return NULL;
0c257437
AL
1336}
1337
52eb3dfd
MA
1338static int machine_help_func(QemuOpts *opts, MachineState *machine)
1339{
1340 ObjectProperty *prop;
7746abd8 1341 ObjectPropertyIterator iter;
52eb3dfd
MA
1342
1343 if (!qemu_opt_has_help_opt(opts)) {
1344 return 0;
1345 }
1346
7746abd8
DB
1347 object_property_iter_init(&iter, OBJECT(machine));
1348 while ((prop = object_property_iter_next(&iter))) {
52eb3dfd
MA
1349 if (!prop->set) {
1350 continue;
1351 }
1352
26eaf2cd
MA
1353 printf("%s.%s=%s", MACHINE_GET_CLASS(machine)->name,
1354 prop->name, prop->type);
52eb3dfd 1355 if (prop->description) {
26eaf2cd 1356 printf(" (%s)\n", prop->description);
52eb3dfd 1357 } else {
26eaf2cd 1358 printf("\n");
52eb3dfd
MA
1359 }
1360 }
1361
1362 return 1;
1363}
1364
0bd48850
FB
1365struct vm_change_state_entry {
1366 VMChangeStateHandler *cb;
1367 void *opaque;
72cf2d4f 1368 QLIST_ENTRY (vm_change_state_entry) entries;
0bd48850
FB
1369};
1370
b58deb34 1371static QLIST_HEAD(, vm_change_state_entry) vm_change_state_head;
0bd48850
FB
1372
1373VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
1374 void *opaque)
1375{
1376 VMChangeStateEntry *e;
1377
7267c094 1378 e = g_malloc0(sizeof (*e));
0bd48850
FB
1379
1380 e->cb = cb;
1381 e->opaque = opaque;
72cf2d4f 1382 QLIST_INSERT_HEAD(&vm_change_state_head, e, entries);
0bd48850
FB
1383 return e;
1384}
1385
1386void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
1387{
72cf2d4f 1388 QLIST_REMOVE (e, entries);
7267c094 1389 g_free (e);
0bd48850
FB
1390}
1391
1dfb4dd9 1392void vm_state_notify(int running, RunState state)
0bd48850 1393{
9b10ac86 1394 VMChangeStateEntry *e, *next;
0bd48850 1395
ff12e3ae 1396 trace_vm_state_notify(running, state, RunState_str(state));
94b0b5ff 1397
9b10ac86 1398 QLIST_FOREACH_SAFE(e, &vm_change_state_head, entries, next) {
1dfb4dd9 1399 e->cb(e->opaque, running, state);
0bd48850
FB
1400 }
1401}
1402
aedbe192
EB
1403static ShutdownCause reset_requested;
1404static ShutdownCause shutdown_requested;
1405static int shutdown_signal;
f64622c4 1406static pid_t shutdown_pid;
3475187d 1407static int powerdown_requested;
8cf71710 1408static int debug_requested;
95b363b5 1409static int suspend_requested;
047f7038 1410static bool preconfig_exit_requested = true;
4bc78a87 1411static WakeupReason wakeup_reason;
a9552c8e
IM
1412static NotifierList powerdown_notifiers =
1413 NOTIFIER_LIST_INITIALIZER(powerdown_notifiers);
95b363b5
GH
1414static NotifierList suspend_notifiers =
1415 NOTIFIER_LIST_INITIALIZER(suspend_notifiers);
1416static NotifierList wakeup_notifiers =
1417 NOTIFIER_LIST_INITIALIZER(wakeup_notifiers);
2dadd753
YS
1418static NotifierList shutdown_notifiers =
1419 NOTIFIER_LIST_INITIALIZER(shutdown_notifiers);
4bc78a87 1420static uint32_t wakeup_reason_mask = ~(1 << QEMU_WAKEUP_REASON_NONE);
bb0c6722 1421
aedbe192 1422ShutdownCause qemu_shutdown_requested_get(void)
1291eb35
AP
1423{
1424 return shutdown_requested;
1425}
1426
aedbe192 1427ShutdownCause qemu_reset_requested_get(void)
1291eb35
AP
1428{
1429 return reset_requested;
1430}
1431
4fdcac0e 1432static int qemu_shutdown_requested(void)
cf7a2fe2 1433{
aedbe192 1434 return atomic_xchg(&shutdown_requested, SHUTDOWN_CAUSE_NONE);
cf7a2fe2
AJ
1435}
1436
4fdcac0e 1437static void qemu_kill_report(void)
f64622c4 1438{
7af88279 1439 if (!qtest_driver() && shutdown_signal) {
f1d3fb04
PM
1440 if (shutdown_pid == 0) {
1441 /* This happens for eg ^C at the terminal, so it's worth
1442 * avoiding printing an odd message in that case.
1443 */
f61eddcb 1444 error_report("terminating on signal %d", shutdown_signal);
f1d3fb04 1445 } else {
fbe7e332
MP
1446 char *shutdown_cmd = qemu_get_pid_name(shutdown_pid);
1447
1448 error_report("terminating on signal %d from pid " FMT_pid " (%s)",
1449 shutdown_signal, shutdown_pid,
1450 shutdown_cmd ? shutdown_cmd : "<unknown process>");
1451 g_free(shutdown_cmd);
f1d3fb04 1452 }
7af88279 1453 shutdown_signal = 0;
f64622c4
GN
1454 }
1455}
1456
aedbe192 1457static ShutdownCause qemu_reset_requested(void)
cf7a2fe2 1458{
aedbe192
EB
1459 ShutdownCause r = reset_requested;
1460
8bd7f71d 1461 if (r && replay_checkpoint(CHECKPOINT_RESET_REQUESTED)) {
aedbe192 1462 reset_requested = SHUTDOWN_CAUSE_NONE;
8bd7f71d
PD
1463 return r;
1464 }
aedbe192 1465 return SHUTDOWN_CAUSE_NONE;
cf7a2fe2
AJ
1466}
1467
95b363b5
GH
1468static int qemu_suspend_requested(void)
1469{
1470 int r = suspend_requested;
8bd7f71d
PD
1471 if (r && replay_checkpoint(CHECKPOINT_SUSPEND_REQUESTED)) {
1472 suspend_requested = 0;
1473 return r;
1474 }
1475 return false;
95b363b5
GH
1476}
1477
4bc78a87 1478static WakeupReason qemu_wakeup_requested(void)
14058196 1479{
4bc78a87 1480 return wakeup_reason;
14058196
LC
1481}
1482
4fdcac0e 1483static int qemu_powerdown_requested(void)
cf7a2fe2
AJ
1484{
1485 int r = powerdown_requested;
1486 powerdown_requested = 0;
1487 return r;
1488}
1489
e568902a
AL
1490static int qemu_debug_requested(void)
1491{
1492 int r = debug_requested;
1493 debug_requested = 0;
1494 return r;
1495}
1496
047f7038
IM
1497void qemu_exit_preconfig_request(void)
1498{
1499 preconfig_exit_requested = true;
1500}
1501
aedbe192
EB
1502/*
1503 * Reset the VM. Issue an event unless @reason is SHUTDOWN_CAUSE_NONE.
1504 */
1505void qemu_system_reset(ShutdownCause reason)
be522029 1506{
0056ae24
MA
1507 MachineClass *mc;
1508
1509 mc = current_machine ? MACHINE_GET_CLASS(current_machine) : NULL;
1510
efdaf797
DG
1511 cpu_synchronize_all_states();
1512
958db90c 1513 if (mc && mc->reset) {
a0628599 1514 mc->reset(current_machine);
be522029
DG
1515 } else {
1516 qemu_devices_reset();
1517 }
76ed4b18 1518 if (reason != SHUTDOWN_CAUSE_SUBSYSTEM_RESET) {
ecd7a0d5 1519 qapi_event_send_reset(shutdown_caused_by_guest(reason), reason);
e063eb1f 1520 }
ea375f9a 1521 cpu_synchronize_all_post_reset();
bb0c6722
FB
1522}
1523
c86f106b 1524void qemu_system_guest_panicked(GuestPanicInformation *info)
5f5b5942 1525{
4ada99ad 1526 qemu_log_mask(LOG_GUEST_ERROR, "Guest crashed");
f47291b7 1527
bac05aa9
AS
1528 if (current_cpu) {
1529 current_cpu->crash_occurred = true;
1530 }
c86f106b 1531 qapi_event_send_guest_panicked(GUEST_PANIC_ACTION_PAUSE,
3ab72385 1532 !!info, info);
5f5b5942 1533 vm_stop(RUN_STATE_GUEST_PANICKED);
864111f4
CB
1534 if (!no_shutdown) {
1535 qapi_event_send_guest_panicked(GUEST_PANIC_ACTION_POWEROFF,
3ab72385 1536 !!info, info);
cf83f140 1537 qemu_system_shutdown_request(SHUTDOWN_CAUSE_GUEST_PANIC);
864111f4 1538 }
c86f106b
AN
1539
1540 if (info) {
e8ed97a6 1541 if (info->type == GUEST_PANIC_INFORMATION_TYPE_HYPER_V) {
4ada99ad 1542 qemu_log_mask(LOG_GUEST_ERROR, "\nHV crash parameters: (%#"PRIx64
f47291b7 1543 " %#"PRIx64" %#"PRIx64" %#"PRIx64" %#"PRIx64")\n",
e8ed97a6
AN
1544 info->u.hyper_v.arg1,
1545 info->u.hyper_v.arg2,
1546 info->u.hyper_v.arg3,
1547 info->u.hyper_v.arg4,
1548 info->u.hyper_v.arg5);
4ada99ad
CB
1549 } else if (info->type == GUEST_PANIC_INFORMATION_TYPE_S390) {
1550 qemu_log_mask(LOG_GUEST_ERROR, " on cpu %d: %s\n"
1551 "PSW: 0x%016" PRIx64 " 0x%016" PRIx64"\n",
1552 info->u.s390.core,
1553 S390CrashReason_str(info->u.s390.reason),
1554 info->u.s390.psw_mask,
1555 info->u.s390.psw_addr);
f47291b7 1556 }
c86f106b
AN
1557 qapi_free_GuestPanicInformation(info);
1558 }
5f5b5942
AS
1559}
1560
cf83f140 1561void qemu_system_reset_request(ShutdownCause reason)
bb0c6722 1562{
76ed4b18 1563 if (no_reboot && reason != SHUTDOWN_CAUSE_SUBSYSTEM_RESET) {
cf83f140 1564 shutdown_requested = reason;
d1beab82 1565 } else {
cf83f140 1566 reset_requested = reason;
d1beab82 1567 }
b4a3d965 1568 cpu_stop_current();
d9f75a4e 1569 qemu_notify_event();
bb0c6722
FB
1570}
1571
95b363b5
GH
1572static void qemu_system_suspend(void)
1573{
1574 pause_all_vcpus();
1575 notifier_list_notify(&suspend_notifiers, NULL);
ad02b96a 1576 runstate_set(RUN_STATE_SUSPENDED);
3ab72385 1577 qapi_event_send_suspend();
95b363b5
GH
1578}
1579
1580void qemu_system_suspend_request(void)
1581{
9abc62f6 1582 if (runstate_check(RUN_STATE_SUSPENDED)) {
95b363b5
GH
1583 return;
1584 }
1585 suspend_requested = 1;
1586 cpu_stop_current();
1587 qemu_notify_event();
1588}
1589
1590void qemu_register_suspend_notifier(Notifier *notifier)
1591{
1592 notifier_list_add(&suspend_notifiers, notifier);
1593}
1594
fb064112 1595void qemu_system_wakeup_request(WakeupReason reason, Error **errp)
95b363b5 1596{
4fed9421
AK
1597 trace_system_wakeup_request(reason);
1598
9abc62f6 1599 if (!runstate_check(RUN_STATE_SUSPENDED)) {
fb064112
DHB
1600 error_setg(errp,
1601 "Unable to wake up: guest is not in suspended state");
95b363b5
GH
1602 return;
1603 }
1604 if (!(wakeup_reason_mask & (1 << reason))) {
1605 return;
1606 }
ad02b96a 1607 runstate_set(RUN_STATE_RUNNING);
4bc78a87 1608 wakeup_reason = reason;
95b363b5 1609 qemu_notify_event();
95b363b5
GH
1610}
1611
1612void qemu_system_wakeup_enable(WakeupReason reason, bool enabled)
1613{
1614 if (enabled) {
1615 wakeup_reason_mask |= (1 << reason);
1616 } else {
1617 wakeup_reason_mask &= ~(1 << reason);
1618 }
1619}
1620
1621void qemu_register_wakeup_notifier(Notifier *notifier)
1622{
1623 notifier_list_add(&wakeup_notifiers, notifier);
1624}
1625
46ea94ca
DHB
1626void qemu_register_wakeup_support(void)
1627{
1628 wakeup_suspend_enabled = true;
1629}
1630
fb064112 1631bool qemu_wakeup_suspend_enabled(void)
46ea94ca
DHB
1632{
1633 return wakeup_suspend_enabled;
1634}
1635
f64622c4
GN
1636void qemu_system_killed(int signal, pid_t pid)
1637{
1638 shutdown_signal = signal;
1639 shutdown_pid = pid;
d9389b96 1640 no_shutdown = 0;
8bd7f71d
PD
1641
1642 /* Cannot call qemu_system_shutdown_request directly because
1643 * we are in a signal handler.
1644 */
aedbe192 1645 shutdown_requested = SHUTDOWN_CAUSE_HOST_SIGNAL;
8bd7f71d 1646 qemu_notify_event();
f64622c4
GN
1647}
1648
cf83f140 1649void qemu_system_shutdown_request(ShutdownCause reason)
bb0c6722 1650{
cf83f140
EB
1651 trace_qemu_system_shutdown_request(reason);
1652 replay_shutdown_request(reason);
1653 shutdown_requested = reason;
d9f75a4e 1654 qemu_notify_event();
bb0c6722
FB
1655}
1656
013c2f15
IM
1657static void qemu_system_powerdown(void)
1658{
3ab72385 1659 qapi_event_send_powerdown();
013c2f15
IM
1660 notifier_list_notify(&powerdown_notifiers, NULL);
1661}
1662
2dadd753
YS
1663static void qemu_system_shutdown(ShutdownCause cause)
1664{
1665 qapi_event_send_shutdown(shutdown_caused_by_guest(cause), cause);
1666 notifier_list_notify(&shutdown_notifiers, &cause);
1667}
1668
3475187d
FB
1669void qemu_system_powerdown_request(void)
1670{
bc78cff9 1671 trace_qemu_system_powerdown_request();
3475187d 1672 powerdown_requested = 1;
d9f75a4e
AL
1673 qemu_notify_event();
1674}
1675
a9552c8e
IM
1676void qemu_register_powerdown_notifier(Notifier *notifier)
1677{
1678 notifier_list_add(&powerdown_notifiers, notifier);
1679}
1680
2dadd753
YS
1681void qemu_register_shutdown_notifier(Notifier *notifier)
1682{
1683 notifier_list_add(&shutdown_notifiers, notifier);
1684}
1685
8cf71710
JK
1686void qemu_system_debug_request(void)
1687{
1688 debug_requested = 1;
83f338f7 1689 qemu_notify_event();
8cf71710
JK
1690}
1691
99435906
PB
1692static bool main_loop_should_exit(void)
1693{
1694 RunState r;
aedbe192
EB
1695 ShutdownCause request;
1696
047f7038
IM
1697 if (preconfig_exit_requested) {
1698 if (runstate_check(RUN_STATE_PRECONFIG)) {
1699 runstate_set(RUN_STATE_PRELAUNCH);
1700 }
1701 preconfig_exit_requested = false;
1702 return true;
1703 }
99435906
PB
1704 if (qemu_debug_requested()) {
1705 vm_stop(RUN_STATE_DEBUG);
1706 }
95b363b5
GH
1707 if (qemu_suspend_requested()) {
1708 qemu_system_suspend();
1709 }
aedbe192
EB
1710 request = qemu_shutdown_requested();
1711 if (request) {
99435906 1712 qemu_kill_report();
2dadd753 1713 qemu_system_shutdown(request);
99435906
PB
1714 if (no_shutdown) {
1715 vm_stop(RUN_STATE_SHUTDOWN);
1716 } else {
1717 return true;
1718 }
1719 }
aedbe192
EB
1720 request = qemu_reset_requested();
1721 if (request) {
99435906 1722 pause_all_vcpus();
aedbe192 1723 qemu_system_reset(request);
99435906 1724 resume_all_vcpus();
7ec13c79
DL
1725 if (!runstate_check(RUN_STATE_RUNNING) &&
1726 !runstate_check(RUN_STATE_INMIGRATE)) {
1727 runstate_set(RUN_STATE_PRELAUNCH);
99435906
PB
1728 }
1729 }
14058196
LC
1730 if (qemu_wakeup_requested()) {
1731 pause_all_vcpus();
aedbe192 1732 qemu_system_reset(SHUTDOWN_CAUSE_NONE);
4bc78a87
LJ
1733 notifier_list_notify(&wakeup_notifiers, &wakeup_reason);
1734 wakeup_reason = QEMU_WAKEUP_REASON_NONE;
14058196 1735 resume_all_vcpus();
3ab72385 1736 qapi_event_send_wakeup();
14058196 1737 }
99435906 1738 if (qemu_powerdown_requested()) {
013c2f15 1739 qemu_system_powerdown();
99435906
PB
1740 }
1741 if (qemu_vmstop_requested(&r)) {
1742 vm_stop(r);
1743 }
1744 return false;
1745}
1746
43b96858
AL
1747static void main_loop(void)
1748{
8e1b90ec
JK
1749#ifdef CONFIG_PROFILER
1750 int64_t ti;
1751#endif
0f5319ea 1752 while (!main_loop_should_exit()) {
89bfc105 1753#ifdef CONFIG_PROFILER
46481d39 1754 ti = profile_getclock();
89bfc105 1755#endif
e330c118 1756 main_loop_wait(false);
89bfc105 1757#ifdef CONFIG_PROFILER
46481d39 1758 dev_time += profile_getclock() - ti;
89bfc105 1759#endif
0f5319ea 1760 }
b4608c04
FB
1761}
1762
9bd7e6d9
PB
1763static void version(void)
1764{
7e563bfb 1765 printf("QEMU emulator version " QEMU_FULL_VERSION "\n"
d915b7bb 1766 QEMU_COPYRIGHT "\n");
9bd7e6d9
PB
1767}
1768
15f82208 1769static void help(int exitcode)
0824d6fc 1770{
a3adb7ad
ME
1771 version();
1772 printf("usage: %s [options] [disk_image]\n\n"
1773 "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
1774 error_get_progname());
1775
77bd1119
ME
1776#define QEMU_OPTIONS_GENERATE_HELP
1777#include "qemu-options-wrapper.h"
a3adb7ad
ME
1778
1779 printf("\nDuring emulation, the following keys are useful:\n"
3f020d70 1780 "ctrl-alt-f toggle full screen\n"
1781 "ctrl-alt-n switch to virtual console 'n'\n"
1782 "ctrl-alt toggle mouse and keyboard grab\n"
1783 "\n"
f5048cb7
EB
1784 "When using -nographic, press 'ctrl-a h' to get some help.\n"
1785 "\n"
1786 QEMU_HELP_BOTTOM "\n");
a3adb7ad 1787
15f82208 1788 exit(exitcode);
0824d6fc
FB
1789}
1790
cd6f1169
FB
1791#define HAS_ARG 0x0001
1792
cd6f1169
FB
1793typedef struct QEMUOption {
1794 const char *name;
1795 int flags;
1796 int index;
ad96090a 1797 uint32_t arch_mask;
cd6f1169
FB
1798} QEMUOption;
1799
dbed7e40 1800static const QEMUOption qemu_options[] = {
ad96090a 1801 { "h", 0, QEMU_OPTION_h, QEMU_ARCH_ALL },
77bd1119
ME
1802#define QEMU_OPTIONS_GENERATE_OPTIONS
1803#include "qemu-options-wrapper.h"
cd6f1169 1804 { NULL },
fc01f7e7 1805};
a369da5f 1806
8c9a2b71
EH
1807typedef struct VGAInterfaceInfo {
1808 const char *opt_name; /* option name */
1809 const char *name; /* human-readable name */
c2c7b22d
EH
1810 /* Class names indicating that support is available.
1811 * If no class is specified, the interface is always available */
1812 const char *class_names[2];
8c9a2b71
EH
1813} VGAInterfaceInfo;
1814
53b93511 1815static const VGAInterfaceInfo vga_interfaces[VGA_TYPE_MAX] = {
8c9a2b71
EH
1816 [VGA_NONE] = {
1817 .opt_name = "none",
d2fa65cd 1818 .name = "no graphic card",
8c9a2b71
EH
1819 },
1820 [VGA_STD] = {
1821 .opt_name = "std",
1822 .name = "standard VGA",
c2c7b22d 1823 .class_names = { "VGA", "isa-vga" },
8c9a2b71
EH
1824 },
1825 [VGA_CIRRUS] = {
1826 .opt_name = "cirrus",
1827 .name = "Cirrus VGA",
c2c7b22d 1828 .class_names = { "cirrus-vga", "isa-cirrus-vga" },
8c9a2b71
EH
1829 },
1830 [VGA_VMWARE] = {
1831 .opt_name = "vmware",
1832 .name = "VMWare SVGA",
c2c7b22d 1833 .class_names = { "vmware-svga" },
8c9a2b71
EH
1834 },
1835 [VGA_VIRTIO] = {
1836 .opt_name = "virtio",
1837 .name = "Virtio VGA",
c2c7b22d 1838 .class_names = { "virtio-vga" },
8c9a2b71
EH
1839 },
1840 [VGA_QXL] = {
1841 .opt_name = "qxl",
1842 .name = "QXL VGA",
c2c7b22d 1843 .class_names = { "qxl-vga" },
8c9a2b71
EH
1844 },
1845 [VGA_TCX] = {
1846 .opt_name = "tcx",
1847 .name = "TCX framebuffer",
c2c7b22d 1848 .class_names = { "SUNW,tcx" },
8c9a2b71
EH
1849 },
1850 [VGA_CG3] = {
1851 .opt_name = "cg3",
1852 .name = "CG3 framebuffer",
c2c7b22d 1853 .class_names = { "cgthree" },
8c9a2b71
EH
1854 },
1855 [VGA_XENFB] = {
1856 .opt_name = "xenfb",
d2fa65cd 1857 .name = "Xen paravirtualized framebuffer",
8c9a2b71
EH
1858 },
1859};
1860
c2c7b22d
EH
1861static bool vga_interface_available(VGAInterfaceType t)
1862{
53b93511 1863 const VGAInterfaceInfo *ti = &vga_interfaces[t];
c2c7b22d
EH
1864
1865 assert(t < VGA_TYPE_MAX);
1866 return !ti->class_names[0] ||
1867 object_class_by_name(ti->class_names[0]) ||
1868 object_class_by_name(ti->class_names[1]);
1869}
1870
dceb8852
MAL
1871static const char *
1872get_default_vga_model(const MachineClass *machine_class)
1873{
1874 if (machine_class->default_display) {
1875 return machine_class->default_display;
1876 } else if (vga_interface_available(VGA_CIRRUS)) {
1877 return "cirrus";
1878 } else if (vga_interface_available(VGA_STD)) {
1879 return "std";
1880 }
1881
1882 return NULL;
1883}
1884
1885static void select_vgahw(const MachineClass *machine_class, const char *p)
3893c124 1886{
1887 const char *opts;
8c9a2b71 1888 int t;
3893c124 1889
dceb8852
MAL
1890 if (g_str_equal(p, "help")) {
1891 const char *def = get_default_vga_model(machine_class);
1892
1893 for (t = 0; t < VGA_TYPE_MAX; t++) {
1894 const VGAInterfaceInfo *ti = &vga_interfaces[t];
1895
1896 if (vga_interface_available(t) && ti->opt_name) {
1897 printf("%-20s %s%s\n", ti->opt_name, ti->name ?: "",
1898 g_str_equal(ti->opt_name, def) ? " (default)" : "");
1899 }
1900 }
1901 exit(0);
1902 }
1903
d44229c5 1904 assert(vga_interface_type == VGA_NONE);
8c9a2b71 1905 for (t = 0; t < VGA_TYPE_MAX; t++) {
53b93511 1906 const VGAInterfaceInfo *ti = &vga_interfaces[t];
8c9a2b71 1907 if (ti->opt_name && strstart(p, ti->opt_name, &opts)) {
c2c7b22d 1908 if (!vga_interface_available(t)) {
8c9a2b71
EH
1909 error_report("%s not available", ti->name);
1910 exit(1);
1911 }
1912 vga_interface_type = t;
1913 break;
af87bf29 1914 }
8c9a2b71
EH
1915 }
1916 if (t == VGA_TYPE_MAX) {
3893c124 1917 invalid_vga:
3e515373 1918 error_report("unknown vga type: %s", p);
3893c124 1919 exit(1);
1920 }
cb5a7aa8 1921 while (*opts) {
1922 const char *nextopt;
1923
1924 if (strstart(opts, ",retrace=", &nextopt)) {
1925 opts = nextopt;
1926 if (strstart(opts, "dumb", &nextopt))
1927 vga_retrace_method = VGA_RETRACE_DUMB;
1928 else if (strstart(opts, "precise", &nextopt))
1929 vga_retrace_method = VGA_RETRACE_PRECISE;
1930 else goto invalid_vga;
1931 } else goto invalid_vga;
1932 opts = nextopt;
1933 }
3893c124 1934}
1935
776d1344
GH
1936static void parse_display_qapi(const char *optarg)
1937{
776d1344
GH
1938 DisplayOptions *opts;
1939 Visitor *v;
1940
50beeb68 1941 v = qobject_input_visitor_new_str(optarg, "type", &error_fatal);
776d1344
GH
1942
1943 visit_type_DisplayOptions(v, NULL, &opts, &error_fatal);
1944 QAPI_CLONE_MEMBERS(DisplayOptions, &dpy, opts);
1945
1946 qapi_free_DisplayOptions(opts);
1947 visit_free(v);
1948}
1949
e1ca8f7e
GH
1950DisplayOptions *qmp_query_display_options(Error **errp)
1951{
1952 return QAPI_CLONE(DisplayOptions, &dpy);
1953}
1954
e3af9f9a 1955static void parse_display(const char *p)
1472a95b
JS
1956{
1957 const char *opts;
1472a95b
JS
1958
1959 if (strstart(p, "sdl", &opts)) {
7a61f438
GH
1960 /*
1961 * sdl DisplayType needs hand-crafted parser instead of
1962 * parse_display_qapi() due to some options not in
1963 * DisplayOptions, specifically:
1964 * - frame
1965 * Already deprecated.
1966 * - ctrl_grab + alt_grab
1967 * Not clear yet what happens to them long-term. Should
1968 * replaced by something better or deprecated and dropped.
1969 */
fe91f36a 1970 dpy.type = DISPLAY_TYPE_SDL;
1472a95b
JS
1971 while (*opts) {
1972 const char *nextopt;
1973
09bd7ba9 1974 if (strstart(opts, ",alt_grab=", &nextopt)) {
1472a95b
JS
1975 opts = nextopt;
1976 if (strstart(opts, "on", &nextopt)) {
1977 alt_grab = 1;
1978 } else if (strstart(opts, "off", &nextopt)) {
1979 alt_grab = 0;
1980 } else {
05175535 1981 goto invalid_sdl_args;
1472a95b
JS
1982 }
1983 } else if (strstart(opts, ",ctrl_grab=", &nextopt)) {
1984 opts = nextopt;
1985 if (strstart(opts, "on", &nextopt)) {
1986 ctrl_grab = 1;
1987 } else if (strstart(opts, "off", &nextopt)) {
1988 ctrl_grab = 0;
1989 } else {
05175535 1990 goto invalid_sdl_args;
1472a95b
JS
1991 }
1992 } else if (strstart(opts, ",window_close=", &nextopt)) {
1993 opts = nextopt;
fe91f36a 1994 dpy.has_window_close = true;
1472a95b 1995 if (strstart(opts, "on", &nextopt)) {
fe91f36a 1996 dpy.window_close = true;
1472a95b 1997 } else if (strstart(opts, "off", &nextopt)) {
fe91f36a 1998 dpy.window_close = false;
1472a95b 1999 } else {
05175535 2000 goto invalid_sdl_args;
1472a95b 2001 }
0b71a5d5
GH
2002 } else if (strstart(opts, ",gl=", &nextopt)) {
2003 opts = nextopt;
fe91f36a 2004 dpy.has_gl = true;
0b71a5d5 2005 if (strstart(opts, "on", &nextopt)) {
62f27922 2006 dpy.gl = DISPLAYGL_MODE_ON;
4867e47c
ET
2007 } else if (strstart(opts, "core", &nextopt)) {
2008 dpy.gl = DISPLAYGL_MODE_CORE;
2009 } else if (strstart(opts, "es", &nextopt)) {
2010 dpy.gl = DISPLAYGL_MODE_ES;
0b71a5d5 2011 } else if (strstart(opts, "off", &nextopt)) {
62f27922 2012 dpy.gl = DISPLAYGL_MODE_OFF;
0b71a5d5
GH
2013 } else {
2014 goto invalid_sdl_args;
2015 }
1472a95b 2016 } else {
05175535 2017 invalid_sdl_args:
3e515373 2018 error_report("invalid SDL option string");
05175535 2019 exit(1);
1472a95b
JS
2020 }
2021 opts = nextopt;
2022 }
3264ff12 2023 } else if (strstart(p, "vnc", &opts)) {
7a61f438
GH
2024 /*
2025 * vnc isn't a (local) DisplayType but a protocol for remote
2026 * display access.
2027 */
4db14629 2028 if (*opts == '=') {
7b1ee0f2 2029 vnc_parse(opts + 1, &error_fatal);
4db14629 2030 } else {
c6bf0f7f 2031 error_report("VNC requires a display argument vnc=<display>");
3264ff12
JS
2032 exit(1);
2033 }
1472a95b 2034 } else {
776d1344 2035 parse_display_qapi(p);
1472a95b 2036 }
1472a95b
JS
2037}
2038
5cea8590
PB
2039char *qemu_find_file(int type, const char *name)
2040{
4524051c 2041 int i;
5cea8590
PB
2042 const char *subdir;
2043 char *buf;
2044
31783203
PM
2045 /* Try the name as a straight path first */
2046 if (access(name, R_OK) == 0) {
4524051c 2047 trace_load_file(name, name);
7267c094 2048 return g_strdup(name);
5cea8590 2049 }
4524051c 2050
5cea8590
PB
2051 switch (type) {
2052 case QEMU_FILE_TYPE_BIOS:
2053 subdir = "";
2054 break;
2055 case QEMU_FILE_TYPE_KEYMAP:
2056 subdir = "keymaps/";
2057 break;
2058 default:
2059 abort();
2060 }
4524051c
GH
2061
2062 for (i = 0; i < data_dir_idx; i++) {
2063 buf = g_strdup_printf("%s/%s%s", data_dir[i], subdir, name);
2064 if (access(buf, R_OK) == 0) {
2065 trace_load_file(name, buf);
2066 return buf;
2067 }
7267c094 2068 g_free(buf);
5cea8590 2069 }
4524051c 2070 return NULL;
5cea8590
PB
2071}
2072
2a1cce90
GH
2073static void qemu_add_data_dir(const char *path)
2074{
2075 int i;
2076
2077 if (path == NULL) {
2078 return;
2079 }
2080 if (data_dir_idx == ARRAY_SIZE(data_dir)) {
2081 return;
2082 }
2083 for (i = 0; i < data_dir_idx; i++) {
2084 if (strcmp(data_dir[i], path) == 0) {
2085 return; /* duplicate */
2086 }
2087 }
35471127 2088 data_dir[data_dir_idx++] = g_strdup(path);
2a1cce90
GH
2089}
2090
6407d76e
GS
2091static inline bool nonempty_str(const char *str)
2092{
2093 return str && *str;
2094}
2095
81b2b810
GS
2096static int parse_fw_cfg(void *opaque, QemuOpts *opts, Error **errp)
2097{
2098 gchar *buf;
2099 size_t size;
6407d76e 2100 const char *name, *file, *str;
bab47d9a 2101 FWCfgState *fw_cfg = (FWCfgState *) opaque;
81b2b810 2102
bab47d9a 2103 if (fw_cfg == NULL) {
406b6367 2104 error_setg(errp, "fw_cfg device not available");
81b2b810
GS
2105 return -1;
2106 }
2107 name = qemu_opt_get(opts, "name");
2108 file = qemu_opt_get(opts, "file");
6407d76e
GS
2109 str = qemu_opt_get(opts, "string");
2110
2111 /* we need name and either a file or the content string */
2112 if (!(nonempty_str(name) && (nonempty_str(file) || nonempty_str(str)))) {
406b6367 2113 error_setg(errp, "invalid argument(s)");
6407d76e
GS
2114 return -1;
2115 }
2116 if (nonempty_str(file) && nonempty_str(str)) {
406b6367 2117 error_setg(errp, "file and string are mutually exclusive");
81b2b810
GS
2118 return -1;
2119 }
2120 if (strlen(name) > FW_CFG_MAX_FILE_PATH - 1) {
406b6367
MA
2121 error_setg(errp, "name too long (max. %d char)",
2122 FW_CFG_MAX_FILE_PATH - 1);
81b2b810
GS
2123 return -1;
2124 }
2125 if (strncmp(name, "opt/", 4) != 0) {
3dc6f869
AF
2126 warn_report("externally provided fw_cfg item names "
2127 "should be prefixed with \"opt/\"");
81b2b810 2128 }
6407d76e
GS
2129 if (nonempty_str(str)) {
2130 size = strlen(str); /* NUL terminator NOT included in fw_cfg blob */
2131 buf = g_memdup(str, size);
2132 } else {
353c7d58
LQ
2133 GError *err = NULL;
2134 if (!g_file_get_contents(file, &buf, &size, &err)) {
2135 error_setg(errp, "can't load %s: %s", file, err->message);
2136 g_error_free(err);
6407d76e
GS
2137 return -1;
2138 }
81b2b810 2139 }
bab47d9a
GH
2140 /* For legacy, keep user files in a specific global order. */
2141 fw_cfg_set_order_override(fw_cfg, FW_CFG_ORDER_OVERRIDE_USER);
2142 fw_cfg_add_file(fw_cfg, name, buf, size);
2143 fw_cfg_reset_order_override(fw_cfg);
81b2b810
GS
2144 return 0;
2145}
2146
28d0de7a 2147static int device_help_func(void *opaque, QemuOpts *opts, Error **errp)
ff952ba2
MA
2148{
2149 return qdev_device_help(opts);
2150}
2151
28d0de7a 2152static int device_init_func(void *opaque, QemuOpts *opts, Error **errp)
f31d07d1
GH
2153{
2154 DeviceState *dev;
2155
cd65f349 2156 dev = qdev_device_add(opts, errp);
f006cf7f 2157 if (!dev) {
f31d07d1 2158 return -1;
f006cf7f 2159 }
b09995ae 2160 object_unref(OBJECT(dev));
f31d07d1
GH
2161 return 0;
2162}
2163
28d0de7a 2164static int chardev_init_func(void *opaque, QemuOpts *opts, Error **errp)
1a688d3b 2165{
bd2d80b2 2166 Error *local_err = NULL;
1a688d3b 2167
4ad6f6cb 2168 if (!qemu_chr_new_from_opts(opts, NULL, &local_err)) {
0ec846bf 2169 if (local_err) {
dd4af977 2170 error_propagate(errp, local_err);
0ec846bf
AN
2171 return -1;
2172 }
2173 exit(0);
bd2d80b2 2174 }
1a688d3b
GH
2175 return 0;
2176}
2177
758e8e38 2178#ifdef CONFIG_VIRTFS
28d0de7a 2179static int fsdev_init_func(void *opaque, QemuOpts *opts, Error **errp)
74db920c 2180{
b836723d 2181 return qemu_fsdev_add(opts, errp);
74db920c
GS
2182}
2183#endif
2184
28d0de7a 2185static int mon_init_func(void *opaque, QemuOpts *opts, Error **errp)
88589343 2186{
0ec7b3e7 2187 Chardev *chr;
fbfc29e3
KW
2188 bool qmp;
2189 bool pretty = false;
88589343
GH
2190 const char *chardev;
2191 const char *mode;
88589343
GH
2192
2193 mode = qemu_opt_get(opts, "mode");
2194 if (mode == NULL) {
2195 mode = "readline";
2196 }
2197 if (strcmp(mode, "readline") == 0) {
fbfc29e3 2198 qmp = false;
88589343 2199 } else if (strcmp(mode, "control") == 0) {
fbfc29e3 2200 qmp = true;
88589343 2201 } else {
2d5a3a8b
MA
2202 error_setg(errp, "unknown monitor mode \"%s\"", mode);
2203 return -1;
88589343
GH
2204 }
2205
3c45f625
KW
2206 if (!qmp && qemu_opt_get(opts, "pretty")) {
2207 warn_report("'pretty' is deprecated for HMP monitors, it has no effect "
2208 "and will be removed in future versions");
2209 }
fbfc29e3
KW
2210 if (qemu_opt_get_bool(opts, "pretty", 0)) {
2211 pretty = true;
2212 }
39eaab9a 2213
88589343 2214 chardev = qemu_opt_get(opts, "chardev");
0c57893d
EB
2215 if (!chardev) {
2216 error_report("chardev is required");
2217 exit(1);
2218 }
88589343
GH
2219 chr = qemu_chr_find(chardev);
2220 if (chr == NULL) {
2d5a3a8b
MA
2221 error_setg(errp, "chardev \"%s\" not found", chardev);
2222 return -1;
88589343
GH
2223 }
2224
fbfc29e3
KW
2225 if (qmp) {
2226 monitor_init_qmp(chr, pretty);
2227 } else {
2228 monitor_init_hmp(chr, true);
2229 }
88589343
GH
2230 return 0;
2231}
2232
4821cd4c 2233static void monitor_parse(const char *optarg, const char *mode, bool pretty)
88589343
GH
2234{
2235 static int monitor_device_index = 0;
2236 QemuOpts *opts;
2237 const char *p;
2238 char label[32];
88589343
GH
2239
2240 if (strstart(optarg, "chardev:", &p)) {
2241 snprintf(label, sizeof(label), "%s", p);
2242 } else {
140e065d
JK
2243 snprintf(label, sizeof(label), "compat_monitor%d",
2244 monitor_device_index);
95e30b2a 2245 opts = qemu_chr_parse_compat(label, optarg, true);
88589343 2246 if (!opts) {
f61eddcb 2247 error_report("parse error: %s", optarg);
88589343
GH
2248 exit(1);
2249 }
2250 }
2251
822ac12d 2252 opts = qemu_opts_create(qemu_find_opts("mon"), label, 1, &error_fatal);
f43e47db
MA
2253 qemu_opt_set(opts, "mode", mode, &error_abort);
2254 qemu_opt_set(opts, "chardev", label, &error_abort);
3c45f625
KW
2255 if (!strcmp(mode, "control")) {
2256 qemu_opt_set_bool(opts, "pretty", pretty, &error_abort);
2257 } else {
2258 assert(pretty == false);
2259 }
88589343
GH
2260 monitor_device_index++;
2261}
2262
bd3c948d
GH
2263struct device_config {
2264 enum {
aee1b935
GH
2265 DEV_USB, /* -usbdevice */
2266 DEV_BT, /* -bt */
2267 DEV_SERIAL, /* -serial */
2268 DEV_PARALLEL, /* -parallel */
c9f398e5 2269 DEV_DEBUGCON, /* -debugcon */
ef0c4a0d 2270 DEV_GDB, /* -gdb, -s */
3ef669e1 2271 DEV_SCLP, /* s390 sclp */
bd3c948d
GH
2272 } type;
2273 const char *cmdline;
d9a5954d 2274 Location loc;
72cf2d4f 2275 QTAILQ_ENTRY(device_config) next;
bd3c948d 2276};
4fdcac0e
BS
2277
2278static QTAILQ_HEAD(, device_config) device_configs =
2279 QTAILQ_HEAD_INITIALIZER(device_configs);
bd3c948d
GH
2280
2281static void add_device_config(int type, const char *cmdline)
2282{
2283 struct device_config *conf;
2284
7267c094 2285 conf = g_malloc0(sizeof(*conf));
bd3c948d
GH
2286 conf->type = type;
2287 conf->cmdline = cmdline;
d9a5954d 2288 loc_save(&conf->loc);
72cf2d4f 2289 QTAILQ_INSERT_TAIL(&device_configs, conf, next);
bd3c948d
GH
2290}
2291
2292static int foreach_device_config(int type, int (*func)(const char *cmdline))
2293{
2294 struct device_config *conf;
2295 int rc;
2296
72cf2d4f 2297 QTAILQ_FOREACH(conf, &device_configs, next) {
bd3c948d
GH
2298 if (conf->type != type)
2299 continue;
d9a5954d 2300 loc_push_restore(&conf->loc);
bd3c948d 2301 rc = func(conf->cmdline);
d9a5954d 2302 loc_pop(&conf->loc);
28de2f88 2303 if (rc) {
bd3c948d 2304 return rc;
28de2f88 2305 }
bd3c948d
GH
2306 }
2307 return 0;
2308}
2309
998bbd74
GH
2310static int serial_parse(const char *devname)
2311{
6af2692e 2312 int index = num_serial_hds;
998bbd74
GH
2313 char label[32];
2314
2315 if (strcmp(devname, "none") == 0)
2316 return 0;
998bbd74 2317 snprintf(label, sizeof(label), "serial%d", index);
6af2692e
PM
2318 serial_hds = g_renew(Chardev *, serial_hds, index + 1);
2319
4ad6f6cb 2320 serial_hds[index] = qemu_chr_new_mux_mon(label, devname, NULL);
998bbd74 2321 if (!serial_hds[index]) {
f61eddcb
EH
2322 error_report("could not connect serial device"
2323 " to character backend '%s'", devname);
998bbd74
GH
2324 return -1;
2325 }
6af2692e 2326 num_serial_hds++;
998bbd74
GH
2327 return 0;
2328}
2329
a8d78cd0
PM
2330Chardev *serial_hd(int i)
2331{
2332 assert(i >= 0);
6af2692e 2333 if (i < num_serial_hds) {
a8d78cd0
PM
2334 return serial_hds[i];
2335 }
2336 return NULL;
2337}
2338
b8846a4d
PM
2339int serial_max_hds(void)
2340{
2341 return num_serial_hds;
2342}
2343
6a5e8b0e
GH
2344static int parallel_parse(const char *devname)
2345{
2346 static int index = 0;
2347 char label[32];
2348
2349 if (strcmp(devname, "none") == 0)
2350 return 0;
2351 if (index == MAX_PARALLEL_PORTS) {
f61eddcb 2352 error_report("too many parallel ports");
6a5e8b0e
GH
2353 exit(1);
2354 }
2355 snprintf(label, sizeof(label), "parallel%d", index);
4ad6f6cb 2356 parallel_hds[index] = qemu_chr_new_mux_mon(label, devname, NULL);
6a5e8b0e 2357 if (!parallel_hds[index]) {
f61eddcb
EH
2358 error_report("could not connect parallel device"
2359 " to character backend '%s'", devname);
6a5e8b0e
GH
2360 return -1;
2361 }
2362 index++;
2363 return 0;
2364}
2365
c9f398e5 2366static int debugcon_parse(const char *devname)
4d8b3c63 2367{
c9f398e5
PA
2368 QemuOpts *opts;
2369
4ad6f6cb 2370 if (!qemu_chr_new_mux_mon("debugcon", devname, NULL)) {
d7ecf712 2371 error_report("invalid character backend '%s'", devname);
c9f398e5
PA
2372 exit(1);
2373 }
8be7e7e4 2374 opts = qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL);
c9f398e5 2375 if (!opts) {
f61eddcb 2376 error_report("already have a debugcon device");
c9f398e5
PA
2377 exit(1);
2378 }
f43e47db
MA
2379 qemu_opt_set(opts, "driver", "isa-debugcon", &error_abort);
2380 qemu_opt_set(opts, "chardev", "debugcon", &error_abort);
c9f398e5
PA
2381 return 0;
2382}
2383
2709f263
LE
2384static gint machine_class_cmp(gconstpointer a, gconstpointer b)
2385{
2386 const MachineClass *mc1 = a, *mc2 = b;
2387 int res;
2388
2389 if (mc1->family == NULL) {
2390 if (mc2->family == NULL) {
2391 /* Compare standalone machine types against each other; they sort
2392 * in increasing order.
2393 */
2394 return strcmp(object_class_get_name(OBJECT_CLASS(mc1)),
2395 object_class_get_name(OBJECT_CLASS(mc2)));
2396 }
2397
2398 /* Standalone machine types sort after families. */
2399 return 1;
2400 }
2401
2402 if (mc2->family == NULL) {
2403 /* Families sort before standalone machine types. */
2404 return -1;
2405 }
2406
2407 /* Families sort between each other alphabetically increasingly. */
2408 res = strcmp(mc1->family, mc2->family);
2409 if (res != 0) {
2410 return res;
2411 }
2412
2413 /* Within the same family, machine types sort in decreasing order. */
2414 return strcmp(object_class_get_name(OBJECT_CLASS(mc2)),
2415 object_class_get_name(OBJECT_CLASS(mc1)));
2416}
2417
c516cd1b 2418static MachineClass *machine_parse(const char *name, GSList *machines)
9052ea6b 2419{
12cb82fd 2420 MachineClass *mc;
c516cd1b 2421 GSList *el;
9052ea6b 2422
12cb82fd 2423 if (is_help_option(name)) {
025172d5 2424 printf("Supported machines are:\n");
2709f263 2425 machines = g_slist_sort(machines, machine_class_cmp);
025172d5
MR
2426 for (el = machines; el; el = el->next) {
2427 MachineClass *mc = el->data;
958db90c
MA
2428 if (mc->alias) {
2429 printf("%-20s %s (alias of %s)\n", mc->alias, mc->desc, mc->name);
025172d5 2430 }
08fe6824
TH
2431 printf("%-20s %s%s%s\n", mc->name, mc->desc,
2432 mc->is_default ? " (default)" : "",
2433 mc->deprecation_reason ? " (deprecated)" : "");
9052ea6b 2434 }
12cb82fd 2435 exit(0);
9052ea6b 2436 }
261747f1 2437
12cb82fd
MA
2438 mc = find_machine(name, machines);
2439 if (!mc) {
2440 error_report("unsupported machine type");
2441 error_printf("Use -machine help to list supported machines\n");
2442 exit(1);
2443 }
2444 return mc;
9052ea6b
JK
2445}
2446
fd42deeb
GH
2447void qemu_add_exit_notifier(Notifier *notify)
2448{
2449 notifier_list_add(&exit_notifiers, notify);
2450}
2451
2452void qemu_remove_exit_notifier(Notifier *notify)
2453{
31552529 2454 notifier_remove(notify);
fd42deeb
GH
2455}
2456
2457static void qemu_run_exit_notifiers(void)
2458{
9e8dd451 2459 notifier_list_notify(&exit_notifiers, NULL);
fd42deeb
GH
2460}
2461
90a84d13
MAL
2462static const char *pid_file;
2463static Notifier qemu_unlink_pidfile_notifier;
2464
2465static void qemu_unlink_pidfile(Notifier *n, void *data)
2466{
2467 if (pid_file) {
2468 unlink(pid_file);
2469 }
2470}
2471
c8ca2a23 2472bool machine_init_done;
71cdd1cb 2473
4cab946a
GN
2474void qemu_add_machine_init_done_notifier(Notifier *notify)
2475{
2476 notifier_list_add(&machine_init_done_notifiers, notify);
71cdd1cb
PB
2477 if (machine_init_done) {
2478 notify->notify(notify, NULL);
2479 }
4cab946a
GN
2480}
2481
b86eacb8
MA
2482void qemu_remove_machine_init_done_notifier(Notifier *notify)
2483{
2484 notifier_remove(notify);
2485}
2486
4cab946a
GN
2487static void qemu_run_machine_init_done_notifiers(void)
2488{
71cdd1cb 2489 machine_init_done = true;
c8ca2a23 2490 notifier_list_notify(&machine_init_done_notifiers, NULL);
4cab946a
GN
2491}
2492
6530a97b
AL
2493static const QEMUOption *lookup_opt(int argc, char **argv,
2494 const char **poptarg, int *poptind)
2495{
2496 const QEMUOption *popt;
2497 int optind = *poptind;
2498 char *r = argv[optind];
2499 const char *optarg;
2500
0f0bc3f1 2501 loc_set_cmdline(argv, optind, 1);
6530a97b
AL
2502 optind++;
2503 /* Treat --foo the same as -foo. */
2504 if (r[1] == '-')
2505 r++;
2506 popt = qemu_options;
2507 for(;;) {
2508 if (!popt->name) {
0f0bc3f1 2509 error_report("invalid option");
6530a97b
AL
2510 exit(1);
2511 }
2512 if (!strcmp(popt->name, r + 1))
2513 break;
2514 popt++;
2515 }
2516 if (popt->flags & HAS_ARG) {
2517 if (optind >= argc) {
0f0bc3f1 2518 error_report("requires an argument");
6530a97b
AL
2519 exit(1);
2520 }
2521 optarg = argv[optind++];
0f0bc3f1 2522 loc_set_cmdline(argv, optind - 2, 2);
6530a97b
AL
2523 } else {
2524 optarg = NULL;
2525 }
2526
2527 *poptarg = optarg;
2528 *poptind = optind;
2529
2530 return popt;
2531}
2532
7580f231 2533static MachineClass *select_machine(void)
34f405ae 2534{
c516cd1b
WY
2535 GSList *machines = object_class_get_list(TYPE_MACHINE, false);
2536 MachineClass *machine_class = find_default_machine(machines);
34f405ae
MA
2537 const char *optarg;
2538 QemuOpts *opts;
2539 Location loc;
2540
2541 loc_push_none(&loc);
2542
2543 opts = qemu_get_machine_opts();
2544 qemu_opts_loc_restore(opts);
2545
2546 optarg = qemu_opt_get(opts, "type");
2547 if (optarg) {
c516cd1b 2548 machine_class = machine_parse(optarg, machines);
34f405ae
MA
2549 }
2550
7580f231 2551 if (!machine_class) {
34f405ae
MA
2552 error_report("No machine specified, and there is no default");
2553 error_printf("Use -machine help to list supported machines\n");
2554 exit(1);
2555 }
2556
2557 loc_pop(&loc);
c516cd1b 2558 g_slist_free(machines);
7580f231 2559 return machine_class;
34f405ae
MA
2560}
2561
71df1d83
MA
2562static int machine_set_property(void *opaque,
2563 const char *name, const char *value,
2564 Error **errp)
68d98d3e
AL
2565{
2566 Object *obj = OBJECT(opaque);
68d98d3e 2567 Error *local_err = NULL;
f279ee45 2568 char *p, *qom_name;
68d98d3e 2569
d2659e27 2570 if (strcmp(name, "type") == 0) {
68d98d3e
AL
2571 return 0;
2572 }
2573
b0ddb8bf 2574 qom_name = g_strdup(name);
f279ee45
MA
2575 for (p = qom_name; *p; p++) {
2576 if (*p == '_') {
2577 *p = '-';
b0ddb8bf
MA
2578 }
2579 }
2580
2e16898a 2581 object_property_parse(obj, value, qom_name, &local_err);
b0ddb8bf 2582 g_free(qom_name);
68d98d3e
AL
2583
2584 if (local_err) {
702832b8 2585 error_propagate(errp, local_err);
68d98d3e
AL
2586 return -1;
2587 }
2588
2589 return 0;
2590}
2591
f08f9271
DB
2592
2593/*
2594 * Initial object creation happens before all other
2595 * QEMU data types are created. The majority of objects
2596 * can be created at this point. The rng-egd object
2597 * cannot be created here, as it depends on the chardev
2598 * already existing.
2599 */
1195fa2b 2600static bool object_create_initial(const char *type, QemuOpts *opts)
f08f9271 2601{
1195fa2b
MAL
2602 ObjectClass *klass;
2603
bb15cbc0
MAL
2604 if (is_help_option(type)) {
2605 GSList *l, *list;
2606
2607 printf("List of user creatable objects:\n");
2608 list = object_class_get_list_sorted(TYPE_USER_CREATABLE, false);
2609 for (l = list; l != NULL; l = l->next) {
2610 ObjectClass *oc = OBJECT_CLASS(l->data);
da3273ad 2611 printf(" %s\n", object_class_get_name(oc));
bb15cbc0
MAL
2612 }
2613 g_slist_free(list);
2614 exit(0);
2615 }
2616
1195fa2b
MAL
2617 klass = object_class_by_name(type);
2618 if (klass && qemu_opt_has_help_opt(opts)) {
2619 ObjectPropertyIterator iter;
2620 ObjectProperty *prop;
2621 GPtrArray *array = g_ptr_array_new();
2622 int i;
2623
2624 object_class_property_iter_init(&iter, klass);
2625 while ((prop = object_property_iter_next(&iter))) {
2626 GString *str;
2627
2628 if (!prop->set) {
2629 continue;
2630 }
2631
2632 str = g_string_new(NULL);
da3273ad 2633 g_string_append_printf(str, " %s=<%s>", prop->name, prop->type);
1195fa2b 2634 if (prop->description) {
da3273ad
HR
2635 if (str->len < 24) {
2636 g_string_append_printf(str, "%*s", 24 - (int)str->len, "");
2637 }
1195fa2b
MAL
2638 g_string_append_printf(str, " - %s", prop->description);
2639 }
2640 g_ptr_array_add(array, g_string_free(str, false));
2641 }
2642 g_ptr_array_sort(array, (GCompareFunc)qemu_pstrcmp0);
da3273ad
HR
2643 if (array->len > 0) {
2644 printf("%s options:\n", type);
2645 } else {
2646 printf("There are no options for %s.\n", type);
2647 }
1195fa2b
MAL
2648 for (i = 0; i < array->len; i++) {
2649 printf("%s\n", (char *)array->pdata[i]);
2650 }
2651 g_ptr_array_set_free_func(array, g_free);
2652 g_ptr_array_free(array, true);
2653 exit(0);
2654 }
2655
edfb4389
MA
2656 /*
2657 * Objects should not be made "delayed" without a reason. If you
2658 * add one, state the reason in a comment!
2659 */
2660
2661 /* Reason: rng-egd property "chardev" */
9ea18ed2 2662 if (g_str_equal(type, "rng-egd")) {
f08f9271
DB
2663 return false;
2664 }
7dbb11c8 2665
042cea27 2666#if defined(CONFIG_VHOST_USER) && defined(CONFIG_LINUX)
edfb4389 2667 /* Reason: cryptodev-vhost-user property "chardev" */
042cea27
GA
2668 if (g_str_equal(type, "cryptodev-vhost-user")) {
2669 return false;
2670 }
2671#endif
2672
9d3e12e8 2673 /*
edfb4389 2674 * Reason: filter-* property "netdev" etc.
9d3e12e8
TH
2675 */
2676 if (g_str_equal(type, "filter-buffer") ||
f6d3afb5 2677 g_str_equal(type, "filter-dump") ||
d46f75b2 2678 g_str_equal(type, "filter-mirror") ||
7dce4e6f 2679 g_str_equal(type, "filter-redirector") ||
e6eee8ab 2680 g_str_equal(type, "colo-compare") ||
646c5478
PD
2681 g_str_equal(type, "filter-rewriter") ||
2682 g_str_equal(type, "filter-replay")) {
7dbb11c8
YH
2683 return false;
2684 }
2685
6546d0db
EH
2686 /* Memory allocation by backends needs to be done
2687 * after configure_accelerator() (due to the tcg_enabled()
2688 * checks at memory_region_init_*()).
2689 *
2690 * Also, allocation of large amounts of memory may delay
2691 * chardev initialization for too long, and trigger timeouts
2692 * on software that waits for a monitor socket to be created
2693 * (e.g. libvirt).
2694 */
2695 if (g_str_has_prefix(type, "memory-backend-")) {
2696 return false;
2697 }
2698
f08f9271
DB
2699 return true;
2700}
2701
2702
2703/*
2704 * The remainder of object creation happens after the
9abce56d 2705 * creation of chardev, fsdev, net clients and device data types.
f08f9271 2706 */
1195fa2b 2707static bool object_create_delayed(const char *type, QemuOpts *opts)
f08f9271 2708{
1195fa2b 2709 return !object_create_initial(type, opts);
f08f9271
DB
2710}
2711
2712
076b35b5
ND
2713static void set_memory_options(uint64_t *ram_slots, ram_addr_t *maxram_size,
2714 MachineClass *mc)
3b9985e9
MA
2715{
2716 uint64_t sz;
2717 const char *mem_str;
076b35b5 2718 const ram_addr_t default_ram_size = mc->default_ram_size;
3b9985e9 2719 QemuOpts *opts = qemu_find_opts_singleton("memory");
bbe2d25c
EH
2720 Location loc;
2721
2722 loc_push_none(&loc);
2723 qemu_opts_loc_restore(opts);
3b9985e9
MA
2724
2725 sz = 0;
2726 mem_str = qemu_opt_get(opts, "size");
2727 if (mem_str) {
2728 if (!*mem_str) {
2729 error_report("missing 'size' option value");
2730 exit(EXIT_FAILURE);
2731 }
2732
2733 sz = qemu_opt_get_size(opts, "size", ram_size);
2734
2735 /* Fix up legacy suffix-less format */
2736 if (g_ascii_isdigit(mem_str[strlen(mem_str) - 1])) {
2737 uint64_t overflow_check = sz;
2738
3dc54b0e
PMD
2739 sz *= MiB;
2740 if (sz / MiB != overflow_check) {
3b9985e9
MA
2741 error_report("too large 'size' option value");
2742 exit(EXIT_FAILURE);
2743 }
2744 }
2745 }
2746
2747 /* backward compatibility behaviour for case "-m 0" */
2748 if (sz == 0) {
2749 sz = default_ram_size;
2750 }
2751
2752 sz = QEMU_ALIGN_UP(sz, 8192);
2753 ram_size = sz;
2754 if (ram_size != sz) {
2755 error_report("ram size too large");
2756 exit(EXIT_FAILURE);
2757 }
2758
2759 /* store value for the future use */
39101f25 2760 qemu_opt_set_number(opts, "size", ram_size, &error_abort);
3b9985e9
MA
2761 *maxram_size = ram_size;
2762
951f2269 2763 if (qemu_opt_get(opts, "maxmem")) {
3b9985e9
MA
2764 uint64_t slots;
2765
2766 sz = qemu_opt_get_size(opts, "maxmem", 0);
214224ad 2767 slots = qemu_opt_get_number(opts, "slots", 0);
3b9985e9 2768 if (sz < ram_size) {
214224ad
PK
2769 error_report("invalid value of -m option maxmem: "
2770 "maximum memory size (0x%" PRIx64 ") must be at least "
2771 "the initial memory size (0x" RAM_ADDR_FMT ")",
2772 sz, ram_size);
3b9985e9 2773 exit(EXIT_FAILURE);
951f2269 2774 } else if (slots && sz == ram_size) {
214224ad
PK
2775 error_report("invalid value of -m option maxmem: "
2776 "memory slots were specified but maximum memory size "
2777 "(0x%" PRIx64 ") is equal to the initial memory size "
2778 "(0x" RAM_ADDR_FMT ")", sz, ram_size);
3b9985e9
MA
2779 exit(EXIT_FAILURE);
2780 }
2781
3b9985e9
MA
2782 *maxram_size = sz;
2783 *ram_slots = slots;
951f2269
DH
2784 } else if (qemu_opt_get(opts, "slots")) {
2785 error_report("invalid -m option value: missing 'maxmem' option");
3b9985e9
MA
2786 exit(EXIT_FAILURE);
2787 }
bbe2d25c
EH
2788
2789 loc_pop(&loc);
3b9985e9
MA
2790}
2791
8d76bfe8
EH
2792static int global_init_func(void *opaque, QemuOpts *opts, Error **errp)
2793{
2794 GlobalProperty *g;
2795
2796 g = g_malloc0(sizeof(*g));
2797 g->driver = qemu_opt_get(opts, "driver");
2798 g->property = qemu_opt_get(opts, "property");
2799 g->value = qemu_opt_get(opts, "value");
8d76bfe8
EH
2800 qdev_prop_register_global(g);
2801 return 0;
2802}
2803
726401be
EH
2804static int qemu_read_default_config_file(void)
2805{
2806 int ret;
2807
2808 ret = qemu_read_config_file(CONFIG_QEMU_CONFDIR "/qemu.conf");
2809 if (ret < 0 && ret != -ENOENT) {
2810 return ret;
2811 }
2812
2813 return 0;
2814}
2815
a0660e0b
PX
2816static void user_register_global_props(void)
2817{
2818 qemu_opts_foreach(qemu_find_opts("global"),
2819 global_init_func, NULL, NULL);
2820}
2821
902b3d5c 2822int main(int argc, char **argv, char **envp)
0824d6fc 2823{
e4bcb14c 2824 int i;
da1fcfda 2825 int snapshot, linux_boot;
7f7f9873 2826 const char *initrd_filename;
a20dd508 2827 const char *kernel_filename, *kernel_cmdline;
f05f47bb
GA
2828 const char *boot_order = NULL;
2829 const char *boot_once = NULL;
3023f332 2830 DisplayState *ds;
8d4e9146 2831 QemuOpts *opts, *machine_opts;
d1cdd92e 2832 QemuOpts *icount_opts = NULL, *accel_opts = NULL;
03b0ba70 2833 QemuOptsList *olist;
cd6f1169 2834 int optind;
6530a97b 2835 const char *optarg;
d63d307f 2836 const char *loadvm = NULL;
0056ae24 2837 MachineClass *machine_class;
c1c8cfe5 2838 const char *cpu_option;
d44229c5 2839 const char *vga_model = NULL;
d4fce24f
PB
2840 const char *qtest_chrdev = NULL;
2841 const char *qtest_log = NULL;
5bb7910a 2842 const char *incoming = NULL;
f29a5614 2843 bool userconfig = true;
cfc58cf3 2844 bool nographic = false;
1f0dfe02 2845 int display_remote = 0;
c235d738
MF
2846 const char *log_mask = NULL;
2847 const char *log_file = NULL;
41fc57e4 2848 char *trace_file = NULL;
3b9985e9 2849 ram_addr_t maxram_size;
c270fb9e 2850 uint64_t ram_slots = 0;
abfd9ce3 2851 FILE *vmstate_dump_file = NULL;
2f78e491 2852 Error *main_loop_err = NULL;
ddbb0d09 2853 Error *err = NULL;
37146e7e 2854 bool list_data_dirs = false;
35471127 2855 char *dir, **dirs;
651af51c 2856 BlockdevOptionsQueue bdo_queue = QSIMPLEQ_HEAD_INITIALIZER(bdo_queue);
0b5538c3 2857
f5852efa 2858 error_init(argv[0]);
fe4db84d
DB
2859 module_call_init(MODULE_INIT_TRACE);
2860
267f685b 2861 qemu_init_cpu_list();
576a94d8 2862 qemu_init_cpu_loop();
d759c951 2863
576a94d8
PB
2864 qemu_mutex_lock_iothread();
2865
fd42deeb 2866 atexit(qemu_run_exit_notifiers);
10f5bff6 2867 qemu_init_exec_dir(argv[0]);
65abca0a 2868
1b71f7c1
AF
2869 module_call_init(MODULE_INIT_QOM);
2870
4d454574 2871 qemu_add_opts(&qemu_drive_opts);
968854c8
AK
2872 qemu_add_drive_opts(&qemu_legacy_drive_opts);
2873 qemu_add_drive_opts(&qemu_common_drive_opts);
2874 qemu_add_drive_opts(&qemu_drive_opts);
c5f3014b 2875 qemu_add_drive_opts(&bdrv_runtime_opts);
4d454574
PB
2876 qemu_add_opts(&qemu_chardev_opts);
2877 qemu_add_opts(&qemu_device_opts);
2878 qemu_add_opts(&qemu_netdev_opts);
78cd6f7b 2879 qemu_add_opts(&qemu_nic_opts);
4d454574
PB
2880 qemu_add_opts(&qemu_net_opts);
2881 qemu_add_opts(&qemu_rtc_opts);
2882 qemu_add_opts(&qemu_global_opts);
2883 qemu_add_opts(&qemu_mon_opts);
2884 qemu_add_opts(&qemu_trace_opts);
2885 qemu_add_opts(&qemu_option_rom_opts);
2886 qemu_add_opts(&qemu_machine_opts);
8d4e9146 2887 qemu_add_opts(&qemu_accel_opts);
6e1d3c1c 2888 qemu_add_opts(&qemu_mem_opts);
12b7f57e 2889 qemu_add_opts(&qemu_smp_opts);
4d454574 2890 qemu_add_opts(&qemu_boot_opts);
4d454574
PB
2891 qemu_add_opts(&qemu_add_fd_opts);
2892 qemu_add_opts(&qemu_object_opts);
d1a0cf73 2893 qemu_add_opts(&qemu_tpmdev_opts);
888a6bc6 2894 qemu_add_opts(&qemu_realtime_opts);
1fdd4748 2895 qemu_add_opts(&qemu_overcommit_opts);
5e2ac519 2896 qemu_add_opts(&qemu_msg_opts);
5d12f961 2897 qemu_add_opts(&qemu_name_opts);
0042109a 2898 qemu_add_opts(&qemu_numa_opts);
1ad9580b 2899 qemu_add_opts(&qemu_icount_opts);
a38bb079 2900 qemu_add_opts(&qemu_semihosting_config_opts);
81b2b810 2901 qemu_add_opts(&qemu_fw_cfg_opts);
34294e2f 2902 module_call_init(MODULE_INIT_OPTS);
4d454574 2903
5db9d4d1 2904 runstate_init();
bd227060 2905 precopy_infrastructure_init();
1693c64c 2906 postcopy_infrastructure_init();
d32749de 2907 monitor_init_globals();
5db9d4d1 2908
ddbb0d09 2909 if (qcrypto_init(&err) < 0) {
c29b77f9 2910 error_reportf_err(err, "cannot initialize crypto: ");
ddbb0d09
DB
2911 exit(1);
2912 }
6875204c 2913
72cf2d4f 2914 QLIST_INIT (&vm_change_state_head);
fe98ac14 2915 os_setup_early_signal_handling();
be995c27 2916
c1c8cfe5 2917 cpu_option = NULL;
33e3963e 2918 snapshot = 0;
c4b1fcc0 2919
7c9d8e07 2920 nb_nics = 0;
3b46e624 2921
142c6b1a
PL
2922 bdrv_init_with_whitelist();
2923
2c02d1ad 2924 autostart = 1;
41bd639b 2925
292444cb
AL
2926 /* first pass of option parsing */
2927 optind = 1;
2928 while (optind < argc) {
2929 if (argv[optind][0] != '-') {
2930 /* disk image */
28e68d68 2931 optind++;
292444cb
AL
2932 } else {
2933 const QEMUOption *popt;
2934
2935 popt = lookup_opt(argc, argv, &optarg, &optind);
2936 switch (popt->index) {
f29a5614
EH
2937 case QEMU_OPTION_nouserconfig:
2938 userconfig = false;
2939 break;
292444cb
AL
2940 }
2941 }
2942 }
2943
1ea06c39 2944 if (userconfig) {
726401be 2945 if (qemu_read_default_config_file() < 0) {
dcfb0939 2946 exit(1);
292444cb
AL
2947 }
2948 }
2949
2950 /* second pass of option parsing */
cd6f1169 2951 optind = 1;
0824d6fc 2952 for(;;) {
cd6f1169 2953 if (optind >= argc)
0824d6fc 2954 break;
6530a97b 2955 if (argv[optind][0] != '-') {
17f30eae 2956 loc_set_cmdline(argv, optind, 1);
d1cdd92e 2957 drive_add(IF_DEFAULT, 0, argv[optind++], HD_OPTS);
cd6f1169
FB
2958 } else {
2959 const QEMUOption *popt;
2960
6530a97b 2961 popt = lookup_opt(argc, argv, &optarg, &optind);
ad96090a 2962 if (!(popt->arch_mask & arch_type)) {
da002526 2963 error_report("Option not supported for this target");
ad96090a
BS
2964 exit(1);
2965 }
cd6f1169 2966 switch(popt->index) {
94fc95cd
JM
2967 case QEMU_OPTION_cpu:
2968 /* hw initialization will check this */
c1c8cfe5 2969 cpu_option = optarg;
94fc95cd 2970 break;
cd6f1169 2971 case QEMU_OPTION_hda:
cd6f1169 2972 case QEMU_OPTION_hdb:
cc1daa40
FB
2973 case QEMU_OPTION_hdc:
2974 case QEMU_OPTION_hdd:
2292ddae
MA
2975 drive_add(IF_DEFAULT, popt->index - QEMU_OPTION_hda, optarg,
2976 HD_OPTS);
fc01f7e7 2977 break;
42e5f393
MA
2978 case QEMU_OPTION_blockdev:
2979 {
2980 Visitor *v;
651af51c 2981 BlockdevOptionsQueueEntry *bdo;
42e5f393 2982
92917cd2
MA
2983 v = qobject_input_visitor_new_str(optarg, "driver",
2984 &error_fatal);
42e5f393 2985
651af51c 2986 bdo = g_new(BlockdevOptionsQueueEntry, 1);
42e5f393
MA
2987 visit_type_BlockdevOptions(v, NULL, &bdo->bdo,
2988 &error_fatal);
2989 visit_free(v);
2990 loc_save(&bdo->loc);
2991 QSIMPLEQ_INSERT_TAIL(&bdo_queue, bdo, entry);
2992 break;
2993 }
e4bcb14c 2994 case QEMU_OPTION_drive:
e2982c3a
MT
2995 if (drive_def(optarg) == NULL) {
2996 exit(1);
2997 }
99efa84d 2998 break;
d058fe03
GH
2999 case QEMU_OPTION_set:
3000 if (qemu_set_option(optarg) != 0)
3001 exit(1);
99efa84d 3002 break;
d0fef6fb
GH
3003 case QEMU_OPTION_global:
3004 if (qemu_global_option(optarg) != 0)
3005 exit(1);
99efa84d 3006 break;
3e3d5815 3007 case QEMU_OPTION_mtdblock:
2292ddae 3008 drive_add(IF_MTD, -1, optarg, MTD_OPTS);
3e3d5815 3009 break;
a1bb27b1 3010 case QEMU_OPTION_sd:
80f4d9fc 3011 drive_add(IF_SD, -1, optarg, SD_OPTS);
a1bb27b1 3012 break;
86f55663 3013 case QEMU_OPTION_pflash:
2292ddae 3014 drive_add(IF_PFLASH, -1, optarg, PFLASH_OPTS);
86f55663 3015 break;
cd6f1169 3016 case QEMU_OPTION_snapshot:
33e3963e
FB
3017 snapshot = 1;
3018 break;
268a362c 3019 case QEMU_OPTION_numa:
70b94331
MA
3020 opts = qemu_opts_parse_noisily(qemu_find_opts("numa"),
3021 optarg, true);
0042109a
WG
3022 if (!opts) {
3023 exit(1);
3024 }
268a362c 3025 break;
1472a95b 3026 case QEMU_OPTION_display:
e3af9f9a 3027 parse_display(optarg);
1472a95b 3028 break;
cd6f1169 3029 case QEMU_OPTION_nographic:
cfc58cf3
EH
3030 olist = qemu_find_opts("machine");
3031 qemu_opts_parse_noisily(olist, "graphics=off", false);
3032 nographic = true;
0c8d7065 3033 dpy.type = DISPLAY_TYPE_NONE;
a20dd508 3034 break;
4d3b6f6e 3035 case QEMU_OPTION_curses:
47b05369 3036#ifdef CONFIG_CURSES
14f130fa 3037 dpy.type = DISPLAY_TYPE_CURSES;
47b05369 3038#else
e08bb301 3039 error_report("curses or iconv support is disabled");
47b05369 3040 exit(1);
4d3b6f6e 3041#endif
47b05369 3042 break;
a171fe39 3043 case QEMU_OPTION_portrait:
9312805d
VK
3044 graphic_rotate = 90;
3045 break;
3046 case QEMU_OPTION_rotate:
3047 graphic_rotate = strtol(optarg, (char **) &optarg, 10);
3048 if (graphic_rotate != 0 && graphic_rotate != 90 &&
3049 graphic_rotate != 180 && graphic_rotate != 270) {
f61eddcb 3050 error_report("only 90, 180, 270 deg rotation is available");
9312805d
VK
3051 exit(1);
3052 }
a171fe39 3053 break;
cd6f1169 3054 case QEMU_OPTION_kernel:
79087c78
MA
3055 qemu_opts_set(qemu_find_opts("machine"), 0, "kernel", optarg,
3056 &error_abort);
a0abe474
PM
3057 break;
3058 case QEMU_OPTION_initrd:
79087c78
MA
3059 qemu_opts_set(qemu_find_opts("machine"), 0, "initrd", optarg,
3060 &error_abort);
a20dd508 3061 break;
cd6f1169 3062 case QEMU_OPTION_append:
79087c78
MA
3063 qemu_opts_set(qemu_find_opts("machine"), 0, "append", optarg,
3064 &error_abort);
313aa567 3065 break;
412beee6 3066 case QEMU_OPTION_dtb:
79087c78
MA
3067 qemu_opts_set(qemu_find_opts("machine"), 0, "dtb", optarg,
3068 &error_abort);
412beee6 3069 break;
cd6f1169 3070 case QEMU_OPTION_cdrom:
2292ddae 3071 drive_add(IF_DEFAULT, 2, optarg, CDROM_OPTS);
36b486bb 3072 break;
cd6f1169 3073 case QEMU_OPTION_boot:
70b94331
MA
3074 opts = qemu_opts_parse_noisily(qemu_find_opts("boot-opts"),
3075 optarg, true);
8281abd5
MA
3076 if (!opts) {
3077 exit(1);
36b486bb
FB
3078 }
3079 break;
cd6f1169 3080 case QEMU_OPTION_fda:
cd6f1169 3081 case QEMU_OPTION_fdb:
2292ddae
MA
3082 drive_add(IF_FLOPPY, popt->index - QEMU_OPTION_fda,
3083 optarg, FD_OPTS);
c45886db 3084 break;
52ca8d6a
FB
3085 case QEMU_OPTION_no_fd_bootchk:
3086 fd_bootchk = 0;
3087 break;
a1ea458f 3088 case QEMU_OPTION_netdev:
d30300f7 3089 default_net = 0;
3329f07b 3090 if (net_client_parse(qemu_find_opts("netdev"), optarg) == -1) {
a1ea458f
MM
3091 exit(1);
3092 }
3093 break;
78cd6f7b
TH
3094 case QEMU_OPTION_nic:
3095 default_net = 0;
3096 if (net_client_parse(qemu_find_opts("nic"), optarg) == -1) {
3097 exit(1);
3098 }
3099 break;
7c9d8e07 3100 case QEMU_OPTION_net:
d30300f7 3101 default_net = 0;
3329f07b 3102 if (net_client_parse(qemu_find_opts("net"), optarg) == -1) {
c4b1fcc0
FB
3103 exit(1);
3104 }
702c651c 3105 break;
f9dadc98
RS
3106#ifdef CONFIG_LIBISCSI
3107 case QEMU_OPTION_iscsi:
70b94331
MA
3108 opts = qemu_opts_parse_noisily(qemu_find_opts("iscsi"),
3109 optarg, false);
f9dadc98
RS
3110 if (!opts) {
3111 exit(1);
3112 }
3113 break;
c7f74643 3114#endif
dc72ac14 3115 case QEMU_OPTION_bt:
c0188e69
TH
3116 warn_report("The bluetooth subsystem is deprecated and will "
3117 "be removed soon. If the bluetooth subsystem is "
3118 "still useful for you, please send a mail to "
3119 "qemu-devel@nongnu.org with your usecase.");
bd3c948d 3120 add_device_config(DEV_BT, optarg);
dc72ac14 3121 break;
1d14ffa9 3122 case QEMU_OPTION_audio_help:
71830221 3123 audio_legacy_help();
1d14ffa9
FB
3124 exit (0);
3125 break;
71830221
KZ
3126 case QEMU_OPTION_audiodev:
3127 audio_parse_option(optarg);
3128 break;
1d14ffa9
FB
3129 case QEMU_OPTION_soundhw:
3130 select_soundhw (optarg);
3131 break;
cd6f1169 3132 case QEMU_OPTION_h:
15f82208 3133 help(0);
cd6f1169 3134 break;
9bd7e6d9
PB
3135 case QEMU_OPTION_version:
3136 version();
3137 exit(0);
3138 break;
3b9985e9 3139 case QEMU_OPTION_m:
70b94331
MA
3140 opts = qemu_opts_parse_noisily(qemu_find_opts("memory"),
3141 optarg, true);
6e1d3c1c
IM
3142 if (!opts) {
3143 exit(EXIT_FAILURE);
3144 }
cd6f1169 3145 break;
d1a0cf73
SB
3146#ifdef CONFIG_TPM
3147 case QEMU_OPTION_tpmdev:
3148 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg) < 0) {
3149 exit(1);
3150 }
3151 break;
3152#endif
c902760f
MT
3153 case QEMU_OPTION_mempath:
3154 mem_path = optarg;
3155 break;
c902760f
MT
3156 case QEMU_OPTION_mem_prealloc:
3157 mem_prealloc = 1;
3158 break;
cd6f1169 3159 case QEMU_OPTION_d:
c235d738
MF
3160 log_mask = optarg;
3161 break;
3162 case QEMU_OPTION_D:
3163 log_file = optarg;
cd6f1169 3164 break;
3514552e 3165 case QEMU_OPTION_DFILTER:
bd6fee9f 3166 qemu_set_dfilter_ranges(optarg, &error_fatal);
3514552e 3167 break;
9c09a251
RH
3168 case QEMU_OPTION_seed:
3169 qemu_guest_random_seed_main(optarg, &error_fatal);
3170 break;
cd6f1169 3171 case QEMU_OPTION_s:
ef0c4a0d 3172 add_device_config(DEV_GDB, "tcp::" DEFAULT_GDBSTUB_PORT);
cd6f1169 3173 break;
59030a8c 3174 case QEMU_OPTION_gdb:
ef0c4a0d 3175 add_device_config(DEV_GDB, optarg);
cd6f1169 3176 break;
cd6f1169 3177 case QEMU_OPTION_L:
37146e7e
RJ
3178 if (is_help_option(optarg)) {
3179 list_data_dirs = true;
2a1cce90
GH
3180 } else {
3181 qemu_add_data_dir(optarg);
4524051c 3182 }
cd6f1169 3183 break;
1192dad8 3184 case QEMU_OPTION_bios:
79087c78
MA
3185 qemu_opts_set(qemu_find_opts("machine"), 0, "firmware", optarg,
3186 &error_abort);
1192dad8 3187 break;
1b530a6d
AJ
3188 case QEMU_OPTION_singlestep:
3189 singlestep = 1;
3190 break;
cd6f1169 3191 case QEMU_OPTION_S:
3c07f8e8 3192 autostart = 0;
cd6f1169 3193 break;
99efa84d
MA
3194 case QEMU_OPTION_k:
3195 keyboard_layout = optarg;
3196 break;
3893c124 3197 case QEMU_OPTION_vga:
a369da5f 3198 vga_model = optarg;
7f1b17f2 3199 default_vga = 0;
1bfe856e 3200 break;
e9b137c2
FB
3201 case QEMU_OPTION_g:
3202 {
3203 const char *p;
3204 int w, h, depth;
3205 p = optarg;
3206 w = strtol(p, (char **)&p, 10);
3207 if (w <= 0) {
3208 graphic_error:
f61eddcb 3209 error_report("invalid resolution or depth");
e9b137c2
FB
3210 exit(1);
3211 }
3212 if (*p != 'x')
3213 goto graphic_error;
3214 p++;
3215 h = strtol(p, (char **)&p, 10);
3216 if (h <= 0)
3217 goto graphic_error;
3218 if (*p == 'x') {
3219 p++;
3220 depth = strtol(p, (char **)&p, 10);
5fafdf24 3221 if (depth != 8 && depth != 15 && depth != 16 &&
e9b137c2
FB
3222 depth != 24 && depth != 32)
3223 goto graphic_error;
3224 } else if (*p == '\0') {
3225 depth = graphic_depth;
3226 } else {
3227 goto graphic_error;
3228 }
3b46e624 3229
e9b137c2
FB
3230 graphic_width = w;
3231 graphic_height = h;
3232 graphic_depth = depth;
3233 }
3234 break;
20d8a3ed
TS
3235 case QEMU_OPTION_echr:
3236 {
3237 char *r;
3238 term_escape_char = strtol(optarg, &r, 0);
3239 if (r == optarg)
3240 printf("Bad argument to echr\n");
3241 break;
3242 }
82c643ff 3243 case QEMU_OPTION_monitor:
6ca5582d 3244 default_monitor = 0;
70e098af 3245 if (strncmp(optarg, "none", 4)) {
4821cd4c 3246 monitor_parse(optarg, "readline", false);
70e098af 3247 }
6ca5582d
GH
3248 break;
3249 case QEMU_OPTION_qmp:
4821cd4c
HR
3250 monitor_parse(optarg, "control", false);
3251 default_monitor = 0;
3252 break;
3253 case QEMU_OPTION_qmp_pretty:
3254 monitor_parse(optarg, "control", true);
2d114dc1 3255 default_monitor = 0;
82c643ff 3256 break;
22a0e04b 3257 case QEMU_OPTION_mon:
70b94331
MA
3258 opts = qemu_opts_parse_noisily(qemu_find_opts("mon"), optarg,
3259 true);
22a0e04b 3260 if (!opts) {
22a0e04b
GH
3261 exit(1);
3262 }
2d114dc1 3263 default_monitor = 0;
22a0e04b 3264 break;
191bc01b 3265 case QEMU_OPTION_chardev:
70b94331
MA
3266 opts = qemu_opts_parse_noisily(qemu_find_opts("chardev"),
3267 optarg, true);
191bc01b 3268 if (!opts) {
191bc01b
GH
3269 exit(1);
3270 }
191bc01b 3271 break;
74db920c 3272 case QEMU_OPTION_fsdev:
03b0ba70
GH
3273 olist = qemu_find_opts("fsdev");
3274 if (!olist) {
5dfdae81 3275 error_report("fsdev support is disabled");
03b0ba70
GH
3276 exit(1);
3277 }
70b94331 3278 opts = qemu_opts_parse_noisily(olist, optarg, true);
74db920c 3279 if (!opts) {
74db920c
GS
3280 exit(1);
3281 }
3282 break;
3d54abc7 3283 case QEMU_OPTION_virtfs: {
e14ea479
SH
3284 QemuOpts *fsdev;
3285 QemuOpts *device;
32b69436 3286 const char *writeout, *sock_fd, *socket, *path, *security_model;
3d54abc7 3287
03b0ba70
GH
3288 olist = qemu_find_opts("virtfs");
3289 if (!olist) {
5dfdae81 3290 error_report("virtfs support is disabled");
03b0ba70
GH
3291 exit(1);
3292 }
70b94331 3293 opts = qemu_opts_parse_noisily(olist, optarg, true);
3d54abc7 3294 if (!opts) {
3d54abc7
GS
3295 exit(1);
3296 }
3297
fbcbf101 3298 if (qemu_opt_get(opts, "fsdriver") == NULL ||
99519f0a 3299 qemu_opt_get(opts, "mount_tag") == NULL) {
8afb9000 3300 error_report("Usage: -virtfs fsdriver,mount_tag=tag");
9ce56db6
VJ
3301 exit(1);
3302 }
e14ea479 3303 fsdev = qemu_opts_create(qemu_find_opts("fsdev"),
3baa0a6a 3304 qemu_opts_id(opts) ?:
8be7e7e4
LC
3305 qemu_opt_get(opts, "mount_tag"),
3306 1, NULL);
e14ea479 3307 if (!fsdev) {
3baa0a6a 3308 error_report("duplicate or invalid fsdev id: %s",
f61eddcb 3309 qemu_opt_get(opts, "mount_tag"));
3d54abc7
GS
3310 exit(1);
3311 }
d3ab98e6
AK
3312
3313 writeout = qemu_opt_get(opts, "writeout");
3314 if (writeout) {
3315#ifdef CONFIG_SYNC_FILE_RANGE
f43e47db 3316 qemu_opt_set(fsdev, "writeout", writeout, &error_abort);
d3ab98e6 3317#else
f61eddcb
EH
3318 error_report("writeout=immediate not supported "
3319 "on this platform");
d3ab98e6
AK
3320 exit(1);
3321#endif
3322 }
f43e47db
MA
3323 qemu_opt_set(fsdev, "fsdriver",
3324 qemu_opt_get(opts, "fsdriver"), &error_abort);
32b69436
GK
3325 path = qemu_opt_get(opts, "path");
3326 if (path) {
3327 qemu_opt_set(fsdev, "path", path, &error_abort);
3328 }
3329 security_model = qemu_opt_get(opts, "security_model");
3330 if (security_model) {
3331 qemu_opt_set(fsdev, "security_model", security_model,
3332 &error_abort);
3333 }
84a87cc4
MK
3334 socket = qemu_opt_get(opts, "socket");
3335 if (socket) {
f43e47db 3336 qemu_opt_set(fsdev, "socket", socket, &error_abort);
84a87cc4 3337 }
4c793dda
MK
3338 sock_fd = qemu_opt_get(opts, "sock_fd");
3339 if (sock_fd) {
f43e47db 3340 qemu_opt_set(fsdev, "sock_fd", sock_fd, &error_abort);
4c793dda 3341 }
e14ea479 3342
2c74c2cb 3343 qemu_opt_set_bool(fsdev, "readonly",
cccb7967
MA
3344 qemu_opt_get_bool(opts, "readonly", 0),
3345 &error_abort);
87ea75d5
PC
3346 device = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
3347 &error_abort);
f43e47db 3348 qemu_opt_set(device, "driver", "virtio-9p-pci", &error_abort);
e14ea479 3349 qemu_opt_set(device, "fsdev",
3baa0a6a 3350 qemu_opts_id(fsdev), &error_abort);
e14ea479 3351 qemu_opt_set(device, "mount_tag",
f43e47db 3352 qemu_opt_get(opts, "mount_tag"), &error_abort);
3d54abc7
GS
3353 break;
3354 }
9db221ae
AK
3355 case QEMU_OPTION_virtfs_synth: {
3356 QemuOpts *fsdev;
3357 QemuOpts *device;
3358
6e4199af
GK
3359 warn_report("'-virtfs_synth' is deprecated, please use "
3360 "'-fsdev synth' and '-device virtio-9p-...' "
3361 "instead");
3362
8be7e7e4
LC
3363 fsdev = qemu_opts_create(qemu_find_opts("fsdev"), "v_synth",
3364 1, NULL);
9db221ae 3365 if (!fsdev) {
f61eddcb 3366 error_report("duplicate option: %s", "virtfs_synth");
9db221ae
AK
3367 exit(1);
3368 }
f43e47db 3369 qemu_opt_set(fsdev, "fsdriver", "synth", &error_abort);
9db221ae 3370
87ea75d5
PC
3371 device = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
3372 &error_abort);
f43e47db
MA
3373 qemu_opt_set(device, "driver", "virtio-9p-pci", &error_abort);
3374 qemu_opt_set(device, "fsdev", "v_synth", &error_abort);
3375 qemu_opt_set(device, "mount_tag", "v_synth", &error_abort);
9db221ae
AK
3376 break;
3377 }
82c643ff 3378 case QEMU_OPTION_serial:
998bbd74
GH
3379 add_device_config(DEV_SERIAL, optarg);
3380 default_serial = 0;
18141ed6
JK
3381 if (strncmp(optarg, "mon:", 4) == 0) {
3382 default_monitor = 0;
3383 }
82c643ff 3384 break;
9dd986cc 3385 case QEMU_OPTION_watchdog:
09aaa160 3386 if (watchdog) {
f61eddcb 3387 error_report("only one watchdog option may be given");
09aaa160
MA
3388 return 1;
3389 }
3390 watchdog = optarg;
9dd986cc
RJ
3391 break;
3392 case QEMU_OPTION_watchdog_action:
3393 if (select_watchdog_action(optarg) == -1) {
3e515373 3394 error_report("unknown -watchdog-action parameter");
9dd986cc
RJ
3395 exit(1);
3396 }
3397 break;
6508fe59 3398 case QEMU_OPTION_parallel:
6a5e8b0e
GH
3399 add_device_config(DEV_PARALLEL, optarg);
3400 default_parallel = 0;
18141ed6
JK
3401 if (strncmp(optarg, "mon:", 4) == 0) {
3402 default_monitor = 0;
3403 }
6508fe59 3404 break;
c9f398e5
PA
3405 case QEMU_OPTION_debugcon:
3406 add_device_config(DEV_DEBUGCON, optarg);
3407 break;
99efa84d
MA
3408 case QEMU_OPTION_loadvm:
3409 loadvm = optarg;
3410 break;
d63d307f 3411 case QEMU_OPTION_full_screen:
0c8d7065
GH
3412 dpy.has_full_screen = true;
3413 dpy.full_screen = true;
d63d307f 3414 break;
3780e197
TS
3415 case QEMU_OPTION_alt_grab:
3416 alt_grab = 1;
3417 break;
0ca9f8a4
DK
3418 case QEMU_OPTION_ctrl_grab:
3419 ctrl_grab = 1;
3420 break;
667accab 3421 case QEMU_OPTION_no_quit:
0c8d7065
GH
3422 dpy.has_window_close = true;
3423 dpy.window_close = false;
667accab 3424 break;
7d957bd8 3425 case QEMU_OPTION_sdl:
24f6ff86 3426#ifdef CONFIG_SDL
fe91f36a 3427 dpy.type = DISPLAY_TYPE_SDL;
7d957bd8 3428 break;
58fc096c 3429#else
f61eddcb 3430 error_report("SDL support is disabled");
58fc096c 3431 exit(1);
667accab 3432#endif
f7cce898 3433 case QEMU_OPTION_pidfile:
93815bc2 3434 pid_file = optarg;
f7cce898 3435 break;
a09db21f
FB
3436 case QEMU_OPTION_win2k_hack:
3437 win2k_install_hack = 1;
3438 break;
8a92ea2f 3439 case QEMU_OPTION_acpitable:
70b94331
MA
3440 opts = qemu_opts_parse_noisily(qemu_find_opts("acpi"),
3441 optarg, true);
f46e720a
LE
3442 if (!opts) {
3443 exit(1);
3444 }
9f57061c 3445 acpi_table_add(opts, &error_fatal);
8a92ea2f 3446 break;
b6f6e3d3 3447 case QEMU_OPTION_smbios:
70b94331
MA
3448 opts = qemu_opts_parse_noisily(qemu_find_opts("smbios"),
3449 optarg, false);
f46e720a
LE
3450 if (!opts) {
3451 exit(1);
3452 }
1007a37e 3453 smbios_entry_add(opts, &error_fatal);
b6f6e3d3 3454 break;
81b2b810 3455 case QEMU_OPTION_fwcfg:
70b94331
MA
3456 opts = qemu_opts_parse_noisily(qemu_find_opts("fw_cfg"),
3457 optarg, true);
81b2b810
GS
3458 if (opts == NULL) {
3459 exit(1);
3460 }
3461 break;
047f7038
IM
3462 case QEMU_OPTION_preconfig:
3463 preconfig_exit_requested = false;
3464 break;
7ba1e619 3465 case QEMU_OPTION_enable_kvm:
303d4e86 3466 olist = qemu_find_opts("machine");
70b94331 3467 qemu_opts_parse_noisily(olist, "accel=kvm", false);
303d4e86 3468 break;
364c3e6b 3469 case QEMU_OPTION_M:
303d4e86
AP
3470 case QEMU_OPTION_machine:
3471 olist = qemu_find_opts("machine");
70b94331 3472 opts = qemu_opts_parse_noisily(olist, optarg, true);
303d4e86 3473 if (!opts) {
303d4e86
AP
3474 exit(1);
3475 }
7ba1e619 3476 break;
a0dac021
JK
3477 case QEMU_OPTION_no_kvm:
3478 olist = qemu_find_opts("machine");
70b94331 3479 qemu_opts_parse_noisily(olist, "accel=tcg", false);
a0dac021 3480 break;
a20fa79f 3481 case QEMU_OPTION_accel:
8d4e9146
FK
3482 accel_opts = qemu_opts_parse_noisily(qemu_find_opts("accel"),
3483 optarg, true);
3484 optarg = qemu_opt_get(accel_opts, "accel");
bde4d920 3485 if (!optarg || is_help_option(optarg)) {
cbe6d636
WSM
3486 printf("Accelerators supported in QEMU binary:\n");
3487 GSList *el, *accel_list = object_class_get_list(TYPE_ACCEL,
3488 false);
3489 for (el = accel_list; el; el = el->next) {
3490 gchar *typename = g_strdup(object_class_get_name(
3491 OBJECT_CLASS(el->data)));
3492 /* omit qtest which is used for tests only */
3493 if (g_strcmp0(typename, ACCEL_CLASS_NAME("qtest")) &&
3494 g_str_has_suffix(typename, ACCEL_CLASS_SUFFIX)) {
3495 gchar **optname = g_strsplit(typename,
3496 ACCEL_CLASS_SUFFIX, 0);
3497 printf("%s\n", optname[0]);
3498 g_free(optname);
3499 }
3500 g_free(typename);
3501 }
3502 g_slist_free(accel_list);
a20fa79f 3503 exit(0);
8d4e9146 3504 }
a20fa79f
TH
3505 opts = qemu_opts_create(qemu_find_opts("machine"), NULL,
3506 false, &error_abort);
3507 qemu_opt_set(opts, "accel", optarg, &error_abort);
8d4e9146 3508 break;
bb36d470 3509 case QEMU_OPTION_usb:
fa5358c6 3510 olist = qemu_find_opts("machine");
70b94331 3511 qemu_opts_parse_noisily(olist, "usb=on", false);
bb36d470 3512 break;
a594cfbf 3513 case QEMU_OPTION_usbdevice:
a358a3af
TH
3514 error_report("'-usbdevice' is deprecated, please use "
3515 "'-device usb-...' instead");
fa5358c6 3516 olist = qemu_find_opts("machine");
70b94331 3517 qemu_opts_parse_noisily(olist, "usb=on", false);
bd3c948d
GH
3518 add_device_config(DEV_USB, optarg);
3519 break;
3520 case QEMU_OPTION_device:
70b94331
MA
3521 if (!qemu_opts_parse_noisily(qemu_find_opts("device"),
3522 optarg, true)) {
f31d07d1
GH
3523 exit(1);
3524 }
a594cfbf 3525 break;
6a00d601 3526 case QEMU_OPTION_smp:
70b94331
MA
3527 if (!qemu_opts_parse_noisily(qemu_find_opts("smp-opts"),
3528 optarg, true)) {
6be68d7e
JS
3529 exit(1);
3530 }
6a00d601 3531 break;
99efa84d 3532 case QEMU_OPTION_vnc:
7b1ee0f2 3533 vnc_parse(optarg, &error_fatal);
821601ea 3534 break;
6515b203
FB
3535 case QEMU_OPTION_no_acpi:
3536 acpi_enabled = 0;
3537 break;
16b29ae1
AL
3538 case QEMU_OPTION_no_hpet:
3539 no_hpet = 1;
3540 break;
d1beab82
FB
3541 case QEMU_OPTION_no_reboot:
3542 no_reboot = 1;
3543 break;
b2f76161
AJ
3544 case QEMU_OPTION_no_shutdown:
3545 no_shutdown = 1;
3546 break;
9467cd46
AZ
3547 case QEMU_OPTION_show_cursor:
3548 cursor_hide = 0;
3549 break;
8fcb1b90 3550 case QEMU_OPTION_uuid:
9c5ce8db 3551 if (qemu_uuid_parse(optarg, &qemu_uuid) < 0) {
4cd70f34 3552 error_report("failed to parse UUID string: wrong format");
8fcb1b90
BS
3553 exit(1);
3554 }
fc3b3295 3555 qemu_uuid_set = true;
8fcb1b90 3556 break;
99efa84d
MA
3557 case QEMU_OPTION_option_rom:
3558 if (nb_option_roms >= MAX_OPTION_ROMS) {
3e515373 3559 error_report("too many option ROMs");
99efa84d
MA
3560 exit(1);
3561 }
70b94331
MA
3562 opts = qemu_opts_parse_noisily(qemu_find_opts("option-rom"),
3563 optarg, true);
49295ebc
MA
3564 if (!opts) {
3565 exit(1);
3566 }
2e55e842
GN
3567 option_rom[nb_option_roms].name = qemu_opt_get(opts, "romfile");
3568 option_rom[nb_option_roms].bootindex =
3569 qemu_opt_get_number(opts, "bootindex", -1);
3570 if (!option_rom[nb_option_roms].name) {
f61eddcb 3571 error_report("Option ROM file is not specified");
2e55e842
GN
3572 exit(1);
3573 }
99efa84d
MA
3574 nb_option_roms++;
3575 break;
8e71621f 3576 case QEMU_OPTION_semihosting:
f1672e6f 3577 qemu_semihosting_enable();
a38bb079
LI
3578 break;
3579 case QEMU_OPTION_semihosting_config:
f1672e6f 3580 if (qemu_semihosting_config_options(optarg) != 0) {
a38bb079
LI
3581 exit(1);
3582 }
8e71621f 3583 break;
c35734b2 3584 case QEMU_OPTION_name:
70b94331
MA
3585 opts = qemu_opts_parse_noisily(qemu_find_opts("name"),
3586 optarg, true);
5d12f961
DDAG
3587 if (!opts) {
3588 exit(1);
3589 }
c35734b2 3590 break;
66508601
BS
3591 case QEMU_OPTION_prom_env:
3592 if (nb_prom_envs >= MAX_PROM_ENVS) {
3e515373 3593 error_report("too many prom variables");
66508601
BS
3594 exit(1);
3595 }
3596 prom_envs[nb_prom_envs] = optarg;
3597 nb_prom_envs++;
3598 break;
2b8f2d41
AZ
3599 case QEMU_OPTION_old_param:
3600 old_param = 1;
05ebd537 3601 break;
1ed2fc1f 3602 case QEMU_OPTION_rtc:
70b94331
MA
3603 opts = qemu_opts_parse_noisily(qemu_find_opts("rtc"), optarg,
3604 false);
1ed2fc1f 3605 if (!opts) {
1ed2fc1f 3606 exit(1);
7e0af5d0
FB
3607 }
3608 break;
26a5f13b 3609 case QEMU_OPTION_tb_size:
f940488f
EC
3610#ifndef CONFIG_TCG
3611 error_report("TCG is disabled");
3612 exit(1);
3613#endif
8b3ae692
PB
3614 if (qemu_strtoul(optarg, NULL, 0, &tcg_tb_size) < 0) {
3615 error_report("Invalid argument to -tb-size");
3616 exit(1);
d5ab9713 3617 }
26a5f13b 3618 break;
2e70f6ef 3619 case QEMU_OPTION_icount:
70b94331
MA
3620 icount_opts = qemu_opts_parse_noisily(qemu_find_opts("icount"),
3621 optarg, true);
1ad9580b
ST
3622 if (!icount_opts) {
3623 exit(1);
3624 }
2e70f6ef 3625 break;
5bb7910a 3626 case QEMU_OPTION_incoming:
7c76235a
DDAG
3627 if (!incoming) {
3628 runstate_set(RUN_STATE_INMIGRATE);
3629 }
5bb7910a
AL
3630 incoming = optarg;
3631 break;
d15c05fc 3632 case QEMU_OPTION_only_migratable:
811f8652 3633 only_migratable = 1;
d15c05fc 3634 break;
d8c208dd 3635 case QEMU_OPTION_nodefaults:
d44229c5 3636 has_defaults = 0;
d8c208dd 3637 break;
e37630ca 3638 case QEMU_OPTION_xen_domid:
ad96090a 3639 if (!(xen_available())) {
da002526 3640 error_report("Option not supported for this target");
ad96090a
BS
3641 exit(1);
3642 }
e37630ca
AL
3643 xen_domid = atoi(optarg);
3644 break;
e37630ca 3645 case QEMU_OPTION_xen_attach:
ad96090a 3646 if (!(xen_available())) {
da002526 3647 error_report("Option not supported for this target");
ad96090a
BS
3648 exit(1);
3649 }
e37630ca
AL
3650 xen_mode = XEN_ATTACH;
3651 break;
1c599472
PD
3652 case QEMU_OPTION_xen_domid_restrict:
3653 if (!(xen_available())) {
3654 error_report("Option not supported for this target");
3655 exit(1);
3656 }
3657 xen_domid_restrict = true;
3658 break;
ab6540d5 3659 case QEMU_OPTION_trace:
e9e0bb2a
DL
3660 g_free(trace_file);
3661 trace_file = trace_opt_parse(optarg);
ab6540d5 3662 break;
715a664a
GH
3663 case QEMU_OPTION_readconfig:
3664 {
dcfb0939
KW
3665 int ret = qemu_read_config_file(optarg);
3666 if (ret < 0) {
f61eddcb
EH
3667 error_report("read config %s: %s", optarg,
3668 strerror(-ret));
715a664a
GH
3669 exit(1);
3670 }
715a664a
GH
3671 break;
3672 }
29b0040b
GH
3673 case QEMU_OPTION_spice:
3674 olist = qemu_find_opts("spice");
3675 if (!olist) {
5dfdae81 3676 error_report("spice support is disabled");
29b0040b
GH
3677 exit(1);
3678 }
70b94331 3679 opts = qemu_opts_parse_noisily(olist, optarg, false);
29b0040b 3680 if (!opts) {
29b0040b
GH
3681 exit(1);
3682 }
f963e4d0 3683 display_remote++;
29b0040b 3684 break;
715a664a
GH
3685 case QEMU_OPTION_writeconfig:
3686 {
3687 FILE *fp;
3688 if (strcmp(optarg, "-") == 0) {
3689 fp = stdout;
3690 } else {
3691 fp = fopen(optarg, "w");
3692 if (fp == NULL) {
f61eddcb
EH
3693 error_report("open %s: %s", optarg,
3694 strerror(errno));
715a664a
GH
3695 exit(1);
3696 }
3697 }
3698 qemu_config_write(fp);
7fb8b5d9
CG
3699 if (fp != stdout) {
3700 fclose(fp);
3701 }
715a664a
GH
3702 break;
3703 }
c7f0f3b1
AL
3704 case QEMU_OPTION_qtest:
3705 qtest_chrdev = optarg;
3706 break;
3707 case QEMU_OPTION_qtest_log:
3708 qtest_log = optarg;
3709 break;
7d76ad4f 3710 case QEMU_OPTION_sandbox:
2bb814a4
MAL
3711 olist = qemu_find_opts("sandbox");
3712 if (!olist) {
3713#ifndef CONFIG_SECCOMP
3714 error_report("-sandbox support is not enabled "
3715 "in this QEMU binary");
3716#endif
3717 exit(1);
3718 }
3719
3720 opts = qemu_opts_parse_noisily(olist, optarg, true);
7d76ad4f 3721 if (!opts) {
49295ebc 3722 exit(1);
7d76ad4f
EO
3723 }
3724 break;
587ed6be
CB
3725 case QEMU_OPTION_add_fd:
3726#ifndef _WIN32
70b94331
MA
3727 opts = qemu_opts_parse_noisily(qemu_find_opts("add-fd"),
3728 optarg, false);
587ed6be 3729 if (!opts) {
49295ebc 3730 exit(1);
587ed6be
CB
3731 }
3732#else
3733 error_report("File descriptor passing is disabled on this "
3734 "platform");
3735 exit(1);
3736#endif
3737 break;
68d98d3e 3738 case QEMU_OPTION_object:
70b94331
MA
3739 opts = qemu_opts_parse_noisily(qemu_find_opts("object"),
3740 optarg, true);
49295ebc
MA
3741 if (!opts) {
3742 exit(1);
3743 }
68d98d3e 3744 break;
888a6bc6 3745 case QEMU_OPTION_realtime:
583f34c4
TH
3746 warn_report("'-realtime mlock=...' is deprecated, please use "
3747 "'-overcommit mem-lock=...' instead");
70b94331
MA
3748 opts = qemu_opts_parse_noisily(qemu_find_opts("realtime"),
3749 optarg, false);
888a6bc6
SM
3750 if (!opts) {
3751 exit(1);
3752 }
6f131f13
MT
3753 /* Don't override the -overcommit option if set */
3754 enable_mlock = enable_mlock ||
3755 qemu_opt_get_bool(opts, "mlock", true);
3756 break;
3757 case QEMU_OPTION_overcommit:
3758 opts = qemu_opts_parse_noisily(qemu_find_opts("overcommit"),
3759 optarg, false);
3760 if (!opts) {
3761 exit(1);
3762 }
3763 /* Don't override the -realtime option if set */
3764 enable_mlock = enable_mlock ||
3765 qemu_opt_get_bool(opts, "mem-lock", false);
3766 enable_cpu_pm = qemu_opt_get_bool(opts, "cpu-pm", false);
888a6bc6 3767 break;
5e2ac519 3768 case QEMU_OPTION_msg:
70b94331
MA
3769 opts = qemu_opts_parse_noisily(qemu_find_opts("msg"), optarg,
3770 false);
5e2ac519
SA
3771 if (!opts) {
3772 exit(1);
3773 }
3774 configure_msg(opts);
3775 break;
abfd9ce3 3776 case QEMU_OPTION_dump_vmstate:
522abf69 3777 if (vmstate_dump_file) {
f61eddcb
EH
3778 error_report("only one '-dump-vmstate' "
3779 "option may be given");
522abf69
GA
3780 exit(1);
3781 }
abfd9ce3
AS
3782 vmstate_dump_file = fopen(optarg, "w");
3783 if (vmstate_dump_file == NULL) {
f61eddcb 3784 error_report("open %s: %s", optarg, strerror(errno));
abfd9ce3
AS
3785 exit(1);
3786 }
12df189d
EC
3787 break;
3788 case QEMU_OPTION_enable_sync_profile:
3789 qsp_enable();
abfd9ce3 3790 break;
aec0d0e1
MP
3791 case QEMU_OPTION_nouserconfig:
3792 /* Nothing to be parsed here. Especially, do not error out below. */
3793 break;
59a5264b 3794 default:
1217d6ca
TH
3795 if (os_parse_cmd_args(popt->index, optarg)) {
3796 error_report("Option not supported in this build");
3797 exit(1);
3798 }
cd6f1169 3799 }
0824d6fc
FB
3800 }
3801 }
43fa1e0b
EH
3802 /*
3803 * Clear error location left behind by the loop.
3804 * Best done right after the loop. Do not insert code here!
3805 */
3806 loc_set_none();
364c3e6b 3807
fc4a4734
MA
3808 user_register_global_props();
3809
4c27b859
PD
3810 replay_configure(icount_opts);
3811
047f7038
IM
3812 if (incoming && !preconfig_exit_requested) {
3813 error_report("'preconfig' and 'incoming' options are "
3814 "mutually exclusive");
3815 exit(EXIT_FAILURE);
3816 }
3817
eb6a5209
AP
3818 configure_rtc(qemu_find_opts_singleton("rtc"));
3819
7580f231 3820 machine_class = select_machine();
1a3ec8c1 3821 object_set_machine_compat_props(machine_class->compat_props);
076b35b5
ND
3822
3823 set_memory_options(&ram_slots, &maxram_size, machine_class);
3b9985e9 3824
2d9c2725 3825 os_daemonize();
73c6e401 3826 rcu_disable_atfork();
2d9c2725 3827
9e6bdef2
MAL
3828 if (pid_file && !qemu_write_pidfile(pid_file, &err)) {
3829 error_reportf_err(err, "cannot create PID file: ");
004c8e00
MT
3830 exit(1);
3831 }
3832
90a84d13
MAL
3833 qemu_unlink_pidfile_notifier.notify = qemu_unlink_pidfile;
3834 qemu_add_exit_notifier(&qemu_unlink_pidfile_notifier);
3835
2f78e491 3836 if (qemu_init_main_loop(&main_loop_err)) {
565f65d2 3837 error_report_err(main_loop_err);
1c53786f
PB
3838 exit(1);
3839 }
3840
9d0fdecb 3841#ifdef CONFIG_SECCOMP
5780760f 3842 olist = qemu_find_opts_err("sandbox", NULL);
65484597
MA
3843 if (olist) {
3844 qemu_opts_foreach(olist, parse_sandbox, NULL, &error_fatal);
7d76ad4f 3845 }
9d0fdecb 3846#endif
7d76ad4f 3847
5343bda4
MA
3848 qemu_opts_foreach(qemu_find_opts("name"),
3849 parse_name, NULL, &error_fatal);
5b9d313e 3850
587ed6be 3851#ifndef _WIN32
6353218b
MA
3852 qemu_opts_foreach(qemu_find_opts("add-fd"),
3853 parse_add_fd, NULL, &error_fatal);
587ed6be 3854
6353218b
MA
3855 qemu_opts_foreach(qemu_find_opts("add-fd"),
3856 cleanup_add_fd, NULL, &error_fatal);
587ed6be
CB
3857#endif
3858
0056ae24
MA
3859 current_machine = MACHINE(object_new(object_class_get_name(
3860 OBJECT_CLASS(machine_class))));
52eb3dfd
MA
3861 if (machine_help_func(qemu_get_machine_opts(), current_machine)) {
3862 exit(0);
3863 }
0056ae24
MA
3864 object_property_add_child(object_get_root(), "machine",
3865 OBJECT(current_machine), &error_abort);
e2fb3fbb
MA
3866 object_property_add_child(container_get(OBJECT(current_machine),
3867 "/unattached"),
3868 "sysbus", OBJECT(sysbus_get_default()),
3869 NULL);
20bccb82
PM
3870
3871 if (machine_class->minimum_page_bits) {
3872 if (!set_preferred_target_page_bits(machine_class->minimum_page_bits)) {
3873 /* This would be a board error: specifying a minimum smaller than
3874 * a target's compile-time fixed setting.
3875 */
3876 g_assert_not_reached();
3877 }
3878 }
3879
b5c2c3d0 3880 cpu_exec_init_all();
0056ae24 3881
958db90c 3882 if (machine_class->hw_version) {
35c2c8dc 3883 qemu_set_hw_version(machine_class->hw_version);
93bfef4c
CV
3884 }
3885
c1c8cfe5
EH
3886 if (cpu_option && is_help_option(cpu_option)) {
3887 list_cpus(cpu_option);
ecf40bea
EH
3888 exit(0);
3889 }
3890
62cb4145
DL
3891 if (!trace_init_backends()) {
3892 exit(1);
3893 }
41fc57e4
PB
3894 trace_init_file(trace_file);
3895
67633bb4 3896 /* Open the logfile at this point and set the log mask if necessary.
c235d738 3897 */
67633bb4 3898 if (log_file) {
daa76aa4 3899 qemu_set_log_filename(log_file, &error_fatal);
67633bb4
PK
3900 }
3901
c235d738 3902 if (log_mask) {
b946bffa 3903 int mask;
b946bffa
PM
3904 mask = qemu_str_to_log_mask(log_mask);
3905 if (!mask) {
3906 qemu_print_log_usage(stdout);
3907 exit(1);
3908 }
3909 qemu_set_log(mask);
ed7f5f1d
PB
3910 } else {
3911 qemu_set_log(0);
c235d738 3912 }
330d0414 3913
3d5eecab
GH
3914 /* add configured firmware directories */
3915 dirs = g_strsplit(CONFIG_QEMU_FIRMWAREPATH, G_SEARCHPATH_SEPARATOR_S, 0);
3916 for (i = 0; dirs[i] != NULL; i++) {
3917 qemu_add_data_dir(dirs[i]);
3918 }
35471127 3919 g_strfreev(dirs);
3d5eecab
GH
3920
3921 /* try to find datadir relative to the executable path */
35471127
MAL
3922 dir = os_find_datadir();
3923 qemu_add_data_dir(dir);
3924 g_free(dir);
2a1cce90 3925
3d5eecab 3926 /* add the datadir specified when building */
2a1cce90 3927 qemu_add_data_dir(CONFIG_QEMU_DATADIR);
5cea8590 3928
37146e7e
RJ
3929 /* -L help lists the data directories and exits. */
3930 if (list_data_dirs) {
3931 for (i = 0; i < data_dir_idx; i++) {
3932 printf("%s\n", data_dir[i]);
3933 }
3934 exit(0);
3935 }
3936
72649619
EC
3937 /* machine_class: default to UP */
3938 machine_class->max_cpus = machine_class->max_cpus ?: 1;
3939 machine_class->min_cpus = machine_class->min_cpus ?: 1;
3940 machine_class->default_cpus = machine_class->default_cpus ?: 1;
3941
3942 /* default to machine_class->default_cpus */
a5e0b331
LX
3943 current_machine->smp.cpus = machine_class->default_cpus;
3944 current_machine->smp.max_cpus = machine_class->default_cpus;
3945 current_machine->smp.cores = 1;
3946 current_machine->smp.threads = 1;
72649619 3947
6f479566
LX
3948 machine_class->smp_parse(current_machine,
3949 qemu_opts_find(qemu_find_opts("smp-opts"), NULL));
6be68d7e 3950
72649619 3951 /* sanity-check smp_cpus and max_cpus against machine_class */
a5e0b331 3952 if (current_machine->smp.cpus < machine_class->min_cpus) {
72649619 3953 error_report("Invalid SMP CPUs %d. The min CPUs "
a5e0b331
LX
3954 "supported by machine '%s' is %d",
3955 current_machine->smp.cpus,
72649619
EC
3956 machine_class->name, machine_class->min_cpus);
3957 exit(1);
3958 }
a5e0b331 3959 if (current_machine->smp.max_cpus > machine_class->max_cpus) {
c0dd1099 3960 error_report("Invalid SMP CPUs %d. The max CPUs "
a5e0b331
LX
3961 "supported by machine '%s' is %d",
3962 current_machine->smp.max_cpus,
f61eddcb 3963 machine_class->name, machine_class->max_cpus);
b2097003
AL
3964 exit(1);
3965 }
3966
67b724e6
AP
3967 /*
3968 * Get the default machine options from the machine if it is not already
3969 * specified either by the configuration file or by the command line.
3970 */
958db90c 3971 if (machine_class->default_machine_opts) {
25de5935 3972 qemu_opts_set_defaults(qemu_find_opts("machine"),
958db90c 3973 machine_class->default_machine_opts, 0);
67b724e6
AP
3974 }
3975
28d0de7a
MA
3976 qemu_opts_foreach(qemu_find_opts("device"),
3977 default_driver_check, NULL, NULL);
3978 qemu_opts_foreach(qemu_find_opts("global"),
3979 default_driver_check, NULL, NULL);
998bbd74 3980
d44229c5
MW
3981 if (!vga_model && !default_vga) {
3982 vga_interface_type = VGA_DEVICE;
3983 }
958db90c 3984 if (!has_defaults || machine_class->no_serial) {
986c5f78
GH
3985 default_serial = 0;
3986 }
958db90c 3987 if (!has_defaults || machine_class->no_parallel) {
986c5f78
GH
3988 default_parallel = 0;
3989 }
958db90c 3990 if (!has_defaults || machine_class->no_floppy) {
ac33f8fa
GH
3991 default_floppy = 0;
3992 }
958db90c 3993 if (!has_defaults || machine_class->no_cdrom) {
ac33f8fa
GH
3994 default_cdrom = 0;
3995 }
958db90c 3996 if (!has_defaults || machine_class->no_sdcard) {
ac33f8fa
GH
3997 default_sdcard = 0;
3998 }
d44229c5
MW
3999 if (!has_defaults) {
4000 default_monitor = 0;
4001 default_net = 0;
4002 default_vga = 0;
4003 }
986c5f78 4004
ab51b1d5 4005 if (is_daemonized()) {
2ee3518b
IM
4006 if (!preconfig_exit_requested) {
4007 error_report("'preconfig' and 'daemonize' options are "
4008 "mutually exclusive");
4009 exit(EXIT_FAILURE);
4010 }
4011
ab51b1d5
MT
4012 /* According to documentation and historically, -nographic redirects
4013 * serial port, parallel port and monitor to stdio, which does not work
4014 * with -daemonize. We can redirect these to null instead, but since
4015 * -nographic is legacy, let's just error out.
4016 * We disallow -nographic only if all other ports are not redirected
4017 * explicitly, to not break existing legacy setups which uses
4018 * -nographic _and_ redirects all ports explicitly - this is valid
4019 * usage, -nographic is just a no-op in this case.
4020 */
cfc58cf3 4021 if (nographic
9fd7e96a 4022 && (default_parallel || default_serial || default_monitor)) {
4cd70f34 4023 error_report("-nographic cannot be used with -daemonize");
ab51b1d5
MT
4024 exit(1);
4025 }
4026#ifdef CONFIG_CURSES
e3af9f9a 4027 if (dpy.type == DISPLAY_TYPE_CURSES) {
4cd70f34 4028 error_report("curses display cannot be used with -daemonize");
ab51b1d5
MT
4029 exit(1);
4030 }
4031#endif
4032 }
4033
cfc58cf3 4034 if (nographic) {
6a5e8b0e
GH
4035 if (default_parallel)
4036 add_device_config(DEV_PARALLEL, "null");
e1c09175
GH
4037 if (default_serial && default_monitor) {
4038 add_device_config(DEV_SERIAL, "mon:stdio");
4039 } else {
4040 if (default_serial)
4041 add_device_config(DEV_SERIAL, "stdio");
4042 if (default_monitor)
4821cd4c 4043 monitor_parse("stdio", "readline", false);
e1c09175 4044 }
998bbd74
GH
4045 } else {
4046 if (default_serial)
4047 add_device_config(DEV_SERIAL, "vc:80Cx24C");
6a5e8b0e
GH
4048 if (default_parallel)
4049 add_device_config(DEV_PARALLEL, "vc:80Cx24C");
abdeed06 4050 if (default_monitor)
4821cd4c 4051 monitor_parse("vc:80Cx24C", "readline", false);
bc0129d9
AL
4052 }
4053
006decd4
GH
4054#if defined(CONFIG_VNC)
4055 if (!QTAILQ_EMPTY(&(qemu_find_opts("vnc")->head))) {
4056 display_remote++;
4057 }
4058#endif
e3af9f9a 4059 if (dpy.type == DISPLAY_TYPE_DEFAULT && !display_remote) {
898f9d41
GH
4060 if (!qemu_display_find_default(&dpy)) {
4061 dpy.type = DISPLAY_TYPE_NONE;
4062#if defined(CONFIG_VNC)
4063 vnc_parse("localhost:0,to=99,id=default", &error_abort);
15546425 4064#endif
898f9d41 4065 }
15546425 4066 }
db71589f
GH
4067 if (dpy.type == DISPLAY_TYPE_DEFAULT) {
4068 dpy.type = DISPLAY_TYPE_NONE;
15546425
AL
4069 }
4070
09bd7ba9
TH
4071 if ((alt_grab || ctrl_grab) && dpy.type != DISPLAY_TYPE_SDL) {
4072 error_report("-alt-grab and -ctrl-grab are only valid "
f61eddcb 4073 "for SDL, ignoring option");
047d4e15 4074 }
78782712 4075 if (dpy.has_window_close &&
e3af9f9a 4076 (dpy.type != DISPLAY_TYPE_GTK && dpy.type != DISPLAY_TYPE_SDL)) {
f61eddcb
EH
4077 error_report("-no-quit is only valid for GTK and SDL, "
4078 "ignoring option");
047d4e15
PW
4079 }
4080
5ee1718f 4081 qemu_display_early_init(&dpy);
777357d7
MAL
4082 qemu_console_early_init();
4083
62f27922 4084 if (dpy.has_gl && dpy.gl != DISPLAYGL_MODE_OFF && display_opengl == 0) {
0b71a5d5 4085#if defined(CONFIG_OPENGL)
8afb9000 4086 error_report("OpenGL is not supported by the display");
0b71a5d5 4087#else
5dfdae81 4088 error_report("OpenGL support is disabled");
0b71a5d5
GH
4089#endif
4090 exit(1);
4091 }
15546425 4092
87f50caa 4093 page_size_init();
a5829fd9
T
4094 socket_init();
4095
7e1e0c11
MA
4096 qemu_opts_foreach(qemu_find_opts("object"),
4097 user_creatable_add_opts_foreach,
4098 object_create_initial, &error_fatal);
a4c7367f 4099
dd4af977
MA
4100 qemu_opts_foreach(qemu_find_opts("chardev"),
4101 chardev_init_func, NULL, &error_fatal);
4e7f9032
AB
4102 /* now chardevs have been created we may have semihosting to connect */
4103 qemu_semihosting_connect_chardevs();
2c189a4e 4104
758e8e38 4105#ifdef CONFIG_VIRTFS
b836723d
MA
4106 qemu_opts_foreach(qemu_find_opts("fsdev"),
4107 fsdev_init_func, NULL, &error_fatal);
74db920c 4108#endif
1a688d3b 4109
28d0de7a
MA
4110 if (qemu_opts_foreach(qemu_find_opts("device"),
4111 device_help_func, NULL, NULL)) {
3d1d9652
BR
4112 exit(0);
4113 }
4114
cda4aa9a
MA
4115 /*
4116 * Note: we need to create block backends before
4117 * machine_set_property(), so machine properties can refer to
2fa23277 4118 * them.
cda4aa9a
MA
4119 */
4120 configure_blockdev(&bdo_queue, machine_class, snapshot);
4121
6b1b1440 4122 machine_opts = qemu_get_machine_opts();
702832b8
MA
4123 qemu_opt_foreach(machine_opts, machine_set_property, current_machine,
4124 &error_fatal);
ee685011
EA
4125 current_machine->ram_size = ram_size;
4126 current_machine->maxram_size = maxram_size;
4127 current_machine->ram_slots = ram_slots;
6b1b1440 4128
0427b625
MA
4129 /*
4130 * Note: uses machine properties such as kernel-irqchip, must run
4131 * after machine_set_property().
4132 */
98e56ae6 4133 configure_accelerator(current_machine, argv[0]);
214910a7 4134
0427b625
MA
4135 /*
4136 * Beware, QOM objects created before this point miss global and
4137 * compat properties.
4138 *
4139 * Global properties get set up by qdev_prop_register_global(),
4140 * called from user_register_global_props(), and certain option
4141 * desugaring. Also in CPU feature desugaring (buried in
c1c8cfe5 4142 * parse_cpu_option()), which happens below this point, but may
0427b625 4143 * only target the CPU type, which can only be created after
c1c8cfe5 4144 * parse_cpu_option() returned the type.
0427b625
MA
4145 *
4146 * Machine compat properties: object_set_machine_compat_props().
4147 * Accelerator compat props: object_set_accelerator_compat_props(),
4148 * called from configure_accelerator().
4149 */
4150
08fe6824
TH
4151 if (!qtest_enabled() && machine_class->deprecation_reason) {
4152 error_report("Machine type '%s' is deprecated: %s",
4153 machine_class->name, machine_class->deprecation_reason);
4154 }
4155
2fa23277 4156 /*
0427b625
MA
4157 * Note: creates a QOM object, must run only after global and
4158 * compat properties have been set up.
2fa23277
MA
4159 */
4160 migration_object_init();
4161
2c189a4e 4162 if (qtest_chrdev) {
007b0657 4163 qtest_init(qtest_chrdev, qtest_log, &error_fatal);
2c189a4e
DB
4164 }
4165
2ff3de68
MA
4166 machine_opts = qemu_get_machine_opts();
4167 kernel_filename = qemu_opt_get(machine_opts, "kernel");
4168 initrd_filename = qemu_opt_get(machine_opts, "initrd");
4169 kernel_cmdline = qemu_opt_get(machine_opts, "append");
1442d3e6 4170 bios_name = qemu_opt_get(machine_opts, "firmware");
967c0da7 4171
8281abd5
MA
4172 opts = qemu_opts_find(qemu_find_opts("boot-opts"), NULL);
4173 if (opts) {
f05f47bb
GA
4174 boot_order = qemu_opt_get(opts, "order");
4175 if (boot_order) {
007b0657 4176 validate_bootdevices(boot_order, &error_fatal);
8281abd5
MA
4177 }
4178
f05f47bb
GA
4179 boot_once = qemu_opt_get(opts, "once");
4180 if (boot_once) {
007b0657 4181 validate_bootdevices(boot_once, &error_fatal);
8281abd5
MA
4182 }
4183
4184 boot_menu = qemu_opt_get_bool(opts, "menu", boot_menu);
e5187b56 4185 boot_strict = qemu_opt_get_bool(opts, "strict", false);
8281abd5
MA
4186 }
4187
f05f47bb
GA
4188 if (!boot_order) {
4189 boot_order = machine_class->default_boot_order;
4190 }
4191
a0abe474
PM
4192 if (!kernel_cmdline) {
4193 kernel_cmdline = "";
6b1b1440 4194 current_machine->kernel_cmdline = (char *)kernel_cmdline;
a0abe474
PM
4195 }
4196
a20dd508 4197 linux_boot = (kernel_filename != NULL);
6c41b272 4198
f8d39c01 4199 if (!linux_boot && *kernel_cmdline != '\0') {
f61eddcb 4200 error_report("-append only allowed with -kernel option");
f8d39c01
TS
4201 exit(1);
4202 }
4203
4204 if (!linux_boot && initrd_filename != NULL) {
f61eddcb 4205 error_report("-initrd only allowed with -kernel option");
f8d39c01
TS
4206 exit(1);
4207 }
4208
a59d31a1
LA
4209 if (semihosting_enabled() && !semihosting_get_argc() && kernel_filename) {
4210 /* fall back to the -kernel/-append */
4211 semihosting_arg_fallback(kernel_filename, kernel_cmdline);
4212 }
4213
9156d763 4214 os_set_line_buffering();
3b46e624 4215
ad1be899
AL
4216 /* spice needs the timers to be initialized by this point */
4217 qemu_spice_init();
ad1be899 4218
4603ea01 4219 cpu_ticks_init();
1ad9580b 4220 if (icount_opts) {
b0cb0a66
VP
4221 if (!tcg_enabled()) {
4222 error_report("-icount is not allowed with hardware virtualization");
1ad9580b
ST
4223 exit(1);
4224 }
4225 configure_icount(icount_opts, &error_abort);
4226 qemu_opts_del(icount_opts);
0abe905d 4227 }
634fce96 4228
e7b161d5
YZ
4229 if (tcg_enabled()) {
4230 qemu_tcg_configure(accel_opts, &error_fatal);
4231 }
83fd9629 4232
d30300f7
EH
4233 if (default_net) {
4234 QemuOptsList *net = qemu_find_opts("net");
4235 qemu_opts_set(net, NULL, "type", "nic", &error_abort);
4236#ifdef CONFIG_SLIRP
4237 qemu_opts_set(net, NULL, "type", "user", &error_abort);
4238#endif
4239 }
4240
34f708b0
TH
4241 if (net_init_clients(&err) < 0) {
4242 error_report_err(err);
dc1c9fe8 4243 exit(1);
702c651c 4244 }
f1510b2c 4245
7e1e0c11
MA
4246 qemu_opts_foreach(qemu_find_opts("object"),
4247 user_creatable_add_opts_foreach,
4248 object_create_delayed, &error_fatal);
9abce56d 4249
d10e05f1 4250 tpm_init();
d1a0cf73 4251
dc72ac14 4252 /* init the bluetooth world */
bd3c948d
GH
4253 if (foreach_device_config(DEV_BT, bt_parse))
4254 exit(1);
dc72ac14 4255
834e76ea
AP
4256 if (!xen_enabled()) {
4257 /* On 32-bit hosts, QEMU is limited by virtual address space */
4258 if (ram_size > (2047 << 20) && HOST_LONG_BITS == 32) {
f61eddcb 4259 error_report("at most 2047 MB RAM can be simulated");
834e76ea
AP
4260 exit(1);
4261 }
4262 }
9ae02555 4263
c163b5ca 4264 blk_mig_init();
0d6ab3ab 4265 ram_mig_init();
b35ebdf0 4266 dirty_bitmap_mig_init();
c163b5ca 4267
2d5a3a8b
MA
4268 qemu_opts_foreach(qemu_find_opts("mon"),
4269 mon_init_func, NULL, &error_fatal);
157b9319 4270
998bbd74
GH
4271 if (foreach_device_config(DEV_SERIAL, serial_parse) < 0)
4272 exit(1);
6a5e8b0e
GH
4273 if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0)
4274 exit(1);
c9f398e5
PA
4275 if (foreach_device_config(DEV_DEBUGCON, debugcon_parse) < 0)
4276 exit(1);
2796dae0 4277
7f1b17f2 4278 /* If no default VGA is requested, the default is "none". */
3605ded5 4279 if (default_vga) {
dceb8852 4280 vga_model = get_default_vga_model(machine_class);
a369da5f 4281 }
d44229c5 4282 if (vga_model) {
dceb8852 4283 select_vgahw(machine_class, vga_model);
d44229c5 4284 }
a369da5f 4285
09aaa160
MA
4286 if (watchdog) {
4287 i = select_watchdog(watchdog);
4288 if (i > 0)
4289 exit (i == 1 ? 1 : 0);
4290 }
4291
8bd7f71d
PD
4292 /* This checkpoint is required by replay to separate prior clock
4293 reading from the other reads, because timer polling functions query
4294 clock values from the log. */
4295 replay_checkpoint(CHECKPOINT_INIT);
1de81d28
AL
4296 qdev_machine_init();
4297
3ef96221 4298 current_machine->boot_order = boot_order;
3ef96221 4299
6063d4c0 4300 /* parse features once if machine provides default cpu_type */
2278b939 4301 current_machine->cpu_type = machine_class->default_cpu_type;
c1c8cfe5
EH
4302 if (cpu_option) {
4303 current_machine->cpu_type = parse_cpu_option(cpu_option);
6063d4c0 4304 }
d342eb76 4305 parse_numa_opts(current_machine);
6063d4c0 4306
047f7038
IM
4307 /* do monitor/qmp handling at preconfig state if requested */
4308 main_loop();
4309
71830221
KZ
4310 audio_init_audiodevs();
4311
047f7038 4312 /* from here on runstate is RUN_STATE_PRELAUNCH */
482dfe9a 4313 machine_run_board_init(current_machine);
3023f332 4314
28d16f38
HZ
4315 realtime_init();
4316
4c565674 4317 soundhw_init();
b3e6d591 4318
b0cb0a66
VP
4319 if (hax_enabled()) {
4320 hax_sync_vcpus();
4321 }
4322
406b6367
MA
4323 qemu_opts_foreach(qemu_find_opts("fw_cfg"),
4324 parse_fw_cfg, fw_cfg_find(), &error_fatal);
81b2b810 4325
3023f332 4326 /* init USB devices */
4bcbe0b6 4327 if (machine_usb(current_machine)) {
0752706d
MA
4328 if (foreach_device_config(DEV_USB, usb_parse) < 0)
4329 exit(1);
3023f332
AL
4330 }
4331
79814179
TC
4332 /* Check if IGD GFX passthrough. */
4333 igd_gfx_passthru();
4334
bd3c948d 4335 /* init generic devices */
bab47d9a 4336 rom_set_order_override(FW_CFG_ORDER_OVERRIDE_DEVICE);
cd65f349
MA
4337 qemu_opts_foreach(qemu_find_opts("device"),
4338 device_init_func, NULL, &error_fatal);
9c6703fe 4339
3741c250
DL
4340 cpu_synchronize_all_post_init();
4341
bab47d9a 4342 rom_reset_order_override();
bd3c948d 4343
a66c9dc7
JS
4344 /* Did we create any drives that we failed to create a device for? */
4345 drive_check_orphaned();
4346
d30300f7
EH
4347 /* Don't warn about the default network setup that you get if
4348 * no command line -net or -netdev options are specified. There
4349 * are two cases that we would otherwise complain about:
4350 * (1) board doesn't support a NIC but the implicit "-net nic"
4351 * requested one
4352 * (2) CONFIG_SLIRP not set, in which case the implicit "-net nic"
4353 * sets up a nic that isn't connected to anything.
4354 */
a3ab1dc0 4355 if (!default_net && (!qtest_enabled() || has_defaults)) {
d30300f7
EH
4356 net_check_clients();
4357 }
4358
f05f47bb 4359 if (boot_once) {
07d04a02 4360 qemu_boot_set(boot_once, &error_fatal);
f05f47bb
GA
4361 qemu_register_reset(restore_boot_order, g_strdup(boot_order));
4362 }
4363
6b62dc2d 4364 /* init local displays */
b0766612
GH
4365 ds = init_displaystate();
4366 qemu_display_init(ds, &dpy);
6b62dc2d 4367
0ce235a7
GN
4368 /* must be after terminal init, SDL library changes signal handlers */
4369 os_setup_signal_handling();
4370
6b62dc2d 4371 /* init remote displays */
a663fbd9 4372#ifdef CONFIG_VNC
28d0de7a 4373 qemu_opts_foreach(qemu_find_opts("vnc"),
612aea20 4374 vnc_init_func, NULL, &error_fatal);
a663fbd9 4375#endif
f8c75b24 4376
9fa03286
GH
4377 if (using_spice) {
4378 qemu_spice_display_init();
a3e22260 4379 }
5b08fc10 4380
ef0c4a0d 4381 if (foreach_device_config(DEV_GDB, gdbserver_start) < 0) {
59030a8c 4382 exit(1);
45669e00 4383 }
45669e00 4384
3418bd25
GH
4385 qdev_machine_creation_done();
4386
80376c3f
IY
4387 /* TODO: once all bus devices are qdevified, this should be done
4388 * when bus is created by qdev.c */
4389 qemu_register_reset(qbus_reset_all_fn, sysbus_get_default());
4cab946a
GN
4390 qemu_run_machine_init_done_notifiers();
4391
6b3f7f63 4392 if (rom_check_and_register_reset() != 0) {
f61eddcb 4393 error_report("rom check and register reset failed");
6b3f7f63
EA
4394 exit(1);
4395 }
d916b464 4396
7615936e
PD
4397 replay_start();
4398
8bd7f71d
PD
4399 /* This checkpoint is required by replay to separate prior clock
4400 reading from the other reads, because timer polling functions query
4401 clock values from the log. */
4402 replay_checkpoint(CHECKPOINT_RESET);
aedbe192 4403 qemu_system_reset(SHUTDOWN_CAUSE_NONE);
48212d87 4404 register_global_state();
bb3d7702 4405 if (loadvm) {
927d6638 4406 Error *local_err = NULL;
5e22479a 4407 if (load_snapshot(loadvm, &local_err) < 0) {
927d6638 4408 error_report_err(local_err);
05f2401e 4409 autostart = 0;
827beacb 4410 exit(1);
05f2401e
JQ
4411 }
4412 }
bb3d7702
PD
4413 if (replay_mode != REPLAY_MODE_NONE) {
4414 replay_vmstate_init();
4415 }
d63d307f 4416
d828c430 4417 qdev_prop_check_globals();
abfd9ce3
AS
4418 if (vmstate_dump_file) {
4419 /* dump and exit */
4420 dump_vmstate_json_to_file(vmstate_dump_file);
4421 return 0;
4422 }
9f9260a3 4423
2bb8c10c 4424 if (incoming) {
43eaae28
PB
4425 Error *local_err = NULL;
4426 qemu_start_incoming_migration(incoming, &local_err);
4427 if (local_err) {
c29b77f9 4428 error_reportf_err(local_err, "-incoming %s: ", incoming);
43eaae28 4429 exit(1);
8ca5e801 4430 }
6b99dadc 4431 } else if (autostart) {
c0f4ce77 4432 vm_start();
6b99dadc 4433 }
ffd843bc 4434
7a64c17f 4435 accel_setup_post(current_machine);
eb505be1 4436 os_setup_post();
71e3ceb8 4437
8a7ddc38 4438 main_loop();
4486e89c 4439
1bb982b8
KF
4440 gdbserver_cleanup();
4441
892ae715
DDAG
4442 /*
4443 * cleaning up the migration object cancels any existing migration
4444 * try to do this early so that it also stops using devices.
4445 */
4446 migration_shutdown();
4447
4486e89c
SH
4448 /* No more vcpu or device emulation activity beyond this point */
4449 vm_shutdown();
4450
b3b5299d 4451 job_cancel_sync_all();
452589b6 4452 bdrv_close_all();
00d09fdb 4453
3d3b8303 4454 res_free();
b46a8906 4455
aa5cb7f5 4456 /* vhost-user must be cleaned up before chardevs. */
c37cacab 4457 tpm_cleanup();
8caf911d 4458 net_cleanup();
a384c205 4459 audio_cleanup();
2ef45716 4460 monitor_cleanup();
aa5cb7f5 4461 qemu_chr_cleanup();
9d5139e5 4462 user_creatable_cleanup();
474628e8 4463 /* TODO: unref root container, check all devices are ok */
8caf911d 4464
0824d6fc
FB
4465 return 0;
4466}