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