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