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