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