blob: 0c6c2bfa6a97cb2b9013b5ab1671a3fd7824c9d4 [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"
120#include "hw/pc.h"
blueswir1511d2b12009-03-07 15:32:56 +0000121#include "hw/isa.h"
blueswir1511d2b12009-03-07 15:32:56 +0000122#include "hw/bt.h"
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +0100123#include "hw/watchdog.h"
aliguorib6f6e3d2009-04-17 18:59:56 +0000124#include "hw/smbios.h"
aliguorie37630c2009-04-22 15:19:10 +0000125#include "hw/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 Bonzini927d4872012-12-17 18:20:05 +0100129#include "bt/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 Bonzini927d4872012-12-17 18:20:05 +0100137#include "char/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"
Markus Armbruster2b584952012-07-10 11:12:50 +0200140#include "hw/block-common.h"
Paolo Bonzinicaf71f82012-12-17 18:19:50 +0100141#include "migration/block.h"
Stefan Bergerd1a0cf72013-02-27 12:47:49 -0500142#include "tpm/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
Paul Brook5cea8592009-05-30 00:52:44 +0100182static const char *data_dir;
j_mayer1192dad2007-10-05 13:08:35 +0000183const char *bios_name = NULL;
malccb5a7aa2008-09-28 00:42:12 +0000184enum vga_retrace_method vga_retrace_method = VGA_RETRACE_DUMB;
Anthony Liguori993fbfd2009-05-21 16:54:00 -0500185DisplayType display_type = DT_DEFAULT;
Blue Swirl4fdcac02012-10-28 11:04:47 +0000186static int display_remote;
bellard3d11d0e2004-12-12 16:56:30 +0000187const char* keyboard_layout = NULL;
Anthony Liguoric227f092009-10-01 16:12:16 -0500188ram_addr_t ram_size;
Marcelo Tosattic9027602010-03-01 20:25:08 -0300189const char *mem_path = NULL;
190#ifdef MAP_POPULATE
191int mem_prealloc = 0; /* force preallocation of physical target memory */
192#endif
bellardc4b1fcc2004-03-14 21:44:30 +0000193int nb_nics;
bellard7c9d8e02005-11-15 22:16:05 +0000194NICInfo nd_table[MAX_NICS];
Paolo Bonzinid399f672009-07-27 23:17:51 +0200195int autostart;
balrogf6503052008-02-17 11:42:19 +0000196static int rtc_utc = 1;
197static int rtc_date_offset = -1; /* -1 means no change */
Jan Kiszka68752042009-09-15 13:36:04 +0200198QEMUClock *rtc_clock;
Gerd Hoffmann64465292009-12-08 13:11:45 +0100199int vga_interface_type = VGA_NONE;
blueswir1dbed7e42008-10-01 19:38:09 +0000200static int full_screen = 0;
blueswir1634a21f2008-11-16 11:34:07 +0000201#ifdef CONFIG_SDL
blueswir1dbed7e42008-10-01 19:38:09 +0000202static int no_frame = 0;
blueswir1634a21f2008-11-16 11:34:07 +0000203#endif
ths667acca2006-12-11 02:08:05 +0000204int no_quit = 0;
bellard8d11df92004-08-24 21:13:40 +0000205CharDriverState *serial_hds[MAX_SERIAL_PORTS];
bellard6508fe52005-01-15 12:02:56 +0000206CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
aliguori9ede2fd2009-01-15 20:05:25 +0000207CharDriverState *virtcon_hds[MAX_VIRTIO_CONSOLES];
Alexander Graf3ef669e2013-01-24 12:18:52 +0100208CharDriverState *sclp_hds[MAX_SCLP_CONSOLES];
bellarda09db212005-04-30 16:10:35 +0000209int win2k_install_hack = 0;
aurel321b530a62009-04-05 20:08:59 +0000210int singlestep = 0;
bellard6a00d602005-11-21 23:25:50 +0000211int smp_cpus = 1;
Jes Sorensen6be68d72009-07-23 17:03:42 +0200212int max_cpus = 0;
Andre Przywaradc6b1c02009-08-19 15:42:40 +0200213int smp_cores = 1;
214int smp_threads = 1;
Jes Sorensen821601e2011-03-16 13:33:36 +0100215#ifdef CONFIG_VNC
ths73fc9742006-12-22 02:09:07 +0000216const char *vnc_display;
Jes Sorensen821601e2011-03-16 13:33:36 +0100217#endif
bellard6515b202006-05-03 22:02:44 +0000218int acpi_enabled = 1;
aliguori16b29ae2008-12-17 23:28:44 +0000219int no_hpet = 0;
bellard52ca8d62006-06-14 16:03:05 +0000220int fd_bootchk = 1;
Blue Swirl4fdcac02012-10-28 11:04:47 +0000221static int no_reboot;
aurel32b2f76162008-04-11 21:35:52 +0000222int no_shutdown = 0;
balrog9467cd42007-05-01 01:34:14 +0000223int cursor_hide = 1;
balroga171fe32007-04-30 01:48:07 +0000224int graphic_rotate = 0;
Markus Armbruster09aaa162009-08-21 10:31:34 +0200225const char *watchdog;
Gleb Natapov2e55e842010-12-08 13:35:07 +0200226QEMUOptionRom option_rom[MAX_OPTION_ROMS];
ths9ae02552007-01-05 17:39:04 +0000227int nb_option_roms;
pbrook8e716212007-01-20 17:12:09 +0000228int semihosting_enabled = 0;
balrog2b8f2d42007-07-27 22:08:46 +0000229int old_param = 0;
thsc35734b2007-03-19 15:17:08 +0000230const char *qemu_name;
ths3780e192007-06-21 21:08:02 +0000231int alt_grab = 0;
Dustin Kirkland0ca9f8a2009-09-17 15:48:04 -0500232int ctrl_grab = 0;
blueswir166508602007-05-01 14:16:52 +0000233unsigned int nb_prom_envs = 0;
234const char *prom_envs[MAX_PROM_ENVS];
Jan Kiszka95387492009-07-02 00:19:02 +0200235int boot_menu;
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;
268bool kvm_allowed;
269bool xen_allowed;
Blue Swirld745bef2010-03-29 19:23:49 +0000270uint32_t xen_domid;
271enum xen_mode xen_mode = XEN_EMULATE;
Jan Kiszkad5ab9712011-08-02 16:10:21 +0200272static int tcg_tb_size;
Blue Swirld745bef2010-03-29 19:23:49 +0000273
Gerd Hoffmann998bbd72009-12-08 13:11:41 +0100274static int default_serial = 1;
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +0100275static int default_parallel = 1;
Gerd Hoffmann986c5f72009-12-08 13:11:54 +0100276static int default_virtcon = 1;
Alexander Graf3ef669e2013-01-24 12:18:52 +0100277static int default_sclp = 1;
Gerd Hoffmannabdeed02009-12-08 13:11:43 +0100278static int default_monitor = 1;
Gerd Hoffmannac33f8f2009-12-16 14:25:39 +0100279static int default_floppy = 1;
280static int default_cdrom = 1;
281static int default_sdcard = 1;
Paolo Bonzini7f1b17f2012-05-10 09:39:17 +0200282static int default_vga = 1;
Gerd Hoffmann998bbd72009-12-08 13:11:41 +0100283
284static struct {
285 const char *driver;
286 int *flag;
287} default_list[] = {
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +0100288 { .driver = "isa-serial", .flag = &default_serial },
289 { .driver = "isa-parallel", .flag = &default_parallel },
Gerd Hoffmannd8bcbab2009-12-16 14:25:40 +0100290 { .driver = "isa-fdc", .flag = &default_floppy },
Markus Armbrusteraf6bf132011-05-18 18:31:02 +0200291 { .driver = "ide-cd", .flag = &default_cdrom },
292 { .driver = "ide-hd", .flag = &default_cdrom },
Gerd Hoffmannd8bcbab2009-12-16 14:25:40 +0100293 { .driver = "ide-drive", .flag = &default_cdrom },
Markus Armbrusteraf6bf132011-05-18 18:31:02 +0200294 { .driver = "scsi-cd", .flag = &default_cdrom },
Amit Shah392ecf52010-01-21 16:19:23 +0530295 { .driver = "virtio-serial-pci", .flag = &default_virtcon },
296 { .driver = "virtio-serial-s390", .flag = &default_virtcon },
297 { .driver = "virtio-serial", .flag = &default_virtcon },
Paolo Bonzini7f1b17f2012-05-10 09:39:17 +0200298 { .driver = "VGA", .flag = &default_vga },
299 { .driver = "isa-vga", .flag = &default_vga },
300 { .driver = "cirrus-vga", .flag = &default_vga },
301 { .driver = "isa-cirrus-vga", .flag = &default_vga },
302 { .driver = "vmware-svga", .flag = &default_vga },
303 { .driver = "qxl-vga", .flag = &default_vga },
Gerd Hoffmann998bbd72009-12-08 13:11:41 +0100304};
305
Paolo Bonzini4d454572012-11-26 16:03:42 +0100306static QemuOptsList qemu_rtc_opts = {
307 .name = "rtc",
308 .head = QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts.head),
309 .desc = {
310 {
311 .name = "base",
312 .type = QEMU_OPT_STRING,
313 },{
314 .name = "clock",
315 .type = QEMU_OPT_STRING,
316 },{
317 .name = "driftfix",
318 .type = QEMU_OPT_STRING,
319 },
320 { /* end of list */ }
321 },
322};
323
324static QemuOptsList qemu_sandbox_opts = {
325 .name = "sandbox",
326 .implied_opt_name = "enable",
327 .head = QTAILQ_HEAD_INITIALIZER(qemu_sandbox_opts.head),
328 .desc = {
329 {
330 .name = "enable",
331 .type = QEMU_OPT_BOOL,
332 },
333 { /* end of list */ }
334 },
335};
336
337static QemuOptsList qemu_trace_opts = {
338 .name = "trace",
339 .implied_opt_name = "trace",
340 .head = QTAILQ_HEAD_INITIALIZER(qemu_trace_opts.head),
341 .desc = {
342 {
343 .name = "events",
344 .type = QEMU_OPT_STRING,
345 },{
346 .name = "file",
347 .type = QEMU_OPT_STRING,
348 },
349 { /* end of list */ }
350 },
351};
352
353static QemuOptsList qemu_option_rom_opts = {
354 .name = "option-rom",
355 .implied_opt_name = "romfile",
356 .head = QTAILQ_HEAD_INITIALIZER(qemu_option_rom_opts.head),
357 .desc = {
358 {
359 .name = "bootindex",
360 .type = QEMU_OPT_NUMBER,
361 }, {
362 .name = "romfile",
363 .type = QEMU_OPT_STRING,
364 },
365 { /* end of list */ }
366 },
367};
368
369static QemuOptsList qemu_machine_opts = {
370 .name = "machine",
371 .implied_opt_name = "type",
372 .merge_lists = true,
373 .head = QTAILQ_HEAD_INITIALIZER(qemu_machine_opts.head),
374 .desc = {
375 {
376 .name = "type",
377 .type = QEMU_OPT_STRING,
378 .help = "emulated machine"
379 }, {
380 .name = "accel",
381 .type = QEMU_OPT_STRING,
382 .help = "accelerator list",
383 }, {
384 .name = "kernel_irqchip",
385 .type = QEMU_OPT_BOOL,
386 .help = "use KVM in-kernel irqchip",
387 }, {
388 .name = "kvm_shadow_mem",
389 .type = QEMU_OPT_SIZE,
390 .help = "KVM shadow MMU size",
391 }, {
392 .name = "kernel",
393 .type = QEMU_OPT_STRING,
394 .help = "Linux kernel image file",
395 }, {
396 .name = "initrd",
397 .type = QEMU_OPT_STRING,
398 .help = "Linux initial ramdisk file",
399 }, {
400 .name = "append",
401 .type = QEMU_OPT_STRING,
402 .help = "Linux kernel command line",
403 }, {
404 .name = "dtb",
405 .type = QEMU_OPT_STRING,
406 .help = "Linux kernel device tree file",
407 }, {
408 .name = "dumpdtb",
409 .type = QEMU_OPT_STRING,
410 .help = "Dump current dtb to a file and quit",
411 }, {
412 .name = "phandle_start",
413 .type = QEMU_OPT_STRING,
414 .help = "The first phandle ID we may generate dynamically",
415 }, {
416 .name = "dt_compatible",
417 .type = QEMU_OPT_STRING,
418 .help = "Overrides the \"compatible\" property of the dt root node",
419 }, {
420 .name = "dump-guest-core",
421 .type = QEMU_OPT_BOOL,
422 .help = "Include guest memory in a core dump",
423 }, {
424 .name = "mem-merge",
425 .type = QEMU_OPT_BOOL,
426 .help = "enable/disable memory merge support",
427 },{
428 .name = "usb",
429 .type = QEMU_OPT_BOOL,
430 .help = "Set on/off to enable/disable usb",
431 },
432 { /* End of list */ }
433 },
434};
435
436static QemuOptsList qemu_boot_opts = {
437 .name = "boot-opts",
438 .head = QTAILQ_HEAD_INITIALIZER(qemu_boot_opts.head),
439 .desc = {
440 /* the three names below are not used now */
441 {
442 .name = "order",
443 .type = QEMU_OPT_STRING,
444 }, {
445 .name = "once",
446 .type = QEMU_OPT_STRING,
447 }, {
448 .name = "menu",
449 .type = QEMU_OPT_STRING,
450 /* following are really used */
451 }, {
452 .name = "splash",
453 .type = QEMU_OPT_STRING,
454 }, {
455 .name = "splash-time",
456 .type = QEMU_OPT_STRING,
457 }, {
458 .name = "reboot-timeout",
459 .type = QEMU_OPT_STRING,
460 },
461 { /*End of list */ }
462 },
463};
464
465static QemuOptsList qemu_add_fd_opts = {
466 .name = "add-fd",
467 .head = QTAILQ_HEAD_INITIALIZER(qemu_add_fd_opts.head),
468 .desc = {
469 {
470 .name = "fd",
471 .type = QEMU_OPT_NUMBER,
472 .help = "file descriptor of which a duplicate is added to fd set",
473 },{
474 .name = "set",
475 .type = QEMU_OPT_NUMBER,
476 .help = "ID of the fd set to add fd to",
477 },{
478 .name = "opaque",
479 .type = QEMU_OPT_STRING,
480 .help = "free-form string used to describe fd",
481 },
482 { /* end of list */ }
483 },
484};
485
486static QemuOptsList qemu_object_opts = {
487 .name = "object",
488 .implied_opt_name = "qom-type",
489 .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head),
490 .desc = {
491 { }
492 },
493};
494
Stefan Bergerd1a0cf72013-02-27 12:47:49 -0500495static QemuOptsList qemu_tpmdev_opts = {
496 .name = "tpmdev",
497 .implied_opt_name = "type",
498 .head = QTAILQ_HEAD_INITIALIZER(qemu_tpmdev_opts.head),
499 .desc = {
500 {
501 .name = "type",
502 .type = QEMU_OPT_STRING,
503 .help = "Type of TPM backend",
504 },
505 {
506 .name = "path",
507 .type = QEMU_OPT_STRING,
508 .help = "Path to TPM device on the host",
509 },
510 { /* end of list */ }
511 },
512};
513
Ronnie Sahlberg31459f42012-08-06 18:24:55 +1000514const char *qemu_get_vm_name(void)
515{
516 return qemu_name;
517}
518
wayne3d3b8302011-07-27 18:04:55 +0800519static void res_free(void)
520{
521 if (boot_splash_filedata != NULL) {
Anthony Liguori7267c092011-08-20 22:09:37 -0500522 g_free(boot_splash_filedata);
wayne3d3b8302011-07-27 18:04:55 +0800523 boot_splash_filedata = NULL;
524 }
525}
526
Gerd Hoffmann998bbd72009-12-08 13:11:41 +0100527static int default_driver_check(QemuOpts *opts, void *opaque)
528{
529 const char *driver = qemu_opt_get(opts, "driver");
530 int i;
531
532 if (!driver)
533 return 0;
534 for (i = 0; i < ARRAY_SIZE(default_list); i++) {
535 if (strcmp(default_list[i].driver, driver) != 0)
536 continue;
537 *(default_list[i].flag) = 0;
538 }
539 return 0;
540}
541
bellard0824d6f2003-06-24 13:42:40 +0000542/***********************************************************/
Luiz Capitulinof5bbfba2011-07-29 15:04:45 -0300543/* QEMU state */
544
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300545static RunState current_run_state = RUN_STATE_PRELAUNCH;
Luiz Capitulinof5bbfba2011-07-29 15:04:45 -0300546
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300547typedef struct {
548 RunState from;
549 RunState to;
550} RunStateTransition;
551
552static const RunStateTransition runstate_transitions_def[] = {
553 /* from -> to */
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300554 { RUN_STATE_DEBUG, RUN_STATE_RUNNING },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300555
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300556 { RUN_STATE_INMIGRATE, RUN_STATE_RUNNING },
Paolo Bonzini29ed72f2012-10-19 16:45:24 +0200557 { RUN_STATE_INMIGRATE, RUN_STATE_PAUSED },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300558
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300559 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_PAUSED },
Luiz Capitulino8a9236f2011-10-14 11:18:09 -0300560 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_FINISH_MIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300561
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300562 { RUN_STATE_IO_ERROR, RUN_STATE_RUNNING },
Luiz Capitulino8a9236f2011-10-14 11:18:09 -0300563 { RUN_STATE_IO_ERROR, RUN_STATE_FINISH_MIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300564
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300565 { RUN_STATE_PAUSED, RUN_STATE_RUNNING },
Luiz Capitulino8a9236f2011-10-14 11:18:09 -0300566 { RUN_STATE_PAUSED, RUN_STATE_FINISH_MIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300567
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300568 { RUN_STATE_POSTMIGRATE, RUN_STATE_RUNNING },
Luiz Capitulino8a9236f2011-10-14 11:18:09 -0300569 { RUN_STATE_POSTMIGRATE, RUN_STATE_FINISH_MIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300570
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300571 { RUN_STATE_PRELAUNCH, RUN_STATE_RUNNING },
Luiz Capitulino8a9236f2011-10-14 11:18:09 -0300572 { RUN_STATE_PRELAUNCH, RUN_STATE_FINISH_MIGRATE },
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300573 { RUN_STATE_PRELAUNCH, RUN_STATE_INMIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300574
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300575 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_RUNNING },
576 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_POSTMIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300577
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300578 { RUN_STATE_RESTORE_VM, RUN_STATE_RUNNING },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300579
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300580 { RUN_STATE_RUNNING, RUN_STATE_DEBUG },
581 { RUN_STATE_RUNNING, RUN_STATE_INTERNAL_ERROR },
582 { RUN_STATE_RUNNING, RUN_STATE_IO_ERROR },
583 { RUN_STATE_RUNNING, RUN_STATE_PAUSED },
584 { RUN_STATE_RUNNING, RUN_STATE_FINISH_MIGRATE },
585 { RUN_STATE_RUNNING, RUN_STATE_RESTORE_VM },
586 { RUN_STATE_RUNNING, RUN_STATE_SAVE_VM },
587 { RUN_STATE_RUNNING, RUN_STATE_SHUTDOWN },
588 { RUN_STATE_RUNNING, RUN_STATE_WATCHDOG },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300589
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300590 { RUN_STATE_SAVE_VM, RUN_STATE_RUNNING },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300591
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300592 { RUN_STATE_SHUTDOWN, RUN_STATE_PAUSED },
Luiz Capitulino8a9236f2011-10-14 11:18:09 -0300593 { RUN_STATE_SHUTDOWN, RUN_STATE_FINISH_MIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300594
Luiz Capitulinoad02b962012-04-27 13:33:36 -0300595 { RUN_STATE_DEBUG, RUN_STATE_SUSPENDED },
596 { RUN_STATE_RUNNING, RUN_STATE_SUSPENDED },
597 { RUN_STATE_SUSPENDED, RUN_STATE_RUNNING },
598 { RUN_STATE_SUSPENDED, RUN_STATE_FINISH_MIGRATE },
599
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300600 { RUN_STATE_WATCHDOG, RUN_STATE_RUNNING },
Luiz Capitulino8a9236f2011-10-14 11:18:09 -0300601 { RUN_STATE_WATCHDOG, RUN_STATE_FINISH_MIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300602
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300603 { RUN_STATE_MAX, RUN_STATE_MAX },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300604};
605
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300606static bool runstate_valid_transitions[RUN_STATE_MAX][RUN_STATE_MAX];
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300607
Luiz Capitulinof5bbfba2011-07-29 15:04:45 -0300608bool runstate_check(RunState state)
609{
610 return current_run_state == state;
611}
612
Blue Swirl4fdcac02012-10-28 11:04:47 +0000613static void runstate_init(void)
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300614{
615 const RunStateTransition *p;
616
617 memset(&runstate_valid_transitions, 0, sizeof(runstate_valid_transitions));
618
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300619 for (p = &runstate_transitions_def[0]; p->from != RUN_STATE_MAX; p++) {
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300620 runstate_valid_transitions[p->from][p->to] = true;
621 }
622}
623
624/* This function will abort() on invalid state transitions */
Luiz Capitulinof5bbfba2011-07-29 15:04:45 -0300625void runstate_set(RunState new_state)
626{
Luiz Capitulino207c5cd2011-10-13 10:59:07 -0300627 assert(new_state < RUN_STATE_MAX);
628
629 if (!runstate_valid_transitions[current_run_state][new_state]) {
630 fprintf(stderr, "ERROR: invalid runstate transition: '%s' -> '%s'\n",
631 RunState_lookup[current_run_state],
632 RunState_lookup[new_state]);
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300633 abort();
634 }
635
Luiz Capitulinof5bbfba2011-07-29 15:04:45 -0300636 current_run_state = new_state;
637}
638
Luiz Capitulino13548692011-07-29 15:36:43 -0300639int runstate_is_running(void)
640{
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300641 return runstate_check(RUN_STATE_RUNNING);
Luiz Capitulino13548692011-07-29 15:36:43 -0300642}
643
Luiz Capitulino1fa9a5e2011-09-12 17:54:20 -0300644StatusInfo *qmp_query_status(Error **errp)
645{
646 StatusInfo *info = g_malloc0(sizeof(*info));
647
648 info->running = runstate_is_running();
649 info->singlestep = singlestep;
650 info->status = current_run_state;
651
652 return info;
653}
654
Luiz Capitulinof5bbfba2011-07-29 15:04:45 -0300655/***********************************************************/
Paolo Bonzini8f0056b2010-01-13 14:05:34 +0100656/* real time host monotonic timer */
bellard09b26c52006-04-12 21:09:08 +0000657
bellardc4b1fcc2004-03-14 21:44:30 +0000658/***********************************************************/
balrogf6503052008-02-17 11:42:19 +0000659/* host time/date access */
660void qemu_get_timedate(struct tm *tm, int offset)
661{
662 time_t ti;
balrogf6503052008-02-17 11:42:19 +0000663
664 time(&ti);
665 ti += offset;
666 if (rtc_date_offset == -1) {
667 if (rtc_utc)
Stefan Weileb7ff6f2013-01-07 23:08:13 +0100668 gmtime_r(&ti, tm);
balrogf6503052008-02-17 11:42:19 +0000669 else
Stefan Weileb7ff6f2013-01-07 23:08:13 +0100670 localtime_r(&ti, tm);
balrogf6503052008-02-17 11:42:19 +0000671 } else {
672 ti -= rtc_date_offset;
Stefan Weileb7ff6f2013-01-07 23:08:13 +0100673 gmtime_r(&ti, tm);
balrogf6503052008-02-17 11:42:19 +0000674 }
balrogf6503052008-02-17 11:42:19 +0000675}
676
677int qemu_timedate_diff(struct tm *tm)
678{
679 time_t seconds;
680
681 if (rtc_date_offset == -1)
682 if (rtc_utc)
683 seconds = mktimegm(tm);
Gleb Natapovf54c5562011-11-06 18:00:22 +0200684 else {
685 struct tm tmp = *tm;
686 tmp.tm_isdst = -1; /* use timezone to figure it out */
687 seconds = mktime(&tmp);
688 }
balrogf6503052008-02-17 11:42:19 +0000689 else
690 seconds = mktimegm(tm) + rtc_date_offset;
691
692 return seconds - time(NULL);
693}
694
Luiz Capitulino80cd3472010-02-25 12:11:44 -0300695void rtc_change_mon_event(struct tm *tm)
696{
697 QObject *data;
698
699 data = qobject_from_jsonf("{ 'offset': %d }", qemu_timedate_diff(tm));
700 monitor_protocol_event(QEVENT_RTC_CHANGE, data);
701 qobject_decref(data);
702}
703
Jan Kiszka1ed2fc12009-09-15 13:36:04 +0200704static void configure_rtc_date_offset(const char *startdate, int legacy)
705{
706 time_t rtc_start_date;
707 struct tm tm;
708
709 if (!strcmp(startdate, "now") && legacy) {
710 rtc_date_offset = -1;
711 } else {
712 if (sscanf(startdate, "%d-%d-%dT%d:%d:%d",
713 &tm.tm_year,
714 &tm.tm_mon,
715 &tm.tm_mday,
716 &tm.tm_hour,
717 &tm.tm_min,
718 &tm.tm_sec) == 6) {
719 /* OK */
720 } else if (sscanf(startdate, "%d-%d-%d",
721 &tm.tm_year,
722 &tm.tm_mon,
723 &tm.tm_mday) == 3) {
724 tm.tm_hour = 0;
725 tm.tm_min = 0;
726 tm.tm_sec = 0;
727 } else {
728 goto date_fail;
729 }
730 tm.tm_year -= 1900;
731 tm.tm_mon--;
732 rtc_start_date = mktimegm(&tm);
733 if (rtc_start_date == -1) {
734 date_fail:
735 fprintf(stderr, "Invalid date format. Valid formats are:\n"
736 "'2006-06-17T16:01:21' or '2006-06-17'\n");
737 exit(1);
738 }
739 rtc_date_offset = time(NULL) - rtc_start_date;
740 }
741}
742
743static void configure_rtc(QemuOpts *opts)
744{
745 const char *value;
746
747 value = qemu_opt_get(opts, "base");
748 if (value) {
749 if (!strcmp(value, "utc")) {
750 rtc_utc = 1;
751 } else if (!strcmp(value, "localtime")) {
752 rtc_utc = 0;
753 } else {
754 configure_rtc_date_offset(value, 0);
755 }
756 }
Jan Kiszka68752042009-09-15 13:36:04 +0200757 value = qemu_opt_get(opts, "clock");
758 if (value) {
759 if (!strcmp(value, "host")) {
760 rtc_clock = host_clock;
Paolo Bonzini78808142012-03-30 10:31:21 +0000761 } else if (!strcmp(value, "rt")) {
762 rtc_clock = rt_clock;
Jan Kiszka68752042009-09-15 13:36:04 +0200763 } else if (!strcmp(value, "vm")) {
764 rtc_clock = vm_clock;
765 } else {
766 fprintf(stderr, "qemu: invalid option value '%s'\n", value);
767 exit(1);
768 }
769 }
Jan Kiszka1ed2fc12009-09-15 13:36:04 +0200770 value = qemu_opt_get(opts, "driftfix");
771 if (value) {
Blue Swirl7e4c0332010-03-27 21:33:46 +0000772 if (!strcmp(value, "slew")) {
Jan Kiszka433acf02012-01-23 20:15:12 +0100773 static GlobalProperty slew_lost_ticks[] = {
774 {
775 .driver = "mc146818rtc",
776 .property = "lost_tick_policy",
777 .value = "slew",
778 },
779 { /* end of list */ }
780 };
781
782 qdev_prop_register_global_list(slew_lost_ticks);
Blue Swirl7e4c0332010-03-27 21:33:46 +0000783 } else if (!strcmp(value, "none")) {
Jan Kiszka433acf02012-01-23 20:15:12 +0100784 /* discard is default */
Jan Kiszka1ed2fc12009-09-15 13:36:04 +0200785 } else {
786 fprintf(stderr, "qemu: invalid option value '%s'\n", value);
787 exit(1);
788 }
789 }
Jan Kiszka1ed2fc12009-09-15 13:36:04 +0200790}
791
balrog1ae26a12008-09-28 23:19:47 +0000792/***********************************************************/
793/* Bluetooth support */
794static int nb_hcis;
795static int cur_hci;
796static struct HCIInfo *hci_table[MAX_NICS];
balrogdc72ac12008-11-09 00:04:26 +0000797
balrog1ae26a12008-09-28 23:19:47 +0000798static struct bt_vlan_s {
799 struct bt_scatternet_s net;
800 int id;
801 struct bt_vlan_s *next;
802} *first_bt_vlan;
803
804/* find or alloc a new bluetooth "VLAN" */
blueswir1674bb262008-09-30 18:18:27 +0000805static struct bt_scatternet_s *qemu_find_bt_vlan(int id)
balrog1ae26a12008-09-28 23:19:47 +0000806{
807 struct bt_vlan_s **pvlan, *vlan;
808 for (vlan = first_bt_vlan; vlan != NULL; vlan = vlan->next) {
809 if (vlan->id == id)
810 return &vlan->net;
811 }
Anthony Liguori7267c092011-08-20 22:09:37 -0500812 vlan = g_malloc0(sizeof(struct bt_vlan_s));
balrog1ae26a12008-09-28 23:19:47 +0000813 vlan->id = id;
814 pvlan = &first_bt_vlan;
815 while (*pvlan != NULL)
816 pvlan = &(*pvlan)->next;
817 *pvlan = vlan;
818 return &vlan->net;
819}
820
821static void null_hci_send(struct HCIInfo *hci, const uint8_t *data, int len)
822{
823}
824
825static int null_hci_addr_set(struct HCIInfo *hci, const uint8_t *bd_addr)
826{
827 return -ENOTSUP;
828}
829
830static struct HCIInfo null_hci = {
831 .cmd_send = null_hci_send,
832 .sco_send = null_hci_send,
833 .acl_send = null_hci_send,
834 .bdaddr_set = null_hci_addr_set,
835};
836
837struct HCIInfo *qemu_next_hci(void)
838{
839 if (cur_hci == nb_hcis)
840 return &null_hci;
841
842 return hci_table[cur_hci++];
843}
844
balrogdc72ac12008-11-09 00:04:26 +0000845static struct HCIInfo *hci_init(const char *str)
846{
847 char *endp;
848 struct bt_scatternet_s *vlan = 0;
849
850 if (!strcmp(str, "null"))
851 /* null */
852 return &null_hci;
853 else if (!strncmp(str, "host", 4) && (str[4] == '\0' || str[4] == ':'))
854 /* host[:hciN] */
855 return bt_host_hci(str[4] ? str + 5 : "hci0");
856 else if (!strncmp(str, "hci", 3)) {
857 /* hci[,vlan=n] */
858 if (str[3]) {
859 if (!strncmp(str + 3, ",vlan=", 6)) {
860 vlan = qemu_find_bt_vlan(strtol(str + 9, &endp, 0));
861 if (*endp)
862 vlan = 0;
863 }
864 } else
865 vlan = qemu_find_bt_vlan(0);
866 if (vlan)
867 return bt_new_hci(vlan);
868 }
869
870 fprintf(stderr, "qemu: Unknown bluetooth HCI `%s'.\n", str);
871
872 return 0;
873}
874
875static int bt_hci_parse(const char *str)
876{
877 struct HCIInfo *hci;
Anthony Liguoric227f092009-10-01 16:12:16 -0500878 bdaddr_t bdaddr;
balrogdc72ac12008-11-09 00:04:26 +0000879
880 if (nb_hcis >= MAX_NICS) {
881 fprintf(stderr, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS);
882 return -1;
883 }
884
885 hci = hci_init(str);
886 if (!hci)
887 return -1;
888
889 bdaddr.b[0] = 0x52;
890 bdaddr.b[1] = 0x54;
891 bdaddr.b[2] = 0x00;
892 bdaddr.b[3] = 0x12;
893 bdaddr.b[4] = 0x34;
894 bdaddr.b[5] = 0x56 + nb_hcis;
895 hci->bdaddr_set(hci, bdaddr.b);
896
897 hci_table[nb_hcis++] = hci;
898
899 return 0;
900}
901
902static void bt_vhci_add(int vlan_id)
903{
904 struct bt_scatternet_s *vlan = qemu_find_bt_vlan(vlan_id);
905
906 if (!vlan->slave)
907 fprintf(stderr, "qemu: warning: adding a VHCI to "
908 "an empty scatternet %i\n", vlan_id);
909
910 bt_vhci_init(bt_new_hci(vlan));
911}
912
913static struct bt_device_s *bt_device_add(const char *opt)
914{
915 struct bt_scatternet_s *vlan;
916 int vlan_id = 0;
917 char *endp = strstr(opt, ",vlan=");
918 int len = (endp ? endp - opt : strlen(opt)) + 1;
919 char devname[10];
920
921 pstrcpy(devname, MIN(sizeof(devname), len), opt);
922
923 if (endp) {
924 vlan_id = strtol(endp + 6, &endp, 0);
925 if (*endp) {
926 fprintf(stderr, "qemu: unrecognised bluetooth vlan Id\n");
927 return 0;
928 }
929 }
930
931 vlan = qemu_find_bt_vlan(vlan_id);
932
933 if (!vlan->slave)
934 fprintf(stderr, "qemu: warning: adding a slave device to "
935 "an empty scatternet %i\n", vlan_id);
936
937 if (!strcmp(devname, "keyboard"))
938 return bt_keyboard_init(vlan);
939
940 fprintf(stderr, "qemu: unsupported bluetooth device `%s'\n", devname);
941 return 0;
942}
943
944static int bt_parse(const char *opt)
945{
946 const char *endp, *p;
947 int vlan;
948
949 if (strstart(opt, "hci", &endp)) {
950 if (!*endp || *endp == ',') {
951 if (*endp)
952 if (!strstart(endp, ",vlan=", 0))
953 opt = endp + 1;
954
955 return bt_hci_parse(opt);
956 }
957 } else if (strstart(opt, "vhci", &endp)) {
958 if (!*endp || *endp == ',') {
959 if (*endp) {
960 if (strstart(endp, ",vlan=", &p)) {
961 vlan = strtol(p, (char **) &endp, 0);
962 if (*endp) {
963 fprintf(stderr, "qemu: bad scatternet '%s'\n", p);
964 return 1;
965 }
966 } else {
967 fprintf(stderr, "qemu: bad parameter '%s'\n", endp + 1);
968 return 1;
969 }
970 } else
971 vlan = 0;
972
973 bt_vhci_add(vlan);
974 return 0;
975 }
976 } else if (strstart(opt, "device:", &endp))
977 return !bt_device_add(endp);
978
979 fprintf(stderr, "qemu: bad bluetooth parameter '%s'\n", opt);
980 return 1;
981}
982
Eduardo Otubo7d76ad42012-08-14 18:44:08 -0300983static int parse_sandbox(QemuOpts *opts, void *opaque)
984{
985 /* FIXME: change this to true for 1.3 */
986 if (qemu_opt_get_bool(opts, "enable", false)) {
987#ifdef CONFIG_SECCOMP
988 if (seccomp_start() < 0) {
989 qerror_report(ERROR_CLASS_GENERIC_ERROR,
990 "failed to install seccomp syscall filter in the kernel");
991 return -1;
992 }
993#else
994 qerror_report(ERROR_CLASS_GENERIC_ERROR,
995 "sandboxing request but seccomp is not compiled into this build");
996 return -1;
997#endif
998 }
999
1000 return 0;
1001}
1002
zhlcindy@gmail.com094b2872012-09-02 19:25:28 +00001003/*********QEMU USB setting******/
1004bool usb_enabled(bool default_usb)
1005{
1006 QemuOpts *mach_opts;
1007 mach_opts = qemu_opts_find(qemu_find_opts("machine"), 0);
1008 if (mach_opts) {
1009 return qemu_opt_get_bool(mach_opts, "usb", default_usb);
1010 }
1011 return default_usb;
1012}
1013
Corey Bryant587ed6b2012-10-18 15:19:34 -04001014#ifndef _WIN32
1015static int parse_add_fd(QemuOpts *opts, void *opaque)
1016{
1017 int fd, dupfd, flags;
1018 int64_t fdset_id;
1019 const char *fd_opaque = NULL;
1020
1021 fd = qemu_opt_get_number(opts, "fd", -1);
1022 fdset_id = qemu_opt_get_number(opts, "set", -1);
1023 fd_opaque = qemu_opt_get(opts, "opaque");
1024
1025 if (fd < 0) {
1026 qerror_report(ERROR_CLASS_GENERIC_ERROR,
1027 "fd option is required and must be non-negative");
1028 return -1;
1029 }
1030
1031 if (fd <= STDERR_FILENO) {
1032 qerror_report(ERROR_CLASS_GENERIC_ERROR,
1033 "fd cannot be a standard I/O stream");
1034 return -1;
1035 }
1036
1037 /*
1038 * All fds inherited across exec() necessarily have FD_CLOEXEC
1039 * clear, while qemu sets FD_CLOEXEC on all other fds used internally.
1040 */
1041 flags = fcntl(fd, F_GETFD);
1042 if (flags == -1 || (flags & FD_CLOEXEC)) {
1043 qerror_report(ERROR_CLASS_GENERIC_ERROR,
1044 "fd is not valid or already in use");
1045 return -1;
1046 }
1047
1048 if (fdset_id < 0) {
1049 qerror_report(ERROR_CLASS_GENERIC_ERROR,
1050 "set option is required and must be non-negative");
1051 return -1;
1052 }
1053
1054#ifdef F_DUPFD_CLOEXEC
1055 dupfd = fcntl(fd, F_DUPFD_CLOEXEC, 0);
1056#else
1057 dupfd = dup(fd);
1058 if (dupfd != -1) {
1059 qemu_set_cloexec(dupfd);
1060 }
1061#endif
1062 if (dupfd == -1) {
1063 qerror_report(ERROR_CLASS_GENERIC_ERROR,
1064 "Error duplicating fd: %s", strerror(errno));
1065 return -1;
1066 }
1067
1068 /* add the duplicate fd, and optionally the opaque string, to the fd set */
1069 monitor_fdset_add_fd(dupfd, true, fdset_id, fd_opaque ? true : false,
1070 fd_opaque, NULL);
1071
1072 return 0;
1073}
1074
1075static int cleanup_add_fd(QemuOpts *opts, void *opaque)
1076{
1077 int fd;
1078
1079 fd = qemu_opt_get_number(opts, "fd", -1);
1080 close(fd);
1081
1082 return 0;
1083}
1084#endif
1085
balrog1ae26a12008-09-28 23:19:47 +00001086/***********************************************************/
1087/* QEMU Block devices */
1088
Markus Armbruster2292dda2011-01-28 11:21:41 +01001089#define HD_OPTS "media=disk"
1090#define CDROM_OPTS "media=cdrom"
1091#define FD_OPTS ""
1092#define PFLASH_OPTS ""
1093#define MTD_OPTS ""
1094#define SD_OPTS ""
thse4bcb142007-12-02 04:51:10 +00001095
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02001096static int drive_init_func(QemuOpts *opts, void *opaque)
1097{
Christian Borntraeger2d0d2832012-11-20 15:30:34 +01001098 BlockInterfaceType *block_default_type = opaque;
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02001099
Christian Borntraeger2d0d2832012-11-20 15:30:34 +01001100 return drive_init(opts, *block_default_type) == NULL;
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02001101}
1102
1103static int drive_enable_snapshot(QemuOpts *opts, void *opaque)
1104{
1105 if (NULL == qemu_opt_get(opts, "snapshot")) {
1106 qemu_opt_set(opts, "snapshot", "on");
1107 }
1108 return 0;
1109}
1110
Christian Borntraeger3c42ea62012-11-22 21:02:55 +01001111static void default_drive(int enable, int snapshot, BlockInterfaceType type,
1112 int index, const char *optstr)
Markus Armbruster4e5d9b52011-01-28 11:21:45 +01001113{
1114 QemuOpts *opts;
1115
Markus Armbruster4e5d9b52011-01-28 11:21:45 +01001116 if (!enable || drive_get_by_index(type, index)) {
1117 return;
1118 }
1119
1120 opts = drive_add(type, index, NULL, optstr);
1121 if (snapshot) {
1122 drive_enable_snapshot(opts, NULL);
1123 }
Christian Borntraeger2d0d2832012-11-20 15:30:34 +01001124 if (!drive_init(opts, type)) {
Markus Armbruster4e5d9b52011-01-28 11:21:45 +01001125 exit(1);
1126 }
1127}
1128
Jan Kiszka76e30d02009-07-02 00:19:02 +02001129void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque)
1130{
1131 boot_set_handler = func;
1132 boot_set_opaque = opaque;
1133}
1134
1135int qemu_boot_set(const char *boot_devices)
1136{
1137 if (!boot_set_handler) {
1138 return -EINVAL;
1139 }
1140 return boot_set_handler(boot_set_opaque, boot_devices);
1141}
1142
Eduardo Habkost4e9e9d62010-04-06 19:22:08 -03001143static void validate_bootdevices(char *devices)
Jan Kiszkaef3adf62009-07-02 00:19:02 +02001144{
1145 /* We just do some generic consistency checks */
1146 const char *p;
1147 int bitmap = 0;
1148
1149 for (p = devices; *p != '\0'; p++) {
1150 /* Allowed boot devices are:
1151 * a-b: floppy disk drives
1152 * c-f: IDE disk drives
Dong Xu Wang07f35072011-11-22 18:06:26 +08001153 * g-m: machine implementation dependent drives
Jan Kiszkaef3adf62009-07-02 00:19:02 +02001154 * n-p: network devices
1155 * It's up to each machine implementation to check if the given boot
1156 * devices match the actual hardware implementation and firmware
1157 * features.
1158 */
1159 if (*p < 'a' || *p > 'p') {
1160 fprintf(stderr, "Invalid boot device '%c'\n", *p);
1161 exit(1);
1162 }
1163 if (bitmap & (1 << (*p - 'a'))) {
1164 fprintf(stderr, "Boot device '%c' was given twice\n", *p);
1165 exit(1);
1166 }
1167 bitmap |= 1 << (*p - 'a');
1168 }
Jan Kiszkaef3adf62009-07-02 00:19:02 +02001169}
1170
Jan Kiszkae0f084b2009-07-02 00:19:02 +02001171static void restore_boot_devices(void *opaque)
1172{
1173 char *standard_boot_devices = opaque;
Alex Williamson37905d62010-04-30 15:21:11 -06001174 static int first = 1;
1175
1176 /* Restore boot order and remove ourselves after the first boot */
1177 if (first) {
1178 first = 0;
1179 return;
1180 }
Jan Kiszkae0f084b2009-07-02 00:19:02 +02001181
1182 qemu_boot_set(standard_boot_devices);
1183
1184 qemu_unregister_reset(restore_boot_devices, standard_boot_devices);
Anthony Liguori7267c092011-08-20 22:09:37 -05001185 g_free(standard_boot_devices);
Jan Kiszkae0f084b2009-07-02 00:19:02 +02001186}
1187
Gleb Natapov1ca4d092010-12-08 13:35:05 +02001188void add_boot_device_path(int32_t bootindex, DeviceState *dev,
1189 const char *suffix)
1190{
1191 FWBootEntry *node, *i;
1192
1193 if (bootindex < 0) {
1194 return;
1195 }
1196
1197 assert(dev != NULL || suffix != NULL);
1198
Anthony Liguori7267c092011-08-20 22:09:37 -05001199 node = g_malloc0(sizeof(FWBootEntry));
Gleb Natapov1ca4d092010-12-08 13:35:05 +02001200 node->bootindex = bootindex;
Anthony Liguori7267c092011-08-20 22:09:37 -05001201 node->suffix = suffix ? g_strdup(suffix) : NULL;
Gleb Natapov1ca4d092010-12-08 13:35:05 +02001202 node->dev = dev;
1203
1204 QTAILQ_FOREACH(i, &fw_boot_order, link) {
1205 if (i->bootindex == bootindex) {
1206 fprintf(stderr, "Two devices with same boot index %d\n", bootindex);
1207 exit(1);
1208 } else if (i->bootindex < bootindex) {
1209 continue;
1210 }
1211 QTAILQ_INSERT_BEFORE(i, node, link);
1212 return;
1213 }
1214 QTAILQ_INSERT_TAIL(&fw_boot_order, node, link);
1215}
1216
Gleb Natapov962630f2010-12-08 13:35:09 +02001217/*
1218 * This function returns null terminated string that consist of new line
Brad Hards71785ab2011-04-23 21:50:06 +10001219 * separated device paths.
Gleb Natapov962630f2010-12-08 13:35:09 +02001220 *
1221 * memory pointed by "size" is assigned total length of the array in bytes
1222 *
1223 */
Markus Armbruster0e7a7592013-01-16 14:50:29 +01001224char *get_boot_devices_list(size_t *size)
Gleb Natapov962630f2010-12-08 13:35:09 +02001225{
1226 FWBootEntry *i;
Markus Armbruster0e7a7592013-01-16 14:50:29 +01001227 size_t total = 0;
Gleb Natapov962630f2010-12-08 13:35:09 +02001228 char *list = NULL;
1229
1230 QTAILQ_FOREACH(i, &fw_boot_order, link) {
1231 char *devpath = NULL, *bootpath;
Markus Armbruster0e7a7592013-01-16 14:50:29 +01001232 size_t len;
Gleb Natapov962630f2010-12-08 13:35:09 +02001233
1234 if (i->dev) {
1235 devpath = qdev_get_fw_dev_path(i->dev);
1236 assert(devpath);
1237 }
1238
1239 if (i->suffix && devpath) {
Blue Swirl4fd37a92010-12-19 14:05:43 +00001240 size_t bootpathlen = strlen(devpath) + strlen(i->suffix) + 1;
1241
Anthony Liguori7267c092011-08-20 22:09:37 -05001242 bootpath = g_malloc(bootpathlen);
Blue Swirl4fd37a92010-12-19 14:05:43 +00001243 snprintf(bootpath, bootpathlen, "%s%s", devpath, i->suffix);
Anthony Liguori7267c092011-08-20 22:09:37 -05001244 g_free(devpath);
Gleb Natapov962630f2010-12-08 13:35:09 +02001245 } else if (devpath) {
1246 bootpath = devpath;
1247 } else {
Markus Armbruster1bf6ccd2011-11-08 10:58:00 +01001248 assert(i->suffix);
Anthony Liguori7267c092011-08-20 22:09:37 -05001249 bootpath = g_strdup(i->suffix);
Gleb Natapov962630f2010-12-08 13:35:09 +02001250 }
1251
1252 if (total) {
1253 list[total-1] = '\n';
1254 }
1255 len = strlen(bootpath) + 1;
Anthony Liguori7267c092011-08-20 22:09:37 -05001256 list = g_realloc(list, total + len);
Gleb Natapov962630f2010-12-08 13:35:09 +02001257 memcpy(&list[total], bootpath, len);
1258 total += len;
Anthony Liguori7267c092011-08-20 22:09:37 -05001259 g_free(bootpath);
Gleb Natapov962630f2010-12-08 13:35:09 +02001260 }
1261
1262 *size = total;
1263
1264 return list;
1265}
1266
Eduardo Habkost845e5bf2013-02-04 16:27:51 -02001267static void numa_node_parse_cpus(int nodenr, const char *cpus)
1268{
1269 char *endptr;
1270 unsigned long long value, endvalue;
1271
Eduardo Habkostc881e202013-02-04 16:27:52 -02001272 /* Empty CPU range strings will be considered valid, they will simply
1273 * not set any bit in the CPU bitmap.
1274 */
1275 if (!*cpus) {
1276 return;
Eduardo Habkost845e5bf2013-02-04 16:27:51 -02001277 }
1278
Eduardo Habkostc881e202013-02-04 16:27:52 -02001279 if (parse_uint(cpus, &value, &endptr, 10) < 0) {
1280 goto error;
1281 }
1282 if (*endptr == '-') {
1283 if (parse_uint_full(endptr + 1, &endvalue, 10) < 0) {
1284 goto error;
1285 }
1286 } else if (*endptr == '\0') {
1287 endvalue = value;
1288 } else {
1289 goto error;
1290 }
1291
1292 if (endvalue >= MAX_CPUMASK_BITS) {
Eduardo Habkost845e5bf2013-02-04 16:27:51 -02001293 endvalue = MAX_CPUMASK_BITS - 1;
1294 fprintf(stderr,
Eduardo Habkostc881e202013-02-04 16:27:52 -02001295 "qemu: NUMA: A max of %d VCPUs are supported\n",
Eduardo Habkost845e5bf2013-02-04 16:27:51 -02001296 MAX_CPUMASK_BITS);
1297 }
1298
Eduardo Habkostc881e202013-02-04 16:27:52 -02001299 if (endvalue < value) {
1300 goto error;
1301 }
1302
Eduardo Habkost845e5bf2013-02-04 16:27:51 -02001303 bitmap_set(node_cpumask[nodenr], value, endvalue-value+1);
Eduardo Habkostc881e202013-02-04 16:27:52 -02001304 return;
1305
1306error:
1307 fprintf(stderr, "qemu: Invalid NUMA CPU range: %s\n", cpus);
1308 exit(1);
Eduardo Habkost845e5bf2013-02-04 16:27:51 -02001309}
1310
aliguori268a3622009-04-21 22:30:27 +00001311static void numa_add(const char *optarg)
1312{
1313 char option[128];
1314 char *endptr;
Eduardo Habkoste4ce85b2013-02-04 16:27:49 -02001315 unsigned long long nodenr;
aliguori268a3622009-04-21 22:30:27 +00001316
Eduardo Habkost8f302cb2013-02-04 16:27:46 -02001317 optarg = get_opt_name(option, 128, optarg, ',');
1318 if (*optarg == ',') {
1319 optarg++;
1320 }
aliguori268a3622009-04-21 22:30:27 +00001321 if (!strcmp(option, "node")) {
Eduardo Habkostca4c6d32013-02-04 16:27:48 -02001322
1323 if (nb_numa_nodes >= MAX_NODES) {
1324 fprintf(stderr, "qemu: too many NUMA nodes\n");
1325 exit(1);
1326 }
1327
aliguori268a3622009-04-21 22:30:27 +00001328 if (get_param_value(option, 128, "nodeid", optarg) == 0) {
1329 nodenr = nb_numa_nodes;
1330 } else {
Eduardo Habkost5f139962013-02-04 16:27:50 -02001331 if (parse_uint_full(option, &nodenr, 10) < 0) {
1332 fprintf(stderr, "qemu: Invalid NUMA nodeid: %s\n", option);
1333 exit(1);
1334 }
aliguori268a3622009-04-21 22:30:27 +00001335 }
1336
Eduardo Habkoste4ce85b2013-02-04 16:27:49 -02001337 if (nodenr >= MAX_NODES) {
1338 fprintf(stderr, "qemu: invalid NUMA nodeid: %llu\n", nodenr);
1339 exit(1);
1340 }
1341
aliguori268a3622009-04-21 22:30:27 +00001342 if (get_param_value(option, 128, "mem", optarg) == 0) {
1343 node_mem[nodenr] = 0;
1344 } else {
Jes Sorensen70b4f4b2011-01-05 11:41:02 +01001345 int64_t sval;
Markus Armbrusterc03417b2011-11-22 09:46:02 +01001346 sval = strtosz(option, &endptr);
1347 if (sval < 0 || *endptr) {
Jes Sorensen9f9b17a2010-10-21 17:15:46 +02001348 fprintf(stderr, "qemu: invalid numa mem size: %s\n", optarg);
1349 exit(1);
aliguori268a3622009-04-21 22:30:27 +00001350 }
Jes Sorensen9f9b17a2010-10-21 17:15:46 +02001351 node_mem[nodenr] = sval;
aliguori268a3622009-04-21 22:30:27 +00001352 }
Chegu Vinodee785fe2012-07-16 21:31:30 -07001353 if (get_param_value(option, 128, "cpus", optarg) != 0) {
Eduardo Habkost845e5bf2013-02-04 16:27:51 -02001354 numa_node_parse_cpus(nodenr, option);
aliguori268a3622009-04-21 22:30:27 +00001355 }
1356 nb_numa_nodes++;
Eduardo Habkost12e53a92013-02-04 16:27:47 -02001357 } else {
1358 fprintf(stderr, "Invalid -numa option: %s\n", option);
1359 exit(1);
aliguori268a3622009-04-21 22:30:27 +00001360 }
aliguori268a3622009-04-21 22:30:27 +00001361}
1362
Andre Przywaradc6b1c02009-08-19 15:42:40 +02001363static void smp_parse(const char *optarg)
1364{
1365 int smp, sockets = 0, threads = 0, cores = 0;
1366 char *endptr;
1367 char option[128];
1368
1369 smp = strtoul(optarg, &endptr, 10);
1370 if (endptr != optarg) {
1371 if (*endptr == ',') {
1372 endptr++;
1373 }
1374 }
1375 if (get_param_value(option, 128, "sockets", endptr) != 0)
1376 sockets = strtoull(option, NULL, 10);
1377 if (get_param_value(option, 128, "cores", endptr) != 0)
1378 cores = strtoull(option, NULL, 10);
1379 if (get_param_value(option, 128, "threads", endptr) != 0)
1380 threads = strtoull(option, NULL, 10);
1381 if (get_param_value(option, 128, "maxcpus", endptr) != 0)
1382 max_cpus = strtoull(option, NULL, 10);
1383
1384 /* compute missing values, prefer sockets over cores over threads */
1385 if (smp == 0 || sockets == 0) {
1386 sockets = sockets > 0 ? sockets : 1;
1387 cores = cores > 0 ? cores : 1;
1388 threads = threads > 0 ? threads : 1;
1389 if (smp == 0) {
1390 smp = cores * threads * sockets;
Andre Przywaradc6b1c02009-08-19 15:42:40 +02001391 }
1392 } else {
1393 if (cores == 0) {
1394 threads = threads > 0 ? threads : 1;
1395 cores = smp / (sockets * threads);
1396 } else {
Joel Schoppdca98162010-07-21 15:05:17 -05001397 threads = smp / (cores * sockets);
Andre Przywaradc6b1c02009-08-19 15:42:40 +02001398 }
1399 }
1400 smp_cpus = smp;
1401 smp_cores = cores > 0 ? cores : 1;
1402 smp_threads = threads > 0 ? threads : 1;
1403 if (max_cpus == 0)
1404 max_cpus = smp_cpus;
1405}
1406
bellard330d0412003-07-26 18:11:40 +00001407/***********************************************************/
bellarda594cfb2005-11-06 16:13:29 +00001408/* USB devices */
1409
Markus Armbrusterfb080002010-05-28 15:38:44 +02001410static int usb_device_add(const char *devname)
bellarda594cfb2005-11-06 16:13:29 +00001411{
1412 const char *p;
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001413 USBDevice *dev = NULL;
bellarda594cfb2005-11-06 16:13:29 +00001414
zhlcindy@gmail.com094b2872012-09-02 19:25:28 +00001415 if (!usb_enabled(false)) {
bellarda594cfb2005-11-06 16:13:29 +00001416 return -1;
zhlcindy@gmail.com094b2872012-09-02 19:25:28 +00001417 }
bellarda594cfb2005-11-06 16:13:29 +00001418
Gerd Hoffmann0958b4c2009-10-26 15:56:45 +01001419 /* drivers with .usbdevice_name entry in USBDeviceInfo */
1420 dev = usbdevice_create(devname);
1421 if (dev)
1422 goto done;
1423
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001424 /* the other ones */
Gerd Hoffmanne447fc62011-06-01 14:41:59 +02001425#ifndef CONFIG_LINUX
1426 /* only the linux version is qdev-ified, usb-bsd still needs this */
bellarda594cfb2005-11-06 16:13:29 +00001427 if (strstart(devname, "host:", &p)) {
Jan Kiszka37417152012-02-27 15:18:47 +01001428 dev = usb_host_device_open(usb_bus_find(-1), p);
Gerd Hoffmanne447fc62011-06-01 14:41:59 +02001429 } else
1430#endif
1431 if (!strcmp(devname, "bt") || strstart(devname, "bt:", &p)) {
Jan Kiszka37417152012-02-27 15:18:47 +01001432 dev = usb_bt_init(usb_bus_find(-1),
1433 devname[2] ? hci_init(p)
1434 : bt_new_hci(qemu_find_bt_vlan(0)));
bellarda594cfb2005-11-06 16:13:29 +00001435 } else {
1436 return -1;
1437 }
pbrook0d92ed32006-05-21 16:30:15 +00001438 if (!dev)
1439 return -1;
1440
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001441done:
bellarda594cfb2005-11-06 16:13:29 +00001442 return 0;
1443}
1444
aliguori1f3870a2008-08-21 19:27:48 +00001445static int usb_device_del(const char *devname)
1446{
1447 int bus_num, addr;
1448 const char *p;
1449
Gerd Hoffmann1a3973b2012-11-30 13:02:47 +01001450 if (strstart(devname, "host:", &p)) {
1451 return -1;
1452 }
aliguori5d0c5752008-09-14 01:07:41 +00001453
zhlcindy@gmail.com094b2872012-09-02 19:25:28 +00001454 if (!usb_enabled(false)) {
aliguori1f3870a2008-08-21 19:27:48 +00001455 return -1;
zhlcindy@gmail.com094b2872012-09-02 19:25:28 +00001456 }
aliguori1f3870a2008-08-21 19:27:48 +00001457
1458 p = strchr(devname, '.');
1459 if (!p)
1460 return -1;
1461 bus_num = strtoul(devname, NULL, 0);
1462 addr = strtoul(p + 1, NULL, 0);
1463
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001464 return usb_device_delete_addr(bus_num, addr);
aliguori1f3870a2008-08-21 19:27:48 +00001465}
1466
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02001467static int usb_parse(const char *cmdline)
1468{
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001469 int r;
Markus Armbrusterfb080002010-05-28 15:38:44 +02001470 r = usb_device_add(cmdline);
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001471 if (r < 0) {
1472 fprintf(stderr, "qemu: could not add USB device '%s'\n", cmdline);
1473 }
1474 return r;
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02001475}
1476
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001477void do_usb_add(Monitor *mon, const QDict *qdict)
bellarda594cfb2005-11-06 16:13:29 +00001478{
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001479 const char *devname = qdict_get_str(qdict, "devname");
Markus Armbrusterfb080002010-05-28 15:38:44 +02001480 if (usb_device_add(devname) < 0) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01001481 error_report("could not add USB device '%s'", devname);
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001482 }
bellarda594cfb2005-11-06 16:13:29 +00001483}
1484
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001485void do_usb_del(Monitor *mon, const QDict *qdict)
bellarda594cfb2005-11-06 16:13:29 +00001486{
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001487 const char *devname = qdict_get_str(qdict, "devname");
1488 if (usb_device_del(devname) < 0) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01001489 error_report("could not delete USB device '%s'", devname);
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001490 }
bellarda594cfb2005-11-06 16:13:29 +00001491}
1492
bellardf7cce892004-12-08 22:21:25 +00001493/***********************************************************/
balrog201a51f2007-04-30 00:51:09 +00001494/* PCMCIA/Cardbus */
1495
1496static struct pcmcia_socket_entry_s {
Paul Brookbc24a222009-05-10 01:44:56 +01001497 PCMCIASocket *socket;
balrog201a51f2007-04-30 00:51:09 +00001498 struct pcmcia_socket_entry_s *next;
1499} *pcmcia_sockets = 0;
1500
Paul Brookbc24a222009-05-10 01:44:56 +01001501void pcmcia_socket_register(PCMCIASocket *socket)
balrog201a51f2007-04-30 00:51:09 +00001502{
1503 struct pcmcia_socket_entry_s *entry;
1504
Anthony Liguori7267c092011-08-20 22:09:37 -05001505 entry = g_malloc(sizeof(struct pcmcia_socket_entry_s));
balrog201a51f2007-04-30 00:51:09 +00001506 entry->socket = socket;
1507 entry->next = pcmcia_sockets;
1508 pcmcia_sockets = entry;
1509}
1510
Paul Brookbc24a222009-05-10 01:44:56 +01001511void pcmcia_socket_unregister(PCMCIASocket *socket)
balrog201a51f2007-04-30 00:51:09 +00001512{
1513 struct pcmcia_socket_entry_s *entry, **ptr;
1514
1515 ptr = &pcmcia_sockets;
1516 for (entry = *ptr; entry; ptr = &entry->next, entry = *ptr)
1517 if (entry->socket == socket) {
1518 *ptr = entry->next;
Anthony Liguori7267c092011-08-20 22:09:37 -05001519 g_free(entry);
balrog201a51f2007-04-30 00:51:09 +00001520 }
1521}
1522
Wenchao Xia84f2d0e2013-01-14 14:06:25 +08001523void pcmcia_info(Monitor *mon, const QDict *qdict)
balrog201a51f2007-04-30 00:51:09 +00001524{
1525 struct pcmcia_socket_entry_s *iter;
aliguori376253e2009-03-05 23:01:23 +00001526
balrog201a51f2007-04-30 00:51:09 +00001527 if (!pcmcia_sockets)
aliguori376253e2009-03-05 23:01:23 +00001528 monitor_printf(mon, "No PCMCIA sockets\n");
balrog201a51f2007-04-30 00:51:09 +00001529
1530 for (iter = pcmcia_sockets; iter; iter = iter->next)
aliguori376253e2009-03-05 23:01:23 +00001531 monitor_printf(mon, "%s: %s\n", iter->socket->slot_string,
1532 iter->socket->attached ? iter->socket->card_string :
1533 "Empty");
balrog201a51f2007-04-30 00:51:09 +00001534}
1535
1536/***********************************************************/
bellardcc1daa42005-06-05 14:49:17 +00001537/* machine registration */
1538
blueswir1bdaf78e2008-10-04 07:24:27 +00001539static QEMUMachine *first_machine = NULL;
aliguori6f338c32009-02-11 15:21:54 +00001540QEMUMachine *current_machine = NULL;
bellardcc1daa42005-06-05 14:49:17 +00001541
1542int qemu_register_machine(QEMUMachine *m)
1543{
1544 QEMUMachine **pm;
1545 pm = &first_machine;
1546 while (*pm != NULL)
1547 pm = &(*pm)->next;
1548 m->next = NULL;
1549 *pm = m;
1550 return 0;
1551}
1552
pbrook9596ebb2007-11-18 01:44:38 +00001553static QEMUMachine *find_machine(const char *name)
bellardcc1daa42005-06-05 14:49:17 +00001554{
1555 QEMUMachine *m;
1556
1557 for(m = first_machine; m != NULL; m = m->next) {
1558 if (!strcmp(m->name, name))
1559 return m;
Mark McLoughlin3f6599e2009-07-22 10:02:50 +01001560 if (m->alias && !strcmp(m->alias, name))
1561 return m;
bellardcc1daa42005-06-05 14:49:17 +00001562 }
1563 return NULL;
1564}
1565
Jordan Justen2c8cffa2012-02-21 23:18:50 -08001566QEMUMachine *find_default_machine(void)
Anthony Liguori0c257432009-05-21 20:41:01 -05001567{
1568 QEMUMachine *m;
1569
1570 for(m = first_machine; m != NULL; m = m->next) {
1571 if (m->is_default) {
1572 return m;
1573 }
1574 }
1575 return NULL;
1576}
1577
Anthony Liguori01d3c802012-08-10 11:04:11 -05001578MachineInfoList *qmp_query_machines(Error **errp)
1579{
1580 MachineInfoList *mach_list = NULL;
1581 QEMUMachine *m;
1582
1583 for (m = first_machine; m; m = m->next) {
1584 MachineInfoList *entry;
1585 MachineInfo *info;
1586
1587 info = g_malloc0(sizeof(*info));
1588 if (m->is_default) {
1589 info->has_is_default = true;
1590 info->is_default = true;
1591 }
1592
1593 if (m->alias) {
1594 info->has_alias = true;
1595 info->alias = g_strdup(m->alias);
1596 }
1597
1598 info->name = g_strdup(m->name);
1599
1600 entry = g_malloc0(sizeof(*entry));
1601 entry->value = info;
1602 entry->next = mach_list;
1603 mach_list = entry;
1604 }
1605
1606 return mach_list;
1607}
1608
bellardcc1daa42005-06-05 14:49:17 +00001609/***********************************************************/
bellard8a7ddc32004-03-31 19:00:16 +00001610/* main execution loop */
1611
pbrook9596ebb2007-11-18 01:44:38 +00001612static void gui_update(void *opaque)
bellard8a7ddc32004-03-31 19:00:16 +00001613{
aliguori7d957bd2009-01-15 22:14:11 +00001614 uint64_t interval = GUI_REFRESH_INTERVAL;
ths740733b2007-06-08 01:57:56 +00001615 DisplayState *ds = opaque;
Gerd Hoffmann87e487a2010-06-04 11:46:35 +02001616 DisplayChangeListener *dcl;
aliguori7d957bd2009-01-15 22:14:11 +00001617
1618 dpy_refresh(ds);
1619
Gerd Hoffmann87e487a2010-06-04 11:46:35 +02001620 QLIST_FOREACH(dcl, &ds->listeners, next) {
aliguori7d957bd2009-01-15 22:14:11 +00001621 if (dcl->gui_timer_interval &&
1622 dcl->gui_timer_interval < interval)
1623 interval = dcl->gui_timer_interval;
aliguori7d957bd2009-01-15 22:14:11 +00001624 }
Paolo Bonzini7bd427d2011-03-11 16:47:48 +01001625 qemu_mod_timer(ds->gui_timer, interval + qemu_get_clock_ms(rt_clock));
bellard8a7ddc32004-03-31 19:00:16 +00001626}
1627
Gerd Hoffmann35c9e0a2010-06-04 11:51:31 +02001628void gui_setup_refresh(DisplayState *ds)
1629{
1630 DisplayChangeListener *dcl;
1631 bool need_timer = false;
Gerd Hoffmanna93a4a22012-09-28 15:02:08 +02001632 bool have_gfx = false;
1633 bool have_text = false;
Gerd Hoffmann35c9e0a2010-06-04 11:51:31 +02001634
1635 QLIST_FOREACH(dcl, &ds->listeners, next) {
1636 if (dcl->dpy_refresh != NULL) {
1637 need_timer = true;
Gerd Hoffmanna93a4a22012-09-28 15:02:08 +02001638 }
1639 if (dcl->dpy_gfx_update != NULL) {
1640 have_gfx = true;
1641 }
1642 if (dcl->dpy_text_update != NULL) {
1643 have_text = true;
Gerd Hoffmann35c9e0a2010-06-04 11:51:31 +02001644 }
1645 }
1646
1647 if (need_timer && ds->gui_timer == NULL) {
1648 ds->gui_timer = qemu_new_timer_ms(rt_clock, gui_update, ds);
1649 qemu_mod_timer(ds->gui_timer, qemu_get_clock_ms(rt_clock));
1650 }
1651 if (!need_timer && ds->gui_timer != NULL) {
1652 qemu_del_timer(ds->gui_timer);
1653 qemu_free_timer(ds->gui_timer);
1654 ds->gui_timer = NULL;
1655 }
Gerd Hoffmanna93a4a22012-09-28 15:02:08 +02001656
1657 ds->have_gfx = have_gfx;
1658 ds->have_text = have_text;
Gerd Hoffmann35c9e0a2010-06-04 11:51:31 +02001659}
1660
bellard0bd48852005-11-11 00:00:47 +00001661struct vm_change_state_entry {
1662 VMChangeStateHandler *cb;
1663 void *opaque;
Blue Swirl72cf2d42009-09-12 07:36:22 +00001664 QLIST_ENTRY (vm_change_state_entry) entries;
bellard0bd48852005-11-11 00:00:47 +00001665};
1666
Blue Swirl72cf2d42009-09-12 07:36:22 +00001667static QLIST_HEAD(vm_change_state_head, vm_change_state_entry) vm_change_state_head;
bellard0bd48852005-11-11 00:00:47 +00001668
1669VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
1670 void *opaque)
1671{
1672 VMChangeStateEntry *e;
1673
Anthony Liguori7267c092011-08-20 22:09:37 -05001674 e = g_malloc0(sizeof (*e));
bellard0bd48852005-11-11 00:00:47 +00001675
1676 e->cb = cb;
1677 e->opaque = opaque;
Blue Swirl72cf2d42009-09-12 07:36:22 +00001678 QLIST_INSERT_HEAD(&vm_change_state_head, e, entries);
bellard0bd48852005-11-11 00:00:47 +00001679 return e;
1680}
1681
1682void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
1683{
Blue Swirl72cf2d42009-09-12 07:36:22 +00001684 QLIST_REMOVE (e, entries);
Anthony Liguori7267c092011-08-20 22:09:37 -05001685 g_free (e);
bellard0bd48852005-11-11 00:00:47 +00001686}
1687
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -03001688void vm_state_notify(int running, RunState state)
bellard0bd48852005-11-11 00:00:47 +00001689{
1690 VMChangeStateEntry *e;
1691
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -03001692 trace_vm_state_notify(running, state);
Stefan Hajnoczi94b0b5f2010-11-16 12:20:25 +00001693
bellard0bd48852005-11-11 00:00:47 +00001694 for (e = vm_change_state_head.lh_first; e; e = e->entries.le_next) {
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -03001695 e->cb(e->opaque, running, state);
bellard0bd48852005-11-11 00:00:47 +00001696 }
1697}
1698
bellard8a7ddc32004-03-31 19:00:16 +00001699void vm_start(void)
1700{
Luiz Capitulino13548692011-07-29 15:36:43 -03001701 if (!runstate_is_running()) {
bellard8a7ddc32004-03-31 19:00:16 +00001702 cpu_enable_ticks();
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001703 runstate_set(RUN_STATE_RUNNING);
1704 vm_state_notify(1, RUN_STATE_RUNNING);
aliguorid6dc3d42009-04-24 18:04:07 +00001705 resume_all_vcpus();
Luiz Capitulino6ed2c482010-04-27 20:35:59 -03001706 monitor_protocol_event(QEVENT_RESUME, NULL);
bellard8a7ddc32004-03-31 19:00:16 +00001707 }
1708}
1709
bellardbb0c6722004-06-20 12:37:32 +00001710/* reset/shutdown handler */
1711
1712typedef struct QEMUResetEntry {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001713 QTAILQ_ENTRY(QEMUResetEntry) entry;
bellardbb0c6722004-06-20 12:37:32 +00001714 QEMUResetHandler *func;
1715 void *opaque;
bellardbb0c6722004-06-20 12:37:32 +00001716} QEMUResetEntry;
1717
Blue Swirl72cf2d42009-09-12 07:36:22 +00001718static QTAILQ_HEAD(reset_handlers, QEMUResetEntry) reset_handlers =
1719 QTAILQ_HEAD_INITIALIZER(reset_handlers);
bellardbb0c6722004-06-20 12:37:32 +00001720static int reset_requested;
Gleb Natapovf64622c2011-03-15 13:56:04 +02001721static int shutdown_requested, shutdown_signal = -1;
1722static pid_t shutdown_pid;
bellard34751872005-07-02 14:31:34 +00001723static int powerdown_requested;
Jan Kiszka8cf71712011-02-07 12:19:16 +01001724static int debug_requested;
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001725static int suspend_requested;
Luiz Capitulino14058192012-08-08 17:29:17 -03001726static int wakeup_requested;
Igor Mammedova9552c82012-09-05 23:06:21 +02001727static NotifierList powerdown_notifiers =
1728 NOTIFIER_LIST_INITIALIZER(powerdown_notifiers);
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001729static NotifierList suspend_notifiers =
1730 NOTIFIER_LIST_INITIALIZER(suspend_notifiers);
1731static NotifierList wakeup_notifiers =
1732 NOTIFIER_LIST_INITIALIZER(wakeup_notifiers);
1733static uint32_t wakeup_reason_mask = ~0;
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001734static RunState vmstop_requested = RUN_STATE_MAX;
bellardbb0c6722004-06-20 12:37:32 +00001735
Anthony PERARD1291eb32010-07-22 15:52:48 +01001736int qemu_shutdown_requested_get(void)
1737{
1738 return shutdown_requested;
1739}
1740
1741int qemu_reset_requested_get(void)
1742{
1743 return reset_requested;
1744}
1745
Blue Swirl4fdcac02012-10-28 11:04:47 +00001746static int qemu_shutdown_requested(void)
aurel32cf7a2fe2008-03-18 06:53:05 +00001747{
1748 int r = shutdown_requested;
1749 shutdown_requested = 0;
1750 return r;
1751}
1752
Blue Swirl4fdcac02012-10-28 11:04:47 +00001753static void qemu_kill_report(void)
Gleb Natapovf64622c2011-03-15 13:56:04 +02001754{
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +02001755 if (!qtest_enabled() && shutdown_signal != -1) {
Peter Maydellf1d3fb02011-03-30 22:03:38 +01001756 fprintf(stderr, "qemu: terminating on signal %d", shutdown_signal);
1757 if (shutdown_pid == 0) {
1758 /* This happens for eg ^C at the terminal, so it's worth
1759 * avoiding printing an odd message in that case.
1760 */
1761 fputc('\n', stderr);
1762 } else {
Andreas Färber953ffe02011-06-02 19:58:06 +02001763 fprintf(stderr, " from pid " FMT_pid "\n", shutdown_pid);
Peter Maydellf1d3fb02011-03-30 22:03:38 +01001764 }
Gleb Natapovf64622c2011-03-15 13:56:04 +02001765 shutdown_signal = -1;
1766 }
1767}
1768
Blue Swirl4fdcac02012-10-28 11:04:47 +00001769static int qemu_reset_requested(void)
aurel32cf7a2fe2008-03-18 06:53:05 +00001770{
1771 int r = reset_requested;
1772 reset_requested = 0;
1773 return r;
1774}
1775
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001776static int qemu_suspend_requested(void)
1777{
1778 int r = suspend_requested;
1779 suspend_requested = 0;
1780 return r;
1781}
1782
Luiz Capitulino14058192012-08-08 17:29:17 -03001783static int qemu_wakeup_requested(void)
1784{
1785 int r = wakeup_requested;
1786 wakeup_requested = 0;
1787 return r;
1788}
1789
Blue Swirl4fdcac02012-10-28 11:04:47 +00001790static int qemu_powerdown_requested(void)
aurel32cf7a2fe2008-03-18 06:53:05 +00001791{
1792 int r = powerdown_requested;
1793 powerdown_requested = 0;
1794 return r;
1795}
1796
aliguorie5689022009-04-24 18:03:54 +00001797static int qemu_debug_requested(void)
1798{
1799 int r = debug_requested;
1800 debug_requested = 0;
1801 return r;
1802}
1803
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001804/* We use RUN_STATE_MAX but any invalid value will do */
Luiz Capitulino0d45b702011-09-30 14:27:11 -03001805static bool qemu_vmstop_requested(RunState *r)
aliguori6e29f5d2009-04-24 18:04:02 +00001806{
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001807 if (vmstop_requested < RUN_STATE_MAX) {
Luiz Capitulino0d45b702011-09-30 14:27:11 -03001808 *r = vmstop_requested;
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001809 vmstop_requested = RUN_STATE_MAX;
Luiz Capitulino0d45b702011-09-30 14:27:11 -03001810 return true;
1811 }
1812
1813 return false;
aliguori6e29f5d2009-04-24 18:04:02 +00001814}
1815
Jan Kiszkaa08d4362009-06-27 09:25:07 +02001816void qemu_register_reset(QEMUResetHandler *func, void *opaque)
bellardbb0c6722004-06-20 12:37:32 +00001817{
Anthony Liguori7267c092011-08-20 22:09:37 -05001818 QEMUResetEntry *re = g_malloc0(sizeof(QEMUResetEntry));
bellardbb0c6722004-06-20 12:37:32 +00001819
bellardbb0c6722004-06-20 12:37:32 +00001820 re->func = func;
1821 re->opaque = opaque;
Blue Swirl72cf2d42009-09-12 07:36:22 +00001822 QTAILQ_INSERT_TAIL(&reset_handlers, re, entry);
bellardbb0c6722004-06-20 12:37:32 +00001823}
1824
Jan Kiszkadda9b292009-07-02 00:19:02 +02001825void qemu_unregister_reset(QEMUResetHandler *func, void *opaque)
bellardbb0c6722004-06-20 12:37:32 +00001826{
1827 QEMUResetEntry *re;
1828
Blue Swirl72cf2d42009-09-12 07:36:22 +00001829 QTAILQ_FOREACH(re, &reset_handlers, entry) {
Jan Kiszkadda9b292009-07-02 00:19:02 +02001830 if (re->func == func && re->opaque == opaque) {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001831 QTAILQ_REMOVE(&reset_handlers, re, entry);
Anthony Liguori7267c092011-08-20 22:09:37 -05001832 g_free(re);
Jan Kiszkadda9b292009-07-02 00:19:02 +02001833 return;
1834 }
1835 }
1836}
1837
David Gibsonbe522022012-08-07 16:41:51 +10001838void qemu_devices_reset(void)
Jan Kiszkadda9b292009-07-02 00:19:02 +02001839{
1840 QEMUResetEntry *re, *nre;
1841
1842 /* reset all devices */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001843 QTAILQ_FOREACH_SAFE(re, &reset_handlers, entry, nre) {
bellardbb0c6722004-06-20 12:37:32 +00001844 re->func(re->opaque);
1845 }
David Gibsonbe522022012-08-07 16:41:51 +10001846}
1847
1848void qemu_system_reset(bool report)
1849{
1850 if (current_machine && current_machine->reset) {
1851 current_machine->reset();
1852 } else {
1853 qemu_devices_reset();
1854 }
Jan Kiszkae063eb12011-06-14 18:29:43 +02001855 if (report) {
1856 monitor_protocol_event(QEVENT_RESET, NULL);
1857 }
Jan Kiszkaea375f92010-03-01 19:10:30 +01001858 cpu_synchronize_all_post_reset();
bellardbb0c6722004-06-20 12:37:32 +00001859}
1860
1861void qemu_system_reset_request(void)
1862{
bellardd1beab82006-10-02 19:44:22 +00001863 if (no_reboot) {
1864 shutdown_requested = 1;
1865 } else {
1866 reset_requested = 1;
1867 }
Jan Kiszkab4a3d962011-02-01 22:15:43 +01001868 cpu_stop_current();
aliguorid9f75a42009-04-24 18:03:11 +00001869 qemu_notify_event();
bellardbb0c6722004-06-20 12:37:32 +00001870}
1871
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001872static void qemu_system_suspend(void)
1873{
1874 pause_all_vcpus();
1875 notifier_list_notify(&suspend_notifiers, NULL);
Luiz Capitulinoad02b962012-04-27 13:33:36 -03001876 runstate_set(RUN_STATE_SUSPENDED);
Gerd Hoffmann53370b72012-02-23 13:45:26 +01001877 monitor_protocol_event(QEVENT_SUSPEND, NULL);
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001878}
1879
1880void qemu_system_suspend_request(void)
1881{
Luiz Capitulino9abc62f2012-04-27 14:31:12 -03001882 if (runstate_check(RUN_STATE_SUSPENDED)) {
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001883 return;
1884 }
1885 suspend_requested = 1;
1886 cpu_stop_current();
1887 qemu_notify_event();
1888}
1889
1890void qemu_register_suspend_notifier(Notifier *notifier)
1891{
1892 notifier_list_add(&suspend_notifiers, notifier);
1893}
1894
1895void qemu_system_wakeup_request(WakeupReason reason)
1896{
Luiz Capitulino9abc62f2012-04-27 14:31:12 -03001897 if (!runstate_check(RUN_STATE_SUSPENDED)) {
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001898 return;
1899 }
1900 if (!(wakeup_reason_mask & (1 << reason))) {
1901 return;
1902 }
Luiz Capitulinoad02b962012-04-27 13:33:36 -03001903 runstate_set(RUN_STATE_RUNNING);
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001904 notifier_list_notify(&wakeup_notifiers, &reason);
Luiz Capitulino14058192012-08-08 17:29:17 -03001905 wakeup_requested = 1;
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001906 qemu_notify_event();
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001907}
1908
1909void qemu_system_wakeup_enable(WakeupReason reason, bool enabled)
1910{
1911 if (enabled) {
1912 wakeup_reason_mask |= (1 << reason);
1913 } else {
1914 wakeup_reason_mask &= ~(1 << reason);
1915 }
1916}
1917
1918void qemu_register_wakeup_notifier(Notifier *notifier)
1919{
1920 notifier_list_add(&wakeup_notifiers, notifier);
1921}
1922
Gleb Natapovf64622c2011-03-15 13:56:04 +02001923void qemu_system_killed(int signal, pid_t pid)
1924{
1925 shutdown_signal = signal;
1926 shutdown_pid = pid;
Kevin Wolfd9389b92011-09-14 15:38:40 +02001927 no_shutdown = 0;
Gleb Natapovf64622c2011-03-15 13:56:04 +02001928 qemu_system_shutdown_request();
1929}
1930
bellardbb0c6722004-06-20 12:37:32 +00001931void qemu_system_shutdown_request(void)
1932{
1933 shutdown_requested = 1;
aliguorid9f75a42009-04-24 18:03:11 +00001934 qemu_notify_event();
bellardbb0c6722004-06-20 12:37:32 +00001935}
1936
Igor Mammedov013c2f12012-09-05 23:06:25 +02001937static void qemu_system_powerdown(void)
1938{
1939 monitor_protocol_event(QEVENT_POWERDOWN, NULL);
1940 notifier_list_notify(&powerdown_notifiers, NULL);
1941}
1942
bellard34751872005-07-02 14:31:34 +00001943void qemu_system_powerdown_request(void)
1944{
1945 powerdown_requested = 1;
aliguorid9f75a42009-04-24 18:03:11 +00001946 qemu_notify_event();
1947}
1948
Igor Mammedova9552c82012-09-05 23:06:21 +02001949void qemu_register_powerdown_notifier(Notifier *notifier)
1950{
1951 notifier_list_add(&powerdown_notifiers, notifier);
1952}
1953
Jan Kiszka8cf71712011-02-07 12:19:16 +01001954void qemu_system_debug_request(void)
1955{
1956 debug_requested = 1;
Jan Kiszka83f338f2011-02-07 12:19:17 +01001957 qemu_notify_event();
Jan Kiszka8cf71712011-02-07 12:19:16 +01001958}
1959
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -03001960void qemu_system_vmstop_request(RunState state)
Jan Kiszka8cf71712011-02-07 12:19:16 +01001961{
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -03001962 vmstop_requested = state;
Jan Kiszka8cf71712011-02-07 12:19:16 +01001963 qemu_notify_event();
1964}
1965
Paolo Bonzini99435902011-09-12 14:03:13 +02001966static bool main_loop_should_exit(void)
1967{
1968 RunState r;
1969 if (qemu_debug_requested()) {
1970 vm_stop(RUN_STATE_DEBUG);
1971 }
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001972 if (qemu_suspend_requested()) {
1973 qemu_system_suspend();
1974 }
Paolo Bonzini99435902011-09-12 14:03:13 +02001975 if (qemu_shutdown_requested()) {
1976 qemu_kill_report();
1977 monitor_protocol_event(QEVENT_SHUTDOWN, NULL);
1978 if (no_shutdown) {
1979 vm_stop(RUN_STATE_SHUTDOWN);
1980 } else {
1981 return true;
1982 }
1983 }
1984 if (qemu_reset_requested()) {
1985 pause_all_vcpus();
1986 cpu_synchronize_all_states();
1987 qemu_system_reset(VMRESET_REPORT);
1988 resume_all_vcpus();
1989 if (runstate_check(RUN_STATE_INTERNAL_ERROR) ||
1990 runstate_check(RUN_STATE_SHUTDOWN)) {
1991 runstate_set(RUN_STATE_PAUSED);
1992 }
1993 }
Luiz Capitulino14058192012-08-08 17:29:17 -03001994 if (qemu_wakeup_requested()) {
1995 pause_all_vcpus();
1996 cpu_synchronize_all_states();
1997 qemu_system_reset(VMRESET_SILENT);
1998 resume_all_vcpus();
Luiz Capitulino17c86602012-08-09 11:27:30 -03001999 monitor_protocol_event(QEVENT_WAKEUP, NULL);
Luiz Capitulino14058192012-08-08 17:29:17 -03002000 }
Paolo Bonzini99435902011-09-12 14:03:13 +02002001 if (qemu_powerdown_requested()) {
Igor Mammedov013c2f12012-09-05 23:06:25 +02002002 qemu_system_powerdown();
Paolo Bonzini99435902011-09-12 14:03:13 +02002003 }
2004 if (qemu_vmstop_requested(&r)) {
2005 vm_stop(r);
2006 }
2007 return false;
2008}
2009
aliguori43b96852009-04-24 18:03:33 +00002010static void main_loop(void)
2011{
Jan Kiszkac9f711a2011-08-22 17:46:02 +02002012 bool nonblocking;
Paolo Bonzini99435902011-09-12 14:03:13 +02002013 int last_io = 0;
Jan Kiszka8e1b90e2011-02-01 22:15:46 +01002014#ifdef CONFIG_PROFILER
2015 int64_t ti;
2016#endif
Paolo Bonzini99435902011-09-12 14:03:13 +02002017 do {
Jan Kiszkac9f711a2011-08-22 17:46:02 +02002018 nonblocking = !kvm_enabled() && last_io > 0;
aliguori43b96852009-04-24 18:03:33 +00002019#ifdef CONFIG_PROFILER
Jan Kiszka46481d32011-02-01 22:15:47 +01002020 ti = profile_getclock();
aliguori43b96852009-04-24 18:03:33 +00002021#endif
Jan Kiszkac9f711a2011-08-22 17:46:02 +02002022 last_io = main_loop_wait(nonblocking);
aliguori43b96852009-04-24 18:03:33 +00002023#ifdef CONFIG_PROFILER
Jan Kiszka46481d32011-02-01 22:15:47 +01002024 dev_time += profile_getclock() - ti;
aliguori43b96852009-04-24 18:03:33 +00002025#endif
Paolo Bonzini99435902011-09-12 14:03:13 +02002026 } while (!main_loop_should_exit());
bellardb4608c02003-06-27 17:34:32 +00002027}
2028
pbrook9bd7e6d2009-04-07 22:58:45 +00002029static void version(void)
2030{
Thomas Monjalonf75ca1a2010-04-28 14:42:01 +02002031 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n");
pbrook9bd7e6d2009-04-07 22:58:45 +00002032}
2033
ths15f82202007-06-29 23:26:08 +00002034static void help(int exitcode)
bellard0824d6f2003-06-24 13:42:40 +00002035{
Michael Ellermana3adb7a2011-12-19 17:19:31 +11002036 version();
2037 printf("usage: %s [options] [disk_image]\n\n"
2038 "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
2039 error_get_progname());
2040
Michael Ellerman77bd1112011-12-19 17:19:30 +11002041#define QEMU_OPTIONS_GENERATE_HELP
2042#include "qemu-options-wrapper.h"
Michael Ellermana3adb7a2011-12-19 17:19:31 +11002043
2044 printf("\nDuring emulation, the following keys are useful:\n"
malc3f020d72010-02-08 12:04:56 +03002045 "ctrl-alt-f toggle full screen\n"
2046 "ctrl-alt-n switch to virtual console 'n'\n"
2047 "ctrl-alt toggle mouse and keyboard grab\n"
2048 "\n"
Michael Ellermana3adb7a2011-12-19 17:19:31 +11002049 "When using -nographic, press 'ctrl-a h' to get some help.\n");
2050
ths15f82202007-06-29 23:26:08 +00002051 exit(exitcode);
bellard0824d6f2003-06-24 13:42:40 +00002052}
2053
bellardcd6f1162004-05-13 22:02:20 +00002054#define HAS_ARG 0x0001
2055
bellardcd6f1162004-05-13 22:02:20 +00002056typedef struct QEMUOption {
2057 const char *name;
2058 int flags;
2059 int index;
Blue Swirlad960902010-03-29 19:23:52 +00002060 uint32_t arch_mask;
bellardcd6f1162004-05-13 22:02:20 +00002061} QEMUOption;
2062
blueswir1dbed7e42008-10-01 19:38:09 +00002063static const QEMUOption qemu_options[] = {
Blue Swirlad960902010-03-29 19:23:52 +00002064 { "h", 0, QEMU_OPTION_h, QEMU_ARCH_ALL },
Michael Ellerman77bd1112011-12-19 17:19:30 +11002065#define QEMU_OPTIONS_GENERATE_OPTIONS
2066#include "qemu-options-wrapper.h"
bellardcd6f1162004-05-13 22:02:20 +00002067 { NULL },
bellardfc01f7e2003-06-30 10:03:06 +00002068};
Blue Swirla369da52011-09-27 19:15:42 +00002069
2070static bool vga_available(void)
2071{
Aurelien Jarno36b7f272012-09-08 16:01:20 +02002072 return object_class_by_name("VGA") || object_class_by_name("isa-vga");
Blue Swirla369da52011-09-27 19:15:42 +00002073}
2074
2075static bool cirrus_vga_available(void)
2076{
Aurelien Jarno36b7f272012-09-08 16:01:20 +02002077 return object_class_by_name("cirrus-vga")
2078 || object_class_by_name("isa-cirrus-vga");
Blue Swirla369da52011-09-27 19:15:42 +00002079}
2080
2081static bool vmware_vga_available(void)
2082{
Aurelien Jarno36b7f272012-09-08 16:01:20 +02002083 return object_class_by_name("vmware-svga");
Blue Swirla369da52011-09-27 19:15:42 +00002084}
2085
Aurelien Jarno879049a2012-09-08 12:01:06 +02002086static bool qxl_vga_available(void)
2087{
2088 return object_class_by_name("qxl-vga");
2089}
2090
malc3893c122008-09-28 00:42:05 +00002091static void select_vgahw (const char *p)
2092{
2093 const char *opts;
2094
Zachary Amsden86176752009-07-30 00:15:02 -10002095 vga_interface_type = VGA_NONE;
malc3893c122008-09-28 00:42:05 +00002096 if (strstart(p, "std", &opts)) {
Blue Swirla369da52011-09-27 19:15:42 +00002097 if (vga_available()) {
2098 vga_interface_type = VGA_STD;
2099 } else {
2100 fprintf(stderr, "Error: standard VGA not available\n");
2101 exit(0);
2102 }
malc3893c122008-09-28 00:42:05 +00002103 } else if (strstart(p, "cirrus", &opts)) {
Blue Swirla369da52011-09-27 19:15:42 +00002104 if (cirrus_vga_available()) {
2105 vga_interface_type = VGA_CIRRUS;
2106 } else {
2107 fprintf(stderr, "Error: Cirrus VGA not available\n");
2108 exit(0);
2109 }
malc3893c122008-09-28 00:42:05 +00002110 } else if (strstart(p, "vmware", &opts)) {
Blue Swirla369da52011-09-27 19:15:42 +00002111 if (vmware_vga_available()) {
2112 vga_interface_type = VGA_VMWARE;
2113 } else {
2114 fprintf(stderr, "Error: VMWare SVGA not available\n");
2115 exit(0);
2116 }
aliguori94909d92009-04-22 15:19:53 +00002117 } else if (strstart(p, "xenfb", &opts)) {
Zachary Amsden86176752009-07-30 00:15:02 -10002118 vga_interface_type = VGA_XENFB;
Gerd Hoffmanna19cbfb2010-04-27 11:50:11 +02002119 } else if (strstart(p, "qxl", &opts)) {
Aurelien Jarno879049a2012-09-08 12:01:06 +02002120 if (qxl_vga_available()) {
2121 vga_interface_type = VGA_QXL;
2122 } else {
2123 fprintf(stderr, "Error: QXL VGA not available\n");
2124 exit(0);
2125 }
aliguori28b85ed2009-04-22 15:19:48 +00002126 } else if (!strstart(p, "none", &opts)) {
malc3893c122008-09-28 00:42:05 +00002127 invalid_vga:
2128 fprintf(stderr, "Unknown vga type: %s\n", p);
2129 exit(1);
2130 }
malccb5a7aa2008-09-28 00:42:12 +00002131 while (*opts) {
2132 const char *nextopt;
2133
2134 if (strstart(opts, ",retrace=", &nextopt)) {
2135 opts = nextopt;
2136 if (strstart(opts, "dumb", &nextopt))
2137 vga_retrace_method = VGA_RETRACE_DUMB;
2138 else if (strstart(opts, "precise", &nextopt))
2139 vga_retrace_method = VGA_RETRACE_PRECISE;
2140 else goto invalid_vga;
2141 } else goto invalid_vga;
2142 opts = nextopt;
2143 }
malc3893c122008-09-28 00:42:05 +00002144}
2145
Jes Sorensen1472a952011-03-16 13:33:31 +01002146static DisplayType select_display(const char *p)
2147{
2148 const char *opts;
2149 DisplayType display = DT_DEFAULT;
2150
2151 if (strstart(p, "sdl", &opts)) {
2152#ifdef CONFIG_SDL
2153 display = DT_SDL;
2154 while (*opts) {
2155 const char *nextopt;
2156
2157 if (strstart(opts, ",frame=", &nextopt)) {
2158 opts = nextopt;
2159 if (strstart(opts, "on", &nextopt)) {
2160 no_frame = 0;
2161 } else if (strstart(opts, "off", &nextopt)) {
2162 no_frame = 1;
2163 } else {
Peter Maydell05175532011-03-23 03:40:57 +00002164 goto invalid_sdl_args;
Jes Sorensen1472a952011-03-16 13:33:31 +01002165 }
2166 } else if (strstart(opts, ",alt_grab=", &nextopt)) {
2167 opts = nextopt;
2168 if (strstart(opts, "on", &nextopt)) {
2169 alt_grab = 1;
2170 } else if (strstart(opts, "off", &nextopt)) {
2171 alt_grab = 0;
2172 } else {
Peter Maydell05175532011-03-23 03:40:57 +00002173 goto invalid_sdl_args;
Jes Sorensen1472a952011-03-16 13:33:31 +01002174 }
2175 } else if (strstart(opts, ",ctrl_grab=", &nextopt)) {
2176 opts = nextopt;
2177 if (strstart(opts, "on", &nextopt)) {
2178 ctrl_grab = 1;
2179 } else if (strstart(opts, "off", &nextopt)) {
2180 ctrl_grab = 0;
2181 } else {
Peter Maydell05175532011-03-23 03:40:57 +00002182 goto invalid_sdl_args;
Jes Sorensen1472a952011-03-16 13:33:31 +01002183 }
2184 } else if (strstart(opts, ",window_close=", &nextopt)) {
2185 opts = nextopt;
2186 if (strstart(opts, "on", &nextopt)) {
2187 no_quit = 0;
2188 } else if (strstart(opts, "off", &nextopt)) {
2189 no_quit = 1;
2190 } else {
Peter Maydell05175532011-03-23 03:40:57 +00002191 goto invalid_sdl_args;
Jes Sorensen1472a952011-03-16 13:33:31 +01002192 }
2193 } else {
Peter Maydell05175532011-03-23 03:40:57 +00002194 invalid_sdl_args:
2195 fprintf(stderr, "Invalid SDL option string: %s\n", p);
2196 exit(1);
Jes Sorensen1472a952011-03-16 13:33:31 +01002197 }
2198 opts = nextopt;
2199 }
2200#else
2201 fprintf(stderr, "SDL support is disabled\n");
2202 exit(1);
2203#endif
Jes Sorensen3264ff12011-03-16 13:33:33 +01002204 } else if (strstart(p, "vnc", &opts)) {
Jes Sorensen821601e2011-03-16 13:33:36 +01002205#ifdef CONFIG_VNC
Jes Sorensen3264ff12011-03-16 13:33:33 +01002206 display_remote++;
2207
2208 if (*opts) {
2209 const char *nextopt;
2210
2211 if (strstart(opts, "=", &nextopt)) {
2212 vnc_display = nextopt;
2213 }
2214 }
2215 if (!vnc_display) {
2216 fprintf(stderr, "VNC requires a display argument vnc=<display>\n");
2217 exit(1);
2218 }
Jes Sorensen821601e2011-03-16 13:33:36 +01002219#else
2220 fprintf(stderr, "VNC support is disabled\n");
2221 exit(1);
2222#endif
Jes Sorensen1472a952011-03-16 13:33:31 +01002223 } else if (strstart(p, "curses", &opts)) {
2224#ifdef CONFIG_CURSES
2225 display = DT_CURSES;
2226#else
2227 fprintf(stderr, "Curses support is disabled\n");
2228 exit(1);
2229#endif
Anthony Liguori15546422013-02-20 07:43:25 -06002230 } else if (strstart(p, "gtk", &opts)) {
2231#ifdef CONFIG_GTK
2232 display = DT_GTK;
2233#else
2234 fprintf(stderr, "GTK support is disabled\n");
2235 exit(1);
2236#endif
Jes Sorensen4171d322011-03-16 13:33:32 +01002237 } else if (strstart(p, "none", &opts)) {
2238 display = DT_NONE;
Jes Sorensen1472a952011-03-16 13:33:31 +01002239 } else {
Jes Sorensen1472a952011-03-16 13:33:31 +01002240 fprintf(stderr, "Unknown display type: %s\n", p);
2241 exit(1);
2242 }
2243
2244 return display;
2245}
2246
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02002247static int balloon_parse(const char *arg)
2248{
Gerd Hoffmann382f0742009-08-14 10:34:22 +02002249 QemuOpts *opts;
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02002250
Gerd Hoffmann382f0742009-08-14 10:34:22 +02002251 if (strcmp(arg, "none") == 0) {
2252 return 0;
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02002253 }
Gerd Hoffmann382f0742009-08-14 10:34:22 +02002254
2255 if (!strncmp(arg, "virtio", 6)) {
2256 if (arg[6] == ',') {
2257 /* have params -> parse them */
Gerd Hoffmann3329f072010-08-20 13:52:01 +02002258 opts = qemu_opts_parse(qemu_find_opts("device"), arg+7, 0);
Gerd Hoffmann382f0742009-08-14 10:34:22 +02002259 if (!opts)
2260 return -1;
2261 } else {
2262 /* create empty opts */
Dong Xu Wange478b442012-12-06 14:47:22 +08002263 opts = qemu_opts_create_nofail(qemu_find_opts("device"));
Gerd Hoffmann382f0742009-08-14 10:34:22 +02002264 }
Alexander Graf29f82b32011-03-29 15:29:29 +02002265 qemu_opt_set(opts, "driver", "virtio-balloon");
Gerd Hoffmann382f0742009-08-14 10:34:22 +02002266 return 0;
2267 }
2268
2269 return -1;
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02002270}
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02002271
Paul Brook5cea8592009-05-30 00:52:44 +01002272char *qemu_find_file(int type, const char *name)
2273{
2274 int len;
2275 const char *subdir;
2276 char *buf;
2277
Peter Maydell31783202012-05-25 13:07:01 +01002278 /* Try the name as a straight path first */
2279 if (access(name, R_OK) == 0) {
Anthony Liguori7267c092011-08-20 22:09:37 -05002280 return g_strdup(name);
Paul Brook5cea8592009-05-30 00:52:44 +01002281 }
2282 switch (type) {
2283 case QEMU_FILE_TYPE_BIOS:
2284 subdir = "";
2285 break;
2286 case QEMU_FILE_TYPE_KEYMAP:
2287 subdir = "keymaps/";
2288 break;
2289 default:
2290 abort();
2291 }
2292 len = strlen(data_dir) + strlen(name) + strlen(subdir) + 2;
Anthony Liguori7267c092011-08-20 22:09:37 -05002293 buf = g_malloc0(len);
Blue Swirl3a417592009-06-09 19:12:21 +00002294 snprintf(buf, len, "%s/%s%s", data_dir, subdir, name);
Paul Brook5cea8592009-05-30 00:52:44 +01002295 if (access(buf, R_OK)) {
Anthony Liguori7267c092011-08-20 22:09:37 -05002296 g_free(buf);
Paul Brook5cea8592009-05-30 00:52:44 +01002297 return NULL;
2298 }
2299 return buf;
2300}
2301
Markus Armbrusterff952ba2010-01-29 19:48:57 +01002302static int device_help_func(QemuOpts *opts, void *opaque)
2303{
2304 return qdev_device_help(opts);
2305}
2306
Gerd Hoffmannf31d07d2009-07-31 12:25:37 +02002307static int device_init_func(QemuOpts *opts, void *opaque)
2308{
2309 DeviceState *dev;
2310
2311 dev = qdev_device_add(opts);
2312 if (!dev)
2313 return -1;
Paolo Bonzinib09995a2013-01-25 14:12:37 +01002314 object_unref(OBJECT(dev));
Gerd Hoffmannf31d07d2009-07-31 12:25:37 +02002315 return 0;
2316}
2317
Gerd Hoffmann1a688d32009-12-08 13:11:36 +01002318static int chardev_init_func(QemuOpts *opts, void *opaque)
2319{
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02002320 Error *local_err = NULL;
Gerd Hoffmann1a688d32009-12-08 13:11:36 +01002321
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02002322 qemu_chr_new_from_opts(opts, NULL, &local_err);
2323 if (error_is_set(&local_err)) {
2324 fprintf(stderr, "%s\n", error_get_pretty(local_err));
2325 error_free(local_err);
Gerd Hoffmann1a688d32009-12-08 13:11:36 +01002326 return -1;
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02002327 }
Gerd Hoffmann1a688d32009-12-08 13:11:36 +01002328 return 0;
2329}
2330
Venkateswararao Jujjuri (JV)758e8e32010-06-14 13:34:41 -07002331#ifdef CONFIG_VIRTFS
Gautham R Shenoy74db9202010-04-29 17:44:43 +05302332static int fsdev_init_func(QemuOpts *opts, void *opaque)
2333{
2334 int ret;
2335 ret = qemu_fsdev_add(opts);
2336
2337 return ret;
2338}
2339#endif
2340
Gerd Hoffmann88589342009-12-08 13:11:50 +01002341static int mon_init_func(QemuOpts *opts, void *opaque)
2342{
2343 CharDriverState *chr;
2344 const char *chardev;
2345 const char *mode;
2346 int flags;
2347
2348 mode = qemu_opt_get(opts, "mode");
2349 if (mode == NULL) {
2350 mode = "readline";
2351 }
2352 if (strcmp(mode, "readline") == 0) {
2353 flags = MONITOR_USE_READLINE;
2354 } else if (strcmp(mode, "control") == 0) {
2355 flags = MONITOR_USE_CONTROL;
2356 } else {
2357 fprintf(stderr, "unknown monitor mode \"%s\"\n", mode);
2358 exit(1);
2359 }
2360
Daniel P. Berrange39eaab92010-06-07 15:42:31 +01002361 if (qemu_opt_get_bool(opts, "pretty", 0))
2362 flags |= MONITOR_USE_PRETTY;
2363
Gerd Hoffmann88589342009-12-08 13:11:50 +01002364 if (qemu_opt_get_bool(opts, "default", 0))
2365 flags |= MONITOR_IS_DEFAULT;
2366
2367 chardev = qemu_opt_get(opts, "chardev");
2368 chr = qemu_chr_find(chardev);
2369 if (chr == NULL) {
2370 fprintf(stderr, "chardev \"%s\" not found\n", chardev);
2371 exit(1);
2372 }
2373
2374 monitor_init(chr, flags);
2375 return 0;
2376}
2377
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01002378static void monitor_parse(const char *optarg, const char *mode)
Gerd Hoffmann88589342009-12-08 13:11:50 +01002379{
2380 static int monitor_device_index = 0;
2381 QemuOpts *opts;
2382 const char *p;
2383 char label[32];
2384 int def = 0;
2385
2386 if (strstart(optarg, "chardev:", &p)) {
2387 snprintf(label, sizeof(label), "%s", p);
2388 } else {
Jan Kiszka140e0652010-04-06 16:55:52 +02002389 snprintf(label, sizeof(label), "compat_monitor%d",
2390 monitor_device_index);
2391 if (monitor_device_index == 0) {
Gerd Hoffmann88589342009-12-08 13:11:50 +01002392 def = 1;
2393 }
2394 opts = qemu_chr_parse_compat(label, optarg);
2395 if (!opts) {
2396 fprintf(stderr, "parse error: %s\n", optarg);
2397 exit(1);
2398 }
2399 }
2400
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03002401 opts = qemu_opts_create(qemu_find_opts("mon"), label, 1, NULL);
Gerd Hoffmann88589342009-12-08 13:11:50 +01002402 if (!opts) {
2403 fprintf(stderr, "duplicate chardev: %s\n", label);
2404 exit(1);
2405 }
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01002406 qemu_opt_set(opts, "mode", mode);
Gerd Hoffmann88589342009-12-08 13:11:50 +01002407 qemu_opt_set(opts, "chardev", label);
2408 if (def)
2409 qemu_opt_set(opts, "default", "on");
2410 monitor_device_index++;
2411}
2412
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002413struct device_config {
2414 enum {
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002415 DEV_USB, /* -usbdevice */
2416 DEV_BT, /* -bt */
2417 DEV_SERIAL, /* -serial */
2418 DEV_PARALLEL, /* -parallel */
2419 DEV_VIRTCON, /* -virtioconsole */
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08002420 DEV_DEBUGCON, /* -debugcon */
Markus Armbrusteref0c4a02012-02-07 15:09:13 +01002421 DEV_GDB, /* -gdb, -s */
Alexander Graf3ef669e2013-01-24 12:18:52 +01002422 DEV_SCLP, /* s390 sclp */
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002423 } type;
2424 const char *cmdline;
Markus Armbrusterd9a59542012-02-07 15:09:12 +01002425 Location loc;
Blue Swirl72cf2d42009-09-12 07:36:22 +00002426 QTAILQ_ENTRY(device_config) next;
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002427};
Blue Swirl4fdcac02012-10-28 11:04:47 +00002428
2429static QTAILQ_HEAD(, device_config) device_configs =
2430 QTAILQ_HEAD_INITIALIZER(device_configs);
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002431
2432static void add_device_config(int type, const char *cmdline)
2433{
2434 struct device_config *conf;
2435
Anthony Liguori7267c092011-08-20 22:09:37 -05002436 conf = g_malloc0(sizeof(*conf));
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002437 conf->type = type;
2438 conf->cmdline = cmdline;
Markus Armbrusterd9a59542012-02-07 15:09:12 +01002439 loc_save(&conf->loc);
Blue Swirl72cf2d42009-09-12 07:36:22 +00002440 QTAILQ_INSERT_TAIL(&device_configs, conf, next);
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002441}
2442
2443static int foreach_device_config(int type, int (*func)(const char *cmdline))
2444{
2445 struct device_config *conf;
2446 int rc;
2447
Blue Swirl72cf2d42009-09-12 07:36:22 +00002448 QTAILQ_FOREACH(conf, &device_configs, next) {
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002449 if (conf->type != type)
2450 continue;
Markus Armbrusterd9a59542012-02-07 15:09:12 +01002451 loc_push_restore(&conf->loc);
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002452 rc = func(conf->cmdline);
Markus Armbrusterd9a59542012-02-07 15:09:12 +01002453 loc_pop(&conf->loc);
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002454 if (0 != rc)
2455 return rc;
2456 }
2457 return 0;
2458}
2459
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01002460static int serial_parse(const char *devname)
2461{
2462 static int index = 0;
2463 char label[32];
2464
2465 if (strcmp(devname, "none") == 0)
2466 return 0;
2467 if (index == MAX_SERIAL_PORTS) {
2468 fprintf(stderr, "qemu: too many serial ports\n");
2469 exit(1);
2470 }
2471 snprintf(label, sizeof(label), "serial%d", index);
Anthony Liguori27143a42011-08-15 11:17:36 -05002472 serial_hds[index] = qemu_chr_new(label, devname, NULL);
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01002473 if (!serial_hds[index]) {
Peter Maydell52d06132012-07-09 04:28:30 +00002474 fprintf(stderr, "qemu: could not connect serial device"
2475 " to character backend '%s'\n", devname);
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01002476 return -1;
2477 }
2478 index++;
2479 return 0;
2480}
2481
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01002482static int parallel_parse(const char *devname)
2483{
2484 static int index = 0;
2485 char label[32];
2486
2487 if (strcmp(devname, "none") == 0)
2488 return 0;
2489 if (index == MAX_PARALLEL_PORTS) {
2490 fprintf(stderr, "qemu: too many parallel ports\n");
2491 exit(1);
2492 }
2493 snprintf(label, sizeof(label), "parallel%d", index);
Anthony Liguori27143a42011-08-15 11:17:36 -05002494 parallel_hds[index] = qemu_chr_new(label, devname, NULL);
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01002495 if (!parallel_hds[index]) {
Peter Maydell52d06132012-07-09 04:28:30 +00002496 fprintf(stderr, "qemu: could not connect parallel device"
2497 " to character backend '%s'\n", devname);
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01002498 return -1;
2499 }
2500 index++;
2501 return 0;
2502}
2503
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002504static int virtcon_parse(const char *devname)
2505{
Gerd Hoffmann3329f072010-08-20 13:52:01 +02002506 QemuOptsList *device = qemu_find_opts("device");
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002507 static int index = 0;
2508 char label[32];
Amit Shah392ecf52010-01-21 16:19:23 +05302509 QemuOpts *bus_opts, *dev_opts;
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002510
2511 if (strcmp(devname, "none") == 0)
2512 return 0;
2513 if (index == MAX_VIRTIO_CONSOLES) {
2514 fprintf(stderr, "qemu: too many virtio consoles\n");
2515 exit(1);
2516 }
Amit Shah392ecf52010-01-21 16:19:23 +05302517
Dong Xu Wange478b442012-12-06 14:47:22 +08002518 bus_opts = qemu_opts_create_nofail(device);
Anthony Liguorie87f7fc2012-02-06 11:07:18 -06002519 if (arch_type == QEMU_ARCH_S390X) {
2520 qemu_opt_set(bus_opts, "driver", "virtio-serial-s390");
2521 } else {
2522 qemu_opt_set(bus_opts, "driver", "virtio-serial-pci");
2523 }
Amit Shah392ecf52010-01-21 16:19:23 +05302524
Dong Xu Wange478b442012-12-06 14:47:22 +08002525 dev_opts = qemu_opts_create_nofail(device);
Amit Shah392ecf52010-01-21 16:19:23 +05302526 qemu_opt_set(dev_opts, "driver", "virtconsole");
2527
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002528 snprintf(label, sizeof(label), "virtcon%d", index);
Anthony Liguori27143a42011-08-15 11:17:36 -05002529 virtcon_hds[index] = qemu_chr_new(label, devname, NULL);
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002530 if (!virtcon_hds[index]) {
Peter Maydell52d06132012-07-09 04:28:30 +00002531 fprintf(stderr, "qemu: could not connect virtio console"
2532 " to character backend '%s'\n", devname);
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002533 return -1;
2534 }
Amit Shah392ecf52010-01-21 16:19:23 +05302535 qemu_opt_set(dev_opts, "chardev", label);
2536
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002537 index++;
2538 return 0;
2539}
2540
Alexander Graf3ef669e2013-01-24 12:18:52 +01002541static int sclp_parse(const char *devname)
2542{
2543 QemuOptsList *device = qemu_find_opts("device");
2544 static int index = 0;
2545 char label[32];
2546 QemuOpts *dev_opts;
2547
2548 if (strcmp(devname, "none") == 0) {
2549 return 0;
2550 }
2551 if (index == MAX_SCLP_CONSOLES) {
2552 fprintf(stderr, "qemu: too many sclp consoles\n");
2553 exit(1);
2554 }
2555
2556 assert(arch_type == QEMU_ARCH_S390X);
2557
2558 dev_opts = qemu_opts_create(device, NULL, 0, NULL);
2559 qemu_opt_set(dev_opts, "driver", "sclpconsole");
2560
2561 snprintf(label, sizeof(label), "sclpcon%d", index);
2562 sclp_hds[index] = qemu_chr_new(label, devname, NULL);
2563 if (!sclp_hds[index]) {
2564 fprintf(stderr, "qemu: could not connect sclp console"
2565 " to character backend '%s'\n", devname);
2566 return -1;
2567 }
2568 qemu_opt_set(dev_opts, "chardev", label);
2569
2570 index++;
2571 return 0;
2572}
2573
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08002574static int debugcon_parse(const char *devname)
2575{
2576 QemuOpts *opts;
2577
Anthony Liguori27143a42011-08-15 11:17:36 -05002578 if (!qemu_chr_new("debugcon", devname, NULL)) {
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08002579 exit(1);
2580 }
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03002581 opts = qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL);
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08002582 if (!opts) {
2583 fprintf(stderr, "qemu: already have a debugcon device\n");
2584 exit(1);
2585 }
2586 qemu_opt_set(opts, "driver", "isa-debugcon");
2587 qemu_opt_set(opts, "chardev", "debugcon");
2588 return 0;
2589}
2590
Jan Kiszka9052ea62011-07-23 12:38:37 +02002591static QEMUMachine *machine_parse(const char *name)
2592{
2593 QEMUMachine *m, *machine = NULL;
2594
2595 if (name) {
2596 machine = find_machine(name);
2597 }
2598 if (machine) {
2599 return machine;
2600 }
2601 printf("Supported machines are:\n");
2602 for (m = first_machine; m != NULL; m = m->next) {
2603 if (m->alias) {
Peter Maydell3b264862012-02-22 22:13:11 +00002604 printf("%-20s %s (alias of %s)\n", m->alias, m->desc, m->name);
Jan Kiszka9052ea62011-07-23 12:38:37 +02002605 }
Peter Maydell3b264862012-02-22 22:13:11 +00002606 printf("%-20s %s%s\n", m->name, m->desc,
Jan Kiszka9052ea62011-07-23 12:38:37 +02002607 m->is_default ? " (default)" : "");
2608 }
Peter Maydellc8057f92012-08-02 13:45:54 +01002609 exit(!name || !is_help_option(name));
Jan Kiszka9052ea62011-07-23 12:38:37 +02002610}
2611
Anthony PERARD303d4e82010-09-21 20:05:31 +01002612static int tcg_init(void)
2613{
Jan Kiszkad5ab9712011-08-02 16:10:21 +02002614 tcg_exec_init(tcg_tb_size * 1024 * 1024);
Anthony PERARD303d4e82010-09-21 20:05:31 +01002615 return 0;
2616}
2617
2618static struct {
2619 const char *opt_name;
2620 const char *name;
2621 int (*available)(void);
2622 int (*init)(void);
liguangd5286af2013-01-24 13:03:27 +08002623 bool *allowed;
Anthony PERARD303d4e82010-09-21 20:05:31 +01002624} accel_list[] = {
2625 { "tcg", "tcg", tcg_available, tcg_init, &tcg_allowed },
Anthony PERARD3285cf42010-08-19 12:27:56 +01002626 { "xen", "Xen", xen_available, xen_init, &xen_allowed },
Anthony PERARD303d4e82010-09-21 20:05:31 +01002627 { "kvm", "KVM", kvm_available, kvm_init, &kvm_allowed },
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +02002628 { "qtest", "QTest", qtest_available, qtest_init, &qtest_allowed },
Anthony PERARD303d4e82010-09-21 20:05:31 +01002629};
2630
2631static int configure_accelerator(void)
2632{
2633 const char *p = NULL;
2634 char buf[10];
2635 int i, ret;
liguang217e21b2013-01-24 13:03:26 +08002636 bool accel_initialised = false;
2637 bool init_failed = false;
Anthony PERARD303d4e82010-09-21 20:05:31 +01002638
2639 QemuOptsList *list = qemu_find_opts("machine");
2640 if (!QTAILQ_EMPTY(&list->head)) {
2641 p = qemu_opt_get(QTAILQ_FIRST(&list->head), "accel");
2642 }
2643
2644 if (p == NULL) {
2645 /* Use the default "accelerator", tcg */
2646 p = "tcg";
2647 }
2648
Peter Maydell1b785a92012-02-07 20:57:27 +00002649 while (!accel_initialised && *p != '\0') {
Anthony PERARD303d4e82010-09-21 20:05:31 +01002650 if (*p == ':') {
2651 p++;
2652 }
2653 p = get_opt_name(buf, sizeof (buf), p, ':');
2654 for (i = 0; i < ARRAY_SIZE(accel_list); i++) {
2655 if (strcmp(accel_list[i].opt_name, buf) == 0) {
liguange3c66d92013-01-24 13:03:25 +08002656 if (!accel_list[i].available()) {
2657 printf("%s not supported for this target\n",
2658 accel_list[i].name);
2659 continue;
2660 }
liguangd5286af2013-01-24 13:03:27 +08002661 *(accel_list[i].allowed) = true;
Anthony PERARD303d4e82010-09-21 20:05:31 +01002662 ret = accel_list[i].init();
2663 if (ret < 0) {
liguang217e21b2013-01-24 13:03:26 +08002664 init_failed = true;
liguange3c66d92013-01-24 13:03:25 +08002665 fprintf(stderr, "failed to initialize %s: %s\n",
2666 accel_list[i].name,
2667 strerror(-ret));
liguangd5286af2013-01-24 13:03:27 +08002668 *(accel_list[i].allowed) = false;
Anthony PERARD303d4e82010-09-21 20:05:31 +01002669 } else {
liguang217e21b2013-01-24 13:03:26 +08002670 accel_initialised = true;
Anthony PERARD303d4e82010-09-21 20:05:31 +01002671 }
2672 break;
2673 }
2674 }
2675 if (i == ARRAY_SIZE(accel_list)) {
2676 fprintf(stderr, "\"%s\" accelerator does not exist.\n", buf);
2677 }
2678 }
2679
Peter Maydell1b785a92012-02-07 20:57:27 +00002680 if (!accel_initialised) {
liguang217e21b2013-01-24 13:03:26 +08002681 if (!init_failed) {
2682 fprintf(stderr, "No accelerator found!\n");
2683 }
Anthony PERARD303d4e82010-09-21 20:05:31 +01002684 exit(1);
2685 }
2686
2687 if (init_failed) {
2688 fprintf(stderr, "Back to %s accelerator.\n", accel_list[i].name);
2689 }
2690
Peter Maydell1b785a92012-02-07 20:57:27 +00002691 return !accel_initialised;
Anthony PERARD303d4e82010-09-21 20:05:31 +01002692}
2693
Gerd Hoffmannfd42dee2010-06-04 14:08:07 +02002694void qemu_add_exit_notifier(Notifier *notify)
2695{
2696 notifier_list_add(&exit_notifiers, notify);
2697}
2698
2699void qemu_remove_exit_notifier(Notifier *notify)
2700{
Paolo Bonzini31552522012-01-13 17:34:01 +01002701 notifier_remove(notify);
Gerd Hoffmannfd42dee2010-06-04 14:08:07 +02002702}
2703
2704static void qemu_run_exit_notifiers(void)
2705{
Jan Kiszka9e8dd452011-06-20 14:06:26 +02002706 notifier_list_notify(&exit_notifiers, NULL);
Gerd Hoffmannfd42dee2010-06-04 14:08:07 +02002707}
2708
Gleb Natapov4cab9462010-12-08 13:35:08 +02002709void qemu_add_machine_init_done_notifier(Notifier *notify)
2710{
2711 notifier_list_add(&machine_init_done_notifiers, notify);
2712}
2713
2714static void qemu_run_machine_init_done_notifiers(void)
2715{
Jan Kiszka9e8dd452011-06-20 14:06:26 +02002716 notifier_list_notify(&machine_init_done_notifiers, NULL);
Gleb Natapov4cab9462010-12-08 13:35:08 +02002717}
2718
Anthony Liguori6530a972010-01-22 09:18:06 -06002719static const QEMUOption *lookup_opt(int argc, char **argv,
2720 const char **poptarg, int *poptind)
2721{
2722 const QEMUOption *popt;
2723 int optind = *poptind;
2724 char *r = argv[optind];
2725 const char *optarg;
2726
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +01002727 loc_set_cmdline(argv, optind, 1);
Anthony Liguori6530a972010-01-22 09:18:06 -06002728 optind++;
2729 /* Treat --foo the same as -foo. */
2730 if (r[1] == '-')
2731 r++;
2732 popt = qemu_options;
2733 for(;;) {
2734 if (!popt->name) {
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +01002735 error_report("invalid option");
Anthony Liguori6530a972010-01-22 09:18:06 -06002736 exit(1);
2737 }
2738 if (!strcmp(popt->name, r + 1))
2739 break;
2740 popt++;
2741 }
2742 if (popt->flags & HAS_ARG) {
2743 if (optind >= argc) {
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +01002744 error_report("requires an argument");
Anthony Liguori6530a972010-01-22 09:18:06 -06002745 exit(1);
2746 }
2747 optarg = argv[optind++];
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +01002748 loc_set_cmdline(argv, optind - 2, 2);
Anthony Liguori6530a972010-01-22 09:18:06 -06002749 } else {
2750 optarg = NULL;
2751 }
2752
2753 *poptarg = optarg;
2754 *poptind = optind;
2755
2756 return popt;
2757}
2758
Anthony Liguori07501122011-08-20 22:38:31 -05002759static gpointer malloc_and_trace(gsize n_bytes)
2760{
2761 void *ptr = malloc(n_bytes);
Frediano Ziglioa74cd8c2011-08-31 09:25:35 +02002762 trace_g_malloc(n_bytes, ptr);
Anthony Liguori07501122011-08-20 22:38:31 -05002763 return ptr;
2764}
2765
2766static gpointer realloc_and_trace(gpointer mem, gsize n_bytes)
2767{
2768 void *ptr = realloc(mem, n_bytes);
Frediano Ziglioa74cd8c2011-08-31 09:25:35 +02002769 trace_g_realloc(mem, n_bytes, ptr);
Anthony Liguori07501122011-08-20 22:38:31 -05002770 return ptr;
2771}
2772
2773static void free_and_trace(gpointer mem)
2774{
Frediano Ziglioa74cd8c2011-08-31 09:25:35 +02002775 trace_g_free(mem);
Anthony Liguori07501122011-08-20 22:38:31 -05002776 free(mem);
2777}
2778
Anthony Liguori68d98d32012-06-25 14:36:33 -05002779static int object_set_property(const char *name, const char *value, void *opaque)
2780{
2781 Object *obj = OBJECT(opaque);
2782 StringInputVisitor *siv;
2783 Error *local_err = NULL;
2784
2785 if (strcmp(name, "qom-type") == 0 || strcmp(name, "id") == 0) {
2786 return 0;
2787 }
2788
2789 siv = string_input_visitor_new(value);
2790 object_property_set(obj, string_input_get_visitor(siv), name, &local_err);
2791 string_input_visitor_cleanup(siv);
2792
2793 if (local_err) {
2794 qerror_report_err(local_err);
2795 error_free(local_err);
2796 return -1;
2797 }
2798
2799 return 0;
2800}
2801
2802static int object_create(QemuOpts *opts, void *opaque)
2803{
2804 const char *type = qemu_opt_get(opts, "qom-type");
2805 const char *id = qemu_opts_id(opts);
2806 Object *obj;
2807
2808 g_assert(type != NULL);
2809
2810 if (id == NULL) {
2811 qerror_report(QERR_MISSING_PARAMETER, "id");
2812 return -1;
2813 }
2814
2815 obj = object_new(type);
2816 if (qemu_opt_foreach(opts, object_set_property, obj, 1) < 0) {
2817 return -1;
2818 }
2819
2820 object_property_add_child(container_get(object_get_root(), "/objects"),
2821 id, obj, NULL);
2822
2823 return 0;
2824}
2825
malc902b3d52008-12-10 19:18:40 +00002826int main(int argc, char **argv, char **envp)
bellard0824d6f2003-06-24 13:42:40 +00002827{
thse4bcb142007-12-02 04:51:10 +00002828 int i;
Eduardo Habkostda1fcfd2010-04-06 19:22:07 -03002829 int snapshot, linux_boot;
Paolo Bonzini4e3de9e2010-03-10 11:38:48 +01002830 const char *icount_option = NULL;
bellard7f7f9872003-10-30 01:11:23 +00002831 const char *initrd_filename;
bellarda20dd502003-09-30 21:07:02 +00002832 const char *kernel_filename, *kernel_cmdline;
Avik Sile4ada292013-01-08 12:36:30 +05302833 char boot_devices[33] = "";
aliguori3023f332009-01-16 19:04:14 +00002834 DisplayState *ds;
malc9f227bc2012-08-27 18:33:22 +04002835 int cyls, heads, secs, translation;
2836 QemuOpts *hda_opts = NULL, *opts, *machine_opts;
Gerd Hoffmann03b0ba72010-08-20 13:52:02 +02002837 QemuOptsList *olist;
bellardcd6f1162004-05-13 22:02:20 +00002838 int optind;
Anthony Liguori6530a972010-01-22 09:18:06 -06002839 const char *optarg;
bellardd63d3072004-10-03 13:29:03 +00002840 const char *loadvm = NULL;
bellardcc1daa42005-06-05 14:49:17 +00002841 QEMUMachine *machine;
j_mayer94fc95c2007-03-05 19:44:02 +00002842 const char *cpu_model;
Paolo Bonzini7f1b17f2012-05-10 09:39:17 +02002843 const char *vga_model = "none";
ths93815bc2007-03-19 15:58:31 +00002844 const char *pid_file = NULL;
aliguori5bb79102008-10-13 03:12:02 +00002845 const char *incoming = NULL;
Jes Sorensen821601e2011-03-16 13:33:36 +01002846#ifdef CONFIG_VNC
Anthony Liguori993fbfd2009-05-21 16:54:00 -05002847 int show_vnc_port = 0;
Jes Sorensen821601e2011-03-16 13:33:36 +01002848#endif
Eduardo Habkost3ed2d9e2012-05-02 13:07:28 -03002849 bool defconfig = true;
Eduardo Habkostf29a5612012-05-02 13:07:29 -03002850 bool userconfig = true;
Matthew Fernandezc235d732011-06-07 16:32:40 +00002851 const char *log_mask = NULL;
2852 const char *log_file = NULL;
Anthony Liguori07501122011-08-20 22:38:31 -05002853 GMemVTable mem_trace = {
2854 .malloc = malloc_and_trace,
2855 .realloc = realloc_and_trace,
2856 .free = free_and_trace,
2857 };
Lluís23d15e82011-08-31 20:31:31 +02002858 const char *trace_events = NULL;
Lluíse4858972011-08-31 20:31:03 +02002859 const char *trace_file = NULL;
Stefan Hajnoczi0b5538c2011-02-26 18:38:39 +00002860
Gerd Hoffmannfd42dee2010-06-04 14:08:07 +02002861 atexit(qemu_run_exit_notifiers);
Markus Armbruster65abca02010-02-24 14:37:14 +01002862 error_set_progname(argv[0]);
2863
Anthony Liguori07501122011-08-20 22:38:31 -05002864 g_mem_set_vtable(&mem_trace);
Andreas Färberdb529aa2011-10-31 19:14:56 +01002865 if (!g_thread_supported()) {
Alon Levy42ed3722011-12-20 13:41:04 +02002866#if !GLIB_CHECK_VERSION(2, 31, 0)
Andreas Färberdb529aa2011-10-31 19:14:56 +01002867 g_thread_init(NULL);
Alon Levy42ed3722011-12-20 13:41:04 +02002868#else
2869 fprintf(stderr, "glib threading failed to initialize.\n");
2870 exit(1);
2871#endif
Andreas Färberdb529aa2011-10-31 19:14:56 +01002872 }
Anthony Liguori07501122011-08-20 22:38:31 -05002873
Andreas Färber1b71f7c2012-03-04 21:32:35 +01002874 module_call_init(MODULE_INIT_QOM);
2875
Paolo Bonzini4d454572012-11-26 16:03:42 +01002876 qemu_add_opts(&qemu_drive_opts);
2877 qemu_add_opts(&qemu_chardev_opts);
2878 qemu_add_opts(&qemu_device_opts);
2879 qemu_add_opts(&qemu_netdev_opts);
2880 qemu_add_opts(&qemu_net_opts);
2881 qemu_add_opts(&qemu_rtc_opts);
2882 qemu_add_opts(&qemu_global_opts);
2883 qemu_add_opts(&qemu_mon_opts);
2884 qemu_add_opts(&qemu_trace_opts);
2885 qemu_add_opts(&qemu_option_rom_opts);
2886 qemu_add_opts(&qemu_machine_opts);
2887 qemu_add_opts(&qemu_boot_opts);
2888 qemu_add_opts(&qemu_sandbox_opts);
2889 qemu_add_opts(&qemu_add_fd_opts);
2890 qemu_add_opts(&qemu_object_opts);
Stefan Bergerd1a0cf72013-02-27 12:47:49 -05002891 qemu_add_opts(&qemu_tpmdev_opts);
Paolo Bonzini4d454572012-11-26 16:03:42 +01002892
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -03002893 runstate_init();
2894
Jan Kiszka68752042009-09-15 13:36:04 +02002895 init_clocks();
Paolo Bonzini2ff68d02011-09-12 16:21:44 +02002896 rtc_clock = host_clock;
Jan Kiszka68752042009-09-15 13:36:04 +02002897
malc902b3d52008-12-10 19:18:40 +00002898 qemu_cache_utils_init(envp);
2899
Blue Swirl72cf2d42009-09-12 07:36:22 +00002900 QLIST_INIT (&vm_change_state_head);
Jes Sorensenfe98ac12010-06-10 11:42:21 +02002901 os_setup_early_signal_handling();
bellardbe995c22006-06-25 16:25:21 +00002902
Anthony Liguorif80f9ec2009-05-20 18:38:09 -05002903 module_call_init(MODULE_INIT_MACHINE);
Anthony Liguori0c257432009-05-21 20:41:01 -05002904 machine = find_default_machine();
j_mayer94fc95c2007-03-05 19:44:02 +00002905 cpu_model = NULL;
aurel324fc5d072008-04-27 21:39:40 +00002906 ram_size = 0;
bellard33e39632003-07-06 17:15:21 +00002907 snapshot = 0;
malc9f227bc2012-08-27 18:33:22 +04002908 cyls = heads = secs = 0;
2909 translation = BIOS_ATA_TRANSLATION_AUTO;
bellardc4b1fcc2004-03-14 21:44:30 +00002910
aliguori268a3622009-04-21 22:30:27 +00002911 for (i = 0; i < MAX_NODES; i++) {
2912 node_mem[i] = 0;
Chegu Vinodee785fe2012-07-16 21:31:30 -07002913 node_cpumask[i] = bitmap_new(MAX_CPUMASK_BITS);
aliguori268a3622009-04-21 22:30:27 +00002914 }
2915
aliguori268a3622009-04-21 22:30:27 +00002916 nb_numa_nodes = 0;
bellard7c9d8e02005-11-15 22:16:05 +00002917 nb_nics = 0;
ths3b46e622007-09-17 08:09:54 +00002918
blueswir141bd6392008-10-05 09:56:21 +00002919 autostart= 1;
2920
Anthony Liguori292444c2010-01-21 10:57:58 -06002921 /* first pass of option parsing */
2922 optind = 1;
2923 while (optind < argc) {
2924 if (argv[optind][0] != '-') {
2925 /* disk image */
Anthony Liguori28e68d62010-01-27 10:46:00 -06002926 optind++;
Anthony Liguori292444c2010-01-21 10:57:58 -06002927 continue;
2928 } else {
2929 const QEMUOption *popt;
2930
2931 popt = lookup_opt(argc, argv, &optarg, &optind);
2932 switch (popt->index) {
2933 case QEMU_OPTION_nodefconfig:
Eduardo Habkost3ed2d9e2012-05-02 13:07:28 -03002934 defconfig = false;
Anthony Liguori292444c2010-01-21 10:57:58 -06002935 break;
Eduardo Habkostf29a5612012-05-02 13:07:29 -03002936 case QEMU_OPTION_nouserconfig:
2937 userconfig = false;
2938 break;
Anthony Liguori292444c2010-01-21 10:57:58 -06002939 }
2940 }
2941 }
2942
2943 if (defconfig) {
Kevin Wolfdcfb0932010-03-05 17:25:55 +01002944 int ret;
Eduardo Habkostf29a5612012-05-02 13:07:29 -03002945 ret = qemu_read_default_config_files(userconfig);
Eduardo Habkostb5a8fe52012-05-02 13:07:25 -03002946 if (ret < 0) {
Kevin Wolfdcfb0932010-03-05 17:25:55 +01002947 exit(1);
Anthony Liguori292444c2010-01-21 10:57:58 -06002948 }
2949 }
2950
2951 /* second pass of option parsing */
bellardcd6f1162004-05-13 22:02:20 +00002952 optind = 1;
bellard0824d6f2003-06-24 13:42:40 +00002953 for(;;) {
bellardcd6f1162004-05-13 22:02:20 +00002954 if (optind >= argc)
bellard0824d6f2003-06-24 13:42:40 +00002955 break;
Anthony Liguori6530a972010-01-22 09:18:06 -06002956 if (argv[optind][0] != '-') {
malc9f227bc2012-08-27 18:33:22 +04002957 hda_opts = drive_add(IF_DEFAULT, 0, argv[optind++], HD_OPTS);
bellardcd6f1162004-05-13 22:02:20 +00002958 } else {
2959 const QEMUOption *popt;
2960
Anthony Liguori6530a972010-01-22 09:18:06 -06002961 popt = lookup_opt(argc, argv, &optarg, &optind);
Blue Swirlad960902010-03-29 19:23:52 +00002962 if (!(popt->arch_mask & arch_type)) {
2963 printf("Option %s not supported for this target\n", popt->name);
2964 exit(1);
2965 }
bellardcd6f1162004-05-13 22:02:20 +00002966 switch(popt->index) {
bellardcc1daa42005-06-05 14:49:17 +00002967 case QEMU_OPTION_M:
Jan Kiszka9052ea62011-07-23 12:38:37 +02002968 machine = machine_parse(optarg);
bellardcc1daa42005-06-05 14:49:17 +00002969 break;
Jan Kiszkae43d5942012-10-05 14:51:40 -03002970 case QEMU_OPTION_no_kvm_irqchip: {
2971 olist = qemu_find_opts("machine");
2972 qemu_opts_parse(olist, "kernel_irqchip=off", 0);
2973 break;
2974 }
j_mayer94fc95c2007-03-05 19:44:02 +00002975 case QEMU_OPTION_cpu:
2976 /* hw initialization will check this */
Eduardo Habkostecf40be2012-03-09 16:19:07 -03002977 cpu_model = optarg;
j_mayer94fc95c2007-03-05 19:44:02 +00002978 break;
bellardcd6f1162004-05-13 22:02:20 +00002979 case QEMU_OPTION_hda:
malc9f227bc2012-08-27 18:33:22 +04002980 {
2981 char buf[256];
2982 if (cyls == 0)
2983 snprintf(buf, sizeof(buf), "%s", HD_OPTS);
2984 else
2985 snprintf(buf, sizeof(buf),
2986 "%s,cyls=%d,heads=%d,secs=%d%s",
2987 HD_OPTS , cyls, heads, secs,
2988 translation == BIOS_ATA_TRANSLATION_LBA ?
2989 ",trans=lba" :
2990 translation == BIOS_ATA_TRANSLATION_NONE ?
2991 ",trans=none" : "");
2992 drive_add(IF_DEFAULT, 0, optarg, buf);
2993 break;
2994 }
bellardcd6f1162004-05-13 22:02:20 +00002995 case QEMU_OPTION_hdb:
bellardcc1daa42005-06-05 14:49:17 +00002996 case QEMU_OPTION_hdc:
2997 case QEMU_OPTION_hdd:
Markus Armbruster2292dda2011-01-28 11:21:41 +01002998 drive_add(IF_DEFAULT, popt->index - QEMU_OPTION_hda, optarg,
2999 HD_OPTS);
bellardfc01f7e2003-06-30 10:03:06 +00003000 break;
thse4bcb142007-12-02 04:51:10 +00003001 case QEMU_OPTION_drive:
Michael Tokareve2982c32011-03-30 16:31:05 +04003002 if (drive_def(optarg) == NULL) {
3003 exit(1);
3004 }
thse4bcb142007-12-02 04:51:10 +00003005 break;
Gerd Hoffmannd058fe02009-07-31 12:25:36 +02003006 case QEMU_OPTION_set:
3007 if (qemu_set_option(optarg) != 0)
3008 exit(1);
3009 break;
Gerd Hoffmannd0fef6f2009-12-08 13:11:34 +01003010 case QEMU_OPTION_global:
3011 if (qemu_global_option(optarg) != 0)
3012 exit(1);
3013 break;
balrog3e3d5812007-04-30 02:09:25 +00003014 case QEMU_OPTION_mtdblock:
Markus Armbruster2292dda2011-01-28 11:21:41 +01003015 drive_add(IF_MTD, -1, optarg, MTD_OPTS);
balrog3e3d5812007-04-30 02:09:25 +00003016 break;
pbrooka1bb27b2007-04-06 16:49:48 +00003017 case QEMU_OPTION_sd:
Peter Crosthwaite80f4d9f2013-02-28 18:23:14 +00003018 drive_add(IF_SD, -1, optarg, SD_OPTS);
pbrooka1bb27b2007-04-06 16:49:48 +00003019 break;
j_mayer86f55662007-04-24 06:52:59 +00003020 case QEMU_OPTION_pflash:
Markus Armbruster2292dda2011-01-28 11:21:41 +01003021 drive_add(IF_PFLASH, -1, optarg, PFLASH_OPTS);
j_mayer86f55662007-04-24 06:52:59 +00003022 break;
bellardcd6f1162004-05-13 22:02:20 +00003023 case QEMU_OPTION_snapshot:
bellard33e39632003-07-06 17:15:21 +00003024 snapshot = 1;
3025 break;
bellardcd6f1162004-05-13 22:02:20 +00003026 case QEMU_OPTION_hdachs:
bellard330d0412003-07-26 18:11:40 +00003027 {
bellard330d0412003-07-26 18:11:40 +00003028 const char *p;
3029 p = optarg;
3030 cyls = strtol(p, (char **)&p, 0);
bellard46d47672004-11-16 01:45:27 +00003031 if (cyls < 1 || cyls > 16383)
3032 goto chs_fail;
bellard330d0412003-07-26 18:11:40 +00003033 if (*p != ',')
3034 goto chs_fail;
3035 p++;
3036 heads = strtol(p, (char **)&p, 0);
bellard46d47672004-11-16 01:45:27 +00003037 if (heads < 1 || heads > 16)
3038 goto chs_fail;
bellard330d0412003-07-26 18:11:40 +00003039 if (*p != ',')
3040 goto chs_fail;
3041 p++;
3042 secs = strtol(p, (char **)&p, 0);
bellard46d47672004-11-16 01:45:27 +00003043 if (secs < 1 || secs > 63)
3044 goto chs_fail;
3045 if (*p == ',') {
3046 p++;
3047 if (!strcmp(p, "none"))
3048 translation = BIOS_ATA_TRANSLATION_NONE;
3049 else if (!strcmp(p, "lba"))
3050 translation = BIOS_ATA_TRANSLATION_LBA;
3051 else if (!strcmp(p, "auto"))
3052 translation = BIOS_ATA_TRANSLATION_AUTO;
3053 else
3054 goto chs_fail;
3055 } else if (*p != '\0') {
bellardc4b1fcc2004-03-14 21:44:30 +00003056 chs_fail:
bellard46d47672004-11-16 01:45:27 +00003057 fprintf(stderr, "qemu: invalid physical CHS format\n");
3058 exit(1);
bellardc4b1fcc2004-03-14 21:44:30 +00003059 }
malc9f227bc2012-08-27 18:33:22 +04003060 if (hda_opts != NULL) {
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02003061 char num[16];
3062 snprintf(num, sizeof(num), "%d", cyls);
3063 qemu_opt_set(hda_opts, "cyls", num);
3064 snprintf(num, sizeof(num), "%d", heads);
3065 qemu_opt_set(hda_opts, "heads", num);
3066 snprintf(num, sizeof(num), "%d", secs);
3067 qemu_opt_set(hda_opts, "secs", num);
3068 if (translation == BIOS_ATA_TRANSLATION_LBA)
3069 qemu_opt_set(hda_opts, "trans", "lba");
3070 if (translation == BIOS_ATA_TRANSLATION_NONE)
3071 qemu_opt_set(hda_opts, "trans", "none");
3072 }
bellard330d0412003-07-26 18:11:40 +00003073 }
3074 break;
aliguori268a3622009-04-21 22:30:27 +00003075 case QEMU_OPTION_numa:
aliguori268a3622009-04-21 22:30:27 +00003076 numa_add(optarg);
3077 break;
Jes Sorensen1472a952011-03-16 13:33:31 +01003078 case QEMU_OPTION_display:
3079 display_type = select_display(optarg);
3080 break;
bellardcd6f1162004-05-13 22:02:20 +00003081 case QEMU_OPTION_nographic:
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003082 display_type = DT_NOGRAPHIC;
bellarda20dd502003-09-30 21:07:02 +00003083 break;
balrog4d3b6f62008-02-10 16:33:14 +00003084 case QEMU_OPTION_curses:
Jes Sorensen47b05362011-03-16 13:33:35 +01003085#ifdef CONFIG_CURSES
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003086 display_type = DT_CURSES;
Jes Sorensen47b05362011-03-16 13:33:35 +01003087#else
3088 fprintf(stderr, "Curses support is disabled\n");
3089 exit(1);
balrog4d3b6f62008-02-10 16:33:14 +00003090#endif
Jes Sorensen47b05362011-03-16 13:33:35 +01003091 break;
balroga171fe32007-04-30 01:48:07 +00003092 case QEMU_OPTION_portrait:
Vasily Khoruzhick93128052011-06-17 13:04:36 +03003093 graphic_rotate = 90;
3094 break;
3095 case QEMU_OPTION_rotate:
3096 graphic_rotate = strtol(optarg, (char **) &optarg, 10);
3097 if (graphic_rotate != 0 && graphic_rotate != 90 &&
3098 graphic_rotate != 180 && graphic_rotate != 270) {
3099 fprintf(stderr,
3100 "qemu: only 90, 180, 270 deg rotation is available\n");
3101 exit(1);
3102 }
balroga171fe32007-04-30 01:48:07 +00003103 break;
bellardcd6f1162004-05-13 22:02:20 +00003104 case QEMU_OPTION_kernel:
Peter Maydella0abe472012-02-08 05:41:39 +00003105 qemu_opts_set(qemu_find_opts("machine"), 0, "kernel", optarg);
3106 break;
3107 case QEMU_OPTION_initrd:
3108 qemu_opts_set(qemu_find_opts("machine"), 0, "initrd", optarg);
bellarda20dd502003-09-30 21:07:02 +00003109 break;
bellardcd6f1162004-05-13 22:02:20 +00003110 case QEMU_OPTION_append:
Peter Maydella0abe472012-02-08 05:41:39 +00003111 qemu_opts_set(qemu_find_opts("machine"), 0, "append", optarg);
bellard313aa562003-08-10 21:52:11 +00003112 break;
Grant Likely412beee2012-03-02 11:56:38 +00003113 case QEMU_OPTION_dtb:
3114 qemu_opts_set(qemu_find_opts("machine"), 0, "dtb", optarg);
3115 break;
bellardcd6f1162004-05-13 22:02:20 +00003116 case QEMU_OPTION_cdrom:
Markus Armbruster2292dda2011-01-28 11:21:41 +01003117 drive_add(IF_DEFAULT, 2, optarg, CDROM_OPTS);
bellard36b486b2003-11-11 13:36:08 +00003118 break;
bellardcd6f1162004-05-13 22:02:20 +00003119 case QEMU_OPTION_boot:
j_mayer28c5af52007-11-11 01:50:45 +00003120 {
Jan Kiszkaef3adf62009-07-02 00:19:02 +02003121 static const char * const params[] = {
wayne3d3b8302011-07-27 18:04:55 +08003122 "order", "once", "menu",
Amos Kongac05f342012-09-07 11:11:03 +08003123 "splash", "splash-time",
3124 "reboot-timeout", NULL
Jan Kiszkaef3adf62009-07-02 00:19:02 +02003125 };
3126 char buf[sizeof(boot_devices)];
Jan Kiszkae0f084b2009-07-02 00:19:02 +02003127 char *standard_boot_devices;
Jan Kiszkaef3adf62009-07-02 00:19:02 +02003128 int legacy = 0;
3129
3130 if (!strchr(optarg, '=')) {
3131 legacy = 1;
3132 pstrcpy(buf, sizeof(buf), optarg);
3133 } else if (check_params(buf, sizeof(buf), params, optarg) < 0) {
3134 fprintf(stderr,
3135 "qemu: unknown boot parameter '%s' in '%s'\n",
3136 buf, optarg);
3137 exit(1);
3138 }
3139
3140 if (legacy ||
3141 get_param_value(buf, sizeof(buf), "order", optarg)) {
Eduardo Habkost4e9e9d62010-04-06 19:22:08 -03003142 validate_bootdevices(buf);
Jan Kiszkaef3adf62009-07-02 00:19:02 +02003143 pstrcpy(boot_devices, sizeof(boot_devices), buf);
j_mayer28c5af52007-11-11 01:50:45 +00003144 }
Jan Kiszkae0f084b2009-07-02 00:19:02 +02003145 if (!legacy) {
3146 if (get_param_value(buf, sizeof(buf),
3147 "once", optarg)) {
Eduardo Habkost4e9e9d62010-04-06 19:22:08 -03003148 validate_bootdevices(buf);
Anthony Liguori7267c092011-08-20 22:09:37 -05003149 standard_boot_devices = g_strdup(boot_devices);
Jan Kiszkae0f084b2009-07-02 00:19:02 +02003150 pstrcpy(boot_devices, sizeof(boot_devices), buf);
3151 qemu_register_reset(restore_boot_devices,
3152 standard_boot_devices);
3153 }
Jan Kiszka95387492009-07-02 00:19:02 +02003154 if (get_param_value(buf, sizeof(buf),
3155 "menu", optarg)) {
3156 if (!strcmp(buf, "on")) {
3157 boot_menu = 1;
3158 } else if (!strcmp(buf, "off")) {
3159 boot_menu = 0;
3160 } else {
3161 fprintf(stderr,
3162 "qemu: invalid option value '%s'\n",
3163 buf);
3164 exit(1);
3165 }
3166 }
Markus Armbruster49295eb2013-02-08 21:22:19 +01003167 if (!qemu_opts_parse(qemu_find_opts("boot-opts"),
3168 optarg, 0)) {
3169 exit(1);
3170 }
Jan Kiszkae0f084b2009-07-02 00:19:02 +02003171 }
bellard36b486b2003-11-11 13:36:08 +00003172 }
3173 break;
bellardcd6f1162004-05-13 22:02:20 +00003174 case QEMU_OPTION_fda:
bellardcd6f1162004-05-13 22:02:20 +00003175 case QEMU_OPTION_fdb:
Markus Armbruster2292dda2011-01-28 11:21:41 +01003176 drive_add(IF_FLOPPY, popt->index - QEMU_OPTION_fda,
3177 optarg, FD_OPTS);
bellardc45886d2004-01-05 00:02:06 +00003178 break;
bellard52ca8d62006-06-14 16:03:05 +00003179 case QEMU_OPTION_no_fd_bootchk:
3180 fd_bootchk = 0;
3181 break;
Mark McLoughlina1ea4582009-10-08 19:58:26 +01003182 case QEMU_OPTION_netdev:
Gerd Hoffmann3329f072010-08-20 13:52:01 +02003183 if (net_client_parse(qemu_find_opts("netdev"), optarg) == -1) {
Mark McLoughlina1ea4582009-10-08 19:58:26 +01003184 exit(1);
3185 }
3186 break;
bellard7c9d8e02005-11-15 22:16:05 +00003187 case QEMU_OPTION_net:
Gerd Hoffmann3329f072010-08-20 13:52:01 +02003188 if (net_client_parse(qemu_find_opts("net"), optarg) == -1) {
bellardc4b1fcc2004-03-14 21:44:30 +00003189 exit(1);
3190 }
bellard702c6512004-04-02 21:21:32 +00003191 break;
Ronnie Sahlbergf9dadc92012-01-26 09:39:02 +11003192#ifdef CONFIG_LIBISCSI
3193 case QEMU_OPTION_iscsi:
3194 opts = qemu_opts_parse(qemu_find_opts("iscsi"), optarg, 0);
3195 if (!opts) {
3196 exit(1);
3197 }
3198 break;
3199#endif
bellardc7f74642004-08-24 21:57:12 +00003200#ifdef CONFIG_SLIRP
3201 case QEMU_OPTION_tftp:
Jan Kiszkaad196a92009-06-24 14:42:28 +02003202 legacy_tftp_prefix = optarg;
bellard9bf05442004-08-25 22:12:49 +00003203 break;
ths47d5d012007-02-20 00:05:08 +00003204 case QEMU_OPTION_bootp:
Jan Kiszkaad196a92009-06-24 14:42:28 +02003205 legacy_bootp_filename = optarg;
ths47d5d012007-02-20 00:05:08 +00003206 break;
bellard9bf05442004-08-25 22:12:49 +00003207 case QEMU_OPTION_redir:
Markus Armbruster07527062009-10-06 12:16:57 +01003208 if (net_slirp_redir(optarg) < 0)
3209 exit(1);
bellard9bf05442004-08-25 22:12:49 +00003210 break;
bellardc7f74642004-08-24 21:57:12 +00003211#endif
balrogdc72ac12008-11-09 00:04:26 +00003212 case QEMU_OPTION_bt:
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02003213 add_device_config(DEV_BT, optarg);
balrogdc72ac12008-11-09 00:04:26 +00003214 break;
bellard1d14ffa2005-10-30 18:58:22 +00003215 case QEMU_OPTION_audio_help:
Blue Swirlad960902010-03-29 19:23:52 +00003216 if (!(audio_available())) {
3217 printf("Option %s not supported for this target\n", popt->name);
3218 exit(1);
3219 }
bellard1d14ffa2005-10-30 18:58:22 +00003220 AUD_help ();
3221 exit (0);
3222 break;
3223 case QEMU_OPTION_soundhw:
Blue Swirlad960902010-03-29 19:23:52 +00003224 if (!(audio_available())) {
3225 printf("Option %s not supported for this target\n", popt->name);
3226 exit(1);
3227 }
bellard1d14ffa2005-10-30 18:58:22 +00003228 select_soundhw (optarg);
3229 break;
bellardcd6f1162004-05-13 22:02:20 +00003230 case QEMU_OPTION_h:
ths15f82202007-06-29 23:26:08 +00003231 help(0);
bellardcd6f1162004-05-13 22:02:20 +00003232 break;
pbrook9bd7e6d2009-04-07 22:58:45 +00003233 case QEMU_OPTION_version:
3234 version();
3235 exit(0);
3236 break;
aurel3200f82b82008-04-27 21:12:55 +00003237 case QEMU_OPTION_m: {
Jes Sorensen70b4f4b2011-01-05 11:41:02 +01003238 int64_t value;
Markus Armbrusterff961012012-08-15 13:12:19 +02003239 uint64_t sz;
Markus Armbruster961b42b2011-11-22 09:46:03 +01003240 char *end;
aurel3200f82b82008-04-27 21:12:55 +00003241
Markus Armbruster961b42b2011-11-22 09:46:03 +01003242 value = strtosz(optarg, &end);
3243 if (value < 0 || *end) {
aurel3200f82b82008-04-27 21:12:55 +00003244 fprintf(stderr, "qemu: invalid ram size: %s\n", optarg);
bellardcd6f1162004-05-13 22:02:20 +00003245 exit(1);
3246 }
Markus Armbrusterff961012012-08-15 13:12:19 +02003247 sz = QEMU_ALIGN_UP((uint64_t)value, 8192);
3248 ram_size = sz;
3249 if (ram_size != sz) {
aurel3200f82b82008-04-27 21:12:55 +00003250 fprintf(stderr, "qemu: ram size too large\n");
3251 exit(1);
3252 }
bellardcd6f1162004-05-13 22:02:20 +00003253 break;
aurel3200f82b82008-04-27 21:12:55 +00003254 }
Stefan Bergerd1a0cf72013-02-27 12:47:49 -05003255#ifdef CONFIG_TPM
3256 case QEMU_OPTION_tpmdev:
3257 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg) < 0) {
3258 exit(1);
3259 }
3260 break;
3261#endif
Marcelo Tosattic9027602010-03-01 20:25:08 -03003262 case QEMU_OPTION_mempath:
3263 mem_path = optarg;
3264 break;
3265#ifdef MAP_POPULATE
3266 case QEMU_OPTION_mem_prealloc:
3267 mem_prealloc = 1;
3268 break;
3269#endif
bellardcd6f1162004-05-13 22:02:20 +00003270 case QEMU_OPTION_d:
Matthew Fernandezc235d732011-06-07 16:32:40 +00003271 log_mask = optarg;
3272 break;
3273 case QEMU_OPTION_D:
3274 log_file = optarg;
bellardcd6f1162004-05-13 22:02:20 +00003275 break;
bellardcd6f1162004-05-13 22:02:20 +00003276 case QEMU_OPTION_s:
Markus Armbrusteref0c4a02012-02-07 15:09:13 +01003277 add_device_config(DEV_GDB, "tcp::" DEFAULT_GDBSTUB_PORT);
bellardcd6f1162004-05-13 22:02:20 +00003278 break;
aliguori59030a82009-04-05 18:43:41 +00003279 case QEMU_OPTION_gdb:
Markus Armbrusteref0c4a02012-02-07 15:09:13 +01003280 add_device_config(DEV_GDB, optarg);
bellardcd6f1162004-05-13 22:02:20 +00003281 break;
bellardcd6f1162004-05-13 22:02:20 +00003282 case QEMU_OPTION_L:
Paul Brook5cea8592009-05-30 00:52:44 +01003283 data_dir = optarg;
bellardcd6f1162004-05-13 22:02:20 +00003284 break;
j_mayer1192dad2007-10-05 13:08:35 +00003285 case QEMU_OPTION_bios:
3286 bios_name = optarg;
3287 break;
aurel321b530a62009-04-05 20:08:59 +00003288 case QEMU_OPTION_singlestep:
3289 singlestep = 1;
3290 break;
bellardcd6f1162004-05-13 22:02:20 +00003291 case QEMU_OPTION_S:
pbrook3c07f8e2007-01-21 16:47:01 +00003292 autostart = 0;
bellardcd6f1162004-05-13 22:02:20 +00003293 break;
bellard3d11d0e2004-12-12 16:56:30 +00003294 case QEMU_OPTION_k:
3295 keyboard_layout = optarg;
3296 break;
bellardee22c2f2004-06-03 12:49:50 +00003297 case QEMU_OPTION_localtime:
3298 rtc_utc = 0;
3299 break;
malc3893c122008-09-28 00:42:05 +00003300 case QEMU_OPTION_vga:
Blue Swirla369da52011-09-27 19:15:42 +00003301 vga_model = optarg;
Paolo Bonzini7f1b17f2012-05-10 09:39:17 +02003302 default_vga = 0;
bellard1bfe8562004-07-08 21:17:50 +00003303 break;
bellarde9b137c2004-06-21 16:46:10 +00003304 case QEMU_OPTION_g:
3305 {
3306 const char *p;
3307 int w, h, depth;
3308 p = optarg;
3309 w = strtol(p, (char **)&p, 10);
3310 if (w <= 0) {
3311 graphic_error:
3312 fprintf(stderr, "qemu: invalid resolution or depth\n");
3313 exit(1);
3314 }
3315 if (*p != 'x')
3316 goto graphic_error;
3317 p++;
3318 h = strtol(p, (char **)&p, 10);
3319 if (h <= 0)
3320 goto graphic_error;
3321 if (*p == 'x') {
3322 p++;
3323 depth = strtol(p, (char **)&p, 10);
ths5fafdf22007-09-16 21:08:06 +00003324 if (depth != 8 && depth != 15 && depth != 16 &&
bellarde9b137c2004-06-21 16:46:10 +00003325 depth != 24 && depth != 32)
3326 goto graphic_error;
3327 } else if (*p == '\0') {
3328 depth = graphic_depth;
3329 } else {
3330 goto graphic_error;
3331 }
ths3b46e622007-09-17 08:09:54 +00003332
bellarde9b137c2004-06-21 16:46:10 +00003333 graphic_width = w;
3334 graphic_height = h;
3335 graphic_depth = depth;
3336 }
3337 break;
ths20d8a3e2007-02-18 17:04:49 +00003338 case QEMU_OPTION_echr:
3339 {
3340 char *r;
3341 term_escape_char = strtol(optarg, &r, 0);
3342 if (r == optarg)
3343 printf("Bad argument to echr\n");
3344 break;
3345 }
bellard82c643f2004-07-14 17:28:13 +00003346 case QEMU_OPTION_monitor:
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01003347 monitor_parse(optarg, "readline");
3348 default_monitor = 0;
3349 break;
3350 case QEMU_OPTION_qmp:
3351 monitor_parse(optarg, "control");
Anthony Liguori2d114dc2010-03-21 14:14:38 -05003352 default_monitor = 0;
bellard82c643f2004-07-14 17:28:13 +00003353 break;
Gerd Hoffmann22a0e042009-12-08 13:11:51 +01003354 case QEMU_OPTION_mon:
Gerd Hoffmann3329f072010-08-20 13:52:01 +02003355 opts = qemu_opts_parse(qemu_find_opts("mon"), optarg, 1);
Gerd Hoffmann22a0e042009-12-08 13:11:51 +01003356 if (!opts) {
Gerd Hoffmann22a0e042009-12-08 13:11:51 +01003357 exit(1);
3358 }
Anthony Liguori2d114dc2010-03-21 14:14:38 -05003359 default_monitor = 0;
Gerd Hoffmann22a0e042009-12-08 13:11:51 +01003360 break;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003361 case QEMU_OPTION_chardev:
Gerd Hoffmann3329f072010-08-20 13:52:01 +02003362 opts = qemu_opts_parse(qemu_find_opts("chardev"), optarg, 1);
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003363 if (!opts) {
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003364 exit(1);
3365 }
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003366 break;
Gautham R Shenoy74db9202010-04-29 17:44:43 +05303367 case QEMU_OPTION_fsdev:
Gerd Hoffmann03b0ba72010-08-20 13:52:02 +02003368 olist = qemu_find_opts("fsdev");
3369 if (!olist) {
3370 fprintf(stderr, "fsdev is not supported by this qemu build.\n");
3371 exit(1);
3372 }
3373 opts = qemu_opts_parse(olist, optarg, 1);
Gautham R Shenoy74db9202010-04-29 17:44:43 +05303374 if (!opts) {
Gautham R Shenoy74db9202010-04-29 17:44:43 +05303375 exit(1);
3376 }
3377 break;
Gautham R Shenoy3d54abc2010-04-29 17:45:03 +05303378 case QEMU_OPTION_virtfs: {
Stefan Hajnoczie14ea472011-03-16 08:31:43 +00003379 QemuOpts *fsdev;
3380 QemuOpts *device;
M. Mohan Kumar84a87cc2011-12-14 13:58:47 +05303381 const char *writeout, *sock_fd, *socket;
Gautham R Shenoy3d54abc2010-04-29 17:45:03 +05303382
Gerd Hoffmann03b0ba72010-08-20 13:52:02 +02003383 olist = qemu_find_opts("virtfs");
3384 if (!olist) {
3385 fprintf(stderr, "virtfs is not supported by this qemu build.\n");
3386 exit(1);
3387 }
3388 opts = qemu_opts_parse(olist, optarg, 1);
Gautham R Shenoy3d54abc2010-04-29 17:45:03 +05303389 if (!opts) {
Gautham R Shenoy3d54abc2010-04-29 17:45:03 +05303390 exit(1);
3391 }
3392
Aneesh Kumar K.Vfbcbf102011-10-13 12:28:04 +05303393 if (qemu_opt_get(opts, "fsdriver") == NULL ||
Aneesh Kumar K.V99519f02011-12-14 13:48:59 +05303394 qemu_opt_get(opts, "mount_tag") == NULL) {
3395 fprintf(stderr, "Usage: -virtfs fsdriver,mount_tag=tag.\n");
Venkateswararao Jujjuri (JV)9ce56db2010-06-14 13:34:40 -07003396 exit(1);
3397 }
Stefan Hajnoczie14ea472011-03-16 08:31:43 +00003398 fsdev = qemu_opts_create(qemu_find_opts("fsdev"),
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03003399 qemu_opt_get(opts, "mount_tag"),
3400 1, NULL);
Stefan Hajnoczie14ea472011-03-16 08:31:43 +00003401 if (!fsdev) {
3402 fprintf(stderr, "duplicate fsdev id: %s\n",
3403 qemu_opt_get(opts, "mount_tag"));
Gautham R Shenoy3d54abc2010-04-29 17:45:03 +05303404 exit(1);
3405 }
Aneesh Kumar K.Vd3ab98e2011-10-12 19:11:23 +05303406
3407 writeout = qemu_opt_get(opts, "writeout");
3408 if (writeout) {
3409#ifdef CONFIG_SYNC_FILE_RANGE
3410 qemu_opt_set(fsdev, "writeout", writeout);
3411#else
3412 fprintf(stderr, "writeout=immediate not supported on "
3413 "this platform\n");
3414 exit(1);
3415#endif
3416 }
Aneesh Kumar K.Vfbcbf102011-10-13 12:28:04 +05303417 qemu_opt_set(fsdev, "fsdriver", qemu_opt_get(opts, "fsdriver"));
Stefan Hajnoczie14ea472011-03-16 08:31:43 +00003418 qemu_opt_set(fsdev, "path", qemu_opt_get(opts, "path"));
3419 qemu_opt_set(fsdev, "security_model",
3420 qemu_opt_get(opts, "security_model"));
M. Mohan Kumar84a87cc2011-12-14 13:58:47 +05303421 socket = qemu_opt_get(opts, "socket");
3422 if (socket) {
3423 qemu_opt_set(fsdev, "socket", socket);
3424 }
M. Mohan Kumar4c793dd2011-12-14 13:49:28 +05303425 sock_fd = qemu_opt_get(opts, "sock_fd");
3426 if (sock_fd) {
3427 qemu_opt_set(fsdev, "sock_fd", sock_fd);
3428 }
Gautham R Shenoy3d54abc2010-04-29 17:45:03 +05303429
M. Mohan Kumar2c74c2c2011-10-25 12:10:39 +05303430 qemu_opt_set_bool(fsdev, "readonly",
3431 qemu_opt_get_bool(opts, "readonly", 0));
Dong Xu Wange478b442012-12-06 14:47:22 +08003432 device = qemu_opts_create_nofail(qemu_find_opts("device"));
Stefan Hajnoczie14ea472011-03-16 08:31:43 +00003433 qemu_opt_set(device, "driver", "virtio-9p-pci");
3434 qemu_opt_set(device, "fsdev",
3435 qemu_opt_get(opts, "mount_tag"));
3436 qemu_opt_set(device, "mount_tag",
3437 qemu_opt_get(opts, "mount_tag"));
Gautham R Shenoy3d54abc2010-04-29 17:45:03 +05303438 break;
3439 }
Aneesh Kumar K.V9db221a2011-10-25 12:10:40 +05303440 case QEMU_OPTION_virtfs_synth: {
3441 QemuOpts *fsdev;
3442 QemuOpts *device;
3443
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03003444 fsdev = qemu_opts_create(qemu_find_opts("fsdev"), "v_synth",
3445 1, NULL);
Aneesh Kumar K.V9db221a2011-10-25 12:10:40 +05303446 if (!fsdev) {
3447 fprintf(stderr, "duplicate option: %s\n", "virtfs_synth");
3448 exit(1);
3449 }
3450 qemu_opt_set(fsdev, "fsdriver", "synth");
Aneesh Kumar K.V9db221a2011-10-25 12:10:40 +05303451
Dong Xu Wange478b442012-12-06 14:47:22 +08003452 device = qemu_opts_create_nofail(qemu_find_opts("device"));
Aneesh Kumar K.V9db221a2011-10-25 12:10:40 +05303453 qemu_opt_set(device, "driver", "virtio-9p-pci");
3454 qemu_opt_set(device, "fsdev", "v_synth");
3455 qemu_opt_set(device, "mount_tag", "v_synth");
3456 break;
3457 }
bellard82c643f2004-07-14 17:28:13 +00003458 case QEMU_OPTION_serial:
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01003459 add_device_config(DEV_SERIAL, optarg);
3460 default_serial = 0;
Jan Kiszka18141ed2010-03-07 11:28:40 +01003461 if (strncmp(optarg, "mon:", 4) == 0) {
3462 default_monitor = 0;
3463 }
bellard82c643f2004-07-14 17:28:13 +00003464 break;
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01003465 case QEMU_OPTION_watchdog:
Markus Armbruster09aaa162009-08-21 10:31:34 +02003466 if (watchdog) {
3467 fprintf(stderr,
3468 "qemu: only one watchdog option may be given\n");
3469 return 1;
3470 }
3471 watchdog = optarg;
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01003472 break;
3473 case QEMU_OPTION_watchdog_action:
3474 if (select_watchdog_action(optarg) == -1) {
3475 fprintf(stderr, "Unknown -watchdog-action parameter\n");
3476 exit(1);
3477 }
3478 break;
aliguori51ecf132009-01-15 20:06:40 +00003479 case QEMU_OPTION_virtiocon:
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01003480 add_device_config(DEV_VIRTCON, optarg);
3481 default_virtcon = 0;
Jan Kiszka18141ed2010-03-07 11:28:40 +01003482 if (strncmp(optarg, "mon:", 4) == 0) {
3483 default_monitor = 0;
3484 }
aliguori51ecf132009-01-15 20:06:40 +00003485 break;
bellard6508fe52005-01-15 12:02:56 +00003486 case QEMU_OPTION_parallel:
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01003487 add_device_config(DEV_PARALLEL, optarg);
3488 default_parallel = 0;
Jan Kiszka18141ed2010-03-07 11:28:40 +01003489 if (strncmp(optarg, "mon:", 4) == 0) {
3490 default_monitor = 0;
3491 }
bellard6508fe52005-01-15 12:02:56 +00003492 break;
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08003493 case QEMU_OPTION_debugcon:
3494 add_device_config(DEV_DEBUGCON, optarg);
3495 break;
bellardd63d3072004-10-03 13:29:03 +00003496 case QEMU_OPTION_loadvm:
3497 loadvm = optarg;
3498 break;
3499 case QEMU_OPTION_full_screen:
3500 full_screen = 1;
3501 break;
ths667acca2006-12-11 02:08:05 +00003502#ifdef CONFIG_SDL
ths43523e92007-02-18 18:19:32 +00003503 case QEMU_OPTION_no_frame:
3504 no_frame = 1;
3505 break;
ths3780e192007-06-21 21:08:02 +00003506 case QEMU_OPTION_alt_grab:
3507 alt_grab = 1;
3508 break;
Dustin Kirkland0ca9f8a2009-09-17 15:48:04 -05003509 case QEMU_OPTION_ctrl_grab:
3510 ctrl_grab = 1;
3511 break;
ths667acca2006-12-11 02:08:05 +00003512 case QEMU_OPTION_no_quit:
3513 no_quit = 1;
3514 break;
aliguori7d957bd2009-01-15 22:14:11 +00003515 case QEMU_OPTION_sdl:
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003516 display_type = DT_SDL;
aliguori7d957bd2009-01-15 22:14:11 +00003517 break;
Jes Sorensen58fc0962011-03-16 13:33:34 +01003518#else
3519 case QEMU_OPTION_no_frame:
3520 case QEMU_OPTION_alt_grab:
3521 case QEMU_OPTION_ctrl_grab:
3522 case QEMU_OPTION_no_quit:
3523 case QEMU_OPTION_sdl:
3524 fprintf(stderr, "SDL support is disabled\n");
3525 exit(1);
ths667acca2006-12-11 02:08:05 +00003526#endif
bellardf7cce892004-12-08 22:21:25 +00003527 case QEMU_OPTION_pidfile:
ths93815bc2007-03-19 15:58:31 +00003528 pid_file = optarg;
bellardf7cce892004-12-08 22:21:25 +00003529 break;
bellarda09db212005-04-30 16:10:35 +00003530 case QEMU_OPTION_win2k_hack:
3531 win2k_install_hack = 1;
3532 break;
Jan Kiszka433acf02012-01-23 20:15:12 +01003533 case QEMU_OPTION_rtc_td_hack: {
3534 static GlobalProperty slew_lost_ticks[] = {
3535 {
3536 .driver = "mc146818rtc",
3537 .property = "lost_tick_policy",
3538 .value = "slew",
3539 },
3540 { /* end of list */ }
3541 };
3542
3543 qdev_prop_register_global_list(slew_lost_ticks);
aliguori73822ec2009-01-15 20:11:34 +00003544 break;
Jan Kiszka433acf02012-01-23 20:15:12 +01003545 }
aliguori8a92ea22009-02-27 20:12:36 +00003546 case QEMU_OPTION_acpitable:
Blue Swirlde06f8d2010-03-29 19:23:50 +00003547 do_acpitable_option(optarg);
aliguori8a92ea22009-02-27 20:12:36 +00003548 break;
aliguorib6f6e3d2009-04-17 18:59:56 +00003549 case QEMU_OPTION_smbios:
Blue Swirlde06f8d2010-03-29 19:23:50 +00003550 do_smbios_option(optarg);
aliguorib6f6e3d2009-04-17 18:59:56 +00003551 break;
aliguori7ba1e612008-11-05 16:04:33 +00003552 case QEMU_OPTION_enable_kvm:
Anthony PERARD303d4e82010-09-21 20:05:31 +01003553 olist = qemu_find_opts("machine");
Anthony PERARD303d4e82010-09-21 20:05:31 +01003554 qemu_opts_parse(olist, "accel=kvm", 0);
3555 break;
3556 case QEMU_OPTION_machine:
3557 olist = qemu_find_opts("machine");
Jan Kiszka9052ea62011-07-23 12:38:37 +02003558 opts = qemu_opts_parse(olist, optarg, 1);
Anthony PERARD303d4e82010-09-21 20:05:31 +01003559 if (!opts) {
Anthony PERARD303d4e82010-09-21 20:05:31 +01003560 exit(1);
3561 }
Jan Kiszka2645c6d2011-07-25 18:11:20 +02003562 optarg = qemu_opt_get(opts, "type");
3563 if (optarg) {
3564 machine = machine_parse(optarg);
3565 }
aliguori7ba1e612008-11-05 16:04:33 +00003566 break;
Jan Kiszkaa0dac022012-10-05 14:51:45 -03003567 case QEMU_OPTION_no_kvm:
3568 olist = qemu_find_opts("machine");
3569 qemu_opts_parse(olist, "accel=tcg", 0);
3570 break;
Jan Kiszka4086bde2012-10-05 14:51:41 -03003571 case QEMU_OPTION_no_kvm_pit: {
3572 fprintf(stderr, "Warning: KVM PIT can no longer be disabled "
3573 "separately.\n");
3574 break;
3575 }
Jan Kiszkac21fb4f2012-10-05 14:51:42 -03003576 case QEMU_OPTION_no_kvm_pit_reinjection: {
3577 static GlobalProperty kvm_pit_lost_tick_policy[] = {
3578 {
3579 .driver = "kvm-pit",
3580 .property = "lost_tick_policy",
3581 .value = "discard",
3582 },
3583 { /* end of list */ }
3584 };
3585
3586 fprintf(stderr, "Warning: option deprecated, use "
3587 "lost_tick_policy property of kvm-pit instead.\n");
3588 qdev_prop_register_global_list(kvm_pit_lost_tick_policy);
3589 break;
3590 }
bellardbb36d472005-11-05 14:22:28 +00003591 case QEMU_OPTION_usb:
Peter Maydellfa5358c2012-11-22 16:48:45 +00003592 olist = qemu_find_opts("machine");
3593 qemu_opts_parse(olist, "usb=on", 0);
bellardbb36d472005-11-05 14:22:28 +00003594 break;
bellarda594cfb2005-11-06 16:13:29 +00003595 case QEMU_OPTION_usbdevice:
Peter Maydellfa5358c2012-11-22 16:48:45 +00003596 olist = qemu_find_opts("machine");
3597 qemu_opts_parse(olist, "usb=on", 0);
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02003598 add_device_config(DEV_USB, optarg);
3599 break;
3600 case QEMU_OPTION_device:
Gerd Hoffmann3329f072010-08-20 13:52:01 +02003601 if (!qemu_opts_parse(qemu_find_opts("device"), optarg, 1)) {
Gerd Hoffmannf31d07d2009-07-31 12:25:37 +02003602 exit(1);
3603 }
bellarda594cfb2005-11-06 16:13:29 +00003604 break;
bellard6a00d602005-11-21 23:25:50 +00003605 case QEMU_OPTION_smp:
Andre Przywaradc6b1c02009-08-19 15:42:40 +02003606 smp_parse(optarg);
aliguorib2097002008-10-07 20:39:39 +00003607 if (smp_cpus < 1) {
bellard6a00d602005-11-21 23:25:50 +00003608 fprintf(stderr, "Invalid number of CPUs\n");
3609 exit(1);
3610 }
Jes Sorensen6be68d72009-07-23 17:03:42 +02003611 if (max_cpus < smp_cpus) {
3612 fprintf(stderr, "maxcpus must be equal to or greater than "
3613 "smp\n");
3614 exit(1);
3615 }
3616 if (max_cpus > 255) {
3617 fprintf(stderr, "Unsupported number of maxcpus\n");
3618 exit(1);
3619 }
bellard6a00d602005-11-21 23:25:50 +00003620 break;
bellard24236862006-04-30 21:28:36 +00003621 case QEMU_OPTION_vnc:
Jes Sorensen821601e2011-03-16 13:33:36 +01003622#ifdef CONFIG_VNC
Gerd Hoffmann6b62dc22010-08-25 10:51:06 +02003623 display_remote++;
Jes Sorensen821601e2011-03-16 13:33:36 +01003624 vnc_display = optarg;
3625#else
3626 fprintf(stderr, "VNC support is disabled\n");
3627 exit(1);
3628#endif
3629 break;
bellard6515b202006-05-03 22:02:44 +00003630 case QEMU_OPTION_no_acpi:
3631 acpi_enabled = 0;
3632 break;
aliguori16b29ae2008-12-17 23:28:44 +00003633 case QEMU_OPTION_no_hpet:
3634 no_hpet = 1;
3635 break;
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02003636 case QEMU_OPTION_balloon:
3637 if (balloon_parse(optarg) < 0) {
3638 fprintf(stderr, "Unknown -balloon argument %s\n", optarg);
3639 exit(1);
3640 }
Eduardo Habkostdf97b922009-06-10 16:34:08 -03003641 break;
bellardd1beab82006-10-02 19:44:22 +00003642 case QEMU_OPTION_no_reboot:
3643 no_reboot = 1;
3644 break;
aurel32b2f76162008-04-11 21:35:52 +00003645 case QEMU_OPTION_no_shutdown:
3646 no_shutdown = 1;
3647 break;
balrog9467cd42007-05-01 01:34:14 +00003648 case QEMU_OPTION_show_cursor:
3649 cursor_hide = 0;
3650 break;
blueswir18fcb1b92008-09-18 18:29:08 +00003651 case QEMU_OPTION_uuid:
3652 if(qemu_uuid_parse(optarg, qemu_uuid) < 0) {
3653 fprintf(stderr, "Fail to parse UUID string."
3654 " Wrong format.\n");
3655 exit(1);
3656 }
3657 break;
ths9ae02552007-01-05 17:39:04 +00003658 case QEMU_OPTION_option_rom:
3659 if (nb_option_roms >= MAX_OPTION_ROMS) {
3660 fprintf(stderr, "Too many option ROMs\n");
3661 exit(1);
3662 }
Gleb Natapov2e55e842010-12-08 13:35:07 +02003663 opts = qemu_opts_parse(qemu_find_opts("option-rom"), optarg, 1);
Markus Armbruster49295eb2013-02-08 21:22:19 +01003664 if (!opts) {
3665 exit(1);
3666 }
Gleb Natapov2e55e842010-12-08 13:35:07 +02003667 option_rom[nb_option_roms].name = qemu_opt_get(opts, "romfile");
3668 option_rom[nb_option_roms].bootindex =
3669 qemu_opt_get_number(opts, "bootindex", -1);
3670 if (!option_rom[nb_option_roms].name) {
3671 fprintf(stderr, "Option ROM file is not specified\n");
3672 exit(1);
3673 }
ths9ae02552007-01-05 17:39:04 +00003674 nb_option_roms++;
3675 break;
pbrook8e716212007-01-20 17:12:09 +00003676 case QEMU_OPTION_semihosting:
3677 semihosting_enabled = 1;
3678 break;
Jan Kiszka88eed342012-10-05 14:51:44 -03003679 case QEMU_OPTION_tdf:
3680 fprintf(stderr, "Warning: user space PIT time drift fix "
3681 "is no longer supported.\n");
3682 break;
thsc35734b2007-03-19 15:17:08 +00003683 case QEMU_OPTION_name:
Anthony Liguori7267c092011-08-20 22:09:37 -05003684 qemu_name = g_strdup(optarg);
Andi Kleen18894652009-07-02 09:34:17 +02003685 {
3686 char *p = strchr(qemu_name, ',');
3687 if (p != NULL) {
3688 *p++ = 0;
3689 if (strncmp(p, "process=", 8)) {
Aurelien Jarno5697f6a2010-12-27 18:29:20 +01003690 fprintf(stderr, "Unknown subargument %s to -name\n", p);
Andi Kleen18894652009-07-02 09:34:17 +02003691 exit(1);
3692 }
3693 p += 8;
Jes Sorensence798cf2010-06-10 11:42:31 +02003694 os_set_proc_name(p);
Andi Kleen18894652009-07-02 09:34:17 +02003695 }
3696 }
thsc35734b2007-03-19 15:17:08 +00003697 break;
blueswir166508602007-05-01 14:16:52 +00003698 case QEMU_OPTION_prom_env:
3699 if (nb_prom_envs >= MAX_PROM_ENVS) {
3700 fprintf(stderr, "Too many prom variables\n");
3701 exit(1);
3702 }
3703 prom_envs[nb_prom_envs] = optarg;
3704 nb_prom_envs++;
3705 break;
balrog2b8f2d42007-07-27 22:08:46 +00003706 case QEMU_OPTION_old_param:
3707 old_param = 1;
ths05ebd532008-01-08 19:32:16 +00003708 break;
thsf3dcfad2007-08-24 01:26:02 +00003709 case QEMU_OPTION_clock:
3710 configure_alarms(optarg);
3711 break;
bellard7e0af5d02007-11-07 16:24:33 +00003712 case QEMU_OPTION_startdate:
Jan Kiszka1ed2fc12009-09-15 13:36:04 +02003713 configure_rtc_date_offset(optarg, 1);
3714 break;
3715 case QEMU_OPTION_rtc:
Gerd Hoffmann3329f072010-08-20 13:52:01 +02003716 opts = qemu_opts_parse(qemu_find_opts("rtc"), optarg, 0);
Jan Kiszka1ed2fc12009-09-15 13:36:04 +02003717 if (!opts) {
Jan Kiszka1ed2fc12009-09-15 13:36:04 +02003718 exit(1);
bellard7e0af5d02007-11-07 16:24:33 +00003719 }
Jan Kiszka1ed2fc12009-09-15 13:36:04 +02003720 configure_rtc(opts);
bellard7e0af5d02007-11-07 16:24:33 +00003721 break;
bellard26a5f132008-05-28 12:30:31 +00003722 case QEMU_OPTION_tb_size:
Jan Kiszkad5ab9712011-08-02 16:10:21 +02003723 tcg_tb_size = strtol(optarg, NULL, 0);
3724 if (tcg_tb_size < 0) {
3725 tcg_tb_size = 0;
3726 }
bellard26a5f132008-05-28 12:30:31 +00003727 break;
pbrook2e70f6e2008-06-29 01:03:05 +00003728 case QEMU_OPTION_icount:
Paolo Bonzini4e3de9e2010-03-10 11:38:48 +01003729 icount_option = optarg;
pbrook2e70f6e2008-06-29 01:03:05 +00003730 break;
aliguori5bb79102008-10-13 03:12:02 +00003731 case QEMU_OPTION_incoming:
3732 incoming = optarg;
Stefano Stabellini81323a62012-01-18 12:23:13 +00003733 runstate_set(RUN_STATE_INMIGRATE);
aliguori5bb79102008-10-13 03:12:02 +00003734 break;
Gerd Hoffmannd8c208d2009-12-08 13:11:46 +01003735 case QEMU_OPTION_nodefaults:
3736 default_serial = 0;
3737 default_parallel = 0;
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01003738 default_virtcon = 0;
Christian Borntraeger2e788492013-01-25 06:00:19 +00003739 default_sclp = 0;
Gerd Hoffmannd8c208d2009-12-08 13:11:46 +01003740 default_monitor = 0;
Gerd Hoffmanncb4522c2009-12-08 13:11:47 +01003741 default_net = 0;
Gerd Hoffmannac33f8f2009-12-16 14:25:39 +01003742 default_floppy = 0;
3743 default_cdrom = 0;
3744 default_sdcard = 0;
Paolo Bonzini7f1b17f2012-05-10 09:39:17 +02003745 default_vga = 0;
Gerd Hoffmannd8c208d2009-12-08 13:11:46 +01003746 break;
aliguorie37630c2009-04-22 15:19:10 +00003747 case QEMU_OPTION_xen_domid:
Blue Swirlad960902010-03-29 19:23:52 +00003748 if (!(xen_available())) {
3749 printf("Option %s not supported for this target\n", popt->name);
3750 exit(1);
3751 }
aliguorie37630c2009-04-22 15:19:10 +00003752 xen_domid = atoi(optarg);
3753 break;
3754 case QEMU_OPTION_xen_create:
Blue Swirlad960902010-03-29 19:23:52 +00003755 if (!(xen_available())) {
3756 printf("Option %s not supported for this target\n", popt->name);
3757 exit(1);
3758 }
aliguorie37630c2009-04-22 15:19:10 +00003759 xen_mode = XEN_CREATE;
3760 break;
3761 case QEMU_OPTION_xen_attach:
Blue Swirlad960902010-03-29 19:23:52 +00003762 if (!(xen_available())) {
3763 printf("Option %s not supported for this target\n", popt->name);
3764 exit(1);
3765 }
aliguorie37630c2009-04-22 15:19:10 +00003766 xen_mode = XEN_ATTACH;
3767 break;
Prerna Saxenaab6540d2010-08-09 11:48:32 +01003768 case QEMU_OPTION_trace:
Lluíse4858972011-08-31 20:31:03 +02003769 {
Prerna Saxenaab6540d2010-08-09 11:48:32 +01003770 opts = qemu_opts_parse(qemu_find_opts("trace"), optarg, 0);
Lluíse4858972011-08-31 20:31:03 +02003771 if (!opts) {
3772 exit(1);
Prerna Saxenaab6540d2010-08-09 11:48:32 +01003773 }
Lluís23d15e82011-08-31 20:31:31 +02003774 trace_events = qemu_opt_get(opts, "events");
Lluíse4858972011-08-31 20:31:03 +02003775 trace_file = qemu_opt_get(opts, "file");
Prerna Saxenaab6540d2010-08-09 11:48:32 +01003776 break;
Lluíse4858972011-08-31 20:31:03 +02003777 }
Gerd Hoffmann715a6642009-10-14 10:39:28 +02003778 case QEMU_OPTION_readconfig:
3779 {
Kevin Wolfdcfb0932010-03-05 17:25:55 +01003780 int ret = qemu_read_config_file(optarg);
3781 if (ret < 0) {
3782 fprintf(stderr, "read config %s: %s\n", optarg,
3783 strerror(-ret));
Gerd Hoffmann715a6642009-10-14 10:39:28 +02003784 exit(1);
3785 }
Gerd Hoffmann715a6642009-10-14 10:39:28 +02003786 break;
3787 }
Gerd Hoffmann29b00402010-03-11 11:13:27 -03003788 case QEMU_OPTION_spice:
3789 olist = qemu_find_opts("spice");
3790 if (!olist) {
3791 fprintf(stderr, "spice is not supported by this qemu build.\n");
3792 exit(1);
3793 }
3794 opts = qemu_opts_parse(olist, optarg, 0);
3795 if (!opts) {
Gerd Hoffmann29b00402010-03-11 11:13:27 -03003796 exit(1);
3797 }
Gerd Hoffmannf963e4d2013-02-25 16:02:30 +01003798 display_remote++;
Gerd Hoffmann29b00402010-03-11 11:13:27 -03003799 break;
Gerd Hoffmann715a6642009-10-14 10:39:28 +02003800 case QEMU_OPTION_writeconfig:
3801 {
3802 FILE *fp;
3803 if (strcmp(optarg, "-") == 0) {
3804 fp = stdout;
3805 } else {
3806 fp = fopen(optarg, "w");
3807 if (fp == NULL) {
3808 fprintf(stderr, "open %s: %s\n", optarg, strerror(errno));
3809 exit(1);
3810 }
3811 }
3812 qemu_config_write(fp);
3813 fclose(fp);
3814 break;
3815 }
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +02003816 case QEMU_OPTION_qtest:
3817 qtest_chrdev = optarg;
3818 break;
3819 case QEMU_OPTION_qtest_log:
3820 qtest_log = optarg;
3821 break;
Eduardo Otubo7d76ad42012-08-14 18:44:08 -03003822 case QEMU_OPTION_sandbox:
3823 opts = qemu_opts_parse(qemu_find_opts("sandbox"), optarg, 1);
3824 if (!opts) {
Markus Armbruster49295eb2013-02-08 21:22:19 +01003825 exit(1);
Eduardo Otubo7d76ad42012-08-14 18:44:08 -03003826 }
3827 break;
Corey Bryant587ed6b2012-10-18 15:19:34 -04003828 case QEMU_OPTION_add_fd:
3829#ifndef _WIN32
3830 opts = qemu_opts_parse(qemu_find_opts("add-fd"), optarg, 0);
3831 if (!opts) {
Markus Armbruster49295eb2013-02-08 21:22:19 +01003832 exit(1);
Corey Bryant587ed6b2012-10-18 15:19:34 -04003833 }
3834#else
3835 error_report("File descriptor passing is disabled on this "
3836 "platform");
3837 exit(1);
3838#endif
3839 break;
Anthony Liguori68d98d32012-06-25 14:36:33 -05003840 case QEMU_OPTION_object:
3841 opts = qemu_opts_parse(qemu_find_opts("object"), optarg, 1);
Markus Armbruster49295eb2013-02-08 21:22:19 +01003842 if (!opts) {
3843 exit(1);
3844 }
Anthony Liguori68d98d32012-06-25 14:36:33 -05003845 break;
Jes Sorensen59a52642010-06-10 11:42:25 +02003846 default:
3847 os_parse_cmd_args(popt->index, optarg);
bellardcd6f1162004-05-13 22:02:20 +00003848 }
bellard0824d6f2003-06-24 13:42:40 +00003849 }
3850 }
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +01003851 loc_set_none();
bellard330d0412003-07-26 18:11:40 +00003852
Paolo Bonzini1c537862012-10-30 00:17:12 +01003853 if (qemu_init_main_loop()) {
3854 fprintf(stderr, "qemu_init_main_loop failed\n");
3855 exit(1);
3856 }
3857
Eduardo Otubo7d76ad42012-08-14 18:44:08 -03003858 if (qemu_opts_foreach(qemu_find_opts("sandbox"), parse_sandbox, NULL, 0)) {
3859 exit(1);
3860 }
3861
Corey Bryant587ed6b2012-10-18 15:19:34 -04003862#ifndef _WIN32
3863 if (qemu_opts_foreach(qemu_find_opts("add-fd"), parse_add_fd, NULL, 1)) {
3864 exit(1);
3865 }
3866
3867 if (qemu_opts_foreach(qemu_find_opts("add-fd"), cleanup_add_fd, NULL, 1)) {
3868 exit(1);
3869 }
3870#endif
3871
Dunrong Huangfb7c2692012-07-24 00:42:20 +08003872 if (machine == NULL) {
3873 fprintf(stderr, "No machine found.\n");
3874 exit(1);
3875 }
3876
Crístian Viana93bfef42012-05-30 00:35:51 -03003877 if (machine->hw_version) {
3878 qemu_set_version(machine->hw_version);
3879 }
3880
Anthony Liguori68d98d32012-06-25 14:36:33 -05003881 if (qemu_opts_foreach(qemu_find_opts("object"),
3882 object_create, NULL, 0) != 0) {
3883 exit(1);
3884 }
3885
Eduardo Habkostecf40be2012-03-09 16:19:07 -03003886 /* Init CPU def lists, based on config
3887 * - Must be called after all the qemu_read_config_file() calls
3888 * - Must be called before list_cpus()
3889 * - Must be called before machine->init()
3890 */
3891 cpudef_init();
3892
Peter Maydellc8057f92012-08-02 13:45:54 +01003893 if (cpu_model && is_help_option(cpu_model)) {
Eduardo Habkost1d6528a2012-03-21 09:33:40 -03003894 list_cpus(stdout, &fprintf, cpu_model);
Eduardo Habkostecf40be2012-03-09 16:19:07 -03003895 exit(0);
3896 }
3897
Matthew Fernandezc235d732011-06-07 16:32:40 +00003898 /* Open the logfile at this point, if necessary. We can't open the logfile
3899 * when encountering either of the logging options (-d or -D) because the
3900 * other one may be encountered later on the command line, changing the
3901 * location or level of logging.
3902 */
3903 if (log_mask) {
Peter Maydellb946bff2013-02-11 16:41:24 +00003904 int mask;
Matthew Fernandezc235d732011-06-07 16:32:40 +00003905 if (log_file) {
Peter Maydell9a7e5422013-02-11 16:41:20 +00003906 qemu_set_log_filename(log_file);
Matthew Fernandezc235d732011-06-07 16:32:40 +00003907 }
Peter Maydellb946bff2013-02-11 16:41:24 +00003908
3909 mask = qemu_str_to_log_mask(log_mask);
3910 if (!mask) {
3911 qemu_print_log_usage(stdout);
3912 exit(1);
3913 }
3914 qemu_set_log(mask);
Matthew Fernandezc235d732011-06-07 16:32:40 +00003915 }
3916
Lluís23d15e82011-08-31 20:31:31 +02003917 if (!trace_backend_init(trace_events, trace_file)) {
Lluíse4858972011-08-31 20:31:03 +02003918 exit(1);
Stefan Hajnoczi31d3c9b2011-03-13 20:14:30 +00003919 }
Stefan Hajnoczi0b5538c2011-02-26 18:38:39 +00003920
Paul Brook5cea8592009-05-30 00:52:44 +01003921 /* If no data_dir is specified then try to find it relative to the
3922 executable path. */
3923 if (!data_dir) {
Jes Sorensen61705402010-06-10 11:42:23 +02003924 data_dir = os_find_datadir(argv[0]);
Paul Brook5cea8592009-05-30 00:52:44 +01003925 }
Stefan Weil60474fb2011-09-04 15:17:46 +02003926 /* If all else fails use the install path specified when building. */
Paul Brook5cea8592009-05-30 00:52:44 +01003927 if (!data_dir) {
Paolo Bonzini1dabe052010-05-26 16:08:25 +02003928 data_dir = CONFIG_QEMU_DATADIR;
Paul Brook5cea8592009-05-30 00:52:44 +01003929 }
3930
Jes Sorensen6be68d72009-07-23 17:03:42 +02003931 /*
3932 * Default to max_cpus = smp_cpus, in case the user doesn't
3933 * specify a max_cpus value.
3934 */
3935 if (!max_cpus)
3936 max_cpus = smp_cpus;
3937
balrog3d878ca2008-10-28 10:59:59 +00003938 machine->max_cpus = machine->max_cpus ?: 1; /* Default to UP */
aliguorib2097002008-10-07 20:39:39 +00003939 if (smp_cpus > machine->max_cpus) {
3940 fprintf(stderr, "Number of SMP cpus requested (%d), exceeds max cpus "
3941 "supported by machine `%s' (%d)\n", smp_cpus, machine->name,
3942 machine->max_cpus);
3943 exit(1);
3944 }
3945
Anthony PERARD67b724e2010-11-22 15:44:15 +00003946 /*
3947 * Get the default machine options from the machine if it is not already
3948 * specified either by the configuration file or by the command line.
3949 */
3950 if (machine->default_machine_opts) {
Jan Kiszka25de5932012-01-27 19:55:43 +01003951 qemu_opts_set_defaults(qemu_find_opts("machine"),
3952 machine->default_machine_opts, 0);
Anthony PERARD67b724e2010-11-22 15:44:15 +00003953 }
3954
Gerd Hoffmann3329f072010-08-20 13:52:01 +02003955 qemu_opts_foreach(qemu_find_opts("device"), default_driver_check, NULL, 0);
3956 qemu_opts_foreach(qemu_find_opts("global"), default_driver_check, NULL, 0);
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01003957
Gerd Hoffmann986c5f72009-12-08 13:11:54 +01003958 if (machine->no_serial) {
3959 default_serial = 0;
3960 }
3961 if (machine->no_parallel) {
3962 default_parallel = 0;
3963 }
3964 if (!machine->use_virtcon) {
3965 default_virtcon = 0;
3966 }
Alexander Graf3ef669e2013-01-24 12:18:52 +01003967 if (!machine->use_sclp) {
3968 default_sclp = 0;
3969 }
Gerd Hoffmannac33f8f2009-12-16 14:25:39 +01003970 if (machine->no_floppy) {
3971 default_floppy = 0;
3972 }
3973 if (machine->no_cdrom) {
3974 default_cdrom = 0;
3975 }
3976 if (machine->no_sdcard) {
3977 default_sdcard = 0;
3978 }
Gerd Hoffmann986c5f72009-12-08 13:11:54 +01003979
Michael Tokarevab51b1d2012-12-30 12:48:14 +04003980 if (is_daemonized()) {
3981 /* According to documentation and historically, -nographic redirects
3982 * serial port, parallel port and monitor to stdio, which does not work
3983 * with -daemonize. We can redirect these to null instead, but since
3984 * -nographic is legacy, let's just error out.
3985 * We disallow -nographic only if all other ports are not redirected
3986 * explicitly, to not break existing legacy setups which uses
3987 * -nographic _and_ redirects all ports explicitly - this is valid
3988 * usage, -nographic is just a no-op in this case.
3989 */
3990 if (display_type == DT_NOGRAPHIC
3991 && (default_parallel || default_serial
3992 || default_monitor || default_virtcon)) {
3993 fprintf(stderr, "-nographic can not be used with -daemonize\n");
3994 exit(1);
3995 }
3996#ifdef CONFIG_CURSES
3997 if (display_type == DT_CURSES) {
3998 fprintf(stderr, "curses display can not be used with -daemonize\n");
3999 exit(1);
4000 }
4001#endif
4002 }
4003
Anthony Liguori993fbfd2009-05-21 16:54:00 -05004004 if (display_type == DT_NOGRAPHIC) {
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01004005 if (default_parallel)
4006 add_device_config(DEV_PARALLEL, "null");
Gerd Hoffmanne1c09172009-12-08 13:11:44 +01004007 if (default_serial && default_monitor) {
4008 add_device_config(DEV_SERIAL, "mon:stdio");
Gerd Hoffmann986c5f72009-12-08 13:11:54 +01004009 } else if (default_virtcon && default_monitor) {
4010 add_device_config(DEV_VIRTCON, "mon:stdio");
Alexander Graf3ef669e2013-01-24 12:18:52 +01004011 } else if (default_sclp && default_monitor) {
4012 add_device_config(DEV_SCLP, "mon:stdio");
Gerd Hoffmanne1c09172009-12-08 13:11:44 +01004013 } else {
4014 if (default_serial)
4015 add_device_config(DEV_SERIAL, "stdio");
Gerd Hoffmann986c5f72009-12-08 13:11:54 +01004016 if (default_virtcon)
4017 add_device_config(DEV_VIRTCON, "stdio");
Alexander Graf3ef669e2013-01-24 12:18:52 +01004018 if (default_sclp) {
4019 add_device_config(DEV_SCLP, "stdio");
4020 }
Gerd Hoffmanne1c09172009-12-08 13:11:44 +01004021 if (default_monitor)
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01004022 monitor_parse("stdio", "readline");
Gerd Hoffmanne1c09172009-12-08 13:11:44 +01004023 }
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01004024 } else {
4025 if (default_serial)
4026 add_device_config(DEV_SERIAL, "vc:80Cx24C");
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01004027 if (default_parallel)
4028 add_device_config(DEV_PARALLEL, "vc:80Cx24C");
Gerd Hoffmannabdeed02009-12-08 13:11:43 +01004029 if (default_monitor)
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01004030 monitor_parse("vc:80Cx24C", "readline");
Alexander Graf38536da2009-12-17 13:06:08 +01004031 if (default_virtcon)
4032 add_device_config(DEV_VIRTCON, "vc:80Cx24C");
Alexander Graf3ef669e2013-01-24 12:18:52 +01004033 if (default_sclp) {
4034 add_device_config(DEV_SCLP, "vc:80Cx24C");
4035 }
aliguoribc0129d2008-08-01 15:12:34 +00004036 }
4037
Anthony Liguori15546422013-02-20 07:43:25 -06004038 if (display_type == DT_DEFAULT && !display_remote) {
4039#if defined(CONFIG_GTK)
4040 display_type = DT_GTK;
4041#elif defined(CONFIG_SDL) || defined(CONFIG_COCOA)
4042 display_type = DT_SDL;
4043#elif defined(CONFIG_VNC)
4044 vnc_display = "localhost:0,to=99";
4045 show_vnc_port = 1;
4046#else
4047 display_type = DT_NONE;
4048#endif
4049 }
4050
4051#if defined(CONFIG_GTK)
4052 if (display_type == DT_GTK) {
4053 early_gtk_display_init();
4054 }
4055#endif
4056
TeLeMana5829fd2010-04-15 12:37:55 +08004057 socket_init();
4058
Gerd Hoffmann3329f072010-08-20 13:52:01 +02004059 if (qemu_opts_foreach(qemu_find_opts("chardev"), chardev_init_func, NULL, 1) != 0)
Gerd Hoffmann1a688d32009-12-08 13:11:36 +01004060 exit(1);
Venkateswararao Jujjuri (JV)758e8e32010-06-14 13:34:41 -07004061#ifdef CONFIG_VIRTFS
Gerd Hoffmann3329f072010-08-20 13:52:01 +02004062 if (qemu_opts_foreach(qemu_find_opts("fsdev"), fsdev_init_func, NULL, 1) != 0) {
Gautham R Shenoy74db9202010-04-29 17:44:43 +05304063 exit(1);
4064 }
4065#endif
Gerd Hoffmann1a688d32009-12-08 13:11:36 +01004066
Jes Sorenseneb505be2010-06-10 11:42:28 +02004067 os_daemonize();
ths71e3ceb2006-12-22 02:11:31 +00004068
thsaa26bb22007-03-25 21:33:06 +00004069 if (pid_file && qemu_create_pidfile(pid_file) != 0) {
Jes Sorenseneb505be2010-06-10 11:42:28 +02004070 os_pidfile_error();
ths93815bc2007-03-19 15:58:31 +00004071 exit(1);
4072 }
4073
Jan Kiszka0ac543d2011-08-15 16:18:57 -07004074 /* init the memory */
4075 if (ram_size == 0) {
4076 ram_size = DEFAULT_RAM_SIZE * 1024 * 1024;
4077 }
4078
Bruce Rogers3d1d9652012-08-09 12:47:40 -06004079 if (qemu_opts_foreach(qemu_find_opts("device"), device_help_func, NULL, 0)
4080 != 0) {
4081 exit(0);
4082 }
4083
Anthony PERARD303d4e82010-09-21 20:05:31 +01004084 configure_accelerator();
Marcelo Tosatti214910a2009-09-18 02:41:23 -03004085
Peter Maydell967c0da2012-02-22 22:40:00 +00004086 machine_opts = qemu_opts_find(qemu_find_opts("machine"), 0);
4087 if (machine_opts) {
4088 kernel_filename = qemu_opt_get(machine_opts, "kernel");
4089 initrd_filename = qemu_opt_get(machine_opts, "initrd");
4090 kernel_cmdline = qemu_opt_get(machine_opts, "append");
4091 } else {
4092 kernel_filename = initrd_filename = kernel_cmdline = NULL;
4093 }
4094
Peter Maydella0abe472012-02-08 05:41:39 +00004095 if (!kernel_cmdline) {
4096 kernel_cmdline = "";
4097 }
4098
bellarda20dd502003-09-30 21:07:02 +00004099 linux_boot = (kernel_filename != NULL);
balrog6c41b272007-11-17 12:12:29 +00004100
thsf8d39c02008-07-03 10:01:15 +00004101 if (!linux_boot && *kernel_cmdline != '\0') {
4102 fprintf(stderr, "-append only allowed with -kernel option\n");
4103 exit(1);
4104 }
4105
4106 if (!linux_boot && initrd_filename != NULL) {
4107 fprintf(stderr, "-initrd only allowed with -kernel option\n");
4108 exit(1);
4109 }
4110
Grant Likely412beee2012-03-02 11:56:38 +00004111 if (!linux_boot && machine_opts && qemu_opt_get(machine_opts, "dtb")) {
4112 fprintf(stderr, "-dtb only allowed with -kernel option\n");
4113 exit(1);
4114 }
4115
Jes Sorensen9156d762010-06-10 11:42:30 +02004116 os_set_line_buffering();
ths3b46e622007-09-17 08:09:54 +00004117
Paolo Bonzini49cf5722012-11-02 15:43:24 +01004118 qemu_init_cpu_loop();
4119 qemu_mutex_lock_iothread();
4120
Alon Levyad1be892012-03-14 20:33:37 +02004121#ifdef CONFIG_SPICE
4122 /* spice needs the timers to be initialized by this point */
4123 qemu_spice_init();
4124#endif
4125
Max Filippov0abe9052011-11-10 15:38:42 +04004126 if (icount_option && (kvm_enabled() || xen_enabled())) {
4127 fprintf(stderr, "-icount is not allowed with kvm or xen\n");
4128 exit(1);
4129 }
Paolo Bonzini4e3de9e2010-03-10 11:38:48 +01004130 configure_icount(icount_option);
pbrook634fce92006-07-15 17:40:09 +00004131
Amos Kongf30dbae2012-12-11 22:20:15 +08004132 /* clean up network at qemu process termination */
4133 atexit(&net_cleanup);
4134
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01004135 if (net_init_clients() < 0) {
4136 exit(1);
bellard702c6512004-04-02 21:21:32 +00004137 }
bellardf1510b22003-06-25 00:07:40 +00004138
Stefan Bergerd1a0cf72013-02-27 12:47:49 -05004139#ifdef CONFIG_TPM
4140 if (tpm_init() < 0) {
4141 exit(1);
4142 }
4143#endif
4144
balrogdc72ac12008-11-09 00:04:26 +00004145 /* init the bluetooth world */
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02004146 if (foreach_device_config(DEV_BT, bt_parse))
4147 exit(1);
balrogdc72ac12008-11-09 00:04:26 +00004148
Anthony PERARD834e76e2011-07-20 08:17:44 +00004149 if (!xen_enabled()) {
4150 /* On 32-bit hosts, QEMU is limited by virtual address space */
4151 if (ram_size > (2047 << 20) && HOST_LONG_BITS == 32) {
4152 fprintf(stderr, "qemu: at most 2047 MB RAM can be simulated\n");
4153 exit(1);
4154 }
4155 }
balrog7fb4fdc2008-04-24 17:59:27 +00004156
Jan Kiszkad5ab9712011-08-02 16:10:21 +02004157 cpu_exec_init_all();
bellard26a5f132008-05-28 12:30:31 +00004158
Markus Armbrustereb852012009-10-27 18:41:44 +01004159 bdrv_init_with_whitelist();
thse4bcb142007-12-02 04:51:10 +00004160
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02004161 blk_mig_init();
4162
ths96d30e42007-01-07 20:42:14 +00004163 /* open the virtual block devices */
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02004164 if (snapshot)
Gerd Hoffmann3329f072010-08-20 13:52:01 +02004165 qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot, NULL, 0);
Christian Borntraeger2d0d2832012-11-20 15:30:34 +01004166 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func,
4167 &machine->block_default_type, 1) != 0) {
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02004168 exit(1);
Christian Borntraeger2d0d2832012-11-20 15:30:34 +01004169 }
balrog3e3d5812007-04-30 02:09:25 +00004170
Christian Borntraeger3c42ea62012-11-22 21:02:55 +01004171 default_drive(default_cdrom, snapshot, machine->block_default_type, 2,
4172 CDROM_OPTS);
4173 default_drive(default_floppy, snapshot, IF_FLOPPY, 0, FD_OPTS);
4174 default_drive(default_sdcard, snapshot, IF_SD, 0, SD_OPTS);
Markus Armbruster4e5d9b52011-01-28 11:21:45 +01004175
Juan Quintela7908c782012-06-26 18:46:10 +02004176 register_savevm_live(NULL, "ram", 0, 4, &savevm_ram_handlers, NULL);
bellard8a7ddc32004-03-31 19:00:16 +00004177
aliguori268a3622009-04-21 22:30:27 +00004178 if (nb_numa_nodes > 0) {
4179 int i;
4180
Sasha Levinea0e5412011-06-29 23:29:39 -04004181 if (nb_numa_nodes > MAX_NODES) {
4182 nb_numa_nodes = MAX_NODES;
aliguori268a3622009-04-21 22:30:27 +00004183 }
4184
4185 /* If no memory size if given for any node, assume the default case
4186 * and distribute the available memory equally across all nodes
4187 */
4188 for (i = 0; i < nb_numa_nodes; i++) {
4189 if (node_mem[i] != 0)
4190 break;
4191 }
4192 if (i == nb_numa_nodes) {
4193 uint64_t usedmem = 0;
4194
4195 /* On Linux, the each node's border has to be 8MB aligned,
4196 * the final node gets the rest.
4197 */
4198 for (i = 0; i < nb_numa_nodes - 1; i++) {
4199 node_mem[i] = (ram_size / nb_numa_nodes) & ~((1 << 23UL) - 1);
4200 usedmem += node_mem[i];
4201 }
4202 node_mem[i] = ram_size - usedmem;
4203 }
4204
4205 for (i = 0; i < nb_numa_nodes; i++) {
Chegu Vinodee785fe2012-07-16 21:31:30 -07004206 if (!bitmap_empty(node_cpumask[i], MAX_CPUMASK_BITS)) {
aliguori268a3622009-04-21 22:30:27 +00004207 break;
Chegu Vinodee785fe2012-07-16 21:31:30 -07004208 }
aliguori268a3622009-04-21 22:30:27 +00004209 }
4210 /* assigning the VCPUs round-robin is easier to implement, guest OSes
4211 * must cope with this anyway, because there are BIOSes out there in
4212 * real machines which also use this scheme.
4213 */
4214 if (i == nb_numa_nodes) {
Vasilis Liaskovitis991dfef2011-10-26 14:19:00 +02004215 for (i = 0; i < max_cpus; i++) {
Chegu Vinodee785fe2012-07-16 21:31:30 -07004216 set_bit(i, node_cpumask[i % nb_numa_nodes]);
aliguori268a3622009-04-21 22:30:27 +00004217 }
4218 }
4219 }
4220
Gerd Hoffmann3329f072010-08-20 13:52:01 +02004221 if (qemu_opts_foreach(qemu_find_opts("mon"), mon_init_func, NULL, 1) != 0) {
Jan Kiszka157b9312010-04-06 16:55:53 +02004222 exit(1);
4223 }
4224
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01004225 if (foreach_device_config(DEV_SERIAL, serial_parse) < 0)
4226 exit(1);
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01004227 if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0)
4228 exit(1);
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01004229 if (foreach_device_config(DEV_VIRTCON, virtcon_parse) < 0)
4230 exit(1);
Alexander Graf3ef669e2013-01-24 12:18:52 +01004231 if (foreach_device_config(DEV_SCLP, sclp_parse) < 0) {
4232 exit(1);
4233 }
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08004234 if (foreach_device_config(DEV_DEBUGCON, debugcon_parse) < 0)
4235 exit(1);
aliguori2796dae2009-01-16 20:23:27 +00004236
Paolo Bonzini7f1b17f2012-05-10 09:39:17 +02004237 /* If no default VGA is requested, the default is "none". */
Aurelien Jarno3605ded2012-09-10 01:01:44 +02004238 if (default_vga) {
4239 if (cirrus_vga_available()) {
4240 vga_model = "cirrus";
4241 } else if (vga_available()) {
4242 vga_model = "std";
4243 }
Blue Swirla369da52011-09-27 19:15:42 +00004244 }
Paolo Bonzini7f1b17f2012-05-10 09:39:17 +02004245 select_vgahw(vga_model);
Blue Swirla369da52011-09-27 19:15:42 +00004246
Markus Armbruster09aaa162009-08-21 10:31:34 +02004247 if (watchdog) {
4248 i = select_watchdog(watchdog);
4249 if (i > 0)
4250 exit (i == 1 ? 1 : 0);
4251 }
4252
Gerd Hoffmannb6b61142009-07-15 13:48:21 +02004253 if (machine->compat_props) {
Gerd Hoffmann458fb672009-12-08 13:11:33 +01004254 qdev_prop_register_global_list(machine->compat_props);
Gerd Hoffmannb6b61142009-07-15 13:48:21 +02004255 }
Gerd Hoffmannd0fef6f2009-12-08 13:11:34 +01004256 qemu_add_globals();
4257
Anthony Liguori1de81d22011-12-19 16:37:46 -06004258 qdev_machine_init();
4259
Eduardo Habkost5f072e12012-10-15 17:22:02 -03004260 QEMUMachineInitArgs args = { .ram_size = ram_size,
Avik Sile4ada292013-01-08 12:36:30 +05304261 .boot_device = (boot_devices[0] == '\0') ?
4262 machine->boot_order :
4263 boot_devices,
Eduardo Habkost5f072e12012-10-15 17:22:02 -03004264 .kernel_filename = kernel_filename,
4265 .kernel_cmdline = kernel_cmdline,
4266 .initrd_filename = initrd_filename,
4267 .cpu_model = cpu_model };
4268 machine->init(&args);
aliguori3023f332009-01-16 19:04:14 +00004269
Jan Kiszkaea375f92010-03-01 19:10:30 +01004270 cpu_synchronize_all_post_init();
aliguori268a3622009-04-21 22:30:27 +00004271
Blue Swirl87d0a282010-03-27 18:24:45 +00004272 set_numa_modes();
aliguori268a3622009-04-21 22:30:27 +00004273
aliguori6f338c32009-02-11 15:21:54 +00004274 current_machine = machine;
4275
aliguori3023f332009-01-16 19:04:14 +00004276 /* init USB devices */
zhlcindy@gmail.com094b2872012-09-02 19:25:28 +00004277 if (usb_enabled(false)) {
Markus Armbruster07527062009-10-06 12:16:57 +01004278 if (foreach_device_config(DEV_USB, usb_parse) < 0)
4279 exit(1);
aliguori3023f332009-01-16 19:04:14 +00004280 }
4281
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02004282 /* init generic devices */
Gerd Hoffmann3329f072010-08-20 13:52:01 +02004283 if (qemu_opts_foreach(qemu_find_opts("device"), device_init_func, NULL, 1) != 0)
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02004284 exit(1);
4285
Markus Armbruster668680f2010-02-11 14:44:58 +01004286 net_check_clients();
4287
aliguori3023f332009-01-16 19:04:14 +00004288 /* just use the first displaystate for the moment */
Paolo Bonzinib473df62010-02-11 00:29:55 +01004289 ds = get_displaystate();
Anthony Liguori993fbfd2009-05-21 16:54:00 -05004290
Gerd Hoffmann6b62dc22010-08-25 10:51:06 +02004291 /* init local displays */
Anthony Liguori993fbfd2009-05-21 16:54:00 -05004292 switch (display_type) {
4293 case DT_NOGRAPHIC:
4294 break;
4295#if defined(CONFIG_CURSES)
4296 case DT_CURSES:
Michael Tokarevab51b1d2012-12-30 12:48:14 +04004297 curses_display_init(ds, full_screen);
Anthony Liguori993fbfd2009-05-21 16:54:00 -05004298 break;
4299#endif
bellard5b0753e2005-03-01 21:37:28 +00004300#if defined(CONFIG_SDL)
Anthony Liguori993fbfd2009-05-21 16:54:00 -05004301 case DT_SDL:
4302 sdl_display_init(ds, full_screen, no_frame);
4303 break;
bellard5b0753e2005-03-01 21:37:28 +00004304#elif defined(CONFIG_COCOA)
Anthony Liguori993fbfd2009-05-21 16:54:00 -05004305 case DT_SDL:
4306 cocoa_display_init(ds, full_screen);
4307 break;
bellard313aa562003-08-10 21:52:11 +00004308#endif
Anthony Liguori15546422013-02-20 07:43:25 -06004309#if defined(CONFIG_GTK)
4310 case DT_GTK:
4311 gtk_display_init(ds);
4312 break;
4313#endif
Gerd Hoffmann6b62dc22010-08-25 10:51:06 +02004314 default:
4315 break;
4316 }
4317
Gleb Natapov0ce235a2011-03-31 11:27:23 +02004318 /* must be after terminal init, SDL library changes signal handlers */
4319 os_setup_signal_handling();
4320
Jes Sorensen821601e2011-03-16 13:33:36 +01004321#ifdef CONFIG_VNC
Gerd Hoffmann6b62dc22010-08-25 10:51:06 +02004322 /* init remote displays */
4323 if (vnc_display) {
Paolo Bonzini2d55f0e2012-10-02 10:17:21 +02004324 Error *local_err = NULL;
Anthony Liguori993fbfd2009-05-21 16:54:00 -05004325 vnc_display_init(ds);
Paolo Bonzini2d55f0e2012-10-02 10:17:21 +02004326 vnc_display_open(ds, vnc_display, &local_err);
4327 if (local_err != NULL) {
4328 fprintf(stderr, "Failed to start VNC server on `%s': %s\n",
4329 vnc_display, error_get_pretty(local_err));
4330 error_free(local_err);
Anthony Liguori993fbfd2009-05-21 16:54:00 -05004331 exit(1);
Amos Kong94b204c2012-06-30 10:02:20 +08004332 }
Anthony Liguorif92f8af2009-05-20 13:01:02 -05004333
Anthony Liguori993fbfd2009-05-21 16:54:00 -05004334 if (show_vnc_port) {
4335 printf("VNC server running on `%s'\n", vnc_display_local_addr(ds));
Anthony Liguorif92f8af2009-05-20 13:01:02 -05004336 }
bellard313aa562003-08-10 21:52:11 +00004337 }
Jes Sorensen821601e2011-03-16 13:33:36 +01004338#endif
Gerd Hoffmanna3e22262010-08-25 15:32:06 +02004339#ifdef CONFIG_SPICE
Gerd Hoffmanna19cbfb2010-04-27 11:50:11 +02004340 if (using_spice && !qxl_enabled) {
Gerd Hoffmanna3e22262010-08-25 15:32:06 +02004341 qemu_spice_display_init(ds);
4342 }
4343#endif
aliguori5b08fc12008-08-21 20:08:03 +00004344
Gerd Hoffmann6b62dc22010-08-25 10:51:06 +02004345 /* display setup */
Paolo Bonzinib473df62010-02-11 00:29:55 +01004346 text_consoles_set_display(ds);
aliguori2796dae2009-01-16 20:23:27 +00004347
Markus Armbrusteref0c4a02012-02-07 15:09:13 +01004348 if (foreach_device_config(DEV_GDB, gdbserver_start) < 0) {
aliguori59030a82009-04-05 18:43:41 +00004349 exit(1);
balrog45669e02007-07-02 13:20:17 +00004350 }
balrog45669e02007-07-02 13:20:17 +00004351
Gerd Hoffmann3418bd22009-09-25 21:42:41 +02004352 qdev_machine_creation_done();
4353
Gerd Hoffmann15ff7702009-12-14 16:07:35 +01004354 if (rom_load_all() != 0) {
4355 fprintf(stderr, "rom loading failed\n");
4356 exit(1);
4357 }
Gerd Hoffmann45a50b12009-10-01 16:42:33 +02004358
Isaku Yamahata80376c32010-12-20 14:33:35 +09004359 /* TODO: once all bus devices are qdevified, this should be done
4360 * when bus is created by qdev.c */
4361 qemu_register_reset(qbus_reset_all_fn, sysbus_get_default());
Gleb Natapov4cab9462010-12-08 13:35:08 +02004362 qemu_run_machine_init_done_notifiers();
4363
Jan Kiszkae063eb12011-06-14 18:29:43 +02004364 qemu_system_reset(VMRESET_SILENT);
Juan Quintela05f24012009-08-20 19:42:22 +02004365 if (loadvm) {
Markus Armbruster03cd4652010-02-17 16:24:10 +01004366 if (load_vmstate(loadvm) < 0) {
Juan Quintela05f24012009-08-20 19:42:22 +02004367 autostart = 0;
4368 }
4369 }
bellardd63d3072004-10-03 13:29:03 +00004370
Glauber Costa2bb8c102009-07-24 16:20:23 -04004371 if (incoming) {
Paolo Bonzini43eaae22012-10-02 18:21:18 +02004372 Error *local_err = NULL;
4373 qemu_start_incoming_migration(incoming, &local_err);
4374 if (local_err) {
4375 fprintf(stderr, "-incoming %s: %s\n", incoming, error_get_pretty(local_err));
4376 error_free(local_err);
4377 exit(1);
Juan Quintela8ca5e802010-06-09 14:10:54 +02004378 }
Avi Kivity6b99dad2009-08-09 14:39:20 +03004379 } else if (autostart) {
aliguoric0f4ce72009-03-05 23:01:01 +00004380 vm_start();
Avi Kivity6b99dad2009-08-09 14:39:20 +03004381 }
thsffd843b2006-12-21 19:46:43 +00004382
Jes Sorenseneb505be2010-06-10 11:42:28 +02004383 os_setup_post();
ths71e3ceb2006-12-22 02:11:31 +00004384
Paolo Bonzini99435902011-09-12 14:03:13 +02004385 resume_all_vcpus();
bellard8a7ddc32004-03-31 19:00:16 +00004386 main_loop();
Paolo Bonzini99435902011-09-12 14:03:13 +02004387 bdrv_close_all();
4388 pause_all_vcpus();
wayne3d3b8302011-07-27 18:04:55 +08004389 res_free();
Stefan Bergerd1a0cf72013-02-27 12:47:49 -05004390#ifdef CONFIG_TPM
4391 tpm_cleanup();
4392#endif
thsb46a8902007-10-21 23:20:45 +00004393
bellard0824d6f2003-06-24 13:42:40 +00004394 return 0;
4395}