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