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