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