blob: fe2dd6fa917e14802a5c63c357f538db656e422f [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"
blueswir1511d2b12009-03-07 15:32:56 +0000152
bellard0824d6f2003-06-24 13:42:40 +0000153#include "disas.h"
bellardfc01f7e2003-06-30 10:03:06 +0000154
blueswir1511d2b12009-03-07 15:32:56 +0000155#include "qemu_socket.h"
156
Jan Kiszkad918f232009-06-24 14:42:30 +0200157#include "slirp/libslirp.h"
blueswir1511d2b12009-03-07 15:32:56 +0000158
Blue Swirl72cf2d42009-09-12 07:36:22 +0000159#include "qemu-queue.h"
Blue Swirl296af7c2010-03-29 19:23:50 +0000160#include "cpus.h"
Blue Swirlad960902010-03-29 19:23:52 +0000161#include "arch_init.h"
Blue Swirl72cf2d42009-09-12 07:36:22 +0000162
blueswir19dc63a12008-10-04 07:25:46 +0000163//#define DEBUG_NET
164//#define DEBUG_SLIRP
bellard330d0412003-07-26 18:11:40 +0000165
bellard1bfe8562004-07-08 21:17:50 +0000166#define DEFAULT_RAM_SIZE 128
bellard313aa562003-08-10 21:52:11 +0000167
Amit Shah98b19252010-01-20 00:36:52 +0530168#define MAX_VIRTIO_CONSOLES 1
169
Paul Brook5cea8592009-05-30 00:52:44 +0100170static const char *data_dir;
j_mayer1192dad2007-10-05 13:08:35 +0000171const char *bios_name = NULL;
thse4bcb142007-12-02 04:51:10 +0000172/* Note: drives_table[MAX_DRIVES] is a dummy block driver if none available
bellardfaea38e2006-08-05 21:31:00 +0000173 to store the VM snapshots */
Blue Swirl72cf2d42009-09-12 07:36:22 +0000174struct drivelist drives = QTAILQ_HEAD_INITIALIZER(drives);
175struct driveoptlist driveopts = QTAILQ_HEAD_INITIALIZER(driveopts);
malccb5a7aa2008-09-28 00:42:12 +0000176enum vga_retrace_method vga_retrace_method = VGA_RETRACE_DUMB;
Anthony Liguori993fbfd2009-05-21 16:54:00 -0500177DisplayType display_type = DT_DEFAULT;
bellard3d11d0e2004-12-12 16:56:30 +0000178const char* keyboard_layout = NULL;
Anthony Liguoric227f092009-10-01 16:12:16 -0500179ram_addr_t ram_size;
Marcelo Tosattic9027602010-03-01 20:25:08 -0300180const char *mem_path = NULL;
181#ifdef MAP_POPULATE
182int mem_prealloc = 0; /* force preallocation of physical target memory */
183#endif
bellardc4b1fcc2004-03-14 21:44:30 +0000184int nb_nics;
bellard7c9d8e02005-11-15 22:16:05 +0000185NICInfo nd_table[MAX_NICS];
bellard8a7ddc32004-03-31 19:00:16 +0000186int vm_running;
Paolo Bonzinid399f672009-07-27 23:17:51 +0200187int autostart;
balrogf6503052008-02-17 11:42:19 +0000188static int rtc_utc = 1;
189static int rtc_date_offset = -1; /* -1 means no change */
Jan Kiszka68752042009-09-15 13:36:04 +0200190QEMUClock *rtc_clock;
Gerd Hoffmann64465292009-12-08 13:11:45 +0100191int vga_interface_type = VGA_NONE;
blueswir1dbed7e42008-10-01 19:38:09 +0000192static int full_screen = 0;
blueswir1634a21f2008-11-16 11:34:07 +0000193#ifdef CONFIG_SDL
blueswir1dbed7e42008-10-01 19:38:09 +0000194static int no_frame = 0;
blueswir1634a21f2008-11-16 11:34:07 +0000195#endif
ths667acca2006-12-11 02:08:05 +0000196int no_quit = 0;
bellard8d11df92004-08-24 21:13:40 +0000197CharDriverState *serial_hds[MAX_SERIAL_PORTS];
bellard6508fe52005-01-15 12:02:56 +0000198CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
aliguori9ede2fd2009-01-15 20:05:25 +0000199CharDriverState *virtcon_hds[MAX_VIRTIO_CONSOLES];
bellarda09db212005-04-30 16:10:35 +0000200int win2k_install_hack = 0;
aliguori73822ec2009-01-15 20:11:34 +0000201int rtc_td_hack = 0;
bellardbb36d472005-11-05 14:22:28 +0000202int usb_enabled = 0;
aurel321b530a62009-04-05 20:08:59 +0000203int singlestep = 0;
bellard6a00d602005-11-21 23:25:50 +0000204int smp_cpus = 1;
Jes Sorensen6be68d72009-07-23 17:03:42 +0200205int max_cpus = 0;
Andre Przywaradc6b1c02009-08-19 15:42:40 +0200206int smp_cores = 1;
207int smp_threads = 1;
ths73fc9742006-12-22 02:09:07 +0000208const char *vnc_display;
bellard6515b202006-05-03 22:02:44 +0000209int acpi_enabled = 1;
aliguori16b29ae2008-12-17 23:28:44 +0000210int no_hpet = 0;
bellard52ca8d62006-06-14 16:03:05 +0000211int fd_bootchk = 1;
bellardd1beab82006-10-02 19:44:22 +0000212int no_reboot = 0;
aurel32b2f76162008-04-11 21:35:52 +0000213int no_shutdown = 0;
balrog9467cd42007-05-01 01:34:14 +0000214int cursor_hide = 1;
balroga171fe32007-04-30 01:48:07 +0000215int graphic_rotate = 0;
Jes Sorensen6b35e7b2009-08-06 16:25:50 +0200216uint8_t irq0override = 1;
blueswir1b9e82a52009-04-05 18:03:31 +0000217#ifndef _WIN32
ths71e3ceb2006-12-22 02:11:31 +0000218int daemonize = 0;
blueswir1b9e82a52009-04-05 18:03:31 +0000219#endif
Markus Armbruster09aaa162009-08-21 10:31:34 +0200220const char *watchdog;
ths9ae02552007-01-05 17:39:04 +0000221const char *option_rom[MAX_OPTION_ROMS];
222int nb_option_roms;
pbrook8e716212007-01-20 17:12:09 +0000223int semihosting_enabled = 0;
balrog2b8f2d42007-07-27 22:08:46 +0000224int old_param = 0;
thsc35734b2007-03-19 15:17:08 +0000225const char *qemu_name;
ths3780e192007-06-21 21:08:02 +0000226int alt_grab = 0;
Dustin Kirkland0ca9f8a2009-09-17 15:48:04 -0500227int ctrl_grab = 0;
blueswir166508602007-05-01 14:16:52 +0000228unsigned int nb_prom_envs = 0;
229const char *prom_envs[MAX_PROM_ENVS];
Jan Kiszka95387492009-07-02 00:19:02 +0200230int boot_menu;
bellard0824d6f2003-06-24 13:42:40 +0000231
aliguori268a3622009-04-21 22:30:27 +0000232int nb_numa_nodes;
233uint64_t node_mem[MAX_NODES];
234uint64_t node_cpumask[MAX_NODES];
235
blueswir19043b622009-01-21 19:28:13 +0000236static QEMUTimer *nographic_timer;
balrogee5605e2007-12-03 03:01:40 +0000237
blueswir18fcb1b92008-09-18 18:29:08 +0000238uint8_t qemu_uuid[16];
239
Jan Kiszka76e30d02009-07-02 00:19:02 +0200240static QEMUBootSetHandler *boot_set_handler;
241static void *boot_set_opaque;
242
Blue Swirld745bef2010-03-29 19:23:49 +0000243int kvm_allowed = 0;
244uint32_t xen_domid;
245enum xen_mode xen_mode = XEN_EMULATE;
246
Gerd Hoffmann998bbd72009-12-08 13:11:41 +0100247static int default_serial = 1;
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +0100248static int default_parallel = 1;
Gerd Hoffmann986c5f72009-12-08 13:11:54 +0100249static int default_virtcon = 1;
Gerd Hoffmannabdeed02009-12-08 13:11:43 +0100250static int default_monitor = 1;
Gerd Hoffmann64465292009-12-08 13:11:45 +0100251static int default_vga = 1;
Gerd Hoffmannac33f8f2009-12-16 14:25:39 +0100252static int default_floppy = 1;
253static int default_cdrom = 1;
254static int default_sdcard = 1;
Gerd Hoffmann998bbd72009-12-08 13:11:41 +0100255
256static struct {
257 const char *driver;
258 int *flag;
259} default_list[] = {
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +0100260 { .driver = "isa-serial", .flag = &default_serial },
261 { .driver = "isa-parallel", .flag = &default_parallel },
Gerd Hoffmannd8bcbab2009-12-16 14:25:40 +0100262 { .driver = "isa-fdc", .flag = &default_floppy },
263 { .driver = "ide-drive", .flag = &default_cdrom },
Amit Shah392ecf52010-01-21 16:19:23 +0530264 { .driver = "virtio-serial-pci", .flag = &default_virtcon },
265 { .driver = "virtio-serial-s390", .flag = &default_virtcon },
266 { .driver = "virtio-serial", .flag = &default_virtcon },
Gerd Hoffmann64465292009-12-08 13:11:45 +0100267 { .driver = "VGA", .flag = &default_vga },
Gerd Hoffmann69fd02e2009-12-16 13:35:19 +0100268 { .driver = "cirrus-vga", .flag = &default_vga },
269 { .driver = "vmware-svga", .flag = &default_vga },
Gerd Hoffmann998bbd72009-12-08 13:11:41 +0100270};
271
272static int default_driver_check(QemuOpts *opts, void *opaque)
273{
274 const char *driver = qemu_opt_get(opts, "driver");
275 int i;
276
277 if (!driver)
278 return 0;
279 for (i = 0; i < ARRAY_SIZE(default_list); i++) {
280 if (strcmp(default_list[i].driver, driver) != 0)
281 continue;
282 *(default_list[i].flag) = 0;
283 }
284 return 0;
285}
286
bellard0824d6f2003-06-24 13:42:40 +0000287/***********************************************************/
bellard0824d6f2003-06-24 13:42:40 +0000288
Andi Kleen18894652009-07-02 09:34:17 +0200289static void set_proc_name(const char *s)
290{
Nathan Froyd6ca8d0f2009-08-03 07:32:12 -0700291#if defined(__linux__) && defined(PR_SET_NAME)
Andi Kleen18894652009-07-02 09:34:17 +0200292 char name[16];
293 if (!s)
294 return;
295 name[sizeof(name) - 1] = 0;
296 strncpy(name, s, sizeof(name));
297 /* Could rewrite argv[0] too, but that's a bit more complicated.
298 This simple way is enough for `top'. */
299 prctl(PR_SET_NAME, name);
300#endif
301}
aliguoridf751fa2008-12-04 20:19:35 +0000302
bellard8a7ddc32004-03-31 19:00:16 +0000303/***********************************************************/
Paolo Bonzini8f0056b2010-01-13 14:05:34 +0100304/* real time host monotonic timer */
bellard09b26c52006-04-12 21:09:08 +0000305
bellard87858c82003-06-27 12:01:39 +0000306/* compute with 96 bit intermediate result: (a*b)/c */
bellard80cabfa2004-03-14 12:20:30 +0000307uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c)
bellard87858c82003-06-27 12:01:39 +0000308{
309 union {
310 uint64_t ll;
311 struct {
Juan Quintelae2542fe2009-07-27 16:13:06 +0200312#ifdef HOST_WORDS_BIGENDIAN
bellard87858c82003-06-27 12:01:39 +0000313 uint32_t high, low;
314#else
315 uint32_t low, high;
ths3b46e622007-09-17 08:09:54 +0000316#endif
bellard87858c82003-06-27 12:01:39 +0000317 } l;
318 } u, res;
319 uint64_t rl, rh;
320
321 u.ll = a;
322 rl = (uint64_t)u.l.low * (uint64_t)b;
323 rh = (uint64_t)u.l.high * (uint64_t)b;
324 rh += (rl >> 32);
325 res.l.high = rh / c;
326 res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c;
327 return res.ll;
328}
329
bellardc4b1fcc2004-03-14 21:44:30 +0000330/***********************************************************/
balrogf6503052008-02-17 11:42:19 +0000331/* host time/date access */
332void qemu_get_timedate(struct tm *tm, int offset)
333{
334 time_t ti;
335 struct tm *ret;
336
337 time(&ti);
338 ti += offset;
339 if (rtc_date_offset == -1) {
340 if (rtc_utc)
341 ret = gmtime(&ti);
342 else
343 ret = localtime(&ti);
344 } else {
345 ti -= rtc_date_offset;
346 ret = gmtime(&ti);
347 }
348
349 memcpy(tm, ret, sizeof(struct tm));
350}
351
352int qemu_timedate_diff(struct tm *tm)
353{
354 time_t seconds;
355
356 if (rtc_date_offset == -1)
357 if (rtc_utc)
358 seconds = mktimegm(tm);
359 else
360 seconds = mktime(tm);
361 else
362 seconds = mktimegm(tm) + rtc_date_offset;
363
364 return seconds - time(NULL);
365}
366
Luiz Capitulino80cd3472010-02-25 12:11:44 -0300367void rtc_change_mon_event(struct tm *tm)
368{
369 QObject *data;
370
371 data = qobject_from_jsonf("{ 'offset': %d }", qemu_timedate_diff(tm));
372 monitor_protocol_event(QEVENT_RTC_CHANGE, data);
373 qobject_decref(data);
374}
375
Jan Kiszka1ed2fc12009-09-15 13:36:04 +0200376static void configure_rtc_date_offset(const char *startdate, int legacy)
377{
378 time_t rtc_start_date;
379 struct tm tm;
380
381 if (!strcmp(startdate, "now") && legacy) {
382 rtc_date_offset = -1;
383 } else {
384 if (sscanf(startdate, "%d-%d-%dT%d:%d:%d",
385 &tm.tm_year,
386 &tm.tm_mon,
387 &tm.tm_mday,
388 &tm.tm_hour,
389 &tm.tm_min,
390 &tm.tm_sec) == 6) {
391 /* OK */
392 } else if (sscanf(startdate, "%d-%d-%d",
393 &tm.tm_year,
394 &tm.tm_mon,
395 &tm.tm_mday) == 3) {
396 tm.tm_hour = 0;
397 tm.tm_min = 0;
398 tm.tm_sec = 0;
399 } else {
400 goto date_fail;
401 }
402 tm.tm_year -= 1900;
403 tm.tm_mon--;
404 rtc_start_date = mktimegm(&tm);
405 if (rtc_start_date == -1) {
406 date_fail:
407 fprintf(stderr, "Invalid date format. Valid formats are:\n"
408 "'2006-06-17T16:01:21' or '2006-06-17'\n");
409 exit(1);
410 }
411 rtc_date_offset = time(NULL) - rtc_start_date;
412 }
413}
414
415static void configure_rtc(QemuOpts *opts)
416{
417 const char *value;
418
419 value = qemu_opt_get(opts, "base");
420 if (value) {
421 if (!strcmp(value, "utc")) {
422 rtc_utc = 1;
423 } else if (!strcmp(value, "localtime")) {
424 rtc_utc = 0;
425 } else {
426 configure_rtc_date_offset(value, 0);
427 }
428 }
Jan Kiszka68752042009-09-15 13:36:04 +0200429 value = qemu_opt_get(opts, "clock");
430 if (value) {
431 if (!strcmp(value, "host")) {
432 rtc_clock = host_clock;
433 } else if (!strcmp(value, "vm")) {
434 rtc_clock = vm_clock;
435 } else {
436 fprintf(stderr, "qemu: invalid option value '%s'\n", value);
437 exit(1);
438 }
439 }
Jan Kiszka1ed2fc12009-09-15 13:36:04 +0200440 value = qemu_opt_get(opts, "driftfix");
441 if (value) {
Blue Swirl7e4c0332010-03-27 21:33:46 +0000442 if (!strcmp(value, "slew")) {
Jan Kiszka1ed2fc12009-09-15 13:36:04 +0200443 rtc_td_hack = 1;
Blue Swirl7e4c0332010-03-27 21:33:46 +0000444 } else if (!strcmp(value, "none")) {
Jan Kiszka1ed2fc12009-09-15 13:36:04 +0200445 rtc_td_hack = 0;
446 } else {
447 fprintf(stderr, "qemu: invalid option value '%s'\n", value);
448 exit(1);
449 }
450 }
Jan Kiszka1ed2fc12009-09-15 13:36:04 +0200451}
452
balrog1ae26a12008-09-28 23:19:47 +0000453/***********************************************************/
454/* Bluetooth support */
455static int nb_hcis;
456static int cur_hci;
457static struct HCIInfo *hci_table[MAX_NICS];
balrogdc72ac12008-11-09 00:04:26 +0000458
balrog1ae26a12008-09-28 23:19:47 +0000459static struct bt_vlan_s {
460 struct bt_scatternet_s net;
461 int id;
462 struct bt_vlan_s *next;
463} *first_bt_vlan;
464
465/* find or alloc a new bluetooth "VLAN" */
blueswir1674bb262008-09-30 18:18:27 +0000466static struct bt_scatternet_s *qemu_find_bt_vlan(int id)
balrog1ae26a12008-09-28 23:19:47 +0000467{
468 struct bt_vlan_s **pvlan, *vlan;
469 for (vlan = first_bt_vlan; vlan != NULL; vlan = vlan->next) {
470 if (vlan->id == id)
471 return &vlan->net;
472 }
473 vlan = qemu_mallocz(sizeof(struct bt_vlan_s));
474 vlan->id = id;
475 pvlan = &first_bt_vlan;
476 while (*pvlan != NULL)
477 pvlan = &(*pvlan)->next;
478 *pvlan = vlan;
479 return &vlan->net;
480}
481
482static void null_hci_send(struct HCIInfo *hci, const uint8_t *data, int len)
483{
484}
485
486static int null_hci_addr_set(struct HCIInfo *hci, const uint8_t *bd_addr)
487{
488 return -ENOTSUP;
489}
490
491static struct HCIInfo null_hci = {
492 .cmd_send = null_hci_send,
493 .sco_send = null_hci_send,
494 .acl_send = null_hci_send,
495 .bdaddr_set = null_hci_addr_set,
496};
497
498struct HCIInfo *qemu_next_hci(void)
499{
500 if (cur_hci == nb_hcis)
501 return &null_hci;
502
503 return hci_table[cur_hci++];
504}
505
balrogdc72ac12008-11-09 00:04:26 +0000506static struct HCIInfo *hci_init(const char *str)
507{
508 char *endp;
509 struct bt_scatternet_s *vlan = 0;
510
511 if (!strcmp(str, "null"))
512 /* null */
513 return &null_hci;
514 else if (!strncmp(str, "host", 4) && (str[4] == '\0' || str[4] == ':'))
515 /* host[:hciN] */
516 return bt_host_hci(str[4] ? str + 5 : "hci0");
517 else if (!strncmp(str, "hci", 3)) {
518 /* hci[,vlan=n] */
519 if (str[3]) {
520 if (!strncmp(str + 3, ",vlan=", 6)) {
521 vlan = qemu_find_bt_vlan(strtol(str + 9, &endp, 0));
522 if (*endp)
523 vlan = 0;
524 }
525 } else
526 vlan = qemu_find_bt_vlan(0);
527 if (vlan)
528 return bt_new_hci(vlan);
529 }
530
531 fprintf(stderr, "qemu: Unknown bluetooth HCI `%s'.\n", str);
532
533 return 0;
534}
535
536static int bt_hci_parse(const char *str)
537{
538 struct HCIInfo *hci;
Anthony Liguoric227f092009-10-01 16:12:16 -0500539 bdaddr_t bdaddr;
balrogdc72ac12008-11-09 00:04:26 +0000540
541 if (nb_hcis >= MAX_NICS) {
542 fprintf(stderr, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS);
543 return -1;
544 }
545
546 hci = hci_init(str);
547 if (!hci)
548 return -1;
549
550 bdaddr.b[0] = 0x52;
551 bdaddr.b[1] = 0x54;
552 bdaddr.b[2] = 0x00;
553 bdaddr.b[3] = 0x12;
554 bdaddr.b[4] = 0x34;
555 bdaddr.b[5] = 0x56 + nb_hcis;
556 hci->bdaddr_set(hci, bdaddr.b);
557
558 hci_table[nb_hcis++] = hci;
559
560 return 0;
561}
562
563static void bt_vhci_add(int vlan_id)
564{
565 struct bt_scatternet_s *vlan = qemu_find_bt_vlan(vlan_id);
566
567 if (!vlan->slave)
568 fprintf(stderr, "qemu: warning: adding a VHCI to "
569 "an empty scatternet %i\n", vlan_id);
570
571 bt_vhci_init(bt_new_hci(vlan));
572}
573
574static struct bt_device_s *bt_device_add(const char *opt)
575{
576 struct bt_scatternet_s *vlan;
577 int vlan_id = 0;
578 char *endp = strstr(opt, ",vlan=");
579 int len = (endp ? endp - opt : strlen(opt)) + 1;
580 char devname[10];
581
582 pstrcpy(devname, MIN(sizeof(devname), len), opt);
583
584 if (endp) {
585 vlan_id = strtol(endp + 6, &endp, 0);
586 if (*endp) {
587 fprintf(stderr, "qemu: unrecognised bluetooth vlan Id\n");
588 return 0;
589 }
590 }
591
592 vlan = qemu_find_bt_vlan(vlan_id);
593
594 if (!vlan->slave)
595 fprintf(stderr, "qemu: warning: adding a slave device to "
596 "an empty scatternet %i\n", vlan_id);
597
598 if (!strcmp(devname, "keyboard"))
599 return bt_keyboard_init(vlan);
600
601 fprintf(stderr, "qemu: unsupported bluetooth device `%s'\n", devname);
602 return 0;
603}
604
605static int bt_parse(const char *opt)
606{
607 const char *endp, *p;
608 int vlan;
609
610 if (strstart(opt, "hci", &endp)) {
611 if (!*endp || *endp == ',') {
612 if (*endp)
613 if (!strstart(endp, ",vlan=", 0))
614 opt = endp + 1;
615
616 return bt_hci_parse(opt);
617 }
618 } else if (strstart(opt, "vhci", &endp)) {
619 if (!*endp || *endp == ',') {
620 if (*endp) {
621 if (strstart(endp, ",vlan=", &p)) {
622 vlan = strtol(p, (char **) &endp, 0);
623 if (*endp) {
624 fprintf(stderr, "qemu: bad scatternet '%s'\n", p);
625 return 1;
626 }
627 } else {
628 fprintf(stderr, "qemu: bad parameter '%s'\n", endp + 1);
629 return 1;
630 }
631 } else
632 vlan = 0;
633
634 bt_vhci_add(vlan);
635 return 0;
636 }
637 } else if (strstart(opt, "device:", &endp))
638 return !bt_device_add(endp);
639
640 fprintf(stderr, "qemu: bad bluetooth parameter '%s'\n", opt);
641 return 1;
642}
643
balrog1ae26a12008-09-28 23:19:47 +0000644/***********************************************************/
645/* QEMU Block devices */
646
balrog609497a2008-01-14 02:56:53 +0000647#define HD_ALIAS "index=%d,media=disk"
thse4bcb142007-12-02 04:51:10 +0000648#define CDROM_ALIAS "index=2,media=cdrom"
thse4bcb142007-12-02 04:51:10 +0000649#define FD_ALIAS "index=%d,if=floppy"
balrog609497a2008-01-14 02:56:53 +0000650#define PFLASH_ALIAS "if=pflash"
651#define MTD_ALIAS "if=mtd"
balrog9d413d12007-12-04 00:10:34 +0000652#define SD_ALIAS "index=0,if=sd"
thse4bcb142007-12-02 04:51:10 +0000653
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200654QemuOpts *drive_add(const char *file, const char *fmt, ...)
thse4bcb142007-12-02 04:51:10 +0000655{
656 va_list ap;
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200657 char optstr[1024];
658 QemuOpts *opts;
thse4bcb142007-12-02 04:51:10 +0000659
thse4bcb142007-12-02 04:51:10 +0000660 va_start(ap, fmt);
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200661 vsnprintf(optstr, sizeof(optstr), fmt, ap);
thse4bcb142007-12-02 04:51:10 +0000662 va_end(ap);
663
Markus Armbruster8212c642010-02-10 19:52:18 +0100664 opts = qemu_opts_parse(&qemu_drive_opts, optstr, 0);
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200665 if (!opts) {
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200666 return NULL;
667 }
668 if (file)
669 qemu_opt_set(opts, "file", file);
670 return opts;
aliguorib01b1112009-02-11 15:20:20 +0000671}
672
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200673DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit)
thse4bcb142007-12-02 04:51:10 +0000674{
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200675 DriveInfo *dinfo;
thse4bcb142007-12-02 04:51:10 +0000676
677 /* seek interface, bus and unit */
678
Blue Swirl72cf2d42009-09-12 07:36:22 +0000679 QTAILQ_FOREACH(dinfo, &drives, next) {
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200680 if (dinfo->type == type &&
681 dinfo->bus == bus &&
682 dinfo->unit == unit)
683 return dinfo;
684 }
thse4bcb142007-12-02 04:51:10 +0000685
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200686 return NULL;
thse4bcb142007-12-02 04:51:10 +0000687}
688
Gerd Hoffmann2e810b32009-07-31 12:25:38 +0200689DriveInfo *drive_get_by_id(const char *id)
Gerd Hoffmann1dae12e2009-07-22 16:42:58 +0200690{
691 DriveInfo *dinfo;
692
Blue Swirl72cf2d42009-09-12 07:36:22 +0000693 QTAILQ_FOREACH(dinfo, &drives, next) {
Gerd Hoffmann1dae12e2009-07-22 16:42:58 +0200694 if (strcmp(id, dinfo->id))
695 continue;
696 return dinfo;
697 }
698 return NULL;
699}
700
thsf60d39b2007-12-17 03:55:57 +0000701int drive_get_max_bus(BlockInterfaceType type)
thse4bcb142007-12-02 04:51:10 +0000702{
703 int max_bus;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200704 DriveInfo *dinfo;
thse4bcb142007-12-02 04:51:10 +0000705
706 max_bus = -1;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000707 QTAILQ_FOREACH(dinfo, &drives, next) {
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200708 if(dinfo->type == type &&
709 dinfo->bus > max_bus)
710 max_bus = dinfo->bus;
thse4bcb142007-12-02 04:51:10 +0000711 }
712 return max_bus;
713}
714
aliguorifa879c62009-01-07 17:32:33 +0000715const char *drive_get_serial(BlockDriverState *bdrv)
716{
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200717 DriveInfo *dinfo;
aliguorifa879c62009-01-07 17:32:33 +0000718
Blue Swirl72cf2d42009-09-12 07:36:22 +0000719 QTAILQ_FOREACH(dinfo, &drives, next) {
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200720 if (dinfo->bdrv == bdrv)
721 return dinfo->serial;
722 }
aliguorifa879c62009-01-07 17:32:33 +0000723
724 return "\0";
725}
726
Kevin Wolff7850092009-11-27 13:25:36 +0100727BlockInterfaceErrorAction drive_get_on_error(
728 BlockDriverState *bdrv, int is_read)
aliguori428c5702009-01-21 18:59:04 +0000729{
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200730 DriveInfo *dinfo;
aliguori428c5702009-01-21 18:59:04 +0000731
Blue Swirl72cf2d42009-09-12 07:36:22 +0000732 QTAILQ_FOREACH(dinfo, &drives, next) {
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200733 if (dinfo->bdrv == bdrv)
Kevin Wolfe9b2e812009-11-27 13:25:37 +0100734 return is_read ? dinfo->on_read_error : dinfo->on_write_error;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200735 }
aliguori428c5702009-01-21 18:59:04 +0000736
Kevin Wolfe9b2e812009-11-27 13:25:37 +0100737 return is_read ? BLOCK_ERR_REPORT : BLOCK_ERR_STOP_ENOSPC;
aliguori428c5702009-01-21 18:59:04 +0000738}
739
aurel32a1620fa2008-04-29 05:58:01 +0000740static void bdrv_format_print(void *opaque, const char *name)
741{
742 fprintf(stderr, " %s", name);
743}
744
Gerd Hoffmann56a14932009-09-25 21:42:46 +0200745void drive_uninit(DriveInfo *dinfo)
aliguorib01b1112009-02-11 15:20:20 +0000746{
Gerd Hoffmann56a14932009-09-25 21:42:46 +0200747 qemu_opts_del(dinfo->opts);
748 bdrv_delete(dinfo->bdrv);
749 QTAILQ_REMOVE(&drives, dinfo, next);
750 qemu_free(dinfo);
aliguorib01b1112009-02-11 15:20:20 +0000751}
752
Kevin Wolfe9b2e812009-11-27 13:25:37 +0100753static int parse_block_error_action(const char *buf, int is_read)
754{
755 if (!strcmp(buf, "ignore")) {
756 return BLOCK_ERR_IGNORE;
757 } else if (!is_read && !strcmp(buf, "enospc")) {
758 return BLOCK_ERR_STOP_ENOSPC;
759 } else if (!strcmp(buf, "stop")) {
760 return BLOCK_ERR_STOP_ANY;
761 } else if (!strcmp(buf, "report")) {
762 return BLOCK_ERR_REPORT;
763 } else {
764 fprintf(stderr, "qemu: '%s' invalid %s error action\n",
765 buf, is_read ? "read" : "write");
766 return -1;
767 }
768}
769
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200770DriveInfo *drive_init(QemuOpts *opts, void *opaque,
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200771 int *fatal_error)
thse4bcb142007-12-02 04:51:10 +0000772{
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200773 const char *buf;
774 const char *file = NULL;
balrogc8522bd2007-12-06 22:11:20 +0000775 char devname[128];
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200776 const char *serial;
balrogc8522bd2007-12-06 22:11:20 +0000777 const char *mediastr = "";
thsf60d39b2007-12-17 03:55:57 +0000778 BlockInterfaceType type;
thse4bcb142007-12-02 04:51:10 +0000779 enum { MEDIA_DISK, MEDIA_CDROM } media;
780 int bus_id, unit_id;
781 int cyls, heads, secs, translation;
aurel321e72d3b2008-04-28 20:26:45 +0000782 BlockDriver *drv = NULL;
aliguori4d73cd32009-02-11 15:20:46 +0000783 QEMUMachine *machine = opaque;
thse4bcb142007-12-02 04:51:10 +0000784 int max_devs;
785 int index;
balrog33f00272007-12-24 14:33:24 +0000786 int cache;
Christoph Hellwig5c6c3a62009-08-20 16:58:35 +0200787 int aio = 0;
Naphtali Sprei59f26892009-10-26 16:25:16 +0200788 int ro = 0;
Kevin Wolfe9b2e812009-11-27 13:25:37 +0100789 int bdrv_flags;
790 int on_read_error, on_write_error;
Markus Armbrusterc2cc47a2009-06-18 15:14:10 +0200791 const char *devaddr;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200792 DriveInfo *dinfo;
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +0200793 int snapshot = 0;
794
Gerd Hoffmann751c6a12009-07-22 16:42:57 +0200795 *fatal_error = 1;
thse4bcb142007-12-02 04:51:10 +0000796
thse4bcb142007-12-02 04:51:10 +0000797 translation = BIOS_ATA_TRANSLATION_AUTO;
Kevin Wolf0aa217e2009-06-30 13:06:04 +0200798 cache = 1;
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) {
aliguori9f7965c2008-10-14 14:42:54 +0000912 if (!strcmp(buf, "off") || !strcmp(buf, "none"))
balrog33f00272007-12-24 14:33:24 +0000913 cache = 0;
aliguori9f7965c2008-10-14 14:42:54 +0000914 else if (!strcmp(buf, "writethrough"))
balrog33f00272007-12-24 14:33:24 +0000915 cache = 1;
aliguori9f7965c2008-10-14 14:42:54 +0000916 else if (!strcmp(buf, "writeback"))
917 cache = 2;
balrog33f00272007-12-24 14:33:24 +0000918 else {
919 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) {
926 if (!strcmp(buf, "threads"))
927 aio = 0;
928 else if (!strcmp(buf, "native"))
929 aio = 1;
930 else {
931 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 }
balrog33f00272007-12-24 14:33:24 +00001104 bdrv_flags = 0;
aliguori9f7965c2008-10-14 14:42:54 +00001105 if (snapshot) {
balrog33f00272007-12-24 14:33:24 +00001106 bdrv_flags |= BDRV_O_SNAPSHOT;
aliguori9f7965c2008-10-14 14:42:54 +00001107 cache = 2; /* always use write-back with snapshot */
1108 }
1109 if (cache == 0) /* no caching */
1110 bdrv_flags |= BDRV_O_NOCACHE;
1111 else if (cache == 2) /* write-back */
1112 bdrv_flags |= BDRV_O_CACHE_WB;
Christoph Hellwig5c6c3a62009-08-20 16:58:35 +02001113
1114 if (aio == 1) {
1115 bdrv_flags |= BDRV_O_NATIVE_AIO;
1116 } else {
1117 bdrv_flags &= ~BDRV_O_NATIVE_AIO;
1118 }
1119
Naphtali Sprei2db7ad52010-03-23 12:17:16 +02001120 if (media == MEDIA_CDROM) {
1121 /* CDROM is fine for any interface, don't check. */
1122 ro = 1;
1123 } else if (ro == 1) {
Naphtali Spreif5edb012010-01-17 16:48:13 +02001124 if (type != IF_SCSI && type != IF_VIRTIO && type != IF_FLOPPY) {
1125 fprintf(stderr, "qemu: readonly flag not supported for drive with this interface\n");
Naphtali Sprei59f26892009-10-26 16:25:16 +02001126 return NULL;
1127 }
Naphtali Sprei59f26892009-10-26 16:25:16 +02001128 }
Naphtali Sprei2db7ad52010-03-23 12:17:16 +02001129
Naphtali Spreif5edb012010-01-17 16:48:13 +02001130 bdrv_flags |= ro ? 0 : BDRV_O_RDWR;
Naphtali Sprei59f26892009-10-26 16:25:16 +02001131
Gerd Hoffmann1dae12e2009-07-22 16:42:58 +02001132 if (bdrv_open2(dinfo->bdrv, file, bdrv_flags, drv) < 0) {
Justin M. Forbes850810d2009-10-01 09:42:56 -05001133 fprintf(stderr, "qemu: could not open disk image %s: %s\n",
1134 file, strerror(errno));
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001135 return NULL;
thse4bcb142007-12-02 04:51:10 +00001136 }
Christoph Hellwig5c6c3a62009-08-20 16:58:35 +02001137
Gerd Hoffmann1dae12e2009-07-22 16:42:58 +02001138 if (bdrv_key_required(dinfo->bdrv))
aliguoric0f4ce72009-03-05 23:01:01 +00001139 autostart = 0;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +02001140 *fatal_error = 0;
1141 return dinfo;
thse4bcb142007-12-02 04:51:10 +00001142}
1143
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02001144static int drive_init_func(QemuOpts *opts, void *opaque)
1145{
1146 QEMUMachine *machine = opaque;
1147 int fatal_error = 0;
1148
1149 if (drive_init(opts, machine, &fatal_error) == NULL) {
1150 if (fatal_error)
1151 return 1;
1152 }
1153 return 0;
1154}
1155
1156static int drive_enable_snapshot(QemuOpts *opts, void *opaque)
1157{
1158 if (NULL == qemu_opt_get(opts, "snapshot")) {
1159 qemu_opt_set(opts, "snapshot", "on");
1160 }
1161 return 0;
1162}
1163
Jan Kiszka76e30d02009-07-02 00:19:02 +02001164void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque)
1165{
1166 boot_set_handler = func;
1167 boot_set_opaque = opaque;
1168}
1169
1170int qemu_boot_set(const char *boot_devices)
1171{
1172 if (!boot_set_handler) {
1173 return -EINVAL;
1174 }
1175 return boot_set_handler(boot_set_opaque, boot_devices);
1176}
1177
Eduardo Habkost4e9e9d62010-04-06 19:22:08 -03001178static void validate_bootdevices(char *devices)
Jan Kiszkaef3adf62009-07-02 00:19:02 +02001179{
1180 /* We just do some generic consistency checks */
1181 const char *p;
1182 int bitmap = 0;
1183
1184 for (p = devices; *p != '\0'; p++) {
1185 /* Allowed boot devices are:
1186 * a-b: floppy disk drives
1187 * c-f: IDE disk drives
1188 * g-m: machine implementation dependant drives
1189 * n-p: network devices
1190 * It's up to each machine implementation to check if the given boot
1191 * devices match the actual hardware implementation and firmware
1192 * features.
1193 */
1194 if (*p < 'a' || *p > 'p') {
1195 fprintf(stderr, "Invalid boot device '%c'\n", *p);
1196 exit(1);
1197 }
1198 if (bitmap & (1 << (*p - 'a'))) {
1199 fprintf(stderr, "Boot device '%c' was given twice\n", *p);
1200 exit(1);
1201 }
1202 bitmap |= 1 << (*p - 'a');
1203 }
Jan Kiszkaef3adf62009-07-02 00:19:02 +02001204}
1205
Jan Kiszkae0f084b2009-07-02 00:19:02 +02001206static void restore_boot_devices(void *opaque)
1207{
1208 char *standard_boot_devices = opaque;
1209
1210 qemu_boot_set(standard_boot_devices);
1211
1212 qemu_unregister_reset(restore_boot_devices, standard_boot_devices);
1213 qemu_free(standard_boot_devices);
1214}
1215
aliguori268a3622009-04-21 22:30:27 +00001216static void numa_add(const char *optarg)
1217{
1218 char option[128];
1219 char *endptr;
1220 unsigned long long value, endvalue;
1221 int nodenr;
1222
1223 optarg = get_opt_name(option, 128, optarg, ',') + 1;
1224 if (!strcmp(option, "node")) {
1225 if (get_param_value(option, 128, "nodeid", optarg) == 0) {
1226 nodenr = nb_numa_nodes;
1227 } else {
1228 nodenr = strtoull(option, NULL, 10);
1229 }
1230
1231 if (get_param_value(option, 128, "mem", optarg) == 0) {
1232 node_mem[nodenr] = 0;
1233 } else {
1234 value = strtoull(option, &endptr, 0);
1235 switch (*endptr) {
1236 case 0: case 'M': case 'm':
1237 value <<= 20;
1238 break;
1239 case 'G': case 'g':
1240 value <<= 30;
1241 break;
1242 }
1243 node_mem[nodenr] = value;
1244 }
1245 if (get_param_value(option, 128, "cpus", optarg) == 0) {
1246 node_cpumask[nodenr] = 0;
1247 } else {
1248 value = strtoull(option, &endptr, 10);
1249 if (value >= 64) {
1250 value = 63;
1251 fprintf(stderr, "only 64 CPUs in NUMA mode supported.\n");
1252 } else {
1253 if (*endptr == '-') {
1254 endvalue = strtoull(endptr+1, &endptr, 10);
1255 if (endvalue >= 63) {
1256 endvalue = 62;
1257 fprintf(stderr,
1258 "only 63 CPUs in NUMA mode supported.\n");
1259 }
Paolo Bonzini0dfbd512010-02-04 14:31:50 +01001260 value = (2ULL << endvalue) - (1ULL << value);
aliguori268a3622009-04-21 22:30:27 +00001261 } else {
Paolo Bonzini0dfbd512010-02-04 14:31:50 +01001262 value = 1ULL << value;
aliguori268a3622009-04-21 22:30:27 +00001263 }
1264 }
1265 node_cpumask[nodenr] = value;
1266 }
1267 nb_numa_nodes++;
1268 }
1269 return;
1270}
1271
Andre Przywaradc6b1c02009-08-19 15:42:40 +02001272static void smp_parse(const char *optarg)
1273{
1274 int smp, sockets = 0, threads = 0, cores = 0;
1275 char *endptr;
1276 char option[128];
1277
1278 smp = strtoul(optarg, &endptr, 10);
1279 if (endptr != optarg) {
1280 if (*endptr == ',') {
1281 endptr++;
1282 }
1283 }
1284 if (get_param_value(option, 128, "sockets", endptr) != 0)
1285 sockets = strtoull(option, NULL, 10);
1286 if (get_param_value(option, 128, "cores", endptr) != 0)
1287 cores = strtoull(option, NULL, 10);
1288 if (get_param_value(option, 128, "threads", endptr) != 0)
1289 threads = strtoull(option, NULL, 10);
1290 if (get_param_value(option, 128, "maxcpus", endptr) != 0)
1291 max_cpus = strtoull(option, NULL, 10);
1292
1293 /* compute missing values, prefer sockets over cores over threads */
1294 if (smp == 0 || sockets == 0) {
1295 sockets = sockets > 0 ? sockets : 1;
1296 cores = cores > 0 ? cores : 1;
1297 threads = threads > 0 ? threads : 1;
1298 if (smp == 0) {
1299 smp = cores * threads * sockets;
Andre Przywaradc6b1c02009-08-19 15:42:40 +02001300 }
1301 } else {
1302 if (cores == 0) {
1303 threads = threads > 0 ? threads : 1;
1304 cores = smp / (sockets * threads);
1305 } else {
Amit Shah5cdc9b72010-01-13 16:24:42 +05301306 if (sockets) {
Andre Przywaradc6b1c02009-08-19 15:42:40 +02001307 threads = smp / (cores * sockets);
1308 }
1309 }
1310 }
1311 smp_cpus = smp;
1312 smp_cores = cores > 0 ? cores : 1;
1313 smp_threads = threads > 0 ? threads : 1;
1314 if (max_cpus == 0)
1315 max_cpus = smp_cpus;
1316}
1317
bellard330d0412003-07-26 18:11:40 +00001318/***********************************************************/
bellarda594cfb2005-11-06 16:13:29 +00001319/* USB devices */
1320
aliguoric0f4ce72009-03-05 23:01:01 +00001321static int usb_device_add(const char *devname, int is_hotplug)
bellarda594cfb2005-11-06 16:13:29 +00001322{
1323 const char *p;
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001324 USBDevice *dev = NULL;
bellarda594cfb2005-11-06 16:13:29 +00001325
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001326 if (!usb_enabled)
bellarda594cfb2005-11-06 16:13:29 +00001327 return -1;
1328
Gerd Hoffmann0958b4c2009-10-26 15:56:45 +01001329 /* drivers with .usbdevice_name entry in USBDeviceInfo */
1330 dev = usbdevice_create(devname);
1331 if (dev)
1332 goto done;
1333
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001334 /* the other ones */
bellarda594cfb2005-11-06 16:13:29 +00001335 if (strstart(devname, "host:", &p)) {
1336 dev = usb_host_device_open(p);
balrogdc72ac12008-11-09 00:04:26 +00001337 } else if (!strcmp(devname, "bt") || strstart(devname, "bt:", &p)) {
1338 dev = usb_bt_init(devname[2] ? hci_init(p) :
1339 bt_new_hci(qemu_find_bt_vlan(0)));
bellarda594cfb2005-11-06 16:13:29 +00001340 } else {
1341 return -1;
1342 }
pbrook0d92ed32006-05-21 16:30:15 +00001343 if (!dev)
1344 return -1;
1345
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001346done:
bellarda594cfb2005-11-06 16:13:29 +00001347 return 0;
1348}
1349
aliguori1f3870a2008-08-21 19:27:48 +00001350static int usb_device_del(const char *devname)
1351{
1352 int bus_num, addr;
1353 const char *p;
1354
aliguori5d0c5752008-09-14 01:07:41 +00001355 if (strstart(devname, "host:", &p))
1356 return usb_host_device_close(p);
1357
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001358 if (!usb_enabled)
aliguori1f3870a2008-08-21 19:27:48 +00001359 return -1;
1360
1361 p = strchr(devname, '.');
1362 if (!p)
1363 return -1;
1364 bus_num = strtoul(devname, NULL, 0);
1365 addr = strtoul(p + 1, NULL, 0);
1366
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001367 return usb_device_delete_addr(bus_num, addr);
aliguori1f3870a2008-08-21 19:27:48 +00001368}
1369
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02001370static int usb_parse(const char *cmdline)
1371{
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001372 int r;
1373 r = usb_device_add(cmdline, 0);
1374 if (r < 0) {
1375 fprintf(stderr, "qemu: could not add USB device '%s'\n", cmdline);
1376 }
1377 return r;
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02001378}
1379
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001380void do_usb_add(Monitor *mon, const QDict *qdict)
bellarda594cfb2005-11-06 16:13:29 +00001381{
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001382 const char *devname = qdict_get_str(qdict, "devname");
1383 if (usb_device_add(devname, 1) < 0) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01001384 error_report("could not add USB device '%s'", devname);
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001385 }
bellarda594cfb2005-11-06 16:13:29 +00001386}
1387
Luiz Capitulinod54908a2009-08-28 15:27:13 -03001388void do_usb_del(Monitor *mon, const QDict *qdict)
bellarda594cfb2005-11-06 16:13:29 +00001389{
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001390 const char *devname = qdict_get_str(qdict, "devname");
1391 if (usb_device_del(devname) < 0) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01001392 error_report("could not delete USB device '%s'", devname);
Scott Tsai59d1c1c2009-12-23 04:30:18 +08001393 }
bellarda594cfb2005-11-06 16:13:29 +00001394}
1395
bellardf7cce892004-12-08 22:21:25 +00001396/***********************************************************/
balrog201a51f2007-04-30 00:51:09 +00001397/* PCMCIA/Cardbus */
1398
1399static struct pcmcia_socket_entry_s {
Paul Brookbc24a222009-05-10 01:44:56 +01001400 PCMCIASocket *socket;
balrog201a51f2007-04-30 00:51:09 +00001401 struct pcmcia_socket_entry_s *next;
1402} *pcmcia_sockets = 0;
1403
Paul Brookbc24a222009-05-10 01:44:56 +01001404void pcmcia_socket_register(PCMCIASocket *socket)
balrog201a51f2007-04-30 00:51:09 +00001405{
1406 struct pcmcia_socket_entry_s *entry;
1407
1408 entry = qemu_malloc(sizeof(struct pcmcia_socket_entry_s));
1409 entry->socket = socket;
1410 entry->next = pcmcia_sockets;
1411 pcmcia_sockets = entry;
1412}
1413
Paul Brookbc24a222009-05-10 01:44:56 +01001414void pcmcia_socket_unregister(PCMCIASocket *socket)
balrog201a51f2007-04-30 00:51:09 +00001415{
1416 struct pcmcia_socket_entry_s *entry, **ptr;
1417
1418 ptr = &pcmcia_sockets;
1419 for (entry = *ptr; entry; ptr = &entry->next, entry = *ptr)
1420 if (entry->socket == socket) {
1421 *ptr = entry->next;
1422 qemu_free(entry);
1423 }
1424}
1425
aliguori376253e2009-03-05 23:01:23 +00001426void pcmcia_info(Monitor *mon)
balrog201a51f2007-04-30 00:51:09 +00001427{
1428 struct pcmcia_socket_entry_s *iter;
aliguori376253e2009-03-05 23:01:23 +00001429
balrog201a51f2007-04-30 00:51:09 +00001430 if (!pcmcia_sockets)
aliguori376253e2009-03-05 23:01:23 +00001431 monitor_printf(mon, "No PCMCIA sockets\n");
balrog201a51f2007-04-30 00:51:09 +00001432
1433 for (iter = pcmcia_sockets; iter; iter = iter->next)
aliguori376253e2009-03-05 23:01:23 +00001434 monitor_printf(mon, "%s: %s\n", iter->socket->slot_string,
1435 iter->socket->attached ? iter->socket->card_string :
1436 "Empty");
balrog201a51f2007-04-30 00:51:09 +00001437}
1438
1439/***********************************************************/
bellard8a7ddc32004-03-31 19:00:16 +00001440/* I/O handling */
bellard0824d6f2003-06-24 13:42:40 +00001441
bellardc4b1fcc2004-03-14 21:44:30 +00001442typedef struct IOHandlerRecord {
1443 int fd;
Juan Quintela7b27a762010-03-11 17:55:39 +01001444 IOCanReadHandler *fd_read_poll;
bellard7c9d8e02005-11-15 22:16:05 +00001445 IOHandler *fd_read;
1446 IOHandler *fd_write;
thscafffd42007-02-28 21:59:44 +00001447 int deleted;
bellardc4b1fcc2004-03-14 21:44:30 +00001448 void *opaque;
1449 /* temporary data */
1450 struct pollfd *ufd;
Juan Quintela31d4ee62010-03-11 17:55:37 +01001451 QLIST_ENTRY(IOHandlerRecord) next;
bellardc4b1fcc2004-03-14 21:44:30 +00001452} IOHandlerRecord;
1453
Juan Quintela31d4ee62010-03-11 17:55:37 +01001454static QLIST_HEAD(, IOHandlerRecord) io_handlers =
1455 QLIST_HEAD_INITIALIZER(io_handlers);
1456
bellardc4b1fcc2004-03-14 21:44:30 +00001457
bellard7c9d8e02005-11-15 22:16:05 +00001458/* XXX: fd_read_poll should be suppressed, but an API change is
1459 necessary in the character devices to suppress fd_can_read(). */
ths5fafdf22007-09-16 21:08:06 +00001460int qemu_set_fd_handler2(int fd,
Juan Quintela7b27a762010-03-11 17:55:39 +01001461 IOCanReadHandler *fd_read_poll,
ths5fafdf22007-09-16 21:08:06 +00001462 IOHandler *fd_read,
1463 IOHandler *fd_write,
bellard7c9d8e02005-11-15 22:16:05 +00001464 void *opaque)
bellardb4608c02003-06-27 17:34:32 +00001465{
Juan Quintela31d4ee62010-03-11 17:55:37 +01001466 IOHandlerRecord *ioh;
bellard8a7ddc32004-03-31 19:00:16 +00001467
bellard7c9d8e02005-11-15 22:16:05 +00001468 if (!fd_read && !fd_write) {
Juan Quintela31d4ee62010-03-11 17:55:37 +01001469 QLIST_FOREACH(ioh, &io_handlers, next) {
bellard7c9d8e02005-11-15 22:16:05 +00001470 if (ioh->fd == fd) {
thscafffd42007-02-28 21:59:44 +00001471 ioh->deleted = 1;
bellard7c9d8e02005-11-15 22:16:05 +00001472 break;
1473 }
bellard8a7ddc32004-03-31 19:00:16 +00001474 }
bellard7c9d8e02005-11-15 22:16:05 +00001475 } else {
Juan Quintela31d4ee62010-03-11 17:55:37 +01001476 QLIST_FOREACH(ioh, &io_handlers, next) {
bellard7c9d8e02005-11-15 22:16:05 +00001477 if (ioh->fd == fd)
1478 goto found;
1479 }
1480 ioh = qemu_mallocz(sizeof(IOHandlerRecord));
Juan Quintela31d4ee62010-03-11 17:55:37 +01001481 QLIST_INSERT_HEAD(&io_handlers, ioh, next);
bellard7c9d8e02005-11-15 22:16:05 +00001482 found:
1483 ioh->fd = fd;
1484 ioh->fd_read_poll = fd_read_poll;
1485 ioh->fd_read = fd_read;
1486 ioh->fd_write = fd_write;
1487 ioh->opaque = opaque;
thscafffd42007-02-28 21:59:44 +00001488 ioh->deleted = 0;
bellard8a7ddc32004-03-31 19:00:16 +00001489 }
bellard7c9d8e02005-11-15 22:16:05 +00001490 return 0;
1491}
1492
ths5fafdf22007-09-16 21:08:06 +00001493int qemu_set_fd_handler(int fd,
1494 IOHandler *fd_read,
1495 IOHandler *fd_write,
bellard7c9d8e02005-11-15 22:16:05 +00001496 void *opaque)
1497{
1498 return qemu_set_fd_handler2(fd, NULL, fd_read, fd_write, opaque);
bellardb4608c02003-06-27 17:34:32 +00001499}
1500
aliguori56f3a5d2008-10-31 18:07:17 +00001501#ifdef _WIN32
bellard8a7ddc32004-03-31 19:00:16 +00001502/***********************************************************/
bellardf3311102006-04-12 20:21:17 +00001503/* Polling handling */
1504
1505typedef struct PollingEntry {
1506 PollingFunc *func;
1507 void *opaque;
1508 struct PollingEntry *next;
1509} PollingEntry;
1510
1511static PollingEntry *first_polling_entry;
1512
1513int qemu_add_polling_cb(PollingFunc *func, void *opaque)
1514{
1515 PollingEntry **ppe, *pe;
1516 pe = qemu_mallocz(sizeof(PollingEntry));
bellardf3311102006-04-12 20:21:17 +00001517 pe->func = func;
1518 pe->opaque = opaque;
1519 for(ppe = &first_polling_entry; *ppe != NULL; ppe = &(*ppe)->next);
1520 *ppe = pe;
1521 return 0;
1522}
1523
1524void qemu_del_polling_cb(PollingFunc *func, void *opaque)
1525{
1526 PollingEntry **ppe, *pe;
1527 for(ppe = &first_polling_entry; *ppe != NULL; ppe = &(*ppe)->next) {
1528 pe = *ppe;
1529 if (pe->func == func && pe->opaque == opaque) {
1530 *ppe = pe->next;
1531 qemu_free(pe);
1532 break;
1533 }
1534 }
1535}
1536
bellarda18e5242006-06-25 17:18:27 +00001537/***********************************************************/
1538/* Wait objects support */
1539typedef struct WaitObjects {
1540 int num;
1541 HANDLE events[MAXIMUM_WAIT_OBJECTS + 1];
1542 WaitObjectFunc *func[MAXIMUM_WAIT_OBJECTS + 1];
1543 void *opaque[MAXIMUM_WAIT_OBJECTS + 1];
1544} WaitObjects;
1545
1546static WaitObjects wait_objects = {0};
ths3b46e622007-09-17 08:09:54 +00001547
bellarda18e5242006-06-25 17:18:27 +00001548int qemu_add_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
1549{
1550 WaitObjects *w = &wait_objects;
1551
1552 if (w->num >= MAXIMUM_WAIT_OBJECTS)
1553 return -1;
1554 w->events[w->num] = handle;
1555 w->func[w->num] = func;
1556 w->opaque[w->num] = opaque;
1557 w->num++;
1558 return 0;
1559}
1560
1561void qemu_del_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
1562{
1563 int i, found;
1564 WaitObjects *w = &wait_objects;
1565
1566 found = 0;
1567 for (i = 0; i < w->num; i++) {
1568 if (w->events[i] == handle)
1569 found = 1;
1570 if (found) {
1571 w->events[i] = w->events[i + 1];
1572 w->func[i] = w->func[i + 1];
1573 w->opaque[i] = w->opaque[i + 1];
ths3b46e622007-09-17 08:09:54 +00001574 }
bellarda18e5242006-06-25 17:18:27 +00001575 }
1576 if (found)
1577 w->num--;
1578}
1579#endif
1580
bellard8a7ddc32004-03-31 19:00:16 +00001581/***********************************************************/
bellardcc1daa42005-06-05 14:49:17 +00001582/* machine registration */
1583
blueswir1bdaf78e2008-10-04 07:24:27 +00001584static QEMUMachine *first_machine = NULL;
aliguori6f338c32009-02-11 15:21:54 +00001585QEMUMachine *current_machine = NULL;
bellardcc1daa42005-06-05 14:49:17 +00001586
1587int qemu_register_machine(QEMUMachine *m)
1588{
1589 QEMUMachine **pm;
1590 pm = &first_machine;
1591 while (*pm != NULL)
1592 pm = &(*pm)->next;
1593 m->next = NULL;
1594 *pm = m;
1595 return 0;
1596}
1597
pbrook9596ebb2007-11-18 01:44:38 +00001598static QEMUMachine *find_machine(const char *name)
bellardcc1daa42005-06-05 14:49:17 +00001599{
1600 QEMUMachine *m;
1601
1602 for(m = first_machine; m != NULL; m = m->next) {
1603 if (!strcmp(m->name, name))
1604 return m;
Mark McLoughlin3f6599e2009-07-22 10:02:50 +01001605 if (m->alias && !strcmp(m->alias, name))
1606 return m;
bellardcc1daa42005-06-05 14:49:17 +00001607 }
1608 return NULL;
1609}
1610
Anthony Liguori0c257432009-05-21 20:41:01 -05001611static QEMUMachine *find_default_machine(void)
1612{
1613 QEMUMachine *m;
1614
1615 for(m = first_machine; m != NULL; m = m->next) {
1616 if (m->is_default) {
1617 return m;
1618 }
1619 }
1620 return NULL;
1621}
1622
bellardcc1daa42005-06-05 14:49:17 +00001623/***********************************************************/
bellard8a7ddc32004-03-31 19:00:16 +00001624/* main execution loop */
1625
pbrook9596ebb2007-11-18 01:44:38 +00001626static void gui_update(void *opaque)
bellard8a7ddc32004-03-31 19:00:16 +00001627{
aliguori7d957bd2009-01-15 22:14:11 +00001628 uint64_t interval = GUI_REFRESH_INTERVAL;
ths740733b2007-06-08 01:57:56 +00001629 DisplayState *ds = opaque;
aliguori7d957bd2009-01-15 22:14:11 +00001630 DisplayChangeListener *dcl = ds->listeners;
1631
Sheng Yang62a27442010-01-26 19:21:16 +08001632 qemu_flush_coalesced_mmio_buffer();
aliguori7d957bd2009-01-15 22:14:11 +00001633 dpy_refresh(ds);
1634
1635 while (dcl != NULL) {
1636 if (dcl->gui_timer_interval &&
1637 dcl->gui_timer_interval < interval)
1638 interval = dcl->gui_timer_interval;
1639 dcl = dcl->next;
1640 }
1641 qemu_mod_timer(ds->gui_timer, interval + qemu_get_clock(rt_clock));
bellard8a7ddc32004-03-31 19:00:16 +00001642}
1643
blueswir19043b622009-01-21 19:28:13 +00001644static void nographic_update(void *opaque)
1645{
1646 uint64_t interval = GUI_REFRESH_INTERVAL;
1647
Sheng Yang62a27442010-01-26 19:21:16 +08001648 qemu_flush_coalesced_mmio_buffer();
blueswir19043b622009-01-21 19:28:13 +00001649 qemu_mod_timer(nographic_timer, interval + qemu_get_clock(rt_clock));
1650}
1651
bellard0bd48852005-11-11 00:00:47 +00001652struct vm_change_state_entry {
1653 VMChangeStateHandler *cb;
1654 void *opaque;
Blue Swirl72cf2d42009-09-12 07:36:22 +00001655 QLIST_ENTRY (vm_change_state_entry) entries;
bellard0bd48852005-11-11 00:00:47 +00001656};
1657
Blue Swirl72cf2d42009-09-12 07:36:22 +00001658static QLIST_HEAD(vm_change_state_head, vm_change_state_entry) vm_change_state_head;
bellard0bd48852005-11-11 00:00:47 +00001659
1660VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
1661 void *opaque)
1662{
1663 VMChangeStateEntry *e;
1664
1665 e = qemu_mallocz(sizeof (*e));
bellard0bd48852005-11-11 00:00:47 +00001666
1667 e->cb = cb;
1668 e->opaque = opaque;
Blue Swirl72cf2d42009-09-12 07:36:22 +00001669 QLIST_INSERT_HEAD(&vm_change_state_head, e, entries);
bellard0bd48852005-11-11 00:00:47 +00001670 return e;
1671}
1672
1673void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
1674{
Blue Swirl72cf2d42009-09-12 07:36:22 +00001675 QLIST_REMOVE (e, entries);
bellard0bd48852005-11-11 00:00:47 +00001676 qemu_free (e);
1677}
1678
Blue Swirl296af7c2010-03-29 19:23:50 +00001679void vm_state_notify(int running, int reason)
bellard0bd48852005-11-11 00:00:47 +00001680{
1681 VMChangeStateEntry *e;
1682
1683 for (e = vm_change_state_head.lh_first; e; e = e->entries.le_next) {
aliguori9781e042009-01-22 17:15:29 +00001684 e->cb(e->opaque, running, reason);
bellard0bd48852005-11-11 00:00:47 +00001685 }
1686}
1687
bellard8a7ddc32004-03-31 19:00:16 +00001688void vm_start(void)
1689{
1690 if (!vm_running) {
1691 cpu_enable_ticks();
1692 vm_running = 1;
aliguori9781e042009-01-22 17:15:29 +00001693 vm_state_notify(1, 0);
aliguorid6dc3d42009-04-24 18:04:07 +00001694 resume_all_vcpus();
bellard8a7ddc32004-03-31 19:00:16 +00001695 }
1696}
1697
bellardbb0c6722004-06-20 12:37:32 +00001698/* reset/shutdown handler */
1699
1700typedef struct QEMUResetEntry {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001701 QTAILQ_ENTRY(QEMUResetEntry) entry;
bellardbb0c6722004-06-20 12:37:32 +00001702 QEMUResetHandler *func;
1703 void *opaque;
bellardbb0c6722004-06-20 12:37:32 +00001704} QEMUResetEntry;
1705
Blue Swirl72cf2d42009-09-12 07:36:22 +00001706static QTAILQ_HEAD(reset_handlers, QEMUResetEntry) reset_handlers =
1707 QTAILQ_HEAD_INITIALIZER(reset_handlers);
bellardbb0c6722004-06-20 12:37:32 +00001708static int reset_requested;
1709static int shutdown_requested;
bellard34751872005-07-02 14:31:34 +00001710static int powerdown_requested;
Blue Swirl296af7c2010-03-29 19:23:50 +00001711int debug_requested;
Blue Swirl7277e022010-04-12 17:19:06 +00001712int vmstop_requested;
bellardbb0c6722004-06-20 12:37:32 +00001713
aurel32cf7a2fe2008-03-18 06:53:05 +00001714int qemu_shutdown_requested(void)
1715{
1716 int r = shutdown_requested;
1717 shutdown_requested = 0;
1718 return r;
1719}
1720
1721int qemu_reset_requested(void)
1722{
1723 int r = reset_requested;
1724 reset_requested = 0;
1725 return r;
1726}
1727
1728int qemu_powerdown_requested(void)
1729{
1730 int r = powerdown_requested;
1731 powerdown_requested = 0;
1732 return r;
1733}
1734
aliguorie5689022009-04-24 18:03:54 +00001735static int qemu_debug_requested(void)
1736{
1737 int r = debug_requested;
1738 debug_requested = 0;
1739 return r;
1740}
1741
aliguori6e29f5d2009-04-24 18:04:02 +00001742static int qemu_vmstop_requested(void)
1743{
1744 int r = vmstop_requested;
1745 vmstop_requested = 0;
1746 return r;
1747}
1748
Jan Kiszkaa08d4362009-06-27 09:25:07 +02001749void qemu_register_reset(QEMUResetHandler *func, void *opaque)
bellardbb0c6722004-06-20 12:37:32 +00001750{
Jan Kiszka55ddfe82009-07-02 00:19:02 +02001751 QEMUResetEntry *re = qemu_mallocz(sizeof(QEMUResetEntry));
bellardbb0c6722004-06-20 12:37:32 +00001752
bellardbb0c6722004-06-20 12:37:32 +00001753 re->func = func;
1754 re->opaque = opaque;
Blue Swirl72cf2d42009-09-12 07:36:22 +00001755 QTAILQ_INSERT_TAIL(&reset_handlers, re, entry);
bellardbb0c6722004-06-20 12:37:32 +00001756}
1757
Jan Kiszkadda9b292009-07-02 00:19:02 +02001758void qemu_unregister_reset(QEMUResetHandler *func, void *opaque)
bellardbb0c6722004-06-20 12:37:32 +00001759{
1760 QEMUResetEntry *re;
1761
Blue Swirl72cf2d42009-09-12 07:36:22 +00001762 QTAILQ_FOREACH(re, &reset_handlers, entry) {
Jan Kiszkadda9b292009-07-02 00:19:02 +02001763 if (re->func == func && re->opaque == opaque) {
Blue Swirl72cf2d42009-09-12 07:36:22 +00001764 QTAILQ_REMOVE(&reset_handlers, re, entry);
Jan Kiszkadda9b292009-07-02 00:19:02 +02001765 qemu_free(re);
1766 return;
1767 }
1768 }
1769}
1770
1771void qemu_system_reset(void)
1772{
1773 QEMUResetEntry *re, *nre;
1774
1775 /* reset all devices */
Blue Swirl72cf2d42009-09-12 07:36:22 +00001776 QTAILQ_FOREACH_SAFE(re, &reset_handlers, entry, nre) {
bellardbb0c6722004-06-20 12:37:32 +00001777 re->func(re->opaque);
1778 }
Luiz Capitulino81d9b782010-03-10 09:06:34 -06001779 monitor_protocol_event(QEVENT_RESET, NULL);
Jan Kiszkaea375f92010-03-01 19:10:30 +01001780 cpu_synchronize_all_post_reset();
bellardbb0c6722004-06-20 12:37:32 +00001781}
1782
1783void qemu_system_reset_request(void)
1784{
bellardd1beab82006-10-02 19:44:22 +00001785 if (no_reboot) {
1786 shutdown_requested = 1;
1787 } else {
1788 reset_requested = 1;
1789 }
aliguorid9f75a42009-04-24 18:03:11 +00001790 qemu_notify_event();
bellardbb0c6722004-06-20 12:37:32 +00001791}
1792
1793void qemu_system_shutdown_request(void)
1794{
1795 shutdown_requested = 1;
aliguorid9f75a42009-04-24 18:03:11 +00001796 qemu_notify_event();
bellardbb0c6722004-06-20 12:37:32 +00001797}
1798
bellard34751872005-07-02 14:31:34 +00001799void qemu_system_powerdown_request(void)
1800{
1801 powerdown_requested = 1;
aliguorid9f75a42009-04-24 18:03:11 +00001802 qemu_notify_event();
1803}
1804
ths877cf882007-04-18 18:11:47 +00001805#ifdef _WIN32
blueswir169d64512008-12-07 19:30:18 +00001806static void host_main_loop_wait(int *timeout)
aliguori56f3a5d2008-10-31 18:07:17 +00001807{
1808 int ret, ret2, i;
bellardf3311102006-04-12 20:21:17 +00001809 PollingEntry *pe;
bellardc4b1fcc2004-03-14 21:44:30 +00001810
bellardf3311102006-04-12 20:21:17 +00001811
1812 /* XXX: need to suppress polling by better using win32 events */
1813 ret = 0;
1814 for(pe = first_polling_entry; pe != NULL; pe = pe->next) {
1815 ret |= pe->func(pe->opaque);
1816 }
thse6b1e552007-04-18 17:56:02 +00001817 if (ret == 0) {
bellarda18e5242006-06-25 17:18:27 +00001818 int err;
1819 WaitObjects *w = &wait_objects;
ths3b46e622007-09-17 08:09:54 +00001820
aliguori56f3a5d2008-10-31 18:07:17 +00001821 ret = WaitForMultipleObjects(w->num, w->events, FALSE, *timeout);
bellarda18e5242006-06-25 17:18:27 +00001822 if (WAIT_OBJECT_0 + 0 <= ret && ret <= WAIT_OBJECT_0 + w->num - 1) {
1823 if (w->func[ret - WAIT_OBJECT_0])
1824 w->func[ret - WAIT_OBJECT_0](w->opaque[ret - WAIT_OBJECT_0]);
ths3b46e622007-09-17 08:09:54 +00001825
ths5fafdf22007-09-16 21:08:06 +00001826 /* Check for additional signaled events */
thse6b1e552007-04-18 17:56:02 +00001827 for(i = (ret - WAIT_OBJECT_0 + 1); i < w->num; i++) {
ths3b46e622007-09-17 08:09:54 +00001828
thse6b1e552007-04-18 17:56:02 +00001829 /* Check if event is signaled */
1830 ret2 = WaitForSingleObject(w->events[i], 0);
1831 if(ret2 == WAIT_OBJECT_0) {
1832 if (w->func[i])
1833 w->func[i](w->opaque[i]);
1834 } else if (ret2 == WAIT_TIMEOUT) {
1835 } else {
1836 err = GetLastError();
1837 fprintf(stderr, "WaitForSingleObject error %d %d\n", i, err);
ths3b46e622007-09-17 08:09:54 +00001838 }
1839 }
bellarda18e5242006-06-25 17:18:27 +00001840 } else if (ret == WAIT_TIMEOUT) {
1841 } else {
1842 err = GetLastError();
thse6b1e552007-04-18 17:56:02 +00001843 fprintf(stderr, "WaitForMultipleObjects error %d %d\n", ret, err);
bellarda18e5242006-06-25 17:18:27 +00001844 }
bellardf3311102006-04-12 20:21:17 +00001845 }
aliguori56f3a5d2008-10-31 18:07:17 +00001846
1847 *timeout = 0;
1848}
1849#else
blueswir169d64512008-12-07 19:30:18 +00001850static void host_main_loop_wait(int *timeout)
aliguori56f3a5d2008-10-31 18:07:17 +00001851{
1852}
bellardfd1dff42006-02-01 21:29:26 +00001853#endif
aliguori56f3a5d2008-10-31 18:07:17 +00001854
Paolo Bonzinid6f4ade2010-03-10 11:38:54 +01001855void main_loop_wait(int nonblocking)
aliguori56f3a5d2008-10-31 18:07:17 +00001856{
1857 IOHandlerRecord *ioh;
1858 fd_set rfds, wfds, xfds;
1859 int ret, nfds;
1860 struct timeval tv;
Paolo Bonzinid6f4ade2010-03-10 11:38:54 +01001861 int timeout;
aliguori56f3a5d2008-10-31 18:07:17 +00001862
Paolo Bonzinid6f4ade2010-03-10 11:38:54 +01001863 if (nonblocking)
1864 timeout = 0;
1865 else {
1866 timeout = qemu_calculate_timeout();
1867 qemu_bh_update_timeout(&timeout);
1868 }
aliguori56f3a5d2008-10-31 18:07:17 +00001869
1870 host_main_loop_wait(&timeout);
1871
bellardfd1dff42006-02-01 21:29:26 +00001872 /* poll any events */
1873 /* XXX: separate device handlers from system ones */
aliguori6abfbd72008-11-05 20:49:37 +00001874 nfds = -1;
bellardfd1dff42006-02-01 21:29:26 +00001875 FD_ZERO(&rfds);
1876 FD_ZERO(&wfds);
bellarde0356492006-05-01 13:33:02 +00001877 FD_ZERO(&xfds);
Juan Quintela31d4ee62010-03-11 17:55:37 +01001878 QLIST_FOREACH(ioh, &io_handlers, next) {
thscafffd42007-02-28 21:59:44 +00001879 if (ioh->deleted)
1880 continue;
bellardfd1dff42006-02-01 21:29:26 +00001881 if (ioh->fd_read &&
1882 (!ioh->fd_read_poll ||
1883 ioh->fd_read_poll(ioh->opaque) != 0)) {
1884 FD_SET(ioh->fd, &rfds);
1885 if (ioh->fd > nfds)
1886 nfds = ioh->fd;
1887 }
1888 if (ioh->fd_write) {
1889 FD_SET(ioh->fd, &wfds);
1890 if (ioh->fd > nfds)
1891 nfds = ioh->fd;
1892 }
1893 }
ths3b46e622007-09-17 08:09:54 +00001894
aliguori56f3a5d2008-10-31 18:07:17 +00001895 tv.tv_sec = timeout / 1000;
1896 tv.tv_usec = (timeout % 1000) * 1000;
1897
Jan Kiszkad918f232009-06-24 14:42:30 +02001898 slirp_select_fill(&nfds, &rfds, &wfds, &xfds);
1899
aliguori48708522009-04-24 18:03:49 +00001900 qemu_mutex_unlock_iothread();
bellarde0356492006-05-01 13:33:02 +00001901 ret = select(nfds + 1, &rfds, &wfds, &xfds, &tv);
aliguori48708522009-04-24 18:03:49 +00001902 qemu_mutex_lock_iothread();
bellardfd1dff42006-02-01 21:29:26 +00001903 if (ret > 0) {
Juan Quintela31d4ee62010-03-11 17:55:37 +01001904 IOHandlerRecord *pioh;
thscafffd42007-02-28 21:59:44 +00001905
Juan Quintela31d4ee62010-03-11 17:55:37 +01001906 QLIST_FOREACH_SAFE(ioh, &io_handlers, next, pioh) {
thscafffd42007-02-28 21:59:44 +00001907 if (ioh->deleted) {
Juan Quintela31d4ee62010-03-11 17:55:37 +01001908 QLIST_REMOVE(ioh, next);
thscafffd42007-02-28 21:59:44 +00001909 qemu_free(ioh);
Juan Quintela4bed9832010-03-11 17:55:41 +01001910 continue;
1911 }
1912 if (ioh->fd_read && FD_ISSET(ioh->fd, &rfds)) {
1913 ioh->fd_read(ioh->opaque);
1914 }
1915 if (ioh->fd_write && FD_ISSET(ioh->fd, &wfds)) {
1916 ioh->fd_write(ioh->opaque);
Juan Quintela31d4ee62010-03-11 17:55:37 +01001917 }
thscafffd42007-02-28 21:59:44 +00001918 }
bellardfd1dff42006-02-01 21:29:26 +00001919 }
Jan Kiszkad918f232009-06-24 14:42:30 +02001920
1921 slirp_select_poll(&rfds, &wfds, &xfds, (ret < 0));
bellardc20709a2004-04-21 23:27:19 +00001922
Paolo Bonzinib6964822010-03-10 11:38:45 +01001923 qemu_run_all_timers();
Jan Kiszka21d5d122009-09-15 13:36:04 +02001924
pbrook423f0742007-05-23 00:06:54 +00001925 /* Check bottom-halves last in case any of the earlier events triggered
1926 them. */
1927 qemu_bh_poll();
ths3b46e622007-09-17 08:09:54 +00001928
bellard5905b2e2004-08-01 21:53:26 +00001929}
1930
aliguori43b96852009-04-24 18:03:33 +00001931static int vm_can_run(void)
1932{
1933 if (powerdown_requested)
1934 return 0;
1935 if (reset_requested)
1936 return 0;
1937 if (shutdown_requested)
1938 return 0;
aliguorie5689022009-04-24 18:03:54 +00001939 if (debug_requested)
1940 return 0;
aliguori43b96852009-04-24 18:03:33 +00001941 return 1;
1942}
1943
Blue Swirld9c32312009-08-09 08:42:19 +00001944qemu_irq qemu_system_powerdown;
1945
aliguori43b96852009-04-24 18:03:33 +00001946static void main_loop(void)
1947{
aliguori6e29f5d2009-04-24 18:04:02 +00001948 int r;
aliguori43b96852009-04-24 18:03:33 +00001949
Blue Swirl7277e022010-04-12 17:19:06 +00001950 qemu_main_loop_start();
aliguorid6dc3d42009-04-24 18:04:07 +00001951
aliguori6e29f5d2009-04-24 18:04:02 +00001952 for (;;) {
aliguorie6e35b12009-04-24 18:03:57 +00001953 do {
Paolo Bonzinid6f4ade2010-03-10 11:38:54 +01001954 bool nonblocking = false;
aliguorie6e35b12009-04-24 18:03:57 +00001955#ifdef CONFIG_PROFILER
1956 int64_t ti;
1957#endif
aliguorid6dc3d42009-04-24 18:04:07 +00001958#ifndef CONFIG_IOTHREAD
Paolo Bonzinid6f4ade2010-03-10 11:38:54 +01001959 nonblocking = tcg_cpu_exec();
aliguorid6dc3d42009-04-24 18:04:07 +00001960#endif
aliguori43b96852009-04-24 18:03:33 +00001961#ifdef CONFIG_PROFILER
1962 ti = profile_getclock();
1963#endif
Paolo Bonzinid6f4ade2010-03-10 11:38:54 +01001964 main_loop_wait(nonblocking);
aliguori43b96852009-04-24 18:03:33 +00001965#ifdef CONFIG_PROFILER
1966 dev_time += profile_getclock() - ti;
1967#endif
aliguorie5689022009-04-24 18:03:54 +00001968 } while (vm_can_run());
aliguori43b96852009-04-24 18:03:33 +00001969
Blue Swirl54fc6ea2010-03-29 19:23:46 +00001970 if ((r = qemu_debug_requested())) {
1971 vm_stop(r);
Luiz Capitulinob1a15e72009-11-26 22:59:04 -02001972 }
aliguori43b96852009-04-24 18:03:33 +00001973 if (qemu_shutdown_requested()) {
Blue Swirl242cd002009-12-04 18:05:45 +00001974 monitor_protocol_event(QEVENT_SHUTDOWN, NULL);
aliguori43b96852009-04-24 18:03:33 +00001975 if (no_shutdown) {
1976 vm_stop(0);
1977 no_shutdown = 0;
1978 } else
1979 break;
1980 }
aliguorid6dc3d42009-04-24 18:04:07 +00001981 if (qemu_reset_requested()) {
1982 pause_all_vcpus();
aliguori43b96852009-04-24 18:03:33 +00001983 qemu_system_reset();
aliguorid6dc3d42009-04-24 18:04:07 +00001984 resume_all_vcpus();
1985 }
Blue Swirld9c32312009-08-09 08:42:19 +00001986 if (qemu_powerdown_requested()) {
Blue Swirl242cd002009-12-04 18:05:45 +00001987 monitor_protocol_event(QEVENT_POWERDOWN, NULL);
Blue Swirld9c32312009-08-09 08:42:19 +00001988 qemu_irq_raise(qemu_system_powerdown);
1989 }
Luiz Capitulinob1a15e72009-11-26 22:59:04 -02001990 if ((r = qemu_vmstop_requested())) {
aliguori6e29f5d2009-04-24 18:04:02 +00001991 vm_stop(r);
Luiz Capitulinob1a15e72009-11-26 22:59:04 -02001992 }
aliguori43b96852009-04-24 18:03:33 +00001993 }
aliguorid6dc3d42009-04-24 18:04:07 +00001994 pause_all_vcpus();
bellardb4608c02003-06-27 17:34:32 +00001995}
1996
pbrook9bd7e6d2009-04-07 22:58:45 +00001997static void version(void)
1998{
pbrook4a19f1e2009-04-07 23:17:49 +00001999 printf("QEMU PC emulator version " QEMU_VERSION QEMU_PKGVERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n");
pbrook9bd7e6d2009-04-07 22:58:45 +00002000}
2001
ths15f82202007-06-29 23:26:08 +00002002static void help(int exitcode)
bellard0824d6f2003-06-24 13:42:40 +00002003{
Paolo Bonzinie8105eb2010-02-04 16:49:59 +01002004 const char *options_help =
Blue Swirlad960902010-03-29 19:23:52 +00002005#define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
2006 opt_help
blueswir15824d652009-03-28 06:44:27 +00002007#define DEFHEADING(text) stringify(text) "\n"
2008#include "qemu-options.h"
2009#undef DEF
2010#undef DEFHEADING
2011#undef GEN_DOCS
Paolo Bonzinie8105eb2010-02-04 16:49:59 +01002012 ;
2013 version();
2014 printf("usage: %s [options] [disk_image]\n"
malc3f020d72010-02-08 12:04:56 +03002015 "\n"
Paolo Bonzinie8105eb2010-02-04 16:49:59 +01002016 "'disk_image' is a raw hard image image for IDE hard disk 0\n"
2017 "\n"
2018 "%s\n"
malc3f020d72010-02-08 12:04:56 +03002019 "During emulation, the following keys are useful:\n"
2020 "ctrl-alt-f toggle full screen\n"
2021 "ctrl-alt-n switch to virtual console 'n'\n"
2022 "ctrl-alt toggle mouse and keyboard grab\n"
2023 "\n"
Paolo Bonzinie8105eb2010-02-04 16:49:59 +01002024 "When using -nographic, press 'ctrl-a h' to get some help.\n",
2025 "qemu",
2026 options_help);
ths15f82202007-06-29 23:26:08 +00002027 exit(exitcode);
bellard0824d6f2003-06-24 13:42:40 +00002028}
2029
bellardcd6f1162004-05-13 22:02:20 +00002030#define HAS_ARG 0x0001
2031
2032enum {
Blue Swirlad960902010-03-29 19:23:52 +00002033#define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
blueswir15824d652009-03-28 06:44:27 +00002034 opt_enum,
2035#define DEFHEADING(text)
2036#include "qemu-options.h"
2037#undef DEF
2038#undef DEFHEADING
2039#undef GEN_DOCS
bellardcd6f1162004-05-13 22:02:20 +00002040};
2041
2042typedef struct QEMUOption {
2043 const char *name;
2044 int flags;
2045 int index;
Blue Swirlad960902010-03-29 19:23:52 +00002046 uint32_t arch_mask;
bellardcd6f1162004-05-13 22:02:20 +00002047} QEMUOption;
2048
blueswir1dbed7e42008-10-01 19:38:09 +00002049static const QEMUOption qemu_options[] = {
Blue Swirlad960902010-03-29 19:23:52 +00002050 { "h", 0, QEMU_OPTION_h, QEMU_ARCH_ALL },
2051#define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
2052 { option, opt_arg, opt_enum, arch_mask },
blueswir15824d652009-03-28 06:44:27 +00002053#define DEFHEADING(text)
2054#include "qemu-options.h"
2055#undef DEF
2056#undef DEFHEADING
2057#undef GEN_DOCS
bellardcd6f1162004-05-13 22:02:20 +00002058 { NULL },
bellardfc01f7e2003-06-30 10:03:06 +00002059};
malc3893c122008-09-28 00:42:05 +00002060static void select_vgahw (const char *p)
2061{
2062 const char *opts;
2063
Gerd Hoffmann64465292009-12-08 13:11:45 +01002064 default_vga = 0;
Zachary Amsden86176752009-07-30 00:15:02 -10002065 vga_interface_type = VGA_NONE;
malc3893c122008-09-28 00:42:05 +00002066 if (strstart(p, "std", &opts)) {
Zachary Amsden86176752009-07-30 00:15:02 -10002067 vga_interface_type = VGA_STD;
malc3893c122008-09-28 00:42:05 +00002068 } else if (strstart(p, "cirrus", &opts)) {
Zachary Amsden86176752009-07-30 00:15:02 -10002069 vga_interface_type = VGA_CIRRUS;
malc3893c122008-09-28 00:42:05 +00002070 } else if (strstart(p, "vmware", &opts)) {
Zachary Amsden86176752009-07-30 00:15:02 -10002071 vga_interface_type = VGA_VMWARE;
aliguori94909d92009-04-22 15:19:53 +00002072 } else if (strstart(p, "xenfb", &opts)) {
Zachary Amsden86176752009-07-30 00:15:02 -10002073 vga_interface_type = VGA_XENFB;
aliguori28b85ed2009-04-22 15:19:48 +00002074 } else if (!strstart(p, "none", &opts)) {
malc3893c122008-09-28 00:42:05 +00002075 invalid_vga:
2076 fprintf(stderr, "Unknown vga type: %s\n", p);
2077 exit(1);
2078 }
malccb5a7aa2008-09-28 00:42:12 +00002079 while (*opts) {
2080 const char *nextopt;
2081
2082 if (strstart(opts, ",retrace=", &nextopt)) {
2083 opts = nextopt;
2084 if (strstart(opts, "dumb", &nextopt))
2085 vga_retrace_method = VGA_RETRACE_DUMB;
2086 else if (strstart(opts, "precise", &nextopt))
2087 vga_retrace_method = VGA_RETRACE_PRECISE;
2088 else goto invalid_vga;
2089 } else goto invalid_vga;
2090 opts = nextopt;
2091 }
malc3893c122008-09-28 00:42:05 +00002092}
2093
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02002094static int balloon_parse(const char *arg)
2095{
Gerd Hoffmann382f0742009-08-14 10:34:22 +02002096 QemuOpts *opts;
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02002097
Gerd Hoffmann382f0742009-08-14 10:34:22 +02002098 if (strcmp(arg, "none") == 0) {
2099 return 0;
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02002100 }
Gerd Hoffmann382f0742009-08-14 10:34:22 +02002101
2102 if (!strncmp(arg, "virtio", 6)) {
2103 if (arg[6] == ',') {
2104 /* have params -> parse them */
Markus Armbruster8212c642010-02-10 19:52:18 +01002105 opts = qemu_opts_parse(&qemu_device_opts, arg+7, 0);
Gerd Hoffmann382f0742009-08-14 10:34:22 +02002106 if (!opts)
2107 return -1;
2108 } else {
2109 /* create empty opts */
2110 opts = qemu_opts_create(&qemu_device_opts, NULL, 0);
2111 }
2112 qemu_opt_set(opts, "driver", "virtio-balloon-pci");
2113 return 0;
2114 }
2115
2116 return -1;
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02002117}
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02002118
bellard3587d7e2006-06-26 20:03:44 +00002119#ifdef _WIN32
2120static BOOL WINAPI qemu_ctrl_handler(DWORD type)
2121{
2122 exit(STATUS_CONTROL_C_EXIT);
2123 return TRUE;
2124}
2125#endif
2126
aliguori5b08fc12008-08-21 20:08:03 +00002127#ifndef _WIN32
2128
2129static void termsig_handler(int signal)
2130{
2131 qemu_system_shutdown_request();
2132}
2133
Jan Kiszka7c3370d2009-05-08 12:34:17 +02002134static void sigchld_handler(int signal)
2135{
2136 waitpid(-1, NULL, WNOHANG);
2137}
2138
2139static void sighandler_setup(void)
aliguori5b08fc12008-08-21 20:08:03 +00002140{
2141 struct sigaction act;
2142
2143 memset(&act, 0, sizeof(act));
2144 act.sa_handler = termsig_handler;
2145 sigaction(SIGINT, &act, NULL);
2146 sigaction(SIGHUP, &act, NULL);
2147 sigaction(SIGTERM, &act, NULL);
Jan Kiszka7c3370d2009-05-08 12:34:17 +02002148
2149 act.sa_handler = sigchld_handler;
2150 act.sa_flags = SA_NOCLDSTOP;
2151 sigaction(SIGCHLD, &act, NULL);
aliguori5b08fc12008-08-21 20:08:03 +00002152}
2153
2154#endif
2155
Paul Brook5cea8592009-05-30 00:52:44 +01002156#ifdef _WIN32
2157/* Look for support files in the same directory as the executable. */
2158static char *find_datadir(const char *argv0)
2159{
2160 char *p;
2161 char buf[MAX_PATH];
2162 DWORD len;
2163
2164 len = GetModuleFileName(NULL, buf, sizeof(buf) - 1);
2165 if (len == 0) {
Blue Swirlc5947802009-06-09 20:51:21 +03002166 return NULL;
Paul Brook5cea8592009-05-30 00:52:44 +01002167 }
2168
2169 buf[len] = 0;
2170 p = buf + len - 1;
2171 while (p != buf && *p != '\\')
2172 p--;
2173 *p = 0;
2174 if (access(buf, R_OK) == 0) {
2175 return qemu_strdup(buf);
2176 }
2177 return NULL;
2178}
2179#else /* !_WIN32 */
2180
2181/* Find a likely location for support files using the location of the binary.
2182 For installed binaries this will be "$bindir/../share/qemu". When
2183 running from the build tree this will be "$bindir/../pc-bios". */
2184#define SHARE_SUFFIX "/share/qemu"
2185#define BUILD_SUFFIX "/pc-bios"
2186static char *find_datadir(const char *argv0)
2187{
2188 char *dir;
2189 char *p = NULL;
2190 char *res;
Paul Brook5cea8592009-05-30 00:52:44 +01002191 char buf[PATH_MAX];
Blue Swirl3a417592009-06-09 19:12:21 +00002192 size_t max_len;
Paul Brook5cea8592009-05-30 00:52:44 +01002193
2194#if defined(__linux__)
2195 {
2196 int len;
2197 len = readlink("/proc/self/exe", buf, sizeof(buf) - 1);
2198 if (len > 0) {
2199 buf[len] = 0;
2200 p = buf;
2201 }
2202 }
2203#elif defined(__FreeBSD__)
2204 {
Juergen Lock92c0e652010-03-25 22:07:12 +01002205 static int mib[4] = {CTL_KERN, KERN_PROC, KERN_PROC_PATHNAME, -1};
2206 size_t len = sizeof(buf) - 1;
2207
2208 *buf = '\0';
2209 if (!sysctl(mib, sizeof(mib)/sizeof(*mib), buf, &len, NULL, 0) &&
2210 *buf) {
2211 buf[sizeof(buf) - 1] = '\0';
Paul Brook5cea8592009-05-30 00:52:44 +01002212 p = buf;
2213 }
2214 }
2215#endif
2216 /* If we don't have any way of figuring out the actual executable
2217 location then try argv[0]. */
2218 if (!p) {
Jean-Christophe DUBOIS4d224192009-09-02 23:59:02 +02002219 p = realpath(argv0, buf);
Paul Brook5cea8592009-05-30 00:52:44 +01002220 if (!p) {
2221 return NULL;
2222 }
2223 }
2224 dir = dirname(p);
2225 dir = dirname(dir);
2226
Blue Swirl3a417592009-06-09 19:12:21 +00002227 max_len = strlen(dir) +
2228 MAX(strlen(SHARE_SUFFIX), strlen(BUILD_SUFFIX)) + 1;
2229 res = qemu_mallocz(max_len);
2230 snprintf(res, max_len, "%s%s", dir, SHARE_SUFFIX);
Paul Brook5cea8592009-05-30 00:52:44 +01002231 if (access(res, R_OK)) {
Blue Swirl3a417592009-06-09 19:12:21 +00002232 snprintf(res, max_len, "%s%s", dir, BUILD_SUFFIX);
Paul Brook5cea8592009-05-30 00:52:44 +01002233 if (access(res, R_OK)) {
2234 qemu_free(res);
2235 res = NULL;
2236 }
2237 }
Jean-Christophe DUBOIS4d224192009-09-02 23:59:02 +02002238
Paul Brook5cea8592009-05-30 00:52:44 +01002239 return res;
2240}
2241#undef SHARE_SUFFIX
2242#undef BUILD_SUFFIX
2243#endif
2244
2245char *qemu_find_file(int type, const char *name)
2246{
2247 int len;
2248 const char *subdir;
2249 char *buf;
2250
2251 /* If name contains path separators then try it as a straight path. */
2252 if ((strchr(name, '/') || strchr(name, '\\'))
2253 && access(name, R_OK) == 0) {
Jean-Christophe DUBOIS73ffc802009-09-02 23:59:06 +02002254 return qemu_strdup(name);
Paul Brook5cea8592009-05-30 00:52:44 +01002255 }
2256 switch (type) {
2257 case QEMU_FILE_TYPE_BIOS:
2258 subdir = "";
2259 break;
2260 case QEMU_FILE_TYPE_KEYMAP:
2261 subdir = "keymaps/";
2262 break;
2263 default:
2264 abort();
2265 }
2266 len = strlen(data_dir) + strlen(name) + strlen(subdir) + 2;
2267 buf = qemu_mallocz(len);
Blue Swirl3a417592009-06-09 19:12:21 +00002268 snprintf(buf, len, "%s/%s%s", data_dir, subdir, name);
Paul Brook5cea8592009-05-30 00:52:44 +01002269 if (access(buf, R_OK)) {
2270 qemu_free(buf);
2271 return NULL;
2272 }
2273 return buf;
2274}
2275
Markus Armbrusterff952ba2010-01-29 19:48:57 +01002276static int device_help_func(QemuOpts *opts, void *opaque)
2277{
2278 return qdev_device_help(opts);
2279}
2280
Gerd Hoffmannf31d07d2009-07-31 12:25:37 +02002281static int device_init_func(QemuOpts *opts, void *opaque)
2282{
2283 DeviceState *dev;
2284
2285 dev = qdev_device_add(opts);
2286 if (!dev)
2287 return -1;
2288 return 0;
2289}
2290
Gerd Hoffmann1a688d32009-12-08 13:11:36 +01002291static int chardev_init_func(QemuOpts *opts, void *opaque)
2292{
2293 CharDriverState *chr;
2294
2295 chr = qemu_chr_open_opts(opts, NULL);
2296 if (!chr)
2297 return -1;
2298 return 0;
2299}
2300
Gerd Hoffmann88589342009-12-08 13:11:50 +01002301static int mon_init_func(QemuOpts *opts, void *opaque)
2302{
2303 CharDriverState *chr;
2304 const char *chardev;
2305 const char *mode;
2306 int flags;
2307
2308 mode = qemu_opt_get(opts, "mode");
2309 if (mode == NULL) {
2310 mode = "readline";
2311 }
2312 if (strcmp(mode, "readline") == 0) {
2313 flags = MONITOR_USE_READLINE;
2314 } else if (strcmp(mode, "control") == 0) {
2315 flags = MONITOR_USE_CONTROL;
2316 } else {
2317 fprintf(stderr, "unknown monitor mode \"%s\"\n", mode);
2318 exit(1);
2319 }
2320
2321 if (qemu_opt_get_bool(opts, "default", 0))
2322 flags |= MONITOR_IS_DEFAULT;
2323
2324 chardev = qemu_opt_get(opts, "chardev");
2325 chr = qemu_chr_find(chardev);
2326 if (chr == NULL) {
2327 fprintf(stderr, "chardev \"%s\" not found\n", chardev);
2328 exit(1);
2329 }
2330
2331 monitor_init(chr, flags);
2332 return 0;
2333}
2334
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01002335static void monitor_parse(const char *optarg, const char *mode)
Gerd Hoffmann88589342009-12-08 13:11:50 +01002336{
2337 static int monitor_device_index = 0;
2338 QemuOpts *opts;
2339 const char *p;
2340 char label[32];
2341 int def = 0;
2342
2343 if (strstart(optarg, "chardev:", &p)) {
2344 snprintf(label, sizeof(label), "%s", p);
2345 } else {
2346 if (monitor_device_index) {
2347 snprintf(label, sizeof(label), "monitor%d",
2348 monitor_device_index);
2349 } else {
2350 snprintf(label, sizeof(label), "monitor");
2351 def = 1;
2352 }
2353 opts = qemu_chr_parse_compat(label, optarg);
2354 if (!opts) {
2355 fprintf(stderr, "parse error: %s\n", optarg);
2356 exit(1);
2357 }
2358 }
2359
2360 opts = qemu_opts_create(&qemu_mon_opts, label, 1);
2361 if (!opts) {
2362 fprintf(stderr, "duplicate chardev: %s\n", label);
2363 exit(1);
2364 }
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01002365 qemu_opt_set(opts, "mode", mode);
Gerd Hoffmann88589342009-12-08 13:11:50 +01002366 qemu_opt_set(opts, "chardev", label);
2367 if (def)
2368 qemu_opt_set(opts, "default", "on");
2369 monitor_device_index++;
2370}
2371
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002372struct device_config {
2373 enum {
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002374 DEV_USB, /* -usbdevice */
2375 DEV_BT, /* -bt */
2376 DEV_SERIAL, /* -serial */
2377 DEV_PARALLEL, /* -parallel */
2378 DEV_VIRTCON, /* -virtioconsole */
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08002379 DEV_DEBUGCON, /* -debugcon */
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002380 } type;
2381 const char *cmdline;
Blue Swirl72cf2d42009-09-12 07:36:22 +00002382 QTAILQ_ENTRY(device_config) next;
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002383};
Blue Swirl72cf2d42009-09-12 07:36:22 +00002384QTAILQ_HEAD(, device_config) device_configs = QTAILQ_HEAD_INITIALIZER(device_configs);
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002385
2386static void add_device_config(int type, const char *cmdline)
2387{
2388 struct device_config *conf;
2389
2390 conf = qemu_mallocz(sizeof(*conf));
2391 conf->type = type;
2392 conf->cmdline = cmdline;
Blue Swirl72cf2d42009-09-12 07:36:22 +00002393 QTAILQ_INSERT_TAIL(&device_configs, conf, next);
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002394}
2395
2396static int foreach_device_config(int type, int (*func)(const char *cmdline))
2397{
2398 struct device_config *conf;
2399 int rc;
2400
Blue Swirl72cf2d42009-09-12 07:36:22 +00002401 QTAILQ_FOREACH(conf, &device_configs, next) {
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002402 if (conf->type != type)
2403 continue;
2404 rc = func(conf->cmdline);
2405 if (0 != rc)
2406 return rc;
2407 }
2408 return 0;
2409}
2410
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01002411static int serial_parse(const char *devname)
2412{
2413 static int index = 0;
2414 char label[32];
2415
2416 if (strcmp(devname, "none") == 0)
2417 return 0;
2418 if (index == MAX_SERIAL_PORTS) {
2419 fprintf(stderr, "qemu: too many serial ports\n");
2420 exit(1);
2421 }
2422 snprintf(label, sizeof(label), "serial%d", index);
2423 serial_hds[index] = qemu_chr_open(label, devname, NULL);
2424 if (!serial_hds[index]) {
2425 fprintf(stderr, "qemu: could not open serial device '%s': %s\n",
2426 devname, strerror(errno));
2427 return -1;
2428 }
2429 index++;
2430 return 0;
2431}
2432
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01002433static int parallel_parse(const char *devname)
2434{
2435 static int index = 0;
2436 char label[32];
2437
2438 if (strcmp(devname, "none") == 0)
2439 return 0;
2440 if (index == MAX_PARALLEL_PORTS) {
2441 fprintf(stderr, "qemu: too many parallel ports\n");
2442 exit(1);
2443 }
2444 snprintf(label, sizeof(label), "parallel%d", index);
2445 parallel_hds[index] = qemu_chr_open(label, devname, NULL);
2446 if (!parallel_hds[index]) {
2447 fprintf(stderr, "qemu: could not open parallel device '%s': %s\n",
2448 devname, strerror(errno));
2449 return -1;
2450 }
2451 index++;
2452 return 0;
2453}
2454
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002455static int virtcon_parse(const char *devname)
2456{
2457 static int index = 0;
2458 char label[32];
Amit Shah392ecf52010-01-21 16:19:23 +05302459 QemuOpts *bus_opts, *dev_opts;
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002460
2461 if (strcmp(devname, "none") == 0)
2462 return 0;
2463 if (index == MAX_VIRTIO_CONSOLES) {
2464 fprintf(stderr, "qemu: too many virtio consoles\n");
2465 exit(1);
2466 }
Amit Shah392ecf52010-01-21 16:19:23 +05302467
2468 bus_opts = qemu_opts_create(&qemu_device_opts, NULL, 0);
2469 qemu_opt_set(bus_opts, "driver", "virtio-serial");
2470
2471 dev_opts = qemu_opts_create(&qemu_device_opts, NULL, 0);
2472 qemu_opt_set(dev_opts, "driver", "virtconsole");
2473
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002474 snprintf(label, sizeof(label), "virtcon%d", index);
2475 virtcon_hds[index] = qemu_chr_open(label, devname, NULL);
2476 if (!virtcon_hds[index]) {
2477 fprintf(stderr, "qemu: could not open virtio console '%s': %s\n",
2478 devname, strerror(errno));
2479 return -1;
2480 }
Amit Shah392ecf52010-01-21 16:19:23 +05302481 qemu_opt_set(dev_opts, "chardev", label);
2482
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01002483 index++;
2484 return 0;
2485}
2486
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08002487static int debugcon_parse(const char *devname)
2488{
2489 QemuOpts *opts;
2490
2491 if (!qemu_chr_open("debugcon", devname, NULL)) {
2492 exit(1);
2493 }
2494 opts = qemu_opts_create(&qemu_device_opts, "debugcon", 1);
2495 if (!opts) {
2496 fprintf(stderr, "qemu: already have a debugcon device\n");
2497 exit(1);
2498 }
2499 qemu_opt_set(opts, "driver", "isa-debugcon");
2500 qemu_opt_set(opts, "chardev", "debugcon");
2501 return 0;
2502}
2503
Anthony Liguori6530a972010-01-22 09:18:06 -06002504static const QEMUOption *lookup_opt(int argc, char **argv,
2505 const char **poptarg, int *poptind)
2506{
2507 const QEMUOption *popt;
2508 int optind = *poptind;
2509 char *r = argv[optind];
2510 const char *optarg;
2511
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +01002512 loc_set_cmdline(argv, optind, 1);
Anthony Liguori6530a972010-01-22 09:18:06 -06002513 optind++;
2514 /* Treat --foo the same as -foo. */
2515 if (r[1] == '-')
2516 r++;
2517 popt = qemu_options;
2518 for(;;) {
2519 if (!popt->name) {
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +01002520 error_report("invalid option");
Anthony Liguori6530a972010-01-22 09:18:06 -06002521 exit(1);
2522 }
2523 if (!strcmp(popt->name, r + 1))
2524 break;
2525 popt++;
2526 }
2527 if (popt->flags & HAS_ARG) {
2528 if (optind >= argc) {
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +01002529 error_report("requires an argument");
Anthony Liguori6530a972010-01-22 09:18:06 -06002530 exit(1);
2531 }
2532 optarg = argv[optind++];
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +01002533 loc_set_cmdline(argv, optind - 2, 2);
Anthony Liguori6530a972010-01-22 09:18:06 -06002534 } else {
2535 optarg = NULL;
2536 }
2537
2538 *poptarg = optarg;
2539 *poptind = optind;
2540
2541 return popt;
2542}
2543
malc902b3d52008-12-10 19:18:40 +00002544int main(int argc, char **argv, char **envp)
bellard0824d6f2003-06-24 13:42:40 +00002545{
aliguori59030a82009-04-05 18:43:41 +00002546 const char *gdbstub_dev = NULL;
thse4bcb142007-12-02 04:51:10 +00002547 int i;
Eduardo Habkostda1fcfd2010-04-06 19:22:07 -03002548 int snapshot, linux_boot;
Paolo Bonzini4e3de9e2010-03-10 11:38:48 +01002549 const char *icount_option = NULL;
bellard7f7f9872003-10-30 01:11:23 +00002550 const char *initrd_filename;
bellarda20dd502003-09-30 21:07:02 +00002551 const char *kernel_filename, *kernel_cmdline;
Anthony Liguori195325a2009-10-30 12:42:29 -05002552 char boot_devices[33] = "cad"; /* default to HD->floppy->CD-ROM */
aliguori3023f332009-01-16 19:04:14 +00002553 DisplayState *ds;
aliguori7d957bd2009-01-15 22:14:11 +00002554 DisplayChangeListener *dcl;
bellard46d47672004-11-16 01:45:27 +00002555 int cyls, heads, secs, translation;
Gerd Hoffmannf31d07d2009-07-31 12:25:37 +02002556 QemuOpts *hda_opts = NULL, *opts;
bellardcd6f1162004-05-13 22:02:20 +00002557 int optind;
Anthony Liguori6530a972010-01-22 09:18:06 -06002558 const char *optarg;
bellardd63d3072004-10-03 13:29:03 +00002559 const char *loadvm = NULL;
bellardcc1daa42005-06-05 14:49:17 +00002560 QEMUMachine *machine;
j_mayer94fc95c2007-03-05 19:44:02 +00002561 const char *cpu_model;
blueswir1b9e82a52009-04-05 18:03:31 +00002562#ifndef _WIN32
ths71e3ceb2006-12-22 02:11:31 +00002563 int fds[2];
blueswir1b9e82a52009-04-05 18:03:31 +00002564#endif
bellard26a5f132008-05-28 12:30:31 +00002565 int tb_size;
ths93815bc2007-03-19 15:58:31 +00002566 const char *pid_file = NULL;
aliguori5bb79102008-10-13 03:12:02 +00002567 const char *incoming = NULL;
blueswir1b9e82a52009-04-05 18:03:31 +00002568#ifndef _WIN32
aliguori54042bc2009-02-27 22:16:47 +00002569 int fd = 0;
2570 struct passwd *pwd = NULL;
aliguori08585322009-02-27 22:09:45 +00002571 const char *chroot_dir = NULL;
2572 const char *run_as = NULL;
blueswir1b9e82a52009-04-05 18:03:31 +00002573#endif
Anthony Liguori993fbfd2009-05-21 16:54:00 -05002574 int show_vnc_port = 0;
Anthony Liguori292444c2010-01-21 10:57:58 -06002575 int defconfig = 1;
bellard0bd48852005-11-11 00:00:47 +00002576
Markus Armbruster65abca02010-02-24 14:37:14 +01002577 error_set_progname(argv[0]);
2578
Jan Kiszka68752042009-09-15 13:36:04 +02002579 init_clocks();
2580
malc902b3d52008-12-10 19:18:40 +00002581 qemu_cache_utils_init(envp);
2582
Blue Swirl72cf2d42009-09-12 07:36:22 +00002583 QLIST_INIT (&vm_change_state_head);
bellardbe995c22006-06-25 16:25:21 +00002584#ifndef _WIN32
2585 {
2586 struct sigaction act;
2587 sigfillset(&act.sa_mask);
2588 act.sa_flags = 0;
2589 act.sa_handler = SIG_IGN;
2590 sigaction(SIGPIPE, &act, NULL);
2591 }
bellard3587d7e2006-06-26 20:03:44 +00002592#else
2593 SetConsoleCtrlHandler(qemu_ctrl_handler, TRUE);
bellarda8e5ac32006-07-14 09:36:13 +00002594 /* Note: cpu_interrupt() is currently not SMP safe, so we force
2595 QEMU to run on a single CPU */
2596 {
2597 HANDLE h;
2598 DWORD mask, smask;
2599 int i;
2600 h = GetCurrentProcess();
2601 if (GetProcessAffinityMask(h, &mask, &smask)) {
2602 for(i = 0; i < 32; i++) {
2603 if (mask & (1 << i))
2604 break;
2605 }
2606 if (i != 32) {
2607 mask = 1 << i;
2608 SetProcessAffinityMask(h, mask);
2609 }
2610 }
2611 }
bellard67b915a2004-03-31 23:37:16 +00002612#endif
bellardbe995c22006-06-25 16:25:21 +00002613
Anthony Liguorif80f9ec2009-05-20 18:38:09 -05002614 module_call_init(MODULE_INIT_MACHINE);
Anthony Liguori0c257432009-05-21 20:41:01 -05002615 machine = find_default_machine();
j_mayer94fc95c2007-03-05 19:44:02 +00002616 cpu_model = NULL;
bellardfc01f7e2003-06-30 10:03:06 +00002617 initrd_filename = NULL;
aurel324fc5d072008-04-27 21:39:40 +00002618 ram_size = 0;
bellard33e39632003-07-06 17:15:21 +00002619 snapshot = 0;
bellarda20dd502003-09-30 21:07:02 +00002620 kernel_filename = NULL;
2621 kernel_cmdline = "";
bellardc4b1fcc2004-03-14 21:44:30 +00002622 cyls = heads = secs = 0;
bellard46d47672004-11-16 01:45:27 +00002623 translation = BIOS_ATA_TRANSLATION_AUTO;
bellardc4b1fcc2004-03-14 21:44:30 +00002624
aliguori268a3622009-04-21 22:30:27 +00002625 for (i = 0; i < MAX_NODES; i++) {
2626 node_mem[i] = 0;
2627 node_cpumask[i] = 0;
2628 }
2629
aliguori268a3622009-04-21 22:30:27 +00002630 nb_numa_nodes = 0;
bellard7c9d8e02005-11-15 22:16:05 +00002631 nb_nics = 0;
ths3b46e622007-09-17 08:09:54 +00002632
bellard26a5f132008-05-28 12:30:31 +00002633 tb_size = 0;
blueswir141bd6392008-10-05 09:56:21 +00002634 autostart= 1;
2635
Anthony Liguori292444c2010-01-21 10:57:58 -06002636 /* first pass of option parsing */
2637 optind = 1;
2638 while (optind < argc) {
2639 if (argv[optind][0] != '-') {
2640 /* disk image */
Anthony Liguori28e68d62010-01-27 10:46:00 -06002641 optind++;
Anthony Liguori292444c2010-01-21 10:57:58 -06002642 continue;
2643 } else {
2644 const QEMUOption *popt;
2645
2646 popt = lookup_opt(argc, argv, &optarg, &optind);
2647 switch (popt->index) {
2648 case QEMU_OPTION_nodefconfig:
2649 defconfig=0;
2650 break;
2651 }
2652 }
2653 }
2654
2655 if (defconfig) {
Kevin Wolfdcfb0932010-03-05 17:25:55 +01002656 int ret;
Markus Armbrustercf5a65a2010-02-18 19:48:33 +01002657
Kevin Wolfdcfb0932010-03-05 17:25:55 +01002658 ret = qemu_read_config_file(CONFIG_QEMU_CONFDIR "/qemu.conf");
2659 if (ret == -EINVAL) {
2660 exit(1);
Anthony Liguori292444c2010-01-21 10:57:58 -06002661 }
2662
Kevin Wolfdcfb0932010-03-05 17:25:55 +01002663 ret = qemu_read_config_file(arch_config_name);
2664 if (ret == -EINVAL) {
2665 exit(1);
Anthony Liguori292444c2010-01-21 10:57:58 -06002666 }
2667 }
Blue Swirlde06f8d2010-03-29 19:23:50 +00002668 cpudef_init();
Anthony Liguori292444c2010-01-21 10:57:58 -06002669
2670 /* second pass of option parsing */
bellardcd6f1162004-05-13 22:02:20 +00002671 optind = 1;
bellard0824d6f2003-06-24 13:42:40 +00002672 for(;;) {
bellardcd6f1162004-05-13 22:02:20 +00002673 if (optind >= argc)
bellard0824d6f2003-06-24 13:42:40 +00002674 break;
Anthony Liguori6530a972010-01-22 09:18:06 -06002675 if (argv[optind][0] != '-') {
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02002676 hda_opts = drive_add(argv[optind++], HD_ALIAS, 0);
bellardcd6f1162004-05-13 22:02:20 +00002677 } else {
2678 const QEMUOption *popt;
2679
Anthony Liguori6530a972010-01-22 09:18:06 -06002680 popt = lookup_opt(argc, argv, &optarg, &optind);
Blue Swirlad960902010-03-29 19:23:52 +00002681 if (!(popt->arch_mask & arch_type)) {
2682 printf("Option %s not supported for this target\n", popt->name);
2683 exit(1);
2684 }
bellardcd6f1162004-05-13 22:02:20 +00002685 switch(popt->index) {
bellardcc1daa42005-06-05 14:49:17 +00002686 case QEMU_OPTION_M:
2687 machine = find_machine(optarg);
2688 if (!machine) {
2689 QEMUMachine *m;
2690 printf("Supported machines are:\n");
2691 for(m = first_machine; m != NULL; m = m->next) {
Mark McLoughlin3f6599e2009-07-22 10:02:50 +01002692 if (m->alias)
2693 printf("%-10s %s (alias of %s)\n",
2694 m->alias, m->desc, m->name);
bellardcc1daa42005-06-05 14:49:17 +00002695 printf("%-10s %s%s\n",
ths5fafdf22007-09-16 21:08:06 +00002696 m->name, m->desc,
Anthony Liguori0c257432009-05-21 20:41:01 -05002697 m->is_default ? " (default)" : "");
bellardcc1daa42005-06-05 14:49:17 +00002698 }
ths15f82202007-06-29 23:26:08 +00002699 exit(*optarg != '?');
bellardcc1daa42005-06-05 14:49:17 +00002700 }
2701 break;
j_mayer94fc95c2007-03-05 19:44:02 +00002702 case QEMU_OPTION_cpu:
2703 /* hw initialization will check this */
ths15f82202007-06-29 23:26:08 +00002704 if (*optarg == '?') {
j_mayerc732abe2007-10-12 06:47:46 +00002705/* XXX: implement xxx_cpu_list for targets that still miss it */
john cooperb5ec5ce2010-02-20 11:14:59 -06002706#if defined(cpu_list_id)
2707 cpu_list_id(stdout, &fprintf, optarg);
2708#elif defined(cpu_list)
2709 cpu_list(stdout, &fprintf); /* deprecated */
j_mayer94fc95c2007-03-05 19:44:02 +00002710#endif
ths15f82202007-06-29 23:26:08 +00002711 exit(0);
j_mayer94fc95c2007-03-05 19:44:02 +00002712 } else {
2713 cpu_model = optarg;
2714 }
2715 break;
bellardcd6f1162004-05-13 22:02:20 +00002716 case QEMU_OPTION_initrd:
bellardfc01f7e2003-06-30 10:03:06 +00002717 initrd_filename = optarg;
2718 break;
bellardcd6f1162004-05-13 22:02:20 +00002719 case QEMU_OPTION_hda:
thse4bcb142007-12-02 04:51:10 +00002720 if (cyls == 0)
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02002721 hda_opts = drive_add(optarg, HD_ALIAS, 0);
thse4bcb142007-12-02 04:51:10 +00002722 else
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02002723 hda_opts = drive_add(optarg, HD_ALIAS
thse4bcb142007-12-02 04:51:10 +00002724 ",cyls=%d,heads=%d,secs=%d%s",
balrog609497a2008-01-14 02:56:53 +00002725 0, cyls, heads, secs,
thse4bcb142007-12-02 04:51:10 +00002726 translation == BIOS_ATA_TRANSLATION_LBA ?
2727 ",trans=lba" :
2728 translation == BIOS_ATA_TRANSLATION_NONE ?
2729 ",trans=none" : "");
2730 break;
bellardcd6f1162004-05-13 22:02:20 +00002731 case QEMU_OPTION_hdb:
bellardcc1daa42005-06-05 14:49:17 +00002732 case QEMU_OPTION_hdc:
2733 case QEMU_OPTION_hdd:
balrog609497a2008-01-14 02:56:53 +00002734 drive_add(optarg, HD_ALIAS, popt->index - QEMU_OPTION_hda);
bellardfc01f7e2003-06-30 10:03:06 +00002735 break;
thse4bcb142007-12-02 04:51:10 +00002736 case QEMU_OPTION_drive:
balrog609497a2008-01-14 02:56:53 +00002737 drive_add(NULL, "%s", optarg);
thse4bcb142007-12-02 04:51:10 +00002738 break;
Gerd Hoffmannd058fe02009-07-31 12:25:36 +02002739 case QEMU_OPTION_set:
2740 if (qemu_set_option(optarg) != 0)
2741 exit(1);
2742 break;
Gerd Hoffmannd0fef6f2009-12-08 13:11:34 +01002743 case QEMU_OPTION_global:
2744 if (qemu_global_option(optarg) != 0)
2745 exit(1);
2746 break;
balrog3e3d5812007-04-30 02:09:25 +00002747 case QEMU_OPTION_mtdblock:
balrog609497a2008-01-14 02:56:53 +00002748 drive_add(optarg, MTD_ALIAS);
balrog3e3d5812007-04-30 02:09:25 +00002749 break;
pbrooka1bb27b2007-04-06 16:49:48 +00002750 case QEMU_OPTION_sd:
balrog609497a2008-01-14 02:56:53 +00002751 drive_add(optarg, SD_ALIAS);
pbrooka1bb27b2007-04-06 16:49:48 +00002752 break;
j_mayer86f55662007-04-24 06:52:59 +00002753 case QEMU_OPTION_pflash:
balrog609497a2008-01-14 02:56:53 +00002754 drive_add(optarg, PFLASH_ALIAS);
j_mayer86f55662007-04-24 06:52:59 +00002755 break;
bellardcd6f1162004-05-13 22:02:20 +00002756 case QEMU_OPTION_snapshot:
bellard33e39632003-07-06 17:15:21 +00002757 snapshot = 1;
2758 break;
bellardcd6f1162004-05-13 22:02:20 +00002759 case QEMU_OPTION_hdachs:
bellard330d0412003-07-26 18:11:40 +00002760 {
bellard330d0412003-07-26 18:11:40 +00002761 const char *p;
2762 p = optarg;
2763 cyls = strtol(p, (char **)&p, 0);
bellard46d47672004-11-16 01:45:27 +00002764 if (cyls < 1 || cyls > 16383)
2765 goto chs_fail;
bellard330d0412003-07-26 18:11:40 +00002766 if (*p != ',')
2767 goto chs_fail;
2768 p++;
2769 heads = strtol(p, (char **)&p, 0);
bellard46d47672004-11-16 01:45:27 +00002770 if (heads < 1 || heads > 16)
2771 goto chs_fail;
bellard330d0412003-07-26 18:11:40 +00002772 if (*p != ',')
2773 goto chs_fail;
2774 p++;
2775 secs = strtol(p, (char **)&p, 0);
bellard46d47672004-11-16 01:45:27 +00002776 if (secs < 1 || secs > 63)
2777 goto chs_fail;
2778 if (*p == ',') {
2779 p++;
2780 if (!strcmp(p, "none"))
2781 translation = BIOS_ATA_TRANSLATION_NONE;
2782 else if (!strcmp(p, "lba"))
2783 translation = BIOS_ATA_TRANSLATION_LBA;
2784 else if (!strcmp(p, "auto"))
2785 translation = BIOS_ATA_TRANSLATION_AUTO;
2786 else
2787 goto chs_fail;
2788 } else if (*p != '\0') {
bellardc4b1fcc2004-03-14 21:44:30 +00002789 chs_fail:
bellard46d47672004-11-16 01:45:27 +00002790 fprintf(stderr, "qemu: invalid physical CHS format\n");
2791 exit(1);
bellardc4b1fcc2004-03-14 21:44:30 +00002792 }
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02002793 if (hda_opts != NULL) {
2794 char num[16];
2795 snprintf(num, sizeof(num), "%d", cyls);
2796 qemu_opt_set(hda_opts, "cyls", num);
2797 snprintf(num, sizeof(num), "%d", heads);
2798 qemu_opt_set(hda_opts, "heads", num);
2799 snprintf(num, sizeof(num), "%d", secs);
2800 qemu_opt_set(hda_opts, "secs", num);
2801 if (translation == BIOS_ATA_TRANSLATION_LBA)
2802 qemu_opt_set(hda_opts, "trans", "lba");
2803 if (translation == BIOS_ATA_TRANSLATION_NONE)
2804 qemu_opt_set(hda_opts, "trans", "none");
2805 }
bellard330d0412003-07-26 18:11:40 +00002806 }
2807 break;
aliguori268a3622009-04-21 22:30:27 +00002808 case QEMU_OPTION_numa:
2809 if (nb_numa_nodes >= MAX_NODES) {
2810 fprintf(stderr, "qemu: too many NUMA nodes\n");
2811 exit(1);
2812 }
2813 numa_add(optarg);
2814 break;
bellardcd6f1162004-05-13 22:02:20 +00002815 case QEMU_OPTION_nographic:
Anthony Liguori993fbfd2009-05-21 16:54:00 -05002816 display_type = DT_NOGRAPHIC;
bellarda20dd502003-09-30 21:07:02 +00002817 break;
balrog4d3b6f62008-02-10 16:33:14 +00002818#ifdef CONFIG_CURSES
2819 case QEMU_OPTION_curses:
Anthony Liguori993fbfd2009-05-21 16:54:00 -05002820 display_type = DT_CURSES;
balrog4d3b6f62008-02-10 16:33:14 +00002821 break;
2822#endif
balroga171fe32007-04-30 01:48:07 +00002823 case QEMU_OPTION_portrait:
2824 graphic_rotate = 1;
2825 break;
bellardcd6f1162004-05-13 22:02:20 +00002826 case QEMU_OPTION_kernel:
bellarda20dd502003-09-30 21:07:02 +00002827 kernel_filename = optarg;
2828 break;
bellardcd6f1162004-05-13 22:02:20 +00002829 case QEMU_OPTION_append:
bellarda20dd502003-09-30 21:07:02 +00002830 kernel_cmdline = optarg;
bellard313aa562003-08-10 21:52:11 +00002831 break;
bellardcd6f1162004-05-13 22:02:20 +00002832 case QEMU_OPTION_cdrom:
balrog609497a2008-01-14 02:56:53 +00002833 drive_add(optarg, CDROM_ALIAS);
bellard36b486b2003-11-11 13:36:08 +00002834 break;
bellardcd6f1162004-05-13 22:02:20 +00002835 case QEMU_OPTION_boot:
j_mayer28c5af52007-11-11 01:50:45 +00002836 {
Jan Kiszkaef3adf62009-07-02 00:19:02 +02002837 static const char * const params[] = {
Jan Kiszka95387492009-07-02 00:19:02 +02002838 "order", "once", "menu", NULL
Jan Kiszkaef3adf62009-07-02 00:19:02 +02002839 };
2840 char buf[sizeof(boot_devices)];
Jan Kiszkae0f084b2009-07-02 00:19:02 +02002841 char *standard_boot_devices;
Jan Kiszkaef3adf62009-07-02 00:19:02 +02002842 int legacy = 0;
2843
2844 if (!strchr(optarg, '=')) {
2845 legacy = 1;
2846 pstrcpy(buf, sizeof(buf), optarg);
2847 } else if (check_params(buf, sizeof(buf), params, optarg) < 0) {
2848 fprintf(stderr,
2849 "qemu: unknown boot parameter '%s' in '%s'\n",
2850 buf, optarg);
2851 exit(1);
2852 }
2853
2854 if (legacy ||
2855 get_param_value(buf, sizeof(buf), "order", optarg)) {
Eduardo Habkost4e9e9d62010-04-06 19:22:08 -03002856 validate_bootdevices(buf);
Jan Kiszkaef3adf62009-07-02 00:19:02 +02002857 pstrcpy(boot_devices, sizeof(boot_devices), buf);
j_mayer28c5af52007-11-11 01:50:45 +00002858 }
Jan Kiszkae0f084b2009-07-02 00:19:02 +02002859 if (!legacy) {
2860 if (get_param_value(buf, sizeof(buf),
2861 "once", optarg)) {
Eduardo Habkost4e9e9d62010-04-06 19:22:08 -03002862 validate_bootdevices(buf);
Jan Kiszkae0f084b2009-07-02 00:19:02 +02002863 standard_boot_devices = qemu_strdup(boot_devices);
2864 pstrcpy(boot_devices, sizeof(boot_devices), buf);
2865 qemu_register_reset(restore_boot_devices,
2866 standard_boot_devices);
2867 }
Jan Kiszka95387492009-07-02 00:19:02 +02002868 if (get_param_value(buf, sizeof(buf),
2869 "menu", optarg)) {
2870 if (!strcmp(buf, "on")) {
2871 boot_menu = 1;
2872 } else if (!strcmp(buf, "off")) {
2873 boot_menu = 0;
2874 } else {
2875 fprintf(stderr,
2876 "qemu: invalid option value '%s'\n",
2877 buf);
2878 exit(1);
2879 }
2880 }
Jan Kiszkae0f084b2009-07-02 00:19:02 +02002881 }
bellard36b486b2003-11-11 13:36:08 +00002882 }
2883 break;
bellardcd6f1162004-05-13 22:02:20 +00002884 case QEMU_OPTION_fda:
bellardcd6f1162004-05-13 22:02:20 +00002885 case QEMU_OPTION_fdb:
balrog609497a2008-01-14 02:56:53 +00002886 drive_add(optarg, FD_ALIAS, popt->index - QEMU_OPTION_fda);
bellardc45886d2004-01-05 00:02:06 +00002887 break;
bellard52ca8d62006-06-14 16:03:05 +00002888 case QEMU_OPTION_no_fd_bootchk:
2889 fd_bootchk = 0;
2890 break;
Mark McLoughlina1ea4582009-10-08 19:58:26 +01002891 case QEMU_OPTION_netdev:
2892 if (net_client_parse(&qemu_netdev_opts, optarg) == -1) {
2893 exit(1);
2894 }
2895 break;
bellard7c9d8e02005-11-15 22:16:05 +00002896 case QEMU_OPTION_net:
Mark McLoughlin7f161aa2009-10-08 19:58:25 +01002897 if (net_client_parse(&qemu_net_opts, optarg) == -1) {
bellardc4b1fcc2004-03-14 21:44:30 +00002898 exit(1);
2899 }
bellard702c6512004-04-02 21:21:32 +00002900 break;
bellardc7f74642004-08-24 21:57:12 +00002901#ifdef CONFIG_SLIRP
2902 case QEMU_OPTION_tftp:
Jan Kiszkaad196a92009-06-24 14:42:28 +02002903 legacy_tftp_prefix = optarg;
bellard9bf05442004-08-25 22:12:49 +00002904 break;
ths47d5d012007-02-20 00:05:08 +00002905 case QEMU_OPTION_bootp:
Jan Kiszkaad196a92009-06-24 14:42:28 +02002906 legacy_bootp_filename = optarg;
ths47d5d012007-02-20 00:05:08 +00002907 break;
bellardc94c8d62004-09-13 21:37:34 +00002908#ifndef _WIN32
bellard9d728e82004-09-05 23:09:03 +00002909 case QEMU_OPTION_smb:
Markus Armbruster07527062009-10-06 12:16:57 +01002910 if (net_slirp_smb(optarg) < 0)
2911 exit(1);
bellard9d728e82004-09-05 23:09:03 +00002912 break;
bellardc94c8d62004-09-13 21:37:34 +00002913#endif
bellard9bf05442004-08-25 22:12:49 +00002914 case QEMU_OPTION_redir:
Markus Armbruster07527062009-10-06 12:16:57 +01002915 if (net_slirp_redir(optarg) < 0)
2916 exit(1);
bellard9bf05442004-08-25 22:12:49 +00002917 break;
bellardc7f74642004-08-24 21:57:12 +00002918#endif
balrogdc72ac12008-11-09 00:04:26 +00002919 case QEMU_OPTION_bt:
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02002920 add_device_config(DEV_BT, optarg);
balrogdc72ac12008-11-09 00:04:26 +00002921 break;
bellard1d14ffa2005-10-30 18:58:22 +00002922 case QEMU_OPTION_audio_help:
Blue Swirlad960902010-03-29 19:23:52 +00002923 if (!(audio_available())) {
2924 printf("Option %s not supported for this target\n", popt->name);
2925 exit(1);
2926 }
bellard1d14ffa2005-10-30 18:58:22 +00002927 AUD_help ();
2928 exit (0);
2929 break;
2930 case QEMU_OPTION_soundhw:
Blue Swirlad960902010-03-29 19:23:52 +00002931 if (!(audio_available())) {
2932 printf("Option %s not supported for this target\n", popt->name);
2933 exit(1);
2934 }
bellard1d14ffa2005-10-30 18:58:22 +00002935 select_soundhw (optarg);
2936 break;
bellardcd6f1162004-05-13 22:02:20 +00002937 case QEMU_OPTION_h:
ths15f82202007-06-29 23:26:08 +00002938 help(0);
bellardcd6f1162004-05-13 22:02:20 +00002939 break;
pbrook9bd7e6d2009-04-07 22:58:45 +00002940 case QEMU_OPTION_version:
2941 version();
2942 exit(0);
2943 break;
aurel3200f82b82008-04-27 21:12:55 +00002944 case QEMU_OPTION_m: {
2945 uint64_t value;
2946 char *ptr;
2947
2948 value = strtoul(optarg, &ptr, 10);
2949 switch (*ptr) {
2950 case 0: case 'M': case 'm':
2951 value <<= 20;
2952 break;
2953 case 'G': case 'g':
2954 value <<= 30;
2955 break;
2956 default:
2957 fprintf(stderr, "qemu: invalid ram size: %s\n", optarg);
bellardcd6f1162004-05-13 22:02:20 +00002958 exit(1);
2959 }
aurel3200f82b82008-04-27 21:12:55 +00002960
2961 /* On 32-bit hosts, QEMU is limited by virtual address space */
Anthony Liguori4a1418e2009-08-10 17:07:24 -05002962 if (value > (2047 << 20) && HOST_LONG_BITS == 32) {
aurel3200f82b82008-04-27 21:12:55 +00002963 fprintf(stderr, "qemu: at most 2047 MB RAM can be simulated\n");
2964 exit(1);
2965 }
Anthony Liguoric227f092009-10-01 16:12:16 -05002966 if (value != (uint64_t)(ram_addr_t)value) {
aurel3200f82b82008-04-27 21:12:55 +00002967 fprintf(stderr, "qemu: ram size too large\n");
2968 exit(1);
2969 }
2970 ram_size = value;
bellardcd6f1162004-05-13 22:02:20 +00002971 break;
aurel3200f82b82008-04-27 21:12:55 +00002972 }
Marcelo Tosattic9027602010-03-01 20:25:08 -03002973 case QEMU_OPTION_mempath:
2974 mem_path = optarg;
2975 break;
2976#ifdef MAP_POPULATE
2977 case QEMU_OPTION_mem_prealloc:
2978 mem_prealloc = 1;
2979 break;
2980#endif
bellardcd6f1162004-05-13 22:02:20 +00002981 case QEMU_OPTION_d:
Blue Swirlde06f8d2010-03-29 19:23:50 +00002982 set_cpu_log(optarg);
bellardcd6f1162004-05-13 22:02:20 +00002983 break;
bellardcd6f1162004-05-13 22:02:20 +00002984 case QEMU_OPTION_s:
aliguori59030a82009-04-05 18:43:41 +00002985 gdbstub_dev = "tcp::" DEFAULT_GDBSTUB_PORT;
bellardcd6f1162004-05-13 22:02:20 +00002986 break;
aliguori59030a82009-04-05 18:43:41 +00002987 case QEMU_OPTION_gdb:
2988 gdbstub_dev = optarg;
bellardcd6f1162004-05-13 22:02:20 +00002989 break;
bellardcd6f1162004-05-13 22:02:20 +00002990 case QEMU_OPTION_L:
Paul Brook5cea8592009-05-30 00:52:44 +01002991 data_dir = optarg;
bellardcd6f1162004-05-13 22:02:20 +00002992 break;
j_mayer1192dad2007-10-05 13:08:35 +00002993 case QEMU_OPTION_bios:
2994 bios_name = optarg;
2995 break;
aurel321b530a62009-04-05 20:08:59 +00002996 case QEMU_OPTION_singlestep:
2997 singlestep = 1;
2998 break;
bellardcd6f1162004-05-13 22:02:20 +00002999 case QEMU_OPTION_S:
pbrook3c07f8e2007-01-21 16:47:01 +00003000 autostart = 0;
bellardcd6f1162004-05-13 22:02:20 +00003001 break;
bellard3d11d0e2004-12-12 16:56:30 +00003002 case QEMU_OPTION_k:
3003 keyboard_layout = optarg;
3004 break;
bellardee22c2f2004-06-03 12:49:50 +00003005 case QEMU_OPTION_localtime:
3006 rtc_utc = 0;
3007 break;
malc3893c122008-09-28 00:42:05 +00003008 case QEMU_OPTION_vga:
3009 select_vgahw (optarg);
bellard1bfe8562004-07-08 21:17:50 +00003010 break;
bellarde9b137c2004-06-21 16:46:10 +00003011 case QEMU_OPTION_g:
3012 {
3013 const char *p;
3014 int w, h, depth;
3015 p = optarg;
3016 w = strtol(p, (char **)&p, 10);
3017 if (w <= 0) {
3018 graphic_error:
3019 fprintf(stderr, "qemu: invalid resolution or depth\n");
3020 exit(1);
3021 }
3022 if (*p != 'x')
3023 goto graphic_error;
3024 p++;
3025 h = strtol(p, (char **)&p, 10);
3026 if (h <= 0)
3027 goto graphic_error;
3028 if (*p == 'x') {
3029 p++;
3030 depth = strtol(p, (char **)&p, 10);
ths5fafdf22007-09-16 21:08:06 +00003031 if (depth != 8 && depth != 15 && depth != 16 &&
bellarde9b137c2004-06-21 16:46:10 +00003032 depth != 24 && depth != 32)
3033 goto graphic_error;
3034 } else if (*p == '\0') {
3035 depth = graphic_depth;
3036 } else {
3037 goto graphic_error;
3038 }
ths3b46e622007-09-17 08:09:54 +00003039
bellarde9b137c2004-06-21 16:46:10 +00003040 graphic_width = w;
3041 graphic_height = h;
3042 graphic_depth = depth;
3043 }
3044 break;
ths20d8a3e2007-02-18 17:04:49 +00003045 case QEMU_OPTION_echr:
3046 {
3047 char *r;
3048 term_escape_char = strtol(optarg, &r, 0);
3049 if (r == optarg)
3050 printf("Bad argument to echr\n");
3051 break;
3052 }
bellard82c643f2004-07-14 17:28:13 +00003053 case QEMU_OPTION_monitor:
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01003054 monitor_parse(optarg, "readline");
3055 default_monitor = 0;
3056 break;
3057 case QEMU_OPTION_qmp:
3058 monitor_parse(optarg, "control");
Anthony Liguori2d114dc2010-03-21 14:14:38 -05003059 default_monitor = 0;
bellard82c643f2004-07-14 17:28:13 +00003060 break;
Gerd Hoffmann22a0e042009-12-08 13:11:51 +01003061 case QEMU_OPTION_mon:
Markus Armbruster8212c642010-02-10 19:52:18 +01003062 opts = qemu_opts_parse(&qemu_mon_opts, optarg, 1);
Gerd Hoffmann22a0e042009-12-08 13:11:51 +01003063 if (!opts) {
Gerd Hoffmann22a0e042009-12-08 13:11:51 +01003064 exit(1);
3065 }
Anthony Liguori2d114dc2010-03-21 14:14:38 -05003066 default_monitor = 0;
Gerd Hoffmann22a0e042009-12-08 13:11:51 +01003067 break;
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003068 case QEMU_OPTION_chardev:
Markus Armbruster8212c642010-02-10 19:52:18 +01003069 opts = qemu_opts_parse(&qemu_chardev_opts, optarg, 1);
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003070 if (!opts) {
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003071 exit(1);
3072 }
Gerd Hoffmann191bc012009-09-10 10:58:35 +02003073 break;
bellard82c643f2004-07-14 17:28:13 +00003074 case QEMU_OPTION_serial:
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01003075 add_device_config(DEV_SERIAL, optarg);
3076 default_serial = 0;
Jan Kiszka18141ed2010-03-07 11:28:40 +01003077 if (strncmp(optarg, "mon:", 4) == 0) {
3078 default_monitor = 0;
3079 }
bellard82c643f2004-07-14 17:28:13 +00003080 break;
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01003081 case QEMU_OPTION_watchdog:
Markus Armbruster09aaa162009-08-21 10:31:34 +02003082 if (watchdog) {
3083 fprintf(stderr,
3084 "qemu: only one watchdog option may be given\n");
3085 return 1;
3086 }
3087 watchdog = optarg;
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01003088 break;
3089 case QEMU_OPTION_watchdog_action:
3090 if (select_watchdog_action(optarg) == -1) {
3091 fprintf(stderr, "Unknown -watchdog-action parameter\n");
3092 exit(1);
3093 }
3094 break;
aliguori51ecf132009-01-15 20:06:40 +00003095 case QEMU_OPTION_virtiocon:
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01003096 add_device_config(DEV_VIRTCON, optarg);
3097 default_virtcon = 0;
Jan Kiszka18141ed2010-03-07 11:28:40 +01003098 if (strncmp(optarg, "mon:", 4) == 0) {
3099 default_monitor = 0;
3100 }
aliguori51ecf132009-01-15 20:06:40 +00003101 break;
bellard6508fe52005-01-15 12:02:56 +00003102 case QEMU_OPTION_parallel:
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01003103 add_device_config(DEV_PARALLEL, optarg);
3104 default_parallel = 0;
Jan Kiszka18141ed2010-03-07 11:28:40 +01003105 if (strncmp(optarg, "mon:", 4) == 0) {
3106 default_monitor = 0;
3107 }
bellard6508fe52005-01-15 12:02:56 +00003108 break;
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08003109 case QEMU_OPTION_debugcon:
3110 add_device_config(DEV_DEBUGCON, optarg);
3111 break;
bellardd63d3072004-10-03 13:29:03 +00003112 case QEMU_OPTION_loadvm:
3113 loadvm = optarg;
3114 break;
3115 case QEMU_OPTION_full_screen:
3116 full_screen = 1;
3117 break;
ths667acca2006-12-11 02:08:05 +00003118#ifdef CONFIG_SDL
ths43523e92007-02-18 18:19:32 +00003119 case QEMU_OPTION_no_frame:
3120 no_frame = 1;
3121 break;
ths3780e192007-06-21 21:08:02 +00003122 case QEMU_OPTION_alt_grab:
3123 alt_grab = 1;
3124 break;
Dustin Kirkland0ca9f8a2009-09-17 15:48:04 -05003125 case QEMU_OPTION_ctrl_grab:
3126 ctrl_grab = 1;
3127 break;
ths667acca2006-12-11 02:08:05 +00003128 case QEMU_OPTION_no_quit:
3129 no_quit = 1;
3130 break;
aliguori7d957bd2009-01-15 22:14:11 +00003131 case QEMU_OPTION_sdl:
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003132 display_type = DT_SDL;
aliguori7d957bd2009-01-15 22:14:11 +00003133 break;
ths667acca2006-12-11 02:08:05 +00003134#endif
bellardf7cce892004-12-08 22:21:25 +00003135 case QEMU_OPTION_pidfile:
ths93815bc2007-03-19 15:58:31 +00003136 pid_file = optarg;
bellardf7cce892004-12-08 22:21:25 +00003137 break;
bellarda09db212005-04-30 16:10:35 +00003138 case QEMU_OPTION_win2k_hack:
3139 win2k_install_hack = 1;
3140 break;
aliguori73822ec2009-01-15 20:11:34 +00003141 case QEMU_OPTION_rtc_td_hack:
3142 rtc_td_hack = 1;
3143 break;
aliguori8a92ea22009-02-27 20:12:36 +00003144 case QEMU_OPTION_acpitable:
Blue Swirlde06f8d2010-03-29 19:23:50 +00003145 do_acpitable_option(optarg);
aliguori8a92ea22009-02-27 20:12:36 +00003146 break;
aliguorib6f6e3d2009-04-17 18:59:56 +00003147 case QEMU_OPTION_smbios:
Blue Swirlde06f8d2010-03-29 19:23:50 +00003148 do_smbios_option(optarg);
aliguorib6f6e3d2009-04-17 18:59:56 +00003149 break;
aliguori7ba1e612008-11-05 16:04:33 +00003150 case QEMU_OPTION_enable_kvm:
3151 kvm_allowed = 1;
aliguori7ba1e612008-11-05 16:04:33 +00003152 break;
bellardbb36d472005-11-05 14:22:28 +00003153 case QEMU_OPTION_usb:
3154 usb_enabled = 1;
3155 break;
bellarda594cfb2005-11-06 16:13:29 +00003156 case QEMU_OPTION_usbdevice:
3157 usb_enabled = 1;
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02003158 add_device_config(DEV_USB, optarg);
3159 break;
3160 case QEMU_OPTION_device:
Markus Armbruster8212c642010-02-10 19:52:18 +01003161 if (!qemu_opts_parse(&qemu_device_opts, optarg, 1)) {
Gerd Hoffmannf31d07d2009-07-31 12:25:37 +02003162 exit(1);
3163 }
bellarda594cfb2005-11-06 16:13:29 +00003164 break;
bellard6a00d602005-11-21 23:25:50 +00003165 case QEMU_OPTION_smp:
Andre Przywaradc6b1c02009-08-19 15:42:40 +02003166 smp_parse(optarg);
aliguorib2097002008-10-07 20:39:39 +00003167 if (smp_cpus < 1) {
bellard6a00d602005-11-21 23:25:50 +00003168 fprintf(stderr, "Invalid number of CPUs\n");
3169 exit(1);
3170 }
Jes Sorensen6be68d72009-07-23 17:03:42 +02003171 if (max_cpus < smp_cpus) {
3172 fprintf(stderr, "maxcpus must be equal to or greater than "
3173 "smp\n");
3174 exit(1);
3175 }
3176 if (max_cpus > 255) {
3177 fprintf(stderr, "Unsupported number of maxcpus\n");
3178 exit(1);
3179 }
bellard6a00d602005-11-21 23:25:50 +00003180 break;
bellard24236862006-04-30 21:28:36 +00003181 case QEMU_OPTION_vnc:
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003182 display_type = DT_VNC;
ths73fc9742006-12-22 02:09:07 +00003183 vnc_display = optarg;
bellard24236862006-04-30 21:28:36 +00003184 break;
bellard6515b202006-05-03 22:02:44 +00003185 case QEMU_OPTION_no_acpi:
3186 acpi_enabled = 0;
3187 break;
aliguori16b29ae2008-12-17 23:28:44 +00003188 case QEMU_OPTION_no_hpet:
3189 no_hpet = 1;
3190 break;
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02003191 case QEMU_OPTION_balloon:
3192 if (balloon_parse(optarg) < 0) {
3193 fprintf(stderr, "Unknown -balloon argument %s\n", optarg);
3194 exit(1);
3195 }
Eduardo Habkostdf97b922009-06-10 16:34:08 -03003196 break;
bellardd1beab82006-10-02 19:44:22 +00003197 case QEMU_OPTION_no_reboot:
3198 no_reboot = 1;
3199 break;
aurel32b2f76162008-04-11 21:35:52 +00003200 case QEMU_OPTION_no_shutdown:
3201 no_shutdown = 1;
3202 break;
balrog9467cd42007-05-01 01:34:14 +00003203 case QEMU_OPTION_show_cursor:
3204 cursor_hide = 0;
3205 break;
blueswir18fcb1b92008-09-18 18:29:08 +00003206 case QEMU_OPTION_uuid:
3207 if(qemu_uuid_parse(optarg, qemu_uuid) < 0) {
3208 fprintf(stderr, "Fail to parse UUID string."
3209 " Wrong format.\n");
3210 exit(1);
3211 }
3212 break;
blueswir15824d652009-03-28 06:44:27 +00003213#ifndef _WIN32
ths71e3ceb2006-12-22 02:11:31 +00003214 case QEMU_OPTION_daemonize:
3215 daemonize = 1;
3216 break;
blueswir15824d652009-03-28 06:44:27 +00003217#endif
ths9ae02552007-01-05 17:39:04 +00003218 case QEMU_OPTION_option_rom:
3219 if (nb_option_roms >= MAX_OPTION_ROMS) {
3220 fprintf(stderr, "Too many option ROMs\n");
3221 exit(1);
3222 }
3223 option_rom[nb_option_roms] = optarg;
3224 nb_option_roms++;
3225 break;
pbrook8e716212007-01-20 17:12:09 +00003226 case QEMU_OPTION_semihosting:
3227 semihosting_enabled = 1;
3228 break;
thsc35734b2007-03-19 15:17:08 +00003229 case QEMU_OPTION_name:
Andi Kleen18894652009-07-02 09:34:17 +02003230 qemu_name = qemu_strdup(optarg);
3231 {
3232 char *p = strchr(qemu_name, ',');
3233 if (p != NULL) {
3234 *p++ = 0;
3235 if (strncmp(p, "process=", 8)) {
3236 fprintf(stderr, "Unknown subargument %s to -name", p);
3237 exit(1);
3238 }
3239 p += 8;
3240 set_proc_name(p);
3241 }
3242 }
thsc35734b2007-03-19 15:17:08 +00003243 break;
blueswir166508602007-05-01 14:16:52 +00003244 case QEMU_OPTION_prom_env:
3245 if (nb_prom_envs >= MAX_PROM_ENVS) {
3246 fprintf(stderr, "Too many prom variables\n");
3247 exit(1);
3248 }
3249 prom_envs[nb_prom_envs] = optarg;
3250 nb_prom_envs++;
3251 break;
balrog2b8f2d42007-07-27 22:08:46 +00003252 case QEMU_OPTION_old_param:
3253 old_param = 1;
ths05ebd532008-01-08 19:32:16 +00003254 break;
thsf3dcfad2007-08-24 01:26:02 +00003255 case QEMU_OPTION_clock:
3256 configure_alarms(optarg);
3257 break;
bellard7e0af5d02007-11-07 16:24:33 +00003258 case QEMU_OPTION_startdate:
Jan Kiszka1ed2fc12009-09-15 13:36:04 +02003259 configure_rtc_date_offset(optarg, 1);
3260 break;
3261 case QEMU_OPTION_rtc:
Markus Armbruster8212c642010-02-10 19:52:18 +01003262 opts = qemu_opts_parse(&qemu_rtc_opts, optarg, 0);
Jan Kiszka1ed2fc12009-09-15 13:36:04 +02003263 if (!opts) {
Jan Kiszka1ed2fc12009-09-15 13:36:04 +02003264 exit(1);
bellard7e0af5d02007-11-07 16:24:33 +00003265 }
Jan Kiszka1ed2fc12009-09-15 13:36:04 +02003266 configure_rtc(opts);
bellard7e0af5d02007-11-07 16:24:33 +00003267 break;
bellard26a5f132008-05-28 12:30:31 +00003268 case QEMU_OPTION_tb_size:
3269 tb_size = strtol(optarg, NULL, 0);
3270 if (tb_size < 0)
3271 tb_size = 0;
3272 break;
pbrook2e70f6e2008-06-29 01:03:05 +00003273 case QEMU_OPTION_icount:
Paolo Bonzini4e3de9e2010-03-10 11:38:48 +01003274 icount_option = optarg;
pbrook2e70f6e2008-06-29 01:03:05 +00003275 break;
aliguori5bb79102008-10-13 03:12:02 +00003276 case QEMU_OPTION_incoming:
3277 incoming = optarg;
3278 break;
Gerd Hoffmannd8c208d2009-12-08 13:11:46 +01003279 case QEMU_OPTION_nodefaults:
3280 default_serial = 0;
3281 default_parallel = 0;
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01003282 default_virtcon = 0;
Gerd Hoffmannd8c208d2009-12-08 13:11:46 +01003283 default_monitor = 0;
3284 default_vga = 0;
Gerd Hoffmanncb4522c2009-12-08 13:11:47 +01003285 default_net = 0;
Gerd Hoffmannac33f8f2009-12-16 14:25:39 +01003286 default_floppy = 0;
3287 default_cdrom = 0;
3288 default_sdcard = 0;
Gerd Hoffmannd8c208d2009-12-08 13:11:46 +01003289 break;
blueswir15824d652009-03-28 06:44:27 +00003290#ifndef _WIN32
aliguori08585322009-02-27 22:09:45 +00003291 case QEMU_OPTION_chroot:
3292 chroot_dir = optarg;
3293 break;
3294 case QEMU_OPTION_runas:
3295 run_as = optarg;
3296 break;
blueswir15824d652009-03-28 06:44:27 +00003297#endif
aliguorie37630c2009-04-22 15:19:10 +00003298 case QEMU_OPTION_xen_domid:
Blue Swirlad960902010-03-29 19:23:52 +00003299 if (!(xen_available())) {
3300 printf("Option %s not supported for this target\n", popt->name);
3301 exit(1);
3302 }
aliguorie37630c2009-04-22 15:19:10 +00003303 xen_domid = atoi(optarg);
3304 break;
3305 case QEMU_OPTION_xen_create:
Blue Swirlad960902010-03-29 19:23:52 +00003306 if (!(xen_available())) {
3307 printf("Option %s not supported for this target\n", popt->name);
3308 exit(1);
3309 }
aliguorie37630c2009-04-22 15:19:10 +00003310 xen_mode = XEN_CREATE;
3311 break;
3312 case QEMU_OPTION_xen_attach:
Blue Swirlad960902010-03-29 19:23:52 +00003313 if (!(xen_available())) {
3314 printf("Option %s not supported for this target\n", popt->name);
3315 exit(1);
3316 }
aliguorie37630c2009-04-22 15:19:10 +00003317 xen_mode = XEN_ATTACH;
3318 break;
Gerd Hoffmann715a6642009-10-14 10:39:28 +02003319 case QEMU_OPTION_readconfig:
3320 {
Kevin Wolfdcfb0932010-03-05 17:25:55 +01003321 int ret = qemu_read_config_file(optarg);
3322 if (ret < 0) {
3323 fprintf(stderr, "read config %s: %s\n", optarg,
3324 strerror(-ret));
Gerd Hoffmann715a6642009-10-14 10:39:28 +02003325 exit(1);
3326 }
Gerd Hoffmann715a6642009-10-14 10:39:28 +02003327 break;
3328 }
3329 case QEMU_OPTION_writeconfig:
3330 {
3331 FILE *fp;
3332 if (strcmp(optarg, "-") == 0) {
3333 fp = stdout;
3334 } else {
3335 fp = fopen(optarg, "w");
3336 if (fp == NULL) {
3337 fprintf(stderr, "open %s: %s\n", optarg, strerror(errno));
3338 exit(1);
3339 }
3340 }
3341 qemu_config_write(fp);
3342 fclose(fp);
3343 break;
3344 }
bellardcd6f1162004-05-13 22:02:20 +00003345 }
bellard0824d6f2003-06-24 13:42:40 +00003346 }
3347 }
Markus Armbruster0f0bc3f2010-02-18 20:13:51 +01003348 loc_set_none();
bellard330d0412003-07-26 18:11:40 +00003349
Paul Brook5cea8592009-05-30 00:52:44 +01003350 /* If no data_dir is specified then try to find it relative to the
3351 executable path. */
3352 if (!data_dir) {
3353 data_dir = find_datadir(argv[0]);
3354 }
3355 /* If all else fails use the install patch specified when building. */
3356 if (!data_dir) {
3357 data_dir = CONFIG_QEMU_SHAREDIR;
3358 }
3359
Jes Sorensen6be68d72009-07-23 17:03:42 +02003360 /*
3361 * Default to max_cpus = smp_cpus, in case the user doesn't
3362 * specify a max_cpus value.
3363 */
3364 if (!max_cpus)
3365 max_cpus = smp_cpus;
3366
balrog3d878ca2008-10-28 10:59:59 +00003367 machine->max_cpus = machine->max_cpus ?: 1; /* Default to UP */
aliguorib2097002008-10-07 20:39:39 +00003368 if (smp_cpus > machine->max_cpus) {
3369 fprintf(stderr, "Number of SMP cpus requested (%d), exceeds max cpus "
3370 "supported by machine `%s' (%d)\n", smp_cpus, machine->name,
3371 machine->max_cpus);
3372 exit(1);
3373 }
3374
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01003375 qemu_opts_foreach(&qemu_device_opts, default_driver_check, NULL, 0);
Gerd Hoffmannd8bcbab2009-12-16 14:25:40 +01003376 qemu_opts_foreach(&qemu_global_opts, default_driver_check, NULL, 0);
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01003377
Gerd Hoffmann986c5f72009-12-08 13:11:54 +01003378 if (machine->no_serial) {
3379 default_serial = 0;
3380 }
3381 if (machine->no_parallel) {
3382 default_parallel = 0;
3383 }
3384 if (!machine->use_virtcon) {
3385 default_virtcon = 0;
3386 }
3387 if (machine->no_vga) {
3388 default_vga = 0;
3389 }
Gerd Hoffmannac33f8f2009-12-16 14:25:39 +01003390 if (machine->no_floppy) {
3391 default_floppy = 0;
3392 }
3393 if (machine->no_cdrom) {
3394 default_cdrom = 0;
3395 }
3396 if (machine->no_sdcard) {
3397 default_sdcard = 0;
3398 }
Gerd Hoffmann986c5f72009-12-08 13:11:54 +01003399
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003400 if (display_type == DT_NOGRAPHIC) {
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01003401 if (default_parallel)
3402 add_device_config(DEV_PARALLEL, "null");
Gerd Hoffmanne1c09172009-12-08 13:11:44 +01003403 if (default_serial && default_monitor) {
3404 add_device_config(DEV_SERIAL, "mon:stdio");
Gerd Hoffmann986c5f72009-12-08 13:11:54 +01003405 } else if (default_virtcon && default_monitor) {
3406 add_device_config(DEV_VIRTCON, "mon:stdio");
Gerd Hoffmanne1c09172009-12-08 13:11:44 +01003407 } else {
3408 if (default_serial)
3409 add_device_config(DEV_SERIAL, "stdio");
Gerd Hoffmann986c5f72009-12-08 13:11:54 +01003410 if (default_virtcon)
3411 add_device_config(DEV_VIRTCON, "stdio");
Gerd Hoffmanne1c09172009-12-08 13:11:44 +01003412 if (default_monitor)
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01003413 monitor_parse("stdio", "readline");
Gerd Hoffmanne1c09172009-12-08 13:11:44 +01003414 }
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01003415 } else {
3416 if (default_serial)
3417 add_device_config(DEV_SERIAL, "vc:80Cx24C");
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01003418 if (default_parallel)
3419 add_device_config(DEV_PARALLEL, "vc:80Cx24C");
Gerd Hoffmannabdeed02009-12-08 13:11:43 +01003420 if (default_monitor)
Gerd Hoffmann6ca55822009-12-08 13:11:52 +01003421 monitor_parse("vc:80Cx24C", "readline");
Alexander Graf38536da2009-12-17 13:06:08 +01003422 if (default_virtcon)
3423 add_device_config(DEV_VIRTCON, "vc:80Cx24C");
aliguoribc0129d2008-08-01 15:12:34 +00003424 }
Gerd Hoffmann64465292009-12-08 13:11:45 +01003425 if (default_vga)
3426 vga_interface_type = VGA_CIRRUS;
aliguoribc0129d2008-08-01 15:12:34 +00003427
Gerd Hoffmann1a688d32009-12-08 13:11:36 +01003428 if (qemu_opts_foreach(&qemu_chardev_opts, chardev_init_func, NULL, 1) != 0)
3429 exit(1);
3430
ths71e3ceb2006-12-22 02:11:31 +00003431#ifndef _WIN32
ths71e3ceb2006-12-22 02:11:31 +00003432 if (daemonize) {
3433 pid_t pid;
3434
3435 if (pipe(fds) == -1)
3436 exit(1);
3437
3438 pid = fork();
3439 if (pid > 0) {
3440 uint8_t status;
3441 ssize_t len;
3442
3443 close(fds[1]);
3444
3445 again:
ths93815bc2007-03-19 15:58:31 +00003446 len = read(fds[0], &status, 1);
3447 if (len == -1 && (errno == EINTR))
3448 goto again;
3449
3450 if (len != 1)
3451 exit(1);
3452 else if (status == 1) {
Justin M. Forbes850810d2009-10-01 09:42:56 -05003453 fprintf(stderr, "Could not acquire pidfile: %s\n", strerror(errno));
ths93815bc2007-03-19 15:58:31 +00003454 exit(1);
3455 } else
3456 exit(0);
ths71e3ceb2006-12-22 02:11:31 +00003457 } else if (pid < 0)
ths93815bc2007-03-19 15:58:31 +00003458 exit(1);
ths71e3ceb2006-12-22 02:11:31 +00003459
Kevin Wolf40ff6d72009-12-02 12:24:42 +01003460 close(fds[0]);
3461 qemu_set_cloexec(fds[1]);
3462
ths71e3ceb2006-12-22 02:11:31 +00003463 setsid();
3464
3465 pid = fork();
3466 if (pid > 0)
3467 exit(0);
3468 else if (pid < 0)
3469 exit(1);
3470
3471 umask(027);
ths71e3ceb2006-12-22 02:11:31 +00003472
3473 signal(SIGTSTP, SIG_IGN);
3474 signal(SIGTTOU, SIG_IGN);
3475 signal(SIGTTIN, SIG_IGN);
3476 }
Juha Riihimäki099fe232009-12-03 15:56:03 +02003477#endif
ths71e3ceb2006-12-22 02:11:31 +00003478
thsaa26bb22007-03-25 21:33:06 +00003479 if (pid_file && qemu_create_pidfile(pid_file) != 0) {
Juha Riihimäki099fe232009-12-03 15:56:03 +02003480#ifndef _WIN32
ths93815bc2007-03-19 15:58:31 +00003481 if (daemonize) {
3482 uint8_t status = 1;
Kirill A. Shutemovdc330e22010-01-20 00:56:18 +01003483 if (write(fds[1], &status, 1) != 1) {
3484 perror("daemonize. Writing to pipe\n");
3485 }
ths93815bc2007-03-19 15:58:31 +00003486 } else
Juha Riihimäki099fe232009-12-03 15:56:03 +02003487#endif
Justin M. Forbes850810d2009-10-01 09:42:56 -05003488 fprintf(stderr, "Could not acquire pid file: %s\n", strerror(errno));
ths93815bc2007-03-19 15:58:31 +00003489 exit(1);
3490 }
3491
Paolo Bonzini98c85732010-04-19 18:59:30 +00003492 if (kvm_allowed) {
3493 int ret = kvm_init(smp_cpus);
Marcelo Tosatti214910a2009-09-18 02:41:23 -03003494 if (ret < 0) {
Paolo Bonzini98c85732010-04-19 18:59:30 +00003495 if (!kvm_available()) {
3496 printf("KVM not supported for this target\n");
3497 } else {
3498 fprintf(stderr, "failed to initialize KVM: %s\n", strerror(-ret));
3499 }
Marcelo Tosatti214910a2009-09-18 02:41:23 -03003500 exit(1);
3501 }
3502 }
3503
aliguori3fcf7b62009-04-24 18:03:25 +00003504 if (qemu_init_main_loop()) {
3505 fprintf(stderr, "qemu_init_main_loop failed\n");
3506 exit(1);
3507 }
bellarda20dd502003-09-30 21:07:02 +00003508 linux_boot = (kernel_filename != NULL);
balrog6c41b272007-11-17 12:12:29 +00003509
thsf8d39c02008-07-03 10:01:15 +00003510 if (!linux_boot && *kernel_cmdline != '\0') {
3511 fprintf(stderr, "-append only allowed with -kernel option\n");
3512 exit(1);
3513 }
3514
3515 if (!linux_boot && initrd_filename != NULL) {
3516 fprintf(stderr, "-initrd only allowed with -kernel option\n");
3517 exit(1);
3518 }
3519
Filip Navarabf65f532009-07-27 10:02:04 -05003520#ifndef _WIN32
3521 /* Win32 doesn't support line-buffering and requires size >= 2 */
bellardb118d612003-06-30 23:36:21 +00003522 setvbuf(stdout, NULL, _IOLBF, 0);
Filip Navarabf65f532009-07-27 10:02:04 -05003523#endif
ths3b46e622007-09-17 08:09:54 +00003524
aliguori7183b4b2008-11-05 20:40:18 +00003525 if (init_timer_alarm() < 0) {
3526 fprintf(stderr, "could not initialize alarm timer\n");
3527 exit(1);
3528 }
Paolo Bonzini4e3de9e2010-03-10 11:38:48 +01003529 configure_icount(icount_option);
pbrook634fce92006-07-15 17:40:09 +00003530
bellardfd1dff42006-02-01 21:29:26 +00003531 socket_init();
bellardfd1dff42006-02-01 21:29:26 +00003532
Mark McLoughlindc1c9fe2009-10-06 12:17:16 +01003533 if (net_init_clients() < 0) {
3534 exit(1);
bellard702c6512004-04-02 21:21:32 +00003535 }
bellardf1510b22003-06-25 00:07:40 +00003536
balrogdc72ac12008-11-09 00:04:26 +00003537 /* init the bluetooth world */
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02003538 if (foreach_device_config(DEV_BT, bt_parse))
3539 exit(1);
balrogdc72ac12008-11-09 00:04:26 +00003540
bellard0824d6f2003-06-24 13:42:40 +00003541 /* init the memory */
pbrook94a6b542009-04-11 17:15:54 +00003542 if (ram_size == 0)
3543 ram_size = DEFAULT_RAM_SIZE * 1024 * 1024;
balrog7fb4fdc2008-04-24 17:59:27 +00003544
bellard26a5f132008-05-28 12:30:31 +00003545 /* init the dynamic translator */
3546 cpu_exec_init_all(tb_size * 1024 * 1024);
3547
Markus Armbrustereb852012009-10-27 18:41:44 +01003548 bdrv_init_with_whitelist();
thse4bcb142007-12-02 04:51:10 +00003549
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02003550 blk_mig_init();
3551
Gerd Hoffmannac33f8f2009-12-16 14:25:39 +01003552 if (default_cdrom) {
Gerd Hoffmannaa40fc92009-12-08 13:11:48 +01003553 /* we always create the cdrom drive, even if no disk is there */
3554 drive_add(NULL, CDROM_ALIAS);
Gerd Hoffmannac33f8f2009-12-16 14:25:39 +01003555 }
thse4bcb142007-12-02 04:51:10 +00003556
Gerd Hoffmannac33f8f2009-12-16 14:25:39 +01003557 if (default_floppy) {
Gerd Hoffmannaa40fc92009-12-08 13:11:48 +01003558 /* we always create at least one floppy */
3559 drive_add(NULL, FD_ALIAS, 0);
Gerd Hoffmannac33f8f2009-12-16 14:25:39 +01003560 }
bellardc4b1fcc2004-03-14 21:44:30 +00003561
Gerd Hoffmannac33f8f2009-12-16 14:25:39 +01003562 if (default_sdcard) {
Gerd Hoffmannaa40fc92009-12-08 13:11:48 +01003563 /* we always create one sd slot, even if no card is in it */
3564 drive_add(NULL, SD_ALIAS);
3565 }
balrog9d413d12007-12-04 00:10:34 +00003566
ths96d30e42007-01-07 20:42:14 +00003567 /* open the virtual block devices */
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02003568 if (snapshot)
Gerd Hoffmann7282a032009-07-31 12:25:35 +02003569 qemu_opts_foreach(&qemu_drive_opts, drive_enable_snapshot, NULL, 0);
3570 if (qemu_opts_foreach(&qemu_drive_opts, drive_init_func, machine, 1) != 0)
Gerd Hoffmann9dfd7c72009-07-22 16:43:04 +02003571 exit(1);
balrog3e3d5812007-04-30 02:09:25 +00003572
lirans@il.ibm.comc163b5c2009-11-02 15:40:58 +02003573 register_savevm_live("ram", 0, 3, NULL, ram_save_live, NULL,
3574 ram_load, NULL);
bellard8a7ddc32004-03-31 19:00:16 +00003575
aliguori268a3622009-04-21 22:30:27 +00003576 if (nb_numa_nodes > 0) {
3577 int i;
3578
3579 if (nb_numa_nodes > smp_cpus) {
3580 nb_numa_nodes = smp_cpus;
3581 }
3582
3583 /* If no memory size if given for any node, assume the default case
3584 * and distribute the available memory equally across all nodes
3585 */
3586 for (i = 0; i < nb_numa_nodes; i++) {
3587 if (node_mem[i] != 0)
3588 break;
3589 }
3590 if (i == nb_numa_nodes) {
3591 uint64_t usedmem = 0;
3592
3593 /* On Linux, the each node's border has to be 8MB aligned,
3594 * the final node gets the rest.
3595 */
3596 for (i = 0; i < nb_numa_nodes - 1; i++) {
3597 node_mem[i] = (ram_size / nb_numa_nodes) & ~((1 << 23UL) - 1);
3598 usedmem += node_mem[i];
3599 }
3600 node_mem[i] = ram_size - usedmem;
3601 }
3602
3603 for (i = 0; i < nb_numa_nodes; i++) {
3604 if (node_cpumask[i] != 0)
3605 break;
3606 }
3607 /* assigning the VCPUs round-robin is easier to implement, guest OSes
3608 * must cope with this anyway, because there are BIOSes out there in
3609 * real machines which also use this scheme.
3610 */
3611 if (i == nb_numa_nodes) {
3612 for (i = 0; i < smp_cpus; i++) {
3613 node_cpumask[i % nb_numa_nodes] |= 1 << i;
3614 }
3615 }
3616 }
3617
Gerd Hoffmann998bbd72009-12-08 13:11:41 +01003618 if (foreach_device_config(DEV_SERIAL, serial_parse) < 0)
3619 exit(1);
Gerd Hoffmann6a5e8b02009-12-08 13:11:42 +01003620 if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0)
3621 exit(1);
Gerd Hoffmannaee1b932009-12-08 13:11:53 +01003622 if (foreach_device_config(DEV_VIRTCON, virtcon_parse) < 0)
3623 exit(1);
H. Peter Anvinc9f398e2009-12-29 13:51:36 -08003624 if (foreach_device_config(DEV_DEBUGCON, debugcon_parse) < 0)
3625 exit(1);
aliguori2796dae2009-01-16 20:23:27 +00003626
Paul Brookaae94602009-05-14 22:35:06 +01003627 module_call_init(MODULE_INIT_DEVICE);
3628
Markus Armbrusterff952ba2010-01-29 19:48:57 +01003629 if (qemu_opts_foreach(&qemu_device_opts, device_help_func, NULL, 0) != 0)
3630 exit(0);
3631
Markus Armbruster09aaa162009-08-21 10:31:34 +02003632 if (watchdog) {
3633 i = select_watchdog(watchdog);
3634 if (i > 0)
3635 exit (i == 1 ? 1 : 0);
3636 }
3637
Gerd Hoffmannb6b61142009-07-15 13:48:21 +02003638 if (machine->compat_props) {
Gerd Hoffmann458fb672009-12-08 13:11:33 +01003639 qdev_prop_register_global_list(machine->compat_props);
Gerd Hoffmannb6b61142009-07-15 13:48:21 +02003640 }
Gerd Hoffmannd0fef6f2009-12-08 13:11:34 +01003641 qemu_add_globals();
3642
Paul Brookfbe1b592009-05-13 17:56:25 +01003643 machine->init(ram_size, boot_devices,
aliguori3023f332009-01-16 19:04:14 +00003644 kernel_filename, kernel_cmdline, initrd_filename, cpu_model);
3645
Jan Kiszkaea375f92010-03-01 19:10:30 +01003646 cpu_synchronize_all_post_init();
aliguori268a3622009-04-21 22:30:27 +00003647
Juan Quintela67b3b712009-08-28 19:25:15 +02003648#ifndef _WIN32
3649 /* must be after terminal init, SDL library changes signal handlers */
3650 sighandler_setup();
3651#endif
3652
Blue Swirl87d0a282010-03-27 18:24:45 +00003653 set_numa_modes();
aliguori268a3622009-04-21 22:30:27 +00003654
aliguori6f338c32009-02-11 15:21:54 +00003655 current_machine = machine;
3656
aliguori3023f332009-01-16 19:04:14 +00003657 /* init USB devices */
3658 if (usb_enabled) {
Markus Armbruster07527062009-10-06 12:16:57 +01003659 if (foreach_device_config(DEV_USB, usb_parse) < 0)
3660 exit(1);
aliguori3023f332009-01-16 19:04:14 +00003661 }
3662
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02003663 /* init generic devices */
Gerd Hoffmannf31d07d2009-07-31 12:25:37 +02003664 if (qemu_opts_foreach(&qemu_device_opts, device_init_func, NULL, 1) != 0)
Gerd Hoffmannbd3c9482009-07-15 13:59:26 +02003665 exit(1);
3666
Markus Armbruster668680f2010-02-11 14:44:58 +01003667 net_check_clients();
3668
aliguori3023f332009-01-16 19:04:14 +00003669 /* just use the first displaystate for the moment */
Paolo Bonzinib473df62010-02-11 00:29:55 +01003670 ds = get_displaystate();
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003671
3672 if (display_type == DT_DEFAULT) {
Anthony Liguorif92f8af2009-05-20 13:01:02 -05003673#if defined(CONFIG_SDL) || defined(CONFIG_COCOA)
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003674 display_type = DT_SDL;
3675#else
3676 display_type = DT_VNC;
3677 vnc_display = "localhost:0,to=99";
3678 show_vnc_port = 1;
3679#endif
3680 }
3681
3682
3683 switch (display_type) {
3684 case DT_NOGRAPHIC:
3685 break;
3686#if defined(CONFIG_CURSES)
3687 case DT_CURSES:
3688 curses_display_init(ds, full_screen);
3689 break;
3690#endif
bellard5b0753e2005-03-01 21:37:28 +00003691#if defined(CONFIG_SDL)
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003692 case DT_SDL:
3693 sdl_display_init(ds, full_screen, no_frame);
3694 break;
bellard5b0753e2005-03-01 21:37:28 +00003695#elif defined(CONFIG_COCOA)
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003696 case DT_SDL:
3697 cocoa_display_init(ds, full_screen);
3698 break;
bellard313aa562003-08-10 21:52:11 +00003699#endif
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003700 case DT_VNC:
3701 vnc_display_init(ds);
3702 if (vnc_display_open(ds, vnc_display) < 0)
3703 exit(1);
Anthony Liguorif92f8af2009-05-20 13:01:02 -05003704
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003705 if (show_vnc_port) {
3706 printf("VNC server running on `%s'\n", vnc_display_local_addr(ds));
Anthony Liguorif92f8af2009-05-20 13:01:02 -05003707 }
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003708 break;
3709 default:
3710 break;
bellard313aa562003-08-10 21:52:11 +00003711 }
aliguori7d957bd2009-01-15 22:14:11 +00003712 dpy_resize(ds);
aliguori5b08fc12008-08-21 20:08:03 +00003713
aliguori3023f332009-01-16 19:04:14 +00003714 dcl = ds->listeners;
3715 while (dcl != NULL) {
3716 if (dcl->dpy_refresh != NULL) {
3717 ds->gui_timer = qemu_new_timer(rt_clock, gui_update, ds);
3718 qemu_mod_timer(ds->gui_timer, qemu_get_clock(rt_clock));
ths20d8a3e2007-02-18 17:04:49 +00003719 }
aliguori3023f332009-01-16 19:04:14 +00003720 dcl = dcl->next;
bellard82c643f2004-07-14 17:28:13 +00003721 }
aliguori3023f332009-01-16 19:04:14 +00003722
Anthony Liguori993fbfd2009-05-21 16:54:00 -05003723 if (display_type == DT_NOGRAPHIC || display_type == DT_VNC) {
blueswir19043b622009-01-21 19:28:13 +00003724 nographic_timer = qemu_new_timer(rt_clock, nographic_update, NULL);
3725 qemu_mod_timer(nographic_timer, qemu_get_clock(rt_clock));
3726 }
3727
Paolo Bonzinib473df62010-02-11 00:29:55 +01003728 text_consoles_set_display(ds);
aliguori2796dae2009-01-16 20:23:27 +00003729
Gerd Hoffmann88589342009-12-08 13:11:50 +01003730 if (qemu_opts_foreach(&qemu_mon_opts, mon_init_func, NULL, 1) != 0)
3731 exit(1);
bellard82c643f2004-07-14 17:28:13 +00003732
aliguori59030a82009-04-05 18:43:41 +00003733 if (gdbstub_dev && gdbserver_start(gdbstub_dev) < 0) {
3734 fprintf(stderr, "qemu: could not open gdbserver on device '%s'\n",
3735 gdbstub_dev);
3736 exit(1);
balrog45669e02007-07-02 13:20:17 +00003737 }
balrog45669e02007-07-02 13:20:17 +00003738
Gerd Hoffmann3418bd22009-09-25 21:42:41 +02003739 qdev_machine_creation_done();
3740
Gerd Hoffmann15ff7702009-12-14 16:07:35 +01003741 if (rom_load_all() != 0) {
3742 fprintf(stderr, "rom loading failed\n");
3743 exit(1);
3744 }
Gerd Hoffmann45a50b12009-10-01 16:42:33 +02003745
Juan Quintela504c2942009-11-12 00:39:13 +01003746 qemu_system_reset();
Juan Quintela05f24012009-08-20 19:42:22 +02003747 if (loadvm) {
Markus Armbruster03cd4652010-02-17 16:24:10 +01003748 if (load_vmstate(loadvm) < 0) {
Juan Quintela05f24012009-08-20 19:42:22 +02003749 autostart = 0;
3750 }
3751 }
bellardd63d3072004-10-03 13:29:03 +00003752
Glauber Costa2bb8c102009-07-24 16:20:23 -04003753 if (incoming) {
aliguori5bb79102008-10-13 03:12:02 +00003754 qemu_start_incoming_migration(incoming);
Avi Kivity6b99dad2009-08-09 14:39:20 +03003755 } else if (autostart) {
aliguoric0f4ce72009-03-05 23:01:01 +00003756 vm_start();
Avi Kivity6b99dad2009-08-09 14:39:20 +03003757 }
thsffd843b2006-12-21 19:46:43 +00003758
blueswir1b9e82a52009-04-05 18:03:31 +00003759#ifndef _WIN32
ths71e3ceb2006-12-22 02:11:31 +00003760 if (daemonize) {
3761 uint8_t status = 0;
3762 ssize_t len;
ths71e3ceb2006-12-22 02:11:31 +00003763
3764 again1:
3765 len = write(fds[1], &status, 1);
3766 if (len == -1 && (errno == EINTR))
3767 goto again1;
3768
3769 if (len != 1)
3770 exit(1);
3771
Kirill A. Shutemovdc330e22010-01-20 00:56:18 +01003772 if (chdir("/")) {
3773 perror("not able to chdir to /");
3774 exit(1);
3775 }
Kevin Wolf40ff6d72009-12-02 12:24:42 +01003776 TFR(fd = qemu_open("/dev/null", O_RDWR));
ths71e3ceb2006-12-22 02:11:31 +00003777 if (fd == -1)
3778 exit(1);
aliguori08585322009-02-27 22:09:45 +00003779 }
ths71e3ceb2006-12-22 02:11:31 +00003780
aliguori08585322009-02-27 22:09:45 +00003781 if (run_as) {
3782 pwd = getpwnam(run_as);
3783 if (!pwd) {
3784 fprintf(stderr, "User \"%s\" doesn't exist\n", run_as);
3785 exit(1);
3786 }
3787 }
ths71e3ceb2006-12-22 02:11:31 +00003788
aliguori08585322009-02-27 22:09:45 +00003789 if (chroot_dir) {
3790 if (chroot(chroot_dir) < 0) {
3791 fprintf(stderr, "chroot failed\n");
3792 exit(1);
3793 }
Kirill A. Shutemovdc330e22010-01-20 00:56:18 +01003794 if (chdir("/")) {
3795 perror("not able to chdir to /");
3796 exit(1);
3797 }
aliguori08585322009-02-27 22:09:45 +00003798 }
3799
3800 if (run_as) {
3801 if (setgid(pwd->pw_gid) < 0) {
3802 fprintf(stderr, "Failed to setgid(%d)\n", pwd->pw_gid);
3803 exit(1);
3804 }
3805 if (setuid(pwd->pw_uid) < 0) {
3806 fprintf(stderr, "Failed to setuid(%d)\n", pwd->pw_uid);
3807 exit(1);
3808 }
3809 if (setuid(0) != -1) {
3810 fprintf(stderr, "Dropping privileges failed\n");
3811 exit(1);
3812 }
3813 }
aliguori08585322009-02-27 22:09:45 +00003814
3815 if (daemonize) {
3816 dup2(fd, 0);
3817 dup2(fd, 1);
3818 dup2(fd, 2);
3819
3820 close(fd);
ths71e3ceb2006-12-22 02:11:31 +00003821 }
blueswir1b9e82a52009-04-05 18:03:31 +00003822#endif
ths71e3ceb2006-12-22 02:11:31 +00003823
bellard8a7ddc32004-03-31 19:00:16 +00003824 main_loop();
bellard40c3bac2004-04-04 12:56:28 +00003825 quit_timers();
aliguori63a01ef2008-10-31 19:10:00 +00003826 net_cleanup();
thsb46a8902007-10-21 23:20:45 +00003827
bellard0824d6f2003-06-24 13:42:40 +00003828 return 0;
3829}