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