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