blob: 7f4fe0d5df59b50f0635ffcb7fb222441035890d [file] [log] [blame]
bellard0824d6f2003-06-24 13:42:40 +00001/*
bellard80cabfa2004-03-14 12:20:30 +00002 * QEMU System Emulator
ths5fafdf22007-09-16 21:08:06 +00003 *
bellard68d0f702008-01-06 17:21:48 +00004 * Copyright (c) 2003-2008 Fabrice Bellard
ths5fafdf22007-09-16 21:08:06 +00005 *
bellard1df912c2003-06-25 16:20:35 +00006 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
bellard0824d6f2003-06-24 13:42:40 +000023 */
bellard0824d6f2003-06-24 13:42:40 +000024#include <unistd.h>
bellard0824d6f2003-06-24 13:42:40 +000025#include <fcntl.h>
26#include <signal.h>
27#include <time.h>
bellard0824d6f2003-06-24 13:42:40 +000028#include <errno.h>
bellard67b915a2004-03-31 23:37:16 +000029#include <sys/time.h>
bellardc88676f2006-08-06 13:36:11 +000030#include <zlib.h>
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010031#include "qemu/bitmap.h"
bellard67b915a2004-03-31 23:37:16 +000032
Juan Quintela71e72a12009-07-27 16:12:56 +020033/* Needed early for CONFIG_BSD etc. */
blueswir1d40cdb12009-03-07 16:52:02 +000034#include "config-host.h"
35
bellard67b915a2004-03-31 23:37:16 +000036#ifndef _WIN32
Paul Brook5cea8592009-05-30 00:52:44 +010037#include <libgen.h>
bellard67b915a2004-03-31 23:37:16 +000038#include <sys/times.h>
bellardf1510b22003-06-25 00:07:40 +000039#include <sys/wait.h>
bellard67b915a2004-03-31 23:37:16 +000040#include <termios.h>
bellard67b915a2004-03-31 23:37:16 +000041#include <sys/mman.h>
bellardf1510b22003-06-25 00:07:40 +000042#include <sys/ioctl.h>
blueswir124646c72008-11-07 16:55:48 +000043#include <sys/resource.h>
bellardf1510b22003-06-25 00:07:40 +000044#include <sys/socket.h>
bellardc94c8d62004-09-13 21:37:34 +000045#include <netinet/in.h>
blueswir124646c72008-11-07 16:55:48 +000046#include <net/if.h>
blueswir124646c72008-11-07 16:55:48 +000047#include <arpa/inet.h>
bellard9d728e82004-09-05 23:09:03 +000048#include <dirent.h>
bellard7c9d8e02005-11-15 22:16:05 +000049#include <netdb.h>
thscb4b9762007-09-13 12:39:35 +000050#include <sys/select.h>
Prerna Saxenaab6540d2010-08-09 11:48:32 +010051
Juan Quintela71e72a12009-07-27 16:12:56 +020052#ifdef CONFIG_BSD
bellard7d3505c2004-05-12 19:32:15 +000053#include <sys/stat.h>
Aurelien Jarnoa167ba52009-11-29 18:00:41 +010054#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
Juergen Lock92c0e652010-03-25 22:07:12 +010055#include <sys/sysctl.h>
blueswir124646c72008-11-07 16:55:48 +000056#else
57#include <util.h>
blueswir1128ab2f2008-08-15 18:33:42 +000058#endif
Aurelien Jarnobbe813a2009-11-30 15:42:59 +010059#else
blueswir1223f0d72008-09-30 18:12:18 +000060#ifdef __linux__
bellard7d3505c2004-05-12 19:32:15 +000061#include <malloc.h>
thsbd494f42007-09-16 20:03:23 +000062
bellarde57a8c02005-11-10 23:58:52 +000063#include <linux/ppdev.h>
ths5867c882007-02-17 23:44:43 +000064#include <linux/parport.h>
blueswir1223f0d72008-09-30 18:12:18 +000065#endif
Eduardo Otubo452dfbe2012-08-14 18:44:07 -030066
67#ifdef CONFIG_SECCOMP
Paolo Bonzini9c17d612012-12-17 18:20:04 +010068#include "sysemu/seccomp.h"
Eduardo Otubo452dfbe2012-08-14 18:44:07 -030069#endif
70
blueswir1223f0d72008-09-30 18:12:18 +000071#ifdef __sun__
thsd5d10bc2007-02-17 22:54:49 +000072#include <sys/stat.h>
73#include <sys/ethernet.h>
74#include <sys/sockio.h>
thsd5d10bc2007-02-17 22:54:49 +000075#include <netinet/arp.h>
thsd5d10bc2007-02-17 22:54:49 +000076#include <netinet/in_systm.h>
77#include <netinet/ip.h>
78#include <netinet/ip_icmp.h> // must come after ip.h
79#include <netinet/udp.h>
80#include <netinet/tcp.h>
81#include <net/if.h>
82#include <syslog.h>
83#include <stropts.h>
bellard67b915a2004-03-31 23:37:16 +000084#endif
bellard7d3505c2004-05-12 19:32:15 +000085#endif
bellardec530c82006-04-25 22:36:06 +000086#endif
bellard67b915a2004-03-31 23:37:16 +000087
ths8a16d272008-07-19 09:56:24 +000088#if defined(CONFIG_VDE)
89#include <libvdeplug.h>
90#endif
91
bellard67b915a2004-03-31 23:37:16 +000092#ifdef _WIN32
aliguori49dc7682009-03-08 16:26:59 +000093#include <windows.h>
bellard67b915a2004-03-31 23:37:16 +000094#endif
95
bellard73332e52004-04-04 20:22:28 +000096#ifdef CONFIG_SDL
Stefan Weil59a36a22009-06-18 20:11:03 +020097#if defined(__APPLE__) || defined(main)
Stefan Weil66936652009-06-13 13:19:11 +020098#include <SDL.h>
malc880fec52009-02-15 20:18:41 +000099int qemu_main(int argc, char **argv, char **envp);
100int main(int argc, char **argv)
101{
Stefan Weil59a36a22009-06-18 20:11:03 +0200102 return qemu_main(argc, argv, NULL);
malc880fec52009-02-15 20:18:41 +0000103}
104#undef main
105#define main qemu_main
bellard96bcd4f2004-07-10 16:26:15 +0000106#endif
bellard73332e52004-04-04 20:22:28 +0000107#endif /* CONFIG_SDL */
bellard0824d6f2003-06-24 13:42:40 +0000108
bellard5b0753e2005-03-01 21:37:28 +0000109#ifdef CONFIG_COCOA
110#undef main
111#define main qemu_main
112#endif /* CONFIG_COCOA */
113
Anthony Liguori69e5bb62011-08-22 08:12:52 -0500114#include <glib.h>
115
blueswir1511d2b12009-03-07 15:32:56 +0000116#include "hw/hw.h"
117#include "hw/boards.h"
118#include "hw/usb.h"
119#include "hw/pcmcia.h"
Paolo Bonzini0d09e412013-02-05 17:06:20 +0100120#include "hw/i386/pc.h"
121#include "hw/isa/isa.h"
blueswir1511d2b12009-03-07 15:32:56 +0000122#include "hw/bt.h"
Paolo Bonzini0d09e412013-02-05 17:06:20 +0100123#include "sysemu/watchdog.h"
124#include "hw/i386/smbios.h"
125#include "hw/xen/xen.h"
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +0200126#include "hw/qdev.h"
Gerd Hoffmann45a50b12009-10-01 16:42:33 +0200127#include "hw/loader.h"
Paolo Bonzinib4a42f82013-02-04 11:37:52 +0100128#include "monitor/qdev.h"
Paolo Bonzinidccfcd02013-04-08 16:55:25 +0200129#include "sysemu/bt.h"
Paolo Bonzini1422e322012-10-24 08:43:34 +0200130#include "net/net.h"
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000131#include "net/slirp.h"
Paolo Bonzini83c90892012-12-17 18:19:49 +0100132#include "monitor/monitor.h"
Paolo Bonzini28ecbae2012-11-28 12:06:30 +0100133#include "ui/console.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +0100134#include "sysemu/sysemu.h"
Paolo Bonzini022c62c2012-12-17 18:19:49 +0100135#include "exec/gdbstub.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +0100136#include "qemu/timer.h"
Paolo Bonzinidccfcd02013-04-08 16:55:25 +0200137#include "sysemu/char.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +0100138#include "qemu/cache-utils.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +0100139#include "sysemu/blockdev.h"
Paolo Bonzini0d09e412013-02-05 17:06:20 +0100140#include "hw/block/block.h"
Paolo Bonzinicaf71f82012-12-17 18:19:50 +0100141#include "migration/block.h"
Paolo Bonzinibdee56f2013-04-02 18:28:41 +0200142#include "sysemu/tpm.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +0100143#include "sysemu/dma.h"
blueswir1511d2b12009-03-07 15:32:56 +0000144#include "audio/audio.h"
Paolo Bonzinicaf71f82012-12-17 18:19:50 +0100145#include "migration/migration.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +0100146#include "sysemu/kvm.h"
Paolo Bonzini7b1b5d12012-12-17 18:19:43 +0100147#include "qapi/qmp/qjson.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +0100148#include "qemu/option.h"
149#include "qemu/config-file.h"
Jes Sorensen59a52642010-06-10 11:42:25 +0200150#include "qemu-options.h"
Luiz Capitulino1fa9a5e2011-09-12 17:54:20 -0300151#include "qmp-commands.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +0100152#include "qemu/main-loop.h"
Venkateswararao Jujjuri (JV)758e8e32010-06-14 13:34:41 -0700153#ifdef CONFIG_VIRTFS
Gautham R Shenoy74db9202010-04-29 17:44:43 +0530154#include "fsdev/qemu-fsdev.h"
155#endif
Paolo Bonzini9c17d612012-12-17 18:20:04 +0100156#include "sysemu/qtest.h"
blueswir1511d2b12009-03-07 15:32:56 +0000157
Paolo Bonzini76cad712012-10-24 11:12:21 +0200158#include "disas/disas.h"
bellardfc01f7e2003-06-30 10:03:06 +0000159
Paolo Bonzini1de7afc2012-12-17 18:20:00 +0100160#include "qemu/sockets.h"
blueswir1511d2b12009-03-07 15:32:56 +0000161
Jan Kiszkad918f232009-06-24 14:42:30 +0200162#include "slirp/libslirp.h"
blueswir1511d2b12009-03-07 15:32:56 +0000163
Stefan Hajnoczi94b0b5f2010-11-16 12:20:25 +0000164#include "trace.h"
Lluíse4858972011-08-31 20:31:03 +0200165#include "trace/control.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +0100166#include "qemu/queue.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +0100167#include "sysemu/cpus.h"
168#include "sysemu/arch_init.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +0100169#include "qemu/osdep.h"
Blue Swirl72cf2d42009-09-12 07:36:22 +0000170
Gerd Hoffmann29b00402010-03-11 11:13:27 -0300171#include "ui/qemu-spice.h"
Anthony Liguori68d98d32012-06-25 14:36:33 -0500172#include "qapi/string-input-visitor.h"
Gerd Hoffmann29b00402010-03-11 11:13:27 -0300173
blueswir19dc63a12008-10-04 07:25:46 +0000174//#define DEBUG_NET
175//#define DEBUG_SLIRP
bellard330d0412003-07-26 18:11:40 +0000176
bellard1bfe8562004-07-08 21:17:50 +0000177#define DEFAULT_RAM_SIZE 128
bellard313aa562003-08-10 21:52:11 +0000178
Amit Shah98b19252010-01-20 00:36:52 +0530179#define MAX_VIRTIO_CONSOLES 1
Alexander Graf3ef669e2013-01-24 12:18:52 +0100180#define MAX_SCLP_CONSOLES 1
Amit Shah98b19252010-01-20 00:36:52 +0530181
Gerd Hoffmann45240512013-03-08 11:42:24 +0100182static const char *data_dir[16];
183static int data_dir_idx;
j_mayer1192dad2007-10-05 13:08:35 +0000184const char *bios_name = NULL;
malccb5a7aa2008-09-28 00:42:12 +0000185enum vga_retrace_method vga_retrace_method = VGA_RETRACE_DUMB;
Anthony Liguori993fbfd2009-05-21 16:54:00 -0500186DisplayType display_type = DT_DEFAULT;
Blue Swirl4fdcac02012-10-28 11:04:47 +0000187static int display_remote;
bellard3d11d0e2004-12-12 16:56:30 +0000188const char* keyboard_layout = NULL;
Anthony Liguoric227f092009-10-01 16:12:16 -0500189ram_addr_t ram_size;
Marcelo Tosattic9027602010-03-01 20:25:08 -0300190const char *mem_path = NULL;
Marcelo Tosattic9027602010-03-01 20:25:08 -0300191int mem_prealloc = 0; /* force preallocation of physical target memory */
bellardc4b1fcc2004-03-14 21:44:30 +0000192int nb_nics;
bellard7c9d8e02005-11-15 22:16:05 +0000193NICInfo nd_table[MAX_NICS];
Paolo Bonzinid399f672009-07-27 23:17:51 +0200194int autostart;
balrogf6503052008-02-17 11:42:19 +0000195static int rtc_utc = 1;
196static int rtc_date_offset = -1; /* -1 means no change */
Alex Bligh884f17c2013-08-21 16:03:04 +0100197QEMUClockType rtc_clock;
Gerd Hoffmann64465292009-12-08 13:11:45 +0100198int vga_interface_type = VGA_NONE;
blueswir1dbed7e42008-10-01 19:38:09 +0000199static int full_screen = 0;
200static int no_frame = 0;
ths667acca2006-12-11 02:08:05 +0000201int no_quit = 0;
bellard8d11df92004-08-24 21:13:40 +0000202CharDriverState *serial_hds[MAX_SERIAL_PORTS];
bellard6508fe52005-01-15 12:02:56 +0000203CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
aliguori9ede2fd2009-01-15 20:05:25 +0000204CharDriverState *virtcon_hds[MAX_VIRTIO_CONSOLES];
Alexander Graf3ef669e2013-01-24 12:18:52 +0100205CharDriverState *sclp_hds[MAX_SCLP_CONSOLES];
bellarda09db212005-04-30 16:10:35 +0000206int win2k_install_hack = 0;
aurel321b530a62009-04-05 20:08:59 +0000207int singlestep = 0;
bellard6a00d602005-11-21 23:25:50 +0000208int smp_cpus = 1;
Jes Sorensen6be68d72009-07-23 17:03:42 +0200209int max_cpus = 0;
Andre Przywaradc6b1c02009-08-19 15:42:40 +0200210int smp_cores = 1;
211int smp_threads = 1;
Jes Sorensen821601e2011-03-16 13:33:36 +0100212#ifdef CONFIG_VNC
ths73fc9742006-12-22 02:09:07 +0000213const char *vnc_display;
Jes Sorensen821601e2011-03-16 13:33:36 +0100214#endif
bellard6515b202006-05-03 22:02:44 +0000215int acpi_enabled = 1;
aliguori16b29ae2008-12-17 23:28:44 +0000216int no_hpet = 0;
bellard52ca8d62006-06-14 16:03:05 +0000217int fd_bootchk = 1;
Blue Swirl4fdcac02012-10-28 11:04:47 +0000218static int no_reboot;
aurel32b2f76162008-04-11 21:35:52 +0000219int no_shutdown = 0;
balrog9467cd42007-05-01 01:34:14 +0000220int cursor_hide = 1;
balroga171fe32007-04-30 01:48:07 +0000221int graphic_rotate = 0;
Markus Armbruster09aaa162009-08-21 10:31:34 +0200222const char *watchdog;
Gleb Natapov2e55e842010-12-08 13:35:07 +0200223QEMUOptionRom option_rom[MAX_OPTION_ROMS];
ths9ae02552007-01-05 17:39:04 +0000224int nb_option_roms;
pbrook8e716212007-01-20 17:12:09 +0000225int semihosting_enabled = 0;
balrog2b8f2d42007-07-27 22:08:46 +0000226int old_param = 0;
thsc35734b2007-03-19 15:17:08 +0000227const char *qemu_name;
ths3780e192007-06-21 21:08:02 +0000228int alt_grab = 0;
Dustin Kirkland0ca9f8a2009-09-17 15:48:04 -0500229int ctrl_grab = 0;
blueswir166508602007-05-01 14:16:52 +0000230unsigned int nb_prom_envs = 0;
231const char *prom_envs[MAX_PROM_ENVS];
Jan Kiszka95387492009-07-02 00:19:02 +0200232int boot_menu;
Michael Tokarev6f2bfda2013-12-09 12:18:46 +0400233static bool boot_strict;
wayne3d3b8302011-07-27 18:04:55 +0800234uint8_t *boot_splash_filedata;
Markus Armbrusterd09acb92013-01-23 18:25:08 +0100235size_t boot_splash_filedata_size;
wayne3d3b8302011-07-27 18:04:55 +0800236uint8_t qemu_extra_params_fw[2];
bellard0824d6f2003-06-24 13:42:40 +0000237
Gleb Natapov1ca4d092010-12-08 13:35:05 +0200238typedef struct FWBootEntry FWBootEntry;
239
240struct FWBootEntry {
241 QTAILQ_ENTRY(FWBootEntry) link;
242 int32_t bootindex;
243 DeviceState *dev;
244 char *suffix;
245};
246
Blue Swirl4fdcac02012-10-28 11:04:47 +0000247static QTAILQ_HEAD(, FWBootEntry) fw_boot_order =
248 QTAILQ_HEAD_INITIALIZER(fw_boot_order);
Gleb Natapov1ca4d092010-12-08 13:35:05 +0200249
aliguori268a3622009-04-21 22:30:27 +0000250int nb_numa_nodes;
251uint64_t node_mem[MAX_NODES];
Chegu Vinodee785fe2012-07-16 21:31:30 -0700252unsigned long *node_cpumask[MAX_NODES];
aliguori268a3622009-04-21 22:30:27 +0000253
blueswir18fcb1b92008-09-18 18:29:08 +0000254uint8_t qemu_uuid[16];
Markus Armbrusterfc3b3292013-08-16 15:18:31 +0200255bool qemu_uuid_set;
blueswir18fcb1b92008-09-18 18:29:08 +0000256
Jan Kiszka76e30d02009-07-02 00:19:02 +0200257static QEMUBootSetHandler *boot_set_handler;
258static void *boot_set_opaque;
259
Gerd Hoffmannfd42dee2010-06-04 14:08:07 +0200260static NotifierList exit_notifiers =
261 NOTIFIER_LIST_INITIALIZER(exit_notifiers);
262
Gleb Natapov4cab9462010-12-08 13:35:08 +0200263static NotifierList machine_init_done_notifiers =
264 NOTIFIER_LIST_INITIALIZER(machine_init_done_notifiers);
265
liguangd5286af2013-01-24 13:03:27 +0800266static bool tcg_allowed = true;
liguangd5286af2013-01-24 13:03:27 +0800267bool xen_allowed;
Blue Swirld745bef2010-03-29 19:23:49 +0000268uint32_t xen_domid;
269enum xen_mode xen_mode = XEN_EMULATE;
Jan Kiszkad5ab9712011-08-02 16:10:21 +0200270static int tcg_tb_size;
Blue Swirld745bef2010-03-29 19:23:49 +0000271
Gerd Hoffmann998bbd72009-12-08 13:11:41 +0100272static int default_serial = 1;
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +0100273static int default_parallel = 1;
Gerd Hoffmann986c5f72009-12-08 13:11:54 +0100274static int default_virtcon = 1;
Alexander Graf3ef669e2013-01-24 12:18:52 +0100275static int default_sclp = 1;
Gerd Hoffmannabdeed02009-12-08 13:11:43 +0100276static int default_monitor = 1;
Gerd Hoffmannac33f8f2009-12-16 14:25:39 +0100277static int default_floppy = 1;
278static int default_cdrom = 1;
279static int default_sdcard = 1;
Paolo Bonzini7f1b17f2012-05-10 09:39:17 +0200280static int default_vga = 1;
Gerd Hoffmann998bbd72009-12-08 13:11:41 +0100281
282static struct {
283 const char *driver;
284 int *flag;
285} default_list[] = {
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +0100286 { .driver = "isa-serial", .flag = &default_serial },
287 { .driver = "isa-parallel", .flag = &default_parallel },
Gerd Hoffmannd8bcbab2009-12-16 14:25:40 +0100288 { .driver = "isa-fdc", .flag = &default_floppy },
Markus Armbrusteraf6bf132011-05-18 18:31:02 +0200289 { .driver = "ide-cd", .flag = &default_cdrom },
290 { .driver = "ide-hd", .flag = &default_cdrom },
Gerd Hoffmannd8bcbab2009-12-16 14:25:40 +0100291 { .driver = "ide-drive", .flag = &default_cdrom },
Markus Armbrusteraf6bf132011-05-18 18:31:02 +0200292 { .driver = "scsi-cd", .flag = &default_cdrom },
Amit Shah392ecf52010-01-21 16:19:23 +0530293 { .driver = "virtio-serial-pci", .flag = &default_virtcon },
294 { .driver = "virtio-serial-s390", .flag = &default_virtcon },
295 { .driver = "virtio-serial", .flag = &default_virtcon },
Paolo Bonzini7f1b17f2012-05-10 09:39:17 +0200296 { .driver = "VGA", .flag = &default_vga },
297 { .driver = "isa-vga", .flag = &default_vga },
298 { .driver = "cirrus-vga", .flag = &default_vga },
299 { .driver = "isa-cirrus-vga", .flag = &default_vga },
300 { .driver = "vmware-svga", .flag = &default_vga },
301 { .driver = "qxl-vga", .flag = &default_vga },
Gerd Hoffmann998bbd72009-12-08 13:11:41 +0100302};
303
Paolo Bonzini4d454572012-11-26 16:03:42 +0100304static QemuOptsList qemu_rtc_opts = {
305 .name = "rtc",
306 .head = QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts.head),
307 .desc = {
308 {
309 .name = "base",
310 .type = QEMU_OPT_STRING,
311 },{
312 .name = "clock",
313 .type = QEMU_OPT_STRING,
314 },{
315 .name = "driftfix",
316 .type = QEMU_OPT_STRING,
317 },
318 { /* end of list */ }
319 },
320};
321
322static QemuOptsList qemu_sandbox_opts = {
323 .name = "sandbox",
324 .implied_opt_name = "enable",
325 .head = QTAILQ_HEAD_INITIALIZER(qemu_sandbox_opts.head),
326 .desc = {
327 {
328 .name = "enable",
329 .type = QEMU_OPT_BOOL,
330 },
331 { /* end of list */ }
332 },
333};
334
335static QemuOptsList qemu_trace_opts = {
336 .name = "trace",
337 .implied_opt_name = "trace",
338 .head = QTAILQ_HEAD_INITIALIZER(qemu_trace_opts.head),
339 .desc = {
340 {
341 .name = "events",
342 .type = QEMU_OPT_STRING,
343 },{
344 .name = "file",
345 .type = QEMU_OPT_STRING,
346 },
347 { /* end of list */ }
348 },
349};
350
351static QemuOptsList qemu_option_rom_opts = {
352 .name = "option-rom",
353 .implied_opt_name = "romfile",
354 .head = QTAILQ_HEAD_INITIALIZER(qemu_option_rom_opts.head),
355 .desc = {
356 {
357 .name = "bootindex",
358 .type = QEMU_OPT_NUMBER,
359 }, {
360 .name = "romfile",
361 .type = QEMU_OPT_STRING,
362 },
363 { /* end of list */ }
364 },
365};
366
367static QemuOptsList qemu_machine_opts = {
368 .name = "machine",
369 .implied_opt_name = "type",
370 .merge_lists = true,
371 .head = QTAILQ_HEAD_INITIALIZER(qemu_machine_opts.head),
372 .desc = {
373 {
374 .name = "type",
375 .type = QEMU_OPT_STRING,
376 .help = "emulated machine"
377 }, {
378 .name = "accel",
379 .type = QEMU_OPT_STRING,
380 .help = "accelerator list",
381 }, {
382 .name = "kernel_irqchip",
383 .type = QEMU_OPT_BOOL,
384 .help = "use KVM in-kernel irqchip",
385 }, {
386 .name = "kvm_shadow_mem",
387 .type = QEMU_OPT_SIZE,
388 .help = "KVM shadow MMU size",
389 }, {
390 .name = "kernel",
391 .type = QEMU_OPT_STRING,
392 .help = "Linux kernel image file",
393 }, {
394 .name = "initrd",
395 .type = QEMU_OPT_STRING,
396 .help = "Linux initial ramdisk file",
397 }, {
398 .name = "append",
399 .type = QEMU_OPT_STRING,
400 .help = "Linux kernel command line",
401 }, {
402 .name = "dtb",
403 .type = QEMU_OPT_STRING,
404 .help = "Linux kernel device tree file",
405 }, {
406 .name = "dumpdtb",
407 .type = QEMU_OPT_STRING,
408 .help = "Dump current dtb to a file and quit",
409 }, {
410 .name = "phandle_start",
Markus Armbrusterc1b71b02013-07-04 15:09:23 +0200411 .type = QEMU_OPT_NUMBER,
Paolo Bonzini4d454572012-11-26 16:03:42 +0100412 .help = "The first phandle ID we may generate dynamically",
413 }, {
414 .name = "dt_compatible",
415 .type = QEMU_OPT_STRING,
416 .help = "Overrides the \"compatible\" property of the dt root node",
417 }, {
418 .name = "dump-guest-core",
419 .type = QEMU_OPT_BOOL,
420 .help = "Include guest memory in a core dump",
421 }, {
422 .name = "mem-merge",
423 .type = QEMU_OPT_BOOL,
424 .help = "enable/disable memory merge support",
425 },{
426 .name = "usb",
427 .type = QEMU_OPT_BOOL,
428 .help = "Set on/off to enable/disable usb",
Gerd Hoffmann1442d3e2013-10-15 16:57:45 +0200429 },{
430 .name = "firmware",
431 .type = QEMU_OPT_STRING,
432 .help = "firmware image",
Paolo Bonzini4d454572012-11-26 16:03:42 +0100433 },
434 { /* End of list */ }
435 },
436};
437
438static QemuOptsList qemu_boot_opts = {
439 .name = "boot-opts",
Markus Armbruster6ef47162013-06-14 13:15:01 +0200440 .implied_opt_name = "order",
441 .merge_lists = true,
Paolo Bonzini4d454572012-11-26 16:03:42 +0100442 .head = QTAILQ_HEAD_INITIALIZER(qemu_boot_opts.head),
443 .desc = {
Paolo Bonzini4d454572012-11-26 16:03:42 +0100444 {
445 .name = "order",
446 .type = QEMU_OPT_STRING,
447 }, {
448 .name = "once",
449 .type = QEMU_OPT_STRING,
450 }, {
451 .name = "menu",
Markus Armbruster6ef47162013-06-14 13:15:01 +0200452 .type = QEMU_OPT_BOOL,
Paolo Bonzini4d454572012-11-26 16:03:42 +0100453 }, {
454 .name = "splash",
455 .type = QEMU_OPT_STRING,
456 }, {
457 .name = "splash-time",
458 .type = QEMU_OPT_STRING,
459 }, {
460 .name = "reboot-timeout",
461 .type = QEMU_OPT_STRING,
Amos Kongc8a6ae82013-03-19 14:23:27 +0800462 }, {
463 .name = "strict",
Amos Konge5187b52013-12-09 19:53:15 +0800464 .type = QEMU_OPT_BOOL,
Paolo Bonzini4d454572012-11-26 16:03:42 +0100465 },
466 { /*End of list */ }
467 },
468};
469
470static QemuOptsList qemu_add_fd_opts = {
471 .name = "add-fd",
472 .head = QTAILQ_HEAD_INITIALIZER(qemu_add_fd_opts.head),
473 .desc = {
474 {
475 .name = "fd",
476 .type = QEMU_OPT_NUMBER,
477 .help = "file descriptor of which a duplicate is added to fd set",
478 },{
479 .name = "set",
480 .type = QEMU_OPT_NUMBER,
481 .help = "ID of the fd set to add fd to",
482 },{
483 .name = "opaque",
484 .type = QEMU_OPT_STRING,
485 .help = "free-form string used to describe fd",
486 },
487 { /* end of list */ }
488 },
489};
490
491static QemuOptsList qemu_object_opts = {
492 .name = "object",
493 .implied_opt_name = "qom-type",
494 .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head),
495 .desc = {
496 { }
497 },
498};
499
Stefan Bergerd1a0cf72013-02-27 12:47:49 -0500500static QemuOptsList qemu_tpmdev_opts = {
501 .name = "tpmdev",
502 .implied_opt_name = "type",
503 .head = QTAILQ_HEAD_INITIALIZER(qemu_tpmdev_opts.head),
504 .desc = {
Stefan Bergerbb716232013-04-22 10:41:39 -0400505 /* options are defined in the TPM backends */
Stefan Bergerd1a0cf72013-02-27 12:47:49 -0500506 { /* end of list */ }
507 },
508};
509
Satoru Moriya888a6bc2013-04-19 16:42:06 +0200510static QemuOptsList qemu_realtime_opts = {
511 .name = "realtime",
512 .head = QTAILQ_HEAD_INITIALIZER(qemu_realtime_opts.head),
513 .desc = {
514 {
515 .name = "mlock",
516 .type = QEMU_OPT_BOOL,
517 },
518 { /* end of list */ }
519 },
520};
521
Seiji Aguchi5e2ac512013-07-03 23:02:46 -0400522static QemuOptsList qemu_msg_opts = {
523 .name = "msg",
524 .head = QTAILQ_HEAD_INITIALIZER(qemu_msg_opts.head),
525 .desc = {
526 {
527 .name = "timestamp",
528 .type = QEMU_OPT_BOOL,
529 },
530 { /* end of list */ }
531 },
532};
533
Markus Armbruster7f9d6e52013-07-04 15:09:19 +0200534/**
535 * Get machine options
536 *
537 * Returns: machine options (never null).
538 */
539QemuOpts *qemu_get_machine_opts(void)
540{
541 QemuOptsList *list;
542 QemuOpts *opts;
543
544 list = qemu_find_opts("machine");
545 assert(list);
546 opts = qemu_opts_find(list, NULL);
547 if (!opts) {
Peter Crosthwaite87ea75d2014-01-01 18:49:17 -0800548 opts = qemu_opts_create(list, NULL, 0, &error_abort);
Markus Armbruster7f9d6e52013-07-04 15:09:19 +0200549 }
550 return opts;
551}
552
Ronnie Sahlberg31459f42012-08-06 18:24:55 +1000553const char *qemu_get_vm_name(void)
554{
555 return qemu_name;
556}
557
wayne3d3b8302011-07-27 18:04:55 +0800558static void res_free(void)
559{
560 if (boot_splash_filedata != NULL) {
Anthony Liguori7267c092011-08-20 22:09:37 -0500561 g_free(boot_splash_filedata);
wayne3d3b8302011-07-27 18:04:55 +0800562 boot_splash_filedata = NULL;
563 }
564}
565
Gerd Hoffmann998bbd72009-12-08 13:11:41 +0100566static int default_driver_check(QemuOpts *opts, void *opaque)
567{
568 const char *driver = qemu_opt_get(opts, "driver");
569 int i;
570
571 if (!driver)
572 return 0;
573 for (i = 0; i < ARRAY_SIZE(default_list); i++) {
574 if (strcmp(default_list[i].driver, driver) != 0)
575 continue;
576 *(default_list[i].flag) = 0;
577 }
578 return 0;
579}
580
bellard0824d6f2003-06-24 13:42:40 +0000581/***********************************************************/
Luiz Capitulinof5bbfba2011-07-29 15:04:45 -0300582/* QEMU state */
583
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300584static RunState current_run_state = RUN_STATE_PRELAUNCH;
Luiz Capitulinof5bbfba2011-07-29 15:04:45 -0300585
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300586typedef struct {
587 RunState from;
588 RunState to;
589} RunStateTransition;
590
591static const RunStateTransition runstate_transitions_def[] = {
592 /* from -> to */
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300593 { RUN_STATE_DEBUG, RUN_STATE_RUNNING },
Paolo Bonzinieca01d32013-12-03 13:00:15 +0100594 { RUN_STATE_DEBUG, RUN_STATE_FINISH_MIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300595
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300596 { RUN_STATE_INMIGRATE, RUN_STATE_RUNNING },
Paolo Bonzini29ed72f2012-10-19 16:45:24 +0200597 { RUN_STATE_INMIGRATE, RUN_STATE_PAUSED },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300598
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300599 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_PAUSED },
Luiz Capitulino8a9236f2011-10-14 11:18:09 -0300600 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_FINISH_MIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300601
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300602 { RUN_STATE_IO_ERROR, RUN_STATE_RUNNING },
Luiz Capitulino8a9236f2011-10-14 11:18:09 -0300603 { RUN_STATE_IO_ERROR, RUN_STATE_FINISH_MIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300604
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300605 { RUN_STATE_PAUSED, RUN_STATE_RUNNING },
Luiz Capitulino8a9236f2011-10-14 11:18:09 -0300606 { RUN_STATE_PAUSED, RUN_STATE_FINISH_MIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300607
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300608 { RUN_STATE_POSTMIGRATE, RUN_STATE_RUNNING },
Luiz Capitulino8a9236f2011-10-14 11:18:09 -0300609 { RUN_STATE_POSTMIGRATE, RUN_STATE_FINISH_MIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300610
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300611 { RUN_STATE_PRELAUNCH, RUN_STATE_RUNNING },
Luiz Capitulino8a9236f2011-10-14 11:18:09 -0300612 { RUN_STATE_PRELAUNCH, RUN_STATE_FINISH_MIGRATE },
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300613 { RUN_STATE_PRELAUNCH, RUN_STATE_INMIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300614
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300615 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_RUNNING },
616 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_POSTMIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300617
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300618 { RUN_STATE_RESTORE_VM, RUN_STATE_RUNNING },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300619
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300620 { RUN_STATE_RUNNING, RUN_STATE_DEBUG },
621 { RUN_STATE_RUNNING, RUN_STATE_INTERNAL_ERROR },
622 { RUN_STATE_RUNNING, RUN_STATE_IO_ERROR },
623 { RUN_STATE_RUNNING, RUN_STATE_PAUSED },
624 { RUN_STATE_RUNNING, RUN_STATE_FINISH_MIGRATE },
625 { RUN_STATE_RUNNING, RUN_STATE_RESTORE_VM },
626 { RUN_STATE_RUNNING, RUN_STATE_SAVE_VM },
627 { RUN_STATE_RUNNING, RUN_STATE_SHUTDOWN },
628 { RUN_STATE_RUNNING, RUN_STATE_WATCHDOG },
Hu Taoede085b2013-04-26 11:24:40 +0800629 { RUN_STATE_RUNNING, RUN_STATE_GUEST_PANICKED },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300630
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300631 { RUN_STATE_SAVE_VM, RUN_STATE_RUNNING },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300632
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300633 { RUN_STATE_SHUTDOWN, RUN_STATE_PAUSED },
Luiz Capitulino8a9236f2011-10-14 11:18:09 -0300634 { RUN_STATE_SHUTDOWN, RUN_STATE_FINISH_MIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300635
Luiz Capitulinoad02b962012-04-27 13:33:36 -0300636 { RUN_STATE_DEBUG, RUN_STATE_SUSPENDED },
637 { RUN_STATE_RUNNING, RUN_STATE_SUSPENDED },
638 { RUN_STATE_SUSPENDED, RUN_STATE_RUNNING },
639 { RUN_STATE_SUSPENDED, RUN_STATE_FINISH_MIGRATE },
640
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300641 { RUN_STATE_WATCHDOG, RUN_STATE_RUNNING },
Luiz Capitulino8a9236f2011-10-14 11:18:09 -0300642 { RUN_STATE_WATCHDOG, RUN_STATE_FINISH_MIGRATE },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300643
Paolo Bonzinidf390762013-11-04 14:30:47 +0100644 { RUN_STATE_GUEST_PANICKED, RUN_STATE_RUNNING },
Hu Taofd2a2e12013-05-20 12:46:20 +0200645 { RUN_STATE_GUEST_PANICKED, RUN_STATE_FINISH_MIGRATE },
Hu Taoede085b2013-04-26 11:24:40 +0800646
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300647 { RUN_STATE_MAX, RUN_STATE_MAX },
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300648};
649
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300650static bool runstate_valid_transitions[RUN_STATE_MAX][RUN_STATE_MAX];
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300651
Luiz Capitulinof5bbfba2011-07-29 15:04:45 -0300652bool runstate_check(RunState state)
653{
654 return current_run_state == state;
655}
656
Blue Swirl4fdcac02012-10-28 11:04:47 +0000657static void runstate_init(void)
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300658{
659 const RunStateTransition *p;
660
661 memset(&runstate_valid_transitions, 0, sizeof(runstate_valid_transitions));
662
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300663 for (p = &runstate_transitions_def[0]; p->from != RUN_STATE_MAX; p++) {
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300664 runstate_valid_transitions[p->from][p->to] = true;
665 }
666}
667
668/* This function will abort() on invalid state transitions */
Luiz Capitulinof5bbfba2011-07-29 15:04:45 -0300669void runstate_set(RunState new_state)
670{
Luiz Capitulino207c5cd2011-10-13 10:59:07 -0300671 assert(new_state < RUN_STATE_MAX);
672
673 if (!runstate_valid_transitions[current_run_state][new_state]) {
674 fprintf(stderr, "ERROR: invalid runstate transition: '%s' -> '%s'\n",
675 RunState_lookup[current_run_state],
676 RunState_lookup[new_state]);
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -0300677 abort();
678 }
Kazuya Saito7e866002013-03-22 17:26:59 +0900679 trace_runstate_set(new_state);
Luiz Capitulinof5bbfba2011-07-29 15:04:45 -0300680 current_run_state = new_state;
681}
682
Luiz Capitulino13548692011-07-29 15:36:43 -0300683int runstate_is_running(void)
684{
Luiz Capitulino0461d5a2011-09-30 14:45:27 -0300685 return runstate_check(RUN_STATE_RUNNING);
Luiz Capitulino13548692011-07-29 15:36:43 -0300686}
687
Hu Taoede085b2013-04-26 11:24:40 +0800688bool runstate_needs_reset(void)
689{
690 return runstate_check(RUN_STATE_INTERNAL_ERROR) ||
Paolo Bonzinidf390762013-11-04 14:30:47 +0100691 runstate_check(RUN_STATE_SHUTDOWN);
Hu Taoede085b2013-04-26 11:24:40 +0800692}
693
Luiz Capitulino1fa9a5e2011-09-12 17:54:20 -0300694StatusInfo *qmp_query_status(Error **errp)
695{
696 StatusInfo *info = g_malloc0(sizeof(*info));
697
698 info->running = runstate_is_running();
699 info->singlestep = singlestep;
700 info->status = current_run_state;
701
702 return info;
703}
704
Luiz Capitulinof5bbfba2011-07-29 15:04:45 -0300705/***********************************************************/
Paolo Bonzini8f0056b2010-01-13 14:05:34 +0100706/* real time host monotonic timer */
bellard09b26c52006-04-12 21:09:08 +0000707
bellardc4b1fcc2004-03-14 21:44:30 +0000708/***********************************************************/
balrogf6503052008-02-17 11:42:19 +0000709/* host time/date access */
710void qemu_get_timedate(struct tm *tm, int offset)
711{
712 time_t ti;
balrogf6503052008-02-17 11:42:19 +0000713
714 time(&ti);
715 ti += offset;
716 if (rtc_date_offset == -1) {
717 if (rtc_utc)
Stefan Weileb7ff6f2013-01-07 23:08:13 +0100718 gmtime_r(&ti, tm);
balrogf6503052008-02-17 11:42:19 +0000719 else
Stefan Weileb7ff6f2013-01-07 23:08:13 +0100720 localtime_r(&ti, tm);
balrogf6503052008-02-17 11:42:19 +0000721 } else {
722 ti -= rtc_date_offset;
Stefan Weileb7ff6f2013-01-07 23:08:13 +0100723 gmtime_r(&ti, tm);
balrogf6503052008-02-17 11:42:19 +0000724 }
balrogf6503052008-02-17 11:42:19 +0000725}
726
727int qemu_timedate_diff(struct tm *tm)
728{
729 time_t seconds;
730
731 if (rtc_date_offset == -1)
732 if (rtc_utc)
733 seconds = mktimegm(tm);
Gleb Natapovf54c5562011-11-06 18:00:22 +0200734 else {
735 struct tm tmp = *tm;
736 tmp.tm_isdst = -1; /* use timezone to figure it out */
737 seconds = mktime(&tmp);
738 }
balrogf6503052008-02-17 11:42:19 +0000739 else
740 seconds = mktimegm(tm) + rtc_date_offset;
741
742 return seconds - time(NULL);
743}
744
Luiz Capitulino80cd3472010-02-25 12:11:44 -0300745void rtc_change_mon_event(struct tm *tm)
746{
747 QObject *data;
748
749 data = qobject_from_jsonf("{ 'offset': %d }", qemu_timedate_diff(tm));
750 monitor_protocol_event(QEVENT_RTC_CHANGE, data);
751 qobject_decref(data);
752}
753
Jan Kiszka1ed2fc12009-09-15 13:36:04 +0200754static void configure_rtc_date_offset(const char *startdate, int legacy)
755{
756 time_t rtc_start_date;
757 struct tm tm;
758
759 if (!strcmp(startdate, "now") && legacy) {
760 rtc_date_offset = -1;
761 } else {
762 if (sscanf(startdate, "%d-%d-%dT%d:%d:%d",
763 &tm.tm_year,
764 &tm.tm_mon,
765 &tm.tm_mday,
766 &tm.tm_hour,
767 &tm.tm_min,
768 &tm.tm_sec) == 6) {
769 /* OK */
770 } else if (sscanf(startdate, "%d-%d-%d",
771 &tm.tm_year,
772 &tm.tm_mon,
773 &tm.tm_mday) == 3) {
774 tm.tm_hour = 0;
775 tm.tm_min = 0;
776 tm.tm_sec = 0;
777 } else {
778 goto date_fail;
779 }
780 tm.tm_year -= 1900;
781 tm.tm_mon--;
782 rtc_start_date = mktimegm(&tm);
783 if (rtc_start_date == -1) {
784 date_fail:
785 fprintf(stderr, "Invalid date format. Valid formats are:\n"
786 "'2006-06-17T16:01:21' or '2006-06-17'\n");
787 exit(1);
788 }
789 rtc_date_offset = time(NULL) - rtc_start_date;
790 }
791}
792
793static void configure_rtc(QemuOpts *opts)
794{
795 const char *value;
796
797 value = qemu_opt_get(opts, "base");
798 if (value) {
799 if (!strcmp(value, "utc")) {
800 rtc_utc = 1;
801 } else if (!strcmp(value, "localtime")) {
802 rtc_utc = 0;
803 } else {
804 configure_rtc_date_offset(value, 0);
805 }
806 }
Jan Kiszka68752042009-09-15 13:36:04 +0200807 value = qemu_opt_get(opts, "clock");
808 if (value) {
809 if (!strcmp(value, "host")) {
Alex Bligh884f17c2013-08-21 16:03:04 +0100810 rtc_clock = QEMU_CLOCK_HOST;
Paolo Bonzini78808142012-03-30 10:31:21 +0000811 } else if (!strcmp(value, "rt")) {
Alex Bligh884f17c2013-08-21 16:03:04 +0100812 rtc_clock = QEMU_CLOCK_REALTIME;
Jan Kiszka68752042009-09-15 13:36:04 +0200813 } else if (!strcmp(value, "vm")) {
Alex Bligh884f17c2013-08-21 16:03:04 +0100814 rtc_clock = QEMU_CLOCK_VIRTUAL;
Jan Kiszka68752042009-09-15 13:36:04 +0200815 } else {
816 fprintf(stderr, "qemu: invalid option value '%s'\n", value);
817 exit(1);
818 }
819 }
Jan Kiszka1ed2fc12009-09-15 13:36:04 +0200820 value = qemu_opt_get(opts, "driftfix");
821 if (value) {
Blue Swirl7e4c0332010-03-27 21:33:46 +0000822 if (!strcmp(value, "slew")) {
Jan Kiszka433acf02012-01-23 20:15:12 +0100823 static GlobalProperty slew_lost_ticks[] = {
824 {
825 .driver = "mc146818rtc",
826 .property = "lost_tick_policy",
827 .value = "slew",
828 },
829 { /* end of list */ }
830 };
831
832 qdev_prop_register_global_list(slew_lost_ticks);
Blue Swirl7e4c0332010-03-27 21:33:46 +0000833 } else if (!strcmp(value, "none")) {
Jan Kiszka433acf02012-01-23 20:15:12 +0100834 /* discard is default */
Jan Kiszka1ed2fc12009-09-15 13:36:04 +0200835 } else {
836 fprintf(stderr, "qemu: invalid option value '%s'\n", value);
837 exit(1);
838 }
839 }
Jan Kiszka1ed2fc12009-09-15 13:36:04 +0200840}
841
balrog1ae26a12008-09-28 23:19:47 +0000842/***********************************************************/
843/* Bluetooth support */
844static int nb_hcis;
845static int cur_hci;
846static struct HCIInfo *hci_table[MAX_NICS];
balrogdc72ac12008-11-09 00:04:26 +0000847
balrog1ae26a12008-09-28 23:19:47 +0000848struct HCIInfo *qemu_next_hci(void)
849{
850 if (cur_hci == nb_hcis)
851 return &null_hci;
852
853 return hci_table[cur_hci++];
854}
855
balrogdc72ac12008-11-09 00:04:26 +0000856static int bt_hci_parse(const char *str)
857{
858 struct HCIInfo *hci;
Anthony Liguoric227f092009-10-01 16:12:16 -0500859 bdaddr_t bdaddr;
balrogdc72ac12008-11-09 00:04:26 +0000860
861 if (nb_hcis >= MAX_NICS) {
862 fprintf(stderr, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS);
863 return -1;
864 }
865
866 hci = hci_init(str);
867 if (!hci)
868 return -1;
869
870 bdaddr.b[0] = 0x52;
871 bdaddr.b[1] = 0x54;
872 bdaddr.b[2] = 0x00;
873 bdaddr.b[3] = 0x12;
874 bdaddr.b[4] = 0x34;
875 bdaddr.b[5] = 0x56 + nb_hcis;
876 hci->bdaddr_set(hci, bdaddr.b);
877
878 hci_table[nb_hcis++] = hci;
879
880 return 0;
881}
882
883static void bt_vhci_add(int vlan_id)
884{
885 struct bt_scatternet_s *vlan = qemu_find_bt_vlan(vlan_id);
886
887 if (!vlan->slave)
888 fprintf(stderr, "qemu: warning: adding a VHCI to "
889 "an empty scatternet %i\n", vlan_id);
890
891 bt_vhci_init(bt_new_hci(vlan));
892}
893
894static struct bt_device_s *bt_device_add(const char *opt)
895{
896 struct bt_scatternet_s *vlan;
897 int vlan_id = 0;
898 char *endp = strstr(opt, ",vlan=");
899 int len = (endp ? endp - opt : strlen(opt)) + 1;
900 char devname[10];
901
902 pstrcpy(devname, MIN(sizeof(devname), len), opt);
903
904 if (endp) {
905 vlan_id = strtol(endp + 6, &endp, 0);
906 if (*endp) {
907 fprintf(stderr, "qemu: unrecognised bluetooth vlan Id\n");
908 return 0;
909 }
910 }
911
912 vlan = qemu_find_bt_vlan(vlan_id);
913
914 if (!vlan->slave)
915 fprintf(stderr, "qemu: warning: adding a slave device to "
916 "an empty scatternet %i\n", vlan_id);
917
918 if (!strcmp(devname, "keyboard"))
919 return bt_keyboard_init(vlan);
920
921 fprintf(stderr, "qemu: unsupported bluetooth device `%s'\n", devname);
922 return 0;
923}
924
925static int bt_parse(const char *opt)
926{
927 const char *endp, *p;
928 int vlan;
929
930 if (strstart(opt, "hci", &endp)) {
931 if (!*endp || *endp == ',') {
932 if (*endp)
933 if (!strstart(endp, ",vlan=", 0))
934 opt = endp + 1;
935
936 return bt_hci_parse(opt);
937 }
938 } else if (strstart(opt, "vhci", &endp)) {
939 if (!*endp || *endp == ',') {
940 if (*endp) {
941 if (strstart(endp, ",vlan=", &p)) {
942 vlan = strtol(p, (char **) &endp, 0);
943 if (*endp) {
944 fprintf(stderr, "qemu: bad scatternet '%s'\n", p);
945 return 1;
946 }
947 } else {
948 fprintf(stderr, "qemu: bad parameter '%s'\n", endp + 1);
949 return 1;
950 }
951 } else
952 vlan = 0;
953
954 bt_vhci_add(vlan);
955 return 0;
956 }
957 } else if (strstart(opt, "device:", &endp))
958 return !bt_device_add(endp);
959
960 fprintf(stderr, "qemu: bad bluetooth parameter '%s'\n", opt);
961 return 1;
962}
963
Eduardo Otubo7d76ad42012-08-14 18:44:08 -0300964static int parse_sandbox(QemuOpts *opts, void *opaque)
965{
966 /* FIXME: change this to true for 1.3 */
967 if (qemu_opt_get_bool(opts, "enable", false)) {
968#ifdef CONFIG_SECCOMP
969 if (seccomp_start() < 0) {
970 qerror_report(ERROR_CLASS_GENERIC_ERROR,
971 "failed to install seccomp syscall filter in the kernel");
972 return -1;
973 }
974#else
975 qerror_report(ERROR_CLASS_GENERIC_ERROR,
976 "sandboxing request but seccomp is not compiled into this build");
977 return -1;
978#endif
979 }
980
981 return 0;
982}
983
zhlcindy@gmail.com094b2872012-09-02 19:25:28 +0000984bool usb_enabled(bool default_usb)
985{
Markus Armbruster2ff3de62013-07-04 15:09:22 +0200986 return qemu_opt_get_bool(qemu_get_machine_opts(), "usb", default_usb);
zhlcindy@gmail.com094b2872012-09-02 19:25:28 +0000987}
988
Corey Bryant587ed6b2012-10-18 15:19:34 -0400989#ifndef _WIN32
990static int parse_add_fd(QemuOpts *opts, void *opaque)
991{
992 int fd, dupfd, flags;
993 int64_t fdset_id;
994 const char *fd_opaque = NULL;
995
996 fd = qemu_opt_get_number(opts, "fd", -1);
997 fdset_id = qemu_opt_get_number(opts, "set", -1);
998 fd_opaque = qemu_opt_get(opts, "opaque");
999
1000 if (fd < 0) {
1001 qerror_report(ERROR_CLASS_GENERIC_ERROR,
1002 "fd option is required and must be non-negative");
1003 return -1;
1004 }
1005
1006 if (fd <= STDERR_FILENO) {
1007 qerror_report(ERROR_CLASS_GENERIC_ERROR,
1008 "fd cannot be a standard I/O stream");
1009 return -1;
1010 }
1011
1012 /*
1013 * All fds inherited across exec() necessarily have FD_CLOEXEC
1014 * clear, while qemu sets FD_CLOEXEC on all other fds used internally.
1015 */
1016 flags = fcntl(fd, F_GETFD);
1017 if (flags == -1 || (flags & FD_CLOEXEC)) {
1018 qerror_report(ERROR_CLASS_GENERIC_ERROR,
1019 "fd is not valid or already in use");
1020 return -1;
1021 }
1022
1023 if (fdset_id < 0) {
1024 qerror_report(ERROR_CLASS_GENERIC_ERROR,
1025 "set option is required and must be non-negative");
1026 return -1;
1027 }
1028
1029#ifdef F_DUPFD_CLOEXEC
1030 dupfd = fcntl(fd, F_DUPFD_CLOEXEC, 0);
1031#else
1032 dupfd = dup(fd);
1033 if (dupfd != -1) {
1034 qemu_set_cloexec(dupfd);
1035 }
1036#endif
1037 if (dupfd == -1) {
1038 qerror_report(ERROR_CLASS_GENERIC_ERROR,
1039 "Error duplicating fd: %s", strerror(errno));
1040 return -1;
1041 }
1042
1043 /* add the duplicate fd, and optionally the opaque string, to the fd set */
1044 monitor_fdset_add_fd(dupfd, true, fdset_id, fd_opaque ? true : false,
1045 fd_opaque, NULL);
1046
1047 return 0;
1048}
1049
1050static int cleanup_add_fd(QemuOpts *opts, void *opaque)
1051{
1052 int fd;
1053
1054 fd = qemu_opt_get_number(opts, "fd", -1);
1055 close(fd);
1056
1057 return 0;
1058}
1059#endif
1060
balrog1ae26a12008-09-28 23:19:47 +00001061/***********************************************************/
1062/* QEMU Block devices */
1063
Markus Armbruster2292dda2011-01-28 11:21:41 +01001064#define HD_OPTS "media=disk"
1065#define CDROM_OPTS "media=cdrom"
1066#define FD_OPTS ""
1067#define PFLASH_OPTS ""
1068#define MTD_OPTS ""
1069#define SD_OPTS ""
thse4bcb142007-12-02 04:51:10 +00001070
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02001071static int drive_init_func(QemuOpts *opts, void *opaque)
1072{
Christian Borntraeger2d0d2832012-11-20 15:30:34 +01001073 BlockInterfaceType *block_default_type = opaque;
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02001074
Christian Borntraeger2d0d2832012-11-20 15:30:34 +01001075 return drive_init(opts, *block_default_type) == NULL;
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02001076}
1077
1078static int drive_enable_snapshot(QemuOpts *opts, void *opaque)
1079{
1080 if (NULL == qemu_opt_get(opts, "snapshot")) {
1081 qemu_opt_set(opts, "snapshot", "on");
1082 }
1083 return 0;
1084}
1085
Christian Borntraeger3c42ea62012-11-22 21:02:55 +01001086static void default_drive(int enable, int snapshot, BlockInterfaceType type,
1087 int index, const char *optstr)
Markus Armbruster4e5d9b52011-01-28 11:21:45 +01001088{
1089 QemuOpts *opts;
1090
Markus Armbruster4e5d9b52011-01-28 11:21:45 +01001091 if (!enable || drive_get_by_index(type, index)) {
1092 return;
1093 }
1094
1095 opts = drive_add(type, index, NULL, optstr);
1096 if (snapshot) {
1097 drive_enable_snapshot(opts, NULL);
1098 }
Christian Borntraeger2d0d2832012-11-20 15:30:34 +01001099 if (!drive_init(opts, type)) {
Markus Armbruster4e5d9b52011-01-28 11:21:45 +01001100 exit(1);
1101 }
1102}
1103
Jan Kiszka76e30d02009-07-02 00:19:02 +02001104void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque)
1105{
1106 boot_set_handler = func;
1107 boot_set_opaque = opaque;
1108}
1109
Markus Armbruster083b79c2013-06-14 13:15:04 +02001110int qemu_boot_set(const char *boot_order)
Jan Kiszka76e30d02009-07-02 00:19:02 +02001111{
1112 if (!boot_set_handler) {
1113 return -EINVAL;
1114 }
Markus Armbruster083b79c2013-06-14 13:15:04 +02001115 return boot_set_handler(boot_set_opaque, boot_order);
Jan Kiszka76e30d02009-07-02 00:19:02 +02001116}
1117
Markus Armbruster6ef47162013-06-14 13:15:01 +02001118static void validate_bootdevices(const char *devices)
Jan Kiszkaef3adf62009-07-02 00:19:02 +02001119{
1120 /* We just do some generic consistency checks */
1121 const char *p;
1122 int bitmap = 0;
1123
1124 for (p = devices; *p != '\0'; p++) {
1125 /* Allowed boot devices are:
1126 * a-b: floppy disk drives
1127 * c-f: IDE disk drives
Dong Xu Wang07f35072011-11-22 18:06:26 +08001128 * g-m: machine implementation dependent drives
Jan Kiszkaef3adf62009-07-02 00:19:02 +02001129 * n-p: network devices
1130 * It's up to each machine implementation to check if the given boot
1131 * devices match the actual hardware implementation and firmware
1132 * features.
1133 */
1134 if (*p < 'a' || *p > 'p') {
1135 fprintf(stderr, "Invalid boot device '%c'\n", *p);
1136 exit(1);
1137 }
1138 if (bitmap & (1 << (*p - 'a'))) {
1139 fprintf(stderr, "Boot device '%c' was given twice\n", *p);
1140 exit(1);
1141 }
1142 bitmap |= 1 << (*p - 'a');
1143 }
Jan Kiszkaef3adf62009-07-02 00:19:02 +02001144}
1145
Markus Armbruster083b79c2013-06-14 13:15:04 +02001146static void restore_boot_order(void *opaque)
Jan Kiszkae0f084b2009-07-02 00:19:02 +02001147{
Markus Armbruster083b79c2013-06-14 13:15:04 +02001148 char *normal_boot_order = opaque;
Alex Williamson37905d62010-04-30 15:21:11 -06001149 static int first = 1;
1150
1151 /* Restore boot order and remove ourselves after the first boot */
1152 if (first) {
1153 first = 0;
1154 return;
1155 }
Jan Kiszkae0f084b2009-07-02 00:19:02 +02001156
Markus Armbruster083b79c2013-06-14 13:15:04 +02001157 qemu_boot_set(normal_boot_order);
Jan Kiszkae0f084b2009-07-02 00:19:02 +02001158
Markus Armbruster083b79c2013-06-14 13:15:04 +02001159 qemu_unregister_reset(restore_boot_order, normal_boot_order);
1160 g_free(normal_boot_order);
Jan Kiszkae0f084b2009-07-02 00:19:02 +02001161}
1162
Gleb Natapov1ca4d092010-12-08 13:35:05 +02001163void add_boot_device_path(int32_t bootindex, DeviceState *dev,
1164 const char *suffix)
1165{
1166 FWBootEntry *node, *i;
1167
1168 if (bootindex < 0) {
1169 return;
1170 }
1171
1172 assert(dev != NULL || suffix != NULL);
1173
Anthony Liguori7267c092011-08-20 22:09:37 -05001174 node = g_malloc0(sizeof(FWBootEntry));
Gleb Natapov1ca4d092010-12-08 13:35:05 +02001175 node->bootindex = bootindex;
Dong Xu Wang7f303ad2013-05-09 15:53:49 +08001176 node->suffix = g_strdup(suffix);
Gleb Natapov1ca4d092010-12-08 13:35:05 +02001177 node->dev = dev;
1178
1179 QTAILQ_FOREACH(i, &fw_boot_order, link) {
1180 if (i->bootindex == bootindex) {
1181 fprintf(stderr, "Two devices with same boot index %d\n", bootindex);
1182 exit(1);
1183 } else if (i->bootindex < bootindex) {
1184 continue;
1185 }
1186 QTAILQ_INSERT_BEFORE(i, node, link);
1187 return;
1188 }
1189 QTAILQ_INSERT_TAIL(&fw_boot_order, node, link);
1190}
1191
Dominik Dingel7dc5af52013-04-26 02:12:49 +00001192DeviceState *get_boot_device(uint32_t position)
1193{
1194 uint32_t counter = 0;
1195 FWBootEntry *i = NULL;
1196 DeviceState *res = NULL;
1197
1198 if (!QTAILQ_EMPTY(&fw_boot_order)) {
1199 QTAILQ_FOREACH(i, &fw_boot_order, link) {
1200 if (counter == position) {
1201 res = i->dev;
1202 break;
1203 }
1204 counter++;
1205 }
1206 }
1207 return res;
1208}
1209
Gleb Natapov962630f2010-12-08 13:35:09 +02001210/*
1211 * This function returns null terminated string that consist of new line
Brad Hards71785ab2011-04-23 21:50:06 +10001212 * separated device paths.
Gleb Natapov962630f2010-12-08 13:35:09 +02001213 *
1214 * memory pointed by "size" is assigned total length of the array in bytes
1215 *
1216 */
Markus Armbruster0e7a7592013-01-16 14:50:29 +01001217char *get_boot_devices_list(size_t *size)
Gleb Natapov962630f2010-12-08 13:35:09 +02001218{
1219 FWBootEntry *i;
Markus Armbruster0e7a7592013-01-16 14:50:29 +01001220 size_t total = 0;
Gleb Natapov962630f2010-12-08 13:35:09 +02001221 char *list = NULL;
1222
1223 QTAILQ_FOREACH(i, &fw_boot_order, link) {
1224 char *devpath = NULL, *bootpath;
Markus Armbruster0e7a7592013-01-16 14:50:29 +01001225 size_t len;
Gleb Natapov962630f2010-12-08 13:35:09 +02001226
1227 if (i->dev) {
1228 devpath = qdev_get_fw_dev_path(i->dev);
1229 assert(devpath);
1230 }
1231
1232 if (i->suffix && devpath) {
Blue Swirl4fd37a92010-12-19 14:05:43 +00001233 size_t bootpathlen = strlen(devpath) + strlen(i->suffix) + 1;
1234
Anthony Liguori7267c092011-08-20 22:09:37 -05001235 bootpath = g_malloc(bootpathlen);
Blue Swirl4fd37a92010-12-19 14:05:43 +00001236 snprintf(bootpath, bootpathlen, "%s%s", devpath, i->suffix);
Anthony Liguori7267c092011-08-20 22:09:37 -05001237 g_free(devpath);
Gleb Natapov962630f2010-12-08 13:35:09 +02001238 } else if (devpath) {
1239 bootpath = devpath;
1240 } else {
Markus Armbruster1bf6ccd2011-11-08 10:58:00 +01001241 assert(i->suffix);
Anthony Liguori7267c092011-08-20 22:09:37 -05001242 bootpath = g_strdup(i->suffix);
Gleb Natapov962630f2010-12-08 13:35:09 +02001243 }
1244
1245 if (total) {
1246 list[total-1] = '\n';
1247 }
1248 len = strlen(bootpath) + 1;
Anthony Liguori7267c092011-08-20 22:09:37 -05001249 list = g_realloc(list, total + len);
Gleb Natapov962630f2010-12-08 13:35:09 +02001250 memcpy(&list[total], bootpath, len);
1251 total += len;
Anthony Liguori7267c092011-08-20 22:09:37 -05001252 g_free(bootpath);
Gleb Natapov962630f2010-12-08 13:35:09 +02001253 }
1254
1255 *size = total;
1256
Amos Kongc8a6ae82013-03-19 14:23:27 +08001257 if (boot_strict && *size > 0) {
1258 list[total-1] = '\n';
Amos Kong46905792013-03-20 18:16:34 +08001259 list = g_realloc(list, total + 5);
1260 memcpy(&list[total], "HALT", 5);
1261 *size = total + 5;
Amos Kongc8a6ae82013-03-19 14:23:27 +08001262 }
Gleb Natapov962630f2010-12-08 13:35:09 +02001263 return list;
1264}
1265
Eduardo Habkost845e5bf2013-02-04 16:27:51 -02001266static void numa_node_parse_cpus(int nodenr, const char *cpus)
1267{
1268 char *endptr;
1269 unsigned long long value, endvalue;
1270
Eduardo Habkostc881e202013-02-04 16:27:52 -02001271 /* Empty CPU range strings will be considered valid, they will simply
1272 * not set any bit in the CPU bitmap.
1273 */
1274 if (!*cpus) {
1275 return;
Eduardo Habkost845e5bf2013-02-04 16:27:51 -02001276 }
1277
Eduardo Habkostc881e202013-02-04 16:27:52 -02001278 if (parse_uint(cpus, &value, &endptr, 10) < 0) {
1279 goto error;
1280 }
1281 if (*endptr == '-') {
1282 if (parse_uint_full(endptr + 1, &endvalue, 10) < 0) {
1283 goto error;
1284 }
1285 } else if (*endptr == '\0') {
1286 endvalue = value;
1287 } else {
1288 goto error;
1289 }
1290
1291 if (endvalue >= MAX_CPUMASK_BITS) {
Eduardo Habkost845e5bf2013-02-04 16:27:51 -02001292 endvalue = MAX_CPUMASK_BITS - 1;
1293 fprintf(stderr,
Eduardo Habkostc881e202013-02-04 16:27:52 -02001294 "qemu: NUMA: A max of %d VCPUs are supported\n",
Eduardo Habkost845e5bf2013-02-04 16:27:51 -02001295 MAX_CPUMASK_BITS);
1296 }
1297
Eduardo Habkostc881e202013-02-04 16:27:52 -02001298 if (endvalue < value) {
1299 goto error;
1300 }
1301
Eduardo Habkost845e5bf2013-02-04 16:27:51 -02001302 bitmap_set(node_cpumask[nodenr], value, endvalue-value+1);
Eduardo Habkostc881e202013-02-04 16:27:52 -02001303 return;
1304
1305error:
1306 fprintf(stderr, "qemu: Invalid NUMA CPU range: %s\n", cpus);
1307 exit(1);
Eduardo Habkost845e5bf2013-02-04 16:27:51 -02001308}
1309
aliguori268a3622009-04-21 22:30:27 +00001310static void numa_add(const char *optarg)
1311{
1312 char option[128];
1313 char *endptr;
Eduardo Habkoste4ce85b2013-02-04 16:27:49 -02001314 unsigned long long nodenr;
aliguori268a3622009-04-21 22:30:27 +00001315
Eduardo Habkost8f302cb2013-02-04 16:27:46 -02001316 optarg = get_opt_name(option, 128, optarg, ',');
1317 if (*optarg == ',') {
1318 optarg++;
1319 }
aliguori268a3622009-04-21 22:30:27 +00001320 if (!strcmp(option, "node")) {
Eduardo Habkostca4c6d32013-02-04 16:27:48 -02001321
1322 if (nb_numa_nodes >= MAX_NODES) {
1323 fprintf(stderr, "qemu: too many NUMA nodes\n");
1324 exit(1);
1325 }
1326
aliguori268a3622009-04-21 22:30:27 +00001327 if (get_param_value(option, 128, "nodeid", optarg) == 0) {
1328 nodenr = nb_numa_nodes;
1329 } else {
Eduardo Habkost5f139962013-02-04 16:27:50 -02001330 if (parse_uint_full(option, &nodenr, 10) < 0) {
1331 fprintf(stderr, "qemu: Invalid NUMA nodeid: %s\n", option);
1332 exit(1);
1333 }
aliguori268a3622009-04-21 22:30:27 +00001334 }
1335
Eduardo Habkoste4ce85b2013-02-04 16:27:49 -02001336 if (nodenr >= MAX_NODES) {
1337 fprintf(stderr, "qemu: invalid NUMA nodeid: %llu\n", nodenr);
1338 exit(1);
1339 }
1340
aliguori268a3622009-04-21 22:30:27 +00001341 if (get_param_value(option, 128, "mem", optarg) == 0) {
1342 node_mem[nodenr] = 0;
1343 } else {
Jes Sorensen70b4f4b2011-01-05 11:41:02 +01001344 int64_t sval;
Markus Armbrusterc03417b2011-11-22 09:46:02 +01001345 sval = strtosz(option, &endptr);
1346 if (sval < 0 || *endptr) {
Jes Sorensen9f9b17a2010-10-21 17:15:46 +02001347 fprintf(stderr, "qemu: invalid numa mem size: %s\n", optarg);
1348 exit(1);
aliguori268a3622009-04-21 22:30:27 +00001349 }
Jes Sorensen9f9b17a2010-10-21 17:15:46 +02001350 node_mem[nodenr] = sval;
aliguori268a3622009-04-21 22:30:27 +00001351 }
Chegu Vinodee785fe2012-07-16 21:31:30 -07001352 if (get_param_value(option, 128, "cpus", optarg) != 0) {
Eduardo Habkost845e5bf2013-02-04 16:27:51 -02001353 numa_node_parse_cpus(nodenr, option);
aliguori268a3622009-04-21 22:30:27 +00001354 }
1355 nb_numa_nodes++;
Eduardo Habkost12e53a92013-02-04 16:27:47 -02001356 } else {
1357 fprintf(stderr, "Invalid -numa option: %s\n", option);
1358 exit(1);
aliguori268a3622009-04-21 22:30:27 +00001359 }
aliguori268a3622009-04-21 22:30:27 +00001360}
1361
Michael Tokarev12b7f572013-06-24 15:06:52 +04001362static QemuOptsList qemu_smp_opts = {
1363 .name = "smp-opts",
1364 .implied_opt_name = "cpus",
1365 .merge_lists = true,
1366 .head = QTAILQ_HEAD_INITIALIZER(qemu_smp_opts.head),
1367 .desc = {
1368 {
1369 .name = "cpus",
1370 .type = QEMU_OPT_NUMBER,
1371 }, {
1372 .name = "sockets",
1373 .type = QEMU_OPT_NUMBER,
1374 }, {
1375 .name = "cores",
1376 .type = QEMU_OPT_NUMBER,
1377 }, {
1378 .name = "threads",
1379 .type = QEMU_OPT_NUMBER,
1380 }, {
1381 .name = "maxcpus",
1382 .type = QEMU_OPT_NUMBER,
1383 },
1384 { /*End of list */ }
1385 },
1386};
1387
1388static void smp_parse(QemuOpts *opts)
Andre Przywaradc6b1c02009-08-19 15:42:40 +02001389{
Michael Tokarev12b7f572013-06-24 15:06:52 +04001390 if (opts) {
Andre Przywaradc6b1c02009-08-19 15:42:40 +02001391
Michael Tokarev12b7f572013-06-24 15:06:52 +04001392 unsigned cpus = qemu_opt_get_number(opts, "cpus", 0);
1393 unsigned sockets = qemu_opt_get_number(opts, "sockets", 0);
1394 unsigned cores = qemu_opt_get_number(opts, "cores", 0);
1395 unsigned threads = qemu_opt_get_number(opts, "threads", 0);
Andre Przywaradc6b1c02009-08-19 15:42:40 +02001396
Michael Tokarev12b7f572013-06-24 15:06:52 +04001397 /* compute missing values, prefer sockets over cores over threads */
1398 if (cpus == 0 || sockets == 0) {
1399 sockets = sockets > 0 ? sockets : 1;
1400 cores = cores > 0 ? cores : 1;
Andre Przywaradc6b1c02009-08-19 15:42:40 +02001401 threads = threads > 0 ? threads : 1;
Michael Tokarev12b7f572013-06-24 15:06:52 +04001402 if (cpus == 0) {
1403 cpus = cores * threads * sockets;
1404 }
Andre Przywaradc6b1c02009-08-19 15:42:40 +02001405 } else {
Michael Tokarev12b7f572013-06-24 15:06:52 +04001406 if (cores == 0) {
1407 threads = threads > 0 ? threads : 1;
1408 cores = cpus / (sockets * threads);
1409 } else {
1410 threads = cpus / (cores * sockets);
1411 }
Andre Przywaradc6b1c02009-08-19 15:42:40 +02001412 }
Michael Tokarev12b7f572013-06-24 15:06:52 +04001413
1414 max_cpus = qemu_opt_get_number(opts, "maxcpus", 0);
1415
1416 smp_cpus = cpus;
1417 smp_cores = cores > 0 ? cores : 1;
1418 smp_threads = threads > 0 ? threads : 1;
1419
Andre Przywaradc6b1c02009-08-19 15:42:40 +02001420 }
Michael Tokarev12b7f572013-06-24 15:06:52 +04001421
1422 if (max_cpus == 0) {
Andre Przywaradc6b1c02009-08-19 15:42:40 +02001423 max_cpus = smp_cpus;
Michael Tokarev12b7f572013-06-24 15:06:52 +04001424 }
1425
1426 if (max_cpus > 255) {
1427 fprintf(stderr, "Unsupported number of maxcpus\n");
1428 exit(1);
1429 }
1430 if (max_cpus < smp_cpus) {
1431 fprintf(stderr, "maxcpus must be equal to or greater than smp\n");
1432 exit(1);
1433 }
1434
Andre Przywaradc6b1c02009-08-19 15:42:40 +02001435}
1436
Satoru Moriya888a6bc2013-04-19 16:42:06 +02001437static void configure_realtime(QemuOpts *opts)
1438{
1439 bool enable_mlock;
1440
1441 enable_mlock = qemu_opt_get_bool(opts, "mlock", true);
1442
1443 if (enable_mlock) {
1444 if (os_mlock() < 0) {
1445 fprintf(stderr, "qemu: locking memory failed\n");
1446 exit(1);
1447 }
1448 }
1449}
1450
Seiji Aguchi5e2ac512013-07-03 23:02:46 -04001451
1452static void configure_msg(QemuOpts *opts)
1453{
1454 enable_timestamp_msg = qemu_opt_get_bool(opts, "timestamp", true);
1455}
1456
bellard330d0412003-07-26 18:11:40 +00001457/***********************************************************/
bellarda594cfb2005-11-06 16:13:29 +00001458/* USB devices */
1459
Markus Armbrusterfb080002010-05-28 15:38:44 +02001460static int usb_device_add(const char *devname)
bellarda594cfb2005-11-06 16:13:29 +00001461{
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001462 USBDevice *dev = NULL;
Miroslav Rezanina615fe4d2013-09-03 11:23:09 +02001463#ifndef CONFIG_LINUX
1464 const char *p;
1465#endif
bellarda594cfb2005-11-06 16:13:29 +00001466
zhlcindy@gmail.com094b2872012-09-02 19:25:28 +00001467 if (!usb_enabled(false)) {
bellarda594cfb2005-11-06 16:13:29 +00001468 return -1;
zhlcindy@gmail.com094b2872012-09-02 19:25:28 +00001469 }
bellarda594cfb2005-11-06 16:13:29 +00001470
Gerd Hoffmann0958b4c2009-10-26 15:56:45 +01001471 /* drivers with .usbdevice_name entry in USBDeviceInfo */
1472 dev = usbdevice_create(devname);
1473 if (dev)
1474 goto done;
1475
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001476 /* the other ones */
Gerd Hoffmanne447fc62011-06-01 14:41:59 +02001477#ifndef CONFIG_LINUX
1478 /* only the linux version is qdev-ified, usb-bsd still needs this */
bellarda594cfb2005-11-06 16:13:29 +00001479 if (strstart(devname, "host:", &p)) {
Jan Kiszka37417152012-02-27 15:18:47 +01001480 dev = usb_host_device_open(usb_bus_find(-1), p);
bellarda594cfb2005-11-06 16:13:29 +00001481 }
Miroslav Rezanina615fe4d2013-09-03 11:23:09 +02001482#endif
pbrook0d92ed32006-05-21 16:30:15 +00001483 if (!dev)
1484 return -1;
1485
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001486done:
bellarda594cfb2005-11-06 16:13:29 +00001487 return 0;
1488}
1489
aliguori1f3870a2008-08-21 19:27:48 +00001490static int usb_device_del(const char *devname)
1491{
1492 int bus_num, addr;
1493 const char *p;
1494
Gerd Hoffmann1a3973b2012-11-30 13:02:47 +01001495 if (strstart(devname, "host:", &p)) {
1496 return -1;
1497 }
aliguori5d0c5752008-09-14 01:07:41 +00001498
zhlcindy@gmail.com094b2872012-09-02 19:25:28 +00001499 if (!usb_enabled(false)) {
aliguori1f3870a2008-08-21 19:27:48 +00001500 return -1;
zhlcindy@gmail.com094b2872012-09-02 19:25:28 +00001501 }
aliguori1f3870a2008-08-21 19:27:48 +00001502
1503 p = strchr(devname, '.');
1504 if (!p)
1505 return -1;
1506 bus_num = strtoul(devname, NULL, 0);
1507 addr = strtoul(p + 1, NULL, 0);
1508
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001509 return usb_device_delete_addr(bus_num, addr);
aliguori1f3870a2008-08-21 19:27:48 +00001510}
1511
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02001512static int usb_parse(const char *cmdline)
1513{
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001514 int r;
Markus Armbrusterfb080002010-05-28 15:38:44 +02001515 r = usb_device_add(cmdline);
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001516 if (r < 0) {
1517 fprintf(stderr, "qemu: could not add USB device '%s'\n", cmdline);
1518 }
1519 return r;
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02001520}
1521
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001522void do_usb_add(Monitor *mon, const QDict *qdict)
bellarda594cfb2005-11-06 16:13:29 +00001523{
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001524 const char *devname = qdict_get_str(qdict, "devname");
Markus Armbrusterfb080002010-05-28 15:38:44 +02001525 if (usb_device_add(devname) < 0) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01001526 error_report("could not add USB device '%s'", devname);
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001527 }
bellarda594cfb2005-11-06 16:13:29 +00001528}
1529
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001530void do_usb_del(Monitor *mon, const QDict *qdict)
bellarda594cfb2005-11-06 16:13:29 +00001531{
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001532 const char *devname = qdict_get_str(qdict, "devname");
1533 if (usb_device_del(devname) < 0) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01001534 error_report("could not delete USB device '%s'", devname);
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001535 }
bellarda594cfb2005-11-06 16:13:29 +00001536}
1537
bellardf7cce892004-12-08 22:21:25 +00001538/***********************************************************/
balrog201a51f2007-04-30 00:51:09 +00001539/* PCMCIA/Cardbus */
1540
1541static struct pcmcia_socket_entry_s {
Paul Brookbc24a222009-05-10 01:44:56 +01001542 PCMCIASocket *socket;
balrog201a51f2007-04-30 00:51:09 +00001543 struct pcmcia_socket_entry_s *next;
1544} *pcmcia_sockets = 0;
1545
Paul Brookbc24a222009-05-10 01:44:56 +01001546void pcmcia_socket_register(PCMCIASocket *socket)
balrog201a51f2007-04-30 00:51:09 +00001547{
1548 struct pcmcia_socket_entry_s *entry;
1549
Anthony Liguori7267c092011-08-20 22:09:37 -05001550 entry = g_malloc(sizeof(struct pcmcia_socket_entry_s));
balrog201a51f2007-04-30 00:51:09 +00001551 entry->socket = socket;
1552 entry->next = pcmcia_sockets;
1553 pcmcia_sockets = entry;
1554}
1555
Paul Brookbc24a222009-05-10 01:44:56 +01001556void pcmcia_socket_unregister(PCMCIASocket *socket)
balrog201a51f2007-04-30 00:51:09 +00001557{
1558 struct pcmcia_socket_entry_s *entry, **ptr;
1559
1560 ptr = &pcmcia_sockets;
1561 for (entry = *ptr; entry; ptr = &entry->next, entry = *ptr)
1562 if (entry->socket == socket) {
1563 *ptr = entry->next;
Anthony Liguori7267c092011-08-20 22:09:37 -05001564 g_free(entry);
balrog201a51f2007-04-30 00:51:09 +00001565 }
1566}
1567
Wenchao Xia84f2d0e2013-01-14 14:06:25 +08001568void pcmcia_info(Monitor *mon, const QDict *qdict)
balrog201a51f2007-04-30 00:51:09 +00001569{
1570 struct pcmcia_socket_entry_s *iter;
aliguori376253e2009-03-05 23:01:23 +00001571
balrog201a51f2007-04-30 00:51:09 +00001572 if (!pcmcia_sockets)
aliguori376253e2009-03-05 23:01:23 +00001573 monitor_printf(mon, "No PCMCIA sockets\n");
balrog201a51f2007-04-30 00:51:09 +00001574
1575 for (iter = pcmcia_sockets; iter; iter = iter->next)
aliguori376253e2009-03-05 23:01:23 +00001576 monitor_printf(mon, "%s: %s\n", iter->socket->slot_string,
1577 iter->socket->attached ? iter->socket->card_string :
1578 "Empty");
balrog201a51f2007-04-30 00:51:09 +00001579}
1580
1581/***********************************************************/
bellardcc1daa42005-06-05 14:49:17 +00001582/* machine registration */
1583
blueswir1bdaf78e2008-10-04 07:24:27 +00001584static QEMUMachine *first_machine = NULL;
aliguori6f338c32009-02-11 15:21:54 +00001585QEMUMachine *current_machine = NULL;
bellardcc1daa42005-06-05 14:49:17 +00001586
1587int qemu_register_machine(QEMUMachine *m)
1588{
1589 QEMUMachine **pm;
1590 pm = &first_machine;
1591 while (*pm != NULL)
1592 pm = &(*pm)->next;
1593 m->next = NULL;
1594 *pm = m;
1595 return 0;
1596}
1597
pbrook9596ebb2007-11-18 01:44:38 +00001598static QEMUMachine *find_machine(const char *name)
bellardcc1daa42005-06-05 14:49:17 +00001599{
1600 QEMUMachine *m;
1601
1602 for(m = first_machine; m != NULL; m = m->next) {
1603 if (!strcmp(m->name, name))
1604 return m;
Mark McLoughlin3f6599e2009-07-22 10:02:50 +01001605 if (m->alias && !strcmp(m->alias, name))
1606 return m;
bellardcc1daa42005-06-05 14:49:17 +00001607 }
1608 return NULL;
1609}
1610
Jordan Justen2c8cffa2012-02-21 23:18:50 -08001611QEMUMachine *find_default_machine(void)
Anthony Liguori0c257432009-05-21 20:41:01 -05001612{
1613 QEMUMachine *m;
1614
1615 for(m = first_machine; m != NULL; m = m->next) {
1616 if (m->is_default) {
1617 return m;
1618 }
1619 }
1620 return NULL;
1621}
1622
Anthony Liguori01d3c802012-08-10 11:04:11 -05001623MachineInfoList *qmp_query_machines(Error **errp)
1624{
1625 MachineInfoList *mach_list = NULL;
1626 QEMUMachine *m;
1627
1628 for (m = first_machine; m; m = m->next) {
1629 MachineInfoList *entry;
1630 MachineInfo *info;
1631
1632 info = g_malloc0(sizeof(*info));
1633 if (m->is_default) {
1634 info->has_is_default = true;
1635 info->is_default = true;
1636 }
1637
1638 if (m->alias) {
1639 info->has_alias = true;
1640 info->alias = g_strdup(m->alias);
1641 }
1642
1643 info->name = g_strdup(m->name);
Michal Novotnyc72e7682013-04-08 18:21:02 +02001644 info->cpu_max = !m->max_cpus ? 1 : m->max_cpus;
Anthony Liguori01d3c802012-08-10 11:04:11 -05001645
1646 entry = g_malloc0(sizeof(*entry));
1647 entry->value = info;
1648 entry->next = mach_list;
1649 mach_list = entry;
1650 }
1651
1652 return mach_list;
1653}
1654
bellardcc1daa42005-06-05 14:49:17 +00001655/***********************************************************/
bellard8a7ddc32004-03-31 19:00:16 +00001656/* main execution loop */
1657
bellard0bd48852005-11-11 00:00:47 +00001658struct vm_change_state_entry {
1659 VMChangeStateHandler *cb;
1660 void *opaque;
Blue Swirl72cf2d42009-09-12 07:36:22 +00001661 QLIST_ENTRY (vm_change_state_entry) entries;
bellard0bd48852005-11-11 00:00:47 +00001662};
1663
Blue Swirl72cf2d42009-09-12 07:36:22 +00001664static QLIST_HEAD(vm_change_state_head, vm_change_state_entry) vm_change_state_head;
bellard0bd48852005-11-11 00:00:47 +00001665
1666VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
1667 void *opaque)
1668{
1669 VMChangeStateEntry *e;
1670
Anthony Liguori7267c092011-08-20 22:09:37 -05001671 e = g_malloc0(sizeof (*e));
bellard0bd48852005-11-11 00:00:47 +00001672
1673 e->cb = cb;
1674 e->opaque = opaque;
Blue Swirl72cf2d42009-09-12 07:36:22 +00001675 QLIST_INSERT_HEAD(&vm_change_state_head, e, entries);
bellard0bd48852005-11-11 00:00:47 +00001676 return e;
1677}
1678
1679void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
1680{
Blue Swirl72cf2d42009-09-12 07:36:22 +00001681 QLIST_REMOVE (e, entries);
Anthony Liguori7267c092011-08-20 22:09:37 -05001682 g_free (e);
bellard0bd48852005-11-11 00:00:47 +00001683}
1684
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -03001685void vm_state_notify(int running, RunState state)
bellard0bd48852005-11-11 00:00:47 +00001686{
1687 VMChangeStateEntry *e;
1688
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -03001689 trace_vm_state_notify(running, state);
Stefan Hajnoczi94b0b5f2010-11-16 12:20:25 +00001690
bellard0bd48852005-11-11 00:00:47 +00001691 for (e = vm_change_state_head.lh_first; e; e = e->entries.le_next) {
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -03001692 e->cb(e->opaque, running, state);
bellard0bd48852005-11-11 00:00:47 +00001693 }
1694}
1695
bellard8a7ddc32004-03-31 19:00:16 +00001696void vm_start(void)
1697{
Luiz Capitulino13548692011-07-29 15:36:43 -03001698 if (!runstate_is_running()) {
bellard8a7ddc32004-03-31 19:00:16 +00001699 cpu_enable_ticks();
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001700 runstate_set(RUN_STATE_RUNNING);
1701 vm_state_notify(1, RUN_STATE_RUNNING);
aliguorid6dc3d42009-04-24 18:04:07 +00001702 resume_all_vcpus();
Luiz Capitulino6ed2c482010-04-27 20:35:59 -03001703 monitor_protocol_event(QEVENT_RESUME, NULL);
bellard8a7ddc32004-03-31 19:00:16 +00001704 }
1705}
1706
bellardbb0c6722004-06-20 12:37:32 +00001707/* reset/shutdown handler */
1708
1709typedef struct QEMUResetEntry {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001710 QTAILQ_ENTRY(QEMUResetEntry) entry;
bellardbb0c6722004-06-20 12:37:32 +00001711 QEMUResetHandler *func;
1712 void *opaque;
bellardbb0c6722004-06-20 12:37:32 +00001713} QEMUResetEntry;
1714
Blue Swirl72cf2d42009-09-12 07:36:22 +00001715static QTAILQ_HEAD(reset_handlers, QEMUResetEntry) reset_handlers =
1716 QTAILQ_HEAD_INITIALIZER(reset_handlers);
bellardbb0c6722004-06-20 12:37:32 +00001717static int reset_requested;
Gleb Natapovf64622c2011-03-15 13:56:04 +02001718static int shutdown_requested, shutdown_signal = -1;
1719static pid_t shutdown_pid;
bellard34751872005-07-02 14:31:34 +00001720static int powerdown_requested;
Jan Kiszka8cf71712011-02-07 12:19:16 +01001721static int debug_requested;
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001722static int suspend_requested;
Liu, Jinsong4bc78a82013-09-25 16:38:29 +00001723static WakeupReason wakeup_reason;
Igor Mammedova9552c82012-09-05 23:06:21 +02001724static NotifierList powerdown_notifiers =
1725 NOTIFIER_LIST_INITIALIZER(powerdown_notifiers);
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001726static NotifierList suspend_notifiers =
1727 NOTIFIER_LIST_INITIALIZER(suspend_notifiers);
1728static NotifierList wakeup_notifiers =
1729 NOTIFIER_LIST_INITIALIZER(wakeup_notifiers);
Liu, Jinsong4bc78a82013-09-25 16:38:29 +00001730static uint32_t wakeup_reason_mask = ~(1 << QEMU_WAKEUP_REASON_NONE);
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001731static RunState vmstop_requested = RUN_STATE_MAX;
bellardbb0c6722004-06-20 12:37:32 +00001732
Anthony PERARD1291eb32010-07-22 15:52:48 +01001733int qemu_shutdown_requested_get(void)
1734{
1735 return shutdown_requested;
1736}
1737
1738int qemu_reset_requested_get(void)
1739{
1740 return reset_requested;
1741}
1742
Blue Swirl4fdcac02012-10-28 11:04:47 +00001743static int qemu_shutdown_requested(void)
aurel32cf7a2fe2008-03-18 06:53:05 +00001744{
1745 int r = shutdown_requested;
1746 shutdown_requested = 0;
1747 return r;
1748}
1749
Blue Swirl4fdcac02012-10-28 11:04:47 +00001750static void qemu_kill_report(void)
Gleb Natapovf64622c2011-03-15 13:56:04 +02001751{
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +02001752 if (!qtest_enabled() && shutdown_signal != -1) {
Peter Maydellf1d3fb02011-03-30 22:03:38 +01001753 fprintf(stderr, "qemu: terminating on signal %d", shutdown_signal);
1754 if (shutdown_pid == 0) {
1755 /* This happens for eg ^C at the terminal, so it's worth
1756 * avoiding printing an odd message in that case.
1757 */
1758 fputc('\n', stderr);
1759 } else {
Andreas Färber953ffe02011-06-02 19:58:06 +02001760 fprintf(stderr, " from pid " FMT_pid "\n", shutdown_pid);
Peter Maydellf1d3fb02011-03-30 22:03:38 +01001761 }
Gleb Natapovf64622c2011-03-15 13:56:04 +02001762 shutdown_signal = -1;
1763 }
1764}
1765
Blue Swirl4fdcac02012-10-28 11:04:47 +00001766static int qemu_reset_requested(void)
aurel32cf7a2fe2008-03-18 06:53:05 +00001767{
1768 int r = reset_requested;
1769 reset_requested = 0;
1770 return r;
1771}
1772
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001773static int qemu_suspend_requested(void)
1774{
1775 int r = suspend_requested;
1776 suspend_requested = 0;
1777 return r;
1778}
1779
Liu, Jinsong4bc78a82013-09-25 16:38:29 +00001780static WakeupReason qemu_wakeup_requested(void)
Luiz Capitulino14058192012-08-08 17:29:17 -03001781{
Liu, Jinsong4bc78a82013-09-25 16:38:29 +00001782 return wakeup_reason;
Luiz Capitulino14058192012-08-08 17:29:17 -03001783}
1784
Blue Swirl4fdcac02012-10-28 11:04:47 +00001785static int qemu_powerdown_requested(void)
aurel32cf7a2fe2008-03-18 06:53:05 +00001786{
1787 int r = powerdown_requested;
1788 powerdown_requested = 0;
1789 return r;
1790}
1791
aliguorie5689022009-04-24 18:03:54 +00001792static int qemu_debug_requested(void)
1793{
1794 int r = debug_requested;
1795 debug_requested = 0;
1796 return r;
1797}
1798
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001799/* We use RUN_STATE_MAX but any invalid value will do */
Luiz Capitulino0d45b702011-09-30 14:27:11 -03001800static bool qemu_vmstop_requested(RunState *r)
aliguori6e29f5d2009-04-24 18:04:02 +00001801{
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001802 if (vmstop_requested < RUN_STATE_MAX) {
Luiz Capitulino0d45b702011-09-30 14:27:11 -03001803 *r = vmstop_requested;
Luiz Capitulino0461d5a2011-09-30 14:45:27 -03001804 vmstop_requested = RUN_STATE_MAX;
Luiz Capitulino0d45b702011-09-30 14:27:11 -03001805 return true;
1806 }
1807
1808 return false;
aliguori6e29f5d2009-04-24 18:04:02 +00001809}
1810
Jan Kiszkaa08d4362009-06-27 09:25:07 +02001811void qemu_register_reset(QEMUResetHandler *func, void *opaque)
bellardbb0c6722004-06-20 12:37:32 +00001812{
Anthony Liguori7267c092011-08-20 22:09:37 -05001813 QEMUResetEntry *re = g_malloc0(sizeof(QEMUResetEntry));
bellardbb0c6722004-06-20 12:37:32 +00001814
bellardbb0c6722004-06-20 12:37:32 +00001815 re->func = func;
1816 re->opaque = opaque;
Blue Swirl72cf2d42009-09-12 07:36:22 +00001817 QTAILQ_INSERT_TAIL(&reset_handlers, re, entry);
bellardbb0c6722004-06-20 12:37:32 +00001818}
1819
Jan Kiszkadda9b292009-07-02 00:19:02 +02001820void qemu_unregister_reset(QEMUResetHandler *func, void *opaque)
bellardbb0c6722004-06-20 12:37:32 +00001821{
1822 QEMUResetEntry *re;
1823
Blue Swirl72cf2d42009-09-12 07:36:22 +00001824 QTAILQ_FOREACH(re, &reset_handlers, entry) {
Jan Kiszkadda9b292009-07-02 00:19:02 +02001825 if (re->func == func && re->opaque == opaque) {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001826 QTAILQ_REMOVE(&reset_handlers, re, entry);
Anthony Liguori7267c092011-08-20 22:09:37 -05001827 g_free(re);
Jan Kiszkadda9b292009-07-02 00:19:02 +02001828 return;
1829 }
1830 }
1831}
1832
David Gibsonbe522022012-08-07 16:41:51 +10001833void qemu_devices_reset(void)
Jan Kiszkadda9b292009-07-02 00:19:02 +02001834{
1835 QEMUResetEntry *re, *nre;
1836
1837 /* reset all devices */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001838 QTAILQ_FOREACH_SAFE(re, &reset_handlers, entry, nre) {
bellardbb0c6722004-06-20 12:37:32 +00001839 re->func(re->opaque);
1840 }
David Gibsonbe522022012-08-07 16:41:51 +10001841}
1842
1843void qemu_system_reset(bool report)
1844{
1845 if (current_machine && current_machine->reset) {
1846 current_machine->reset();
1847 } else {
1848 qemu_devices_reset();
1849 }
Jan Kiszkae063eb12011-06-14 18:29:43 +02001850 if (report) {
1851 monitor_protocol_event(QEVENT_RESET, NULL);
1852 }
Jan Kiszkaea375f92010-03-01 19:10:30 +01001853 cpu_synchronize_all_post_reset();
bellardbb0c6722004-06-20 12:37:32 +00001854}
1855
1856void qemu_system_reset_request(void)
1857{
bellardd1beab82006-10-02 19:44:22 +00001858 if (no_reboot) {
1859 shutdown_requested = 1;
1860 } else {
1861 reset_requested = 1;
1862 }
Jan Kiszkab4a3d962011-02-01 22:15:43 +01001863 cpu_stop_current();
aliguorid9f75a42009-04-24 18:03:11 +00001864 qemu_notify_event();
bellardbb0c6722004-06-20 12:37:32 +00001865}
1866
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001867static void qemu_system_suspend(void)
1868{
1869 pause_all_vcpus();
1870 notifier_list_notify(&suspend_notifiers, NULL);
Luiz Capitulinoad02b962012-04-27 13:33:36 -03001871 runstate_set(RUN_STATE_SUSPENDED);
Gerd Hoffmann53370b72012-02-23 13:45:26 +01001872 monitor_protocol_event(QEVENT_SUSPEND, NULL);
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001873}
1874
1875void qemu_system_suspend_request(void)
1876{
Luiz Capitulino9abc62f2012-04-27 14:31:12 -03001877 if (runstate_check(RUN_STATE_SUSPENDED)) {
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001878 return;
1879 }
1880 suspend_requested = 1;
1881 cpu_stop_current();
1882 qemu_notify_event();
1883}
1884
1885void qemu_register_suspend_notifier(Notifier *notifier)
1886{
1887 notifier_list_add(&suspend_notifiers, notifier);
1888}
1889
1890void qemu_system_wakeup_request(WakeupReason reason)
1891{
Luiz Capitulino9abc62f2012-04-27 14:31:12 -03001892 if (!runstate_check(RUN_STATE_SUSPENDED)) {
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001893 return;
1894 }
1895 if (!(wakeup_reason_mask & (1 << reason))) {
1896 return;
1897 }
Luiz Capitulinoad02b962012-04-27 13:33:36 -03001898 runstate_set(RUN_STATE_RUNNING);
Liu, Jinsong4bc78a82013-09-25 16:38:29 +00001899 wakeup_reason = reason;
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001900 qemu_notify_event();
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001901}
1902
1903void qemu_system_wakeup_enable(WakeupReason reason, bool enabled)
1904{
1905 if (enabled) {
1906 wakeup_reason_mask |= (1 << reason);
1907 } else {
1908 wakeup_reason_mask &= ~(1 << reason);
1909 }
1910}
1911
1912void qemu_register_wakeup_notifier(Notifier *notifier)
1913{
1914 notifier_list_add(&wakeup_notifiers, notifier);
1915}
1916
Gleb Natapovf64622c2011-03-15 13:56:04 +02001917void qemu_system_killed(int signal, pid_t pid)
1918{
1919 shutdown_signal = signal;
1920 shutdown_pid = pid;
Kevin Wolfd9389b92011-09-14 15:38:40 +02001921 no_shutdown = 0;
Gleb Natapovf64622c2011-03-15 13:56:04 +02001922 qemu_system_shutdown_request();
1923}
1924
bellardbb0c6722004-06-20 12:37:32 +00001925void qemu_system_shutdown_request(void)
1926{
1927 shutdown_requested = 1;
aliguorid9f75a42009-04-24 18:03:11 +00001928 qemu_notify_event();
bellardbb0c6722004-06-20 12:37:32 +00001929}
1930
Igor Mammedov013c2f12012-09-05 23:06:25 +02001931static void qemu_system_powerdown(void)
1932{
1933 monitor_protocol_event(QEVENT_POWERDOWN, NULL);
1934 notifier_list_notify(&powerdown_notifiers, NULL);
1935}
1936
bellard34751872005-07-02 14:31:34 +00001937void qemu_system_powerdown_request(void)
1938{
1939 powerdown_requested = 1;
aliguorid9f75a42009-04-24 18:03:11 +00001940 qemu_notify_event();
1941}
1942
Igor Mammedova9552c82012-09-05 23:06:21 +02001943void qemu_register_powerdown_notifier(Notifier *notifier)
1944{
1945 notifier_list_add(&powerdown_notifiers, notifier);
1946}
1947
Jan Kiszka8cf71712011-02-07 12:19:16 +01001948void qemu_system_debug_request(void)
1949{
1950 debug_requested = 1;
Jan Kiszka83f338f2011-02-07 12:19:17 +01001951 qemu_notify_event();
Jan Kiszka8cf71712011-02-07 12:19:16 +01001952}
1953
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -03001954void qemu_system_vmstop_request(RunState state)
Jan Kiszka8cf71712011-02-07 12:19:16 +01001955{
Luiz Capitulino1dfb4dd2011-07-29 14:26:33 -03001956 vmstop_requested = state;
Jan Kiszka8cf71712011-02-07 12:19:16 +01001957 qemu_notify_event();
1958}
1959
Paolo Bonzini99435902011-09-12 14:03:13 +02001960static bool main_loop_should_exit(void)
1961{
1962 RunState r;
1963 if (qemu_debug_requested()) {
1964 vm_stop(RUN_STATE_DEBUG);
1965 }
Gerd Hoffmann95b363b2012-02-23 13:45:19 +01001966 if (qemu_suspend_requested()) {
1967 qemu_system_suspend();
1968 }
Paolo Bonzini99435902011-09-12 14:03:13 +02001969 if (qemu_shutdown_requested()) {
1970 qemu_kill_report();
1971 monitor_protocol_event(QEVENT_SHUTDOWN, NULL);
1972 if (no_shutdown) {
1973 vm_stop(RUN_STATE_SHUTDOWN);
1974 } else {
1975 return true;
1976 }
1977 }
1978 if (qemu_reset_requested()) {
1979 pause_all_vcpus();
1980 cpu_synchronize_all_states();
1981 qemu_system_reset(VMRESET_REPORT);
1982 resume_all_vcpus();
Hu Taoede085b2013-04-26 11:24:40 +08001983 if (runstate_needs_reset()) {
Paolo Bonzini99435902011-09-12 14:03:13 +02001984 runstate_set(RUN_STATE_PAUSED);
1985 }
1986 }
Luiz Capitulino14058192012-08-08 17:29:17 -03001987 if (qemu_wakeup_requested()) {
1988 pause_all_vcpus();
1989 cpu_synchronize_all_states();
1990 qemu_system_reset(VMRESET_SILENT);
Liu, Jinsong4bc78a82013-09-25 16:38:29 +00001991 notifier_list_notify(&wakeup_notifiers, &wakeup_reason);
1992 wakeup_reason = QEMU_WAKEUP_REASON_NONE;
Luiz Capitulino14058192012-08-08 17:29:17 -03001993 resume_all_vcpus();
Luiz Capitulino17c86602012-08-09 11:27:30 -03001994 monitor_protocol_event(QEVENT_WAKEUP, NULL);
Luiz Capitulino14058192012-08-08 17:29:17 -03001995 }
Paolo Bonzini99435902011-09-12 14:03:13 +02001996 if (qemu_powerdown_requested()) {
Igor Mammedov013c2f12012-09-05 23:06:25 +02001997 qemu_system_powerdown();
Paolo Bonzini99435902011-09-12 14:03:13 +02001998 }
1999 if (qemu_vmstop_requested(&r)) {
2000 vm_stop(r);
2001 }
2002 return false;
2003}
2004
aliguori43b96852009-04-24 18:03:33 +00002005static void main_loop(void)
2006{
Jan Kiszkac9f711a2011-08-22 17:46:02 +02002007 bool nonblocking;
Paolo Bonzini99435902011-09-12 14:03:13 +02002008 int last_io = 0;
Jan Kiszka8e1b90e2011-02-01 22:15:46 +01002009#ifdef CONFIG_PROFILER
2010 int64_t ti;
2011#endif
Paolo Bonzini99435902011-09-12 14:03:13 +02002012 do {
Stefano Stabellinia7d42072013-06-03 15:38:43 +00002013 nonblocking = !kvm_enabled() && !xen_enabled() && last_io > 0;
aliguori43b96852009-04-24 18:03:33 +00002014#ifdef CONFIG_PROFILER
Jan Kiszka46481d32011-02-01 22:15:47 +01002015 ti = profile_getclock();
aliguori43b96852009-04-24 18:03:33 +00002016#endif
Jan Kiszkac9f711a2011-08-22 17:46:02 +02002017 last_io = main_loop_wait(nonblocking);
aliguori43b96852009-04-24 18:03:33 +00002018#ifdef CONFIG_PROFILER
Jan Kiszka46481d32011-02-01 22:15:47 +01002019 dev_time += profile_getclock() - ti;
aliguori43b96852009-04-24 18:03:33 +00002020#endif
Paolo Bonzini99435902011-09-12 14:03:13 +02002021 } while (!main_loop_should_exit());
bellardb4608c02003-06-27 17:34:32 +00002022}
2023
pbrook9bd7e6d2009-04-07 22:58:45 +00002024static void version(void)
2025{
Thomas Monjalonf75ca1a2010-04-28 14:42:01 +02002026 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n");
pbrook9bd7e6d2009-04-07 22:58:45 +00002027}
2028
ths15f82202007-06-29 23:26:08 +00002029static void help(int exitcode)
bellard0824d6f2003-06-24 13:42:40 +00002030{
Michael Ellermana3adb7a2011-12-19 17:19:31 +11002031 version();
2032 printf("usage: %s [options] [disk_image]\n\n"
2033 "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
2034 error_get_progname());
2035
Michael Ellerman77bd1112011-12-19 17:19:30 +11002036#define QEMU_OPTIONS_GENERATE_HELP
2037#include "qemu-options-wrapper.h"
Michael Ellermana3adb7a2011-12-19 17:19:31 +11002038
2039 printf("\nDuring emulation, the following keys are useful:\n"
malc3f020d72010-02-08 12:04:56 +03002040 "ctrl-alt-f toggle full screen\n"
2041 "ctrl-alt-n switch to virtual console 'n'\n"
2042 "ctrl-alt toggle mouse and keyboard grab\n"
2043 "\n"
Michael Ellermana3adb7a2011-12-19 17:19:31 +11002044 "When using -nographic, press 'ctrl-a h' to get some help.\n");
2045
ths15f82202007-06-29 23:26:08 +00002046 exit(exitcode);
bellard0824d6f2003-06-24 13:42:40 +00002047}
2048
bellardcd6f1162004-05-13 22:02:20 +00002049#define HAS_ARG 0x0001
2050
bellardcd6f1162004-05-13 22:02:20 +00002051typedef struct QEMUOption {
2052 const char *name;
2053 int flags;
2054 int index;
Blue Swirlad960902010-03-29 19:23:52 +00002055 uint32_t arch_mask;
bellardcd6f1162004-05-13 22:02:20 +00002056} QEMUOption;
2057
blueswir1dbed7e42008-10-01 19:38:09 +00002058static const QEMUOption qemu_options[] = {
Blue Swirlad960902010-03-29 19:23:52 +00002059 { "h", 0, QEMU_OPTION_h, QEMU_ARCH_ALL },
Michael Ellerman77bd1112011-12-19 17:19:30 +11002060#define QEMU_OPTIONS_GENERATE_OPTIONS
2061#include "qemu-options-wrapper.h"
bellardcd6f1162004-05-13 22:02:20 +00002062 { NULL },
bellardfc01f7e2003-06-30 10:03:06 +00002063};
Blue Swirla369da52011-09-27 19:15:42 +00002064
2065static bool vga_available(void)
2066{
Aurelien Jarno36b7f272012-09-08 16:01:20 +02002067 return object_class_by_name("VGA") || object_class_by_name("isa-vga");
Blue Swirla369da52011-09-27 19:15:42 +00002068}
2069
2070static bool cirrus_vga_available(void)
2071{
Aurelien Jarno36b7f272012-09-08 16:01:20 +02002072 return object_class_by_name("cirrus-vga")
2073 || object_class_by_name("isa-cirrus-vga");
Blue Swirla369da52011-09-27 19:15:42 +00002074}
2075
2076static bool vmware_vga_available(void)
2077{
Aurelien Jarno36b7f272012-09-08 16:01:20 +02002078 return object_class_by_name("vmware-svga");
Blue Swirla369da52011-09-27 19:15:42 +00002079}
2080
Aurelien Jarno879049a2012-09-08 12:01:06 +02002081static bool qxl_vga_available(void)
2082{
2083 return object_class_by_name("qxl-vga");
2084}
2085
malc3893c122008-09-28 00:42:05 +00002086static void select_vgahw (const char *p)
2087{
2088 const char *opts;
2089
Zachary Amsden86176752009-07-30 00:15:02 -10002090 vga_interface_type = VGA_NONE;
malc3893c122008-09-28 00:42:05 +00002091 if (strstart(p, "std", &opts)) {
Blue Swirla369da52011-09-27 19:15:42 +00002092 if (vga_available()) {
2093 vga_interface_type = VGA_STD;
2094 } else {
2095 fprintf(stderr, "Error: standard VGA not available\n");
2096 exit(0);
2097 }
malc3893c122008-09-28 00:42:05 +00002098 } else if (strstart(p, "cirrus", &opts)) {
Blue Swirla369da52011-09-27 19:15:42 +00002099 if (cirrus_vga_available()) {
2100 vga_interface_type = VGA_CIRRUS;
2101 } else {
2102 fprintf(stderr, "Error: Cirrus VGA not available\n");
2103 exit(0);
2104 }
malc3893c122008-09-28 00:42:05 +00002105 } else if (strstart(p, "vmware", &opts)) {
Blue Swirla369da52011-09-27 19:15:42 +00002106 if (vmware_vga_available()) {
2107 vga_interface_type = VGA_VMWARE;
2108 } else {
2109 fprintf(stderr, "Error: VMWare SVGA not available\n");
2110 exit(0);
2111 }
aliguori94909d92009-04-22 15:19:53 +00002112 } else if (strstart(p, "xenfb", &opts)) {
Zachary Amsden86176752009-07-30 00:15:02 -10002113 vga_interface_type = VGA_XENFB;
Gerd Hoffmanna19cbfb2010-04-27 11:50:11 +02002114 } else if (strstart(p, "qxl", &opts)) {
Aurelien Jarno879049a2012-09-08 12:01:06 +02002115 if (qxl_vga_available()) {
2116 vga_interface_type = VGA_QXL;
2117 } else {
2118 fprintf(stderr, "Error: QXL VGA not available\n");
2119 exit(0);
2120 }
aliguori28b85ed2009-04-22 15:19:48 +00002121 } else if (!strstart(p, "none", &opts)) {
malc3893c122008-09-28 00:42:05 +00002122 invalid_vga:
2123 fprintf(stderr, "Unknown vga type: %s\n", p);
2124 exit(1);
2125 }
malccb5a7aa2008-09-28 00:42:12 +00002126 while (*opts) {
2127 const char *nextopt;
2128
2129 if (strstart(opts, ",retrace=", &nextopt)) {
2130 opts = nextopt;
2131 if (strstart(opts, "dumb", &nextopt))
2132 vga_retrace_method = VGA_RETRACE_DUMB;
2133 else if (strstart(opts, "precise", &nextopt))
2134 vga_retrace_method = VGA_RETRACE_PRECISE;
2135 else goto invalid_vga;
2136 } else goto invalid_vga;
2137 opts = nextopt;
2138 }
malc3893c122008-09-28 00:42:05 +00002139}
2140
Jes Sorensen1472a952011-03-16 13:33:31 +01002141static DisplayType select_display(const char *p)
2142{
2143 const char *opts;
2144 DisplayType display = DT_DEFAULT;
2145
2146 if (strstart(p, "sdl", &opts)) {
2147#ifdef CONFIG_SDL
2148 display = DT_SDL;
2149 while (*opts) {
2150 const char *nextopt;
2151
2152 if (strstart(opts, ",frame=", &nextopt)) {
2153 opts = nextopt;
2154 if (strstart(opts, "on", &nextopt)) {
2155 no_frame = 0;
2156 } else if (strstart(opts, "off", &nextopt)) {
2157 no_frame = 1;
2158 } else {
Peter Maydell05175532011-03-23 03:40:57 +00002159 goto invalid_sdl_args;
Jes Sorensen1472a952011-03-16 13:33:31 +01002160 }
2161 } else if (strstart(opts, ",alt_grab=", &nextopt)) {
2162 opts = nextopt;
2163 if (strstart(opts, "on", &nextopt)) {
2164 alt_grab = 1;
2165 } else if (strstart(opts, "off", &nextopt)) {
2166 alt_grab = 0;
2167 } else {
Peter Maydell05175532011-03-23 03:40:57 +00002168 goto invalid_sdl_args;
Jes Sorensen1472a952011-03-16 13:33:31 +01002169 }
2170 } else if (strstart(opts, ",ctrl_grab=", &nextopt)) {
2171 opts = nextopt;
2172 if (strstart(opts, "on", &nextopt)) {
2173 ctrl_grab = 1;
2174 } else if (strstart(opts, "off", &nextopt)) {
2175 ctrl_grab = 0;
2176 } else {
Peter Maydell05175532011-03-23 03:40:57 +00002177 goto invalid_sdl_args;
Jes Sorensen1472a952011-03-16 13:33:31 +01002178 }
2179 } else if (strstart(opts, ",window_close=", &nextopt)) {
2180 opts = nextopt;
2181 if (strstart(opts, "on", &nextopt)) {
2182 no_quit = 0;
2183 } else if (strstart(opts, "off", &nextopt)) {
2184 no_quit = 1;
2185 } else {
Peter Maydell05175532011-03-23 03:40:57 +00002186 goto invalid_sdl_args;
Jes Sorensen1472a952011-03-16 13:33:31 +01002187 }
2188 } else {
Peter Maydell05175532011-03-23 03:40:57 +00002189 invalid_sdl_args:
2190 fprintf(stderr, "Invalid SDL option string: %s\n", p);
2191 exit(1);
Jes Sorensen1472a952011-03-16 13:33:31 +01002192 }
2193 opts = nextopt;
2194 }
2195#else
2196 fprintf(stderr, "SDL support is disabled\n");
2197 exit(1);
2198#endif
Jes Sorensen3264ff12011-03-16 13:33:33 +01002199 } else if (strstart(p, "vnc", &opts)) {
Jes Sorensen821601e2011-03-16 13:33:36 +01002200#ifdef CONFIG_VNC
Jes Sorensen3264ff12011-03-16 13:33:33 +01002201 display_remote++;
2202
2203 if (*opts) {
2204 const char *nextopt;
2205
2206 if (strstart(opts, "=", &nextopt)) {
2207 vnc_display = nextopt;
2208 }
2209 }
2210 if (!vnc_display) {
2211 fprintf(stderr, "VNC requires a display argument vnc=<display>\n");
2212 exit(1);
2213 }
Jes Sorensen821601e2011-03-16 13:33:36 +01002214#else
2215 fprintf(stderr, "VNC support is disabled\n");
2216 exit(1);
2217#endif
Jes Sorensen1472a952011-03-16 13:33:31 +01002218 } else if (strstart(p, "curses", &opts)) {
2219#ifdef CONFIG_CURSES
2220 display = DT_CURSES;
2221#else
2222 fprintf(stderr, "Curses support is disabled\n");
2223 exit(1);
2224#endif
Anthony Liguori15546422013-02-20 07:43:25 -06002225 } else if (strstart(p, "gtk", &opts)) {
2226#ifdef CONFIG_GTK
2227 display = DT_GTK;
2228#else
2229 fprintf(stderr, "GTK support is disabled\n");
2230 exit(1);
2231#endif
Jes Sorensen4171d322011-03-16 13:33:32 +01002232 } else if (strstart(p, "none", &opts)) {
2233 display = DT_NONE;
Jes Sorensen1472a952011-03-16 13:33:31 +01002234 } else {
Jes Sorensen1472a952011-03-16 13:33:31 +01002235 fprintf(stderr, "Unknown display type: %s\n", p);
2236 exit(1);
2237 }
2238
2239 return display;
2240}
2241
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02002242static int balloon_parse(const char *arg)
2243{
Gerd Hoffmann382f0742009-08-14 10:34:22 +02002244 QemuOpts *opts;
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02002245
Gerd Hoffmann382f0742009-08-14 10:34:22 +02002246 if (strcmp(arg, "none") == 0) {
2247 return 0;
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02002248 }
Gerd Hoffmann382f0742009-08-14 10:34:22 +02002249
2250 if (!strncmp(arg, "virtio", 6)) {
2251 if (arg[6] == ',') {
2252 /* have params -> parse them */
Gerd Hoffmann3329f072010-08-20 13:52:01 +02002253 opts = qemu_opts_parse(qemu_find_opts("device"), arg+7, 0);
Gerd Hoffmann382f0742009-08-14 10:34:22 +02002254 if (!opts)
2255 return -1;
2256 } else {
2257 /* create empty opts */
Peter Crosthwaite87ea75d2014-01-01 18:49:17 -08002258 opts = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
2259 &error_abort);
Gerd Hoffmann382f0742009-08-14 10:34:22 +02002260 }
Alexander Graf29f82b32011-03-29 15:29:29 +02002261 qemu_opt_set(opts, "driver", "virtio-balloon");
Gerd Hoffmann382f0742009-08-14 10:34:22 +02002262 return 0;
2263 }
2264
2265 return -1;
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02002266}
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02002267
Paul Brook5cea8592009-05-30 00:52:44 +01002268char *qemu_find_file(int type, const char *name)
2269{
Gerd Hoffmann45240512013-03-08 11:42:24 +01002270 int i;
Paul Brook5cea8592009-05-30 00:52:44 +01002271 const char *subdir;
2272 char *buf;
2273
Peter Maydell31783202012-05-25 13:07:01 +01002274 /* Try the name as a straight path first */
2275 if (access(name, R_OK) == 0) {
Gerd Hoffmann45240512013-03-08 11:42:24 +01002276 trace_load_file(name, name);
Anthony Liguori7267c092011-08-20 22:09:37 -05002277 return g_strdup(name);
Paul Brook5cea8592009-05-30 00:52:44 +01002278 }
Gerd Hoffmann45240512013-03-08 11:42:24 +01002279
Paul Brook5cea8592009-05-30 00:52:44 +01002280 switch (type) {
2281 case QEMU_FILE_TYPE_BIOS:
2282 subdir = "";
2283 break;
2284 case QEMU_FILE_TYPE_KEYMAP:
2285 subdir = "keymaps/";
2286 break;
2287 default:
2288 abort();
2289 }
Gerd Hoffmann45240512013-03-08 11:42:24 +01002290
2291 for (i = 0; i < data_dir_idx; i++) {
2292 buf = g_strdup_printf("%s/%s%s", data_dir[i], subdir, name);
2293 if (access(buf, R_OK) == 0) {
2294 trace_load_file(name, buf);
2295 return buf;
2296 }
Anthony Liguori7267c092011-08-20 22:09:37 -05002297 g_free(buf);
Paul Brook5cea8592009-05-30 00:52:44 +01002298 }
Gerd Hoffmann45240512013-03-08 11:42:24 +01002299 return NULL;
Paul Brook5cea8592009-05-30 00:52:44 +01002300}
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)) {
Seiji Aguchi4a44d852013-08-05 15:40:44 -04002324 error_report("%s", error_get_pretty(local_err));
Gerd Hoffmannbd2d80b2012-10-15 09:28:05 +02002325 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
Hans de Goede456d6062013-03-27 20:29:40 +01002374 qemu_chr_fe_claim_no_fail(chr);
Gerd Hoffmann88589342009-12-08 13:11:50 +01002375 monitor_init(chr, flags);
2376 return 0;
2377}
2378
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01002379static void monitor_parse(const char *optarg, const char *mode)
Gerd Hoffmann88589342009-12-08 13:11:50 +01002380{
2381 static int monitor_device_index = 0;
2382 QemuOpts *opts;
2383 const char *p;
2384 char label[32];
2385 int def = 0;
2386
2387 if (strstart(optarg, "chardev:", &p)) {
2388 snprintf(label, sizeof(label), "%s", p);
2389 } else {
Jan Kiszka140e0652010-04-06 16:55:52 +02002390 snprintf(label, sizeof(label), "compat_monitor%d",
2391 monitor_device_index);
2392 if (monitor_device_index == 0) {
Gerd Hoffmann88589342009-12-08 13:11:50 +01002393 def = 1;
2394 }
2395 opts = qemu_chr_parse_compat(label, optarg);
2396 if (!opts) {
2397 fprintf(stderr, "parse error: %s\n", optarg);
2398 exit(1);
2399 }
2400 }
2401
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03002402 opts = qemu_opts_create(qemu_find_opts("mon"), label, 1, NULL);
Gerd Hoffmann88589342009-12-08 13:11:50 +01002403 if (!opts) {
2404 fprintf(stderr, "duplicate chardev: %s\n", label);
2405 exit(1);
2406 }
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01002407 qemu_opt_set(opts, "mode", mode);
Gerd Hoffmann88589342009-12-08 13:11:50 +01002408 qemu_opt_set(opts, "chardev", label);
2409 if (def)
2410 qemu_opt_set(opts, "default", "on");
2411 monitor_device_index++;
2412}
2413
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002414struct device_config {
2415 enum {
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002416 DEV_USB, /* -usbdevice */
2417 DEV_BT, /* -bt */
2418 DEV_SERIAL, /* -serial */
2419 DEV_PARALLEL, /* -parallel */
2420 DEV_VIRTCON, /* -virtioconsole */
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08002421 DEV_DEBUGCON, /* -debugcon */
Markus Armbrusteref0c4a02012-02-07 15:09:13 +01002422 DEV_GDB, /* -gdb, -s */
Alexander Graf3ef669e2013-01-24 12:18:52 +01002423 DEV_SCLP, /* s390 sclp */
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002424 } type;
2425 const char *cmdline;
Markus Armbrusterd9a59542012-02-07 15:09:12 +01002426 Location loc;
Blue Swirl72cf2d42009-09-12 07:36:22 +00002427 QTAILQ_ENTRY(device_config) next;
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002428};
Blue Swirl4fdcac02012-10-28 11:04:47 +00002429
2430static QTAILQ_HEAD(, device_config) device_configs =
2431 QTAILQ_HEAD_INITIALIZER(device_configs);
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002432
2433static void add_device_config(int type, const char *cmdline)
2434{
2435 struct device_config *conf;
2436
Anthony Liguori7267c092011-08-20 22:09:37 -05002437 conf = g_malloc0(sizeof(*conf));
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002438 conf->type = type;
2439 conf->cmdline = cmdline;
Markus Armbrusterd9a59542012-02-07 15:09:12 +01002440 loc_save(&conf->loc);
Blue Swirl72cf2d42009-09-12 07:36:22 +00002441 QTAILQ_INSERT_TAIL(&device_configs, conf, next);
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002442}
2443
2444static int foreach_device_config(int type, int (*func)(const char *cmdline))
2445{
2446 struct device_config *conf;
2447 int rc;
2448
Blue Swirl72cf2d42009-09-12 07:36:22 +00002449 QTAILQ_FOREACH(conf, &device_configs, next) {
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002450 if (conf->type != type)
2451 continue;
Markus Armbrusterd9a59542012-02-07 15:09:12 +01002452 loc_push_restore(&conf->loc);
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002453 rc = func(conf->cmdline);
Markus Armbrusterd9a59542012-02-07 15:09:12 +01002454 loc_pop(&conf->loc);
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002455 if (0 != rc)
2456 return rc;
2457 }
2458 return 0;
2459}
2460
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01002461static int serial_parse(const char *devname)
2462{
2463 static int index = 0;
2464 char label[32];
2465
2466 if (strcmp(devname, "none") == 0)
2467 return 0;
2468 if (index == MAX_SERIAL_PORTS) {
2469 fprintf(stderr, "qemu: too many serial ports\n");
2470 exit(1);
2471 }
2472 snprintf(label, sizeof(label), "serial%d", index);
Anthony Liguori27143a42011-08-15 11:17:36 -05002473 serial_hds[index] = qemu_chr_new(label, devname, NULL);
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01002474 if (!serial_hds[index]) {
Peter Maydell52d06132012-07-09 04:28:30 +00002475 fprintf(stderr, "qemu: could not connect serial device"
2476 " to character backend '%s'\n", devname);
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01002477 return -1;
2478 }
2479 index++;
2480 return 0;
2481}
2482
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01002483static int parallel_parse(const char *devname)
2484{
2485 static int index = 0;
2486 char label[32];
2487
2488 if (strcmp(devname, "none") == 0)
2489 return 0;
2490 if (index == MAX_PARALLEL_PORTS) {
2491 fprintf(stderr, "qemu: too many parallel ports\n");
2492 exit(1);
2493 }
2494 snprintf(label, sizeof(label), "parallel%d", index);
Anthony Liguori27143a42011-08-15 11:17:36 -05002495 parallel_hds[index] = qemu_chr_new(label, devname, NULL);
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01002496 if (!parallel_hds[index]) {
Peter Maydell52d06132012-07-09 04:28:30 +00002497 fprintf(stderr, "qemu: could not connect parallel device"
2498 " to character backend '%s'\n", devname);
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01002499 return -1;
2500 }
2501 index++;
2502 return 0;
2503}
2504
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002505static int virtcon_parse(const char *devname)
2506{
Gerd Hoffmann3329f072010-08-20 13:52:01 +02002507 QemuOptsList *device = qemu_find_opts("device");
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002508 static int index = 0;
2509 char label[32];
Amit Shah392ecf52010-01-21 16:19:23 +05302510 QemuOpts *bus_opts, *dev_opts;
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002511
2512 if (strcmp(devname, "none") == 0)
2513 return 0;
2514 if (index == MAX_VIRTIO_CONSOLES) {
2515 fprintf(stderr, "qemu: too many virtio consoles\n");
2516 exit(1);
2517 }
Amit Shah392ecf52010-01-21 16:19:23 +05302518
Peter Crosthwaite87ea75d2014-01-01 18:49:17 -08002519 bus_opts = qemu_opts_create(device, NULL, 0, &error_abort);
Anthony Liguorie87f7fc2012-02-06 11:07:18 -06002520 if (arch_type == QEMU_ARCH_S390X) {
2521 qemu_opt_set(bus_opts, "driver", "virtio-serial-s390");
2522 } else {
2523 qemu_opt_set(bus_opts, "driver", "virtio-serial-pci");
Laszlo Ersek4d8b3c62013-03-21 00:23:13 +01002524 }
Amit Shah392ecf52010-01-21 16:19:23 +05302525
Peter Crosthwaite87ea75d2014-01-01 18:49:17 -08002526 dev_opts = qemu_opts_create(device, NULL, 0, &error_abort);
Amit Shah392ecf52010-01-21 16:19:23 +05302527 qemu_opt_set(dev_opts, "driver", "virtconsole");
2528
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002529 snprintf(label, sizeof(label), "virtcon%d", index);
Anthony Liguori27143a42011-08-15 11:17:36 -05002530 virtcon_hds[index] = qemu_chr_new(label, devname, NULL);
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002531 if (!virtcon_hds[index]) {
Peter Maydell52d06132012-07-09 04:28:30 +00002532 fprintf(stderr, "qemu: could not connect virtio console"
2533 " to character backend '%s'\n", devname);
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002534 return -1;
2535 }
Amit Shah392ecf52010-01-21 16:19:23 +05302536 qemu_opt_set(dev_opts, "chardev", label);
2537
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002538 index++;
2539 return 0;
2540}
2541
Alexander Graf3ef669e2013-01-24 12:18:52 +01002542static int sclp_parse(const char *devname)
2543{
2544 QemuOptsList *device = qemu_find_opts("device");
2545 static int index = 0;
2546 char label[32];
2547 QemuOpts *dev_opts;
2548
2549 if (strcmp(devname, "none") == 0) {
2550 return 0;
2551 }
2552 if (index == MAX_SCLP_CONSOLES) {
2553 fprintf(stderr, "qemu: too many sclp consoles\n");
2554 exit(1);
2555 }
2556
2557 assert(arch_type == QEMU_ARCH_S390X);
2558
2559 dev_opts = qemu_opts_create(device, NULL, 0, NULL);
2560 qemu_opt_set(dev_opts, "driver", "sclpconsole");
2561
2562 snprintf(label, sizeof(label), "sclpcon%d", index);
2563 sclp_hds[index] = qemu_chr_new(label, devname, NULL);
2564 if (!sclp_hds[index]) {
2565 fprintf(stderr, "qemu: could not connect sclp console"
2566 " to character backend '%s'\n", devname);
2567 return -1;
2568 }
2569 qemu_opt_set(dev_opts, "chardev", label);
2570
2571 index++;
2572 return 0;
2573}
2574
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08002575static int debugcon_parse(const char *devname)
Laszlo Ersek4d8b3c62013-03-21 00:23:13 +01002576{
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08002577 QemuOpts *opts;
2578
Anthony Liguori27143a42011-08-15 11:17:36 -05002579 if (!qemu_chr_new("debugcon", devname, NULL)) {
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08002580 exit(1);
2581 }
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03002582 opts = qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL);
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08002583 if (!opts) {
2584 fprintf(stderr, "qemu: already have a debugcon device\n");
2585 exit(1);
2586 }
2587 qemu_opt_set(opts, "driver", "isa-debugcon");
2588 qemu_opt_set(opts, "chardev", "debugcon");
2589 return 0;
2590}
2591
Jan Kiszka9052ea62011-07-23 12:38:37 +02002592static QEMUMachine *machine_parse(const char *name)
2593{
2594 QEMUMachine *m, *machine = NULL;
2595
2596 if (name) {
2597 machine = find_machine(name);
2598 }
2599 if (machine) {
2600 return machine;
2601 }
2602 printf("Supported machines are:\n");
2603 for (m = first_machine; m != NULL; m = m->next) {
2604 if (m->alias) {
Peter Maydell3b264862012-02-22 22:13:11 +00002605 printf("%-20s %s (alias of %s)\n", m->alias, m->desc, m->name);
Jan Kiszka9052ea62011-07-23 12:38:37 +02002606 }
Peter Maydell3b264862012-02-22 22:13:11 +00002607 printf("%-20s %s%s\n", m->name, m->desc,
Jan Kiszka9052ea62011-07-23 12:38:37 +02002608 m->is_default ? " (default)" : "");
2609 }
Peter Maydellc8057f92012-08-02 13:45:54 +01002610 exit(!name || !is_help_option(name));
Jan Kiszka9052ea62011-07-23 12:38:37 +02002611}
2612
Anthony PERARD303d4e82010-09-21 20:05:31 +01002613static int tcg_init(void)
2614{
Jan Kiszkad5ab9712011-08-02 16:10:21 +02002615 tcg_exec_init(tcg_tb_size * 1024 * 1024);
Anthony PERARD303d4e82010-09-21 20:05:31 +01002616 return 0;
2617}
2618
2619static struct {
2620 const char *opt_name;
2621 const char *name;
2622 int (*available)(void);
2623 int (*init)(void);
liguangd5286af2013-01-24 13:03:27 +08002624 bool *allowed;
Anthony PERARD303d4e82010-09-21 20:05:31 +01002625} accel_list[] = {
2626 { "tcg", "tcg", tcg_available, tcg_init, &tcg_allowed },
Anthony PERARD3285cf42010-08-19 12:27:56 +01002627 { "xen", "Xen", xen_available, xen_init, &xen_allowed },
Anthony PERARD303d4e82010-09-21 20:05:31 +01002628 { "kvm", "KVM", kvm_available, kvm_init, &kvm_allowed },
Paolo Bonzinid4fce242013-10-18 13:51:11 +02002629 { "qtest", "QTest", qtest_available, qtest_init_accel, &qtest_allowed },
Anthony PERARD303d4e82010-09-21 20:05:31 +01002630};
2631
2632static int configure_accelerator(void)
2633{
Markus Armbruster36ad0e92013-07-04 15:09:20 +02002634 const char *p;
Anthony PERARD303d4e82010-09-21 20:05:31 +01002635 char buf[10];
2636 int i, ret;
liguang217e21b2013-01-24 13:03:26 +08002637 bool accel_initialised = false;
2638 bool init_failed = false;
Anthony PERARD303d4e82010-09-21 20:05:31 +01002639
Markus Armbruster36ad0e92013-07-04 15:09:20 +02002640 p = qemu_opt_get(qemu_get_machine_opts(), "accel");
Anthony PERARD303d4e82010-09-21 20:05:31 +01002641 if (p == NULL) {
2642 /* Use the default "accelerator", tcg */
2643 p = "tcg";
2644 }
2645
Peter Maydell1b785a92012-02-07 20:57:27 +00002646 while (!accel_initialised && *p != '\0') {
Anthony PERARD303d4e82010-09-21 20:05:31 +01002647 if (*p == ':') {
2648 p++;
2649 }
2650 p = get_opt_name(buf, sizeof (buf), p, ':');
2651 for (i = 0; i < ARRAY_SIZE(accel_list); i++) {
2652 if (strcmp(accel_list[i].opt_name, buf) == 0) {
liguange3c66d92013-01-24 13:03:25 +08002653 if (!accel_list[i].available()) {
2654 printf("%s not supported for this target\n",
2655 accel_list[i].name);
2656 continue;
2657 }
liguangd5286af2013-01-24 13:03:27 +08002658 *(accel_list[i].allowed) = true;
Anthony PERARD303d4e82010-09-21 20:05:31 +01002659 ret = accel_list[i].init();
2660 if (ret < 0) {
liguang217e21b2013-01-24 13:03:26 +08002661 init_failed = true;
liguange3c66d92013-01-24 13:03:25 +08002662 fprintf(stderr, "failed to initialize %s: %s\n",
2663 accel_list[i].name,
2664 strerror(-ret));
liguangd5286af2013-01-24 13:03:27 +08002665 *(accel_list[i].allowed) = false;
Anthony PERARD303d4e82010-09-21 20:05:31 +01002666 } else {
liguang217e21b2013-01-24 13:03:26 +08002667 accel_initialised = true;
Anthony PERARD303d4e82010-09-21 20:05:31 +01002668 }
2669 break;
2670 }
2671 }
2672 if (i == ARRAY_SIZE(accel_list)) {
2673 fprintf(stderr, "\"%s\" accelerator does not exist.\n", buf);
2674 }
2675 }
2676
Peter Maydell1b785a92012-02-07 20:57:27 +00002677 if (!accel_initialised) {
liguang217e21b2013-01-24 13:03:26 +08002678 if (!init_failed) {
2679 fprintf(stderr, "No accelerator found!\n");
2680 }
Anthony PERARD303d4e82010-09-21 20:05:31 +01002681 exit(1);
2682 }
2683
2684 if (init_failed) {
2685 fprintf(stderr, "Back to %s accelerator.\n", accel_list[i].name);
2686 }
2687
Peter Maydell1b785a92012-02-07 20:57:27 +00002688 return !accel_initialised;
Anthony PERARD303d4e82010-09-21 20:05:31 +01002689}
2690
Gerd Hoffmannfd42dee2010-06-04 14:08:07 +02002691void qemu_add_exit_notifier(Notifier *notify)
2692{
2693 notifier_list_add(&exit_notifiers, notify);
2694}
2695
2696void qemu_remove_exit_notifier(Notifier *notify)
2697{
Paolo Bonzini31552522012-01-13 17:34:01 +01002698 notifier_remove(notify);
Gerd Hoffmannfd42dee2010-06-04 14:08:07 +02002699}
2700
2701static void qemu_run_exit_notifiers(void)
2702{
Jan Kiszka9e8dd452011-06-20 14:06:26 +02002703 notifier_list_notify(&exit_notifiers, NULL);
Gerd Hoffmannfd42dee2010-06-04 14:08:07 +02002704}
2705
Gleb Natapov4cab9462010-12-08 13:35:08 +02002706void qemu_add_machine_init_done_notifier(Notifier *notify)
2707{
2708 notifier_list_add(&machine_init_done_notifiers, notify);
2709}
2710
2711static void qemu_run_machine_init_done_notifiers(void)
2712{
Jan Kiszka9e8dd452011-06-20 14:06:26 +02002713 notifier_list_notify(&machine_init_done_notifiers, NULL);
Gleb Natapov4cab9462010-12-08 13:35:08 +02002714}
2715
Anthony Liguori6530a972010-01-22 09:18:06 -06002716static const QEMUOption *lookup_opt(int argc, char **argv,
2717 const char **poptarg, int *poptind)
2718{
2719 const QEMUOption *popt;
2720 int optind = *poptind;
2721 char *r = argv[optind];
2722 const char *optarg;
2723
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +01002724 loc_set_cmdline(argv, optind, 1);
Anthony Liguori6530a972010-01-22 09:18:06 -06002725 optind++;
2726 /* Treat --foo the same as -foo. */
2727 if (r[1] == '-')
2728 r++;
2729 popt = qemu_options;
2730 for(;;) {
2731 if (!popt->name) {
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +01002732 error_report("invalid option");
Anthony Liguori6530a972010-01-22 09:18:06 -06002733 exit(1);
2734 }
2735 if (!strcmp(popt->name, r + 1))
2736 break;
2737 popt++;
2738 }
2739 if (popt->flags & HAS_ARG) {
2740 if (optind >= argc) {
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +01002741 error_report("requires an argument");
Anthony Liguori6530a972010-01-22 09:18:06 -06002742 exit(1);
2743 }
2744 optarg = argv[optind++];
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +01002745 loc_set_cmdline(argv, optind - 2, 2);
Anthony Liguori6530a972010-01-22 09:18:06 -06002746 } else {
2747 optarg = NULL;
2748 }
2749
2750 *poptarg = optarg;
2751 *poptind = optind;
2752
2753 return popt;
2754}
2755
Anthony Liguori07501122011-08-20 22:38:31 -05002756static gpointer malloc_and_trace(gsize n_bytes)
2757{
2758 void *ptr = malloc(n_bytes);
Frediano Ziglioa74cd8c2011-08-31 09:25:35 +02002759 trace_g_malloc(n_bytes, ptr);
Anthony Liguori07501122011-08-20 22:38:31 -05002760 return ptr;
2761}
2762
2763static gpointer realloc_and_trace(gpointer mem, gsize n_bytes)
2764{
2765 void *ptr = realloc(mem, n_bytes);
Frediano Ziglioa74cd8c2011-08-31 09:25:35 +02002766 trace_g_realloc(mem, n_bytes, ptr);
Anthony Liguori07501122011-08-20 22:38:31 -05002767 return ptr;
2768}
2769
2770static void free_and_trace(gpointer mem)
2771{
Frediano Ziglioa74cd8c2011-08-31 09:25:35 +02002772 trace_g_free(mem);
Anthony Liguori07501122011-08-20 22:38:31 -05002773 free(mem);
2774}
2775
Anthony Liguori68d98d32012-06-25 14:36:33 -05002776static int object_set_property(const char *name, const char *value, void *opaque)
2777{
2778 Object *obj = OBJECT(opaque);
2779 StringInputVisitor *siv;
2780 Error *local_err = NULL;
2781
2782 if (strcmp(name, "qom-type") == 0 || strcmp(name, "id") == 0) {
2783 return 0;
2784 }
2785
2786 siv = string_input_visitor_new(value);
2787 object_property_set(obj, string_input_get_visitor(siv), name, &local_err);
2788 string_input_visitor_cleanup(siv);
2789
2790 if (local_err) {
2791 qerror_report_err(local_err);
2792 error_free(local_err);
2793 return -1;
2794 }
2795
2796 return 0;
2797}
2798
2799static int object_create(QemuOpts *opts, void *opaque)
2800{
2801 const char *type = qemu_opt_get(opts, "qom-type");
2802 const char *id = qemu_opts_id(opts);
2803 Object *obj;
2804
2805 g_assert(type != NULL);
2806
2807 if (id == NULL) {
2808 qerror_report(QERR_MISSING_PARAMETER, "id");
2809 return -1;
2810 }
2811
2812 obj = object_new(type);
2813 if (qemu_opt_foreach(opts, object_set_property, obj, 1) < 0) {
Paolo Bonzini28ec2592013-12-20 23:21:07 +01002814 object_unref(obj);
Anthony Liguori68d98d32012-06-25 14:36:33 -05002815 return -1;
2816 }
2817
2818 object_property_add_child(container_get(object_get_root(), "/objects"),
2819 id, obj, NULL);
Paolo Bonzini28ec2592013-12-20 23:21:07 +01002820 object_unref(obj);
Anthony Liguori68d98d32012-06-25 14:36:33 -05002821 return 0;
2822}
2823
malc902b3d52008-12-10 19:18:40 +00002824int main(int argc, char **argv, char **envp)
bellard0824d6f2003-06-24 13:42:40 +00002825{
thse4bcb142007-12-02 04:51:10 +00002826 int i;
Eduardo Habkostda1fcfd2010-04-06 19:22:07 -03002827 int snapshot, linux_boot;
Paolo Bonzini4e3de9e2010-03-10 11:38:48 +01002828 const char *icount_option = NULL;
bellard7f7f9872003-10-30 01:11:23 +00002829 const char *initrd_filename;
bellarda20dd502003-09-30 21:07:02 +00002830 const char *kernel_filename, *kernel_cmdline;
Markus Armbrustere3fdc532013-10-01 13:47:22 +02002831 const char *boot_order;
aliguori3023f332009-01-16 19:04:14 +00002832 DisplayState *ds;
malc9f227bc2012-08-27 18:33:22 +04002833 int cyls, heads, secs, translation;
2834 QemuOpts *hda_opts = NULL, *opts, *machine_opts;
Gerd Hoffmann03b0ba72010-08-20 13:52:02 +02002835 QemuOptsList *olist;
bellardcd6f1162004-05-13 22:02:20 +00002836 int optind;
Anthony Liguori6530a972010-01-22 09:18:06 -06002837 const char *optarg;
bellardd63d3072004-10-03 13:29:03 +00002838 const char *loadvm = NULL;
bellardcc1daa42005-06-05 14:49:17 +00002839 QEMUMachine *machine;
j_mayer94fc95c2007-03-05 19:44:02 +00002840 const char *cpu_model;
Paolo Bonzini7f1b17f2012-05-10 09:39:17 +02002841 const char *vga_model = "none";
Paolo Bonzinid4fce242013-10-18 13:51:11 +02002842 const char *qtest_chrdev = NULL;
2843 const char *qtest_log = NULL;
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);
Amos Kong968854c2013-11-09 12:15:47 +08002877 qemu_add_drive_opts(&qemu_legacy_drive_opts);
2878 qemu_add_drive_opts(&qemu_common_drive_opts);
2879 qemu_add_drive_opts(&qemu_drive_opts);
Paolo Bonzini4d454572012-11-26 16:03:42 +01002880 qemu_add_opts(&qemu_chardev_opts);
2881 qemu_add_opts(&qemu_device_opts);
2882 qemu_add_opts(&qemu_netdev_opts);
2883 qemu_add_opts(&qemu_net_opts);
2884 qemu_add_opts(&qemu_rtc_opts);
2885 qemu_add_opts(&qemu_global_opts);
2886 qemu_add_opts(&qemu_mon_opts);
2887 qemu_add_opts(&qemu_trace_opts);
2888 qemu_add_opts(&qemu_option_rom_opts);
2889 qemu_add_opts(&qemu_machine_opts);
Michael Tokarev12b7f572013-06-24 15:06:52 +04002890 qemu_add_opts(&qemu_smp_opts);
Paolo Bonzini4d454572012-11-26 16:03:42 +01002891 qemu_add_opts(&qemu_boot_opts);
2892 qemu_add_opts(&qemu_sandbox_opts);
2893 qemu_add_opts(&qemu_add_fd_opts);
2894 qemu_add_opts(&qemu_object_opts);
Stefan Bergerd1a0cf72013-02-27 12:47:49 -05002895 qemu_add_opts(&qemu_tpmdev_opts);
Satoru Moriya888a6bc2013-04-19 16:42:06 +02002896 qemu_add_opts(&qemu_realtime_opts);
Seiji Aguchi5e2ac512013-07-03 23:02:46 -04002897 qemu_add_opts(&qemu_msg_opts);
Paolo Bonzini4d454572012-11-26 16:03:42 +01002898
Luiz Capitulino5db9d4d2011-09-05 16:36:31 -03002899 runstate_init();
2900
Jan Kiszka68752042009-09-15 13:36:04 +02002901 init_clocks();
Alex Bligh884f17c2013-08-21 16:03:04 +01002902 rtc_clock = QEMU_CLOCK_HOST;
Jan Kiszka68752042009-09-15 13:36:04 +02002903
Richard Hendersonb6a3e692013-06-04 11:24:49 -07002904 qemu_init_auxval(envp);
Richard Henderson664d2c42013-06-10 09:05:09 -07002905 qemu_cache_utils_init();
malc902b3d52008-12-10 19:18:40 +00002906
Blue Swirl72cf2d42009-09-12 07:36:22 +00002907 QLIST_INIT (&vm_change_state_head);
Jes Sorensenfe98ac12010-06-10 11:42:21 +02002908 os_setup_early_signal_handling();
bellardbe995c22006-06-25 16:25:21 +00002909
Anthony Liguorif80f9ec2009-05-20 18:38:09 -05002910 module_call_init(MODULE_INIT_MACHINE);
Anthony Liguori0c257432009-05-21 20:41:01 -05002911 machine = find_default_machine();
j_mayer94fc95c2007-03-05 19:44:02 +00002912 cpu_model = NULL;
aurel324fc5d072008-04-27 21:39:40 +00002913 ram_size = 0;
bellard33e39632003-07-06 17:15:21 +00002914 snapshot = 0;
malc9f227bc2012-08-27 18:33:22 +04002915 cyls = heads = secs = 0;
2916 translation = BIOS_ATA_TRANSLATION_AUTO;
bellardc4b1fcc2004-03-14 21:44:30 +00002917
aliguori268a3622009-04-21 22:30:27 +00002918 for (i = 0; i < MAX_NODES; i++) {
2919 node_mem[i] = 0;
Chegu Vinodee785fe2012-07-16 21:31:30 -07002920 node_cpumask[i] = bitmap_new(MAX_CPUMASK_BITS);
aliguori268a3622009-04-21 22:30:27 +00002921 }
2922
aliguori268a3622009-04-21 22:30:27 +00002923 nb_numa_nodes = 0;
bellard7c9d8e02005-11-15 22:16:05 +00002924 nb_nics = 0;
ths3b46e622007-09-17 08:09:54 +00002925
Peter Lieven142c6b12013-03-21 13:07:10 +01002926 bdrv_init_with_whitelist();
2927
blueswir141bd6392008-10-05 09:56:21 +00002928 autostart= 1;
2929
Anthony Liguori292444c2010-01-21 10:57:58 -06002930 /* first pass of option parsing */
2931 optind = 1;
2932 while (optind < argc) {
2933 if (argv[optind][0] != '-') {
2934 /* disk image */
Anthony Liguori28e68d62010-01-27 10:46:00 -06002935 optind++;
Anthony Liguori292444c2010-01-21 10:57:58 -06002936 continue;
2937 } else {
2938 const QEMUOption *popt;
2939
2940 popt = lookup_opt(argc, argv, &optarg, &optind);
2941 switch (popt->index) {
2942 case QEMU_OPTION_nodefconfig:
Eduardo Habkost3ed2d9e2012-05-02 13:07:28 -03002943 defconfig = false;
Anthony Liguori292444c2010-01-21 10:57:58 -06002944 break;
Eduardo Habkostf29a5612012-05-02 13:07:29 -03002945 case QEMU_OPTION_nouserconfig:
2946 userconfig = false;
2947 break;
Anthony Liguori292444c2010-01-21 10:57:58 -06002948 }
2949 }
2950 }
2951
2952 if (defconfig) {
Kevin Wolfdcfb0932010-03-05 17:25:55 +01002953 int ret;
Eduardo Habkostf29a5612012-05-02 13:07:29 -03002954 ret = qemu_read_default_config_files(userconfig);
Eduardo Habkostb5a8fe52012-05-02 13:07:25 -03002955 if (ret < 0) {
Kevin Wolfdcfb0932010-03-05 17:25:55 +01002956 exit(1);
Anthony Liguori292444c2010-01-21 10:57:58 -06002957 }
2958 }
2959
2960 /* second pass of option parsing */
bellardcd6f1162004-05-13 22:02:20 +00002961 optind = 1;
bellard0824d6f2003-06-24 13:42:40 +00002962 for(;;) {
bellardcd6f1162004-05-13 22:02:20 +00002963 if (optind >= argc)
bellard0824d6f2003-06-24 13:42:40 +00002964 break;
Anthony Liguori6530a972010-01-22 09:18:06 -06002965 if (argv[optind][0] != '-') {
malc9f227bc2012-08-27 18:33:22 +04002966 hda_opts = drive_add(IF_DEFAULT, 0, argv[optind++], HD_OPTS);
bellardcd6f1162004-05-13 22:02:20 +00002967 } else {
2968 const QEMUOption *popt;
2969
Anthony Liguori6530a972010-01-22 09:18:06 -06002970 popt = lookup_opt(argc, argv, &optarg, &optind);
Blue Swirlad960902010-03-29 19:23:52 +00002971 if (!(popt->arch_mask & arch_type)) {
2972 printf("Option %s not supported for this target\n", popt->name);
2973 exit(1);
2974 }
bellardcd6f1162004-05-13 22:02:20 +00002975 switch(popt->index) {
bellardcc1daa42005-06-05 14:49:17 +00002976 case QEMU_OPTION_M:
Jan Kiszka9052ea62011-07-23 12:38:37 +02002977 machine = machine_parse(optarg);
bellardcc1daa42005-06-05 14:49:17 +00002978 break;
Jan Kiszkae43d5942012-10-05 14:51:40 -03002979 case QEMU_OPTION_no_kvm_irqchip: {
2980 olist = qemu_find_opts("machine");
2981 qemu_opts_parse(olist, "kernel_irqchip=off", 0);
2982 break;
2983 }
j_mayer94fc95c2007-03-05 19:44:02 +00002984 case QEMU_OPTION_cpu:
2985 /* hw initialization will check this */
Eduardo Habkostecf40be2012-03-09 16:19:07 -03002986 cpu_model = optarg;
j_mayer94fc95c2007-03-05 19:44:02 +00002987 break;
bellardcd6f1162004-05-13 22:02:20 +00002988 case QEMU_OPTION_hda:
malc9f227bc2012-08-27 18:33:22 +04002989 {
2990 char buf[256];
2991 if (cyls == 0)
2992 snprintf(buf, sizeof(buf), "%s", HD_OPTS);
2993 else
2994 snprintf(buf, sizeof(buf),
2995 "%s,cyls=%d,heads=%d,secs=%d%s",
2996 HD_OPTS , cyls, heads, secs,
2997 translation == BIOS_ATA_TRANSLATION_LBA ?
2998 ",trans=lba" :
2999 translation == BIOS_ATA_TRANSLATION_NONE ?
3000 ",trans=none" : "");
3001 drive_add(IF_DEFAULT, 0, optarg, buf);
3002 break;
3003 }
bellardcd6f1162004-05-13 22:02:20 +00003004 case QEMU_OPTION_hdb:
bellardcc1daa42005-06-05 14:49:17 +00003005 case QEMU_OPTION_hdc:
3006 case QEMU_OPTION_hdd:
Markus Armbruster2292dda2011-01-28 11:21:41 +01003007 drive_add(IF_DEFAULT, popt->index - QEMU_OPTION_hda, optarg,
3008 HD_OPTS);
bellardfc01f7e2003-06-30 10:03:06 +00003009 break;
thse4bcb142007-12-02 04:51:10 +00003010 case QEMU_OPTION_drive:
Michael Tokareve2982c32011-03-30 16:31:05 +04003011 if (drive_def(optarg) == NULL) {
3012 exit(1);
3013 }
thse4bcb142007-12-02 04:51:10 +00003014 break;
Gerd Hoffmannd058fe02009-07-31 12:25:36 +02003015 case QEMU_OPTION_set:
3016 if (qemu_set_option(optarg) != 0)
3017 exit(1);
3018 break;
Gerd Hoffmannd0fef6f2009-12-08 13:11:34 +01003019 case QEMU_OPTION_global:
3020 if (qemu_global_option(optarg) != 0)
3021 exit(1);
3022 break;
balrog3e3d5812007-04-30 02:09:25 +00003023 case QEMU_OPTION_mtdblock:
Markus Armbruster2292dda2011-01-28 11:21:41 +01003024 drive_add(IF_MTD, -1, optarg, MTD_OPTS);
balrog3e3d5812007-04-30 02:09:25 +00003025 break;
pbrooka1bb27b2007-04-06 16:49:48 +00003026 case QEMU_OPTION_sd:
Peter Crosthwaite80f4d9f2013-02-28 18:23:14 +00003027 drive_add(IF_SD, -1, optarg, SD_OPTS);
pbrooka1bb27b2007-04-06 16:49:48 +00003028 break;
j_mayer86f55662007-04-24 06:52:59 +00003029 case QEMU_OPTION_pflash:
Markus Armbruster2292dda2011-01-28 11:21:41 +01003030 drive_add(IF_PFLASH, -1, optarg, PFLASH_OPTS);
j_mayer86f55662007-04-24 06:52:59 +00003031 break;
bellardcd6f1162004-05-13 22:02:20 +00003032 case QEMU_OPTION_snapshot:
bellard33e39632003-07-06 17:15:21 +00003033 snapshot = 1;
3034 break;
bellardcd6f1162004-05-13 22:02:20 +00003035 case QEMU_OPTION_hdachs:
bellard330d0412003-07-26 18:11:40 +00003036 {
bellard330d0412003-07-26 18:11:40 +00003037 const char *p;
3038 p = optarg;
3039 cyls = strtol(p, (char **)&p, 0);
bellard46d47672004-11-16 01:45:27 +00003040 if (cyls < 1 || cyls > 16383)
3041 goto chs_fail;
bellard330d0412003-07-26 18:11:40 +00003042 if (*p != ',')
3043 goto chs_fail;
3044 p++;
3045 heads = strtol(p, (char **)&p, 0);
bellard46d47672004-11-16 01:45:27 +00003046 if (heads < 1 || heads > 16)
3047 goto chs_fail;
bellard330d0412003-07-26 18:11:40 +00003048 if (*p != ',')
3049 goto chs_fail;
3050 p++;
3051 secs = strtol(p, (char **)&p, 0);
bellard46d47672004-11-16 01:45:27 +00003052 if (secs < 1 || secs > 63)
3053 goto chs_fail;
3054 if (*p == ',') {
3055 p++;
3056 if (!strcmp(p, "none"))
3057 translation = BIOS_ATA_TRANSLATION_NONE;
3058 else if (!strcmp(p, "lba"))
3059 translation = BIOS_ATA_TRANSLATION_LBA;
3060 else if (!strcmp(p, "auto"))
3061 translation = BIOS_ATA_TRANSLATION_AUTO;
3062 else
3063 goto chs_fail;
3064 } else if (*p != '\0') {
bellardc4b1fcc2004-03-14 21:44:30 +00003065 chs_fail:
bellard46d47672004-11-16 01:45:27 +00003066 fprintf(stderr, "qemu: invalid physical CHS format\n");
3067 exit(1);
bellardc4b1fcc2004-03-14 21:44:30 +00003068 }
malc9f227bc2012-08-27 18:33:22 +04003069 if (hda_opts != NULL) {
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02003070 char num[16];
3071 snprintf(num, sizeof(num), "%d", cyls);
3072 qemu_opt_set(hda_opts, "cyls", num);
3073 snprintf(num, sizeof(num), "%d", heads);
3074 qemu_opt_set(hda_opts, "heads", num);
3075 snprintf(num, sizeof(num), "%d", secs);
3076 qemu_opt_set(hda_opts, "secs", num);
3077 if (translation == BIOS_ATA_TRANSLATION_LBA)
3078 qemu_opt_set(hda_opts, "trans", "lba");
3079 if (translation == BIOS_ATA_TRANSLATION_NONE)
3080 qemu_opt_set(hda_opts, "trans", "none");
3081 }
bellard330d0412003-07-26 18:11:40 +00003082 }
3083 break;
aliguori268a3622009-04-21 22:30:27 +00003084 case QEMU_OPTION_numa:
aliguori268a3622009-04-21 22:30:27 +00003085 numa_add(optarg);
3086 break;
Jes Sorensen1472a952011-03-16 13:33:31 +01003087 case QEMU_OPTION_display:
3088 display_type = select_display(optarg);
3089 break;
bellardcd6f1162004-05-13 22:02:20 +00003090 case QEMU_OPTION_nographic:
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003091 display_type = DT_NOGRAPHIC;
bellarda20dd502003-09-30 21:07:02 +00003092 break;
balrog4d3b6f62008-02-10 16:33:14 +00003093 case QEMU_OPTION_curses:
Jes Sorensen47b05362011-03-16 13:33:35 +01003094#ifdef CONFIG_CURSES
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003095 display_type = DT_CURSES;
Jes Sorensen47b05362011-03-16 13:33:35 +01003096#else
3097 fprintf(stderr, "Curses support is disabled\n");
3098 exit(1);
balrog4d3b6f62008-02-10 16:33:14 +00003099#endif
Jes Sorensen47b05362011-03-16 13:33:35 +01003100 break;
balroga171fe32007-04-30 01:48:07 +00003101 case QEMU_OPTION_portrait:
Vasily Khoruzhick93128052011-06-17 13:04:36 +03003102 graphic_rotate = 90;
3103 break;
3104 case QEMU_OPTION_rotate:
3105 graphic_rotate = strtol(optarg, (char **) &optarg, 10);
3106 if (graphic_rotate != 0 && graphic_rotate != 90 &&
3107 graphic_rotate != 180 && graphic_rotate != 270) {
3108 fprintf(stderr,
3109 "qemu: only 90, 180, 270 deg rotation is available\n");
3110 exit(1);
3111 }
balroga171fe32007-04-30 01:48:07 +00003112 break;
bellardcd6f1162004-05-13 22:02:20 +00003113 case QEMU_OPTION_kernel:
Peter Maydella0abe472012-02-08 05:41:39 +00003114 qemu_opts_set(qemu_find_opts("machine"), 0, "kernel", optarg);
3115 break;
3116 case QEMU_OPTION_initrd:
3117 qemu_opts_set(qemu_find_opts("machine"), 0, "initrd", optarg);
bellarda20dd502003-09-30 21:07:02 +00003118 break;
bellardcd6f1162004-05-13 22:02:20 +00003119 case QEMU_OPTION_append:
Peter Maydella0abe472012-02-08 05:41:39 +00003120 qemu_opts_set(qemu_find_opts("machine"), 0, "append", optarg);
bellard313aa562003-08-10 21:52:11 +00003121 break;
Grant Likely412beee2012-03-02 11:56:38 +00003122 case QEMU_OPTION_dtb:
3123 qemu_opts_set(qemu_find_opts("machine"), 0, "dtb", optarg);
3124 break;
bellardcd6f1162004-05-13 22:02:20 +00003125 case QEMU_OPTION_cdrom:
Markus Armbruster2292dda2011-01-28 11:21:41 +01003126 drive_add(IF_DEFAULT, 2, optarg, CDROM_OPTS);
bellard36b486b2003-11-11 13:36:08 +00003127 break;
bellardcd6f1162004-05-13 22:02:20 +00003128 case QEMU_OPTION_boot:
Markus Armbruster8281abd2013-06-14 13:15:03 +02003129 opts = qemu_opts_parse(qemu_find_opts("boot-opts"), optarg, 1);
3130 if (!opts) {
3131 exit(1);
bellard36b486b2003-11-11 13:36:08 +00003132 }
3133 break;
bellardcd6f1162004-05-13 22:02:20 +00003134 case QEMU_OPTION_fda:
bellardcd6f1162004-05-13 22:02:20 +00003135 case QEMU_OPTION_fdb:
Markus Armbruster2292dda2011-01-28 11:21:41 +01003136 drive_add(IF_FLOPPY, popt->index - QEMU_OPTION_fda,
3137 optarg, FD_OPTS);
bellardc45886d2004-01-05 00:02:06 +00003138 break;
bellard52ca8d62006-06-14 16:03:05 +00003139 case QEMU_OPTION_no_fd_bootchk:
3140 fd_bootchk = 0;
3141 break;
Mark McLoughlina1ea4582009-10-08 19:58:26 +01003142 case QEMU_OPTION_netdev:
Gerd Hoffmann3329f072010-08-20 13:52:01 +02003143 if (net_client_parse(qemu_find_opts("netdev"), optarg) == -1) {
Mark McLoughlina1ea4582009-10-08 19:58:26 +01003144 exit(1);
3145 }
3146 break;
bellard7c9d8e02005-11-15 22:16:05 +00003147 case QEMU_OPTION_net:
Gerd Hoffmann3329f072010-08-20 13:52:01 +02003148 if (net_client_parse(qemu_find_opts("net"), optarg) == -1) {
bellardc4b1fcc2004-03-14 21:44:30 +00003149 exit(1);
3150 }
bellard702c6512004-04-02 21:21:32 +00003151 break;
Ronnie Sahlbergf9dadc92012-01-26 09:39:02 +11003152#ifdef CONFIG_LIBISCSI
3153 case QEMU_OPTION_iscsi:
3154 opts = qemu_opts_parse(qemu_find_opts("iscsi"), optarg, 0);
3155 if (!opts) {
3156 exit(1);
3157 }
3158 break;
3159#endif
bellardc7f74642004-08-24 21:57:12 +00003160#ifdef CONFIG_SLIRP
3161 case QEMU_OPTION_tftp:
Jan Kiszkaad196a92009-06-24 14:42:28 +02003162 legacy_tftp_prefix = optarg;
bellard9bf05442004-08-25 22:12:49 +00003163 break;
ths47d5d012007-02-20 00:05:08 +00003164 case QEMU_OPTION_bootp:
Jan Kiszkaad196a92009-06-24 14:42:28 +02003165 legacy_bootp_filename = optarg;
ths47d5d012007-02-20 00:05:08 +00003166 break;
bellard9bf05442004-08-25 22:12:49 +00003167 case QEMU_OPTION_redir:
Markus Armbruster07527062009-10-06 12:16:57 +01003168 if (net_slirp_redir(optarg) < 0)
3169 exit(1);
bellard9bf05442004-08-25 22:12:49 +00003170 break;
bellardc7f74642004-08-24 21:57:12 +00003171#endif
balrogdc72ac12008-11-09 00:04:26 +00003172 case QEMU_OPTION_bt:
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02003173 add_device_config(DEV_BT, optarg);
balrogdc72ac12008-11-09 00:04:26 +00003174 break;
bellard1d14ffa2005-10-30 18:58:22 +00003175 case QEMU_OPTION_audio_help:
3176 AUD_help ();
3177 exit (0);
3178 break;
3179 case QEMU_OPTION_soundhw:
3180 select_soundhw (optarg);
3181 break;
bellardcd6f1162004-05-13 22:02:20 +00003182 case QEMU_OPTION_h:
ths15f82202007-06-29 23:26:08 +00003183 help(0);
bellardcd6f1162004-05-13 22:02:20 +00003184 break;
pbrook9bd7e6d2009-04-07 22:58:45 +00003185 case QEMU_OPTION_version:
3186 version();
3187 exit(0);
3188 break;
aurel3200f82b82008-04-27 21:12:55 +00003189 case QEMU_OPTION_m: {
Jes Sorensen70b4f4b2011-01-05 11:41:02 +01003190 int64_t value;
Markus Armbrusterff961012012-08-15 13:12:19 +02003191 uint64_t sz;
Markus Armbruster961b42b2011-11-22 09:46:03 +01003192 char *end;
aurel3200f82b82008-04-27 21:12:55 +00003193
Markus Armbruster961b42b2011-11-22 09:46:03 +01003194 value = strtosz(optarg, &end);
3195 if (value < 0 || *end) {
aurel3200f82b82008-04-27 21:12:55 +00003196 fprintf(stderr, "qemu: invalid ram size: %s\n", optarg);
bellardcd6f1162004-05-13 22:02:20 +00003197 exit(1);
3198 }
Markus Armbrusterff961012012-08-15 13:12:19 +02003199 sz = QEMU_ALIGN_UP((uint64_t)value, 8192);
3200 ram_size = sz;
3201 if (ram_size != sz) {
aurel3200f82b82008-04-27 21:12:55 +00003202 fprintf(stderr, "qemu: ram size too large\n");
3203 exit(1);
3204 }
bellardcd6f1162004-05-13 22:02:20 +00003205 break;
aurel3200f82b82008-04-27 21:12:55 +00003206 }
Stefan Bergerd1a0cf72013-02-27 12:47:49 -05003207#ifdef CONFIG_TPM
3208 case QEMU_OPTION_tpmdev:
3209 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg) < 0) {
3210 exit(1);
3211 }
3212 break;
3213#endif
Marcelo Tosattic9027602010-03-01 20:25:08 -03003214 case QEMU_OPTION_mempath:
3215 mem_path = optarg;
3216 break;
Marcelo Tosattic9027602010-03-01 20:25:08 -03003217 case QEMU_OPTION_mem_prealloc:
3218 mem_prealloc = 1;
3219 break;
bellardcd6f1162004-05-13 22:02:20 +00003220 case QEMU_OPTION_d:
Matthew Fernandezc235d732011-06-07 16:32:40 +00003221 log_mask = optarg;
3222 break;
3223 case QEMU_OPTION_D:
3224 log_file = optarg;
bellardcd6f1162004-05-13 22:02:20 +00003225 break;
bellardcd6f1162004-05-13 22:02:20 +00003226 case QEMU_OPTION_s:
Markus Armbrusteref0c4a02012-02-07 15:09:13 +01003227 add_device_config(DEV_GDB, "tcp::" DEFAULT_GDBSTUB_PORT);
bellardcd6f1162004-05-13 22:02:20 +00003228 break;
aliguori59030a82009-04-05 18:43:41 +00003229 case QEMU_OPTION_gdb:
Markus Armbrusteref0c4a02012-02-07 15:09:13 +01003230 add_device_config(DEV_GDB, optarg);
bellardcd6f1162004-05-13 22:02:20 +00003231 break;
bellardcd6f1162004-05-13 22:02:20 +00003232 case QEMU_OPTION_L:
Gerd Hoffmann45240512013-03-08 11:42:24 +01003233 if (data_dir_idx < ARRAY_SIZE(data_dir)) {
3234 data_dir[data_dir_idx++] = optarg;
3235 }
bellardcd6f1162004-05-13 22:02:20 +00003236 break;
j_mayer1192dad2007-10-05 13:08:35 +00003237 case QEMU_OPTION_bios:
Gerd Hoffmann1442d3e2013-10-15 16:57:45 +02003238 qemu_opts_set(qemu_find_opts("machine"), 0, "firmware", optarg);
j_mayer1192dad2007-10-05 13:08:35 +00003239 break;
aurel321b530a62009-04-05 20:08:59 +00003240 case QEMU_OPTION_singlestep:
3241 singlestep = 1;
3242 break;
bellardcd6f1162004-05-13 22:02:20 +00003243 case QEMU_OPTION_S:
pbrook3c07f8e2007-01-21 16:47:01 +00003244 autostart = 0;
bellardcd6f1162004-05-13 22:02:20 +00003245 break;
bellard3d11d0e2004-12-12 16:56:30 +00003246 case QEMU_OPTION_k:
3247 keyboard_layout = optarg;
3248 break;
bellardee22c2f2004-06-03 12:49:50 +00003249 case QEMU_OPTION_localtime:
3250 rtc_utc = 0;
3251 break;
malc3893c122008-09-28 00:42:05 +00003252 case QEMU_OPTION_vga:
Blue Swirla369da52011-09-27 19:15:42 +00003253 vga_model = optarg;
Paolo Bonzini7f1b17f2012-05-10 09:39:17 +02003254 default_vga = 0;
bellard1bfe8562004-07-08 21:17:50 +00003255 break;
bellarde9b137c2004-06-21 16:46:10 +00003256 case QEMU_OPTION_g:
3257 {
3258 const char *p;
3259 int w, h, depth;
3260 p = optarg;
3261 w = strtol(p, (char **)&p, 10);
3262 if (w <= 0) {
3263 graphic_error:
3264 fprintf(stderr, "qemu: invalid resolution or depth\n");
3265 exit(1);
3266 }
3267 if (*p != 'x')
3268 goto graphic_error;
3269 p++;
3270 h = strtol(p, (char **)&p, 10);
3271 if (h <= 0)
3272 goto graphic_error;
3273 if (*p == 'x') {
3274 p++;
3275 depth = strtol(p, (char **)&p, 10);
ths5fafdf22007-09-16 21:08:06 +00003276 if (depth != 8 && depth != 15 && depth != 16 &&
bellarde9b137c2004-06-21 16:46:10 +00003277 depth != 24 && depth != 32)
3278 goto graphic_error;
3279 } else if (*p == '\0') {
3280 depth = graphic_depth;
3281 } else {
3282 goto graphic_error;
3283 }
ths3b46e622007-09-17 08:09:54 +00003284
bellarde9b137c2004-06-21 16:46:10 +00003285 graphic_width = w;
3286 graphic_height = h;
3287 graphic_depth = depth;
3288 }
3289 break;
ths20d8a3e2007-02-18 17:04:49 +00003290 case QEMU_OPTION_echr:
3291 {
3292 char *r;
3293 term_escape_char = strtol(optarg, &r, 0);
3294 if (r == optarg)
3295 printf("Bad argument to echr\n");
3296 break;
3297 }
bellard82c643f2004-07-14 17:28:13 +00003298 case QEMU_OPTION_monitor:
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01003299 default_monitor = 0;
Luiz Capitulino70e098a2013-05-16 12:02:55 -04003300 if (strncmp(optarg, "none", 4)) {
3301 monitor_parse(optarg, "readline");
3302 }
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01003303 break;
3304 case QEMU_OPTION_qmp:
3305 monitor_parse(optarg, "control");
Anthony Liguori2d114dc2010-03-21 14:14:38 -05003306 default_monitor = 0;
bellard82c643f2004-07-14 17:28:13 +00003307 break;
Gerd Hoffmann22a0e042009-12-08 13:11:51 +01003308 case QEMU_OPTION_mon:
Gerd Hoffmann3329f072010-08-20 13:52:01 +02003309 opts = qemu_opts_parse(qemu_find_opts("mon"), optarg, 1);
Gerd Hoffmann22a0e042009-12-08 13:11:51 +01003310 if (!opts) {
Gerd Hoffmann22a0e042009-12-08 13:11:51 +01003311 exit(1);
3312 }
Anthony Liguori2d114dc2010-03-21 14:14:38 -05003313 default_monitor = 0;
Gerd Hoffmann22a0e042009-12-08 13:11:51 +01003314 break;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003315 case QEMU_OPTION_chardev:
Gerd Hoffmann3329f072010-08-20 13:52:01 +02003316 opts = qemu_opts_parse(qemu_find_opts("chardev"), optarg, 1);
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003317 if (!opts) {
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003318 exit(1);
3319 }
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003320 break;
Gautham R Shenoy74db9202010-04-29 17:44:43 +05303321 case QEMU_OPTION_fsdev:
Gerd Hoffmann03b0ba72010-08-20 13:52:02 +02003322 olist = qemu_find_opts("fsdev");
3323 if (!olist) {
3324 fprintf(stderr, "fsdev is not supported by this qemu build.\n");
3325 exit(1);
3326 }
3327 opts = qemu_opts_parse(olist, optarg, 1);
Gautham R Shenoy74db9202010-04-29 17:44:43 +05303328 if (!opts) {
Gautham R Shenoy74db9202010-04-29 17:44:43 +05303329 exit(1);
3330 }
3331 break;
Gautham R Shenoy3d54abc2010-04-29 17:45:03 +05303332 case QEMU_OPTION_virtfs: {
Stefan Hajnoczie14ea472011-03-16 08:31:43 +00003333 QemuOpts *fsdev;
3334 QemuOpts *device;
M. Mohan Kumar84a87cc2011-12-14 13:58:47 +05303335 const char *writeout, *sock_fd, *socket;
Gautham R Shenoy3d54abc2010-04-29 17:45:03 +05303336
Gerd Hoffmann03b0ba72010-08-20 13:52:02 +02003337 olist = qemu_find_opts("virtfs");
3338 if (!olist) {
3339 fprintf(stderr, "virtfs is not supported by this qemu build.\n");
3340 exit(1);
3341 }
3342 opts = qemu_opts_parse(olist, optarg, 1);
Gautham R Shenoy3d54abc2010-04-29 17:45:03 +05303343 if (!opts) {
Gautham R Shenoy3d54abc2010-04-29 17:45:03 +05303344 exit(1);
3345 }
3346
Aneesh Kumar K.Vfbcbf102011-10-13 12:28:04 +05303347 if (qemu_opt_get(opts, "fsdriver") == NULL ||
Aneesh Kumar K.V99519f02011-12-14 13:48:59 +05303348 qemu_opt_get(opts, "mount_tag") == NULL) {
3349 fprintf(stderr, "Usage: -virtfs fsdriver,mount_tag=tag.\n");
Venkateswararao Jujjuri (JV)9ce56db2010-06-14 13:34:40 -07003350 exit(1);
3351 }
Stefan Hajnoczie14ea472011-03-16 08:31:43 +00003352 fsdev = qemu_opts_create(qemu_find_opts("fsdev"),
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03003353 qemu_opt_get(opts, "mount_tag"),
3354 1, NULL);
Stefan Hajnoczie14ea472011-03-16 08:31:43 +00003355 if (!fsdev) {
3356 fprintf(stderr, "duplicate fsdev id: %s\n",
3357 qemu_opt_get(opts, "mount_tag"));
Gautham R Shenoy3d54abc2010-04-29 17:45:03 +05303358 exit(1);
3359 }
Aneesh Kumar K.Vd3ab98e2011-10-12 19:11:23 +05303360
3361 writeout = qemu_opt_get(opts, "writeout");
3362 if (writeout) {
3363#ifdef CONFIG_SYNC_FILE_RANGE
3364 qemu_opt_set(fsdev, "writeout", writeout);
3365#else
3366 fprintf(stderr, "writeout=immediate not supported on "
3367 "this platform\n");
3368 exit(1);
3369#endif
3370 }
Aneesh Kumar K.Vfbcbf102011-10-13 12:28:04 +05303371 qemu_opt_set(fsdev, "fsdriver", qemu_opt_get(opts, "fsdriver"));
Stefan Hajnoczie14ea472011-03-16 08:31:43 +00003372 qemu_opt_set(fsdev, "path", qemu_opt_get(opts, "path"));
3373 qemu_opt_set(fsdev, "security_model",
3374 qemu_opt_get(opts, "security_model"));
M. Mohan Kumar84a87cc2011-12-14 13:58:47 +05303375 socket = qemu_opt_get(opts, "socket");
3376 if (socket) {
3377 qemu_opt_set(fsdev, "socket", socket);
3378 }
M. Mohan Kumar4c793dd2011-12-14 13:49:28 +05303379 sock_fd = qemu_opt_get(opts, "sock_fd");
3380 if (sock_fd) {
3381 qemu_opt_set(fsdev, "sock_fd", sock_fd);
3382 }
Gautham R Shenoy3d54abc2010-04-29 17:45:03 +05303383
M. Mohan Kumar2c74c2c2011-10-25 12:10:39 +05303384 qemu_opt_set_bool(fsdev, "readonly",
3385 qemu_opt_get_bool(opts, "readonly", 0));
Peter Crosthwaite87ea75d2014-01-01 18:49:17 -08003386 device = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
3387 &error_abort);
Stefan Hajnoczie14ea472011-03-16 08:31:43 +00003388 qemu_opt_set(device, "driver", "virtio-9p-pci");
3389 qemu_opt_set(device, "fsdev",
3390 qemu_opt_get(opts, "mount_tag"));
3391 qemu_opt_set(device, "mount_tag",
3392 qemu_opt_get(opts, "mount_tag"));
Gautham R Shenoy3d54abc2010-04-29 17:45:03 +05303393 break;
3394 }
Aneesh Kumar K.V9db221a2011-10-25 12:10:40 +05303395 case QEMU_OPTION_virtfs_synth: {
3396 QemuOpts *fsdev;
3397 QemuOpts *device;
3398
Luiz Capitulino8be7e7e2012-03-20 15:51:57 -03003399 fsdev = qemu_opts_create(qemu_find_opts("fsdev"), "v_synth",
3400 1, NULL);
Aneesh Kumar K.V9db221a2011-10-25 12:10:40 +05303401 if (!fsdev) {
3402 fprintf(stderr, "duplicate option: %s\n", "virtfs_synth");
3403 exit(1);
3404 }
3405 qemu_opt_set(fsdev, "fsdriver", "synth");
Aneesh Kumar K.V9db221a2011-10-25 12:10:40 +05303406
Peter Crosthwaite87ea75d2014-01-01 18:49:17 -08003407 device = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
3408 &error_abort);
Aneesh Kumar K.V9db221a2011-10-25 12:10:40 +05303409 qemu_opt_set(device, "driver", "virtio-9p-pci");
3410 qemu_opt_set(device, "fsdev", "v_synth");
3411 qemu_opt_set(device, "mount_tag", "v_synth");
3412 break;
3413 }
bellard82c643f2004-07-14 17:28:13 +00003414 case QEMU_OPTION_serial:
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01003415 add_device_config(DEV_SERIAL, optarg);
3416 default_serial = 0;
Jan Kiszka18141ed2010-03-07 11:28:40 +01003417 if (strncmp(optarg, "mon:", 4) == 0) {
3418 default_monitor = 0;
3419 }
bellard82c643f2004-07-14 17:28:13 +00003420 break;
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01003421 case QEMU_OPTION_watchdog:
Markus Armbruster09aaa162009-08-21 10:31:34 +02003422 if (watchdog) {
3423 fprintf(stderr,
3424 "qemu: only one watchdog option may be given\n");
3425 return 1;
3426 }
3427 watchdog = optarg;
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01003428 break;
3429 case QEMU_OPTION_watchdog_action:
3430 if (select_watchdog_action(optarg) == -1) {
3431 fprintf(stderr, "Unknown -watchdog-action parameter\n");
3432 exit(1);
3433 }
3434 break;
aliguori51ecf132009-01-15 20:06:40 +00003435 case QEMU_OPTION_virtiocon:
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01003436 add_device_config(DEV_VIRTCON, optarg);
3437 default_virtcon = 0;
Jan Kiszka18141ed2010-03-07 11:28:40 +01003438 if (strncmp(optarg, "mon:", 4) == 0) {
3439 default_monitor = 0;
3440 }
aliguori51ecf132009-01-15 20:06:40 +00003441 break;
bellard6508fe52005-01-15 12:02:56 +00003442 case QEMU_OPTION_parallel:
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01003443 add_device_config(DEV_PARALLEL, optarg);
3444 default_parallel = 0;
Jan Kiszka18141ed2010-03-07 11:28:40 +01003445 if (strncmp(optarg, "mon:", 4) == 0) {
3446 default_monitor = 0;
3447 }
bellard6508fe52005-01-15 12:02:56 +00003448 break;
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08003449 case QEMU_OPTION_debugcon:
3450 add_device_config(DEV_DEBUGCON, optarg);
3451 break;
bellardd63d3072004-10-03 13:29:03 +00003452 case QEMU_OPTION_loadvm:
3453 loadvm = optarg;
3454 break;
3455 case QEMU_OPTION_full_screen:
3456 full_screen = 1;
3457 break;
ths43523e92007-02-18 18:19:32 +00003458 case QEMU_OPTION_no_frame:
3459 no_frame = 1;
3460 break;
ths3780e192007-06-21 21:08:02 +00003461 case QEMU_OPTION_alt_grab:
3462 alt_grab = 1;
3463 break;
Dustin Kirkland0ca9f8a2009-09-17 15:48:04 -05003464 case QEMU_OPTION_ctrl_grab:
3465 ctrl_grab = 1;
3466 break;
ths667acca2006-12-11 02:08:05 +00003467 case QEMU_OPTION_no_quit:
3468 no_quit = 1;
3469 break;
aliguori7d957bd2009-01-15 22:14:11 +00003470 case QEMU_OPTION_sdl:
Michael Tokarev24f6ff82013-06-15 14:44:20 +04003471#ifdef CONFIG_SDL
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003472 display_type = DT_SDL;
aliguori7d957bd2009-01-15 22:14:11 +00003473 break;
Jes Sorensen58fc0962011-03-16 13:33:34 +01003474#else
Jes Sorensen58fc0962011-03-16 13:33:34 +01003475 fprintf(stderr, "SDL support is disabled\n");
3476 exit(1);
ths667acca2006-12-11 02:08:05 +00003477#endif
bellardf7cce892004-12-08 22:21:25 +00003478 case QEMU_OPTION_pidfile:
ths93815bc2007-03-19 15:58:31 +00003479 pid_file = optarg;
bellardf7cce892004-12-08 22:21:25 +00003480 break;
bellarda09db212005-04-30 16:10:35 +00003481 case QEMU_OPTION_win2k_hack:
3482 win2k_install_hack = 1;
3483 break;
Jan Kiszka433acf02012-01-23 20:15:12 +01003484 case QEMU_OPTION_rtc_td_hack: {
3485 static GlobalProperty slew_lost_ticks[] = {
3486 {
3487 .driver = "mc146818rtc",
3488 .property = "lost_tick_policy",
3489 .value = "slew",
3490 },
3491 { /* end of list */ }
3492 };
3493
3494 qdev_prop_register_global_list(slew_lost_ticks);
aliguori73822ec2009-01-15 20:11:34 +00003495 break;
Jan Kiszka433acf02012-01-23 20:15:12 +01003496 }
aliguori8a92ea22009-02-27 20:12:36 +00003497 case QEMU_OPTION_acpitable:
Laszlo Ersek0c764a92013-03-21 00:23:17 +01003498 opts = qemu_opts_parse(qemu_find_opts("acpi"), optarg, 1);
Laszlo Ersekf46e7202013-11-28 18:12:59 +01003499 if (!opts) {
3500 exit(1);
3501 }
Laszlo Ersek0c764a92013-03-21 00:23:17 +01003502 do_acpitable_option(opts);
aliguori8a92ea22009-02-27 20:12:36 +00003503 break;
aliguorib6f6e3d2009-04-17 18:59:56 +00003504 case QEMU_OPTION_smbios:
Markus Armbruster4f953d22013-08-16 15:18:29 +02003505 opts = qemu_opts_parse(qemu_find_opts("smbios"), optarg, 0);
Laszlo Ersekf46e7202013-11-28 18:12:59 +01003506 if (!opts) {
3507 exit(1);
3508 }
Markus Armbruster4f953d22013-08-16 15:18:29 +02003509 do_smbios_option(opts);
aliguorib6f6e3d2009-04-17 18:59:56 +00003510 break;
aliguori7ba1e612008-11-05 16:04:33 +00003511 case QEMU_OPTION_enable_kvm:
Anthony PERARD303d4e82010-09-21 20:05:31 +01003512 olist = qemu_find_opts("machine");
Anthony PERARD303d4e82010-09-21 20:05:31 +01003513 qemu_opts_parse(olist, "accel=kvm", 0);
3514 break;
3515 case QEMU_OPTION_machine:
3516 olist = qemu_find_opts("machine");
Jan Kiszka9052ea62011-07-23 12:38:37 +02003517 opts = qemu_opts_parse(olist, optarg, 1);
Anthony PERARD303d4e82010-09-21 20:05:31 +01003518 if (!opts) {
Anthony PERARD303d4e82010-09-21 20:05:31 +01003519 exit(1);
3520 }
Jan Kiszka2645c6d2011-07-25 18:11:20 +02003521 optarg = qemu_opt_get(opts, "type");
3522 if (optarg) {
3523 machine = machine_parse(optarg);
3524 }
aliguori7ba1e612008-11-05 16:04:33 +00003525 break;
Jan Kiszkaa0dac022012-10-05 14:51:45 -03003526 case QEMU_OPTION_no_kvm:
3527 olist = qemu_find_opts("machine");
3528 qemu_opts_parse(olist, "accel=tcg", 0);
3529 break;
Jan Kiszka4086bde2012-10-05 14:51:41 -03003530 case QEMU_OPTION_no_kvm_pit: {
3531 fprintf(stderr, "Warning: KVM PIT can no longer be disabled "
3532 "separately.\n");
3533 break;
3534 }
Jan Kiszkac21fb4f2012-10-05 14:51:42 -03003535 case QEMU_OPTION_no_kvm_pit_reinjection: {
3536 static GlobalProperty kvm_pit_lost_tick_policy[] = {
3537 {
3538 .driver = "kvm-pit",
3539 .property = "lost_tick_policy",
3540 .value = "discard",
3541 },
3542 { /* end of list */ }
3543 };
3544
3545 fprintf(stderr, "Warning: option deprecated, use "
3546 "lost_tick_policy property of kvm-pit instead.\n");
3547 qdev_prop_register_global_list(kvm_pit_lost_tick_policy);
3548 break;
3549 }
bellardbb36d472005-11-05 14:22:28 +00003550 case QEMU_OPTION_usb:
Peter Maydellfa5358c2012-11-22 16:48:45 +00003551 olist = qemu_find_opts("machine");
3552 qemu_opts_parse(olist, "usb=on", 0);
bellardbb36d472005-11-05 14:22:28 +00003553 break;
bellarda594cfb2005-11-06 16:13:29 +00003554 case QEMU_OPTION_usbdevice:
Peter Maydellfa5358c2012-11-22 16:48:45 +00003555 olist = qemu_find_opts("machine");
3556 qemu_opts_parse(olist, "usb=on", 0);
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02003557 add_device_config(DEV_USB, optarg);
3558 break;
3559 case QEMU_OPTION_device:
Gerd Hoffmann3329f072010-08-20 13:52:01 +02003560 if (!qemu_opts_parse(qemu_find_opts("device"), optarg, 1)) {
Gerd Hoffmannf31d07d2009-07-31 12:25:37 +02003561 exit(1);
3562 }
bellarda594cfb2005-11-06 16:13:29 +00003563 break;
bellard6a00d602005-11-21 23:25:50 +00003564 case QEMU_OPTION_smp:
Michael Tokarev12b7f572013-06-24 15:06:52 +04003565 if (!qemu_opts_parse(qemu_find_opts("smp-opts"), optarg, 1)) {
Jes Sorensen6be68d72009-07-23 17:03:42 +02003566 exit(1);
3567 }
bellard6a00d602005-11-21 23:25:50 +00003568 break;
bellard24236862006-04-30 21:28:36 +00003569 case QEMU_OPTION_vnc:
Jes Sorensen821601e2011-03-16 13:33:36 +01003570#ifdef CONFIG_VNC
Gerd Hoffmann6b62dc22010-08-25 10:51:06 +02003571 display_remote++;
Jes Sorensen821601e2011-03-16 13:33:36 +01003572 vnc_display = optarg;
3573#else
3574 fprintf(stderr, "VNC support is disabled\n");
3575 exit(1);
3576#endif
3577 break;
bellard6515b202006-05-03 22:02:44 +00003578 case QEMU_OPTION_no_acpi:
3579 acpi_enabled = 0;
3580 break;
aliguori16b29ae2008-12-17 23:28:44 +00003581 case QEMU_OPTION_no_hpet:
3582 no_hpet = 1;
3583 break;
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02003584 case QEMU_OPTION_balloon:
3585 if (balloon_parse(optarg) < 0) {
3586 fprintf(stderr, "Unknown -balloon argument %s\n", optarg);
3587 exit(1);
3588 }
Eduardo Habkostdf97b922009-06-10 16:34:08 -03003589 break;
bellardd1beab82006-10-02 19:44:22 +00003590 case QEMU_OPTION_no_reboot:
3591 no_reboot = 1;
3592 break;
aurel32b2f76162008-04-11 21:35:52 +00003593 case QEMU_OPTION_no_shutdown:
3594 no_shutdown = 1;
3595 break;
balrog9467cd42007-05-01 01:34:14 +00003596 case QEMU_OPTION_show_cursor:
3597 cursor_hide = 0;
3598 break;
blueswir18fcb1b92008-09-18 18:29:08 +00003599 case QEMU_OPTION_uuid:
3600 if(qemu_uuid_parse(optarg, qemu_uuid) < 0) {
3601 fprintf(stderr, "Fail to parse UUID string."
3602 " Wrong format.\n");
3603 exit(1);
3604 }
Markus Armbrusterfc3b3292013-08-16 15:18:31 +02003605 qemu_uuid_set = true;
blueswir18fcb1b92008-09-18 18:29:08 +00003606 break;
ths9ae02552007-01-05 17:39:04 +00003607 case QEMU_OPTION_option_rom:
3608 if (nb_option_roms >= MAX_OPTION_ROMS) {
3609 fprintf(stderr, "Too many option ROMs\n");
3610 exit(1);
3611 }
Gleb Natapov2e55e842010-12-08 13:35:07 +02003612 opts = qemu_opts_parse(qemu_find_opts("option-rom"), optarg, 1);
Markus Armbruster49295eb2013-02-08 21:22:19 +01003613 if (!opts) {
3614 exit(1);
3615 }
Gleb Natapov2e55e842010-12-08 13:35:07 +02003616 option_rom[nb_option_roms].name = qemu_opt_get(opts, "romfile");
3617 option_rom[nb_option_roms].bootindex =
3618 qemu_opt_get_number(opts, "bootindex", -1);
3619 if (!option_rom[nb_option_roms].name) {
3620 fprintf(stderr, "Option ROM file is not specified\n");
3621 exit(1);
3622 }
ths9ae02552007-01-05 17:39:04 +00003623 nb_option_roms++;
3624 break;
pbrook8e716212007-01-20 17:12:09 +00003625 case QEMU_OPTION_semihosting:
3626 semihosting_enabled = 1;
3627 break;
Jan Kiszka88eed342012-10-05 14:51:44 -03003628 case QEMU_OPTION_tdf:
3629 fprintf(stderr, "Warning: user space PIT time drift fix "
3630 "is no longer supported.\n");
3631 break;
thsc35734b2007-03-19 15:17:08 +00003632 case QEMU_OPTION_name:
Anthony Liguori7267c092011-08-20 22:09:37 -05003633 qemu_name = g_strdup(optarg);
Andi Kleen18894652009-07-02 09:34:17 +02003634 {
3635 char *p = strchr(qemu_name, ',');
3636 if (p != NULL) {
3637 *p++ = 0;
3638 if (strncmp(p, "process=", 8)) {
Aurelien Jarno5697f6a2010-12-27 18:29:20 +01003639 fprintf(stderr, "Unknown subargument %s to -name\n", p);
Andi Kleen18894652009-07-02 09:34:17 +02003640 exit(1);
3641 }
3642 p += 8;
Jes Sorensence798cf2010-06-10 11:42:31 +02003643 os_set_proc_name(p);
Laszlo Ersek4d8b3c62013-03-21 00:23:13 +01003644 }
3645 }
thsc35734b2007-03-19 15:17:08 +00003646 break;
blueswir166508602007-05-01 14:16:52 +00003647 case QEMU_OPTION_prom_env:
3648 if (nb_prom_envs >= MAX_PROM_ENVS) {
3649 fprintf(stderr, "Too many prom variables\n");
3650 exit(1);
3651 }
3652 prom_envs[nb_prom_envs] = optarg;
3653 nb_prom_envs++;
3654 break;
balrog2b8f2d42007-07-27 22:08:46 +00003655 case QEMU_OPTION_old_param:
3656 old_param = 1;
ths05ebd532008-01-08 19:32:16 +00003657 break;
thsf3dcfad2007-08-24 01:26:02 +00003658 case QEMU_OPTION_clock:
Alex Bligh6d327172013-08-21 16:02:59 +01003659 /* Clock options no longer exist. Keep this option for
3660 * backward compatibility.
3661 */
thsf3dcfad2007-08-24 01:26:02 +00003662 break;
bellard7e0af5d02007-11-07 16:24:33 +00003663 case QEMU_OPTION_startdate:
Jan Kiszka1ed2fc12009-09-15 13:36:04 +02003664 configure_rtc_date_offset(optarg, 1);
3665 break;
3666 case QEMU_OPTION_rtc:
Gerd Hoffmann3329f072010-08-20 13:52:01 +02003667 opts = qemu_opts_parse(qemu_find_opts("rtc"), optarg, 0);
Jan Kiszka1ed2fc12009-09-15 13:36:04 +02003668 if (!opts) {
Jan Kiszka1ed2fc12009-09-15 13:36:04 +02003669 exit(1);
bellard7e0af5d02007-11-07 16:24:33 +00003670 }
Jan Kiszka1ed2fc12009-09-15 13:36:04 +02003671 configure_rtc(opts);
bellard7e0af5d02007-11-07 16:24:33 +00003672 break;
bellard26a5f132008-05-28 12:30:31 +00003673 case QEMU_OPTION_tb_size:
Jan Kiszkad5ab9712011-08-02 16:10:21 +02003674 tcg_tb_size = strtol(optarg, NULL, 0);
3675 if (tcg_tb_size < 0) {
3676 tcg_tb_size = 0;
3677 }
bellard26a5f132008-05-28 12:30:31 +00003678 break;
pbrook2e70f6e2008-06-29 01:03:05 +00003679 case QEMU_OPTION_icount:
Paolo Bonzini4e3de9e2010-03-10 11:38:48 +01003680 icount_option = optarg;
pbrook2e70f6e2008-06-29 01:03:05 +00003681 break;
aliguori5bb79102008-10-13 03:12:02 +00003682 case QEMU_OPTION_incoming:
3683 incoming = optarg;
Stefano Stabellini81323a62012-01-18 12:23:13 +00003684 runstate_set(RUN_STATE_INMIGRATE);
aliguori5bb79102008-10-13 03:12:02 +00003685 break;
Gerd Hoffmannd8c208d2009-12-08 13:11:46 +01003686 case QEMU_OPTION_nodefaults:
3687 default_serial = 0;
3688 default_parallel = 0;
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01003689 default_virtcon = 0;
Christian Borntraeger2e788492013-01-25 06:00:19 +00003690 default_sclp = 0;
Gerd Hoffmannd8c208d2009-12-08 13:11:46 +01003691 default_monitor = 0;
Gerd Hoffmanncb4522c2009-12-08 13:11:47 +01003692 default_net = 0;
Gerd Hoffmannac33f8f2009-12-16 14:25:39 +01003693 default_floppy = 0;
3694 default_cdrom = 0;
3695 default_sdcard = 0;
Paolo Bonzini7f1b17f2012-05-10 09:39:17 +02003696 default_vga = 0;
Gerd Hoffmannd8c208d2009-12-08 13:11:46 +01003697 break;
aliguorie37630c2009-04-22 15:19:10 +00003698 case QEMU_OPTION_xen_domid:
Blue Swirlad960902010-03-29 19:23:52 +00003699 if (!(xen_available())) {
3700 printf("Option %s not supported for this target\n", popt->name);
3701 exit(1);
3702 }
aliguorie37630c2009-04-22 15:19:10 +00003703 xen_domid = atoi(optarg);
3704 break;
3705 case QEMU_OPTION_xen_create:
Blue Swirlad960902010-03-29 19:23:52 +00003706 if (!(xen_available())) {
3707 printf("Option %s not supported for this target\n", popt->name);
3708 exit(1);
3709 }
aliguorie37630c2009-04-22 15:19:10 +00003710 xen_mode = XEN_CREATE;
3711 break;
3712 case QEMU_OPTION_xen_attach:
Blue Swirlad960902010-03-29 19:23:52 +00003713 if (!(xen_available())) {
3714 printf("Option %s not supported for this target\n", popt->name);
3715 exit(1);
3716 }
aliguorie37630c2009-04-22 15:19:10 +00003717 xen_mode = XEN_ATTACH;
3718 break;
Prerna Saxenaab6540d2010-08-09 11:48:32 +01003719 case QEMU_OPTION_trace:
Lluíse4858972011-08-31 20:31:03 +02003720 {
Prerna Saxenaab6540d2010-08-09 11:48:32 +01003721 opts = qemu_opts_parse(qemu_find_opts("trace"), optarg, 0);
Lluíse4858972011-08-31 20:31:03 +02003722 if (!opts) {
3723 exit(1);
Prerna Saxenaab6540d2010-08-09 11:48:32 +01003724 }
Lluís23d15e82011-08-31 20:31:31 +02003725 trace_events = qemu_opt_get(opts, "events");
Lluíse4858972011-08-31 20:31:03 +02003726 trace_file = qemu_opt_get(opts, "file");
Prerna Saxenaab6540d2010-08-09 11:48:32 +01003727 break;
Lluíse4858972011-08-31 20:31:03 +02003728 }
Gerd Hoffmann715a6642009-10-14 10:39:28 +02003729 case QEMU_OPTION_readconfig:
3730 {
Kevin Wolfdcfb0932010-03-05 17:25:55 +01003731 int ret = qemu_read_config_file(optarg);
3732 if (ret < 0) {
3733 fprintf(stderr, "read config %s: %s\n", optarg,
3734 strerror(-ret));
Gerd Hoffmann715a6642009-10-14 10:39:28 +02003735 exit(1);
3736 }
Gerd Hoffmann715a6642009-10-14 10:39:28 +02003737 break;
3738 }
Gerd Hoffmann29b00402010-03-11 11:13:27 -03003739 case QEMU_OPTION_spice:
3740 olist = qemu_find_opts("spice");
3741 if (!olist) {
3742 fprintf(stderr, "spice is not supported by this qemu build.\n");
3743 exit(1);
3744 }
3745 opts = qemu_opts_parse(olist, optarg, 0);
3746 if (!opts) {
Gerd Hoffmann29b00402010-03-11 11:13:27 -03003747 exit(1);
3748 }
Gerd Hoffmannf963e4d2013-02-25 16:02:30 +01003749 display_remote++;
Gerd Hoffmann29b00402010-03-11 11:13:27 -03003750 break;
Gerd Hoffmann715a6642009-10-14 10:39:28 +02003751 case QEMU_OPTION_writeconfig:
3752 {
3753 FILE *fp;
3754 if (strcmp(optarg, "-") == 0) {
3755 fp = stdout;
3756 } else {
3757 fp = fopen(optarg, "w");
3758 if (fp == NULL) {
3759 fprintf(stderr, "open %s: %s\n", optarg, strerror(errno));
3760 exit(1);
3761 }
3762 }
3763 qemu_config_write(fp);
3764 fclose(fp);
3765 break;
3766 }
Anthony Liguoric7f0f3b2012-03-28 15:42:02 +02003767 case QEMU_OPTION_qtest:
3768 qtest_chrdev = optarg;
3769 break;
3770 case QEMU_OPTION_qtest_log:
3771 qtest_log = optarg;
3772 break;
Eduardo Otubo7d76ad42012-08-14 18:44:08 -03003773 case QEMU_OPTION_sandbox:
3774 opts = qemu_opts_parse(qemu_find_opts("sandbox"), optarg, 1);
3775 if (!opts) {
Markus Armbruster49295eb2013-02-08 21:22:19 +01003776 exit(1);
Eduardo Otubo7d76ad42012-08-14 18:44:08 -03003777 }
3778 break;
Corey Bryant587ed6b2012-10-18 15:19:34 -04003779 case QEMU_OPTION_add_fd:
3780#ifndef _WIN32
3781 opts = qemu_opts_parse(qemu_find_opts("add-fd"), optarg, 0);
3782 if (!opts) {
Markus Armbruster49295eb2013-02-08 21:22:19 +01003783 exit(1);
Corey Bryant587ed6b2012-10-18 15:19:34 -04003784 }
3785#else
3786 error_report("File descriptor passing is disabled on this "
3787 "platform");
3788 exit(1);
3789#endif
3790 break;
Anthony Liguori68d98d32012-06-25 14:36:33 -05003791 case QEMU_OPTION_object:
3792 opts = qemu_opts_parse(qemu_find_opts("object"), optarg, 1);
Markus Armbruster49295eb2013-02-08 21:22:19 +01003793 if (!opts) {
3794 exit(1);
3795 }
Anthony Liguori68d98d32012-06-25 14:36:33 -05003796 break;
Satoru Moriya888a6bc2013-04-19 16:42:06 +02003797 case QEMU_OPTION_realtime:
3798 opts = qemu_opts_parse(qemu_find_opts("realtime"), optarg, 0);
3799 if (!opts) {
3800 exit(1);
3801 }
3802 configure_realtime(opts);
3803 break;
Seiji Aguchi5e2ac512013-07-03 23:02:46 -04003804 case QEMU_OPTION_msg:
3805 opts = qemu_opts_parse(qemu_find_opts("msg"), optarg, 0);
3806 if (!opts) {
3807 exit(1);
3808 }
3809 configure_msg(opts);
3810 break;
Jes Sorensen59a52642010-06-10 11:42:25 +02003811 default:
3812 os_parse_cmd_args(popt->index, optarg);
bellardcd6f1162004-05-13 22:02:20 +00003813 }
bellard0824d6f2003-06-24 13:42:40 +00003814 }
3815 }
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +01003816 loc_set_none();
bellard330d0412003-07-26 18:11:40 +00003817
Paolo Bonzini1c537862012-10-30 00:17:12 +01003818 if (qemu_init_main_loop()) {
3819 fprintf(stderr, "qemu_init_main_loop failed\n");
3820 exit(1);
3821 }
3822
Eduardo Otubo7d76ad42012-08-14 18:44:08 -03003823 if (qemu_opts_foreach(qemu_find_opts("sandbox"), parse_sandbox, NULL, 0)) {
3824 exit(1);
3825 }
3826
Corey Bryant587ed6b2012-10-18 15:19:34 -04003827#ifndef _WIN32
3828 if (qemu_opts_foreach(qemu_find_opts("add-fd"), parse_add_fd, NULL, 1)) {
3829 exit(1);
3830 }
3831
3832 if (qemu_opts_foreach(qemu_find_opts("add-fd"), cleanup_add_fd, NULL, 1)) {
3833 exit(1);
3834 }
3835#endif
3836
Dunrong Huangfb7c2692012-07-24 00:42:20 +08003837 if (machine == NULL) {
3838 fprintf(stderr, "No machine found.\n");
3839 exit(1);
3840 }
3841
Crístian Viana93bfef42012-05-30 00:35:51 -03003842 if (machine->hw_version) {
3843 qemu_set_version(machine->hw_version);
3844 }
3845
Anthony Liguori68d98d32012-06-25 14:36:33 -05003846 if (qemu_opts_foreach(qemu_find_opts("object"),
3847 object_create, NULL, 0) != 0) {
3848 exit(1);
3849 }
3850
Eduardo Habkostecf40be2012-03-09 16:19:07 -03003851 /* Init CPU def lists, based on config
3852 * - Must be called after all the qemu_read_config_file() calls
3853 * - Must be called before list_cpus()
3854 * - Must be called before machine->init()
3855 */
3856 cpudef_init();
3857
Peter Maydellc8057f92012-08-02 13:45:54 +01003858 if (cpu_model && is_help_option(cpu_model)) {
Eduardo Habkost1d6528a2012-03-21 09:33:40 -03003859 list_cpus(stdout, &fprintf, cpu_model);
Eduardo Habkostecf40be2012-03-09 16:19:07 -03003860 exit(0);
3861 }
3862
Matthew Fernandezc235d732011-06-07 16:32:40 +00003863 /* Open the logfile at this point, if necessary. We can't open the logfile
3864 * when encountering either of the logging options (-d or -D) because the
3865 * other one may be encountered later on the command line, changing the
3866 * location or level of logging.
3867 */
3868 if (log_mask) {
Peter Maydellb946bff2013-02-11 16:41:24 +00003869 int mask;
Matthew Fernandezc235d732011-06-07 16:32:40 +00003870 if (log_file) {
Peter Maydell9a7e5422013-02-11 16:41:20 +00003871 qemu_set_log_filename(log_file);
Matthew Fernandezc235d732011-06-07 16:32:40 +00003872 }
Peter Maydellb946bff2013-02-11 16:41:24 +00003873
3874 mask = qemu_str_to_log_mask(log_mask);
3875 if (!mask) {
3876 qemu_print_log_usage(stdout);
3877 exit(1);
3878 }
3879 qemu_set_log(mask);
Matthew Fernandezc235d732011-06-07 16:32:40 +00003880 }
3881
Lluís23d15e82011-08-31 20:31:31 +02003882 if (!trace_backend_init(trace_events, trace_file)) {
Lluíse4858972011-08-31 20:31:03 +02003883 exit(1);
Stefan Hajnoczi31d3c9b2011-03-13 20:14:30 +00003884 }
Stefan Hajnoczi0b5538c2011-02-26 18:38:39 +00003885
Paul Brook5cea8592009-05-30 00:52:44 +01003886 /* If no data_dir is specified then try to find it relative to the
3887 executable path. */
Gerd Hoffmann45240512013-03-08 11:42:24 +01003888 if (data_dir_idx < ARRAY_SIZE(data_dir)) {
3889 data_dir[data_dir_idx] = os_find_datadir(argv[0]);
3890 if (data_dir[data_dir_idx] != NULL) {
3891 data_dir_idx++;
3892 }
Paul Brook5cea8592009-05-30 00:52:44 +01003893 }
Stefan Weil60474fb2011-09-04 15:17:46 +02003894 /* If all else fails use the install path specified when building. */
Gerd Hoffmann45240512013-03-08 11:42:24 +01003895 if (data_dir_idx < ARRAY_SIZE(data_dir)) {
3896 data_dir[data_dir_idx++] = CONFIG_QEMU_DATADIR;
Paul Brook5cea8592009-05-30 00:52:44 +01003897 }
3898
Michael Tokarev12b7f572013-06-24 15:06:52 +04003899 smp_parse(qemu_opts_find(qemu_find_opts("smp-opts"), NULL));
Jes Sorensen6be68d72009-07-23 17:03:42 +02003900
balrog3d878ca2008-10-28 10:59:59 +00003901 machine->max_cpus = machine->max_cpus ?: 1; /* Default to UP */
aliguorib2097002008-10-07 20:39:39 +00003902 if (smp_cpus > machine->max_cpus) {
3903 fprintf(stderr, "Number of SMP cpus requested (%d), exceeds max cpus "
3904 "supported by machine `%s' (%d)\n", smp_cpus, machine->name,
3905 machine->max_cpus);
3906 exit(1);
3907 }
3908
Anthony PERARD67b724e2010-11-22 15:44:15 +00003909 /*
3910 * Get the default machine options from the machine if it is not already
3911 * specified either by the configuration file or by the command line.
3912 */
3913 if (machine->default_machine_opts) {
Jan Kiszka25de5932012-01-27 19:55:43 +01003914 qemu_opts_set_defaults(qemu_find_opts("machine"),
3915 machine->default_machine_opts, 0);
Anthony PERARD67b724e2010-11-22 15:44:15 +00003916 }
3917
Gerd Hoffmann3329f072010-08-20 13:52:01 +02003918 qemu_opts_foreach(qemu_find_opts("device"), default_driver_check, NULL, 0);
3919 qemu_opts_foreach(qemu_find_opts("global"), default_driver_check, NULL, 0);
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01003920
Gerd Hoffmann986c5f72009-12-08 13:11:54 +01003921 if (machine->no_serial) {
3922 default_serial = 0;
3923 }
3924 if (machine->no_parallel) {
3925 default_parallel = 0;
3926 }
3927 if (!machine->use_virtcon) {
3928 default_virtcon = 0;
3929 }
Alexander Graf3ef669e2013-01-24 12:18:52 +01003930 if (!machine->use_sclp) {
3931 default_sclp = 0;
3932 }
Gerd Hoffmannac33f8f2009-12-16 14:25:39 +01003933 if (machine->no_floppy) {
3934 default_floppy = 0;
3935 }
3936 if (machine->no_cdrom) {
3937 default_cdrom = 0;
3938 }
3939 if (machine->no_sdcard) {
3940 default_sdcard = 0;
3941 }
Gerd Hoffmann986c5f72009-12-08 13:11:54 +01003942
Michael Tokarevab51b1d2012-12-30 12:48:14 +04003943 if (is_daemonized()) {
3944 /* According to documentation and historically, -nographic redirects
3945 * serial port, parallel port and monitor to stdio, which does not work
3946 * with -daemonize. We can redirect these to null instead, but since
3947 * -nographic is legacy, let's just error out.
3948 * We disallow -nographic only if all other ports are not redirected
3949 * explicitly, to not break existing legacy setups which uses
3950 * -nographic _and_ redirects all ports explicitly - this is valid
3951 * usage, -nographic is just a no-op in this case.
3952 */
3953 if (display_type == DT_NOGRAPHIC
3954 && (default_parallel || default_serial
3955 || default_monitor || default_virtcon)) {
3956 fprintf(stderr, "-nographic can not be used with -daemonize\n");
3957 exit(1);
3958 }
3959#ifdef CONFIG_CURSES
3960 if (display_type == DT_CURSES) {
3961 fprintf(stderr, "curses display can not be used with -daemonize\n");
3962 exit(1);
3963 }
3964#endif
3965 }
3966
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003967 if (display_type == DT_NOGRAPHIC) {
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01003968 if (default_parallel)
3969 add_device_config(DEV_PARALLEL, "null");
Gerd Hoffmanne1c09172009-12-08 13:11:44 +01003970 if (default_serial && default_monitor) {
3971 add_device_config(DEV_SERIAL, "mon:stdio");
Gerd Hoffmann986c5f72009-12-08 13:11:54 +01003972 } else if (default_virtcon && default_monitor) {
3973 add_device_config(DEV_VIRTCON, "mon:stdio");
Alexander Graf3ef669e2013-01-24 12:18:52 +01003974 } else if (default_sclp && default_monitor) {
3975 add_device_config(DEV_SCLP, "mon:stdio");
Gerd Hoffmanne1c09172009-12-08 13:11:44 +01003976 } else {
3977 if (default_serial)
3978 add_device_config(DEV_SERIAL, "stdio");
Gerd Hoffmann986c5f72009-12-08 13:11:54 +01003979 if (default_virtcon)
3980 add_device_config(DEV_VIRTCON, "stdio");
Alexander Graf3ef669e2013-01-24 12:18:52 +01003981 if (default_sclp) {
3982 add_device_config(DEV_SCLP, "stdio");
3983 }
Gerd Hoffmanne1c09172009-12-08 13:11:44 +01003984 if (default_monitor)
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01003985 monitor_parse("stdio", "readline");
Gerd Hoffmanne1c09172009-12-08 13:11:44 +01003986 }
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01003987 } else {
3988 if (default_serial)
3989 add_device_config(DEV_SERIAL, "vc:80Cx24C");
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01003990 if (default_parallel)
3991 add_device_config(DEV_PARALLEL, "vc:80Cx24C");
Gerd Hoffmannabdeed02009-12-08 13:11:43 +01003992 if (default_monitor)
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01003993 monitor_parse("vc:80Cx24C", "readline");
Alexander Graf38536da2009-12-17 13:06:08 +01003994 if (default_virtcon)
3995 add_device_config(DEV_VIRTCON, "vc:80Cx24C");
Alexander Graf3ef669e2013-01-24 12:18:52 +01003996 if (default_sclp) {
3997 add_device_config(DEV_SCLP, "vc:80Cx24C");
3998 }
aliguoribc0129d2008-08-01 15:12:34 +00003999 }
4000
Anthony Liguori15546422013-02-20 07:43:25 -06004001 if (display_type == DT_DEFAULT && !display_remote) {
4002#if defined(CONFIG_GTK)
4003 display_type = DT_GTK;
4004#elif defined(CONFIG_SDL) || defined(CONFIG_COCOA)
4005 display_type = DT_SDL;
4006#elif defined(CONFIG_VNC)
4007 vnc_display = "localhost:0,to=99";
4008 show_vnc_port = 1;
4009#else
4010 display_type = DT_NONE;
4011#endif
4012 }
4013
Peter Wu047d4e12013-06-11 10:55:08 +02004014 if ((no_frame || alt_grab || ctrl_grab) && display_type != DT_SDL) {
4015 fprintf(stderr, "-no-frame, -alt-grab and -ctrl-grab are only valid "
4016 "for SDL, ignoring option\n");
4017 }
4018 if (no_quit && (display_type != DT_GTK && display_type != DT_SDL)) {
4019 fprintf(stderr, "-no-quit is only valid for GTK and SDL, "
4020 "ignoring option\n");
4021 }
4022
Anthony Liguori15546422013-02-20 07:43:25 -06004023#if defined(CONFIG_GTK)
4024 if (display_type == DT_GTK) {
4025 early_gtk_display_init();
4026 }
4027#endif
4028
TeLeMana5829fd2010-04-15 12:37:55 +08004029 socket_init();
4030
Gerd Hoffmann3329f072010-08-20 13:52:01 +02004031 if (qemu_opts_foreach(qemu_find_opts("chardev"), chardev_init_func, NULL, 1) != 0)
Gerd Hoffmann1a688d32009-12-08 13:11:36 +01004032 exit(1);
Venkateswararao Jujjuri (JV)758e8e32010-06-14 13:34:41 -07004033#ifdef CONFIG_VIRTFS
Gerd Hoffmann3329f072010-08-20 13:52:01 +02004034 if (qemu_opts_foreach(qemu_find_opts("fsdev"), fsdev_init_func, NULL, 1) != 0) {
Gautham R Shenoy74db9202010-04-29 17:44:43 +05304035 exit(1);
4036 }
4037#endif
Gerd Hoffmann1a688d32009-12-08 13:11:36 +01004038
Jes Sorenseneb505be2010-06-10 11:42:28 +02004039 os_daemonize();
ths71e3ceb2006-12-22 02:11:31 +00004040
thsaa26bb22007-03-25 21:33:06 +00004041 if (pid_file && qemu_create_pidfile(pid_file) != 0) {
Jes Sorenseneb505be2010-06-10 11:42:28 +02004042 os_pidfile_error();
ths93815bc2007-03-19 15:58:31 +00004043 exit(1);
4044 }
4045
Jan Kiszka0ac543d2011-08-15 16:18:57 -07004046 /* init the memory */
4047 if (ram_size == 0) {
4048 ram_size = DEFAULT_RAM_SIZE * 1024 * 1024;
4049 }
4050
Bruce Rogers3d1d9652012-08-09 12:47:40 -06004051 if (qemu_opts_foreach(qemu_find_opts("device"), device_help_func, NULL, 0)
4052 != 0) {
4053 exit(0);
4054 }
4055
Anthony PERARD303d4e82010-09-21 20:05:31 +01004056 configure_accelerator();
Marcelo Tosatti214910a2009-09-18 02:41:23 -03004057
Paolo Bonzinid4fce242013-10-18 13:51:11 +02004058 if (qtest_chrdev) {
4059 qtest_init(qtest_chrdev, qtest_log);
Edgar E. Iglesiasa907cf52013-04-15 21:28:17 +02004060 }
4061
Markus Armbruster2ff3de62013-07-04 15:09:22 +02004062 machine_opts = qemu_get_machine_opts();
4063 kernel_filename = qemu_opt_get(machine_opts, "kernel");
4064 initrd_filename = qemu_opt_get(machine_opts, "initrd");
4065 kernel_cmdline = qemu_opt_get(machine_opts, "append");
Gerd Hoffmann1442d3e2013-10-15 16:57:45 +02004066 bios_name = qemu_opt_get(machine_opts, "firmware");
Peter Maydell967c0da2012-02-22 22:40:00 +00004067
Markus Armbrustere3fdc532013-10-01 13:47:22 +02004068 boot_order = machine->default_boot_order;
Markus Armbruster8281abd2013-06-14 13:15:03 +02004069 opts = qemu_opts_find(qemu_find_opts("boot-opts"), NULL);
4070 if (opts) {
4071 char *normal_boot_order;
4072 const char *order, *once;
4073
4074 order = qemu_opt_get(opts, "order");
4075 if (order) {
4076 validate_bootdevices(order);
4077 boot_order = order;
4078 }
4079
4080 once = qemu_opt_get(opts, "once");
4081 if (once) {
4082 validate_bootdevices(once);
4083 normal_boot_order = g_strdup(boot_order);
4084 boot_order = once;
Markus Armbruster083b79c2013-06-14 13:15:04 +02004085 qemu_register_reset(restore_boot_order, normal_boot_order);
Markus Armbruster8281abd2013-06-14 13:15:03 +02004086 }
4087
4088 boot_menu = qemu_opt_get_bool(opts, "menu", boot_menu);
Amos Konge5187b52013-12-09 19:53:15 +08004089 boot_strict = qemu_opt_get_bool(opts, "strict", false);
Markus Armbruster8281abd2013-06-14 13:15:03 +02004090 }
4091
Peter Maydella0abe472012-02-08 05:41:39 +00004092 if (!kernel_cmdline) {
4093 kernel_cmdline = "";
4094 }
4095
bellarda20dd502003-09-30 21:07:02 +00004096 linux_boot = (kernel_filename != NULL);
balrog6c41b272007-11-17 12:12:29 +00004097
thsf8d39c02008-07-03 10:01:15 +00004098 if (!linux_boot && *kernel_cmdline != '\0') {
4099 fprintf(stderr, "-append only allowed with -kernel option\n");
4100 exit(1);
4101 }
4102
4103 if (!linux_boot && initrd_filename != NULL) {
4104 fprintf(stderr, "-initrd only allowed with -kernel option\n");
4105 exit(1);
4106 }
4107
Markus Armbruster2ff3de62013-07-04 15:09:22 +02004108 if (!linux_boot && qemu_opt_get(machine_opts, "dtb")) {
Grant Likely412beee2012-03-02 11:56:38 +00004109 fprintf(stderr, "-dtb only allowed with -kernel option\n");
4110 exit(1);
4111 }
4112
Jes Sorensen9156d762010-06-10 11:42:30 +02004113 os_set_line_buffering();
ths3b46e622007-09-17 08:09:54 +00004114
Paolo Bonzini49cf5722012-11-02 15:43:24 +01004115 qemu_init_cpu_loop();
4116 qemu_mutex_lock_iothread();
4117
Alon Levyad1be892012-03-14 20:33:37 +02004118#ifdef CONFIG_SPICE
4119 /* spice needs the timers to be initialized by this point */
4120 qemu_spice_init();
4121#endif
4122
Max Filippov0abe9052011-11-10 15:38:42 +04004123 if (icount_option && (kvm_enabled() || xen_enabled())) {
4124 fprintf(stderr, "-icount is not allowed with kvm or xen\n");
4125 exit(1);
4126 }
Paolo Bonzini4e3de9e2010-03-10 11:38:48 +01004127 configure_icount(icount_option);
pbrook634fce92006-07-15 17:40:09 +00004128
Amos Kongf30dbae2012-12-11 22:20:15 +08004129 /* clean up network at qemu process termination */
4130 atexit(&net_cleanup);
4131
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01004132 if (net_init_clients() < 0) {
4133 exit(1);
bellard702c6512004-04-02 21:21:32 +00004134 }
bellardf1510b22003-06-25 00:07:40 +00004135
Stefan Bergerd1a0cf72013-02-27 12:47:49 -05004136#ifdef CONFIG_TPM
4137 if (tpm_init() < 0) {
4138 exit(1);
4139 }
4140#endif
4141
balrogdc72ac12008-11-09 00:04:26 +00004142 /* init the bluetooth world */
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02004143 if (foreach_device_config(DEV_BT, bt_parse))
4144 exit(1);
balrogdc72ac12008-11-09 00:04:26 +00004145
Anthony PERARD834e76e2011-07-20 08:17:44 +00004146 if (!xen_enabled()) {
4147 /* On 32-bit hosts, QEMU is limited by virtual address space */
4148 if (ram_size > (2047 << 20) && HOST_LONG_BITS == 32) {
4149 fprintf(stderr, "qemu: at most 2047 MB RAM can be simulated\n");
4150 exit(1);
4151 }
4152 }
balrog7fb4fdc2008-04-24 17:59:27 +00004153
Jan Kiszkad5ab9712011-08-02 16:10:21 +02004154 cpu_exec_init_all();
bellard26a5f132008-05-28 12:30:31 +00004155
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02004156 blk_mig_init();
4157
ths96d30e42007-01-07 20:42:14 +00004158 /* open the virtual block devices */
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02004159 if (snapshot)
Gerd Hoffmann3329f072010-08-20 13:52:01 +02004160 qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot, NULL, 0);
Christian Borntraeger2d0d2832012-11-20 15:30:34 +01004161 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func,
4162 &machine->block_default_type, 1) != 0) {
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02004163 exit(1);
Christian Borntraeger2d0d2832012-11-20 15:30:34 +01004164 }
balrog3e3d5812007-04-30 02:09:25 +00004165
Christian Borntraeger3c42ea62012-11-22 21:02:55 +01004166 default_drive(default_cdrom, snapshot, machine->block_default_type, 2,
4167 CDROM_OPTS);
4168 default_drive(default_floppy, snapshot, IF_FLOPPY, 0, FD_OPTS);
4169 default_drive(default_sdcard, snapshot, IF_SD, 0, SD_OPTS);
Markus Armbruster4e5d9b52011-01-28 11:21:45 +01004170
Juan Quintela7908c782012-06-26 18:46:10 +02004171 register_savevm_live(NULL, "ram", 0, 4, &savevm_ram_handlers, NULL);
bellard8a7ddc32004-03-31 19:00:16 +00004172
aliguori268a3622009-04-21 22:30:27 +00004173 if (nb_numa_nodes > 0) {
4174 int i;
4175
Sasha Levinea0e5412011-06-29 23:29:39 -04004176 if (nb_numa_nodes > MAX_NODES) {
4177 nb_numa_nodes = MAX_NODES;
aliguori268a3622009-04-21 22:30:27 +00004178 }
4179
4180 /* If no memory size if given for any node, assume the default case
4181 * and distribute the available memory equally across all nodes
4182 */
4183 for (i = 0; i < nb_numa_nodes; i++) {
4184 if (node_mem[i] != 0)
4185 break;
4186 }
4187 if (i == nb_numa_nodes) {
4188 uint64_t usedmem = 0;
4189
4190 /* On Linux, the each node's border has to be 8MB aligned,
4191 * the final node gets the rest.
4192 */
4193 for (i = 0; i < nb_numa_nodes - 1; i++) {
4194 node_mem[i] = (ram_size / nb_numa_nodes) & ~((1 << 23UL) - 1);
4195 usedmem += node_mem[i];
4196 }
4197 node_mem[i] = ram_size - usedmem;
4198 }
4199
4200 for (i = 0; i < nb_numa_nodes; i++) {
Chegu Vinodee785fe2012-07-16 21:31:30 -07004201 if (!bitmap_empty(node_cpumask[i], MAX_CPUMASK_BITS)) {
aliguori268a3622009-04-21 22:30:27 +00004202 break;
Chegu Vinodee785fe2012-07-16 21:31:30 -07004203 }
aliguori268a3622009-04-21 22:30:27 +00004204 }
4205 /* assigning the VCPUs round-robin is easier to implement, guest OSes
4206 * must cope with this anyway, because there are BIOSes out there in
4207 * real machines which also use this scheme.
4208 */
4209 if (i == nb_numa_nodes) {
Vasilis Liaskovitis991dfef2011-10-26 14:19:00 +02004210 for (i = 0; i < max_cpus; i++) {
Chegu Vinodee785fe2012-07-16 21:31:30 -07004211 set_bit(i, node_cpumask[i % nb_numa_nodes]);
aliguori268a3622009-04-21 22:30:27 +00004212 }
4213 }
4214 }
4215
Gerd Hoffmann3329f072010-08-20 13:52:01 +02004216 if (qemu_opts_foreach(qemu_find_opts("mon"), mon_init_func, NULL, 1) != 0) {
Jan Kiszka157b9312010-04-06 16:55:53 +02004217 exit(1);
4218 }
4219
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01004220 if (foreach_device_config(DEV_SERIAL, serial_parse) < 0)
4221 exit(1);
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01004222 if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0)
4223 exit(1);
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01004224 if (foreach_device_config(DEV_VIRTCON, virtcon_parse) < 0)
4225 exit(1);
Alexander Graf3ef669e2013-01-24 12:18:52 +01004226 if (foreach_device_config(DEV_SCLP, sclp_parse) < 0) {
4227 exit(1);
4228 }
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08004229 if (foreach_device_config(DEV_DEBUGCON, debugcon_parse) < 0)
4230 exit(1);
aliguori2796dae2009-01-16 20:23:27 +00004231
Paolo Bonzini7f1b17f2012-05-10 09:39:17 +02004232 /* If no default VGA is requested, the default is "none". */
Aurelien Jarno3605ded2012-09-10 01:01:44 +02004233 if (default_vga) {
4234 if (cirrus_vga_available()) {
4235 vga_model = "cirrus";
4236 } else if (vga_available()) {
4237 vga_model = "std";
4238 }
Blue Swirla369da52011-09-27 19:15:42 +00004239 }
Paolo Bonzini7f1b17f2012-05-10 09:39:17 +02004240 select_vgahw(vga_model);
Blue Swirla369da52011-09-27 19:15:42 +00004241
Markus Armbruster09aaa162009-08-21 10:31:34 +02004242 if (watchdog) {
4243 i = select_watchdog(watchdog);
4244 if (i > 0)
4245 exit (i == 1 ? 1 : 0);
4246 }
4247
Gerd Hoffmannb6b61142009-07-15 13:48:21 +02004248 if (machine->compat_props) {
Gerd Hoffmann458fb672009-12-08 13:11:33 +01004249 qdev_prop_register_global_list(machine->compat_props);
Gerd Hoffmannb6b61142009-07-15 13:48:21 +02004250 }
Gerd Hoffmannd0fef6f2009-12-08 13:11:34 +01004251 qemu_add_globals();
4252
Anthony Liguori1de81d22011-12-19 16:37:46 -06004253 qdev_machine_init();
4254
Markus Armbrustere689f7c2013-10-30 13:56:39 +01004255 QEMUMachineInitArgs args = { .machine = machine,
4256 .ram_size = ram_size,
Markus Armbrusterc1654732013-08-16 13:13:50 +02004257 .boot_order = boot_order,
Eduardo Habkost5f072e12012-10-15 17:22:02 -03004258 .kernel_filename = kernel_filename,
4259 .kernel_cmdline = kernel_cmdline,
4260 .initrd_filename = initrd_filename,
4261 .cpu_model = cpu_model };
4262 machine->init(&args);
aliguori3023f332009-01-16 19:04:14 +00004263
Paolo Bonzinib3e6d592013-04-18 18:44:04 +02004264 audio_init();
4265
Jan Kiszkaea375f92010-03-01 19:10:30 +01004266 cpu_synchronize_all_post_init();
aliguori268a3622009-04-21 22:30:27 +00004267
Blue Swirl87d0a282010-03-27 18:24:45 +00004268 set_numa_modes();
aliguori268a3622009-04-21 22:30:27 +00004269
aliguori6f338c32009-02-11 15:21:54 +00004270 current_machine = machine;
4271
aliguori3023f332009-01-16 19:04:14 +00004272 /* init USB devices */
zhlcindy@gmail.com094b2872012-09-02 19:25:28 +00004273 if (usb_enabled(false)) {
Markus Armbruster07527062009-10-06 12:16:57 +01004274 if (foreach_device_config(DEV_USB, usb_parse) < 0)
4275 exit(1);
aliguori3023f332009-01-16 19:04:14 +00004276 }
4277
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02004278 /* init generic devices */
Gerd Hoffmann3329f072010-08-20 13:52:01 +02004279 if (qemu_opts_foreach(qemu_find_opts("device"), device_init_func, NULL, 1) != 0)
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02004280 exit(1);
4281
Markus Armbruster668680f2010-02-11 14:44:58 +01004282 net_check_clients();
4283
Gerd Hoffmann64840c62013-03-07 17:08:29 +01004284 ds = init_displaystate();
Anthony Liguori993fbfd2009-05-21 16:54:00 -05004285
Gerd Hoffmann6b62dc22010-08-25 10:51:06 +02004286 /* init local displays */
Anthony Liguori993fbfd2009-05-21 16:54:00 -05004287 switch (display_type) {
4288 case DT_NOGRAPHIC:
Antony Pavlov8111d022013-10-29 08:36:31 +04004289 (void)ds; /* avoid warning if no display is configured */
Anthony Liguori993fbfd2009-05-21 16:54:00 -05004290 break;
4291#if defined(CONFIG_CURSES)
4292 case DT_CURSES:
Michael Tokarevab51b1d2012-12-30 12:48:14 +04004293 curses_display_init(ds, full_screen);
Anthony Liguori993fbfd2009-05-21 16:54:00 -05004294 break;
4295#endif
bellard5b0753e2005-03-01 21:37:28 +00004296#if defined(CONFIG_SDL)
Anthony Liguori993fbfd2009-05-21 16:54:00 -05004297 case DT_SDL:
4298 sdl_display_init(ds, full_screen, no_frame);
4299 break;
bellard5b0753e2005-03-01 21:37:28 +00004300#elif defined(CONFIG_COCOA)
Anthony Liguori993fbfd2009-05-21 16:54:00 -05004301 case DT_SDL:
4302 cocoa_display_init(ds, full_screen);
4303 break;
bellard313aa562003-08-10 21:52:11 +00004304#endif
Anthony Liguori15546422013-02-20 07:43:25 -06004305#if defined(CONFIG_GTK)
4306 case DT_GTK:
Peter Wu787ba4f2013-06-10 20:04:43 +02004307 gtk_display_init(ds, full_screen);
Anthony Liguori15546422013-02-20 07:43:25 -06004308 break;
4309#endif
Gerd Hoffmann6b62dc22010-08-25 10:51:06 +02004310 default:
4311 break;
4312 }
4313
Gleb Natapov0ce235a2011-03-31 11:27:23 +02004314 /* must be after terminal init, SDL library changes signal handlers */
4315 os_setup_signal_handling();
4316
Jes Sorensen821601e2011-03-16 13:33:36 +01004317#ifdef CONFIG_VNC
Gerd Hoffmann6b62dc22010-08-25 10:51:06 +02004318 /* init remote displays */
4319 if (vnc_display) {
Paolo Bonzini2d55f0e2012-10-02 10:17:21 +02004320 Error *local_err = NULL;
Anthony Liguori993fbfd2009-05-21 16:54:00 -05004321 vnc_display_init(ds);
Paolo Bonzini2d55f0e2012-10-02 10:17:21 +02004322 vnc_display_open(ds, vnc_display, &local_err);
4323 if (local_err != NULL) {
Seiji Aguchi4a44d852013-08-05 15:40:44 -04004324 error_report("Failed to start VNC server on `%s': %s",
4325 vnc_display, error_get_pretty(local_err));
Paolo Bonzini2d55f0e2012-10-02 10:17:21 +02004326 error_free(local_err);
Anthony Liguori993fbfd2009-05-21 16:54:00 -05004327 exit(1);
Amos Kong94b204c2012-06-30 10:02:20 +08004328 }
Anthony Liguorif92f8af2009-05-20 13:01:02 -05004329
Anthony Liguori993fbfd2009-05-21 16:54:00 -05004330 if (show_vnc_port) {
4331 printf("VNC server running on `%s'\n", vnc_display_local_addr(ds));
Anthony Liguorif92f8af2009-05-20 13:01:02 -05004332 }
bellard313aa562003-08-10 21:52:11 +00004333 }
Jes Sorensen821601e2011-03-16 13:33:36 +01004334#endif
Gerd Hoffmanna3e22262010-08-25 15:32:06 +02004335#ifdef CONFIG_SPICE
Gerd Hoffmann9fa03282013-10-11 22:39:59 +02004336 if (using_spice) {
4337 qemu_spice_display_init();
Gerd Hoffmanna3e22262010-08-25 15:32:06 +02004338 }
4339#endif
aliguori5b08fc12008-08-21 20:08:03 +00004340
Markus Armbrusteref0c4a02012-02-07 15:09:13 +01004341 if (foreach_device_config(DEV_GDB, gdbserver_start) < 0) {
aliguori59030a82009-04-05 18:43:41 +00004342 exit(1);
balrog45669e02007-07-02 13:20:17 +00004343 }
balrog45669e02007-07-02 13:20:17 +00004344
Gerd Hoffmann3418bd22009-09-25 21:42:41 +02004345 qdev_machine_creation_done();
4346
Gerd Hoffmann15ff7702009-12-14 16:07:35 +01004347 if (rom_load_all() != 0) {
4348 fprintf(stderr, "rom loading failed\n");
4349 exit(1);
4350 }
Gerd Hoffmann45a50b12009-10-01 16:42:33 +02004351
Isaku Yamahata80376c32010-12-20 14:33:35 +09004352 /* TODO: once all bus devices are qdevified, this should be done
4353 * when bus is created by qdev.c */
4354 qemu_register_reset(qbus_reset_all_fn, sysbus_get_default());
Gleb Natapov4cab9462010-12-08 13:35:08 +02004355 qemu_run_machine_init_done_notifiers();
4356
Michael S. Tsirkind916b462013-07-24 18:56:08 +03004357 /* Done notifiers can load ROMs */
4358 rom_load_done();
4359
Jan Kiszkae063eb12011-06-14 18:29:43 +02004360 qemu_system_reset(VMRESET_SILENT);
Juan Quintela05f24012009-08-20 19:42:22 +02004361 if (loadvm) {
Markus Armbruster03cd4652010-02-17 16:24:10 +01004362 if (load_vmstate(loadvm) < 0) {
Juan Quintela05f24012009-08-20 19:42:22 +02004363 autostart = 0;
4364 }
4365 }
bellardd63d3072004-10-03 13:29:03 +00004366
Glauber Costa2bb8c102009-07-24 16:20:23 -04004367 if (incoming) {
Paolo Bonzini43eaae22012-10-02 18:21:18 +02004368 Error *local_err = NULL;
4369 qemu_start_incoming_migration(incoming, &local_err);
4370 if (local_err) {
Seiji Aguchi4a44d852013-08-05 15:40:44 -04004371 error_report("-incoming %s: %s", incoming,
4372 error_get_pretty(local_err));
Paolo Bonzini43eaae22012-10-02 18:21:18 +02004373 error_free(local_err);
4374 exit(1);
Juan Quintela8ca5e802010-06-09 14:10:54 +02004375 }
Avi Kivity6b99dad2009-08-09 14:39:20 +03004376 } else if (autostart) {
aliguoric0f4ce72009-03-05 23:01:01 +00004377 vm_start();
Avi Kivity6b99dad2009-08-09 14:39:20 +03004378 }
thsffd843b2006-12-21 19:46:43 +00004379
Jes Sorenseneb505be2010-06-10 11:42:28 +02004380 os_setup_post();
ths71e3ceb2006-12-22 02:11:31 +00004381
bellard8a7ddc32004-03-31 19:00:16 +00004382 main_loop();
Paolo Bonzini99435902011-09-12 14:03:13 +02004383 bdrv_close_all();
4384 pause_all_vcpus();
wayne3d3b8302011-07-27 18:04:55 +08004385 res_free();
Stefan Bergerd1a0cf72013-02-27 12:47:49 -05004386#ifdef CONFIG_TPM
4387 tpm_cleanup();
4388#endif
thsb46a8902007-10-21 23:20:45 +00004389
bellard0824d6f2003-06-24 13:42:40 +00004390 return 0;
4391}