blob: d77b47c6f7b8a7560830e2b61a3779d4049d4fe3 [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>
bellard67b915a2004-03-31 23:37:16 +000031
Juan Quintela71e72a12009-07-27 16:12:56 +020032/* Needed early for CONFIG_BSD etc. */
blueswir1d40cdb12009-03-07 16:52:02 +000033#include "config-host.h"
34
bellard67b915a2004-03-31 23:37:16 +000035#ifndef _WIN32
Paul Brook5cea8592009-05-30 00:52:44 +010036#include <libgen.h>
aliguori08585322009-02-27 22:09:45 +000037#include <pwd.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>
Juan Quintela71e72a12009-07-27 16:12:56 +020051#ifdef CONFIG_BSD
bellard7d3505c2004-05-12 19:32:15 +000052#include <sys/stat.h>
Aurelien Jarnoa167ba52009-11-29 18:00:41 +010053#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
bellard7d3505c2004-05-12 19:32:15 +000054#include <libutil.h>
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 <pty.h>
62#include <malloc.h>
Andi Kleen18894652009-07-02 09:34:17 +020063#include <sys/prctl.h>
thsbd494f42007-09-16 20:03:23 +000064
bellarde57a8c02005-11-10 23:58:52 +000065#include <linux/ppdev.h>
ths5867c882007-02-17 23:44:43 +000066#include <linux/parport.h>
blueswir1223f0d72008-09-30 18:12:18 +000067#endif
68#ifdef __sun__
thsd5d10bc2007-02-17 22:54:49 +000069#include <sys/stat.h>
70#include <sys/ethernet.h>
71#include <sys/sockio.h>
thsd5d10bc2007-02-17 22:54:49 +000072#include <netinet/arp.h>
73#include <netinet/in.h>
74#include <netinet/in_systm.h>
75#include <netinet/ip.h>
76#include <netinet/ip_icmp.h> // must come after ip.h
77#include <netinet/udp.h>
78#include <netinet/tcp.h>
79#include <net/if.h>
80#include <syslog.h>
81#include <stropts.h>
Blue Swirl8d32cf02009-10-02 19:32:12 +000082/* See MySQL bug #7156 (http://bugs.mysql.com/bug.php?id=7156) for
83 discussion about Solaris header problems */
84extern int madvise(caddr_t, size_t, int);
bellard67b915a2004-03-31 23:37:16 +000085#endif
bellard7d3505c2004-05-12 19:32:15 +000086#endif
bellardec530c82006-04-25 22:36:06 +000087#endif
bellard67b915a2004-03-31 23:37:16 +000088
blueswir19892fbf2008-08-24 10:34:20 +000089#if defined(__OpenBSD__)
90#include <util.h>
91#endif
92
ths8a16d272008-07-19 09:56:24 +000093#if defined(CONFIG_VDE)
94#include <libvdeplug.h>
95#endif
96
bellard67b915a2004-03-31 23:37:16 +000097#ifdef _WIN32
aliguori49dc7682009-03-08 16:26:59 +000098#include <windows.h>
bellard67b915a2004-03-31 23:37:16 +000099#endif
100
bellard73332e52004-04-04 20:22:28 +0000101#ifdef CONFIG_SDL
Stefan Weil59a36a22009-06-18 20:11:03 +0200102#if defined(__APPLE__) || defined(main)
Stefan Weil66936652009-06-13 13:19:11 +0200103#include <SDL.h>
malc880fec52009-02-15 20:18:41 +0000104int qemu_main(int argc, char **argv, char **envp);
105int main(int argc, char **argv)
106{
Stefan Weil59a36a22009-06-18 20:11:03 +0200107 return qemu_main(argc, argv, NULL);
malc880fec52009-02-15 20:18:41 +0000108}
109#undef main
110#define main qemu_main
bellard96bcd4f2004-07-10 16:26:15 +0000111#endif
bellard73332e52004-04-04 20:22:28 +0000112#endif /* CONFIG_SDL */
bellard0824d6f2003-06-24 13:42:40 +0000113
bellard5b0753e2005-03-01 21:37:28 +0000114#ifdef CONFIG_COCOA
115#undef main
116#define main qemu_main
117#endif /* CONFIG_COCOA */
118
blueswir1511d2b12009-03-07 15:32:56 +0000119#include "hw/hw.h"
120#include "hw/boards.h"
121#include "hw/usb.h"
122#include "hw/pcmcia.h"
123#include "hw/pc.h"
blueswir1511d2b12009-03-07 15:32:56 +0000124#include "hw/isa.h"
125#include "hw/baum.h"
126#include "hw/bt.h"
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +0100127#include "hw/watchdog.h"
aliguorib6f6e3d2009-04-17 18:59:56 +0000128#include "hw/smbios.h"
aliguorie37630c2009-04-22 15:19:10 +0000129#include "hw/xen.h"
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +0200130#include "hw/qdev.h"
Gerd Hoffmann45a50b12009-10-01 16:42:33 +0200131#include "hw/loader.h"
aurel325ef4efa2009-03-10 21:43:35 +0000132#include "bt-host.h"
blueswir1511d2b12009-03-07 15:32:56 +0000133#include "net.h"
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000134#include "net/slirp.h"
blueswir1511d2b12009-03-07 15:32:56 +0000135#include "monitor.h"
136#include "console.h"
137#include "sysemu.h"
138#include "gdbstub.h"
139#include "qemu-timer.h"
140#include "qemu-char.h"
141#include "cache-utils.h"
142#include "block.h"
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +0200143#include "block_int.h"
144#include "block-migration.h"
blueswir1a718ace2009-03-28 08:24:44 +0000145#include "dma.h"
blueswir1511d2b12009-03-07 15:32:56 +0000146#include "audio/audio.h"
147#include "migration.h"
148#include "kvm.h"
Kevin Wolfd3f24362009-05-18 16:42:09 +0200149#include "qemu-option.h"
Gerd Hoffmann7282a032009-07-31 12:25:35 +0200150#include "qemu-config.h"
Luiz Capitulinoe78c48e2009-12-10 17:16:04 -0200151#include "qemu-objects.h"
Gautham R Shenoy74db9202010-04-29 17:44:43 +0530152#ifdef CONFIG_LINUX
153#include "fsdev/qemu-fsdev.h"
154#endif
blueswir1511d2b12009-03-07 15:32:56 +0000155
bellard0824d6f2003-06-24 13:42:40 +0000156#include "disas.h"
bellardfc01f7e2003-06-30 10:03:06 +0000157
blueswir1511d2b12009-03-07 15:32:56 +0000158#include "qemu_socket.h"
159
Jan Kiszkad918f232009-06-24 14:42:30 +0200160#include "slirp/libslirp.h"
blueswir1511d2b12009-03-07 15:32:56 +0000161
Blue Swirl72cf2d42009-09-12 07:36:22 +0000162#include "qemu-queue.h"
Blue Swirl296af7c2010-03-29 19:23:50 +0000163#include "cpus.h"
Blue Swirlad960902010-03-29 19:23:52 +0000164#include "arch_init.h"
Blue Swirl72cf2d42009-09-12 07:36:22 +0000165
blueswir19dc63a12008-10-04 07:25:46 +0000166//#define DEBUG_NET
167//#define DEBUG_SLIRP
bellard330d0412003-07-26 18:11:40 +0000168
bellard1bfe8562004-07-08 21:17:50 +0000169#define DEFAULT_RAM_SIZE 128
bellard313aa562003-08-10 21:52:11 +0000170
Amit Shah98b19252010-01-20 00:36:52 +0530171#define MAX_VIRTIO_CONSOLES 1
172
Paul Brook5cea8592009-05-30 00:52:44 +0100173static const char *data_dir;
j_mayer1192dad2007-10-05 13:08:35 +0000174const char *bios_name = NULL;
thse4bcb142007-12-02 04:51:10 +0000175/* Note: drives_table[MAX_DRIVES] is a dummy block driver if none available
bellardfaea38e2006-08-05 21:31:00 +0000176 to store the VM snapshots */
Blue Swirl72cf2d42009-09-12 07:36:22 +0000177struct drivelist drives = QTAILQ_HEAD_INITIALIZER(drives);
178struct driveoptlist driveopts = QTAILQ_HEAD_INITIALIZER(driveopts);
malccb5a7aa2008-09-28 00:42:12 +0000179enum vga_retrace_method vga_retrace_method = VGA_RETRACE_DUMB;
Anthony Liguori993fbfd2009-05-21 16:54:00 -0500180DisplayType display_type = DT_DEFAULT;
bellard3d11d0e2004-12-12 16:56:30 +0000181const char* keyboard_layout = NULL;
Anthony Liguoric227f092009-10-01 16:12:16 -0500182ram_addr_t ram_size;
Marcelo Tosattic9027602010-03-01 20:25:08 -0300183const char *mem_path = NULL;
184#ifdef MAP_POPULATE
185int mem_prealloc = 0; /* force preallocation of physical target memory */
186#endif
bellardc4b1fcc2004-03-14 21:44:30 +0000187int nb_nics;
bellard7c9d8e02005-11-15 22:16:05 +0000188NICInfo nd_table[MAX_NICS];
bellard8a7ddc32004-03-31 19:00:16 +0000189int vm_running;
Paolo Bonzinid399f672009-07-27 23:17:51 +0200190int autostart;
balrogf6503052008-02-17 11:42:19 +0000191static int rtc_utc = 1;
192static int rtc_date_offset = -1; /* -1 means no change */
Jan Kiszka68752042009-09-15 13:36:04 +0200193QEMUClock *rtc_clock;
Gerd Hoffmann64465292009-12-08 13:11:45 +0100194int vga_interface_type = VGA_NONE;
blueswir1dbed7e42008-10-01 19:38:09 +0000195static int full_screen = 0;
blueswir1634a21f2008-11-16 11:34:07 +0000196#ifdef CONFIG_SDL
blueswir1dbed7e42008-10-01 19:38:09 +0000197static int no_frame = 0;
blueswir1634a21f2008-11-16 11:34:07 +0000198#endif
ths667acca2006-12-11 02:08:05 +0000199int no_quit = 0;
bellard8d11df92004-08-24 21:13:40 +0000200CharDriverState *serial_hds[MAX_SERIAL_PORTS];
bellard6508fe52005-01-15 12:02:56 +0000201CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
aliguori9ede2fd2009-01-15 20:05:25 +0000202CharDriverState *virtcon_hds[MAX_VIRTIO_CONSOLES];
bellarda09db212005-04-30 16:10:35 +0000203int win2k_install_hack = 0;
aliguori73822ec2009-01-15 20:11:34 +0000204int rtc_td_hack = 0;
bellardbb36d472005-11-05 14:22:28 +0000205int usb_enabled = 0;
aurel321b530a62009-04-05 20:08:59 +0000206int singlestep = 0;
bellard6a00d602005-11-21 23:25:50 +0000207int smp_cpus = 1;
Jes Sorensen6be68d72009-07-23 17:03:42 +0200208int max_cpus = 0;
Andre Przywaradc6b1c02009-08-19 15:42:40 +0200209int smp_cores = 1;
210int smp_threads = 1;
ths73fc9742006-12-22 02:09:07 +0000211const char *vnc_display;
bellard6515b202006-05-03 22:02:44 +0000212int acpi_enabled = 1;
aliguori16b29ae2008-12-17 23:28:44 +0000213int no_hpet = 0;
bellard52ca8d62006-06-14 16:03:05 +0000214int fd_bootchk = 1;
bellardd1beab82006-10-02 19:44:22 +0000215int no_reboot = 0;
aurel32b2f76162008-04-11 21:35:52 +0000216int no_shutdown = 0;
balrog9467cd42007-05-01 01:34:14 +0000217int cursor_hide = 1;
balroga171fe32007-04-30 01:48:07 +0000218int graphic_rotate = 0;
Jes Sorensen6b35e7b2009-08-06 16:25:50 +0200219uint8_t irq0override = 1;
blueswir1b9e82a52009-04-05 18:03:31 +0000220#ifndef _WIN32
ths71e3ceb2006-12-22 02:11:31 +0000221int daemonize = 0;
blueswir1b9e82a52009-04-05 18:03:31 +0000222#endif
Markus Armbruster09aaa162009-08-21 10:31:34 +0200223const char *watchdog;
ths9ae02552007-01-05 17:39:04 +0000224const char *option_rom[MAX_OPTION_ROMS];
225int nb_option_roms;
pbrook8e716212007-01-20 17:12:09 +0000226int semihosting_enabled = 0;
balrog2b8f2d42007-07-27 22:08:46 +0000227int old_param = 0;
thsc35734b2007-03-19 15:17:08 +0000228const char *qemu_name;
ths3780e192007-06-21 21:08:02 +0000229int alt_grab = 0;
Dustin Kirkland0ca9f8a2009-09-17 15:48:04 -0500230int ctrl_grab = 0;
blueswir166508602007-05-01 14:16:52 +0000231unsigned int nb_prom_envs = 0;
232const char *prom_envs[MAX_PROM_ENVS];
Jan Kiszka95387492009-07-02 00:19:02 +0200233int boot_menu;
bellard0824d6f2003-06-24 13:42:40 +0000234
aliguori268a3622009-04-21 22:30:27 +0000235int nb_numa_nodes;
236uint64_t node_mem[MAX_NODES];
237uint64_t node_cpumask[MAX_NODES];
238
blueswir19043b622009-01-21 19:28:13 +0000239static QEMUTimer *nographic_timer;
balrogee5605e2007-12-03 03:01:40 +0000240
blueswir18fcb1b92008-09-18 18:29:08 +0000241uint8_t qemu_uuid[16];
242
Jan Kiszka76e30d02009-07-02 00:19:02 +0200243static QEMUBootSetHandler *boot_set_handler;
244static void *boot_set_opaque;
245
Blue Swirld745bef2010-03-29 19:23:49 +0000246int kvm_allowed = 0;
247uint32_t xen_domid;
248enum xen_mode xen_mode = XEN_EMULATE;
249
Gerd Hoffmann998bbd72009-12-08 13:11:41 +0100250static int default_serial = 1;
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +0100251static int default_parallel = 1;
Gerd Hoffmann986c5f72009-12-08 13:11:54 +0100252static int default_virtcon = 1;
Gerd Hoffmannabdeed02009-12-08 13:11:43 +0100253static int default_monitor = 1;
Gerd Hoffmann64465292009-12-08 13:11:45 +0100254static int default_vga = 1;
Gerd Hoffmannac33f8f2009-12-16 14:25:39 +0100255static int default_floppy = 1;
256static int default_cdrom = 1;
257static int default_sdcard = 1;
Gerd Hoffmann998bbd72009-12-08 13:11:41 +0100258
259static struct {
260 const char *driver;
261 int *flag;
262} default_list[] = {
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +0100263 { .driver = "isa-serial", .flag = &default_serial },
264 { .driver = "isa-parallel", .flag = &default_parallel },
Gerd Hoffmannd8bcbab2009-12-16 14:25:40 +0100265 { .driver = "isa-fdc", .flag = &default_floppy },
266 { .driver = "ide-drive", .flag = &default_cdrom },
Amit Shah392ecf52010-01-21 16:19:23 +0530267 { .driver = "virtio-serial-pci", .flag = &default_virtcon },
268 { .driver = "virtio-serial-s390", .flag = &default_virtcon },
269 { .driver = "virtio-serial", .flag = &default_virtcon },
Gerd Hoffmann64465292009-12-08 13:11:45 +0100270 { .driver = "VGA", .flag = &default_vga },
Gerd Hoffmann69fd02e2009-12-16 13:35:19 +0100271 { .driver = "cirrus-vga", .flag = &default_vga },
272 { .driver = "vmware-svga", .flag = &default_vga },
Gerd Hoffmann998bbd72009-12-08 13:11:41 +0100273};
274
275static int default_driver_check(QemuOpts *opts, void *opaque)
276{
277 const char *driver = qemu_opt_get(opts, "driver");
278 int i;
279
280 if (!driver)
281 return 0;
282 for (i = 0; i < ARRAY_SIZE(default_list); i++) {
283 if (strcmp(default_list[i].driver, driver) != 0)
284 continue;
285 *(default_list[i].flag) = 0;
286 }
287 return 0;
288}
289
bellard0824d6f2003-06-24 13:42:40 +0000290/***********************************************************/
bellard0824d6f2003-06-24 13:42:40 +0000291
Andi Kleen18894652009-07-02 09:34:17 +0200292static void set_proc_name(const char *s)
293{
Nathan Froyd6ca8d0f2009-08-03 07:32:12 -0700294#if defined(__linux__) && defined(PR_SET_NAME)
Andi Kleen18894652009-07-02 09:34:17 +0200295 char name[16];
296 if (!s)
297 return;
298 name[sizeof(name) - 1] = 0;
299 strncpy(name, s, sizeof(name));
300 /* Could rewrite argv[0] too, but that's a bit more complicated.
301 This simple way is enough for `top'. */
302 prctl(PR_SET_NAME, name);
303#endif
304}
aliguoridf751fa2008-12-04 20:19:35 +0000305
bellard8a7ddc32004-03-31 19:00:16 +0000306/***********************************************************/
Paolo Bonzini8f0056b2010-01-13 14:05:34 +0100307/* real time host monotonic timer */
bellard09b26c52006-04-12 21:09:08 +0000308
bellard87858c82003-06-27 12:01:39 +0000309/* compute with 96 bit intermediate result: (a*b)/c */
bellard80cabfa2004-03-14 12:20:30 +0000310uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c)
bellard87858c82003-06-27 12:01:39 +0000311{
312 union {
313 uint64_t ll;
314 struct {
Juan Quintelae2542fe2009-07-27 16:13:06 +0200315#ifdef HOST_WORDS_BIGENDIAN
bellard87858c82003-06-27 12:01:39 +0000316 uint32_t high, low;
317#else
318 uint32_t low, high;
ths3b46e622007-09-17 08:09:54 +0000319#endif
bellard87858c82003-06-27 12:01:39 +0000320 } l;
321 } u, res;
322 uint64_t rl, rh;
323
324 u.ll = a;
325 rl = (uint64_t)u.l.low * (uint64_t)b;
326 rh = (uint64_t)u.l.high * (uint64_t)b;
327 rh += (rl >> 32);
328 res.l.high = rh / c;
329 res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c;
330 return res.ll;
331}
332
bellardc4b1fcc2004-03-14 21:44:30 +0000333/***********************************************************/
balrogf6503052008-02-17 11:42:19 +0000334/* host time/date access */
335void qemu_get_timedate(struct tm *tm, int offset)
336{
337 time_t ti;
338 struct tm *ret;
339
340 time(&ti);
341 ti += offset;
342 if (rtc_date_offset == -1) {
343 if (rtc_utc)
344 ret = gmtime(&ti);
345 else
346 ret = localtime(&ti);
347 } else {
348 ti -= rtc_date_offset;
349 ret = gmtime(&ti);
350 }
351
352 memcpy(tm, ret, sizeof(struct tm));
353}
354
355int qemu_timedate_diff(struct tm *tm)
356{
357 time_t seconds;
358
359 if (rtc_date_offset == -1)
360 if (rtc_utc)
361 seconds = mktimegm(tm);
362 else
363 seconds = mktime(tm);
364 else
365 seconds = mktimegm(tm) + rtc_date_offset;
366
367 return seconds - time(NULL);
368}
369
Luiz Capitulino80cd3472010-02-25 12:11:44 -0300370void rtc_change_mon_event(struct tm *tm)
371{
372 QObject *data;
373
374 data = qobject_from_jsonf("{ 'offset': %d }", qemu_timedate_diff(tm));
375 monitor_protocol_event(QEVENT_RTC_CHANGE, data);
376 qobject_decref(data);
377}
378
Jan Kiszka1ed2fc12009-09-15 13:36:04 +0200379static void configure_rtc_date_offset(const char *startdate, int legacy)
380{
381 time_t rtc_start_date;
382 struct tm tm;
383
384 if (!strcmp(startdate, "now") && legacy) {
385 rtc_date_offset = -1;
386 } else {
387 if (sscanf(startdate, "%d-%d-%dT%d:%d:%d",
388 &tm.tm_year,
389 &tm.tm_mon,
390 &tm.tm_mday,
391 &tm.tm_hour,
392 &tm.tm_min,
393 &tm.tm_sec) == 6) {
394 /* OK */
395 } else if (sscanf(startdate, "%d-%d-%d",
396 &tm.tm_year,
397 &tm.tm_mon,
398 &tm.tm_mday) == 3) {
399 tm.tm_hour = 0;
400 tm.tm_min = 0;
401 tm.tm_sec = 0;
402 } else {
403 goto date_fail;
404 }
405 tm.tm_year -= 1900;
406 tm.tm_mon--;
407 rtc_start_date = mktimegm(&tm);
408 if (rtc_start_date == -1) {
409 date_fail:
410 fprintf(stderr, "Invalid date format. Valid formats are:\n"
411 "'2006-06-17T16:01:21' or '2006-06-17'\n");
412 exit(1);
413 }
414 rtc_date_offset = time(NULL) - rtc_start_date;
415 }
416}
417
418static void configure_rtc(QemuOpts *opts)
419{
420 const char *value;
421
422 value = qemu_opt_get(opts, "base");
423 if (value) {
424 if (!strcmp(value, "utc")) {
425 rtc_utc = 1;
426 } else if (!strcmp(value, "localtime")) {
427 rtc_utc = 0;
428 } else {
429 configure_rtc_date_offset(value, 0);
430 }
431 }
Jan Kiszka68752042009-09-15 13:36:04 +0200432 value = qemu_opt_get(opts, "clock");
433 if (value) {
434 if (!strcmp(value, "host")) {
435 rtc_clock = host_clock;
436 } else if (!strcmp(value, "vm")) {
437 rtc_clock = vm_clock;
438 } else {
439 fprintf(stderr, "qemu: invalid option value '%s'\n", value);
440 exit(1);
441 }
442 }
Jan Kiszka1ed2fc12009-09-15 13:36:04 +0200443 value = qemu_opt_get(opts, "driftfix");
444 if (value) {
Blue Swirl7e4c0332010-03-27 21:33:46 +0000445 if (!strcmp(value, "slew")) {
Jan Kiszka1ed2fc12009-09-15 13:36:04 +0200446 rtc_td_hack = 1;
Blue Swirl7e4c0332010-03-27 21:33:46 +0000447 } else if (!strcmp(value, "none")) {
Jan Kiszka1ed2fc12009-09-15 13:36:04 +0200448 rtc_td_hack = 0;
449 } else {
450 fprintf(stderr, "qemu: invalid option value '%s'\n", value);
451 exit(1);
452 }
453 }
Jan Kiszka1ed2fc12009-09-15 13:36:04 +0200454}
455
balrog1ae26a12008-09-28 23:19:47 +0000456/***********************************************************/
457/* Bluetooth support */
458static int nb_hcis;
459static int cur_hci;
460static struct HCIInfo *hci_table[MAX_NICS];
balrogdc72ac12008-11-09 00:04:26 +0000461
balrog1ae26a12008-09-28 23:19:47 +0000462static struct bt_vlan_s {
463 struct bt_scatternet_s net;
464 int id;
465 struct bt_vlan_s *next;
466} *first_bt_vlan;
467
468/* find or alloc a new bluetooth "VLAN" */
blueswir1674bb262008-09-30 18:18:27 +0000469static struct bt_scatternet_s *qemu_find_bt_vlan(int id)
balrog1ae26a12008-09-28 23:19:47 +0000470{
471 struct bt_vlan_s **pvlan, *vlan;
472 for (vlan = first_bt_vlan; vlan != NULL; vlan = vlan->next) {
473 if (vlan->id == id)
474 return &vlan->net;
475 }
476 vlan = qemu_mallocz(sizeof(struct bt_vlan_s));
477 vlan->id = id;
478 pvlan = &first_bt_vlan;
479 while (*pvlan != NULL)
480 pvlan = &(*pvlan)->next;
481 *pvlan = vlan;
482 return &vlan->net;
483}
484
485static void null_hci_send(struct HCIInfo *hci, const uint8_t *data, int len)
486{
487}
488
489static int null_hci_addr_set(struct HCIInfo *hci, const uint8_t *bd_addr)
490{
491 return -ENOTSUP;
492}
493
494static struct HCIInfo null_hci = {
495 .cmd_send = null_hci_send,
496 .sco_send = null_hci_send,
497 .acl_send = null_hci_send,
498 .bdaddr_set = null_hci_addr_set,
499};
500
501struct HCIInfo *qemu_next_hci(void)
502{
503 if (cur_hci == nb_hcis)
504 return &null_hci;
505
506 return hci_table[cur_hci++];
507}
508
balrogdc72ac12008-11-09 00:04:26 +0000509static struct HCIInfo *hci_init(const char *str)
510{
511 char *endp;
512 struct bt_scatternet_s *vlan = 0;
513
514 if (!strcmp(str, "null"))
515 /* null */
516 return &null_hci;
517 else if (!strncmp(str, "host", 4) && (str[4] == '\0' || str[4] == ':'))
518 /* host[:hciN] */
519 return bt_host_hci(str[4] ? str + 5 : "hci0");
520 else if (!strncmp(str, "hci", 3)) {
521 /* hci[,vlan=n] */
522 if (str[3]) {
523 if (!strncmp(str + 3, ",vlan=", 6)) {
524 vlan = qemu_find_bt_vlan(strtol(str + 9, &endp, 0));
525 if (*endp)
526 vlan = 0;
527 }
528 } else
529 vlan = qemu_find_bt_vlan(0);
530 if (vlan)
531 return bt_new_hci(vlan);
532 }
533
534 fprintf(stderr, "qemu: Unknown bluetooth HCI `%s'.\n", str);
535
536 return 0;
537}
538
539static int bt_hci_parse(const char *str)
540{
541 struct HCIInfo *hci;
Anthony Liguoric227f092009-10-01 16:12:16 -0500542 bdaddr_t bdaddr;
balrogdc72ac12008-11-09 00:04:26 +0000543
544 if (nb_hcis >= MAX_NICS) {
545 fprintf(stderr, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS);
546 return -1;
547 }
548
549 hci = hci_init(str);
550 if (!hci)
551 return -1;
552
553 bdaddr.b[0] = 0x52;
554 bdaddr.b[1] = 0x54;
555 bdaddr.b[2] = 0x00;
556 bdaddr.b[3] = 0x12;
557 bdaddr.b[4] = 0x34;
558 bdaddr.b[5] = 0x56 + nb_hcis;
559 hci->bdaddr_set(hci, bdaddr.b);
560
561 hci_table[nb_hcis++] = hci;
562
563 return 0;
564}
565
566static void bt_vhci_add(int vlan_id)
567{
568 struct bt_scatternet_s *vlan = qemu_find_bt_vlan(vlan_id);
569
570 if (!vlan->slave)
571 fprintf(stderr, "qemu: warning: adding a VHCI to "
572 "an empty scatternet %i\n", vlan_id);
573
574 bt_vhci_init(bt_new_hci(vlan));
575}
576
577static struct bt_device_s *bt_device_add(const char *opt)
578{
579 struct bt_scatternet_s *vlan;
580 int vlan_id = 0;
581 char *endp = strstr(opt, ",vlan=");
582 int len = (endp ? endp - opt : strlen(opt)) + 1;
583 char devname[10];
584
585 pstrcpy(devname, MIN(sizeof(devname), len), opt);
586
587 if (endp) {
588 vlan_id = strtol(endp + 6, &endp, 0);
589 if (*endp) {
590 fprintf(stderr, "qemu: unrecognised bluetooth vlan Id\n");
591 return 0;
592 }
593 }
594
595 vlan = qemu_find_bt_vlan(vlan_id);
596
597 if (!vlan->slave)
598 fprintf(stderr, "qemu: warning: adding a slave device to "
599 "an empty scatternet %i\n", vlan_id);
600
601 if (!strcmp(devname, "keyboard"))
602 return bt_keyboard_init(vlan);
603
604 fprintf(stderr, "qemu: unsupported bluetooth device `%s'\n", devname);
605 return 0;
606}
607
608static int bt_parse(const char *opt)
609{
610 const char *endp, *p;
611 int vlan;
612
613 if (strstart(opt, "hci", &endp)) {
614 if (!*endp || *endp == ',') {
615 if (*endp)
616 if (!strstart(endp, ",vlan=", 0))
617 opt = endp + 1;
618
619 return bt_hci_parse(opt);
620 }
621 } else if (strstart(opt, "vhci", &endp)) {
622 if (!*endp || *endp == ',') {
623 if (*endp) {
624 if (strstart(endp, ",vlan=", &p)) {
625 vlan = strtol(p, (char **) &endp, 0);
626 if (*endp) {
627 fprintf(stderr, "qemu: bad scatternet '%s'\n", p);
628 return 1;
629 }
630 } else {
631 fprintf(stderr, "qemu: bad parameter '%s'\n", endp + 1);
632 return 1;
633 }
634 } else
635 vlan = 0;
636
637 bt_vhci_add(vlan);
638 return 0;
639 }
640 } else if (strstart(opt, "device:", &endp))
641 return !bt_device_add(endp);
642
643 fprintf(stderr, "qemu: bad bluetooth parameter '%s'\n", opt);
644 return 1;
645}
646
balrog1ae26a12008-09-28 23:19:47 +0000647/***********************************************************/
648/* QEMU Block devices */
649
balrog609497a2008-01-14 02:56:53 +0000650#define HD_ALIAS "index=%d,media=disk"
thse4bcb142007-12-02 04:51:10 +0000651#define CDROM_ALIAS "index=2,media=cdrom"
thse4bcb142007-12-02 04:51:10 +0000652#define FD_ALIAS "index=%d,if=floppy"
balrog609497a2008-01-14 02:56:53 +0000653#define PFLASH_ALIAS "if=pflash"
654#define MTD_ALIAS "if=mtd"
balrog9d413d12007-12-04 00:10:34 +0000655#define SD_ALIAS "index=0,if=sd"
thse4bcb142007-12-02 04:51:10 +0000656
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200657QemuOpts *drive_add(const char *file, const char *fmt, ...)
thse4bcb142007-12-02 04:51:10 +0000658{
659 va_list ap;
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200660 char optstr[1024];
661 QemuOpts *opts;
thse4bcb142007-12-02 04:51:10 +0000662
thse4bcb142007-12-02 04:51:10 +0000663 va_start(ap, fmt);
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200664 vsnprintf(optstr, sizeof(optstr), fmt, ap);
thse4bcb142007-12-02 04:51:10 +0000665 va_end(ap);
666
Markus Armbruster8212c642010-02-10 19:52:18 +0100667 opts = qemu_opts_parse(&qemu_drive_opts, optstr, 0);
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200668 if (!opts) {
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200669 return NULL;
670 }
671 if (file)
672 qemu_opt_set(opts, "file", file);
673 return opts;
aliguorib01b1112009-02-11 15:20:20 +0000674}
675
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200676DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit)
thse4bcb142007-12-02 04:51:10 +0000677{
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200678 DriveInfo *dinfo;
thse4bcb142007-12-02 04:51:10 +0000679
680 /* seek interface, bus and unit */
681
Blue Swirl72cf2d42009-09-12 07:36:22 +0000682 QTAILQ_FOREACH(dinfo, &drives, next) {
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200683 if (dinfo->type == type &&
684 dinfo->bus == bus &&
685 dinfo->unit == unit)
686 return dinfo;
687 }
thse4bcb142007-12-02 04:51:10 +0000688
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200689 return NULL;
thse4bcb142007-12-02 04:51:10 +0000690}
691
Gerd Hoffmann2e810b32009-07-31 12:25:38 +0200692DriveInfo *drive_get_by_id(const char *id)
Gerd Hoffmann1dae12e2009-07-22 16:42:58 +0200693{
694 DriveInfo *dinfo;
695
Blue Swirl72cf2d42009-09-12 07:36:22 +0000696 QTAILQ_FOREACH(dinfo, &drives, next) {
Gerd Hoffmann1dae12e2009-07-22 16:42:58 +0200697 if (strcmp(id, dinfo->id))
698 continue;
699 return dinfo;
700 }
701 return NULL;
702}
703
thsf60d39b2007-12-17 03:55:57 +0000704int drive_get_max_bus(BlockInterfaceType type)
thse4bcb142007-12-02 04:51:10 +0000705{
706 int max_bus;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200707 DriveInfo *dinfo;
thse4bcb142007-12-02 04:51:10 +0000708
709 max_bus = -1;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000710 QTAILQ_FOREACH(dinfo, &drives, next) {
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200711 if(dinfo->type == type &&
712 dinfo->bus > max_bus)
713 max_bus = dinfo->bus;
thse4bcb142007-12-02 04:51:10 +0000714 }
715 return max_bus;
716}
717
aliguorifa879c62009-01-07 17:32:33 +0000718const char *drive_get_serial(BlockDriverState *bdrv)
719{
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200720 DriveInfo *dinfo;
aliguorifa879c62009-01-07 17:32:33 +0000721
Blue Swirl72cf2d42009-09-12 07:36:22 +0000722 QTAILQ_FOREACH(dinfo, &drives, next) {
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200723 if (dinfo->bdrv == bdrv)
724 return dinfo->serial;
725 }
aliguorifa879c62009-01-07 17:32:33 +0000726
727 return "\0";
728}
729
Kevin Wolff7850092009-11-27 13:25:36 +0100730BlockInterfaceErrorAction drive_get_on_error(
731 BlockDriverState *bdrv, int is_read)
aliguori428c5702009-01-21 18:59:04 +0000732{
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200733 DriveInfo *dinfo;
aliguori428c5702009-01-21 18:59:04 +0000734
Blue Swirl72cf2d42009-09-12 07:36:22 +0000735 QTAILQ_FOREACH(dinfo, &drives, next) {
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200736 if (dinfo->bdrv == bdrv)
Kevin Wolfe9b2e812009-11-27 13:25:37 +0100737 return is_read ? dinfo->on_read_error : dinfo->on_write_error;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200738 }
aliguori428c5702009-01-21 18:59:04 +0000739
Kevin Wolfe9b2e812009-11-27 13:25:37 +0100740 return is_read ? BLOCK_ERR_REPORT : BLOCK_ERR_STOP_ENOSPC;
aliguori428c5702009-01-21 18:59:04 +0000741}
742
aurel32a1620fa2008-04-29 05:58:01 +0000743static void bdrv_format_print(void *opaque, const char *name)
744{
745 fprintf(stderr, " %s", name);
746}
747
Gerd Hoffmann56a14932009-09-25 21:42:46 +0200748void drive_uninit(DriveInfo *dinfo)
aliguorib01b1112009-02-11 15:20:20 +0000749{
Gerd Hoffmann56a14932009-09-25 21:42:46 +0200750 qemu_opts_del(dinfo->opts);
751 bdrv_delete(dinfo->bdrv);
752 QTAILQ_REMOVE(&drives, dinfo, next);
753 qemu_free(dinfo);
aliguorib01b1112009-02-11 15:20:20 +0000754}
755
Kevin Wolfe9b2e812009-11-27 13:25:37 +0100756static int parse_block_error_action(const char *buf, int is_read)
757{
758 if (!strcmp(buf, "ignore")) {
759 return BLOCK_ERR_IGNORE;
760 } else if (!is_read && !strcmp(buf, "enospc")) {
761 return BLOCK_ERR_STOP_ENOSPC;
762 } else if (!strcmp(buf, "stop")) {
763 return BLOCK_ERR_STOP_ANY;
764 } else if (!strcmp(buf, "report")) {
765 return BLOCK_ERR_REPORT;
766 } else {
767 fprintf(stderr, "qemu: '%s' invalid %s error action\n",
768 buf, is_read ? "read" : "write");
769 return -1;
770 }
771}
772
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200773DriveInfo *drive_init(QemuOpts *opts, void *opaque,
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200774 int *fatal_error)
thse4bcb142007-12-02 04:51:10 +0000775{
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200776 const char *buf;
777 const char *file = NULL;
balrogc8522bd2007-12-06 22:11:20 +0000778 char devname[128];
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200779 const char *serial;
balrogc8522bd2007-12-06 22:11:20 +0000780 const char *mediastr = "";
thsf60d39b2007-12-17 03:55:57 +0000781 BlockInterfaceType type;
thse4bcb142007-12-02 04:51:10 +0000782 enum { MEDIA_DISK, MEDIA_CDROM } media;
783 int bus_id, unit_id;
784 int cyls, heads, secs, translation;
aurel321e72d3b2008-04-28 20:26:45 +0000785 BlockDriver *drv = NULL;
aliguori4d73cd32009-02-11 15:20:46 +0000786 QEMUMachine *machine = opaque;
thse4bcb142007-12-02 04:51:10 +0000787 int max_devs;
788 int index;
Naphtali Sprei59f26892009-10-26 16:25:16 +0200789 int ro = 0;
Christoph Hellwig763b6082010-04-06 19:12:04 +0200790 int bdrv_flags = 0;
Kevin Wolfe9b2e812009-11-27 13:25:37 +0100791 int on_read_error, on_write_error;
Markus Armbrusterc2cc47a2009-06-18 15:14:10 +0200792 const char *devaddr;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200793 DriveInfo *dinfo;
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200794 int snapshot = 0;
795
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200796 *fatal_error = 1;
thse4bcb142007-12-02 04:51:10 +0000797
thse4bcb142007-12-02 04:51:10 +0000798 translation = BIOS_ATA_TRANSLATION_AUTO;
thse4bcb142007-12-02 04:51:10 +0000799
Gerd Hoffmann4d007812009-08-31 14:23:57 +0200800 if (machine && machine->use_scsi) {
thsf60d39b2007-12-17 03:55:57 +0000801 type = IF_SCSI;
thse4bcb142007-12-02 04:51:10 +0000802 max_devs = MAX_SCSI_DEVS;
blueswir1363a37d2008-08-21 17:58:08 +0000803 pstrcpy(devname, sizeof(devname), "scsi");
thse4bcb142007-12-02 04:51:10 +0000804 } else {
thsf60d39b2007-12-17 03:55:57 +0000805 type = IF_IDE;
thse4bcb142007-12-02 04:51:10 +0000806 max_devs = MAX_IDE_DEVS;
blueswir1363a37d2008-08-21 17:58:08 +0000807 pstrcpy(devname, sizeof(devname), "ide");
thse4bcb142007-12-02 04:51:10 +0000808 }
809 media = MEDIA_DISK;
810
811 /* extract parameters */
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200812 bus_id = qemu_opt_get_number(opts, "bus", 0);
813 unit_id = qemu_opt_get_number(opts, "unit", -1);
814 index = qemu_opt_get_number(opts, "index", -1);
thse4bcb142007-12-02 04:51:10 +0000815
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200816 cyls = qemu_opt_get_number(opts, "cyls", 0);
817 heads = qemu_opt_get_number(opts, "heads", 0);
818 secs = qemu_opt_get_number(opts, "secs", 0);
thse4bcb142007-12-02 04:51:10 +0000819
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200820 snapshot = qemu_opt_get_bool(opts, "snapshot", 0);
Naphtali Sprei59f26892009-10-26 16:25:16 +0200821 ro = qemu_opt_get_bool(opts, "readonly", 0);
thse4bcb142007-12-02 04:51:10 +0000822
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200823 file = qemu_opt_get(opts, "file");
824 serial = qemu_opt_get(opts, "serial");
825
826 if ((buf = qemu_opt_get(opts, "if")) != NULL) {
bellardae45d362008-06-11 09:44:44 +0000827 pstrcpy(devname, sizeof(devname), buf);
thse4bcb142007-12-02 04:51:10 +0000828 if (!strcmp(buf, "ide")) {
thsf60d39b2007-12-17 03:55:57 +0000829 type = IF_IDE;
thse4bcb142007-12-02 04:51:10 +0000830 max_devs = MAX_IDE_DEVS;
831 } else if (!strcmp(buf, "scsi")) {
thsf60d39b2007-12-17 03:55:57 +0000832 type = IF_SCSI;
thse4bcb142007-12-02 04:51:10 +0000833 max_devs = MAX_SCSI_DEVS;
834 } else if (!strcmp(buf, "floppy")) {
thsf60d39b2007-12-17 03:55:57 +0000835 type = IF_FLOPPY;
thse4bcb142007-12-02 04:51:10 +0000836 max_devs = 0;
837 } else if (!strcmp(buf, "pflash")) {
thsf60d39b2007-12-17 03:55:57 +0000838 type = IF_PFLASH;
thse4bcb142007-12-02 04:51:10 +0000839 max_devs = 0;
840 } else if (!strcmp(buf, "mtd")) {
thsf60d39b2007-12-17 03:55:57 +0000841 type = IF_MTD;
thse4bcb142007-12-02 04:51:10 +0000842 max_devs = 0;
843 } else if (!strcmp(buf, "sd")) {
thsf60d39b2007-12-17 03:55:57 +0000844 type = IF_SD;
thse4bcb142007-12-02 04:51:10 +0000845 max_devs = 0;
aliguori6e02c382008-12-04 19:52:44 +0000846 } else if (!strcmp(buf, "virtio")) {
847 type = IF_VIRTIO;
848 max_devs = 0;
aliguori62d23ef2009-04-22 15:19:30 +0000849 } else if (!strcmp(buf, "xen")) {
850 type = IF_XEN;
851 max_devs = 0;
Gerd Hoffmanna8659e92009-07-31 12:25:39 +0200852 } else if (!strcmp(buf, "none")) {
853 type = IF_NONE;
854 max_devs = 0;
aliguori62d23ef2009-04-22 15:19:30 +0000855 } else {
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200856 fprintf(stderr, "qemu: unsupported bus type '%s'\n", buf);
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200857 return NULL;
thse4bcb142007-12-02 04:51:10 +0000858 }
859 }
860
thse4bcb142007-12-02 04:51:10 +0000861 if (cyls || heads || secs) {
Blue Swirl5afe3f02009-10-17 09:08:47 +0000862 if (cyls < 1 || (type == IF_IDE && cyls > 16383)) {
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200863 fprintf(stderr, "qemu: '%s' invalid physical cyls number\n", buf);
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200864 return NULL;
thse4bcb142007-12-02 04:51:10 +0000865 }
Blue Swirl5afe3f02009-10-17 09:08:47 +0000866 if (heads < 1 || (type == IF_IDE && heads > 16)) {
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200867 fprintf(stderr, "qemu: '%s' invalid physical heads number\n", buf);
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200868 return NULL;
thse4bcb142007-12-02 04:51:10 +0000869 }
Blue Swirl5afe3f02009-10-17 09:08:47 +0000870 if (secs < 1 || (type == IF_IDE && secs > 63)) {
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200871 fprintf(stderr, "qemu: '%s' invalid physical secs number\n", buf);
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200872 return NULL;
thse4bcb142007-12-02 04:51:10 +0000873 }
874 }
875
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200876 if ((buf = qemu_opt_get(opts, "trans")) != NULL) {
thse4bcb142007-12-02 04:51:10 +0000877 if (!cyls) {
878 fprintf(stderr,
879 "qemu: '%s' trans must be used with cyls,heads and secs\n",
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200880 buf);
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200881 return NULL;
thse4bcb142007-12-02 04:51:10 +0000882 }
883 if (!strcmp(buf, "none"))
884 translation = BIOS_ATA_TRANSLATION_NONE;
885 else if (!strcmp(buf, "lba"))
886 translation = BIOS_ATA_TRANSLATION_LBA;
887 else if (!strcmp(buf, "auto"))
888 translation = BIOS_ATA_TRANSLATION_AUTO;
889 else {
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200890 fprintf(stderr, "qemu: '%s' invalid translation type\n", buf);
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200891 return NULL;
thse4bcb142007-12-02 04:51:10 +0000892 }
893 }
894
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200895 if ((buf = qemu_opt_get(opts, "media")) != NULL) {
thse4bcb142007-12-02 04:51:10 +0000896 if (!strcmp(buf, "disk")) {
897 media = MEDIA_DISK;
898 } else if (!strcmp(buf, "cdrom")) {
899 if (cyls || secs || heads) {
900 fprintf(stderr,
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200901 "qemu: '%s' invalid physical CHS format\n", buf);
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200902 return NULL;
thse4bcb142007-12-02 04:51:10 +0000903 }
904 media = MEDIA_CDROM;
905 } else {
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200906 fprintf(stderr, "qemu: '%s' invalid media\n", buf);
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200907 return NULL;
thse4bcb142007-12-02 04:51:10 +0000908 }
909 }
910
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200911 if ((buf = qemu_opt_get(opts, "cache")) != NULL) {
Christoph Hellwig763b6082010-04-06 19:12:04 +0200912 if (!strcmp(buf, "off") || !strcmp(buf, "none")) {
913 bdrv_flags |= BDRV_O_NOCACHE;
914 } else if (!strcmp(buf, "writeback")) {
915 bdrv_flags |= BDRV_O_CACHE_WB;
916 } else if (!strcmp(buf, "writethrough")) {
917 /* this is the default */
918 } else {
balrog33f00272007-12-24 14:33:24 +0000919 fprintf(stderr, "qemu: invalid cache option\n");
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200920 return NULL;
balrog33f00272007-12-24 14:33:24 +0000921 }
922 }
923
Christoph Hellwig5c6c3a62009-08-20 16:58:35 +0200924#ifdef CONFIG_LINUX_AIO
925 if ((buf = qemu_opt_get(opts, "aio")) != NULL) {
Christoph Hellwig763b6082010-04-06 19:12:04 +0200926 if (!strcmp(buf, "native")) {
927 bdrv_flags |= BDRV_O_NATIVE_AIO;
928 } else if (!strcmp(buf, "threads")) {
929 /* this is the default */
930 } else {
Christoph Hellwig5c6c3a62009-08-20 16:58:35 +0200931 fprintf(stderr, "qemu: invalid aio option\n");
932 return NULL;
933 }
934 }
935#endif
936
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200937 if ((buf = qemu_opt_get(opts, "format")) != NULL) {
aurel32a1620fa2008-04-29 05:58:01 +0000938 if (strcmp(buf, "?") == 0) {
939 fprintf(stderr, "qemu: Supported formats:");
940 bdrv_iterate_format(bdrv_format_print, NULL);
941 fprintf(stderr, "\n");
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200942 return NULL;
aurel32a1620fa2008-04-29 05:58:01 +0000943 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100944 drv = bdrv_find_whitelisted_format(buf);
aurel321e72d3b2008-04-28 20:26:45 +0000945 if (!drv) {
946 fprintf(stderr, "qemu: '%s' invalid format\n", buf);
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200947 return NULL;
aurel321e72d3b2008-04-28 20:26:45 +0000948 }
949 }
950
Kevin Wolfe9b2e812009-11-27 13:25:37 +0100951 on_write_error = BLOCK_ERR_STOP_ENOSPC;
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200952 if ((buf = qemu_opt_get(opts, "werror")) != NULL) {
aliguori869a5c62009-01-22 19:52:25 +0000953 if (type != IF_IDE && type != IF_SCSI && type != IF_VIRTIO) {
aliguoriea8a5d72009-01-22 19:52:21 +0000954 fprintf(stderr, "werror is no supported by this format\n");
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200955 return NULL;
aliguori428c5702009-01-21 18:59:04 +0000956 }
Kevin Wolfe9b2e812009-11-27 13:25:37 +0100957
958 on_write_error = parse_block_error_action(buf, 0);
959 if (on_write_error < 0) {
960 return NULL;
961 }
962 }
963
964 on_read_error = BLOCK_ERR_REPORT;
965 if ((buf = qemu_opt_get(opts, "rerror")) != NULL) {
Kevin Wolff35d68f2009-11-27 13:25:39 +0100966 if (type != IF_IDE && type != IF_VIRTIO) {
Kevin Wolfe9b2e812009-11-27 13:25:37 +0100967 fprintf(stderr, "rerror is no supported by this format\n");
968 return NULL;
969 }
970
971 on_read_error = parse_block_error_action(buf, 1);
972 if (on_read_error < 0) {
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200973 return NULL;
aliguori428c5702009-01-21 18:59:04 +0000974 }
975 }
976
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200977 if ((devaddr = qemu_opt_get(opts, "addr")) != NULL) {
Markus Armbrusterc2cc47a2009-06-18 15:14:10 +0200978 if (type != IF_VIRTIO) {
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200979 fprintf(stderr, "addr is not supported\n");
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200980 return NULL;
Markus Armbrusterc2cc47a2009-06-18 15:14:10 +0200981 }
Markus Armbrusterc2cc47a2009-06-18 15:14:10 +0200982 }
983
thse4bcb142007-12-02 04:51:10 +0000984 /* compute bus and unit according index */
985
986 if (index != -1) {
987 if (bus_id != 0 || unit_id != -1) {
988 fprintf(stderr,
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200989 "qemu: index cannot be used with bus and unit\n");
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200990 return NULL;
thse4bcb142007-12-02 04:51:10 +0000991 }
992 if (max_devs == 0)
993 {
994 unit_id = index;
995 bus_id = 0;
996 } else {
997 unit_id = index % max_devs;
998 bus_id = index / max_devs;
999 }
1000 }
1001
1002 /* if user doesn't specify a unit_id,
1003 * try to find the first free
1004 */
1005
1006 if (unit_id == -1) {
1007 unit_id = 0;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001008 while (drive_get(type, bus_id, unit_id) != NULL) {
thse4bcb142007-12-02 04:51:10 +00001009 unit_id++;
1010 if (max_devs && unit_id >= max_devs) {
1011 unit_id -= max_devs;
1012 bus_id++;
1013 }
1014 }
1015 }
1016
1017 /* check unit id */
1018
1019 if (max_devs && unit_id >= max_devs) {
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02001020 fprintf(stderr, "qemu: unit %d too big (max is %d)\n",
1021 unit_id, max_devs - 1);
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001022 return NULL;
thse4bcb142007-12-02 04:51:10 +00001023 }
1024
1025 /*
1026 * ignore multiple definitions
1027 */
1028
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001029 if (drive_get(type, bus_id, unit_id) != NULL) {
1030 *fatal_error = 0;
1031 return NULL;
1032 }
thse4bcb142007-12-02 04:51:10 +00001033
1034 /* init */
1035
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001036 dinfo = qemu_mallocz(sizeof(*dinfo));
Gerd Hoffmanne23d9c42009-07-31 12:25:34 +02001037 if ((buf = qemu_opts_id(opts)) != NULL) {
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02001038 dinfo->id = qemu_strdup(buf);
1039 } else {
Gerd Hoffmann1dae12e2009-07-22 16:42:58 +02001040 /* no id supplied -> create one */
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02001041 dinfo->id = qemu_mallocz(32);
Gerd Hoffmann1dae12e2009-07-22 16:42:58 +02001042 if (type == IF_IDE || type == IF_SCSI)
1043 mediastr = (media == MEDIA_CDROM) ? "-cd" : "-hd";
1044 if (max_devs)
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02001045 snprintf(dinfo->id, 32, "%s%i%s%i",
Gerd Hoffmann1dae12e2009-07-22 16:42:58 +02001046 devname, bus_id, mediastr, unit_id);
1047 else
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02001048 snprintf(dinfo->id, 32, "%s%s%i",
Gerd Hoffmann1dae12e2009-07-22 16:42:58 +02001049 devname, mediastr, unit_id);
1050 }
Gerd Hoffmann1dae12e2009-07-22 16:42:58 +02001051 dinfo->bdrv = bdrv_new(dinfo->id);
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001052 dinfo->devaddr = devaddr;
1053 dinfo->type = type;
1054 dinfo->bus = bus_id;
1055 dinfo->unit = unit_id;
Kevin Wolfe9b2e812009-11-27 13:25:37 +01001056 dinfo->on_read_error = on_read_error;
1057 dinfo->on_write_error = on_write_error;
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02001058 dinfo->opts = opts;
1059 if (serial)
1060 strncpy(dinfo->serial, serial, sizeof(serial));
Blue Swirl72cf2d42009-09-12 07:36:22 +00001061 QTAILQ_INSERT_TAIL(&drives, dinfo, next);
thse4bcb142007-12-02 04:51:10 +00001062
thsf60d39b2007-12-17 03:55:57 +00001063 switch(type) {
thse4bcb142007-12-02 04:51:10 +00001064 case IF_IDE:
1065 case IF_SCSI:
aliguori62d23ef2009-04-22 15:19:30 +00001066 case IF_XEN:
Gerd Hoffmannc2193312009-09-15 19:23:28 +00001067 case IF_NONE:
thse4bcb142007-12-02 04:51:10 +00001068 switch(media) {
1069 case MEDIA_DISK:
1070 if (cyls != 0) {
Gerd Hoffmann1dae12e2009-07-22 16:42:58 +02001071 bdrv_set_geometry_hint(dinfo->bdrv, cyls, heads, secs);
1072 bdrv_set_translation_hint(dinfo->bdrv, translation);
thse4bcb142007-12-02 04:51:10 +00001073 }
1074 break;
1075 case MEDIA_CDROM:
Gerd Hoffmann1dae12e2009-07-22 16:42:58 +02001076 bdrv_set_type_hint(dinfo->bdrv, BDRV_TYPE_CDROM);
thse4bcb142007-12-02 04:51:10 +00001077 break;
1078 }
1079 break;
1080 case IF_SD:
1081 /* FIXME: This isn't really a floppy, but it's a reasonable
1082 approximation. */
1083 case IF_FLOPPY:
Gerd Hoffmann1dae12e2009-07-22 16:42:58 +02001084 bdrv_set_type_hint(dinfo->bdrv, BDRV_TYPE_FLOPPY);
thse4bcb142007-12-02 04:51:10 +00001085 break;
1086 case IF_PFLASH:
1087 case IF_MTD:
1088 break;
Gerd Hoffmannd176c492009-07-31 12:25:41 +02001089 case IF_VIRTIO:
1090 /* add virtio block device */
1091 opts = qemu_opts_create(&qemu_device_opts, NULL, 0);
1092 qemu_opt_set(opts, "driver", "virtio-blk-pci");
1093 qemu_opt_set(opts, "drive", dinfo->id);
1094 if (devaddr)
1095 qemu_opt_set(opts, "addr", devaddr);
1096 break;
Paul Brookaae94602009-05-14 22:35:06 +01001097 case IF_COUNT:
1098 abort();
thse4bcb142007-12-02 04:51:10 +00001099 }
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02001100 if (!file) {
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001101 *fatal_error = 0;
1102 return NULL;
1103 }
aliguori9f7965c2008-10-14 14:42:54 +00001104 if (snapshot) {
Christoph Hellwig763b6082010-04-06 19:12:04 +02001105 /* always use write-back with snapshot */
1106 bdrv_flags &= ~BDRV_O_CACHE_MASK;
1107 bdrv_flags |= (BDRV_O_SNAPSHOT|BDRV_O_CACHE_WB);
Christoph Hellwig5c6c3a62009-08-20 16:58:35 +02001108 }
1109
Naphtali Sprei2db7ad52010-03-23 12:17:16 +02001110 if (media == MEDIA_CDROM) {
1111 /* CDROM is fine for any interface, don't check. */
1112 ro = 1;
1113 } else if (ro == 1) {
Naphtali Spreif5edb012010-01-17 16:48:13 +02001114 if (type != IF_SCSI && type != IF_VIRTIO && type != IF_FLOPPY) {
1115 fprintf(stderr, "qemu: readonly flag not supported for drive with this interface\n");
Naphtali Sprei59f26892009-10-26 16:25:16 +02001116 return NULL;
1117 }
Naphtali Sprei59f26892009-10-26 16:25:16 +02001118 }
Naphtali Sprei2db7ad52010-03-23 12:17:16 +02001119
Naphtali Spreif5edb012010-01-17 16:48:13 +02001120 bdrv_flags |= ro ? 0 : BDRV_O_RDWR;
Naphtali Sprei59f26892009-10-26 16:25:16 +02001121
Kevin Wolfd6e90982010-03-31 14:40:27 +02001122 if (bdrv_open(dinfo->bdrv, file, bdrv_flags, drv) < 0) {
Justin M. Forbes850810d2009-10-01 09:42:56 -05001123 fprintf(stderr, "qemu: could not open disk image %s: %s\n",
1124 file, strerror(errno));
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001125 return NULL;
thse4bcb142007-12-02 04:51:10 +00001126 }
Christoph Hellwig5c6c3a62009-08-20 16:58:35 +02001127
Gerd Hoffmann1dae12e2009-07-22 16:42:58 +02001128 if (bdrv_key_required(dinfo->bdrv))
aliguoric0f4ce72009-03-05 23:01:01 +00001129 autostart = 0;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001130 *fatal_error = 0;
1131 return dinfo;
thse4bcb142007-12-02 04:51:10 +00001132}
1133
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02001134static int drive_init_func(QemuOpts *opts, void *opaque)
1135{
1136 QEMUMachine *machine = opaque;
1137 int fatal_error = 0;
1138
1139 if (drive_init(opts, machine, &fatal_error) == NULL) {
1140 if (fatal_error)
1141 return 1;
1142 }
1143 return 0;
1144}
1145
1146static int drive_enable_snapshot(QemuOpts *opts, void *opaque)
1147{
1148 if (NULL == qemu_opt_get(opts, "snapshot")) {
1149 qemu_opt_set(opts, "snapshot", "on");
1150 }
1151 return 0;
1152}
1153
Jan Kiszka76e30d02009-07-02 00:19:02 +02001154void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque)
1155{
1156 boot_set_handler = func;
1157 boot_set_opaque = opaque;
1158}
1159
1160int qemu_boot_set(const char *boot_devices)
1161{
1162 if (!boot_set_handler) {
1163 return -EINVAL;
1164 }
1165 return boot_set_handler(boot_set_opaque, boot_devices);
1166}
1167
Eduardo Habkost4e9e9d62010-04-06 19:22:08 -03001168static void validate_bootdevices(char *devices)
Jan Kiszkaef3adf62009-07-02 00:19:02 +02001169{
1170 /* We just do some generic consistency checks */
1171 const char *p;
1172 int bitmap = 0;
1173
1174 for (p = devices; *p != '\0'; p++) {
1175 /* Allowed boot devices are:
1176 * a-b: floppy disk drives
1177 * c-f: IDE disk drives
1178 * g-m: machine implementation dependant drives
1179 * n-p: network devices
1180 * It's up to each machine implementation to check if the given boot
1181 * devices match the actual hardware implementation and firmware
1182 * features.
1183 */
1184 if (*p < 'a' || *p > 'p') {
1185 fprintf(stderr, "Invalid boot device '%c'\n", *p);
1186 exit(1);
1187 }
1188 if (bitmap & (1 << (*p - 'a'))) {
1189 fprintf(stderr, "Boot device '%c' was given twice\n", *p);
1190 exit(1);
1191 }
1192 bitmap |= 1 << (*p - 'a');
1193 }
Jan Kiszkaef3adf62009-07-02 00:19:02 +02001194}
1195
Jan Kiszkae0f084b2009-07-02 00:19:02 +02001196static void restore_boot_devices(void *opaque)
1197{
1198 char *standard_boot_devices = opaque;
Alex Williamson37905d62010-04-30 15:21:11 -06001199 static int first = 1;
1200
1201 /* Restore boot order and remove ourselves after the first boot */
1202 if (first) {
1203 first = 0;
1204 return;
1205 }
Jan Kiszkae0f084b2009-07-02 00:19:02 +02001206
1207 qemu_boot_set(standard_boot_devices);
1208
1209 qemu_unregister_reset(restore_boot_devices, standard_boot_devices);
1210 qemu_free(standard_boot_devices);
1211}
1212
aliguori268a3622009-04-21 22:30:27 +00001213static void numa_add(const char *optarg)
1214{
1215 char option[128];
1216 char *endptr;
1217 unsigned long long value, endvalue;
1218 int nodenr;
1219
1220 optarg = get_opt_name(option, 128, optarg, ',') + 1;
1221 if (!strcmp(option, "node")) {
1222 if (get_param_value(option, 128, "nodeid", optarg) == 0) {
1223 nodenr = nb_numa_nodes;
1224 } else {
1225 nodenr = strtoull(option, NULL, 10);
1226 }
1227
1228 if (get_param_value(option, 128, "mem", optarg) == 0) {
1229 node_mem[nodenr] = 0;
1230 } else {
1231 value = strtoull(option, &endptr, 0);
1232 switch (*endptr) {
1233 case 0: case 'M': case 'm':
1234 value <<= 20;
1235 break;
1236 case 'G': case 'g':
1237 value <<= 30;
1238 break;
1239 }
1240 node_mem[nodenr] = value;
1241 }
1242 if (get_param_value(option, 128, "cpus", optarg) == 0) {
1243 node_cpumask[nodenr] = 0;
1244 } else {
1245 value = strtoull(option, &endptr, 10);
1246 if (value >= 64) {
1247 value = 63;
1248 fprintf(stderr, "only 64 CPUs in NUMA mode supported.\n");
1249 } else {
1250 if (*endptr == '-') {
1251 endvalue = strtoull(endptr+1, &endptr, 10);
1252 if (endvalue >= 63) {
1253 endvalue = 62;
1254 fprintf(stderr,
1255 "only 63 CPUs in NUMA mode supported.\n");
1256 }
Paolo Bonzini0dfbd512010-02-04 14:31:50 +01001257 value = (2ULL << endvalue) - (1ULL << value);
aliguori268a3622009-04-21 22:30:27 +00001258 } else {
Paolo Bonzini0dfbd512010-02-04 14:31:50 +01001259 value = 1ULL << value;
aliguori268a3622009-04-21 22:30:27 +00001260 }
1261 }
1262 node_cpumask[nodenr] = value;
1263 }
1264 nb_numa_nodes++;
1265 }
1266 return;
1267}
1268
Andre Przywaradc6b1c02009-08-19 15:42:40 +02001269static void smp_parse(const char *optarg)
1270{
1271 int smp, sockets = 0, threads = 0, cores = 0;
1272 char *endptr;
1273 char option[128];
1274
1275 smp = strtoul(optarg, &endptr, 10);
1276 if (endptr != optarg) {
1277 if (*endptr == ',') {
1278 endptr++;
1279 }
1280 }
1281 if (get_param_value(option, 128, "sockets", endptr) != 0)
1282 sockets = strtoull(option, NULL, 10);
1283 if (get_param_value(option, 128, "cores", endptr) != 0)
1284 cores = strtoull(option, NULL, 10);
1285 if (get_param_value(option, 128, "threads", endptr) != 0)
1286 threads = strtoull(option, NULL, 10);
1287 if (get_param_value(option, 128, "maxcpus", endptr) != 0)
1288 max_cpus = strtoull(option, NULL, 10);
1289
1290 /* compute missing values, prefer sockets over cores over threads */
1291 if (smp == 0 || sockets == 0) {
1292 sockets = sockets > 0 ? sockets : 1;
1293 cores = cores > 0 ? cores : 1;
1294 threads = threads > 0 ? threads : 1;
1295 if (smp == 0) {
1296 smp = cores * threads * sockets;
Andre Przywaradc6b1c02009-08-19 15:42:40 +02001297 }
1298 } else {
1299 if (cores == 0) {
1300 threads = threads > 0 ? threads : 1;
1301 cores = smp / (sockets * threads);
1302 } else {
Amit Shah5cdc9b72010-01-13 16:24:42 +05301303 if (sockets) {
Andre Przywaradc6b1c02009-08-19 15:42:40 +02001304 threads = smp / (cores * sockets);
1305 }
1306 }
1307 }
1308 smp_cpus = smp;
1309 smp_cores = cores > 0 ? cores : 1;
1310 smp_threads = threads > 0 ? threads : 1;
1311 if (max_cpus == 0)
1312 max_cpus = smp_cpus;
1313}
1314
bellard330d0412003-07-26 18:11:40 +00001315/***********************************************************/
bellarda594cfb2005-11-06 16:13:29 +00001316/* USB devices */
1317
aliguoric0f4ce72009-03-05 23:01:01 +00001318static int usb_device_add(const char *devname, int is_hotplug)
bellarda594cfb2005-11-06 16:13:29 +00001319{
1320 const char *p;
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001321 USBDevice *dev = NULL;
bellarda594cfb2005-11-06 16:13:29 +00001322
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001323 if (!usb_enabled)
bellarda594cfb2005-11-06 16:13:29 +00001324 return -1;
1325
Gerd Hoffmann0958b4c2009-10-26 15:56:45 +01001326 /* drivers with .usbdevice_name entry in USBDeviceInfo */
1327 dev = usbdevice_create(devname);
1328 if (dev)
1329 goto done;
1330
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001331 /* the other ones */
bellarda594cfb2005-11-06 16:13:29 +00001332 if (strstart(devname, "host:", &p)) {
1333 dev = usb_host_device_open(p);
balrogdc72ac12008-11-09 00:04:26 +00001334 } else if (!strcmp(devname, "bt") || strstart(devname, "bt:", &p)) {
1335 dev = usb_bt_init(devname[2] ? hci_init(p) :
1336 bt_new_hci(qemu_find_bt_vlan(0)));
bellarda594cfb2005-11-06 16:13:29 +00001337 } else {
1338 return -1;
1339 }
pbrook0d92ed32006-05-21 16:30:15 +00001340 if (!dev)
1341 return -1;
1342
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001343done:
bellarda594cfb2005-11-06 16:13:29 +00001344 return 0;
1345}
1346
aliguori1f3870a2008-08-21 19:27:48 +00001347static int usb_device_del(const char *devname)
1348{
1349 int bus_num, addr;
1350 const char *p;
1351
aliguori5d0c5752008-09-14 01:07:41 +00001352 if (strstart(devname, "host:", &p))
1353 return usb_host_device_close(p);
1354
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001355 if (!usb_enabled)
aliguori1f3870a2008-08-21 19:27:48 +00001356 return -1;
1357
1358 p = strchr(devname, '.');
1359 if (!p)
1360 return -1;
1361 bus_num = strtoul(devname, NULL, 0);
1362 addr = strtoul(p + 1, NULL, 0);
1363
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001364 return usb_device_delete_addr(bus_num, addr);
aliguori1f3870a2008-08-21 19:27:48 +00001365}
1366
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02001367static int usb_parse(const char *cmdline)
1368{
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001369 int r;
1370 r = usb_device_add(cmdline, 0);
1371 if (r < 0) {
1372 fprintf(stderr, "qemu: could not add USB device '%s'\n", cmdline);
1373 }
1374 return r;
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02001375}
1376
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001377void do_usb_add(Monitor *mon, const QDict *qdict)
bellarda594cfb2005-11-06 16:13:29 +00001378{
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001379 const char *devname = qdict_get_str(qdict, "devname");
1380 if (usb_device_add(devname, 1) < 0) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01001381 error_report("could not add USB device '%s'", devname);
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001382 }
bellarda594cfb2005-11-06 16:13:29 +00001383}
1384
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001385void do_usb_del(Monitor *mon, const QDict *qdict)
bellarda594cfb2005-11-06 16:13:29 +00001386{
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001387 const char *devname = qdict_get_str(qdict, "devname");
1388 if (usb_device_del(devname) < 0) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01001389 error_report("could not delete USB device '%s'", devname);
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001390 }
bellarda594cfb2005-11-06 16:13:29 +00001391}
1392
bellardf7cce892004-12-08 22:21:25 +00001393/***********************************************************/
balrog201a51f2007-04-30 00:51:09 +00001394/* PCMCIA/Cardbus */
1395
1396static struct pcmcia_socket_entry_s {
Paul Brookbc24a222009-05-10 01:44:56 +01001397 PCMCIASocket *socket;
balrog201a51f2007-04-30 00:51:09 +00001398 struct pcmcia_socket_entry_s *next;
1399} *pcmcia_sockets = 0;
1400
Paul Brookbc24a222009-05-10 01:44:56 +01001401void pcmcia_socket_register(PCMCIASocket *socket)
balrog201a51f2007-04-30 00:51:09 +00001402{
1403 struct pcmcia_socket_entry_s *entry;
1404
1405 entry = qemu_malloc(sizeof(struct pcmcia_socket_entry_s));
1406 entry->socket = socket;
1407 entry->next = pcmcia_sockets;
1408 pcmcia_sockets = entry;
1409}
1410
Paul Brookbc24a222009-05-10 01:44:56 +01001411void pcmcia_socket_unregister(PCMCIASocket *socket)
balrog201a51f2007-04-30 00:51:09 +00001412{
1413 struct pcmcia_socket_entry_s *entry, **ptr;
1414
1415 ptr = &pcmcia_sockets;
1416 for (entry = *ptr; entry; ptr = &entry->next, entry = *ptr)
1417 if (entry->socket == socket) {
1418 *ptr = entry->next;
1419 qemu_free(entry);
1420 }
1421}
1422
aliguori376253e2009-03-05 23:01:23 +00001423void pcmcia_info(Monitor *mon)
balrog201a51f2007-04-30 00:51:09 +00001424{
1425 struct pcmcia_socket_entry_s *iter;
aliguori376253e2009-03-05 23:01:23 +00001426
balrog201a51f2007-04-30 00:51:09 +00001427 if (!pcmcia_sockets)
aliguori376253e2009-03-05 23:01:23 +00001428 monitor_printf(mon, "No PCMCIA sockets\n");
balrog201a51f2007-04-30 00:51:09 +00001429
1430 for (iter = pcmcia_sockets; iter; iter = iter->next)
aliguori376253e2009-03-05 23:01:23 +00001431 monitor_printf(mon, "%s: %s\n", iter->socket->slot_string,
1432 iter->socket->attached ? iter->socket->card_string :
1433 "Empty");
balrog201a51f2007-04-30 00:51:09 +00001434}
1435
1436/***********************************************************/
bellard8a7ddc32004-03-31 19:00:16 +00001437/* I/O handling */
bellard0824d6f2003-06-24 13:42:40 +00001438
bellardc4b1fcc2004-03-14 21:44:30 +00001439typedef struct IOHandlerRecord {
1440 int fd;
Juan Quintela7b27a762010-03-11 17:55:39 +01001441 IOCanReadHandler *fd_read_poll;
bellard7c9d8e02005-11-15 22:16:05 +00001442 IOHandler *fd_read;
1443 IOHandler *fd_write;
thscafffd42007-02-28 21:59:44 +00001444 int deleted;
bellardc4b1fcc2004-03-14 21:44:30 +00001445 void *opaque;
1446 /* temporary data */
1447 struct pollfd *ufd;
Juan Quintela31d4ee62010-03-11 17:55:37 +01001448 QLIST_ENTRY(IOHandlerRecord) next;
bellardc4b1fcc2004-03-14 21:44:30 +00001449} IOHandlerRecord;
1450
Juan Quintela31d4ee62010-03-11 17:55:37 +01001451static QLIST_HEAD(, IOHandlerRecord) io_handlers =
1452 QLIST_HEAD_INITIALIZER(io_handlers);
1453
bellardc4b1fcc2004-03-14 21:44:30 +00001454
bellard7c9d8e02005-11-15 22:16:05 +00001455/* XXX: fd_read_poll should be suppressed, but an API change is
1456 necessary in the character devices to suppress fd_can_read(). */
ths5fafdf22007-09-16 21:08:06 +00001457int qemu_set_fd_handler2(int fd,
Juan Quintela7b27a762010-03-11 17:55:39 +01001458 IOCanReadHandler *fd_read_poll,
ths5fafdf22007-09-16 21:08:06 +00001459 IOHandler *fd_read,
1460 IOHandler *fd_write,
bellard7c9d8e02005-11-15 22:16:05 +00001461 void *opaque)
bellardb4608c02003-06-27 17:34:32 +00001462{
Juan Quintela31d4ee62010-03-11 17:55:37 +01001463 IOHandlerRecord *ioh;
bellard8a7ddc32004-03-31 19:00:16 +00001464
bellard7c9d8e02005-11-15 22:16:05 +00001465 if (!fd_read && !fd_write) {
Juan Quintela31d4ee62010-03-11 17:55:37 +01001466 QLIST_FOREACH(ioh, &io_handlers, next) {
bellard7c9d8e02005-11-15 22:16:05 +00001467 if (ioh->fd == fd) {
thscafffd42007-02-28 21:59:44 +00001468 ioh->deleted = 1;
bellard7c9d8e02005-11-15 22:16:05 +00001469 break;
1470 }
bellard8a7ddc32004-03-31 19:00:16 +00001471 }
bellard7c9d8e02005-11-15 22:16:05 +00001472 } else {
Juan Quintela31d4ee62010-03-11 17:55:37 +01001473 QLIST_FOREACH(ioh, &io_handlers, next) {
bellard7c9d8e02005-11-15 22:16:05 +00001474 if (ioh->fd == fd)
1475 goto found;
1476 }
1477 ioh = qemu_mallocz(sizeof(IOHandlerRecord));
Juan Quintela31d4ee62010-03-11 17:55:37 +01001478 QLIST_INSERT_HEAD(&io_handlers, ioh, next);
bellard7c9d8e02005-11-15 22:16:05 +00001479 found:
1480 ioh->fd = fd;
1481 ioh->fd_read_poll = fd_read_poll;
1482 ioh->fd_read = fd_read;
1483 ioh->fd_write = fd_write;
1484 ioh->opaque = opaque;
thscafffd42007-02-28 21:59:44 +00001485 ioh->deleted = 0;
bellard8a7ddc32004-03-31 19:00:16 +00001486 }
bellard7c9d8e02005-11-15 22:16:05 +00001487 return 0;
1488}
1489
ths5fafdf22007-09-16 21:08:06 +00001490int qemu_set_fd_handler(int fd,
1491 IOHandler *fd_read,
1492 IOHandler *fd_write,
bellard7c9d8e02005-11-15 22:16:05 +00001493 void *opaque)
1494{
1495 return qemu_set_fd_handler2(fd, NULL, fd_read, fd_write, opaque);
bellardb4608c02003-06-27 17:34:32 +00001496}
1497
aliguori56f3a5d2008-10-31 18:07:17 +00001498#ifdef _WIN32
bellard8a7ddc32004-03-31 19:00:16 +00001499/***********************************************************/
bellardf3311102006-04-12 20:21:17 +00001500/* Polling handling */
1501
1502typedef struct PollingEntry {
1503 PollingFunc *func;
1504 void *opaque;
1505 struct PollingEntry *next;
1506} PollingEntry;
1507
1508static PollingEntry *first_polling_entry;
1509
1510int qemu_add_polling_cb(PollingFunc *func, void *opaque)
1511{
1512 PollingEntry **ppe, *pe;
1513 pe = qemu_mallocz(sizeof(PollingEntry));
bellardf3311102006-04-12 20:21:17 +00001514 pe->func = func;
1515 pe->opaque = opaque;
1516 for(ppe = &first_polling_entry; *ppe != NULL; ppe = &(*ppe)->next);
1517 *ppe = pe;
1518 return 0;
1519}
1520
1521void qemu_del_polling_cb(PollingFunc *func, void *opaque)
1522{
1523 PollingEntry **ppe, *pe;
1524 for(ppe = &first_polling_entry; *ppe != NULL; ppe = &(*ppe)->next) {
1525 pe = *ppe;
1526 if (pe->func == func && pe->opaque == opaque) {
1527 *ppe = pe->next;
1528 qemu_free(pe);
1529 break;
1530 }
1531 }
1532}
1533
bellarda18e5242006-06-25 17:18:27 +00001534/***********************************************************/
1535/* Wait objects support */
1536typedef struct WaitObjects {
1537 int num;
1538 HANDLE events[MAXIMUM_WAIT_OBJECTS + 1];
1539 WaitObjectFunc *func[MAXIMUM_WAIT_OBJECTS + 1];
1540 void *opaque[MAXIMUM_WAIT_OBJECTS + 1];
1541} WaitObjects;
1542
1543static WaitObjects wait_objects = {0};
ths3b46e622007-09-17 08:09:54 +00001544
bellarda18e5242006-06-25 17:18:27 +00001545int qemu_add_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
1546{
1547 WaitObjects *w = &wait_objects;
1548
1549 if (w->num >= MAXIMUM_WAIT_OBJECTS)
1550 return -1;
1551 w->events[w->num] = handle;
1552 w->func[w->num] = func;
1553 w->opaque[w->num] = opaque;
1554 w->num++;
1555 return 0;
1556}
1557
1558void qemu_del_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
1559{
1560 int i, found;
1561 WaitObjects *w = &wait_objects;
1562
1563 found = 0;
1564 for (i = 0; i < w->num; i++) {
1565 if (w->events[i] == handle)
1566 found = 1;
1567 if (found) {
1568 w->events[i] = w->events[i + 1];
1569 w->func[i] = w->func[i + 1];
1570 w->opaque[i] = w->opaque[i + 1];
ths3b46e622007-09-17 08:09:54 +00001571 }
bellarda18e5242006-06-25 17:18:27 +00001572 }
1573 if (found)
1574 w->num--;
1575}
1576#endif
1577
bellard8a7ddc32004-03-31 19:00:16 +00001578/***********************************************************/
bellardcc1daa42005-06-05 14:49:17 +00001579/* machine registration */
1580
blueswir1bdaf78e2008-10-04 07:24:27 +00001581static QEMUMachine *first_machine = NULL;
aliguori6f338c32009-02-11 15:21:54 +00001582QEMUMachine *current_machine = NULL;
bellardcc1daa42005-06-05 14:49:17 +00001583
1584int qemu_register_machine(QEMUMachine *m)
1585{
1586 QEMUMachine **pm;
1587 pm = &first_machine;
1588 while (*pm != NULL)
1589 pm = &(*pm)->next;
1590 m->next = NULL;
1591 *pm = m;
1592 return 0;
1593}
1594
pbrook9596ebb2007-11-18 01:44:38 +00001595static QEMUMachine *find_machine(const char *name)
bellardcc1daa42005-06-05 14:49:17 +00001596{
1597 QEMUMachine *m;
1598
1599 for(m = first_machine; m != NULL; m = m->next) {
1600 if (!strcmp(m->name, name))
1601 return m;
Mark McLoughlin3f6599e2009-07-22 10:02:50 +01001602 if (m->alias && !strcmp(m->alias, name))
1603 return m;
bellardcc1daa42005-06-05 14:49:17 +00001604 }
1605 return NULL;
1606}
1607
Anthony Liguori0c257432009-05-21 20:41:01 -05001608static QEMUMachine *find_default_machine(void)
1609{
1610 QEMUMachine *m;
1611
1612 for(m = first_machine; m != NULL; m = m->next) {
1613 if (m->is_default) {
1614 return m;
1615 }
1616 }
1617 return NULL;
1618}
1619
bellardcc1daa42005-06-05 14:49:17 +00001620/***********************************************************/
bellard8a7ddc32004-03-31 19:00:16 +00001621/* main execution loop */
1622
pbrook9596ebb2007-11-18 01:44:38 +00001623static void gui_update(void *opaque)
bellard8a7ddc32004-03-31 19:00:16 +00001624{
aliguori7d957bd2009-01-15 22:14:11 +00001625 uint64_t interval = GUI_REFRESH_INTERVAL;
ths740733b2007-06-08 01:57:56 +00001626 DisplayState *ds = opaque;
aliguori7d957bd2009-01-15 22:14:11 +00001627 DisplayChangeListener *dcl = ds->listeners;
1628
Sheng Yang62a27442010-01-26 19:21:16 +08001629 qemu_flush_coalesced_mmio_buffer();
aliguori7d957bd2009-01-15 22:14:11 +00001630 dpy_refresh(ds);
1631
1632 while (dcl != NULL) {
1633 if (dcl->gui_timer_interval &&
1634 dcl->gui_timer_interval < interval)
1635 interval = dcl->gui_timer_interval;
1636 dcl = dcl->next;
1637 }
1638 qemu_mod_timer(ds->gui_timer, interval + qemu_get_clock(rt_clock));
bellard8a7ddc32004-03-31 19:00:16 +00001639}
1640
blueswir19043b622009-01-21 19:28:13 +00001641static void nographic_update(void *opaque)
1642{
1643 uint64_t interval = GUI_REFRESH_INTERVAL;
1644
Sheng Yang62a27442010-01-26 19:21:16 +08001645 qemu_flush_coalesced_mmio_buffer();
blueswir19043b622009-01-21 19:28:13 +00001646 qemu_mod_timer(nographic_timer, interval + qemu_get_clock(rt_clock));
1647}
1648
bellard0bd48852005-11-11 00:00:47 +00001649struct vm_change_state_entry {
1650 VMChangeStateHandler *cb;
1651 void *opaque;
Blue Swirl72cf2d42009-09-12 07:36:22 +00001652 QLIST_ENTRY (vm_change_state_entry) entries;
bellard0bd48852005-11-11 00:00:47 +00001653};
1654
Blue Swirl72cf2d42009-09-12 07:36:22 +00001655static QLIST_HEAD(vm_change_state_head, vm_change_state_entry) vm_change_state_head;
bellard0bd48852005-11-11 00:00:47 +00001656
1657VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
1658 void *opaque)
1659{
1660 VMChangeStateEntry *e;
1661
1662 e = qemu_mallocz(sizeof (*e));
bellard0bd48852005-11-11 00:00:47 +00001663
1664 e->cb = cb;
1665 e->opaque = opaque;
Blue Swirl72cf2d42009-09-12 07:36:22 +00001666 QLIST_INSERT_HEAD(&vm_change_state_head, e, entries);
bellard0bd48852005-11-11 00:00:47 +00001667 return e;
1668}
1669
1670void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
1671{
Blue Swirl72cf2d42009-09-12 07:36:22 +00001672 QLIST_REMOVE (e, entries);
bellard0bd48852005-11-11 00:00:47 +00001673 qemu_free (e);
1674}
1675
Blue Swirl296af7c2010-03-29 19:23:50 +00001676void vm_state_notify(int running, int reason)
bellard0bd48852005-11-11 00:00:47 +00001677{
1678 VMChangeStateEntry *e;
1679
1680 for (e = vm_change_state_head.lh_first; e; e = e->entries.le_next) {
aliguori9781e042009-01-22 17:15:29 +00001681 e->cb(e->opaque, running, reason);
bellard0bd48852005-11-11 00:00:47 +00001682 }
1683}
1684
bellard8a7ddc32004-03-31 19:00:16 +00001685void vm_start(void)
1686{
1687 if (!vm_running) {
1688 cpu_enable_ticks();
1689 vm_running = 1;
aliguori9781e042009-01-22 17:15:29 +00001690 vm_state_notify(1, 0);
aliguorid6dc3d42009-04-24 18:04:07 +00001691 resume_all_vcpus();
Luiz Capitulino6ed2c482010-04-27 20:35:59 -03001692 monitor_protocol_event(QEVENT_RESUME, NULL);
bellard8a7ddc32004-03-31 19:00:16 +00001693 }
1694}
1695
bellardbb0c6722004-06-20 12:37:32 +00001696/* reset/shutdown handler */
1697
1698typedef struct QEMUResetEntry {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001699 QTAILQ_ENTRY(QEMUResetEntry) entry;
bellardbb0c6722004-06-20 12:37:32 +00001700 QEMUResetHandler *func;
1701 void *opaque;
bellardbb0c6722004-06-20 12:37:32 +00001702} QEMUResetEntry;
1703
Blue Swirl72cf2d42009-09-12 07:36:22 +00001704static QTAILQ_HEAD(reset_handlers, QEMUResetEntry) reset_handlers =
1705 QTAILQ_HEAD_INITIALIZER(reset_handlers);
bellardbb0c6722004-06-20 12:37:32 +00001706static int reset_requested;
1707static int shutdown_requested;
bellard34751872005-07-02 14:31:34 +00001708static int powerdown_requested;
Blue Swirl296af7c2010-03-29 19:23:50 +00001709int debug_requested;
Blue Swirl7277e022010-04-12 17:19:06 +00001710int vmstop_requested;
Luiz Capitulino0e8d2b52010-04-06 18:55:54 -03001711static int exit_requested;
bellardbb0c6722004-06-20 12:37:32 +00001712
aurel32cf7a2fe2008-03-18 06:53:05 +00001713int qemu_shutdown_requested(void)
1714{
1715 int r = shutdown_requested;
1716 shutdown_requested = 0;
1717 return r;
1718}
1719
1720int qemu_reset_requested(void)
1721{
1722 int r = reset_requested;
1723 reset_requested = 0;
1724 return r;
1725}
1726
1727int qemu_powerdown_requested(void)
1728{
1729 int r = powerdown_requested;
1730 powerdown_requested = 0;
1731 return r;
1732}
1733
Luiz Capitulino0e8d2b52010-04-06 18:55:54 -03001734int qemu_exit_requested(void)
1735{
1736 /* just return it, we'll exit() anyway */
1737 return exit_requested;
1738}
1739
aliguorie5689022009-04-24 18:03:54 +00001740static int qemu_debug_requested(void)
1741{
1742 int r = debug_requested;
1743 debug_requested = 0;
1744 return r;
1745}
1746
aliguori6e29f5d2009-04-24 18:04:02 +00001747static int qemu_vmstop_requested(void)
1748{
1749 int r = vmstop_requested;
1750 vmstop_requested = 0;
1751 return r;
1752}
1753
Jan Kiszkaa08d4362009-06-27 09:25:07 +02001754void qemu_register_reset(QEMUResetHandler *func, void *opaque)
bellardbb0c6722004-06-20 12:37:32 +00001755{
Jan Kiszka55ddfe82009-07-02 00:19:02 +02001756 QEMUResetEntry *re = qemu_mallocz(sizeof(QEMUResetEntry));
bellardbb0c6722004-06-20 12:37:32 +00001757
bellardbb0c6722004-06-20 12:37:32 +00001758 re->func = func;
1759 re->opaque = opaque;
Blue Swirl72cf2d42009-09-12 07:36:22 +00001760 QTAILQ_INSERT_TAIL(&reset_handlers, re, entry);
bellardbb0c6722004-06-20 12:37:32 +00001761}
1762
Jan Kiszkadda9b292009-07-02 00:19:02 +02001763void qemu_unregister_reset(QEMUResetHandler *func, void *opaque)
bellardbb0c6722004-06-20 12:37:32 +00001764{
1765 QEMUResetEntry *re;
1766
Blue Swirl72cf2d42009-09-12 07:36:22 +00001767 QTAILQ_FOREACH(re, &reset_handlers, entry) {
Jan Kiszkadda9b292009-07-02 00:19:02 +02001768 if (re->func == func && re->opaque == opaque) {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001769 QTAILQ_REMOVE(&reset_handlers, re, entry);
Jan Kiszkadda9b292009-07-02 00:19:02 +02001770 qemu_free(re);
1771 return;
1772 }
1773 }
1774}
1775
1776void qemu_system_reset(void)
1777{
1778 QEMUResetEntry *re, *nre;
1779
1780 /* reset all devices */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001781 QTAILQ_FOREACH_SAFE(re, &reset_handlers, entry, nre) {
bellardbb0c6722004-06-20 12:37:32 +00001782 re->func(re->opaque);
1783 }
Luiz Capitulino81d9b782010-03-10 09:06:34 -06001784 monitor_protocol_event(QEVENT_RESET, NULL);
Jan Kiszkaea375f92010-03-01 19:10:30 +01001785 cpu_synchronize_all_post_reset();
bellardbb0c6722004-06-20 12:37:32 +00001786}
1787
1788void qemu_system_reset_request(void)
1789{
bellardd1beab82006-10-02 19:44:22 +00001790 if (no_reboot) {
1791 shutdown_requested = 1;
1792 } else {
1793 reset_requested = 1;
1794 }
aliguorid9f75a42009-04-24 18:03:11 +00001795 qemu_notify_event();
bellardbb0c6722004-06-20 12:37:32 +00001796}
1797
1798void qemu_system_shutdown_request(void)
1799{
1800 shutdown_requested = 1;
aliguorid9f75a42009-04-24 18:03:11 +00001801 qemu_notify_event();
bellardbb0c6722004-06-20 12:37:32 +00001802}
1803
bellard34751872005-07-02 14:31:34 +00001804void qemu_system_powerdown_request(void)
1805{
1806 powerdown_requested = 1;
aliguorid9f75a42009-04-24 18:03:11 +00001807 qemu_notify_event();
1808}
1809
Luiz Capitulino0e8d2b52010-04-06 18:55:54 -03001810void qemu_system_exit_request(void)
1811{
1812 exit_requested = 1;
1813 qemu_notify_event();
1814}
1815
ths877cf882007-04-18 18:11:47 +00001816#ifdef _WIN32
blueswir169d64512008-12-07 19:30:18 +00001817static void host_main_loop_wait(int *timeout)
aliguori56f3a5d2008-10-31 18:07:17 +00001818{
1819 int ret, ret2, i;
bellardf3311102006-04-12 20:21:17 +00001820 PollingEntry *pe;
bellardc4b1fcc2004-03-14 21:44:30 +00001821
bellardf3311102006-04-12 20:21:17 +00001822
1823 /* XXX: need to suppress polling by better using win32 events */
1824 ret = 0;
1825 for(pe = first_polling_entry; pe != NULL; pe = pe->next) {
1826 ret |= pe->func(pe->opaque);
1827 }
thse6b1e552007-04-18 17:56:02 +00001828 if (ret == 0) {
bellarda18e5242006-06-25 17:18:27 +00001829 int err;
1830 WaitObjects *w = &wait_objects;
ths3b46e622007-09-17 08:09:54 +00001831
aliguori56f3a5d2008-10-31 18:07:17 +00001832 ret = WaitForMultipleObjects(w->num, w->events, FALSE, *timeout);
bellarda18e5242006-06-25 17:18:27 +00001833 if (WAIT_OBJECT_0 + 0 <= ret && ret <= WAIT_OBJECT_0 + w->num - 1) {
1834 if (w->func[ret - WAIT_OBJECT_0])
1835 w->func[ret - WAIT_OBJECT_0](w->opaque[ret - WAIT_OBJECT_0]);
ths3b46e622007-09-17 08:09:54 +00001836
ths5fafdf22007-09-16 21:08:06 +00001837 /* Check for additional signaled events */
thse6b1e552007-04-18 17:56:02 +00001838 for(i = (ret - WAIT_OBJECT_0 + 1); i < w->num; i++) {
ths3b46e622007-09-17 08:09:54 +00001839
thse6b1e552007-04-18 17:56:02 +00001840 /* Check if event is signaled */
1841 ret2 = WaitForSingleObject(w->events[i], 0);
1842 if(ret2 == WAIT_OBJECT_0) {
1843 if (w->func[i])
1844 w->func[i](w->opaque[i]);
1845 } else if (ret2 == WAIT_TIMEOUT) {
1846 } else {
1847 err = GetLastError();
1848 fprintf(stderr, "WaitForSingleObject error %d %d\n", i, err);
ths3b46e622007-09-17 08:09:54 +00001849 }
1850 }
bellarda18e5242006-06-25 17:18:27 +00001851 } else if (ret == WAIT_TIMEOUT) {
1852 } else {
1853 err = GetLastError();
thse6b1e552007-04-18 17:56:02 +00001854 fprintf(stderr, "WaitForMultipleObjects error %d %d\n", ret, err);
bellarda18e5242006-06-25 17:18:27 +00001855 }
bellardf3311102006-04-12 20:21:17 +00001856 }
aliguori56f3a5d2008-10-31 18:07:17 +00001857
1858 *timeout = 0;
1859}
1860#else
blueswir169d64512008-12-07 19:30:18 +00001861static void host_main_loop_wait(int *timeout)
aliguori56f3a5d2008-10-31 18:07:17 +00001862{
1863}
bellardfd1dff42006-02-01 21:29:26 +00001864#endif
aliguori56f3a5d2008-10-31 18:07:17 +00001865
Paolo Bonzinid6f4ade2010-03-10 11:38:54 +01001866void main_loop_wait(int nonblocking)
aliguori56f3a5d2008-10-31 18:07:17 +00001867{
1868 IOHandlerRecord *ioh;
1869 fd_set rfds, wfds, xfds;
1870 int ret, nfds;
1871 struct timeval tv;
Paolo Bonzinid6f4ade2010-03-10 11:38:54 +01001872 int timeout;
aliguori56f3a5d2008-10-31 18:07:17 +00001873
Paolo Bonzinid6f4ade2010-03-10 11:38:54 +01001874 if (nonblocking)
1875 timeout = 0;
1876 else {
1877 timeout = qemu_calculate_timeout();
1878 qemu_bh_update_timeout(&timeout);
1879 }
aliguori56f3a5d2008-10-31 18:07:17 +00001880
1881 host_main_loop_wait(&timeout);
1882
bellardfd1dff42006-02-01 21:29:26 +00001883 /* poll any events */
1884 /* XXX: separate device handlers from system ones */
aliguori6abfbd72008-11-05 20:49:37 +00001885 nfds = -1;
bellardfd1dff42006-02-01 21:29:26 +00001886 FD_ZERO(&rfds);
1887 FD_ZERO(&wfds);
bellarde0356492006-05-01 13:33:02 +00001888 FD_ZERO(&xfds);
Juan Quintela31d4ee62010-03-11 17:55:37 +01001889 QLIST_FOREACH(ioh, &io_handlers, next) {
thscafffd42007-02-28 21:59:44 +00001890 if (ioh->deleted)
1891 continue;
bellardfd1dff42006-02-01 21:29:26 +00001892 if (ioh->fd_read &&
1893 (!ioh->fd_read_poll ||
1894 ioh->fd_read_poll(ioh->opaque) != 0)) {
1895 FD_SET(ioh->fd, &rfds);
1896 if (ioh->fd > nfds)
1897 nfds = ioh->fd;
1898 }
1899 if (ioh->fd_write) {
1900 FD_SET(ioh->fd, &wfds);
1901 if (ioh->fd > nfds)
1902 nfds = ioh->fd;
1903 }
1904 }
ths3b46e622007-09-17 08:09:54 +00001905
aliguori56f3a5d2008-10-31 18:07:17 +00001906 tv.tv_sec = timeout / 1000;
1907 tv.tv_usec = (timeout % 1000) * 1000;
1908
Jan Kiszkad918f232009-06-24 14:42:30 +02001909 slirp_select_fill(&nfds, &rfds, &wfds, &xfds);
1910
aliguori48708522009-04-24 18:03:49 +00001911 qemu_mutex_unlock_iothread();
bellarde0356492006-05-01 13:33:02 +00001912 ret = select(nfds + 1, &rfds, &wfds, &xfds, &tv);
aliguori48708522009-04-24 18:03:49 +00001913 qemu_mutex_lock_iothread();
bellardfd1dff42006-02-01 21:29:26 +00001914 if (ret > 0) {
Juan Quintela31d4ee62010-03-11 17:55:37 +01001915 IOHandlerRecord *pioh;
thscafffd42007-02-28 21:59:44 +00001916
Juan Quintela31d4ee62010-03-11 17:55:37 +01001917 QLIST_FOREACH_SAFE(ioh, &io_handlers, next, pioh) {
thscafffd42007-02-28 21:59:44 +00001918 if (ioh->deleted) {
Juan Quintela31d4ee62010-03-11 17:55:37 +01001919 QLIST_REMOVE(ioh, next);
thscafffd42007-02-28 21:59:44 +00001920 qemu_free(ioh);
Juan Quintela4bed9832010-03-11 17:55:41 +01001921 continue;
1922 }
1923 if (ioh->fd_read && FD_ISSET(ioh->fd, &rfds)) {
1924 ioh->fd_read(ioh->opaque);
1925 }
1926 if (ioh->fd_write && FD_ISSET(ioh->fd, &wfds)) {
1927 ioh->fd_write(ioh->opaque);
Juan Quintela31d4ee62010-03-11 17:55:37 +01001928 }
thscafffd42007-02-28 21:59:44 +00001929 }
bellardfd1dff42006-02-01 21:29:26 +00001930 }
Jan Kiszkad918f232009-06-24 14:42:30 +02001931
1932 slirp_select_poll(&rfds, &wfds, &xfds, (ret < 0));
bellardc20709a2004-04-21 23:27:19 +00001933
Paolo Bonzinib6964822010-03-10 11:38:45 +01001934 qemu_run_all_timers();
Jan Kiszka21d5d122009-09-15 13:36:04 +02001935
pbrook423f0742007-05-23 00:06:54 +00001936 /* Check bottom-halves last in case any of the earlier events triggered
1937 them. */
1938 qemu_bh_poll();
ths3b46e622007-09-17 08:09:54 +00001939
bellard5905b2e2004-08-01 21:53:26 +00001940}
1941
aliguori43b96852009-04-24 18:03:33 +00001942static int vm_can_run(void)
1943{
1944 if (powerdown_requested)
1945 return 0;
1946 if (reset_requested)
1947 return 0;
1948 if (shutdown_requested)
1949 return 0;
aliguorie5689022009-04-24 18:03:54 +00001950 if (debug_requested)
1951 return 0;
Luiz Capitulino0e8d2b52010-04-06 18:55:54 -03001952 if (exit_requested)
1953 return 0;
aliguori43b96852009-04-24 18:03:33 +00001954 return 1;
1955}
1956
Blue Swirld9c32312009-08-09 08:42:19 +00001957qemu_irq qemu_system_powerdown;
1958
aliguori43b96852009-04-24 18:03:33 +00001959static void main_loop(void)
1960{
aliguori6e29f5d2009-04-24 18:04:02 +00001961 int r;
aliguori43b96852009-04-24 18:03:33 +00001962
Blue Swirl7277e022010-04-12 17:19:06 +00001963 qemu_main_loop_start();
aliguorid6dc3d42009-04-24 18:04:07 +00001964
aliguori6e29f5d2009-04-24 18:04:02 +00001965 for (;;) {
aliguorie6e35b12009-04-24 18:03:57 +00001966 do {
Paolo Bonzinid6f4ade2010-03-10 11:38:54 +01001967 bool nonblocking = false;
aliguorie6e35b12009-04-24 18:03:57 +00001968#ifdef CONFIG_PROFILER
1969 int64_t ti;
1970#endif
aliguorid6dc3d42009-04-24 18:04:07 +00001971#ifndef CONFIG_IOTHREAD
Paolo Bonzinid6f4ade2010-03-10 11:38:54 +01001972 nonblocking = tcg_cpu_exec();
aliguorid6dc3d42009-04-24 18:04:07 +00001973#endif
aliguori43b96852009-04-24 18:03:33 +00001974#ifdef CONFIG_PROFILER
1975 ti = profile_getclock();
1976#endif
Paolo Bonzinid6f4ade2010-03-10 11:38:54 +01001977 main_loop_wait(nonblocking);
aliguori43b96852009-04-24 18:03:33 +00001978#ifdef CONFIG_PROFILER
1979 dev_time += profile_getclock() - ti;
1980#endif
aliguorie5689022009-04-24 18:03:54 +00001981 } while (vm_can_run());
aliguori43b96852009-04-24 18:03:33 +00001982
Blue Swirl54fc6ea2010-03-29 19:23:46 +00001983 if ((r = qemu_debug_requested())) {
1984 vm_stop(r);
Luiz Capitulinob1a15e72009-11-26 22:59:04 -02001985 }
aliguori43b96852009-04-24 18:03:33 +00001986 if (qemu_shutdown_requested()) {
Blue Swirl242cd002009-12-04 18:05:45 +00001987 monitor_protocol_event(QEVENT_SHUTDOWN, NULL);
aliguori43b96852009-04-24 18:03:33 +00001988 if (no_shutdown) {
1989 vm_stop(0);
1990 no_shutdown = 0;
1991 } else
1992 break;
1993 }
aliguorid6dc3d42009-04-24 18:04:07 +00001994 if (qemu_reset_requested()) {
1995 pause_all_vcpus();
aliguori43b96852009-04-24 18:03:33 +00001996 qemu_system_reset();
aliguorid6dc3d42009-04-24 18:04:07 +00001997 resume_all_vcpus();
1998 }
Blue Swirld9c32312009-08-09 08:42:19 +00001999 if (qemu_powerdown_requested()) {
Blue Swirl242cd002009-12-04 18:05:45 +00002000 monitor_protocol_event(QEVENT_POWERDOWN, NULL);
Blue Swirld9c32312009-08-09 08:42:19 +00002001 qemu_irq_raise(qemu_system_powerdown);
2002 }
Luiz Capitulinob1a15e72009-11-26 22:59:04 -02002003 if ((r = qemu_vmstop_requested())) {
aliguori6e29f5d2009-04-24 18:04:02 +00002004 vm_stop(r);
Luiz Capitulinob1a15e72009-11-26 22:59:04 -02002005 }
Luiz Capitulino0e8d2b52010-04-06 18:55:54 -03002006 if (qemu_exit_requested()) {
2007 exit(0);
2008 }
aliguori43b96852009-04-24 18:03:33 +00002009 }
aliguorid6dc3d42009-04-24 18:04:07 +00002010 pause_all_vcpus();
bellardb4608c02003-06-27 17:34:32 +00002011}
2012
pbrook9bd7e6d2009-04-07 22:58:45 +00002013static void version(void)
2014{
Thomas Monjalonf75ca1a2010-04-28 14:42:01 +02002015 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n");
pbrook9bd7e6d2009-04-07 22:58:45 +00002016}
2017
ths15f82202007-06-29 23:26:08 +00002018static void help(int exitcode)
bellard0824d6f2003-06-24 13:42:40 +00002019{
Paolo Bonzinie8105eb2010-02-04 16:49:59 +01002020 const char *options_help =
Blue Swirlad960902010-03-29 19:23:52 +00002021#define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
2022 opt_help
blueswir15824d652009-03-28 06:44:27 +00002023#define DEFHEADING(text) stringify(text) "\n"
2024#include "qemu-options.h"
2025#undef DEF
2026#undef DEFHEADING
2027#undef GEN_DOCS
Paolo Bonzinie8105eb2010-02-04 16:49:59 +01002028 ;
2029 version();
2030 printf("usage: %s [options] [disk_image]\n"
malc3f020d72010-02-08 12:04:56 +03002031 "\n"
Thomas Monjalonf75ca1a2010-04-28 14:42:01 +02002032 "'disk_image' is a raw hard disk image for IDE hard disk 0\n"
Paolo Bonzinie8105eb2010-02-04 16:49:59 +01002033 "\n"
2034 "%s\n"
malc3f020d72010-02-08 12:04:56 +03002035 "During emulation, the following keys are useful:\n"
2036 "ctrl-alt-f toggle full screen\n"
2037 "ctrl-alt-n switch to virtual console 'n'\n"
2038 "ctrl-alt toggle mouse and keyboard grab\n"
2039 "\n"
Paolo Bonzinie8105eb2010-02-04 16:49:59 +01002040 "When using -nographic, press 'ctrl-a h' to get some help.\n",
2041 "qemu",
2042 options_help);
ths15f82202007-06-29 23:26:08 +00002043 exit(exitcode);
bellard0824d6f2003-06-24 13:42:40 +00002044}
2045
bellardcd6f1162004-05-13 22:02:20 +00002046#define HAS_ARG 0x0001
2047
2048enum {
Blue Swirlad960902010-03-29 19:23:52 +00002049#define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
blueswir15824d652009-03-28 06:44:27 +00002050 opt_enum,
2051#define DEFHEADING(text)
2052#include "qemu-options.h"
2053#undef DEF
2054#undef DEFHEADING
2055#undef GEN_DOCS
bellardcd6f1162004-05-13 22:02:20 +00002056};
2057
2058typedef struct QEMUOption {
2059 const char *name;
2060 int flags;
2061 int index;
Blue Swirlad960902010-03-29 19:23:52 +00002062 uint32_t arch_mask;
bellardcd6f1162004-05-13 22:02:20 +00002063} QEMUOption;
2064
blueswir1dbed7e42008-10-01 19:38:09 +00002065static const QEMUOption qemu_options[] = {
Blue Swirlad960902010-03-29 19:23:52 +00002066 { "h", 0, QEMU_OPTION_h, QEMU_ARCH_ALL },
2067#define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
2068 { option, opt_arg, opt_enum, arch_mask },
blueswir15824d652009-03-28 06:44:27 +00002069#define DEFHEADING(text)
2070#include "qemu-options.h"
2071#undef DEF
2072#undef DEFHEADING
2073#undef GEN_DOCS
bellardcd6f1162004-05-13 22:02:20 +00002074 { NULL },
bellardfc01f7e2003-06-30 10:03:06 +00002075};
malc3893c122008-09-28 00:42:05 +00002076static void select_vgahw (const char *p)
2077{
2078 const char *opts;
2079
Gerd Hoffmann64465292009-12-08 13:11:45 +01002080 default_vga = 0;
Zachary Amsden86176752009-07-30 00:15:02 -10002081 vga_interface_type = VGA_NONE;
malc3893c122008-09-28 00:42:05 +00002082 if (strstart(p, "std", &opts)) {
Zachary Amsden86176752009-07-30 00:15:02 -10002083 vga_interface_type = VGA_STD;
malc3893c122008-09-28 00:42:05 +00002084 } else if (strstart(p, "cirrus", &opts)) {
Zachary Amsden86176752009-07-30 00:15:02 -10002085 vga_interface_type = VGA_CIRRUS;
malc3893c122008-09-28 00:42:05 +00002086 } else if (strstart(p, "vmware", &opts)) {
Zachary Amsden86176752009-07-30 00:15:02 -10002087 vga_interface_type = VGA_VMWARE;
aliguori94909d92009-04-22 15:19:53 +00002088 } else if (strstart(p, "xenfb", &opts)) {
Zachary Amsden86176752009-07-30 00:15:02 -10002089 vga_interface_type = VGA_XENFB;
aliguori28b85ed2009-04-22 15:19:48 +00002090 } else if (!strstart(p, "none", &opts)) {
malc3893c122008-09-28 00:42:05 +00002091 invalid_vga:
2092 fprintf(stderr, "Unknown vga type: %s\n", p);
2093 exit(1);
2094 }
malccb5a7aa2008-09-28 00:42:12 +00002095 while (*opts) {
2096 const char *nextopt;
2097
2098 if (strstart(opts, ",retrace=", &nextopt)) {
2099 opts = nextopt;
2100 if (strstart(opts, "dumb", &nextopt))
2101 vga_retrace_method = VGA_RETRACE_DUMB;
2102 else if (strstart(opts, "precise", &nextopt))
2103 vga_retrace_method = VGA_RETRACE_PRECISE;
2104 else goto invalid_vga;
2105 } else goto invalid_vga;
2106 opts = nextopt;
2107 }
malc3893c122008-09-28 00:42:05 +00002108}
2109
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02002110static int balloon_parse(const char *arg)
2111{
Gerd Hoffmann382f0742009-08-14 10:34:22 +02002112 QemuOpts *opts;
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02002113
Gerd Hoffmann382f0742009-08-14 10:34:22 +02002114 if (strcmp(arg, "none") == 0) {
2115 return 0;
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02002116 }
Gerd Hoffmann382f0742009-08-14 10:34:22 +02002117
2118 if (!strncmp(arg, "virtio", 6)) {
2119 if (arg[6] == ',') {
2120 /* have params -> parse them */
Markus Armbruster8212c642010-02-10 19:52:18 +01002121 opts = qemu_opts_parse(&qemu_device_opts, arg+7, 0);
Gerd Hoffmann382f0742009-08-14 10:34:22 +02002122 if (!opts)
2123 return -1;
2124 } else {
2125 /* create empty opts */
2126 opts = qemu_opts_create(&qemu_device_opts, NULL, 0);
2127 }
2128 qemu_opt_set(opts, "driver", "virtio-balloon-pci");
2129 return 0;
2130 }
2131
2132 return -1;
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02002133}
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02002134
bellard3587d7e2006-06-26 20:03:44 +00002135#ifdef _WIN32
2136static BOOL WINAPI qemu_ctrl_handler(DWORD type)
2137{
2138 exit(STATUS_CONTROL_C_EXIT);
2139 return TRUE;
2140}
2141#endif
2142
aliguori5b08fc12008-08-21 20:08:03 +00002143#ifndef _WIN32
2144
2145static void termsig_handler(int signal)
2146{
2147 qemu_system_shutdown_request();
2148}
2149
Jan Kiszka7c3370d2009-05-08 12:34:17 +02002150static void sigchld_handler(int signal)
2151{
2152 waitpid(-1, NULL, WNOHANG);
2153}
2154
2155static void sighandler_setup(void)
aliguori5b08fc12008-08-21 20:08:03 +00002156{
2157 struct sigaction act;
2158
2159 memset(&act, 0, sizeof(act));
2160 act.sa_handler = termsig_handler;
2161 sigaction(SIGINT, &act, NULL);
2162 sigaction(SIGHUP, &act, NULL);
2163 sigaction(SIGTERM, &act, NULL);
Jan Kiszka7c3370d2009-05-08 12:34:17 +02002164
2165 act.sa_handler = sigchld_handler;
2166 act.sa_flags = SA_NOCLDSTOP;
2167 sigaction(SIGCHLD, &act, NULL);
aliguori5b08fc12008-08-21 20:08:03 +00002168}
2169
2170#endif
2171
Paul Brook5cea8592009-05-30 00:52:44 +01002172#ifdef _WIN32
2173/* Look for support files in the same directory as the executable. */
2174static char *find_datadir(const char *argv0)
2175{
2176 char *p;
2177 char buf[MAX_PATH];
2178 DWORD len;
2179
2180 len = GetModuleFileName(NULL, buf, sizeof(buf) - 1);
2181 if (len == 0) {
Blue Swirlc5947802009-06-09 20:51:21 +03002182 return NULL;
Paul Brook5cea8592009-05-30 00:52:44 +01002183 }
2184
2185 buf[len] = 0;
2186 p = buf + len - 1;
2187 while (p != buf && *p != '\\')
2188 p--;
2189 *p = 0;
2190 if (access(buf, R_OK) == 0) {
2191 return qemu_strdup(buf);
2192 }
2193 return NULL;
2194}
2195#else /* !_WIN32 */
2196
2197/* Find a likely location for support files using the location of the binary.
2198 For installed binaries this will be "$bindir/../share/qemu". When
2199 running from the build tree this will be "$bindir/../pc-bios". */
2200#define SHARE_SUFFIX "/share/qemu"
2201#define BUILD_SUFFIX "/pc-bios"
2202static char *find_datadir(const char *argv0)
2203{
2204 char *dir;
2205 char *p = NULL;
2206 char *res;
Paul Brook5cea8592009-05-30 00:52:44 +01002207 char buf[PATH_MAX];
Blue Swirl3a417592009-06-09 19:12:21 +00002208 size_t max_len;
Paul Brook5cea8592009-05-30 00:52:44 +01002209
2210#if defined(__linux__)
2211 {
2212 int len;
2213 len = readlink("/proc/self/exe", buf, sizeof(buf) - 1);
2214 if (len > 0) {
2215 buf[len] = 0;
2216 p = buf;
2217 }
2218 }
2219#elif defined(__FreeBSD__)
2220 {
Juergen Lock92c0e652010-03-25 22:07:12 +01002221 static int mib[4] = {CTL_KERN, KERN_PROC, KERN_PROC_PATHNAME, -1};
2222 size_t len = sizeof(buf) - 1;
2223
2224 *buf = '\0';
2225 if (!sysctl(mib, sizeof(mib)/sizeof(*mib), buf, &len, NULL, 0) &&
2226 *buf) {
2227 buf[sizeof(buf) - 1] = '\0';
Paul Brook5cea8592009-05-30 00:52:44 +01002228 p = buf;
2229 }
2230 }
2231#endif
2232 /* If we don't have any way of figuring out the actual executable
2233 location then try argv[0]. */
2234 if (!p) {
Jean-Christophe DUBOIS4d224192009-09-02 23:59:02 +02002235 p = realpath(argv0, buf);
Paul Brook5cea8592009-05-30 00:52:44 +01002236 if (!p) {
2237 return NULL;
2238 }
2239 }
2240 dir = dirname(p);
2241 dir = dirname(dir);
2242
Blue Swirl3a417592009-06-09 19:12:21 +00002243 max_len = strlen(dir) +
2244 MAX(strlen(SHARE_SUFFIX), strlen(BUILD_SUFFIX)) + 1;
2245 res = qemu_mallocz(max_len);
2246 snprintf(res, max_len, "%s%s", dir, SHARE_SUFFIX);
Paul Brook5cea8592009-05-30 00:52:44 +01002247 if (access(res, R_OK)) {
Blue Swirl3a417592009-06-09 19:12:21 +00002248 snprintf(res, max_len, "%s%s", dir, BUILD_SUFFIX);
Paul Brook5cea8592009-05-30 00:52:44 +01002249 if (access(res, R_OK)) {
2250 qemu_free(res);
2251 res = NULL;
2252 }
2253 }
Jean-Christophe DUBOIS4d224192009-09-02 23:59:02 +02002254
Paul Brook5cea8592009-05-30 00:52:44 +01002255 return res;
2256}
2257#undef SHARE_SUFFIX
2258#undef BUILD_SUFFIX
2259#endif
2260
2261char *qemu_find_file(int type, const char *name)
2262{
2263 int len;
2264 const char *subdir;
2265 char *buf;
2266
2267 /* If name contains path separators then try it as a straight path. */
2268 if ((strchr(name, '/') || strchr(name, '\\'))
2269 && access(name, R_OK) == 0) {
Jean-Christophe DUBOIS73ffc802009-09-02 23:59:06 +02002270 return qemu_strdup(name);
Paul Brook5cea8592009-05-30 00:52:44 +01002271 }
2272 switch (type) {
2273 case QEMU_FILE_TYPE_BIOS:
2274 subdir = "";
2275 break;
2276 case QEMU_FILE_TYPE_KEYMAP:
2277 subdir = "keymaps/";
2278 break;
2279 default:
2280 abort();
2281 }
2282 len = strlen(data_dir) + strlen(name) + strlen(subdir) + 2;
2283 buf = qemu_mallocz(len);
Blue Swirl3a417592009-06-09 19:12:21 +00002284 snprintf(buf, len, "%s/%s%s", data_dir, subdir, name);
Paul Brook5cea8592009-05-30 00:52:44 +01002285 if (access(buf, R_OK)) {
2286 qemu_free(buf);
2287 return NULL;
2288 }
2289 return buf;
2290}
2291
Markus Armbrusterff952ba2010-01-29 19:48:57 +01002292static int device_help_func(QemuOpts *opts, void *opaque)
2293{
2294 return qdev_device_help(opts);
2295}
2296
Gerd Hoffmannf31d07d2009-07-31 12:25:37 +02002297static int device_init_func(QemuOpts *opts, void *opaque)
2298{
2299 DeviceState *dev;
2300
2301 dev = qdev_device_add(opts);
2302 if (!dev)
2303 return -1;
2304 return 0;
2305}
2306
Gerd Hoffmann1a688d32009-12-08 13:11:36 +01002307static int chardev_init_func(QemuOpts *opts, void *opaque)
2308{
2309 CharDriverState *chr;
2310
2311 chr = qemu_chr_open_opts(opts, NULL);
2312 if (!chr)
2313 return -1;
2314 return 0;
2315}
2316
Gautham R Shenoy74db9202010-04-29 17:44:43 +05302317#ifdef CONFIG_LINUX
2318static int fsdev_init_func(QemuOpts *opts, void *opaque)
2319{
2320 int ret;
2321 ret = qemu_fsdev_add(opts);
2322
2323 return ret;
2324}
2325#endif
2326
Gerd Hoffmann88589342009-12-08 13:11:50 +01002327static int mon_init_func(QemuOpts *opts, void *opaque)
2328{
2329 CharDriverState *chr;
2330 const char *chardev;
2331 const char *mode;
2332 int flags;
2333
2334 mode = qemu_opt_get(opts, "mode");
2335 if (mode == NULL) {
2336 mode = "readline";
2337 }
2338 if (strcmp(mode, "readline") == 0) {
2339 flags = MONITOR_USE_READLINE;
2340 } else if (strcmp(mode, "control") == 0) {
2341 flags = MONITOR_USE_CONTROL;
2342 } else {
2343 fprintf(stderr, "unknown monitor mode \"%s\"\n", mode);
2344 exit(1);
2345 }
2346
2347 if (qemu_opt_get_bool(opts, "default", 0))
2348 flags |= MONITOR_IS_DEFAULT;
2349
2350 chardev = qemu_opt_get(opts, "chardev");
2351 chr = qemu_chr_find(chardev);
2352 if (chr == NULL) {
2353 fprintf(stderr, "chardev \"%s\" not found\n", chardev);
2354 exit(1);
2355 }
2356
2357 monitor_init(chr, flags);
2358 return 0;
2359}
2360
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01002361static void monitor_parse(const char *optarg, const char *mode)
Gerd Hoffmann88589342009-12-08 13:11:50 +01002362{
2363 static int monitor_device_index = 0;
2364 QemuOpts *opts;
2365 const char *p;
2366 char label[32];
2367 int def = 0;
2368
2369 if (strstart(optarg, "chardev:", &p)) {
2370 snprintf(label, sizeof(label), "%s", p);
2371 } else {
Jan Kiszka140e0652010-04-06 16:55:52 +02002372 snprintf(label, sizeof(label), "compat_monitor%d",
2373 monitor_device_index);
2374 if (monitor_device_index == 0) {
Gerd Hoffmann88589342009-12-08 13:11:50 +01002375 def = 1;
2376 }
2377 opts = qemu_chr_parse_compat(label, optarg);
2378 if (!opts) {
2379 fprintf(stderr, "parse error: %s\n", optarg);
2380 exit(1);
2381 }
2382 }
2383
2384 opts = qemu_opts_create(&qemu_mon_opts, label, 1);
2385 if (!opts) {
2386 fprintf(stderr, "duplicate chardev: %s\n", label);
2387 exit(1);
2388 }
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01002389 qemu_opt_set(opts, "mode", mode);
Gerd Hoffmann88589342009-12-08 13:11:50 +01002390 qemu_opt_set(opts, "chardev", label);
2391 if (def)
2392 qemu_opt_set(opts, "default", "on");
2393 monitor_device_index++;
2394}
2395
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002396struct device_config {
2397 enum {
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002398 DEV_USB, /* -usbdevice */
2399 DEV_BT, /* -bt */
2400 DEV_SERIAL, /* -serial */
2401 DEV_PARALLEL, /* -parallel */
2402 DEV_VIRTCON, /* -virtioconsole */
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08002403 DEV_DEBUGCON, /* -debugcon */
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002404 } type;
2405 const char *cmdline;
Blue Swirl72cf2d42009-09-12 07:36:22 +00002406 QTAILQ_ENTRY(device_config) next;
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002407};
Blue Swirl72cf2d42009-09-12 07:36:22 +00002408QTAILQ_HEAD(, device_config) device_configs = QTAILQ_HEAD_INITIALIZER(device_configs);
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002409
2410static void add_device_config(int type, const char *cmdline)
2411{
2412 struct device_config *conf;
2413
2414 conf = qemu_mallocz(sizeof(*conf));
2415 conf->type = type;
2416 conf->cmdline = cmdline;
Blue Swirl72cf2d42009-09-12 07:36:22 +00002417 QTAILQ_INSERT_TAIL(&device_configs, conf, next);
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002418}
2419
2420static int foreach_device_config(int type, int (*func)(const char *cmdline))
2421{
2422 struct device_config *conf;
2423 int rc;
2424
Blue Swirl72cf2d42009-09-12 07:36:22 +00002425 QTAILQ_FOREACH(conf, &device_configs, next) {
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002426 if (conf->type != type)
2427 continue;
2428 rc = func(conf->cmdline);
2429 if (0 != rc)
2430 return rc;
2431 }
2432 return 0;
2433}
2434
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01002435static int serial_parse(const char *devname)
2436{
2437 static int index = 0;
2438 char label[32];
2439
2440 if (strcmp(devname, "none") == 0)
2441 return 0;
2442 if (index == MAX_SERIAL_PORTS) {
2443 fprintf(stderr, "qemu: too many serial ports\n");
2444 exit(1);
2445 }
2446 snprintf(label, sizeof(label), "serial%d", index);
2447 serial_hds[index] = qemu_chr_open(label, devname, NULL);
2448 if (!serial_hds[index]) {
2449 fprintf(stderr, "qemu: could not open serial device '%s': %s\n",
2450 devname, strerror(errno));
2451 return -1;
2452 }
2453 index++;
2454 return 0;
2455}
2456
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01002457static int parallel_parse(const char *devname)
2458{
2459 static int index = 0;
2460 char label[32];
2461
2462 if (strcmp(devname, "none") == 0)
2463 return 0;
2464 if (index == MAX_PARALLEL_PORTS) {
2465 fprintf(stderr, "qemu: too many parallel ports\n");
2466 exit(1);
2467 }
2468 snprintf(label, sizeof(label), "parallel%d", index);
2469 parallel_hds[index] = qemu_chr_open(label, devname, NULL);
2470 if (!parallel_hds[index]) {
2471 fprintf(stderr, "qemu: could not open parallel device '%s': %s\n",
2472 devname, strerror(errno));
2473 return -1;
2474 }
2475 index++;
2476 return 0;
2477}
2478
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002479static int virtcon_parse(const char *devname)
2480{
2481 static int index = 0;
2482 char label[32];
Amit Shah392ecf52010-01-21 16:19:23 +05302483 QemuOpts *bus_opts, *dev_opts;
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002484
2485 if (strcmp(devname, "none") == 0)
2486 return 0;
2487 if (index == MAX_VIRTIO_CONSOLES) {
2488 fprintf(stderr, "qemu: too many virtio consoles\n");
2489 exit(1);
2490 }
Amit Shah392ecf52010-01-21 16:19:23 +05302491
2492 bus_opts = qemu_opts_create(&qemu_device_opts, NULL, 0);
2493 qemu_opt_set(bus_opts, "driver", "virtio-serial");
2494
2495 dev_opts = qemu_opts_create(&qemu_device_opts, NULL, 0);
2496 qemu_opt_set(dev_opts, "driver", "virtconsole");
2497
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002498 snprintf(label, sizeof(label), "virtcon%d", index);
2499 virtcon_hds[index] = qemu_chr_open(label, devname, NULL);
2500 if (!virtcon_hds[index]) {
2501 fprintf(stderr, "qemu: could not open virtio console '%s': %s\n",
2502 devname, strerror(errno));
2503 return -1;
2504 }
Amit Shah392ecf52010-01-21 16:19:23 +05302505 qemu_opt_set(dev_opts, "chardev", label);
2506
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002507 index++;
2508 return 0;
2509}
2510
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08002511static int debugcon_parse(const char *devname)
2512{
2513 QemuOpts *opts;
2514
2515 if (!qemu_chr_open("debugcon", devname, NULL)) {
2516 exit(1);
2517 }
2518 opts = qemu_opts_create(&qemu_device_opts, "debugcon", 1);
2519 if (!opts) {
2520 fprintf(stderr, "qemu: already have a debugcon device\n");
2521 exit(1);
2522 }
2523 qemu_opt_set(opts, "driver", "isa-debugcon");
2524 qemu_opt_set(opts, "chardev", "debugcon");
2525 return 0;
2526}
2527
Anthony Liguori6530a972010-01-22 09:18:06 -06002528static const QEMUOption *lookup_opt(int argc, char **argv,
2529 const char **poptarg, int *poptind)
2530{
2531 const QEMUOption *popt;
2532 int optind = *poptind;
2533 char *r = argv[optind];
2534 const char *optarg;
2535
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +01002536 loc_set_cmdline(argv, optind, 1);
Anthony Liguori6530a972010-01-22 09:18:06 -06002537 optind++;
2538 /* Treat --foo the same as -foo. */
2539 if (r[1] == '-')
2540 r++;
2541 popt = qemu_options;
2542 for(;;) {
2543 if (!popt->name) {
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +01002544 error_report("invalid option");
Anthony Liguori6530a972010-01-22 09:18:06 -06002545 exit(1);
2546 }
2547 if (!strcmp(popt->name, r + 1))
2548 break;
2549 popt++;
2550 }
2551 if (popt->flags & HAS_ARG) {
2552 if (optind >= argc) {
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +01002553 error_report("requires an argument");
Anthony Liguori6530a972010-01-22 09:18:06 -06002554 exit(1);
2555 }
2556 optarg = argv[optind++];
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +01002557 loc_set_cmdline(argv, optind - 2, 2);
Anthony Liguori6530a972010-01-22 09:18:06 -06002558 } else {
2559 optarg = NULL;
2560 }
2561
2562 *poptarg = optarg;
2563 *poptind = optind;
2564
2565 return popt;
2566}
2567
malc902b3d52008-12-10 19:18:40 +00002568int main(int argc, char **argv, char **envp)
bellard0824d6f2003-06-24 13:42:40 +00002569{
aliguori59030a82009-04-05 18:43:41 +00002570 const char *gdbstub_dev = NULL;
thse4bcb142007-12-02 04:51:10 +00002571 int i;
Eduardo Habkostda1fcfd2010-04-06 19:22:07 -03002572 int snapshot, linux_boot;
Paolo Bonzini4e3de9e2010-03-10 11:38:48 +01002573 const char *icount_option = NULL;
bellard7f7f9872003-10-30 01:11:23 +00002574 const char *initrd_filename;
bellarda20dd502003-09-30 21:07:02 +00002575 const char *kernel_filename, *kernel_cmdline;
Anthony Liguori195325a2009-10-30 12:42:29 -05002576 char boot_devices[33] = "cad"; /* default to HD->floppy->CD-ROM */
aliguori3023f332009-01-16 19:04:14 +00002577 DisplayState *ds;
aliguori7d957bd2009-01-15 22:14:11 +00002578 DisplayChangeListener *dcl;
bellard46d47672004-11-16 01:45:27 +00002579 int cyls, heads, secs, translation;
Gerd Hoffmannf31d07d2009-07-31 12:25:37 +02002580 QemuOpts *hda_opts = NULL, *opts;
bellardcd6f1162004-05-13 22:02:20 +00002581 int optind;
Anthony Liguori6530a972010-01-22 09:18:06 -06002582 const char *optarg;
bellardd63d3072004-10-03 13:29:03 +00002583 const char *loadvm = NULL;
bellardcc1daa42005-06-05 14:49:17 +00002584 QEMUMachine *machine;
j_mayer94fc95c2007-03-05 19:44:02 +00002585 const char *cpu_model;
blueswir1b9e82a52009-04-05 18:03:31 +00002586#ifndef _WIN32
ths71e3ceb2006-12-22 02:11:31 +00002587 int fds[2];
blueswir1b9e82a52009-04-05 18:03:31 +00002588#endif
bellard26a5f132008-05-28 12:30:31 +00002589 int tb_size;
ths93815bc2007-03-19 15:58:31 +00002590 const char *pid_file = NULL;
aliguori5bb79102008-10-13 03:12:02 +00002591 const char *incoming = NULL;
blueswir1b9e82a52009-04-05 18:03:31 +00002592#ifndef _WIN32
aliguori54042bc2009-02-27 22:16:47 +00002593 int fd = 0;
2594 struct passwd *pwd = NULL;
aliguori08585322009-02-27 22:09:45 +00002595 const char *chroot_dir = NULL;
2596 const char *run_as = NULL;
blueswir1b9e82a52009-04-05 18:03:31 +00002597#endif
Anthony Liguori993fbfd2009-05-21 16:54:00 -05002598 int show_vnc_port = 0;
Anthony Liguori292444c2010-01-21 10:57:58 -06002599 int defconfig = 1;
bellard0bd48852005-11-11 00:00:47 +00002600
Markus Armbruster65abca02010-02-24 14:37:14 +01002601 error_set_progname(argv[0]);
2602
Jan Kiszka68752042009-09-15 13:36:04 +02002603 init_clocks();
2604
malc902b3d52008-12-10 19:18:40 +00002605 qemu_cache_utils_init(envp);
2606
Blue Swirl72cf2d42009-09-12 07:36:22 +00002607 QLIST_INIT (&vm_change_state_head);
bellardbe995c22006-06-25 16:25:21 +00002608#ifndef _WIN32
2609 {
2610 struct sigaction act;
2611 sigfillset(&act.sa_mask);
2612 act.sa_flags = 0;
2613 act.sa_handler = SIG_IGN;
2614 sigaction(SIGPIPE, &act, NULL);
2615 }
bellard3587d7e2006-06-26 20:03:44 +00002616#else
2617 SetConsoleCtrlHandler(qemu_ctrl_handler, TRUE);
bellarda8e5ac32006-07-14 09:36:13 +00002618 /* Note: cpu_interrupt() is currently not SMP safe, so we force
2619 QEMU to run on a single CPU */
2620 {
2621 HANDLE h;
2622 DWORD mask, smask;
2623 int i;
2624 h = GetCurrentProcess();
2625 if (GetProcessAffinityMask(h, &mask, &smask)) {
2626 for(i = 0; i < 32; i++) {
2627 if (mask & (1 << i))
2628 break;
2629 }
2630 if (i != 32) {
2631 mask = 1 << i;
2632 SetProcessAffinityMask(h, mask);
2633 }
2634 }
2635 }
bellard67b915a2004-03-31 23:37:16 +00002636#endif
bellardbe995c22006-06-25 16:25:21 +00002637
Anthony Liguorif80f9ec2009-05-20 18:38:09 -05002638 module_call_init(MODULE_INIT_MACHINE);
Anthony Liguori0c257432009-05-21 20:41:01 -05002639 machine = find_default_machine();
j_mayer94fc95c2007-03-05 19:44:02 +00002640 cpu_model = NULL;
bellardfc01f7e2003-06-30 10:03:06 +00002641 initrd_filename = NULL;
aurel324fc5d072008-04-27 21:39:40 +00002642 ram_size = 0;
bellard33e39632003-07-06 17:15:21 +00002643 snapshot = 0;
bellarda20dd502003-09-30 21:07:02 +00002644 kernel_filename = NULL;
2645 kernel_cmdline = "";
bellardc4b1fcc2004-03-14 21:44:30 +00002646 cyls = heads = secs = 0;
bellard46d47672004-11-16 01:45:27 +00002647 translation = BIOS_ATA_TRANSLATION_AUTO;
bellardc4b1fcc2004-03-14 21:44:30 +00002648
aliguori268a3622009-04-21 22:30:27 +00002649 for (i = 0; i < MAX_NODES; i++) {
2650 node_mem[i] = 0;
2651 node_cpumask[i] = 0;
2652 }
2653
aliguori268a3622009-04-21 22:30:27 +00002654 nb_numa_nodes = 0;
bellard7c9d8e02005-11-15 22:16:05 +00002655 nb_nics = 0;
ths3b46e622007-09-17 08:09:54 +00002656
bellard26a5f132008-05-28 12:30:31 +00002657 tb_size = 0;
blueswir141bd6392008-10-05 09:56:21 +00002658 autostart= 1;
2659
Anthony Liguori292444c2010-01-21 10:57:58 -06002660 /* first pass of option parsing */
2661 optind = 1;
2662 while (optind < argc) {
2663 if (argv[optind][0] != '-') {
2664 /* disk image */
Anthony Liguori28e68d62010-01-27 10:46:00 -06002665 optind++;
Anthony Liguori292444c2010-01-21 10:57:58 -06002666 continue;
2667 } else {
2668 const QEMUOption *popt;
2669
2670 popt = lookup_opt(argc, argv, &optarg, &optind);
2671 switch (popt->index) {
2672 case QEMU_OPTION_nodefconfig:
2673 defconfig=0;
2674 break;
2675 }
2676 }
2677 }
2678
2679 if (defconfig) {
Kevin Wolfdcfb0932010-03-05 17:25:55 +01002680 int ret;
Markus Armbrustercf5a65a2010-02-18 19:48:33 +01002681
Kevin Wolfdcfb0932010-03-05 17:25:55 +01002682 ret = qemu_read_config_file(CONFIG_QEMU_CONFDIR "/qemu.conf");
2683 if (ret == -EINVAL) {
2684 exit(1);
Anthony Liguori292444c2010-01-21 10:57:58 -06002685 }
2686
Kevin Wolfdcfb0932010-03-05 17:25:55 +01002687 ret = qemu_read_config_file(arch_config_name);
2688 if (ret == -EINVAL) {
2689 exit(1);
Anthony Liguori292444c2010-01-21 10:57:58 -06002690 }
2691 }
Blue Swirlde06f8d2010-03-29 19:23:50 +00002692 cpudef_init();
Anthony Liguori292444c2010-01-21 10:57:58 -06002693
2694 /* second pass of option parsing */
bellardcd6f1162004-05-13 22:02:20 +00002695 optind = 1;
bellard0824d6f2003-06-24 13:42:40 +00002696 for(;;) {
bellardcd6f1162004-05-13 22:02:20 +00002697 if (optind >= argc)
bellard0824d6f2003-06-24 13:42:40 +00002698 break;
Anthony Liguori6530a972010-01-22 09:18:06 -06002699 if (argv[optind][0] != '-') {
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02002700 hda_opts = drive_add(argv[optind++], HD_ALIAS, 0);
bellardcd6f1162004-05-13 22:02:20 +00002701 } else {
2702 const QEMUOption *popt;
2703
Anthony Liguori6530a972010-01-22 09:18:06 -06002704 popt = lookup_opt(argc, argv, &optarg, &optind);
Blue Swirlad960902010-03-29 19:23:52 +00002705 if (!(popt->arch_mask & arch_type)) {
2706 printf("Option %s not supported for this target\n", popt->name);
2707 exit(1);
2708 }
bellardcd6f1162004-05-13 22:02:20 +00002709 switch(popt->index) {
bellardcc1daa42005-06-05 14:49:17 +00002710 case QEMU_OPTION_M:
2711 machine = find_machine(optarg);
2712 if (!machine) {
2713 QEMUMachine *m;
2714 printf("Supported machines are:\n");
2715 for(m = first_machine; m != NULL; m = m->next) {
Mark McLoughlin3f6599e2009-07-22 10:02:50 +01002716 if (m->alias)
2717 printf("%-10s %s (alias of %s)\n",
2718 m->alias, m->desc, m->name);
bellardcc1daa42005-06-05 14:49:17 +00002719 printf("%-10s %s%s\n",
ths5fafdf22007-09-16 21:08:06 +00002720 m->name, m->desc,
Anthony Liguori0c257432009-05-21 20:41:01 -05002721 m->is_default ? " (default)" : "");
bellardcc1daa42005-06-05 14:49:17 +00002722 }
ths15f82202007-06-29 23:26:08 +00002723 exit(*optarg != '?');
bellardcc1daa42005-06-05 14:49:17 +00002724 }
2725 break;
j_mayer94fc95c2007-03-05 19:44:02 +00002726 case QEMU_OPTION_cpu:
2727 /* hw initialization will check this */
ths15f82202007-06-29 23:26:08 +00002728 if (*optarg == '?') {
Blue Swirl262353c2010-05-04 19:55:35 +00002729 list_cpus(stdout, &fprintf, optarg);
ths15f82202007-06-29 23:26:08 +00002730 exit(0);
j_mayer94fc95c2007-03-05 19:44:02 +00002731 } else {
2732 cpu_model = optarg;
2733 }
2734 break;
bellardcd6f1162004-05-13 22:02:20 +00002735 case QEMU_OPTION_initrd:
bellardfc01f7e2003-06-30 10:03:06 +00002736 initrd_filename = optarg;
2737 break;
bellardcd6f1162004-05-13 22:02:20 +00002738 case QEMU_OPTION_hda:
thse4bcb142007-12-02 04:51:10 +00002739 if (cyls == 0)
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02002740 hda_opts = drive_add(optarg, HD_ALIAS, 0);
thse4bcb142007-12-02 04:51:10 +00002741 else
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02002742 hda_opts = drive_add(optarg, HD_ALIAS
thse4bcb142007-12-02 04:51:10 +00002743 ",cyls=%d,heads=%d,secs=%d%s",
balrog609497a2008-01-14 02:56:53 +00002744 0, cyls, heads, secs,
thse4bcb142007-12-02 04:51:10 +00002745 translation == BIOS_ATA_TRANSLATION_LBA ?
2746 ",trans=lba" :
2747 translation == BIOS_ATA_TRANSLATION_NONE ?
2748 ",trans=none" : "");
2749 break;
bellardcd6f1162004-05-13 22:02:20 +00002750 case QEMU_OPTION_hdb:
bellardcc1daa42005-06-05 14:49:17 +00002751 case QEMU_OPTION_hdc:
2752 case QEMU_OPTION_hdd:
balrog609497a2008-01-14 02:56:53 +00002753 drive_add(optarg, HD_ALIAS, popt->index - QEMU_OPTION_hda);
bellardfc01f7e2003-06-30 10:03:06 +00002754 break;
thse4bcb142007-12-02 04:51:10 +00002755 case QEMU_OPTION_drive:
balrog609497a2008-01-14 02:56:53 +00002756 drive_add(NULL, "%s", optarg);
thse4bcb142007-12-02 04:51:10 +00002757 break;
Gerd Hoffmannd058fe02009-07-31 12:25:36 +02002758 case QEMU_OPTION_set:
2759 if (qemu_set_option(optarg) != 0)
2760 exit(1);
2761 break;
Gerd Hoffmannd0fef6f2009-12-08 13:11:34 +01002762 case QEMU_OPTION_global:
2763 if (qemu_global_option(optarg) != 0)
2764 exit(1);
2765 break;
balrog3e3d5812007-04-30 02:09:25 +00002766 case QEMU_OPTION_mtdblock:
balrog609497a2008-01-14 02:56:53 +00002767 drive_add(optarg, MTD_ALIAS);
balrog3e3d5812007-04-30 02:09:25 +00002768 break;
pbrooka1bb27b2007-04-06 16:49:48 +00002769 case QEMU_OPTION_sd:
balrog609497a2008-01-14 02:56:53 +00002770 drive_add(optarg, SD_ALIAS);
pbrooka1bb27b2007-04-06 16:49:48 +00002771 break;
j_mayer86f55662007-04-24 06:52:59 +00002772 case QEMU_OPTION_pflash:
balrog609497a2008-01-14 02:56:53 +00002773 drive_add(optarg, PFLASH_ALIAS);
j_mayer86f55662007-04-24 06:52:59 +00002774 break;
bellardcd6f1162004-05-13 22:02:20 +00002775 case QEMU_OPTION_snapshot:
bellard33e39632003-07-06 17:15:21 +00002776 snapshot = 1;
2777 break;
bellardcd6f1162004-05-13 22:02:20 +00002778 case QEMU_OPTION_hdachs:
bellard330d0412003-07-26 18:11:40 +00002779 {
bellard330d0412003-07-26 18:11:40 +00002780 const char *p;
2781 p = optarg;
2782 cyls = strtol(p, (char **)&p, 0);
bellard46d47672004-11-16 01:45:27 +00002783 if (cyls < 1 || cyls > 16383)
2784 goto chs_fail;
bellard330d0412003-07-26 18:11:40 +00002785 if (*p != ',')
2786 goto chs_fail;
2787 p++;
2788 heads = strtol(p, (char **)&p, 0);
bellard46d47672004-11-16 01:45:27 +00002789 if (heads < 1 || heads > 16)
2790 goto chs_fail;
bellard330d0412003-07-26 18:11:40 +00002791 if (*p != ',')
2792 goto chs_fail;
2793 p++;
2794 secs = strtol(p, (char **)&p, 0);
bellard46d47672004-11-16 01:45:27 +00002795 if (secs < 1 || secs > 63)
2796 goto chs_fail;
2797 if (*p == ',') {
2798 p++;
2799 if (!strcmp(p, "none"))
2800 translation = BIOS_ATA_TRANSLATION_NONE;
2801 else if (!strcmp(p, "lba"))
2802 translation = BIOS_ATA_TRANSLATION_LBA;
2803 else if (!strcmp(p, "auto"))
2804 translation = BIOS_ATA_TRANSLATION_AUTO;
2805 else
2806 goto chs_fail;
2807 } else if (*p != '\0') {
bellardc4b1fcc2004-03-14 21:44:30 +00002808 chs_fail:
bellard46d47672004-11-16 01:45:27 +00002809 fprintf(stderr, "qemu: invalid physical CHS format\n");
2810 exit(1);
bellardc4b1fcc2004-03-14 21:44:30 +00002811 }
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02002812 if (hda_opts != NULL) {
2813 char num[16];
2814 snprintf(num, sizeof(num), "%d", cyls);
2815 qemu_opt_set(hda_opts, "cyls", num);
2816 snprintf(num, sizeof(num), "%d", heads);
2817 qemu_opt_set(hda_opts, "heads", num);
2818 snprintf(num, sizeof(num), "%d", secs);
2819 qemu_opt_set(hda_opts, "secs", num);
2820 if (translation == BIOS_ATA_TRANSLATION_LBA)
2821 qemu_opt_set(hda_opts, "trans", "lba");
2822 if (translation == BIOS_ATA_TRANSLATION_NONE)
2823 qemu_opt_set(hda_opts, "trans", "none");
2824 }
bellard330d0412003-07-26 18:11:40 +00002825 }
2826 break;
aliguori268a3622009-04-21 22:30:27 +00002827 case QEMU_OPTION_numa:
2828 if (nb_numa_nodes >= MAX_NODES) {
2829 fprintf(stderr, "qemu: too many NUMA nodes\n");
2830 exit(1);
2831 }
2832 numa_add(optarg);
2833 break;
bellardcd6f1162004-05-13 22:02:20 +00002834 case QEMU_OPTION_nographic:
Anthony Liguori993fbfd2009-05-21 16:54:00 -05002835 display_type = DT_NOGRAPHIC;
bellarda20dd502003-09-30 21:07:02 +00002836 break;
balrog4d3b6f62008-02-10 16:33:14 +00002837#ifdef CONFIG_CURSES
2838 case QEMU_OPTION_curses:
Anthony Liguori993fbfd2009-05-21 16:54:00 -05002839 display_type = DT_CURSES;
balrog4d3b6f62008-02-10 16:33:14 +00002840 break;
2841#endif
balroga171fe32007-04-30 01:48:07 +00002842 case QEMU_OPTION_portrait:
2843 graphic_rotate = 1;
2844 break;
bellardcd6f1162004-05-13 22:02:20 +00002845 case QEMU_OPTION_kernel:
bellarda20dd502003-09-30 21:07:02 +00002846 kernel_filename = optarg;
2847 break;
bellardcd6f1162004-05-13 22:02:20 +00002848 case QEMU_OPTION_append:
bellarda20dd502003-09-30 21:07:02 +00002849 kernel_cmdline = optarg;
bellard313aa562003-08-10 21:52:11 +00002850 break;
bellardcd6f1162004-05-13 22:02:20 +00002851 case QEMU_OPTION_cdrom:
balrog609497a2008-01-14 02:56:53 +00002852 drive_add(optarg, CDROM_ALIAS);
bellard36b486b2003-11-11 13:36:08 +00002853 break;
bellardcd6f1162004-05-13 22:02:20 +00002854 case QEMU_OPTION_boot:
j_mayer28c5af52007-11-11 01:50:45 +00002855 {
Jan Kiszkaef3adf62009-07-02 00:19:02 +02002856 static const char * const params[] = {
Jan Kiszka95387492009-07-02 00:19:02 +02002857 "order", "once", "menu", NULL
Jan Kiszkaef3adf62009-07-02 00:19:02 +02002858 };
2859 char buf[sizeof(boot_devices)];
Jan Kiszkae0f084b2009-07-02 00:19:02 +02002860 char *standard_boot_devices;
Jan Kiszkaef3adf62009-07-02 00:19:02 +02002861 int legacy = 0;
2862
2863 if (!strchr(optarg, '=')) {
2864 legacy = 1;
2865 pstrcpy(buf, sizeof(buf), optarg);
2866 } else if (check_params(buf, sizeof(buf), params, optarg) < 0) {
2867 fprintf(stderr,
2868 "qemu: unknown boot parameter '%s' in '%s'\n",
2869 buf, optarg);
2870 exit(1);
2871 }
2872
2873 if (legacy ||
2874 get_param_value(buf, sizeof(buf), "order", optarg)) {
Eduardo Habkost4e9e9d62010-04-06 19:22:08 -03002875 validate_bootdevices(buf);
Jan Kiszkaef3adf62009-07-02 00:19:02 +02002876 pstrcpy(boot_devices, sizeof(boot_devices), buf);
j_mayer28c5af52007-11-11 01:50:45 +00002877 }
Jan Kiszkae0f084b2009-07-02 00:19:02 +02002878 if (!legacy) {
2879 if (get_param_value(buf, sizeof(buf),
2880 "once", optarg)) {
Eduardo Habkost4e9e9d62010-04-06 19:22:08 -03002881 validate_bootdevices(buf);
Jan Kiszkae0f084b2009-07-02 00:19:02 +02002882 standard_boot_devices = qemu_strdup(boot_devices);
2883 pstrcpy(boot_devices, sizeof(boot_devices), buf);
2884 qemu_register_reset(restore_boot_devices,
2885 standard_boot_devices);
2886 }
Jan Kiszka95387492009-07-02 00:19:02 +02002887 if (get_param_value(buf, sizeof(buf),
2888 "menu", optarg)) {
2889 if (!strcmp(buf, "on")) {
2890 boot_menu = 1;
2891 } else if (!strcmp(buf, "off")) {
2892 boot_menu = 0;
2893 } else {
2894 fprintf(stderr,
2895 "qemu: invalid option value '%s'\n",
2896 buf);
2897 exit(1);
2898 }
2899 }
Jan Kiszkae0f084b2009-07-02 00:19:02 +02002900 }
bellard36b486b2003-11-11 13:36:08 +00002901 }
2902 break;
bellardcd6f1162004-05-13 22:02:20 +00002903 case QEMU_OPTION_fda:
bellardcd6f1162004-05-13 22:02:20 +00002904 case QEMU_OPTION_fdb:
balrog609497a2008-01-14 02:56:53 +00002905 drive_add(optarg, FD_ALIAS, popt->index - QEMU_OPTION_fda);
bellardc45886d2004-01-05 00:02:06 +00002906 break;
bellard52ca8d62006-06-14 16:03:05 +00002907 case QEMU_OPTION_no_fd_bootchk:
2908 fd_bootchk = 0;
2909 break;
Mark McLoughlina1ea4582009-10-08 19:58:26 +01002910 case QEMU_OPTION_netdev:
2911 if (net_client_parse(&qemu_netdev_opts, optarg) == -1) {
2912 exit(1);
2913 }
2914 break;
bellard7c9d8e02005-11-15 22:16:05 +00002915 case QEMU_OPTION_net:
Mark McLoughlin7f161aa2009-10-08 19:58:25 +01002916 if (net_client_parse(&qemu_net_opts, optarg) == -1) {
bellardc4b1fcc2004-03-14 21:44:30 +00002917 exit(1);
2918 }
bellard702c6512004-04-02 21:21:32 +00002919 break;
bellardc7f74642004-08-24 21:57:12 +00002920#ifdef CONFIG_SLIRP
2921 case QEMU_OPTION_tftp:
Jan Kiszkaad196a92009-06-24 14:42:28 +02002922 legacy_tftp_prefix = optarg;
bellard9bf05442004-08-25 22:12:49 +00002923 break;
ths47d5d012007-02-20 00:05:08 +00002924 case QEMU_OPTION_bootp:
Jan Kiszkaad196a92009-06-24 14:42:28 +02002925 legacy_bootp_filename = optarg;
ths47d5d012007-02-20 00:05:08 +00002926 break;
bellardc94c8d62004-09-13 21:37:34 +00002927#ifndef _WIN32
bellard9d728e82004-09-05 23:09:03 +00002928 case QEMU_OPTION_smb:
Markus Armbruster07527062009-10-06 12:16:57 +01002929 if (net_slirp_smb(optarg) < 0)
2930 exit(1);
bellard9d728e82004-09-05 23:09:03 +00002931 break;
bellardc94c8d62004-09-13 21:37:34 +00002932#endif
bellard9bf05442004-08-25 22:12:49 +00002933 case QEMU_OPTION_redir:
Markus Armbruster07527062009-10-06 12:16:57 +01002934 if (net_slirp_redir(optarg) < 0)
2935 exit(1);
bellard9bf05442004-08-25 22:12:49 +00002936 break;
bellardc7f74642004-08-24 21:57:12 +00002937#endif
balrogdc72ac12008-11-09 00:04:26 +00002938 case QEMU_OPTION_bt:
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002939 add_device_config(DEV_BT, optarg);
balrogdc72ac12008-11-09 00:04:26 +00002940 break;
bellard1d14ffa2005-10-30 18:58:22 +00002941 case QEMU_OPTION_audio_help:
Blue Swirlad960902010-03-29 19:23:52 +00002942 if (!(audio_available())) {
2943 printf("Option %s not supported for this target\n", popt->name);
2944 exit(1);
2945 }
bellard1d14ffa2005-10-30 18:58:22 +00002946 AUD_help ();
2947 exit (0);
2948 break;
2949 case QEMU_OPTION_soundhw:
Blue Swirlad960902010-03-29 19:23:52 +00002950 if (!(audio_available())) {
2951 printf("Option %s not supported for this target\n", popt->name);
2952 exit(1);
2953 }
bellard1d14ffa2005-10-30 18:58:22 +00002954 select_soundhw (optarg);
2955 break;
bellardcd6f1162004-05-13 22:02:20 +00002956 case QEMU_OPTION_h:
ths15f82202007-06-29 23:26:08 +00002957 help(0);
bellardcd6f1162004-05-13 22:02:20 +00002958 break;
pbrook9bd7e6d2009-04-07 22:58:45 +00002959 case QEMU_OPTION_version:
2960 version();
2961 exit(0);
2962 break;
aurel3200f82b82008-04-27 21:12:55 +00002963 case QEMU_OPTION_m: {
2964 uint64_t value;
2965 char *ptr;
2966
2967 value = strtoul(optarg, &ptr, 10);
2968 switch (*ptr) {
2969 case 0: case 'M': case 'm':
2970 value <<= 20;
2971 break;
2972 case 'G': case 'g':
2973 value <<= 30;
2974 break;
2975 default:
2976 fprintf(stderr, "qemu: invalid ram size: %s\n", optarg);
bellardcd6f1162004-05-13 22:02:20 +00002977 exit(1);
2978 }
aurel3200f82b82008-04-27 21:12:55 +00002979
2980 /* On 32-bit hosts, QEMU is limited by virtual address space */
Anthony Liguori4a1418e2009-08-10 17:07:24 -05002981 if (value > (2047 << 20) && HOST_LONG_BITS == 32) {
aurel3200f82b82008-04-27 21:12:55 +00002982 fprintf(stderr, "qemu: at most 2047 MB RAM can be simulated\n");
2983 exit(1);
2984 }
Anthony Liguoric227f092009-10-01 16:12:16 -05002985 if (value != (uint64_t)(ram_addr_t)value) {
aurel3200f82b82008-04-27 21:12:55 +00002986 fprintf(stderr, "qemu: ram size too large\n");
2987 exit(1);
2988 }
2989 ram_size = value;
bellardcd6f1162004-05-13 22:02:20 +00002990 break;
aurel3200f82b82008-04-27 21:12:55 +00002991 }
Marcelo Tosattic9027602010-03-01 20:25:08 -03002992 case QEMU_OPTION_mempath:
2993 mem_path = optarg;
2994 break;
2995#ifdef MAP_POPULATE
2996 case QEMU_OPTION_mem_prealloc:
2997 mem_prealloc = 1;
2998 break;
2999#endif
bellardcd6f1162004-05-13 22:02:20 +00003000 case QEMU_OPTION_d:
Blue Swirlde06f8d2010-03-29 19:23:50 +00003001 set_cpu_log(optarg);
bellardcd6f1162004-05-13 22:02:20 +00003002 break;
bellardcd6f1162004-05-13 22:02:20 +00003003 case QEMU_OPTION_s:
aliguori59030a82009-04-05 18:43:41 +00003004 gdbstub_dev = "tcp::" DEFAULT_GDBSTUB_PORT;
bellardcd6f1162004-05-13 22:02:20 +00003005 break;
aliguori59030a82009-04-05 18:43:41 +00003006 case QEMU_OPTION_gdb:
3007 gdbstub_dev = optarg;
bellardcd6f1162004-05-13 22:02:20 +00003008 break;
bellardcd6f1162004-05-13 22:02:20 +00003009 case QEMU_OPTION_L:
Paul Brook5cea8592009-05-30 00:52:44 +01003010 data_dir = optarg;
bellardcd6f1162004-05-13 22:02:20 +00003011 break;
j_mayer1192dad2007-10-05 13:08:35 +00003012 case QEMU_OPTION_bios:
3013 bios_name = optarg;
3014 break;
aurel321b530a62009-04-05 20:08:59 +00003015 case QEMU_OPTION_singlestep:
3016 singlestep = 1;
3017 break;
bellardcd6f1162004-05-13 22:02:20 +00003018 case QEMU_OPTION_S:
pbrook3c07f8e2007-01-21 16:47:01 +00003019 autostart = 0;
bellardcd6f1162004-05-13 22:02:20 +00003020 break;
bellard3d11d0e2004-12-12 16:56:30 +00003021 case QEMU_OPTION_k:
3022 keyboard_layout = optarg;
3023 break;
bellardee22c2f2004-06-03 12:49:50 +00003024 case QEMU_OPTION_localtime:
3025 rtc_utc = 0;
3026 break;
malc3893c122008-09-28 00:42:05 +00003027 case QEMU_OPTION_vga:
3028 select_vgahw (optarg);
bellard1bfe8562004-07-08 21:17:50 +00003029 break;
bellarde9b137c2004-06-21 16:46:10 +00003030 case QEMU_OPTION_g:
3031 {
3032 const char *p;
3033 int w, h, depth;
3034 p = optarg;
3035 w = strtol(p, (char **)&p, 10);
3036 if (w <= 0) {
3037 graphic_error:
3038 fprintf(stderr, "qemu: invalid resolution or depth\n");
3039 exit(1);
3040 }
3041 if (*p != 'x')
3042 goto graphic_error;
3043 p++;
3044 h = strtol(p, (char **)&p, 10);
3045 if (h <= 0)
3046 goto graphic_error;
3047 if (*p == 'x') {
3048 p++;
3049 depth = strtol(p, (char **)&p, 10);
ths5fafdf22007-09-16 21:08:06 +00003050 if (depth != 8 && depth != 15 && depth != 16 &&
bellarde9b137c2004-06-21 16:46:10 +00003051 depth != 24 && depth != 32)
3052 goto graphic_error;
3053 } else if (*p == '\0') {
3054 depth = graphic_depth;
3055 } else {
3056 goto graphic_error;
3057 }
ths3b46e622007-09-17 08:09:54 +00003058
bellarde9b137c2004-06-21 16:46:10 +00003059 graphic_width = w;
3060 graphic_height = h;
3061 graphic_depth = depth;
3062 }
3063 break;
ths20d8a3e2007-02-18 17:04:49 +00003064 case QEMU_OPTION_echr:
3065 {
3066 char *r;
3067 term_escape_char = strtol(optarg, &r, 0);
3068 if (r == optarg)
3069 printf("Bad argument to echr\n");
3070 break;
3071 }
bellard82c643f2004-07-14 17:28:13 +00003072 case QEMU_OPTION_monitor:
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01003073 monitor_parse(optarg, "readline");
3074 default_monitor = 0;
3075 break;
3076 case QEMU_OPTION_qmp:
3077 monitor_parse(optarg, "control");
Anthony Liguori2d114dc2010-03-21 14:14:38 -05003078 default_monitor = 0;
bellard82c643f2004-07-14 17:28:13 +00003079 break;
Gerd Hoffmann22a0e042009-12-08 13:11:51 +01003080 case QEMU_OPTION_mon:
Markus Armbruster8212c642010-02-10 19:52:18 +01003081 opts = qemu_opts_parse(&qemu_mon_opts, optarg, 1);
Gerd Hoffmann22a0e042009-12-08 13:11:51 +01003082 if (!opts) {
Gerd Hoffmann22a0e042009-12-08 13:11:51 +01003083 exit(1);
3084 }
Anthony Liguori2d114dc2010-03-21 14:14:38 -05003085 default_monitor = 0;
Gerd Hoffmann22a0e042009-12-08 13:11:51 +01003086 break;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003087 case QEMU_OPTION_chardev:
Markus Armbruster8212c642010-02-10 19:52:18 +01003088 opts = qemu_opts_parse(&qemu_chardev_opts, optarg, 1);
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003089 if (!opts) {
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003090 exit(1);
3091 }
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003092 break;
Gautham R Shenoy74db9202010-04-29 17:44:43 +05303093#ifdef CONFIG_LINUX
3094 case QEMU_OPTION_fsdev:
3095 opts = qemu_opts_parse(&qemu_fsdev_opts, optarg, 1);
3096 if (!opts) {
3097 fprintf(stderr, "parse error: %s\n", optarg);
3098 exit(1);
3099 }
3100 break;
Gautham R Shenoy3d54abc2010-04-29 17:45:03 +05303101 case QEMU_OPTION_virtfs: {
3102 char *arg_fsdev = NULL;
3103 char *arg_9p = NULL;
3104 int len = 0;
3105
3106 opts = qemu_opts_parse(&qemu_virtfs_opts, optarg, 1);
3107 if (!opts) {
3108 fprintf(stderr, "parse error: %s\n", optarg);
3109 exit(1);
3110 }
3111
3112 len = strlen(",id=,path=");
3113 len += strlen(qemu_opt_get(opts, "fstype"));
3114 len += strlen(qemu_opt_get(opts, "mount_tag"));
3115 len += strlen(qemu_opt_get(opts, "path"));
3116 arg_fsdev = qemu_malloc((len + 1) * sizeof(*arg_fsdev));
3117
3118 if (!arg_fsdev) {
3119 fprintf(stderr, "No memory to parse -fsdev for %s\n",
3120 optarg);
3121 exit(1);
3122 }
3123
3124 sprintf(arg_fsdev, "%s,id=%s,path=%s",
3125 qemu_opt_get(opts, "fstype"),
3126 qemu_opt_get(opts, "mount_tag"),
3127 qemu_opt_get(opts, "path"));
3128
3129 len = strlen("virtio-9p-pci,fsdev=,mount_tag=");
3130 len += 2*strlen(qemu_opt_get(opts, "mount_tag"));
3131 arg_9p = qemu_malloc((len + 1) * sizeof(*arg_9p));
3132
3133 if (!arg_9p) {
3134 fprintf(stderr, "No memory to parse -device for %s\n",
3135 optarg);
3136 exit(1);
3137 }
3138
3139 sprintf(arg_9p, "virtio-9p-pci,fsdev=%s,mount_tag=%s",
3140 qemu_opt_get(opts, "mount_tag"),
3141 qemu_opt_get(opts, "mount_tag"));
3142
3143 if (!qemu_opts_parse(&qemu_fsdev_opts, arg_fsdev, 1)) {
3144 fprintf(stderr, "parse error [fsdev]: %s\n", optarg);
3145 exit(1);
3146 }
3147
3148 if (!qemu_opts_parse(&qemu_device_opts, arg_9p, 1)) {
3149 fprintf(stderr, "parse error [device]: %s\n", optarg);
3150 exit(1);
3151 }
3152
3153 qemu_free(arg_fsdev);
3154 qemu_free(arg_9p);
3155 break;
3156 }
Gautham R Shenoy74db9202010-04-29 17:44:43 +05303157#endif
bellard82c643f2004-07-14 17:28:13 +00003158 case QEMU_OPTION_serial:
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01003159 add_device_config(DEV_SERIAL, optarg);
3160 default_serial = 0;
Jan Kiszka18141ed2010-03-07 11:28:40 +01003161 if (strncmp(optarg, "mon:", 4) == 0) {
3162 default_monitor = 0;
3163 }
bellard82c643f2004-07-14 17:28:13 +00003164 break;
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01003165 case QEMU_OPTION_watchdog:
Markus Armbruster09aaa162009-08-21 10:31:34 +02003166 if (watchdog) {
3167 fprintf(stderr,
3168 "qemu: only one watchdog option may be given\n");
3169 return 1;
3170 }
3171 watchdog = optarg;
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01003172 break;
3173 case QEMU_OPTION_watchdog_action:
3174 if (select_watchdog_action(optarg) == -1) {
3175 fprintf(stderr, "Unknown -watchdog-action parameter\n");
3176 exit(1);
3177 }
3178 break;
aliguori51ecf132009-01-15 20:06:40 +00003179 case QEMU_OPTION_virtiocon:
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01003180 add_device_config(DEV_VIRTCON, optarg);
3181 default_virtcon = 0;
Jan Kiszka18141ed2010-03-07 11:28:40 +01003182 if (strncmp(optarg, "mon:", 4) == 0) {
3183 default_monitor = 0;
3184 }
aliguori51ecf132009-01-15 20:06:40 +00003185 break;
bellard6508fe52005-01-15 12:02:56 +00003186 case QEMU_OPTION_parallel:
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01003187 add_device_config(DEV_PARALLEL, optarg);
3188 default_parallel = 0;
Jan Kiszka18141ed2010-03-07 11:28:40 +01003189 if (strncmp(optarg, "mon:", 4) == 0) {
3190 default_monitor = 0;
3191 }
bellard6508fe52005-01-15 12:02:56 +00003192 break;
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08003193 case QEMU_OPTION_debugcon:
3194 add_device_config(DEV_DEBUGCON, optarg);
3195 break;
bellardd63d3072004-10-03 13:29:03 +00003196 case QEMU_OPTION_loadvm:
3197 loadvm = optarg;
3198 break;
3199 case QEMU_OPTION_full_screen:
3200 full_screen = 1;
3201 break;
ths667acca2006-12-11 02:08:05 +00003202#ifdef CONFIG_SDL
ths43523e92007-02-18 18:19:32 +00003203 case QEMU_OPTION_no_frame:
3204 no_frame = 1;
3205 break;
ths3780e192007-06-21 21:08:02 +00003206 case QEMU_OPTION_alt_grab:
3207 alt_grab = 1;
3208 break;
Dustin Kirkland0ca9f8a2009-09-17 15:48:04 -05003209 case QEMU_OPTION_ctrl_grab:
3210 ctrl_grab = 1;
3211 break;
ths667acca2006-12-11 02:08:05 +00003212 case QEMU_OPTION_no_quit:
3213 no_quit = 1;
3214 break;
aliguori7d957bd2009-01-15 22:14:11 +00003215 case QEMU_OPTION_sdl:
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003216 display_type = DT_SDL;
aliguori7d957bd2009-01-15 22:14:11 +00003217 break;
ths667acca2006-12-11 02:08:05 +00003218#endif
bellardf7cce892004-12-08 22:21:25 +00003219 case QEMU_OPTION_pidfile:
ths93815bc2007-03-19 15:58:31 +00003220 pid_file = optarg;
bellardf7cce892004-12-08 22:21:25 +00003221 break;
bellarda09db212005-04-30 16:10:35 +00003222 case QEMU_OPTION_win2k_hack:
3223 win2k_install_hack = 1;
3224 break;
aliguori73822ec2009-01-15 20:11:34 +00003225 case QEMU_OPTION_rtc_td_hack:
3226 rtc_td_hack = 1;
3227 break;
aliguori8a92ea22009-02-27 20:12:36 +00003228 case QEMU_OPTION_acpitable:
Blue Swirlde06f8d2010-03-29 19:23:50 +00003229 do_acpitable_option(optarg);
aliguori8a92ea22009-02-27 20:12:36 +00003230 break;
aliguorib6f6e3d2009-04-17 18:59:56 +00003231 case QEMU_OPTION_smbios:
Blue Swirlde06f8d2010-03-29 19:23:50 +00003232 do_smbios_option(optarg);
aliguorib6f6e3d2009-04-17 18:59:56 +00003233 break;
aliguori7ba1e612008-11-05 16:04:33 +00003234 case QEMU_OPTION_enable_kvm:
3235 kvm_allowed = 1;
aliguori7ba1e612008-11-05 16:04:33 +00003236 break;
bellardbb36d472005-11-05 14:22:28 +00003237 case QEMU_OPTION_usb:
3238 usb_enabled = 1;
3239 break;
bellarda594cfb2005-11-06 16:13:29 +00003240 case QEMU_OPTION_usbdevice:
3241 usb_enabled = 1;
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02003242 add_device_config(DEV_USB, optarg);
3243 break;
3244 case QEMU_OPTION_device:
Markus Armbruster8212c642010-02-10 19:52:18 +01003245 if (!qemu_opts_parse(&qemu_device_opts, optarg, 1)) {
Gerd Hoffmannf31d07d2009-07-31 12:25:37 +02003246 exit(1);
3247 }
bellarda594cfb2005-11-06 16:13:29 +00003248 break;
bellard6a00d602005-11-21 23:25:50 +00003249 case QEMU_OPTION_smp:
Andre Przywaradc6b1c02009-08-19 15:42:40 +02003250 smp_parse(optarg);
aliguorib2097002008-10-07 20:39:39 +00003251 if (smp_cpus < 1) {
bellard6a00d602005-11-21 23:25:50 +00003252 fprintf(stderr, "Invalid number of CPUs\n");
3253 exit(1);
3254 }
Jes Sorensen6be68d72009-07-23 17:03:42 +02003255 if (max_cpus < smp_cpus) {
3256 fprintf(stderr, "maxcpus must be equal to or greater than "
3257 "smp\n");
3258 exit(1);
3259 }
3260 if (max_cpus > 255) {
3261 fprintf(stderr, "Unsupported number of maxcpus\n");
3262 exit(1);
3263 }
bellard6a00d602005-11-21 23:25:50 +00003264 break;
bellard24236862006-04-30 21:28:36 +00003265 case QEMU_OPTION_vnc:
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003266 display_type = DT_VNC;
ths73fc9742006-12-22 02:09:07 +00003267 vnc_display = optarg;
bellard24236862006-04-30 21:28:36 +00003268 break;
bellard6515b202006-05-03 22:02:44 +00003269 case QEMU_OPTION_no_acpi:
3270 acpi_enabled = 0;
3271 break;
aliguori16b29ae2008-12-17 23:28:44 +00003272 case QEMU_OPTION_no_hpet:
3273 no_hpet = 1;
3274 break;
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02003275 case QEMU_OPTION_balloon:
3276 if (balloon_parse(optarg) < 0) {
3277 fprintf(stderr, "Unknown -balloon argument %s\n", optarg);
3278 exit(1);
3279 }
Eduardo Habkostdf97b922009-06-10 16:34:08 -03003280 break;
bellardd1beab82006-10-02 19:44:22 +00003281 case QEMU_OPTION_no_reboot:
3282 no_reboot = 1;
3283 break;
aurel32b2f76162008-04-11 21:35:52 +00003284 case QEMU_OPTION_no_shutdown:
3285 no_shutdown = 1;
3286 break;
balrog9467cd42007-05-01 01:34:14 +00003287 case QEMU_OPTION_show_cursor:
3288 cursor_hide = 0;
3289 break;
blueswir18fcb1b92008-09-18 18:29:08 +00003290 case QEMU_OPTION_uuid:
3291 if(qemu_uuid_parse(optarg, qemu_uuid) < 0) {
3292 fprintf(stderr, "Fail to parse UUID string."
3293 " Wrong format.\n");
3294 exit(1);
3295 }
3296 break;
blueswir15824d652009-03-28 06:44:27 +00003297#ifndef _WIN32
ths71e3ceb2006-12-22 02:11:31 +00003298 case QEMU_OPTION_daemonize:
3299 daemonize = 1;
3300 break;
blueswir15824d652009-03-28 06:44:27 +00003301#endif
ths9ae02552007-01-05 17:39:04 +00003302 case QEMU_OPTION_option_rom:
3303 if (nb_option_roms >= MAX_OPTION_ROMS) {
3304 fprintf(stderr, "Too many option ROMs\n");
3305 exit(1);
3306 }
3307 option_rom[nb_option_roms] = optarg;
3308 nb_option_roms++;
3309 break;
pbrook8e716212007-01-20 17:12:09 +00003310 case QEMU_OPTION_semihosting:
3311 semihosting_enabled = 1;
3312 break;
thsc35734b2007-03-19 15:17:08 +00003313 case QEMU_OPTION_name:
Andi Kleen18894652009-07-02 09:34:17 +02003314 qemu_name = qemu_strdup(optarg);
3315 {
3316 char *p = strchr(qemu_name, ',');
3317 if (p != NULL) {
3318 *p++ = 0;
3319 if (strncmp(p, "process=", 8)) {
3320 fprintf(stderr, "Unknown subargument %s to -name", p);
3321 exit(1);
3322 }
3323 p += 8;
3324 set_proc_name(p);
3325 }
3326 }
thsc35734b2007-03-19 15:17:08 +00003327 break;
blueswir166508602007-05-01 14:16:52 +00003328 case QEMU_OPTION_prom_env:
3329 if (nb_prom_envs >= MAX_PROM_ENVS) {
3330 fprintf(stderr, "Too many prom variables\n");
3331 exit(1);
3332 }
3333 prom_envs[nb_prom_envs] = optarg;
3334 nb_prom_envs++;
3335 break;
balrog2b8f2d42007-07-27 22:08:46 +00003336 case QEMU_OPTION_old_param:
3337 old_param = 1;
ths05ebd532008-01-08 19:32:16 +00003338 break;
thsf3dcfad2007-08-24 01:26:02 +00003339 case QEMU_OPTION_clock:
3340 configure_alarms(optarg);
3341 break;
bellard7e0af5d02007-11-07 16:24:33 +00003342 case QEMU_OPTION_startdate:
Jan Kiszka1ed2fc12009-09-15 13:36:04 +02003343 configure_rtc_date_offset(optarg, 1);
3344 break;
3345 case QEMU_OPTION_rtc:
Markus Armbruster8212c642010-02-10 19:52:18 +01003346 opts = qemu_opts_parse(&qemu_rtc_opts, optarg, 0);
Jan Kiszka1ed2fc12009-09-15 13:36:04 +02003347 if (!opts) {
Jan Kiszka1ed2fc12009-09-15 13:36:04 +02003348 exit(1);
bellard7e0af5d02007-11-07 16:24:33 +00003349 }
Jan Kiszka1ed2fc12009-09-15 13:36:04 +02003350 configure_rtc(opts);
bellard7e0af5d02007-11-07 16:24:33 +00003351 break;
bellard26a5f132008-05-28 12:30:31 +00003352 case QEMU_OPTION_tb_size:
3353 tb_size = strtol(optarg, NULL, 0);
3354 if (tb_size < 0)
3355 tb_size = 0;
3356 break;
pbrook2e70f6e2008-06-29 01:03:05 +00003357 case QEMU_OPTION_icount:
Paolo Bonzini4e3de9e2010-03-10 11:38:48 +01003358 icount_option = optarg;
pbrook2e70f6e2008-06-29 01:03:05 +00003359 break;
aliguori5bb79102008-10-13 03:12:02 +00003360 case QEMU_OPTION_incoming:
3361 incoming = optarg;
3362 break;
Gerd Hoffmannd8c208d2009-12-08 13:11:46 +01003363 case QEMU_OPTION_nodefaults:
3364 default_serial = 0;
3365 default_parallel = 0;
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01003366 default_virtcon = 0;
Gerd Hoffmannd8c208d2009-12-08 13:11:46 +01003367 default_monitor = 0;
3368 default_vga = 0;
Gerd Hoffmanncb4522c2009-12-08 13:11:47 +01003369 default_net = 0;
Gerd Hoffmannac33f8f2009-12-16 14:25:39 +01003370 default_floppy = 0;
3371 default_cdrom = 0;
3372 default_sdcard = 0;
Gerd Hoffmannd8c208d2009-12-08 13:11:46 +01003373 break;
blueswir15824d652009-03-28 06:44:27 +00003374#ifndef _WIN32
aliguori08585322009-02-27 22:09:45 +00003375 case QEMU_OPTION_chroot:
3376 chroot_dir = optarg;
3377 break;
3378 case QEMU_OPTION_runas:
3379 run_as = optarg;
3380 break;
blueswir15824d652009-03-28 06:44:27 +00003381#endif
aliguorie37630c2009-04-22 15:19:10 +00003382 case QEMU_OPTION_xen_domid:
Blue Swirlad960902010-03-29 19:23:52 +00003383 if (!(xen_available())) {
3384 printf("Option %s not supported for this target\n", popt->name);
3385 exit(1);
3386 }
aliguorie37630c2009-04-22 15:19:10 +00003387 xen_domid = atoi(optarg);
3388 break;
3389 case QEMU_OPTION_xen_create:
Blue Swirlad960902010-03-29 19:23:52 +00003390 if (!(xen_available())) {
3391 printf("Option %s not supported for this target\n", popt->name);
3392 exit(1);
3393 }
aliguorie37630c2009-04-22 15:19:10 +00003394 xen_mode = XEN_CREATE;
3395 break;
3396 case QEMU_OPTION_xen_attach:
Blue Swirlad960902010-03-29 19:23:52 +00003397 if (!(xen_available())) {
3398 printf("Option %s not supported for this target\n", popt->name);
3399 exit(1);
3400 }
aliguorie37630c2009-04-22 15:19:10 +00003401 xen_mode = XEN_ATTACH;
3402 break;
Gerd Hoffmann715a6642009-10-14 10:39:28 +02003403 case QEMU_OPTION_readconfig:
3404 {
Kevin Wolfdcfb0932010-03-05 17:25:55 +01003405 int ret = qemu_read_config_file(optarg);
3406 if (ret < 0) {
3407 fprintf(stderr, "read config %s: %s\n", optarg,
3408 strerror(-ret));
Gerd Hoffmann715a6642009-10-14 10:39:28 +02003409 exit(1);
3410 }
Gerd Hoffmann715a6642009-10-14 10:39:28 +02003411 break;
3412 }
3413 case QEMU_OPTION_writeconfig:
3414 {
3415 FILE *fp;
3416 if (strcmp(optarg, "-") == 0) {
3417 fp = stdout;
3418 } else {
3419 fp = fopen(optarg, "w");
3420 if (fp == NULL) {
3421 fprintf(stderr, "open %s: %s\n", optarg, strerror(errno));
3422 exit(1);
3423 }
3424 }
3425 qemu_config_write(fp);
3426 fclose(fp);
3427 break;
3428 }
bellardcd6f1162004-05-13 22:02:20 +00003429 }
bellard0824d6f2003-06-24 13:42:40 +00003430 }
3431 }
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +01003432 loc_set_none();
bellard330d0412003-07-26 18:11:40 +00003433
Paul Brook5cea8592009-05-30 00:52:44 +01003434 /* If no data_dir is specified then try to find it relative to the
3435 executable path. */
3436 if (!data_dir) {
3437 data_dir = find_datadir(argv[0]);
3438 }
3439 /* If all else fails use the install patch specified when building. */
3440 if (!data_dir) {
3441 data_dir = CONFIG_QEMU_SHAREDIR;
3442 }
3443
Jes Sorensen6be68d72009-07-23 17:03:42 +02003444 /*
3445 * Default to max_cpus = smp_cpus, in case the user doesn't
3446 * specify a max_cpus value.
3447 */
3448 if (!max_cpus)
3449 max_cpus = smp_cpus;
3450
balrog3d878ca2008-10-28 10:59:59 +00003451 machine->max_cpus = machine->max_cpus ?: 1; /* Default to UP */
aliguorib2097002008-10-07 20:39:39 +00003452 if (smp_cpus > machine->max_cpus) {
3453 fprintf(stderr, "Number of SMP cpus requested (%d), exceeds max cpus "
3454 "supported by machine `%s' (%d)\n", smp_cpus, machine->name,
3455 machine->max_cpus);
3456 exit(1);
3457 }
3458
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01003459 qemu_opts_foreach(&qemu_device_opts, default_driver_check, NULL, 0);
Gerd Hoffmannd8bcbab2009-12-16 14:25:40 +01003460 qemu_opts_foreach(&qemu_global_opts, default_driver_check, NULL, 0);
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01003461
Gerd Hoffmann986c5f72009-12-08 13:11:54 +01003462 if (machine->no_serial) {
3463 default_serial = 0;
3464 }
3465 if (machine->no_parallel) {
3466 default_parallel = 0;
3467 }
3468 if (!machine->use_virtcon) {
3469 default_virtcon = 0;
3470 }
3471 if (machine->no_vga) {
3472 default_vga = 0;
3473 }
Gerd Hoffmannac33f8f2009-12-16 14:25:39 +01003474 if (machine->no_floppy) {
3475 default_floppy = 0;
3476 }
3477 if (machine->no_cdrom) {
3478 default_cdrom = 0;
3479 }
3480 if (machine->no_sdcard) {
3481 default_sdcard = 0;
3482 }
Gerd Hoffmann986c5f72009-12-08 13:11:54 +01003483
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003484 if (display_type == DT_NOGRAPHIC) {
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01003485 if (default_parallel)
3486 add_device_config(DEV_PARALLEL, "null");
Gerd Hoffmanne1c09172009-12-08 13:11:44 +01003487 if (default_serial && default_monitor) {
3488 add_device_config(DEV_SERIAL, "mon:stdio");
Gerd Hoffmann986c5f72009-12-08 13:11:54 +01003489 } else if (default_virtcon && default_monitor) {
3490 add_device_config(DEV_VIRTCON, "mon:stdio");
Gerd Hoffmanne1c09172009-12-08 13:11:44 +01003491 } else {
3492 if (default_serial)
3493 add_device_config(DEV_SERIAL, "stdio");
Gerd Hoffmann986c5f72009-12-08 13:11:54 +01003494 if (default_virtcon)
3495 add_device_config(DEV_VIRTCON, "stdio");
Gerd Hoffmanne1c09172009-12-08 13:11:44 +01003496 if (default_monitor)
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01003497 monitor_parse("stdio", "readline");
Gerd Hoffmanne1c09172009-12-08 13:11:44 +01003498 }
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01003499 } else {
3500 if (default_serial)
3501 add_device_config(DEV_SERIAL, "vc:80Cx24C");
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01003502 if (default_parallel)
3503 add_device_config(DEV_PARALLEL, "vc:80Cx24C");
Gerd Hoffmannabdeed02009-12-08 13:11:43 +01003504 if (default_monitor)
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01003505 monitor_parse("vc:80Cx24C", "readline");
Alexander Graf38536da2009-12-17 13:06:08 +01003506 if (default_virtcon)
3507 add_device_config(DEV_VIRTCON, "vc:80Cx24C");
aliguoribc0129d2008-08-01 15:12:34 +00003508 }
Gerd Hoffmann64465292009-12-08 13:11:45 +01003509 if (default_vga)
3510 vga_interface_type = VGA_CIRRUS;
aliguoribc0129d2008-08-01 15:12:34 +00003511
TeLeMana5829fd2010-04-15 12:37:55 +08003512 socket_init();
3513
Gerd Hoffmann1a688d32009-12-08 13:11:36 +01003514 if (qemu_opts_foreach(&qemu_chardev_opts, chardev_init_func, NULL, 1) != 0)
3515 exit(1);
Gautham R Shenoy74db9202010-04-29 17:44:43 +05303516#ifdef CONFIG_LINUX
3517 if (qemu_opts_foreach(&qemu_fsdev_opts, fsdev_init_func, NULL, 1) != 0) {
3518 exit(1);
3519 }
3520#endif
Gerd Hoffmann1a688d32009-12-08 13:11:36 +01003521
ths71e3ceb2006-12-22 02:11:31 +00003522#ifndef _WIN32
ths71e3ceb2006-12-22 02:11:31 +00003523 if (daemonize) {
3524 pid_t pid;
3525
3526 if (pipe(fds) == -1)
3527 exit(1);
3528
3529 pid = fork();
3530 if (pid > 0) {
3531 uint8_t status;
3532 ssize_t len;
3533
3534 close(fds[1]);
3535
3536 again:
ths93815bc2007-03-19 15:58:31 +00003537 len = read(fds[0], &status, 1);
3538 if (len == -1 && (errno == EINTR))
3539 goto again;
3540
3541 if (len != 1)
3542 exit(1);
3543 else if (status == 1) {
Justin M. Forbes850810d2009-10-01 09:42:56 -05003544 fprintf(stderr, "Could not acquire pidfile: %s\n", strerror(errno));
ths93815bc2007-03-19 15:58:31 +00003545 exit(1);
3546 } else
3547 exit(0);
ths71e3ceb2006-12-22 02:11:31 +00003548 } else if (pid < 0)
ths93815bc2007-03-19 15:58:31 +00003549 exit(1);
ths71e3ceb2006-12-22 02:11:31 +00003550
Kevin Wolf40ff6d72009-12-02 12:24:42 +01003551 close(fds[0]);
3552 qemu_set_cloexec(fds[1]);
3553
ths71e3ceb2006-12-22 02:11:31 +00003554 setsid();
3555
3556 pid = fork();
3557 if (pid > 0)
3558 exit(0);
3559 else if (pid < 0)
3560 exit(1);
3561
3562 umask(027);
ths71e3ceb2006-12-22 02:11:31 +00003563
3564 signal(SIGTSTP, SIG_IGN);
3565 signal(SIGTTOU, SIG_IGN);
3566 signal(SIGTTIN, SIG_IGN);
3567 }
Juha Riihimäki099fe232009-12-03 15:56:03 +02003568#endif
ths71e3ceb2006-12-22 02:11:31 +00003569
thsaa26bb22007-03-25 21:33:06 +00003570 if (pid_file && qemu_create_pidfile(pid_file) != 0) {
Juha Riihimäki099fe232009-12-03 15:56:03 +02003571#ifndef _WIN32
ths93815bc2007-03-19 15:58:31 +00003572 if (daemonize) {
3573 uint8_t status = 1;
Kirill A. Shutemovdc330e22010-01-20 00:56:18 +01003574 if (write(fds[1], &status, 1) != 1) {
3575 perror("daemonize. Writing to pipe\n");
3576 }
ths93815bc2007-03-19 15:58:31 +00003577 } else
Juha Riihimäki099fe232009-12-03 15:56:03 +02003578#endif
Justin M. Forbes850810d2009-10-01 09:42:56 -05003579 fprintf(stderr, "Could not acquire pid file: %s\n", strerror(errno));
ths93815bc2007-03-19 15:58:31 +00003580 exit(1);
3581 }
3582
Paolo Bonzini98c85732010-04-19 18:59:30 +00003583 if (kvm_allowed) {
3584 int ret = kvm_init(smp_cpus);
Marcelo Tosatti214910a2009-09-18 02:41:23 -03003585 if (ret < 0) {
Paolo Bonzini98c85732010-04-19 18:59:30 +00003586 if (!kvm_available()) {
3587 printf("KVM not supported for this target\n");
3588 } else {
3589 fprintf(stderr, "failed to initialize KVM: %s\n", strerror(-ret));
3590 }
Marcelo Tosatti214910a2009-09-18 02:41:23 -03003591 exit(1);
3592 }
3593 }
3594
aliguori3fcf7b62009-04-24 18:03:25 +00003595 if (qemu_init_main_loop()) {
3596 fprintf(stderr, "qemu_init_main_loop failed\n");
3597 exit(1);
3598 }
bellarda20dd502003-09-30 21:07:02 +00003599 linux_boot = (kernel_filename != NULL);
balrog6c41b272007-11-17 12:12:29 +00003600
thsf8d39c02008-07-03 10:01:15 +00003601 if (!linux_boot && *kernel_cmdline != '\0') {
3602 fprintf(stderr, "-append only allowed with -kernel option\n");
3603 exit(1);
3604 }
3605
3606 if (!linux_boot && initrd_filename != NULL) {
3607 fprintf(stderr, "-initrd only allowed with -kernel option\n");
3608 exit(1);
3609 }
3610
Filip Navarabf65f532009-07-27 10:02:04 -05003611#ifndef _WIN32
3612 /* Win32 doesn't support line-buffering and requires size >= 2 */
bellardb118d612003-06-30 23:36:21 +00003613 setvbuf(stdout, NULL, _IOLBF, 0);
Filip Navarabf65f532009-07-27 10:02:04 -05003614#endif
ths3b46e622007-09-17 08:09:54 +00003615
aliguori7183b4b2008-11-05 20:40:18 +00003616 if (init_timer_alarm() < 0) {
3617 fprintf(stderr, "could not initialize alarm timer\n");
3618 exit(1);
3619 }
Paolo Bonzini4e3de9e2010-03-10 11:38:48 +01003620 configure_icount(icount_option);
pbrook634fce92006-07-15 17:40:09 +00003621
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01003622 if (net_init_clients() < 0) {
3623 exit(1);
bellard702c6512004-04-02 21:21:32 +00003624 }
bellardf1510b22003-06-25 00:07:40 +00003625
balrogdc72ac12008-11-09 00:04:26 +00003626 /* init the bluetooth world */
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02003627 if (foreach_device_config(DEV_BT, bt_parse))
3628 exit(1);
balrogdc72ac12008-11-09 00:04:26 +00003629
bellard0824d6f2003-06-24 13:42:40 +00003630 /* init the memory */
pbrook94a6b542009-04-11 17:15:54 +00003631 if (ram_size == 0)
3632 ram_size = DEFAULT_RAM_SIZE * 1024 * 1024;
balrog7fb4fdc2008-04-24 17:59:27 +00003633
bellard26a5f132008-05-28 12:30:31 +00003634 /* init the dynamic translator */
3635 cpu_exec_init_all(tb_size * 1024 * 1024);
3636
Markus Armbrustereb852012009-10-27 18:41:44 +01003637 bdrv_init_with_whitelist();
thse4bcb142007-12-02 04:51:10 +00003638
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02003639 blk_mig_init();
3640
Gerd Hoffmannac33f8f2009-12-16 14:25:39 +01003641 if (default_cdrom) {
Gerd Hoffmannaa40fc92009-12-08 13:11:48 +01003642 /* we always create the cdrom drive, even if no disk is there */
3643 drive_add(NULL, CDROM_ALIAS);
Gerd Hoffmannac33f8f2009-12-16 14:25:39 +01003644 }
thse4bcb142007-12-02 04:51:10 +00003645
Gerd Hoffmannac33f8f2009-12-16 14:25:39 +01003646 if (default_floppy) {
Gerd Hoffmannaa40fc92009-12-08 13:11:48 +01003647 /* we always create at least one floppy */
3648 drive_add(NULL, FD_ALIAS, 0);
Gerd Hoffmannac33f8f2009-12-16 14:25:39 +01003649 }
bellardc4b1fcc2004-03-14 21:44:30 +00003650
Gerd Hoffmannac33f8f2009-12-16 14:25:39 +01003651 if (default_sdcard) {
Gerd Hoffmannaa40fc92009-12-08 13:11:48 +01003652 /* we always create one sd slot, even if no card is in it */
3653 drive_add(NULL, SD_ALIAS);
3654 }
balrog9d413d12007-12-04 00:10:34 +00003655
ths96d30e42007-01-07 20:42:14 +00003656 /* open the virtual block devices */
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02003657 if (snapshot)
Gerd Hoffmann7282a032009-07-31 12:25:35 +02003658 qemu_opts_foreach(&qemu_drive_opts, drive_enable_snapshot, NULL, 0);
3659 if (qemu_opts_foreach(&qemu_drive_opts, drive_init_func, machine, 1) != 0)
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02003660 exit(1);
balrog3e3d5812007-04-30 02:09:25 +00003661
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02003662 register_savevm_live("ram", 0, 3, NULL, ram_save_live, NULL,
3663 ram_load, NULL);
bellard8a7ddc32004-03-31 19:00:16 +00003664
aliguori268a3622009-04-21 22:30:27 +00003665 if (nb_numa_nodes > 0) {
3666 int i;
3667
3668 if (nb_numa_nodes > smp_cpus) {
3669 nb_numa_nodes = smp_cpus;
3670 }
3671
3672 /* If no memory size if given for any node, assume the default case
3673 * and distribute the available memory equally across all nodes
3674 */
3675 for (i = 0; i < nb_numa_nodes; i++) {
3676 if (node_mem[i] != 0)
3677 break;
3678 }
3679 if (i == nb_numa_nodes) {
3680 uint64_t usedmem = 0;
3681
3682 /* On Linux, the each node's border has to be 8MB aligned,
3683 * the final node gets the rest.
3684 */
3685 for (i = 0; i < nb_numa_nodes - 1; i++) {
3686 node_mem[i] = (ram_size / nb_numa_nodes) & ~((1 << 23UL) - 1);
3687 usedmem += node_mem[i];
3688 }
3689 node_mem[i] = ram_size - usedmem;
3690 }
3691
3692 for (i = 0; i < nb_numa_nodes; i++) {
3693 if (node_cpumask[i] != 0)
3694 break;
3695 }
3696 /* assigning the VCPUs round-robin is easier to implement, guest OSes
3697 * must cope with this anyway, because there are BIOSes out there in
3698 * real machines which also use this scheme.
3699 */
3700 if (i == nb_numa_nodes) {
3701 for (i = 0; i < smp_cpus; i++) {
3702 node_cpumask[i % nb_numa_nodes] |= 1 << i;
3703 }
3704 }
3705 }
3706
Jan Kiszka157b9312010-04-06 16:55:53 +02003707 if (qemu_opts_foreach(&qemu_mon_opts, mon_init_func, NULL, 1) != 0) {
3708 exit(1);
3709 }
3710
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01003711 if (foreach_device_config(DEV_SERIAL, serial_parse) < 0)
3712 exit(1);
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01003713 if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0)
3714 exit(1);
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01003715 if (foreach_device_config(DEV_VIRTCON, virtcon_parse) < 0)
3716 exit(1);
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08003717 if (foreach_device_config(DEV_DEBUGCON, debugcon_parse) < 0)
3718 exit(1);
aliguori2796dae2009-01-16 20:23:27 +00003719
Paul Brookaae94602009-05-14 22:35:06 +01003720 module_call_init(MODULE_INIT_DEVICE);
3721
Markus Armbrusterff952ba2010-01-29 19:48:57 +01003722 if (qemu_opts_foreach(&qemu_device_opts, device_help_func, NULL, 0) != 0)
3723 exit(0);
3724
Markus Armbruster09aaa162009-08-21 10:31:34 +02003725 if (watchdog) {
3726 i = select_watchdog(watchdog);
3727 if (i > 0)
3728 exit (i == 1 ? 1 : 0);
3729 }
3730
Gerd Hoffmannb6b61142009-07-15 13:48:21 +02003731 if (machine->compat_props) {
Gerd Hoffmann458fb672009-12-08 13:11:33 +01003732 qdev_prop_register_global_list(machine->compat_props);
Gerd Hoffmannb6b61142009-07-15 13:48:21 +02003733 }
Gerd Hoffmannd0fef6f2009-12-08 13:11:34 +01003734 qemu_add_globals();
3735
Paul Brookfbe1b592009-05-13 17:56:25 +01003736 machine->init(ram_size, boot_devices,
aliguori3023f332009-01-16 19:04:14 +00003737 kernel_filename, kernel_cmdline, initrd_filename, cpu_model);
3738
Jan Kiszkaea375f92010-03-01 19:10:30 +01003739 cpu_synchronize_all_post_init();
aliguori268a3622009-04-21 22:30:27 +00003740
Juan Quintela67b3b712009-08-28 19:25:15 +02003741#ifndef _WIN32
3742 /* must be after terminal init, SDL library changes signal handlers */
3743 sighandler_setup();
3744#endif
3745
Blue Swirl87d0a282010-03-27 18:24:45 +00003746 set_numa_modes();
aliguori268a3622009-04-21 22:30:27 +00003747
aliguori6f338c32009-02-11 15:21:54 +00003748 current_machine = machine;
3749
aliguori3023f332009-01-16 19:04:14 +00003750 /* init USB devices */
3751 if (usb_enabled) {
Markus Armbruster07527062009-10-06 12:16:57 +01003752 if (foreach_device_config(DEV_USB, usb_parse) < 0)
3753 exit(1);
aliguori3023f332009-01-16 19:04:14 +00003754 }
3755
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02003756 /* init generic devices */
Gerd Hoffmannf31d07d2009-07-31 12:25:37 +02003757 if (qemu_opts_foreach(&qemu_device_opts, device_init_func, NULL, 1) != 0)
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02003758 exit(1);
3759
Markus Armbruster668680f2010-02-11 14:44:58 +01003760 net_check_clients();
3761
aliguori3023f332009-01-16 19:04:14 +00003762 /* just use the first displaystate for the moment */
Paolo Bonzinib473df62010-02-11 00:29:55 +01003763 ds = get_displaystate();
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003764
3765 if (display_type == DT_DEFAULT) {
Anthony Liguorif92f8af2009-05-20 13:01:02 -05003766#if defined(CONFIG_SDL) || defined(CONFIG_COCOA)
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003767 display_type = DT_SDL;
3768#else
3769 display_type = DT_VNC;
3770 vnc_display = "localhost:0,to=99";
3771 show_vnc_port = 1;
3772#endif
3773 }
3774
3775
3776 switch (display_type) {
3777 case DT_NOGRAPHIC:
3778 break;
3779#if defined(CONFIG_CURSES)
3780 case DT_CURSES:
3781 curses_display_init(ds, full_screen);
3782 break;
3783#endif
bellard5b0753e2005-03-01 21:37:28 +00003784#if defined(CONFIG_SDL)
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003785 case DT_SDL:
3786 sdl_display_init(ds, full_screen, no_frame);
3787 break;
bellard5b0753e2005-03-01 21:37:28 +00003788#elif defined(CONFIG_COCOA)
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003789 case DT_SDL:
3790 cocoa_display_init(ds, full_screen);
3791 break;
bellard313aa562003-08-10 21:52:11 +00003792#endif
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003793 case DT_VNC:
3794 vnc_display_init(ds);
3795 if (vnc_display_open(ds, vnc_display) < 0)
3796 exit(1);
Anthony Liguorif92f8af2009-05-20 13:01:02 -05003797
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003798 if (show_vnc_port) {
3799 printf("VNC server running on `%s'\n", vnc_display_local_addr(ds));
Anthony Liguorif92f8af2009-05-20 13:01:02 -05003800 }
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003801 break;
3802 default:
3803 break;
bellard313aa562003-08-10 21:52:11 +00003804 }
aliguori7d957bd2009-01-15 22:14:11 +00003805 dpy_resize(ds);
aliguori5b08fc12008-08-21 20:08:03 +00003806
aliguori3023f332009-01-16 19:04:14 +00003807 dcl = ds->listeners;
3808 while (dcl != NULL) {
3809 if (dcl->dpy_refresh != NULL) {
3810 ds->gui_timer = qemu_new_timer(rt_clock, gui_update, ds);
3811 qemu_mod_timer(ds->gui_timer, qemu_get_clock(rt_clock));
ths20d8a3e2007-02-18 17:04:49 +00003812 }
aliguori3023f332009-01-16 19:04:14 +00003813 dcl = dcl->next;
bellard82c643f2004-07-14 17:28:13 +00003814 }
aliguori3023f332009-01-16 19:04:14 +00003815
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003816 if (display_type == DT_NOGRAPHIC || display_type == DT_VNC) {
blueswir19043b622009-01-21 19:28:13 +00003817 nographic_timer = qemu_new_timer(rt_clock, nographic_update, NULL);
3818 qemu_mod_timer(nographic_timer, qemu_get_clock(rt_clock));
3819 }
3820
Paolo Bonzinib473df62010-02-11 00:29:55 +01003821 text_consoles_set_display(ds);
aliguori2796dae2009-01-16 20:23:27 +00003822
aliguori59030a82009-04-05 18:43:41 +00003823 if (gdbstub_dev && gdbserver_start(gdbstub_dev) < 0) {
3824 fprintf(stderr, "qemu: could not open gdbserver on device '%s'\n",
3825 gdbstub_dev);
3826 exit(1);
balrog45669e02007-07-02 13:20:17 +00003827 }
balrog45669e02007-07-02 13:20:17 +00003828
Gerd Hoffmann3418bd22009-09-25 21:42:41 +02003829 qdev_machine_creation_done();
3830
Gerd Hoffmann15ff7702009-12-14 16:07:35 +01003831 if (rom_load_all() != 0) {
3832 fprintf(stderr, "rom loading failed\n");
3833 exit(1);
3834 }
Gerd Hoffmann45a50b12009-10-01 16:42:33 +02003835
Juan Quintela504c2942009-11-12 00:39:13 +01003836 qemu_system_reset();
Juan Quintela05f24012009-08-20 19:42:22 +02003837 if (loadvm) {
Markus Armbruster03cd4652010-02-17 16:24:10 +01003838 if (load_vmstate(loadvm) < 0) {
Juan Quintela05f24012009-08-20 19:42:22 +02003839 autostart = 0;
3840 }
3841 }
bellardd63d3072004-10-03 13:29:03 +00003842
Glauber Costa2bb8c102009-07-24 16:20:23 -04003843 if (incoming) {
aliguori5bb79102008-10-13 03:12:02 +00003844 qemu_start_incoming_migration(incoming);
Avi Kivity6b99dad2009-08-09 14:39:20 +03003845 } else if (autostart) {
aliguoric0f4ce72009-03-05 23:01:01 +00003846 vm_start();
Avi Kivity6b99dad2009-08-09 14:39:20 +03003847 }
thsffd843b2006-12-21 19:46:43 +00003848
blueswir1b9e82a52009-04-05 18:03:31 +00003849#ifndef _WIN32
ths71e3ceb2006-12-22 02:11:31 +00003850 if (daemonize) {
3851 uint8_t status = 0;
3852 ssize_t len;
ths71e3ceb2006-12-22 02:11:31 +00003853
3854 again1:
3855 len = write(fds[1], &status, 1);
3856 if (len == -1 && (errno == EINTR))
3857 goto again1;
3858
3859 if (len != 1)
3860 exit(1);
3861
Kirill A. Shutemovdc330e22010-01-20 00:56:18 +01003862 if (chdir("/")) {
3863 perror("not able to chdir to /");
3864 exit(1);
3865 }
Kevin Wolf40ff6d72009-12-02 12:24:42 +01003866 TFR(fd = qemu_open("/dev/null", O_RDWR));
ths71e3ceb2006-12-22 02:11:31 +00003867 if (fd == -1)
3868 exit(1);
aliguori08585322009-02-27 22:09:45 +00003869 }
ths71e3ceb2006-12-22 02:11:31 +00003870
aliguori08585322009-02-27 22:09:45 +00003871 if (run_as) {
3872 pwd = getpwnam(run_as);
3873 if (!pwd) {
3874 fprintf(stderr, "User \"%s\" doesn't exist\n", run_as);
3875 exit(1);
3876 }
3877 }
ths71e3ceb2006-12-22 02:11:31 +00003878
aliguori08585322009-02-27 22:09:45 +00003879 if (chroot_dir) {
3880 if (chroot(chroot_dir) < 0) {
3881 fprintf(stderr, "chroot failed\n");
3882 exit(1);
3883 }
Kirill A. Shutemovdc330e22010-01-20 00:56:18 +01003884 if (chdir("/")) {
3885 perror("not able to chdir to /");
3886 exit(1);
3887 }
aliguori08585322009-02-27 22:09:45 +00003888 }
3889
3890 if (run_as) {
3891 if (setgid(pwd->pw_gid) < 0) {
3892 fprintf(stderr, "Failed to setgid(%d)\n", pwd->pw_gid);
3893 exit(1);
3894 }
3895 if (setuid(pwd->pw_uid) < 0) {
3896 fprintf(stderr, "Failed to setuid(%d)\n", pwd->pw_uid);
3897 exit(1);
3898 }
3899 if (setuid(0) != -1) {
3900 fprintf(stderr, "Dropping privileges failed\n");
3901 exit(1);
3902 }
3903 }
aliguori08585322009-02-27 22:09:45 +00003904
3905 if (daemonize) {
3906 dup2(fd, 0);
3907 dup2(fd, 1);
3908 dup2(fd, 2);
3909
3910 close(fd);
ths71e3ceb2006-12-22 02:11:31 +00003911 }
blueswir1b9e82a52009-04-05 18:03:31 +00003912#endif
ths71e3ceb2006-12-22 02:11:31 +00003913
bellard8a7ddc32004-03-31 19:00:16 +00003914 main_loop();
bellard40c3bac2004-04-04 12:56:28 +00003915 quit_timers();
aliguori63a01ef2008-10-31 19:10:00 +00003916 net_cleanup();
thsb46a8902007-10-21 23:20:45 +00003917
bellard0824d6f2003-06-24 13:42:40 +00003918 return 0;
3919}