blob: 4c68668246058da1c1929a673f9db2fbac53e8da [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>
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010031#include "qemu/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
Eduardo Otubo452dfbe2012-08-14 18:44:07 -030066
67#ifdef CONFIG_SECCOMP
Paolo Bonzini9c17d612012-12-17 18:20:04 +010068#include "sysemu/seccomp.h"
Eduardo Otubo452dfbe2012-08-14 18:44:07 -030069#endif
70
blueswir1223f0d72008-09-30 18:12:18 +000071#ifdef __sun__
thsd5d10bc2007-02-17 22:54:49 +000072#include <sys/stat.h>
73#include <sys/ethernet.h>
74#include <sys/sockio.h>
thsd5d10bc2007-02-17 22:54:49 +000075#include <netinet/arp.h>
thsd5d10bc2007-02-17 22:54:49 +000076#include <netinet/in_systm.h>
77#include <netinet/ip.h>
78#include <netinet/ip_icmp.h> // must come after ip.h
79#include <netinet/udp.h>
80#include <netinet/tcp.h>
81#include <net/if.h>
82#include <syslog.h>
83#include <stropts.h>
bellard67b915a2004-03-31 23:37:16 +000084#endif
bellard7d3505c2004-05-12 19:32:15 +000085#endif
bellardec530c82006-04-25 22:36:06 +000086#endif
bellard67b915a2004-03-31 23:37:16 +000087
ths8a16d272008-07-19 09:56:24 +000088#if defined(CONFIG_VDE)
89#include <libvdeplug.h>
90#endif
91
bellard67b915a2004-03-31 23:37:16 +000092#ifdef _WIN32
aliguori49dc7682009-03-08 16:26:59 +000093#include <windows.h>
bellard67b915a2004-03-31 23:37:16 +000094#endif
95
bellard73332e52004-04-04 20:22:28 +000096#ifdef CONFIG_SDL
Stefan Weil59a36a22009-06-18 20:11:03 +020097#if defined(__APPLE__) || defined(main)
Stefan Weil66936652009-06-13 13:19:11 +020098#include <SDL.h>
malc880fec52009-02-15 20:18:41 +000099int qemu_main(int argc, char **argv, char **envp);
100int main(int argc, char **argv)
101{
Stefan Weil59a36a22009-06-18 20:11:03 +0200102 return qemu_main(argc, argv, NULL);
malc880fec52009-02-15 20:18:41 +0000103}
104#undef main
105#define main qemu_main
bellard96bcd4f2004-07-10 16:26:15 +0000106#endif
bellard73332e52004-04-04 20:22:28 +0000107#endif /* CONFIG_SDL */
bellard0824d6f2003-06-24 13:42:40 +0000108
bellard5b0753e2005-03-01 21:37:28 +0000109#ifdef CONFIG_COCOA
110#undef main
111#define main qemu_main
112#endif /* CONFIG_COCOA */
113
Anthony Liguori69e5bb62011-08-22 08:12:52 -0500114#include <glib.h>
115
blueswir1511d2b12009-03-07 15:32:56 +0000116#include "hw/hw.h"
117#include "hw/boards.h"
118#include "hw/usb.h"
119#include "hw/pcmcia.h"
Paolo Bonzini0d09e412013-02-05 17:06:20 +0100120#include "hw/i386/pc.h"
121#include "hw/isa/isa.h"
blueswir1511d2b12009-03-07 15:32:56 +0000122#include "hw/bt.h"
Paolo Bonzini0d09e412013-02-05 17:06:20 +0100123#include "sysemu/watchdog.h"
124#include "hw/i386/smbios.h"
125#include "hw/xen/xen.h"
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +0200126#include "hw/qdev.h"
Gerd Hoffmann45a50b12009-10-01 16:42:33 +0200127#include "hw/loader.h"
Paolo Bonzinib4a42f82013-02-04 11:37:52 +0100128#include "monitor/qdev.h"
Paolo Bonzinidccfcd02013-04-08 16:55:25 +0200129#include "sysemu/bt.h"
Paolo Bonzini1422e322012-10-24 08:43:34 +0200130#include "net/net.h"
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000131#include "net/slirp.h"
Paolo Bonzini83c90892012-12-17 18:19:49 +0100132#include "monitor/monitor.h"
Paolo Bonzini28ecbae2012-11-28 12:06:30 +0100133#include "ui/console.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +0100134#include "sysemu/sysemu.h"
Paolo Bonzini022c62c2012-12-17 18:19:49 +0100135#include "exec/gdbstub.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +0100136#include "qemu/timer.h"
Paolo Bonzinidccfcd02013-04-08 16:55:25 +0200137#include "sysemu/char.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +0100138#include "qemu/cache-utils.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +0100139#include "sysemu/blockdev.h"
Paolo Bonzini0d09e412013-02-05 17:06:20 +0100140#include "hw/block/block.h"
Paolo Bonzinicaf71f82012-12-17 18:19:50 +0100141#include "migration/block.h"
Paolo Bonzinibdee56f2013-04-02 18:28:41 +0200142#include "sysemu/tpm.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +0100143#include "sysemu/dma.h"
blueswir1511d2b12009-03-07 15:32:56 +0000144#include "audio/audio.h"
Paolo Bonzinicaf71f82012-12-17 18:19:50 +0100145#include "migration/migration.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +0100146#include "sysemu/kvm.h"
Paolo Bonzini7b1b5d12012-12-17 18:19:43 +0100147#include "qapi/qmp/qjson.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +0100148#include "qemu/option.h"
149#include "qemu/config-file.h"
Jes Sorensen59a52642010-06-10 11:42:25 +0200150#include "qemu-options.h"
Luiz Capitulino1fa9a5e2011-09-12 17:54:20 -0300151#include "qmp-commands.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +0100152#include "qemu/main-loop.h"
Venkateswararao Jujjuri (JV)758e8e32010-06-14 13:34:41 -0700153#ifdef CONFIG_VIRTFS
Gautham R Shenoy74db9202010-04-29 17:44:43 +0530154#include "fsdev/qemu-fsdev.h"
155#endif
Paolo Bonzini9c17d612012-12-17 18:20:04 +0100156#include "sysemu/qtest.h"
blueswir1511d2b12009-03-07 15:32:56 +0000157
Paolo Bonzini76cad712012-10-24 11:12:21 +0200158#include "disas/disas.h"
bellardfc01f7e2003-06-30 10:03:06 +0000159
Paolo Bonzini1de7afc2012-12-17 18:20:00 +0100160#include "qemu/sockets.h"
blueswir1511d2b12009-03-07 15:32:56 +0000161
Jan Kiszkad918f232009-06-24 14:42:30 +0200162#include "slirp/libslirp.h"
blueswir1511d2b12009-03-07 15:32:56 +0000163
Stefan Hajnoczi94b0b5f2010-11-16 12:20:25 +0000164#include "trace.h"
Lluíse4858972011-08-31 20:31:03 +0200165#include "trace/control.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +0100166#include "qemu/queue.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +0100167#include "sysemu/cpus.h"
168#include "sysemu/arch_init.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +0100169#include "qemu/osdep.h"
Blue Swirl72cf2d42009-09-12 07:36:22 +0000170
Gerd Hoffmann29b00402010-03-11 11:13:27 -0300171#include "ui/qemu-spice.h"
Anthony Liguori68d98d32012-06-25 14:36:33 -0500172#include "qapi/string-input-visitor.h"
Gerd Hoffmann29b00402010-03-11 11:13:27 -0300173
blueswir19dc63a12008-10-04 07:25:46 +0000174//#define DEBUG_NET
175//#define DEBUG_SLIRP
bellard330d0412003-07-26 18:11:40 +0000176
bellard1bfe8562004-07-08 21:17:50 +0000177#define DEFAULT_RAM_SIZE 128
bellard313aa562003-08-10 21:52:11 +0000178
Amit Shah98b19252010-01-20 00:36:52 +0530179#define MAX_VIRTIO_CONSOLES 1
Alexander Graf3ef669e2013-01-24 12:18:52 +0100180#define MAX_SCLP_CONSOLES 1
Amit Shah98b19252010-01-20 00:36:52 +0530181
Gerd Hoffmann45240512013-03-08 11:42:24 +0100182static const char *data_dir[16];
183static int data_dir_idx;
j_mayer1192dad2007-10-05 13:08:35 +0000184const char *bios_name = NULL;
malccb5a7aa2008-09-28 00:42:12 +0000185enum vga_retrace_method vga_retrace_method = VGA_RETRACE_DUMB;
Anthony Liguori993fbfd2009-05-21 16:54:00 -0500186DisplayType display_type = DT_DEFAULT;
Blue Swirl4fdcac02012-10-28 11:04:47 +0000187static int display_remote;
bellard3d11d0e2004-12-12 16:56:30 +0000188const char* keyboard_layout = NULL;
Anthony Liguoric227f092009-10-01 16:12:16 -0500189ram_addr_t ram_size;
Marcelo Tosattic9027602010-03-01 20:25:08 -0300190const char *mem_path = NULL;
191#ifdef MAP_POPULATE
192int mem_prealloc = 0; /* force preallocation of physical target memory */
193#endif
bellardc4b1fcc2004-03-14 21:44:30 +0000194int nb_nics;
bellard7c9d8e02005-11-15 22:16:05 +0000195NICInfo nd_table[MAX_NICS];
Paolo Bonzinid399f672009-07-27 23:17:51 +0200196int autostart;
balrogf6503052008-02-17 11:42:19 +0000197static int rtc_utc = 1;
198static int rtc_date_offset = -1; /* -1 means no change */
Jan Kiszka68752042009-09-15 13:36:04 +0200199QEMUClock *rtc_clock;
Gerd Hoffmann64465292009-12-08 13:11:45 +0100200int vga_interface_type = VGA_NONE;
blueswir1dbed7e42008-10-01 19:38:09 +0000201static int full_screen = 0;
202static int no_frame = 0;
ths667acca2006-12-11 02:08:05 +0000203int no_quit = 0;
bellard8d11df92004-08-24 21:13:40 +0000204CharDriverState *serial_hds[MAX_SERIAL_PORTS];
bellard6508fe52005-01-15 12:02:56 +0000205CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
aliguori9ede2fd2009-01-15 20:05:25 +0000206CharDriverState *virtcon_hds[MAX_VIRTIO_CONSOLES];
Alexander Graf3ef669e2013-01-24 12:18:52 +0100207CharDriverState *sclp_hds[MAX_SCLP_CONSOLES];
bellarda09db212005-04-30 16:10:35 +0000208int win2k_install_hack = 0;
aurel321b530a62009-04-05 20:08:59 +0000209int singlestep = 0;
bellard6a00d602005-11-21 23:25:50 +0000210int smp_cpus = 1;
Jes Sorensen6be68d72009-07-23 17:03:42 +0200211int max_cpus = 0;
Andre Przywaradc6b1c02009-08-19 15:42:40 +0200212int smp_cores = 1;
213int smp_threads = 1;
Jes Sorensen821601e2011-03-16 13:33:36 +0100214#ifdef CONFIG_VNC
ths73fc9742006-12-22 02:09:07 +0000215const char *vnc_display;
Jes Sorensen821601e2011-03-16 13:33:36 +0100216#endif
bellard6515b202006-05-03 22:02:44 +0000217int acpi_enabled = 1;
aliguori16b29ae2008-12-17 23:28:44 +0000218int no_hpet = 0;
bellard52ca8d62006-06-14 16:03:05 +0000219int fd_bootchk = 1;
Blue Swirl4fdcac02012-10-28 11:04:47 +0000220static int no_reboot;
aurel32b2f76162008-04-11 21:35:52 +0000221int no_shutdown = 0;
balrog9467cd42007-05-01 01:34:14 +0000222int cursor_hide = 1;
balroga171fe32007-04-30 01:48:07 +0000223int graphic_rotate = 0;
Markus Armbruster09aaa162009-08-21 10:31:34 +0200224const char *watchdog;
Gleb Natapov2e55e842010-12-08 13:35:07 +0200225QEMUOptionRom option_rom[MAX_OPTION_ROMS];
ths9ae02552007-01-05 17:39:04 +0000226int nb_option_roms;
pbrook8e716212007-01-20 17:12:09 +0000227int semihosting_enabled = 0;
balrog2b8f2d42007-07-27 22:08:46 +0000228int old_param = 0;
thsc35734b2007-03-19 15:17:08 +0000229const char *qemu_name;
ths3780e192007-06-21 21:08:02 +0000230int alt_grab = 0;
Dustin Kirkland0ca9f8a2009-09-17 15:48:04 -0500231int ctrl_grab = 0;
blueswir166508602007-05-01 14:16:52 +0000232unsigned int nb_prom_envs = 0;
233const char *prom_envs[MAX_PROM_ENVS];
Jan Kiszka95387492009-07-02 00:19:02 +0200234int boot_menu;
Amos Kongc8a6ae82013-03-19 14:23:27 +0800235bool boot_strict;
wayne3d3b8302011-07-27 18:04:55 +0800236uint8_t *boot_splash_filedata;
Markus Armbrusterd09acb92013-01-23 18:25:08 +0100237size_t boot_splash_filedata_size;
wayne3d3b8302011-07-27 18:04:55 +0800238uint8_t qemu_extra_params_fw[2];
bellard0824d6f2003-06-24 13:42:40 +0000239
Gleb Natapov1ca4d092010-12-08 13:35:05 +0200240typedef struct FWBootEntry FWBootEntry;
241
242struct FWBootEntry {
243 QTAILQ_ENTRY(FWBootEntry) link;
244 int32_t bootindex;
245 DeviceState *dev;
246 char *suffix;
247};
248
Blue Swirl4fdcac02012-10-28 11:04:47 +0000249static QTAILQ_HEAD(, FWBootEntry) fw_boot_order =
250 QTAILQ_HEAD_INITIALIZER(fw_boot_order);
Gleb Natapov1ca4d092010-12-08 13:35:05 +0200251
aliguori268a3622009-04-21 22:30:27 +0000252int nb_numa_nodes;
253uint64_t node_mem[MAX_NODES];
Chegu Vinodee785fe2012-07-16 21:31:30 -0700254unsigned long *node_cpumask[MAX_NODES];
aliguori268a3622009-04-21 22:30:27 +0000255
blueswir18fcb1b92008-09-18 18:29:08 +0000256uint8_t qemu_uuid[16];
257
Jan Kiszka76e30d02009-07-02 00:19:02 +0200258static QEMUBootSetHandler *boot_set_handler;
259static void *boot_set_opaque;
260
Gerd Hoffmannfd42dee2010-06-04 14:08:07 +0200261static NotifierList exit_notifiers =
262 NOTIFIER_LIST_INITIALIZER(exit_notifiers);
263
Gleb Natapov4cab9462010-12-08 13:35:08 +0200264static NotifierList machine_init_done_notifiers =
265 NOTIFIER_LIST_INITIALIZER(machine_init_done_notifiers);
266
liguangd5286af2013-01-24 13:03:27 +0800267static bool tcg_allowed = true;
liguangd5286af2013-01-24 13:03:27 +0800268bool xen_allowed;
Blue Swirld745bef2010-03-29 19:23:49 +0000269uint32_t xen_domid;
270enum xen_mode xen_mode = XEN_EMULATE;
Jan Kiszkad5ab9712011-08-02 16:10:21 +0200271static int tcg_tb_size;
Blue Swirld745bef2010-03-29 19:23:49 +0000272
Gerd Hoffmann998bbd72009-12-08 13:11:41 +0100273static int default_serial = 1;
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +0100274static int default_parallel = 1;
Gerd Hoffmann986c5f72009-12-08 13:11:54 +0100275static int default_virtcon = 1;
Alexander Graf3ef669e2013-01-24 12:18:52 +0100276static int default_sclp = 1;
Gerd Hoffmannabdeed02009-12-08 13:11:43 +0100277static int default_monitor = 1;
Gerd Hoffmannac33f8f2009-12-16 14:25:39 +0100278static int default_floppy = 1;
279static int default_cdrom = 1;
280static int default_sdcard = 1;
Paolo Bonzini7f1b17f2012-05-10 09:39:17 +0200281static int default_vga = 1;
Gerd Hoffmann998bbd72009-12-08 13:11:41 +0100282
283static struct {
284 const char *driver;
285 int *flag;
286} default_list[] = {
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +0100287 { .driver = "isa-serial", .flag = &default_serial },
288 { .driver = "isa-parallel", .flag = &default_parallel },
Gerd Hoffmannd8bcbab2009-12-16 14:25:40 +0100289 { .driver = "isa-fdc", .flag = &default_floppy },
Markus Armbrusteraf6bf132011-05-18 18:31:02 +0200290 { .driver = "ide-cd", .flag = &default_cdrom },
291 { .driver = "ide-hd", .flag = &default_cdrom },
Gerd Hoffmannd8bcbab2009-12-16 14:25:40 +0100292 { .driver = "ide-drive", .flag = &default_cdrom },
Markus Armbrusteraf6bf132011-05-18 18:31:02 +0200293 { .driver = "scsi-cd", .flag = &default_cdrom },
Amit Shah392ecf52010-01-21 16:19:23 +0530294 { .driver = "virtio-serial-pci", .flag = &default_virtcon },
295 { .driver = "virtio-serial-s390", .flag = &default_virtcon },
296 { .driver = "virtio-serial", .flag = &default_virtcon },
Paolo Bonzini7f1b17f2012-05-10 09:39:17 +0200297 { .driver = "VGA", .flag = &default_vga },
298 { .driver = "isa-vga", .flag = &default_vga },
299 { .driver = "cirrus-vga", .flag = &default_vga },
300 { .driver = "isa-cirrus-vga", .flag = &default_vga },
301 { .driver = "vmware-svga", .flag = &default_vga },
302 { .driver = "qxl-vga", .flag = &default_vga },
Gerd Hoffmann998bbd72009-12-08 13:11:41 +0100303};
304
Paolo Bonzini4d454572012-11-26 16:03:42 +0100305static QemuOptsList qemu_rtc_opts = {
306 .name = "rtc",
307 .head = QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts.head),
308 .desc = {
309 {
310 .name = "base",
311 .type = QEMU_OPT_STRING,
312 },{
313 .name = "clock",
314 .type = QEMU_OPT_STRING,
315 },{
316 .name = "driftfix",
317 .type = QEMU_OPT_STRING,
318 },
319 { /* end of list */ }
320 },
321};
322
323static QemuOptsList qemu_sandbox_opts = {
324 .name = "sandbox",
325 .implied_opt_name = "enable",
326 .head = QTAILQ_HEAD_INITIALIZER(qemu_sandbox_opts.head),
327 .desc = {
328 {
329 .name = "enable",
330 .type = QEMU_OPT_BOOL,
331 },
332 { /* end of list */ }
333 },
334};
335
336static QemuOptsList qemu_trace_opts = {
337 .name = "trace",
338 .implied_opt_name = "trace",
339 .head = QTAILQ_HEAD_INITIALIZER(qemu_trace_opts.head),
340 .desc = {
341 {
342 .name = "events",
343 .type = QEMU_OPT_STRING,
344 },{
345 .name = "file",
346 .type = QEMU_OPT_STRING,
347 },
348 { /* end of list */ }
349 },
350};
351
352static QemuOptsList qemu_option_rom_opts = {
353 .name = "option-rom",
354 .implied_opt_name = "romfile",
355 .head = QTAILQ_HEAD_INITIALIZER(qemu_option_rom_opts.head),
356 .desc = {
357 {
358 .name = "bootindex",
359 .type = QEMU_OPT_NUMBER,
360 }, {
361 .name = "romfile",
362 .type = QEMU_OPT_STRING,
363 },
364 { /* end of list */ }
365 },
366};
367
368static QemuOptsList qemu_machine_opts = {
369 .name = "machine",
370 .implied_opt_name = "type",
371 .merge_lists = true,
372 .head = QTAILQ_HEAD_INITIALIZER(qemu_machine_opts.head),
373 .desc = {
374 {
375 .name = "type",
376 .type = QEMU_OPT_STRING,
377 .help = "emulated machine"
378 }, {
379 .name = "accel",
380 .type = QEMU_OPT_STRING,
381 .help = "accelerator list",
382 }, {
383 .name = "kernel_irqchip",
384 .type = QEMU_OPT_BOOL,
385 .help = "use KVM in-kernel irqchip",
386 }, {
387 .name = "kvm_shadow_mem",
388 .type = QEMU_OPT_SIZE,
389 .help = "KVM shadow MMU size",
390 }, {
391 .name = "kernel",
392 .type = QEMU_OPT_STRING,
393 .help = "Linux kernel image file",
394 }, {
395 .name = "initrd",
396 .type = QEMU_OPT_STRING,
397 .help = "Linux initial ramdisk file",
398 }, {
399 .name = "append",
400 .type = QEMU_OPT_STRING,
401 .help = "Linux kernel command line",
402 }, {
403 .name = "dtb",
404 .type = QEMU_OPT_STRING,
405 .help = "Linux kernel device tree file",
406 }, {
407 .name = "dumpdtb",
408 .type = QEMU_OPT_STRING,
409 .help = "Dump current dtb to a file and quit",
410 }, {
411 .name = "phandle_start",
Markus Armbrusterc1b71b02013-07-04 15:09:23 +0200412 .type = QEMU_OPT_NUMBER,
Paolo Bonzini4d454572012-11-26 16:03:42 +0100413 .help = "The first phandle ID we may generate dynamically",
414 }, {
415 .name = "dt_compatible",
416 .type = QEMU_OPT_STRING,
417 .help = "Overrides the \"compatible\" property of the dt root node",
418 }, {
419 .name = "dump-guest-core",
420 .type = QEMU_OPT_BOOL,
421 .help = "Include guest memory in a core dump",
422 }, {
423 .name = "mem-merge",
424 .type = QEMU_OPT_BOOL,
425 .help = "enable/disable memory merge support",
426 },{
427 .name = "usb",
428 .type = QEMU_OPT_BOOL,
429 .help = "Set on/off to enable/disable usb",
430 },
431 { /* End of list */ }
432 },
433};
434
435static QemuOptsList qemu_boot_opts = {
436 .name = "boot-opts",
Markus Armbruster6ef47162013-06-14 13:15:01 +0200437 .implied_opt_name = "order",
438 .merge_lists = true,
Paolo Bonzini4d454572012-11-26 16:03:42 +0100439 .head = QTAILQ_HEAD_INITIALIZER(qemu_boot_opts.head),
440 .desc = {
Paolo Bonzini4d454572012-11-26 16:03:42 +0100441 {
442 .name = "order",
443 .type = QEMU_OPT_STRING,
444 }, {
445 .name = "once",
446 .type = QEMU_OPT_STRING,
447 }, {
448 .name = "menu",
Markus Armbruster6ef47162013-06-14 13:15:01 +0200449 .type = QEMU_OPT_BOOL,
Paolo Bonzini4d454572012-11-26 16:03:42 +0100450 }, {
451 .name = "splash",
452 .type = QEMU_OPT_STRING,
453 }, {
454 .name = "splash-time",
455 .type = QEMU_OPT_STRING,
456 }, {
457 .name = "reboot-timeout",
458 .type = QEMU_OPT_STRING,
Amos Kongc8a6ae82013-03-19 14:23:27 +0800459 }, {
460 .name = "strict",
461 .type = QEMU_OPT_STRING,
Paolo Bonzini4d454572012-11-26 16:03:42 +0100462 },
463 { /*End of list */ }
464 },
465};
466
467static QemuOptsList qemu_add_fd_opts = {
468 .name = "add-fd",
469 .head = QTAILQ_HEAD_INITIALIZER(qemu_add_fd_opts.head),
470 .desc = {
471 {
472 .name = "fd",
473 .type = QEMU_OPT_NUMBER,
474 .help = "file descriptor of which a duplicate is added to fd set",
475 },{
476 .name = "set",
477 .type = QEMU_OPT_NUMBER,
478 .help = "ID of the fd set to add fd to",
479 },{
480 .name = "opaque",
481 .type = QEMU_OPT_STRING,
482 .help = "free-form string used to describe fd",
483 },
484 { /* end of list */ }
485 },
486};
487
488static QemuOptsList qemu_object_opts = {
489 .name = "object",
490 .implied_opt_name = "qom-type",
491 .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head),
492 .desc = {
493 { }
494 },
495};
496
Stefan Bergerd1a0cf72013-02-27 12:47:49 -0500497static QemuOptsList qemu_tpmdev_opts = {
498 .name = "tpmdev",
499 .implied_opt_name = "type",
500 .head = QTAILQ_HEAD_INITIALIZER(qemu_tpmdev_opts.head),
501 .desc = {
Stefan Bergerbb716232013-04-22 10:41:39 -0400502 /* options are defined in the TPM backends */
Stefan Bergerd1a0cf72013-02-27 12:47:49 -0500503 { /* end of list */ }
504 },
505};
506
Satoru Moriya888a6bc2013-04-19 16:42:06 +0200507static QemuOptsList qemu_realtime_opts = {
508 .name = "realtime",
509 .head = QTAILQ_HEAD_INITIALIZER(qemu_realtime_opts.head),
510 .desc = {
511 {
512 .name = "mlock",
513 .type = QEMU_OPT_BOOL,
514 },
515 { /* end of list */ }
516 },
517};
518
Seiji Aguchi5e2ac512013-07-03 23:02:46 -0400519static QemuOptsList qemu_msg_opts = {
520 .name = "msg",
521 .head = QTAILQ_HEAD_INITIALIZER(qemu_msg_opts.head),
522 .desc = {
523 {
524 .name = "timestamp",
525 .type = QEMU_OPT_BOOL,
526 },
527 { /* end of list */ }
528 },
529};
530
Markus Armbruster7f9d6e52013-07-04 15:09:19 +0200531/**
532 * Get machine options
533 *
534 * Returns: machine options (never null).
535 */
536QemuOpts *qemu_get_machine_opts(void)
537{
538 QemuOptsList *list;
539 QemuOpts *opts;
540
541 list = qemu_find_opts("machine");
542 assert(list);
543 opts = qemu_opts_find(list, NULL);
544 if (!opts) {
545 opts = qemu_opts_create_nofail(list);
546 }
547 return opts;
548}
549
Ronnie Sahlberg31459f42012-08-06 18:24:55 +1000550const char *qemu_get_vm_name(void)
551{
552 return qemu_name;
553}
554
wayne3d3b8302011-07-27 18:04:55 +0800555static void res_free(void)
556{
557 if (boot_splash_filedata != NULL) {
Anthony Liguori7267c092011-08-20 22:09:37 -0500558 g_free(boot_splash_filedata);
wayne3d3b8302011-07-27 18:04:55 +0800559 boot_splash_filedata = NULL;
560 }
561}
562
Gerd Hoffmann998bbd72009-12-08 13:11:41 +0100563static int default_driver_check(QemuOpts *opts, void *opaque)
564{
565 const char *driver = qemu_opt_get(opts, "driver");
566 int i;
567
568 if (!driver)
569 return 0;
570 for (i = 0; i < ARRAY_SIZE(default_list); i++) {
571 if (strcmp(default_list[i].driver, driver) != 0)
572 continue;
573 *(default_list[i].flag) = 0;
574 }
575 return 0;
576}
577
bellard0824d6f2003-06-24 13:42:40 +0000578/***********************************************************/
Luiz Capitulinof5bbfba2011-07-29 15:04:45 -0300579/* QEMU state */
580
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300581static RunState current_run_state = RUN_STATE_PRELAUNCH;
Luiz Capitulinof5bbfba2011-07-29 15:04:45 -0300582
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300583typedef struct {
584 RunState from;
585 RunState to;
586} RunStateTransition;
587
588static const RunStateTransition runstate_transitions_def[] = {
589 /* from -> to */
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300590 { RUN_STATE_DEBUG, RUN_STATE_RUNNING },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300591
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300592 { RUN_STATE_INMIGRATE, RUN_STATE_RUNNING },
Paolo Bonzini29ed72f2012-10-19 16:45:24 +0200593 { RUN_STATE_INMIGRATE, RUN_STATE_PAUSED },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300594
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300595 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_PAUSED },
Luiz Capitulino8a9236f2011-10-14 11:18:09 -0300596 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_FINISH_MIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300597
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300598 { RUN_STATE_IO_ERROR, RUN_STATE_RUNNING },
Luiz Capitulino8a9236f2011-10-14 11:18:09 -0300599 { RUN_STATE_IO_ERROR, RUN_STATE_FINISH_MIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300600
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300601 { RUN_STATE_PAUSED, RUN_STATE_RUNNING },
Luiz Capitulino8a9236f2011-10-14 11:18:09 -0300602 { RUN_STATE_PAUSED, RUN_STATE_FINISH_MIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300603
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300604 { RUN_STATE_POSTMIGRATE, RUN_STATE_RUNNING },
Luiz Capitulino8a9236f2011-10-14 11:18:09 -0300605 { RUN_STATE_POSTMIGRATE, RUN_STATE_FINISH_MIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300606
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300607 { RUN_STATE_PRELAUNCH, RUN_STATE_RUNNING },
Luiz Capitulino8a9236f2011-10-14 11:18:09 -0300608 { RUN_STATE_PRELAUNCH, RUN_STATE_FINISH_MIGRATE },
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300609 { RUN_STATE_PRELAUNCH, RUN_STATE_INMIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300610
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300611 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_RUNNING },
612 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_POSTMIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300613
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300614 { RUN_STATE_RESTORE_VM, RUN_STATE_RUNNING },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300615
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300616 { RUN_STATE_RUNNING, RUN_STATE_DEBUG },
617 { RUN_STATE_RUNNING, RUN_STATE_INTERNAL_ERROR },
618 { RUN_STATE_RUNNING, RUN_STATE_IO_ERROR },
619 { RUN_STATE_RUNNING, RUN_STATE_PAUSED },
620 { RUN_STATE_RUNNING, RUN_STATE_FINISH_MIGRATE },
621 { RUN_STATE_RUNNING, RUN_STATE_RESTORE_VM },
622 { RUN_STATE_RUNNING, RUN_STATE_SAVE_VM },
623 { RUN_STATE_RUNNING, RUN_STATE_SHUTDOWN },
624 { RUN_STATE_RUNNING, RUN_STATE_WATCHDOG },
Hu Taoede085b2013-04-26 11:24:40 +0800625 { RUN_STATE_RUNNING, RUN_STATE_GUEST_PANICKED },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300626
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300627 { RUN_STATE_SAVE_VM, RUN_STATE_RUNNING },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300628
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300629 { RUN_STATE_SHUTDOWN, RUN_STATE_PAUSED },
Luiz Capitulino8a9236f2011-10-14 11:18:09 -0300630 { RUN_STATE_SHUTDOWN, RUN_STATE_FINISH_MIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300631
Luiz Capitulinoad02b962012-04-27 13:33:36 -0300632 { RUN_STATE_DEBUG, RUN_STATE_SUSPENDED },
633 { RUN_STATE_RUNNING, RUN_STATE_SUSPENDED },
634 { RUN_STATE_SUSPENDED, RUN_STATE_RUNNING },
635 { RUN_STATE_SUSPENDED, RUN_STATE_FINISH_MIGRATE },
636
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300637 { RUN_STATE_WATCHDOG, RUN_STATE_RUNNING },
Luiz Capitulino8a9236f2011-10-14 11:18:09 -0300638 { RUN_STATE_WATCHDOG, RUN_STATE_FINISH_MIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300639
Hu Taoede085b2013-04-26 11:24:40 +0800640 { RUN_STATE_GUEST_PANICKED, RUN_STATE_PAUSED },
Hu Taofd2a2e12013-05-20 12:46:20 +0200641 { RUN_STATE_GUEST_PANICKED, RUN_STATE_FINISH_MIGRATE },
Paolo Bonzinibc7d0e62013-06-03 17:06:55 +0200642 { RUN_STATE_GUEST_PANICKED, RUN_STATE_DEBUG },
Hu Taoede085b2013-04-26 11:24:40 +0800643
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300644 { RUN_STATE_MAX, RUN_STATE_MAX },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300645};
646
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300647static bool runstate_valid_transitions[RUN_STATE_MAX][RUN_STATE_MAX];
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300648
Luiz Capitulinof5bbfba2011-07-29 15:04:45 -0300649bool runstate_check(RunState state)
650{
651 return current_run_state == state;
652}
653
Blue Swirl4fdcac02012-10-28 11:04:47 +0000654static void runstate_init(void)
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300655{
656 const RunStateTransition *p;
657
658 memset(&runstate_valid_transitions, 0, sizeof(runstate_valid_transitions));
659
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300660 for (p = &runstate_transitions_def[0]; p->from != RUN_STATE_MAX; p++) {
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300661 runstate_valid_transitions[p->from][p->to] = true;
662 }
663}
664
665/* This function will abort() on invalid state transitions */
Luiz Capitulinof5bbfba2011-07-29 15:04:45 -0300666void runstate_set(RunState new_state)
667{
Luiz Capitulino207c5cd2011-10-13 10:59:07 -0300668 assert(new_state < RUN_STATE_MAX);
669
670 if (!runstate_valid_transitions[current_run_state][new_state]) {
671 fprintf(stderr, "ERROR: invalid runstate transition: '%s' -> '%s'\n",
672 RunState_lookup[current_run_state],
673 RunState_lookup[new_state]);
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300674 abort();
675 }
Kazuya Saito7e866002013-03-22 17:26:59 +0900676 trace_runstate_set(new_state);
Luiz Capitulinof5bbfba2011-07-29 15:04:45 -0300677 current_run_state = new_state;
678}
679
Luiz Capitulino13548692011-07-29 15:36:43 -0300680int runstate_is_running(void)
681{
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300682 return runstate_check(RUN_STATE_RUNNING);
Luiz Capitulino13548692011-07-29 15:36:43 -0300683}
684
Hu Taoede085b2013-04-26 11:24:40 +0800685bool runstate_needs_reset(void)
686{
687 return runstate_check(RUN_STATE_INTERNAL_ERROR) ||
688 runstate_check(RUN_STATE_SHUTDOWN) ||
689 runstate_check(RUN_STATE_GUEST_PANICKED);
690}
691
Luiz Capitulino1fa9a5e2011-09-12 17:54:20 -0300692StatusInfo *qmp_query_status(Error **errp)
693{
694 StatusInfo *info = g_malloc0(sizeof(*info));
695
696 info->running = runstate_is_running();
697 info->singlestep = singlestep;
698 info->status = current_run_state;
699
700 return info;
701}
702
Luiz Capitulinof5bbfba2011-07-29 15:04:45 -0300703/***********************************************************/
Paolo Bonzini8f0056b2010-01-13 14:05:34 +0100704/* real time host monotonic timer */
bellard09b26c52006-04-12 21:09:08 +0000705
bellardc4b1fcc2004-03-14 21:44:30 +0000706/***********************************************************/
balrogf6503052008-02-17 11:42:19 +0000707/* host time/date access */
708void qemu_get_timedate(struct tm *tm, int offset)
709{
710 time_t ti;
balrogf6503052008-02-17 11:42:19 +0000711
712 time(&ti);
713 ti += offset;
714 if (rtc_date_offset == -1) {
715 if (rtc_utc)
Stefan Weileb7ff6f2013-01-07 23:08:13 +0100716 gmtime_r(&ti, tm);
balrogf6503052008-02-17 11:42:19 +0000717 else
Stefan Weileb7ff6f2013-01-07 23:08:13 +0100718 localtime_r(&ti, tm);
balrogf6503052008-02-17 11:42:19 +0000719 } else {
720 ti -= rtc_date_offset;
Stefan Weileb7ff6f2013-01-07 23:08:13 +0100721 gmtime_r(&ti, tm);
balrogf6503052008-02-17 11:42:19 +0000722 }
balrogf6503052008-02-17 11:42:19 +0000723}
724
725int qemu_timedate_diff(struct tm *tm)
726{
727 time_t seconds;
728
729 if (rtc_date_offset == -1)
730 if (rtc_utc)
731 seconds = mktimegm(tm);
Gleb Natapovf54c5562011-11-06 18:00:22 +0200732 else {
733 struct tm tmp = *tm;
734 tmp.tm_isdst = -1; /* use timezone to figure it out */
735 seconds = mktime(&tmp);
736 }
balrogf6503052008-02-17 11:42:19 +0000737 else
738 seconds = mktimegm(tm) + rtc_date_offset;
739
740 return seconds - time(NULL);
741}
742
Luiz Capitulino80cd3472010-02-25 12:11:44 -0300743void rtc_change_mon_event(struct tm *tm)
744{
745 QObject *data;
746
747 data = qobject_from_jsonf("{ 'offset': %d }", qemu_timedate_diff(tm));
748 monitor_protocol_event(QEVENT_RTC_CHANGE, data);
749 qobject_decref(data);
750}
751
Jan Kiszka1ed2fc12009-09-15 13:36:04 +0200752static void configure_rtc_date_offset(const char *startdate, int legacy)
753{
754 time_t rtc_start_date;
755 struct tm tm;
756
757 if (!strcmp(startdate, "now") && legacy) {
758 rtc_date_offset = -1;
759 } else {
760 if (sscanf(startdate, "%d-%d-%dT%d:%d:%d",
761 &tm.tm_year,
762 &tm.tm_mon,
763 &tm.tm_mday,
764 &tm.tm_hour,
765 &tm.tm_min,
766 &tm.tm_sec) == 6) {
767 /* OK */
768 } else if (sscanf(startdate, "%d-%d-%d",
769 &tm.tm_year,
770 &tm.tm_mon,
771 &tm.tm_mday) == 3) {
772 tm.tm_hour = 0;
773 tm.tm_min = 0;
774 tm.tm_sec = 0;
775 } else {
776 goto date_fail;
777 }
778 tm.tm_year -= 1900;
779 tm.tm_mon--;
780 rtc_start_date = mktimegm(&tm);
781 if (rtc_start_date == -1) {
782 date_fail:
783 fprintf(stderr, "Invalid date format. Valid formats are:\n"
784 "'2006-06-17T16:01:21' or '2006-06-17'\n");
785 exit(1);
786 }
787 rtc_date_offset = time(NULL) - rtc_start_date;
788 }
789}
790
791static void configure_rtc(QemuOpts *opts)
792{
793 const char *value;
794
795 value = qemu_opt_get(opts, "base");
796 if (value) {
797 if (!strcmp(value, "utc")) {
798 rtc_utc = 1;
799 } else if (!strcmp(value, "localtime")) {
800 rtc_utc = 0;
801 } else {
802 configure_rtc_date_offset(value, 0);
803 }
804 }
Jan Kiszka68752042009-09-15 13:36:04 +0200805 value = qemu_opt_get(opts, "clock");
806 if (value) {
807 if (!strcmp(value, "host")) {
808 rtc_clock = host_clock;
Paolo Bonzini78808142012-03-30 10:31:21 +0000809 } else if (!strcmp(value, "rt")) {
810 rtc_clock = rt_clock;
Jan Kiszka68752042009-09-15 13:36:04 +0200811 } else if (!strcmp(value, "vm")) {
812 rtc_clock = vm_clock;
813 } else {
814 fprintf(stderr, "qemu: invalid option value '%s'\n", value);
815 exit(1);
816 }
817 }
Jan Kiszka1ed2fc12009-09-15 13:36:04 +0200818 value = qemu_opt_get(opts, "driftfix");
819 if (value) {
Blue Swirl7e4c0332010-03-27 21:33:46 +0000820 if (!strcmp(value, "slew")) {
Jan Kiszka433acf02012-01-23 20:15:12 +0100821 static GlobalProperty slew_lost_ticks[] = {
822 {
823 .driver = "mc146818rtc",
824 .property = "lost_tick_policy",
825 .value = "slew",
826 },
827 { /* end of list */ }
828 };
829
830 qdev_prop_register_global_list(slew_lost_ticks);
Blue Swirl7e4c0332010-03-27 21:33:46 +0000831 } else if (!strcmp(value, "none")) {
Jan Kiszka433acf02012-01-23 20:15:12 +0100832 /* discard is default */
Jan Kiszka1ed2fc12009-09-15 13:36:04 +0200833 } else {
834 fprintf(stderr, "qemu: invalid option value '%s'\n", value);
835 exit(1);
836 }
837 }
Jan Kiszka1ed2fc12009-09-15 13:36:04 +0200838}
839
balrog1ae26a12008-09-28 23:19:47 +0000840/***********************************************************/
841/* Bluetooth support */
842static int nb_hcis;
843static int cur_hci;
844static struct HCIInfo *hci_table[MAX_NICS];
balrogdc72ac12008-11-09 00:04:26 +0000845
balrog1ae26a12008-09-28 23:19:47 +0000846static struct bt_vlan_s {
847 struct bt_scatternet_s net;
848 int id;
849 struct bt_vlan_s *next;
850} *first_bt_vlan;
851
852/* find or alloc a new bluetooth "VLAN" */
blueswir1674bb262008-09-30 18:18:27 +0000853static struct bt_scatternet_s *qemu_find_bt_vlan(int id)
balrog1ae26a12008-09-28 23:19:47 +0000854{
855 struct bt_vlan_s **pvlan, *vlan;
856 for (vlan = first_bt_vlan; vlan != NULL; vlan = vlan->next) {
857 if (vlan->id == id)
858 return &vlan->net;
859 }
Anthony Liguori7267c092011-08-20 22:09:37 -0500860 vlan = g_malloc0(sizeof(struct bt_vlan_s));
balrog1ae26a12008-09-28 23:19:47 +0000861 vlan->id = id;
862 pvlan = &first_bt_vlan;
863 while (*pvlan != NULL)
864 pvlan = &(*pvlan)->next;
865 *pvlan = vlan;
866 return &vlan->net;
867}
868
869static void null_hci_send(struct HCIInfo *hci, const uint8_t *data, int len)
870{
871}
872
873static int null_hci_addr_set(struct HCIInfo *hci, const uint8_t *bd_addr)
874{
875 return -ENOTSUP;
876}
877
878static struct HCIInfo null_hci = {
879 .cmd_send = null_hci_send,
880 .sco_send = null_hci_send,
881 .acl_send = null_hci_send,
882 .bdaddr_set = null_hci_addr_set,
883};
884
885struct HCIInfo *qemu_next_hci(void)
886{
887 if (cur_hci == nb_hcis)
888 return &null_hci;
889
890 return hci_table[cur_hci++];
891}
892
balrogdc72ac12008-11-09 00:04:26 +0000893static struct HCIInfo *hci_init(const char *str)
894{
895 char *endp;
896 struct bt_scatternet_s *vlan = 0;
897
898 if (!strcmp(str, "null"))
899 /* null */
900 return &null_hci;
901 else if (!strncmp(str, "host", 4) && (str[4] == '\0' || str[4] == ':'))
902 /* host[:hciN] */
903 return bt_host_hci(str[4] ? str + 5 : "hci0");
904 else if (!strncmp(str, "hci", 3)) {
905 /* hci[,vlan=n] */
906 if (str[3]) {
907 if (!strncmp(str + 3, ",vlan=", 6)) {
908 vlan = qemu_find_bt_vlan(strtol(str + 9, &endp, 0));
909 if (*endp)
910 vlan = 0;
911 }
912 } else
913 vlan = qemu_find_bt_vlan(0);
914 if (vlan)
915 return bt_new_hci(vlan);
916 }
917
918 fprintf(stderr, "qemu: Unknown bluetooth HCI `%s'.\n", str);
919
920 return 0;
921}
922
923static int bt_hci_parse(const char *str)
924{
925 struct HCIInfo *hci;
Anthony Liguoric227f092009-10-01 16:12:16 -0500926 bdaddr_t bdaddr;
balrogdc72ac12008-11-09 00:04:26 +0000927
928 if (nb_hcis >= MAX_NICS) {
929 fprintf(stderr, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS);
930 return -1;
931 }
932
933 hci = hci_init(str);
934 if (!hci)
935 return -1;
936
937 bdaddr.b[0] = 0x52;
938 bdaddr.b[1] = 0x54;
939 bdaddr.b[2] = 0x00;
940 bdaddr.b[3] = 0x12;
941 bdaddr.b[4] = 0x34;
942 bdaddr.b[5] = 0x56 + nb_hcis;
943 hci->bdaddr_set(hci, bdaddr.b);
944
945 hci_table[nb_hcis++] = hci;
946
947 return 0;
948}
949
950static void bt_vhci_add(int vlan_id)
951{
952 struct bt_scatternet_s *vlan = qemu_find_bt_vlan(vlan_id);
953
954 if (!vlan->slave)
955 fprintf(stderr, "qemu: warning: adding a VHCI to "
956 "an empty scatternet %i\n", vlan_id);
957
958 bt_vhci_init(bt_new_hci(vlan));
959}
960
961static struct bt_device_s *bt_device_add(const char *opt)
962{
963 struct bt_scatternet_s *vlan;
964 int vlan_id = 0;
965 char *endp = strstr(opt, ",vlan=");
966 int len = (endp ? endp - opt : strlen(opt)) + 1;
967 char devname[10];
968
969 pstrcpy(devname, MIN(sizeof(devname), len), opt);
970
971 if (endp) {
972 vlan_id = strtol(endp + 6, &endp, 0);
973 if (*endp) {
974 fprintf(stderr, "qemu: unrecognised bluetooth vlan Id\n");
975 return 0;
976 }
977 }
978
979 vlan = qemu_find_bt_vlan(vlan_id);
980
981 if (!vlan->slave)
982 fprintf(stderr, "qemu: warning: adding a slave device to "
983 "an empty scatternet %i\n", vlan_id);
984
985 if (!strcmp(devname, "keyboard"))
986 return bt_keyboard_init(vlan);
987
988 fprintf(stderr, "qemu: unsupported bluetooth device `%s'\n", devname);
989 return 0;
990}
991
992static int bt_parse(const char *opt)
993{
994 const char *endp, *p;
995 int vlan;
996
997 if (strstart(opt, "hci", &endp)) {
998 if (!*endp || *endp == ',') {
999 if (*endp)
1000 if (!strstart(endp, ",vlan=", 0))
1001 opt = endp + 1;
1002
1003 return bt_hci_parse(opt);
1004 }
1005 } else if (strstart(opt, "vhci", &endp)) {
1006 if (!*endp || *endp == ',') {
1007 if (*endp) {
1008 if (strstart(endp, ",vlan=", &p)) {
1009 vlan = strtol(p, (char **) &endp, 0);
1010 if (*endp) {
1011 fprintf(stderr, "qemu: bad scatternet '%s'\n", p);
1012 return 1;
1013 }
1014 } else {
1015 fprintf(stderr, "qemu: bad parameter '%s'\n", endp + 1);
1016 return 1;
1017 }
1018 } else
1019 vlan = 0;
1020
1021 bt_vhci_add(vlan);
1022 return 0;
1023 }
1024 } else if (strstart(opt, "device:", &endp))
1025 return !bt_device_add(endp);
1026
1027 fprintf(stderr, "qemu: bad bluetooth parameter '%s'\n", opt);
1028 return 1;
1029}
1030
Eduardo Otubo7d76ad42012-08-14 18:44:08 -03001031static int parse_sandbox(QemuOpts *opts, void *opaque)
1032{
1033 /* FIXME: change this to true for 1.3 */
1034 if (qemu_opt_get_bool(opts, "enable", false)) {
1035#ifdef CONFIG_SECCOMP
1036 if (seccomp_start() < 0) {
1037 qerror_report(ERROR_CLASS_GENERIC_ERROR,
1038 "failed to install seccomp syscall filter in the kernel");
1039 return -1;
1040 }
1041#else
1042 qerror_report(ERROR_CLASS_GENERIC_ERROR,
1043 "sandboxing request but seccomp is not compiled into this build");
1044 return -1;
1045#endif
1046 }
1047
1048 return 0;
1049}
1050
zhlcindy@gmail.com094b2872012-09-02 19:25:28 +00001051bool usb_enabled(bool default_usb)
1052{
Markus Armbruster2ff3de62013-07-04 15:09:22 +02001053 return qemu_opt_get_bool(qemu_get_machine_opts(), "usb", default_usb);
zhlcindy@gmail.com094b2872012-09-02 19:25:28 +00001054}
1055
Corey Bryant587ed6b2012-10-18 15:19:34 -04001056#ifndef _WIN32
1057static int parse_add_fd(QemuOpts *opts, void *opaque)
1058{
1059 int fd, dupfd, flags;
1060 int64_t fdset_id;
1061 const char *fd_opaque = NULL;
1062
1063 fd = qemu_opt_get_number(opts, "fd", -1);
1064 fdset_id = qemu_opt_get_number(opts, "set", -1);
1065 fd_opaque = qemu_opt_get(opts, "opaque");
1066
1067 if (fd < 0) {
1068 qerror_report(ERROR_CLASS_GENERIC_ERROR,
1069 "fd option is required and must be non-negative");
1070 return -1;
1071 }
1072
1073 if (fd <= STDERR_FILENO) {
1074 qerror_report(ERROR_CLASS_GENERIC_ERROR,
1075 "fd cannot be a standard I/O stream");
1076 return -1;
1077 }
1078
1079 /*
1080 * All fds inherited across exec() necessarily have FD_CLOEXEC
1081 * clear, while qemu sets FD_CLOEXEC on all other fds used internally.
1082 */
1083 flags = fcntl(fd, F_GETFD);
1084 if (flags == -1 || (flags & FD_CLOEXEC)) {
1085 qerror_report(ERROR_CLASS_GENERIC_ERROR,
1086 "fd is not valid or already in use");
1087 return -1;
1088 }
1089
1090 if (fdset_id < 0) {
1091 qerror_report(ERROR_CLASS_GENERIC_ERROR,
1092 "set option is required and must be non-negative");
1093 return -1;
1094 }
1095
1096#ifdef F_DUPFD_CLOEXEC
1097 dupfd = fcntl(fd, F_DUPFD_CLOEXEC, 0);
1098#else
1099 dupfd = dup(fd);
1100 if (dupfd != -1) {
1101 qemu_set_cloexec(dupfd);
1102 }
1103#endif
1104 if (dupfd == -1) {
1105 qerror_report(ERROR_CLASS_GENERIC_ERROR,
1106 "Error duplicating fd: %s", strerror(errno));
1107 return -1;
1108 }
1109
1110 /* add the duplicate fd, and optionally the opaque string, to the fd set */
1111 monitor_fdset_add_fd(dupfd, true, fdset_id, fd_opaque ? true : false,
1112 fd_opaque, NULL);
1113
1114 return 0;
1115}
1116
1117static int cleanup_add_fd(QemuOpts *opts, void *opaque)
1118{
1119 int fd;
1120
1121 fd = qemu_opt_get_number(opts, "fd", -1);
1122 close(fd);
1123
1124 return 0;
1125}
1126#endif
1127
balrog1ae26a12008-09-28 23:19:47 +00001128/***********************************************************/
1129/* QEMU Block devices */
1130
Markus Armbruster2292dda2011-01-28 11:21:41 +01001131#define HD_OPTS "media=disk"
1132#define CDROM_OPTS "media=cdrom"
1133#define FD_OPTS ""
1134#define PFLASH_OPTS ""
1135#define MTD_OPTS ""
1136#define SD_OPTS ""
thse4bcb142007-12-02 04:51:10 +00001137
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02001138static int drive_init_func(QemuOpts *opts, void *opaque)
1139{
Christian Borntraeger2d0d2832012-11-20 15:30:34 +01001140 BlockInterfaceType *block_default_type = opaque;
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02001141
Christian Borntraeger2d0d2832012-11-20 15:30:34 +01001142 return drive_init(opts, *block_default_type) == NULL;
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02001143}
1144
1145static int drive_enable_snapshot(QemuOpts *opts, void *opaque)
1146{
1147 if (NULL == qemu_opt_get(opts, "snapshot")) {
1148 qemu_opt_set(opts, "snapshot", "on");
1149 }
1150 return 0;
1151}
1152
Christian Borntraeger3c42ea62012-11-22 21:02:55 +01001153static void default_drive(int enable, int snapshot, BlockInterfaceType type,
1154 int index, const char *optstr)
Markus Armbruster4e5d9b52011-01-28 11:21:45 +01001155{
1156 QemuOpts *opts;
1157
Markus Armbruster4e5d9b52011-01-28 11:21:45 +01001158 if (!enable || drive_get_by_index(type, index)) {
1159 return;
1160 }
1161
1162 opts = drive_add(type, index, NULL, optstr);
1163 if (snapshot) {
1164 drive_enable_snapshot(opts, NULL);
1165 }
Christian Borntraeger2d0d2832012-11-20 15:30:34 +01001166 if (!drive_init(opts, type)) {
Markus Armbruster4e5d9b52011-01-28 11:21:45 +01001167 exit(1);
1168 }
1169}
1170
Jan Kiszka76e30d02009-07-02 00:19:02 +02001171void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque)
1172{
1173 boot_set_handler = func;
1174 boot_set_opaque = opaque;
1175}
1176
Markus Armbruster083b79c2013-06-14 13:15:04 +02001177int qemu_boot_set(const char *boot_order)
Jan Kiszka76e30d02009-07-02 00:19:02 +02001178{
1179 if (!boot_set_handler) {
1180 return -EINVAL;
1181 }
Markus Armbruster083b79c2013-06-14 13:15:04 +02001182 return boot_set_handler(boot_set_opaque, boot_order);
Jan Kiszka76e30d02009-07-02 00:19:02 +02001183}
1184
Markus Armbruster6ef47162013-06-14 13:15:01 +02001185static void validate_bootdevices(const char *devices)
Jan Kiszkaef3adf62009-07-02 00:19:02 +02001186{
1187 /* We just do some generic consistency checks */
1188 const char *p;
1189 int bitmap = 0;
1190
1191 for (p = devices; *p != '\0'; p++) {
1192 /* Allowed boot devices are:
1193 * a-b: floppy disk drives
1194 * c-f: IDE disk drives
Dong Xu Wang07f35072011-11-22 18:06:26 +08001195 * g-m: machine implementation dependent drives
Jan Kiszkaef3adf62009-07-02 00:19:02 +02001196 * n-p: network devices
1197 * It's up to each machine implementation to check if the given boot
1198 * devices match the actual hardware implementation and firmware
1199 * features.
1200 */
1201 if (*p < 'a' || *p > 'p') {
1202 fprintf(stderr, "Invalid boot device '%c'\n", *p);
1203 exit(1);
1204 }
1205 if (bitmap & (1 << (*p - 'a'))) {
1206 fprintf(stderr, "Boot device '%c' was given twice\n", *p);
1207 exit(1);
1208 }
1209 bitmap |= 1 << (*p - 'a');
1210 }
Jan Kiszkaef3adf62009-07-02 00:19:02 +02001211}
1212
Markus Armbruster083b79c2013-06-14 13:15:04 +02001213static void restore_boot_order(void *opaque)
Jan Kiszkae0f084b2009-07-02 00:19:02 +02001214{
Markus Armbruster083b79c2013-06-14 13:15:04 +02001215 char *normal_boot_order = opaque;
Alex Williamson37905d62010-04-30 15:21:11 -06001216 static int first = 1;
1217
1218 /* Restore boot order and remove ourselves after the first boot */
1219 if (first) {
1220 first = 0;
1221 return;
1222 }
Jan Kiszkae0f084b2009-07-02 00:19:02 +02001223
Markus Armbruster083b79c2013-06-14 13:15:04 +02001224 qemu_boot_set(normal_boot_order);
Jan Kiszkae0f084b2009-07-02 00:19:02 +02001225
Markus Armbruster083b79c2013-06-14 13:15:04 +02001226 qemu_unregister_reset(restore_boot_order, normal_boot_order);
1227 g_free(normal_boot_order);
Jan Kiszkae0f084b2009-07-02 00:19:02 +02001228}
1229
Gleb Natapov1ca4d092010-12-08 13:35:05 +02001230void add_boot_device_path(int32_t bootindex, DeviceState *dev,
1231 const char *suffix)
1232{
1233 FWBootEntry *node, *i;
1234
1235 if (bootindex < 0) {
1236 return;
1237 }
1238
1239 assert(dev != NULL || suffix != NULL);
1240
Anthony Liguori7267c092011-08-20 22:09:37 -05001241 node = g_malloc0(sizeof(FWBootEntry));
Gleb Natapov1ca4d092010-12-08 13:35:05 +02001242 node->bootindex = bootindex;
Dong Xu Wang7f303ad2013-05-09 15:53:49 +08001243 node->suffix = g_strdup(suffix);
Gleb Natapov1ca4d092010-12-08 13:35:05 +02001244 node->dev = dev;
1245
1246 QTAILQ_FOREACH(i, &fw_boot_order, link) {
1247 if (i->bootindex == bootindex) {
1248 fprintf(stderr, "Two devices with same boot index %d\n", bootindex);
1249 exit(1);
1250 } else if (i->bootindex < bootindex) {
1251 continue;
1252 }
1253 QTAILQ_INSERT_BEFORE(i, node, link);
1254 return;
1255 }
1256 QTAILQ_INSERT_TAIL(&fw_boot_order, node, link);
1257}
1258
Dominik Dingel7dc5af52013-04-26 02:12:49 +00001259DeviceState *get_boot_device(uint32_t position)
1260{
1261 uint32_t counter = 0;
1262 FWBootEntry *i = NULL;
1263 DeviceState *res = NULL;
1264
1265 if (!QTAILQ_EMPTY(&fw_boot_order)) {
1266 QTAILQ_FOREACH(i, &fw_boot_order, link) {
1267 if (counter == position) {
1268 res = i->dev;
1269 break;
1270 }
1271 counter++;
1272 }
1273 }
1274 return res;
1275}
1276
Gleb Natapov962630f2010-12-08 13:35:09 +02001277/*
1278 * This function returns null terminated string that consist of new line
Brad Hards71785ab2011-04-23 21:50:06 +10001279 * separated device paths.
Gleb Natapov962630f2010-12-08 13:35:09 +02001280 *
1281 * memory pointed by "size" is assigned total length of the array in bytes
1282 *
1283 */
Markus Armbruster0e7a7592013-01-16 14:50:29 +01001284char *get_boot_devices_list(size_t *size)
Gleb Natapov962630f2010-12-08 13:35:09 +02001285{
1286 FWBootEntry *i;
Markus Armbruster0e7a7592013-01-16 14:50:29 +01001287 size_t total = 0;
Gleb Natapov962630f2010-12-08 13:35:09 +02001288 char *list = NULL;
1289
1290 QTAILQ_FOREACH(i, &fw_boot_order, link) {
1291 char *devpath = NULL, *bootpath;
Markus Armbruster0e7a7592013-01-16 14:50:29 +01001292 size_t len;
Gleb Natapov962630f2010-12-08 13:35:09 +02001293
1294 if (i->dev) {
1295 devpath = qdev_get_fw_dev_path(i->dev);
1296 assert(devpath);
1297 }
1298
1299 if (i->suffix && devpath) {
Blue Swirl4fd37a92010-12-19 14:05:43 +00001300 size_t bootpathlen = strlen(devpath) + strlen(i->suffix) + 1;
1301
Anthony Liguori7267c092011-08-20 22:09:37 -05001302 bootpath = g_malloc(bootpathlen);
Blue Swirl4fd37a92010-12-19 14:05:43 +00001303 snprintf(bootpath, bootpathlen, "%s%s", devpath, i->suffix);
Anthony Liguori7267c092011-08-20 22:09:37 -05001304 g_free(devpath);
Gleb Natapov962630f2010-12-08 13:35:09 +02001305 } else if (devpath) {
1306 bootpath = devpath;
1307 } else {
Markus Armbruster1bf6ccd2011-11-08 10:58:00 +01001308 assert(i->suffix);
Anthony Liguori7267c092011-08-20 22:09:37 -05001309 bootpath = g_strdup(i->suffix);
Gleb Natapov962630f2010-12-08 13:35:09 +02001310 }
1311
1312 if (total) {
1313 list[total-1] = '\n';
1314 }
1315 len = strlen(bootpath) + 1;
Anthony Liguori7267c092011-08-20 22:09:37 -05001316 list = g_realloc(list, total + len);
Gleb Natapov962630f2010-12-08 13:35:09 +02001317 memcpy(&list[total], bootpath, len);
1318 total += len;
Anthony Liguori7267c092011-08-20 22:09:37 -05001319 g_free(bootpath);
Gleb Natapov962630f2010-12-08 13:35:09 +02001320 }
1321
1322 *size = total;
1323
Amos Kongc8a6ae82013-03-19 14:23:27 +08001324 if (boot_strict && *size > 0) {
1325 list[total-1] = '\n';
Amos Kong46905792013-03-20 18:16:34 +08001326 list = g_realloc(list, total + 5);
1327 memcpy(&list[total], "HALT", 5);
1328 *size = total + 5;
Amos Kongc8a6ae82013-03-19 14:23:27 +08001329 }
Gleb Natapov962630f2010-12-08 13:35:09 +02001330 return list;
1331}
1332
Eduardo Habkost845e5bf2013-02-04 16:27:51 -02001333static void numa_node_parse_cpus(int nodenr, const char *cpus)
1334{
1335 char *endptr;
1336 unsigned long long value, endvalue;
1337
Eduardo Habkostc881e202013-02-04 16:27:52 -02001338 /* Empty CPU range strings will be considered valid, they will simply
1339 * not set any bit in the CPU bitmap.
1340 */
1341 if (!*cpus) {
1342 return;
Eduardo Habkost845e5bf2013-02-04 16:27:51 -02001343 }
1344
Eduardo Habkostc881e202013-02-04 16:27:52 -02001345 if (parse_uint(cpus, &value, &endptr, 10) < 0) {
1346 goto error;
1347 }
1348 if (*endptr == '-') {
1349 if (parse_uint_full(endptr + 1, &endvalue, 10) < 0) {
1350 goto error;
1351 }
1352 } else if (*endptr == '\0') {
1353 endvalue = value;
1354 } else {
1355 goto error;
1356 }
1357
1358 if (endvalue >= MAX_CPUMASK_BITS) {
Eduardo Habkost845e5bf2013-02-04 16:27:51 -02001359 endvalue = MAX_CPUMASK_BITS - 1;
1360 fprintf(stderr,
Eduardo Habkostc881e202013-02-04 16:27:52 -02001361 "qemu: NUMA: A max of %d VCPUs are supported\n",
Eduardo Habkost845e5bf2013-02-04 16:27:51 -02001362 MAX_CPUMASK_BITS);
1363 }
1364
Eduardo Habkostc881e202013-02-04 16:27:52 -02001365 if (endvalue < value) {
1366 goto error;
1367 }
1368
Eduardo Habkost845e5bf2013-02-04 16:27:51 -02001369 bitmap_set(node_cpumask[nodenr], value, endvalue-value+1);
Eduardo Habkostc881e202013-02-04 16:27:52 -02001370 return;
1371
1372error:
1373 fprintf(stderr, "qemu: Invalid NUMA CPU range: %s\n", cpus);
1374 exit(1);
Eduardo Habkost845e5bf2013-02-04 16:27:51 -02001375}
1376
aliguori268a3622009-04-21 22:30:27 +00001377static void numa_add(const char *optarg)
1378{
1379 char option[128];
1380 char *endptr;
Eduardo Habkoste4ce85b2013-02-04 16:27:49 -02001381 unsigned long long nodenr;
aliguori268a3622009-04-21 22:30:27 +00001382
Eduardo Habkost8f302cb2013-02-04 16:27:46 -02001383 optarg = get_opt_name(option, 128, optarg, ',');
1384 if (*optarg == ',') {
1385 optarg++;
1386 }
aliguori268a3622009-04-21 22:30:27 +00001387 if (!strcmp(option, "node")) {
Eduardo Habkostca4c6d32013-02-04 16:27:48 -02001388
1389 if (nb_numa_nodes >= MAX_NODES) {
1390 fprintf(stderr, "qemu: too many NUMA nodes\n");
1391 exit(1);
1392 }
1393
aliguori268a3622009-04-21 22:30:27 +00001394 if (get_param_value(option, 128, "nodeid", optarg) == 0) {
1395 nodenr = nb_numa_nodes;
1396 } else {
Eduardo Habkost5f139962013-02-04 16:27:50 -02001397 if (parse_uint_full(option, &nodenr, 10) < 0) {
1398 fprintf(stderr, "qemu: Invalid NUMA nodeid: %s\n", option);
1399 exit(1);
1400 }
aliguori268a3622009-04-21 22:30:27 +00001401 }
1402
Eduardo Habkoste4ce85b2013-02-04 16:27:49 -02001403 if (nodenr >= MAX_NODES) {
1404 fprintf(stderr, "qemu: invalid NUMA nodeid: %llu\n", nodenr);
1405 exit(1);
1406 }
1407
aliguori268a3622009-04-21 22:30:27 +00001408 if (get_param_value(option, 128, "mem", optarg) == 0) {
1409 node_mem[nodenr] = 0;
1410 } else {
Jes Sorensen70b4f4b2011-01-05 11:41:02 +01001411 int64_t sval;
Markus Armbrusterc03417b2011-11-22 09:46:02 +01001412 sval = strtosz(option, &endptr);
1413 if (sval < 0 || *endptr) {
Jes Sorensen9f9b17a2010-10-21 17:15:46 +02001414 fprintf(stderr, "qemu: invalid numa mem size: %s\n", optarg);
1415 exit(1);
aliguori268a3622009-04-21 22:30:27 +00001416 }
Jes Sorensen9f9b17a2010-10-21 17:15:46 +02001417 node_mem[nodenr] = sval;
aliguori268a3622009-04-21 22:30:27 +00001418 }
Chegu Vinodee785fe2012-07-16 21:31:30 -07001419 if (get_param_value(option, 128, "cpus", optarg) != 0) {
Eduardo Habkost845e5bf2013-02-04 16:27:51 -02001420 numa_node_parse_cpus(nodenr, option);
aliguori268a3622009-04-21 22:30:27 +00001421 }
1422 nb_numa_nodes++;
Eduardo Habkost12e53a92013-02-04 16:27:47 -02001423 } else {
1424 fprintf(stderr, "Invalid -numa option: %s\n", option);
1425 exit(1);
aliguori268a3622009-04-21 22:30:27 +00001426 }
aliguori268a3622009-04-21 22:30:27 +00001427}
1428
Michael Tokarev12b7f572013-06-24 15:06:52 +04001429static QemuOptsList qemu_smp_opts = {
1430 .name = "smp-opts",
1431 .implied_opt_name = "cpus",
1432 .merge_lists = true,
1433 .head = QTAILQ_HEAD_INITIALIZER(qemu_smp_opts.head),
1434 .desc = {
1435 {
1436 .name = "cpus",
1437 .type = QEMU_OPT_NUMBER,
1438 }, {
1439 .name = "sockets",
1440 .type = QEMU_OPT_NUMBER,
1441 }, {
1442 .name = "cores",
1443 .type = QEMU_OPT_NUMBER,
1444 }, {
1445 .name = "threads",
1446 .type = QEMU_OPT_NUMBER,
1447 }, {
1448 .name = "maxcpus",
1449 .type = QEMU_OPT_NUMBER,
1450 },
1451 { /*End of list */ }
1452 },
1453};
1454
1455static void smp_parse(QemuOpts *opts)
Andre Przywaradc6b1c02009-08-19 15:42:40 +02001456{
Michael Tokarev12b7f572013-06-24 15:06:52 +04001457 if (opts) {
Andre Przywaradc6b1c02009-08-19 15:42:40 +02001458
Michael Tokarev12b7f572013-06-24 15:06:52 +04001459 unsigned cpus = qemu_opt_get_number(opts, "cpus", 0);
1460 unsigned sockets = qemu_opt_get_number(opts, "sockets", 0);
1461 unsigned cores = qemu_opt_get_number(opts, "cores", 0);
1462 unsigned threads = qemu_opt_get_number(opts, "threads", 0);
Andre Przywaradc6b1c02009-08-19 15:42:40 +02001463
Michael Tokarev12b7f572013-06-24 15:06:52 +04001464 /* compute missing values, prefer sockets over cores over threads */
1465 if (cpus == 0 || sockets == 0) {
1466 sockets = sockets > 0 ? sockets : 1;
1467 cores = cores > 0 ? cores : 1;
Andre Przywaradc6b1c02009-08-19 15:42:40 +02001468 threads = threads > 0 ? threads : 1;
Michael Tokarev12b7f572013-06-24 15:06:52 +04001469 if (cpus == 0) {
1470 cpus = cores * threads * sockets;
1471 }
Andre Przywaradc6b1c02009-08-19 15:42:40 +02001472 } else {
Michael Tokarev12b7f572013-06-24 15:06:52 +04001473 if (cores == 0) {
1474 threads = threads > 0 ? threads : 1;
1475 cores = cpus / (sockets * threads);
1476 } else {
1477 threads = cpus / (cores * sockets);
1478 }
Andre Przywaradc6b1c02009-08-19 15:42:40 +02001479 }
Michael Tokarev12b7f572013-06-24 15:06:52 +04001480
1481 max_cpus = qemu_opt_get_number(opts, "maxcpus", 0);
1482
1483 smp_cpus = cpus;
1484 smp_cores = cores > 0 ? cores : 1;
1485 smp_threads = threads > 0 ? threads : 1;
1486
Andre Przywaradc6b1c02009-08-19 15:42:40 +02001487 }
Michael Tokarev12b7f572013-06-24 15:06:52 +04001488
1489 if (max_cpus == 0) {
Andre Przywaradc6b1c02009-08-19 15:42:40 +02001490 max_cpus = smp_cpus;
Michael Tokarev12b7f572013-06-24 15:06:52 +04001491 }
1492
1493 if (max_cpus > 255) {
1494 fprintf(stderr, "Unsupported number of maxcpus\n");
1495 exit(1);
1496 }
1497 if (max_cpus < smp_cpus) {
1498 fprintf(stderr, "maxcpus must be equal to or greater than smp\n");
1499 exit(1);
1500 }
1501
Andre Przywaradc6b1c02009-08-19 15:42:40 +02001502}
1503
Satoru Moriya888a6bc2013-04-19 16:42:06 +02001504static void configure_realtime(QemuOpts *opts)
1505{
1506 bool enable_mlock;
1507
1508 enable_mlock = qemu_opt_get_bool(opts, "mlock", true);
1509
1510 if (enable_mlock) {
1511 if (os_mlock() < 0) {
1512 fprintf(stderr, "qemu: locking memory failed\n");
1513 exit(1);
1514 }
1515 }
1516}
1517
Seiji Aguchi5e2ac512013-07-03 23:02:46 -04001518
1519static void configure_msg(QemuOpts *opts)
1520{
1521 enable_timestamp_msg = qemu_opt_get_bool(opts, "timestamp", true);
1522}
1523
bellard330d0412003-07-26 18:11:40 +00001524/***********************************************************/
bellarda594cfb2005-11-06 16:13:29 +00001525/* USB devices */
1526
Markus Armbrusterfb080002010-05-28 15:38:44 +02001527static int usb_device_add(const char *devname)
bellarda594cfb2005-11-06 16:13:29 +00001528{
1529 const char *p;
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001530 USBDevice *dev = NULL;
bellarda594cfb2005-11-06 16:13:29 +00001531
zhlcindy@gmail.com094b2872012-09-02 19:25:28 +00001532 if (!usb_enabled(false)) {
bellarda594cfb2005-11-06 16:13:29 +00001533 return -1;
zhlcindy@gmail.com094b2872012-09-02 19:25:28 +00001534 }
bellarda594cfb2005-11-06 16:13:29 +00001535
Gerd Hoffmann0958b4c2009-10-26 15:56:45 +01001536 /* drivers with .usbdevice_name entry in USBDeviceInfo */
1537 dev = usbdevice_create(devname);
1538 if (dev)
1539 goto done;
1540
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001541 /* the other ones */
Gerd Hoffmanne447fc62011-06-01 14:41:59 +02001542#ifndef CONFIG_LINUX
1543 /* only the linux version is qdev-ified, usb-bsd still needs this */
bellarda594cfb2005-11-06 16:13:29 +00001544 if (strstart(devname, "host:", &p)) {
Jan Kiszka37417152012-02-27 15:18:47 +01001545 dev = usb_host_device_open(usb_bus_find(-1), p);
Gerd Hoffmanne447fc62011-06-01 14:41:59 +02001546 } else
1547#endif
1548 if (!strcmp(devname, "bt") || strstart(devname, "bt:", &p)) {
Jan Kiszka37417152012-02-27 15:18:47 +01001549 dev = usb_bt_init(usb_bus_find(-1),
1550 devname[2] ? hci_init(p)
1551 : bt_new_hci(qemu_find_bt_vlan(0)));
bellarda594cfb2005-11-06 16:13:29 +00001552 } else {
1553 return -1;
1554 }
pbrook0d92ed32006-05-21 16:30:15 +00001555 if (!dev)
1556 return -1;
1557
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001558done:
bellarda594cfb2005-11-06 16:13:29 +00001559 return 0;
1560}
1561
aliguori1f3870a2008-08-21 19:27:48 +00001562static int usb_device_del(const char *devname)
1563{
1564 int bus_num, addr;
1565 const char *p;
1566
Gerd Hoffmann1a3973b2012-11-30 13:02:47 +01001567 if (strstart(devname, "host:", &p)) {
1568 return -1;
1569 }
aliguori5d0c5752008-09-14 01:07:41 +00001570
zhlcindy@gmail.com094b2872012-09-02 19:25:28 +00001571 if (!usb_enabled(false)) {
aliguori1f3870a2008-08-21 19:27:48 +00001572 return -1;
zhlcindy@gmail.com094b2872012-09-02 19:25:28 +00001573 }
aliguori1f3870a2008-08-21 19:27:48 +00001574
1575 p = strchr(devname, '.');
1576 if (!p)
1577 return -1;
1578 bus_num = strtoul(devname, NULL, 0);
1579 addr = strtoul(p + 1, NULL, 0);
1580
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001581 return usb_device_delete_addr(bus_num, addr);
aliguori1f3870a2008-08-21 19:27:48 +00001582}
1583
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02001584static int usb_parse(const char *cmdline)
1585{
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001586 int r;
Markus Armbrusterfb080002010-05-28 15:38:44 +02001587 r = usb_device_add(cmdline);
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001588 if (r < 0) {
1589 fprintf(stderr, "qemu: could not add USB device '%s'\n", cmdline);
1590 }
1591 return r;
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02001592}
1593
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001594void do_usb_add(Monitor *mon, const QDict *qdict)
bellarda594cfb2005-11-06 16:13:29 +00001595{
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001596 const char *devname = qdict_get_str(qdict, "devname");
Markus Armbrusterfb080002010-05-28 15:38:44 +02001597 if (usb_device_add(devname) < 0) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01001598 error_report("could not add USB device '%s'", devname);
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001599 }
bellarda594cfb2005-11-06 16:13:29 +00001600}
1601
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001602void do_usb_del(Monitor *mon, const QDict *qdict)
bellarda594cfb2005-11-06 16:13:29 +00001603{
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001604 const char *devname = qdict_get_str(qdict, "devname");
1605 if (usb_device_del(devname) < 0) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01001606 error_report("could not delete USB device '%s'", devname);
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001607 }
bellarda594cfb2005-11-06 16:13:29 +00001608}
1609
bellardf7cce892004-12-08 22:21:25 +00001610/***********************************************************/
balrog201a51f2007-04-30 00:51:09 +00001611/* PCMCIA/Cardbus */
1612
1613static struct pcmcia_socket_entry_s {
Paul Brookbc24a222009-05-10 01:44:56 +01001614 PCMCIASocket *socket;
balrog201a51f2007-04-30 00:51:09 +00001615 struct pcmcia_socket_entry_s *next;
1616} *pcmcia_sockets = 0;
1617
Paul Brookbc24a222009-05-10 01:44:56 +01001618void pcmcia_socket_register(PCMCIASocket *socket)
balrog201a51f2007-04-30 00:51:09 +00001619{
1620 struct pcmcia_socket_entry_s *entry;
1621
Anthony Liguori7267c092011-08-20 22:09:37 -05001622 entry = g_malloc(sizeof(struct pcmcia_socket_entry_s));
balrog201a51f2007-04-30 00:51:09 +00001623 entry->socket = socket;
1624 entry->next = pcmcia_sockets;
1625 pcmcia_sockets = entry;
1626}
1627
Paul Brookbc24a222009-05-10 01:44:56 +01001628void pcmcia_socket_unregister(PCMCIASocket *socket)
balrog201a51f2007-04-30 00:51:09 +00001629{
1630 struct pcmcia_socket_entry_s *entry, **ptr;
1631
1632 ptr = &pcmcia_sockets;
1633 for (entry = *ptr; entry; ptr = &entry->next, entry = *ptr)
1634 if (entry->socket == socket) {
1635 *ptr = entry->next;
Anthony Liguori7267c092011-08-20 22:09:37 -05001636 g_free(entry);
balrog201a51f2007-04-30 00:51:09 +00001637 }
1638}
1639
Wenchao Xia84f2d0e2013-01-14 14:06:25 +08001640void pcmcia_info(Monitor *mon, const QDict *qdict)
balrog201a51f2007-04-30 00:51:09 +00001641{
1642 struct pcmcia_socket_entry_s *iter;
aliguori376253e2009-03-05 23:01:23 +00001643
balrog201a51f2007-04-30 00:51:09 +00001644 if (!pcmcia_sockets)
aliguori376253e2009-03-05 23:01:23 +00001645 monitor_printf(mon, "No PCMCIA sockets\n");
balrog201a51f2007-04-30 00:51:09 +00001646
1647 for (iter = pcmcia_sockets; iter; iter = iter->next)
aliguori376253e2009-03-05 23:01:23 +00001648 monitor_printf(mon, "%s: %s\n", iter->socket->slot_string,
1649 iter->socket->attached ? iter->socket->card_string :
1650 "Empty");
balrog201a51f2007-04-30 00:51:09 +00001651}
1652
1653/***********************************************************/
bellardcc1daa42005-06-05 14:49:17 +00001654/* machine registration */
1655
blueswir1bdaf78e2008-10-04 07:24:27 +00001656static QEMUMachine *first_machine = NULL;
aliguori6f338c32009-02-11 15:21:54 +00001657QEMUMachine *current_machine = NULL;
bellardcc1daa42005-06-05 14:49:17 +00001658
1659int qemu_register_machine(QEMUMachine *m)
1660{
1661 QEMUMachine **pm;
1662 pm = &first_machine;
1663 while (*pm != NULL)
1664 pm = &(*pm)->next;
1665 m->next = NULL;
1666 *pm = m;
1667 return 0;
1668}
1669
pbrook9596ebb2007-11-18 01:44:38 +00001670static QEMUMachine *find_machine(const char *name)
bellardcc1daa42005-06-05 14:49:17 +00001671{
1672 QEMUMachine *m;
1673
1674 for(m = first_machine; m != NULL; m = m->next) {
1675 if (!strcmp(m->name, name))
1676 return m;
Mark McLoughlin3f6599e2009-07-22 10:02:50 +01001677 if (m->alias && !strcmp(m->alias, name))
1678 return m;
bellardcc1daa42005-06-05 14:49:17 +00001679 }
1680 return NULL;
1681}
1682
Jordan Justen2c8cffa2012-02-21 23:18:50 -08001683QEMUMachine *find_default_machine(void)
Anthony Liguori0c257432009-05-21 20:41:01 -05001684{
1685 QEMUMachine *m;
1686
1687 for(m = first_machine; m != NULL; m = m->next) {
1688 if (m->is_default) {
1689 return m;
1690 }
1691 }
1692 return NULL;
1693}
1694
Anthony Liguori01d3c802012-08-10 11:04:11 -05001695MachineInfoList *qmp_query_machines(Error **errp)
1696{
1697 MachineInfoList *mach_list = NULL;
1698 QEMUMachine *m;
1699
1700 for (m = first_machine; m; m = m->next) {
1701 MachineInfoList *entry;
1702 MachineInfo *info;
1703
1704 info = g_malloc0(sizeof(*info));
1705 if (m->is_default) {
1706 info->has_is_default = true;
1707 info->is_default = true;
1708 }
1709
1710 if (m->alias) {
1711 info->has_alias = true;
1712 info->alias = g_strdup(m->alias);
1713 }
1714
1715 info->name = g_strdup(m->name);
Michal Novotnyc72e7682013-04-08 18:21:02 +02001716 info->cpu_max = !m->max_cpus ? 1 : m->max_cpus;
Anthony Liguori01d3c802012-08-10 11:04:11 -05001717
1718 entry = g_malloc0(sizeof(*entry));
1719 entry->value = info;
1720 entry->next = mach_list;
1721 mach_list = entry;
1722 }
1723
1724 return mach_list;
1725}
1726
bellardcc1daa42005-06-05 14:49:17 +00001727/***********************************************************/
bellard8a7ddc32004-03-31 19:00:16 +00001728/* main execution loop */
1729
bellard0bd48852005-11-11 00:00:47 +00001730struct vm_change_state_entry {
1731 VMChangeStateHandler *cb;
1732 void *opaque;
Blue Swirl72cf2d42009-09-12 07:36:22 +00001733 QLIST_ENTRY (vm_change_state_entry) entries;
bellard0bd48852005-11-11 00:00:47 +00001734};
1735
Blue Swirl72cf2d42009-09-12 07:36:22 +00001736static QLIST_HEAD(vm_change_state_head, vm_change_state_entry) vm_change_state_head;
bellard0bd48852005-11-11 00:00:47 +00001737
1738VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
1739 void *opaque)
1740{
1741 VMChangeStateEntry *e;
1742
Anthony Liguori7267c092011-08-20 22:09:37 -05001743 e = g_malloc0(sizeof (*e));
bellard0bd48852005-11-11 00:00:47 +00001744
1745 e->cb = cb;
1746 e->opaque = opaque;
Blue Swirl72cf2d42009-09-12 07:36:22 +00001747 QLIST_INSERT_HEAD(&vm_change_state_head, e, entries);
bellard0bd48852005-11-11 00:00:47 +00001748 return e;
1749}
1750
1751void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
1752{
Blue Swirl72cf2d42009-09-12 07:36:22 +00001753 QLIST_REMOVE (e, entries);
Anthony Liguori7267c092011-08-20 22:09:37 -05001754 g_free (e);
bellard0bd48852005-11-11 00:00:47 +00001755}
1756
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -03001757void vm_state_notify(int running, RunState state)
bellard0bd48852005-11-11 00:00:47 +00001758{
1759 VMChangeStateEntry *e;
1760
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -03001761 trace_vm_state_notify(running, state);
Stefan Hajnoczi94b0b5f2010-11-16 12:20:25 +00001762
bellard0bd48852005-11-11 00:00:47 +00001763 for (e = vm_change_state_head.lh_first; e; e = e->entries.le_next) {
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -03001764 e->cb(e->opaque, running, state);
bellard0bd48852005-11-11 00:00:47 +00001765 }
1766}
1767
bellard8a7ddc32004-03-31 19:00:16 +00001768void vm_start(void)
1769{
Luiz Capitulino13548692011-07-29 15:36:43 -03001770 if (!runstate_is_running()) {
bellard8a7ddc32004-03-31 19:00:16 +00001771 cpu_enable_ticks();
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001772 runstate_set(RUN_STATE_RUNNING);
1773 vm_state_notify(1, RUN_STATE_RUNNING);
aliguorid6dc3d42009-04-24 18:04:07 +00001774 resume_all_vcpus();
Luiz Capitulino6ed2c482010-04-27 20:35:59 -03001775 monitor_protocol_event(QEVENT_RESUME, NULL);
bellard8a7ddc32004-03-31 19:00:16 +00001776 }
1777}
1778
bellardbb0c6722004-06-20 12:37:32 +00001779/* reset/shutdown handler */
1780
1781typedef struct QEMUResetEntry {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001782 QTAILQ_ENTRY(QEMUResetEntry) entry;
bellardbb0c6722004-06-20 12:37:32 +00001783 QEMUResetHandler *func;
1784 void *opaque;
bellardbb0c6722004-06-20 12:37:32 +00001785} QEMUResetEntry;
1786
Blue Swirl72cf2d42009-09-12 07:36:22 +00001787static QTAILQ_HEAD(reset_handlers, QEMUResetEntry) reset_handlers =
1788 QTAILQ_HEAD_INITIALIZER(reset_handlers);
bellardbb0c6722004-06-20 12:37:32 +00001789static int reset_requested;
Gleb Natapovf64622c2011-03-15 13:56:04 +02001790static int shutdown_requested, shutdown_signal = -1;
1791static pid_t shutdown_pid;
bellard34751872005-07-02 14:31:34 +00001792static int powerdown_requested;
Jan Kiszka8cf71712011-02-07 12:19:16 +01001793static int debug_requested;
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001794static int suspend_requested;
Luiz Capitulino14058192012-08-08 17:29:17 -03001795static int wakeup_requested;
Igor Mammedova9552c82012-09-05 23:06:21 +02001796static NotifierList powerdown_notifiers =
1797 NOTIFIER_LIST_INITIALIZER(powerdown_notifiers);
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001798static NotifierList suspend_notifiers =
1799 NOTIFIER_LIST_INITIALIZER(suspend_notifiers);
1800static NotifierList wakeup_notifiers =
1801 NOTIFIER_LIST_INITIALIZER(wakeup_notifiers);
1802static uint32_t wakeup_reason_mask = ~0;
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001803static RunState vmstop_requested = RUN_STATE_MAX;
bellardbb0c6722004-06-20 12:37:32 +00001804
Anthony PERARD1291eb32010-07-22 15:52:48 +01001805int qemu_shutdown_requested_get(void)
1806{
1807 return shutdown_requested;
1808}
1809
1810int qemu_reset_requested_get(void)
1811{
1812 return reset_requested;
1813}
1814
Blue Swirl4fdcac02012-10-28 11:04:47 +00001815static int qemu_shutdown_requested(void)
aurel32cf7a2fe2008-03-18 06:53:05 +00001816{
1817 int r = shutdown_requested;
1818 shutdown_requested = 0;
1819 return r;
1820}
1821
Blue Swirl4fdcac02012-10-28 11:04:47 +00001822static void qemu_kill_report(void)
Gleb Natapovf64622c2011-03-15 13:56:04 +02001823{
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +02001824 if (!qtest_enabled() && shutdown_signal != -1) {
Peter Maydellf1d3fb02011-03-30 22:03:38 +01001825 fprintf(stderr, "qemu: terminating on signal %d", shutdown_signal);
1826 if (shutdown_pid == 0) {
1827 /* This happens for eg ^C at the terminal, so it's worth
1828 * avoiding printing an odd message in that case.
1829 */
1830 fputc('\n', stderr);
1831 } else {
Andreas Färber953ffe02011-06-02 19:58:06 +02001832 fprintf(stderr, " from pid " FMT_pid "\n", shutdown_pid);
Peter Maydellf1d3fb02011-03-30 22:03:38 +01001833 }
Gleb Natapovf64622c2011-03-15 13:56:04 +02001834 shutdown_signal = -1;
1835 }
1836}
1837
Blue Swirl4fdcac02012-10-28 11:04:47 +00001838static int qemu_reset_requested(void)
aurel32cf7a2fe2008-03-18 06:53:05 +00001839{
1840 int r = reset_requested;
1841 reset_requested = 0;
1842 return r;
1843}
1844
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001845static int qemu_suspend_requested(void)
1846{
1847 int r = suspend_requested;
1848 suspend_requested = 0;
1849 return r;
1850}
1851
Luiz Capitulino14058192012-08-08 17:29:17 -03001852static int qemu_wakeup_requested(void)
1853{
1854 int r = wakeup_requested;
1855 wakeup_requested = 0;
1856 return r;
1857}
1858
Blue Swirl4fdcac02012-10-28 11:04:47 +00001859static int qemu_powerdown_requested(void)
aurel32cf7a2fe2008-03-18 06:53:05 +00001860{
1861 int r = powerdown_requested;
1862 powerdown_requested = 0;
1863 return r;
1864}
1865
aliguorie5689022009-04-24 18:03:54 +00001866static int qemu_debug_requested(void)
1867{
1868 int r = debug_requested;
1869 debug_requested = 0;
1870 return r;
1871}
1872
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001873/* We use RUN_STATE_MAX but any invalid value will do */
Luiz Capitulino0d45b702011-09-30 14:27:11 -03001874static bool qemu_vmstop_requested(RunState *r)
aliguori6e29f5d2009-04-24 18:04:02 +00001875{
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001876 if (vmstop_requested < RUN_STATE_MAX) {
Luiz Capitulino0d45b702011-09-30 14:27:11 -03001877 *r = vmstop_requested;
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001878 vmstop_requested = RUN_STATE_MAX;
Luiz Capitulino0d45b702011-09-30 14:27:11 -03001879 return true;
1880 }
1881
1882 return false;
aliguori6e29f5d2009-04-24 18:04:02 +00001883}
1884
Jan Kiszkaa08d4362009-06-27 09:25:07 +02001885void qemu_register_reset(QEMUResetHandler *func, void *opaque)
bellardbb0c6722004-06-20 12:37:32 +00001886{
Anthony Liguori7267c092011-08-20 22:09:37 -05001887 QEMUResetEntry *re = g_malloc0(sizeof(QEMUResetEntry));
bellardbb0c6722004-06-20 12:37:32 +00001888
bellardbb0c6722004-06-20 12:37:32 +00001889 re->func = func;
1890 re->opaque = opaque;
Blue Swirl72cf2d42009-09-12 07:36:22 +00001891 QTAILQ_INSERT_TAIL(&reset_handlers, re, entry);
bellardbb0c6722004-06-20 12:37:32 +00001892}
1893
Jan Kiszkadda9b292009-07-02 00:19:02 +02001894void qemu_unregister_reset(QEMUResetHandler *func, void *opaque)
bellardbb0c6722004-06-20 12:37:32 +00001895{
1896 QEMUResetEntry *re;
1897
Blue Swirl72cf2d42009-09-12 07:36:22 +00001898 QTAILQ_FOREACH(re, &reset_handlers, entry) {
Jan Kiszkadda9b292009-07-02 00:19:02 +02001899 if (re->func == func && re->opaque == opaque) {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001900 QTAILQ_REMOVE(&reset_handlers, re, entry);
Anthony Liguori7267c092011-08-20 22:09:37 -05001901 g_free(re);
Jan Kiszkadda9b292009-07-02 00:19:02 +02001902 return;
1903 }
1904 }
1905}
1906
David Gibsonbe522022012-08-07 16:41:51 +10001907void qemu_devices_reset(void)
Jan Kiszkadda9b292009-07-02 00:19:02 +02001908{
1909 QEMUResetEntry *re, *nre;
1910
1911 /* reset all devices */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001912 QTAILQ_FOREACH_SAFE(re, &reset_handlers, entry, nre) {
bellardbb0c6722004-06-20 12:37:32 +00001913 re->func(re->opaque);
1914 }
David Gibsonbe522022012-08-07 16:41:51 +10001915}
1916
1917void qemu_system_reset(bool report)
1918{
1919 if (current_machine && current_machine->reset) {
1920 current_machine->reset();
1921 } else {
1922 qemu_devices_reset();
1923 }
Jan Kiszkae063eb12011-06-14 18:29:43 +02001924 if (report) {
1925 monitor_protocol_event(QEVENT_RESET, NULL);
1926 }
Jan Kiszkaea375f92010-03-01 19:10:30 +01001927 cpu_synchronize_all_post_reset();
bellardbb0c6722004-06-20 12:37:32 +00001928}
1929
1930void qemu_system_reset_request(void)
1931{
bellardd1beab82006-10-02 19:44:22 +00001932 if (no_reboot) {
1933 shutdown_requested = 1;
1934 } else {
1935 reset_requested = 1;
1936 }
Jan Kiszkab4a3d962011-02-01 22:15:43 +01001937 cpu_stop_current();
aliguorid9f75a42009-04-24 18:03:11 +00001938 qemu_notify_event();
bellardbb0c6722004-06-20 12:37:32 +00001939}
1940
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001941static void qemu_system_suspend(void)
1942{
1943 pause_all_vcpus();
1944 notifier_list_notify(&suspend_notifiers, NULL);
Luiz Capitulinoad02b962012-04-27 13:33:36 -03001945 runstate_set(RUN_STATE_SUSPENDED);
Gerd Hoffmann53370b72012-02-23 13:45:26 +01001946 monitor_protocol_event(QEVENT_SUSPEND, NULL);
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001947}
1948
1949void qemu_system_suspend_request(void)
1950{
Luiz Capitulino9abc62f2012-04-27 14:31:12 -03001951 if (runstate_check(RUN_STATE_SUSPENDED)) {
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001952 return;
1953 }
1954 suspend_requested = 1;
1955 cpu_stop_current();
1956 qemu_notify_event();
1957}
1958
1959void qemu_register_suspend_notifier(Notifier *notifier)
1960{
1961 notifier_list_add(&suspend_notifiers, notifier);
1962}
1963
1964void qemu_system_wakeup_request(WakeupReason reason)
1965{
Luiz Capitulino9abc62f2012-04-27 14:31:12 -03001966 if (!runstate_check(RUN_STATE_SUSPENDED)) {
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001967 return;
1968 }
1969 if (!(wakeup_reason_mask & (1 << reason))) {
1970 return;
1971 }
Luiz Capitulinoad02b962012-04-27 13:33:36 -03001972 runstate_set(RUN_STATE_RUNNING);
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001973 notifier_list_notify(&wakeup_notifiers, &reason);
Luiz Capitulino14058192012-08-08 17:29:17 -03001974 wakeup_requested = 1;
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001975 qemu_notify_event();
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001976}
1977
1978void qemu_system_wakeup_enable(WakeupReason reason, bool enabled)
1979{
1980 if (enabled) {
1981 wakeup_reason_mask |= (1 << reason);
1982 } else {
1983 wakeup_reason_mask &= ~(1 << reason);
1984 }
1985}
1986
1987void qemu_register_wakeup_notifier(Notifier *notifier)
1988{
1989 notifier_list_add(&wakeup_notifiers, notifier);
1990}
1991
Gleb Natapovf64622c2011-03-15 13:56:04 +02001992void qemu_system_killed(int signal, pid_t pid)
1993{
1994 shutdown_signal = signal;
1995 shutdown_pid = pid;
Kevin Wolfd9389b92011-09-14 15:38:40 +02001996 no_shutdown = 0;
Gleb Natapovf64622c2011-03-15 13:56:04 +02001997 qemu_system_shutdown_request();
1998}
1999
bellardbb0c6722004-06-20 12:37:32 +00002000void qemu_system_shutdown_request(void)
2001{
2002 shutdown_requested = 1;
aliguorid9f75a42009-04-24 18:03:11 +00002003 qemu_notify_event();
bellardbb0c6722004-06-20 12:37:32 +00002004}
2005
Igor Mammedov013c2f12012-09-05 23:06:25 +02002006static void qemu_system_powerdown(void)
2007{
2008 monitor_protocol_event(QEVENT_POWERDOWN, NULL);
2009 notifier_list_notify(&powerdown_notifiers, NULL);
2010}
2011
bellard34751872005-07-02 14:31:34 +00002012void qemu_system_powerdown_request(void)
2013{
2014 powerdown_requested = 1;
aliguorid9f75a42009-04-24 18:03:11 +00002015 qemu_notify_event();
2016}
2017
Igor Mammedova9552c82012-09-05 23:06:21 +02002018void qemu_register_powerdown_notifier(Notifier *notifier)
2019{
2020 notifier_list_add(&powerdown_notifiers, notifier);
2021}
2022
Jan Kiszka8cf71712011-02-07 12:19:16 +01002023void qemu_system_debug_request(void)
2024{
2025 debug_requested = 1;
Jan Kiszka83f338f2011-02-07 12:19:17 +01002026 qemu_notify_event();
Jan Kiszka8cf71712011-02-07 12:19:16 +01002027}
2028
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -03002029void qemu_system_vmstop_request(RunState state)
Jan Kiszka8cf71712011-02-07 12:19:16 +01002030{
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -03002031 vmstop_requested = state;
Jan Kiszka8cf71712011-02-07 12:19:16 +01002032 qemu_notify_event();
2033}
2034
Paolo Bonzini99435902011-09-12 14:03:13 +02002035static bool main_loop_should_exit(void)
2036{
2037 RunState r;
2038 if (qemu_debug_requested()) {
2039 vm_stop(RUN_STATE_DEBUG);
2040 }
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01002041 if (qemu_suspend_requested()) {
2042 qemu_system_suspend();
2043 }
Paolo Bonzini99435902011-09-12 14:03:13 +02002044 if (qemu_shutdown_requested()) {
2045 qemu_kill_report();
2046 monitor_protocol_event(QEVENT_SHUTDOWN, NULL);
2047 if (no_shutdown) {
2048 vm_stop(RUN_STATE_SHUTDOWN);
2049 } else {
2050 return true;
2051 }
2052 }
2053 if (qemu_reset_requested()) {
2054 pause_all_vcpus();
2055 cpu_synchronize_all_states();
2056 qemu_system_reset(VMRESET_REPORT);
2057 resume_all_vcpus();
Hu Taoede085b2013-04-26 11:24:40 +08002058 if (runstate_needs_reset()) {
Paolo Bonzini99435902011-09-12 14:03:13 +02002059 runstate_set(RUN_STATE_PAUSED);
2060 }
2061 }
Luiz Capitulino14058192012-08-08 17:29:17 -03002062 if (qemu_wakeup_requested()) {
2063 pause_all_vcpus();
2064 cpu_synchronize_all_states();
2065 qemu_system_reset(VMRESET_SILENT);
2066 resume_all_vcpus();
Luiz Capitulino17c86602012-08-09 11:27:30 -03002067 monitor_protocol_event(QEVENT_WAKEUP, NULL);
Luiz Capitulino14058192012-08-08 17:29:17 -03002068 }
Paolo Bonzini99435902011-09-12 14:03:13 +02002069 if (qemu_powerdown_requested()) {
Igor Mammedov013c2f12012-09-05 23:06:25 +02002070 qemu_system_powerdown();
Paolo Bonzini99435902011-09-12 14:03:13 +02002071 }
2072 if (qemu_vmstop_requested(&r)) {
2073 vm_stop(r);
2074 }
2075 return false;
2076}
2077
aliguori43b96852009-04-24 18:03:33 +00002078static void main_loop(void)
2079{
Jan Kiszkac9f711a2011-08-22 17:46:02 +02002080 bool nonblocking;
Paolo Bonzini99435902011-09-12 14:03:13 +02002081 int last_io = 0;
Jan Kiszka8e1b90e2011-02-01 22:15:46 +01002082#ifdef CONFIG_PROFILER
2083 int64_t ti;
2084#endif
Paolo Bonzini99435902011-09-12 14:03:13 +02002085 do {
Stefano Stabellinia7d42072013-06-03 15:38:43 +00002086 nonblocking = !kvm_enabled() && !xen_enabled() && last_io > 0;
aliguori43b96852009-04-24 18:03:33 +00002087#ifdef CONFIG_PROFILER
Jan Kiszka46481d32011-02-01 22:15:47 +01002088 ti = profile_getclock();
aliguori43b96852009-04-24 18:03:33 +00002089#endif
Jan Kiszkac9f711a2011-08-22 17:46:02 +02002090 last_io = main_loop_wait(nonblocking);
aliguori43b96852009-04-24 18:03:33 +00002091#ifdef CONFIG_PROFILER
Jan Kiszka46481d32011-02-01 22:15:47 +01002092 dev_time += profile_getclock() - ti;
aliguori43b96852009-04-24 18:03:33 +00002093#endif
Paolo Bonzini99435902011-09-12 14:03:13 +02002094 } while (!main_loop_should_exit());
bellardb4608c02003-06-27 17:34:32 +00002095}
2096
pbrook9bd7e6d2009-04-07 22:58:45 +00002097static void version(void)
2098{
Thomas Monjalonf75ca1a2010-04-28 14:42:01 +02002099 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n");
pbrook9bd7e6d2009-04-07 22:58:45 +00002100}
2101
ths15f82202007-06-29 23:26:08 +00002102static void help(int exitcode)
bellard0824d6f2003-06-24 13:42:40 +00002103{
Michael Ellermana3adb7a2011-12-19 17:19:31 +11002104 version();
2105 printf("usage: %s [options] [disk_image]\n\n"
2106 "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
2107 error_get_progname());
2108
Michael Ellerman77bd1112011-12-19 17:19:30 +11002109#define QEMU_OPTIONS_GENERATE_HELP
2110#include "qemu-options-wrapper.h"
Michael Ellermana3adb7a2011-12-19 17:19:31 +11002111
2112 printf("\nDuring emulation, the following keys are useful:\n"
malc3f020d72010-02-08 12:04:56 +03002113 "ctrl-alt-f toggle full screen\n"
2114 "ctrl-alt-n switch to virtual console 'n'\n"
2115 "ctrl-alt toggle mouse and keyboard grab\n"
2116 "\n"
Michael Ellermana3adb7a2011-12-19 17:19:31 +11002117 "When using -nographic, press 'ctrl-a h' to get some help.\n");
2118
ths15f82202007-06-29 23:26:08 +00002119 exit(exitcode);
bellard0824d6f2003-06-24 13:42:40 +00002120}
2121
bellardcd6f1162004-05-13 22:02:20 +00002122#define HAS_ARG 0x0001
2123
bellardcd6f1162004-05-13 22:02:20 +00002124typedef struct QEMUOption {
2125 const char *name;
2126 int flags;
2127 int index;
Blue Swirlad960902010-03-29 19:23:52 +00002128 uint32_t arch_mask;
bellardcd6f1162004-05-13 22:02:20 +00002129} QEMUOption;
2130
blueswir1dbed7e42008-10-01 19:38:09 +00002131static const QEMUOption qemu_options[] = {
Blue Swirlad960902010-03-29 19:23:52 +00002132 { "h", 0, QEMU_OPTION_h, QEMU_ARCH_ALL },
Michael Ellerman77bd1112011-12-19 17:19:30 +11002133#define QEMU_OPTIONS_GENERATE_OPTIONS
2134#include "qemu-options-wrapper.h"
bellardcd6f1162004-05-13 22:02:20 +00002135 { NULL },
bellardfc01f7e2003-06-30 10:03:06 +00002136};
Blue Swirla369da52011-09-27 19:15:42 +00002137
2138static bool vga_available(void)
2139{
Aurelien Jarno36b7f272012-09-08 16:01:20 +02002140 return object_class_by_name("VGA") || object_class_by_name("isa-vga");
Blue Swirla369da52011-09-27 19:15:42 +00002141}
2142
2143static bool cirrus_vga_available(void)
2144{
Aurelien Jarno36b7f272012-09-08 16:01:20 +02002145 return object_class_by_name("cirrus-vga")
2146 || object_class_by_name("isa-cirrus-vga");
Blue Swirla369da52011-09-27 19:15:42 +00002147}
2148
2149static bool vmware_vga_available(void)
2150{
Aurelien Jarno36b7f272012-09-08 16:01:20 +02002151 return object_class_by_name("vmware-svga");
Blue Swirla369da52011-09-27 19:15:42 +00002152}
2153
Aurelien Jarno879049a2012-09-08 12:01:06 +02002154static bool qxl_vga_available(void)
2155{
2156 return object_class_by_name("qxl-vga");
2157}
2158
malc3893c122008-09-28 00:42:05 +00002159static void select_vgahw (const char *p)
2160{
2161 const char *opts;
2162
Zachary Amsden86176752009-07-30 00:15:02 -10002163 vga_interface_type = VGA_NONE;
malc3893c122008-09-28 00:42:05 +00002164 if (strstart(p, "std", &opts)) {
Blue Swirla369da52011-09-27 19:15:42 +00002165 if (vga_available()) {
2166 vga_interface_type = VGA_STD;
2167 } else {
2168 fprintf(stderr, "Error: standard VGA not available\n");
2169 exit(0);
2170 }
malc3893c122008-09-28 00:42:05 +00002171 } else if (strstart(p, "cirrus", &opts)) {
Blue Swirla369da52011-09-27 19:15:42 +00002172 if (cirrus_vga_available()) {
2173 vga_interface_type = VGA_CIRRUS;
2174 } else {
2175 fprintf(stderr, "Error: Cirrus VGA not available\n");
2176 exit(0);
2177 }
malc3893c122008-09-28 00:42:05 +00002178 } else if (strstart(p, "vmware", &opts)) {
Blue Swirla369da52011-09-27 19:15:42 +00002179 if (vmware_vga_available()) {
2180 vga_interface_type = VGA_VMWARE;
2181 } else {
2182 fprintf(stderr, "Error: VMWare SVGA not available\n");
2183 exit(0);
2184 }
aliguori94909d92009-04-22 15:19:53 +00002185 } else if (strstart(p, "xenfb", &opts)) {
Zachary Amsden86176752009-07-30 00:15:02 -10002186 vga_interface_type = VGA_XENFB;
Gerd Hoffmanna19cbfb2010-04-27 11:50:11 +02002187 } else if (strstart(p, "qxl", &opts)) {
Aurelien Jarno879049a2012-09-08 12:01:06 +02002188 if (qxl_vga_available()) {
2189 vga_interface_type = VGA_QXL;
2190 } else {
2191 fprintf(stderr, "Error: QXL VGA not available\n");
2192 exit(0);
2193 }
aliguori28b85ed2009-04-22 15:19:48 +00002194 } else if (!strstart(p, "none", &opts)) {
malc3893c122008-09-28 00:42:05 +00002195 invalid_vga:
2196 fprintf(stderr, "Unknown vga type: %s\n", p);
2197 exit(1);
2198 }
malccb5a7aa2008-09-28 00:42:12 +00002199 while (*opts) {
2200 const char *nextopt;
2201
2202 if (strstart(opts, ",retrace=", &nextopt)) {
2203 opts = nextopt;
2204 if (strstart(opts, "dumb", &nextopt))
2205 vga_retrace_method = VGA_RETRACE_DUMB;
2206 else if (strstart(opts, "precise", &nextopt))
2207 vga_retrace_method = VGA_RETRACE_PRECISE;
2208 else goto invalid_vga;
2209 } else goto invalid_vga;
2210 opts = nextopt;
2211 }
malc3893c122008-09-28 00:42:05 +00002212}
2213
Jes Sorensen1472a952011-03-16 13:33:31 +01002214static DisplayType select_display(const char *p)
2215{
2216 const char *opts;
2217 DisplayType display = DT_DEFAULT;
2218
2219 if (strstart(p, "sdl", &opts)) {
2220#ifdef CONFIG_SDL
2221 display = DT_SDL;
2222 while (*opts) {
2223 const char *nextopt;
2224
2225 if (strstart(opts, ",frame=", &nextopt)) {
2226 opts = nextopt;
2227 if (strstart(opts, "on", &nextopt)) {
2228 no_frame = 0;
2229 } else if (strstart(opts, "off", &nextopt)) {
2230 no_frame = 1;
2231 } else {
Peter Maydell05175532011-03-23 03:40:57 +00002232 goto invalid_sdl_args;
Jes Sorensen1472a952011-03-16 13:33:31 +01002233 }
2234 } else if (strstart(opts, ",alt_grab=", &nextopt)) {
2235 opts = nextopt;
2236 if (strstart(opts, "on", &nextopt)) {
2237 alt_grab = 1;
2238 } else if (strstart(opts, "off", &nextopt)) {
2239 alt_grab = 0;
2240 } else {
Peter Maydell05175532011-03-23 03:40:57 +00002241 goto invalid_sdl_args;
Jes Sorensen1472a952011-03-16 13:33:31 +01002242 }
2243 } else if (strstart(opts, ",ctrl_grab=", &nextopt)) {
2244 opts = nextopt;
2245 if (strstart(opts, "on", &nextopt)) {
2246 ctrl_grab = 1;
2247 } else if (strstart(opts, "off", &nextopt)) {
2248 ctrl_grab = 0;
2249 } else {
Peter Maydell05175532011-03-23 03:40:57 +00002250 goto invalid_sdl_args;
Jes Sorensen1472a952011-03-16 13:33:31 +01002251 }
2252 } else if (strstart(opts, ",window_close=", &nextopt)) {
2253 opts = nextopt;
2254 if (strstart(opts, "on", &nextopt)) {
2255 no_quit = 0;
2256 } else if (strstart(opts, "off", &nextopt)) {
2257 no_quit = 1;
2258 } else {
Peter Maydell05175532011-03-23 03:40:57 +00002259 goto invalid_sdl_args;
Jes Sorensen1472a952011-03-16 13:33:31 +01002260 }
2261 } else {
Peter Maydell05175532011-03-23 03:40:57 +00002262 invalid_sdl_args:
2263 fprintf(stderr, "Invalid SDL option string: %s\n", p);
2264 exit(1);
Jes Sorensen1472a952011-03-16 13:33:31 +01002265 }
2266 opts = nextopt;
2267 }
2268#else
2269 fprintf(stderr, "SDL support is disabled\n");
2270 exit(1);
2271#endif
Jes Sorensen3264ff12011-03-16 13:33:33 +01002272 } else if (strstart(p, "vnc", &opts)) {
Jes Sorensen821601e2011-03-16 13:33:36 +01002273#ifdef CONFIG_VNC
Jes Sorensen3264ff12011-03-16 13:33:33 +01002274 display_remote++;
2275
2276 if (*opts) {
2277 const char *nextopt;
2278
2279 if (strstart(opts, "=", &nextopt)) {
2280 vnc_display = nextopt;
2281 }
2282 }
2283 if (!vnc_display) {
2284 fprintf(stderr, "VNC requires a display argument vnc=<display>\n");
2285 exit(1);
2286 }
Jes Sorensen821601e2011-03-16 13:33:36 +01002287#else
2288 fprintf(stderr, "VNC support is disabled\n");
2289 exit(1);
2290#endif
Jes Sorensen1472a952011-03-16 13:33:31 +01002291 } else if (strstart(p, "curses", &opts)) {
2292#ifdef CONFIG_CURSES
2293 display = DT_CURSES;
2294#else
2295 fprintf(stderr, "Curses support is disabled\n");
2296 exit(1);
2297#endif
Anthony Liguori15546422013-02-20 07:43:25 -06002298 } else if (strstart(p, "gtk", &opts)) {
2299#ifdef CONFIG_GTK
2300 display = DT_GTK;
2301#else
2302 fprintf(stderr, "GTK support is disabled\n");
2303 exit(1);
2304#endif
Jes Sorensen4171d322011-03-16 13:33:32 +01002305 } else if (strstart(p, "none", &opts)) {
2306 display = DT_NONE;
Jes Sorensen1472a952011-03-16 13:33:31 +01002307 } else {
Jes Sorensen1472a952011-03-16 13:33:31 +01002308 fprintf(stderr, "Unknown display type: %s\n", p);
2309 exit(1);
2310 }
2311
2312 return display;
2313}
2314
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02002315static int balloon_parse(const char *arg)
2316{
Gerd Hoffmann382f0742009-08-14 10:34:22 +02002317 QemuOpts *opts;
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02002318
Gerd Hoffmann382f0742009-08-14 10:34:22 +02002319 if (strcmp(arg, "none") == 0) {
2320 return 0;
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02002321 }
Gerd Hoffmann382f0742009-08-14 10:34:22 +02002322
2323 if (!strncmp(arg, "virtio", 6)) {
2324 if (arg[6] == ',') {
2325 /* have params -> parse them */
Gerd Hoffmann3329f072010-08-20 13:52:01 +02002326 opts = qemu_opts_parse(qemu_find_opts("device"), arg+7, 0);
Gerd Hoffmann382f0742009-08-14 10:34:22 +02002327 if (!opts)
2328 return -1;
2329 } else {
2330 /* create empty opts */
Dong Xu Wange478b442012-12-06 14:47:22 +08002331 opts = qemu_opts_create_nofail(qemu_find_opts("device"));
Gerd Hoffmann382f0742009-08-14 10:34:22 +02002332 }
Alexander Graf29f82b32011-03-29 15:29:29 +02002333 qemu_opt_set(opts, "driver", "virtio-balloon");
Gerd Hoffmann382f0742009-08-14 10:34:22 +02002334 return 0;
2335 }
2336
2337 return -1;
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02002338}
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02002339
Paul Brook5cea8592009-05-30 00:52:44 +01002340char *qemu_find_file(int type, const char *name)
2341{
Gerd Hoffmann45240512013-03-08 11:42:24 +01002342 int i;
Paul Brook5cea8592009-05-30 00:52:44 +01002343 const char *subdir;
2344 char *buf;
2345
Peter Maydell31783202012-05-25 13:07:01 +01002346 /* Try the name as a straight path first */
2347 if (access(name, R_OK) == 0) {
Gerd Hoffmann45240512013-03-08 11:42:24 +01002348 trace_load_file(name, name);
Anthony Liguori7267c092011-08-20 22:09:37 -05002349 return g_strdup(name);
Paul Brook5cea8592009-05-30 00:52:44 +01002350 }
Gerd Hoffmann45240512013-03-08 11:42:24 +01002351
Paul Brook5cea8592009-05-30 00:52:44 +01002352 switch (type) {
2353 case QEMU_FILE_TYPE_BIOS:
2354 subdir = "";
2355 break;
2356 case QEMU_FILE_TYPE_KEYMAP:
2357 subdir = "keymaps/";
2358 break;
2359 default:
2360 abort();
2361 }
Gerd Hoffmann45240512013-03-08 11:42:24 +01002362
2363 for (i = 0; i < data_dir_idx; i++) {
2364 buf = g_strdup_printf("%s/%s%s", data_dir[i], subdir, name);
2365 if (access(buf, R_OK) == 0) {
2366 trace_load_file(name, buf);
2367 return buf;
2368 }
Anthony Liguori7267c092011-08-20 22:09:37 -05002369 g_free(buf);
Paul Brook5cea8592009-05-30 00:52:44 +01002370 }
Gerd Hoffmann45240512013-03-08 11:42:24 +01002371 return NULL;
Paul Brook5cea8592009-05-30 00:52:44 +01002372}
2373
Markus Armbrusterff952ba2010-01-29 19:48:57 +01002374static int device_help_func(QemuOpts *opts, void *opaque)
2375{
2376 return qdev_device_help(opts);
2377}
2378
Gerd Hoffmannf31d07d2009-07-31 12:25:37 +02002379static int device_init_func(QemuOpts *opts, void *opaque)
2380{
2381 DeviceState *dev;
2382
2383 dev = qdev_device_add(opts);
2384 if (!dev)
2385 return -1;
Paolo Bonzinib09995a2013-01-25 14:12:37 +01002386 object_unref(OBJECT(dev));
Gerd Hoffmannf31d07d2009-07-31 12:25:37 +02002387 return 0;
2388}
2389
Gerd Hoffmann1a688d32009-12-08 13:11:36 +01002390static int chardev_init_func(QemuOpts *opts, void *opaque)
2391{
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02002392 Error *local_err = NULL;
Gerd Hoffmann1a688d32009-12-08 13:11:36 +01002393
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02002394 qemu_chr_new_from_opts(opts, NULL, &local_err);
2395 if (error_is_set(&local_err)) {
2396 fprintf(stderr, "%s\n", error_get_pretty(local_err));
2397 error_free(local_err);
Gerd Hoffmann1a688d32009-12-08 13:11:36 +01002398 return -1;
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02002399 }
Gerd Hoffmann1a688d32009-12-08 13:11:36 +01002400 return 0;
2401}
2402
Venkateswararao Jujjuri (JV)758e8e32010-06-14 13:34:41 -07002403#ifdef CONFIG_VIRTFS
Gautham R Shenoy74db9202010-04-29 17:44:43 +05302404static int fsdev_init_func(QemuOpts *opts, void *opaque)
2405{
2406 int ret;
2407 ret = qemu_fsdev_add(opts);
2408
2409 return ret;
2410}
2411#endif
2412
Gerd Hoffmann88589342009-12-08 13:11:50 +01002413static int mon_init_func(QemuOpts *opts, void *opaque)
2414{
2415 CharDriverState *chr;
2416 const char *chardev;
2417 const char *mode;
2418 int flags;
2419
2420 mode = qemu_opt_get(opts, "mode");
2421 if (mode == NULL) {
2422 mode = "readline";
2423 }
2424 if (strcmp(mode, "readline") == 0) {
2425 flags = MONITOR_USE_READLINE;
2426 } else if (strcmp(mode, "control") == 0) {
2427 flags = MONITOR_USE_CONTROL;
2428 } else {
2429 fprintf(stderr, "unknown monitor mode \"%s\"\n", mode);
2430 exit(1);
2431 }
2432
Daniel P. Berrange39eaab92010-06-07 15:42:31 +01002433 if (qemu_opt_get_bool(opts, "pretty", 0))
2434 flags |= MONITOR_USE_PRETTY;
2435
Gerd Hoffmann88589342009-12-08 13:11:50 +01002436 if (qemu_opt_get_bool(opts, "default", 0))
2437 flags |= MONITOR_IS_DEFAULT;
2438
2439 chardev = qemu_opt_get(opts, "chardev");
2440 chr = qemu_chr_find(chardev);
2441 if (chr == NULL) {
2442 fprintf(stderr, "chardev \"%s\" not found\n", chardev);
2443 exit(1);
2444 }
2445
Hans de Goede456d6062013-03-27 20:29:40 +01002446 qemu_chr_fe_claim_no_fail(chr);
Gerd Hoffmann88589342009-12-08 13:11:50 +01002447 monitor_init(chr, flags);
2448 return 0;
2449}
2450
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01002451static void monitor_parse(const char *optarg, const char *mode)
Gerd Hoffmann88589342009-12-08 13:11:50 +01002452{
2453 static int monitor_device_index = 0;
2454 QemuOpts *opts;
2455 const char *p;
2456 char label[32];
2457 int def = 0;
2458
2459 if (strstart(optarg, "chardev:", &p)) {
2460 snprintf(label, sizeof(label), "%s", p);
2461 } else {
Jan Kiszka140e0652010-04-06 16:55:52 +02002462 snprintf(label, sizeof(label), "compat_monitor%d",
2463 monitor_device_index);
2464 if (monitor_device_index == 0) {
Gerd Hoffmann88589342009-12-08 13:11:50 +01002465 def = 1;
2466 }
2467 opts = qemu_chr_parse_compat(label, optarg);
2468 if (!opts) {
2469 fprintf(stderr, "parse error: %s\n", optarg);
2470 exit(1);
2471 }
2472 }
2473
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03002474 opts = qemu_opts_create(qemu_find_opts("mon"), label, 1, NULL);
Gerd Hoffmann88589342009-12-08 13:11:50 +01002475 if (!opts) {
2476 fprintf(stderr, "duplicate chardev: %s\n", label);
2477 exit(1);
2478 }
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01002479 qemu_opt_set(opts, "mode", mode);
Gerd Hoffmann88589342009-12-08 13:11:50 +01002480 qemu_opt_set(opts, "chardev", label);
2481 if (def)
2482 qemu_opt_set(opts, "default", "on");
2483 monitor_device_index++;
2484}
2485
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002486struct device_config {
2487 enum {
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002488 DEV_USB, /* -usbdevice */
2489 DEV_BT, /* -bt */
2490 DEV_SERIAL, /* -serial */
2491 DEV_PARALLEL, /* -parallel */
2492 DEV_VIRTCON, /* -virtioconsole */
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08002493 DEV_DEBUGCON, /* -debugcon */
Markus Armbrusteref0c4a02012-02-07 15:09:13 +01002494 DEV_GDB, /* -gdb, -s */
Alexander Graf3ef669e2013-01-24 12:18:52 +01002495 DEV_SCLP, /* s390 sclp */
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002496 } type;
2497 const char *cmdline;
Markus Armbrusterd9a59542012-02-07 15:09:12 +01002498 Location loc;
Blue Swirl72cf2d42009-09-12 07:36:22 +00002499 QTAILQ_ENTRY(device_config) next;
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002500};
Blue Swirl4fdcac02012-10-28 11:04:47 +00002501
2502static QTAILQ_HEAD(, device_config) device_configs =
2503 QTAILQ_HEAD_INITIALIZER(device_configs);
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002504
2505static void add_device_config(int type, const char *cmdline)
2506{
2507 struct device_config *conf;
2508
Anthony Liguori7267c092011-08-20 22:09:37 -05002509 conf = g_malloc0(sizeof(*conf));
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002510 conf->type = type;
2511 conf->cmdline = cmdline;
Markus Armbrusterd9a59542012-02-07 15:09:12 +01002512 loc_save(&conf->loc);
Blue Swirl72cf2d42009-09-12 07:36:22 +00002513 QTAILQ_INSERT_TAIL(&device_configs, conf, next);
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002514}
2515
2516static int foreach_device_config(int type, int (*func)(const char *cmdline))
2517{
2518 struct device_config *conf;
2519 int rc;
2520
Blue Swirl72cf2d42009-09-12 07:36:22 +00002521 QTAILQ_FOREACH(conf, &device_configs, next) {
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002522 if (conf->type != type)
2523 continue;
Markus Armbrusterd9a59542012-02-07 15:09:12 +01002524 loc_push_restore(&conf->loc);
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002525 rc = func(conf->cmdline);
Markus Armbrusterd9a59542012-02-07 15:09:12 +01002526 loc_pop(&conf->loc);
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002527 if (0 != rc)
2528 return rc;
2529 }
2530 return 0;
2531}
2532
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01002533static int serial_parse(const char *devname)
2534{
2535 static int index = 0;
2536 char label[32];
2537
2538 if (strcmp(devname, "none") == 0)
2539 return 0;
2540 if (index == MAX_SERIAL_PORTS) {
2541 fprintf(stderr, "qemu: too many serial ports\n");
2542 exit(1);
2543 }
2544 snprintf(label, sizeof(label), "serial%d", index);
Anthony Liguori27143a42011-08-15 11:17:36 -05002545 serial_hds[index] = qemu_chr_new(label, devname, NULL);
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01002546 if (!serial_hds[index]) {
Peter Maydell52d06132012-07-09 04:28:30 +00002547 fprintf(stderr, "qemu: could not connect serial device"
2548 " to character backend '%s'\n", devname);
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01002549 return -1;
2550 }
2551 index++;
2552 return 0;
2553}
2554
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01002555static int parallel_parse(const char *devname)
2556{
2557 static int index = 0;
2558 char label[32];
2559
2560 if (strcmp(devname, "none") == 0)
2561 return 0;
2562 if (index == MAX_PARALLEL_PORTS) {
2563 fprintf(stderr, "qemu: too many parallel ports\n");
2564 exit(1);
2565 }
2566 snprintf(label, sizeof(label), "parallel%d", index);
Anthony Liguori27143a42011-08-15 11:17:36 -05002567 parallel_hds[index] = qemu_chr_new(label, devname, NULL);
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01002568 if (!parallel_hds[index]) {
Peter Maydell52d06132012-07-09 04:28:30 +00002569 fprintf(stderr, "qemu: could not connect parallel device"
2570 " to character backend '%s'\n", devname);
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01002571 return -1;
2572 }
2573 index++;
2574 return 0;
2575}
2576
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002577static int virtcon_parse(const char *devname)
2578{
Gerd Hoffmann3329f072010-08-20 13:52:01 +02002579 QemuOptsList *device = qemu_find_opts("device");
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002580 static int index = 0;
2581 char label[32];
Amit Shah392ecf52010-01-21 16:19:23 +05302582 QemuOpts *bus_opts, *dev_opts;
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002583
2584 if (strcmp(devname, "none") == 0)
2585 return 0;
2586 if (index == MAX_VIRTIO_CONSOLES) {
2587 fprintf(stderr, "qemu: too many virtio consoles\n");
2588 exit(1);
2589 }
Amit Shah392ecf52010-01-21 16:19:23 +05302590
Dong Xu Wange478b442012-12-06 14:47:22 +08002591 bus_opts = qemu_opts_create_nofail(device);
Anthony Liguorie87f7fc2012-02-06 11:07:18 -06002592 if (arch_type == QEMU_ARCH_S390X) {
2593 qemu_opt_set(bus_opts, "driver", "virtio-serial-s390");
2594 } else {
2595 qemu_opt_set(bus_opts, "driver", "virtio-serial-pci");
Laszlo Ersek4d8b3c62013-03-21 00:23:13 +01002596 }
Amit Shah392ecf52010-01-21 16:19:23 +05302597
Dong Xu Wange478b442012-12-06 14:47:22 +08002598 dev_opts = qemu_opts_create_nofail(device);
Amit Shah392ecf52010-01-21 16:19:23 +05302599 qemu_opt_set(dev_opts, "driver", "virtconsole");
2600
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002601 snprintf(label, sizeof(label), "virtcon%d", index);
Anthony Liguori27143a42011-08-15 11:17:36 -05002602 virtcon_hds[index] = qemu_chr_new(label, devname, NULL);
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002603 if (!virtcon_hds[index]) {
Peter Maydell52d06132012-07-09 04:28:30 +00002604 fprintf(stderr, "qemu: could not connect virtio console"
2605 " to character backend '%s'\n", devname);
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002606 return -1;
2607 }
Amit Shah392ecf52010-01-21 16:19:23 +05302608 qemu_opt_set(dev_opts, "chardev", label);
2609
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002610 index++;
2611 return 0;
2612}
2613
Alexander Graf3ef669e2013-01-24 12:18:52 +01002614static int sclp_parse(const char *devname)
2615{
2616 QemuOptsList *device = qemu_find_opts("device");
2617 static int index = 0;
2618 char label[32];
2619 QemuOpts *dev_opts;
2620
2621 if (strcmp(devname, "none") == 0) {
2622 return 0;
2623 }
2624 if (index == MAX_SCLP_CONSOLES) {
2625 fprintf(stderr, "qemu: too many sclp consoles\n");
2626 exit(1);
2627 }
2628
2629 assert(arch_type == QEMU_ARCH_S390X);
2630
2631 dev_opts = qemu_opts_create(device, NULL, 0, NULL);
2632 qemu_opt_set(dev_opts, "driver", "sclpconsole");
2633
2634 snprintf(label, sizeof(label), "sclpcon%d", index);
2635 sclp_hds[index] = qemu_chr_new(label, devname, NULL);
2636 if (!sclp_hds[index]) {
2637 fprintf(stderr, "qemu: could not connect sclp console"
2638 " to character backend '%s'\n", devname);
2639 return -1;
2640 }
2641 qemu_opt_set(dev_opts, "chardev", label);
2642
2643 index++;
2644 return 0;
2645}
2646
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08002647static int debugcon_parse(const char *devname)
Laszlo Ersek4d8b3c62013-03-21 00:23:13 +01002648{
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08002649 QemuOpts *opts;
2650
Anthony Liguori27143a42011-08-15 11:17:36 -05002651 if (!qemu_chr_new("debugcon", devname, NULL)) {
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08002652 exit(1);
2653 }
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03002654 opts = qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL);
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08002655 if (!opts) {
2656 fprintf(stderr, "qemu: already have a debugcon device\n");
2657 exit(1);
2658 }
2659 qemu_opt_set(opts, "driver", "isa-debugcon");
2660 qemu_opt_set(opts, "chardev", "debugcon");
2661 return 0;
2662}
2663
Jan Kiszka9052ea62011-07-23 12:38:37 +02002664static QEMUMachine *machine_parse(const char *name)
2665{
2666 QEMUMachine *m, *machine = NULL;
2667
2668 if (name) {
2669 machine = find_machine(name);
2670 }
2671 if (machine) {
2672 return machine;
2673 }
2674 printf("Supported machines are:\n");
2675 for (m = first_machine; m != NULL; m = m->next) {
2676 if (m->alias) {
Peter Maydell3b264862012-02-22 22:13:11 +00002677 printf("%-20s %s (alias of %s)\n", m->alias, m->desc, m->name);
Jan Kiszka9052ea62011-07-23 12:38:37 +02002678 }
Peter Maydell3b264862012-02-22 22:13:11 +00002679 printf("%-20s %s%s\n", m->name, m->desc,
Jan Kiszka9052ea62011-07-23 12:38:37 +02002680 m->is_default ? " (default)" : "");
2681 }
Peter Maydellc8057f92012-08-02 13:45:54 +01002682 exit(!name || !is_help_option(name));
Jan Kiszka9052ea62011-07-23 12:38:37 +02002683}
2684
Anthony PERARD303d4e82010-09-21 20:05:31 +01002685static int tcg_init(void)
2686{
Jan Kiszkad5ab9712011-08-02 16:10:21 +02002687 tcg_exec_init(tcg_tb_size * 1024 * 1024);
Anthony PERARD303d4e82010-09-21 20:05:31 +01002688 return 0;
2689}
2690
2691static struct {
2692 const char *opt_name;
2693 const char *name;
2694 int (*available)(void);
2695 int (*init)(void);
liguangd5286af2013-01-24 13:03:27 +08002696 bool *allowed;
Anthony PERARD303d4e82010-09-21 20:05:31 +01002697} accel_list[] = {
2698 { "tcg", "tcg", tcg_available, tcg_init, &tcg_allowed },
Anthony PERARD3285cf42010-08-19 12:27:56 +01002699 { "xen", "Xen", xen_available, xen_init, &xen_allowed },
Anthony PERARD303d4e82010-09-21 20:05:31 +01002700 { "kvm", "KVM", kvm_available, kvm_init, &kvm_allowed },
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +02002701 { "qtest", "QTest", qtest_available, qtest_init, &qtest_allowed },
Anthony PERARD303d4e82010-09-21 20:05:31 +01002702};
2703
2704static int configure_accelerator(void)
2705{
Markus Armbruster36ad0e92013-07-04 15:09:20 +02002706 const char *p;
Anthony PERARD303d4e82010-09-21 20:05:31 +01002707 char buf[10];
2708 int i, ret;
liguang217e21b2013-01-24 13:03:26 +08002709 bool accel_initialised = false;
2710 bool init_failed = false;
Anthony PERARD303d4e82010-09-21 20:05:31 +01002711
Markus Armbruster36ad0e92013-07-04 15:09:20 +02002712 p = qemu_opt_get(qemu_get_machine_opts(), "accel");
Anthony PERARD303d4e82010-09-21 20:05:31 +01002713 if (p == NULL) {
2714 /* Use the default "accelerator", tcg */
2715 p = "tcg";
2716 }
2717
Peter Maydell1b785a92012-02-07 20:57:27 +00002718 while (!accel_initialised && *p != '\0') {
Anthony PERARD303d4e82010-09-21 20:05:31 +01002719 if (*p == ':') {
2720 p++;
2721 }
2722 p = get_opt_name(buf, sizeof (buf), p, ':');
2723 for (i = 0; i < ARRAY_SIZE(accel_list); i++) {
2724 if (strcmp(accel_list[i].opt_name, buf) == 0) {
liguange3c66d92013-01-24 13:03:25 +08002725 if (!accel_list[i].available()) {
2726 printf("%s not supported for this target\n",
2727 accel_list[i].name);
2728 continue;
2729 }
liguangd5286af2013-01-24 13:03:27 +08002730 *(accel_list[i].allowed) = true;
Anthony PERARD303d4e82010-09-21 20:05:31 +01002731 ret = accel_list[i].init();
2732 if (ret < 0) {
liguang217e21b2013-01-24 13:03:26 +08002733 init_failed = true;
liguange3c66d92013-01-24 13:03:25 +08002734 fprintf(stderr, "failed to initialize %s: %s\n",
2735 accel_list[i].name,
2736 strerror(-ret));
liguangd5286af2013-01-24 13:03:27 +08002737 *(accel_list[i].allowed) = false;
Anthony PERARD303d4e82010-09-21 20:05:31 +01002738 } else {
liguang217e21b2013-01-24 13:03:26 +08002739 accel_initialised = true;
Anthony PERARD303d4e82010-09-21 20:05:31 +01002740 }
2741 break;
2742 }
2743 }
2744 if (i == ARRAY_SIZE(accel_list)) {
2745 fprintf(stderr, "\"%s\" accelerator does not exist.\n", buf);
2746 }
2747 }
2748
Peter Maydell1b785a92012-02-07 20:57:27 +00002749 if (!accel_initialised) {
liguang217e21b2013-01-24 13:03:26 +08002750 if (!init_failed) {
2751 fprintf(stderr, "No accelerator found!\n");
2752 }
Anthony PERARD303d4e82010-09-21 20:05:31 +01002753 exit(1);
2754 }
2755
2756 if (init_failed) {
2757 fprintf(stderr, "Back to %s accelerator.\n", accel_list[i].name);
2758 }
2759
Peter Maydell1b785a92012-02-07 20:57:27 +00002760 return !accel_initialised;
Anthony PERARD303d4e82010-09-21 20:05:31 +01002761}
2762
Gerd Hoffmannfd42dee2010-06-04 14:08:07 +02002763void qemu_add_exit_notifier(Notifier *notify)
2764{
2765 notifier_list_add(&exit_notifiers, notify);
2766}
2767
2768void qemu_remove_exit_notifier(Notifier *notify)
2769{
Paolo Bonzini31552522012-01-13 17:34:01 +01002770 notifier_remove(notify);
Gerd Hoffmannfd42dee2010-06-04 14:08:07 +02002771}
2772
2773static void qemu_run_exit_notifiers(void)
2774{
Jan Kiszka9e8dd452011-06-20 14:06:26 +02002775 notifier_list_notify(&exit_notifiers, NULL);
Gerd Hoffmannfd42dee2010-06-04 14:08:07 +02002776}
2777
Gleb Natapov4cab9462010-12-08 13:35:08 +02002778void qemu_add_machine_init_done_notifier(Notifier *notify)
2779{
2780 notifier_list_add(&machine_init_done_notifiers, notify);
2781}
2782
2783static void qemu_run_machine_init_done_notifiers(void)
2784{
Jan Kiszka9e8dd452011-06-20 14:06:26 +02002785 notifier_list_notify(&machine_init_done_notifiers, NULL);
Gleb Natapov4cab9462010-12-08 13:35:08 +02002786}
2787
Anthony Liguori6530a972010-01-22 09:18:06 -06002788static const QEMUOption *lookup_opt(int argc, char **argv,
2789 const char **poptarg, int *poptind)
2790{
2791 const QEMUOption *popt;
2792 int optind = *poptind;
2793 char *r = argv[optind];
2794 const char *optarg;
2795
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +01002796 loc_set_cmdline(argv, optind, 1);
Anthony Liguori6530a972010-01-22 09:18:06 -06002797 optind++;
2798 /* Treat --foo the same as -foo. */
2799 if (r[1] == '-')
2800 r++;
2801 popt = qemu_options;
2802 for(;;) {
2803 if (!popt->name) {
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +01002804 error_report("invalid option");
Anthony Liguori6530a972010-01-22 09:18:06 -06002805 exit(1);
2806 }
2807 if (!strcmp(popt->name, r + 1))
2808 break;
2809 popt++;
2810 }
2811 if (popt->flags & HAS_ARG) {
2812 if (optind >= argc) {
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +01002813 error_report("requires an argument");
Anthony Liguori6530a972010-01-22 09:18:06 -06002814 exit(1);
2815 }
2816 optarg = argv[optind++];
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +01002817 loc_set_cmdline(argv, optind - 2, 2);
Anthony Liguori6530a972010-01-22 09:18:06 -06002818 } else {
2819 optarg = NULL;
2820 }
2821
2822 *poptarg = optarg;
2823 *poptind = optind;
2824
2825 return popt;
2826}
2827
Anthony Liguori07501122011-08-20 22:38:31 -05002828static gpointer malloc_and_trace(gsize n_bytes)
2829{
2830 void *ptr = malloc(n_bytes);
Frediano Ziglioa74cd8c2011-08-31 09:25:35 +02002831 trace_g_malloc(n_bytes, ptr);
Anthony Liguori07501122011-08-20 22:38:31 -05002832 return ptr;
2833}
2834
2835static gpointer realloc_and_trace(gpointer mem, gsize n_bytes)
2836{
2837 void *ptr = realloc(mem, n_bytes);
Frediano Ziglioa74cd8c2011-08-31 09:25:35 +02002838 trace_g_realloc(mem, n_bytes, ptr);
Anthony Liguori07501122011-08-20 22:38:31 -05002839 return ptr;
2840}
2841
2842static void free_and_trace(gpointer mem)
2843{
Frediano Ziglioa74cd8c2011-08-31 09:25:35 +02002844 trace_g_free(mem);
Anthony Liguori07501122011-08-20 22:38:31 -05002845 free(mem);
2846}
2847
Anthony Liguori68d98d32012-06-25 14:36:33 -05002848static int object_set_property(const char *name, const char *value, void *opaque)
2849{
2850 Object *obj = OBJECT(opaque);
2851 StringInputVisitor *siv;
2852 Error *local_err = NULL;
2853
2854 if (strcmp(name, "qom-type") == 0 || strcmp(name, "id") == 0) {
2855 return 0;
2856 }
2857
2858 siv = string_input_visitor_new(value);
2859 object_property_set(obj, string_input_get_visitor(siv), name, &local_err);
2860 string_input_visitor_cleanup(siv);
2861
2862 if (local_err) {
2863 qerror_report_err(local_err);
2864 error_free(local_err);
2865 return -1;
2866 }
2867
2868 return 0;
2869}
2870
2871static int object_create(QemuOpts *opts, void *opaque)
2872{
2873 const char *type = qemu_opt_get(opts, "qom-type");
2874 const char *id = qemu_opts_id(opts);
2875 Object *obj;
2876
2877 g_assert(type != NULL);
2878
2879 if (id == NULL) {
2880 qerror_report(QERR_MISSING_PARAMETER, "id");
2881 return -1;
2882 }
2883
2884 obj = object_new(type);
2885 if (qemu_opt_foreach(opts, object_set_property, obj, 1) < 0) {
2886 return -1;
2887 }
2888
2889 object_property_add_child(container_get(object_get_root(), "/objects"),
2890 id, obj, NULL);
2891
2892 return 0;
2893}
2894
malc902b3d52008-12-10 19:18:40 +00002895int main(int argc, char **argv, char **envp)
bellard0824d6f2003-06-24 13:42:40 +00002896{
thse4bcb142007-12-02 04:51:10 +00002897 int i;
Eduardo Habkostda1fcfd2010-04-06 19:22:07 -03002898 int snapshot, linux_boot;
Paolo Bonzini4e3de9e2010-03-10 11:38:48 +01002899 const char *icount_option = NULL;
bellard7f7f9872003-10-30 01:11:23 +00002900 const char *initrd_filename;
bellarda20dd502003-09-30 21:07:02 +00002901 const char *kernel_filename, *kernel_cmdline;
Markus Armbruster8281abd2013-06-14 13:15:03 +02002902 const char *boot_order = NULL;
aliguori3023f332009-01-16 19:04:14 +00002903 DisplayState *ds;
malc9f227bc2012-08-27 18:33:22 +04002904 int cyls, heads, secs, translation;
2905 QemuOpts *hda_opts = NULL, *opts, *machine_opts;
Gerd Hoffmann03b0ba72010-08-20 13:52:02 +02002906 QemuOptsList *olist;
bellardcd6f1162004-05-13 22:02:20 +00002907 int optind;
Anthony Liguori6530a972010-01-22 09:18:06 -06002908 const char *optarg;
bellardd63d3072004-10-03 13:29:03 +00002909 const char *loadvm = NULL;
bellardcc1daa42005-06-05 14:49:17 +00002910 QEMUMachine *machine;
j_mayer94fc95c2007-03-05 19:44:02 +00002911 const char *cpu_model;
Paolo Bonzini7f1b17f2012-05-10 09:39:17 +02002912 const char *vga_model = "none";
ths93815bc2007-03-19 15:58:31 +00002913 const char *pid_file = NULL;
aliguori5bb79102008-10-13 03:12:02 +00002914 const char *incoming = NULL;
Jes Sorensen821601e2011-03-16 13:33:36 +01002915#ifdef CONFIG_VNC
Anthony Liguori993fbfd2009-05-21 16:54:00 -05002916 int show_vnc_port = 0;
Jes Sorensen821601e2011-03-16 13:33:36 +01002917#endif
Eduardo Habkost3ed2d9e2012-05-02 13:07:28 -03002918 bool defconfig = true;
Eduardo Habkostf29a5612012-05-02 13:07:29 -03002919 bool userconfig = true;
Matthew Fernandezc235d732011-06-07 16:32:40 +00002920 const char *log_mask = NULL;
2921 const char *log_file = NULL;
Anthony Liguori07501122011-08-20 22:38:31 -05002922 GMemVTable mem_trace = {
2923 .malloc = malloc_and_trace,
2924 .realloc = realloc_and_trace,
2925 .free = free_and_trace,
2926 };
Lluís23d15e82011-08-31 20:31:31 +02002927 const char *trace_events = NULL;
Lluíse4858972011-08-31 20:31:03 +02002928 const char *trace_file = NULL;
Stefan Hajnoczi0b5538c2011-02-26 18:38:39 +00002929
Gerd Hoffmannfd42dee2010-06-04 14:08:07 +02002930 atexit(qemu_run_exit_notifiers);
Markus Armbruster65abca02010-02-24 14:37:14 +01002931 error_set_progname(argv[0]);
2932
Anthony Liguori07501122011-08-20 22:38:31 -05002933 g_mem_set_vtable(&mem_trace);
Andreas Färberdb529aa2011-10-31 19:14:56 +01002934 if (!g_thread_supported()) {
Alon Levy42ed3722011-12-20 13:41:04 +02002935#if !GLIB_CHECK_VERSION(2, 31, 0)
Andreas Färberdb529aa2011-10-31 19:14:56 +01002936 g_thread_init(NULL);
Alon Levy42ed3722011-12-20 13:41:04 +02002937#else
2938 fprintf(stderr, "glib threading failed to initialize.\n");
2939 exit(1);
2940#endif
Andreas Färberdb529aa2011-10-31 19:14:56 +01002941 }
Anthony Liguori07501122011-08-20 22:38:31 -05002942
Andreas Färber1b71f7c2012-03-04 21:32:35 +01002943 module_call_init(MODULE_INIT_QOM);
2944
Paolo Bonzini4d454572012-11-26 16:03:42 +01002945 qemu_add_opts(&qemu_drive_opts);
2946 qemu_add_opts(&qemu_chardev_opts);
2947 qemu_add_opts(&qemu_device_opts);
2948 qemu_add_opts(&qemu_netdev_opts);
2949 qemu_add_opts(&qemu_net_opts);
2950 qemu_add_opts(&qemu_rtc_opts);
2951 qemu_add_opts(&qemu_global_opts);
2952 qemu_add_opts(&qemu_mon_opts);
2953 qemu_add_opts(&qemu_trace_opts);
2954 qemu_add_opts(&qemu_option_rom_opts);
2955 qemu_add_opts(&qemu_machine_opts);
Michael Tokarev12b7f572013-06-24 15:06:52 +04002956 qemu_add_opts(&qemu_smp_opts);
Paolo Bonzini4d454572012-11-26 16:03:42 +01002957 qemu_add_opts(&qemu_boot_opts);
2958 qemu_add_opts(&qemu_sandbox_opts);
2959 qemu_add_opts(&qemu_add_fd_opts);
2960 qemu_add_opts(&qemu_object_opts);
Stefan Bergerd1a0cf72013-02-27 12:47:49 -05002961 qemu_add_opts(&qemu_tpmdev_opts);
Satoru Moriya888a6bc2013-04-19 16:42:06 +02002962 qemu_add_opts(&qemu_realtime_opts);
Seiji Aguchi5e2ac512013-07-03 23:02:46 -04002963 qemu_add_opts(&qemu_msg_opts);
Paolo Bonzini4d454572012-11-26 16:03:42 +01002964
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -03002965 runstate_init();
2966
Jan Kiszka68752042009-09-15 13:36:04 +02002967 init_clocks();
Paolo Bonzini2ff68d02011-09-12 16:21:44 +02002968 rtc_clock = host_clock;
Jan Kiszka68752042009-09-15 13:36:04 +02002969
malc902b3d52008-12-10 19:18:40 +00002970 qemu_cache_utils_init(envp);
2971
Blue Swirl72cf2d42009-09-12 07:36:22 +00002972 QLIST_INIT (&vm_change_state_head);
Jes Sorensenfe98ac12010-06-10 11:42:21 +02002973 os_setup_early_signal_handling();
bellardbe995c22006-06-25 16:25:21 +00002974
Anthony Liguorif80f9ec2009-05-20 18:38:09 -05002975 module_call_init(MODULE_INIT_MACHINE);
Anthony Liguori0c257432009-05-21 20:41:01 -05002976 machine = find_default_machine();
j_mayer94fc95c2007-03-05 19:44:02 +00002977 cpu_model = NULL;
aurel324fc5d072008-04-27 21:39:40 +00002978 ram_size = 0;
bellard33e39632003-07-06 17:15:21 +00002979 snapshot = 0;
malc9f227bc2012-08-27 18:33:22 +04002980 cyls = heads = secs = 0;
2981 translation = BIOS_ATA_TRANSLATION_AUTO;
bellardc4b1fcc2004-03-14 21:44:30 +00002982
aliguori268a3622009-04-21 22:30:27 +00002983 for (i = 0; i < MAX_NODES; i++) {
2984 node_mem[i] = 0;
Chegu Vinodee785fe2012-07-16 21:31:30 -07002985 node_cpumask[i] = bitmap_new(MAX_CPUMASK_BITS);
aliguori268a3622009-04-21 22:30:27 +00002986 }
2987
aliguori268a3622009-04-21 22:30:27 +00002988 nb_numa_nodes = 0;
bellard7c9d8e02005-11-15 22:16:05 +00002989 nb_nics = 0;
ths3b46e622007-09-17 08:09:54 +00002990
Peter Lieven142c6b12013-03-21 13:07:10 +01002991 bdrv_init_with_whitelist();
2992
blueswir141bd6392008-10-05 09:56:21 +00002993 autostart= 1;
2994
Anthony Liguori292444c2010-01-21 10:57:58 -06002995 /* first pass of option parsing */
2996 optind = 1;
2997 while (optind < argc) {
2998 if (argv[optind][0] != '-') {
2999 /* disk image */
Anthony Liguori28e68d62010-01-27 10:46:00 -06003000 optind++;
Anthony Liguori292444c2010-01-21 10:57:58 -06003001 continue;
3002 } else {
3003 const QEMUOption *popt;
3004
3005 popt = lookup_opt(argc, argv, &optarg, &optind);
3006 switch (popt->index) {
3007 case QEMU_OPTION_nodefconfig:
Eduardo Habkost3ed2d9e2012-05-02 13:07:28 -03003008 defconfig = false;
Anthony Liguori292444c2010-01-21 10:57:58 -06003009 break;
Eduardo Habkostf29a5612012-05-02 13:07:29 -03003010 case QEMU_OPTION_nouserconfig:
3011 userconfig = false;
3012 break;
Anthony Liguori292444c2010-01-21 10:57:58 -06003013 }
3014 }
3015 }
3016
3017 if (defconfig) {
Kevin Wolfdcfb0932010-03-05 17:25:55 +01003018 int ret;
Eduardo Habkostf29a5612012-05-02 13:07:29 -03003019 ret = qemu_read_default_config_files(userconfig);
Eduardo Habkostb5a8fe52012-05-02 13:07:25 -03003020 if (ret < 0) {
Kevin Wolfdcfb0932010-03-05 17:25:55 +01003021 exit(1);
Anthony Liguori292444c2010-01-21 10:57:58 -06003022 }
3023 }
3024
3025 /* second pass of option parsing */
bellardcd6f1162004-05-13 22:02:20 +00003026 optind = 1;
bellard0824d6f2003-06-24 13:42:40 +00003027 for(;;) {
bellardcd6f1162004-05-13 22:02:20 +00003028 if (optind >= argc)
bellard0824d6f2003-06-24 13:42:40 +00003029 break;
Anthony Liguori6530a972010-01-22 09:18:06 -06003030 if (argv[optind][0] != '-') {
malc9f227bc2012-08-27 18:33:22 +04003031 hda_opts = drive_add(IF_DEFAULT, 0, argv[optind++], HD_OPTS);
bellardcd6f1162004-05-13 22:02:20 +00003032 } else {
3033 const QEMUOption *popt;
3034
Anthony Liguori6530a972010-01-22 09:18:06 -06003035 popt = lookup_opt(argc, argv, &optarg, &optind);
Blue Swirlad960902010-03-29 19:23:52 +00003036 if (!(popt->arch_mask & arch_type)) {
3037 printf("Option %s not supported for this target\n", popt->name);
3038 exit(1);
3039 }
bellardcd6f1162004-05-13 22:02:20 +00003040 switch(popt->index) {
bellardcc1daa42005-06-05 14:49:17 +00003041 case QEMU_OPTION_M:
Jan Kiszka9052ea62011-07-23 12:38:37 +02003042 machine = machine_parse(optarg);
bellardcc1daa42005-06-05 14:49:17 +00003043 break;
Jan Kiszkae43d5942012-10-05 14:51:40 -03003044 case QEMU_OPTION_no_kvm_irqchip: {
3045 olist = qemu_find_opts("machine");
3046 qemu_opts_parse(olist, "kernel_irqchip=off", 0);
3047 break;
3048 }
j_mayer94fc95c2007-03-05 19:44:02 +00003049 case QEMU_OPTION_cpu:
3050 /* hw initialization will check this */
Eduardo Habkostecf40be2012-03-09 16:19:07 -03003051 cpu_model = optarg;
j_mayer94fc95c2007-03-05 19:44:02 +00003052 break;
bellardcd6f1162004-05-13 22:02:20 +00003053 case QEMU_OPTION_hda:
malc9f227bc2012-08-27 18:33:22 +04003054 {
3055 char buf[256];
3056 if (cyls == 0)
3057 snprintf(buf, sizeof(buf), "%s", HD_OPTS);
3058 else
3059 snprintf(buf, sizeof(buf),
3060 "%s,cyls=%d,heads=%d,secs=%d%s",
3061 HD_OPTS , cyls, heads, secs,
3062 translation == BIOS_ATA_TRANSLATION_LBA ?
3063 ",trans=lba" :
3064 translation == BIOS_ATA_TRANSLATION_NONE ?
3065 ",trans=none" : "");
3066 drive_add(IF_DEFAULT, 0, optarg, buf);
3067 break;
3068 }
bellardcd6f1162004-05-13 22:02:20 +00003069 case QEMU_OPTION_hdb:
bellardcc1daa42005-06-05 14:49:17 +00003070 case QEMU_OPTION_hdc:
3071 case QEMU_OPTION_hdd:
Markus Armbruster2292dda2011-01-28 11:21:41 +01003072 drive_add(IF_DEFAULT, popt->index - QEMU_OPTION_hda, optarg,
3073 HD_OPTS);
bellardfc01f7e2003-06-30 10:03:06 +00003074 break;
thse4bcb142007-12-02 04:51:10 +00003075 case QEMU_OPTION_drive:
Michael Tokareve2982c32011-03-30 16:31:05 +04003076 if (drive_def(optarg) == NULL) {
3077 exit(1);
3078 }
thse4bcb142007-12-02 04:51:10 +00003079 break;
Gerd Hoffmannd058fe02009-07-31 12:25:36 +02003080 case QEMU_OPTION_set:
3081 if (qemu_set_option(optarg) != 0)
3082 exit(1);
3083 break;
Gerd Hoffmannd0fef6f2009-12-08 13:11:34 +01003084 case QEMU_OPTION_global:
3085 if (qemu_global_option(optarg) != 0)
3086 exit(1);
3087 break;
balrog3e3d5812007-04-30 02:09:25 +00003088 case QEMU_OPTION_mtdblock:
Markus Armbruster2292dda2011-01-28 11:21:41 +01003089 drive_add(IF_MTD, -1, optarg, MTD_OPTS);
balrog3e3d5812007-04-30 02:09:25 +00003090 break;
pbrooka1bb27b2007-04-06 16:49:48 +00003091 case QEMU_OPTION_sd:
Peter Crosthwaite80f4d9f2013-02-28 18:23:14 +00003092 drive_add(IF_SD, -1, optarg, SD_OPTS);
pbrooka1bb27b2007-04-06 16:49:48 +00003093 break;
j_mayer86f55662007-04-24 06:52:59 +00003094 case QEMU_OPTION_pflash:
Markus Armbruster2292dda2011-01-28 11:21:41 +01003095 drive_add(IF_PFLASH, -1, optarg, PFLASH_OPTS);
j_mayer86f55662007-04-24 06:52:59 +00003096 break;
bellardcd6f1162004-05-13 22:02:20 +00003097 case QEMU_OPTION_snapshot:
bellard33e39632003-07-06 17:15:21 +00003098 snapshot = 1;
3099 break;
bellardcd6f1162004-05-13 22:02:20 +00003100 case QEMU_OPTION_hdachs:
bellard330d0412003-07-26 18:11:40 +00003101 {
bellard330d0412003-07-26 18:11:40 +00003102 const char *p;
3103 p = optarg;
3104 cyls = strtol(p, (char **)&p, 0);
bellard46d47672004-11-16 01:45:27 +00003105 if (cyls < 1 || cyls > 16383)
3106 goto chs_fail;
bellard330d0412003-07-26 18:11:40 +00003107 if (*p != ',')
3108 goto chs_fail;
3109 p++;
3110 heads = strtol(p, (char **)&p, 0);
bellard46d47672004-11-16 01:45:27 +00003111 if (heads < 1 || heads > 16)
3112 goto chs_fail;
bellard330d0412003-07-26 18:11:40 +00003113 if (*p != ',')
3114 goto chs_fail;
3115 p++;
3116 secs = strtol(p, (char **)&p, 0);
bellard46d47672004-11-16 01:45:27 +00003117 if (secs < 1 || secs > 63)
3118 goto chs_fail;
3119 if (*p == ',') {
3120 p++;
3121 if (!strcmp(p, "none"))
3122 translation = BIOS_ATA_TRANSLATION_NONE;
3123 else if (!strcmp(p, "lba"))
3124 translation = BIOS_ATA_TRANSLATION_LBA;
3125 else if (!strcmp(p, "auto"))
3126 translation = BIOS_ATA_TRANSLATION_AUTO;
3127 else
3128 goto chs_fail;
3129 } else if (*p != '\0') {
bellardc4b1fcc2004-03-14 21:44:30 +00003130 chs_fail:
bellard46d47672004-11-16 01:45:27 +00003131 fprintf(stderr, "qemu: invalid physical CHS format\n");
3132 exit(1);
bellardc4b1fcc2004-03-14 21:44:30 +00003133 }
malc9f227bc2012-08-27 18:33:22 +04003134 if (hda_opts != NULL) {
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02003135 char num[16];
3136 snprintf(num, sizeof(num), "%d", cyls);
3137 qemu_opt_set(hda_opts, "cyls", num);
3138 snprintf(num, sizeof(num), "%d", heads);
3139 qemu_opt_set(hda_opts, "heads", num);
3140 snprintf(num, sizeof(num), "%d", secs);
3141 qemu_opt_set(hda_opts, "secs", num);
3142 if (translation == BIOS_ATA_TRANSLATION_LBA)
3143 qemu_opt_set(hda_opts, "trans", "lba");
3144 if (translation == BIOS_ATA_TRANSLATION_NONE)
3145 qemu_opt_set(hda_opts, "trans", "none");
3146 }
bellard330d0412003-07-26 18:11:40 +00003147 }
3148 break;
aliguori268a3622009-04-21 22:30:27 +00003149 case QEMU_OPTION_numa:
aliguori268a3622009-04-21 22:30:27 +00003150 numa_add(optarg);
3151 break;
Jes Sorensen1472a952011-03-16 13:33:31 +01003152 case QEMU_OPTION_display:
3153 display_type = select_display(optarg);
3154 break;
bellardcd6f1162004-05-13 22:02:20 +00003155 case QEMU_OPTION_nographic:
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003156 display_type = DT_NOGRAPHIC;
bellarda20dd502003-09-30 21:07:02 +00003157 break;
balrog4d3b6f62008-02-10 16:33:14 +00003158 case QEMU_OPTION_curses:
Jes Sorensen47b05362011-03-16 13:33:35 +01003159#ifdef CONFIG_CURSES
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003160 display_type = DT_CURSES;
Jes Sorensen47b05362011-03-16 13:33:35 +01003161#else
3162 fprintf(stderr, "Curses support is disabled\n");
3163 exit(1);
balrog4d3b6f62008-02-10 16:33:14 +00003164#endif
Jes Sorensen47b05362011-03-16 13:33:35 +01003165 break;
balroga171fe32007-04-30 01:48:07 +00003166 case QEMU_OPTION_portrait:
Vasily Khoruzhick93128052011-06-17 13:04:36 +03003167 graphic_rotate = 90;
3168 break;
3169 case QEMU_OPTION_rotate:
3170 graphic_rotate = strtol(optarg, (char **) &optarg, 10);
3171 if (graphic_rotate != 0 && graphic_rotate != 90 &&
3172 graphic_rotate != 180 && graphic_rotate != 270) {
3173 fprintf(stderr,
3174 "qemu: only 90, 180, 270 deg rotation is available\n");
3175 exit(1);
3176 }
balroga171fe32007-04-30 01:48:07 +00003177 break;
bellardcd6f1162004-05-13 22:02:20 +00003178 case QEMU_OPTION_kernel:
Peter Maydella0abe472012-02-08 05:41:39 +00003179 qemu_opts_set(qemu_find_opts("machine"), 0, "kernel", optarg);
3180 break;
3181 case QEMU_OPTION_initrd:
3182 qemu_opts_set(qemu_find_opts("machine"), 0, "initrd", optarg);
bellarda20dd502003-09-30 21:07:02 +00003183 break;
bellardcd6f1162004-05-13 22:02:20 +00003184 case QEMU_OPTION_append:
Peter Maydella0abe472012-02-08 05:41:39 +00003185 qemu_opts_set(qemu_find_opts("machine"), 0, "append", optarg);
bellard313aa562003-08-10 21:52:11 +00003186 break;
Grant Likely412beee2012-03-02 11:56:38 +00003187 case QEMU_OPTION_dtb:
3188 qemu_opts_set(qemu_find_opts("machine"), 0, "dtb", optarg);
3189 break;
bellardcd6f1162004-05-13 22:02:20 +00003190 case QEMU_OPTION_cdrom:
Markus Armbruster2292dda2011-01-28 11:21:41 +01003191 drive_add(IF_DEFAULT, 2, optarg, CDROM_OPTS);
bellard36b486b2003-11-11 13:36:08 +00003192 break;
bellardcd6f1162004-05-13 22:02:20 +00003193 case QEMU_OPTION_boot:
Markus Armbruster8281abd2013-06-14 13:15:03 +02003194 opts = qemu_opts_parse(qemu_find_opts("boot-opts"), optarg, 1);
3195 if (!opts) {
3196 exit(1);
bellard36b486b2003-11-11 13:36:08 +00003197 }
3198 break;
bellardcd6f1162004-05-13 22:02:20 +00003199 case QEMU_OPTION_fda:
bellardcd6f1162004-05-13 22:02:20 +00003200 case QEMU_OPTION_fdb:
Markus Armbruster2292dda2011-01-28 11:21:41 +01003201 drive_add(IF_FLOPPY, popt->index - QEMU_OPTION_fda,
3202 optarg, FD_OPTS);
bellardc45886d2004-01-05 00:02:06 +00003203 break;
bellard52ca8d62006-06-14 16:03:05 +00003204 case QEMU_OPTION_no_fd_bootchk:
3205 fd_bootchk = 0;
3206 break;
Mark McLoughlina1ea4582009-10-08 19:58:26 +01003207 case QEMU_OPTION_netdev:
Gerd Hoffmann3329f072010-08-20 13:52:01 +02003208 if (net_client_parse(qemu_find_opts("netdev"), optarg) == -1) {
Mark McLoughlina1ea4582009-10-08 19:58:26 +01003209 exit(1);
3210 }
3211 break;
bellard7c9d8e02005-11-15 22:16:05 +00003212 case QEMU_OPTION_net:
Gerd Hoffmann3329f072010-08-20 13:52:01 +02003213 if (net_client_parse(qemu_find_opts("net"), optarg) == -1) {
bellardc4b1fcc2004-03-14 21:44:30 +00003214 exit(1);
3215 }
bellard702c6512004-04-02 21:21:32 +00003216 break;
Ronnie Sahlbergf9dadc92012-01-26 09:39:02 +11003217#ifdef CONFIG_LIBISCSI
3218 case QEMU_OPTION_iscsi:
3219 opts = qemu_opts_parse(qemu_find_opts("iscsi"), optarg, 0);
3220 if (!opts) {
3221 exit(1);
3222 }
3223 break;
3224#endif
bellardc7f74642004-08-24 21:57:12 +00003225#ifdef CONFIG_SLIRP
3226 case QEMU_OPTION_tftp:
Jan Kiszkaad196a92009-06-24 14:42:28 +02003227 legacy_tftp_prefix = optarg;
bellard9bf05442004-08-25 22:12:49 +00003228 break;
ths47d5d012007-02-20 00:05:08 +00003229 case QEMU_OPTION_bootp:
Jan Kiszkaad196a92009-06-24 14:42:28 +02003230 legacy_bootp_filename = optarg;
ths47d5d012007-02-20 00:05:08 +00003231 break;
bellard9bf05442004-08-25 22:12:49 +00003232 case QEMU_OPTION_redir:
Markus Armbruster07527062009-10-06 12:16:57 +01003233 if (net_slirp_redir(optarg) < 0)
3234 exit(1);
bellard9bf05442004-08-25 22:12:49 +00003235 break;
bellardc7f74642004-08-24 21:57:12 +00003236#endif
balrogdc72ac12008-11-09 00:04:26 +00003237 case QEMU_OPTION_bt:
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02003238 add_device_config(DEV_BT, optarg);
balrogdc72ac12008-11-09 00:04:26 +00003239 break;
bellard1d14ffa2005-10-30 18:58:22 +00003240 case QEMU_OPTION_audio_help:
3241 AUD_help ();
3242 exit (0);
3243 break;
3244 case QEMU_OPTION_soundhw:
3245 select_soundhw (optarg);
3246 break;
bellardcd6f1162004-05-13 22:02:20 +00003247 case QEMU_OPTION_h:
ths15f82202007-06-29 23:26:08 +00003248 help(0);
bellardcd6f1162004-05-13 22:02:20 +00003249 break;
pbrook9bd7e6d2009-04-07 22:58:45 +00003250 case QEMU_OPTION_version:
3251 version();
3252 exit(0);
3253 break;
aurel3200f82b82008-04-27 21:12:55 +00003254 case QEMU_OPTION_m: {
Jes Sorensen70b4f4b2011-01-05 11:41:02 +01003255 int64_t value;
Markus Armbrusterff961012012-08-15 13:12:19 +02003256 uint64_t sz;
Markus Armbruster961b42b2011-11-22 09:46:03 +01003257 char *end;
aurel3200f82b82008-04-27 21:12:55 +00003258
Markus Armbruster961b42b2011-11-22 09:46:03 +01003259 value = strtosz(optarg, &end);
3260 if (value < 0 || *end) {
aurel3200f82b82008-04-27 21:12:55 +00003261 fprintf(stderr, "qemu: invalid ram size: %s\n", optarg);
bellardcd6f1162004-05-13 22:02:20 +00003262 exit(1);
3263 }
Markus Armbrusterff961012012-08-15 13:12:19 +02003264 sz = QEMU_ALIGN_UP((uint64_t)value, 8192);
3265 ram_size = sz;
3266 if (ram_size != sz) {
aurel3200f82b82008-04-27 21:12:55 +00003267 fprintf(stderr, "qemu: ram size too large\n");
3268 exit(1);
3269 }
bellardcd6f1162004-05-13 22:02:20 +00003270 break;
aurel3200f82b82008-04-27 21:12:55 +00003271 }
Stefan Bergerd1a0cf72013-02-27 12:47:49 -05003272#ifdef CONFIG_TPM
3273 case QEMU_OPTION_tpmdev:
3274 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg) < 0) {
3275 exit(1);
3276 }
3277 break;
3278#endif
Marcelo Tosattic9027602010-03-01 20:25:08 -03003279 case QEMU_OPTION_mempath:
3280 mem_path = optarg;
3281 break;
3282#ifdef MAP_POPULATE
3283 case QEMU_OPTION_mem_prealloc:
3284 mem_prealloc = 1;
3285 break;
3286#endif
bellardcd6f1162004-05-13 22:02:20 +00003287 case QEMU_OPTION_d:
Matthew Fernandezc235d732011-06-07 16:32:40 +00003288 log_mask = optarg;
3289 break;
3290 case QEMU_OPTION_D:
3291 log_file = optarg;
bellardcd6f1162004-05-13 22:02:20 +00003292 break;
bellardcd6f1162004-05-13 22:02:20 +00003293 case QEMU_OPTION_s:
Markus Armbrusteref0c4a02012-02-07 15:09:13 +01003294 add_device_config(DEV_GDB, "tcp::" DEFAULT_GDBSTUB_PORT);
bellardcd6f1162004-05-13 22:02:20 +00003295 break;
aliguori59030a82009-04-05 18:43:41 +00003296 case QEMU_OPTION_gdb:
Markus Armbrusteref0c4a02012-02-07 15:09:13 +01003297 add_device_config(DEV_GDB, optarg);
bellardcd6f1162004-05-13 22:02:20 +00003298 break;
bellardcd6f1162004-05-13 22:02:20 +00003299 case QEMU_OPTION_L:
Gerd Hoffmann45240512013-03-08 11:42:24 +01003300 if (data_dir_idx < ARRAY_SIZE(data_dir)) {
3301 data_dir[data_dir_idx++] = optarg;
3302 }
bellardcd6f1162004-05-13 22:02:20 +00003303 break;
j_mayer1192dad2007-10-05 13:08:35 +00003304 case QEMU_OPTION_bios:
3305 bios_name = optarg;
3306 break;
aurel321b530a62009-04-05 20:08:59 +00003307 case QEMU_OPTION_singlestep:
3308 singlestep = 1;
3309 break;
bellardcd6f1162004-05-13 22:02:20 +00003310 case QEMU_OPTION_S:
pbrook3c07f8e2007-01-21 16:47:01 +00003311 autostart = 0;
bellardcd6f1162004-05-13 22:02:20 +00003312 break;
bellard3d11d0e2004-12-12 16:56:30 +00003313 case QEMU_OPTION_k:
3314 keyboard_layout = optarg;
3315 break;
bellardee22c2f2004-06-03 12:49:50 +00003316 case QEMU_OPTION_localtime:
3317 rtc_utc = 0;
3318 break;
malc3893c122008-09-28 00:42:05 +00003319 case QEMU_OPTION_vga:
Blue Swirla369da52011-09-27 19:15:42 +00003320 vga_model = optarg;
Paolo Bonzini7f1b17f2012-05-10 09:39:17 +02003321 default_vga = 0;
bellard1bfe8562004-07-08 21:17:50 +00003322 break;
bellarde9b137c2004-06-21 16:46:10 +00003323 case QEMU_OPTION_g:
3324 {
3325 const char *p;
3326 int w, h, depth;
3327 p = optarg;
3328 w = strtol(p, (char **)&p, 10);
3329 if (w <= 0) {
3330 graphic_error:
3331 fprintf(stderr, "qemu: invalid resolution or depth\n");
3332 exit(1);
3333 }
3334 if (*p != 'x')
3335 goto graphic_error;
3336 p++;
3337 h = strtol(p, (char **)&p, 10);
3338 if (h <= 0)
3339 goto graphic_error;
3340 if (*p == 'x') {
3341 p++;
3342 depth = strtol(p, (char **)&p, 10);
ths5fafdf22007-09-16 21:08:06 +00003343 if (depth != 8 && depth != 15 && depth != 16 &&
bellarde9b137c2004-06-21 16:46:10 +00003344 depth != 24 && depth != 32)
3345 goto graphic_error;
3346 } else if (*p == '\0') {
3347 depth = graphic_depth;
3348 } else {
3349 goto graphic_error;
3350 }
ths3b46e622007-09-17 08:09:54 +00003351
bellarde9b137c2004-06-21 16:46:10 +00003352 graphic_width = w;
3353 graphic_height = h;
3354 graphic_depth = depth;
3355 }
3356 break;
ths20d8a3e2007-02-18 17:04:49 +00003357 case QEMU_OPTION_echr:
3358 {
3359 char *r;
3360 term_escape_char = strtol(optarg, &r, 0);
3361 if (r == optarg)
3362 printf("Bad argument to echr\n");
3363 break;
3364 }
bellard82c643f2004-07-14 17:28:13 +00003365 case QEMU_OPTION_monitor:
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01003366 default_monitor = 0;
Luiz Capitulino70e098a2013-05-16 12:02:55 -04003367 if (strncmp(optarg, "none", 4)) {
3368 monitor_parse(optarg, "readline");
3369 }
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01003370 break;
3371 case QEMU_OPTION_qmp:
3372 monitor_parse(optarg, "control");
Anthony Liguori2d114dc2010-03-21 14:14:38 -05003373 default_monitor = 0;
bellard82c643f2004-07-14 17:28:13 +00003374 break;
Gerd Hoffmann22a0e042009-12-08 13:11:51 +01003375 case QEMU_OPTION_mon:
Gerd Hoffmann3329f072010-08-20 13:52:01 +02003376 opts = qemu_opts_parse(qemu_find_opts("mon"), optarg, 1);
Gerd Hoffmann22a0e042009-12-08 13:11:51 +01003377 if (!opts) {
Gerd Hoffmann22a0e042009-12-08 13:11:51 +01003378 exit(1);
3379 }
Anthony Liguori2d114dc2010-03-21 14:14:38 -05003380 default_monitor = 0;
Gerd Hoffmann22a0e042009-12-08 13:11:51 +01003381 break;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003382 case QEMU_OPTION_chardev:
Gerd Hoffmann3329f072010-08-20 13:52:01 +02003383 opts = qemu_opts_parse(qemu_find_opts("chardev"), optarg, 1);
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003384 if (!opts) {
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003385 exit(1);
3386 }
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003387 break;
Gautham R Shenoy74db9202010-04-29 17:44:43 +05303388 case QEMU_OPTION_fsdev:
Gerd Hoffmann03b0ba72010-08-20 13:52:02 +02003389 olist = qemu_find_opts("fsdev");
3390 if (!olist) {
3391 fprintf(stderr, "fsdev is not supported by this qemu build.\n");
3392 exit(1);
3393 }
3394 opts = qemu_opts_parse(olist, optarg, 1);
Gautham R Shenoy74db9202010-04-29 17:44:43 +05303395 if (!opts) {
Gautham R Shenoy74db9202010-04-29 17:44:43 +05303396 exit(1);
3397 }
3398 break;
Gautham R Shenoy3d54abc2010-04-29 17:45:03 +05303399 case QEMU_OPTION_virtfs: {
Stefan Hajnoczie14ea472011-03-16 08:31:43 +00003400 QemuOpts *fsdev;
3401 QemuOpts *device;
M. Mohan Kumar84a87cc2011-12-14 13:58:47 +05303402 const char *writeout, *sock_fd, *socket;
Gautham R Shenoy3d54abc2010-04-29 17:45:03 +05303403
Gerd Hoffmann03b0ba72010-08-20 13:52:02 +02003404 olist = qemu_find_opts("virtfs");
3405 if (!olist) {
3406 fprintf(stderr, "virtfs is not supported by this qemu build.\n");
3407 exit(1);
3408 }
3409 opts = qemu_opts_parse(olist, optarg, 1);
Gautham R Shenoy3d54abc2010-04-29 17:45:03 +05303410 if (!opts) {
Gautham R Shenoy3d54abc2010-04-29 17:45:03 +05303411 exit(1);
3412 }
3413
Aneesh Kumar K.Vfbcbf102011-10-13 12:28:04 +05303414 if (qemu_opt_get(opts, "fsdriver") == NULL ||
Aneesh Kumar K.V99519f02011-12-14 13:48:59 +05303415 qemu_opt_get(opts, "mount_tag") == NULL) {
3416 fprintf(stderr, "Usage: -virtfs fsdriver,mount_tag=tag.\n");
Venkateswararao Jujjuri (JV)9ce56db2010-06-14 13:34:40 -07003417 exit(1);
3418 }
Stefan Hajnoczie14ea472011-03-16 08:31:43 +00003419 fsdev = qemu_opts_create(qemu_find_opts("fsdev"),
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03003420 qemu_opt_get(opts, "mount_tag"),
3421 1, NULL);
Stefan Hajnoczie14ea472011-03-16 08:31:43 +00003422 if (!fsdev) {
3423 fprintf(stderr, "duplicate fsdev id: %s\n",
3424 qemu_opt_get(opts, "mount_tag"));
Gautham R Shenoy3d54abc2010-04-29 17:45:03 +05303425 exit(1);
3426 }
Aneesh Kumar K.Vd3ab98e2011-10-12 19:11:23 +05303427
3428 writeout = qemu_opt_get(opts, "writeout");
3429 if (writeout) {
3430#ifdef CONFIG_SYNC_FILE_RANGE
3431 qemu_opt_set(fsdev, "writeout", writeout);
3432#else
3433 fprintf(stderr, "writeout=immediate not supported on "
3434 "this platform\n");
3435 exit(1);
3436#endif
3437 }
Aneesh Kumar K.Vfbcbf102011-10-13 12:28:04 +05303438 qemu_opt_set(fsdev, "fsdriver", qemu_opt_get(opts, "fsdriver"));
Stefan Hajnoczie14ea472011-03-16 08:31:43 +00003439 qemu_opt_set(fsdev, "path", qemu_opt_get(opts, "path"));
3440 qemu_opt_set(fsdev, "security_model",
3441 qemu_opt_get(opts, "security_model"));
M. Mohan Kumar84a87cc2011-12-14 13:58:47 +05303442 socket = qemu_opt_get(opts, "socket");
3443 if (socket) {
3444 qemu_opt_set(fsdev, "socket", socket);
3445 }
M. Mohan Kumar4c793dd2011-12-14 13:49:28 +05303446 sock_fd = qemu_opt_get(opts, "sock_fd");
3447 if (sock_fd) {
3448 qemu_opt_set(fsdev, "sock_fd", sock_fd);
3449 }
Gautham R Shenoy3d54abc2010-04-29 17:45:03 +05303450
M. Mohan Kumar2c74c2c2011-10-25 12:10:39 +05303451 qemu_opt_set_bool(fsdev, "readonly",
3452 qemu_opt_get_bool(opts, "readonly", 0));
Dong Xu Wange478b442012-12-06 14:47:22 +08003453 device = qemu_opts_create_nofail(qemu_find_opts("device"));
Stefan Hajnoczie14ea472011-03-16 08:31:43 +00003454 qemu_opt_set(device, "driver", "virtio-9p-pci");
3455 qemu_opt_set(device, "fsdev",
3456 qemu_opt_get(opts, "mount_tag"));
3457 qemu_opt_set(device, "mount_tag",
3458 qemu_opt_get(opts, "mount_tag"));
Gautham R Shenoy3d54abc2010-04-29 17:45:03 +05303459 break;
3460 }
Aneesh Kumar K.V9db221a2011-10-25 12:10:40 +05303461 case QEMU_OPTION_virtfs_synth: {
3462 QemuOpts *fsdev;
3463 QemuOpts *device;
3464
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03003465 fsdev = qemu_opts_create(qemu_find_opts("fsdev"), "v_synth",
3466 1, NULL);
Aneesh Kumar K.V9db221a2011-10-25 12:10:40 +05303467 if (!fsdev) {
3468 fprintf(stderr, "duplicate option: %s\n", "virtfs_synth");
3469 exit(1);
3470 }
3471 qemu_opt_set(fsdev, "fsdriver", "synth");
Aneesh Kumar K.V9db221a2011-10-25 12:10:40 +05303472
Dong Xu Wange478b442012-12-06 14:47:22 +08003473 device = qemu_opts_create_nofail(qemu_find_opts("device"));
Aneesh Kumar K.V9db221a2011-10-25 12:10:40 +05303474 qemu_opt_set(device, "driver", "virtio-9p-pci");
3475 qemu_opt_set(device, "fsdev", "v_synth");
3476 qemu_opt_set(device, "mount_tag", "v_synth");
3477 break;
3478 }
bellard82c643f2004-07-14 17:28:13 +00003479 case QEMU_OPTION_serial:
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01003480 add_device_config(DEV_SERIAL, optarg);
3481 default_serial = 0;
Jan Kiszka18141ed2010-03-07 11:28:40 +01003482 if (strncmp(optarg, "mon:", 4) == 0) {
3483 default_monitor = 0;
3484 }
bellard82c643f2004-07-14 17:28:13 +00003485 break;
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01003486 case QEMU_OPTION_watchdog:
Markus Armbruster09aaa162009-08-21 10:31:34 +02003487 if (watchdog) {
3488 fprintf(stderr,
3489 "qemu: only one watchdog option may be given\n");
3490 return 1;
3491 }
3492 watchdog = optarg;
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01003493 break;
3494 case QEMU_OPTION_watchdog_action:
3495 if (select_watchdog_action(optarg) == -1) {
3496 fprintf(stderr, "Unknown -watchdog-action parameter\n");
3497 exit(1);
3498 }
3499 break;
aliguori51ecf132009-01-15 20:06:40 +00003500 case QEMU_OPTION_virtiocon:
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01003501 add_device_config(DEV_VIRTCON, optarg);
3502 default_virtcon = 0;
Jan Kiszka18141ed2010-03-07 11:28:40 +01003503 if (strncmp(optarg, "mon:", 4) == 0) {
3504 default_monitor = 0;
3505 }
aliguori51ecf132009-01-15 20:06:40 +00003506 break;
bellard6508fe52005-01-15 12:02:56 +00003507 case QEMU_OPTION_parallel:
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01003508 add_device_config(DEV_PARALLEL, optarg);
3509 default_parallel = 0;
Jan Kiszka18141ed2010-03-07 11:28:40 +01003510 if (strncmp(optarg, "mon:", 4) == 0) {
3511 default_monitor = 0;
3512 }
bellard6508fe52005-01-15 12:02:56 +00003513 break;
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08003514 case QEMU_OPTION_debugcon:
3515 add_device_config(DEV_DEBUGCON, optarg);
3516 break;
bellardd63d3072004-10-03 13:29:03 +00003517 case QEMU_OPTION_loadvm:
3518 loadvm = optarg;
3519 break;
3520 case QEMU_OPTION_full_screen:
3521 full_screen = 1;
3522 break;
ths43523e92007-02-18 18:19:32 +00003523 case QEMU_OPTION_no_frame:
3524 no_frame = 1;
3525 break;
ths3780e192007-06-21 21:08:02 +00003526 case QEMU_OPTION_alt_grab:
3527 alt_grab = 1;
3528 break;
Dustin Kirkland0ca9f8a2009-09-17 15:48:04 -05003529 case QEMU_OPTION_ctrl_grab:
3530 ctrl_grab = 1;
3531 break;
ths667acca2006-12-11 02:08:05 +00003532 case QEMU_OPTION_no_quit:
3533 no_quit = 1;
3534 break;
aliguori7d957bd2009-01-15 22:14:11 +00003535 case QEMU_OPTION_sdl:
Michael Tokarev24f6ff82013-06-15 14:44:20 +04003536#ifdef CONFIG_SDL
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003537 display_type = DT_SDL;
aliguori7d957bd2009-01-15 22:14:11 +00003538 break;
Jes Sorensen58fc0962011-03-16 13:33:34 +01003539#else
Jes Sorensen58fc0962011-03-16 13:33:34 +01003540 fprintf(stderr, "SDL support is disabled\n");
3541 exit(1);
ths667acca2006-12-11 02:08:05 +00003542#endif
bellardf7cce892004-12-08 22:21:25 +00003543 case QEMU_OPTION_pidfile:
ths93815bc2007-03-19 15:58:31 +00003544 pid_file = optarg;
bellardf7cce892004-12-08 22:21:25 +00003545 break;
bellarda09db212005-04-30 16:10:35 +00003546 case QEMU_OPTION_win2k_hack:
3547 win2k_install_hack = 1;
3548 break;
Jan Kiszka433acf02012-01-23 20:15:12 +01003549 case QEMU_OPTION_rtc_td_hack: {
3550 static GlobalProperty slew_lost_ticks[] = {
3551 {
3552 .driver = "mc146818rtc",
3553 .property = "lost_tick_policy",
3554 .value = "slew",
3555 },
3556 { /* end of list */ }
3557 };
3558
3559 qdev_prop_register_global_list(slew_lost_ticks);
aliguori73822ec2009-01-15 20:11:34 +00003560 break;
Jan Kiszka433acf02012-01-23 20:15:12 +01003561 }
aliguori8a92ea22009-02-27 20:12:36 +00003562 case QEMU_OPTION_acpitable:
Laszlo Ersek0c764a92013-03-21 00:23:17 +01003563 opts = qemu_opts_parse(qemu_find_opts("acpi"), optarg, 1);
3564 g_assert(opts != NULL);
3565 do_acpitable_option(opts);
aliguori8a92ea22009-02-27 20:12:36 +00003566 break;
aliguorib6f6e3d2009-04-17 18:59:56 +00003567 case QEMU_OPTION_smbios:
Blue Swirlde06f8d2010-03-29 19:23:50 +00003568 do_smbios_option(optarg);
aliguorib6f6e3d2009-04-17 18:59:56 +00003569 break;
aliguori7ba1e612008-11-05 16:04:33 +00003570 case QEMU_OPTION_enable_kvm:
Anthony PERARD303d4e82010-09-21 20:05:31 +01003571 olist = qemu_find_opts("machine");
Anthony PERARD303d4e82010-09-21 20:05:31 +01003572 qemu_opts_parse(olist, "accel=kvm", 0);
3573 break;
3574 case QEMU_OPTION_machine:
3575 olist = qemu_find_opts("machine");
Jan Kiszka9052ea62011-07-23 12:38:37 +02003576 opts = qemu_opts_parse(olist, optarg, 1);
Anthony PERARD303d4e82010-09-21 20:05:31 +01003577 if (!opts) {
Anthony PERARD303d4e82010-09-21 20:05:31 +01003578 exit(1);
3579 }
Jan Kiszka2645c6d2011-07-25 18:11:20 +02003580 optarg = qemu_opt_get(opts, "type");
3581 if (optarg) {
3582 machine = machine_parse(optarg);
3583 }
aliguori7ba1e612008-11-05 16:04:33 +00003584 break;
Jan Kiszkaa0dac022012-10-05 14:51:45 -03003585 case QEMU_OPTION_no_kvm:
3586 olist = qemu_find_opts("machine");
3587 qemu_opts_parse(olist, "accel=tcg", 0);
3588 break;
Jan Kiszka4086bde2012-10-05 14:51:41 -03003589 case QEMU_OPTION_no_kvm_pit: {
3590 fprintf(stderr, "Warning: KVM PIT can no longer be disabled "
3591 "separately.\n");
3592 break;
3593 }
Jan Kiszkac21fb4f2012-10-05 14:51:42 -03003594 case QEMU_OPTION_no_kvm_pit_reinjection: {
3595 static GlobalProperty kvm_pit_lost_tick_policy[] = {
3596 {
3597 .driver = "kvm-pit",
3598 .property = "lost_tick_policy",
3599 .value = "discard",
3600 },
3601 { /* end of list */ }
3602 };
3603
3604 fprintf(stderr, "Warning: option deprecated, use "
3605 "lost_tick_policy property of kvm-pit instead.\n");
3606 qdev_prop_register_global_list(kvm_pit_lost_tick_policy);
3607 break;
3608 }
bellardbb36d472005-11-05 14:22:28 +00003609 case QEMU_OPTION_usb:
Peter Maydellfa5358c2012-11-22 16:48:45 +00003610 olist = qemu_find_opts("machine");
3611 qemu_opts_parse(olist, "usb=on", 0);
bellardbb36d472005-11-05 14:22:28 +00003612 break;
bellarda594cfb2005-11-06 16:13:29 +00003613 case QEMU_OPTION_usbdevice:
Peter Maydellfa5358c2012-11-22 16:48:45 +00003614 olist = qemu_find_opts("machine");
3615 qemu_opts_parse(olist, "usb=on", 0);
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02003616 add_device_config(DEV_USB, optarg);
3617 break;
3618 case QEMU_OPTION_device:
Gerd Hoffmann3329f072010-08-20 13:52:01 +02003619 if (!qemu_opts_parse(qemu_find_opts("device"), optarg, 1)) {
Gerd Hoffmannf31d07d2009-07-31 12:25:37 +02003620 exit(1);
3621 }
bellarda594cfb2005-11-06 16:13:29 +00003622 break;
bellard6a00d602005-11-21 23:25:50 +00003623 case QEMU_OPTION_smp:
Michael Tokarev12b7f572013-06-24 15:06:52 +04003624 if (!qemu_opts_parse(qemu_find_opts("smp-opts"), optarg, 1)) {
Jes Sorensen6be68d72009-07-23 17:03:42 +02003625 exit(1);
3626 }
bellard6a00d602005-11-21 23:25:50 +00003627 break;
bellard24236862006-04-30 21:28:36 +00003628 case QEMU_OPTION_vnc:
Jes Sorensen821601e2011-03-16 13:33:36 +01003629#ifdef CONFIG_VNC
Gerd Hoffmann6b62dc22010-08-25 10:51:06 +02003630 display_remote++;
Jes Sorensen821601e2011-03-16 13:33:36 +01003631 vnc_display = optarg;
3632#else
3633 fprintf(stderr, "VNC support is disabled\n");
3634 exit(1);
3635#endif
3636 break;
bellard6515b202006-05-03 22:02:44 +00003637 case QEMU_OPTION_no_acpi:
3638 acpi_enabled = 0;
3639 break;
aliguori16b29ae2008-12-17 23:28:44 +00003640 case QEMU_OPTION_no_hpet:
3641 no_hpet = 1;
3642 break;
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02003643 case QEMU_OPTION_balloon:
3644 if (balloon_parse(optarg) < 0) {
3645 fprintf(stderr, "Unknown -balloon argument %s\n", optarg);
3646 exit(1);
3647 }
Eduardo Habkostdf97b922009-06-10 16:34:08 -03003648 break;
bellardd1beab82006-10-02 19:44:22 +00003649 case QEMU_OPTION_no_reboot:
3650 no_reboot = 1;
3651 break;
aurel32b2f76162008-04-11 21:35:52 +00003652 case QEMU_OPTION_no_shutdown:
3653 no_shutdown = 1;
3654 break;
balrog9467cd42007-05-01 01:34:14 +00003655 case QEMU_OPTION_show_cursor:
3656 cursor_hide = 0;
3657 break;
blueswir18fcb1b92008-09-18 18:29:08 +00003658 case QEMU_OPTION_uuid:
3659 if(qemu_uuid_parse(optarg, qemu_uuid) < 0) {
3660 fprintf(stderr, "Fail to parse UUID string."
3661 " Wrong format.\n");
3662 exit(1);
3663 }
3664 break;
ths9ae02552007-01-05 17:39:04 +00003665 case QEMU_OPTION_option_rom:
3666 if (nb_option_roms >= MAX_OPTION_ROMS) {
3667 fprintf(stderr, "Too many option ROMs\n");
3668 exit(1);
3669 }
Gleb Natapov2e55e842010-12-08 13:35:07 +02003670 opts = qemu_opts_parse(qemu_find_opts("option-rom"), optarg, 1);
Markus Armbruster49295eb2013-02-08 21:22:19 +01003671 if (!opts) {
3672 exit(1);
3673 }
Gleb Natapov2e55e842010-12-08 13:35:07 +02003674 option_rom[nb_option_roms].name = qemu_opt_get(opts, "romfile");
3675 option_rom[nb_option_roms].bootindex =
3676 qemu_opt_get_number(opts, "bootindex", -1);
3677 if (!option_rom[nb_option_roms].name) {
3678 fprintf(stderr, "Option ROM file is not specified\n");
3679 exit(1);
3680 }
ths9ae02552007-01-05 17:39:04 +00003681 nb_option_roms++;
3682 break;
pbrook8e716212007-01-20 17:12:09 +00003683 case QEMU_OPTION_semihosting:
3684 semihosting_enabled = 1;
3685 break;
Jan Kiszka88eed342012-10-05 14:51:44 -03003686 case QEMU_OPTION_tdf:
3687 fprintf(stderr, "Warning: user space PIT time drift fix "
3688 "is no longer supported.\n");
3689 break;
thsc35734b2007-03-19 15:17:08 +00003690 case QEMU_OPTION_name:
Anthony Liguori7267c092011-08-20 22:09:37 -05003691 qemu_name = g_strdup(optarg);
Andi Kleen18894652009-07-02 09:34:17 +02003692 {
3693 char *p = strchr(qemu_name, ',');
3694 if (p != NULL) {
3695 *p++ = 0;
3696 if (strncmp(p, "process=", 8)) {
Aurelien Jarno5697f6a2010-12-27 18:29:20 +01003697 fprintf(stderr, "Unknown subargument %s to -name\n", p);
Andi Kleen18894652009-07-02 09:34:17 +02003698 exit(1);
3699 }
3700 p += 8;
Jes Sorensence798cf2010-06-10 11:42:31 +02003701 os_set_proc_name(p);
Laszlo Ersek4d8b3c62013-03-21 00:23:13 +01003702 }
3703 }
thsc35734b2007-03-19 15:17:08 +00003704 break;
blueswir166508602007-05-01 14:16:52 +00003705 case QEMU_OPTION_prom_env:
3706 if (nb_prom_envs >= MAX_PROM_ENVS) {
3707 fprintf(stderr, "Too many prom variables\n");
3708 exit(1);
3709 }
3710 prom_envs[nb_prom_envs] = optarg;
3711 nb_prom_envs++;
3712 break;
balrog2b8f2d42007-07-27 22:08:46 +00003713 case QEMU_OPTION_old_param:
3714 old_param = 1;
ths05ebd532008-01-08 19:32:16 +00003715 break;
thsf3dcfad2007-08-24 01:26:02 +00003716 case QEMU_OPTION_clock:
Alex Bligh6d327172013-08-21 16:02:59 +01003717 /* Clock options no longer exist. Keep this option for
3718 * backward compatibility.
3719 */
thsf3dcfad2007-08-24 01:26:02 +00003720 break;
bellard7e0af5d02007-11-07 16:24:33 +00003721 case QEMU_OPTION_startdate:
Jan Kiszka1ed2fc12009-09-15 13:36:04 +02003722 configure_rtc_date_offset(optarg, 1);
3723 break;
3724 case QEMU_OPTION_rtc:
Gerd Hoffmann3329f072010-08-20 13:52:01 +02003725 opts = qemu_opts_parse(qemu_find_opts("rtc"), optarg, 0);
Jan Kiszka1ed2fc12009-09-15 13:36:04 +02003726 if (!opts) {
Jan Kiszka1ed2fc12009-09-15 13:36:04 +02003727 exit(1);
bellard7e0af5d02007-11-07 16:24:33 +00003728 }
Jan Kiszka1ed2fc12009-09-15 13:36:04 +02003729 configure_rtc(opts);
bellard7e0af5d02007-11-07 16:24:33 +00003730 break;
bellard26a5f132008-05-28 12:30:31 +00003731 case QEMU_OPTION_tb_size:
Jan Kiszkad5ab9712011-08-02 16:10:21 +02003732 tcg_tb_size = strtol(optarg, NULL, 0);
3733 if (tcg_tb_size < 0) {
3734 tcg_tb_size = 0;
3735 }
bellard26a5f132008-05-28 12:30:31 +00003736 break;
pbrook2e70f6e2008-06-29 01:03:05 +00003737 case QEMU_OPTION_icount:
Paolo Bonzini4e3de9e2010-03-10 11:38:48 +01003738 icount_option = optarg;
pbrook2e70f6e2008-06-29 01:03:05 +00003739 break;
aliguori5bb79102008-10-13 03:12:02 +00003740 case QEMU_OPTION_incoming:
3741 incoming = optarg;
Stefano Stabellini81323a62012-01-18 12:23:13 +00003742 runstate_set(RUN_STATE_INMIGRATE);
aliguori5bb79102008-10-13 03:12:02 +00003743 break;
Gerd Hoffmannd8c208d2009-12-08 13:11:46 +01003744 case QEMU_OPTION_nodefaults:
3745 default_serial = 0;
3746 default_parallel = 0;
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01003747 default_virtcon = 0;
Christian Borntraeger2e788492013-01-25 06:00:19 +00003748 default_sclp = 0;
Gerd Hoffmannd8c208d2009-12-08 13:11:46 +01003749 default_monitor = 0;
Gerd Hoffmanncb4522c2009-12-08 13:11:47 +01003750 default_net = 0;
Gerd Hoffmannac33f8f2009-12-16 14:25:39 +01003751 default_floppy = 0;
3752 default_cdrom = 0;
3753 default_sdcard = 0;
Paolo Bonzini7f1b17f2012-05-10 09:39:17 +02003754 default_vga = 0;
Gerd Hoffmannd8c208d2009-12-08 13:11:46 +01003755 break;
aliguorie37630c2009-04-22 15:19:10 +00003756 case QEMU_OPTION_xen_domid:
Blue Swirlad960902010-03-29 19:23:52 +00003757 if (!(xen_available())) {
3758 printf("Option %s not supported for this target\n", popt->name);
3759 exit(1);
3760 }
aliguorie37630c2009-04-22 15:19:10 +00003761 xen_domid = atoi(optarg);
3762 break;
3763 case QEMU_OPTION_xen_create:
Blue Swirlad960902010-03-29 19:23:52 +00003764 if (!(xen_available())) {
3765 printf("Option %s not supported for this target\n", popt->name);
3766 exit(1);
3767 }
aliguorie37630c2009-04-22 15:19:10 +00003768 xen_mode = XEN_CREATE;
3769 break;
3770 case QEMU_OPTION_xen_attach:
Blue Swirlad960902010-03-29 19:23:52 +00003771 if (!(xen_available())) {
3772 printf("Option %s not supported for this target\n", popt->name);
3773 exit(1);
3774 }
aliguorie37630c2009-04-22 15:19:10 +00003775 xen_mode = XEN_ATTACH;
3776 break;
Prerna Saxenaab6540d2010-08-09 11:48:32 +01003777 case QEMU_OPTION_trace:
Lluíse4858972011-08-31 20:31:03 +02003778 {
Prerna Saxenaab6540d2010-08-09 11:48:32 +01003779 opts = qemu_opts_parse(qemu_find_opts("trace"), optarg, 0);
Lluíse4858972011-08-31 20:31:03 +02003780 if (!opts) {
3781 exit(1);
Prerna Saxenaab6540d2010-08-09 11:48:32 +01003782 }
Lluís23d15e82011-08-31 20:31:31 +02003783 trace_events = qemu_opt_get(opts, "events");
Lluíse4858972011-08-31 20:31:03 +02003784 trace_file = qemu_opt_get(opts, "file");
Prerna Saxenaab6540d2010-08-09 11:48:32 +01003785 break;
Lluíse4858972011-08-31 20:31:03 +02003786 }
Gerd Hoffmann715a6642009-10-14 10:39:28 +02003787 case QEMU_OPTION_readconfig:
3788 {
Kevin Wolfdcfb0932010-03-05 17:25:55 +01003789 int ret = qemu_read_config_file(optarg);
3790 if (ret < 0) {
3791 fprintf(stderr, "read config %s: %s\n", optarg,
3792 strerror(-ret));
Gerd Hoffmann715a6642009-10-14 10:39:28 +02003793 exit(1);
3794 }
Gerd Hoffmann715a6642009-10-14 10:39:28 +02003795 break;
3796 }
Gerd Hoffmann29b00402010-03-11 11:13:27 -03003797 case QEMU_OPTION_spice:
3798 olist = qemu_find_opts("spice");
3799 if (!olist) {
3800 fprintf(stderr, "spice is not supported by this qemu build.\n");
3801 exit(1);
3802 }
3803 opts = qemu_opts_parse(olist, optarg, 0);
3804 if (!opts) {
Gerd Hoffmann29b00402010-03-11 11:13:27 -03003805 exit(1);
3806 }
Gerd Hoffmannf963e4d2013-02-25 16:02:30 +01003807 display_remote++;
Gerd Hoffmann29b00402010-03-11 11:13:27 -03003808 break;
Gerd Hoffmann715a6642009-10-14 10:39:28 +02003809 case QEMU_OPTION_writeconfig:
3810 {
3811 FILE *fp;
3812 if (strcmp(optarg, "-") == 0) {
3813 fp = stdout;
3814 } else {
3815 fp = fopen(optarg, "w");
3816 if (fp == NULL) {
3817 fprintf(stderr, "open %s: %s\n", optarg, strerror(errno));
3818 exit(1);
3819 }
3820 }
3821 qemu_config_write(fp);
3822 fclose(fp);
3823 break;
3824 }
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +02003825 case QEMU_OPTION_qtest:
3826 qtest_chrdev = optarg;
3827 break;
3828 case QEMU_OPTION_qtest_log:
3829 qtest_log = optarg;
3830 break;
Eduardo Otubo7d76ad42012-08-14 18:44:08 -03003831 case QEMU_OPTION_sandbox:
3832 opts = qemu_opts_parse(qemu_find_opts("sandbox"), optarg, 1);
3833 if (!opts) {
Markus Armbruster49295eb2013-02-08 21:22:19 +01003834 exit(1);
Eduardo Otubo7d76ad42012-08-14 18:44:08 -03003835 }
3836 break;
Corey Bryant587ed6b2012-10-18 15:19:34 -04003837 case QEMU_OPTION_add_fd:
3838#ifndef _WIN32
3839 opts = qemu_opts_parse(qemu_find_opts("add-fd"), optarg, 0);
3840 if (!opts) {
Markus Armbruster49295eb2013-02-08 21:22:19 +01003841 exit(1);
Corey Bryant587ed6b2012-10-18 15:19:34 -04003842 }
3843#else
3844 error_report("File descriptor passing is disabled on this "
3845 "platform");
3846 exit(1);
3847#endif
3848 break;
Anthony Liguori68d98d32012-06-25 14:36:33 -05003849 case QEMU_OPTION_object:
3850 opts = qemu_opts_parse(qemu_find_opts("object"), optarg, 1);
Markus Armbruster49295eb2013-02-08 21:22:19 +01003851 if (!opts) {
3852 exit(1);
3853 }
Anthony Liguori68d98d32012-06-25 14:36:33 -05003854 break;
Satoru Moriya888a6bc2013-04-19 16:42:06 +02003855 case QEMU_OPTION_realtime:
3856 opts = qemu_opts_parse(qemu_find_opts("realtime"), optarg, 0);
3857 if (!opts) {
3858 exit(1);
3859 }
3860 configure_realtime(opts);
3861 break;
Seiji Aguchi5e2ac512013-07-03 23:02:46 -04003862 case QEMU_OPTION_msg:
3863 opts = qemu_opts_parse(qemu_find_opts("msg"), optarg, 0);
3864 if (!opts) {
3865 exit(1);
3866 }
3867 configure_msg(opts);
3868 break;
Jes Sorensen59a52642010-06-10 11:42:25 +02003869 default:
3870 os_parse_cmd_args(popt->index, optarg);
bellardcd6f1162004-05-13 22:02:20 +00003871 }
bellard0824d6f2003-06-24 13:42:40 +00003872 }
3873 }
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +01003874 loc_set_none();
bellard330d0412003-07-26 18:11:40 +00003875
Paolo Bonzini1c537862012-10-30 00:17:12 +01003876 if (qemu_init_main_loop()) {
3877 fprintf(stderr, "qemu_init_main_loop failed\n");
3878 exit(1);
3879 }
3880
Eduardo Otubo7d76ad42012-08-14 18:44:08 -03003881 if (qemu_opts_foreach(qemu_find_opts("sandbox"), parse_sandbox, NULL, 0)) {
3882 exit(1);
3883 }
3884
Corey Bryant587ed6b2012-10-18 15:19:34 -04003885#ifndef _WIN32
3886 if (qemu_opts_foreach(qemu_find_opts("add-fd"), parse_add_fd, NULL, 1)) {
3887 exit(1);
3888 }
3889
3890 if (qemu_opts_foreach(qemu_find_opts("add-fd"), cleanup_add_fd, NULL, 1)) {
3891 exit(1);
3892 }
3893#endif
3894
Dunrong Huangfb7c2692012-07-24 00:42:20 +08003895 if (machine == NULL) {
3896 fprintf(stderr, "No machine found.\n");
3897 exit(1);
3898 }
3899
Crístian Viana93bfef42012-05-30 00:35:51 -03003900 if (machine->hw_version) {
3901 qemu_set_version(machine->hw_version);
3902 }
3903
Anthony Liguori68d98d32012-06-25 14:36:33 -05003904 if (qemu_opts_foreach(qemu_find_opts("object"),
3905 object_create, NULL, 0) != 0) {
3906 exit(1);
3907 }
3908
Eduardo Habkostecf40be2012-03-09 16:19:07 -03003909 /* Init CPU def lists, based on config
3910 * - Must be called after all the qemu_read_config_file() calls
3911 * - Must be called before list_cpus()
3912 * - Must be called before machine->init()
3913 */
3914 cpudef_init();
3915
Peter Maydellc8057f92012-08-02 13:45:54 +01003916 if (cpu_model && is_help_option(cpu_model)) {
Eduardo Habkost1d6528a2012-03-21 09:33:40 -03003917 list_cpus(stdout, &fprintf, cpu_model);
Eduardo Habkostecf40be2012-03-09 16:19:07 -03003918 exit(0);
3919 }
3920
Matthew Fernandezc235d732011-06-07 16:32:40 +00003921 /* Open the logfile at this point, if necessary. We can't open the logfile
3922 * when encountering either of the logging options (-d or -D) because the
3923 * other one may be encountered later on the command line, changing the
3924 * location or level of logging.
3925 */
3926 if (log_mask) {
Peter Maydellb946bff2013-02-11 16:41:24 +00003927 int mask;
Matthew Fernandezc235d732011-06-07 16:32:40 +00003928 if (log_file) {
Peter Maydell9a7e5422013-02-11 16:41:20 +00003929 qemu_set_log_filename(log_file);
Matthew Fernandezc235d732011-06-07 16:32:40 +00003930 }
Peter Maydellb946bff2013-02-11 16:41:24 +00003931
3932 mask = qemu_str_to_log_mask(log_mask);
3933 if (!mask) {
3934 qemu_print_log_usage(stdout);
3935 exit(1);
3936 }
3937 qemu_set_log(mask);
Matthew Fernandezc235d732011-06-07 16:32:40 +00003938 }
3939
Lluís23d15e82011-08-31 20:31:31 +02003940 if (!trace_backend_init(trace_events, trace_file)) {
Lluíse4858972011-08-31 20:31:03 +02003941 exit(1);
Stefan Hajnoczi31d3c9b2011-03-13 20:14:30 +00003942 }
Stefan Hajnoczi0b5538c2011-02-26 18:38:39 +00003943
Paul Brook5cea8592009-05-30 00:52:44 +01003944 /* If no data_dir is specified then try to find it relative to the
3945 executable path. */
Gerd Hoffmann45240512013-03-08 11:42:24 +01003946 if (data_dir_idx < ARRAY_SIZE(data_dir)) {
3947 data_dir[data_dir_idx] = os_find_datadir(argv[0]);
3948 if (data_dir[data_dir_idx] != NULL) {
3949 data_dir_idx++;
3950 }
Paul Brook5cea8592009-05-30 00:52:44 +01003951 }
Stefan Weil60474fb2011-09-04 15:17:46 +02003952 /* If all else fails use the install path specified when building. */
Gerd Hoffmann45240512013-03-08 11:42:24 +01003953 if (data_dir_idx < ARRAY_SIZE(data_dir)) {
3954 data_dir[data_dir_idx++] = CONFIG_QEMU_DATADIR;
Paul Brook5cea8592009-05-30 00:52:44 +01003955 }
3956
Michael Tokarev12b7f572013-06-24 15:06:52 +04003957 smp_parse(qemu_opts_find(qemu_find_opts("smp-opts"), NULL));
Jes Sorensen6be68d72009-07-23 17:03:42 +02003958
balrog3d878ca2008-10-28 10:59:59 +00003959 machine->max_cpus = machine->max_cpus ?: 1; /* Default to UP */
aliguorib2097002008-10-07 20:39:39 +00003960 if (smp_cpus > machine->max_cpus) {
3961 fprintf(stderr, "Number of SMP cpus requested (%d), exceeds max cpus "
3962 "supported by machine `%s' (%d)\n", smp_cpus, machine->name,
3963 machine->max_cpus);
3964 exit(1);
3965 }
3966
Anthony PERARD67b724e2010-11-22 15:44:15 +00003967 /*
3968 * Get the default machine options from the machine if it is not already
3969 * specified either by the configuration file or by the command line.
3970 */
3971 if (machine->default_machine_opts) {
Jan Kiszka25de5932012-01-27 19:55:43 +01003972 qemu_opts_set_defaults(qemu_find_opts("machine"),
3973 machine->default_machine_opts, 0);
Anthony PERARD67b724e2010-11-22 15:44:15 +00003974 }
3975
Gerd Hoffmann3329f072010-08-20 13:52:01 +02003976 qemu_opts_foreach(qemu_find_opts("device"), default_driver_check, NULL, 0);
3977 qemu_opts_foreach(qemu_find_opts("global"), default_driver_check, NULL, 0);
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01003978
Gerd Hoffmann986c5f72009-12-08 13:11:54 +01003979 if (machine->no_serial) {
3980 default_serial = 0;
3981 }
3982 if (machine->no_parallel) {
3983 default_parallel = 0;
3984 }
3985 if (!machine->use_virtcon) {
3986 default_virtcon = 0;
3987 }
Alexander Graf3ef669e2013-01-24 12:18:52 +01003988 if (!machine->use_sclp) {
3989 default_sclp = 0;
3990 }
Gerd Hoffmannac33f8f2009-12-16 14:25:39 +01003991 if (machine->no_floppy) {
3992 default_floppy = 0;
3993 }
3994 if (machine->no_cdrom) {
3995 default_cdrom = 0;
3996 }
3997 if (machine->no_sdcard) {
3998 default_sdcard = 0;
3999 }
Gerd Hoffmann986c5f72009-12-08 13:11:54 +01004000
Michael Tokarevab51b1d2012-12-30 12:48:14 +04004001 if (is_daemonized()) {
4002 /* According to documentation and historically, -nographic redirects
4003 * serial port, parallel port and monitor to stdio, which does not work
4004 * with -daemonize. We can redirect these to null instead, but since
4005 * -nographic is legacy, let's just error out.
4006 * We disallow -nographic only if all other ports are not redirected
4007 * explicitly, to not break existing legacy setups which uses
4008 * -nographic _and_ redirects all ports explicitly - this is valid
4009 * usage, -nographic is just a no-op in this case.
4010 */
4011 if (display_type == DT_NOGRAPHIC
4012 && (default_parallel || default_serial
4013 || default_monitor || default_virtcon)) {
4014 fprintf(stderr, "-nographic can not be used with -daemonize\n");
4015 exit(1);
4016 }
4017#ifdef CONFIG_CURSES
4018 if (display_type == DT_CURSES) {
4019 fprintf(stderr, "curses display can not be used with -daemonize\n");
4020 exit(1);
4021 }
4022#endif
4023 }
4024
Anthony Liguori993fbfd2009-05-21 16:54:00 -05004025 if (display_type == DT_NOGRAPHIC) {
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01004026 if (default_parallel)
4027 add_device_config(DEV_PARALLEL, "null");
Gerd Hoffmanne1c09172009-12-08 13:11:44 +01004028 if (default_serial && default_monitor) {
4029 add_device_config(DEV_SERIAL, "mon:stdio");
Gerd Hoffmann986c5f72009-12-08 13:11:54 +01004030 } else if (default_virtcon && default_monitor) {
4031 add_device_config(DEV_VIRTCON, "mon:stdio");
Alexander Graf3ef669e2013-01-24 12:18:52 +01004032 } else if (default_sclp && default_monitor) {
4033 add_device_config(DEV_SCLP, "mon:stdio");
Gerd Hoffmanne1c09172009-12-08 13:11:44 +01004034 } else {
4035 if (default_serial)
4036 add_device_config(DEV_SERIAL, "stdio");
Gerd Hoffmann986c5f72009-12-08 13:11:54 +01004037 if (default_virtcon)
4038 add_device_config(DEV_VIRTCON, "stdio");
Alexander Graf3ef669e2013-01-24 12:18:52 +01004039 if (default_sclp) {
4040 add_device_config(DEV_SCLP, "stdio");
4041 }
Gerd Hoffmanne1c09172009-12-08 13:11:44 +01004042 if (default_monitor)
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01004043 monitor_parse("stdio", "readline");
Gerd Hoffmanne1c09172009-12-08 13:11:44 +01004044 }
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01004045 } else {
4046 if (default_serial)
4047 add_device_config(DEV_SERIAL, "vc:80Cx24C");
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01004048 if (default_parallel)
4049 add_device_config(DEV_PARALLEL, "vc:80Cx24C");
Gerd Hoffmannabdeed02009-12-08 13:11:43 +01004050 if (default_monitor)
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01004051 monitor_parse("vc:80Cx24C", "readline");
Alexander Graf38536da2009-12-17 13:06:08 +01004052 if (default_virtcon)
4053 add_device_config(DEV_VIRTCON, "vc:80Cx24C");
Alexander Graf3ef669e2013-01-24 12:18:52 +01004054 if (default_sclp) {
4055 add_device_config(DEV_SCLP, "vc:80Cx24C");
4056 }
aliguoribc0129d2008-08-01 15:12:34 +00004057 }
4058
Anthony Liguori15546422013-02-20 07:43:25 -06004059 if (display_type == DT_DEFAULT && !display_remote) {
4060#if defined(CONFIG_GTK)
4061 display_type = DT_GTK;
4062#elif defined(CONFIG_SDL) || defined(CONFIG_COCOA)
4063 display_type = DT_SDL;
4064#elif defined(CONFIG_VNC)
4065 vnc_display = "localhost:0,to=99";
4066 show_vnc_port = 1;
4067#else
4068 display_type = DT_NONE;
4069#endif
4070 }
4071
Peter Wu047d4e12013-06-11 10:55:08 +02004072 if ((no_frame || alt_grab || ctrl_grab) && display_type != DT_SDL) {
4073 fprintf(stderr, "-no-frame, -alt-grab and -ctrl-grab are only valid "
4074 "for SDL, ignoring option\n");
4075 }
4076 if (no_quit && (display_type != DT_GTK && display_type != DT_SDL)) {
4077 fprintf(stderr, "-no-quit is only valid for GTK and SDL, "
4078 "ignoring option\n");
4079 }
4080
Anthony Liguori15546422013-02-20 07:43:25 -06004081#if defined(CONFIG_GTK)
4082 if (display_type == DT_GTK) {
4083 early_gtk_display_init();
4084 }
4085#endif
4086
TeLeMana5829fd2010-04-15 12:37:55 +08004087 socket_init();
4088
Gerd Hoffmann3329f072010-08-20 13:52:01 +02004089 if (qemu_opts_foreach(qemu_find_opts("chardev"), chardev_init_func, NULL, 1) != 0)
Gerd Hoffmann1a688d32009-12-08 13:11:36 +01004090 exit(1);
Venkateswararao Jujjuri (JV)758e8e32010-06-14 13:34:41 -07004091#ifdef CONFIG_VIRTFS
Gerd Hoffmann3329f072010-08-20 13:52:01 +02004092 if (qemu_opts_foreach(qemu_find_opts("fsdev"), fsdev_init_func, NULL, 1) != 0) {
Gautham R Shenoy74db9202010-04-29 17:44:43 +05304093 exit(1);
4094 }
4095#endif
Gerd Hoffmann1a688d32009-12-08 13:11:36 +01004096
Jes Sorenseneb505be2010-06-10 11:42:28 +02004097 os_daemonize();
ths71e3ceb2006-12-22 02:11:31 +00004098
thsaa26bb22007-03-25 21:33:06 +00004099 if (pid_file && qemu_create_pidfile(pid_file) != 0) {
Jes Sorenseneb505be2010-06-10 11:42:28 +02004100 os_pidfile_error();
ths93815bc2007-03-19 15:58:31 +00004101 exit(1);
4102 }
4103
Jan Kiszka0ac543d2011-08-15 16:18:57 -07004104 /* init the memory */
4105 if (ram_size == 0) {
4106 ram_size = DEFAULT_RAM_SIZE * 1024 * 1024;
4107 }
4108
Bruce Rogers3d1d9652012-08-09 12:47:40 -06004109 if (qemu_opts_foreach(qemu_find_opts("device"), device_help_func, NULL, 0)
4110 != 0) {
4111 exit(0);
4112 }
4113
Anthony PERARD303d4e82010-09-21 20:05:31 +01004114 configure_accelerator();
Marcelo Tosatti214910a2009-09-18 02:41:23 -03004115
Edgar E. Iglesiasa907cf52013-04-15 21:28:17 +02004116 if (!qtest_enabled() && qtest_chrdev) {
4117 qtest_init();
4118 }
4119
Markus Armbruster2ff3de62013-07-04 15:09:22 +02004120 machine_opts = qemu_get_machine_opts();
4121 kernel_filename = qemu_opt_get(machine_opts, "kernel");
4122 initrd_filename = qemu_opt_get(machine_opts, "initrd");
4123 kernel_cmdline = qemu_opt_get(machine_opts, "append");
Peter Maydell967c0da2012-02-22 22:40:00 +00004124
Markus Armbruster8281abd2013-06-14 13:15:03 +02004125 if (!boot_order) {
4126 boot_order = machine->boot_order;
4127 }
4128 opts = qemu_opts_find(qemu_find_opts("boot-opts"), NULL);
4129 if (opts) {
4130 char *normal_boot_order;
4131 const char *order, *once;
4132
4133 order = qemu_opt_get(opts, "order");
4134 if (order) {
4135 validate_bootdevices(order);
4136 boot_order = order;
4137 }
4138
4139 once = qemu_opt_get(opts, "once");
4140 if (once) {
4141 validate_bootdevices(once);
4142 normal_boot_order = g_strdup(boot_order);
4143 boot_order = once;
Markus Armbruster083b79c2013-06-14 13:15:04 +02004144 qemu_register_reset(restore_boot_order, normal_boot_order);
Markus Armbruster8281abd2013-06-14 13:15:03 +02004145 }
4146
4147 boot_menu = qemu_opt_get_bool(opts, "menu", boot_menu);
4148 }
4149
Peter Maydella0abe472012-02-08 05:41:39 +00004150 if (!kernel_cmdline) {
4151 kernel_cmdline = "";
4152 }
4153
bellarda20dd502003-09-30 21:07:02 +00004154 linux_boot = (kernel_filename != NULL);
balrog6c41b272007-11-17 12:12:29 +00004155
thsf8d39c02008-07-03 10:01:15 +00004156 if (!linux_boot && *kernel_cmdline != '\0') {
4157 fprintf(stderr, "-append only allowed with -kernel option\n");
4158 exit(1);
4159 }
4160
4161 if (!linux_boot && initrd_filename != NULL) {
4162 fprintf(stderr, "-initrd only allowed with -kernel option\n");
4163 exit(1);
4164 }
4165
Markus Armbruster2ff3de62013-07-04 15:09:22 +02004166 if (!linux_boot && qemu_opt_get(machine_opts, "dtb")) {
Grant Likely412beee2012-03-02 11:56:38 +00004167 fprintf(stderr, "-dtb only allowed with -kernel option\n");
4168 exit(1);
4169 }
4170
Jes Sorensen9156d762010-06-10 11:42:30 +02004171 os_set_line_buffering();
ths3b46e622007-09-17 08:09:54 +00004172
Paolo Bonzini49cf5722012-11-02 15:43:24 +01004173 qemu_init_cpu_loop();
4174 qemu_mutex_lock_iothread();
4175
Alon Levyad1be892012-03-14 20:33:37 +02004176#ifdef CONFIG_SPICE
4177 /* spice needs the timers to be initialized by this point */
4178 qemu_spice_init();
4179#endif
4180
Max Filippov0abe9052011-11-10 15:38:42 +04004181 if (icount_option && (kvm_enabled() || xen_enabled())) {
4182 fprintf(stderr, "-icount is not allowed with kvm or xen\n");
4183 exit(1);
4184 }
Paolo Bonzini4e3de9e2010-03-10 11:38:48 +01004185 configure_icount(icount_option);
pbrook634fce92006-07-15 17:40:09 +00004186
Amos Kongf30dbae2012-12-11 22:20:15 +08004187 /* clean up network at qemu process termination */
4188 atexit(&net_cleanup);
4189
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01004190 if (net_init_clients() < 0) {
4191 exit(1);
bellard702c6512004-04-02 21:21:32 +00004192 }
bellardf1510b22003-06-25 00:07:40 +00004193
Stefan Bergerd1a0cf72013-02-27 12:47:49 -05004194#ifdef CONFIG_TPM
4195 if (tpm_init() < 0) {
4196 exit(1);
4197 }
4198#endif
4199
balrogdc72ac12008-11-09 00:04:26 +00004200 /* init the bluetooth world */
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02004201 if (foreach_device_config(DEV_BT, bt_parse))
4202 exit(1);
balrogdc72ac12008-11-09 00:04:26 +00004203
Anthony PERARD834e76e2011-07-20 08:17:44 +00004204 if (!xen_enabled()) {
4205 /* On 32-bit hosts, QEMU is limited by virtual address space */
4206 if (ram_size > (2047 << 20) && HOST_LONG_BITS == 32) {
4207 fprintf(stderr, "qemu: at most 2047 MB RAM can be simulated\n");
4208 exit(1);
4209 }
4210 }
balrog7fb4fdc2008-04-24 17:59:27 +00004211
Jan Kiszkad5ab9712011-08-02 16:10:21 +02004212 cpu_exec_init_all();
bellard26a5f132008-05-28 12:30:31 +00004213
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02004214 blk_mig_init();
4215
ths96d30e42007-01-07 20:42:14 +00004216 /* open the virtual block devices */
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02004217 if (snapshot)
Gerd Hoffmann3329f072010-08-20 13:52:01 +02004218 qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot, NULL, 0);
Christian Borntraeger2d0d2832012-11-20 15:30:34 +01004219 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func,
4220 &machine->block_default_type, 1) != 0) {
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02004221 exit(1);
Christian Borntraeger2d0d2832012-11-20 15:30:34 +01004222 }
balrog3e3d5812007-04-30 02:09:25 +00004223
Christian Borntraeger3c42ea62012-11-22 21:02:55 +01004224 default_drive(default_cdrom, snapshot, machine->block_default_type, 2,
4225 CDROM_OPTS);
4226 default_drive(default_floppy, snapshot, IF_FLOPPY, 0, FD_OPTS);
4227 default_drive(default_sdcard, snapshot, IF_SD, 0, SD_OPTS);
Markus Armbruster4e5d9b52011-01-28 11:21:45 +01004228
Juan Quintela7908c782012-06-26 18:46:10 +02004229 register_savevm_live(NULL, "ram", 0, 4, &savevm_ram_handlers, NULL);
bellard8a7ddc32004-03-31 19:00:16 +00004230
aliguori268a3622009-04-21 22:30:27 +00004231 if (nb_numa_nodes > 0) {
4232 int i;
4233
Sasha Levinea0e5412011-06-29 23:29:39 -04004234 if (nb_numa_nodes > MAX_NODES) {
4235 nb_numa_nodes = MAX_NODES;
aliguori268a3622009-04-21 22:30:27 +00004236 }
4237
4238 /* If no memory size if given for any node, assume the default case
4239 * and distribute the available memory equally across all nodes
4240 */
4241 for (i = 0; i < nb_numa_nodes; i++) {
4242 if (node_mem[i] != 0)
4243 break;
4244 }
4245 if (i == nb_numa_nodes) {
4246 uint64_t usedmem = 0;
4247
4248 /* On Linux, the each node's border has to be 8MB aligned,
4249 * the final node gets the rest.
4250 */
4251 for (i = 0; i < nb_numa_nodes - 1; i++) {
4252 node_mem[i] = (ram_size / nb_numa_nodes) & ~((1 << 23UL) - 1);
4253 usedmem += node_mem[i];
4254 }
4255 node_mem[i] = ram_size - usedmem;
4256 }
4257
4258 for (i = 0; i < nb_numa_nodes; i++) {
Chegu Vinodee785fe2012-07-16 21:31:30 -07004259 if (!bitmap_empty(node_cpumask[i], MAX_CPUMASK_BITS)) {
aliguori268a3622009-04-21 22:30:27 +00004260 break;
Chegu Vinodee785fe2012-07-16 21:31:30 -07004261 }
aliguori268a3622009-04-21 22:30:27 +00004262 }
4263 /* assigning the VCPUs round-robin is easier to implement, guest OSes
4264 * must cope with this anyway, because there are BIOSes out there in
4265 * real machines which also use this scheme.
4266 */
4267 if (i == nb_numa_nodes) {
Vasilis Liaskovitis991dfef2011-10-26 14:19:00 +02004268 for (i = 0; i < max_cpus; i++) {
Chegu Vinodee785fe2012-07-16 21:31:30 -07004269 set_bit(i, node_cpumask[i % nb_numa_nodes]);
aliguori268a3622009-04-21 22:30:27 +00004270 }
4271 }
4272 }
4273
Gerd Hoffmann3329f072010-08-20 13:52:01 +02004274 if (qemu_opts_foreach(qemu_find_opts("mon"), mon_init_func, NULL, 1) != 0) {
Jan Kiszka157b9312010-04-06 16:55:53 +02004275 exit(1);
4276 }
4277
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01004278 if (foreach_device_config(DEV_SERIAL, serial_parse) < 0)
4279 exit(1);
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01004280 if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0)
4281 exit(1);
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01004282 if (foreach_device_config(DEV_VIRTCON, virtcon_parse) < 0)
4283 exit(1);
Alexander Graf3ef669e2013-01-24 12:18:52 +01004284 if (foreach_device_config(DEV_SCLP, sclp_parse) < 0) {
4285 exit(1);
4286 }
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08004287 if (foreach_device_config(DEV_DEBUGCON, debugcon_parse) < 0)
4288 exit(1);
aliguori2796dae2009-01-16 20:23:27 +00004289
Paolo Bonzini7f1b17f2012-05-10 09:39:17 +02004290 /* If no default VGA is requested, the default is "none". */
Aurelien Jarno3605ded2012-09-10 01:01:44 +02004291 if (default_vga) {
4292 if (cirrus_vga_available()) {
4293 vga_model = "cirrus";
4294 } else if (vga_available()) {
4295 vga_model = "std";
4296 }
Blue Swirla369da52011-09-27 19:15:42 +00004297 }
Paolo Bonzini7f1b17f2012-05-10 09:39:17 +02004298 select_vgahw(vga_model);
Blue Swirla369da52011-09-27 19:15:42 +00004299
Markus Armbruster09aaa162009-08-21 10:31:34 +02004300 if (watchdog) {
4301 i = select_watchdog(watchdog);
4302 if (i > 0)
4303 exit (i == 1 ? 1 : 0);
4304 }
4305
Gerd Hoffmannb6b61142009-07-15 13:48:21 +02004306 if (machine->compat_props) {
Gerd Hoffmann458fb672009-12-08 13:11:33 +01004307 qdev_prop_register_global_list(machine->compat_props);
Gerd Hoffmannb6b61142009-07-15 13:48:21 +02004308 }
Gerd Hoffmannd0fef6f2009-12-08 13:11:34 +01004309 qemu_add_globals();
4310
Anthony Liguori1de81d22011-12-19 16:37:46 -06004311 qdev_machine_init();
4312
Eduardo Habkost5f072e12012-10-15 17:22:02 -03004313 QEMUMachineInitArgs args = { .ram_size = ram_size,
Markus Armbruster8281abd2013-06-14 13:15:03 +02004314 .boot_device = boot_order,
Eduardo Habkost5f072e12012-10-15 17:22:02 -03004315 .kernel_filename = kernel_filename,
4316 .kernel_cmdline = kernel_cmdline,
4317 .initrd_filename = initrd_filename,
4318 .cpu_model = cpu_model };
4319 machine->init(&args);
aliguori3023f332009-01-16 19:04:14 +00004320
Paolo Bonzinib3e6d592013-04-18 18:44:04 +02004321 audio_init();
4322
Jan Kiszkaea375f92010-03-01 19:10:30 +01004323 cpu_synchronize_all_post_init();
aliguori268a3622009-04-21 22:30:27 +00004324
Blue Swirl87d0a282010-03-27 18:24:45 +00004325 set_numa_modes();
aliguori268a3622009-04-21 22:30:27 +00004326
aliguori6f338c32009-02-11 15:21:54 +00004327 current_machine = machine;
4328
aliguori3023f332009-01-16 19:04:14 +00004329 /* init USB devices */
zhlcindy@gmail.com094b2872012-09-02 19:25:28 +00004330 if (usb_enabled(false)) {
Markus Armbruster07527062009-10-06 12:16:57 +01004331 if (foreach_device_config(DEV_USB, usb_parse) < 0)
4332 exit(1);
aliguori3023f332009-01-16 19:04:14 +00004333 }
4334
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02004335 /* init generic devices */
Gerd Hoffmann3329f072010-08-20 13:52:01 +02004336 if (qemu_opts_foreach(qemu_find_opts("device"), device_init_func, NULL, 1) != 0)
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02004337 exit(1);
4338
Markus Armbruster668680f2010-02-11 14:44:58 +01004339 net_check_clients();
4340
Gerd Hoffmann64840c62013-03-07 17:08:29 +01004341 ds = init_displaystate();
Anthony Liguori993fbfd2009-05-21 16:54:00 -05004342
Gerd Hoffmann6b62dc22010-08-25 10:51:06 +02004343 /* init local displays */
Anthony Liguori993fbfd2009-05-21 16:54:00 -05004344 switch (display_type) {
4345 case DT_NOGRAPHIC:
4346 break;
4347#if defined(CONFIG_CURSES)
4348 case DT_CURSES:
Michael Tokarevab51b1d2012-12-30 12:48:14 +04004349 curses_display_init(ds, full_screen);
Anthony Liguori993fbfd2009-05-21 16:54:00 -05004350 break;
4351#endif
bellard5b0753e2005-03-01 21:37:28 +00004352#if defined(CONFIG_SDL)
Anthony Liguori993fbfd2009-05-21 16:54:00 -05004353 case DT_SDL:
4354 sdl_display_init(ds, full_screen, no_frame);
4355 break;
bellard5b0753e2005-03-01 21:37:28 +00004356#elif defined(CONFIG_COCOA)
Anthony Liguori993fbfd2009-05-21 16:54:00 -05004357 case DT_SDL:
4358 cocoa_display_init(ds, full_screen);
4359 break;
bellard313aa562003-08-10 21:52:11 +00004360#endif
Anthony Liguori15546422013-02-20 07:43:25 -06004361#if defined(CONFIG_GTK)
4362 case DT_GTK:
Peter Wu787ba4f2013-06-10 20:04:43 +02004363 gtk_display_init(ds, full_screen);
Anthony Liguori15546422013-02-20 07:43:25 -06004364 break;
4365#endif
Gerd Hoffmann6b62dc22010-08-25 10:51:06 +02004366 default:
4367 break;
4368 }
4369
Gleb Natapov0ce235a2011-03-31 11:27:23 +02004370 /* must be after terminal init, SDL library changes signal handlers */
4371 os_setup_signal_handling();
4372
Jes Sorensen821601e2011-03-16 13:33:36 +01004373#ifdef CONFIG_VNC
Gerd Hoffmann6b62dc22010-08-25 10:51:06 +02004374 /* init remote displays */
4375 if (vnc_display) {
Paolo Bonzini2d55f0e2012-10-02 10:17:21 +02004376 Error *local_err = NULL;
Anthony Liguori993fbfd2009-05-21 16:54:00 -05004377 vnc_display_init(ds);
Paolo Bonzini2d55f0e2012-10-02 10:17:21 +02004378 vnc_display_open(ds, vnc_display, &local_err);
4379 if (local_err != NULL) {
4380 fprintf(stderr, "Failed to start VNC server on `%s': %s\n",
4381 vnc_display, error_get_pretty(local_err));
4382 error_free(local_err);
Anthony Liguori993fbfd2009-05-21 16:54:00 -05004383 exit(1);
Amos Kong94b204c2012-06-30 10:02:20 +08004384 }
Anthony Liguorif92f8af2009-05-20 13:01:02 -05004385
Anthony Liguori993fbfd2009-05-21 16:54:00 -05004386 if (show_vnc_port) {
4387 printf("VNC server running on `%s'\n", vnc_display_local_addr(ds));
Anthony Liguorif92f8af2009-05-20 13:01:02 -05004388 }
bellard313aa562003-08-10 21:52:11 +00004389 }
Jes Sorensen821601e2011-03-16 13:33:36 +01004390#endif
Gerd Hoffmanna3e22262010-08-25 15:32:06 +02004391#ifdef CONFIG_SPICE
Gerd Hoffmann58ae52a2013-07-22 15:34:12 +02004392 if (using_spice && !spice_displays) {
Gerd Hoffmanna3e22262010-08-25 15:32:06 +02004393 qemu_spice_display_init(ds);
4394 }
4395#endif
aliguori5b08fc12008-08-21 20:08:03 +00004396
Markus Armbrusteref0c4a02012-02-07 15:09:13 +01004397 if (foreach_device_config(DEV_GDB, gdbserver_start) < 0) {
aliguori59030a82009-04-05 18:43:41 +00004398 exit(1);
balrog45669e02007-07-02 13:20:17 +00004399 }
balrog45669e02007-07-02 13:20:17 +00004400
Gerd Hoffmann3418bd22009-09-25 21:42:41 +02004401 qdev_machine_creation_done();
4402
Gerd Hoffmann15ff7702009-12-14 16:07:35 +01004403 if (rom_load_all() != 0) {
4404 fprintf(stderr, "rom loading failed\n");
4405 exit(1);
4406 }
Gerd Hoffmann45a50b12009-10-01 16:42:33 +02004407
Isaku Yamahata80376c32010-12-20 14:33:35 +09004408 /* TODO: once all bus devices are qdevified, this should be done
4409 * when bus is created by qdev.c */
4410 qemu_register_reset(qbus_reset_all_fn, sysbus_get_default());
Gleb Natapov4cab9462010-12-08 13:35:08 +02004411 qemu_run_machine_init_done_notifiers();
4412
Jan Kiszkae063eb12011-06-14 18:29:43 +02004413 qemu_system_reset(VMRESET_SILENT);
Juan Quintela05f24012009-08-20 19:42:22 +02004414 if (loadvm) {
Markus Armbruster03cd4652010-02-17 16:24:10 +01004415 if (load_vmstate(loadvm) < 0) {
Juan Quintela05f24012009-08-20 19:42:22 +02004416 autostart = 0;
4417 }
4418 }
bellardd63d3072004-10-03 13:29:03 +00004419
Glauber Costa2bb8c102009-07-24 16:20:23 -04004420 if (incoming) {
Paolo Bonzini43eaae22012-10-02 18:21:18 +02004421 Error *local_err = NULL;
4422 qemu_start_incoming_migration(incoming, &local_err);
4423 if (local_err) {
4424 fprintf(stderr, "-incoming %s: %s\n", incoming, error_get_pretty(local_err));
4425 error_free(local_err);
4426 exit(1);
Juan Quintela8ca5e802010-06-09 14:10:54 +02004427 }
Avi Kivity6b99dad2009-08-09 14:39:20 +03004428 } else if (autostart) {
aliguoric0f4ce72009-03-05 23:01:01 +00004429 vm_start();
Avi Kivity6b99dad2009-08-09 14:39:20 +03004430 }
thsffd843b2006-12-21 19:46:43 +00004431
Jes Sorenseneb505be2010-06-10 11:42:28 +02004432 os_setup_post();
ths71e3ceb2006-12-22 02:11:31 +00004433
bellard8a7ddc32004-03-31 19:00:16 +00004434 main_loop();
Paolo Bonzini99435902011-09-12 14:03:13 +02004435 bdrv_close_all();
4436 pause_all_vcpus();
wayne3d3b8302011-07-27 18:04:55 +08004437 res_free();
Stefan Bergerd1a0cf72013-02-27 12:47:49 -05004438#ifdef CONFIG_TPM
4439 tpm_cleanup();
4440#endif
thsb46a8902007-10-21 23:20:45 +00004441
bellard0824d6f2003-06-24 13:42:40 +00004442 return 0;
4443}