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