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