blob: d01256a6a3f82ab08097ddf2c2b1d6afab8eaf25 [file] [log] [blame]
bellard0824d6f2003-06-24 13:42:40 +00001/*
bellard80cabfa2004-03-14 12:20:30 +00002 * QEMU System Emulator
ths5fafdf22007-09-16 21:08:06 +00003 *
bellard68d0f702008-01-06 17:21:48 +00004 * Copyright (c) 2003-2008 Fabrice Bellard
ths5fafdf22007-09-16 21:08:06 +00005 *
bellard1df912c2003-06-25 16:20:35 +00006 * 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.
bellard0824d6f2003-06-24 13:42:40 +000023 */
bellard0824d6f2003-06-24 13:42:40 +000024#include <unistd.h>
bellard0824d6f2003-06-24 13:42:40 +000025#include <fcntl.h>
26#include <signal.h>
27#include <time.h>
bellard0824d6f2003-06-24 13:42:40 +000028#include <errno.h>
bellard67b915a2004-03-31 23:37:16 +000029#include <sys/time.h>
bellardc88676f2006-08-06 13:36:11 +000030#include <zlib.h>
Chegu Vinodee785fe2012-07-16 21:31:30 -070031#include "bitmap.h"
bellard67b915a2004-03-31 23:37:16 +000032
Juan Quintela71e72a12009-07-27 16:12:56 +020033/* Needed early for CONFIG_BSD etc. */
blueswir1d40cdb12009-03-07 16:52:02 +000034#include "config-host.h"
35
bellard67b915a2004-03-31 23:37:16 +000036#ifndef _WIN32
Paul Brook5cea8592009-05-30 00:52:44 +010037#include <libgen.h>
bellard67b915a2004-03-31 23:37:16 +000038#include <sys/times.h>
bellardf1510b22003-06-25 00:07:40 +000039#include <sys/wait.h>
bellard67b915a2004-03-31 23:37:16 +000040#include <termios.h>
bellard67b915a2004-03-31 23:37:16 +000041#include <sys/mman.h>
bellardf1510b22003-06-25 00:07:40 +000042#include <sys/ioctl.h>
blueswir124646c72008-11-07 16:55:48 +000043#include <sys/resource.h>
bellardf1510b22003-06-25 00:07:40 +000044#include <sys/socket.h>
bellardc94c8d62004-09-13 21:37:34 +000045#include <netinet/in.h>
blueswir124646c72008-11-07 16:55:48 +000046#include <net/if.h>
blueswir124646c72008-11-07 16:55:48 +000047#include <arpa/inet.h>
bellard9d728e82004-09-05 23:09:03 +000048#include <dirent.h>
bellard7c9d8e02005-11-15 22:16:05 +000049#include <netdb.h>
thscb4b9762007-09-13 12:39:35 +000050#include <sys/select.h>
Prerna Saxenaab6540d2010-08-09 11:48:32 +010051
Juan Quintela71e72a12009-07-27 16:12:56 +020052#ifdef CONFIG_BSD
bellard7d3505c2004-05-12 19:32:15 +000053#include <sys/stat.h>
Aurelien Jarnoa167ba52009-11-29 18:00:41 +010054#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
Juergen Lock92c0e652010-03-25 22:07:12 +010055#include <sys/sysctl.h>
blueswir124646c72008-11-07 16:55:48 +000056#else
57#include <util.h>
blueswir1128ab2f2008-08-15 18:33:42 +000058#endif
Aurelien Jarnobbe813a2009-11-30 15:42:59 +010059#else
blueswir1223f0d72008-09-30 18:12:18 +000060#ifdef __linux__
bellard7d3505c2004-05-12 19:32:15 +000061#include <malloc.h>
thsbd494f42007-09-16 20:03:23 +000062
bellarde57a8c02005-11-10 23:58:52 +000063#include <linux/ppdev.h>
ths5867c882007-02-17 23:44:43 +000064#include <linux/parport.h>
blueswir1223f0d72008-09-30 18:12:18 +000065#endif
66#ifdef __sun__
thsd5d10bc2007-02-17 22:54:49 +000067#include <sys/stat.h>
68#include <sys/ethernet.h>
69#include <sys/sockio.h>
thsd5d10bc2007-02-17 22:54:49 +000070#include <netinet/arp.h>
thsd5d10bc2007-02-17 22:54:49 +000071#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>
bellard67b915a2004-03-31 23:37:16 +000079#endif
bellard7d3505c2004-05-12 19:32:15 +000080#endif
bellardec530c82006-04-25 22:36:06 +000081#endif
bellard67b915a2004-03-31 23:37:16 +000082
ths8a16d272008-07-19 09:56:24 +000083#if defined(CONFIG_VDE)
84#include <libvdeplug.h>
85#endif
86
bellard67b915a2004-03-31 23:37:16 +000087#ifdef _WIN32
aliguori49dc7682009-03-08 16:26:59 +000088#include <windows.h>
bellard67b915a2004-03-31 23:37:16 +000089#endif
90
bellard73332e52004-04-04 20:22:28 +000091#ifdef CONFIG_SDL
Stefan Weil59a36a22009-06-18 20:11:03 +020092#if defined(__APPLE__) || defined(main)
Stefan Weil66936652009-06-13 13:19:11 +020093#include <SDL.h>
malc880fec52009-02-15 20:18:41 +000094int qemu_main(int argc, char **argv, char **envp);
95int main(int argc, char **argv)
96{
Stefan Weil59a36a22009-06-18 20:11:03 +020097 return qemu_main(argc, argv, NULL);
malc880fec52009-02-15 20:18:41 +000098}
99#undef main
100#define main qemu_main
bellard96bcd4f2004-07-10 16:26:15 +0000101#endif
bellard73332e52004-04-04 20:22:28 +0000102#endif /* CONFIG_SDL */
bellard0824d6f2003-06-24 13:42:40 +0000103
bellard5b0753e2005-03-01 21:37:28 +0000104#ifdef CONFIG_COCOA
105#undef main
106#define main qemu_main
107#endif /* CONFIG_COCOA */
108
Anthony Liguori69e5bb62011-08-22 08:12:52 -0500109#include <glib.h>
110
blueswir1511d2b12009-03-07 15:32:56 +0000111#include "hw/hw.h"
112#include "hw/boards.h"
113#include "hw/usb.h"
114#include "hw/pcmcia.h"
115#include "hw/pc.h"
blueswir1511d2b12009-03-07 15:32:56 +0000116#include "hw/isa.h"
117#include "hw/baum.h"
118#include "hw/bt.h"
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +0100119#include "hw/watchdog.h"
aliguorib6f6e3d2009-04-17 18:59:56 +0000120#include "hw/smbios.h"
aliguorie37630c2009-04-22 15:19:10 +0000121#include "hw/xen.h"
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +0200122#include "hw/qdev.h"
Gerd Hoffmann45a50b12009-10-01 16:42:33 +0200123#include "hw/loader.h"
aurel325ef4efa2009-03-10 21:43:35 +0000124#include "bt-host.h"
blueswir1511d2b12009-03-07 15:32:56 +0000125#include "net.h"
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000126#include "net/slirp.h"
blueswir1511d2b12009-03-07 15:32:56 +0000127#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"
Markus Armbruster666daa62010-06-02 18:48:27 +0200134#include "blockdev.h"
Markus Armbruster2b584952012-07-10 11:12:50 +0200135#include "hw/block-common.h"
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200136#include "block-migration.h"
blueswir1a718ace2009-03-28 08:24:44 +0000137#include "dma.h"
blueswir1511d2b12009-03-07 15:32:56 +0000138#include "audio/audio.h"
139#include "migration.h"
140#include "kvm.h"
Luiz Capitulinof795e742011-10-21 16:05:43 -0200141#include "qjson.h"
Kevin Wolfd3f24362009-05-18 16:42:09 +0200142#include "qemu-option.h"
Gerd Hoffmann7282a032009-07-31 12:25:35 +0200143#include "qemu-config.h"
Jes Sorensen59a52642010-06-10 11:42:25 +0200144#include "qemu-options.h"
Luiz Capitulino1fa9a5e2011-09-12 17:54:20 -0300145#include "qmp-commands.h"
Paolo Bonzini44a9b352011-09-12 16:44:30 +0200146#include "main-loop.h"
Venkateswararao Jujjuri (JV)758e8e32010-06-14 13:34:41 -0700147#ifdef CONFIG_VIRTFS
Gautham R Shenoy74db9202010-04-29 17:44:43 +0530148#include "fsdev/qemu-fsdev.h"
149#endif
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +0200150#include "qtest.h"
blueswir1511d2b12009-03-07 15:32:56 +0000151
bellard0824d6f2003-06-24 13:42:40 +0000152#include "disas.h"
bellardfc01f7e2003-06-30 10:03:06 +0000153
blueswir1511d2b12009-03-07 15:32:56 +0000154#include "qemu_socket.h"
155
Jan Kiszkad918f232009-06-24 14:42:30 +0200156#include "slirp/libslirp.h"
blueswir1511d2b12009-03-07 15:32:56 +0000157
Stefan Hajnoczi94b0b5f2010-11-16 12:20:25 +0000158#include "trace.h"
Lluíse4858972011-08-31 20:31:03 +0200159#include "trace/control.h"
Blue Swirl72cf2d42009-09-12 07:36:22 +0000160#include "qemu-queue.h"
Blue Swirl296af7c2010-03-29 19:23:50 +0000161#include "cpus.h"
Blue Swirlad960902010-03-29 19:23:52 +0000162#include "arch_init.h"
Paul Moore0f669982012-08-03 14:39:21 -0400163#include "osdep.h"
Blue Swirl72cf2d42009-09-12 07:36:22 +0000164
Gerd Hoffmann29b00402010-03-11 11:13:27 -0300165#include "ui/qemu-spice.h"
166
blueswir19dc63a12008-10-04 07:25:46 +0000167//#define DEBUG_NET
168//#define DEBUG_SLIRP
bellard330d0412003-07-26 18:11:40 +0000169
bellard1bfe8562004-07-08 21:17:50 +0000170#define DEFAULT_RAM_SIZE 128
bellard313aa562003-08-10 21:52:11 +0000171
Amit Shah98b19252010-01-20 00:36:52 +0530172#define MAX_VIRTIO_CONSOLES 1
173
Paul Brook5cea8592009-05-30 00:52:44 +0100174static const char *data_dir;
j_mayer1192dad2007-10-05 13:08:35 +0000175const char *bios_name = NULL;
malccb5a7aa2008-09-28 00:42:12 +0000176enum vga_retrace_method vga_retrace_method = VGA_RETRACE_DUMB;
Anthony Liguori993fbfd2009-05-21 16:54:00 -0500177DisplayType display_type = DT_DEFAULT;
Gerd Hoffmann6b62dc22010-08-25 10:51:06 +0200178int display_remote = 0;
bellard3d11d0e2004-12-12 16:56:30 +0000179const char* keyboard_layout = NULL;
Anthony Liguoric227f092009-10-01 16:12:16 -0500180ram_addr_t ram_size;
Marcelo Tosattic9027602010-03-01 20:25:08 -0300181const char *mem_path = NULL;
182#ifdef MAP_POPULATE
183int mem_prealloc = 0; /* force preallocation of physical target memory */
184#endif
bellardc4b1fcc2004-03-14 21:44:30 +0000185int nb_nics;
bellard7c9d8e02005-11-15 22:16:05 +0000186NICInfo nd_table[MAX_NICS];
Paolo Bonzinid399f672009-07-27 23:17:51 +0200187int autostart;
balrogf6503052008-02-17 11:42:19 +0000188static int rtc_utc = 1;
189static int rtc_date_offset = -1; /* -1 means no change */
Jan Kiszka68752042009-09-15 13:36:04 +0200190QEMUClock *rtc_clock;
Gerd Hoffmann64465292009-12-08 13:11:45 +0100191int vga_interface_type = VGA_NONE;
blueswir1dbed7e42008-10-01 19:38:09 +0000192static int full_screen = 0;
blueswir1634a21f2008-11-16 11:34:07 +0000193#ifdef CONFIG_SDL
blueswir1dbed7e42008-10-01 19:38:09 +0000194static int no_frame = 0;
blueswir1634a21f2008-11-16 11:34:07 +0000195#endif
ths667acca2006-12-11 02:08:05 +0000196int no_quit = 0;
bellard8d11df92004-08-24 21:13:40 +0000197CharDriverState *serial_hds[MAX_SERIAL_PORTS];
bellard6508fe52005-01-15 12:02:56 +0000198CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
aliguori9ede2fd2009-01-15 20:05:25 +0000199CharDriverState *virtcon_hds[MAX_VIRTIO_CONSOLES];
bellarda09db212005-04-30 16:10:35 +0000200int win2k_install_hack = 0;
bellardbb36d472005-11-05 14:22:28 +0000201int usb_enabled = 0;
aurel321b530a62009-04-05 20:08:59 +0000202int singlestep = 0;
bellard6a00d602005-11-21 23:25:50 +0000203int smp_cpus = 1;
Jes Sorensen6be68d72009-07-23 17:03:42 +0200204int max_cpus = 0;
Andre Przywaradc6b1c02009-08-19 15:42:40 +0200205int smp_cores = 1;
206int smp_threads = 1;
Jes Sorensen821601e2011-03-16 13:33:36 +0100207#ifdef CONFIG_VNC
ths73fc9742006-12-22 02:09:07 +0000208const char *vnc_display;
Jes Sorensen821601e2011-03-16 13:33:36 +0100209#endif
bellard6515b202006-05-03 22:02:44 +0000210int acpi_enabled = 1;
aliguori16b29ae2008-12-17 23:28:44 +0000211int no_hpet = 0;
bellard52ca8d62006-06-14 16:03:05 +0000212int fd_bootchk = 1;
bellardd1beab82006-10-02 19:44:22 +0000213int no_reboot = 0;
aurel32b2f76162008-04-11 21:35:52 +0000214int no_shutdown = 0;
balrog9467cd42007-05-01 01:34:14 +0000215int cursor_hide = 1;
balroga171fe32007-04-30 01:48:07 +0000216int graphic_rotate = 0;
Markus Armbruster09aaa162009-08-21 10:31:34 +0200217const char *watchdog;
Gleb Natapov2e55e842010-12-08 13:35:07 +0200218QEMUOptionRom option_rom[MAX_OPTION_ROMS];
ths9ae02552007-01-05 17:39:04 +0000219int nb_option_roms;
pbrook8e716212007-01-20 17:12:09 +0000220int semihosting_enabled = 0;
balrog2b8f2d42007-07-27 22:08:46 +0000221int old_param = 0;
thsc35734b2007-03-19 15:17:08 +0000222const char *qemu_name;
ths3780e192007-06-21 21:08:02 +0000223int alt_grab = 0;
Dustin Kirkland0ca9f8a2009-09-17 15:48:04 -0500224int ctrl_grab = 0;
blueswir166508602007-05-01 14:16:52 +0000225unsigned int nb_prom_envs = 0;
226const char *prom_envs[MAX_PROM_ENVS];
Jan Kiszka95387492009-07-02 00:19:02 +0200227int boot_menu;
wayne3d3b8302011-07-27 18:04:55 +0800228uint8_t *boot_splash_filedata;
229int boot_splash_filedata_size;
230uint8_t qemu_extra_params_fw[2];
bellard0824d6f2003-06-24 13:42:40 +0000231
Gleb Natapov1ca4d092010-12-08 13:35:05 +0200232typedef 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
aliguori268a3622009-04-21 22:30:27 +0000243int nb_numa_nodes;
244uint64_t node_mem[MAX_NODES];
Chegu Vinodee785fe2012-07-16 21:31:30 -0700245unsigned long *node_cpumask[MAX_NODES];
aliguori268a3622009-04-21 22:30:27 +0000246
blueswir18fcb1b92008-09-18 18:29:08 +0000247uint8_t qemu_uuid[16];
248
Jan Kiszka76e30d02009-07-02 00:19:02 +0200249static QEMUBootSetHandler *boot_set_handler;
250static void *boot_set_opaque;
251
Gerd Hoffmannfd42dee2010-06-04 14:08:07 +0200252static NotifierList exit_notifiers =
253 NOTIFIER_LIST_INITIALIZER(exit_notifiers);
254
Gleb Natapov4cab9462010-12-08 13:35:08 +0200255static NotifierList machine_init_done_notifiers =
256 NOTIFIER_LIST_INITIALIZER(machine_init_done_notifiers);
257
Anthony PERARD303d4e82010-09-21 20:05:31 +0100258static int tcg_allowed = 1;
Blue Swirld745bef2010-03-29 19:23:49 +0000259int kvm_allowed = 0;
Anthony PERARD3285cf42010-08-19 12:27:56 +0100260int xen_allowed = 0;
Blue Swirld745bef2010-03-29 19:23:49 +0000261uint32_t xen_domid;
262enum xen_mode xen_mode = XEN_EMULATE;
Jan Kiszkad5ab9712011-08-02 16:10:21 +0200263static int tcg_tb_size;
Blue Swirld745bef2010-03-29 19:23:49 +0000264
Gerd Hoffmann998bbd72009-12-08 13:11:41 +0100265static int default_serial = 1;
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +0100266static int default_parallel = 1;
Gerd Hoffmann986c5f72009-12-08 13:11:54 +0100267static int default_virtcon = 1;
Gerd Hoffmannabdeed02009-12-08 13:11:43 +0100268static int default_monitor = 1;
Gerd Hoffmannac33f8f2009-12-16 14:25:39 +0100269static int default_floppy = 1;
270static int default_cdrom = 1;
271static int default_sdcard = 1;
Paolo Bonzini7f1b17f2012-05-10 09:39:17 +0200272static int default_vga = 1;
Gerd Hoffmann998bbd72009-12-08 13:11:41 +0100273
274static struct {
275 const char *driver;
276 int *flag;
277} default_list[] = {
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +0100278 { .driver = "isa-serial", .flag = &default_serial },
279 { .driver = "isa-parallel", .flag = &default_parallel },
Gerd Hoffmannd8bcbab2009-12-16 14:25:40 +0100280 { .driver = "isa-fdc", .flag = &default_floppy },
Markus Armbrusteraf6bf132011-05-18 18:31:02 +0200281 { .driver = "ide-cd", .flag = &default_cdrom },
282 { .driver = "ide-hd", .flag = &default_cdrom },
Gerd Hoffmannd8bcbab2009-12-16 14:25:40 +0100283 { .driver = "ide-drive", .flag = &default_cdrom },
Markus Armbrusteraf6bf132011-05-18 18:31:02 +0200284 { .driver = "scsi-cd", .flag = &default_cdrom },
Amit Shah392ecf52010-01-21 16:19:23 +0530285 { .driver = "virtio-serial-pci", .flag = &default_virtcon },
286 { .driver = "virtio-serial-s390", .flag = &default_virtcon },
287 { .driver = "virtio-serial", .flag = &default_virtcon },
Paolo Bonzini7f1b17f2012-05-10 09:39:17 +0200288 { .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 },
Gerd Hoffmann998bbd72009-12-08 13:11:41 +0100294};
295
Ronnie Sahlberg31459f42012-08-06 18:24:55 +1000296const char *qemu_get_vm_name(void)
297{
298 return qemu_name;
299}
300
wayne3d3b8302011-07-27 18:04:55 +0800301static void res_free(void)
302{
303 if (boot_splash_filedata != NULL) {
Anthony Liguori7267c092011-08-20 22:09:37 -0500304 g_free(boot_splash_filedata);
wayne3d3b8302011-07-27 18:04:55 +0800305 boot_splash_filedata = NULL;
306 }
307}
308
Gerd Hoffmann998bbd72009-12-08 13:11:41 +0100309static 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
bellard0824d6f2003-06-24 13:42:40 +0000324/***********************************************************/
Luiz Capitulinof5bbfba2011-07-29 15:04:45 -0300325/* QEMU state */
326
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300327static RunState current_run_state = RUN_STATE_PRELAUNCH;
Luiz Capitulinof5bbfba2011-07-29 15:04:45 -0300328
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300329typedef struct {
330 RunState from;
331 RunState to;
332} RunStateTransition;
333
334static const RunStateTransition runstate_transitions_def[] = {
335 /* from -> to */
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300336 { RUN_STATE_DEBUG, RUN_STATE_RUNNING },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300337
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300338 { RUN_STATE_INMIGRATE, RUN_STATE_RUNNING },
339 { RUN_STATE_INMIGRATE, RUN_STATE_PRELAUNCH },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300340
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300341 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_PAUSED },
Luiz Capitulino8a9236f2011-10-14 11:18:09 -0300342 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_FINISH_MIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300343
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300344 { RUN_STATE_IO_ERROR, RUN_STATE_RUNNING },
Luiz Capitulino8a9236f2011-10-14 11:18:09 -0300345 { RUN_STATE_IO_ERROR, RUN_STATE_FINISH_MIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300346
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300347 { RUN_STATE_PAUSED, RUN_STATE_RUNNING },
Luiz Capitulino8a9236f2011-10-14 11:18:09 -0300348 { RUN_STATE_PAUSED, RUN_STATE_FINISH_MIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300349
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300350 { RUN_STATE_POSTMIGRATE, RUN_STATE_RUNNING },
Luiz Capitulino8a9236f2011-10-14 11:18:09 -0300351 { RUN_STATE_POSTMIGRATE, RUN_STATE_FINISH_MIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300352
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300353 { RUN_STATE_PRELAUNCH, RUN_STATE_RUNNING },
Luiz Capitulino8a9236f2011-10-14 11:18:09 -0300354 { RUN_STATE_PRELAUNCH, RUN_STATE_FINISH_MIGRATE },
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300355 { RUN_STATE_PRELAUNCH, RUN_STATE_INMIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300356
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300357 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_RUNNING },
358 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_POSTMIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300359
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300360 { RUN_STATE_RESTORE_VM, RUN_STATE_RUNNING },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300361
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300362 { 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 },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300371
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300372 { RUN_STATE_SAVE_VM, RUN_STATE_RUNNING },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300373
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300374 { RUN_STATE_SHUTDOWN, RUN_STATE_PAUSED },
Luiz Capitulino8a9236f2011-10-14 11:18:09 -0300375 { RUN_STATE_SHUTDOWN, RUN_STATE_FINISH_MIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300376
Luiz Capitulinoad02b962012-04-27 13:33:36 -0300377 { 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
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300382 { RUN_STATE_WATCHDOG, RUN_STATE_RUNNING },
Luiz Capitulino8a9236f2011-10-14 11:18:09 -0300383 { RUN_STATE_WATCHDOG, RUN_STATE_FINISH_MIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300384
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300385 { RUN_STATE_MAX, RUN_STATE_MAX },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300386};
387
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300388static bool runstate_valid_transitions[RUN_STATE_MAX][RUN_STATE_MAX];
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300389
Luiz Capitulinof5bbfba2011-07-29 15:04:45 -0300390bool runstate_check(RunState state)
391{
392 return current_run_state == state;
393}
394
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300395void runstate_init(void)
396{
397 const RunStateTransition *p;
398
399 memset(&runstate_valid_transitions, 0, sizeof(runstate_valid_transitions));
400
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300401 for (p = &runstate_transitions_def[0]; p->from != RUN_STATE_MAX; p++) {
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300402 runstate_valid_transitions[p->from][p->to] = true;
403 }
404}
405
406/* This function will abort() on invalid state transitions */
Luiz Capitulinof5bbfba2011-07-29 15:04:45 -0300407void runstate_set(RunState new_state)
408{
Luiz Capitulino207c5cd2011-10-13 10:59:07 -0300409 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]);
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300415 abort();
416 }
417
Luiz Capitulinof5bbfba2011-07-29 15:04:45 -0300418 current_run_state = new_state;
419}
420
Luiz Capitulino13548692011-07-29 15:36:43 -0300421int runstate_is_running(void)
422{
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300423 return runstate_check(RUN_STATE_RUNNING);
Luiz Capitulino13548692011-07-29 15:36:43 -0300424}
425
Luiz Capitulino1fa9a5e2011-09-12 17:54:20 -0300426StatusInfo *qmp_query_status(Error **errp)
427{
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;
435}
436
Luiz Capitulinof5bbfba2011-07-29 15:04:45 -0300437/***********************************************************/
Paolo Bonzini8f0056b2010-01-13 14:05:34 +0100438/* real time host monotonic timer */
bellard09b26c52006-04-12 21:09:08 +0000439
bellardc4b1fcc2004-03-14 21:44:30 +0000440/***********************************************************/
balrogf6503052008-02-17 11:42:19 +0000441/* 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);
Gleb Natapovf54c5562011-11-06 18:00:22 +0200469 else {
470 struct tm tmp = *tm;
471 tmp.tm_isdst = -1; /* use timezone to figure it out */
472 seconds = mktime(&tmp);
473 }
balrogf6503052008-02-17 11:42:19 +0000474 else
475 seconds = mktimegm(tm) + rtc_date_offset;
476
477 return seconds - time(NULL);
478}
479
Luiz Capitulino80cd3472010-02-25 12:11:44 -0300480void 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
Jan Kiszka1ed2fc12009-09-15 13:36:04 +0200489static 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 }
Jan Kiszka68752042009-09-15 13:36:04 +0200542 value = qemu_opt_get(opts, "clock");
543 if (value) {
544 if (!strcmp(value, "host")) {
545 rtc_clock = host_clock;
Paolo Bonzini78808142012-03-30 10:31:21 +0000546 } else if (!strcmp(value, "rt")) {
547 rtc_clock = rt_clock;
Jan Kiszka68752042009-09-15 13:36:04 +0200548 } 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 }
Jan Kiszka1ed2fc12009-09-15 13:36:04 +0200555 value = qemu_opt_get(opts, "driftfix");
556 if (value) {
Blue Swirl7e4c0332010-03-27 21:33:46 +0000557 if (!strcmp(value, "slew")) {
Jan Kiszka433acf02012-01-23 20:15:12 +0100558 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);
Blue Swirl7e4c0332010-03-27 21:33:46 +0000568 } else if (!strcmp(value, "none")) {
Jan Kiszka433acf02012-01-23 20:15:12 +0100569 /* discard is default */
Jan Kiszka1ed2fc12009-09-15 13:36:04 +0200570 } else {
571 fprintf(stderr, "qemu: invalid option value '%s'\n", value);
572 exit(1);
573 }
574 }
Jan Kiszka1ed2fc12009-09-15 13:36:04 +0200575}
576
balrog1ae26a12008-09-28 23:19:47 +0000577/***********************************************************/
578/* Bluetooth support */
579static int nb_hcis;
580static int cur_hci;
581static struct HCIInfo *hci_table[MAX_NICS];
balrogdc72ac12008-11-09 00:04:26 +0000582
balrog1ae26a12008-09-28 23:19:47 +0000583static 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" */
blueswir1674bb262008-09-30 18:18:27 +0000590static struct bt_scatternet_s *qemu_find_bt_vlan(int id)
balrog1ae26a12008-09-28 23:19:47 +0000591{
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 }
Anthony Liguori7267c092011-08-20 22:09:37 -0500597 vlan = g_malloc0(sizeof(struct bt_vlan_s));
balrog1ae26a12008-09-28 23:19:47 +0000598 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
balrogdc72ac12008-11-09 00:04:26 +0000630static 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;
Anthony Liguoric227f092009-10-01 16:12:16 -0500663 bdaddr_t bdaddr;
balrogdc72ac12008-11-09 00:04:26 +0000664
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
balrog1ae26a12008-09-28 23:19:47 +0000768/***********************************************************/
769/* QEMU Block devices */
770
Markus Armbruster2292dda2011-01-28 11:21:41 +0100771#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 ""
thse4bcb142007-12-02 04:51:10 +0000777
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200778static int drive_init_func(QemuOpts *opts, void *opaque)
779{
Markus Armbrustera803cb82010-06-02 13:31:55 +0200780 int *use_scsi = opaque;
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200781
Markus Armbruster319ae522011-01-28 11:21:46 +0100782 return drive_init(opts, *use_scsi) == NULL;
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200783}
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
Markus Armbruster4e5d9b52011-01-28 11:21:45 +0100793static 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 }
Markus Armbruster319ae522011-01-28 11:21:46 +0100811 if (!drive_init(opts, use_scsi)) {
Markus Armbruster4e5d9b52011-01-28 11:21:45 +0100812 exit(1);
813 }
814}
815
Jan Kiszka76e30d02009-07-02 00:19:02 +0200816void 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
Eduardo Habkost4e9e9d62010-04-06 19:22:08 -0300830static void validate_bootdevices(char *devices)
Jan Kiszkaef3adf62009-07-02 00:19:02 +0200831{
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
Dong Xu Wang07f35072011-11-22 18:06:26 +0800840 * g-m: machine implementation dependent drives
Jan Kiszkaef3adf62009-07-02 00:19:02 +0200841 * 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 }
Jan Kiszkaef3adf62009-07-02 00:19:02 +0200856}
857
Jan Kiszkae0f084b2009-07-02 00:19:02 +0200858static void restore_boot_devices(void *opaque)
859{
860 char *standard_boot_devices = opaque;
Alex Williamson37905d62010-04-30 15:21:11 -0600861 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 }
Jan Kiszkae0f084b2009-07-02 00:19:02 +0200868
869 qemu_boot_set(standard_boot_devices);
870
871 qemu_unregister_reset(restore_boot_devices, standard_boot_devices);
Anthony Liguori7267c092011-08-20 22:09:37 -0500872 g_free(standard_boot_devices);
Jan Kiszkae0f084b2009-07-02 00:19:02 +0200873}
874
Gleb Natapov1ca4d092010-12-08 13:35:05 +0200875void 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
Anthony Liguori7267c092011-08-20 22:09:37 -0500886 node = g_malloc0(sizeof(FWBootEntry));
Gleb Natapov1ca4d092010-12-08 13:35:05 +0200887 node->bootindex = bootindex;
Anthony Liguori7267c092011-08-20 22:09:37 -0500888 node->suffix = suffix ? g_strdup(suffix) : NULL;
Gleb Natapov1ca4d092010-12-08 13:35:05 +0200889 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
Gleb Natapov962630f2010-12-08 13:35:09 +0200904/*
905 * This function returns null terminated string that consist of new line
Brad Hards71785ab2011-04-23 21:50:06 +1000906 * separated device paths.
Gleb Natapov962630f2010-12-08 13:35:09 +0200907 *
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) {
Blue Swirl4fd37a92010-12-19 14:05:43 +0000927 size_t bootpathlen = strlen(devpath) + strlen(i->suffix) + 1;
928
Anthony Liguori7267c092011-08-20 22:09:37 -0500929 bootpath = g_malloc(bootpathlen);
Blue Swirl4fd37a92010-12-19 14:05:43 +0000930 snprintf(bootpath, bootpathlen, "%s%s", devpath, i->suffix);
Anthony Liguori7267c092011-08-20 22:09:37 -0500931 g_free(devpath);
Gleb Natapov962630f2010-12-08 13:35:09 +0200932 } else if (devpath) {
933 bootpath = devpath;
934 } else {
Markus Armbruster1bf6ccd2011-11-08 10:58:00 +0100935 assert(i->suffix);
Anthony Liguori7267c092011-08-20 22:09:37 -0500936 bootpath = g_strdup(i->suffix);
Gleb Natapov962630f2010-12-08 13:35:09 +0200937 }
938
939 if (total) {
940 list[total-1] = '\n';
941 }
942 len = strlen(bootpath) + 1;
Anthony Liguori7267c092011-08-20 22:09:37 -0500943 list = g_realloc(list, total + len);
Gleb Natapov962630f2010-12-08 13:35:09 +0200944 memcpy(&list[total], bootpath, len);
945 total += len;
Anthony Liguori7267c092011-08-20 22:09:37 -0500946 g_free(bootpath);
Gleb Natapov962630f2010-12-08 13:35:09 +0200947 }
948
949 *size = total;
950
951 return list;
952}
953
aliguori268a3622009-04-21 22:30:27 +0000954static void numa_add(const char *optarg)
955{
956 char option[128];
957 char *endptr;
958 unsigned long long value, endvalue;
959 int nodenr;
960
Chegu Vinodee785fe2012-07-16 21:31:30 -0700961 value = endvalue = 0ULL;
962
aliguori268a3622009-04-21 22:30:27 +0000963 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 {
Jes Sorensen70b4f4b2011-01-05 11:41:02 +0100974 int64_t sval;
Markus Armbrusterc03417b2011-11-22 09:46:02 +0100975 sval = strtosz(option, &endptr);
976 if (sval < 0 || *endptr) {
Jes Sorensen9f9b17a2010-10-21 17:15:46 +0200977 fprintf(stderr, "qemu: invalid numa mem size: %s\n", optarg);
978 exit(1);
aliguori268a3622009-04-21 22:30:27 +0000979 }
Jes Sorensen9f9b17a2010-10-21 17:15:46 +0200980 node_mem[nodenr] = sval;
aliguori268a3622009-04-21 22:30:27 +0000981 }
Chegu Vinodee785fe2012-07-16 21:31:30 -0700982 if (get_param_value(option, 128, "cpus", optarg) != 0) {
aliguori268a3622009-04-21 22:30:27 +0000983 value = strtoull(option, &endptr, 10);
Chegu Vinodee785fe2012-07-16 21:31:30 -0700984 if (*endptr == '-') {
985 endvalue = strtoull(endptr+1, &endptr, 10);
aliguori268a3622009-04-21 22:30:27 +0000986 } else {
Chegu Vinodee785fe2012-07-16 21:31:30 -0700987 endvalue = value;
aliguori268a3622009-04-21 22:30:27 +0000988 }
Chegu Vinodee785fe2012-07-16 21:31:30 -0700989
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);
995 }
996
997 bitmap_set(node_cpumask[nodenr], value, endvalue-value+1);
aliguori268a3622009-04-21 22:30:27 +0000998 }
999 nb_numa_nodes++;
1000 }
1001 return;
1002}
1003
Andre Przywaradc6b1c02009-08-19 15:42:40 +02001004static 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;
Andre Przywaradc6b1c02009-08-19 15:42:40 +02001032 }
1033 } else {
1034 if (cores == 0) {
1035 threads = threads > 0 ? threads : 1;
1036 cores = smp / (sockets * threads);
1037 } else {
Joel Schoppdca98162010-07-21 15:05:17 -05001038 threads = smp / (cores * sockets);
Andre Przywaradc6b1c02009-08-19 15:42:40 +02001039 }
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
bellard330d0412003-07-26 18:11:40 +00001048/***********************************************************/
bellarda594cfb2005-11-06 16:13:29 +00001049/* USB devices */
1050
Markus Armbrusterfb080002010-05-28 15:38:44 +02001051static int usb_device_add(const char *devname)
bellarda594cfb2005-11-06 16:13:29 +00001052{
1053 const char *p;
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001054 USBDevice *dev = NULL;
bellarda594cfb2005-11-06 16:13:29 +00001055
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001056 if (!usb_enabled)
bellarda594cfb2005-11-06 16:13:29 +00001057 return -1;
1058
Gerd Hoffmann0958b4c2009-10-26 15:56:45 +01001059 /* drivers with .usbdevice_name entry in USBDeviceInfo */
1060 dev = usbdevice_create(devname);
1061 if (dev)
1062 goto done;
1063
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001064 /* the other ones */
Gerd Hoffmanne447fc62011-06-01 14:41:59 +02001065#ifndef CONFIG_LINUX
1066 /* only the linux version is qdev-ified, usb-bsd still needs this */
bellarda594cfb2005-11-06 16:13:29 +00001067 if (strstart(devname, "host:", &p)) {
Jan Kiszka37417152012-02-27 15:18:47 +01001068 dev = usb_host_device_open(usb_bus_find(-1), p);
Gerd Hoffmanne447fc62011-06-01 14:41:59 +02001069 } else
1070#endif
1071 if (!strcmp(devname, "bt") || strstart(devname, "bt:", &p)) {
Jan Kiszka37417152012-02-27 15:18:47 +01001072 dev = usb_bt_init(usb_bus_find(-1),
1073 devname[2] ? hci_init(p)
1074 : bt_new_hci(qemu_find_bt_vlan(0)));
bellarda594cfb2005-11-06 16:13:29 +00001075 } else {
1076 return -1;
1077 }
pbrook0d92ed32006-05-21 16:30:15 +00001078 if (!dev)
1079 return -1;
1080
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001081done:
bellarda594cfb2005-11-06 16:13:29 +00001082 return 0;
1083}
1084
aliguori1f3870a2008-08-21 19:27:48 +00001085static int usb_device_del(const char *devname)
1086{
1087 int bus_num, addr;
1088 const char *p;
1089
aliguori5d0c5752008-09-14 01:07:41 +00001090 if (strstart(devname, "host:", &p))
1091 return usb_host_device_close(p);
1092
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001093 if (!usb_enabled)
aliguori1f3870a2008-08-21 19:27:48 +00001094 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
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001102 return usb_device_delete_addr(bus_num, addr);
aliguori1f3870a2008-08-21 19:27:48 +00001103}
1104
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02001105static int usb_parse(const char *cmdline)
1106{
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001107 int r;
Markus Armbrusterfb080002010-05-28 15:38:44 +02001108 r = usb_device_add(cmdline);
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001109 if (r < 0) {
1110 fprintf(stderr, "qemu: could not add USB device '%s'\n", cmdline);
1111 }
1112 return r;
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02001113}
1114
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001115void do_usb_add(Monitor *mon, const QDict *qdict)
bellarda594cfb2005-11-06 16:13:29 +00001116{
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001117 const char *devname = qdict_get_str(qdict, "devname");
Markus Armbrusterfb080002010-05-28 15:38:44 +02001118 if (usb_device_add(devname) < 0) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01001119 error_report("could not add USB device '%s'", devname);
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001120 }
bellarda594cfb2005-11-06 16:13:29 +00001121}
1122
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001123void do_usb_del(Monitor *mon, const QDict *qdict)
bellarda594cfb2005-11-06 16:13:29 +00001124{
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001125 const char *devname = qdict_get_str(qdict, "devname");
1126 if (usb_device_del(devname) < 0) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01001127 error_report("could not delete USB device '%s'", devname);
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001128 }
bellarda594cfb2005-11-06 16:13:29 +00001129}
1130
bellardf7cce892004-12-08 22:21:25 +00001131/***********************************************************/
balrog201a51f2007-04-30 00:51:09 +00001132/* PCMCIA/Cardbus */
1133
1134static struct pcmcia_socket_entry_s {
Paul Brookbc24a222009-05-10 01:44:56 +01001135 PCMCIASocket *socket;
balrog201a51f2007-04-30 00:51:09 +00001136 struct pcmcia_socket_entry_s *next;
1137} *pcmcia_sockets = 0;
1138
Paul Brookbc24a222009-05-10 01:44:56 +01001139void pcmcia_socket_register(PCMCIASocket *socket)
balrog201a51f2007-04-30 00:51:09 +00001140{
1141 struct pcmcia_socket_entry_s *entry;
1142
Anthony Liguori7267c092011-08-20 22:09:37 -05001143 entry = g_malloc(sizeof(struct pcmcia_socket_entry_s));
balrog201a51f2007-04-30 00:51:09 +00001144 entry->socket = socket;
1145 entry->next = pcmcia_sockets;
1146 pcmcia_sockets = entry;
1147}
1148
Paul Brookbc24a222009-05-10 01:44:56 +01001149void pcmcia_socket_unregister(PCMCIASocket *socket)
balrog201a51f2007-04-30 00:51:09 +00001150{
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;
Anthony Liguori7267c092011-08-20 22:09:37 -05001157 g_free(entry);
balrog201a51f2007-04-30 00:51:09 +00001158 }
1159}
1160
aliguori376253e2009-03-05 23:01:23 +00001161void pcmcia_info(Monitor *mon)
balrog201a51f2007-04-30 00:51:09 +00001162{
1163 struct pcmcia_socket_entry_s *iter;
aliguori376253e2009-03-05 23:01:23 +00001164
balrog201a51f2007-04-30 00:51:09 +00001165 if (!pcmcia_sockets)
aliguori376253e2009-03-05 23:01:23 +00001166 monitor_printf(mon, "No PCMCIA sockets\n");
balrog201a51f2007-04-30 00:51:09 +00001167
1168 for (iter = pcmcia_sockets; iter; iter = iter->next)
aliguori376253e2009-03-05 23:01:23 +00001169 monitor_printf(mon, "%s: %s\n", iter->socket->slot_string,
1170 iter->socket->attached ? iter->socket->card_string :
1171 "Empty");
balrog201a51f2007-04-30 00:51:09 +00001172}
1173
1174/***********************************************************/
bellardcc1daa42005-06-05 14:49:17 +00001175/* machine registration */
1176
blueswir1bdaf78e2008-10-04 07:24:27 +00001177static QEMUMachine *first_machine = NULL;
aliguori6f338c32009-02-11 15:21:54 +00001178QEMUMachine *current_machine = NULL;
bellardcc1daa42005-06-05 14:49:17 +00001179
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
pbrook9596ebb2007-11-18 01:44:38 +00001191static QEMUMachine *find_machine(const char *name)
bellardcc1daa42005-06-05 14:49:17 +00001192{
1193 QEMUMachine *m;
1194
1195 for(m = first_machine; m != NULL; m = m->next) {
1196 if (!strcmp(m->name, name))
1197 return m;
Mark McLoughlin3f6599e2009-07-22 10:02:50 +01001198 if (m->alias && !strcmp(m->alias, name))
1199 return m;
bellardcc1daa42005-06-05 14:49:17 +00001200 }
1201 return NULL;
1202}
1203
Jordan Justen2c8cffa2012-02-21 23:18:50 -08001204QEMUMachine *find_default_machine(void)
Anthony Liguori0c257432009-05-21 20:41:01 -05001205{
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
Anthony Liguori01d3c802012-08-10 11:04:11 -05001216MachineInfoList *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
bellardcc1daa42005-06-05 14:49:17 +00001247/***********************************************************/
bellard8a7ddc32004-03-31 19:00:16 +00001248/* main execution loop */
1249
pbrook9596ebb2007-11-18 01:44:38 +00001250static void gui_update(void *opaque)
bellard8a7ddc32004-03-31 19:00:16 +00001251{
aliguori7d957bd2009-01-15 22:14:11 +00001252 uint64_t interval = GUI_REFRESH_INTERVAL;
ths740733b2007-06-08 01:57:56 +00001253 DisplayState *ds = opaque;
aliguori7d957bd2009-01-15 22:14:11 +00001254 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 }
Paolo Bonzini7bd427d2011-03-11 16:47:48 +01001264 qemu_mod_timer(ds->gui_timer, interval + qemu_get_clock_ms(rt_clock));
bellard8a7ddc32004-03-31 19:00:16 +00001265}
1266
bellard0bd48852005-11-11 00:00:47 +00001267struct vm_change_state_entry {
1268 VMChangeStateHandler *cb;
1269 void *opaque;
Blue Swirl72cf2d42009-09-12 07:36:22 +00001270 QLIST_ENTRY (vm_change_state_entry) entries;
bellard0bd48852005-11-11 00:00:47 +00001271};
1272
Blue Swirl72cf2d42009-09-12 07:36:22 +00001273static QLIST_HEAD(vm_change_state_head, vm_change_state_entry) vm_change_state_head;
bellard0bd48852005-11-11 00:00:47 +00001274
1275VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
1276 void *opaque)
1277{
1278 VMChangeStateEntry *e;
1279
Anthony Liguori7267c092011-08-20 22:09:37 -05001280 e = g_malloc0(sizeof (*e));
bellard0bd48852005-11-11 00:00:47 +00001281
1282 e->cb = cb;
1283 e->opaque = opaque;
Blue Swirl72cf2d42009-09-12 07:36:22 +00001284 QLIST_INSERT_HEAD(&vm_change_state_head, e, entries);
bellard0bd48852005-11-11 00:00:47 +00001285 return e;
1286}
1287
1288void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
1289{
Blue Swirl72cf2d42009-09-12 07:36:22 +00001290 QLIST_REMOVE (e, entries);
Anthony Liguori7267c092011-08-20 22:09:37 -05001291 g_free (e);
bellard0bd48852005-11-11 00:00:47 +00001292}
1293
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -03001294void vm_state_notify(int running, RunState state)
bellard0bd48852005-11-11 00:00:47 +00001295{
1296 VMChangeStateEntry *e;
1297
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -03001298 trace_vm_state_notify(running, state);
Stefan Hajnoczi94b0b5f2010-11-16 12:20:25 +00001299
bellard0bd48852005-11-11 00:00:47 +00001300 for (e = vm_change_state_head.lh_first; e; e = e->entries.le_next) {
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -03001301 e->cb(e->opaque, running, state);
bellard0bd48852005-11-11 00:00:47 +00001302 }
1303}
1304
bellard8a7ddc32004-03-31 19:00:16 +00001305void vm_start(void)
1306{
Luiz Capitulino13548692011-07-29 15:36:43 -03001307 if (!runstate_is_running()) {
bellard8a7ddc32004-03-31 19:00:16 +00001308 cpu_enable_ticks();
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001309 runstate_set(RUN_STATE_RUNNING);
1310 vm_state_notify(1, RUN_STATE_RUNNING);
aliguorid6dc3d42009-04-24 18:04:07 +00001311 resume_all_vcpus();
Luiz Capitulino6ed2c482010-04-27 20:35:59 -03001312 monitor_protocol_event(QEVENT_RESUME, NULL);
bellard8a7ddc32004-03-31 19:00:16 +00001313 }
1314}
1315
bellardbb0c6722004-06-20 12:37:32 +00001316/* reset/shutdown handler */
1317
1318typedef struct QEMUResetEntry {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001319 QTAILQ_ENTRY(QEMUResetEntry) entry;
bellardbb0c6722004-06-20 12:37:32 +00001320 QEMUResetHandler *func;
1321 void *opaque;
bellardbb0c6722004-06-20 12:37:32 +00001322} QEMUResetEntry;
1323
Blue Swirl72cf2d42009-09-12 07:36:22 +00001324static QTAILQ_HEAD(reset_handlers, QEMUResetEntry) reset_handlers =
1325 QTAILQ_HEAD_INITIALIZER(reset_handlers);
bellardbb0c6722004-06-20 12:37:32 +00001326static int reset_requested;
Gleb Natapovf64622c2011-03-15 13:56:04 +02001327static int shutdown_requested, shutdown_signal = -1;
1328static pid_t shutdown_pid;
bellard34751872005-07-02 14:31:34 +00001329static int powerdown_requested;
Jan Kiszka8cf71712011-02-07 12:19:16 +01001330static int debug_requested;
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001331static int suspend_requested;
Luiz Capitulino14058192012-08-08 17:29:17 -03001332static int wakeup_requested;
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001333static 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;
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001338static RunState vmstop_requested = RUN_STATE_MAX;
bellardbb0c6722004-06-20 12:37:32 +00001339
Anthony PERARD1291eb32010-07-22 15:52:48 +01001340int 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
aurel32cf7a2fe2008-03-18 06:53:05 +00001350int qemu_shutdown_requested(void)
1351{
1352 int r = shutdown_requested;
1353 shutdown_requested = 0;
1354 return r;
1355}
1356
Gleb Natapovf64622c2011-03-15 13:56:04 +02001357void qemu_kill_report(void)
1358{
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +02001359 if (!qtest_enabled() && shutdown_signal != -1) {
Peter Maydellf1d3fb02011-03-30 22:03:38 +01001360 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 {
Andreas Färber953ffe02011-06-02 19:58:06 +02001367 fprintf(stderr, " from pid " FMT_pid "\n", shutdown_pid);
Peter Maydellf1d3fb02011-03-30 22:03:38 +01001368 }
Gleb Natapovf64622c2011-03-15 13:56:04 +02001369 shutdown_signal = -1;
1370 }
1371}
1372
aurel32cf7a2fe2008-03-18 06:53:05 +00001373int qemu_reset_requested(void)
1374{
1375 int r = reset_requested;
1376 reset_requested = 0;
1377 return r;
1378}
1379
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001380static int qemu_suspend_requested(void)
1381{
1382 int r = suspend_requested;
1383 suspend_requested = 0;
1384 return r;
1385}
1386
Luiz Capitulino14058192012-08-08 17:29:17 -03001387static int qemu_wakeup_requested(void)
1388{
1389 int r = wakeup_requested;
1390 wakeup_requested = 0;
1391 return r;
1392}
1393
aurel32cf7a2fe2008-03-18 06:53:05 +00001394int qemu_powerdown_requested(void)
1395{
1396 int r = powerdown_requested;
1397 powerdown_requested = 0;
1398 return r;
1399}
1400
aliguorie5689022009-04-24 18:03:54 +00001401static int qemu_debug_requested(void)
1402{
1403 int r = debug_requested;
1404 debug_requested = 0;
1405 return r;
1406}
1407
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001408/* We use RUN_STATE_MAX but any invalid value will do */
Luiz Capitulino0d45b702011-09-30 14:27:11 -03001409static bool qemu_vmstop_requested(RunState *r)
aliguori6e29f5d2009-04-24 18:04:02 +00001410{
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001411 if (vmstop_requested < RUN_STATE_MAX) {
Luiz Capitulino0d45b702011-09-30 14:27:11 -03001412 *r = vmstop_requested;
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001413 vmstop_requested = RUN_STATE_MAX;
Luiz Capitulino0d45b702011-09-30 14:27:11 -03001414 return true;
1415 }
1416
1417 return false;
aliguori6e29f5d2009-04-24 18:04:02 +00001418}
1419
Jan Kiszkaa08d4362009-06-27 09:25:07 +02001420void qemu_register_reset(QEMUResetHandler *func, void *opaque)
bellardbb0c6722004-06-20 12:37:32 +00001421{
Anthony Liguori7267c092011-08-20 22:09:37 -05001422 QEMUResetEntry *re = g_malloc0(sizeof(QEMUResetEntry));
bellardbb0c6722004-06-20 12:37:32 +00001423
bellardbb0c6722004-06-20 12:37:32 +00001424 re->func = func;
1425 re->opaque = opaque;
Blue Swirl72cf2d42009-09-12 07:36:22 +00001426 QTAILQ_INSERT_TAIL(&reset_handlers, re, entry);
bellardbb0c6722004-06-20 12:37:32 +00001427}
1428
Jan Kiszkadda9b292009-07-02 00:19:02 +02001429void qemu_unregister_reset(QEMUResetHandler *func, void *opaque)
bellardbb0c6722004-06-20 12:37:32 +00001430{
1431 QEMUResetEntry *re;
1432
Blue Swirl72cf2d42009-09-12 07:36:22 +00001433 QTAILQ_FOREACH(re, &reset_handlers, entry) {
Jan Kiszkadda9b292009-07-02 00:19:02 +02001434 if (re->func == func && re->opaque == opaque) {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001435 QTAILQ_REMOVE(&reset_handlers, re, entry);
Anthony Liguori7267c092011-08-20 22:09:37 -05001436 g_free(re);
Jan Kiszkadda9b292009-07-02 00:19:02 +02001437 return;
1438 }
1439 }
1440}
1441
Jan Kiszkae063eb12011-06-14 18:29:43 +02001442void qemu_system_reset(bool report)
Jan Kiszkadda9b292009-07-02 00:19:02 +02001443{
1444 QEMUResetEntry *re, *nre;
1445
1446 /* reset all devices */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001447 QTAILQ_FOREACH_SAFE(re, &reset_handlers, entry, nre) {
bellardbb0c6722004-06-20 12:37:32 +00001448 re->func(re->opaque);
1449 }
Jan Kiszkae063eb12011-06-14 18:29:43 +02001450 if (report) {
1451 monitor_protocol_event(QEVENT_RESET, NULL);
1452 }
Jan Kiszkaea375f92010-03-01 19:10:30 +01001453 cpu_synchronize_all_post_reset();
bellardbb0c6722004-06-20 12:37:32 +00001454}
1455
1456void qemu_system_reset_request(void)
1457{
bellardd1beab82006-10-02 19:44:22 +00001458 if (no_reboot) {
1459 shutdown_requested = 1;
1460 } else {
1461 reset_requested = 1;
1462 }
Jan Kiszkab4a3d962011-02-01 22:15:43 +01001463 cpu_stop_current();
aliguorid9f75a42009-04-24 18:03:11 +00001464 qemu_notify_event();
bellardbb0c6722004-06-20 12:37:32 +00001465}
1466
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001467static void qemu_system_suspend(void)
1468{
1469 pause_all_vcpus();
1470 notifier_list_notify(&suspend_notifiers, NULL);
Luiz Capitulinoad02b962012-04-27 13:33:36 -03001471 runstate_set(RUN_STATE_SUSPENDED);
Gerd Hoffmann53370b72012-02-23 13:45:26 +01001472 monitor_protocol_event(QEVENT_SUSPEND, NULL);
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001473}
1474
1475void qemu_system_suspend_request(void)
1476{
Luiz Capitulino9abc62f2012-04-27 14:31:12 -03001477 if (runstate_check(RUN_STATE_SUSPENDED)) {
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001478 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{
Luiz Capitulino9abc62f2012-04-27 14:31:12 -03001492 if (!runstate_check(RUN_STATE_SUSPENDED)) {
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001493 return;
1494 }
1495 if (!(wakeup_reason_mask & (1 << reason))) {
1496 return;
1497 }
Luiz Capitulinoad02b962012-04-27 13:33:36 -03001498 runstate_set(RUN_STATE_RUNNING);
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001499 notifier_list_notify(&wakeup_notifiers, &reason);
Luiz Capitulino14058192012-08-08 17:29:17 -03001500 wakeup_requested = 1;
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001501 qemu_notify_event();
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001502}
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
Gleb Natapovf64622c2011-03-15 13:56:04 +02001518void qemu_system_killed(int signal, pid_t pid)
1519{
1520 shutdown_signal = signal;
1521 shutdown_pid = pid;
Kevin Wolfd9389b92011-09-14 15:38:40 +02001522 no_shutdown = 0;
Gleb Natapovf64622c2011-03-15 13:56:04 +02001523 qemu_system_shutdown_request();
1524}
1525
bellardbb0c6722004-06-20 12:37:32 +00001526void qemu_system_shutdown_request(void)
1527{
1528 shutdown_requested = 1;
aliguorid9f75a42009-04-24 18:03:11 +00001529 qemu_notify_event();
bellardbb0c6722004-06-20 12:37:32 +00001530}
1531
bellard34751872005-07-02 14:31:34 +00001532void qemu_system_powerdown_request(void)
1533{
1534 powerdown_requested = 1;
aliguorid9f75a42009-04-24 18:03:11 +00001535 qemu_notify_event();
1536}
1537
Jan Kiszka8cf71712011-02-07 12:19:16 +01001538void qemu_system_debug_request(void)
1539{
1540 debug_requested = 1;
Jan Kiszka83f338f2011-02-07 12:19:17 +01001541 qemu_notify_event();
Jan Kiszka8cf71712011-02-07 12:19:16 +01001542}
1543
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -03001544void qemu_system_vmstop_request(RunState state)
Jan Kiszka8cf71712011-02-07 12:19:16 +01001545{
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -03001546 vmstop_requested = state;
Jan Kiszka8cf71712011-02-07 12:19:16 +01001547 qemu_notify_event();
1548}
1549
Blue Swirld9c32312009-08-09 08:42:19 +00001550qemu_irq qemu_system_powerdown;
1551
Paolo Bonzini99435902011-09-12 14:03:13 +02001552static bool main_loop_should_exit(void)
1553{
1554 RunState r;
1555 if (qemu_debug_requested()) {
1556 vm_stop(RUN_STATE_DEBUG);
1557 }
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001558 if (qemu_suspend_requested()) {
1559 qemu_system_suspend();
1560 }
Paolo Bonzini99435902011-09-12 14:03:13 +02001561 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 }
Luiz Capitulino14058192012-08-08 17:29:17 -03001580 if (qemu_wakeup_requested()) {
1581 pause_all_vcpus();
1582 cpu_synchronize_all_states();
1583 qemu_system_reset(VMRESET_SILENT);
1584 resume_all_vcpus();
Luiz Capitulino17c86602012-08-09 11:27:30 -03001585 monitor_protocol_event(QEVENT_WAKEUP, NULL);
Luiz Capitulino14058192012-08-08 17:29:17 -03001586 }
Paolo Bonzini99435902011-09-12 14:03:13 +02001587 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
aliguori43b96852009-04-24 18:03:33 +00001597static void main_loop(void)
1598{
Jan Kiszkac9f711a2011-08-22 17:46:02 +02001599 bool nonblocking;
Paolo Bonzini99435902011-09-12 14:03:13 +02001600 int last_io = 0;
Jan Kiszka8e1b90e2011-02-01 22:15:46 +01001601#ifdef CONFIG_PROFILER
1602 int64_t ti;
1603#endif
Paolo Bonzini99435902011-09-12 14:03:13 +02001604 do {
Jan Kiszkac9f711a2011-08-22 17:46:02 +02001605 nonblocking = !kvm_enabled() && last_io > 0;
aliguori43b96852009-04-24 18:03:33 +00001606#ifdef CONFIG_PROFILER
Jan Kiszka46481d32011-02-01 22:15:47 +01001607 ti = profile_getclock();
aliguori43b96852009-04-24 18:03:33 +00001608#endif
Jan Kiszkac9f711a2011-08-22 17:46:02 +02001609 last_io = main_loop_wait(nonblocking);
aliguori43b96852009-04-24 18:03:33 +00001610#ifdef CONFIG_PROFILER
Jan Kiszka46481d32011-02-01 22:15:47 +01001611 dev_time += profile_getclock() - ti;
aliguori43b96852009-04-24 18:03:33 +00001612#endif
Paolo Bonzini99435902011-09-12 14:03:13 +02001613 } while (!main_loop_should_exit());
bellardb4608c02003-06-27 17:34:32 +00001614}
1615
pbrook9bd7e6d2009-04-07 22:58:45 +00001616static void version(void)
1617{
Thomas Monjalonf75ca1a2010-04-28 14:42:01 +02001618 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n");
pbrook9bd7e6d2009-04-07 22:58:45 +00001619}
1620
ths15f82202007-06-29 23:26:08 +00001621static void help(int exitcode)
bellard0824d6f2003-06-24 13:42:40 +00001622{
Michael Ellermana3adb7a2011-12-19 17:19:31 +11001623 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
Michael Ellerman77bd1112011-12-19 17:19:30 +11001628#define QEMU_OPTIONS_GENERATE_HELP
1629#include "qemu-options-wrapper.h"
Michael Ellermana3adb7a2011-12-19 17:19:31 +11001630
1631 printf("\nDuring emulation, the following keys are useful:\n"
malc3f020d72010-02-08 12:04:56 +03001632 "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"
Michael Ellermana3adb7a2011-12-19 17:19:31 +11001636 "When using -nographic, press 'ctrl-a h' to get some help.\n");
1637
ths15f82202007-06-29 23:26:08 +00001638 exit(exitcode);
bellard0824d6f2003-06-24 13:42:40 +00001639}
1640
bellardcd6f1162004-05-13 22:02:20 +00001641#define HAS_ARG 0x0001
1642
bellardcd6f1162004-05-13 22:02:20 +00001643typedef struct QEMUOption {
1644 const char *name;
1645 int flags;
1646 int index;
Blue Swirlad960902010-03-29 19:23:52 +00001647 uint32_t arch_mask;
bellardcd6f1162004-05-13 22:02:20 +00001648} QEMUOption;
1649
blueswir1dbed7e42008-10-01 19:38:09 +00001650static const QEMUOption qemu_options[] = {
Blue Swirlad960902010-03-29 19:23:52 +00001651 { "h", 0, QEMU_OPTION_h, QEMU_ARCH_ALL },
Michael Ellerman77bd1112011-12-19 17:19:30 +11001652#define QEMU_OPTIONS_GENERATE_OPTIONS
1653#include "qemu-options-wrapper.h"
bellardcd6f1162004-05-13 22:02:20 +00001654 { NULL },
bellardfc01f7e2003-06-30 10:03:06 +00001655};
Blue Swirla369da52011-09-27 19:15:42 +00001656
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
malc3893c122008-09-28 00:42:05 +00001672static void select_vgahw (const char *p)
1673{
1674 const char *opts;
1675
Zachary Amsden86176752009-07-30 00:15:02 -10001676 vga_interface_type = VGA_NONE;
malc3893c122008-09-28 00:42:05 +00001677 if (strstart(p, "std", &opts)) {
Blue Swirla369da52011-09-27 19:15:42 +00001678 if (vga_available()) {
1679 vga_interface_type = VGA_STD;
1680 } else {
1681 fprintf(stderr, "Error: standard VGA not available\n");
1682 exit(0);
1683 }
malc3893c122008-09-28 00:42:05 +00001684 } else if (strstart(p, "cirrus", &opts)) {
Blue Swirla369da52011-09-27 19:15:42 +00001685 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 }
malc3893c122008-09-28 00:42:05 +00001691 } else if (strstart(p, "vmware", &opts)) {
Blue Swirla369da52011-09-27 19:15:42 +00001692 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 }
aliguori94909d92009-04-22 15:19:53 +00001698 } else if (strstart(p, "xenfb", &opts)) {
Zachary Amsden86176752009-07-30 00:15:02 -10001699 vga_interface_type = VGA_XENFB;
Gerd Hoffmanna19cbfb2010-04-27 11:50:11 +02001700 } else if (strstart(p, "qxl", &opts)) {
1701 vga_interface_type = VGA_QXL;
aliguori28b85ed2009-04-22 15:19:48 +00001702 } else if (!strstart(p, "none", &opts)) {
malc3893c122008-09-28 00:42:05 +00001703 invalid_vga:
1704 fprintf(stderr, "Unknown vga type: %s\n", p);
1705 exit(1);
1706 }
malccb5a7aa2008-09-28 00:42:12 +00001707 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 }
malc3893c122008-09-28 00:42:05 +00001720}
1721
Jes Sorensen1472a952011-03-16 13:33:31 +01001722static 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 {
Peter Maydell05175532011-03-23 03:40:57 +00001740 goto invalid_sdl_args;
Jes Sorensen1472a952011-03-16 13:33:31 +01001741 }
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 {
Peter Maydell05175532011-03-23 03:40:57 +00001749 goto invalid_sdl_args;
Jes Sorensen1472a952011-03-16 13:33:31 +01001750 }
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 {
Peter Maydell05175532011-03-23 03:40:57 +00001758 goto invalid_sdl_args;
Jes Sorensen1472a952011-03-16 13:33:31 +01001759 }
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 {
Peter Maydell05175532011-03-23 03:40:57 +00001767 goto invalid_sdl_args;
Jes Sorensen1472a952011-03-16 13:33:31 +01001768 }
1769 } else {
Peter Maydell05175532011-03-23 03:40:57 +00001770 invalid_sdl_args:
1771 fprintf(stderr, "Invalid SDL option string: %s\n", p);
1772 exit(1);
Jes Sorensen1472a952011-03-16 13:33:31 +01001773 }
1774 opts = nextopt;
1775 }
1776#else
1777 fprintf(stderr, "SDL support is disabled\n");
1778 exit(1);
1779#endif
Jes Sorensen3264ff12011-03-16 13:33:33 +01001780 } else if (strstart(p, "vnc", &opts)) {
Jes Sorensen821601e2011-03-16 13:33:36 +01001781#ifdef CONFIG_VNC
Jes Sorensen3264ff12011-03-16 13:33:33 +01001782 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 }
Jes Sorensen821601e2011-03-16 13:33:36 +01001795#else
1796 fprintf(stderr, "VNC support is disabled\n");
1797 exit(1);
1798#endif
Jes Sorensen1472a952011-03-16 13:33:31 +01001799 } 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
Jes Sorensen4171d322011-03-16 13:33:32 +01001806 } else if (strstart(p, "none", &opts)) {
1807 display = DT_NONE;
Jes Sorensen1472a952011-03-16 13:33:31 +01001808 } else {
Jes Sorensen1472a952011-03-16 13:33:31 +01001809 fprintf(stderr, "Unknown display type: %s\n", p);
1810 exit(1);
1811 }
1812
1813 return display;
1814}
1815
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02001816static int balloon_parse(const char *arg)
1817{
Gerd Hoffmann382f0742009-08-14 10:34:22 +02001818 QemuOpts *opts;
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02001819
Gerd Hoffmann382f0742009-08-14 10:34:22 +02001820 if (strcmp(arg, "none") == 0) {
1821 return 0;
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02001822 }
Gerd Hoffmann382f0742009-08-14 10:34:22 +02001823
1824 if (!strncmp(arg, "virtio", 6)) {
1825 if (arg[6] == ',') {
1826 /* have params -> parse them */
Gerd Hoffmann3329f072010-08-20 13:52:01 +02001827 opts = qemu_opts_parse(qemu_find_opts("device"), arg+7, 0);
Gerd Hoffmann382f0742009-08-14 10:34:22 +02001828 if (!opts)
1829 return -1;
1830 } else {
1831 /* create empty opts */
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03001832 opts = qemu_opts_create(qemu_find_opts("device"), NULL, 0, NULL);
Gerd Hoffmann382f0742009-08-14 10:34:22 +02001833 }
Alexander Graf29f82b32011-03-29 15:29:29 +02001834 qemu_opt_set(opts, "driver", "virtio-balloon");
Gerd Hoffmann382f0742009-08-14 10:34:22 +02001835 return 0;
1836 }
1837
1838 return -1;
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02001839}
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02001840
Paul Brook5cea8592009-05-30 00:52:44 +01001841char *qemu_find_file(int type, const char *name)
1842{
1843 int len;
1844 const char *subdir;
1845 char *buf;
1846
Peter Maydell31783202012-05-25 13:07:01 +01001847 /* Try the name as a straight path first */
1848 if (access(name, R_OK) == 0) {
Anthony Liguori7267c092011-08-20 22:09:37 -05001849 return g_strdup(name);
Paul Brook5cea8592009-05-30 00:52:44 +01001850 }
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;
Anthony Liguori7267c092011-08-20 22:09:37 -05001862 buf = g_malloc0(len);
Blue Swirl3a417592009-06-09 19:12:21 +00001863 snprintf(buf, len, "%s/%s%s", data_dir, subdir, name);
Paul Brook5cea8592009-05-30 00:52:44 +01001864 if (access(buf, R_OK)) {
Anthony Liguori7267c092011-08-20 22:09:37 -05001865 g_free(buf);
Paul Brook5cea8592009-05-30 00:52:44 +01001866 return NULL;
1867 }
1868 return buf;
1869}
1870
Markus Armbrusterff952ba2010-01-29 19:48:57 +01001871static int device_help_func(QemuOpts *opts, void *opaque)
1872{
1873 return qdev_device_help(opts);
1874}
1875
Gerd Hoffmannf31d07d2009-07-31 12:25:37 +02001876static 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
Gerd Hoffmann1a688d32009-12-08 13:11:36 +01001886static int chardev_init_func(QemuOpts *opts, void *opaque)
1887{
1888 CharDriverState *chr;
1889
Anthony Liguorif69554b2011-08-15 11:17:37 -05001890 chr = qemu_chr_new_from_opts(opts, NULL);
Gerd Hoffmann1a688d32009-12-08 13:11:36 +01001891 if (!chr)
1892 return -1;
1893 return 0;
1894}
1895
Venkateswararao Jujjuri (JV)758e8e32010-06-14 13:34:41 -07001896#ifdef CONFIG_VIRTFS
Gautham R Shenoy74db9202010-04-29 17:44:43 +05301897static 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
Gerd Hoffmann88589342009-12-08 13:11:50 +01001906static 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
Daniel P. Berrange39eaab92010-06-07 15:42:31 +01001926 if (qemu_opt_get_bool(opts, "pretty", 0))
1927 flags |= MONITOR_USE_PRETTY;
1928
Gerd Hoffmann88589342009-12-08 13:11:50 +01001929 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
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01001943static void monitor_parse(const char *optarg, const char *mode)
Gerd Hoffmann88589342009-12-08 13:11:50 +01001944{
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 {
Jan Kiszka140e0652010-04-06 16:55:52 +02001954 snprintf(label, sizeof(label), "compat_monitor%d",
1955 monitor_device_index);
1956 if (monitor_device_index == 0) {
Gerd Hoffmann88589342009-12-08 13:11:50 +01001957 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
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03001966 opts = qemu_opts_create(qemu_find_opts("mon"), label, 1, NULL);
Gerd Hoffmann88589342009-12-08 13:11:50 +01001967 if (!opts) {
1968 fprintf(stderr, "duplicate chardev: %s\n", label);
1969 exit(1);
1970 }
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01001971 qemu_opt_set(opts, "mode", mode);
Gerd Hoffmann88589342009-12-08 13:11:50 +01001972 qemu_opt_set(opts, "chardev", label);
1973 if (def)
1974 qemu_opt_set(opts, "default", "on");
1975 monitor_device_index++;
1976}
1977
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02001978struct device_config {
1979 enum {
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01001980 DEV_USB, /* -usbdevice */
1981 DEV_BT, /* -bt */
1982 DEV_SERIAL, /* -serial */
1983 DEV_PARALLEL, /* -parallel */
1984 DEV_VIRTCON, /* -virtioconsole */
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08001985 DEV_DEBUGCON, /* -debugcon */
Markus Armbrusteref0c4a02012-02-07 15:09:13 +01001986 DEV_GDB, /* -gdb, -s */
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02001987 } type;
1988 const char *cmdline;
Markus Armbrusterd9a59542012-02-07 15:09:12 +01001989 Location loc;
Blue Swirl72cf2d42009-09-12 07:36:22 +00001990 QTAILQ_ENTRY(device_config) next;
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02001991};
Blue Swirl72cf2d42009-09-12 07:36:22 +00001992QTAILQ_HEAD(, device_config) device_configs = QTAILQ_HEAD_INITIALIZER(device_configs);
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02001993
1994static void add_device_config(int type, const char *cmdline)
1995{
1996 struct device_config *conf;
1997
Anthony Liguori7267c092011-08-20 22:09:37 -05001998 conf = g_malloc0(sizeof(*conf));
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02001999 conf->type = type;
2000 conf->cmdline = cmdline;
Markus Armbrusterd9a59542012-02-07 15:09:12 +01002001 loc_save(&conf->loc);
Blue Swirl72cf2d42009-09-12 07:36:22 +00002002 QTAILQ_INSERT_TAIL(&device_configs, conf, next);
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002003}
2004
2005static int foreach_device_config(int type, int (*func)(const char *cmdline))
2006{
2007 struct device_config *conf;
2008 int rc;
2009
Blue Swirl72cf2d42009-09-12 07:36:22 +00002010 QTAILQ_FOREACH(conf, &device_configs, next) {
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002011 if (conf->type != type)
2012 continue;
Markus Armbrusterd9a59542012-02-07 15:09:12 +01002013 loc_push_restore(&conf->loc);
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002014 rc = func(conf->cmdline);
Markus Armbrusterd9a59542012-02-07 15:09:12 +01002015 loc_pop(&conf->loc);
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002016 if (0 != rc)
2017 return rc;
2018 }
2019 return 0;
2020}
2021
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01002022static 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);
Anthony Liguori27143a42011-08-15 11:17:36 -05002034 serial_hds[index] = qemu_chr_new(label, devname, NULL);
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01002035 if (!serial_hds[index]) {
Peter Maydell52d06132012-07-09 04:28:30 +00002036 fprintf(stderr, "qemu: could not connect serial device"
2037 " to character backend '%s'\n", devname);
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01002038 return -1;
2039 }
2040 index++;
2041 return 0;
2042}
2043
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01002044static 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);
Anthony Liguori27143a42011-08-15 11:17:36 -05002056 parallel_hds[index] = qemu_chr_new(label, devname, NULL);
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01002057 if (!parallel_hds[index]) {
Peter Maydell52d06132012-07-09 04:28:30 +00002058 fprintf(stderr, "qemu: could not connect parallel device"
2059 " to character backend '%s'\n", devname);
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01002060 return -1;
2061 }
2062 index++;
2063 return 0;
2064}
2065
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002066static int virtcon_parse(const char *devname)
2067{
Gerd Hoffmann3329f072010-08-20 13:52:01 +02002068 QemuOptsList *device = qemu_find_opts("device");
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002069 static int index = 0;
2070 char label[32];
Amit Shah392ecf52010-01-21 16:19:23 +05302071 QemuOpts *bus_opts, *dev_opts;
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002072
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 }
Amit Shah392ecf52010-01-21 16:19:23 +05302079
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03002080 bus_opts = qemu_opts_create(device, NULL, 0, NULL);
Anthony Liguorie87f7fc2012-02-06 11:07:18 -06002081 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 }
Amit Shah392ecf52010-01-21 16:19:23 +05302086
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03002087 dev_opts = qemu_opts_create(device, NULL, 0, NULL);
Amit Shah392ecf52010-01-21 16:19:23 +05302088 qemu_opt_set(dev_opts, "driver", "virtconsole");
2089
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002090 snprintf(label, sizeof(label), "virtcon%d", index);
Anthony Liguori27143a42011-08-15 11:17:36 -05002091 virtcon_hds[index] = qemu_chr_new(label, devname, NULL);
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002092 if (!virtcon_hds[index]) {
Peter Maydell52d06132012-07-09 04:28:30 +00002093 fprintf(stderr, "qemu: could not connect virtio console"
2094 " to character backend '%s'\n", devname);
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002095 return -1;
2096 }
Amit Shah392ecf52010-01-21 16:19:23 +05302097 qemu_opt_set(dev_opts, "chardev", label);
2098
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002099 index++;
2100 return 0;
2101}
2102
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08002103static int debugcon_parse(const char *devname)
2104{
2105 QemuOpts *opts;
2106
Anthony Liguori27143a42011-08-15 11:17:36 -05002107 if (!qemu_chr_new("debugcon", devname, NULL)) {
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08002108 exit(1);
2109 }
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03002110 opts = qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL);
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08002111 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
Jan Kiszka9052ea62011-07-23 12:38:37 +02002120static 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) {
Peter Maydell3b264862012-02-22 22:13:11 +00002133 printf("%-20s %s (alias of %s)\n", m->alias, m->desc, m->name);
Jan Kiszka9052ea62011-07-23 12:38:37 +02002134 }
Peter Maydell3b264862012-02-22 22:13:11 +00002135 printf("%-20s %s%s\n", m->name, m->desc,
Jan Kiszka9052ea62011-07-23 12:38:37 +02002136 m->is_default ? " (default)" : "");
2137 }
Peter Maydellc8057f92012-08-02 13:45:54 +01002138 exit(!name || !is_help_option(name));
Jan Kiszka9052ea62011-07-23 12:38:37 +02002139}
2140
Anthony PERARD303d4e82010-09-21 20:05:31 +01002141static int tcg_init(void)
2142{
Jan Kiszkad5ab9712011-08-02 16:10:21 +02002143 tcg_exec_init(tcg_tb_size * 1024 * 1024);
Anthony PERARD303d4e82010-09-21 20:05:31 +01002144 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 },
Anthony PERARD3285cf42010-08-19 12:27:56 +01002155 { "xen", "Xen", xen_available, xen_init, &xen_allowed },
Anthony PERARD303d4e82010-09-21 20:05:31 +01002156 { "kvm", "KVM", kvm_available, kvm_init, &kvm_allowed },
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +02002157 { "qtest", "QTest", qtest_available, qtest_init, &qtest_allowed },
Anthony PERARD303d4e82010-09-21 20:05:31 +01002158};
2159
2160static int configure_accelerator(void)
2161{
2162 const char *p = NULL;
2163 char buf[10];
2164 int i, ret;
Peter Maydell1b785a92012-02-07 20:57:27 +00002165 bool accel_initialised = 0;
Anthony PERARD303d4e82010-09-21 20:05:31 +01002166 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
Peter Maydell1b785a92012-02-07 20:57:27 +00002178 while (!accel_initialised && *p != '\0') {
Anthony PERARD303d4e82010-09-21 20:05:31 +01002179 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) {
Anthony Liguoria16c53b2011-06-06 08:25:06 -05002185 *(accel_list[i].allowed) = 1;
Anthony PERARD303d4e82010-09-21 20:05:31 +01002186 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 }
Anthony Liguoria16c53b2011-06-06 08:25:06 -05002197 *(accel_list[i].allowed) = 0;
Anthony PERARD303d4e82010-09-21 20:05:31 +01002198 } else {
Peter Maydell1b785a92012-02-07 20:57:27 +00002199 accel_initialised = 1;
Anthony PERARD303d4e82010-09-21 20:05:31 +01002200 }
2201 break;
2202 }
2203 }
2204 if (i == ARRAY_SIZE(accel_list)) {
2205 fprintf(stderr, "\"%s\" accelerator does not exist.\n", buf);
2206 }
2207 }
2208
Peter Maydell1b785a92012-02-07 20:57:27 +00002209 if (!accel_initialised) {
Anthony PERARD303d4e82010-09-21 20:05:31 +01002210 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
Peter Maydell1b785a92012-02-07 20:57:27 +00002218 return !accel_initialised;
Anthony PERARD303d4e82010-09-21 20:05:31 +01002219}
2220
Gerd Hoffmannfd42dee2010-06-04 14:08:07 +02002221void qemu_add_exit_notifier(Notifier *notify)
2222{
2223 notifier_list_add(&exit_notifiers, notify);
2224}
2225
2226void qemu_remove_exit_notifier(Notifier *notify)
2227{
Paolo Bonzini31552522012-01-13 17:34:01 +01002228 notifier_remove(notify);
Gerd Hoffmannfd42dee2010-06-04 14:08:07 +02002229}
2230
2231static void qemu_run_exit_notifiers(void)
2232{
Jan Kiszka9e8dd452011-06-20 14:06:26 +02002233 notifier_list_notify(&exit_notifiers, NULL);
Gerd Hoffmannfd42dee2010-06-04 14:08:07 +02002234}
2235
Gleb Natapov4cab9462010-12-08 13:35:08 +02002236void 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{
Jan Kiszka9e8dd452011-06-20 14:06:26 +02002243 notifier_list_notify(&machine_init_done_notifiers, NULL);
Gleb Natapov4cab9462010-12-08 13:35:08 +02002244}
2245
Anthony Liguori6530a972010-01-22 09:18:06 -06002246static 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
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +01002254 loc_set_cmdline(argv, optind, 1);
Anthony Liguori6530a972010-01-22 09:18:06 -06002255 optind++;
2256 /* Treat --foo the same as -foo. */
2257 if (r[1] == '-')
2258 r++;
2259 popt = qemu_options;
2260 for(;;) {
2261 if (!popt->name) {
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +01002262 error_report("invalid option");
Anthony Liguori6530a972010-01-22 09:18:06 -06002263 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) {
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +01002271 error_report("requires an argument");
Anthony Liguori6530a972010-01-22 09:18:06 -06002272 exit(1);
2273 }
2274 optarg = argv[optind++];
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +01002275 loc_set_cmdline(argv, optind - 2, 2);
Anthony Liguori6530a972010-01-22 09:18:06 -06002276 } else {
2277 optarg = NULL;
2278 }
2279
2280 *poptarg = optarg;
2281 *poptind = optind;
2282
2283 return popt;
2284}
2285
Anthony Liguori07501122011-08-20 22:38:31 -05002286static gpointer malloc_and_trace(gsize n_bytes)
2287{
2288 void *ptr = malloc(n_bytes);
Frediano Ziglioa74cd8c2011-08-31 09:25:35 +02002289 trace_g_malloc(n_bytes, ptr);
Anthony Liguori07501122011-08-20 22:38:31 -05002290 return ptr;
2291}
2292
2293static gpointer realloc_and_trace(gpointer mem, gsize n_bytes)
2294{
2295 void *ptr = realloc(mem, n_bytes);
Frediano Ziglioa74cd8c2011-08-31 09:25:35 +02002296 trace_g_realloc(mem, n_bytes, ptr);
Anthony Liguori07501122011-08-20 22:38:31 -05002297 return ptr;
2298}
2299
2300static void free_and_trace(gpointer mem)
2301{
Frediano Ziglioa74cd8c2011-08-31 09:25:35 +02002302 trace_g_free(mem);
Anthony Liguori07501122011-08-20 22:38:31 -05002303 free(mem);
2304}
2305
Michael Rothd34e8f62012-01-21 11:13:53 -06002306int qemu_init_main_loop(void)
2307{
2308 return main_loop_init();
2309}
2310
malc902b3d52008-12-10 19:18:40 +00002311int main(int argc, char **argv, char **envp)
bellard0824d6f2003-06-24 13:42:40 +00002312{
thse4bcb142007-12-02 04:51:10 +00002313 int i;
Eduardo Habkostda1fcfd2010-04-06 19:22:07 -03002314 int snapshot, linux_boot;
Paolo Bonzini4e3de9e2010-03-10 11:38:48 +01002315 const char *icount_option = NULL;
bellard7f7f9872003-10-30 01:11:23 +00002316 const char *initrd_filename;
bellarda20dd502003-09-30 21:07:02 +00002317 const char *kernel_filename, *kernel_cmdline;
Anthony Liguori195325a2009-10-30 12:42:29 -05002318 char boot_devices[33] = "cad"; /* default to HD->floppy->CD-ROM */
aliguori3023f332009-01-16 19:04:14 +00002319 DisplayState *ds;
aliguori7d957bd2009-01-15 22:14:11 +00002320 DisplayChangeListener *dcl;
bellard46d47672004-11-16 01:45:27 +00002321 int cyls, heads, secs, translation;
Peter Maydell967c0da2012-02-22 22:40:00 +00002322 QemuOpts *hda_opts = NULL, *opts, *machine_opts;
Gerd Hoffmann03b0ba72010-08-20 13:52:02 +02002323 QemuOptsList *olist;
bellardcd6f1162004-05-13 22:02:20 +00002324 int optind;
Anthony Liguori6530a972010-01-22 09:18:06 -06002325 const char *optarg;
bellardd63d3072004-10-03 13:29:03 +00002326 const char *loadvm = NULL;
bellardcc1daa42005-06-05 14:49:17 +00002327 QEMUMachine *machine;
j_mayer94fc95c2007-03-05 19:44:02 +00002328 const char *cpu_model;
Paolo Bonzini7f1b17f2012-05-10 09:39:17 +02002329 const char *vga_model = "none";
ths93815bc2007-03-19 15:58:31 +00002330 const char *pid_file = NULL;
aliguori5bb79102008-10-13 03:12:02 +00002331 const char *incoming = NULL;
Jes Sorensen821601e2011-03-16 13:33:36 +01002332#ifdef CONFIG_VNC
Anthony Liguori993fbfd2009-05-21 16:54:00 -05002333 int show_vnc_port = 0;
Jes Sorensen821601e2011-03-16 13:33:36 +01002334#endif
Eduardo Habkost3ed2d9e2012-05-02 13:07:28 -03002335 bool defconfig = true;
Eduardo Habkostf29a5612012-05-02 13:07:29 -03002336 bool userconfig = true;
Matthew Fernandezc235d732011-06-07 16:32:40 +00002337 const char *log_mask = NULL;
2338 const char *log_file = NULL;
Anthony Liguori07501122011-08-20 22:38:31 -05002339 GMemVTable mem_trace = {
2340 .malloc = malloc_and_trace,
2341 .realloc = realloc_and_trace,
2342 .free = free_and_trace,
2343 };
Lluís23d15e82011-08-31 20:31:31 +02002344 const char *trace_events = NULL;
Lluíse4858972011-08-31 20:31:03 +02002345 const char *trace_file = NULL;
Stefan Hajnoczi0b5538c2011-02-26 18:38:39 +00002346
Gerd Hoffmannfd42dee2010-06-04 14:08:07 +02002347 atexit(qemu_run_exit_notifiers);
Markus Armbruster65abca02010-02-24 14:37:14 +01002348 error_set_progname(argv[0]);
2349
Anthony Liguori07501122011-08-20 22:38:31 -05002350 g_mem_set_vtable(&mem_trace);
Andreas Färberdb529aa2011-10-31 19:14:56 +01002351 if (!g_thread_supported()) {
Alon Levy42ed3722011-12-20 13:41:04 +02002352#if !GLIB_CHECK_VERSION(2, 31, 0)
Andreas Färberdb529aa2011-10-31 19:14:56 +01002353 g_thread_init(NULL);
Alon Levy42ed3722011-12-20 13:41:04 +02002354#else
2355 fprintf(stderr, "glib threading failed to initialize.\n");
2356 exit(1);
2357#endif
Andreas Färberdb529aa2011-10-31 19:14:56 +01002358 }
Anthony Liguori07501122011-08-20 22:38:31 -05002359
Andreas Färber1b71f7c2012-03-04 21:32:35 +01002360 module_call_init(MODULE_INIT_QOM);
2361
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -03002362 runstate_init();
2363
Jan Kiszka68752042009-09-15 13:36:04 +02002364 init_clocks();
Paolo Bonzini2ff68d02011-09-12 16:21:44 +02002365 rtc_clock = host_clock;
Jan Kiszka68752042009-09-15 13:36:04 +02002366
malc902b3d52008-12-10 19:18:40 +00002367 qemu_cache_utils_init(envp);
2368
Blue Swirl72cf2d42009-09-12 07:36:22 +00002369 QLIST_INIT (&vm_change_state_head);
Jes Sorensenfe98ac12010-06-10 11:42:21 +02002370 os_setup_early_signal_handling();
bellardbe995c22006-06-25 16:25:21 +00002371
Anthony Liguorif80f9ec2009-05-20 18:38:09 -05002372 module_call_init(MODULE_INIT_MACHINE);
Anthony Liguori0c257432009-05-21 20:41:01 -05002373 machine = find_default_machine();
j_mayer94fc95c2007-03-05 19:44:02 +00002374 cpu_model = NULL;
aurel324fc5d072008-04-27 21:39:40 +00002375 ram_size = 0;
bellard33e39632003-07-06 17:15:21 +00002376 snapshot = 0;
bellardc4b1fcc2004-03-14 21:44:30 +00002377 cyls = heads = secs = 0;
bellard46d47672004-11-16 01:45:27 +00002378 translation = BIOS_ATA_TRANSLATION_AUTO;
bellardc4b1fcc2004-03-14 21:44:30 +00002379
aliguori268a3622009-04-21 22:30:27 +00002380 for (i = 0; i < MAX_NODES; i++) {
2381 node_mem[i] = 0;
Chegu Vinodee785fe2012-07-16 21:31:30 -07002382 node_cpumask[i] = bitmap_new(MAX_CPUMASK_BITS);
aliguori268a3622009-04-21 22:30:27 +00002383 }
2384
aliguori268a3622009-04-21 22:30:27 +00002385 nb_numa_nodes = 0;
bellard7c9d8e02005-11-15 22:16:05 +00002386 nb_nics = 0;
ths3b46e622007-09-17 08:09:54 +00002387
blueswir141bd6392008-10-05 09:56:21 +00002388 autostart= 1;
2389
Anthony Liguori292444c2010-01-21 10:57:58 -06002390 /* first pass of option parsing */
2391 optind = 1;
2392 while (optind < argc) {
2393 if (argv[optind][0] != '-') {
2394 /* disk image */
Anthony Liguori28e68d62010-01-27 10:46:00 -06002395 optind++;
Anthony Liguori292444c2010-01-21 10:57:58 -06002396 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:
Eduardo Habkost3ed2d9e2012-05-02 13:07:28 -03002403 defconfig = false;
Anthony Liguori292444c2010-01-21 10:57:58 -06002404 break;
Eduardo Habkostf29a5612012-05-02 13:07:29 -03002405 case QEMU_OPTION_nouserconfig:
2406 userconfig = false;
2407 break;
Anthony Liguori292444c2010-01-21 10:57:58 -06002408 }
2409 }
2410 }
2411
2412 if (defconfig) {
Kevin Wolfdcfb0932010-03-05 17:25:55 +01002413 int ret;
Eduardo Habkostf29a5612012-05-02 13:07:29 -03002414 ret = qemu_read_default_config_files(userconfig);
Eduardo Habkostb5a8fe52012-05-02 13:07:25 -03002415 if (ret < 0) {
Kevin Wolfdcfb0932010-03-05 17:25:55 +01002416 exit(1);
Anthony Liguori292444c2010-01-21 10:57:58 -06002417 }
2418 }
2419
2420 /* second pass of option parsing */
bellardcd6f1162004-05-13 22:02:20 +00002421 optind = 1;
bellard0824d6f2003-06-24 13:42:40 +00002422 for(;;) {
bellardcd6f1162004-05-13 22:02:20 +00002423 if (optind >= argc)
bellard0824d6f2003-06-24 13:42:40 +00002424 break;
Anthony Liguori6530a972010-01-22 09:18:06 -06002425 if (argv[optind][0] != '-') {
Markus Armbruster2292dda2011-01-28 11:21:41 +01002426 hda_opts = drive_add(IF_DEFAULT, 0, argv[optind++], HD_OPTS);
bellardcd6f1162004-05-13 22:02:20 +00002427 } else {
2428 const QEMUOption *popt;
2429
Anthony Liguori6530a972010-01-22 09:18:06 -06002430 popt = lookup_opt(argc, argv, &optarg, &optind);
Blue Swirlad960902010-03-29 19:23:52 +00002431 if (!(popt->arch_mask & arch_type)) {
2432 printf("Option %s not supported for this target\n", popt->name);
2433 exit(1);
2434 }
bellardcd6f1162004-05-13 22:02:20 +00002435 switch(popt->index) {
bellardcc1daa42005-06-05 14:49:17 +00002436 case QEMU_OPTION_M:
Jan Kiszka9052ea62011-07-23 12:38:37 +02002437 machine = machine_parse(optarg);
bellardcc1daa42005-06-05 14:49:17 +00002438 break;
j_mayer94fc95c2007-03-05 19:44:02 +00002439 case QEMU_OPTION_cpu:
2440 /* hw initialization will check this */
Eduardo Habkostecf40be2012-03-09 16:19:07 -03002441 cpu_model = optarg;
j_mayer94fc95c2007-03-05 19:44:02 +00002442 break;
bellardcd6f1162004-05-13 22:02:20 +00002443 case QEMU_OPTION_hda:
Markus Armbruster5645b0f2011-01-31 11:50:09 +01002444 {
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 ?
thse4bcb142007-12-02 04:51:10 +00002453 ",trans=lba" :
Markus Armbruster5645b0f2011-01-31 11:50:09 +01002454 translation == BIOS_ATA_TRANSLATION_NONE ?
thse4bcb142007-12-02 04:51:10 +00002455 ",trans=none" : "");
Markus Armbruster5645b0f2011-01-31 11:50:09 +01002456 drive_add(IF_DEFAULT, 0, optarg, buf);
2457 break;
2458 }
bellardcd6f1162004-05-13 22:02:20 +00002459 case QEMU_OPTION_hdb:
bellardcc1daa42005-06-05 14:49:17 +00002460 case QEMU_OPTION_hdc:
2461 case QEMU_OPTION_hdd:
Markus Armbruster2292dda2011-01-28 11:21:41 +01002462 drive_add(IF_DEFAULT, popt->index - QEMU_OPTION_hda, optarg,
2463 HD_OPTS);
bellardfc01f7e2003-06-30 10:03:06 +00002464 break;
thse4bcb142007-12-02 04:51:10 +00002465 case QEMU_OPTION_drive:
Michael Tokareve2982c32011-03-30 16:31:05 +04002466 if (drive_def(optarg) == NULL) {
2467 exit(1);
2468 }
thse4bcb142007-12-02 04:51:10 +00002469 break;
Gerd Hoffmannd058fe02009-07-31 12:25:36 +02002470 case QEMU_OPTION_set:
2471 if (qemu_set_option(optarg) != 0)
2472 exit(1);
2473 break;
Gerd Hoffmannd0fef6f2009-12-08 13:11:34 +01002474 case QEMU_OPTION_global:
2475 if (qemu_global_option(optarg) != 0)
2476 exit(1);
2477 break;
balrog3e3d5812007-04-30 02:09:25 +00002478 case QEMU_OPTION_mtdblock:
Markus Armbruster2292dda2011-01-28 11:21:41 +01002479 drive_add(IF_MTD, -1, optarg, MTD_OPTS);
balrog3e3d5812007-04-30 02:09:25 +00002480 break;
pbrooka1bb27b2007-04-06 16:49:48 +00002481 case QEMU_OPTION_sd:
Markus Armbruster2292dda2011-01-28 11:21:41 +01002482 drive_add(IF_SD, 0, optarg, SD_OPTS);
pbrooka1bb27b2007-04-06 16:49:48 +00002483 break;
j_mayer86f55662007-04-24 06:52:59 +00002484 case QEMU_OPTION_pflash:
Markus Armbruster2292dda2011-01-28 11:21:41 +01002485 drive_add(IF_PFLASH, -1, optarg, PFLASH_OPTS);
j_mayer86f55662007-04-24 06:52:59 +00002486 break;
bellardcd6f1162004-05-13 22:02:20 +00002487 case QEMU_OPTION_snapshot:
bellard33e39632003-07-06 17:15:21 +00002488 snapshot = 1;
2489 break;
bellardcd6f1162004-05-13 22:02:20 +00002490 case QEMU_OPTION_hdachs:
bellard330d0412003-07-26 18:11:40 +00002491 {
bellard330d0412003-07-26 18:11:40 +00002492 const char *p;
2493 p = optarg;
2494 cyls = strtol(p, (char **)&p, 0);
bellard46d47672004-11-16 01:45:27 +00002495 if (cyls < 1 || cyls > 16383)
2496 goto chs_fail;
bellard330d0412003-07-26 18:11:40 +00002497 if (*p != ',')
2498 goto chs_fail;
2499 p++;
2500 heads = strtol(p, (char **)&p, 0);
bellard46d47672004-11-16 01:45:27 +00002501 if (heads < 1 || heads > 16)
2502 goto chs_fail;
bellard330d0412003-07-26 18:11:40 +00002503 if (*p != ',')
2504 goto chs_fail;
2505 p++;
2506 secs = strtol(p, (char **)&p, 0);
bellard46d47672004-11-16 01:45:27 +00002507 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') {
bellardc4b1fcc2004-03-14 21:44:30 +00002520 chs_fail:
bellard46d47672004-11-16 01:45:27 +00002521 fprintf(stderr, "qemu: invalid physical CHS format\n");
2522 exit(1);
bellardc4b1fcc2004-03-14 21:44:30 +00002523 }
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02002524 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 }
bellard330d0412003-07-26 18:11:40 +00002537 }
2538 break;
aliguori268a3622009-04-21 22:30:27 +00002539 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;
Jes Sorensen1472a952011-03-16 13:33:31 +01002546 case QEMU_OPTION_display:
2547 display_type = select_display(optarg);
2548 break;
bellardcd6f1162004-05-13 22:02:20 +00002549 case QEMU_OPTION_nographic:
Anthony Liguori993fbfd2009-05-21 16:54:00 -05002550 display_type = DT_NOGRAPHIC;
bellarda20dd502003-09-30 21:07:02 +00002551 break;
balrog4d3b6f62008-02-10 16:33:14 +00002552 case QEMU_OPTION_curses:
Jes Sorensen47b05362011-03-16 13:33:35 +01002553#ifdef CONFIG_CURSES
Anthony Liguori993fbfd2009-05-21 16:54:00 -05002554 display_type = DT_CURSES;
Jes Sorensen47b05362011-03-16 13:33:35 +01002555#else
2556 fprintf(stderr, "Curses support is disabled\n");
2557 exit(1);
balrog4d3b6f62008-02-10 16:33:14 +00002558#endif
Jes Sorensen47b05362011-03-16 13:33:35 +01002559 break;
balroga171fe32007-04-30 01:48:07 +00002560 case QEMU_OPTION_portrait:
Vasily Khoruzhick93128052011-06-17 13:04:36 +03002561 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 }
balroga171fe32007-04-30 01:48:07 +00002571 break;
bellardcd6f1162004-05-13 22:02:20 +00002572 case QEMU_OPTION_kernel:
Peter Maydella0abe472012-02-08 05:41:39 +00002573 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);
bellarda20dd502003-09-30 21:07:02 +00002577 break;
bellardcd6f1162004-05-13 22:02:20 +00002578 case QEMU_OPTION_append:
Peter Maydella0abe472012-02-08 05:41:39 +00002579 qemu_opts_set(qemu_find_opts("machine"), 0, "append", optarg);
bellard313aa562003-08-10 21:52:11 +00002580 break;
Grant Likely412beee2012-03-02 11:56:38 +00002581 case QEMU_OPTION_dtb:
2582 qemu_opts_set(qemu_find_opts("machine"), 0, "dtb", optarg);
2583 break;
bellardcd6f1162004-05-13 22:02:20 +00002584 case QEMU_OPTION_cdrom:
Markus Armbruster2292dda2011-01-28 11:21:41 +01002585 drive_add(IF_DEFAULT, 2, optarg, CDROM_OPTS);
bellard36b486b2003-11-11 13:36:08 +00002586 break;
bellardcd6f1162004-05-13 22:02:20 +00002587 case QEMU_OPTION_boot:
j_mayer28c5af52007-11-11 01:50:45 +00002588 {
Jan Kiszkaef3adf62009-07-02 00:19:02 +02002589 static const char * const params[] = {
wayne3d3b8302011-07-27 18:04:55 +08002590 "order", "once", "menu",
2591 "splash", "splash-time", NULL
Jan Kiszkaef3adf62009-07-02 00:19:02 +02002592 };
2593 char buf[sizeof(boot_devices)];
Jan Kiszkae0f084b2009-07-02 00:19:02 +02002594 char *standard_boot_devices;
Jan Kiszkaef3adf62009-07-02 00:19:02 +02002595 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)) {
Eduardo Habkost4e9e9d62010-04-06 19:22:08 -03002609 validate_bootdevices(buf);
Jan Kiszkaef3adf62009-07-02 00:19:02 +02002610 pstrcpy(boot_devices, sizeof(boot_devices), buf);
j_mayer28c5af52007-11-11 01:50:45 +00002611 }
Jan Kiszkae0f084b2009-07-02 00:19:02 +02002612 if (!legacy) {
2613 if (get_param_value(buf, sizeof(buf),
2614 "once", optarg)) {
Eduardo Habkost4e9e9d62010-04-06 19:22:08 -03002615 validate_bootdevices(buf);
Anthony Liguori7267c092011-08-20 22:09:37 -05002616 standard_boot_devices = g_strdup(boot_devices);
Jan Kiszkae0f084b2009-07-02 00:19:02 +02002617 pstrcpy(boot_devices, sizeof(boot_devices), buf);
2618 qemu_register_reset(restore_boot_devices,
2619 standard_boot_devices);
2620 }
Jan Kiszka95387492009-07-02 00:19:02 +02002621 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 }
wayne3d3b8302011-07-27 18:04:55 +08002634 qemu_opts_parse(qemu_find_opts("boot-opts"),
2635 optarg, 0);
Jan Kiszkae0f084b2009-07-02 00:19:02 +02002636 }
bellard36b486b2003-11-11 13:36:08 +00002637 }
2638 break;
bellardcd6f1162004-05-13 22:02:20 +00002639 case QEMU_OPTION_fda:
bellardcd6f1162004-05-13 22:02:20 +00002640 case QEMU_OPTION_fdb:
Markus Armbruster2292dda2011-01-28 11:21:41 +01002641 drive_add(IF_FLOPPY, popt->index - QEMU_OPTION_fda,
2642 optarg, FD_OPTS);
bellardc45886d2004-01-05 00:02:06 +00002643 break;
bellard52ca8d62006-06-14 16:03:05 +00002644 case QEMU_OPTION_no_fd_bootchk:
2645 fd_bootchk = 0;
2646 break;
Mark McLoughlina1ea4582009-10-08 19:58:26 +01002647 case QEMU_OPTION_netdev:
Gerd Hoffmann3329f072010-08-20 13:52:01 +02002648 if (net_client_parse(qemu_find_opts("netdev"), optarg) == -1) {
Mark McLoughlina1ea4582009-10-08 19:58:26 +01002649 exit(1);
2650 }
2651 break;
bellard7c9d8e02005-11-15 22:16:05 +00002652 case QEMU_OPTION_net:
Gerd Hoffmann3329f072010-08-20 13:52:01 +02002653 if (net_client_parse(qemu_find_opts("net"), optarg) == -1) {
bellardc4b1fcc2004-03-14 21:44:30 +00002654 exit(1);
2655 }
bellard702c6512004-04-02 21:21:32 +00002656 break;
Ronnie Sahlbergf9dadc92012-01-26 09:39:02 +11002657#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
bellardc7f74642004-08-24 21:57:12 +00002665#ifdef CONFIG_SLIRP
2666 case QEMU_OPTION_tftp:
Jan Kiszkaad196a92009-06-24 14:42:28 +02002667 legacy_tftp_prefix = optarg;
bellard9bf05442004-08-25 22:12:49 +00002668 break;
ths47d5d012007-02-20 00:05:08 +00002669 case QEMU_OPTION_bootp:
Jan Kiszkaad196a92009-06-24 14:42:28 +02002670 legacy_bootp_filename = optarg;
ths47d5d012007-02-20 00:05:08 +00002671 break;
bellard9bf05442004-08-25 22:12:49 +00002672 case QEMU_OPTION_redir:
Markus Armbruster07527062009-10-06 12:16:57 +01002673 if (net_slirp_redir(optarg) < 0)
2674 exit(1);
bellard9bf05442004-08-25 22:12:49 +00002675 break;
bellardc7f74642004-08-24 21:57:12 +00002676#endif
balrogdc72ac12008-11-09 00:04:26 +00002677 case QEMU_OPTION_bt:
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002678 add_device_config(DEV_BT, optarg);
balrogdc72ac12008-11-09 00:04:26 +00002679 break;
bellard1d14ffa2005-10-30 18:58:22 +00002680 case QEMU_OPTION_audio_help:
Blue Swirlad960902010-03-29 19:23:52 +00002681 if (!(audio_available())) {
2682 printf("Option %s not supported for this target\n", popt->name);
2683 exit(1);
2684 }
bellard1d14ffa2005-10-30 18:58:22 +00002685 AUD_help ();
2686 exit (0);
2687 break;
2688 case QEMU_OPTION_soundhw:
Blue Swirlad960902010-03-29 19:23:52 +00002689 if (!(audio_available())) {
2690 printf("Option %s not supported for this target\n", popt->name);
2691 exit(1);
2692 }
bellard1d14ffa2005-10-30 18:58:22 +00002693 select_soundhw (optarg);
2694 break;
bellardcd6f1162004-05-13 22:02:20 +00002695 case QEMU_OPTION_h:
ths15f82202007-06-29 23:26:08 +00002696 help(0);
bellardcd6f1162004-05-13 22:02:20 +00002697 break;
pbrook9bd7e6d2009-04-07 22:58:45 +00002698 case QEMU_OPTION_version:
2699 version();
2700 exit(0);
2701 break;
aurel3200f82b82008-04-27 21:12:55 +00002702 case QEMU_OPTION_m: {
Jes Sorensen70b4f4b2011-01-05 11:41:02 +01002703 int64_t value;
Markus Armbruster961b42b2011-11-22 09:46:03 +01002704 char *end;
aurel3200f82b82008-04-27 21:12:55 +00002705
Markus Armbruster961b42b2011-11-22 09:46:03 +01002706 value = strtosz(optarg, &end);
2707 if (value < 0 || *end) {
aurel3200f82b82008-04-27 21:12:55 +00002708 fprintf(stderr, "qemu: invalid ram size: %s\n", optarg);
bellardcd6f1162004-05-13 22:02:20 +00002709 exit(1);
2710 }
aurel3200f82b82008-04-27 21:12:55 +00002711
Anthony Liguoric227f092009-10-01 16:12:16 -05002712 if (value != (uint64_t)(ram_addr_t)value) {
aurel3200f82b82008-04-27 21:12:55 +00002713 fprintf(stderr, "qemu: ram size too large\n");
2714 exit(1);
2715 }
2716 ram_size = value;
bellardcd6f1162004-05-13 22:02:20 +00002717 break;
aurel3200f82b82008-04-27 21:12:55 +00002718 }
Marcelo Tosattic9027602010-03-01 20:25:08 -03002719 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
bellardcd6f1162004-05-13 22:02:20 +00002727 case QEMU_OPTION_d:
Matthew Fernandezc235d732011-06-07 16:32:40 +00002728 log_mask = optarg;
2729 break;
2730 case QEMU_OPTION_D:
2731 log_file = optarg;
bellardcd6f1162004-05-13 22:02:20 +00002732 break;
bellardcd6f1162004-05-13 22:02:20 +00002733 case QEMU_OPTION_s:
Markus Armbrusteref0c4a02012-02-07 15:09:13 +01002734 add_device_config(DEV_GDB, "tcp::" DEFAULT_GDBSTUB_PORT);
bellardcd6f1162004-05-13 22:02:20 +00002735 break;
aliguori59030a82009-04-05 18:43:41 +00002736 case QEMU_OPTION_gdb:
Markus Armbrusteref0c4a02012-02-07 15:09:13 +01002737 add_device_config(DEV_GDB, optarg);
bellardcd6f1162004-05-13 22:02:20 +00002738 break;
bellardcd6f1162004-05-13 22:02:20 +00002739 case QEMU_OPTION_L:
Paul Brook5cea8592009-05-30 00:52:44 +01002740 data_dir = optarg;
bellardcd6f1162004-05-13 22:02:20 +00002741 break;
j_mayer1192dad2007-10-05 13:08:35 +00002742 case QEMU_OPTION_bios:
2743 bios_name = optarg;
2744 break;
aurel321b530a62009-04-05 20:08:59 +00002745 case QEMU_OPTION_singlestep:
2746 singlestep = 1;
2747 break;
bellardcd6f1162004-05-13 22:02:20 +00002748 case QEMU_OPTION_S:
pbrook3c07f8e2007-01-21 16:47:01 +00002749 autostart = 0;
bellardcd6f1162004-05-13 22:02:20 +00002750 break;
bellard3d11d0e2004-12-12 16:56:30 +00002751 case QEMU_OPTION_k:
2752 keyboard_layout = optarg;
2753 break;
bellardee22c2f2004-06-03 12:49:50 +00002754 case QEMU_OPTION_localtime:
2755 rtc_utc = 0;
2756 break;
malc3893c122008-09-28 00:42:05 +00002757 case QEMU_OPTION_vga:
Blue Swirla369da52011-09-27 19:15:42 +00002758 vga_model = optarg;
Paolo Bonzini7f1b17f2012-05-10 09:39:17 +02002759 default_vga = 0;
bellard1bfe8562004-07-08 21:17:50 +00002760 break;
bellarde9b137c2004-06-21 16:46:10 +00002761 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);
ths5fafdf22007-09-16 21:08:06 +00002781 if (depth != 8 && depth != 15 && depth != 16 &&
bellarde9b137c2004-06-21 16:46:10 +00002782 depth != 24 && depth != 32)
2783 goto graphic_error;
2784 } else if (*p == '\0') {
2785 depth = graphic_depth;
2786 } else {
2787 goto graphic_error;
2788 }
ths3b46e622007-09-17 08:09:54 +00002789
bellarde9b137c2004-06-21 16:46:10 +00002790 graphic_width = w;
2791 graphic_height = h;
2792 graphic_depth = depth;
2793 }
2794 break;
ths20d8a3e2007-02-18 17:04:49 +00002795 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 }
bellard82c643f2004-07-14 17:28:13 +00002803 case QEMU_OPTION_monitor:
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01002804 monitor_parse(optarg, "readline");
2805 default_monitor = 0;
2806 break;
2807 case QEMU_OPTION_qmp:
2808 monitor_parse(optarg, "control");
Anthony Liguori2d114dc2010-03-21 14:14:38 -05002809 default_monitor = 0;
bellard82c643f2004-07-14 17:28:13 +00002810 break;
Gerd Hoffmann22a0e042009-12-08 13:11:51 +01002811 case QEMU_OPTION_mon:
Gerd Hoffmann3329f072010-08-20 13:52:01 +02002812 opts = qemu_opts_parse(qemu_find_opts("mon"), optarg, 1);
Gerd Hoffmann22a0e042009-12-08 13:11:51 +01002813 if (!opts) {
Gerd Hoffmann22a0e042009-12-08 13:11:51 +01002814 exit(1);
2815 }
Anthony Liguori2d114dc2010-03-21 14:14:38 -05002816 default_monitor = 0;
Gerd Hoffmann22a0e042009-12-08 13:11:51 +01002817 break;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02002818 case QEMU_OPTION_chardev:
Gerd Hoffmann3329f072010-08-20 13:52:01 +02002819 opts = qemu_opts_parse(qemu_find_opts("chardev"), optarg, 1);
Gerd Hoffmann191bc012009-09-10 10:58:35 +02002820 if (!opts) {
Gerd Hoffmann191bc012009-09-10 10:58:35 +02002821 exit(1);
2822 }
Gerd Hoffmann191bc012009-09-10 10:58:35 +02002823 break;
Gautham R Shenoy74db9202010-04-29 17:44:43 +05302824 case QEMU_OPTION_fsdev:
Gerd Hoffmann03b0ba72010-08-20 13:52:02 +02002825 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);
Gautham R Shenoy74db9202010-04-29 17:44:43 +05302831 if (!opts) {
2832 fprintf(stderr, "parse error: %s\n", optarg);
2833 exit(1);
2834 }
2835 break;
Gautham R Shenoy3d54abc2010-04-29 17:45:03 +05302836 case QEMU_OPTION_virtfs: {
Stefan Hajnoczie14ea472011-03-16 08:31:43 +00002837 QemuOpts *fsdev;
2838 QemuOpts *device;
M. Mohan Kumar84a87cc2011-12-14 13:58:47 +05302839 const char *writeout, *sock_fd, *socket;
Gautham R Shenoy3d54abc2010-04-29 17:45:03 +05302840
Gerd Hoffmann03b0ba72010-08-20 13:52:02 +02002841 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);
Gautham R Shenoy3d54abc2010-04-29 17:45:03 +05302847 if (!opts) {
2848 fprintf(stderr, "parse error: %s\n", optarg);
2849 exit(1);
2850 }
2851
Aneesh Kumar K.Vfbcbf102011-10-13 12:28:04 +05302852 if (qemu_opt_get(opts, "fsdriver") == NULL ||
Aneesh Kumar K.V99519f02011-12-14 13:48:59 +05302853 qemu_opt_get(opts, "mount_tag") == NULL) {
2854 fprintf(stderr, "Usage: -virtfs fsdriver,mount_tag=tag.\n");
Venkateswararao Jujjuri (JV)9ce56db2010-06-14 13:34:40 -07002855 exit(1);
2856 }
Stefan Hajnoczie14ea472011-03-16 08:31:43 +00002857 fsdev = qemu_opts_create(qemu_find_opts("fsdev"),
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03002858 qemu_opt_get(opts, "mount_tag"),
2859 1, NULL);
Stefan Hajnoczie14ea472011-03-16 08:31:43 +00002860 if (!fsdev) {
2861 fprintf(stderr, "duplicate fsdev id: %s\n",
2862 qemu_opt_get(opts, "mount_tag"));
Gautham R Shenoy3d54abc2010-04-29 17:45:03 +05302863 exit(1);
2864 }
Aneesh Kumar K.Vd3ab98e2011-10-12 19:11:23 +05302865
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 }
Aneesh Kumar K.Vfbcbf102011-10-13 12:28:04 +05302876 qemu_opt_set(fsdev, "fsdriver", qemu_opt_get(opts, "fsdriver"));
Stefan Hajnoczie14ea472011-03-16 08:31:43 +00002877 qemu_opt_set(fsdev, "path", qemu_opt_get(opts, "path"));
2878 qemu_opt_set(fsdev, "security_model",
2879 qemu_opt_get(opts, "security_model"));
M. Mohan Kumar84a87cc2011-12-14 13:58:47 +05302880 socket = qemu_opt_get(opts, "socket");
2881 if (socket) {
2882 qemu_opt_set(fsdev, "socket", socket);
2883 }
M. Mohan Kumar4c793dd2011-12-14 13:49:28 +05302884 sock_fd = qemu_opt_get(opts, "sock_fd");
2885 if (sock_fd) {
2886 qemu_opt_set(fsdev, "sock_fd", sock_fd);
2887 }
Gautham R Shenoy3d54abc2010-04-29 17:45:03 +05302888
M. Mohan Kumar2c74c2c2011-10-25 12:10:39 +05302889 qemu_opt_set_bool(fsdev, "readonly",
2890 qemu_opt_get_bool(opts, "readonly", 0));
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03002891 device = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
2892 NULL);
Stefan Hajnoczie14ea472011-03-16 08:31:43 +00002893 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"));
Gautham R Shenoy3d54abc2010-04-29 17:45:03 +05302898 break;
2899 }
Aneesh Kumar K.V9db221a2011-10-25 12:10:40 +05302900 case QEMU_OPTION_virtfs_synth: {
2901 QemuOpts *fsdev;
2902 QemuOpts *device;
2903
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03002904 fsdev = qemu_opts_create(qemu_find_opts("fsdev"), "v_synth",
2905 1, NULL);
Aneesh Kumar K.V9db221a2011-10-25 12:10:40 +05302906 if (!fsdev) {
2907 fprintf(stderr, "duplicate option: %s\n", "virtfs_synth");
2908 exit(1);
2909 }
2910 qemu_opt_set(fsdev, "fsdriver", "synth");
Aneesh Kumar K.V9db221a2011-10-25 12:10:40 +05302911
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03002912 device = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
2913 NULL);
Aneesh Kumar K.V9db221a2011-10-25 12:10:40 +05302914 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 }
bellard82c643f2004-07-14 17:28:13 +00002919 case QEMU_OPTION_serial:
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01002920 add_device_config(DEV_SERIAL, optarg);
2921 default_serial = 0;
Jan Kiszka18141ed2010-03-07 11:28:40 +01002922 if (strncmp(optarg, "mon:", 4) == 0) {
2923 default_monitor = 0;
2924 }
bellard82c643f2004-07-14 17:28:13 +00002925 break;
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01002926 case QEMU_OPTION_watchdog:
Markus Armbruster09aaa162009-08-21 10:31:34 +02002927 if (watchdog) {
2928 fprintf(stderr,
2929 "qemu: only one watchdog option may be given\n");
2930 return 1;
2931 }
2932 watchdog = optarg;
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01002933 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;
aliguori51ecf132009-01-15 20:06:40 +00002940 case QEMU_OPTION_virtiocon:
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002941 add_device_config(DEV_VIRTCON, optarg);
2942 default_virtcon = 0;
Jan Kiszka18141ed2010-03-07 11:28:40 +01002943 if (strncmp(optarg, "mon:", 4) == 0) {
2944 default_monitor = 0;
2945 }
aliguori51ecf132009-01-15 20:06:40 +00002946 break;
bellard6508fe52005-01-15 12:02:56 +00002947 case QEMU_OPTION_parallel:
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01002948 add_device_config(DEV_PARALLEL, optarg);
2949 default_parallel = 0;
Jan Kiszka18141ed2010-03-07 11:28:40 +01002950 if (strncmp(optarg, "mon:", 4) == 0) {
2951 default_monitor = 0;
2952 }
bellard6508fe52005-01-15 12:02:56 +00002953 break;
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08002954 case QEMU_OPTION_debugcon:
2955 add_device_config(DEV_DEBUGCON, optarg);
2956 break;
bellardd63d3072004-10-03 13:29:03 +00002957 case QEMU_OPTION_loadvm:
2958 loadvm = optarg;
2959 break;
2960 case QEMU_OPTION_full_screen:
2961 full_screen = 1;
2962 break;
ths667acca2006-12-11 02:08:05 +00002963#ifdef CONFIG_SDL
ths43523e92007-02-18 18:19:32 +00002964 case QEMU_OPTION_no_frame:
2965 no_frame = 1;
2966 break;
ths3780e192007-06-21 21:08:02 +00002967 case QEMU_OPTION_alt_grab:
2968 alt_grab = 1;
2969 break;
Dustin Kirkland0ca9f8a2009-09-17 15:48:04 -05002970 case QEMU_OPTION_ctrl_grab:
2971 ctrl_grab = 1;
2972 break;
ths667acca2006-12-11 02:08:05 +00002973 case QEMU_OPTION_no_quit:
2974 no_quit = 1;
2975 break;
aliguori7d957bd2009-01-15 22:14:11 +00002976 case QEMU_OPTION_sdl:
Anthony Liguori993fbfd2009-05-21 16:54:00 -05002977 display_type = DT_SDL;
aliguori7d957bd2009-01-15 22:14:11 +00002978 break;
Jes Sorensen58fc0962011-03-16 13:33:34 +01002979#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);
ths667acca2006-12-11 02:08:05 +00002987#endif
bellardf7cce892004-12-08 22:21:25 +00002988 case QEMU_OPTION_pidfile:
ths93815bc2007-03-19 15:58:31 +00002989 pid_file = optarg;
bellardf7cce892004-12-08 22:21:25 +00002990 break;
bellarda09db212005-04-30 16:10:35 +00002991 case QEMU_OPTION_win2k_hack:
2992 win2k_install_hack = 1;
2993 break;
Jan Kiszka433acf02012-01-23 20:15:12 +01002994 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);
aliguori73822ec2009-01-15 20:11:34 +00003005 break;
Jan Kiszka433acf02012-01-23 20:15:12 +01003006 }
aliguori8a92ea22009-02-27 20:12:36 +00003007 case QEMU_OPTION_acpitable:
Blue Swirlde06f8d2010-03-29 19:23:50 +00003008 do_acpitable_option(optarg);
aliguori8a92ea22009-02-27 20:12:36 +00003009 break;
aliguorib6f6e3d2009-04-17 18:59:56 +00003010 case QEMU_OPTION_smbios:
Blue Swirlde06f8d2010-03-29 19:23:50 +00003011 do_smbios_option(optarg);
aliguorib6f6e3d2009-04-17 18:59:56 +00003012 break;
aliguori7ba1e612008-11-05 16:04:33 +00003013 case QEMU_OPTION_enable_kvm:
Anthony PERARD303d4e82010-09-21 20:05:31 +01003014 olist = qemu_find_opts("machine");
Anthony PERARD303d4e82010-09-21 20:05:31 +01003015 qemu_opts_parse(olist, "accel=kvm", 0);
3016 break;
3017 case QEMU_OPTION_machine:
3018 olist = qemu_find_opts("machine");
Jan Kiszka9052ea62011-07-23 12:38:37 +02003019 opts = qemu_opts_parse(olist, optarg, 1);
Anthony PERARD303d4e82010-09-21 20:05:31 +01003020 if (!opts) {
3021 fprintf(stderr, "parse error: %s\n", optarg);
3022 exit(1);
3023 }
Jan Kiszka2645c6d2011-07-25 18:11:20 +02003024 optarg = qemu_opt_get(opts, "type");
3025 if (optarg) {
3026 machine = machine_parse(optarg);
3027 }
aliguori7ba1e612008-11-05 16:04:33 +00003028 break;
bellardbb36d472005-11-05 14:22:28 +00003029 case QEMU_OPTION_usb:
3030 usb_enabled = 1;
3031 break;
bellarda594cfb2005-11-06 16:13:29 +00003032 case QEMU_OPTION_usbdevice:
3033 usb_enabled = 1;
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02003034 add_device_config(DEV_USB, optarg);
3035 break;
3036 case QEMU_OPTION_device:
Gerd Hoffmann3329f072010-08-20 13:52:01 +02003037 if (!qemu_opts_parse(qemu_find_opts("device"), optarg, 1)) {
Gerd Hoffmannf31d07d2009-07-31 12:25:37 +02003038 exit(1);
3039 }
bellarda594cfb2005-11-06 16:13:29 +00003040 break;
bellard6a00d602005-11-21 23:25:50 +00003041 case QEMU_OPTION_smp:
Andre Przywaradc6b1c02009-08-19 15:42:40 +02003042 smp_parse(optarg);
aliguorib2097002008-10-07 20:39:39 +00003043 if (smp_cpus < 1) {
bellard6a00d602005-11-21 23:25:50 +00003044 fprintf(stderr, "Invalid number of CPUs\n");
3045 exit(1);
3046 }
Jes Sorensen6be68d72009-07-23 17:03:42 +02003047 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 }
bellard6a00d602005-11-21 23:25:50 +00003056 break;
bellard24236862006-04-30 21:28:36 +00003057 case QEMU_OPTION_vnc:
Jes Sorensen821601e2011-03-16 13:33:36 +01003058#ifdef CONFIG_VNC
Gerd Hoffmann6b62dc22010-08-25 10:51:06 +02003059 display_remote++;
Jes Sorensen821601e2011-03-16 13:33:36 +01003060 vnc_display = optarg;
3061#else
3062 fprintf(stderr, "VNC support is disabled\n");
3063 exit(1);
3064#endif
3065 break;
bellard6515b202006-05-03 22:02:44 +00003066 case QEMU_OPTION_no_acpi:
3067 acpi_enabled = 0;
3068 break;
aliguori16b29ae2008-12-17 23:28:44 +00003069 case QEMU_OPTION_no_hpet:
3070 no_hpet = 1;
3071 break;
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02003072 case QEMU_OPTION_balloon:
3073 if (balloon_parse(optarg) < 0) {
3074 fprintf(stderr, "Unknown -balloon argument %s\n", optarg);
3075 exit(1);
3076 }
Eduardo Habkostdf97b922009-06-10 16:34:08 -03003077 break;
bellardd1beab82006-10-02 19:44:22 +00003078 case QEMU_OPTION_no_reboot:
3079 no_reboot = 1;
3080 break;
aurel32b2f76162008-04-11 21:35:52 +00003081 case QEMU_OPTION_no_shutdown:
3082 no_shutdown = 1;
3083 break;
balrog9467cd42007-05-01 01:34:14 +00003084 case QEMU_OPTION_show_cursor:
3085 cursor_hide = 0;
3086 break;
blueswir18fcb1b92008-09-18 18:29:08 +00003087 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;
ths9ae02552007-01-05 17:39:04 +00003094 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 }
Gleb Natapov2e55e842010-12-08 13:35:07 +02003099 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 }
ths9ae02552007-01-05 17:39:04 +00003107 nb_option_roms++;
3108 break;
pbrook8e716212007-01-20 17:12:09 +00003109 case QEMU_OPTION_semihosting:
3110 semihosting_enabled = 1;
3111 break;
thsc35734b2007-03-19 15:17:08 +00003112 case QEMU_OPTION_name:
Anthony Liguori7267c092011-08-20 22:09:37 -05003113 qemu_name = g_strdup(optarg);
Andi Kleen18894652009-07-02 09:34:17 +02003114 {
3115 char *p = strchr(qemu_name, ',');
3116 if (p != NULL) {
3117 *p++ = 0;
3118 if (strncmp(p, "process=", 8)) {
Aurelien Jarno5697f6a2010-12-27 18:29:20 +01003119 fprintf(stderr, "Unknown subargument %s to -name\n", p);
Andi Kleen18894652009-07-02 09:34:17 +02003120 exit(1);
3121 }
3122 p += 8;
Jes Sorensence798cf2010-06-10 11:42:31 +02003123 os_set_proc_name(p);
Andi Kleen18894652009-07-02 09:34:17 +02003124 }
3125 }
thsc35734b2007-03-19 15:17:08 +00003126 break;
blueswir166508602007-05-01 14:16:52 +00003127 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;
balrog2b8f2d42007-07-27 22:08:46 +00003135 case QEMU_OPTION_old_param:
3136 old_param = 1;
ths05ebd532008-01-08 19:32:16 +00003137 break;
thsf3dcfad2007-08-24 01:26:02 +00003138 case QEMU_OPTION_clock:
3139 configure_alarms(optarg);
3140 break;
bellard7e0af5d02007-11-07 16:24:33 +00003141 case QEMU_OPTION_startdate:
Jan Kiszka1ed2fc12009-09-15 13:36:04 +02003142 configure_rtc_date_offset(optarg, 1);
3143 break;
3144 case QEMU_OPTION_rtc:
Gerd Hoffmann3329f072010-08-20 13:52:01 +02003145 opts = qemu_opts_parse(qemu_find_opts("rtc"), optarg, 0);
Jan Kiszka1ed2fc12009-09-15 13:36:04 +02003146 if (!opts) {
Jan Kiszka1ed2fc12009-09-15 13:36:04 +02003147 exit(1);
bellard7e0af5d02007-11-07 16:24:33 +00003148 }
Jan Kiszka1ed2fc12009-09-15 13:36:04 +02003149 configure_rtc(opts);
bellard7e0af5d02007-11-07 16:24:33 +00003150 break;
bellard26a5f132008-05-28 12:30:31 +00003151 case QEMU_OPTION_tb_size:
Jan Kiszkad5ab9712011-08-02 16:10:21 +02003152 tcg_tb_size = strtol(optarg, NULL, 0);
3153 if (tcg_tb_size < 0) {
3154 tcg_tb_size = 0;
3155 }
bellard26a5f132008-05-28 12:30:31 +00003156 break;
pbrook2e70f6e2008-06-29 01:03:05 +00003157 case QEMU_OPTION_icount:
Paolo Bonzini4e3de9e2010-03-10 11:38:48 +01003158 icount_option = optarg;
pbrook2e70f6e2008-06-29 01:03:05 +00003159 break;
aliguori5bb79102008-10-13 03:12:02 +00003160 case QEMU_OPTION_incoming:
3161 incoming = optarg;
Stefano Stabellini81323a62012-01-18 12:23:13 +00003162 runstate_set(RUN_STATE_INMIGRATE);
aliguori5bb79102008-10-13 03:12:02 +00003163 break;
Gerd Hoffmannd8c208d2009-12-08 13:11:46 +01003164 case QEMU_OPTION_nodefaults:
3165 default_serial = 0;
3166 default_parallel = 0;
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01003167 default_virtcon = 0;
Gerd Hoffmannd8c208d2009-12-08 13:11:46 +01003168 default_monitor = 0;
Gerd Hoffmanncb4522c2009-12-08 13:11:47 +01003169 default_net = 0;
Gerd Hoffmannac33f8f2009-12-16 14:25:39 +01003170 default_floppy = 0;
3171 default_cdrom = 0;
3172 default_sdcard = 0;
Paolo Bonzini7f1b17f2012-05-10 09:39:17 +02003173 default_vga = 0;
Gerd Hoffmannd8c208d2009-12-08 13:11:46 +01003174 break;
aliguorie37630c2009-04-22 15:19:10 +00003175 case QEMU_OPTION_xen_domid:
Blue Swirlad960902010-03-29 19:23:52 +00003176 if (!(xen_available())) {
3177 printf("Option %s not supported for this target\n", popt->name);
3178 exit(1);
3179 }
aliguorie37630c2009-04-22 15:19:10 +00003180 xen_domid = atoi(optarg);
3181 break;
3182 case QEMU_OPTION_xen_create:
Blue Swirlad960902010-03-29 19:23:52 +00003183 if (!(xen_available())) {
3184 printf("Option %s not supported for this target\n", popt->name);
3185 exit(1);
3186 }
aliguorie37630c2009-04-22 15:19:10 +00003187 xen_mode = XEN_CREATE;
3188 break;
3189 case QEMU_OPTION_xen_attach:
Blue Swirlad960902010-03-29 19:23:52 +00003190 if (!(xen_available())) {
3191 printf("Option %s not supported for this target\n", popt->name);
3192 exit(1);
3193 }
aliguorie37630c2009-04-22 15:19:10 +00003194 xen_mode = XEN_ATTACH;
3195 break;
Prerna Saxenaab6540d2010-08-09 11:48:32 +01003196 case QEMU_OPTION_trace:
Lluíse4858972011-08-31 20:31:03 +02003197 {
Prerna Saxenaab6540d2010-08-09 11:48:32 +01003198 opts = qemu_opts_parse(qemu_find_opts("trace"), optarg, 0);
Lluíse4858972011-08-31 20:31:03 +02003199 if (!opts) {
3200 exit(1);
Prerna Saxenaab6540d2010-08-09 11:48:32 +01003201 }
Lluís23d15e82011-08-31 20:31:31 +02003202 trace_events = qemu_opt_get(opts, "events");
Lluíse4858972011-08-31 20:31:03 +02003203 trace_file = qemu_opt_get(opts, "file");
Prerna Saxenaab6540d2010-08-09 11:48:32 +01003204 break;
Lluíse4858972011-08-31 20:31:03 +02003205 }
Gerd Hoffmann715a6642009-10-14 10:39:28 +02003206 case QEMU_OPTION_readconfig:
3207 {
Kevin Wolfdcfb0932010-03-05 17:25:55 +01003208 int ret = qemu_read_config_file(optarg);
3209 if (ret < 0) {
3210 fprintf(stderr, "read config %s: %s\n", optarg,
3211 strerror(-ret));
Gerd Hoffmann715a6642009-10-14 10:39:28 +02003212 exit(1);
3213 }
Gerd Hoffmann715a6642009-10-14 10:39:28 +02003214 break;
3215 }
Gerd Hoffmann29b00402010-03-11 11:13:27 -03003216 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;
Gerd Hoffmann715a6642009-10-14 10:39:28 +02003228 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 }
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +02003244 case QEMU_OPTION_qtest:
3245 qtest_chrdev = optarg;
3246 break;
3247 case QEMU_OPTION_qtest_log:
3248 qtest_log = optarg;
3249 break;
Jes Sorensen59a52642010-06-10 11:42:25 +02003250 default:
3251 os_parse_cmd_args(popt->index, optarg);
bellardcd6f1162004-05-13 22:02:20 +00003252 }
bellard0824d6f2003-06-24 13:42:40 +00003253 }
3254 }
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +01003255 loc_set_none();
bellard330d0412003-07-26 18:11:40 +00003256
Dunrong Huangfb7c2692012-07-24 00:42:20 +08003257 if (machine == NULL) {
3258 fprintf(stderr, "No machine found.\n");
3259 exit(1);
3260 }
3261
Crístian Viana93bfef42012-05-30 00:35:51 -03003262 if (machine->hw_version) {
3263 qemu_set_version(machine->hw_version);
3264 }
3265
Eduardo Habkostecf40be2012-03-09 16:19:07 -03003266 /* 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
Peter Maydellc8057f92012-08-02 13:45:54 +01003273 if (cpu_model && is_help_option(cpu_model)) {
Eduardo Habkost1d6528a2012-03-21 09:33:40 -03003274 list_cpus(stdout, &fprintf, cpu_model);
Eduardo Habkostecf40be2012-03-09 16:19:07 -03003275 exit(0);
3276 }
3277
Matthew Fernandezc235d732011-06-07 16:32:40 +00003278 /* 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 }
3289
Lluís23d15e82011-08-31 20:31:31 +02003290 if (!trace_backend_init(trace_events, trace_file)) {
Lluíse4858972011-08-31 20:31:03 +02003291 exit(1);
Stefan Hajnoczi31d3c9b2011-03-13 20:14:30 +00003292 }
Stefan Hajnoczi0b5538c2011-02-26 18:38:39 +00003293
Paul Brook5cea8592009-05-30 00:52:44 +01003294 /* If no data_dir is specified then try to find it relative to the
3295 executable path. */
3296 if (!data_dir) {
Jes Sorensen61705402010-06-10 11:42:23 +02003297 data_dir = os_find_datadir(argv[0]);
Paul Brook5cea8592009-05-30 00:52:44 +01003298 }
Stefan Weil60474fb2011-09-04 15:17:46 +02003299 /* If all else fails use the install path specified when building. */
Paul Brook5cea8592009-05-30 00:52:44 +01003300 if (!data_dir) {
Paolo Bonzini1dabe052010-05-26 16:08:25 +02003301 data_dir = CONFIG_QEMU_DATADIR;
Paul Brook5cea8592009-05-30 00:52:44 +01003302 }
3303
Jes Sorensen6be68d72009-07-23 17:03:42 +02003304 /*
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
balrog3d878ca2008-10-28 10:59:59 +00003311 machine->max_cpus = machine->max_cpus ?: 1; /* Default to UP */
aliguorib2097002008-10-07 20:39:39 +00003312 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
Anthony PERARD67b724e2010-11-22 15:44:15 +00003319 /*
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) {
Jan Kiszka25de5932012-01-27 19:55:43 +01003324 qemu_opts_set_defaults(qemu_find_opts("machine"),
3325 machine->default_machine_opts, 0);
Anthony PERARD67b724e2010-11-22 15:44:15 +00003326 }
3327
Gerd Hoffmann3329f072010-08-20 13:52:01 +02003328 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);
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01003330
Gerd Hoffmann986c5f72009-12-08 13:11:54 +01003331 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 }
Gerd Hoffmannac33f8f2009-12-16 14:25:39 +01003340 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 }
Gerd Hoffmann986c5f72009-12-08 13:11:54 +01003349
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003350 if (display_type == DT_NOGRAPHIC) {
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01003351 if (default_parallel)
3352 add_device_config(DEV_PARALLEL, "null");
Gerd Hoffmanne1c09172009-12-08 13:11:44 +01003353 if (default_serial && default_monitor) {
3354 add_device_config(DEV_SERIAL, "mon:stdio");
Gerd Hoffmann986c5f72009-12-08 13:11:54 +01003355 } else if (default_virtcon && default_monitor) {
3356 add_device_config(DEV_VIRTCON, "mon:stdio");
Gerd Hoffmanne1c09172009-12-08 13:11:44 +01003357 } else {
3358 if (default_serial)
3359 add_device_config(DEV_SERIAL, "stdio");
Gerd Hoffmann986c5f72009-12-08 13:11:54 +01003360 if (default_virtcon)
3361 add_device_config(DEV_VIRTCON, "stdio");
Gerd Hoffmanne1c09172009-12-08 13:11:44 +01003362 if (default_monitor)
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01003363 monitor_parse("stdio", "readline");
Gerd Hoffmanne1c09172009-12-08 13:11:44 +01003364 }
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01003365 } else {
3366 if (default_serial)
3367 add_device_config(DEV_SERIAL, "vc:80Cx24C");
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01003368 if (default_parallel)
3369 add_device_config(DEV_PARALLEL, "vc:80Cx24C");
Gerd Hoffmannabdeed02009-12-08 13:11:43 +01003370 if (default_monitor)
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01003371 monitor_parse("vc:80Cx24C", "readline");
Alexander Graf38536da2009-12-17 13:06:08 +01003372 if (default_virtcon)
3373 add_device_config(DEV_VIRTCON, "vc:80Cx24C");
aliguoribc0129d2008-08-01 15:12:34 +00003374 }
3375
TeLeMana5829fd2010-04-15 12:37:55 +08003376 socket_init();
3377
Gerd Hoffmann3329f072010-08-20 13:52:01 +02003378 if (qemu_opts_foreach(qemu_find_opts("chardev"), chardev_init_func, NULL, 1) != 0)
Gerd Hoffmann1a688d32009-12-08 13:11:36 +01003379 exit(1);
Venkateswararao Jujjuri (JV)758e8e32010-06-14 13:34:41 -07003380#ifdef CONFIG_VIRTFS
Gerd Hoffmann3329f072010-08-20 13:52:01 +02003381 if (qemu_opts_foreach(qemu_find_opts("fsdev"), fsdev_init_func, NULL, 1) != 0) {
Gautham R Shenoy74db9202010-04-29 17:44:43 +05303382 exit(1);
3383 }
3384#endif
Gerd Hoffmann1a688d32009-12-08 13:11:36 +01003385
Jes Sorenseneb505be2010-06-10 11:42:28 +02003386 os_daemonize();
ths71e3ceb2006-12-22 02:11:31 +00003387
thsaa26bb22007-03-25 21:33:06 +00003388 if (pid_file && qemu_create_pidfile(pid_file) != 0) {
Jes Sorenseneb505be2010-06-10 11:42:28 +02003389 os_pidfile_error();
ths93815bc2007-03-19 15:58:31 +00003390 exit(1);
3391 }
3392
Jan Kiszka0ac543d2011-08-15 16:18:57 -07003393 /* init the memory */
3394 if (ram_size == 0) {
3395 ram_size = DEFAULT_RAM_SIZE * 1024 * 1024;
3396 }
3397
Bruce Rogers3d1d9652012-08-09 12:47:40 -06003398 if (qemu_opts_foreach(qemu_find_opts("device"), device_help_func, NULL, 0)
3399 != 0) {
3400 exit(0);
3401 }
3402
Anthony PERARD303d4e82010-09-21 20:05:31 +01003403 configure_accelerator();
Marcelo Tosatti214910a2009-09-18 02:41:23 -03003404
Paolo Bonzinid3b12f52011-09-13 10:30:52 +02003405 qemu_init_cpu_loop();
aliguori3fcf7b62009-04-24 18:03:25 +00003406 if (qemu_init_main_loop()) {
3407 fprintf(stderr, "qemu_init_main_loop failed\n");
3408 exit(1);
3409 }
Peter Maydella0abe472012-02-08 05:41:39 +00003410
Peter Maydell967c0da2012-02-22 22:40:00 +00003411 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
Peter Maydella0abe472012-02-08 05:41:39 +00003420 if (!kernel_cmdline) {
3421 kernel_cmdline = "";
3422 }
3423
bellarda20dd502003-09-30 21:07:02 +00003424 linux_boot = (kernel_filename != NULL);
balrog6c41b272007-11-17 12:12:29 +00003425
thsf8d39c02008-07-03 10:01:15 +00003426 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
Grant Likely412beee2012-03-02 11:56:38 +00003436 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
Jes Sorensen9156d762010-06-10 11:42:30 +02003441 os_set_line_buffering();
ths3b46e622007-09-17 08:09:54 +00003442
aliguori7183b4b2008-11-05 20:40:18 +00003443 if (init_timer_alarm() < 0) {
3444 fprintf(stderr, "could not initialize alarm timer\n");
3445 exit(1);
3446 }
Max Filippov0abe9052011-11-10 15:38:42 +04003447
Alon Levyad1be892012-03-14 20:33:37 +02003448#ifdef CONFIG_SPICE
3449 /* spice needs the timers to be initialized by this point */
3450 qemu_spice_init();
3451#endif
3452
Max Filippov0abe9052011-11-10 15:38:42 +04003453 if (icount_option && (kvm_enabled() || xen_enabled())) {
3454 fprintf(stderr, "-icount is not allowed with kvm or xen\n");
3455 exit(1);
3456 }
Paolo Bonzini4e3de9e2010-03-10 11:38:48 +01003457 configure_icount(icount_option);
pbrook634fce92006-07-15 17:40:09 +00003458
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01003459 if (net_init_clients() < 0) {
3460 exit(1);
bellard702c6512004-04-02 21:21:32 +00003461 }
bellardf1510b22003-06-25 00:07:40 +00003462
balrogdc72ac12008-11-09 00:04:26 +00003463 /* init the bluetooth world */
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02003464 if (foreach_device_config(DEV_BT, bt_parse))
3465 exit(1);
balrogdc72ac12008-11-09 00:04:26 +00003466
Anthony PERARD834e76e2011-07-20 08:17:44 +00003467 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 }
balrog7fb4fdc2008-04-24 17:59:27 +00003474
Jan Kiszkad5ab9712011-08-02 16:10:21 +02003475 cpu_exec_init_all();
bellard26a5f132008-05-28 12:30:31 +00003476
Markus Armbrustereb852012009-10-27 18:41:44 +01003477 bdrv_init_with_whitelist();
thse4bcb142007-12-02 04:51:10 +00003478
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02003479 blk_mig_init();
3480
ths96d30e42007-01-07 20:42:14 +00003481 /* open the virtual block devices */
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02003482 if (snapshot)
Gerd Hoffmann3329f072010-08-20 13:52:01 +02003483 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)
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02003485 exit(1);
balrog3e3d5812007-04-30 02:09:25 +00003486
Markus Armbruster4e5d9b52011-01-28 11:21:45 +01003487 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
Juan Quintela7908c782012-06-26 18:46:10 +02003494 register_savevm_live(NULL, "ram", 0, 4, &savevm_ram_handlers, NULL);
bellard8a7ddc32004-03-31 19:00:16 +00003495
aliguori268a3622009-04-21 22:30:27 +00003496 if (nb_numa_nodes > 0) {
3497 int i;
3498
Sasha Levinea0e5412011-06-29 23:29:39 -04003499 if (nb_numa_nodes > MAX_NODES) {
3500 nb_numa_nodes = MAX_NODES;
aliguori268a3622009-04-21 22:30:27 +00003501 }
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++) {
Chegu Vinodee785fe2012-07-16 21:31:30 -07003524 if (!bitmap_empty(node_cpumask[i], MAX_CPUMASK_BITS)) {
aliguori268a3622009-04-21 22:30:27 +00003525 break;
Chegu Vinodee785fe2012-07-16 21:31:30 -07003526 }
aliguori268a3622009-04-21 22:30:27 +00003527 }
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) {
Vasilis Liaskovitis991dfef2011-10-26 14:19:00 +02003533 for (i = 0; i < max_cpus; i++) {
Chegu Vinodee785fe2012-07-16 21:31:30 -07003534 set_bit(i, node_cpumask[i % nb_numa_nodes]);
aliguori268a3622009-04-21 22:30:27 +00003535 }
3536 }
3537 }
3538
Gerd Hoffmann3329f072010-08-20 13:52:01 +02003539 if (qemu_opts_foreach(qemu_find_opts("mon"), mon_init_func, NULL, 1) != 0) {
Jan Kiszka157b9312010-04-06 16:55:53 +02003540 exit(1);
3541 }
3542
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01003543 if (foreach_device_config(DEV_SERIAL, serial_parse) < 0)
3544 exit(1);
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01003545 if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0)
3546 exit(1);
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01003547 if (foreach_device_config(DEV_VIRTCON, virtcon_parse) < 0)
3548 exit(1);
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08003549 if (foreach_device_config(DEV_DEBUGCON, debugcon_parse) < 0)
3550 exit(1);
aliguori2796dae2009-01-16 20:23:27 +00003551
Paolo Bonzini7f1b17f2012-05-10 09:39:17 +02003552 /* If no default VGA is requested, the default is "none". */
3553 if (default_vga && cirrus_vga_available()) {
3554 vga_model = "cirrus";
Blue Swirla369da52011-09-27 19:15:42 +00003555 }
Paolo Bonzini7f1b17f2012-05-10 09:39:17 +02003556 select_vgahw(vga_model);
Blue Swirla369da52011-09-27 19:15:42 +00003557
Markus Armbruster09aaa162009-08-21 10:31:34 +02003558 if (watchdog) {
3559 i = select_watchdog(watchdog);
3560 if (i > 0)
3561 exit (i == 1 ? 1 : 0);
3562 }
3563
Gerd Hoffmannb6b61142009-07-15 13:48:21 +02003564 if (machine->compat_props) {
Gerd Hoffmann458fb672009-12-08 13:11:33 +01003565 qdev_prop_register_global_list(machine->compat_props);
Gerd Hoffmannb6b61142009-07-15 13:48:21 +02003566 }
Gerd Hoffmannd0fef6f2009-12-08 13:11:34 +01003567 qemu_add_globals();
3568
Anthony Liguori1de81d22011-12-19 16:37:46 -06003569 qdev_machine_init();
3570
Paul Brookfbe1b592009-05-13 17:56:25 +01003571 machine->init(ram_size, boot_devices,
aliguori3023f332009-01-16 19:04:14 +00003572 kernel_filename, kernel_cmdline, initrd_filename, cpu_model);
3573
Jan Kiszkaea375f92010-03-01 19:10:30 +01003574 cpu_synchronize_all_post_init();
aliguori268a3622009-04-21 22:30:27 +00003575
Blue Swirl87d0a282010-03-27 18:24:45 +00003576 set_numa_modes();
aliguori268a3622009-04-21 22:30:27 +00003577
aliguori6f338c32009-02-11 15:21:54 +00003578 current_machine = machine;
3579
aliguori3023f332009-01-16 19:04:14 +00003580 /* init USB devices */
3581 if (usb_enabled) {
Markus Armbruster07527062009-10-06 12:16:57 +01003582 if (foreach_device_config(DEV_USB, usb_parse) < 0)
3583 exit(1);
aliguori3023f332009-01-16 19:04:14 +00003584 }
3585
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02003586 /* init generic devices */
Gerd Hoffmann3329f072010-08-20 13:52:01 +02003587 if (qemu_opts_foreach(qemu_find_opts("device"), device_init_func, NULL, 1) != 0)
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02003588 exit(1);
3589
Markus Armbruster668680f2010-02-11 14:44:58 +01003590 net_check_clients();
3591
aliguori3023f332009-01-16 19:04:14 +00003592 /* just use the first displaystate for the moment */
Paolo Bonzinib473df62010-02-11 00:29:55 +01003593 ds = get_displaystate();
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003594
Gerd Hoffmanna3e22262010-08-25 15:32:06 +02003595 if (using_spice)
3596 display_remote++;
Gerd Hoffmann6b62dc22010-08-25 10:51:06 +02003597 if (display_type == DT_DEFAULT && !display_remote) {
Anthony Liguorif92f8af2009-05-20 13:01:02 -05003598#if defined(CONFIG_SDL) || defined(CONFIG_COCOA)
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003599 display_type = DT_SDL;
Jes Sorensen821601e2011-03-16 13:33:36 +01003600#elif defined(CONFIG_VNC)
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003601 vnc_display = "localhost:0,to=99";
3602 show_vnc_port = 1;
Jes Sorensen821601e2011-03-16 13:33:36 +01003603#else
3604 display_type = DT_NONE;
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003605#endif
3606 }
Jes Sorensen821601e2011-03-16 13:33:36 +01003607
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003608
Gerd Hoffmann6b62dc22010-08-25 10:51:06 +02003609 /* init local displays */
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003610 switch (display_type) {
3611 case DT_NOGRAPHIC:
3612 break;
3613#if defined(CONFIG_CURSES)
3614 case DT_CURSES:
3615 curses_display_init(ds, full_screen);
3616 break;
3617#endif
bellard5b0753e2005-03-01 21:37:28 +00003618#if defined(CONFIG_SDL)
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003619 case DT_SDL:
3620 sdl_display_init(ds, full_screen, no_frame);
3621 break;
bellard5b0753e2005-03-01 21:37:28 +00003622#elif defined(CONFIG_COCOA)
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003623 case DT_SDL:
3624 cocoa_display_init(ds, full_screen);
3625 break;
bellard313aa562003-08-10 21:52:11 +00003626#endif
Gerd Hoffmann6b62dc22010-08-25 10:51:06 +02003627 default:
3628 break;
3629 }
3630
Gleb Natapov0ce235a2011-03-31 11:27:23 +02003631 /* must be after terminal init, SDL library changes signal handlers */
3632 os_setup_signal_handling();
3633
Jes Sorensen821601e2011-03-16 13:33:36 +01003634#ifdef CONFIG_VNC
Gerd Hoffmann6b62dc22010-08-25 10:51:06 +02003635 /* init remote displays */
3636 if (vnc_display) {
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003637 vnc_display_init(ds);
Amos Kong94b204c2012-06-30 10:02:20 +08003638 if (vnc_display_open(ds, vnc_display) < 0) {
3639 fprintf(stderr, "Failed to start VNC server on `%s'\n",
3640 vnc_display);
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003641 exit(1);
Amos Kong94b204c2012-06-30 10:02:20 +08003642 }
Anthony Liguorif92f8af2009-05-20 13:01:02 -05003643
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003644 if (show_vnc_port) {
3645 printf("VNC server running on `%s'\n", vnc_display_local_addr(ds));
Anthony Liguorif92f8af2009-05-20 13:01:02 -05003646 }
bellard313aa562003-08-10 21:52:11 +00003647 }
Jes Sorensen821601e2011-03-16 13:33:36 +01003648#endif
Gerd Hoffmanna3e22262010-08-25 15:32:06 +02003649#ifdef CONFIG_SPICE
Gerd Hoffmanna19cbfb2010-04-27 11:50:11 +02003650 if (using_spice && !qxl_enabled) {
Gerd Hoffmanna3e22262010-08-25 15:32:06 +02003651 qemu_spice_display_init(ds);
3652 }
3653#endif
aliguori5b08fc12008-08-21 20:08:03 +00003654
Gerd Hoffmann6b62dc22010-08-25 10:51:06 +02003655 /* display setup */
3656 dpy_resize(ds);
aliguori3023f332009-01-16 19:04:14 +00003657 dcl = ds->listeners;
3658 while (dcl != NULL) {
3659 if (dcl->dpy_refresh != NULL) {
Paolo Bonzini7bd427d2011-03-11 16:47:48 +01003660 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));
Isaku Yamahata0f2ad632010-05-27 14:38:47 +09003662 break;
ths20d8a3e2007-02-18 17:04:49 +00003663 }
aliguori3023f332009-01-16 19:04:14 +00003664 dcl = dcl->next;
bellard82c643f2004-07-14 17:28:13 +00003665 }
Paolo Bonzinib473df62010-02-11 00:29:55 +01003666 text_consoles_set_display(ds);
aliguori2796dae2009-01-16 20:23:27 +00003667
Markus Armbrusteref0c4a02012-02-07 15:09:13 +01003668 if (foreach_device_config(DEV_GDB, gdbserver_start) < 0) {
aliguori59030a82009-04-05 18:43:41 +00003669 exit(1);
balrog45669e02007-07-02 13:20:17 +00003670 }
balrog45669e02007-07-02 13:20:17 +00003671
Gerd Hoffmann3418bd22009-09-25 21:42:41 +02003672 qdev_machine_creation_done();
3673
Gerd Hoffmann15ff7702009-12-14 16:07:35 +01003674 if (rom_load_all() != 0) {
3675 fprintf(stderr, "rom loading failed\n");
3676 exit(1);
3677 }
Gerd Hoffmann45a50b12009-10-01 16:42:33 +02003678
Isaku Yamahata80376c32010-12-20 14:33:35 +09003679 /* 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());
Gleb Natapov4cab9462010-12-08 13:35:08 +02003682 qemu_run_machine_init_done_notifiers();
3683
Jan Kiszkae063eb12011-06-14 18:29:43 +02003684 qemu_system_reset(VMRESET_SILENT);
Juan Quintela05f24012009-08-20 19:42:22 +02003685 if (loadvm) {
Markus Armbruster03cd4652010-02-17 16:24:10 +01003686 if (load_vmstate(loadvm) < 0) {
Juan Quintela05f24012009-08-20 19:42:22 +02003687 autostart = 0;
3688 }
3689 }
bellardd63d3072004-10-03 13:29:03 +00003690
Glauber Costa2bb8c102009-07-24 16:20:23 -04003691 if (incoming) {
Amos Kongd5c5dac2012-05-11 00:28:35 +08003692 Error *errp = NULL;
3693 int ret = qemu_start_incoming_migration(incoming, &errp);
Juan Quintela8ca5e802010-06-09 14:10:54 +02003694 if (ret < 0) {
Amos Kongd5c5dac2012-05-11 00:28:35 +08003695 if (error_is_set(&errp)) {
3696 fprintf(stderr, "Migrate: %s\n", error_get_pretty(errp));
3697 error_free(errp);
3698 }
Juan Quintela8ca5e802010-06-09 14:10:54 +02003699 fprintf(stderr, "Migration failed. Exit code %s(%d), exiting.\n",
3700 incoming, ret);
3701 exit(ret);
3702 }
Avi Kivity6b99dad2009-08-09 14:39:20 +03003703 } else if (autostart) {
aliguoric0f4ce72009-03-05 23:01:01 +00003704 vm_start();
Avi Kivity6b99dad2009-08-09 14:39:20 +03003705 }
thsffd843b2006-12-21 19:46:43 +00003706
Jes Sorenseneb505be2010-06-10 11:42:28 +02003707 os_setup_post();
ths71e3ceb2006-12-22 02:11:31 +00003708
Paolo Bonzini99435902011-09-12 14:03:13 +02003709 resume_all_vcpus();
bellard8a7ddc32004-03-31 19:00:16 +00003710 main_loop();
Paolo Bonzini99435902011-09-12 14:03:13 +02003711 bdrv_close_all();
3712 pause_all_vcpus();
aliguori63a01ef2008-10-31 19:10:00 +00003713 net_cleanup();
wayne3d3b8302011-07-27 18:04:55 +08003714 res_free();
thsb46a8902007-10-21 23:20:45 +00003715
bellard0824d6f2003-06-24 13:42:40 +00003716 return 0;
3717}