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