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