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