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