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