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