blob: 50665cf77ed36487e921e2ad4df2e1648536eca9 [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
blueswir1179a2c12009-03-08 08:23:32 +000032/* Needed early for HOST_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>
47#if defined(__NetBSD__)
48#include <net/if_tap.h>
49#endif
50#ifdef __linux__
51#include <linux/if_tun.h>
52#endif
53#include <arpa/inet.h>
bellard9d728e82004-09-05 23:09:03 +000054#include <dirent.h>
bellard7c9d8e02005-11-15 22:16:05 +000055#include <netdb.h>
thscb4b9762007-09-13 12:39:35 +000056#include <sys/select.h>
blueswir1179a2c12009-03-08 08:23:32 +000057#ifdef HOST_BSD
bellard7d3505c2004-05-12 19:32:15 +000058#include <sys/stat.h>
blueswir1c5e97232009-03-07 20:06:23 +000059#if defined(__FreeBSD__) || defined(__DragonFly__)
bellard7d3505c2004-05-12 19:32:15 +000060#include <libutil.h>
blueswir124646c72008-11-07 16:55:48 +000061#else
62#include <util.h>
blueswir1128ab2f2008-08-15 18:33:42 +000063#endif
ths5c40d2b2007-06-23 16:03:36 +000064#elif defined (__GLIBC__) && defined (__FreeBSD_kernel__)
65#include <freebsd/stdlib.h>
bellard7d3505c2004-05-12 19:32:15 +000066#else
blueswir1223f0d72008-09-30 18:12:18 +000067#ifdef __linux__
bellard7d3505c2004-05-12 19:32:15 +000068#include <pty.h>
69#include <malloc.h>
bellardfd872592004-05-12 19:11:15 +000070#include <linux/rtc.h>
Andi Kleen18894652009-07-02 09:34:17 +020071#include <sys/prctl.h>
thsbd494f42007-09-16 20:03:23 +000072
73/* For the benefit of older linux systems which don't supply it,
74 we use a local copy of hpet.h. */
75/* #include <linux/hpet.h> */
76#include "hpet.h"
77
bellarde57a8c02005-11-10 23:58:52 +000078#include <linux/ppdev.h>
ths5867c882007-02-17 23:44:43 +000079#include <linux/parport.h>
blueswir1223f0d72008-09-30 18:12:18 +000080#endif
81#ifdef __sun__
thsd5d10bc2007-02-17 22:54:49 +000082#include <sys/stat.h>
83#include <sys/ethernet.h>
84#include <sys/sockio.h>
thsd5d10bc2007-02-17 22:54:49 +000085#include <netinet/arp.h>
86#include <netinet/in.h>
87#include <netinet/in_systm.h>
88#include <netinet/ip.h>
89#include <netinet/ip_icmp.h> // must come after ip.h
90#include <netinet/udp.h>
91#include <netinet/tcp.h>
92#include <net/if.h>
93#include <syslog.h>
94#include <stropts.h>
bellard67b915a2004-03-31 23:37:16 +000095#endif
bellard7d3505c2004-05-12 19:32:15 +000096#endif
bellardec530c82006-04-25 22:36:06 +000097#endif
bellard67b915a2004-03-31 23:37:16 +000098
blueswir19892fbf2008-08-24 10:34:20 +000099#if defined(__OpenBSD__)
100#include <util.h>
101#endif
102
ths8a16d272008-07-19 09:56:24 +0000103#if defined(CONFIG_VDE)
104#include <libvdeplug.h>
105#endif
106
bellard67b915a2004-03-31 23:37:16 +0000107#ifdef _WIN32
aliguori49dc7682009-03-08 16:26:59 +0000108#include <windows.h>
bellard7d3505c2004-05-12 19:32:15 +0000109#include <malloc.h>
bellard67b915a2004-03-31 23:37:16 +0000110#include <sys/timeb.h>
ths4fddf622007-12-17 04:42:29 +0000111#include <mmsystem.h>
bellard67b915a2004-03-31 23:37:16 +0000112#define getopt_long_only getopt_long
113#define memalign(align, size) malloc(size)
114#endif
115
bellard73332e52004-04-04 20:22:28 +0000116#ifdef CONFIG_SDL
Stefan Weil59a36a22009-06-18 20:11:03 +0200117#if defined(__APPLE__) || defined(main)
Stefan Weil66936652009-06-13 13:19:11 +0200118#include <SDL.h>
malc880fec52009-02-15 20:18:41 +0000119int qemu_main(int argc, char **argv, char **envp);
120int main(int argc, char **argv)
121{
Stefan Weil59a36a22009-06-18 20:11:03 +0200122 return qemu_main(argc, argv, NULL);
malc880fec52009-02-15 20:18:41 +0000123}
124#undef main
125#define main qemu_main
bellard96bcd4f2004-07-10 16:26:15 +0000126#endif
bellard73332e52004-04-04 20:22:28 +0000127#endif /* CONFIG_SDL */
bellard0824d6f2003-06-24 13:42:40 +0000128
bellard5b0753e2005-03-01 21:37:28 +0000129#ifdef CONFIG_COCOA
130#undef main
131#define main qemu_main
132#endif /* CONFIG_COCOA */
133
blueswir1511d2b12009-03-07 15:32:56 +0000134#include "hw/hw.h"
135#include "hw/boards.h"
136#include "hw/usb.h"
137#include "hw/pcmcia.h"
138#include "hw/pc.h"
139#include "hw/audiodev.h"
140#include "hw/isa.h"
141#include "hw/baum.h"
142#include "hw/bt.h"
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +0100143#include "hw/watchdog.h"
aliguorib6f6e3d2009-04-17 18:59:56 +0000144#include "hw/smbios.h"
aliguorie37630c2009-04-22 15:19:10 +0000145#include "hw/xen.h"
aurel325ef4efa2009-03-10 21:43:35 +0000146#include "bt-host.h"
blueswir1511d2b12009-03-07 15:32:56 +0000147#include "net.h"
148#include "monitor.h"
149#include "console.h"
150#include "sysemu.h"
151#include "gdbstub.h"
152#include "qemu-timer.h"
153#include "qemu-char.h"
154#include "cache-utils.h"
155#include "block.h"
blueswir1a718ace2009-03-28 08:24:44 +0000156#include "dma.h"
blueswir1511d2b12009-03-07 15:32:56 +0000157#include "audio/audio.h"
158#include "migration.h"
159#include "kvm.h"
160#include "balloon.h"
Kevin Wolfd3f24362009-05-18 16:42:09 +0200161#include "qemu-option.h"
blueswir1511d2b12009-03-07 15:32:56 +0000162
bellard0824d6f2003-06-24 13:42:40 +0000163#include "disas.h"
bellardfc01f7e2003-06-30 10:03:06 +0000164
bellard8a7ddc32004-03-31 19:00:16 +0000165#include "exec-all.h"
bellard0824d6f2003-06-24 13:42:40 +0000166
blueswir1511d2b12009-03-07 15:32:56 +0000167#include "qemu_socket.h"
168
Jan Kiszkad918f232009-06-24 14:42:30 +0200169#include "slirp/libslirp.h"
blueswir1511d2b12009-03-07 15:32:56 +0000170
blueswir19dc63a12008-10-04 07:25:46 +0000171//#define DEBUG_NET
172//#define DEBUG_SLIRP
bellard330d0412003-07-26 18:11:40 +0000173
bellard1bfe8562004-07-08 21:17:50 +0000174#define DEFAULT_RAM_SIZE 128
bellard313aa562003-08-10 21:52:11 +0000175
pbrook0d92ed32006-05-21 16:30:15 +0000176/* Max number of USB devices that can be specified on the commandline. */
177#define MAX_USB_CMDLINE 8
178
balrogdc72ac12008-11-09 00:04:26 +0000179/* Max number of bluetooth switches on the commandline. */
180#define MAX_BT_CMDLINE 10
181
Paul Brook5cea8592009-05-30 00:52:44 +0100182static const char *data_dir;
j_mayer1192dad2007-10-05 13:08:35 +0000183const char *bios_name = NULL;
thse4bcb142007-12-02 04:51:10 +0000184/* Note: drives_table[MAX_DRIVES] is a dummy block driver if none available
bellardfaea38e2006-08-05 21:31:00 +0000185 to store the VM snapshots */
thse4bcb142007-12-02 04:51:10 +0000186DriveInfo drives_table[MAX_DRIVES+1];
187int nb_drives;
malccb5a7aa2008-09-28 00:42:12 +0000188enum vga_retrace_method vga_retrace_method = VGA_RETRACE_DUMB;
aliguori3023f3322009-01-16 19:04:14 +0000189static DisplayState *display_state;
Anthony Liguori993fbfd2009-05-21 16:54:00 -0500190DisplayType display_type = DT_DEFAULT;
bellard3d11d0e2004-12-12 16:56:30 +0000191const char* keyboard_layout = NULL;
bellard313aa562003-08-10 21:52:11 +0000192int64_t ticks_per_sec;
aurel3200f82b82008-04-27 21:12:55 +0000193ram_addr_t ram_size;
bellardc4b1fcc2004-03-14 21:44:30 +0000194int nb_nics;
bellard7c9d8e02005-11-15 22:16:05 +0000195NICInfo nd_table[MAX_NICS];
bellard8a7ddc32004-03-31 19:00:16 +0000196int vm_running;
aliguoric0f4ce72009-03-05 23:01:01 +0000197static int autostart;
balrogf6503052008-02-17 11:42:19 +0000198static int rtc_utc = 1;
199static int rtc_date_offset = -1; /* -1 means no change */
bellard1bfe8562004-07-08 21:17:50 +0000200int cirrus_vga_enabled = 1;
aliguoric2b3b412009-01-15 20:37:28 +0000201int std_vga_enabled = 0;
thsd34cab92007-04-02 01:10:46 +0000202int vmsvga_enabled = 0;
aliguori94909d92009-04-22 15:19:53 +0000203int xenfb_enabled = 0;
bellardd8272202005-04-06 20:32:23 +0000204#ifdef TARGET_SPARC
205int graphic_width = 1024;
206int graphic_height = 768;
blueswir1eee0b832007-04-21 19:45:49 +0000207int graphic_depth = 8;
bellardd8272202005-04-06 20:32:23 +0000208#else
bellard1bfe8562004-07-08 21:17:50 +0000209int graphic_width = 800;
210int graphic_height = 600;
bellarde9b137c2004-06-21 16:46:10 +0000211int graphic_depth = 15;
blueswir1eee0b832007-04-21 19:45:49 +0000212#endif
blueswir1dbed7e42008-10-01 19:38:09 +0000213static int full_screen = 0;
blueswir1634a21f2008-11-16 11:34:07 +0000214#ifdef CONFIG_SDL
blueswir1dbed7e42008-10-01 19:38:09 +0000215static int no_frame = 0;
blueswir1634a21f2008-11-16 11:34:07 +0000216#endif
ths667acca2006-12-11 02:08:05 +0000217int no_quit = 0;
bellard8d11df92004-08-24 21:13:40 +0000218CharDriverState *serial_hds[MAX_SERIAL_PORTS];
bellard6508fe52005-01-15 12:02:56 +0000219CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
aliguori9ede2fd2009-01-15 20:05:25 +0000220CharDriverState *virtcon_hds[MAX_VIRTIO_CONSOLES];
bellarda09db212005-04-30 16:10:35 +0000221#ifdef TARGET_I386
222int win2k_install_hack = 0;
aliguori73822ec2009-01-15 20:11:34 +0000223int rtc_td_hack = 0;
bellarda09db212005-04-30 16:10:35 +0000224#endif
bellardbb36d472005-11-05 14:22:28 +0000225int usb_enabled = 0;
aurel321b530a62009-04-05 20:08:59 +0000226int singlestep = 0;
bellard6a00d602005-11-21 23:25:50 +0000227int smp_cpus = 1;
ths73fc9742006-12-22 02:09:07 +0000228const char *vnc_display;
bellard6515b202006-05-03 22:02:44 +0000229int acpi_enabled = 1;
aliguori16b29ae2008-12-17 23:28:44 +0000230int no_hpet = 0;
Markus Armbruster7d4c3d52009-06-26 19:15:14 +0200231int virtio_balloon = 1;
232const char *virtio_balloon_devaddr;
bellard52ca8d62006-06-14 16:03:05 +0000233int fd_bootchk = 1;
bellardd1beab82006-10-02 19:44:22 +0000234int no_reboot = 0;
aurel32b2f76162008-04-11 21:35:52 +0000235int no_shutdown = 0;
balrog9467cd42007-05-01 01:34:14 +0000236int cursor_hide = 1;
balroga171fe32007-04-30 01:48:07 +0000237int graphic_rotate = 0;
blueswir1b9e82a52009-04-05 18:03:31 +0000238#ifndef _WIN32
ths71e3ceb2006-12-22 02:11:31 +0000239int daemonize = 0;
blueswir1b9e82a52009-04-05 18:03:31 +0000240#endif
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +0100241WatchdogTimerModel *watchdog = NULL;
242int watchdog_action = WDT_RESET;
ths9ae02552007-01-05 17:39:04 +0000243const char *option_rom[MAX_OPTION_ROMS];
244int nb_option_roms;
pbrook8e716212007-01-20 17:12:09 +0000245int semihosting_enabled = 0;
balrog2b8f2d42007-07-27 22:08:46 +0000246#ifdef TARGET_ARM
247int old_param = 0;
248#endif
thsc35734b2007-03-19 15:17:08 +0000249const char *qemu_name;
ths3780e192007-06-21 21:08:02 +0000250int alt_grab = 0;
blueswir195efd112008-12-24 20:26:14 +0000251#if defined(TARGET_SPARC) || defined(TARGET_PPC)
blueswir166508602007-05-01 14:16:52 +0000252unsigned int nb_prom_envs = 0;
253const char *prom_envs[MAX_PROM_ENVS];
254#endif
aliguoriec691c82009-02-11 15:20:37 +0000255int nb_drives_opt;
256struct drive_opt drives_opt[MAX_DRIVES];
bellard0824d6f2003-06-24 13:42:40 +0000257
aliguori268a3622009-04-21 22:30:27 +0000258int nb_numa_nodes;
259uint64_t node_mem[MAX_NODES];
260uint64_t node_cpumask[MAX_NODES];
261
balrogee5605e2007-12-03 03:01:40 +0000262static CPUState *cur_cpu;
263static CPUState *next_cpu;
aliguori43b96852009-04-24 18:03:33 +0000264static int timer_alarm_pending = 1;
thsbf20dc02008-06-30 17:22:19 +0000265/* Conversion factor from emulated instructions to virtual clock ticks. */
pbrook2e70f6e2008-06-29 01:03:05 +0000266static int icount_time_shift;
thsbf20dc02008-06-30 17:22:19 +0000267/* Arbitrarily pick 1MIPS as the minimum allowable speed. */
pbrook2e70f6e2008-06-29 01:03:05 +0000268#define MAX_ICOUNT_SHIFT 10
269/* Compensate for varying guest execution speed. */
270static int64_t qemu_icount_bias;
blueswir1dbed7e42008-10-01 19:38:09 +0000271static QEMUTimer *icount_rt_timer;
272static QEMUTimer *icount_vm_timer;
blueswir19043b622009-01-21 19:28:13 +0000273static QEMUTimer *nographic_timer;
balrogee5605e2007-12-03 03:01:40 +0000274
blueswir18fcb1b92008-09-18 18:29:08 +0000275uint8_t qemu_uuid[16];
276
bellard0824d6f2003-06-24 13:42:40 +0000277/***********************************************************/
bellard26aa7d72004-04-28 22:26:05 +0000278/* x86 ISA bus support */
279
280target_phys_addr_t isa_mem_base = 0;
bellard3de388f2005-07-02 18:11:44 +0000281PicState2 *isa_pic;
bellard0824d6f2003-06-24 13:42:40 +0000282
bellard0824d6f2003-06-24 13:42:40 +0000283/***********************************************************/
bellard0824d6f2003-06-24 13:42:40 +0000284void hw_error(const char *fmt, ...)
285{
286 va_list ap;
bellard6a00d602005-11-21 23:25:50 +0000287 CPUState *env;
bellard0824d6f2003-06-24 13:42:40 +0000288
289 va_start(ap, fmt);
290 fprintf(stderr, "qemu: hardware error: ");
291 vfprintf(stderr, fmt, ap);
292 fprintf(stderr, "\n");
bellard6a00d602005-11-21 23:25:50 +0000293 for(env = first_cpu; env != NULL; env = env->next_cpu) {
294 fprintf(stderr, "CPU #%d:\n", env->cpu_index);
bellard0824d6f2003-06-24 13:42:40 +0000295#ifdef TARGET_I386
bellard6a00d602005-11-21 23:25:50 +0000296 cpu_dump_state(env, stderr, fprintf, X86_DUMP_FPU);
bellardc45886d2004-01-05 00:02:06 +0000297#else
bellard6a00d602005-11-21 23:25:50 +0000298 cpu_dump_state(env, stderr, fprintf, 0);
bellard0824d6f2003-06-24 13:42:40 +0000299#endif
bellard6a00d602005-11-21 23:25:50 +0000300 }
bellard0824d6f2003-06-24 13:42:40 +0000301 va_end(ap);
302 abort();
303}
Andi Kleen18894652009-07-02 09:34:17 +0200304
305static void set_proc_name(const char *s)
306{
307#ifdef __linux__
308 char name[16];
309 if (!s)
310 return;
311 name[sizeof(name) - 1] = 0;
312 strncpy(name, s, sizeof(name));
313 /* Could rewrite argv[0] too, but that's a bit more complicated.
314 This simple way is enough for `top'. */
315 prctl(PR_SET_NAME, name);
316#endif
317}
aliguoridf751fa2008-12-04 20:19:35 +0000318
319/***************/
320/* ballooning */
321
322static QEMUBalloonEvent *qemu_balloon_event;
323void *qemu_balloon_event_opaque;
324
325void qemu_add_balloon_handler(QEMUBalloonEvent *func, void *opaque)
326{
327 qemu_balloon_event = func;
328 qemu_balloon_event_opaque = opaque;
329}
330
331void qemu_balloon(ram_addr_t target)
332{
333 if (qemu_balloon_event)
334 qemu_balloon_event(qemu_balloon_event_opaque, target);
335}
336
337ram_addr_t qemu_balloon_status(void)
338{
339 if (qemu_balloon_event)
340 return qemu_balloon_event(qemu_balloon_event_opaque, 0);
341 return 0;
342}
bellard0824d6f2003-06-24 13:42:40 +0000343
bellard8a7ddc32004-03-31 19:00:16 +0000344/***********************************************************/
bellard63066f42004-06-03 18:45:02 +0000345/* keyboard/mouse */
346
347static QEMUPutKBDEvent *qemu_put_kbd_event;
348static void *qemu_put_kbd_event_opaque;
ths455204e2007-01-05 16:42:13 +0000349static QEMUPutMouseEntry *qemu_put_mouse_event_head;
350static QEMUPutMouseEntry *qemu_put_mouse_event_current;
bellard63066f42004-06-03 18:45:02 +0000351
352void qemu_add_kbd_event_handler(QEMUPutKBDEvent *func, void *opaque)
353{
354 qemu_put_kbd_event_opaque = opaque;
355 qemu_put_kbd_event = func;
356}
357
ths455204e2007-01-05 16:42:13 +0000358QEMUPutMouseEntry *qemu_add_mouse_event_handler(QEMUPutMouseEvent *func,
359 void *opaque, int absolute,
360 const char *name)
bellard63066f42004-06-03 18:45:02 +0000361{
ths455204e2007-01-05 16:42:13 +0000362 QEMUPutMouseEntry *s, *cursor;
363
364 s = qemu_mallocz(sizeof(QEMUPutMouseEntry));
ths455204e2007-01-05 16:42:13 +0000365
366 s->qemu_put_mouse_event = func;
367 s->qemu_put_mouse_event_opaque = opaque;
368 s->qemu_put_mouse_event_absolute = absolute;
369 s->qemu_put_mouse_event_name = qemu_strdup(name);
370 s->next = NULL;
371
372 if (!qemu_put_mouse_event_head) {
373 qemu_put_mouse_event_head = qemu_put_mouse_event_current = s;
374 return s;
375 }
376
377 cursor = qemu_put_mouse_event_head;
378 while (cursor->next != NULL)
379 cursor = cursor->next;
380
381 cursor->next = s;
382 qemu_put_mouse_event_current = s;
383
384 return s;
385}
386
387void qemu_remove_mouse_event_handler(QEMUPutMouseEntry *entry)
388{
389 QEMUPutMouseEntry *prev = NULL, *cursor;
390
391 if (!qemu_put_mouse_event_head || entry == NULL)
392 return;
393
394 cursor = qemu_put_mouse_event_head;
395 while (cursor != NULL && cursor != entry) {
396 prev = cursor;
397 cursor = cursor->next;
398 }
399
400 if (cursor == NULL) // does not exist or list empty
401 return;
402 else if (prev == NULL) { // entry is head
403 qemu_put_mouse_event_head = cursor->next;
404 if (qemu_put_mouse_event_current == entry)
405 qemu_put_mouse_event_current = cursor->next;
406 qemu_free(entry->qemu_put_mouse_event_name);
407 qemu_free(entry);
408 return;
409 }
410
411 prev->next = entry->next;
412
413 if (qemu_put_mouse_event_current == entry)
414 qemu_put_mouse_event_current = prev;
415
416 qemu_free(entry->qemu_put_mouse_event_name);
417 qemu_free(entry);
bellard63066f42004-06-03 18:45:02 +0000418}
419
420void kbd_put_keycode(int keycode)
421{
422 if (qemu_put_kbd_event) {
423 qemu_put_kbd_event(qemu_put_kbd_event_opaque, keycode);
424 }
425}
426
427void kbd_mouse_event(int dx, int dy, int dz, int buttons_state)
428{
ths455204e2007-01-05 16:42:13 +0000429 QEMUPutMouseEvent *mouse_event;
430 void *mouse_event_opaque;
balroga171fe32007-04-30 01:48:07 +0000431 int width;
ths455204e2007-01-05 16:42:13 +0000432
433 if (!qemu_put_mouse_event_current) {
434 return;
435 }
436
437 mouse_event =
438 qemu_put_mouse_event_current->qemu_put_mouse_event;
439 mouse_event_opaque =
440 qemu_put_mouse_event_current->qemu_put_mouse_event_opaque;
441
442 if (mouse_event) {
balroga171fe32007-04-30 01:48:07 +0000443 if (graphic_rotate) {
444 if (qemu_put_mouse_event_current->qemu_put_mouse_event_absolute)
445 width = 0x7fff;
446 else
aurel32b94ed572008-03-10 19:34:27 +0000447 width = graphic_width - 1;
balroga171fe32007-04-30 01:48:07 +0000448 mouse_event(mouse_event_opaque,
449 width - dy, dx, dz, buttons_state);
450 } else
451 mouse_event(mouse_event_opaque,
452 dx, dy, dz, buttons_state);
bellard63066f42004-06-03 18:45:02 +0000453 }
454}
455
bellard09b26c52006-04-12 21:09:08 +0000456int kbd_mouse_is_absolute(void)
457{
ths455204e2007-01-05 16:42:13 +0000458 if (!qemu_put_mouse_event_current)
459 return 0;
460
461 return qemu_put_mouse_event_current->qemu_put_mouse_event_absolute;
462}
463
aliguori376253e2009-03-05 23:01:23 +0000464void do_info_mice(Monitor *mon)
ths455204e2007-01-05 16:42:13 +0000465{
466 QEMUPutMouseEntry *cursor;
467 int index = 0;
468
469 if (!qemu_put_mouse_event_head) {
aliguori376253e2009-03-05 23:01:23 +0000470 monitor_printf(mon, "No mouse devices connected\n");
ths455204e2007-01-05 16:42:13 +0000471 return;
472 }
473
aliguori376253e2009-03-05 23:01:23 +0000474 monitor_printf(mon, "Mouse devices available:\n");
ths455204e2007-01-05 16:42:13 +0000475 cursor = qemu_put_mouse_event_head;
476 while (cursor != NULL) {
aliguori376253e2009-03-05 23:01:23 +0000477 monitor_printf(mon, "%c Mouse #%d: %s\n",
478 (cursor == qemu_put_mouse_event_current ? '*' : ' '),
479 index, cursor->qemu_put_mouse_event_name);
ths455204e2007-01-05 16:42:13 +0000480 index++;
481 cursor = cursor->next;
482 }
483}
484
aliguori376253e2009-03-05 23:01:23 +0000485void do_mouse_set(Monitor *mon, int index)
ths455204e2007-01-05 16:42:13 +0000486{
487 QEMUPutMouseEntry *cursor;
488 int i = 0;
489
490 if (!qemu_put_mouse_event_head) {
aliguori376253e2009-03-05 23:01:23 +0000491 monitor_printf(mon, "No mouse devices connected\n");
ths455204e2007-01-05 16:42:13 +0000492 return;
493 }
494
495 cursor = qemu_put_mouse_event_head;
496 while (cursor != NULL && index != i) {
497 i++;
498 cursor = cursor->next;
499 }
500
501 if (cursor != NULL)
502 qemu_put_mouse_event_current = cursor;
503 else
aliguori376253e2009-03-05 23:01:23 +0000504 monitor_printf(mon, "Mouse at given index not found\n");
bellard09b26c52006-04-12 21:09:08 +0000505}
506
bellard87858c82003-06-27 12:01:39 +0000507/* compute with 96 bit intermediate result: (a*b)/c */
bellard80cabfa2004-03-14 12:20:30 +0000508uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c)
bellard87858c82003-06-27 12:01:39 +0000509{
510 union {
511 uint64_t ll;
512 struct {
513#ifdef WORDS_BIGENDIAN
514 uint32_t high, low;
515#else
516 uint32_t low, high;
ths3b46e622007-09-17 08:09:54 +0000517#endif
bellard87858c82003-06-27 12:01:39 +0000518 } l;
519 } u, res;
520 uint64_t rl, rh;
521
522 u.ll = a;
523 rl = (uint64_t)u.l.low * (uint64_t)b;
524 rh = (uint64_t)u.l.high * (uint64_t)b;
525 rh += (rl >> 32);
526 res.l.high = rh / c;
527 res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c;
528 return res.ll;
529}
530
bellard1dce7c32006-07-13 23:20:22 +0000531/***********************************************************/
532/* real time host monotonic timer */
533
534#define QEMU_TIMER_BASE 1000000000LL
535
536#ifdef WIN32
537
538static int64_t clock_freq;
539
540static void init_get_clock(void)
541{
bellarda8e5ac32006-07-14 09:36:13 +0000542 LARGE_INTEGER freq;
543 int ret;
bellard1dce7c32006-07-13 23:20:22 +0000544 ret = QueryPerformanceFrequency(&freq);
545 if (ret == 0) {
546 fprintf(stderr, "Could not calibrate ticks\n");
547 exit(1);
548 }
549 clock_freq = freq.QuadPart;
550}
551
552static int64_t get_clock(void)
553{
554 LARGE_INTEGER ti;
555 QueryPerformanceCounter(&ti);
556 return muldiv64(ti.QuadPart, QEMU_TIMER_BASE, clock_freq);
557}
558
559#else
560
561static int use_rt_clock;
562
563static void init_get_clock(void)
564{
565 use_rt_clock = 0;
blueswir1c5e97232009-03-07 20:06:23 +0000566#if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD_version >= 500000) \
567 || defined(__DragonFly__)
bellard1dce7c32006-07-13 23:20:22 +0000568 {
569 struct timespec ts;
570 if (clock_gettime(CLOCK_MONOTONIC, &ts) == 0) {
571 use_rt_clock = 1;
572 }
573 }
574#endif
575}
576
577static int64_t get_clock(void)
578{
blueswir1c5e97232009-03-07 20:06:23 +0000579#if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD_version >= 500000) \
580 || defined(__DragonFly__)
bellard1dce7c32006-07-13 23:20:22 +0000581 if (use_rt_clock) {
582 struct timespec ts;
583 clock_gettime(CLOCK_MONOTONIC, &ts);
584 return ts.tv_sec * 1000000000LL + ts.tv_nsec;
ths5fafdf22007-09-16 21:08:06 +0000585 } else
bellard1dce7c32006-07-13 23:20:22 +0000586#endif
587 {
588 /* XXX: using gettimeofday leads to problems if the date
589 changes, so it should be avoided. */
590 struct timeval tv;
591 gettimeofday(&tv, NULL);
592 return tv.tv_sec * 1000000000LL + (tv.tv_usec * 1000);
593 }
594}
bellard1dce7c32006-07-13 23:20:22 +0000595#endif
596
pbrook2e70f6e2008-06-29 01:03:05 +0000597/* Return the virtual CPU time, based on the instruction counter. */
598static int64_t cpu_get_icount(void)
599{
600 int64_t icount;
601 CPUState *env = cpu_single_env;;
602 icount = qemu_icount;
603 if (env) {
604 if (!can_do_io(env))
605 fprintf(stderr, "Bad clock read\n");
606 icount -= (env->icount_decr.u16.low + env->icount_extra);
607 }
608 return qemu_icount_bias + (icount << icount_time_shift);
609}
610
bellard1dce7c32006-07-13 23:20:22 +0000611/***********************************************************/
612/* guest cycle counter */
613
614static int64_t cpu_ticks_prev;
615static int64_t cpu_ticks_offset;
616static int64_t cpu_clock_offset;
617static int cpu_ticks_enabled;
618
619/* return the host CPU cycle counter and handle stop/restart */
620int64_t cpu_get_ticks(void)
621{
pbrook2e70f6e2008-06-29 01:03:05 +0000622 if (use_icount) {
623 return cpu_get_icount();
624 }
bellard1dce7c32006-07-13 23:20:22 +0000625 if (!cpu_ticks_enabled) {
626 return cpu_ticks_offset;
627 } else {
628 int64_t ticks;
629 ticks = cpu_get_real_ticks();
630 if (cpu_ticks_prev > ticks) {
631 /* Note: non increasing ticks may happen if the host uses
632 software suspend */
633 cpu_ticks_offset += cpu_ticks_prev - ticks;
634 }
635 cpu_ticks_prev = ticks;
636 return ticks + cpu_ticks_offset;
637 }
638}
639
640/* return the host CPU monotonic timer and handle stop/restart */
641static int64_t cpu_get_clock(void)
642{
643 int64_t ti;
644 if (!cpu_ticks_enabled) {
645 return cpu_clock_offset;
646 } else {
647 ti = get_clock();
648 return ti + cpu_clock_offset;
649 }
650}
651
652/* enable cpu_get_ticks() */
653void cpu_enable_ticks(void)
654{
655 if (!cpu_ticks_enabled) {
656 cpu_ticks_offset -= cpu_get_real_ticks();
657 cpu_clock_offset -= get_clock();
658 cpu_ticks_enabled = 1;
659 }
660}
661
662/* disable cpu_get_ticks() : the clock is stopped. You must not call
663 cpu_get_ticks() after that. */
664void cpu_disable_ticks(void)
665{
666 if (cpu_ticks_enabled) {
667 cpu_ticks_offset = cpu_get_ticks();
668 cpu_clock_offset = cpu_get_clock();
669 cpu_ticks_enabled = 0;
670 }
671}
672
673/***********************************************************/
674/* timers */
ths5fafdf22007-09-16 21:08:06 +0000675
bellard8a7ddc32004-03-31 19:00:16 +0000676#define QEMU_TIMER_REALTIME 0
677#define QEMU_TIMER_VIRTUAL 1
678
679struct QEMUClock {
680 int type;
681 /* XXX: add frequency */
682};
683
684struct QEMUTimer {
685 QEMUClock *clock;
686 int64_t expire_time;
687 QEMUTimerCB *cb;
688 void *opaque;
689 struct QEMUTimer *next;
690};
691
thsc8994012007-08-19 21:56:03 +0000692struct qemu_alarm_timer {
693 char const *name;
thsefe75412007-08-24 01:36:32 +0000694 unsigned int flags;
thsc8994012007-08-19 21:56:03 +0000695
696 int (*start)(struct qemu_alarm_timer *t);
697 void (*stop)(struct qemu_alarm_timer *t);
thsefe75412007-08-24 01:36:32 +0000698 void (*rearm)(struct qemu_alarm_timer *t);
thsc8994012007-08-19 21:56:03 +0000699 void *priv;
700};
701
thsefe75412007-08-24 01:36:32 +0000702#define ALARM_FLAG_DYNTICKS 0x1
balrogd5d08332008-01-05 19:41:47 +0000703#define ALARM_FLAG_EXPIRED 0x2
thsefe75412007-08-24 01:36:32 +0000704
705static inline int alarm_has_dynticks(struct qemu_alarm_timer *t)
706{
Jean-Christophe Duboise3323402009-05-17 18:38:39 +0200707 return t && (t->flags & ALARM_FLAG_DYNTICKS);
thsefe75412007-08-24 01:36:32 +0000708}
709
710static void qemu_rearm_alarm_timer(struct qemu_alarm_timer *t)
711{
712 if (!alarm_has_dynticks(t))
713 return;
714
715 t->rearm(t);
716}
717
718/* TODO: MIN_TIMER_REARM_US should be optimized */
719#define MIN_TIMER_REARM_US 250
720
thsc8994012007-08-19 21:56:03 +0000721static struct qemu_alarm_timer *alarm_timer;
722
723#ifdef _WIN32
724
725struct qemu_alarm_win32 {
726 MMRESULT timerId;
thsc8994012007-08-19 21:56:03 +0000727 unsigned int period;
Blue Swirlef28c4b2009-04-25 12:56:37 +0000728} alarm_win32_data = {0, -1};
thsc8994012007-08-19 21:56:03 +0000729
730static int win32_start_timer(struct qemu_alarm_timer *t);
731static void win32_stop_timer(struct qemu_alarm_timer *t);
thsefe75412007-08-24 01:36:32 +0000732static void win32_rearm_timer(struct qemu_alarm_timer *t);
thsc8994012007-08-19 21:56:03 +0000733
734#else
735
736static int unix_start_timer(struct qemu_alarm_timer *t);
737static void unix_stop_timer(struct qemu_alarm_timer *t);
738
ths231c6582007-08-26 17:29:15 +0000739#ifdef __linux__
740
thsefe75412007-08-24 01:36:32 +0000741static int dynticks_start_timer(struct qemu_alarm_timer *t);
742static void dynticks_stop_timer(struct qemu_alarm_timer *t);
743static void dynticks_rearm_timer(struct qemu_alarm_timer *t);
744
thsc40ec5a2007-08-19 22:09:40 +0000745static int hpet_start_timer(struct qemu_alarm_timer *t);
746static void hpet_stop_timer(struct qemu_alarm_timer *t);
747
thsc8994012007-08-19 21:56:03 +0000748static int rtc_start_timer(struct qemu_alarm_timer *t);
749static void rtc_stop_timer(struct qemu_alarm_timer *t);
750
thsefe75412007-08-24 01:36:32 +0000751#endif /* __linux__ */
thsc8994012007-08-19 21:56:03 +0000752
753#endif /* _WIN32 */
754
pbrook2e70f6e2008-06-29 01:03:05 +0000755/* Correlation between real and virtual time is always going to be
thsbf20dc02008-06-30 17:22:19 +0000756 fairly approximate, so ignore small variation.
pbrook2e70f6e2008-06-29 01:03:05 +0000757 When the guest is idle real and virtual time will be aligned in
758 the IO wait loop. */
759#define ICOUNT_WOBBLE (QEMU_TIMER_BASE / 10)
760
761static void icount_adjust(void)
762{
763 int64_t cur_time;
764 int64_t cur_icount;
765 int64_t delta;
766 static int64_t last_delta;
767 /* If the VM is not running, then do nothing. */
768 if (!vm_running)
769 return;
770
771 cur_time = cpu_get_clock();
772 cur_icount = qemu_get_clock(vm_clock);
773 delta = cur_icount - cur_time;
774 /* FIXME: This is a very crude algorithm, somewhat prone to oscillation. */
775 if (delta > 0
776 && last_delta + ICOUNT_WOBBLE < delta * 2
777 && icount_time_shift > 0) {
778 /* The guest is getting too far ahead. Slow time down. */
779 icount_time_shift--;
780 }
781 if (delta < 0
782 && last_delta - ICOUNT_WOBBLE > delta * 2
783 && icount_time_shift < MAX_ICOUNT_SHIFT) {
784 /* The guest is getting too far behind. Speed time up. */
785 icount_time_shift++;
786 }
787 last_delta = delta;
788 qemu_icount_bias = cur_icount - (qemu_icount << icount_time_shift);
789}
790
791static void icount_adjust_rt(void * opaque)
792{
793 qemu_mod_timer(icount_rt_timer,
794 qemu_get_clock(rt_clock) + 1000);
795 icount_adjust();
796}
797
798static void icount_adjust_vm(void * opaque)
799{
800 qemu_mod_timer(icount_vm_timer,
801 qemu_get_clock(vm_clock) + QEMU_TIMER_BASE / 10);
802 icount_adjust();
803}
804
805static void init_icount_adjust(void)
806{
807 /* Have both realtime and virtual time triggers for speed adjustment.
808 The realtime trigger catches emulated time passing too slowly,
809 the virtual time trigger catches emulated time passing too fast.
810 Realtime triggers occur even when idle, so use them less frequently
811 than VM triggers. */
812 icount_rt_timer = qemu_new_timer(rt_clock, icount_adjust_rt, NULL);
813 qemu_mod_timer(icount_rt_timer,
814 qemu_get_clock(rt_clock) + 1000);
815 icount_vm_timer = qemu_new_timer(vm_clock, icount_adjust_vm, NULL);
816 qemu_mod_timer(icount_vm_timer,
817 qemu_get_clock(vm_clock) + QEMU_TIMER_BASE / 10);
818}
819
thsc8994012007-08-19 21:56:03 +0000820static struct qemu_alarm_timer alarm_timers[] = {
thsefe75412007-08-24 01:36:32 +0000821#ifndef _WIN32
ths231c6582007-08-26 17:29:15 +0000822#ifdef __linux__
thsefe75412007-08-24 01:36:32 +0000823 {"dynticks", ALARM_FLAG_DYNTICKS, dynticks_start_timer,
824 dynticks_stop_timer, dynticks_rearm_timer, NULL},
thsc40ec5a2007-08-19 22:09:40 +0000825 /* HPET - if available - is preferred */
thsefe75412007-08-24 01:36:32 +0000826 {"hpet", 0, hpet_start_timer, hpet_stop_timer, NULL, NULL},
thsc40ec5a2007-08-19 22:09:40 +0000827 /* ...otherwise try RTC */
thsefe75412007-08-24 01:36:32 +0000828 {"rtc", 0, rtc_start_timer, rtc_stop_timer, NULL, NULL},
thsc8994012007-08-19 21:56:03 +0000829#endif
thsefe75412007-08-24 01:36:32 +0000830 {"unix", 0, unix_start_timer, unix_stop_timer, NULL, NULL},
thsc8994012007-08-19 21:56:03 +0000831#else
thsefe75412007-08-24 01:36:32 +0000832 {"dynticks", ALARM_FLAG_DYNTICKS, win32_start_timer,
833 win32_stop_timer, win32_rearm_timer, &alarm_win32_data},
834 {"win32", 0, win32_start_timer,
835 win32_stop_timer, NULL, &alarm_win32_data},
thsc8994012007-08-19 21:56:03 +0000836#endif
837 {NULL, }
838};
839
blueswir13f47aa82008-03-09 06:59:01 +0000840static void show_available_alarms(void)
thsf3dcfad2007-08-24 01:26:02 +0000841{
842 int i;
843
844 printf("Available alarm timers, in order of precedence:\n");
845 for (i = 0; alarm_timers[i].name; i++)
846 printf("%s\n", alarm_timers[i].name);
847}
848
849static void configure_alarms(char const *opt)
850{
851 int i;
852 int cur = 0;
malcb1503cd2008-12-22 20:33:55 +0000853 int count = ARRAY_SIZE(alarm_timers) - 1;
thsf3dcfad2007-08-24 01:26:02 +0000854 char *arg;
855 char *name;
pbrook2e70f6e2008-06-29 01:03:05 +0000856 struct qemu_alarm_timer tmp;
thsf3dcfad2007-08-24 01:26:02 +0000857
aurel323adda042008-03-09 23:43:49 +0000858 if (!strcmp(opt, "?")) {
thsf3dcfad2007-08-24 01:26:02 +0000859 show_available_alarms();
860 exit(0);
861 }
862
863 arg = strdup(opt);
864
865 /* Reorder the array */
866 name = strtok(arg, ",");
867 while (name) {
balroge2b577e2007-09-17 21:25:20 +0000868 for (i = 0; i < count && alarm_timers[i].name; i++) {
thsf3dcfad2007-08-24 01:26:02 +0000869 if (!strcmp(alarm_timers[i].name, name))
870 break;
871 }
872
873 if (i == count) {
874 fprintf(stderr, "Unknown clock %s\n", name);
875 goto next;
876 }
877
878 if (i < cur)
879 /* Ignore */
880 goto next;
881
882 /* Swap */
883 tmp = alarm_timers[i];
884 alarm_timers[i] = alarm_timers[cur];
885 alarm_timers[cur] = tmp;
886
887 cur++;
888next:
889 name = strtok(NULL, ",");
890 }
891
892 free(arg);
893
894 if (cur) {
pbrook2e70f6e2008-06-29 01:03:05 +0000895 /* Disable remaining timers */
thsf3dcfad2007-08-24 01:26:02 +0000896 for (i = cur; i < count; i++)
897 alarm_timers[i].name = NULL;
aurel323adda042008-03-09 23:43:49 +0000898 } else {
899 show_available_alarms();
900 exit(1);
thsf3dcfad2007-08-24 01:26:02 +0000901 }
thsf3dcfad2007-08-24 01:26:02 +0000902}
903
bellard8a7ddc32004-03-31 19:00:16 +0000904QEMUClock *rt_clock;
905QEMUClock *vm_clock;
906
907static QEMUTimer *active_timers[2];
bellard8a7ddc32004-03-31 19:00:16 +0000908
pbrook9596ebb2007-11-18 01:44:38 +0000909static QEMUClock *qemu_new_clock(int type)
bellard8a7ddc32004-03-31 19:00:16 +0000910{
911 QEMUClock *clock;
912 clock = qemu_mallocz(sizeof(QEMUClock));
bellard8a7ddc32004-03-31 19:00:16 +0000913 clock->type = type;
914 return clock;
915}
916
917QEMUTimer *qemu_new_timer(QEMUClock *clock, QEMUTimerCB *cb, void *opaque)
918{
919 QEMUTimer *ts;
920
921 ts = qemu_mallocz(sizeof(QEMUTimer));
922 ts->clock = clock;
923 ts->cb = cb;
924 ts->opaque = opaque;
925 return ts;
926}
927
928void qemu_free_timer(QEMUTimer *ts)
929{
930 qemu_free(ts);
931}
932
933/* stop a timer, but do not dealloc it */
934void qemu_del_timer(QEMUTimer *ts)
935{
936 QEMUTimer **pt, *t;
937
938 /* NOTE: this code must be signal safe because
939 qemu_timer_expired() can be called from a signal. */
940 pt = &active_timers[ts->clock->type];
941 for(;;) {
942 t = *pt;
943 if (!t)
944 break;
945 if (t == ts) {
946 *pt = t->next;
947 break;
948 }
949 pt = &t->next;
950 }
951}
952
953/* modify the current timer so that it will be fired when current_time
954 >= expire_time. The corresponding callback will be called. */
955void qemu_mod_timer(QEMUTimer *ts, int64_t expire_time)
956{
957 QEMUTimer **pt, *t;
958
959 qemu_del_timer(ts);
960
961 /* add the timer in the sorted list */
962 /* NOTE: this code must be signal safe because
963 qemu_timer_expired() can be called from a signal. */
964 pt = &active_timers[ts->clock->type];
965 for(;;) {
966 t = *pt;
967 if (!t)
968 break;
ths5fafdf22007-09-16 21:08:06 +0000969 if (t->expire_time > expire_time)
bellard8a7ddc32004-03-31 19:00:16 +0000970 break;
971 pt = &t->next;
972 }
973 ts->expire_time = expire_time;
974 ts->next = *pt;
975 *pt = ts;
balrogd5d08332008-01-05 19:41:47 +0000976
977 /* Rearm if necessary */
pbrook2e70f6e2008-06-29 01:03:05 +0000978 if (pt == &active_timers[ts->clock->type]) {
979 if ((alarm_timer->flags & ALARM_FLAG_EXPIRED) == 0) {
980 qemu_rearm_alarm_timer(alarm_timer);
981 }
982 /* Interrupt execution to force deadline recalculation. */
aliguorid9f75a42009-04-24 18:03:11 +0000983 if (use_icount)
984 qemu_notify_event();
pbrook2e70f6e2008-06-29 01:03:05 +0000985 }
bellard8a7ddc32004-03-31 19:00:16 +0000986}
987
988int qemu_timer_pending(QEMUTimer *ts)
989{
990 QEMUTimer *t;
991 for(t = active_timers[ts->clock->type]; t != NULL; t = t->next) {
992 if (t == ts)
993 return 1;
994 }
995 return 0;
996}
997
998static inline int qemu_timer_expired(QEMUTimer *timer_head, int64_t current_time)
999{
1000 if (!timer_head)
1001 return 0;
1002 return (timer_head->expire_time <= current_time);
1003}
1004
1005static void qemu_run_timers(QEMUTimer **ptimer_head, int64_t current_time)
1006{
1007 QEMUTimer *ts;
ths3b46e622007-09-17 08:09:54 +00001008
bellard8a7ddc32004-03-31 19:00:16 +00001009 for(;;) {
1010 ts = *ptimer_head;
bellarde95c8d52004-09-30 22:22:08 +00001011 if (!ts || ts->expire_time > current_time)
bellard8a7ddc32004-03-31 19:00:16 +00001012 break;
1013 /* remove timer from the list before calling the callback */
1014 *ptimer_head = ts->next;
1015 ts->next = NULL;
ths3b46e622007-09-17 08:09:54 +00001016
bellard8a7ddc32004-03-31 19:00:16 +00001017 /* run the callback (the timer list can be modified) */
1018 ts->cb(ts->opaque);
1019 }
1020}
1021
1022int64_t qemu_get_clock(QEMUClock *clock)
1023{
1024 switch(clock->type) {
1025 case QEMU_TIMER_REALTIME:
bellard1dce7c32006-07-13 23:20:22 +00001026 return get_clock() / 1000000;
bellard8a7ddc32004-03-31 19:00:16 +00001027 default:
1028 case QEMU_TIMER_VIRTUAL:
pbrook2e70f6e2008-06-29 01:03:05 +00001029 if (use_icount) {
1030 return cpu_get_icount();
1031 } else {
1032 return cpu_get_clock();
1033 }
bellard8a7ddc32004-03-31 19:00:16 +00001034 }
1035}
1036
bellard1dce7c32006-07-13 23:20:22 +00001037static void init_timers(void)
1038{
1039 init_get_clock();
1040 ticks_per_sec = QEMU_TIMER_BASE;
1041 rt_clock = qemu_new_clock(QEMU_TIMER_REALTIME);
1042 vm_clock = qemu_new_clock(QEMU_TIMER_VIRTUAL);
1043}
1044
bellard8a7ddc32004-03-31 19:00:16 +00001045/* save a timer */
1046void qemu_put_timer(QEMUFile *f, QEMUTimer *ts)
1047{
1048 uint64_t expire_time;
1049
1050 if (qemu_timer_pending(ts)) {
1051 expire_time = ts->expire_time;
1052 } else {
1053 expire_time = -1;
1054 }
1055 qemu_put_be64(f, expire_time);
1056}
1057
1058void qemu_get_timer(QEMUFile *f, QEMUTimer *ts)
1059{
1060 uint64_t expire_time;
1061
1062 expire_time = qemu_get_be64(f);
1063 if (expire_time != -1) {
1064 qemu_mod_timer(ts, expire_time);
1065 } else {
1066 qemu_del_timer(ts);
1067 }
1068}
1069
1070static void timer_save(QEMUFile *f, void *opaque)
1071{
1072 if (cpu_ticks_enabled) {
1073 hw_error("cannot save state if virtual timers are running");
1074 }
thsbee8d682007-12-16 23:41:11 +00001075 qemu_put_be64(f, cpu_ticks_offset);
1076 qemu_put_be64(f, ticks_per_sec);
1077 qemu_put_be64(f, cpu_clock_offset);
bellard8a7ddc32004-03-31 19:00:16 +00001078}
1079
1080static int timer_load(QEMUFile *f, void *opaque, int version_id)
1081{
bellardc88676f2006-08-06 13:36:11 +00001082 if (version_id != 1 && version_id != 2)
bellard8a7ddc32004-03-31 19:00:16 +00001083 return -EINVAL;
1084 if (cpu_ticks_enabled) {
1085 return -EINVAL;
1086 }
thsbee8d682007-12-16 23:41:11 +00001087 cpu_ticks_offset=qemu_get_be64(f);
1088 ticks_per_sec=qemu_get_be64(f);
bellardc88676f2006-08-06 13:36:11 +00001089 if (version_id == 2) {
thsbee8d682007-12-16 23:41:11 +00001090 cpu_clock_offset=qemu_get_be64(f);
bellardc88676f2006-08-06 13:36:11 +00001091 }
bellard8a7ddc32004-03-31 19:00:16 +00001092 return 0;
1093}
1094
aliguori50317c72009-04-24 18:03:29 +00001095static void qemu_event_increment(void);
1096
bellard67b915a2004-03-31 23:37:16 +00001097#ifdef _WIN32
blueswir1b9e82a52009-04-05 18:03:31 +00001098static void CALLBACK host_alarm_handler(UINT uTimerID, UINT uMsg,
1099 DWORD_PTR dwUser, DWORD_PTR dw1,
1100 DWORD_PTR dw2)
bellard67b915a2004-03-31 23:37:16 +00001101#else
bellard8a7ddc32004-03-31 19:00:16 +00001102static void host_alarm_handler(int host_signum)
bellard67b915a2004-03-31 23:37:16 +00001103#endif
bellard8a7ddc32004-03-31 19:00:16 +00001104{
bellard02ba45c2004-06-25 14:46:23 +00001105#if 0
1106#define DISP_FREQ 1000
1107 {
1108 static int64_t delta_min = INT64_MAX;
1109 static int64_t delta_max, delta_cum, last_clock, delta, ti;
1110 static int count;
1111 ti = qemu_get_clock(vm_clock);
1112 if (last_clock != 0) {
1113 delta = ti - last_clock;
1114 if (delta < delta_min)
1115 delta_min = delta;
1116 if (delta > delta_max)
1117 delta_max = delta;
1118 delta_cum += delta;
1119 if (++count == DISP_FREQ) {
bellard26a76462006-06-25 18:15:32 +00001120 printf("timer: min=%" PRId64 " us max=%" PRId64 " us avg=%" PRId64 " us avg_freq=%0.3f Hz\n",
bellard02ba45c2004-06-25 14:46:23 +00001121 muldiv64(delta_min, 1000000, ticks_per_sec),
1122 muldiv64(delta_max, 1000000, ticks_per_sec),
1123 muldiv64(delta_cum, 1000000 / DISP_FREQ, ticks_per_sec),
1124 (double)ticks_per_sec / ((double)delta_cum / DISP_FREQ));
1125 count = 0;
1126 delta_min = INT64_MAX;
1127 delta_max = 0;
1128 delta_cum = 0;
1129 }
1130 }
1131 last_clock = ti;
1132 }
1133#endif
thsefe75412007-08-24 01:36:32 +00001134 if (alarm_has_dynticks(alarm_timer) ||
pbrook2e70f6e2008-06-29 01:03:05 +00001135 (!use_icount &&
1136 qemu_timer_expired(active_timers[QEMU_TIMER_VIRTUAL],
1137 qemu_get_clock(vm_clock))) ||
bellard8a7ddc32004-03-31 19:00:16 +00001138 qemu_timer_expired(active_timers[QEMU_TIMER_REALTIME],
1139 qemu_get_clock(rt_clock))) {
aliguori50317c72009-04-24 18:03:29 +00001140 qemu_event_increment();
Jean-Christophe Duboise3323402009-05-17 18:38:39 +02001141 if (alarm_timer) alarm_timer->flags |= ALARM_FLAG_EXPIRED;
balrogd5d08332008-01-05 19:41:47 +00001142
aliguorid6dc3d42009-04-24 18:04:07 +00001143#ifndef CONFIG_IOTHREAD
1144 if (next_cpu) {
balrog4f8eb8d2007-12-16 12:39:38 +00001145 /* stop the currently executing cpu because a timer occured */
aliguorid6dc3d42009-04-24 18:04:07 +00001146 cpu_exit(next_cpu);
blueswir1640f42e2009-04-19 10:18:01 +00001147#ifdef CONFIG_KQEMU
aliguorid6dc3d42009-04-24 18:04:07 +00001148 if (next_cpu->kqemu_enabled) {
1149 kqemu_cpu_interrupt(next_cpu);
balrog4f8eb8d2007-12-16 12:39:38 +00001150 }
balrogee5605e2007-12-03 03:01:40 +00001151#endif
balrog4f8eb8d2007-12-16 12:39:38 +00001152 }
aliguorid6dc3d42009-04-24 18:04:07 +00001153#endif
aliguori43b96852009-04-24 18:03:33 +00001154 timer_alarm_pending = 1;
aliguorid9f75a42009-04-24 18:03:11 +00001155 qemu_notify_event();
bellard8a7ddc32004-03-31 19:00:16 +00001156 }
1157}
1158
pbrook2e70f6e2008-06-29 01:03:05 +00001159static int64_t qemu_next_deadline(void)
thsefe75412007-08-24 01:36:32 +00001160{
pbrook2e70f6e2008-06-29 01:03:05 +00001161 int64_t delta;
thsefe75412007-08-24 01:36:32 +00001162
1163 if (active_timers[QEMU_TIMER_VIRTUAL]) {
pbrook2e70f6e2008-06-29 01:03:05 +00001164 delta = active_timers[QEMU_TIMER_VIRTUAL]->expire_time -
1165 qemu_get_clock(vm_clock);
1166 } else {
1167 /* To avoid problems with overflow limit this to 2^32. */
1168 delta = INT32_MAX;
thsefe75412007-08-24 01:36:32 +00001169 }
1170
pbrook2e70f6e2008-06-29 01:03:05 +00001171 if (delta < 0)
1172 delta = 0;
thsefe75412007-08-24 01:36:32 +00001173
pbrook2e70f6e2008-06-29 01:03:05 +00001174 return delta;
1175}
1176
blueswir18632fb92008-09-14 13:59:34 +00001177#if defined(__linux__) || defined(_WIN32)
pbrook2e70f6e2008-06-29 01:03:05 +00001178static uint64_t qemu_next_deadline_dyntick(void)
1179{
1180 int64_t delta;
1181 int64_t rtdelta;
1182
1183 if (use_icount)
1184 delta = INT32_MAX;
1185 else
1186 delta = (qemu_next_deadline() + 999) / 1000;
1187
1188 if (active_timers[QEMU_TIMER_REALTIME]) {
1189 rtdelta = (active_timers[QEMU_TIMER_REALTIME]->expire_time -
1190 qemu_get_clock(rt_clock))*1000;
1191 if (rtdelta < delta)
1192 delta = rtdelta;
1193 }
1194
1195 if (delta < MIN_TIMER_REARM_US)
1196 delta = MIN_TIMER_REARM_US;
1197
1198 return delta;
thsefe75412007-08-24 01:36:32 +00001199}
blueswir18632fb92008-09-14 13:59:34 +00001200#endif
thsefe75412007-08-24 01:36:32 +00001201
bellardfd872592004-05-12 19:11:15 +00001202#ifndef _WIN32
1203
aliguori7183b4b2008-11-05 20:40:18 +00001204/* Sets a specific flag */
1205static int fcntl_setfl(int fd, int flag)
1206{
1207 int flags;
1208
1209 flags = fcntl(fd, F_GETFL);
1210 if (flags == -1)
1211 return -errno;
1212
1213 if (fcntl(fd, F_SETFL, flags | flag) == -1)
1214 return -errno;
1215
1216 return 0;
1217}
1218
bellard829309c2004-05-20 13:20:12 +00001219#if defined(__linux__)
1220
bellardfd872592004-05-12 19:11:15 +00001221#define RTC_FREQ 1024
1222
aurel32de9a95f2008-11-11 13:41:01 +00001223static void enable_sigio_timer(int fd)
bellardfd872592004-05-12 19:11:15 +00001224{
thsc8994012007-08-19 21:56:03 +00001225 struct sigaction act;
1226
1227 /* timer signal */
1228 sigfillset(&act.sa_mask);
1229 act.sa_flags = 0;
thsc8994012007-08-19 21:56:03 +00001230 act.sa_handler = host_alarm_handler;
1231
1232 sigaction(SIGIO, &act, NULL);
aliguori7183b4b2008-11-05 20:40:18 +00001233 fcntl_setfl(fd, O_ASYNC);
thsc8994012007-08-19 21:56:03 +00001234 fcntl(fd, F_SETOWN, getpid());
1235}
1236
thsc40ec5a2007-08-19 22:09:40 +00001237static int hpet_start_timer(struct qemu_alarm_timer *t)
1238{
1239 struct hpet_info info;
1240 int r, fd;
1241
1242 fd = open("/dev/hpet", O_RDONLY);
1243 if (fd < 0)
1244 return -1;
1245
1246 /* Set frequency */
1247 r = ioctl(fd, HPET_IRQFREQ, RTC_FREQ);
1248 if (r < 0) {
1249 fprintf(stderr, "Could not configure '/dev/hpet' to have a 1024Hz timer. This is not a fatal\n"
1250 "error, but for better emulation accuracy type:\n"
1251 "'echo 1024 > /proc/sys/dev/hpet/max-user-freq' as root.\n");
1252 goto fail;
1253 }
1254
1255 /* Check capabilities */
1256 r = ioctl(fd, HPET_INFO, &info);
1257 if (r < 0)
1258 goto fail;
1259
1260 /* Enable periodic mode */
1261 r = ioctl(fd, HPET_EPI, 0);
1262 if (info.hi_flags && (r < 0))
1263 goto fail;
1264
1265 /* Enable interrupt */
1266 r = ioctl(fd, HPET_IE_ON, 0);
1267 if (r < 0)
1268 goto fail;
1269
1270 enable_sigio_timer(fd);
pbrookfcdc2122007-08-23 20:22:22 +00001271 t->priv = (void *)(long)fd;
thsc40ec5a2007-08-19 22:09:40 +00001272
1273 return 0;
1274fail:
1275 close(fd);
1276 return -1;
1277}
1278
1279static void hpet_stop_timer(struct qemu_alarm_timer *t)
1280{
pbrookfcdc2122007-08-23 20:22:22 +00001281 int fd = (long)t->priv;
thsc40ec5a2007-08-19 22:09:40 +00001282
1283 close(fd);
1284}
1285
thsc8994012007-08-19 21:56:03 +00001286static int rtc_start_timer(struct qemu_alarm_timer *t)
1287{
1288 int rtc_fd;
balrogb5a23ad2008-02-03 03:45:47 +00001289 unsigned long current_rtc_freq = 0;
thsc8994012007-08-19 21:56:03 +00001290
balrogaeb30be2007-07-02 15:03:13 +00001291 TFR(rtc_fd = open("/dev/rtc", O_RDONLY));
bellardfd872592004-05-12 19:11:15 +00001292 if (rtc_fd < 0)
1293 return -1;
balrogb5a23ad2008-02-03 03:45:47 +00001294 ioctl(rtc_fd, RTC_IRQP_READ, &current_rtc_freq);
1295 if (current_rtc_freq != RTC_FREQ &&
1296 ioctl(rtc_fd, RTC_IRQP_SET, RTC_FREQ) < 0) {
bellardfd872592004-05-12 19:11:15 +00001297 fprintf(stderr, "Could not configure '/dev/rtc' to have a 1024 Hz timer. This is not a fatal\n"
1298 "error, but for better emulation accuracy either use a 2.6 host Linux kernel or\n"
1299 "type 'echo 1024 > /proc/sys/dev/rtc/max-user-freq' as root.\n");
1300 goto fail;
1301 }
1302 if (ioctl(rtc_fd, RTC_PIE_ON, 0) < 0) {
1303 fail:
1304 close(rtc_fd);
1305 return -1;
1306 }
thsc8994012007-08-19 21:56:03 +00001307
1308 enable_sigio_timer(rtc_fd);
1309
pbrookfcdc2122007-08-23 20:22:22 +00001310 t->priv = (void *)(long)rtc_fd;
thsc8994012007-08-19 21:56:03 +00001311
bellardfd872592004-05-12 19:11:15 +00001312 return 0;
1313}
1314
thsc8994012007-08-19 21:56:03 +00001315static void rtc_stop_timer(struct qemu_alarm_timer *t)
bellard829309c2004-05-20 13:20:12 +00001316{
pbrookfcdc2122007-08-23 20:22:22 +00001317 int rtc_fd = (long)t->priv;
thsc8994012007-08-19 21:56:03 +00001318
1319 close(rtc_fd);
bellard829309c2004-05-20 13:20:12 +00001320}
1321
thsefe75412007-08-24 01:36:32 +00001322static int dynticks_start_timer(struct qemu_alarm_timer *t)
1323{
1324 struct sigevent ev;
1325 timer_t host_timer;
1326 struct sigaction act;
1327
1328 sigfillset(&act.sa_mask);
1329 act.sa_flags = 0;
thsefe75412007-08-24 01:36:32 +00001330 act.sa_handler = host_alarm_handler;
1331
1332 sigaction(SIGALRM, &act, NULL);
1333
Jean-Christophe Dubois9ed415b2009-05-17 18:41:16 +02001334 /*
1335 * Initialize ev struct to 0 to avoid valgrind complaining
1336 * about uninitialized data in timer_create call
1337 */
1338 memset(&ev, 0, sizeof(ev));
thsefe75412007-08-24 01:36:32 +00001339 ev.sigev_value.sival_int = 0;
1340 ev.sigev_notify = SIGEV_SIGNAL;
1341 ev.sigev_signo = SIGALRM;
1342
1343 if (timer_create(CLOCK_REALTIME, &ev, &host_timer)) {
1344 perror("timer_create");
1345
1346 /* disable dynticks */
1347 fprintf(stderr, "Dynamic Ticks disabled\n");
1348
1349 return -1;
1350 }
1351
blueswir10399bfe2008-11-16 11:37:18 +00001352 t->priv = (void *)(long)host_timer;
thsefe75412007-08-24 01:36:32 +00001353
1354 return 0;
1355}
1356
1357static void dynticks_stop_timer(struct qemu_alarm_timer *t)
1358{
blueswir10399bfe2008-11-16 11:37:18 +00001359 timer_t host_timer = (timer_t)(long)t->priv;
thsefe75412007-08-24 01:36:32 +00001360
1361 timer_delete(host_timer);
1362}
1363
1364static void dynticks_rearm_timer(struct qemu_alarm_timer *t)
1365{
blueswir10399bfe2008-11-16 11:37:18 +00001366 timer_t host_timer = (timer_t)(long)t->priv;
thsefe75412007-08-24 01:36:32 +00001367 struct itimerspec timeout;
1368 int64_t nearest_delta_us = INT64_MAX;
1369 int64_t current_us;
1370
1371 if (!active_timers[QEMU_TIMER_REALTIME] &&
1372 !active_timers[QEMU_TIMER_VIRTUAL])
balrogd5d08332008-01-05 19:41:47 +00001373 return;
thsefe75412007-08-24 01:36:32 +00001374
pbrook2e70f6e2008-06-29 01:03:05 +00001375 nearest_delta_us = qemu_next_deadline_dyntick();
thsefe75412007-08-24 01:36:32 +00001376
1377 /* check whether a timer is already running */
1378 if (timer_gettime(host_timer, &timeout)) {
1379 perror("gettime");
1380 fprintf(stderr, "Internal timer error: aborting\n");
1381 exit(1);
1382 }
1383 current_us = timeout.it_value.tv_sec * 1000000 + timeout.it_value.tv_nsec/1000;
1384 if (current_us && current_us <= nearest_delta_us)
1385 return;
1386
1387 timeout.it_interval.tv_sec = 0;
1388 timeout.it_interval.tv_nsec = 0; /* 0 for one-shot timer */
1389 timeout.it_value.tv_sec = nearest_delta_us / 1000000;
1390 timeout.it_value.tv_nsec = (nearest_delta_us % 1000000) * 1000;
1391 if (timer_settime(host_timer, 0 /* RELATIVE */, &timeout, NULL)) {
1392 perror("settime");
1393 fprintf(stderr, "Internal timer error: aborting\n");
1394 exit(1);
1395 }
1396}
1397
ths70744b32007-08-26 17:31:30 +00001398#endif /* defined(__linux__) */
ths231c6582007-08-26 17:29:15 +00001399
thsc8994012007-08-19 21:56:03 +00001400static int unix_start_timer(struct qemu_alarm_timer *t)
1401{
1402 struct sigaction act;
1403 struct itimerval itv;
1404 int err;
1405
1406 /* timer signal */
1407 sigfillset(&act.sa_mask);
1408 act.sa_flags = 0;
thsc8994012007-08-19 21:56:03 +00001409 act.sa_handler = host_alarm_handler;
1410
1411 sigaction(SIGALRM, &act, NULL);
1412
1413 itv.it_interval.tv_sec = 0;
1414 /* for i386 kernel 2.6 to get 1 ms */
1415 itv.it_interval.tv_usec = 999;
1416 itv.it_value.tv_sec = 0;
1417 itv.it_value.tv_usec = 10 * 1000;
1418
1419 err = setitimer(ITIMER_REAL, &itv, NULL);
1420 if (err)
1421 return -1;
1422
1423 return 0;
1424}
1425
1426static void unix_stop_timer(struct qemu_alarm_timer *t)
1427{
1428 struct itimerval itv;
1429
1430 memset(&itv, 0, sizeof(itv));
1431 setitimer(ITIMER_REAL, &itv, NULL);
1432}
1433
bellard829309c2004-05-20 13:20:12 +00001434#endif /* !defined(_WIN32) */
bellardfd872592004-05-12 19:11:15 +00001435
aliguorif49e58d2008-11-05 21:22:34 +00001436
thsc8994012007-08-19 21:56:03 +00001437#ifdef _WIN32
1438
1439static int win32_start_timer(struct qemu_alarm_timer *t)
1440{
1441 TIMECAPS tc;
1442 struct qemu_alarm_win32 *data = t->priv;
thsefe75412007-08-24 01:36:32 +00001443 UINT flags;
thsc8994012007-08-19 21:56:03 +00001444
thsc8994012007-08-19 21:56:03 +00001445 memset(&tc, 0, sizeof(tc));
1446 timeGetDevCaps(&tc, sizeof(tc));
1447
1448 if (data->period < tc.wPeriodMin)
1449 data->period = tc.wPeriodMin;
1450
1451 timeBeginPeriod(data->period);
1452
thsefe75412007-08-24 01:36:32 +00001453 flags = TIME_CALLBACK_FUNCTION;
1454 if (alarm_has_dynticks(t))
1455 flags |= TIME_ONESHOT;
1456 else
1457 flags |= TIME_PERIODIC;
1458
thsc8994012007-08-19 21:56:03 +00001459 data->timerId = timeSetEvent(1, // interval (ms)
1460 data->period, // resolution
1461 host_alarm_handler, // function
1462 (DWORD)t, // parameter
thsefe75412007-08-24 01:36:32 +00001463 flags);
thsc8994012007-08-19 21:56:03 +00001464
1465 if (!data->timerId) {
1466 perror("Failed to initialize win32 alarm timer");
thsc8994012007-08-19 21:56:03 +00001467 timeEndPeriod(data->period);
thsc8994012007-08-19 21:56:03 +00001468 return -1;
1469 }
1470
thsc8994012007-08-19 21:56:03 +00001471 return 0;
1472}
1473
1474static void win32_stop_timer(struct qemu_alarm_timer *t)
1475{
1476 struct qemu_alarm_win32 *data = t->priv;
1477
1478 timeKillEvent(data->timerId);
1479 timeEndPeriod(data->period);
thsc8994012007-08-19 21:56:03 +00001480}
1481
thsefe75412007-08-24 01:36:32 +00001482static void win32_rearm_timer(struct qemu_alarm_timer *t)
1483{
1484 struct qemu_alarm_win32 *data = t->priv;
1485 uint64_t nearest_delta_us;
1486
1487 if (!active_timers[QEMU_TIMER_REALTIME] &&
1488 !active_timers[QEMU_TIMER_VIRTUAL])
balrogd5d08332008-01-05 19:41:47 +00001489 return;
thsefe75412007-08-24 01:36:32 +00001490
pbrook2e70f6e2008-06-29 01:03:05 +00001491 nearest_delta_us = qemu_next_deadline_dyntick();
thsefe75412007-08-24 01:36:32 +00001492 nearest_delta_us /= 1000;
1493
1494 timeKillEvent(data->timerId);
1495
1496 data->timerId = timeSetEvent(1,
1497 data->period,
1498 host_alarm_handler,
1499 (DWORD)t,
1500 TIME_ONESHOT | TIME_PERIODIC);
1501
1502 if (!data->timerId) {
1503 perror("Failed to re-arm win32 alarm timer");
1504
1505 timeEndPeriod(data->period);
thsefe75412007-08-24 01:36:32 +00001506 exit(1);
1507 }
1508}
1509
thsc8994012007-08-19 21:56:03 +00001510#endif /* _WIN32 */
1511
aliguori7183b4b2008-11-05 20:40:18 +00001512static int init_timer_alarm(void)
bellard8a7ddc32004-03-31 19:00:16 +00001513{
blueswir1223f0d72008-09-30 18:12:18 +00001514 struct qemu_alarm_timer *t = NULL;
thsc8994012007-08-19 21:56:03 +00001515 int i, err = -1;
aliguorif49e58d2008-11-05 21:22:34 +00001516
thsc8994012007-08-19 21:56:03 +00001517 for (i = 0; alarm_timers[i].name; i++) {
1518 t = &alarm_timers[i];
1519
thsc8994012007-08-19 21:56:03 +00001520 err = t->start(t);
1521 if (!err)
1522 break;
bellard67b915a2004-03-31 23:37:16 +00001523 }
bellardfd872592004-05-12 19:11:15 +00001524
thsc8994012007-08-19 21:56:03 +00001525 if (err) {
aliguori7183b4b2008-11-05 20:40:18 +00001526 err = -ENOENT;
1527 goto fail;
bellard67b915a2004-03-31 23:37:16 +00001528 }
thsc8994012007-08-19 21:56:03 +00001529
1530 alarm_timer = t;
aliguori7183b4b2008-11-05 20:40:18 +00001531
aliguori6abfbd72008-11-05 20:49:37 +00001532 return 0;
aliguori7183b4b2008-11-05 20:40:18 +00001533
1534fail:
aliguori7183b4b2008-11-05 20:40:18 +00001535 return err;
bellard8a7ddc32004-03-31 19:00:16 +00001536}
1537
pbrook9596ebb2007-11-18 01:44:38 +00001538static void quit_timers(void)
bellard40c3bac2004-04-04 12:56:28 +00001539{
thsc8994012007-08-19 21:56:03 +00001540 alarm_timer->stop(alarm_timer);
1541 alarm_timer = NULL;
bellard40c3bac2004-04-04 12:56:28 +00001542}
1543
bellardc4b1fcc2004-03-14 21:44:30 +00001544/***********************************************************/
balrogf6503052008-02-17 11:42:19 +00001545/* host time/date access */
1546void qemu_get_timedate(struct tm *tm, int offset)
1547{
1548 time_t ti;
1549 struct tm *ret;
1550
1551 time(&ti);
1552 ti += offset;
1553 if (rtc_date_offset == -1) {
1554 if (rtc_utc)
1555 ret = gmtime(&ti);
1556 else
1557 ret = localtime(&ti);
1558 } else {
1559 ti -= rtc_date_offset;
1560 ret = gmtime(&ti);
1561 }
1562
1563 memcpy(tm, ret, sizeof(struct tm));
1564}
1565
1566int qemu_timedate_diff(struct tm *tm)
1567{
1568 time_t seconds;
1569
1570 if (rtc_date_offset == -1)
1571 if (rtc_utc)
1572 seconds = mktimegm(tm);
1573 else
1574 seconds = mktime(tm);
1575 else
1576 seconds = mktimegm(tm) + rtc_date_offset;
1577
1578 return seconds - time(NULL);
1579}
1580
bellardfd1dff42006-02-01 21:29:26 +00001581#ifdef _WIN32
bellardfd1dff42006-02-01 21:29:26 +00001582static void socket_cleanup(void)
1583{
1584 WSACleanup();
1585}
bellard82c643f2004-07-14 17:28:13 +00001586
bellardfd1dff42006-02-01 21:29:26 +00001587static int socket_init(void)
1588{
1589 WSADATA Data;
1590 int ret, err;
1591
1592 ret = WSAStartup(MAKEWORD(2,2), &Data);
1593 if (ret != 0) {
1594 err = WSAGetLastError();
1595 fprintf(stderr, "WSAStartup: %d\n", err);
1596 return -1;
1597 }
1598 atexit(socket_cleanup);
1599 return 0;
1600}
aurel3264b7b732008-05-05 10:05:31 +00001601#endif
1602
Jan Kiszka5db4af82009-06-24 14:42:28 +02001603int get_next_param_value(char *buf, int buf_size,
1604 const char *tag, const char **pstr)
bellard7c9d8e02005-11-15 22:16:05 +00001605{
1606 const char *p;
bellard7c9d8e02005-11-15 22:16:05 +00001607 char option[128];
1608
Jan Kiszka5db4af82009-06-24 14:42:28 +02001609 p = *pstr;
bellard7c9d8e02005-11-15 22:16:05 +00001610 for(;;) {
aliguori268a3622009-04-21 22:30:27 +00001611 p = get_opt_name(option, sizeof(option), p, '=');
bellard7c9d8e02005-11-15 22:16:05 +00001612 if (*p != '=')
1613 break;
1614 p++;
1615 if (!strcmp(tag, option)) {
Jan Kiszka5db4af82009-06-24 14:42:28 +02001616 *pstr = get_opt_value(buf, buf_size, p);
1617 if (**pstr == ',') {
1618 (*pstr)++;
1619 }
thse4bcb142007-12-02 04:51:10 +00001620 return strlen(buf);
bellard7c9d8e02005-11-15 22:16:05 +00001621 } else {
balrog609497a2008-01-14 02:56:53 +00001622 p = get_opt_value(NULL, 0, p);
bellard7c9d8e02005-11-15 22:16:05 +00001623 }
1624 if (*p != ',')
1625 break;
1626 p++;
1627 }
1628 return 0;
1629}
1630
Jan Kiszka5db4af82009-06-24 14:42:28 +02001631int get_param_value(char *buf, int buf_size,
1632 const char *tag, const char *str)
1633{
1634 return get_next_param_value(buf, buf_size, tag, &str);
1635}
1636
Jan Kiszka0aa7a202009-05-08 12:34:17 +02001637int check_params(char *buf, int buf_size,
1638 const char * const *params, const char *str)
thse4bcb142007-12-02 04:51:10 +00001639{
1640 const char *p;
Jan Kiszka0aa7a202009-05-08 12:34:17 +02001641 int i;
thse4bcb142007-12-02 04:51:10 +00001642
1643 p = str;
aliguori10300212009-04-21 19:56:23 +00001644 while (*p != '\0') {
Jan Kiszka0aa7a202009-05-08 12:34:17 +02001645 p = get_opt_name(buf, buf_size, p, '=');
Jan Kiszkaffad4112009-04-26 18:53:42 +02001646 if (*p != '=') {
Jan Kiszka0aa7a202009-05-08 12:34:17 +02001647 return -1;
Jan Kiszkaffad4112009-04-26 18:53:42 +02001648 }
thse4bcb142007-12-02 04:51:10 +00001649 p++;
Jan Kiszka0aa7a202009-05-08 12:34:17 +02001650 for (i = 0; params[i] != NULL; i++) {
1651 if (!strcmp(params[i], buf)) {
thse4bcb142007-12-02 04:51:10 +00001652 break;
Jan Kiszka0aa7a202009-05-08 12:34:17 +02001653 }
1654 }
Jan Kiszkaffad4112009-04-26 18:53:42 +02001655 if (params[i] == NULL) {
Jan Kiszka0aa7a202009-05-08 12:34:17 +02001656 return -1;
Jan Kiszkaffad4112009-04-26 18:53:42 +02001657 }
balrog609497a2008-01-14 02:56:53 +00001658 p = get_opt_value(NULL, 0, p);
Jan Kiszka0aa7a202009-05-08 12:34:17 +02001659 if (*p != ',') {
thse4bcb142007-12-02 04:51:10 +00001660 break;
Jan Kiszka0aa7a202009-05-08 12:34:17 +02001661 }
thse4bcb142007-12-02 04:51:10 +00001662 p++;
1663 }
Jan Kiszka0aa7a202009-05-08 12:34:17 +02001664 return 0;
thse4bcb142007-12-02 04:51:10 +00001665}
1666
balrog1ae26a12008-09-28 23:19:47 +00001667/***********************************************************/
1668/* Bluetooth support */
1669static int nb_hcis;
1670static int cur_hci;
1671static struct HCIInfo *hci_table[MAX_NICS];
balrogdc72ac12008-11-09 00:04:26 +00001672
balrog1ae26a12008-09-28 23:19:47 +00001673static struct bt_vlan_s {
1674 struct bt_scatternet_s net;
1675 int id;
1676 struct bt_vlan_s *next;
1677} *first_bt_vlan;
1678
1679/* find or alloc a new bluetooth "VLAN" */
blueswir1674bb262008-09-30 18:18:27 +00001680static struct bt_scatternet_s *qemu_find_bt_vlan(int id)
balrog1ae26a12008-09-28 23:19:47 +00001681{
1682 struct bt_vlan_s **pvlan, *vlan;
1683 for (vlan = first_bt_vlan; vlan != NULL; vlan = vlan->next) {
1684 if (vlan->id == id)
1685 return &vlan->net;
1686 }
1687 vlan = qemu_mallocz(sizeof(struct bt_vlan_s));
1688 vlan->id = id;
1689 pvlan = &first_bt_vlan;
1690 while (*pvlan != NULL)
1691 pvlan = &(*pvlan)->next;
1692 *pvlan = vlan;
1693 return &vlan->net;
1694}
1695
1696static void null_hci_send(struct HCIInfo *hci, const uint8_t *data, int len)
1697{
1698}
1699
1700static int null_hci_addr_set(struct HCIInfo *hci, const uint8_t *bd_addr)
1701{
1702 return -ENOTSUP;
1703}
1704
1705static struct HCIInfo null_hci = {
1706 .cmd_send = null_hci_send,
1707 .sco_send = null_hci_send,
1708 .acl_send = null_hci_send,
1709 .bdaddr_set = null_hci_addr_set,
1710};
1711
1712struct HCIInfo *qemu_next_hci(void)
1713{
1714 if (cur_hci == nb_hcis)
1715 return &null_hci;
1716
1717 return hci_table[cur_hci++];
1718}
1719
balrogdc72ac12008-11-09 00:04:26 +00001720static struct HCIInfo *hci_init(const char *str)
1721{
1722 char *endp;
1723 struct bt_scatternet_s *vlan = 0;
1724
1725 if (!strcmp(str, "null"))
1726 /* null */
1727 return &null_hci;
1728 else if (!strncmp(str, "host", 4) && (str[4] == '\0' || str[4] == ':'))
1729 /* host[:hciN] */
1730 return bt_host_hci(str[4] ? str + 5 : "hci0");
1731 else if (!strncmp(str, "hci", 3)) {
1732 /* hci[,vlan=n] */
1733 if (str[3]) {
1734 if (!strncmp(str + 3, ",vlan=", 6)) {
1735 vlan = qemu_find_bt_vlan(strtol(str + 9, &endp, 0));
1736 if (*endp)
1737 vlan = 0;
1738 }
1739 } else
1740 vlan = qemu_find_bt_vlan(0);
1741 if (vlan)
1742 return bt_new_hci(vlan);
1743 }
1744
1745 fprintf(stderr, "qemu: Unknown bluetooth HCI `%s'.\n", str);
1746
1747 return 0;
1748}
1749
1750static int bt_hci_parse(const char *str)
1751{
1752 struct HCIInfo *hci;
1753 bdaddr_t bdaddr;
1754
1755 if (nb_hcis >= MAX_NICS) {
1756 fprintf(stderr, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS);
1757 return -1;
1758 }
1759
1760 hci = hci_init(str);
1761 if (!hci)
1762 return -1;
1763
1764 bdaddr.b[0] = 0x52;
1765 bdaddr.b[1] = 0x54;
1766 bdaddr.b[2] = 0x00;
1767 bdaddr.b[3] = 0x12;
1768 bdaddr.b[4] = 0x34;
1769 bdaddr.b[5] = 0x56 + nb_hcis;
1770 hci->bdaddr_set(hci, bdaddr.b);
1771
1772 hci_table[nb_hcis++] = hci;
1773
1774 return 0;
1775}
1776
1777static void bt_vhci_add(int vlan_id)
1778{
1779 struct bt_scatternet_s *vlan = qemu_find_bt_vlan(vlan_id);
1780
1781 if (!vlan->slave)
1782 fprintf(stderr, "qemu: warning: adding a VHCI to "
1783 "an empty scatternet %i\n", vlan_id);
1784
1785 bt_vhci_init(bt_new_hci(vlan));
1786}
1787
1788static struct bt_device_s *bt_device_add(const char *opt)
1789{
1790 struct bt_scatternet_s *vlan;
1791 int vlan_id = 0;
1792 char *endp = strstr(opt, ",vlan=");
1793 int len = (endp ? endp - opt : strlen(opt)) + 1;
1794 char devname[10];
1795
1796 pstrcpy(devname, MIN(sizeof(devname), len), opt);
1797
1798 if (endp) {
1799 vlan_id = strtol(endp + 6, &endp, 0);
1800 if (*endp) {
1801 fprintf(stderr, "qemu: unrecognised bluetooth vlan Id\n");
1802 return 0;
1803 }
1804 }
1805
1806 vlan = qemu_find_bt_vlan(vlan_id);
1807
1808 if (!vlan->slave)
1809 fprintf(stderr, "qemu: warning: adding a slave device to "
1810 "an empty scatternet %i\n", vlan_id);
1811
1812 if (!strcmp(devname, "keyboard"))
1813 return bt_keyboard_init(vlan);
1814
1815 fprintf(stderr, "qemu: unsupported bluetooth device `%s'\n", devname);
1816 return 0;
1817}
1818
1819static int bt_parse(const char *opt)
1820{
1821 const char *endp, *p;
1822 int vlan;
1823
1824 if (strstart(opt, "hci", &endp)) {
1825 if (!*endp || *endp == ',') {
1826 if (*endp)
1827 if (!strstart(endp, ",vlan=", 0))
1828 opt = endp + 1;
1829
1830 return bt_hci_parse(opt);
1831 }
1832 } else if (strstart(opt, "vhci", &endp)) {
1833 if (!*endp || *endp == ',') {
1834 if (*endp) {
1835 if (strstart(endp, ",vlan=", &p)) {
1836 vlan = strtol(p, (char **) &endp, 0);
1837 if (*endp) {
1838 fprintf(stderr, "qemu: bad scatternet '%s'\n", p);
1839 return 1;
1840 }
1841 } else {
1842 fprintf(stderr, "qemu: bad parameter '%s'\n", endp + 1);
1843 return 1;
1844 }
1845 } else
1846 vlan = 0;
1847
1848 bt_vhci_add(vlan);
1849 return 0;
1850 }
1851 } else if (strstart(opt, "device:", &endp))
1852 return !bt_device_add(endp);
1853
1854 fprintf(stderr, "qemu: bad bluetooth parameter '%s'\n", opt);
1855 return 1;
1856}
1857
balrog1ae26a12008-09-28 23:19:47 +00001858/***********************************************************/
1859/* QEMU Block devices */
1860
balrog609497a2008-01-14 02:56:53 +00001861#define HD_ALIAS "index=%d,media=disk"
thse4bcb142007-12-02 04:51:10 +00001862#define CDROM_ALIAS "index=2,media=cdrom"
thse4bcb142007-12-02 04:51:10 +00001863#define FD_ALIAS "index=%d,if=floppy"
balrog609497a2008-01-14 02:56:53 +00001864#define PFLASH_ALIAS "if=pflash"
1865#define MTD_ALIAS "if=mtd"
balrog9d413d12007-12-04 00:10:34 +00001866#define SD_ALIAS "index=0,if=sd"
thse4bcb142007-12-02 04:51:10 +00001867
aliguori7d5aca92009-02-11 15:19:58 +00001868static int drive_opt_get_free_idx(void)
1869{
1870 int index;
1871
1872 for (index = 0; index < MAX_DRIVES; index++)
1873 if (!drives_opt[index].used) {
1874 drives_opt[index].used = 1;
1875 return index;
1876 }
1877
1878 return -1;
1879}
1880
1881static int drive_get_free_idx(void)
1882{
1883 int index;
1884
1885 for (index = 0; index < MAX_DRIVES; index++)
1886 if (!drives_table[index].used) {
1887 drives_table[index].used = 1;
1888 return index;
1889 }
1890
1891 return -1;
1892}
1893
aliguori4d73cd32009-02-11 15:20:46 +00001894int drive_add(const char *file, const char *fmt, ...)
thse4bcb142007-12-02 04:51:10 +00001895{
1896 va_list ap;
aliguori7d5aca92009-02-11 15:19:58 +00001897 int index = drive_opt_get_free_idx();
thse4bcb142007-12-02 04:51:10 +00001898
aliguori7d5aca92009-02-11 15:19:58 +00001899 if (nb_drives_opt >= MAX_DRIVES || index == -1) {
thse4bcb142007-12-02 04:51:10 +00001900 fprintf(stderr, "qemu: too many drives\n");
aliguori4d73cd32009-02-11 15:20:46 +00001901 return -1;
thse4bcb142007-12-02 04:51:10 +00001902 }
1903
aliguori7d5aca92009-02-11 15:19:58 +00001904 drives_opt[index].file = file;
thse4bcb142007-12-02 04:51:10 +00001905 va_start(ap, fmt);
aliguori7d5aca92009-02-11 15:19:58 +00001906 vsnprintf(drives_opt[index].opt,
balrog609497a2008-01-14 02:56:53 +00001907 sizeof(drives_opt[0].opt), fmt, ap);
thse4bcb142007-12-02 04:51:10 +00001908 va_end(ap);
1909
aliguori7d5aca92009-02-11 15:19:58 +00001910 nb_drives_opt++;
1911 return index;
thse4bcb142007-12-02 04:51:10 +00001912}
1913
aliguorib01b1112009-02-11 15:20:20 +00001914void drive_remove(int index)
1915{
1916 drives_opt[index].used = 0;
1917 nb_drives_opt--;
1918}
1919
thsf60d39b2007-12-17 03:55:57 +00001920int drive_get_index(BlockInterfaceType type, int bus, int unit)
thse4bcb142007-12-02 04:51:10 +00001921{
1922 int index;
1923
1924 /* seek interface, bus and unit */
1925
aliguori7d5aca92009-02-11 15:19:58 +00001926 for (index = 0; index < MAX_DRIVES; index++)
thsf60d39b2007-12-17 03:55:57 +00001927 if (drives_table[index].type == type &&
thse4bcb142007-12-02 04:51:10 +00001928 drives_table[index].bus == bus &&
aliguori7d5aca92009-02-11 15:19:58 +00001929 drives_table[index].unit == unit &&
1930 drives_table[index].used)
thse4bcb142007-12-02 04:51:10 +00001931 return index;
1932
1933 return -1;
1934}
1935
thsf60d39b2007-12-17 03:55:57 +00001936int drive_get_max_bus(BlockInterfaceType type)
thse4bcb142007-12-02 04:51:10 +00001937{
1938 int max_bus;
1939 int index;
1940
1941 max_bus = -1;
1942 for (index = 0; index < nb_drives; index++) {
thsf60d39b2007-12-17 03:55:57 +00001943 if(drives_table[index].type == type &&
thse4bcb142007-12-02 04:51:10 +00001944 drives_table[index].bus > max_bus)
1945 max_bus = drives_table[index].bus;
1946 }
1947 return max_bus;
1948}
1949
aliguorifa879c62009-01-07 17:32:33 +00001950const char *drive_get_serial(BlockDriverState *bdrv)
1951{
1952 int index;
1953
1954 for (index = 0; index < nb_drives; index++)
1955 if (drives_table[index].bdrv == bdrv)
1956 return drives_table[index].serial;
1957
1958 return "\0";
1959}
1960
aliguori428c5702009-01-21 18:59:04 +00001961BlockInterfaceErrorAction drive_get_onerror(BlockDriverState *bdrv)
1962{
1963 int index;
1964
1965 for (index = 0; index < nb_drives; index++)
1966 if (drives_table[index].bdrv == bdrv)
1967 return drives_table[index].onerror;
1968
aliguoricdad4bd2009-02-28 16:51:01 +00001969 return BLOCK_ERR_STOP_ENOSPC;
aliguori428c5702009-01-21 18:59:04 +00001970}
1971
aurel32a1620fa2008-04-29 05:58:01 +00001972static void bdrv_format_print(void *opaque, const char *name)
1973{
1974 fprintf(stderr, " %s", name);
1975}
1976
aliguorib01b1112009-02-11 15:20:20 +00001977void drive_uninit(BlockDriverState *bdrv)
1978{
1979 int i;
1980
1981 for (i = 0; i < MAX_DRIVES; i++)
1982 if (drives_table[i].bdrv == bdrv) {
1983 drives_table[i].bdrv = NULL;
1984 drives_table[i].used = 0;
1985 drive_remove(drives_table[i].drive_opt_idx);
1986 nb_drives--;
1987 break;
1988 }
1989}
1990
aliguori4d73cd32009-02-11 15:20:46 +00001991int drive_init(struct drive_opt *arg, int snapshot, void *opaque)
thse4bcb142007-12-02 04:51:10 +00001992{
1993 char buf[128];
1994 char file[1024];
balrogc8522bd2007-12-06 22:11:20 +00001995 char devname[128];
aliguorifa879c62009-01-07 17:32:33 +00001996 char serial[21];
balrogc8522bd2007-12-06 22:11:20 +00001997 const char *mediastr = "";
thsf60d39b2007-12-17 03:55:57 +00001998 BlockInterfaceType type;
thse4bcb142007-12-02 04:51:10 +00001999 enum { MEDIA_DISK, MEDIA_CDROM } media;
2000 int bus_id, unit_id;
2001 int cyls, heads, secs, translation;
2002 BlockDriverState *bdrv;
aurel321e72d3b2008-04-28 20:26:45 +00002003 BlockDriver *drv = NULL;
aliguori4d73cd32009-02-11 15:20:46 +00002004 QEMUMachine *machine = opaque;
thse4bcb142007-12-02 04:51:10 +00002005 int max_devs;
2006 int index;
balrog33f00272007-12-24 14:33:24 +00002007 int cache;
aliguori428c5702009-01-21 18:59:04 +00002008 int bdrv_flags, onerror;
Markus Armbrusterc2cc47a2009-06-18 15:14:10 +02002009 const char *devaddr;
aliguori7d5aca92009-02-11 15:19:58 +00002010 int drives_table_idx;
balrog609497a2008-01-14 02:56:53 +00002011 char *str = arg->opt;
blueswir17ccfb2e2008-09-14 06:45:34 +00002012 static const char * const params[] = { "bus", "unit", "if", "index",
2013 "cyls", "heads", "secs", "trans",
2014 "media", "snapshot", "file",
Markus Armbrusterc2cc47a2009-06-18 15:14:10 +02002015 "cache", "format", "serial",
2016 "werror", "addr",
aliguori428c5702009-01-21 18:59:04 +00002017 NULL };
thse4bcb142007-12-02 04:51:10 +00002018
Jan Kiszka0aa7a202009-05-08 12:34:17 +02002019 if (check_params(buf, sizeof(buf), params, str) < 0) {
Mark McLoughlincda94b22009-05-28 14:07:31 +01002020 fprintf(stderr, "qemu: unknown parameter '%s' in '%s'\n",
2021 buf, str);
thse4bcb142007-12-02 04:51:10 +00002022 return -1;
2023 }
2024
2025 file[0] = 0;
2026 cyls = heads = secs = 0;
2027 bus_id = 0;
2028 unit_id = -1;
2029 translation = BIOS_ATA_TRANSLATION_AUTO;
2030 index = -1;
Kevin Wolf0aa217e2009-06-30 13:06:04 +02002031 cache = 1;
thse4bcb142007-12-02 04:51:10 +00002032
blueswir1c9b1ae22008-09-28 18:55:17 +00002033 if (machine->use_scsi) {
thsf60d39b2007-12-17 03:55:57 +00002034 type = IF_SCSI;
thse4bcb142007-12-02 04:51:10 +00002035 max_devs = MAX_SCSI_DEVS;
blueswir1363a37d2008-08-21 17:58:08 +00002036 pstrcpy(devname, sizeof(devname), "scsi");
thse4bcb142007-12-02 04:51:10 +00002037 } else {
thsf60d39b2007-12-17 03:55:57 +00002038 type = IF_IDE;
thse4bcb142007-12-02 04:51:10 +00002039 max_devs = MAX_IDE_DEVS;
blueswir1363a37d2008-08-21 17:58:08 +00002040 pstrcpy(devname, sizeof(devname), "ide");
thse4bcb142007-12-02 04:51:10 +00002041 }
2042 media = MEDIA_DISK;
2043
2044 /* extract parameters */
2045
2046 if (get_param_value(buf, sizeof(buf), "bus", str)) {
2047 bus_id = strtol(buf, NULL, 0);
2048 if (bus_id < 0) {
2049 fprintf(stderr, "qemu: '%s' invalid bus id\n", str);
2050 return -1;
2051 }
2052 }
2053
2054 if (get_param_value(buf, sizeof(buf), "unit", str)) {
2055 unit_id = strtol(buf, NULL, 0);
2056 if (unit_id < 0) {
2057 fprintf(stderr, "qemu: '%s' invalid unit id\n", str);
2058 return -1;
2059 }
2060 }
2061
2062 if (get_param_value(buf, sizeof(buf), "if", str)) {
bellardae45d362008-06-11 09:44:44 +00002063 pstrcpy(devname, sizeof(devname), buf);
thse4bcb142007-12-02 04:51:10 +00002064 if (!strcmp(buf, "ide")) {
thsf60d39b2007-12-17 03:55:57 +00002065 type = IF_IDE;
thse4bcb142007-12-02 04:51:10 +00002066 max_devs = MAX_IDE_DEVS;
2067 } else if (!strcmp(buf, "scsi")) {
thsf60d39b2007-12-17 03:55:57 +00002068 type = IF_SCSI;
thse4bcb142007-12-02 04:51:10 +00002069 max_devs = MAX_SCSI_DEVS;
2070 } else if (!strcmp(buf, "floppy")) {
thsf60d39b2007-12-17 03:55:57 +00002071 type = IF_FLOPPY;
thse4bcb142007-12-02 04:51:10 +00002072 max_devs = 0;
2073 } else if (!strcmp(buf, "pflash")) {
thsf60d39b2007-12-17 03:55:57 +00002074 type = IF_PFLASH;
thse4bcb142007-12-02 04:51:10 +00002075 max_devs = 0;
2076 } else if (!strcmp(buf, "mtd")) {
thsf60d39b2007-12-17 03:55:57 +00002077 type = IF_MTD;
thse4bcb142007-12-02 04:51:10 +00002078 max_devs = 0;
2079 } else if (!strcmp(buf, "sd")) {
thsf60d39b2007-12-17 03:55:57 +00002080 type = IF_SD;
thse4bcb142007-12-02 04:51:10 +00002081 max_devs = 0;
aliguori6e02c382008-12-04 19:52:44 +00002082 } else if (!strcmp(buf, "virtio")) {
2083 type = IF_VIRTIO;
2084 max_devs = 0;
aliguori62d23ef2009-04-22 15:19:30 +00002085 } else if (!strcmp(buf, "xen")) {
2086 type = IF_XEN;
2087 max_devs = 0;
2088 } else {
thse4bcb142007-12-02 04:51:10 +00002089 fprintf(stderr, "qemu: '%s' unsupported bus type '%s'\n", str, buf);
2090 return -1;
2091 }
2092 }
2093
2094 if (get_param_value(buf, sizeof(buf), "index", str)) {
2095 index = strtol(buf, NULL, 0);
2096 if (index < 0) {
2097 fprintf(stderr, "qemu: '%s' invalid index\n", str);
2098 return -1;
2099 }
2100 }
2101
2102 if (get_param_value(buf, sizeof(buf), "cyls", str)) {
2103 cyls = strtol(buf, NULL, 0);
2104 }
2105
2106 if (get_param_value(buf, sizeof(buf), "heads", str)) {
2107 heads = strtol(buf, NULL, 0);
2108 }
2109
2110 if (get_param_value(buf, sizeof(buf), "secs", str)) {
2111 secs = strtol(buf, NULL, 0);
2112 }
2113
2114 if (cyls || heads || secs) {
2115 if (cyls < 1 || cyls > 16383) {
2116 fprintf(stderr, "qemu: '%s' invalid physical cyls number\n", str);
2117 return -1;
2118 }
2119 if (heads < 1 || heads > 16) {
2120 fprintf(stderr, "qemu: '%s' invalid physical heads number\n", str);
2121 return -1;
2122 }
2123 if (secs < 1 || secs > 63) {
2124 fprintf(stderr, "qemu: '%s' invalid physical secs number\n", str);
2125 return -1;
2126 }
2127 }
2128
2129 if (get_param_value(buf, sizeof(buf), "trans", str)) {
2130 if (!cyls) {
2131 fprintf(stderr,
2132 "qemu: '%s' trans must be used with cyls,heads and secs\n",
2133 str);
2134 return -1;
2135 }
2136 if (!strcmp(buf, "none"))
2137 translation = BIOS_ATA_TRANSLATION_NONE;
2138 else if (!strcmp(buf, "lba"))
2139 translation = BIOS_ATA_TRANSLATION_LBA;
2140 else if (!strcmp(buf, "auto"))
2141 translation = BIOS_ATA_TRANSLATION_AUTO;
2142 else {
2143 fprintf(stderr, "qemu: '%s' invalid translation type\n", str);
2144 return -1;
2145 }
2146 }
2147
2148 if (get_param_value(buf, sizeof(buf), "media", str)) {
2149 if (!strcmp(buf, "disk")) {
2150 media = MEDIA_DISK;
2151 } else if (!strcmp(buf, "cdrom")) {
2152 if (cyls || secs || heads) {
2153 fprintf(stderr,
2154 "qemu: '%s' invalid physical CHS format\n", str);
2155 return -1;
2156 }
2157 media = MEDIA_CDROM;
2158 } else {
2159 fprintf(stderr, "qemu: '%s' invalid media\n", str);
2160 return -1;
2161 }
2162 }
2163
2164 if (get_param_value(buf, sizeof(buf), "snapshot", str)) {
2165 if (!strcmp(buf, "on"))
2166 snapshot = 1;
2167 else if (!strcmp(buf, "off"))
2168 snapshot = 0;
2169 else {
2170 fprintf(stderr, "qemu: '%s' invalid snapshot option\n", str);
2171 return -1;
2172 }
2173 }
2174
balrog33f00272007-12-24 14:33:24 +00002175 if (get_param_value(buf, sizeof(buf), "cache", str)) {
aliguori9f7965c2008-10-14 14:42:54 +00002176 if (!strcmp(buf, "off") || !strcmp(buf, "none"))
balrog33f00272007-12-24 14:33:24 +00002177 cache = 0;
aliguori9f7965c2008-10-14 14:42:54 +00002178 else if (!strcmp(buf, "writethrough"))
balrog33f00272007-12-24 14:33:24 +00002179 cache = 1;
aliguori9f7965c2008-10-14 14:42:54 +00002180 else if (!strcmp(buf, "writeback"))
2181 cache = 2;
balrog33f00272007-12-24 14:33:24 +00002182 else {
2183 fprintf(stderr, "qemu: invalid cache option\n");
2184 return -1;
2185 }
2186 }
2187
aurel321e72d3b2008-04-28 20:26:45 +00002188 if (get_param_value(buf, sizeof(buf), "format", str)) {
aurel32a1620fa2008-04-29 05:58:01 +00002189 if (strcmp(buf, "?") == 0) {
2190 fprintf(stderr, "qemu: Supported formats:");
2191 bdrv_iterate_format(bdrv_format_print, NULL);
2192 fprintf(stderr, "\n");
2193 return -1;
2194 }
aurel321e72d3b2008-04-28 20:26:45 +00002195 drv = bdrv_find_format(buf);
2196 if (!drv) {
2197 fprintf(stderr, "qemu: '%s' invalid format\n", buf);
2198 return -1;
2199 }
2200 }
2201
balrog609497a2008-01-14 02:56:53 +00002202 if (arg->file == NULL)
2203 get_param_value(file, sizeof(file), "file", str);
2204 else
2205 pstrcpy(file, sizeof(file), arg->file);
thse4bcb142007-12-02 04:51:10 +00002206
aliguorifa879c62009-01-07 17:32:33 +00002207 if (!get_param_value(serial, sizeof(serial), "serial", str))
2208 memset(serial, 0, sizeof(serial));
2209
aliguoricdad4bd2009-02-28 16:51:01 +00002210 onerror = BLOCK_ERR_STOP_ENOSPC;
aliguori428c5702009-01-21 18:59:04 +00002211 if (get_param_value(buf, sizeof(serial), "werror", str)) {
aliguori869a5c62009-01-22 19:52:25 +00002212 if (type != IF_IDE && type != IF_SCSI && type != IF_VIRTIO) {
aliguoriea8a5d72009-01-22 19:52:21 +00002213 fprintf(stderr, "werror is no supported by this format\n");
aliguori428c5702009-01-21 18:59:04 +00002214 return -1;
2215 }
2216 if (!strcmp(buf, "ignore"))
2217 onerror = BLOCK_ERR_IGNORE;
2218 else if (!strcmp(buf, "enospc"))
2219 onerror = BLOCK_ERR_STOP_ENOSPC;
2220 else if (!strcmp(buf, "stop"))
2221 onerror = BLOCK_ERR_STOP_ANY;
2222 else if (!strcmp(buf, "report"))
2223 onerror = BLOCK_ERR_REPORT;
2224 else {
2225 fprintf(stderr, "qemu: '%s' invalid write error action\n", buf);
2226 return -1;
2227 }
2228 }
2229
Markus Armbrusterc2cc47a2009-06-18 15:14:10 +02002230 devaddr = NULL;
2231 if (get_param_value(buf, sizeof(buf), "addr", str)) {
2232 if (type != IF_VIRTIO) {
2233 fprintf(stderr, "addr is not supported by in '%s'\n", str);
2234 return -1;
2235 }
2236 devaddr = strdup(buf);
2237 }
2238
thse4bcb142007-12-02 04:51:10 +00002239 /* compute bus and unit according index */
2240
2241 if (index != -1) {
2242 if (bus_id != 0 || unit_id != -1) {
2243 fprintf(stderr,
2244 "qemu: '%s' index cannot be used with bus and unit\n", str);
2245 return -1;
2246 }
2247 if (max_devs == 0)
2248 {
2249 unit_id = index;
2250 bus_id = 0;
2251 } else {
2252 unit_id = index % max_devs;
2253 bus_id = index / max_devs;
2254 }
2255 }
2256
2257 /* if user doesn't specify a unit_id,
2258 * try to find the first free
2259 */
2260
2261 if (unit_id == -1) {
2262 unit_id = 0;
thsf60d39b2007-12-17 03:55:57 +00002263 while (drive_get_index(type, bus_id, unit_id) != -1) {
thse4bcb142007-12-02 04:51:10 +00002264 unit_id++;
2265 if (max_devs && unit_id >= max_devs) {
2266 unit_id -= max_devs;
2267 bus_id++;
2268 }
2269 }
2270 }
2271
2272 /* check unit id */
2273
2274 if (max_devs && unit_id >= max_devs) {
2275 fprintf(stderr, "qemu: '%s' unit %d too big (max is %d)\n",
2276 str, unit_id, max_devs - 1);
2277 return -1;
2278 }
2279
2280 /*
2281 * ignore multiple definitions
2282 */
2283
thsf60d39b2007-12-17 03:55:57 +00002284 if (drive_get_index(type, bus_id, unit_id) != -1)
aliguori4d73cd32009-02-11 15:20:46 +00002285 return -2;
thse4bcb142007-12-02 04:51:10 +00002286
2287 /* init */
2288
thsf60d39b2007-12-17 03:55:57 +00002289 if (type == IF_IDE || type == IF_SCSI)
balrogc8522bd2007-12-06 22:11:20 +00002290 mediastr = (media == MEDIA_CDROM) ? "-cd" : "-hd";
balroge6198a72007-12-24 13:58:47 +00002291 if (max_devs)
2292 snprintf(buf, sizeof(buf), "%s%i%s%i",
2293 devname, bus_id, mediastr, unit_id);
2294 else
2295 snprintf(buf, sizeof(buf), "%s%s%i",
2296 devname, mediastr, unit_id);
thse4bcb142007-12-02 04:51:10 +00002297 bdrv = bdrv_new(buf);
aliguori7d5aca92009-02-11 15:19:58 +00002298 drives_table_idx = drive_get_free_idx();
2299 drives_table[drives_table_idx].bdrv = bdrv;
Markus Armbrusterc2cc47a2009-06-18 15:14:10 +02002300 drives_table[drives_table_idx].devaddr = devaddr;
aliguori7d5aca92009-02-11 15:19:58 +00002301 drives_table[drives_table_idx].type = type;
2302 drives_table[drives_table_idx].bus = bus_id;
2303 drives_table[drives_table_idx].unit = unit_id;
2304 drives_table[drives_table_idx].onerror = onerror;
aliguorib01b1112009-02-11 15:20:20 +00002305 drives_table[drives_table_idx].drive_opt_idx = arg - drives_opt;
Anthony Liguorie6a6dfe2009-05-01 09:26:16 -05002306 strncpy(drives_table[drives_table_idx].serial, serial, sizeof(serial));
thse4bcb142007-12-02 04:51:10 +00002307 nb_drives++;
2308
thsf60d39b2007-12-17 03:55:57 +00002309 switch(type) {
thse4bcb142007-12-02 04:51:10 +00002310 case IF_IDE:
2311 case IF_SCSI:
aliguori62d23ef2009-04-22 15:19:30 +00002312 case IF_XEN:
thse4bcb142007-12-02 04:51:10 +00002313 switch(media) {
2314 case MEDIA_DISK:
2315 if (cyls != 0) {
2316 bdrv_set_geometry_hint(bdrv, cyls, heads, secs);
2317 bdrv_set_translation_hint(bdrv, translation);
2318 }
2319 break;
2320 case MEDIA_CDROM:
2321 bdrv_set_type_hint(bdrv, BDRV_TYPE_CDROM);
2322 break;
2323 }
2324 break;
2325 case IF_SD:
2326 /* FIXME: This isn't really a floppy, but it's a reasonable
2327 approximation. */
2328 case IF_FLOPPY:
2329 bdrv_set_type_hint(bdrv, BDRV_TYPE_FLOPPY);
2330 break;
2331 case IF_PFLASH:
2332 case IF_MTD:
aliguori6e02c382008-12-04 19:52:44 +00002333 case IF_VIRTIO:
thse4bcb142007-12-02 04:51:10 +00002334 break;
Paul Brookaae94602009-05-14 22:35:06 +01002335 case IF_COUNT:
2336 abort();
thse4bcb142007-12-02 04:51:10 +00002337 }
2338 if (!file[0])
aliguori4d73cd32009-02-11 15:20:46 +00002339 return -2;
balrog33f00272007-12-24 14:33:24 +00002340 bdrv_flags = 0;
aliguori9f7965c2008-10-14 14:42:54 +00002341 if (snapshot) {
balrog33f00272007-12-24 14:33:24 +00002342 bdrv_flags |= BDRV_O_SNAPSHOT;
aliguori9f7965c2008-10-14 14:42:54 +00002343 cache = 2; /* always use write-back with snapshot */
2344 }
2345 if (cache == 0) /* no caching */
2346 bdrv_flags |= BDRV_O_NOCACHE;
2347 else if (cache == 2) /* write-back */
2348 bdrv_flags |= BDRV_O_CACHE_WB;
aliguoric0f4ce72009-03-05 23:01:01 +00002349 if (bdrv_open2(bdrv, file, bdrv_flags, drv) < 0) {
thse4bcb142007-12-02 04:51:10 +00002350 fprintf(stderr, "qemu: could not open disk image %s\n",
2351 file);
2352 return -1;
2353 }
aliguoric0f4ce72009-03-05 23:01:01 +00002354 if (bdrv_key_required(bdrv))
2355 autostart = 0;
aliguori4d73cd32009-02-11 15:20:46 +00002356 return drives_table_idx;
thse4bcb142007-12-02 04:51:10 +00002357}
2358
aliguori268a3622009-04-21 22:30:27 +00002359static void numa_add(const char *optarg)
2360{
2361 char option[128];
2362 char *endptr;
2363 unsigned long long value, endvalue;
2364 int nodenr;
2365
2366 optarg = get_opt_name(option, 128, optarg, ',') + 1;
2367 if (!strcmp(option, "node")) {
2368 if (get_param_value(option, 128, "nodeid", optarg) == 0) {
2369 nodenr = nb_numa_nodes;
2370 } else {
2371 nodenr = strtoull(option, NULL, 10);
2372 }
2373
2374 if (get_param_value(option, 128, "mem", optarg) == 0) {
2375 node_mem[nodenr] = 0;
2376 } else {
2377 value = strtoull(option, &endptr, 0);
2378 switch (*endptr) {
2379 case 0: case 'M': case 'm':
2380 value <<= 20;
2381 break;
2382 case 'G': case 'g':
2383 value <<= 30;
2384 break;
2385 }
2386 node_mem[nodenr] = value;
2387 }
2388 if (get_param_value(option, 128, "cpus", optarg) == 0) {
2389 node_cpumask[nodenr] = 0;
2390 } else {
2391 value = strtoull(option, &endptr, 10);
2392 if (value >= 64) {
2393 value = 63;
2394 fprintf(stderr, "only 64 CPUs in NUMA mode supported.\n");
2395 } else {
2396 if (*endptr == '-') {
2397 endvalue = strtoull(endptr+1, &endptr, 10);
2398 if (endvalue >= 63) {
2399 endvalue = 62;
2400 fprintf(stderr,
2401 "only 63 CPUs in NUMA mode supported.\n");
2402 }
2403 value = (1 << (endvalue + 1)) - (1 << value);
2404 } else {
2405 value = 1 << value;
2406 }
2407 }
2408 node_cpumask[nodenr] = value;
2409 }
2410 nb_numa_nodes++;
2411 }
2412 return;
2413}
2414
bellard330d0412003-07-26 18:11:40 +00002415/***********************************************************/
bellarda594cfb2005-11-06 16:13:29 +00002416/* USB devices */
2417
pbrook0d92ed32006-05-21 16:30:15 +00002418static USBPort *used_usb_ports;
2419static USBPort *free_usb_ports;
2420
2421/* ??? Maybe change this to register a hub to keep track of the topology. */
2422void qemu_register_usb_port(USBPort *port, void *opaque, int index,
2423 usb_attachfn attach)
2424{
2425 port->opaque = opaque;
2426 port->index = index;
2427 port->attach = attach;
2428 port->next = free_usb_ports;
2429 free_usb_ports = port;
2430}
2431
aliguori4b096fc2008-08-21 19:28:55 +00002432int usb_device_add_dev(USBDevice *dev)
2433{
2434 USBPort *port;
2435
2436 /* Find a USB port to add the device to. */
2437 port = free_usb_ports;
2438 if (!port->next) {
2439 USBDevice *hub;
2440
2441 /* Create a new hub and chain it on. */
2442 free_usb_ports = NULL;
2443 port->next = used_usb_ports;
2444 used_usb_ports = port;
2445
2446 hub = usb_hub_init(VM_USB_HUB_SIZE);
2447 usb_attach(port, hub);
2448 port = free_usb_ports;
2449 }
2450
2451 free_usb_ports = port->next;
2452 port->next = used_usb_ports;
2453 used_usb_ports = port;
2454 usb_attach(port, dev);
2455 return 0;
2456}
2457
aliguoribb5fc202009-03-05 23:01:15 +00002458static void usb_msd_password_cb(void *opaque, int err)
2459{
2460 USBDevice *dev = opaque;
2461
2462 if (!err)
2463 usb_device_add_dev(dev);
2464 else
2465 dev->handle_destroy(dev);
2466}
2467
aliguoric0f4ce72009-03-05 23:01:01 +00002468static int usb_device_add(const char *devname, int is_hotplug)
bellarda594cfb2005-11-06 16:13:29 +00002469{
2470 const char *p;
2471 USBDevice *dev;
bellarda594cfb2005-11-06 16:13:29 +00002472
pbrook0d92ed32006-05-21 16:30:15 +00002473 if (!free_usb_ports)
bellarda594cfb2005-11-06 16:13:29 +00002474 return -1;
2475
2476 if (strstart(devname, "host:", &p)) {
2477 dev = usb_host_device_open(p);
bellarda594cfb2005-11-06 16:13:29 +00002478 } else if (!strcmp(devname, "mouse")) {
2479 dev = usb_mouse_init();
bellard09b26c52006-04-12 21:09:08 +00002480 } else if (!strcmp(devname, "tablet")) {
balrog47b2d332007-06-22 08:16:00 +00002481 dev = usb_tablet_init();
2482 } else if (!strcmp(devname, "keyboard")) {
2483 dev = usb_keyboard_init();
pbrook2e5d83b2006-05-25 23:58:51 +00002484 } else if (strstart(devname, "disk:", &p)) {
aliguoric0f4ce72009-03-05 23:01:01 +00002485 BlockDriverState *bs;
2486
aliguoribb5fc202009-03-05 23:01:15 +00002487 dev = usb_msd_init(p);
aliguoric0f4ce72009-03-05 23:01:01 +00002488 if (!dev)
2489 return -1;
aliguoribb5fc202009-03-05 23:01:15 +00002490 bs = usb_msd_get_bdrv(dev);
aliguoric0f4ce72009-03-05 23:01:01 +00002491 if (bdrv_key_required(bs)) {
2492 autostart = 0;
aliguoribb5fc202009-03-05 23:01:15 +00002493 if (is_hotplug) {
aliguori376253e2009-03-05 23:01:23 +00002494 monitor_read_bdrv_key_start(cur_mon, bs, usb_msd_password_cb,
2495 dev);
aliguoribb5fc202009-03-05 23:01:15 +00002496 return 0;
aliguoric0f4ce72009-03-05 23:01:01 +00002497 }
2498 }
balrogf6d2a312007-06-10 19:21:04 +00002499 } else if (!strcmp(devname, "wacom-tablet")) {
2500 dev = usb_wacom_init();
balroga7954212008-01-14 03:41:02 +00002501 } else if (strstart(devname, "serial:", &p)) {
2502 dev = usb_serial_init(p);
aurel322e4d9fb2008-04-08 06:01:02 +00002503#ifdef CONFIG_BRLAPI
2504 } else if (!strcmp(devname, "braille")) {
2505 dev = usb_baum_init();
2506#endif
balrog6c9f8862008-07-17 20:47:13 +00002507 } else if (strstart(devname, "net:", &p)) {
balrog9ad97e62008-07-29 13:16:31 +00002508 int nic = nb_nics;
balrog6c9f8862008-07-17 20:47:13 +00002509
Jan Kiszka10ae5a72009-05-08 12:34:18 +02002510 if (net_client_init(NULL, "nic", p) < 0)
balrog6c9f8862008-07-17 20:47:13 +00002511 return -1;
balrog9ad97e62008-07-29 13:16:31 +00002512 nd_table[nic].model = "usb";
2513 dev = usb_net_init(&nd_table[nic]);
balrogdc72ac12008-11-09 00:04:26 +00002514 } else if (!strcmp(devname, "bt") || strstart(devname, "bt:", &p)) {
2515 dev = usb_bt_init(devname[2] ? hci_init(p) :
2516 bt_new_hci(qemu_find_bt_vlan(0)));
bellarda594cfb2005-11-06 16:13:29 +00002517 } else {
2518 return -1;
2519 }
pbrook0d92ed32006-05-21 16:30:15 +00002520 if (!dev)
2521 return -1;
2522
aliguori4b096fc2008-08-21 19:28:55 +00002523 return usb_device_add_dev(dev);
bellarda594cfb2005-11-06 16:13:29 +00002524}
2525
aliguori1f3870a2008-08-21 19:27:48 +00002526int usb_device_del_addr(int bus_num, int addr)
bellarda594cfb2005-11-06 16:13:29 +00002527{
pbrook0d92ed32006-05-21 16:30:15 +00002528 USBPort *port;
2529 USBPort **lastp;
bellard059809e2006-07-19 18:06:15 +00002530 USBDevice *dev;
bellarda594cfb2005-11-06 16:13:29 +00002531
pbrook0d92ed32006-05-21 16:30:15 +00002532 if (!used_usb_ports)
bellarda594cfb2005-11-06 16:13:29 +00002533 return -1;
2534
bellarda594cfb2005-11-06 16:13:29 +00002535 if (bus_num != 0)
2536 return -1;
pbrook0d92ed32006-05-21 16:30:15 +00002537
2538 lastp = &used_usb_ports;
2539 port = used_usb_ports;
2540 while (port && port->dev->addr != addr) {
2541 lastp = &port->next;
2542 port = port->next;
bellarda594cfb2005-11-06 16:13:29 +00002543 }
pbrook0d92ed32006-05-21 16:30:15 +00002544
2545 if (!port)
bellarda594cfb2005-11-06 16:13:29 +00002546 return -1;
pbrook0d92ed32006-05-21 16:30:15 +00002547
bellard059809e2006-07-19 18:06:15 +00002548 dev = port->dev;
pbrook0d92ed32006-05-21 16:30:15 +00002549 *lastp = port->next;
2550 usb_attach(port, NULL);
bellard059809e2006-07-19 18:06:15 +00002551 dev->handle_destroy(dev);
pbrook0d92ed32006-05-21 16:30:15 +00002552 port->next = free_usb_ports;
2553 free_usb_ports = port;
bellarda594cfb2005-11-06 16:13:29 +00002554 return 0;
2555}
2556
aliguori1f3870a2008-08-21 19:27:48 +00002557static int usb_device_del(const char *devname)
2558{
2559 int bus_num, addr;
2560 const char *p;
2561
aliguori5d0c5752008-09-14 01:07:41 +00002562 if (strstart(devname, "host:", &p))
2563 return usb_host_device_close(p);
2564
aliguori1f3870a2008-08-21 19:27:48 +00002565 if (!used_usb_ports)
2566 return -1;
2567
2568 p = strchr(devname, '.');
2569 if (!p)
2570 return -1;
2571 bus_num = strtoul(devname, NULL, 0);
2572 addr = strtoul(p + 1, NULL, 0);
2573
2574 return usb_device_del_addr(bus_num, addr);
2575}
2576
aliguori376253e2009-03-05 23:01:23 +00002577void do_usb_add(Monitor *mon, const char *devname)
bellarda594cfb2005-11-06 16:13:29 +00002578{
aliguoric0f4ce72009-03-05 23:01:01 +00002579 usb_device_add(devname, 1);
bellarda594cfb2005-11-06 16:13:29 +00002580}
2581
aliguori376253e2009-03-05 23:01:23 +00002582void do_usb_del(Monitor *mon, const char *devname)
bellarda594cfb2005-11-06 16:13:29 +00002583{
aliguori4b096fc2008-08-21 19:28:55 +00002584 usb_device_del(devname);
bellarda594cfb2005-11-06 16:13:29 +00002585}
2586
aliguori376253e2009-03-05 23:01:23 +00002587void usb_info(Monitor *mon)
bellarda594cfb2005-11-06 16:13:29 +00002588{
2589 USBDevice *dev;
pbrook0d92ed32006-05-21 16:30:15 +00002590 USBPort *port;
bellarda594cfb2005-11-06 16:13:29 +00002591 const char *speed_str;
2592
pbrook0d92ed32006-05-21 16:30:15 +00002593 if (!usb_enabled) {
aliguori376253e2009-03-05 23:01:23 +00002594 monitor_printf(mon, "USB support not enabled\n");
bellarda594cfb2005-11-06 16:13:29 +00002595 return;
2596 }
2597
pbrook0d92ed32006-05-21 16:30:15 +00002598 for (port = used_usb_ports; port; port = port->next) {
2599 dev = port->dev;
2600 if (!dev)
2601 continue;
2602 switch(dev->speed) {
ths5fafdf22007-09-16 21:08:06 +00002603 case USB_SPEED_LOW:
2604 speed_str = "1.5";
pbrook0d92ed32006-05-21 16:30:15 +00002605 break;
ths5fafdf22007-09-16 21:08:06 +00002606 case USB_SPEED_FULL:
2607 speed_str = "12";
pbrook0d92ed32006-05-21 16:30:15 +00002608 break;
ths5fafdf22007-09-16 21:08:06 +00002609 case USB_SPEED_HIGH:
2610 speed_str = "480";
pbrook0d92ed32006-05-21 16:30:15 +00002611 break;
2612 default:
ths5fafdf22007-09-16 21:08:06 +00002613 speed_str = "?";
pbrook0d92ed32006-05-21 16:30:15 +00002614 break;
bellarda594cfb2005-11-06 16:13:29 +00002615 }
aliguori376253e2009-03-05 23:01:23 +00002616 monitor_printf(mon, " Device %d.%d, Speed %s Mb/s, Product %s\n",
2617 0, dev->addr, speed_str, dev->devname);
bellarda594cfb2005-11-06 16:13:29 +00002618 }
2619}
2620
bellardf7cce892004-12-08 22:21:25 +00002621/***********************************************************/
balrog201a51f2007-04-30 00:51:09 +00002622/* PCMCIA/Cardbus */
2623
2624static struct pcmcia_socket_entry_s {
Paul Brookbc24a222009-05-10 01:44:56 +01002625 PCMCIASocket *socket;
balrog201a51f2007-04-30 00:51:09 +00002626 struct pcmcia_socket_entry_s *next;
2627} *pcmcia_sockets = 0;
2628
Paul Brookbc24a222009-05-10 01:44:56 +01002629void pcmcia_socket_register(PCMCIASocket *socket)
balrog201a51f2007-04-30 00:51:09 +00002630{
2631 struct pcmcia_socket_entry_s *entry;
2632
2633 entry = qemu_malloc(sizeof(struct pcmcia_socket_entry_s));
2634 entry->socket = socket;
2635 entry->next = pcmcia_sockets;
2636 pcmcia_sockets = entry;
2637}
2638
Paul Brookbc24a222009-05-10 01:44:56 +01002639void pcmcia_socket_unregister(PCMCIASocket *socket)
balrog201a51f2007-04-30 00:51:09 +00002640{
2641 struct pcmcia_socket_entry_s *entry, **ptr;
2642
2643 ptr = &pcmcia_sockets;
2644 for (entry = *ptr; entry; ptr = &entry->next, entry = *ptr)
2645 if (entry->socket == socket) {
2646 *ptr = entry->next;
2647 qemu_free(entry);
2648 }
2649}
2650
aliguori376253e2009-03-05 23:01:23 +00002651void pcmcia_info(Monitor *mon)
balrog201a51f2007-04-30 00:51:09 +00002652{
2653 struct pcmcia_socket_entry_s *iter;
aliguori376253e2009-03-05 23:01:23 +00002654
balrog201a51f2007-04-30 00:51:09 +00002655 if (!pcmcia_sockets)
aliguori376253e2009-03-05 23:01:23 +00002656 monitor_printf(mon, "No PCMCIA sockets\n");
balrog201a51f2007-04-30 00:51:09 +00002657
2658 for (iter = pcmcia_sockets; iter; iter = iter->next)
aliguori376253e2009-03-05 23:01:23 +00002659 monitor_printf(mon, "%s: %s\n", iter->socket->slot_string,
2660 iter->socket->attached ? iter->socket->card_string :
2661 "Empty");
balrog201a51f2007-04-30 00:51:09 +00002662}
2663
2664/***********************************************************/
aliguori3023f3322009-01-16 19:04:14 +00002665/* register display */
2666
aliguori7b5d76d2009-03-13 15:02:13 +00002667struct DisplayAllocator default_allocator = {
2668 defaultallocator_create_displaysurface,
2669 defaultallocator_resize_displaysurface,
2670 defaultallocator_free_displaysurface
2671};
2672
aliguori3023f3322009-01-16 19:04:14 +00002673void register_displaystate(DisplayState *ds)
2674{
2675 DisplayState **s;
2676 s = &display_state;
2677 while (*s != NULL)
2678 s = &(*s)->next;
2679 ds->next = NULL;
2680 *s = ds;
2681}
2682
2683DisplayState *get_displaystate(void)
2684{
2685 return display_state;
2686}
2687
aliguori7b5d76d2009-03-13 15:02:13 +00002688DisplayAllocator *register_displayallocator(DisplayState *ds, DisplayAllocator *da)
2689{
2690 if(ds->allocator == &default_allocator) ds->allocator = da;
2691 return ds->allocator;
2692}
2693
ths2ff89792007-06-21 23:34:19 +00002694/* dumb display */
2695
aliguori8f391ab2009-01-19 16:34:10 +00002696static void dumb_display_init(void)
ths2ff89792007-06-21 23:34:19 +00002697{
aliguori8f391ab2009-01-19 16:34:10 +00002698 DisplayState *ds = qemu_mallocz(sizeof(DisplayState));
aliguori7b5d76d2009-03-13 15:02:13 +00002699 ds->allocator = &default_allocator;
2700 ds->surface = qemu_create_displaysurface(ds, 640, 480);
aliguori8f391ab2009-01-19 16:34:10 +00002701 register_displaystate(ds);
ths2ff89792007-06-21 23:34:19 +00002702}
2703
2704/***********************************************************/
bellard8a7ddc32004-03-31 19:00:16 +00002705/* I/O handling */
bellard0824d6f2003-06-24 13:42:40 +00002706
bellardc4b1fcc2004-03-14 21:44:30 +00002707typedef struct IOHandlerRecord {
2708 int fd;
bellard7c9d8e02005-11-15 22:16:05 +00002709 IOCanRWHandler *fd_read_poll;
2710 IOHandler *fd_read;
2711 IOHandler *fd_write;
thscafffd42007-02-28 21:59:44 +00002712 int deleted;
bellardc4b1fcc2004-03-14 21:44:30 +00002713 void *opaque;
2714 /* temporary data */
2715 struct pollfd *ufd;
bellard8a7ddc32004-03-31 19:00:16 +00002716 struct IOHandlerRecord *next;
bellardc4b1fcc2004-03-14 21:44:30 +00002717} IOHandlerRecord;
2718
bellard8a7ddc32004-03-31 19:00:16 +00002719static IOHandlerRecord *first_io_handler;
bellardc4b1fcc2004-03-14 21:44:30 +00002720
bellard7c9d8e02005-11-15 22:16:05 +00002721/* XXX: fd_read_poll should be suppressed, but an API change is
2722 necessary in the character devices to suppress fd_can_read(). */
ths5fafdf22007-09-16 21:08:06 +00002723int qemu_set_fd_handler2(int fd,
2724 IOCanRWHandler *fd_read_poll,
2725 IOHandler *fd_read,
2726 IOHandler *fd_write,
bellard7c9d8e02005-11-15 22:16:05 +00002727 void *opaque)
bellardb4608c02003-06-27 17:34:32 +00002728{
bellard8a7ddc32004-03-31 19:00:16 +00002729 IOHandlerRecord **pioh, *ioh;
2730
bellard7c9d8e02005-11-15 22:16:05 +00002731 if (!fd_read && !fd_write) {
2732 pioh = &first_io_handler;
2733 for(;;) {
2734 ioh = *pioh;
2735 if (ioh == NULL)
2736 break;
2737 if (ioh->fd == fd) {
thscafffd42007-02-28 21:59:44 +00002738 ioh->deleted = 1;
bellard7c9d8e02005-11-15 22:16:05 +00002739 break;
2740 }
2741 pioh = &ioh->next;
bellard8a7ddc32004-03-31 19:00:16 +00002742 }
bellard7c9d8e02005-11-15 22:16:05 +00002743 } else {
2744 for(ioh = first_io_handler; ioh != NULL; ioh = ioh->next) {
2745 if (ioh->fd == fd)
2746 goto found;
2747 }
2748 ioh = qemu_mallocz(sizeof(IOHandlerRecord));
bellard7c9d8e02005-11-15 22:16:05 +00002749 ioh->next = first_io_handler;
2750 first_io_handler = ioh;
2751 found:
2752 ioh->fd = fd;
2753 ioh->fd_read_poll = fd_read_poll;
2754 ioh->fd_read = fd_read;
2755 ioh->fd_write = fd_write;
2756 ioh->opaque = opaque;
thscafffd42007-02-28 21:59:44 +00002757 ioh->deleted = 0;
bellard8a7ddc32004-03-31 19:00:16 +00002758 }
bellard7c9d8e02005-11-15 22:16:05 +00002759 return 0;
2760}
2761
ths5fafdf22007-09-16 21:08:06 +00002762int qemu_set_fd_handler(int fd,
2763 IOHandler *fd_read,
2764 IOHandler *fd_write,
bellard7c9d8e02005-11-15 22:16:05 +00002765 void *opaque)
2766{
2767 return qemu_set_fd_handler2(fd, NULL, fd_read, fd_write, opaque);
bellardb4608c02003-06-27 17:34:32 +00002768}
2769
aliguori56f3a5d2008-10-31 18:07:17 +00002770#ifdef _WIN32
bellard8a7ddc32004-03-31 19:00:16 +00002771/***********************************************************/
bellardf3311102006-04-12 20:21:17 +00002772/* Polling handling */
2773
2774typedef struct PollingEntry {
2775 PollingFunc *func;
2776 void *opaque;
2777 struct PollingEntry *next;
2778} PollingEntry;
2779
2780static PollingEntry *first_polling_entry;
2781
2782int qemu_add_polling_cb(PollingFunc *func, void *opaque)
2783{
2784 PollingEntry **ppe, *pe;
2785 pe = qemu_mallocz(sizeof(PollingEntry));
bellardf3311102006-04-12 20:21:17 +00002786 pe->func = func;
2787 pe->opaque = opaque;
2788 for(ppe = &first_polling_entry; *ppe != NULL; ppe = &(*ppe)->next);
2789 *ppe = pe;
2790 return 0;
2791}
2792
2793void qemu_del_polling_cb(PollingFunc *func, void *opaque)
2794{
2795 PollingEntry **ppe, *pe;
2796 for(ppe = &first_polling_entry; *ppe != NULL; ppe = &(*ppe)->next) {
2797 pe = *ppe;
2798 if (pe->func == func && pe->opaque == opaque) {
2799 *ppe = pe->next;
2800 qemu_free(pe);
2801 break;
2802 }
2803 }
2804}
2805
bellarda18e5242006-06-25 17:18:27 +00002806/***********************************************************/
2807/* Wait objects support */
2808typedef struct WaitObjects {
2809 int num;
2810 HANDLE events[MAXIMUM_WAIT_OBJECTS + 1];
2811 WaitObjectFunc *func[MAXIMUM_WAIT_OBJECTS + 1];
2812 void *opaque[MAXIMUM_WAIT_OBJECTS + 1];
2813} WaitObjects;
2814
2815static WaitObjects wait_objects = {0};
ths3b46e622007-09-17 08:09:54 +00002816
bellarda18e5242006-06-25 17:18:27 +00002817int qemu_add_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
2818{
2819 WaitObjects *w = &wait_objects;
2820
2821 if (w->num >= MAXIMUM_WAIT_OBJECTS)
2822 return -1;
2823 w->events[w->num] = handle;
2824 w->func[w->num] = func;
2825 w->opaque[w->num] = opaque;
2826 w->num++;
2827 return 0;
2828}
2829
2830void qemu_del_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
2831{
2832 int i, found;
2833 WaitObjects *w = &wait_objects;
2834
2835 found = 0;
2836 for (i = 0; i < w->num; i++) {
2837 if (w->events[i] == handle)
2838 found = 1;
2839 if (found) {
2840 w->events[i] = w->events[i + 1];
2841 w->func[i] = w->func[i + 1];
2842 w->opaque[i] = w->opaque[i + 1];
ths3b46e622007-09-17 08:09:54 +00002843 }
bellarda18e5242006-06-25 17:18:27 +00002844 }
2845 if (found)
2846 w->num--;
2847}
2848#endif
2849
bellard8a7ddc32004-03-31 19:00:16 +00002850/***********************************************************/
bellard8a7ddc32004-03-31 19:00:16 +00002851/* ram save/restore */
2852
bellard8a7ddc32004-03-31 19:00:16 +00002853static int ram_get_page(QEMUFile *f, uint8_t *buf, int len)
2854{
2855 int v;
2856
2857 v = qemu_get_byte(f);
2858 switch(v) {
2859 case 0:
2860 if (qemu_get_buffer(f, buf, len) != len)
2861 return -EIO;
2862 break;
2863 case 1:
2864 v = qemu_get_byte(f);
2865 memset(buf, v, len);
2866 break;
2867 default:
2868 return -EINVAL;
2869 }
aliguori871d2f02008-10-13 03:07:56 +00002870
2871 if (qemu_file_has_error(f))
2872 return -EIO;
2873
bellard8a7ddc32004-03-31 19:00:16 +00002874 return 0;
2875}
2876
bellardc88676f2006-08-06 13:36:11 +00002877static int ram_load_v1(QEMUFile *f, void *opaque)
bellard8a7ddc32004-03-31 19:00:16 +00002878{
aurel3200f82b82008-04-27 21:12:55 +00002879 int ret;
2880 ram_addr_t i;
bellard8a7ddc32004-03-31 19:00:16 +00002881
pbrook94a6b542009-04-11 17:15:54 +00002882 if (qemu_get_be32(f) != last_ram_offset)
bellard8a7ddc32004-03-31 19:00:16 +00002883 return -EINVAL;
pbrook94a6b542009-04-11 17:15:54 +00002884 for(i = 0; i < last_ram_offset; i+= TARGET_PAGE_SIZE) {
pbrook5579c7f2009-04-11 14:47:08 +00002885 ret = ram_get_page(f, qemu_get_ram_ptr(i), TARGET_PAGE_SIZE);
bellard8a7ddc32004-03-31 19:00:16 +00002886 if (ret)
2887 return ret;
2888 }
2889 return 0;
2890}
2891
bellardc88676f2006-08-06 13:36:11 +00002892#define BDRV_HASH_BLOCK_SIZE 1024
2893#define IOBUF_SIZE 4096
2894#define RAM_CBLOCK_MAGIC 0xfabe
2895
bellardc88676f2006-08-06 13:36:11 +00002896typedef struct RamDecompressState {
2897 z_stream zstream;
2898 QEMUFile *f;
2899 uint8_t buf[IOBUF_SIZE];
2900} RamDecompressState;
2901
2902static int ram_decompress_open(RamDecompressState *s, QEMUFile *f)
2903{
2904 int ret;
2905 memset(s, 0, sizeof(*s));
2906 s->f = f;
2907 ret = inflateInit(&s->zstream);
2908 if (ret != Z_OK)
2909 return -1;
2910 return 0;
2911}
2912
2913static int ram_decompress_buf(RamDecompressState *s, uint8_t *buf, int len)
2914{
2915 int ret, clen;
2916
2917 s->zstream.avail_out = len;
2918 s->zstream.next_out = buf;
2919 while (s->zstream.avail_out > 0) {
2920 if (s->zstream.avail_in == 0) {
2921 if (qemu_get_be16(s->f) != RAM_CBLOCK_MAGIC)
2922 return -1;
2923 clen = qemu_get_be16(s->f);
2924 if (clen > IOBUF_SIZE)
2925 return -1;
2926 qemu_get_buffer(s->f, s->buf, clen);
2927 s->zstream.avail_in = clen;
2928 s->zstream.next_in = s->buf;
2929 }
2930 ret = inflate(&s->zstream, Z_PARTIAL_FLUSH);
2931 if (ret != Z_OK && ret != Z_STREAM_END) {
2932 return -1;
2933 }
2934 }
2935 return 0;
2936}
2937
2938static void ram_decompress_close(RamDecompressState *s)
2939{
2940 inflateEnd(&s->zstream);
2941}
2942
aliguori475e4272008-10-06 20:21:51 +00002943#define RAM_SAVE_FLAG_FULL 0x01
2944#define RAM_SAVE_FLAG_COMPRESS 0x02
2945#define RAM_SAVE_FLAG_MEM_SIZE 0x04
2946#define RAM_SAVE_FLAG_PAGE 0x08
2947#define RAM_SAVE_FLAG_EOS 0x10
2948
2949static int is_dup_page(uint8_t *page, uint8_t ch)
bellardc88676f2006-08-06 13:36:11 +00002950{
aliguori475e4272008-10-06 20:21:51 +00002951 uint32_t val = ch << 24 | ch << 16 | ch << 8 | ch;
2952 uint32_t *array = (uint32_t *)page;
2953 int i;
ths3b46e622007-09-17 08:09:54 +00002954
aliguori475e4272008-10-06 20:21:51 +00002955 for (i = 0; i < (TARGET_PAGE_SIZE / 4); i++) {
2956 if (array[i] != val)
2957 return 0;
bellardc88676f2006-08-06 13:36:11 +00002958 }
aliguori475e4272008-10-06 20:21:51 +00002959
2960 return 1;
bellardc88676f2006-08-06 13:36:11 +00002961}
2962
aliguori475e4272008-10-06 20:21:51 +00002963static int ram_save_block(QEMUFile *f)
2964{
2965 static ram_addr_t current_addr = 0;
2966 ram_addr_t saved_addr = current_addr;
2967 ram_addr_t addr = 0;
2968 int found = 0;
2969
pbrook94a6b542009-04-11 17:15:54 +00002970 while (addr < last_ram_offset) {
aliguori475e4272008-10-06 20:21:51 +00002971 if (cpu_physical_memory_get_dirty(current_addr, MIGRATION_DIRTY_FLAG)) {
pbrook5579c7f2009-04-11 14:47:08 +00002972 uint8_t *p;
aliguori475e4272008-10-06 20:21:51 +00002973
2974 cpu_physical_memory_reset_dirty(current_addr,
2975 current_addr + TARGET_PAGE_SIZE,
2976 MIGRATION_DIRTY_FLAG);
2977
pbrook5579c7f2009-04-11 14:47:08 +00002978 p = qemu_get_ram_ptr(current_addr);
aliguori475e4272008-10-06 20:21:51 +00002979
pbrook5579c7f2009-04-11 14:47:08 +00002980 if (is_dup_page(p, *p)) {
aliguori475e4272008-10-06 20:21:51 +00002981 qemu_put_be64(f, current_addr | RAM_SAVE_FLAG_COMPRESS);
pbrook5579c7f2009-04-11 14:47:08 +00002982 qemu_put_byte(f, *p);
aliguori475e4272008-10-06 20:21:51 +00002983 } else {
2984 qemu_put_be64(f, current_addr | RAM_SAVE_FLAG_PAGE);
pbrook5579c7f2009-04-11 14:47:08 +00002985 qemu_put_buffer(f, p, TARGET_PAGE_SIZE);
aliguori475e4272008-10-06 20:21:51 +00002986 }
2987
2988 found = 1;
2989 break;
2990 }
2991 addr += TARGET_PAGE_SIZE;
pbrook94a6b542009-04-11 17:15:54 +00002992 current_addr = (saved_addr + addr) % last_ram_offset;
aliguori475e4272008-10-06 20:21:51 +00002993 }
2994
2995 return found;
2996}
2997
Glauber Costa9f9e28c2009-05-21 17:38:01 -04002998static uint64_t bytes_transferred = 0;
aliguori475e4272008-10-06 20:21:51 +00002999
3000static ram_addr_t ram_save_remaining(void)
3001{
3002 ram_addr_t addr;
3003 ram_addr_t count = 0;
3004
pbrook94a6b542009-04-11 17:15:54 +00003005 for (addr = 0; addr < last_ram_offset; addr += TARGET_PAGE_SIZE) {
aliguori475e4272008-10-06 20:21:51 +00003006 if (cpu_physical_memory_get_dirty(addr, MIGRATION_DIRTY_FLAG))
3007 count++;
3008 }
3009
3010 return count;
3011}
3012
Glauber Costa9f9e28c2009-05-21 17:38:01 -04003013uint64_t ram_bytes_remaining(void)
3014{
3015 return ram_save_remaining() * TARGET_PAGE_SIZE;
3016}
3017
3018uint64_t ram_bytes_transferred(void)
3019{
3020 return bytes_transferred;
3021}
3022
3023uint64_t ram_bytes_total(void)
3024{
3025 return last_ram_offset;
3026}
3027
aliguori475e4272008-10-06 20:21:51 +00003028static int ram_save_live(QEMUFile *f, int stage, void *opaque)
3029{
3030 ram_addr_t addr;
Glauber Costaa0a3fd62009-05-28 15:22:57 -04003031 uint64_t bytes_transferred_last;
3032 double bwidth = 0;
3033 uint64_t expected_time = 0;
aliguori475e4272008-10-06 20:21:51 +00003034
Jan Kiszka9fa06382009-05-22 23:51:45 +02003035 if (cpu_physical_sync_dirty_bitmap(0, TARGET_PHYS_ADDR_MAX) != 0) {
Jan Kiszkab0a46a32009-05-02 00:22:51 +02003036 qemu_file_set_error(f);
3037 return 0;
3038 }
3039
aliguori475e4272008-10-06 20:21:51 +00003040 if (stage == 1) {
3041 /* Make sure all dirty bits are set */
pbrook94a6b542009-04-11 17:15:54 +00003042 for (addr = 0; addr < last_ram_offset; addr += TARGET_PAGE_SIZE) {
aliguori475e4272008-10-06 20:21:51 +00003043 if (!cpu_physical_memory_get_dirty(addr, MIGRATION_DIRTY_FLAG))
3044 cpu_physical_memory_set_dirty(addr);
3045 }
Jan Kiszkab0a46a32009-05-02 00:22:51 +02003046
aliguori475e4272008-10-06 20:21:51 +00003047 /* Enable dirty memory tracking */
3048 cpu_physical_memory_set_dirty_tracking(1);
3049
pbrook94a6b542009-04-11 17:15:54 +00003050 qemu_put_be64(f, last_ram_offset | RAM_SAVE_FLAG_MEM_SIZE);
aliguori475e4272008-10-06 20:21:51 +00003051 }
3052
Glauber Costaa0a3fd62009-05-28 15:22:57 -04003053 bytes_transferred_last = bytes_transferred;
3054 bwidth = get_clock();
3055
aliguori475e4272008-10-06 20:21:51 +00003056 while (!qemu_file_rate_limit(f)) {
3057 int ret;
3058
3059 ret = ram_save_block(f);
Glauber Costa9f9e28c2009-05-21 17:38:01 -04003060 bytes_transferred += ret * TARGET_PAGE_SIZE;
aliguori475e4272008-10-06 20:21:51 +00003061 if (ret == 0) /* no more blocks */
3062 break;
3063 }
3064
Glauber Costaa0a3fd62009-05-28 15:22:57 -04003065 bwidth = get_clock() - bwidth;
3066 bwidth = (bytes_transferred - bytes_transferred_last) / bwidth;
3067
3068 /* if we haven't transferred anything this round, force expected_time to a
3069 * a very high value, but without crashing */
3070 if (bwidth == 0)
3071 bwidth = 0.000001;
3072
aliguori475e4272008-10-06 20:21:51 +00003073 /* try transferring iterative blocks of memory */
3074
3075 if (stage == 3) {
aliguori475e4272008-10-06 20:21:51 +00003076
3077 /* flush all remaining blocks regardless of rate limiting */
Glauber Costa9f9e28c2009-05-21 17:38:01 -04003078 while (ram_save_block(f) != 0) {
3079 bytes_transferred += TARGET_PAGE_SIZE;
3080 }
aliguori8215e912009-04-05 19:30:55 +00003081 cpu_physical_memory_set_dirty_tracking(0);
aliguori475e4272008-10-06 20:21:51 +00003082 }
3083
3084 qemu_put_be64(f, RAM_SAVE_FLAG_EOS);
3085
Glauber Costaa0a3fd62009-05-28 15:22:57 -04003086 expected_time = ram_save_remaining() * TARGET_PAGE_SIZE / bwidth;
3087
3088 return (stage == 2) && (expected_time <= migrate_max_downtime());
aliguori475e4272008-10-06 20:21:51 +00003089}
3090
3091static int ram_load_dead(QEMUFile *f, void *opaque)
bellardc88676f2006-08-06 13:36:11 +00003092{
3093 RamDecompressState s1, *s = &s1;
3094 uint8_t buf[10];
aurel3200f82b82008-04-27 21:12:55 +00003095 ram_addr_t i;
bellardc88676f2006-08-06 13:36:11 +00003096
bellardc88676f2006-08-06 13:36:11 +00003097 if (ram_decompress_open(s, f) < 0)
3098 return -EINVAL;
pbrook94a6b542009-04-11 17:15:54 +00003099 for(i = 0; i < last_ram_offset; i+= BDRV_HASH_BLOCK_SIZE) {
bellardc88676f2006-08-06 13:36:11 +00003100 if (ram_decompress_buf(s, buf, 1) < 0) {
3101 fprintf(stderr, "Error while reading ram block header\n");
3102 goto error;
3103 }
3104 if (buf[0] == 0) {
pbrook5579c7f2009-04-11 14:47:08 +00003105 if (ram_decompress_buf(s, qemu_get_ram_ptr(i),
3106 BDRV_HASH_BLOCK_SIZE) < 0) {
aurel3200f82b82008-04-27 21:12:55 +00003107 fprintf(stderr, "Error while reading ram block address=0x%08" PRIx64, (uint64_t)i);
bellardc88676f2006-08-06 13:36:11 +00003108 goto error;
3109 }
aliguori475e4272008-10-06 20:21:51 +00003110 } else {
bellardc88676f2006-08-06 13:36:11 +00003111 error:
3112 printf("Error block header\n");
3113 return -EINVAL;
3114 }
3115 }
3116 ram_decompress_close(s);
aliguori475e4272008-10-06 20:21:51 +00003117
3118 return 0;
3119}
3120
3121static int ram_load(QEMUFile *f, void *opaque, int version_id)
3122{
3123 ram_addr_t addr;
3124 int flags;
3125
3126 if (version_id == 1)
3127 return ram_load_v1(f, opaque);
3128
3129 if (version_id == 2) {
pbrook94a6b542009-04-11 17:15:54 +00003130 if (qemu_get_be32(f) != last_ram_offset)
aliguori475e4272008-10-06 20:21:51 +00003131 return -EINVAL;
3132 return ram_load_dead(f, opaque);
3133 }
3134
3135 if (version_id != 3)
3136 return -EINVAL;
3137
3138 do {
3139 addr = qemu_get_be64(f);
3140
3141 flags = addr & ~TARGET_PAGE_MASK;
3142 addr &= TARGET_PAGE_MASK;
3143
3144 if (flags & RAM_SAVE_FLAG_MEM_SIZE) {
pbrook94a6b542009-04-11 17:15:54 +00003145 if (addr != last_ram_offset)
aliguori475e4272008-10-06 20:21:51 +00003146 return -EINVAL;
3147 }
3148
3149 if (flags & RAM_SAVE_FLAG_FULL) {
3150 if (ram_load_dead(f, opaque) < 0)
3151 return -EINVAL;
3152 }
3153
3154 if (flags & RAM_SAVE_FLAG_COMPRESS) {
3155 uint8_t ch = qemu_get_byte(f);
Anthony Liguori779c6be2009-06-22 12:39:00 -05003156 memset(qemu_get_ram_ptr(addr), ch, TARGET_PAGE_SIZE);
3157#ifndef _WIN32
Anthony Liguori30868442009-06-17 16:46:12 -05003158 if (ch == 0 &&
3159 (!kvm_enabled() || kvm_has_sync_mmu())) {
3160 madvise(qemu_get_ram_ptr(addr), TARGET_PAGE_SIZE, MADV_DONTNEED);
Anthony Liguori779c6be2009-06-22 12:39:00 -05003161 }
Anthony Liguori30868442009-06-17 16:46:12 -05003162#endif
aliguori475e4272008-10-06 20:21:51 +00003163 } else if (flags & RAM_SAVE_FLAG_PAGE)
pbrook5579c7f2009-04-11 14:47:08 +00003164 qemu_get_buffer(f, qemu_get_ram_ptr(addr), TARGET_PAGE_SIZE);
aliguori475e4272008-10-06 20:21:51 +00003165 } while (!(flags & RAM_SAVE_FLAG_EOS));
3166
bellardc88676f2006-08-06 13:36:11 +00003167 return 0;
3168}
3169
aliguori9e472e12008-10-08 19:50:24 +00003170void qemu_service_io(void)
3171{
aliguorid9f75a42009-04-24 18:03:11 +00003172 qemu_notify_event();
aliguori9e472e12008-10-08 19:50:24 +00003173}
3174
bellard8a7ddc32004-03-31 19:00:16 +00003175/***********************************************************/
bellard83f64092006-08-01 16:21:11 +00003176/* bottom halves (can be seen as timers which expire ASAP) */
3177
3178struct QEMUBH {
3179 QEMUBHFunc *cb;
3180 void *opaque;
3181 int scheduled;
aliguori1b435b12008-10-31 17:24:21 +00003182 int idle;
3183 int deleted;
bellard83f64092006-08-01 16:21:11 +00003184 QEMUBH *next;
3185};
3186
3187static QEMUBH *first_bh = NULL;
3188
3189QEMUBH *qemu_bh_new(QEMUBHFunc *cb, void *opaque)
3190{
3191 QEMUBH *bh;
3192 bh = qemu_mallocz(sizeof(QEMUBH));
bellard83f64092006-08-01 16:21:11 +00003193 bh->cb = cb;
3194 bh->opaque = opaque;
aliguori1b435b12008-10-31 17:24:21 +00003195 bh->next = first_bh;
3196 first_bh = bh;
bellard83f64092006-08-01 16:21:11 +00003197 return bh;
3198}
3199
bellard6eb57332006-08-06 09:51:25 +00003200int qemu_bh_poll(void)
bellard83f64092006-08-01 16:21:11 +00003201{
aliguori1b435b12008-10-31 17:24:21 +00003202 QEMUBH *bh, **bhp;
bellard6eb57332006-08-06 09:51:25 +00003203 int ret;
bellard83f64092006-08-01 16:21:11 +00003204
bellard6eb57332006-08-06 09:51:25 +00003205 ret = 0;
aliguori1b435b12008-10-31 17:24:21 +00003206 for (bh = first_bh; bh; bh = bh->next) {
3207 if (!bh->deleted && bh->scheduled) {
3208 bh->scheduled = 0;
3209 if (!bh->idle)
3210 ret = 1;
3211 bh->idle = 0;
3212 bh->cb(bh->opaque);
3213 }
bellard83f64092006-08-01 16:21:11 +00003214 }
aliguori1b435b12008-10-31 17:24:21 +00003215
3216 /* remove deleted bhs */
3217 bhp = &first_bh;
3218 while (*bhp) {
3219 bh = *bhp;
3220 if (bh->deleted) {
3221 *bhp = bh->next;
3222 qemu_free(bh);
3223 } else
3224 bhp = &bh->next;
3225 }
3226
bellard6eb57332006-08-06 09:51:25 +00003227 return ret;
bellard83f64092006-08-01 16:21:11 +00003228}
3229
aliguori1b435b12008-10-31 17:24:21 +00003230void qemu_bh_schedule_idle(QEMUBH *bh)
3231{
3232 if (bh->scheduled)
3233 return;
3234 bh->scheduled = 1;
3235 bh->idle = 1;
3236}
3237
bellard83f64092006-08-01 16:21:11 +00003238void qemu_bh_schedule(QEMUBH *bh)
3239{
bellard83f64092006-08-01 16:21:11 +00003240 if (bh->scheduled)
3241 return;
3242 bh->scheduled = 1;
aliguori1b435b12008-10-31 17:24:21 +00003243 bh->idle = 0;
bellard83f64092006-08-01 16:21:11 +00003244 /* stop the currently executing CPU to execute the BH ASAP */
aliguorid9f75a42009-04-24 18:03:11 +00003245 qemu_notify_event();
bellard83f64092006-08-01 16:21:11 +00003246}
3247
3248void qemu_bh_cancel(QEMUBH *bh)
3249{
aliguori1b435b12008-10-31 17:24:21 +00003250 bh->scheduled = 0;
bellard83f64092006-08-01 16:21:11 +00003251}
3252
3253void qemu_bh_delete(QEMUBH *bh)
3254{
aliguori1b435b12008-10-31 17:24:21 +00003255 bh->scheduled = 0;
3256 bh->deleted = 1;
bellard83f64092006-08-01 16:21:11 +00003257}
3258
aliguori56f3a5d2008-10-31 18:07:17 +00003259static void qemu_bh_update_timeout(int *timeout)
3260{
3261 QEMUBH *bh;
3262
3263 for (bh = first_bh; bh; bh = bh->next) {
3264 if (!bh->deleted && bh->scheduled) {
3265 if (bh->idle) {
3266 /* idle bottom halves will be polled at least
3267 * every 10ms */
3268 *timeout = MIN(10, *timeout);
3269 } else {
3270 /* non-idle bottom halves will be executed
3271 * immediately */
3272 *timeout = 0;
3273 break;
3274 }
3275 }
3276 }
3277}
3278
bellard83f64092006-08-01 16:21:11 +00003279/***********************************************************/
bellardcc1daa42005-06-05 14:49:17 +00003280/* machine registration */
3281
blueswir1bdaf78e2008-10-04 07:24:27 +00003282static QEMUMachine *first_machine = NULL;
aliguori6f338c32009-02-11 15:21:54 +00003283QEMUMachine *current_machine = NULL;
bellardcc1daa42005-06-05 14:49:17 +00003284
3285int qemu_register_machine(QEMUMachine *m)
3286{
3287 QEMUMachine **pm;
3288 pm = &first_machine;
3289 while (*pm != NULL)
3290 pm = &(*pm)->next;
3291 m->next = NULL;
3292 *pm = m;
3293 return 0;
3294}
3295
pbrook9596ebb2007-11-18 01:44:38 +00003296static QEMUMachine *find_machine(const char *name)
bellardcc1daa42005-06-05 14:49:17 +00003297{
3298 QEMUMachine *m;
3299
3300 for(m = first_machine; m != NULL; m = m->next) {
3301 if (!strcmp(m->name, name))
3302 return m;
3303 }
3304 return NULL;
3305}
3306
Anthony Liguori0c257432009-05-21 20:41:01 -05003307static QEMUMachine *find_default_machine(void)
3308{
3309 QEMUMachine *m;
3310
3311 for(m = first_machine; m != NULL; m = m->next) {
3312 if (m->is_default) {
3313 return m;
3314 }
3315 }
3316 return NULL;
3317}
3318
bellardcc1daa42005-06-05 14:49:17 +00003319/***********************************************************/
bellard8a7ddc32004-03-31 19:00:16 +00003320/* main execution loop */
3321
pbrook9596ebb2007-11-18 01:44:38 +00003322static void gui_update(void *opaque)
bellard8a7ddc32004-03-31 19:00:16 +00003323{
aliguori7d957bd2009-01-15 22:14:11 +00003324 uint64_t interval = GUI_REFRESH_INTERVAL;
ths740733b2007-06-08 01:57:56 +00003325 DisplayState *ds = opaque;
aliguori7d957bd2009-01-15 22:14:11 +00003326 DisplayChangeListener *dcl = ds->listeners;
3327
3328 dpy_refresh(ds);
3329
3330 while (dcl != NULL) {
3331 if (dcl->gui_timer_interval &&
3332 dcl->gui_timer_interval < interval)
3333 interval = dcl->gui_timer_interval;
3334 dcl = dcl->next;
3335 }
3336 qemu_mod_timer(ds->gui_timer, interval + qemu_get_clock(rt_clock));
bellard8a7ddc32004-03-31 19:00:16 +00003337}
3338
blueswir19043b622009-01-21 19:28:13 +00003339static void nographic_update(void *opaque)
3340{
3341 uint64_t interval = GUI_REFRESH_INTERVAL;
3342
3343 qemu_mod_timer(nographic_timer, interval + qemu_get_clock(rt_clock));
3344}
3345
bellard0bd48852005-11-11 00:00:47 +00003346struct vm_change_state_entry {
3347 VMChangeStateHandler *cb;
3348 void *opaque;
3349 LIST_ENTRY (vm_change_state_entry) entries;
3350};
3351
3352static LIST_HEAD(vm_change_state_head, vm_change_state_entry) vm_change_state_head;
3353
3354VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
3355 void *opaque)
3356{
3357 VMChangeStateEntry *e;
3358
3359 e = qemu_mallocz(sizeof (*e));
bellard0bd48852005-11-11 00:00:47 +00003360
3361 e->cb = cb;
3362 e->opaque = opaque;
3363 LIST_INSERT_HEAD(&vm_change_state_head, e, entries);
3364 return e;
3365}
3366
3367void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
3368{
3369 LIST_REMOVE (e, entries);
3370 qemu_free (e);
3371}
3372
aliguori9781e042009-01-22 17:15:29 +00003373static void vm_state_notify(int running, int reason)
bellard0bd48852005-11-11 00:00:47 +00003374{
3375 VMChangeStateEntry *e;
3376
3377 for (e = vm_change_state_head.lh_first; e; e = e->entries.le_next) {
aliguori9781e042009-01-22 17:15:29 +00003378 e->cb(e->opaque, running, reason);
bellard0bd48852005-11-11 00:00:47 +00003379 }
3380}
3381
aliguorid6dc3d42009-04-24 18:04:07 +00003382static void resume_all_vcpus(void);
3383static void pause_all_vcpus(void);
3384
bellard8a7ddc32004-03-31 19:00:16 +00003385void vm_start(void)
3386{
3387 if (!vm_running) {
3388 cpu_enable_ticks();
3389 vm_running = 1;
aliguori9781e042009-01-22 17:15:29 +00003390 vm_state_notify(1, 0);
thsefe75412007-08-24 01:36:32 +00003391 qemu_rearm_alarm_timer(alarm_timer);
aliguorid6dc3d42009-04-24 18:04:07 +00003392 resume_all_vcpus();
bellard8a7ddc32004-03-31 19:00:16 +00003393 }
3394}
3395
bellardbb0c6722004-06-20 12:37:32 +00003396/* reset/shutdown handler */
3397
3398typedef struct QEMUResetEntry {
3399 QEMUResetHandler *func;
3400 void *opaque;
3401 struct QEMUResetEntry *next;
3402} QEMUResetEntry;
3403
3404static QEMUResetEntry *first_reset_entry;
3405static int reset_requested;
3406static int shutdown_requested;
bellard34751872005-07-02 14:31:34 +00003407static int powerdown_requested;
aliguorie5689022009-04-24 18:03:54 +00003408static int debug_requested;
aliguori6e29f5d2009-04-24 18:04:02 +00003409static int vmstop_requested;
bellardbb0c6722004-06-20 12:37:32 +00003410
aurel32cf7a2fe2008-03-18 06:53:05 +00003411int qemu_shutdown_requested(void)
3412{
3413 int r = shutdown_requested;
3414 shutdown_requested = 0;
3415 return r;
3416}
3417
3418int qemu_reset_requested(void)
3419{
3420 int r = reset_requested;
3421 reset_requested = 0;
3422 return r;
3423}
3424
3425int qemu_powerdown_requested(void)
3426{
3427 int r = powerdown_requested;
3428 powerdown_requested = 0;
3429 return r;
3430}
3431
aliguorie5689022009-04-24 18:03:54 +00003432static int qemu_debug_requested(void)
3433{
3434 int r = debug_requested;
3435 debug_requested = 0;
3436 return r;
3437}
3438
aliguori6e29f5d2009-04-24 18:04:02 +00003439static int qemu_vmstop_requested(void)
3440{
3441 int r = vmstop_requested;
3442 vmstop_requested = 0;
3443 return r;
3444}
3445
3446static void do_vm_stop(int reason)
3447{
3448 if (vm_running) {
3449 cpu_disable_ticks();
3450 vm_running = 0;
aliguorid6dc3d42009-04-24 18:04:07 +00003451 pause_all_vcpus();
aliguori6e29f5d2009-04-24 18:04:02 +00003452 vm_state_notify(0, reason);
3453 }
3454}
3455
Jan Kiszkaa08d4362009-06-27 09:25:07 +02003456void qemu_register_reset(QEMUResetHandler *func, void *opaque)
bellardbb0c6722004-06-20 12:37:32 +00003457{
3458 QEMUResetEntry **pre, *re;
3459
3460 pre = &first_reset_entry;
Jan Kiszkaa08d4362009-06-27 09:25:07 +02003461 while (*pre != NULL)
bellardbb0c6722004-06-20 12:37:32 +00003462 pre = &(*pre)->next;
3463 re = qemu_mallocz(sizeof(QEMUResetEntry));
3464 re->func = func;
3465 re->opaque = opaque;
3466 re->next = NULL;
3467 *pre = re;
3468}
3469
aurel32cf7a2fe2008-03-18 06:53:05 +00003470void qemu_system_reset(void)
bellardbb0c6722004-06-20 12:37:32 +00003471{
3472 QEMUResetEntry *re;
3473
3474 /* reset all devices */
3475 for(re = first_reset_entry; re != NULL; re = re->next) {
3476 re->func(re->opaque);
3477 }
3478}
3479
3480void qemu_system_reset_request(void)
3481{
bellardd1beab82006-10-02 19:44:22 +00003482 if (no_reboot) {
3483 shutdown_requested = 1;
3484 } else {
3485 reset_requested = 1;
3486 }
aliguorid9f75a42009-04-24 18:03:11 +00003487 qemu_notify_event();
bellardbb0c6722004-06-20 12:37:32 +00003488}
3489
3490void qemu_system_shutdown_request(void)
3491{
3492 shutdown_requested = 1;
aliguorid9f75a42009-04-24 18:03:11 +00003493 qemu_notify_event();
bellardbb0c6722004-06-20 12:37:32 +00003494}
3495
bellard34751872005-07-02 14:31:34 +00003496void qemu_system_powerdown_request(void)
3497{
3498 powerdown_requested = 1;
aliguorid9f75a42009-04-24 18:03:11 +00003499 qemu_notify_event();
3500}
3501
aliguorid6dc3d42009-04-24 18:04:07 +00003502#ifdef CONFIG_IOTHREAD
3503static void qemu_system_vmstop_request(int reason)
aliguorid9f75a42009-04-24 18:03:11 +00003504{
aliguorid6dc3d42009-04-24 18:04:07 +00003505 vmstop_requested = reason;
3506 qemu_notify_event();
bellardbb0c6722004-06-20 12:37:32 +00003507}
aliguorid6dc3d42009-04-24 18:04:07 +00003508#endif
bellardbb0c6722004-06-20 12:37:32 +00003509
aliguori50317c72009-04-24 18:03:29 +00003510#ifndef _WIN32
3511static int io_thread_fd = -1;
3512
3513static void qemu_event_increment(void)
3514{
3515 static const char byte = 0;
3516
3517 if (io_thread_fd == -1)
3518 return;
3519
3520 write(io_thread_fd, &byte, sizeof(byte));
3521}
3522
3523static void qemu_event_read(void *opaque)
3524{
3525 int fd = (unsigned long)opaque;
3526 ssize_t len;
3527
3528 /* Drain the notify pipe */
3529 do {
3530 char buffer[512];
3531 len = read(fd, buffer, sizeof(buffer));
3532 } while ((len == -1 && errno == EINTR) || len > 0);
3533}
3534
3535static int qemu_event_init(void)
3536{
3537 int err;
3538 int fds[2];
3539
3540 err = pipe(fds);
3541 if (err == -1)
3542 return -errno;
3543
3544 err = fcntl_setfl(fds[0], O_NONBLOCK);
3545 if (err < 0)
3546 goto fail;
3547
3548 err = fcntl_setfl(fds[1], O_NONBLOCK);
3549 if (err < 0)
3550 goto fail;
3551
3552 qemu_set_fd_handler2(fds[0], NULL, qemu_event_read, NULL,
3553 (void *)(unsigned long)fds[0]);
3554
3555 io_thread_fd = fds[1];
Jan Kiszkaa7e21212009-04-29 18:38:28 +00003556 return 0;
3557
aliguori50317c72009-04-24 18:03:29 +00003558fail:
3559 close(fds[0]);
3560 close(fds[1]);
3561 return err;
3562}
3563#else
3564HANDLE qemu_event_handle;
3565
3566static void dummy_event_handler(void *opaque)
3567{
3568}
3569
3570static int qemu_event_init(void)
3571{
3572 qemu_event_handle = CreateEvent(NULL, FALSE, FALSE, NULL);
3573 if (!qemu_event_handle) {
3574 perror("Failed CreateEvent");
3575 return -1;
3576 }
3577 qemu_add_wait_object(qemu_event_handle, dummy_event_handler, NULL);
3578 return 0;
3579}
3580
3581static void qemu_event_increment(void)
3582{
3583 SetEvent(qemu_event_handle);
3584}
3585#endif
3586
aliguorid6dc3d42009-04-24 18:04:07 +00003587static int cpu_can_run(CPUState *env)
3588{
3589 if (env->stop)
3590 return 0;
3591 if (env->stopped)
3592 return 0;
3593 return 1;
3594}
3595
3596#ifndef CONFIG_IOTHREAD
aliguori3fcf7b62009-04-24 18:03:25 +00003597static int qemu_init_main_loop(void)
3598{
aliguori50317c72009-04-24 18:03:29 +00003599 return qemu_event_init();
aliguori3fcf7b62009-04-24 18:03:25 +00003600}
3601
aliguori0bf46a42009-04-24 18:03:41 +00003602void qemu_init_vcpu(void *_env)
3603{
3604 CPUState *env = _env;
3605
3606 if (kvm_enabled())
3607 kvm_init_vcpu(env);
3608 return;
3609}
3610
aliguori8edac962009-04-24 18:03:45 +00003611int qemu_cpu_self(void *env)
3612{
3613 return 1;
3614}
3615
aliguorid6dc3d42009-04-24 18:04:07 +00003616static void resume_all_vcpus(void)
3617{
3618}
3619
3620static void pause_all_vcpus(void)
3621{
3622}
3623
aliguori8edac962009-04-24 18:03:45 +00003624void qemu_cpu_kick(void *env)
3625{
3626 return;
3627}
3628
aliguorid6dc3d42009-04-24 18:04:07 +00003629void qemu_notify_event(void)
3630{
3631 CPUState *env = cpu_single_env;
3632
3633 if (env) {
3634 cpu_exit(env);
3635#ifdef USE_KQEMU
3636 if (env->kqemu_enabled)
3637 kqemu_cpu_interrupt(env);
3638#endif
3639 }
3640}
3641
aliguori48708522009-04-24 18:03:49 +00003642#define qemu_mutex_lock_iothread() do { } while (0)
3643#define qemu_mutex_unlock_iothread() do { } while (0)
3644
aliguori6e29f5d2009-04-24 18:04:02 +00003645void vm_stop(int reason)
3646{
3647 do_vm_stop(reason);
3648}
3649
aliguorid6dc3d42009-04-24 18:04:07 +00003650#else /* CONFIG_IOTHREAD */
3651
3652#include "qemu-thread.h"
3653
3654QemuMutex qemu_global_mutex;
3655static QemuMutex qemu_fair_mutex;
3656
3657static QemuThread io_thread;
3658
3659static QemuThread *tcg_cpu_thread;
3660static QemuCond *tcg_halt_cond;
3661
3662static int qemu_system_ready;
3663/* cpu creation */
3664static QemuCond qemu_cpu_cond;
3665/* system init */
3666static QemuCond qemu_system_cond;
3667static QemuCond qemu_pause_cond;
3668
3669static void block_io_signals(void);
3670static void unblock_io_signals(void);
3671static int tcg_has_work(void);
3672
3673static int qemu_init_main_loop(void)
3674{
3675 int ret;
3676
3677 ret = qemu_event_init();
3678 if (ret)
3679 return ret;
3680
3681 qemu_cond_init(&qemu_pause_cond);
3682 qemu_mutex_init(&qemu_fair_mutex);
3683 qemu_mutex_init(&qemu_global_mutex);
3684 qemu_mutex_lock(&qemu_global_mutex);
3685
3686 unblock_io_signals();
3687 qemu_thread_self(&io_thread);
3688
3689 return 0;
3690}
3691
3692static void qemu_wait_io_event(CPUState *env)
3693{
3694 while (!tcg_has_work())
3695 qemu_cond_timedwait(env->halt_cond, &qemu_global_mutex, 1000);
3696
3697 qemu_mutex_unlock(&qemu_global_mutex);
3698
3699 /*
3700 * Users of qemu_global_mutex can be starved, having no chance
3701 * to acquire it since this path will get to it first.
3702 * So use another lock to provide fairness.
3703 */
3704 qemu_mutex_lock(&qemu_fair_mutex);
3705 qemu_mutex_unlock(&qemu_fair_mutex);
3706
3707 qemu_mutex_lock(&qemu_global_mutex);
3708 if (env->stop) {
3709 env->stop = 0;
3710 env->stopped = 1;
3711 qemu_cond_signal(&qemu_pause_cond);
3712 }
3713}
3714
3715static int qemu_cpu_exec(CPUState *env);
3716
3717static void *kvm_cpu_thread_fn(void *arg)
3718{
3719 CPUState *env = arg;
3720
3721 block_io_signals();
3722 qemu_thread_self(env->thread);
3723
3724 /* signal CPU creation */
3725 qemu_mutex_lock(&qemu_global_mutex);
3726 env->created = 1;
3727 qemu_cond_signal(&qemu_cpu_cond);
3728
3729 /* and wait for machine initialization */
3730 while (!qemu_system_ready)
3731 qemu_cond_timedwait(&qemu_system_cond, &qemu_global_mutex, 100);
3732
3733 while (1) {
3734 if (cpu_can_run(env))
3735 qemu_cpu_exec(env);
3736 qemu_wait_io_event(env);
3737 }
3738
3739 return NULL;
3740}
3741
3742static void tcg_cpu_exec(void);
3743
3744static void *tcg_cpu_thread_fn(void *arg)
3745{
3746 CPUState *env = arg;
3747
3748 block_io_signals();
3749 qemu_thread_self(env->thread);
3750
3751 /* signal CPU creation */
3752 qemu_mutex_lock(&qemu_global_mutex);
3753 for (env = first_cpu; env != NULL; env = env->next_cpu)
3754 env->created = 1;
3755 qemu_cond_signal(&qemu_cpu_cond);
3756
3757 /* and wait for machine initialization */
3758 while (!qemu_system_ready)
3759 qemu_cond_timedwait(&qemu_system_cond, &qemu_global_mutex, 100);
3760
3761 while (1) {
3762 tcg_cpu_exec();
3763 qemu_wait_io_event(cur_cpu);
3764 }
3765
3766 return NULL;
3767}
3768
3769void qemu_cpu_kick(void *_env)
3770{
3771 CPUState *env = _env;
3772 qemu_cond_broadcast(env->halt_cond);
3773 if (kvm_enabled())
3774 qemu_thread_signal(env->thread, SIGUSR1);
3775}
3776
3777int qemu_cpu_self(void *env)
3778{
3779 return (cpu_single_env != NULL);
3780}
3781
3782static void cpu_signal(int sig)
3783{
3784 if (cpu_single_env)
3785 cpu_exit(cpu_single_env);
3786}
3787
3788static void block_io_signals(void)
3789{
3790 sigset_t set;
3791 struct sigaction sigact;
3792
3793 sigemptyset(&set);
3794 sigaddset(&set, SIGUSR2);
3795 sigaddset(&set, SIGIO);
3796 sigaddset(&set, SIGALRM);
3797 pthread_sigmask(SIG_BLOCK, &set, NULL);
3798
3799 sigemptyset(&set);
3800 sigaddset(&set, SIGUSR1);
3801 pthread_sigmask(SIG_UNBLOCK, &set, NULL);
3802
3803 memset(&sigact, 0, sizeof(sigact));
3804 sigact.sa_handler = cpu_signal;
3805 sigaction(SIGUSR1, &sigact, NULL);
3806}
3807
3808static void unblock_io_signals(void)
3809{
3810 sigset_t set;
3811
3812 sigemptyset(&set);
3813 sigaddset(&set, SIGUSR2);
3814 sigaddset(&set, SIGIO);
3815 sigaddset(&set, SIGALRM);
3816 pthread_sigmask(SIG_UNBLOCK, &set, NULL);
3817
3818 sigemptyset(&set);
3819 sigaddset(&set, SIGUSR1);
3820 pthread_sigmask(SIG_BLOCK, &set, NULL);
3821}
3822
3823static void qemu_signal_lock(unsigned int msecs)
3824{
3825 qemu_mutex_lock(&qemu_fair_mutex);
3826
3827 while (qemu_mutex_trylock(&qemu_global_mutex)) {
3828 qemu_thread_signal(tcg_cpu_thread, SIGUSR1);
3829 if (!qemu_mutex_timedlock(&qemu_global_mutex, msecs))
3830 break;
3831 }
3832 qemu_mutex_unlock(&qemu_fair_mutex);
3833}
3834
3835static void qemu_mutex_lock_iothread(void)
3836{
3837 if (kvm_enabled()) {
3838 qemu_mutex_lock(&qemu_fair_mutex);
3839 qemu_mutex_lock(&qemu_global_mutex);
3840 qemu_mutex_unlock(&qemu_fair_mutex);
3841 } else
3842 qemu_signal_lock(100);
3843}
3844
3845static void qemu_mutex_unlock_iothread(void)
3846{
3847 qemu_mutex_unlock(&qemu_global_mutex);
3848}
3849
3850static int all_vcpus_paused(void)
3851{
3852 CPUState *penv = first_cpu;
3853
3854 while (penv) {
3855 if (!penv->stopped)
3856 return 0;
3857 penv = (CPUState *)penv->next_cpu;
3858 }
3859
3860 return 1;
3861}
3862
3863static void pause_all_vcpus(void)
3864{
3865 CPUState *penv = first_cpu;
3866
3867 while (penv) {
3868 penv->stop = 1;
3869 qemu_thread_signal(penv->thread, SIGUSR1);
3870 qemu_cpu_kick(penv);
3871 penv = (CPUState *)penv->next_cpu;
3872 }
3873
3874 while (!all_vcpus_paused()) {
3875 qemu_cond_timedwait(&qemu_pause_cond, &qemu_global_mutex, 100);
3876 penv = first_cpu;
3877 while (penv) {
3878 qemu_thread_signal(penv->thread, SIGUSR1);
3879 penv = (CPUState *)penv->next_cpu;
3880 }
3881 }
3882}
3883
3884static void resume_all_vcpus(void)
3885{
3886 CPUState *penv = first_cpu;
3887
3888 while (penv) {
3889 penv->stop = 0;
3890 penv->stopped = 0;
3891 qemu_thread_signal(penv->thread, SIGUSR1);
3892 qemu_cpu_kick(penv);
3893 penv = (CPUState *)penv->next_cpu;
3894 }
3895}
3896
3897static void tcg_init_vcpu(void *_env)
3898{
3899 CPUState *env = _env;
3900 /* share a single thread for all cpus with TCG */
3901 if (!tcg_cpu_thread) {
3902 env->thread = qemu_mallocz(sizeof(QemuThread));
3903 env->halt_cond = qemu_mallocz(sizeof(QemuCond));
3904 qemu_cond_init(env->halt_cond);
3905 qemu_thread_create(env->thread, tcg_cpu_thread_fn, env);
3906 while (env->created == 0)
3907 qemu_cond_timedwait(&qemu_cpu_cond, &qemu_global_mutex, 100);
3908 tcg_cpu_thread = env->thread;
3909 tcg_halt_cond = env->halt_cond;
3910 } else {
3911 env->thread = tcg_cpu_thread;
3912 env->halt_cond = tcg_halt_cond;
3913 }
3914}
3915
3916static void kvm_start_vcpu(CPUState *env)
3917{
3918 kvm_init_vcpu(env);
3919 env->thread = qemu_mallocz(sizeof(QemuThread));
3920 env->halt_cond = qemu_mallocz(sizeof(QemuCond));
3921 qemu_cond_init(env->halt_cond);
3922 qemu_thread_create(env->thread, kvm_cpu_thread_fn, env);
3923 while (env->created == 0)
3924 qemu_cond_timedwait(&qemu_cpu_cond, &qemu_global_mutex, 100);
3925}
3926
3927void qemu_init_vcpu(void *_env)
3928{
3929 CPUState *env = _env;
3930
3931 if (kvm_enabled())
3932 kvm_start_vcpu(env);
3933 else
3934 tcg_init_vcpu(env);
3935}
3936
3937void qemu_notify_event(void)
3938{
3939 qemu_event_increment();
3940}
3941
3942void vm_stop(int reason)
3943{
3944 QemuThread me;
3945 qemu_thread_self(&me);
3946
3947 if (!qemu_thread_equal(&me, &io_thread)) {
3948 qemu_system_vmstop_request(reason);
3949 /*
3950 * FIXME: should not return to device code in case
3951 * vm_stop() has been requested.
3952 */
3953 if (cpu_single_env) {
3954 cpu_exit(cpu_single_env);
3955 cpu_single_env->stop = 1;
3956 }
3957 return;
3958 }
3959 do_vm_stop(reason);
3960}
3961
3962#endif
3963
3964
ths877cf882007-04-18 18:11:47 +00003965#ifdef _WIN32
blueswir169d64512008-12-07 19:30:18 +00003966static void host_main_loop_wait(int *timeout)
aliguori56f3a5d2008-10-31 18:07:17 +00003967{
3968 int ret, ret2, i;
bellardf3311102006-04-12 20:21:17 +00003969 PollingEntry *pe;
bellardc4b1fcc2004-03-14 21:44:30 +00003970
bellardf3311102006-04-12 20:21:17 +00003971
3972 /* XXX: need to suppress polling by better using win32 events */
3973 ret = 0;
3974 for(pe = first_polling_entry; pe != NULL; pe = pe->next) {
3975 ret |= pe->func(pe->opaque);
3976 }
thse6b1e552007-04-18 17:56:02 +00003977 if (ret == 0) {
bellarda18e5242006-06-25 17:18:27 +00003978 int err;
3979 WaitObjects *w = &wait_objects;
ths3b46e622007-09-17 08:09:54 +00003980
aliguori56f3a5d2008-10-31 18:07:17 +00003981 ret = WaitForMultipleObjects(w->num, w->events, FALSE, *timeout);
bellarda18e5242006-06-25 17:18:27 +00003982 if (WAIT_OBJECT_0 + 0 <= ret && ret <= WAIT_OBJECT_0 + w->num - 1) {
3983 if (w->func[ret - WAIT_OBJECT_0])
3984 w->func[ret - WAIT_OBJECT_0](w->opaque[ret - WAIT_OBJECT_0]);
ths3b46e622007-09-17 08:09:54 +00003985
ths5fafdf22007-09-16 21:08:06 +00003986 /* Check for additional signaled events */
thse6b1e552007-04-18 17:56:02 +00003987 for(i = (ret - WAIT_OBJECT_0 + 1); i < w->num; i++) {
ths3b46e622007-09-17 08:09:54 +00003988
thse6b1e552007-04-18 17:56:02 +00003989 /* Check if event is signaled */
3990 ret2 = WaitForSingleObject(w->events[i], 0);
3991 if(ret2 == WAIT_OBJECT_0) {
3992 if (w->func[i])
3993 w->func[i](w->opaque[i]);
3994 } else if (ret2 == WAIT_TIMEOUT) {
3995 } else {
3996 err = GetLastError();
3997 fprintf(stderr, "WaitForSingleObject error %d %d\n", i, err);
ths3b46e622007-09-17 08:09:54 +00003998 }
3999 }
bellarda18e5242006-06-25 17:18:27 +00004000 } else if (ret == WAIT_TIMEOUT) {
4001 } else {
4002 err = GetLastError();
thse6b1e552007-04-18 17:56:02 +00004003 fprintf(stderr, "WaitForMultipleObjects error %d %d\n", ret, err);
bellarda18e5242006-06-25 17:18:27 +00004004 }
bellardf3311102006-04-12 20:21:17 +00004005 }
aliguori56f3a5d2008-10-31 18:07:17 +00004006
4007 *timeout = 0;
4008}
4009#else
blueswir169d64512008-12-07 19:30:18 +00004010static void host_main_loop_wait(int *timeout)
aliguori56f3a5d2008-10-31 18:07:17 +00004011{
4012}
bellardfd1dff42006-02-01 21:29:26 +00004013#endif
aliguori56f3a5d2008-10-31 18:07:17 +00004014
4015void main_loop_wait(int timeout)
4016{
4017 IOHandlerRecord *ioh;
4018 fd_set rfds, wfds, xfds;
4019 int ret, nfds;
4020 struct timeval tv;
4021
4022 qemu_bh_update_timeout(&timeout);
4023
4024 host_main_loop_wait(&timeout);
4025
bellardfd1dff42006-02-01 21:29:26 +00004026 /* poll any events */
4027 /* XXX: separate device handlers from system ones */
aliguori6abfbd72008-11-05 20:49:37 +00004028 nfds = -1;
bellardfd1dff42006-02-01 21:29:26 +00004029 FD_ZERO(&rfds);
4030 FD_ZERO(&wfds);
bellarde0356492006-05-01 13:33:02 +00004031 FD_ZERO(&xfds);
bellardfd1dff42006-02-01 21:29:26 +00004032 for(ioh = first_io_handler; ioh != NULL; ioh = ioh->next) {
thscafffd42007-02-28 21:59:44 +00004033 if (ioh->deleted)
4034 continue;
bellardfd1dff42006-02-01 21:29:26 +00004035 if (ioh->fd_read &&
4036 (!ioh->fd_read_poll ||
4037 ioh->fd_read_poll(ioh->opaque) != 0)) {
4038 FD_SET(ioh->fd, &rfds);
4039 if (ioh->fd > nfds)
4040 nfds = ioh->fd;
4041 }
4042 if (ioh->fd_write) {
4043 FD_SET(ioh->fd, &wfds);
4044 if (ioh->fd > nfds)
4045 nfds = ioh->fd;
4046 }
4047 }
ths3b46e622007-09-17 08:09:54 +00004048
aliguori56f3a5d2008-10-31 18:07:17 +00004049 tv.tv_sec = timeout / 1000;
4050 tv.tv_usec = (timeout % 1000) * 1000;
4051
Jan Kiszkad918f232009-06-24 14:42:30 +02004052 slirp_select_fill(&nfds, &rfds, &wfds, &xfds);
4053
aliguori48708522009-04-24 18:03:49 +00004054 qemu_mutex_unlock_iothread();
bellarde0356492006-05-01 13:33:02 +00004055 ret = select(nfds + 1, &rfds, &wfds, &xfds, &tv);
aliguori48708522009-04-24 18:03:49 +00004056 qemu_mutex_lock_iothread();
bellardfd1dff42006-02-01 21:29:26 +00004057 if (ret > 0) {
thscafffd42007-02-28 21:59:44 +00004058 IOHandlerRecord **pioh;
4059
4060 for(ioh = first_io_handler; ioh != NULL; ioh = ioh->next) {
ths6ab43fd2007-08-25 01:34:19 +00004061 if (!ioh->deleted && ioh->fd_read && FD_ISSET(ioh->fd, &rfds)) {
bellardfd1dff42006-02-01 21:29:26 +00004062 ioh->fd_read(ioh->opaque);
bellardc4b1fcc2004-03-14 21:44:30 +00004063 }
ths6ab43fd2007-08-25 01:34:19 +00004064 if (!ioh->deleted && ioh->fd_write && FD_ISSET(ioh->fd, &wfds)) {
bellardfd1dff42006-02-01 21:29:26 +00004065 ioh->fd_write(ioh->opaque);
bellardb4608c02003-06-27 17:34:32 +00004066 }
4067 }
thscafffd42007-02-28 21:59:44 +00004068
4069 /* remove deleted IO handlers */
4070 pioh = &first_io_handler;
4071 while (*pioh) {
4072 ioh = *pioh;
4073 if (ioh->deleted) {
4074 *pioh = ioh->next;
4075 qemu_free(ioh);
ths5fafdf22007-09-16 21:08:06 +00004076 } else
thscafffd42007-02-28 21:59:44 +00004077 pioh = &ioh->next;
4078 }
bellardfd1dff42006-02-01 21:29:26 +00004079 }
Jan Kiszkad918f232009-06-24 14:42:30 +02004080
4081 slirp_select_poll(&rfds, &wfds, &xfds, (ret < 0));
bellardc20709a2004-04-21 23:27:19 +00004082
aliguori50317c72009-04-24 18:03:29 +00004083 /* rearm timer, if not periodic */
4084 if (alarm_timer->flags & ALARM_FLAG_EXPIRED) {
4085 alarm_timer->flags &= ~ALARM_FLAG_EXPIRED;
4086 qemu_rearm_alarm_timer(alarm_timer);
4087 }
4088
aliguori357c6922008-11-25 17:26:09 +00004089 /* vm time timers */
aliguorid6dc3d42009-04-24 18:04:07 +00004090 if (vm_running) {
4091 if (!cur_cpu || likely(!(cur_cpu->singlestep_enabled & SSTEP_NOTIMER)))
4092 qemu_run_timers(&active_timers[QEMU_TIMER_VIRTUAL],
4093 qemu_get_clock(vm_clock));
4094 }
aliguori357c6922008-11-25 17:26:09 +00004095
4096 /* real time timers */
4097 qemu_run_timers(&active_timers[QEMU_TIMER_REALTIME],
4098 qemu_get_clock(rt_clock));
4099
pbrook423f0742007-05-23 00:06:54 +00004100 /* Check bottom-halves last in case any of the earlier events triggered
4101 them. */
4102 qemu_bh_poll();
ths3b46e622007-09-17 08:09:54 +00004103
bellard5905b2e2004-08-01 21:53:26 +00004104}
4105
aliguori43b96852009-04-24 18:03:33 +00004106static int qemu_cpu_exec(CPUState *env)
bellard5905b2e2004-08-01 21:53:26 +00004107{
aliguori43b96852009-04-24 18:03:33 +00004108 int ret;
bellard89bfc102006-02-08 22:46:31 +00004109#ifdef CONFIG_PROFILER
4110 int64_t ti;
4111#endif
aliguori43b96852009-04-24 18:03:33 +00004112
4113#ifdef CONFIG_PROFILER
4114 ti = profile_getclock();
4115#endif
4116 if (use_icount) {
4117 int64_t count;
4118 int decr;
4119 qemu_icount -= (env->icount_decr.u16.low + env->icount_extra);
4120 env->icount_decr.u16.low = 0;
4121 env->icount_extra = 0;
4122 count = qemu_next_deadline();
4123 count = (count + (1 << icount_time_shift) - 1)
4124 >> icount_time_shift;
4125 qemu_icount += count;
4126 decr = (count > 0xffff) ? 0xffff : count;
4127 count -= decr;
4128 env->icount_decr.u16.low = decr;
4129 env->icount_extra = count;
4130 }
4131 ret = cpu_exec(env);
4132#ifdef CONFIG_PROFILER
4133 qemu_time += profile_getclock() - ti;
4134#endif
4135 if (use_icount) {
4136 /* Fold pending instructions back into the
4137 instruction counter, and clear the interrupt flag. */
4138 qemu_icount -= (env->icount_decr.u16.low
4139 + env->icount_extra);
4140 env->icount_decr.u32 = 0;
4141 env->icount_extra = 0;
4142 }
4143 return ret;
4144}
4145
aliguorie6e35b12009-04-24 18:03:57 +00004146static void tcg_cpu_exec(void)
4147{
aliguorid6dc3d42009-04-24 18:04:07 +00004148 int ret = 0;
aliguorie6e35b12009-04-24 18:03:57 +00004149
4150 if (next_cpu == NULL)
4151 next_cpu = first_cpu;
4152 for (; next_cpu != NULL; next_cpu = next_cpu->next_cpu) {
4153 CPUState *env = cur_cpu = next_cpu;
4154
4155 if (!vm_running)
4156 break;
4157 if (timer_alarm_pending) {
4158 timer_alarm_pending = 0;
4159 break;
4160 }
aliguorid6dc3d42009-04-24 18:04:07 +00004161 if (cpu_can_run(env))
4162 ret = qemu_cpu_exec(env);
aliguorie6e35b12009-04-24 18:03:57 +00004163 if (ret == EXCP_DEBUG) {
4164 gdb_set_stop_cpu(env);
4165 debug_requested = 1;
4166 break;
4167 }
4168 }
4169}
4170
aliguori43b96852009-04-24 18:03:33 +00004171static int cpu_has_work(CPUState *env)
4172{
aliguorid6dc3d42009-04-24 18:04:07 +00004173 if (env->stop)
4174 return 1;
4175 if (env->stopped)
4176 return 0;
aliguori43b96852009-04-24 18:03:33 +00004177 if (!env->halted)
4178 return 1;
4179 if (qemu_cpu_has_work(env))
4180 return 1;
4181 return 0;
4182}
4183
4184static int tcg_has_work(void)
4185{
bellard6a00d602005-11-21 23:25:50 +00004186 CPUState *env;
bellard5905b2e2004-08-01 21:53:26 +00004187
aliguori43b96852009-04-24 18:03:33 +00004188 for (env = first_cpu; env != NULL; env = env->next_cpu)
4189 if (cpu_has_work(env))
4190 return 1;
4191 return 0;
4192}
bellard15a76442005-11-23 21:01:03 +00004193
aliguori43b96852009-04-24 18:03:33 +00004194static int qemu_calculate_timeout(void)
4195{
Luiz Capitulinob3198202009-06-09 18:24:57 -03004196#ifndef CONFIG_IOTHREAD
aliguori43b96852009-04-24 18:03:33 +00004197 int timeout;
bellard15a76442005-11-23 21:01:03 +00004198
aliguori43b96852009-04-24 18:03:33 +00004199 if (!vm_running)
4200 timeout = 5000;
4201 else if (tcg_has_work())
4202 timeout = 0;
4203 else if (!use_icount)
4204 timeout = 5000;
4205 else {
4206 /* XXX: use timeout computed from timers */
4207 int64_t add;
4208 int64_t delta;
4209 /* Advance virtual time to the next event. */
4210 if (use_icount == 1) {
4211 /* When not using an adaptive execution frequency
4212 we tend to get badly out of sync with real time,
4213 so just delay for a reasonable amount of time. */
4214 delta = 0;
bellard5905b2e2004-08-01 21:53:26 +00004215 } else {
aliguori43b96852009-04-24 18:03:33 +00004216 delta = cpu_get_icount() - cpu_get_clock();
bellard5905b2e2004-08-01 21:53:26 +00004217 }
aliguori43b96852009-04-24 18:03:33 +00004218 if (delta > 0) {
4219 /* If virtual time is ahead of real time then just
4220 wait for IO. */
4221 timeout = (delta / 1000000) + 1;
4222 } else {
4223 /* Wait for either IO to occur or the next
4224 timer event. */
4225 add = qemu_next_deadline();
4226 /* We advance the timer before checking for IO.
4227 Limit the amount we advance so that early IO
4228 activity won't get the guest too far ahead. */
4229 if (add > 10000000)
4230 add = 10000000;
4231 delta += add;
4232 add = (add + (1 << icount_time_shift) - 1)
4233 >> icount_time_shift;
4234 qemu_icount += add;
4235 timeout = delta / 1000000;
4236 if (timeout < 0)
4237 timeout = 0;
4238 }
bellardb4608c02003-06-27 17:34:32 +00004239 }
aliguori43b96852009-04-24 18:03:33 +00004240
4241 return timeout;
Luiz Capitulinob3198202009-06-09 18:24:57 -03004242#else /* CONFIG_IOTHREAD */
4243 return 1000;
4244#endif
aliguori43b96852009-04-24 18:03:33 +00004245}
4246
4247static int vm_can_run(void)
4248{
4249 if (powerdown_requested)
4250 return 0;
4251 if (reset_requested)
4252 return 0;
4253 if (shutdown_requested)
4254 return 0;
aliguorie5689022009-04-24 18:03:54 +00004255 if (debug_requested)
4256 return 0;
aliguori43b96852009-04-24 18:03:33 +00004257 return 1;
4258}
4259
4260static void main_loop(void)
4261{
aliguori6e29f5d2009-04-24 18:04:02 +00004262 int r;
aliguori43b96852009-04-24 18:03:33 +00004263
aliguorid6dc3d42009-04-24 18:04:07 +00004264#ifdef CONFIG_IOTHREAD
4265 qemu_system_ready = 1;
4266 qemu_cond_broadcast(&qemu_system_cond);
4267#endif
4268
aliguori6e29f5d2009-04-24 18:04:02 +00004269 for (;;) {
aliguorie6e35b12009-04-24 18:03:57 +00004270 do {
4271#ifdef CONFIG_PROFILER
4272 int64_t ti;
4273#endif
aliguorid6dc3d42009-04-24 18:04:07 +00004274#ifndef CONFIG_IOTHREAD
aliguorie6e35b12009-04-24 18:03:57 +00004275 tcg_cpu_exec();
aliguorid6dc3d42009-04-24 18:04:07 +00004276#endif
aliguori43b96852009-04-24 18:03:33 +00004277#ifdef CONFIG_PROFILER
4278 ti = profile_getclock();
4279#endif
4280 main_loop_wait(qemu_calculate_timeout());
4281#ifdef CONFIG_PROFILER
4282 dev_time += profile_getclock() - ti;
4283#endif
aliguorie5689022009-04-24 18:03:54 +00004284 } while (vm_can_run());
aliguori43b96852009-04-24 18:03:33 +00004285
aliguorie5689022009-04-24 18:03:54 +00004286 if (qemu_debug_requested())
aliguori43b96852009-04-24 18:03:33 +00004287 vm_stop(EXCP_DEBUG);
aliguori43b96852009-04-24 18:03:33 +00004288 if (qemu_shutdown_requested()) {
4289 if (no_shutdown) {
4290 vm_stop(0);
4291 no_shutdown = 0;
4292 } else
4293 break;
4294 }
aliguorid6dc3d42009-04-24 18:04:07 +00004295 if (qemu_reset_requested()) {
4296 pause_all_vcpus();
aliguori43b96852009-04-24 18:03:33 +00004297 qemu_system_reset();
aliguorid6dc3d42009-04-24 18:04:07 +00004298 resume_all_vcpus();
4299 }
aliguori43b96852009-04-24 18:03:33 +00004300 if (qemu_powerdown_requested())
4301 qemu_system_powerdown();
aliguori6e29f5d2009-04-24 18:04:02 +00004302 if ((r = qemu_vmstop_requested()))
4303 vm_stop(r);
aliguori43b96852009-04-24 18:03:33 +00004304 }
aliguorid6dc3d42009-04-24 18:04:07 +00004305 pause_all_vcpus();
bellardb4608c02003-06-27 17:34:32 +00004306}
4307
pbrook9bd7e6d2009-04-07 22:58:45 +00004308static void version(void)
4309{
pbrook4a19f1e2009-04-07 23:17:49 +00004310 printf("QEMU PC emulator version " QEMU_VERSION QEMU_PKGVERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n");
pbrook9bd7e6d2009-04-07 22:58:45 +00004311}
4312
ths15f82202007-06-29 23:26:08 +00004313static void help(int exitcode)
bellard0824d6f2003-06-24 13:42:40 +00004314{
pbrook9bd7e6d2009-04-07 22:58:45 +00004315 version();
4316 printf("usage: %s [options] [disk_image]\n"
bellard0824d6f2003-06-24 13:42:40 +00004317 "\n"
bellarda20dd502003-09-30 21:07:02 +00004318 "'disk_image' is a raw hard image image for IDE hard disk 0\n"
bellardfc01f7e2003-06-30 10:03:06 +00004319 "\n"
blueswir15824d652009-03-28 06:44:27 +00004320#define DEF(option, opt_arg, opt_enum, opt_help) \
4321 opt_help
4322#define DEFHEADING(text) stringify(text) "\n"
4323#include "qemu-options.h"
4324#undef DEF
4325#undef DEFHEADING
4326#undef GEN_DOCS
bellard0824d6f2003-06-24 13:42:40 +00004327 "\n"
bellard82c643f2004-07-14 17:28:13 +00004328 "During emulation, the following keys are useful:\n"
bellard032a8c92004-10-09 22:56:44 +00004329 "ctrl-alt-f toggle full screen\n"
4330 "ctrl-alt-n switch to virtual console 'n'\n"
4331 "ctrl-alt toggle mouse and keyboard grab\n"
bellard82c643f2004-07-14 17:28:13 +00004332 "\n"
4333 "When using -nographic, press 'ctrl-a h' to get some help.\n"
4334 ,
bellard0db63472003-10-27 21:37:46 +00004335 "qemu",
bellarda00bad72004-05-22 21:39:06 +00004336 DEFAULT_RAM_SIZE,
bellard7c9d8e02005-11-15 22:16:05 +00004337#ifndef _WIN32
bellarda00bad72004-05-22 21:39:06 +00004338 DEFAULT_NETWORK_SCRIPT,
thsb46a8902007-10-21 23:20:45 +00004339 DEFAULT_NETWORK_DOWN_SCRIPT,
bellard7c9d8e02005-11-15 22:16:05 +00004340#endif
bellard6e44ba72004-01-18 21:56:49 +00004341 DEFAULT_GDBSTUB_PORT,
bellardbce61842008-02-01 22:18:51 +00004342 "/tmp/qemu.log");
ths15f82202007-06-29 23:26:08 +00004343 exit(exitcode);
bellard0824d6f2003-06-24 13:42:40 +00004344}
4345
bellardcd6f1162004-05-13 22:02:20 +00004346#define HAS_ARG 0x0001
4347
4348enum {
blueswir15824d652009-03-28 06:44:27 +00004349#define DEF(option, opt_arg, opt_enum, opt_help) \
4350 opt_enum,
4351#define DEFHEADING(text)
4352#include "qemu-options.h"
4353#undef DEF
4354#undef DEFHEADING
4355#undef GEN_DOCS
bellardcd6f1162004-05-13 22:02:20 +00004356};
4357
4358typedef struct QEMUOption {
4359 const char *name;
4360 int flags;
4361 int index;
4362} QEMUOption;
4363
blueswir1dbed7e42008-10-01 19:38:09 +00004364static const QEMUOption qemu_options[] = {
bellardcd6f1162004-05-13 22:02:20 +00004365 { "h", 0, QEMU_OPTION_h },
blueswir15824d652009-03-28 06:44:27 +00004366#define DEF(option, opt_arg, opt_enum, opt_help) \
4367 { option, opt_arg, opt_enum },
4368#define DEFHEADING(text)
4369#include "qemu-options.h"
4370#undef DEF
4371#undef DEFHEADING
4372#undef GEN_DOCS
bellardcd6f1162004-05-13 22:02:20 +00004373 { NULL },
bellardfc01f7e2003-06-30 10:03:06 +00004374};
4375
bellard1d14ffa2005-10-30 18:58:22 +00004376#ifdef HAS_AUDIO
bellard6a36d842005-12-18 20:34:32 +00004377struct soundhw soundhw[] = {
balrogb00052e2007-04-30 02:22:06 +00004378#ifdef HAS_AUDIO_CHOICE
aurel324ce7ff62008-04-07 19:47:14 +00004379#if defined(TARGET_I386) || defined(TARGET_MIPS)
bellardfd06c372006-04-24 21:58:30 +00004380 {
4381 "pcspk",
4382 "PC speaker",
4383 0,
4384 1,
4385 { .init_isa = pcspk_audio_init }
4386 },
4387#endif
malc4c9b53e2009-01-09 10:46:34 +00004388
4389#ifdef CONFIG_SB16
bellard6a36d842005-12-18 20:34:32 +00004390 {
4391 "sb16",
4392 "Creative Sound Blaster 16",
4393 0,
4394 1,
4395 { .init_isa = SB16_init }
4396 },
malc4c9b53e2009-01-09 10:46:34 +00004397#endif
bellard6a36d842005-12-18 20:34:32 +00004398
malccc53d262008-06-13 10:48:22 +00004399#ifdef CONFIG_CS4231A
4400 {
4401 "cs4231a",
4402 "CS4231A",
4403 0,
4404 1,
4405 { .init_isa = cs4231a_init }
4406 },
4407#endif
4408
bellard6a36d842005-12-18 20:34:32 +00004409#ifdef CONFIG_ADLIB
4410 {
4411 "adlib",
4412#ifdef HAS_YMF262
4413 "Yamaha YMF262 (OPL3)",
4414#else
4415 "Yamaha YM3812 (OPL2)",
4416#endif
4417 0,
4418 1,
4419 { .init_isa = Adlib_init }
4420 },
4421#endif
4422
4423#ifdef CONFIG_GUS
4424 {
4425 "gus",
4426 "Gravis Ultrasound GF1",
4427 0,
4428 1,
4429 { .init_isa = GUS_init }
4430 },
4431#endif
4432
malc4c9b53e2009-01-09 10:46:34 +00004433#ifdef CONFIG_AC97
balroge5c9a132008-01-14 04:27:55 +00004434 {
4435 "ac97",
4436 "Intel 82801AA AC97 Audio",
4437 0,
4438 0,
4439 { .init_pci = ac97_init }
4440 },
malc4c9b53e2009-01-09 10:46:34 +00004441#endif
balroge5c9a132008-01-14 04:27:55 +00004442
malc4c9b53e2009-01-09 10:46:34 +00004443#ifdef CONFIG_ES1370
bellard6a36d842005-12-18 20:34:32 +00004444 {
4445 "es1370",
4446 "ENSONIQ AudioPCI ES1370",
4447 0,
4448 0,
4449 { .init_pci = es1370_init }
4450 },
balrogb00052e2007-04-30 02:22:06 +00004451#endif
bellard6a36d842005-12-18 20:34:32 +00004452
malc4c9b53e2009-01-09 10:46:34 +00004453#endif /* HAS_AUDIO_CHOICE */
4454
bellard6a36d842005-12-18 20:34:32 +00004455 { NULL, NULL, 0, 0, { NULL } }
4456};
4457
bellard1d14ffa2005-10-30 18:58:22 +00004458static void select_soundhw (const char *optarg)
4459{
bellard6a36d842005-12-18 20:34:32 +00004460 struct soundhw *c;
4461
bellard1d14ffa2005-10-30 18:58:22 +00004462 if (*optarg == '?') {
4463 show_valid_cards:
bellard6a36d842005-12-18 20:34:32 +00004464
bellard1d14ffa2005-10-30 18:58:22 +00004465 printf ("Valid sound card names (comma separated):\n");
bellard6a36d842005-12-18 20:34:32 +00004466 for (c = soundhw; c->name; ++c) {
4467 printf ("%-11s %s\n", c->name, c->descr);
4468 }
4469 printf ("\n-soundhw all will enable all of the above\n");
bellard1d14ffa2005-10-30 18:58:22 +00004470 exit (*optarg != '?');
4471 }
4472 else {
bellard6a36d842005-12-18 20:34:32 +00004473 size_t l;
bellard1d14ffa2005-10-30 18:58:22 +00004474 const char *p;
4475 char *e;
4476 int bad_card = 0;
4477
bellard6a36d842005-12-18 20:34:32 +00004478 if (!strcmp (optarg, "all")) {
4479 for (c = soundhw; c->name; ++c) {
4480 c->enabled = 1;
4481 }
4482 return;
4483 }
bellard1d14ffa2005-10-30 18:58:22 +00004484
bellard6a36d842005-12-18 20:34:32 +00004485 p = optarg;
bellard1d14ffa2005-10-30 18:58:22 +00004486 while (*p) {
4487 e = strchr (p, ',');
4488 l = !e ? strlen (p) : (size_t) (e - p);
bellard6a36d842005-12-18 20:34:32 +00004489
4490 for (c = soundhw; c->name; ++c) {
4491 if (!strncmp (c->name, p, l)) {
4492 c->enabled = 1;
bellard1d14ffa2005-10-30 18:58:22 +00004493 break;
4494 }
4495 }
bellard6a36d842005-12-18 20:34:32 +00004496
4497 if (!c->name) {
bellard1d14ffa2005-10-30 18:58:22 +00004498 if (l > 80) {
4499 fprintf (stderr,
4500 "Unknown sound card name (too big to show)\n");
4501 }
4502 else {
4503 fprintf (stderr, "Unknown sound card name `%.*s'\n",
4504 (int) l, p);
4505 }
4506 bad_card = 1;
4507 }
4508 p += l + (e != NULL);
4509 }
4510
4511 if (bad_card)
4512 goto show_valid_cards;
4513 }
4514}
4515#endif
4516
malc3893c122008-09-28 00:42:05 +00004517static void select_vgahw (const char *p)
4518{
4519 const char *opts;
4520
aliguori28b85ed2009-04-22 15:19:48 +00004521 cirrus_vga_enabled = 0;
4522 std_vga_enabled = 0;
4523 vmsvga_enabled = 0;
aliguori94909d92009-04-22 15:19:53 +00004524 xenfb_enabled = 0;
malc3893c122008-09-28 00:42:05 +00004525 if (strstart(p, "std", &opts)) {
aliguoric2b3b412009-01-15 20:37:28 +00004526 std_vga_enabled = 1;
malc3893c122008-09-28 00:42:05 +00004527 } else if (strstart(p, "cirrus", &opts)) {
4528 cirrus_vga_enabled = 1;
malc3893c122008-09-28 00:42:05 +00004529 } else if (strstart(p, "vmware", &opts)) {
malc3893c122008-09-28 00:42:05 +00004530 vmsvga_enabled = 1;
aliguori94909d92009-04-22 15:19:53 +00004531 } else if (strstart(p, "xenfb", &opts)) {
4532 xenfb_enabled = 1;
aliguori28b85ed2009-04-22 15:19:48 +00004533 } else if (!strstart(p, "none", &opts)) {
malc3893c122008-09-28 00:42:05 +00004534 invalid_vga:
4535 fprintf(stderr, "Unknown vga type: %s\n", p);
4536 exit(1);
4537 }
malccb5a7aa2008-09-28 00:42:12 +00004538 while (*opts) {
4539 const char *nextopt;
4540
4541 if (strstart(opts, ",retrace=", &nextopt)) {
4542 opts = nextopt;
4543 if (strstart(opts, "dumb", &nextopt))
4544 vga_retrace_method = VGA_RETRACE_DUMB;
4545 else if (strstart(opts, "precise", &nextopt))
4546 vga_retrace_method = VGA_RETRACE_PRECISE;
4547 else goto invalid_vga;
4548 } else goto invalid_vga;
4549 opts = nextopt;
4550 }
malc3893c122008-09-28 00:42:05 +00004551}
4552
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02004553#ifdef TARGET_I386
4554static int balloon_parse(const char *arg)
4555{
4556 char buf[128];
4557 const char *p;
4558
4559 if (!strcmp(arg, "none")) {
4560 virtio_balloon = 0;
4561 } else if (!strncmp(arg, "virtio", 6)) {
4562 virtio_balloon = 1;
4563 if (arg[6] == ',') {
4564 p = arg + 7;
4565 if (get_param_value(buf, sizeof(buf), "addr", p)) {
4566 virtio_balloon_devaddr = strdup(buf);
4567 }
4568 }
4569 } else {
4570 return -1;
4571 }
4572 return 0;
4573}
4574#endif
4575
bellard3587d7e2006-06-26 20:03:44 +00004576#ifdef _WIN32
4577static BOOL WINAPI qemu_ctrl_handler(DWORD type)
4578{
4579 exit(STATUS_CONTROL_C_EXIT);
4580 return TRUE;
4581}
4582#endif
4583
aliguoric4be29f2009-04-17 18:58:14 +00004584int qemu_uuid_parse(const char *str, uint8_t *uuid)
blueswir18fcb1b92008-09-18 18:29:08 +00004585{
4586 int ret;
4587
4588 if(strlen(str) != 36)
4589 return -1;
4590
4591 ret = sscanf(str, UUID_FMT, &uuid[0], &uuid[1], &uuid[2], &uuid[3],
4592 &uuid[4], &uuid[5], &uuid[6], &uuid[7], &uuid[8], &uuid[9],
4593 &uuid[10], &uuid[11], &uuid[12], &uuid[13], &uuid[14], &uuid[15]);
4594
4595 if(ret != 16)
4596 return -1;
4597
aliguorib6f6e3d2009-04-17 18:59:56 +00004598#ifdef TARGET_I386
4599 smbios_add_field(1, offsetof(struct smbios_type_1, uuid), 16, uuid);
4600#endif
4601
blueswir18fcb1b92008-09-18 18:29:08 +00004602 return 0;
4603}
4604
bellard7c9d8e02005-11-15 22:16:05 +00004605#define MAX_NET_CLIENTS 32
bellardc20709a2004-04-21 23:27:19 +00004606
aliguori5b08fc12008-08-21 20:08:03 +00004607#ifndef _WIN32
4608
4609static void termsig_handler(int signal)
4610{
4611 qemu_system_shutdown_request();
4612}
4613
Jan Kiszka7c3370d2009-05-08 12:34:17 +02004614static void sigchld_handler(int signal)
4615{
4616 waitpid(-1, NULL, WNOHANG);
4617}
4618
4619static void sighandler_setup(void)
aliguori5b08fc12008-08-21 20:08:03 +00004620{
4621 struct sigaction act;
4622
4623 memset(&act, 0, sizeof(act));
4624 act.sa_handler = termsig_handler;
4625 sigaction(SIGINT, &act, NULL);
4626 sigaction(SIGHUP, &act, NULL);
4627 sigaction(SIGTERM, &act, NULL);
Jan Kiszka7c3370d2009-05-08 12:34:17 +02004628
4629 act.sa_handler = sigchld_handler;
4630 act.sa_flags = SA_NOCLDSTOP;
4631 sigaction(SIGCHLD, &act, NULL);
aliguori5b08fc12008-08-21 20:08:03 +00004632}
4633
4634#endif
4635
Paul Brook5cea8592009-05-30 00:52:44 +01004636#ifdef _WIN32
4637/* Look for support files in the same directory as the executable. */
4638static char *find_datadir(const char *argv0)
4639{
4640 char *p;
4641 char buf[MAX_PATH];
4642 DWORD len;
4643
4644 len = GetModuleFileName(NULL, buf, sizeof(buf) - 1);
4645 if (len == 0) {
Blue Swirlc5947802009-06-09 20:51:21 +03004646 return NULL;
Paul Brook5cea8592009-05-30 00:52:44 +01004647 }
4648
4649 buf[len] = 0;
4650 p = buf + len - 1;
4651 while (p != buf && *p != '\\')
4652 p--;
4653 *p = 0;
4654 if (access(buf, R_OK) == 0) {
4655 return qemu_strdup(buf);
4656 }
4657 return NULL;
4658}
4659#else /* !_WIN32 */
4660
4661/* Find a likely location for support files using the location of the binary.
4662 For installed binaries this will be "$bindir/../share/qemu". When
4663 running from the build tree this will be "$bindir/../pc-bios". */
4664#define SHARE_SUFFIX "/share/qemu"
4665#define BUILD_SUFFIX "/pc-bios"
4666static char *find_datadir(const char *argv0)
4667{
4668 char *dir;
4669 char *p = NULL;
4670 char *res;
4671#ifdef PATH_MAX
4672 char buf[PATH_MAX];
4673#endif
Blue Swirl3a417592009-06-09 19:12:21 +00004674 size_t max_len;
Paul Brook5cea8592009-05-30 00:52:44 +01004675
4676#if defined(__linux__)
4677 {
4678 int len;
4679 len = readlink("/proc/self/exe", buf, sizeof(buf) - 1);
4680 if (len > 0) {
4681 buf[len] = 0;
4682 p = buf;
4683 }
4684 }
4685#elif defined(__FreeBSD__)
4686 {
4687 int len;
4688 len = readlink("/proc/curproc/file", buf, sizeof(buf) - 1);
4689 if (len > 0) {
4690 buf[len] = 0;
4691 p = buf;
4692 }
4693 }
4694#endif
4695 /* If we don't have any way of figuring out the actual executable
4696 location then try argv[0]. */
4697 if (!p) {
4698#ifdef PATH_MAX
4699 p = buf;
4700#endif
4701 p = realpath(argv0, p);
4702 if (!p) {
4703 return NULL;
4704 }
4705 }
4706 dir = dirname(p);
4707 dir = dirname(dir);
4708
Blue Swirl3a417592009-06-09 19:12:21 +00004709 max_len = strlen(dir) +
4710 MAX(strlen(SHARE_SUFFIX), strlen(BUILD_SUFFIX)) + 1;
4711 res = qemu_mallocz(max_len);
4712 snprintf(res, max_len, "%s%s", dir, SHARE_SUFFIX);
Paul Brook5cea8592009-05-30 00:52:44 +01004713 if (access(res, R_OK)) {
Blue Swirl3a417592009-06-09 19:12:21 +00004714 snprintf(res, max_len, "%s%s", dir, BUILD_SUFFIX);
Paul Brook5cea8592009-05-30 00:52:44 +01004715 if (access(res, R_OK)) {
4716 qemu_free(res);
4717 res = NULL;
4718 }
4719 }
4720#ifndef PATH_MAX
4721 free(p);
4722#endif
4723 return res;
4724}
4725#undef SHARE_SUFFIX
4726#undef BUILD_SUFFIX
4727#endif
4728
4729char *qemu_find_file(int type, const char *name)
4730{
4731 int len;
4732 const char *subdir;
4733 char *buf;
4734
4735 /* If name contains path separators then try it as a straight path. */
4736 if ((strchr(name, '/') || strchr(name, '\\'))
4737 && access(name, R_OK) == 0) {
4738 return strdup(name);
4739 }
4740 switch (type) {
4741 case QEMU_FILE_TYPE_BIOS:
4742 subdir = "";
4743 break;
4744 case QEMU_FILE_TYPE_KEYMAP:
4745 subdir = "keymaps/";
4746 break;
4747 default:
4748 abort();
4749 }
4750 len = strlen(data_dir) + strlen(name) + strlen(subdir) + 2;
4751 buf = qemu_mallocz(len);
Blue Swirl3a417592009-06-09 19:12:21 +00004752 snprintf(buf, len, "%s/%s%s", data_dir, subdir, name);
Paul Brook5cea8592009-05-30 00:52:44 +01004753 if (access(buf, R_OK)) {
4754 qemu_free(buf);
4755 return NULL;
4756 }
4757 return buf;
4758}
4759
malc902b3d52008-12-10 19:18:40 +00004760int main(int argc, char **argv, char **envp)
bellard0824d6f2003-06-24 13:42:40 +00004761{
aliguori59030a82009-04-05 18:43:41 +00004762 const char *gdbstub_dev = NULL;
j_mayer28c5af52007-11-11 01:50:45 +00004763 uint32_t boot_devices_bitmap = 0;
thse4bcb142007-12-02 04:51:10 +00004764 int i;
j_mayer28c5af52007-11-11 01:50:45 +00004765 int snapshot, linux_boot, net_boot;
bellard7f7f9872003-10-30 01:11:23 +00004766 const char *initrd_filename;
bellarda20dd502003-09-30 21:07:02 +00004767 const char *kernel_filename, *kernel_cmdline;
j_mayer28c5af52007-11-11 01:50:45 +00004768 const char *boot_devices = "";
aliguori3023f3322009-01-16 19:04:14 +00004769 DisplayState *ds;
aliguori7d957bd2009-01-15 22:14:11 +00004770 DisplayChangeListener *dcl;
bellard46d47672004-11-16 01:45:27 +00004771 int cyls, heads, secs, translation;
pbrookfd5f3932008-03-26 20:55:43 +00004772 const char *net_clients[MAX_NET_CLIENTS];
bellard7c9d8e02005-11-15 22:16:05 +00004773 int nb_net_clients;
balrogdc72ac12008-11-09 00:04:26 +00004774 const char *bt_opts[MAX_BT_CMDLINE];
4775 int nb_bt_opts;
thse4bcb142007-12-02 04:51:10 +00004776 int hda_index;
bellardcd6f1162004-05-13 22:02:20 +00004777 int optind;
4778 const char *r, *optarg;
aliguori4c621802009-01-16 21:48:20 +00004779 CharDriverState *monitor_hd = NULL;
pbrookfd5f3932008-03-26 20:55:43 +00004780 const char *monitor_device;
4781 const char *serial_devices[MAX_SERIAL_PORTS];
bellard8d11df92004-08-24 21:13:40 +00004782 int serial_device_index;
pbrookfd5f3932008-03-26 20:55:43 +00004783 const char *parallel_devices[MAX_PARALLEL_PORTS];
bellard6508fe52005-01-15 12:02:56 +00004784 int parallel_device_index;
aliguori9ede2fd2009-01-15 20:05:25 +00004785 const char *virtio_consoles[MAX_VIRTIO_CONSOLES];
4786 int virtio_console_index;
bellardd63d3072004-10-03 13:29:03 +00004787 const char *loadvm = NULL;
bellardcc1daa42005-06-05 14:49:17 +00004788 QEMUMachine *machine;
j_mayer94fc95c2007-03-05 19:44:02 +00004789 const char *cpu_model;
pbrookfd5f3932008-03-26 20:55:43 +00004790 const char *usb_devices[MAX_USB_CMDLINE];
bellarda594cfb2005-11-06 16:13:29 +00004791 int usb_devices_index;
blueswir1b9e82a52009-04-05 18:03:31 +00004792#ifndef _WIN32
ths71e3ceb2006-12-22 02:11:31 +00004793 int fds[2];
blueswir1b9e82a52009-04-05 18:03:31 +00004794#endif
bellard26a5f132008-05-28 12:30:31 +00004795 int tb_size;
ths93815bc2007-03-19 15:58:31 +00004796 const char *pid_file = NULL;
aliguori5bb79102008-10-13 03:12:02 +00004797 const char *incoming = NULL;
blueswir1b9e82a52009-04-05 18:03:31 +00004798#ifndef _WIN32
aliguori54042bc2009-02-27 22:16:47 +00004799 int fd = 0;
4800 struct passwd *pwd = NULL;
aliguori08585322009-02-27 22:09:45 +00004801 const char *chroot_dir = NULL;
4802 const char *run_as = NULL;
blueswir1b9e82a52009-04-05 18:03:31 +00004803#endif
aliguori268a3622009-04-21 22:30:27 +00004804 CPUState *env;
Anthony Liguori993fbfd2009-05-21 16:54:00 -05004805 int show_vnc_port = 0;
bellard0bd48852005-11-11 00:00:47 +00004806
malc902b3d52008-12-10 19:18:40 +00004807 qemu_cache_utils_init(envp);
4808
bellard0bd48852005-11-11 00:00:47 +00004809 LIST_INIT (&vm_change_state_head);
bellardbe995c22006-06-25 16:25:21 +00004810#ifndef _WIN32
4811 {
4812 struct sigaction act;
4813 sigfillset(&act.sa_mask);
4814 act.sa_flags = 0;
4815 act.sa_handler = SIG_IGN;
4816 sigaction(SIGPIPE, &act, NULL);
4817 }
bellard3587d7e2006-06-26 20:03:44 +00004818#else
4819 SetConsoleCtrlHandler(qemu_ctrl_handler, TRUE);
bellarda8e5ac32006-07-14 09:36:13 +00004820 /* Note: cpu_interrupt() is currently not SMP safe, so we force
4821 QEMU to run on a single CPU */
4822 {
4823 HANDLE h;
4824 DWORD mask, smask;
4825 int i;
4826 h = GetCurrentProcess();
4827 if (GetProcessAffinityMask(h, &mask, &smask)) {
4828 for(i = 0; i < 32; i++) {
4829 if (mask & (1 << i))
4830 break;
4831 }
4832 if (i != 32) {
4833 mask = 1 << i;
4834 SetProcessAffinityMask(h, mask);
4835 }
4836 }
4837 }
bellard67b915a2004-03-31 23:37:16 +00004838#endif
bellardbe995c22006-06-25 16:25:21 +00004839
Anthony Liguorif80f9ec2009-05-20 18:38:09 -05004840 module_call_init(MODULE_INIT_MACHINE);
Anthony Liguori0c257432009-05-21 20:41:01 -05004841 machine = find_default_machine();
j_mayer94fc95c2007-03-05 19:44:02 +00004842 cpu_model = NULL;
bellardfc01f7e2003-06-30 10:03:06 +00004843 initrd_filename = NULL;
aurel324fc5d072008-04-27 21:39:40 +00004844 ram_size = 0;
bellard33e39632003-07-06 17:15:21 +00004845 snapshot = 0;
bellarda20dd502003-09-30 21:07:02 +00004846 kernel_filename = NULL;
4847 kernel_cmdline = "";
bellardc4b1fcc2004-03-14 21:44:30 +00004848 cyls = heads = secs = 0;
bellard46d47672004-11-16 01:45:27 +00004849 translation = BIOS_ATA_TRANSLATION_AUTO;
aliguorid47d13b2009-03-05 23:00:53 +00004850 monitor_device = "vc:80Cx24C";
bellardc4b1fcc2004-03-14 21:44:30 +00004851
aurel32c75a8232008-05-04 00:50:34 +00004852 serial_devices[0] = "vc:80Cx24C";
bellard8d11df92004-08-24 21:13:40 +00004853 for(i = 1; i < MAX_SERIAL_PORTS; i++)
pbrookfd5f3932008-03-26 20:55:43 +00004854 serial_devices[i] = NULL;
bellard8d11df92004-08-24 21:13:40 +00004855 serial_device_index = 0;
ths3b46e622007-09-17 08:09:54 +00004856
aliguori8290edd2009-02-27 20:14:29 +00004857 parallel_devices[0] = "vc:80Cx24C";
bellard6508fe52005-01-15 12:02:56 +00004858 for(i = 1; i < MAX_PARALLEL_PORTS; i++)
pbrookfd5f3932008-03-26 20:55:43 +00004859 parallel_devices[i] = NULL;
bellard6508fe52005-01-15 12:02:56 +00004860 parallel_device_index = 0;
ths3b46e622007-09-17 08:09:54 +00004861
aliguori1b8fc812009-02-27 20:01:39 +00004862 for(i = 0; i < MAX_VIRTIO_CONSOLES; i++)
aliguori9ede2fd2009-01-15 20:05:25 +00004863 virtio_consoles[i] = NULL;
4864 virtio_console_index = 0;
4865
aliguori268a3622009-04-21 22:30:27 +00004866 for (i = 0; i < MAX_NODES; i++) {
4867 node_mem[i] = 0;
4868 node_cpumask[i] = 0;
4869 }
4870
bellarda594cfb2005-11-06 16:13:29 +00004871 usb_devices_index = 0;
ths3b46e622007-09-17 08:09:54 +00004872
bellard7c9d8e02005-11-15 22:16:05 +00004873 nb_net_clients = 0;
balrogdc72ac12008-11-09 00:04:26 +00004874 nb_bt_opts = 0;
thse4bcb142007-12-02 04:51:10 +00004875 nb_drives = 0;
4876 nb_drives_opt = 0;
aliguori268a3622009-04-21 22:30:27 +00004877 nb_numa_nodes = 0;
thse4bcb142007-12-02 04:51:10 +00004878 hda_index = -1;
bellard7c9d8e02005-11-15 22:16:05 +00004879
4880 nb_nics = 0;
ths3b46e622007-09-17 08:09:54 +00004881
bellard26a5f132008-05-28 12:30:31 +00004882 tb_size = 0;
blueswir141bd6392008-10-05 09:56:21 +00004883 autostart= 1;
4884
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01004885 register_watchdogs();
4886
bellardcd6f1162004-05-13 22:02:20 +00004887 optind = 1;
bellard0824d6f2003-06-24 13:42:40 +00004888 for(;;) {
bellardcd6f1162004-05-13 22:02:20 +00004889 if (optind >= argc)
bellard0824d6f2003-06-24 13:42:40 +00004890 break;
bellardcd6f1162004-05-13 22:02:20 +00004891 r = argv[optind];
4892 if (r[0] != '-') {
balrog609497a2008-01-14 02:56:53 +00004893 hda_index = drive_add(argv[optind++], HD_ALIAS, 0);
bellardcd6f1162004-05-13 22:02:20 +00004894 } else {
4895 const QEMUOption *popt;
4896
4897 optind++;
pbrookdff5efc2007-01-27 17:19:39 +00004898 /* Treat --foo the same as -foo. */
4899 if (r[1] == '-')
4900 r++;
bellardcd6f1162004-05-13 22:02:20 +00004901 popt = qemu_options;
4902 for(;;) {
4903 if (!popt->name) {
ths5fafdf22007-09-16 21:08:06 +00004904 fprintf(stderr, "%s: invalid option -- '%s'\n",
bellardcd6f1162004-05-13 22:02:20 +00004905 argv[0], r);
4906 exit(1);
4907 }
4908 if (!strcmp(popt->name, r + 1))
4909 break;
4910 popt++;
4911 }
4912 if (popt->flags & HAS_ARG) {
4913 if (optind >= argc) {
4914 fprintf(stderr, "%s: option '%s' requires an argument\n",
4915 argv[0], r);
4916 exit(1);
4917 }
4918 optarg = argv[optind++];
4919 } else {
4920 optarg = NULL;
4921 }
4922
4923 switch(popt->index) {
bellardcc1daa42005-06-05 14:49:17 +00004924 case QEMU_OPTION_M:
4925 machine = find_machine(optarg);
4926 if (!machine) {
4927 QEMUMachine *m;
4928 printf("Supported machines are:\n");
4929 for(m = first_machine; m != NULL; m = m->next) {
4930 printf("%-10s %s%s\n",
ths5fafdf22007-09-16 21:08:06 +00004931 m->name, m->desc,
Anthony Liguori0c257432009-05-21 20:41:01 -05004932 m->is_default ? " (default)" : "");
bellardcc1daa42005-06-05 14:49:17 +00004933 }
ths15f82202007-06-29 23:26:08 +00004934 exit(*optarg != '?');
bellardcc1daa42005-06-05 14:49:17 +00004935 }
4936 break;
j_mayer94fc95c2007-03-05 19:44:02 +00004937 case QEMU_OPTION_cpu:
4938 /* hw initialization will check this */
ths15f82202007-06-29 23:26:08 +00004939 if (*optarg == '?') {
j_mayerc732abe2007-10-12 06:47:46 +00004940/* XXX: implement xxx_cpu_list for targets that still miss it */
4941#if defined(cpu_list)
4942 cpu_list(stdout, &fprintf);
j_mayer94fc95c2007-03-05 19:44:02 +00004943#endif
ths15f82202007-06-29 23:26:08 +00004944 exit(0);
j_mayer94fc95c2007-03-05 19:44:02 +00004945 } else {
4946 cpu_model = optarg;
4947 }
4948 break;
bellardcd6f1162004-05-13 22:02:20 +00004949 case QEMU_OPTION_initrd:
bellardfc01f7e2003-06-30 10:03:06 +00004950 initrd_filename = optarg;
4951 break;
bellardcd6f1162004-05-13 22:02:20 +00004952 case QEMU_OPTION_hda:
thse4bcb142007-12-02 04:51:10 +00004953 if (cyls == 0)
balrog609497a2008-01-14 02:56:53 +00004954 hda_index = drive_add(optarg, HD_ALIAS, 0);
thse4bcb142007-12-02 04:51:10 +00004955 else
balrog609497a2008-01-14 02:56:53 +00004956 hda_index = drive_add(optarg, HD_ALIAS
thse4bcb142007-12-02 04:51:10 +00004957 ",cyls=%d,heads=%d,secs=%d%s",
balrog609497a2008-01-14 02:56:53 +00004958 0, cyls, heads, secs,
thse4bcb142007-12-02 04:51:10 +00004959 translation == BIOS_ATA_TRANSLATION_LBA ?
4960 ",trans=lba" :
4961 translation == BIOS_ATA_TRANSLATION_NONE ?
4962 ",trans=none" : "");
4963 break;
bellardcd6f1162004-05-13 22:02:20 +00004964 case QEMU_OPTION_hdb:
bellardcc1daa42005-06-05 14:49:17 +00004965 case QEMU_OPTION_hdc:
4966 case QEMU_OPTION_hdd:
balrog609497a2008-01-14 02:56:53 +00004967 drive_add(optarg, HD_ALIAS, popt->index - QEMU_OPTION_hda);
bellardfc01f7e2003-06-30 10:03:06 +00004968 break;
thse4bcb142007-12-02 04:51:10 +00004969 case QEMU_OPTION_drive:
balrog609497a2008-01-14 02:56:53 +00004970 drive_add(NULL, "%s", optarg);
thse4bcb142007-12-02 04:51:10 +00004971 break;
balrog3e3d5812007-04-30 02:09:25 +00004972 case QEMU_OPTION_mtdblock:
balrog609497a2008-01-14 02:56:53 +00004973 drive_add(optarg, MTD_ALIAS);
balrog3e3d5812007-04-30 02:09:25 +00004974 break;
pbrooka1bb27b2007-04-06 16:49:48 +00004975 case QEMU_OPTION_sd:
balrog609497a2008-01-14 02:56:53 +00004976 drive_add(optarg, SD_ALIAS);
pbrooka1bb27b2007-04-06 16:49:48 +00004977 break;
j_mayer86f55662007-04-24 06:52:59 +00004978 case QEMU_OPTION_pflash:
balrog609497a2008-01-14 02:56:53 +00004979 drive_add(optarg, PFLASH_ALIAS);
j_mayer86f55662007-04-24 06:52:59 +00004980 break;
bellardcd6f1162004-05-13 22:02:20 +00004981 case QEMU_OPTION_snapshot:
bellard33e39632003-07-06 17:15:21 +00004982 snapshot = 1;
4983 break;
bellardcd6f1162004-05-13 22:02:20 +00004984 case QEMU_OPTION_hdachs:
bellard330d0412003-07-26 18:11:40 +00004985 {
bellard330d0412003-07-26 18:11:40 +00004986 const char *p;
4987 p = optarg;
4988 cyls = strtol(p, (char **)&p, 0);
bellard46d47672004-11-16 01:45:27 +00004989 if (cyls < 1 || cyls > 16383)
4990 goto chs_fail;
bellard330d0412003-07-26 18:11:40 +00004991 if (*p != ',')
4992 goto chs_fail;
4993 p++;
4994 heads = strtol(p, (char **)&p, 0);
bellard46d47672004-11-16 01:45:27 +00004995 if (heads < 1 || heads > 16)
4996 goto chs_fail;
bellard330d0412003-07-26 18:11:40 +00004997 if (*p != ',')
4998 goto chs_fail;
4999 p++;
5000 secs = strtol(p, (char **)&p, 0);
bellard46d47672004-11-16 01:45:27 +00005001 if (secs < 1 || secs > 63)
5002 goto chs_fail;
5003 if (*p == ',') {
5004 p++;
5005 if (!strcmp(p, "none"))
5006 translation = BIOS_ATA_TRANSLATION_NONE;
5007 else if (!strcmp(p, "lba"))
5008 translation = BIOS_ATA_TRANSLATION_LBA;
5009 else if (!strcmp(p, "auto"))
5010 translation = BIOS_ATA_TRANSLATION_AUTO;
5011 else
5012 goto chs_fail;
5013 } else if (*p != '\0') {
bellardc4b1fcc2004-03-14 21:44:30 +00005014 chs_fail:
bellard46d47672004-11-16 01:45:27 +00005015 fprintf(stderr, "qemu: invalid physical CHS format\n");
5016 exit(1);
bellardc4b1fcc2004-03-14 21:44:30 +00005017 }
thse4bcb142007-12-02 04:51:10 +00005018 if (hda_index != -1)
balrog609497a2008-01-14 02:56:53 +00005019 snprintf(drives_opt[hda_index].opt,
5020 sizeof(drives_opt[hda_index].opt),
5021 HD_ALIAS ",cyls=%d,heads=%d,secs=%d%s",
5022 0, cyls, heads, secs,
thse4bcb142007-12-02 04:51:10 +00005023 translation == BIOS_ATA_TRANSLATION_LBA ?
5024 ",trans=lba" :
5025 translation == BIOS_ATA_TRANSLATION_NONE ?
5026 ",trans=none" : "");
bellard330d0412003-07-26 18:11:40 +00005027 }
5028 break;
aliguori268a3622009-04-21 22:30:27 +00005029 case QEMU_OPTION_numa:
5030 if (nb_numa_nodes >= MAX_NODES) {
5031 fprintf(stderr, "qemu: too many NUMA nodes\n");
5032 exit(1);
5033 }
5034 numa_add(optarg);
5035 break;
bellardcd6f1162004-05-13 22:02:20 +00005036 case QEMU_OPTION_nographic:
Anthony Liguori993fbfd2009-05-21 16:54:00 -05005037 display_type = DT_NOGRAPHIC;
bellarda20dd502003-09-30 21:07:02 +00005038 break;
balrog4d3b6f62008-02-10 16:33:14 +00005039#ifdef CONFIG_CURSES
5040 case QEMU_OPTION_curses:
Anthony Liguori993fbfd2009-05-21 16:54:00 -05005041 display_type = DT_CURSES;
balrog4d3b6f62008-02-10 16:33:14 +00005042 break;
5043#endif
balroga171fe32007-04-30 01:48:07 +00005044 case QEMU_OPTION_portrait:
5045 graphic_rotate = 1;
5046 break;
bellardcd6f1162004-05-13 22:02:20 +00005047 case QEMU_OPTION_kernel:
bellarda20dd502003-09-30 21:07:02 +00005048 kernel_filename = optarg;
5049 break;
bellardcd6f1162004-05-13 22:02:20 +00005050 case QEMU_OPTION_append:
bellarda20dd502003-09-30 21:07:02 +00005051 kernel_cmdline = optarg;
bellard313aa562003-08-10 21:52:11 +00005052 break;
bellardcd6f1162004-05-13 22:02:20 +00005053 case QEMU_OPTION_cdrom:
balrog609497a2008-01-14 02:56:53 +00005054 drive_add(optarg, CDROM_ALIAS);
bellard36b486b2003-11-11 13:36:08 +00005055 break;
bellardcd6f1162004-05-13 22:02:20 +00005056 case QEMU_OPTION_boot:
j_mayer28c5af52007-11-11 01:50:45 +00005057 boot_devices = optarg;
5058 /* We just do some generic consistency checks */
5059 {
5060 /* Could easily be extended to 64 devices if needed */
ths60fe76f2007-12-16 03:02:09 +00005061 const char *p;
j_mayer28c5af52007-11-11 01:50:45 +00005062
5063 boot_devices_bitmap = 0;
5064 for (p = boot_devices; *p != '\0'; p++) {
5065 /* Allowed boot devices are:
5066 * a b : floppy disk drives
5067 * c ... f : IDE disk drives
5068 * g ... m : machine implementation dependant drives
5069 * n ... p : network devices
5070 * It's up to each machine implementation to check
5071 * if the given boot devices match the actual hardware
5072 * implementation and firmware features.
5073 */
5074 if (*p < 'a' || *p > 'q') {
5075 fprintf(stderr, "Invalid boot device '%c'\n", *p);
5076 exit(1);
5077 }
5078 if (boot_devices_bitmap & (1 << (*p - 'a'))) {
5079 fprintf(stderr,
5080 "Boot device '%c' was given twice\n",*p);
5081 exit(1);
5082 }
5083 boot_devices_bitmap |= 1 << (*p - 'a');
5084 }
bellard36b486b2003-11-11 13:36:08 +00005085 }
5086 break;
bellardcd6f1162004-05-13 22:02:20 +00005087 case QEMU_OPTION_fda:
bellardcd6f1162004-05-13 22:02:20 +00005088 case QEMU_OPTION_fdb:
balrog609497a2008-01-14 02:56:53 +00005089 drive_add(optarg, FD_ALIAS, popt->index - QEMU_OPTION_fda);
bellardc45886d2004-01-05 00:02:06 +00005090 break;
bellard52ca8d62006-06-14 16:03:05 +00005091#ifdef TARGET_I386
5092 case QEMU_OPTION_no_fd_bootchk:
5093 fd_bootchk = 0;
5094 break;
5095#endif
bellard7c9d8e02005-11-15 22:16:05 +00005096 case QEMU_OPTION_net:
5097 if (nb_net_clients >= MAX_NET_CLIENTS) {
5098 fprintf(stderr, "qemu: too many network clients\n");
bellardc4b1fcc2004-03-14 21:44:30 +00005099 exit(1);
5100 }
pbrookfd5f3932008-03-26 20:55:43 +00005101 net_clients[nb_net_clients] = optarg;
bellard7c9d8e02005-11-15 22:16:05 +00005102 nb_net_clients++;
bellard702c6512004-04-02 21:21:32 +00005103 break;
bellardc7f74642004-08-24 21:57:12 +00005104#ifdef CONFIG_SLIRP
5105 case QEMU_OPTION_tftp:
Jan Kiszkaad196a92009-06-24 14:42:28 +02005106 legacy_tftp_prefix = optarg;
bellard9bf05442004-08-25 22:12:49 +00005107 break;
ths47d5d012007-02-20 00:05:08 +00005108 case QEMU_OPTION_bootp:
Jan Kiszkaad196a92009-06-24 14:42:28 +02005109 legacy_bootp_filename = optarg;
ths47d5d012007-02-20 00:05:08 +00005110 break;
bellardc94c8d62004-09-13 21:37:34 +00005111#ifndef _WIN32
bellard9d728e82004-09-05 23:09:03 +00005112 case QEMU_OPTION_smb:
Jan Kiszkaad196a92009-06-24 14:42:28 +02005113 net_slirp_smb(optarg);
bellard9d728e82004-09-05 23:09:03 +00005114 break;
bellardc94c8d62004-09-13 21:37:34 +00005115#endif
bellard9bf05442004-08-25 22:12:49 +00005116 case QEMU_OPTION_redir:
Jan Kiszkaf3546de2009-06-24 14:42:28 +02005117 net_slirp_redir(optarg);
bellard9bf05442004-08-25 22:12:49 +00005118 break;
bellardc7f74642004-08-24 21:57:12 +00005119#endif
balrogdc72ac12008-11-09 00:04:26 +00005120 case QEMU_OPTION_bt:
5121 if (nb_bt_opts >= MAX_BT_CMDLINE) {
5122 fprintf(stderr, "qemu: too many bluetooth options\n");
5123 exit(1);
5124 }
5125 bt_opts[nb_bt_opts++] = optarg;
5126 break;
bellard1d14ffa2005-10-30 18:58:22 +00005127#ifdef HAS_AUDIO
bellard1d14ffa2005-10-30 18:58:22 +00005128 case QEMU_OPTION_audio_help:
5129 AUD_help ();
5130 exit (0);
5131 break;
5132 case QEMU_OPTION_soundhw:
5133 select_soundhw (optarg);
5134 break;
5135#endif
bellardcd6f1162004-05-13 22:02:20 +00005136 case QEMU_OPTION_h:
ths15f82202007-06-29 23:26:08 +00005137 help(0);
bellardcd6f1162004-05-13 22:02:20 +00005138 break;
pbrook9bd7e6d2009-04-07 22:58:45 +00005139 case QEMU_OPTION_version:
5140 version();
5141 exit(0);
5142 break;
aurel3200f82b82008-04-27 21:12:55 +00005143 case QEMU_OPTION_m: {
5144 uint64_t value;
5145 char *ptr;
5146
5147 value = strtoul(optarg, &ptr, 10);
5148 switch (*ptr) {
5149 case 0: case 'M': case 'm':
5150 value <<= 20;
5151 break;
5152 case 'G': case 'g':
5153 value <<= 30;
5154 break;
5155 default:
5156 fprintf(stderr, "qemu: invalid ram size: %s\n", optarg);
bellardcd6f1162004-05-13 22:02:20 +00005157 exit(1);
5158 }
aurel3200f82b82008-04-27 21:12:55 +00005159
5160 /* On 32-bit hosts, QEMU is limited by virtual address space */
5161 if (value > (2047 << 20)
blueswir1640f42e2009-04-19 10:18:01 +00005162#ifndef CONFIG_KQEMU
aurel3200f82b82008-04-27 21:12:55 +00005163 && HOST_LONG_BITS == 32
5164#endif
5165 ) {
5166 fprintf(stderr, "qemu: at most 2047 MB RAM can be simulated\n");
5167 exit(1);
5168 }
5169 if (value != (uint64_t)(ram_addr_t)value) {
5170 fprintf(stderr, "qemu: ram size too large\n");
5171 exit(1);
5172 }
5173 ram_size = value;
bellardcd6f1162004-05-13 22:02:20 +00005174 break;
aurel3200f82b82008-04-27 21:12:55 +00005175 }
bellardcd6f1162004-05-13 22:02:20 +00005176 case QEMU_OPTION_d:
5177 {
5178 int mask;
blueswir1c7cd6a32008-10-02 18:27:46 +00005179 const CPULogItem *item;
ths3b46e622007-09-17 08:09:54 +00005180
bellardcd6f1162004-05-13 22:02:20 +00005181 mask = cpu_str_to_log_mask(optarg);
5182 if (!mask) {
5183 printf("Log items (comma separated):\n");
bellardf193c792004-03-21 17:06:25 +00005184 for(item = cpu_log_items; item->mask != 0; item++) {
5185 printf("%-10s %s\n", item->name, item->help);
5186 }
5187 exit(1);
bellardcd6f1162004-05-13 22:02:20 +00005188 }
5189 cpu_set_log(mask);
bellardf193c792004-03-21 17:06:25 +00005190 }
bellardcd6f1162004-05-13 22:02:20 +00005191 break;
bellardcd6f1162004-05-13 22:02:20 +00005192 case QEMU_OPTION_s:
aliguori59030a82009-04-05 18:43:41 +00005193 gdbstub_dev = "tcp::" DEFAULT_GDBSTUB_PORT;
bellardcd6f1162004-05-13 22:02:20 +00005194 break;
aliguori59030a82009-04-05 18:43:41 +00005195 case QEMU_OPTION_gdb:
5196 gdbstub_dev = optarg;
bellardcd6f1162004-05-13 22:02:20 +00005197 break;
bellardcd6f1162004-05-13 22:02:20 +00005198 case QEMU_OPTION_L:
Paul Brook5cea8592009-05-30 00:52:44 +01005199 data_dir = optarg;
bellardcd6f1162004-05-13 22:02:20 +00005200 break;
j_mayer1192dad2007-10-05 13:08:35 +00005201 case QEMU_OPTION_bios:
5202 bios_name = optarg;
5203 break;
aurel321b530a62009-04-05 20:08:59 +00005204 case QEMU_OPTION_singlestep:
5205 singlestep = 1;
5206 break;
bellardcd6f1162004-05-13 22:02:20 +00005207 case QEMU_OPTION_S:
pbrook3c07f8e2007-01-21 16:47:01 +00005208 autostart = 0;
bellardcd6f1162004-05-13 22:02:20 +00005209 break;
blueswir15824d652009-03-28 06:44:27 +00005210#ifndef _WIN32
bellard3d11d0e2004-12-12 16:56:30 +00005211 case QEMU_OPTION_k:
5212 keyboard_layout = optarg;
5213 break;
blueswir15824d652009-03-28 06:44:27 +00005214#endif
bellardee22c2f2004-06-03 12:49:50 +00005215 case QEMU_OPTION_localtime:
5216 rtc_utc = 0;
5217 break;
malc3893c122008-09-28 00:42:05 +00005218 case QEMU_OPTION_vga:
5219 select_vgahw (optarg);
bellard1bfe8562004-07-08 21:17:50 +00005220 break;
blueswir15824d652009-03-28 06:44:27 +00005221#if defined(TARGET_PPC) || defined(TARGET_SPARC)
bellarde9b137c2004-06-21 16:46:10 +00005222 case QEMU_OPTION_g:
5223 {
5224 const char *p;
5225 int w, h, depth;
5226 p = optarg;
5227 w = strtol(p, (char **)&p, 10);
5228 if (w <= 0) {
5229 graphic_error:
5230 fprintf(stderr, "qemu: invalid resolution or depth\n");
5231 exit(1);
5232 }
5233 if (*p != 'x')
5234 goto graphic_error;
5235 p++;
5236 h = strtol(p, (char **)&p, 10);
5237 if (h <= 0)
5238 goto graphic_error;
5239 if (*p == 'x') {
5240 p++;
5241 depth = strtol(p, (char **)&p, 10);
ths5fafdf22007-09-16 21:08:06 +00005242 if (depth != 8 && depth != 15 && depth != 16 &&
bellarde9b137c2004-06-21 16:46:10 +00005243 depth != 24 && depth != 32)
5244 goto graphic_error;
5245 } else if (*p == '\0') {
5246 depth = graphic_depth;
5247 } else {
5248 goto graphic_error;
5249 }
ths3b46e622007-09-17 08:09:54 +00005250
bellarde9b137c2004-06-21 16:46:10 +00005251 graphic_width = w;
5252 graphic_height = h;
5253 graphic_depth = depth;
5254 }
5255 break;
blueswir15824d652009-03-28 06:44:27 +00005256#endif
ths20d8a3e2007-02-18 17:04:49 +00005257 case QEMU_OPTION_echr:
5258 {
5259 char *r;
5260 term_escape_char = strtol(optarg, &r, 0);
5261 if (r == optarg)
5262 printf("Bad argument to echr\n");
5263 break;
5264 }
bellard82c643f2004-07-14 17:28:13 +00005265 case QEMU_OPTION_monitor:
pbrookfd5f3932008-03-26 20:55:43 +00005266 monitor_device = optarg;
bellard82c643f2004-07-14 17:28:13 +00005267 break;
5268 case QEMU_OPTION_serial:
bellard8d11df92004-08-24 21:13:40 +00005269 if (serial_device_index >= MAX_SERIAL_PORTS) {
5270 fprintf(stderr, "qemu: too many serial ports\n");
5271 exit(1);
5272 }
pbrookfd5f3932008-03-26 20:55:43 +00005273 serial_devices[serial_device_index] = optarg;
bellard8d11df92004-08-24 21:13:40 +00005274 serial_device_index++;
bellard82c643f2004-07-14 17:28:13 +00005275 break;
Richard W.M. Jones9dd986c2009-04-25 13:56:19 +01005276 case QEMU_OPTION_watchdog:
5277 i = select_watchdog(optarg);
5278 if (i > 0)
5279 exit (i == 1 ? 1 : 0);
5280 break;
5281 case QEMU_OPTION_watchdog_action:
5282 if (select_watchdog_action(optarg) == -1) {
5283 fprintf(stderr, "Unknown -watchdog-action parameter\n");
5284 exit(1);
5285 }
5286 break;
aliguori51ecf132009-01-15 20:06:40 +00005287 case QEMU_OPTION_virtiocon:
5288 if (virtio_console_index >= MAX_VIRTIO_CONSOLES) {
5289 fprintf(stderr, "qemu: too many virtio consoles\n");
5290 exit(1);
5291 }
5292 virtio_consoles[virtio_console_index] = optarg;
5293 virtio_console_index++;
5294 break;
bellard6508fe52005-01-15 12:02:56 +00005295 case QEMU_OPTION_parallel:
5296 if (parallel_device_index >= MAX_PARALLEL_PORTS) {
5297 fprintf(stderr, "qemu: too many parallel ports\n");
5298 exit(1);
5299 }
pbrookfd5f3932008-03-26 20:55:43 +00005300 parallel_devices[parallel_device_index] = optarg;
bellard6508fe52005-01-15 12:02:56 +00005301 parallel_device_index++;
5302 break;
bellardd63d3072004-10-03 13:29:03 +00005303 case QEMU_OPTION_loadvm:
5304 loadvm = optarg;
5305 break;
5306 case QEMU_OPTION_full_screen:
5307 full_screen = 1;
5308 break;
ths667acca2006-12-11 02:08:05 +00005309#ifdef CONFIG_SDL
ths43523e92007-02-18 18:19:32 +00005310 case QEMU_OPTION_no_frame:
5311 no_frame = 1;
5312 break;
ths3780e192007-06-21 21:08:02 +00005313 case QEMU_OPTION_alt_grab:
5314 alt_grab = 1;
5315 break;
ths667acca2006-12-11 02:08:05 +00005316 case QEMU_OPTION_no_quit:
5317 no_quit = 1;
5318 break;
aliguori7d957bd2009-01-15 22:14:11 +00005319 case QEMU_OPTION_sdl:
Anthony Liguori993fbfd2009-05-21 16:54:00 -05005320 display_type = DT_SDL;
aliguori7d957bd2009-01-15 22:14:11 +00005321 break;
ths667acca2006-12-11 02:08:05 +00005322#endif
bellardf7cce892004-12-08 22:21:25 +00005323 case QEMU_OPTION_pidfile:
ths93815bc2007-03-19 15:58:31 +00005324 pid_file = optarg;
bellardf7cce892004-12-08 22:21:25 +00005325 break;
bellarda09db212005-04-30 16:10:35 +00005326#ifdef TARGET_I386
5327 case QEMU_OPTION_win2k_hack:
5328 win2k_install_hack = 1;
5329 break;
aliguori73822ec2009-01-15 20:11:34 +00005330 case QEMU_OPTION_rtc_td_hack:
5331 rtc_td_hack = 1;
5332 break;
aliguori8a92ea22009-02-27 20:12:36 +00005333 case QEMU_OPTION_acpitable:
5334 if(acpi_table_add(optarg) < 0) {
5335 fprintf(stderr, "Wrong acpi table provided\n");
5336 exit(1);
5337 }
5338 break;
aliguorib6f6e3d2009-04-17 18:59:56 +00005339 case QEMU_OPTION_smbios:
5340 if(smbios_entry_add(optarg) < 0) {
5341 fprintf(stderr, "Wrong smbios provided\n");
5342 exit(1);
5343 }
5344 break;
bellarda09db212005-04-30 16:10:35 +00005345#endif
blueswir1640f42e2009-04-19 10:18:01 +00005346#ifdef CONFIG_KQEMU
Anthony Liguori52249f02009-07-09 17:28:08 -05005347 case QEMU_OPTION_enable_kqemu:
5348 kqemu_allowed = 1;
bellardd993e022005-02-10 22:00:06 +00005349 break;
bellard89bfc102006-02-08 22:46:31 +00005350 case QEMU_OPTION_kernel_kqemu:
5351 kqemu_allowed = 2;
5352 break;
bellardd993e022005-02-10 22:00:06 +00005353#endif
aliguori7ba1e612008-11-05 16:04:33 +00005354#ifdef CONFIG_KVM
5355 case QEMU_OPTION_enable_kvm:
5356 kvm_allowed = 1;
blueswir1640f42e2009-04-19 10:18:01 +00005357#ifdef CONFIG_KQEMU
aliguori7ba1e612008-11-05 16:04:33 +00005358 kqemu_allowed = 0;
5359#endif
5360 break;
5361#endif
bellardbb36d472005-11-05 14:22:28 +00005362 case QEMU_OPTION_usb:
5363 usb_enabled = 1;
5364 break;
bellarda594cfb2005-11-06 16:13:29 +00005365 case QEMU_OPTION_usbdevice:
5366 usb_enabled = 1;
pbrook0d92ed32006-05-21 16:30:15 +00005367 if (usb_devices_index >= MAX_USB_CMDLINE) {
bellarda594cfb2005-11-06 16:13:29 +00005368 fprintf(stderr, "Too many USB devices\n");
5369 exit(1);
5370 }
pbrookfd5f3932008-03-26 20:55:43 +00005371 usb_devices[usb_devices_index] = optarg;
bellarda594cfb2005-11-06 16:13:29 +00005372 usb_devices_index++;
5373 break;
bellard6a00d602005-11-21 23:25:50 +00005374 case QEMU_OPTION_smp:
5375 smp_cpus = atoi(optarg);
aliguorib2097002008-10-07 20:39:39 +00005376 if (smp_cpus < 1) {
bellard6a00d602005-11-21 23:25:50 +00005377 fprintf(stderr, "Invalid number of CPUs\n");
5378 exit(1);
5379 }
5380 break;
bellard24236862006-04-30 21:28:36 +00005381 case QEMU_OPTION_vnc:
Anthony Liguori993fbfd2009-05-21 16:54:00 -05005382 display_type = DT_VNC;
ths73fc9742006-12-22 02:09:07 +00005383 vnc_display = optarg;
bellard24236862006-04-30 21:28:36 +00005384 break;
blueswir15824d652009-03-28 06:44:27 +00005385#ifdef TARGET_I386
bellard6515b202006-05-03 22:02:44 +00005386 case QEMU_OPTION_no_acpi:
5387 acpi_enabled = 0;
5388 break;
aliguori16b29ae2008-12-17 23:28:44 +00005389 case QEMU_OPTION_no_hpet:
5390 no_hpet = 1;
5391 break;
Markus Armbruster7d4c3d52009-06-26 19:15:14 +02005392 case QEMU_OPTION_balloon:
5393 if (balloon_parse(optarg) < 0) {
5394 fprintf(stderr, "Unknown -balloon argument %s\n", optarg);
5395 exit(1);
5396 }
Eduardo Habkostdf97b922009-06-10 16:34:08 -03005397 break;
blueswir15824d652009-03-28 06:44:27 +00005398#endif
bellardd1beab82006-10-02 19:44:22 +00005399 case QEMU_OPTION_no_reboot:
5400 no_reboot = 1;
5401 break;
aurel32b2f76162008-04-11 21:35:52 +00005402 case QEMU_OPTION_no_shutdown:
5403 no_shutdown = 1;
5404 break;
balrog9467cd42007-05-01 01:34:14 +00005405 case QEMU_OPTION_show_cursor:
5406 cursor_hide = 0;
5407 break;
blueswir18fcb1b92008-09-18 18:29:08 +00005408 case QEMU_OPTION_uuid:
5409 if(qemu_uuid_parse(optarg, qemu_uuid) < 0) {
5410 fprintf(stderr, "Fail to parse UUID string."
5411 " Wrong format.\n");
5412 exit(1);
5413 }
5414 break;
blueswir15824d652009-03-28 06:44:27 +00005415#ifndef _WIN32
ths71e3ceb2006-12-22 02:11:31 +00005416 case QEMU_OPTION_daemonize:
5417 daemonize = 1;
5418 break;
blueswir15824d652009-03-28 06:44:27 +00005419#endif
ths9ae02552007-01-05 17:39:04 +00005420 case QEMU_OPTION_option_rom:
5421 if (nb_option_roms >= MAX_OPTION_ROMS) {
5422 fprintf(stderr, "Too many option ROMs\n");
5423 exit(1);
5424 }
5425 option_rom[nb_option_roms] = optarg;
5426 nb_option_roms++;
5427 break;
blueswir15824d652009-03-28 06:44:27 +00005428#if defined(TARGET_ARM) || defined(TARGET_M68K)
pbrook8e716212007-01-20 17:12:09 +00005429 case QEMU_OPTION_semihosting:
5430 semihosting_enabled = 1;
5431 break;
blueswir15824d652009-03-28 06:44:27 +00005432#endif
thsc35734b2007-03-19 15:17:08 +00005433 case QEMU_OPTION_name:
Andi Kleen18894652009-07-02 09:34:17 +02005434 qemu_name = qemu_strdup(optarg);
5435 {
5436 char *p = strchr(qemu_name, ',');
5437 if (p != NULL) {
5438 *p++ = 0;
5439 if (strncmp(p, "process=", 8)) {
5440 fprintf(stderr, "Unknown subargument %s to -name", p);
5441 exit(1);
5442 }
5443 p += 8;
5444 set_proc_name(p);
5445 }
5446 }
thsc35734b2007-03-19 15:17:08 +00005447 break;
blueswir195efd112008-12-24 20:26:14 +00005448#if defined(TARGET_SPARC) || defined(TARGET_PPC)
blueswir166508602007-05-01 14:16:52 +00005449 case QEMU_OPTION_prom_env:
5450 if (nb_prom_envs >= MAX_PROM_ENVS) {
5451 fprintf(stderr, "Too many prom variables\n");
5452 exit(1);
5453 }
5454 prom_envs[nb_prom_envs] = optarg;
5455 nb_prom_envs++;
5456 break;
5457#endif
balrog2b8f2d42007-07-27 22:08:46 +00005458#ifdef TARGET_ARM
5459 case QEMU_OPTION_old_param:
5460 old_param = 1;
ths05ebd532008-01-08 19:32:16 +00005461 break;
balrog2b8f2d42007-07-27 22:08:46 +00005462#endif
thsf3dcfad2007-08-24 01:26:02 +00005463 case QEMU_OPTION_clock:
5464 configure_alarms(optarg);
5465 break;
bellard7e0af5d02007-11-07 16:24:33 +00005466 case QEMU_OPTION_startdate:
5467 {
5468 struct tm tm;
balrogf6503052008-02-17 11:42:19 +00005469 time_t rtc_start_date;
bellard7e0af5d02007-11-07 16:24:33 +00005470 if (!strcmp(optarg, "now")) {
balrogf6503052008-02-17 11:42:19 +00005471 rtc_date_offset = -1;
bellard7e0af5d02007-11-07 16:24:33 +00005472 } else {
5473 if (sscanf(optarg, "%d-%d-%dT%d:%d:%d",
5474 &tm.tm_year,
5475 &tm.tm_mon,
5476 &tm.tm_mday,
5477 &tm.tm_hour,
5478 &tm.tm_min,
5479 &tm.tm_sec) == 6) {
5480 /* OK */
5481 } else if (sscanf(optarg, "%d-%d-%d",
5482 &tm.tm_year,
5483 &tm.tm_mon,
5484 &tm.tm_mday) == 3) {
5485 tm.tm_hour = 0;
5486 tm.tm_min = 0;
5487 tm.tm_sec = 0;
5488 } else {
5489 goto date_fail;
5490 }
5491 tm.tm_year -= 1900;
5492 tm.tm_mon--;
bellard3c6b2082007-11-10 19:36:39 +00005493 rtc_start_date = mktimegm(&tm);
bellard7e0af5d02007-11-07 16:24:33 +00005494 if (rtc_start_date == -1) {
5495 date_fail:
5496 fprintf(stderr, "Invalid date format. Valid format are:\n"
5497 "'now' or '2006-06-17T16:01:21' or '2006-06-17'\n");
5498 exit(1);
5499 }
balrogf6503052008-02-17 11:42:19 +00005500 rtc_date_offset = time(NULL) - rtc_start_date;
bellard7e0af5d02007-11-07 16:24:33 +00005501 }
5502 }
5503 break;
bellard26a5f132008-05-28 12:30:31 +00005504 case QEMU_OPTION_tb_size:
5505 tb_size = strtol(optarg, NULL, 0);
5506 if (tb_size < 0)
5507 tb_size = 0;
5508 break;
pbrook2e70f6e2008-06-29 01:03:05 +00005509 case QEMU_OPTION_icount:
5510 use_icount = 1;
5511 if (strcmp(optarg, "auto") == 0) {
5512 icount_time_shift = -1;
5513 } else {
5514 icount_time_shift = strtol(optarg, NULL, 0);
5515 }
5516 break;
aliguori5bb79102008-10-13 03:12:02 +00005517 case QEMU_OPTION_incoming:
5518 incoming = optarg;
5519 break;
blueswir15824d652009-03-28 06:44:27 +00005520#ifndef _WIN32
aliguori08585322009-02-27 22:09:45 +00005521 case QEMU_OPTION_chroot:
5522 chroot_dir = optarg;
5523 break;
5524 case QEMU_OPTION_runas:
5525 run_as = optarg;
5526 break;
blueswir15824d652009-03-28 06:44:27 +00005527#endif
aliguorie37630c2009-04-22 15:19:10 +00005528#ifdef CONFIG_XEN
5529 case QEMU_OPTION_xen_domid:
5530 xen_domid = atoi(optarg);
5531 break;
5532 case QEMU_OPTION_xen_create:
5533 xen_mode = XEN_CREATE;
5534 break;
5535 case QEMU_OPTION_xen_attach:
5536 xen_mode = XEN_ATTACH;
5537 break;
5538#endif
bellardcd6f1162004-05-13 22:02:20 +00005539 }
bellard0824d6f2003-06-24 13:42:40 +00005540 }
5541 }
bellard330d0412003-07-26 18:11:40 +00005542
Paul Brook5cea8592009-05-30 00:52:44 +01005543 /* If no data_dir is specified then try to find it relative to the
5544 executable path. */
5545 if (!data_dir) {
5546 data_dir = find_datadir(argv[0]);
5547 }
5548 /* If all else fails use the install patch specified when building. */
5549 if (!data_dir) {
5550 data_dir = CONFIG_QEMU_SHAREDIR;
5551 }
5552
blueswir1640f42e2009-04-19 10:18:01 +00005553#if defined(CONFIG_KVM) && defined(CONFIG_KQEMU)
aliguori7ba1e612008-11-05 16:04:33 +00005554 if (kvm_allowed && kqemu_allowed) {
5555 fprintf(stderr,
5556 "You can not enable both KVM and kqemu at the same time\n");
5557 exit(1);
5558 }
5559#endif
5560
balrog3d878ca2008-10-28 10:59:59 +00005561 machine->max_cpus = machine->max_cpus ?: 1; /* Default to UP */
aliguorib2097002008-10-07 20:39:39 +00005562 if (smp_cpus > machine->max_cpus) {
5563 fprintf(stderr, "Number of SMP cpus requested (%d), exceeds max cpus "
5564 "supported by machine `%s' (%d)\n", smp_cpus, machine->name,
5565 machine->max_cpus);
5566 exit(1);
5567 }
5568
Anthony Liguori993fbfd2009-05-21 16:54:00 -05005569 if (display_type == DT_NOGRAPHIC) {
aliguoribc0129d2008-08-01 15:12:34 +00005570 if (serial_device_index == 0)
5571 serial_devices[0] = "stdio";
5572 if (parallel_device_index == 0)
5573 parallel_devices[0] = "null";
5574 if (strncmp(monitor_device, "vc", 2) == 0)
5575 monitor_device = "stdio";
5576 }
5577
ths71e3ceb2006-12-22 02:11:31 +00005578#ifndef _WIN32
ths71e3ceb2006-12-22 02:11:31 +00005579 if (daemonize) {
5580 pid_t pid;
5581
5582 if (pipe(fds) == -1)
5583 exit(1);
5584
5585 pid = fork();
5586 if (pid > 0) {
5587 uint8_t status;
5588 ssize_t len;
5589
5590 close(fds[1]);
5591
5592 again:
ths93815bc2007-03-19 15:58:31 +00005593 len = read(fds[0], &status, 1);
5594 if (len == -1 && (errno == EINTR))
5595 goto again;
5596
5597 if (len != 1)
5598 exit(1);
5599 else if (status == 1) {
5600 fprintf(stderr, "Could not acquire pidfile\n");
5601 exit(1);
5602 } else
5603 exit(0);
ths71e3ceb2006-12-22 02:11:31 +00005604 } else if (pid < 0)
ths93815bc2007-03-19 15:58:31 +00005605 exit(1);
ths71e3ceb2006-12-22 02:11:31 +00005606
5607 setsid();
5608
5609 pid = fork();
5610 if (pid > 0)
5611 exit(0);
5612 else if (pid < 0)
5613 exit(1);
5614
5615 umask(027);
ths71e3ceb2006-12-22 02:11:31 +00005616
5617 signal(SIGTSTP, SIG_IGN);
5618 signal(SIGTTOU, SIG_IGN);
5619 signal(SIGTTIN, SIG_IGN);
5620 }
ths71e3ceb2006-12-22 02:11:31 +00005621
thsaa26bb22007-03-25 21:33:06 +00005622 if (pid_file && qemu_create_pidfile(pid_file) != 0) {
ths93815bc2007-03-19 15:58:31 +00005623 if (daemonize) {
5624 uint8_t status = 1;
5625 write(fds[1], &status, 1);
5626 } else
5627 fprintf(stderr, "Could not acquire pid file\n");
5628 exit(1);
5629 }
blueswir1b9e82a52009-04-05 18:03:31 +00005630#endif
ths93815bc2007-03-19 15:58:31 +00005631
blueswir1640f42e2009-04-19 10:18:01 +00005632#ifdef CONFIG_KQEMU
bellardff3fbb32006-01-08 10:53:14 +00005633 if (smp_cpus > 1)
5634 kqemu_allowed = 0;
5635#endif
aliguori3fcf7b62009-04-24 18:03:25 +00005636 if (qemu_init_main_loop()) {
5637 fprintf(stderr, "qemu_init_main_loop failed\n");
5638 exit(1);
5639 }
bellarda20dd502003-09-30 21:07:02 +00005640 linux_boot = (kernel_filename != NULL);
balrog6c41b272007-11-17 12:12:29 +00005641
thsf8d39c02008-07-03 10:01:15 +00005642 if (!linux_boot && *kernel_cmdline != '\0') {
5643 fprintf(stderr, "-append only allowed with -kernel option\n");
5644 exit(1);
5645 }
5646
5647 if (!linux_boot && initrd_filename != NULL) {
5648 fprintf(stderr, "-initrd only allowed with -kernel option\n");
5649 exit(1);
5650 }
5651
ths96d30e42007-01-07 20:42:14 +00005652 /* boot to floppy or the default cd if no hard disk defined yet */
j_mayer28c5af52007-11-11 01:50:45 +00005653 if (!boot_devices[0]) {
thse4bcb142007-12-02 04:51:10 +00005654 boot_devices = "cad";
ths96d30e42007-01-07 20:42:14 +00005655 }
bellardb118d612003-06-30 23:36:21 +00005656 setvbuf(stdout, NULL, _IOLBF, 0);
ths3b46e622007-09-17 08:09:54 +00005657
pbrook634fce92006-07-15 17:40:09 +00005658 init_timers();
aliguori7183b4b2008-11-05 20:40:18 +00005659 if (init_timer_alarm() < 0) {
5660 fprintf(stderr, "could not initialize alarm timer\n");
5661 exit(1);
5662 }
pbrook2e70f6e2008-06-29 01:03:05 +00005663 if (use_icount && icount_time_shift < 0) {
5664 use_icount = 2;
5665 /* 125MIPS seems a reasonable initial guess at the guest speed.
5666 It will be corrected fairly quickly anyway. */
5667 icount_time_shift = 3;
5668 init_icount_adjust();
5669 }
pbrook634fce92006-07-15 17:40:09 +00005670
bellardfd1dff42006-02-01 21:29:26 +00005671#ifdef _WIN32
5672 socket_init();
5673#endif
5674
bellard7c9d8e02005-11-15 22:16:05 +00005675 /* init network clients */
5676 if (nb_net_clients == 0) {
5677 /* if no clients, we use a default config */
aliguorif441b282008-08-28 20:05:14 +00005678 net_clients[nb_net_clients++] = "nic";
5679#ifdef CONFIG_SLIRP
5680 net_clients[nb_net_clients++] = "user";
5681#endif
bellardc20709a2004-04-21 23:27:19 +00005682 }
5683
bellard7c9d8e02005-11-15 22:16:05 +00005684 for(i = 0;i < nb_net_clients; i++) {
balrog9ad97e62008-07-29 13:16:31 +00005685 if (net_client_parse(net_clients[i]) < 0)
bellard7c9d8e02005-11-15 22:16:05 +00005686 exit(1);
bellard702c6512004-04-02 21:21:32 +00005687 }
bellardf1510b22003-06-25 00:07:40 +00005688
Glauber Costa406c8df2009-06-17 09:05:30 -04005689 net_boot = (boot_devices_bitmap >> ('n' - 'a')) & 0xF;
5690 net_set_boot_mask(net_boot);
5691
5692 net_client_check();
thseec85c22007-01-05 17:41:07 +00005693
balrogdc72ac12008-11-09 00:04:26 +00005694 /* init the bluetooth world */
5695 for (i = 0; i < nb_bt_opts; i++)
5696 if (bt_parse(bt_opts[i]))
5697 exit(1);
5698
bellard0824d6f2003-06-24 13:42:40 +00005699 /* init the memory */
pbrook94a6b542009-04-11 17:15:54 +00005700 if (ram_size == 0)
5701 ram_size = DEFAULT_RAM_SIZE * 1024 * 1024;
balrog7fb4fdc2008-04-24 17:59:27 +00005702
blueswir1640f42e2009-04-19 10:18:01 +00005703#ifdef CONFIG_KQEMU
pbrook94a6b542009-04-11 17:15:54 +00005704 /* FIXME: This is a nasty hack because kqemu can't cope with dynamic
5705 guest ram allocation. It needs to go away. */
5706 if (kqemu_allowed) {
Paul Brook4cfce482009-05-13 18:08:17 +01005707 kqemu_phys_ram_size = ram_size + 8 * 1024 * 1024 + 4 * 1024 * 1024;
pbrook94a6b542009-04-11 17:15:54 +00005708 kqemu_phys_ram_base = qemu_vmalloc(kqemu_phys_ram_size);
5709 if (!kqemu_phys_ram_base) {
5710 fprintf(stderr, "Could not allocate physical memory\n");
5711 exit(1);
5712 }
balrog7fb4fdc2008-04-24 17:59:27 +00005713 }
pbrook94a6b542009-04-11 17:15:54 +00005714#endif
bellard0824d6f2003-06-24 13:42:40 +00005715
bellard26a5f132008-05-28 12:30:31 +00005716 /* init the dynamic translator */
5717 cpu_exec_init_all(tb_size * 1024 * 1024);
5718
bellard5905b2e2004-08-01 21:53:26 +00005719 bdrv_init();
thse4bcb142007-12-02 04:51:10 +00005720
5721 /* we always create the cdrom drive, even if no disk is there */
5722
5723 if (nb_drives_opt < MAX_DRIVES)
balrog609497a2008-01-14 02:56:53 +00005724 drive_add(NULL, CDROM_ALIAS);
thse4bcb142007-12-02 04:51:10 +00005725
balrog9d413d12007-12-04 00:10:34 +00005726 /* we always create at least one floppy */
thse4bcb142007-12-02 04:51:10 +00005727
5728 if (nb_drives_opt < MAX_DRIVES)
balrog609497a2008-01-14 02:56:53 +00005729 drive_add(NULL, FD_ALIAS, 0);
bellardc4b1fcc2004-03-14 21:44:30 +00005730
balrog9d413d12007-12-04 00:10:34 +00005731 /* we always create one sd slot, even if no card is in it */
5732
5733 if (nb_drives_opt < MAX_DRIVES)
balrog609497a2008-01-14 02:56:53 +00005734 drive_add(NULL, SD_ALIAS);
balrog9d413d12007-12-04 00:10:34 +00005735
ths96d30e42007-01-07 20:42:14 +00005736 /* open the virtual block devices */
bellardc4b1fcc2004-03-14 21:44:30 +00005737
thse4bcb142007-12-02 04:51:10 +00005738 for(i = 0; i < nb_drives_opt; i++)
balrog609497a2008-01-14 02:56:53 +00005739 if (drive_init(&drives_opt[i], snapshot, machine) == -1)
thse4bcb142007-12-02 04:51:10 +00005740 exit(1);
balrog3e3d5812007-04-30 02:09:25 +00005741
bellardc88676f2006-08-06 13:36:11 +00005742 register_savevm("timer", 0, 2, timer_save, timer_load, NULL);
aliguori475e4272008-10-06 20:21:51 +00005743 register_savevm_live("ram", 0, 3, ram_save_live, NULL, ram_load, NULL);
bellard8a7ddc32004-03-31 19:00:16 +00005744
aliguori3023f3322009-01-16 19:04:14 +00005745#ifndef _WIN32
5746 /* must be after terminal init, SDL library changes signal handlers */
Jan Kiszka7c3370d2009-05-08 12:34:17 +02005747 sighandler_setup();
aliguori3023f3322009-01-16 19:04:14 +00005748#endif
5749
5750 /* Maintain compatibility with multiple stdio monitors */
5751 if (!strcmp(monitor_device,"stdio")) {
5752 for (i = 0; i < MAX_SERIAL_PORTS; i++) {
5753 const char *devname = serial_devices[i];
5754 if (devname && !strcmp(devname,"mon:stdio")) {
5755 monitor_device = NULL;
5756 break;
5757 } else if (devname && !strcmp(devname,"stdio")) {
5758 monitor_device = NULL;
5759 serial_devices[i] = "mon:stdio";
5760 break;
5761 }
5762 }
5763 }
5764
aliguori268a3622009-04-21 22:30:27 +00005765 if (nb_numa_nodes > 0) {
5766 int i;
5767
5768 if (nb_numa_nodes > smp_cpus) {
5769 nb_numa_nodes = smp_cpus;
5770 }
5771
5772 /* If no memory size if given for any node, assume the default case
5773 * and distribute the available memory equally across all nodes
5774 */
5775 for (i = 0; i < nb_numa_nodes; i++) {
5776 if (node_mem[i] != 0)
5777 break;
5778 }
5779 if (i == nb_numa_nodes) {
5780 uint64_t usedmem = 0;
5781
5782 /* On Linux, the each node's border has to be 8MB aligned,
5783 * the final node gets the rest.
5784 */
5785 for (i = 0; i < nb_numa_nodes - 1; i++) {
5786 node_mem[i] = (ram_size / nb_numa_nodes) & ~((1 << 23UL) - 1);
5787 usedmem += node_mem[i];
5788 }
5789 node_mem[i] = ram_size - usedmem;
5790 }
5791
5792 for (i = 0; i < nb_numa_nodes; i++) {
5793 if (node_cpumask[i] != 0)
5794 break;
5795 }
5796 /* assigning the VCPUs round-robin is easier to implement, guest OSes
5797 * must cope with this anyway, because there are BIOSes out there in
5798 * real machines which also use this scheme.
5799 */
5800 if (i == nb_numa_nodes) {
5801 for (i = 0; i < smp_cpus; i++) {
5802 node_cpumask[i % nb_numa_nodes] |= 1 << i;
5803 }
5804 }
5805 }
5806
aliguori3023f3322009-01-16 19:04:14 +00005807 if (kvm_enabled()) {
5808 int ret;
5809
5810 ret = kvm_init(smp_cpus);
5811 if (ret < 0) {
5812 fprintf(stderr, "failed to initialize KVM\n");
5813 exit(1);
5814 }
5815 }
5816
aliguori4c621802009-01-16 21:48:20 +00005817 if (monitor_device) {
aurel32ceecf1d2009-01-18 14:08:04 +00005818 monitor_hd = qemu_chr_open("monitor", monitor_device, NULL);
aliguori4c621802009-01-16 21:48:20 +00005819 if (!monitor_hd) {
5820 fprintf(stderr, "qemu: could not open monitor device '%s'\n", monitor_device);
5821 exit(1);
5822 }
5823 }
5824
aliguori2796dae2009-01-16 20:23:27 +00005825 for(i = 0; i < MAX_SERIAL_PORTS; i++) {
5826 const char *devname = serial_devices[i];
5827 if (devname && strcmp(devname, "none")) {
5828 char label[32];
5829 snprintf(label, sizeof(label), "serial%d", i);
aurel32ceecf1d2009-01-18 14:08:04 +00005830 serial_hds[i] = qemu_chr_open(label, devname, NULL);
aliguori2796dae2009-01-16 20:23:27 +00005831 if (!serial_hds[i]) {
5832 fprintf(stderr, "qemu: could not open serial device '%s'\n",
5833 devname);
5834 exit(1);
5835 }
5836 }
5837 }
5838
5839 for(i = 0; i < MAX_PARALLEL_PORTS; i++) {
5840 const char *devname = parallel_devices[i];
5841 if (devname && strcmp(devname, "none")) {
5842 char label[32];
5843 snprintf(label, sizeof(label), "parallel%d", i);
aurel32ceecf1d2009-01-18 14:08:04 +00005844 parallel_hds[i] = qemu_chr_open(label, devname, NULL);
aliguori2796dae2009-01-16 20:23:27 +00005845 if (!parallel_hds[i]) {
5846 fprintf(stderr, "qemu: could not open parallel device '%s'\n",
5847 devname);
5848 exit(1);
5849 }
5850 }
5851 }
5852
5853 for(i = 0; i < MAX_VIRTIO_CONSOLES; i++) {
5854 const char *devname = virtio_consoles[i];
5855 if (devname && strcmp(devname, "none")) {
5856 char label[32];
5857 snprintf(label, sizeof(label), "virtcon%d", i);
aurel32ceecf1d2009-01-18 14:08:04 +00005858 virtcon_hds[i] = qemu_chr_open(label, devname, NULL);
aliguori2796dae2009-01-16 20:23:27 +00005859 if (!virtcon_hds[i]) {
5860 fprintf(stderr, "qemu: could not open virtio console '%s'\n",
5861 devname);
5862 exit(1);
5863 }
5864 }
5865 }
5866
Paul Brookaae94602009-05-14 22:35:06 +01005867 module_call_init(MODULE_INIT_DEVICE);
5868
Paul Brookfbe1b592009-05-13 17:56:25 +01005869 machine->init(ram_size, boot_devices,
aliguori3023f3322009-01-16 19:04:14 +00005870 kernel_filename, kernel_cmdline, initrd_filename, cpu_model);
5871
aliguori268a3622009-04-21 22:30:27 +00005872
5873 for (env = first_cpu; env != NULL; env = env->next_cpu) {
5874 for (i = 0; i < nb_numa_nodes; i++) {
5875 if (node_cpumask[i] & (1 << env->cpu_index)) {
5876 env->numa_node = i;
5877 }
5878 }
5879 }
5880
aliguori6f338c32009-02-11 15:21:54 +00005881 current_machine = machine;
5882
aliguori3023f3322009-01-16 19:04:14 +00005883 /* init USB devices */
5884 if (usb_enabled) {
5885 for(i = 0; i < usb_devices_index; i++) {
aliguoric0f4ce72009-03-05 23:01:01 +00005886 if (usb_device_add(usb_devices[i], 0) < 0) {
aliguori3023f3322009-01-16 19:04:14 +00005887 fprintf(stderr, "Warning: could not add USB device %s\n",
5888 usb_devices[i]);
5889 }
5890 }
5891 }
5892
aliguori8f391ab2009-01-19 16:34:10 +00005893 if (!display_state)
5894 dumb_display_init();
aliguori3023f3322009-01-16 19:04:14 +00005895 /* just use the first displaystate for the moment */
5896 ds = display_state;
Anthony Liguori993fbfd2009-05-21 16:54:00 -05005897
5898 if (display_type == DT_DEFAULT) {
Anthony Liguorif92f8af2009-05-20 13:01:02 -05005899#if defined(CONFIG_SDL) || defined(CONFIG_COCOA)
Anthony Liguori993fbfd2009-05-21 16:54:00 -05005900 display_type = DT_SDL;
5901#else
5902 display_type = DT_VNC;
5903 vnc_display = "localhost:0,to=99";
5904 show_vnc_port = 1;
5905#endif
5906 }
5907
5908
5909 switch (display_type) {
5910 case DT_NOGRAPHIC:
5911 break;
5912#if defined(CONFIG_CURSES)
5913 case DT_CURSES:
5914 curses_display_init(ds, full_screen);
5915 break;
5916#endif
bellard5b0753e2005-03-01 21:37:28 +00005917#if defined(CONFIG_SDL)
Anthony Liguori993fbfd2009-05-21 16:54:00 -05005918 case DT_SDL:
5919 sdl_display_init(ds, full_screen, no_frame);
5920 break;
bellard5b0753e2005-03-01 21:37:28 +00005921#elif defined(CONFIG_COCOA)
Anthony Liguori993fbfd2009-05-21 16:54:00 -05005922 case DT_SDL:
5923 cocoa_display_init(ds, full_screen);
5924 break;
bellard313aa562003-08-10 21:52:11 +00005925#endif
Anthony Liguori993fbfd2009-05-21 16:54:00 -05005926 case DT_VNC:
5927 vnc_display_init(ds);
5928 if (vnc_display_open(ds, vnc_display) < 0)
5929 exit(1);
Anthony Liguorif92f8af2009-05-20 13:01:02 -05005930
Anthony Liguori993fbfd2009-05-21 16:54:00 -05005931 if (show_vnc_port) {
5932 printf("VNC server running on `%s'\n", vnc_display_local_addr(ds));
Anthony Liguorif92f8af2009-05-20 13:01:02 -05005933 }
Anthony Liguori993fbfd2009-05-21 16:54:00 -05005934 break;
5935 default:
5936 break;
bellard313aa562003-08-10 21:52:11 +00005937 }
aliguori7d957bd2009-01-15 22:14:11 +00005938 dpy_resize(ds);
aliguori5b08fc12008-08-21 20:08:03 +00005939
aliguori3023f3322009-01-16 19:04:14 +00005940 dcl = ds->listeners;
5941 while (dcl != NULL) {
5942 if (dcl->dpy_refresh != NULL) {
5943 ds->gui_timer = qemu_new_timer(rt_clock, gui_update, ds);
5944 qemu_mod_timer(ds->gui_timer, qemu_get_clock(rt_clock));
ths20d8a3e2007-02-18 17:04:49 +00005945 }
aliguori3023f3322009-01-16 19:04:14 +00005946 dcl = dcl->next;
bellard82c643f2004-07-14 17:28:13 +00005947 }
aliguori3023f3322009-01-16 19:04:14 +00005948
Anthony Liguori993fbfd2009-05-21 16:54:00 -05005949 if (display_type == DT_NOGRAPHIC || display_type == DT_VNC) {
blueswir19043b622009-01-21 19:28:13 +00005950 nographic_timer = qemu_new_timer(rt_clock, nographic_update, NULL);
5951 qemu_mod_timer(nographic_timer, qemu_get_clock(rt_clock));
5952 }
5953
aliguori2796dae2009-01-16 20:23:27 +00005954 text_consoles_set_display(display_state);
aliguori2970a6c2009-03-05 22:59:58 +00005955 qemu_chr_initial_reset();
aliguori2796dae2009-01-16 20:23:27 +00005956
aliguori4c621802009-01-16 21:48:20 +00005957 if (monitor_device && monitor_hd)
aliguoricde76ee2009-03-05 23:01:51 +00005958 monitor_init(monitor_hd, MONITOR_USE_READLINE | MONITOR_IS_DEFAULT);
bellard82c643f2004-07-14 17:28:13 +00005959
bellard8d11df92004-08-24 21:13:40 +00005960 for(i = 0; i < MAX_SERIAL_PORTS; i++) {
bellardc03b0f02006-09-03 14:10:53 +00005961 const char *devname = serial_devices[i];
pbrookfd5f3932008-03-26 20:55:43 +00005962 if (devname && strcmp(devname, "none")) {
thsaf3a9032007-07-11 23:14:59 +00005963 if (strstart(devname, "vc", 0))
bellard7ba12602006-07-14 20:26:42 +00005964 qemu_chr_printf(serial_hds[i], "serial%d console\r\n", i);
bellard8d11df92004-08-24 21:13:40 +00005965 }
bellard82c643f2004-07-14 17:28:13 +00005966 }
bellard82c643f2004-07-14 17:28:13 +00005967
bellard6508fe52005-01-15 12:02:56 +00005968 for(i = 0; i < MAX_PARALLEL_PORTS; i++) {
bellardc03b0f02006-09-03 14:10:53 +00005969 const char *devname = parallel_devices[i];
pbrookfd5f3932008-03-26 20:55:43 +00005970 if (devname && strcmp(devname, "none")) {
thsaf3a9032007-07-11 23:14:59 +00005971 if (strstart(devname, "vc", 0))
bellard7ba12602006-07-14 20:26:42 +00005972 qemu_chr_printf(parallel_hds[i], "parallel%d console\r\n", i);
bellard6508fe52005-01-15 12:02:56 +00005973 }
5974 }
5975
aliguori9ede2fd2009-01-15 20:05:25 +00005976 for(i = 0; i < MAX_VIRTIO_CONSOLES; i++) {
5977 const char *devname = virtio_consoles[i];
aliguori2796dae2009-01-16 20:23:27 +00005978 if (virtcon_hds[i] && devname) {
aliguori9ede2fd2009-01-15 20:05:25 +00005979 if (strstart(devname, "vc", 0))
5980 qemu_chr_printf(virtcon_hds[i], "virtio console%d\r\n", i);
5981 }
5982 }
5983
aliguori59030a82009-04-05 18:43:41 +00005984 if (gdbstub_dev && gdbserver_start(gdbstub_dev) < 0) {
5985 fprintf(stderr, "qemu: could not open gdbserver on device '%s'\n",
5986 gdbstub_dev);
5987 exit(1);
balrog45669e02007-07-02 13:20:17 +00005988 }
balrog45669e02007-07-02 13:20:17 +00005989
bellardd63d3072004-10-03 13:29:03 +00005990 if (loadvm)
aliguori376253e2009-03-05 23:01:23 +00005991 do_loadvm(cur_mon, loadvm);
bellardd63d3072004-10-03 13:29:03 +00005992
aliguori5bb79102008-10-13 03:12:02 +00005993 if (incoming) {
5994 autostart = 0; /* fixme how to deal with -daemonize */
5995 qemu_start_incoming_migration(incoming);
5996 }
5997
aliguoric0f4ce72009-03-05 23:01:01 +00005998 if (autostart)
5999 vm_start();
thsffd843b2006-12-21 19:46:43 +00006000
blueswir1b9e82a52009-04-05 18:03:31 +00006001#ifndef _WIN32
ths71e3ceb2006-12-22 02:11:31 +00006002 if (daemonize) {
6003 uint8_t status = 0;
6004 ssize_t len;
ths71e3ceb2006-12-22 02:11:31 +00006005
6006 again1:
6007 len = write(fds[1], &status, 1);
6008 if (len == -1 && (errno == EINTR))
6009 goto again1;
6010
6011 if (len != 1)
6012 exit(1);
6013
aliguoribd54b862008-07-23 00:58:33 +00006014 chdir("/");
balrogaeb30be2007-07-02 15:03:13 +00006015 TFR(fd = open("/dev/null", O_RDWR));
ths71e3ceb2006-12-22 02:11:31 +00006016 if (fd == -1)
6017 exit(1);
aliguori08585322009-02-27 22:09:45 +00006018 }
ths71e3ceb2006-12-22 02:11:31 +00006019
aliguori08585322009-02-27 22:09:45 +00006020 if (run_as) {
6021 pwd = getpwnam(run_as);
6022 if (!pwd) {
6023 fprintf(stderr, "User \"%s\" doesn't exist\n", run_as);
6024 exit(1);
6025 }
6026 }
ths71e3ceb2006-12-22 02:11:31 +00006027
aliguori08585322009-02-27 22:09:45 +00006028 if (chroot_dir) {
6029 if (chroot(chroot_dir) < 0) {
6030 fprintf(stderr, "chroot failed\n");
6031 exit(1);
6032 }
6033 chdir("/");
6034 }
6035
6036 if (run_as) {
6037 if (setgid(pwd->pw_gid) < 0) {
6038 fprintf(stderr, "Failed to setgid(%d)\n", pwd->pw_gid);
6039 exit(1);
6040 }
6041 if (setuid(pwd->pw_uid) < 0) {
6042 fprintf(stderr, "Failed to setuid(%d)\n", pwd->pw_uid);
6043 exit(1);
6044 }
6045 if (setuid(0) != -1) {
6046 fprintf(stderr, "Dropping privileges failed\n");
6047 exit(1);
6048 }
6049 }
aliguori08585322009-02-27 22:09:45 +00006050
6051 if (daemonize) {
6052 dup2(fd, 0);
6053 dup2(fd, 1);
6054 dup2(fd, 2);
6055
6056 close(fd);
ths71e3ceb2006-12-22 02:11:31 +00006057 }
blueswir1b9e82a52009-04-05 18:03:31 +00006058#endif
ths71e3ceb2006-12-22 02:11:31 +00006059
bellard8a7ddc32004-03-31 19:00:16 +00006060 main_loop();
bellard40c3bac2004-04-04 12:56:28 +00006061 quit_timers();
aliguori63a01ef2008-10-31 19:10:00 +00006062 net_cleanup();
thsb46a8902007-10-21 23:20:45 +00006063
bellard0824d6f2003-06-24 13:42:40 +00006064 return 0;
6065}