Adds null check for DisplayStatus (Stefano Stabellini)
[qemu] / vl.c
1 /*
2  * QEMU System Emulator
3  *
4  * Copyright (c) 2003-2008 Fabrice Bellard
5  *
6  * 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.
23  */
24 #include "hw/hw.h"
25 #include "hw/boards.h"
26 #include "hw/usb.h"
27 #include "hw/pcmcia.h"
28 #include "hw/pc.h"
29 #include "hw/audiodev.h"
30 #include "hw/isa.h"
31 #include "hw/baum.h"
32 #include "hw/bt.h"
33 #include "net.h"
34 #include "console.h"
35 #include "sysemu.h"
36 #include "gdbstub.h"
37 #include "qemu-timer.h"
38 #include "qemu-char.h"
39 #include "cache-utils.h"
40 #include "block.h"
41 #include "audio/audio.h"
42 #include "migration.h"
43 #include "kvm.h"
44 #include "balloon.h"
45
46 #include <unistd.h>
47 #include <fcntl.h>
48 #include <signal.h>
49 #include <time.h>
50 #include <errno.h>
51 #include <sys/time.h>
52 #include <zlib.h>
53
54 #ifndef _WIN32
55 #include <sys/times.h>
56 #include <sys/wait.h>
57 #include <termios.h>
58 #include <sys/mman.h>
59 #include <sys/ioctl.h>
60 #include <sys/resource.h>
61 #include <sys/socket.h>
62 #include <netinet/in.h>
63 #include <net/if.h>
64 #if defined(__NetBSD__)
65 #include <net/if_tap.h>
66 #endif
67 #ifdef __linux__
68 #include <linux/if_tun.h>
69 #endif
70 #include <arpa/inet.h>
71 #include <dirent.h>
72 #include <netdb.h>
73 #include <sys/select.h>
74 #ifdef _BSD
75 #include <sys/stat.h>
76 #ifdef __FreeBSD__
77 #include <libutil.h>
78 #else
79 #include <util.h>
80 #endif
81 #elif defined (__GLIBC__) && defined (__FreeBSD_kernel__)
82 #include <freebsd/stdlib.h>
83 #else
84 #ifdef __linux__
85 #include <pty.h>
86 #include <malloc.h>
87 #include <linux/rtc.h>
88
89 /* For the benefit of older linux systems which don't supply it,
90    we use a local copy of hpet.h. */
91 /* #include <linux/hpet.h> */
92 #include "hpet.h"
93
94 #include <linux/ppdev.h>
95 #include <linux/parport.h>
96 #endif
97 #ifdef __sun__
98 #include <sys/stat.h>
99 #include <sys/ethernet.h>
100 #include <sys/sockio.h>
101 #include <netinet/arp.h>
102 #include <netinet/in.h>
103 #include <netinet/in_systm.h>
104 #include <netinet/ip.h>
105 #include <netinet/ip_icmp.h> // must come after ip.h
106 #include <netinet/udp.h>
107 #include <netinet/tcp.h>
108 #include <net/if.h>
109 #include <syslog.h>
110 #include <stropts.h>
111 #endif
112 #endif
113 #endif
114
115 #include "qemu_socket.h"
116
117 #if defined(CONFIG_SLIRP)
118 #include "libslirp.h"
119 #endif
120
121 #if defined(__OpenBSD__)
122 #include <util.h>
123 #endif
124
125 #if defined(CONFIG_VDE)
126 #include <libvdeplug.h>
127 #endif
128
129 #ifdef _WIN32
130 #include <malloc.h>
131 #include <sys/timeb.h>
132 #include <mmsystem.h>
133 #define getopt_long_only getopt_long
134 #define memalign(align, size) malloc(size)
135 #endif
136
137 #ifdef CONFIG_SDL
138 #ifdef __APPLE__
139 #include <SDL/SDL.h>
140 #endif
141 #endif /* CONFIG_SDL */
142
143 #ifdef CONFIG_COCOA
144 #undef main
145 #define main qemu_main
146 #endif /* CONFIG_COCOA */
147
148 #include "disas.h"
149
150 #include "exec-all.h"
151
152 //#define DEBUG_UNUSED_IOPORT
153 //#define DEBUG_IOPORT
154 //#define DEBUG_NET
155 //#define DEBUG_SLIRP
156
157
158 #ifdef DEBUG_IOPORT
159 #  define LOG_IOPORT(...) qemu_log_mask(CPU_LOG_IOPORT, ## __VA_ARGS__)
160 #else
161 #  define LOG_IOPORT(...) do { } while (0)
162 #endif
163
164 #ifdef TARGET_PPC
165 #define DEFAULT_RAM_SIZE 144
166 #else
167 #define DEFAULT_RAM_SIZE 128
168 #endif
169
170 /* Max number of USB devices that can be specified on the commandline.  */
171 #define MAX_USB_CMDLINE 8
172
173 /* Max number of bluetooth switches on the commandline.  */
174 #define MAX_BT_CMDLINE 10
175
176 /* XXX: use a two level table to limit memory usage */
177 #define MAX_IOPORTS 65536
178
179 const char *bios_dir = CONFIG_QEMU_SHAREDIR;
180 const char *bios_name = NULL;
181 static void *ioport_opaque[MAX_IOPORTS];
182 static IOPortReadFunc *ioport_read_table[3][MAX_IOPORTS];
183 static IOPortWriteFunc *ioport_write_table[3][MAX_IOPORTS];
184 /* Note: drives_table[MAX_DRIVES] is a dummy block driver if none available
185    to store the VM snapshots */
186 DriveInfo drives_table[MAX_DRIVES+1];
187 int nb_drives;
188 static int vga_ram_size;
189 enum vga_retrace_method vga_retrace_method = VGA_RETRACE_DUMB;
190 static DisplayState *display_state;
191 int nographic;
192 static int curses;
193 static int sdl;
194 const char* keyboard_layout = NULL;
195 int64_t ticks_per_sec;
196 ram_addr_t ram_size;
197 int nb_nics;
198 NICInfo nd_table[MAX_NICS];
199 int vm_running;
200 static int rtc_utc = 1;
201 static int rtc_date_offset = -1; /* -1 means no change */
202 int cirrus_vga_enabled = 1;
203 int std_vga_enabled = 0;
204 int vmsvga_enabled = 0;
205 #ifdef TARGET_SPARC
206 int graphic_width = 1024;
207 int graphic_height = 768;
208 int graphic_depth = 8;
209 #else
210 int graphic_width = 800;
211 int graphic_height = 600;
212 int graphic_depth = 15;
213 #endif
214 static int full_screen = 0;
215 #ifdef CONFIG_SDL
216 static int no_frame = 0;
217 #endif
218 int no_quit = 0;
219 CharDriverState *serial_hds[MAX_SERIAL_PORTS];
220 CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
221 CharDriverState *virtcon_hds[MAX_VIRTIO_CONSOLES];
222 #ifdef TARGET_I386
223 int win2k_install_hack = 0;
224 int rtc_td_hack = 0;
225 #endif
226 int usb_enabled = 0;
227 int smp_cpus = 1;
228 const char *vnc_display;
229 int acpi_enabled = 1;
230 int no_hpet = 0;
231 int fd_bootchk = 1;
232 int no_reboot = 0;
233 int no_shutdown = 0;
234 int cursor_hide = 1;
235 int graphic_rotate = 0;
236 int daemonize = 0;
237 const char *option_rom[MAX_OPTION_ROMS];
238 int nb_option_roms;
239 int semihosting_enabled = 0;
240 #ifdef TARGET_ARM
241 int old_param = 0;
242 #endif
243 const char *qemu_name;
244 int alt_grab = 0;
245 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
246 unsigned int nb_prom_envs = 0;
247 const char *prom_envs[MAX_PROM_ENVS];
248 #endif
249 static int nb_drives_opt;
250 static struct drive_opt {
251     const char *file;
252     char opt[1024];
253 } drives_opt[MAX_DRIVES];
254
255 static CPUState *cur_cpu;
256 static CPUState *next_cpu;
257 static int event_pending = 1;
258 /* Conversion factor from emulated instructions to virtual clock ticks.  */
259 static int icount_time_shift;
260 /* Arbitrarily pick 1MIPS as the minimum allowable speed.  */
261 #define MAX_ICOUNT_SHIFT 10
262 /* Compensate for varying guest execution speed.  */
263 static int64_t qemu_icount_bias;
264 static QEMUTimer *icount_rt_timer;
265 static QEMUTimer *icount_vm_timer;
266
267 uint8_t qemu_uuid[16];
268
269 /***********************************************************/
270 /* x86 ISA bus support */
271
272 target_phys_addr_t isa_mem_base = 0;
273 PicState2 *isa_pic;
274
275 static IOPortReadFunc default_ioport_readb, default_ioport_readw, default_ioport_readl;
276 static IOPortWriteFunc default_ioport_writeb, default_ioport_writew, default_ioport_writel;
277
278 static uint32_t ioport_read(int index, uint32_t address)
279 {
280     static IOPortReadFunc *default_func[3] = {
281         default_ioport_readb,
282         default_ioport_readw,
283         default_ioport_readl
284     };
285     IOPortReadFunc *func = ioport_read_table[index][address];
286     if (!func)
287         func = default_func[index];
288     return func(ioport_opaque[address], address);
289 }
290
291 static void ioport_write(int index, uint32_t address, uint32_t data)
292 {
293     static IOPortWriteFunc *default_func[3] = {
294         default_ioport_writeb,
295         default_ioport_writew,
296         default_ioport_writel
297     };
298     IOPortWriteFunc *func = ioport_write_table[index][address];
299     if (!func)
300         func = default_func[index];
301     func(ioport_opaque[address], address, data);
302 }
303
304 static uint32_t default_ioport_readb(void *opaque, uint32_t address)
305 {
306 #ifdef DEBUG_UNUSED_IOPORT
307     fprintf(stderr, "unused inb: port=0x%04x\n", address);
308 #endif
309     return 0xff;
310 }
311
312 static void default_ioport_writeb(void *opaque, uint32_t address, uint32_t data)
313 {
314 #ifdef DEBUG_UNUSED_IOPORT
315     fprintf(stderr, "unused outb: port=0x%04x data=0x%02x\n", address, data);
316 #endif
317 }
318
319 /* default is to make two byte accesses */
320 static uint32_t default_ioport_readw(void *opaque, uint32_t address)
321 {
322     uint32_t data;
323     data = ioport_read(0, address);
324     address = (address + 1) & (MAX_IOPORTS - 1);
325     data |= ioport_read(0, address) << 8;
326     return data;
327 }
328
329 static void default_ioport_writew(void *opaque, uint32_t address, uint32_t data)
330 {
331     ioport_write(0, address, data & 0xff);
332     address = (address + 1) & (MAX_IOPORTS - 1);
333     ioport_write(0, address, (data >> 8) & 0xff);
334 }
335
336 static uint32_t default_ioport_readl(void *opaque, uint32_t address)
337 {
338 #ifdef DEBUG_UNUSED_IOPORT
339     fprintf(stderr, "unused inl: port=0x%04x\n", address);
340 #endif
341     return 0xffffffff;
342 }
343
344 static void default_ioport_writel(void *opaque, uint32_t address, uint32_t data)
345 {
346 #ifdef DEBUG_UNUSED_IOPORT
347     fprintf(stderr, "unused outl: port=0x%04x data=0x%02x\n", address, data);
348 #endif
349 }
350
351 /* size is the word size in byte */
352 int register_ioport_read(int start, int length, int size,
353                          IOPortReadFunc *func, void *opaque)
354 {
355     int i, bsize;
356
357     if (size == 1) {
358         bsize = 0;
359     } else if (size == 2) {
360         bsize = 1;
361     } else if (size == 4) {
362         bsize = 2;
363     } else {
364         hw_error("register_ioport_read: invalid size");
365         return -1;
366     }
367     for(i = start; i < start + length; i += size) {
368         ioport_read_table[bsize][i] = func;
369         if (ioport_opaque[i] != NULL && ioport_opaque[i] != opaque)
370             hw_error("register_ioport_read: invalid opaque");
371         ioport_opaque[i] = opaque;
372     }
373     return 0;
374 }
375
376 /* size is the word size in byte */
377 int register_ioport_write(int start, int length, int size,
378                           IOPortWriteFunc *func, void *opaque)
379 {
380     int i, bsize;
381
382     if (size == 1) {
383         bsize = 0;
384     } else if (size == 2) {
385         bsize = 1;
386     } else if (size == 4) {
387         bsize = 2;
388     } else {
389         hw_error("register_ioport_write: invalid size");
390         return -1;
391     }
392     for(i = start; i < start + length; i += size) {
393         ioport_write_table[bsize][i] = func;
394         if (ioport_opaque[i] != NULL && ioport_opaque[i] != opaque)
395             hw_error("register_ioport_write: invalid opaque");
396         ioport_opaque[i] = opaque;
397     }
398     return 0;
399 }
400
401 void isa_unassign_ioport(int start, int length)
402 {
403     int i;
404
405     for(i = start; i < start + length; i++) {
406         ioport_read_table[0][i] = default_ioport_readb;
407         ioport_read_table[1][i] = default_ioport_readw;
408         ioport_read_table[2][i] = default_ioport_readl;
409
410         ioport_write_table[0][i] = default_ioport_writeb;
411         ioport_write_table[1][i] = default_ioport_writew;
412         ioport_write_table[2][i] = default_ioport_writel;
413     }
414 }
415
416 /***********************************************************/
417
418 void cpu_outb(CPUState *env, int addr, int val)
419 {
420     LOG_IOPORT("outb: %04x %02x\n", addr, val);
421     ioport_write(0, addr, val);
422 #ifdef USE_KQEMU
423     if (env)
424         env->last_io_time = cpu_get_time_fast();
425 #endif
426 }
427
428 void cpu_outw(CPUState *env, int addr, int val)
429 {
430     LOG_IOPORT("outw: %04x %04x\n", addr, val);
431     ioport_write(1, addr, val);
432 #ifdef USE_KQEMU
433     if (env)
434         env->last_io_time = cpu_get_time_fast();
435 #endif
436 }
437
438 void cpu_outl(CPUState *env, int addr, int val)
439 {
440     LOG_IOPORT("outl: %04x %08x\n", addr, val);
441     ioport_write(2, addr, val);
442 #ifdef USE_KQEMU
443     if (env)
444         env->last_io_time = cpu_get_time_fast();
445 #endif
446 }
447
448 int cpu_inb(CPUState *env, int addr)
449 {
450     int val;
451     val = ioport_read(0, addr);
452     LOG_IOPORT("inb : %04x %02x\n", addr, val);
453 #ifdef USE_KQEMU
454     if (env)
455         env->last_io_time = cpu_get_time_fast();
456 #endif
457     return val;
458 }
459
460 int cpu_inw(CPUState *env, int addr)
461 {
462     int val;
463     val = ioport_read(1, addr);
464     LOG_IOPORT("inw : %04x %04x\n", addr, val);
465 #ifdef USE_KQEMU
466     if (env)
467         env->last_io_time = cpu_get_time_fast();
468 #endif
469     return val;
470 }
471
472 int cpu_inl(CPUState *env, int addr)
473 {
474     int val;
475     val = ioport_read(2, addr);
476     LOG_IOPORT("inl : %04x %08x\n", addr, val);
477 #ifdef USE_KQEMU
478     if (env)
479         env->last_io_time = cpu_get_time_fast();
480 #endif
481     return val;
482 }
483
484 /***********************************************************/
485 void hw_error(const char *fmt, ...)
486 {
487     va_list ap;
488     CPUState *env;
489
490     va_start(ap, fmt);
491     fprintf(stderr, "qemu: hardware error: ");
492     vfprintf(stderr, fmt, ap);
493     fprintf(stderr, "\n");
494     for(env = first_cpu; env != NULL; env = env->next_cpu) {
495         fprintf(stderr, "CPU #%d:\n", env->cpu_index);
496 #ifdef TARGET_I386
497         cpu_dump_state(env, stderr, fprintf, X86_DUMP_FPU);
498 #else
499         cpu_dump_state(env, stderr, fprintf, 0);
500 #endif
501     }
502     va_end(ap);
503     abort();
504 }
505  
506 /***************/
507 /* ballooning */
508
509 static QEMUBalloonEvent *qemu_balloon_event;
510 void *qemu_balloon_event_opaque;
511
512 void qemu_add_balloon_handler(QEMUBalloonEvent *func, void *opaque)
513 {
514     qemu_balloon_event = func;
515     qemu_balloon_event_opaque = opaque;
516 }
517
518 void qemu_balloon(ram_addr_t target)
519 {
520     if (qemu_balloon_event)
521         qemu_balloon_event(qemu_balloon_event_opaque, target);
522 }
523
524 ram_addr_t qemu_balloon_status(void)
525 {
526     if (qemu_balloon_event)
527         return qemu_balloon_event(qemu_balloon_event_opaque, 0);
528     return 0;
529 }
530
531 /***********************************************************/
532 /* keyboard/mouse */
533
534 static QEMUPutKBDEvent *qemu_put_kbd_event;
535 static void *qemu_put_kbd_event_opaque;
536 static QEMUPutMouseEntry *qemu_put_mouse_event_head;
537 static QEMUPutMouseEntry *qemu_put_mouse_event_current;
538
539 void qemu_add_kbd_event_handler(QEMUPutKBDEvent *func, void *opaque)
540 {
541     qemu_put_kbd_event_opaque = opaque;
542     qemu_put_kbd_event = func;
543 }
544
545 QEMUPutMouseEntry *qemu_add_mouse_event_handler(QEMUPutMouseEvent *func,
546                                                 void *opaque, int absolute,
547                                                 const char *name)
548 {
549     QEMUPutMouseEntry *s, *cursor;
550
551     s = qemu_mallocz(sizeof(QEMUPutMouseEntry));
552     if (!s)
553         return NULL;
554
555     s->qemu_put_mouse_event = func;
556     s->qemu_put_mouse_event_opaque = opaque;
557     s->qemu_put_mouse_event_absolute = absolute;
558     s->qemu_put_mouse_event_name = qemu_strdup(name);
559     s->next = NULL;
560
561     if (!qemu_put_mouse_event_head) {
562         qemu_put_mouse_event_head = qemu_put_mouse_event_current = s;
563         return s;
564     }
565
566     cursor = qemu_put_mouse_event_head;
567     while (cursor->next != NULL)
568         cursor = cursor->next;
569
570     cursor->next = s;
571     qemu_put_mouse_event_current = s;
572
573     return s;
574 }
575
576 void qemu_remove_mouse_event_handler(QEMUPutMouseEntry *entry)
577 {
578     QEMUPutMouseEntry *prev = NULL, *cursor;
579
580     if (!qemu_put_mouse_event_head || entry == NULL)
581         return;
582
583     cursor = qemu_put_mouse_event_head;
584     while (cursor != NULL && cursor != entry) {
585         prev = cursor;
586         cursor = cursor->next;
587     }
588
589     if (cursor == NULL) // does not exist or list empty
590         return;
591     else if (prev == NULL) { // entry is head
592         qemu_put_mouse_event_head = cursor->next;
593         if (qemu_put_mouse_event_current == entry)
594             qemu_put_mouse_event_current = cursor->next;
595         qemu_free(entry->qemu_put_mouse_event_name);
596         qemu_free(entry);
597         return;
598     }
599
600     prev->next = entry->next;
601
602     if (qemu_put_mouse_event_current == entry)
603         qemu_put_mouse_event_current = prev;
604
605     qemu_free(entry->qemu_put_mouse_event_name);
606     qemu_free(entry);
607 }
608
609 void kbd_put_keycode(int keycode)
610 {
611     if (qemu_put_kbd_event) {
612         qemu_put_kbd_event(qemu_put_kbd_event_opaque, keycode);
613     }
614 }
615
616 void kbd_mouse_event(int dx, int dy, int dz, int buttons_state)
617 {
618     QEMUPutMouseEvent *mouse_event;
619     void *mouse_event_opaque;
620     int width;
621
622     if (!qemu_put_mouse_event_current) {
623         return;
624     }
625
626     mouse_event =
627         qemu_put_mouse_event_current->qemu_put_mouse_event;
628     mouse_event_opaque =
629         qemu_put_mouse_event_current->qemu_put_mouse_event_opaque;
630
631     if (mouse_event) {
632         if (graphic_rotate) {
633             if (qemu_put_mouse_event_current->qemu_put_mouse_event_absolute)
634                 width = 0x7fff;
635             else
636                 width = graphic_width - 1;
637             mouse_event(mouse_event_opaque,
638                                  width - dy, dx, dz, buttons_state);
639         } else
640             mouse_event(mouse_event_opaque,
641                                  dx, dy, dz, buttons_state);
642     }
643 }
644
645 int kbd_mouse_is_absolute(void)
646 {
647     if (!qemu_put_mouse_event_current)
648         return 0;
649
650     return qemu_put_mouse_event_current->qemu_put_mouse_event_absolute;
651 }
652
653 void do_info_mice(void)
654 {
655     QEMUPutMouseEntry *cursor;
656     int index = 0;
657
658     if (!qemu_put_mouse_event_head) {
659         term_printf("No mouse devices connected\n");
660         return;
661     }
662
663     term_printf("Mouse devices available:\n");
664     cursor = qemu_put_mouse_event_head;
665     while (cursor != NULL) {
666         term_printf("%c Mouse #%d: %s\n",
667                     (cursor == qemu_put_mouse_event_current ? '*' : ' '),
668                     index, cursor->qemu_put_mouse_event_name);
669         index++;
670         cursor = cursor->next;
671     }
672 }
673
674 void do_mouse_set(int index)
675 {
676     QEMUPutMouseEntry *cursor;
677     int i = 0;
678
679     if (!qemu_put_mouse_event_head) {
680         term_printf("No mouse devices connected\n");
681         return;
682     }
683
684     cursor = qemu_put_mouse_event_head;
685     while (cursor != NULL && index != i) {
686         i++;
687         cursor = cursor->next;
688     }
689
690     if (cursor != NULL)
691         qemu_put_mouse_event_current = cursor;
692     else
693         term_printf("Mouse at given index not found\n");
694 }
695
696 /* compute with 96 bit intermediate result: (a*b)/c */
697 uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c)
698 {
699     union {
700         uint64_t ll;
701         struct {
702 #ifdef WORDS_BIGENDIAN
703             uint32_t high, low;
704 #else
705             uint32_t low, high;
706 #endif
707         } l;
708     } u, res;
709     uint64_t rl, rh;
710
711     u.ll = a;
712     rl = (uint64_t)u.l.low * (uint64_t)b;
713     rh = (uint64_t)u.l.high * (uint64_t)b;
714     rh += (rl >> 32);
715     res.l.high = rh / c;
716     res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c;
717     return res.ll;
718 }
719
720 /***********************************************************/
721 /* real time host monotonic timer */
722
723 #define QEMU_TIMER_BASE 1000000000LL
724
725 #ifdef WIN32
726
727 static int64_t clock_freq;
728
729 static void init_get_clock(void)
730 {
731     LARGE_INTEGER freq;
732     int ret;
733     ret = QueryPerformanceFrequency(&freq);
734     if (ret == 0) {
735         fprintf(stderr, "Could not calibrate ticks\n");
736         exit(1);
737     }
738     clock_freq = freq.QuadPart;
739 }
740
741 static int64_t get_clock(void)
742 {
743     LARGE_INTEGER ti;
744     QueryPerformanceCounter(&ti);
745     return muldiv64(ti.QuadPart, QEMU_TIMER_BASE, clock_freq);
746 }
747
748 #else
749
750 static int use_rt_clock;
751
752 static void init_get_clock(void)
753 {
754     use_rt_clock = 0;
755 #if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD_version >= 500000)
756     {
757         struct timespec ts;
758         if (clock_gettime(CLOCK_MONOTONIC, &ts) == 0) {
759             use_rt_clock = 1;
760         }
761     }
762 #endif
763 }
764
765 static int64_t get_clock(void)
766 {
767 #if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD_version >= 500000)
768     if (use_rt_clock) {
769         struct timespec ts;
770         clock_gettime(CLOCK_MONOTONIC, &ts);
771         return ts.tv_sec * 1000000000LL + ts.tv_nsec;
772     } else
773 #endif
774     {
775         /* XXX: using gettimeofday leads to problems if the date
776            changes, so it should be avoided. */
777         struct timeval tv;
778         gettimeofday(&tv, NULL);
779         return tv.tv_sec * 1000000000LL + (tv.tv_usec * 1000);
780     }
781 }
782 #endif
783
784 /* Return the virtual CPU time, based on the instruction counter.  */
785 static int64_t cpu_get_icount(void)
786 {
787     int64_t icount;
788     CPUState *env = cpu_single_env;;
789     icount = qemu_icount;
790     if (env) {
791         if (!can_do_io(env))
792             fprintf(stderr, "Bad clock read\n");
793         icount -= (env->icount_decr.u16.low + env->icount_extra);
794     }
795     return qemu_icount_bias + (icount << icount_time_shift);
796 }
797
798 /***********************************************************/
799 /* guest cycle counter */
800
801 static int64_t cpu_ticks_prev;
802 static int64_t cpu_ticks_offset;
803 static int64_t cpu_clock_offset;
804 static int cpu_ticks_enabled;
805
806 /* return the host CPU cycle counter and handle stop/restart */
807 int64_t cpu_get_ticks(void)
808 {
809     if (use_icount) {
810         return cpu_get_icount();
811     }
812     if (!cpu_ticks_enabled) {
813         return cpu_ticks_offset;
814     } else {
815         int64_t ticks;
816         ticks = cpu_get_real_ticks();
817         if (cpu_ticks_prev > ticks) {
818             /* Note: non increasing ticks may happen if the host uses
819                software suspend */
820             cpu_ticks_offset += cpu_ticks_prev - ticks;
821         }
822         cpu_ticks_prev = ticks;
823         return ticks + cpu_ticks_offset;
824     }
825 }
826
827 /* return the host CPU monotonic timer and handle stop/restart */
828 static int64_t cpu_get_clock(void)
829 {
830     int64_t ti;
831     if (!cpu_ticks_enabled) {
832         return cpu_clock_offset;
833     } else {
834         ti = get_clock();
835         return ti + cpu_clock_offset;
836     }
837 }
838
839 /* enable cpu_get_ticks() */
840 void cpu_enable_ticks(void)
841 {
842     if (!cpu_ticks_enabled) {
843         cpu_ticks_offset -= cpu_get_real_ticks();
844         cpu_clock_offset -= get_clock();
845         cpu_ticks_enabled = 1;
846     }
847 }
848
849 /* disable cpu_get_ticks() : the clock is stopped. You must not call
850    cpu_get_ticks() after that.  */
851 void cpu_disable_ticks(void)
852 {
853     if (cpu_ticks_enabled) {
854         cpu_ticks_offset = cpu_get_ticks();
855         cpu_clock_offset = cpu_get_clock();
856         cpu_ticks_enabled = 0;
857     }
858 }
859
860 /***********************************************************/
861 /* timers */
862
863 #define QEMU_TIMER_REALTIME 0
864 #define QEMU_TIMER_VIRTUAL  1
865
866 struct QEMUClock {
867     int type;
868     /* XXX: add frequency */
869 };
870
871 struct QEMUTimer {
872     QEMUClock *clock;
873     int64_t expire_time;
874     QEMUTimerCB *cb;
875     void *opaque;
876     struct QEMUTimer *next;
877 };
878
879 struct qemu_alarm_timer {
880     char const *name;
881     unsigned int flags;
882
883     int (*start)(struct qemu_alarm_timer *t);
884     void (*stop)(struct qemu_alarm_timer *t);
885     void (*rearm)(struct qemu_alarm_timer *t);
886     void *priv;
887 };
888
889 #define ALARM_FLAG_DYNTICKS  0x1
890 #define ALARM_FLAG_EXPIRED   0x2
891
892 static inline int alarm_has_dynticks(struct qemu_alarm_timer *t)
893 {
894     return t->flags & ALARM_FLAG_DYNTICKS;
895 }
896
897 static void qemu_rearm_alarm_timer(struct qemu_alarm_timer *t)
898 {
899     if (!alarm_has_dynticks(t))
900         return;
901
902     t->rearm(t);
903 }
904
905 /* TODO: MIN_TIMER_REARM_US should be optimized */
906 #define MIN_TIMER_REARM_US 250
907
908 static struct qemu_alarm_timer *alarm_timer;
909 #ifndef _WIN32
910 static int alarm_timer_rfd, alarm_timer_wfd;
911 #endif
912
913 #ifdef _WIN32
914
915 struct qemu_alarm_win32 {
916     MMRESULT timerId;
917     HANDLE host_alarm;
918     unsigned int period;
919 } alarm_win32_data = {0, NULL, -1};
920
921 static int win32_start_timer(struct qemu_alarm_timer *t);
922 static void win32_stop_timer(struct qemu_alarm_timer *t);
923 static void win32_rearm_timer(struct qemu_alarm_timer *t);
924
925 #else
926
927 static int unix_start_timer(struct qemu_alarm_timer *t);
928 static void unix_stop_timer(struct qemu_alarm_timer *t);
929
930 #ifdef __linux__
931
932 static int dynticks_start_timer(struct qemu_alarm_timer *t);
933 static void dynticks_stop_timer(struct qemu_alarm_timer *t);
934 static void dynticks_rearm_timer(struct qemu_alarm_timer *t);
935
936 static int hpet_start_timer(struct qemu_alarm_timer *t);
937 static void hpet_stop_timer(struct qemu_alarm_timer *t);
938
939 static int rtc_start_timer(struct qemu_alarm_timer *t);
940 static void rtc_stop_timer(struct qemu_alarm_timer *t);
941
942 #endif /* __linux__ */
943
944 #endif /* _WIN32 */
945
946 /* Correlation between real and virtual time is always going to be
947    fairly approximate, so ignore small variation.
948    When the guest is idle real and virtual time will be aligned in
949    the IO wait loop.  */
950 #define ICOUNT_WOBBLE (QEMU_TIMER_BASE / 10)
951
952 static void icount_adjust(void)
953 {
954     int64_t cur_time;
955     int64_t cur_icount;
956     int64_t delta;
957     static int64_t last_delta;
958     /* If the VM is not running, then do nothing.  */
959     if (!vm_running)
960         return;
961
962     cur_time = cpu_get_clock();
963     cur_icount = qemu_get_clock(vm_clock);
964     delta = cur_icount - cur_time;
965     /* FIXME: This is a very crude algorithm, somewhat prone to oscillation.  */
966     if (delta > 0
967         && last_delta + ICOUNT_WOBBLE < delta * 2
968         && icount_time_shift > 0) {
969         /* The guest is getting too far ahead.  Slow time down.  */
970         icount_time_shift--;
971     }
972     if (delta < 0
973         && last_delta - ICOUNT_WOBBLE > delta * 2
974         && icount_time_shift < MAX_ICOUNT_SHIFT) {
975         /* The guest is getting too far behind.  Speed time up.  */
976         icount_time_shift++;
977     }
978     last_delta = delta;
979     qemu_icount_bias = cur_icount - (qemu_icount << icount_time_shift);
980 }
981
982 static void icount_adjust_rt(void * opaque)
983 {
984     qemu_mod_timer(icount_rt_timer,
985                    qemu_get_clock(rt_clock) + 1000);
986     icount_adjust();
987 }
988
989 static void icount_adjust_vm(void * opaque)
990 {
991     qemu_mod_timer(icount_vm_timer,
992                    qemu_get_clock(vm_clock) + QEMU_TIMER_BASE / 10);
993     icount_adjust();
994 }
995
996 static void init_icount_adjust(void)
997 {
998     /* Have both realtime and virtual time triggers for speed adjustment.
999        The realtime trigger catches emulated time passing too slowly,
1000        the virtual time trigger catches emulated time passing too fast.
1001        Realtime triggers occur even when idle, so use them less frequently
1002        than VM triggers.  */
1003     icount_rt_timer = qemu_new_timer(rt_clock, icount_adjust_rt, NULL);
1004     qemu_mod_timer(icount_rt_timer,
1005                    qemu_get_clock(rt_clock) + 1000);
1006     icount_vm_timer = qemu_new_timer(vm_clock, icount_adjust_vm, NULL);
1007     qemu_mod_timer(icount_vm_timer,
1008                    qemu_get_clock(vm_clock) + QEMU_TIMER_BASE / 10);
1009 }
1010
1011 static struct qemu_alarm_timer alarm_timers[] = {
1012 #ifndef _WIN32
1013 #ifdef __linux__
1014     {"dynticks", ALARM_FLAG_DYNTICKS, dynticks_start_timer,
1015      dynticks_stop_timer, dynticks_rearm_timer, NULL},
1016     /* HPET - if available - is preferred */
1017     {"hpet", 0, hpet_start_timer, hpet_stop_timer, NULL, NULL},
1018     /* ...otherwise try RTC */
1019     {"rtc", 0, rtc_start_timer, rtc_stop_timer, NULL, NULL},
1020 #endif
1021     {"unix", 0, unix_start_timer, unix_stop_timer, NULL, NULL},
1022 #else
1023     {"dynticks", ALARM_FLAG_DYNTICKS, win32_start_timer,
1024      win32_stop_timer, win32_rearm_timer, &alarm_win32_data},
1025     {"win32", 0, win32_start_timer,
1026      win32_stop_timer, NULL, &alarm_win32_data},
1027 #endif
1028     {NULL, }
1029 };
1030
1031 static void show_available_alarms(void)
1032 {
1033     int i;
1034
1035     printf("Available alarm timers, in order of precedence:\n");
1036     for (i = 0; alarm_timers[i].name; i++)
1037         printf("%s\n", alarm_timers[i].name);
1038 }
1039
1040 static void configure_alarms(char const *opt)
1041 {
1042     int i;
1043     int cur = 0;
1044     int count = ARRAY_SIZE(alarm_timers) - 1;
1045     char *arg;
1046     char *name;
1047     struct qemu_alarm_timer tmp;
1048
1049     if (!strcmp(opt, "?")) {
1050         show_available_alarms();
1051         exit(0);
1052     }
1053
1054     arg = strdup(opt);
1055
1056     /* Reorder the array */
1057     name = strtok(arg, ",");
1058     while (name) {
1059         for (i = 0; i < count && alarm_timers[i].name; i++) {
1060             if (!strcmp(alarm_timers[i].name, name))
1061                 break;
1062         }
1063
1064         if (i == count) {
1065             fprintf(stderr, "Unknown clock %s\n", name);
1066             goto next;
1067         }
1068
1069         if (i < cur)
1070             /* Ignore */
1071             goto next;
1072
1073         /* Swap */
1074         tmp = alarm_timers[i];
1075         alarm_timers[i] = alarm_timers[cur];
1076         alarm_timers[cur] = tmp;
1077
1078         cur++;
1079 next:
1080         name = strtok(NULL, ",");
1081     }
1082
1083     free(arg);
1084
1085     if (cur) {
1086         /* Disable remaining timers */
1087         for (i = cur; i < count; i++)
1088             alarm_timers[i].name = NULL;
1089     } else {
1090         show_available_alarms();
1091         exit(1);
1092     }
1093 }
1094
1095 QEMUClock *rt_clock;
1096 QEMUClock *vm_clock;
1097
1098 static QEMUTimer *active_timers[2];
1099
1100 static QEMUClock *qemu_new_clock(int type)
1101 {
1102     QEMUClock *clock;
1103     clock = qemu_mallocz(sizeof(QEMUClock));
1104     if (!clock)
1105         return NULL;
1106     clock->type = type;
1107     return clock;
1108 }
1109
1110 QEMUTimer *qemu_new_timer(QEMUClock *clock, QEMUTimerCB *cb, void *opaque)
1111 {
1112     QEMUTimer *ts;
1113
1114     ts = qemu_mallocz(sizeof(QEMUTimer));
1115     ts->clock = clock;
1116     ts->cb = cb;
1117     ts->opaque = opaque;
1118     return ts;
1119 }
1120
1121 void qemu_free_timer(QEMUTimer *ts)
1122 {
1123     qemu_free(ts);
1124 }
1125
1126 /* stop a timer, but do not dealloc it */
1127 void qemu_del_timer(QEMUTimer *ts)
1128 {
1129     QEMUTimer **pt, *t;
1130
1131     /* NOTE: this code must be signal safe because
1132        qemu_timer_expired() can be called from a signal. */
1133     pt = &active_timers[ts->clock->type];
1134     for(;;) {
1135         t = *pt;
1136         if (!t)
1137             break;
1138         if (t == ts) {
1139             *pt = t->next;
1140             break;
1141         }
1142         pt = &t->next;
1143     }
1144 }
1145
1146 /* modify the current timer so that it will be fired when current_time
1147    >= expire_time. The corresponding callback will be called. */
1148 void qemu_mod_timer(QEMUTimer *ts, int64_t expire_time)
1149 {
1150     QEMUTimer **pt, *t;
1151
1152     qemu_del_timer(ts);
1153
1154     /* add the timer in the sorted list */
1155     /* NOTE: this code must be signal safe because
1156        qemu_timer_expired() can be called from a signal. */
1157     pt = &active_timers[ts->clock->type];
1158     for(;;) {
1159         t = *pt;
1160         if (!t)
1161             break;
1162         if (t->expire_time > expire_time)
1163             break;
1164         pt = &t->next;
1165     }
1166     ts->expire_time = expire_time;
1167     ts->next = *pt;
1168     *pt = ts;
1169
1170     /* Rearm if necessary  */
1171     if (pt == &active_timers[ts->clock->type]) {
1172         if ((alarm_timer->flags & ALARM_FLAG_EXPIRED) == 0) {
1173             qemu_rearm_alarm_timer(alarm_timer);
1174         }
1175         /* Interrupt execution to force deadline recalculation.  */
1176         if (use_icount && cpu_single_env) {
1177             cpu_interrupt(cpu_single_env, CPU_INTERRUPT_EXIT);
1178         }
1179     }
1180 }
1181
1182 int qemu_timer_pending(QEMUTimer *ts)
1183 {
1184     QEMUTimer *t;
1185     for(t = active_timers[ts->clock->type]; t != NULL; t = t->next) {
1186         if (t == ts)
1187             return 1;
1188     }
1189     return 0;
1190 }
1191
1192 static inline int qemu_timer_expired(QEMUTimer *timer_head, int64_t current_time)
1193 {
1194     if (!timer_head)
1195         return 0;
1196     return (timer_head->expire_time <= current_time);
1197 }
1198
1199 static void qemu_run_timers(QEMUTimer **ptimer_head, int64_t current_time)
1200 {
1201     QEMUTimer *ts;
1202
1203     for(;;) {
1204         ts = *ptimer_head;
1205         if (!ts || ts->expire_time > current_time)
1206             break;
1207         /* remove timer from the list before calling the callback */
1208         *ptimer_head = ts->next;
1209         ts->next = NULL;
1210
1211         /* run the callback (the timer list can be modified) */
1212         ts->cb(ts->opaque);
1213     }
1214 }
1215
1216 int64_t qemu_get_clock(QEMUClock *clock)
1217 {
1218     switch(clock->type) {
1219     case QEMU_TIMER_REALTIME:
1220         return get_clock() / 1000000;
1221     default:
1222     case QEMU_TIMER_VIRTUAL:
1223         if (use_icount) {
1224             return cpu_get_icount();
1225         } else {
1226             return cpu_get_clock();
1227         }
1228     }
1229 }
1230
1231 static void init_timers(void)
1232 {
1233     init_get_clock();
1234     ticks_per_sec = QEMU_TIMER_BASE;
1235     rt_clock = qemu_new_clock(QEMU_TIMER_REALTIME);
1236     vm_clock = qemu_new_clock(QEMU_TIMER_VIRTUAL);
1237 }
1238
1239 /* save a timer */
1240 void qemu_put_timer(QEMUFile *f, QEMUTimer *ts)
1241 {
1242     uint64_t expire_time;
1243
1244     if (qemu_timer_pending(ts)) {
1245         expire_time = ts->expire_time;
1246     } else {
1247         expire_time = -1;
1248     }
1249     qemu_put_be64(f, expire_time);
1250 }
1251
1252 void qemu_get_timer(QEMUFile *f, QEMUTimer *ts)
1253 {
1254     uint64_t expire_time;
1255
1256     expire_time = qemu_get_be64(f);
1257     if (expire_time != -1) {
1258         qemu_mod_timer(ts, expire_time);
1259     } else {
1260         qemu_del_timer(ts);
1261     }
1262 }
1263
1264 static void timer_save(QEMUFile *f, void *opaque)
1265 {
1266     if (cpu_ticks_enabled) {
1267         hw_error("cannot save state if virtual timers are running");
1268     }
1269     qemu_put_be64(f, cpu_ticks_offset);
1270     qemu_put_be64(f, ticks_per_sec);
1271     qemu_put_be64(f, cpu_clock_offset);
1272 }
1273
1274 static int timer_load(QEMUFile *f, void *opaque, int version_id)
1275 {
1276     if (version_id != 1 && version_id != 2)
1277         return -EINVAL;
1278     if (cpu_ticks_enabled) {
1279         return -EINVAL;
1280     }
1281     cpu_ticks_offset=qemu_get_be64(f);
1282     ticks_per_sec=qemu_get_be64(f);
1283     if (version_id == 2) {
1284         cpu_clock_offset=qemu_get_be64(f);
1285     }
1286     return 0;
1287 }
1288
1289 #ifdef _WIN32
1290 void CALLBACK host_alarm_handler(UINT uTimerID, UINT uMsg,
1291                                  DWORD_PTR dwUser, DWORD_PTR dw1, DWORD_PTR dw2)
1292 #else
1293 static void host_alarm_handler(int host_signum)
1294 #endif
1295 {
1296 #if 0
1297 #define DISP_FREQ 1000
1298     {
1299         static int64_t delta_min = INT64_MAX;
1300         static int64_t delta_max, delta_cum, last_clock, delta, ti;
1301         static int count;
1302         ti = qemu_get_clock(vm_clock);
1303         if (last_clock != 0) {
1304             delta = ti - last_clock;
1305             if (delta < delta_min)
1306                 delta_min = delta;
1307             if (delta > delta_max)
1308                 delta_max = delta;
1309             delta_cum += delta;
1310             if (++count == DISP_FREQ) {
1311                 printf("timer: min=%" PRId64 " us max=%" PRId64 " us avg=%" PRId64 " us avg_freq=%0.3f Hz\n",
1312                        muldiv64(delta_min, 1000000, ticks_per_sec),
1313                        muldiv64(delta_max, 1000000, ticks_per_sec),
1314                        muldiv64(delta_cum, 1000000 / DISP_FREQ, ticks_per_sec),
1315                        (double)ticks_per_sec / ((double)delta_cum / DISP_FREQ));
1316                 count = 0;
1317                 delta_min = INT64_MAX;
1318                 delta_max = 0;
1319                 delta_cum = 0;
1320             }
1321         }
1322         last_clock = ti;
1323     }
1324 #endif
1325     if (alarm_has_dynticks(alarm_timer) ||
1326         (!use_icount &&
1327             qemu_timer_expired(active_timers[QEMU_TIMER_VIRTUAL],
1328                                qemu_get_clock(vm_clock))) ||
1329         qemu_timer_expired(active_timers[QEMU_TIMER_REALTIME],
1330                            qemu_get_clock(rt_clock))) {
1331         CPUState *env = next_cpu;
1332
1333 #ifdef _WIN32
1334         struct qemu_alarm_win32 *data = ((struct qemu_alarm_timer*)dwUser)->priv;
1335         SetEvent(data->host_alarm);
1336 #else
1337         static const char byte = 0;
1338         write(alarm_timer_wfd, &byte, sizeof(byte));
1339 #endif
1340         alarm_timer->flags |= ALARM_FLAG_EXPIRED;
1341
1342         if (env) {
1343             /* stop the currently executing cpu because a timer occured */
1344             cpu_interrupt(env, CPU_INTERRUPT_EXIT);
1345 #ifdef USE_KQEMU
1346             if (env->kqemu_enabled) {
1347                 kqemu_cpu_interrupt(env);
1348             }
1349 #endif
1350         }
1351         event_pending = 1;
1352     }
1353 }
1354
1355 static int64_t qemu_next_deadline(void)
1356 {
1357     int64_t delta;
1358
1359     if (active_timers[QEMU_TIMER_VIRTUAL]) {
1360         delta = active_timers[QEMU_TIMER_VIRTUAL]->expire_time -
1361                      qemu_get_clock(vm_clock);
1362     } else {
1363         /* To avoid problems with overflow limit this to 2^32.  */
1364         delta = INT32_MAX;
1365     }
1366
1367     if (delta < 0)
1368         delta = 0;
1369
1370     return delta;
1371 }
1372
1373 #if defined(__linux__) || defined(_WIN32)
1374 static uint64_t qemu_next_deadline_dyntick(void)
1375 {
1376     int64_t delta;
1377     int64_t rtdelta;
1378
1379     if (use_icount)
1380         delta = INT32_MAX;
1381     else
1382         delta = (qemu_next_deadline() + 999) / 1000;
1383
1384     if (active_timers[QEMU_TIMER_REALTIME]) {
1385         rtdelta = (active_timers[QEMU_TIMER_REALTIME]->expire_time -
1386                  qemu_get_clock(rt_clock))*1000;
1387         if (rtdelta < delta)
1388             delta = rtdelta;
1389     }
1390
1391     if (delta < MIN_TIMER_REARM_US)
1392         delta = MIN_TIMER_REARM_US;
1393
1394     return delta;
1395 }
1396 #endif
1397
1398 #ifndef _WIN32
1399
1400 /* Sets a specific flag */
1401 static int fcntl_setfl(int fd, int flag)
1402 {
1403     int flags;
1404
1405     flags = fcntl(fd, F_GETFL);
1406     if (flags == -1)
1407         return -errno;
1408
1409     if (fcntl(fd, F_SETFL, flags | flag) == -1)
1410         return -errno;
1411
1412     return 0;
1413 }
1414
1415 #if defined(__linux__)
1416
1417 #define RTC_FREQ 1024
1418
1419 static void enable_sigio_timer(int fd)
1420 {
1421     struct sigaction act;
1422
1423     /* timer signal */
1424     sigfillset(&act.sa_mask);
1425     act.sa_flags = 0;
1426     act.sa_handler = host_alarm_handler;
1427
1428     sigaction(SIGIO, &act, NULL);
1429     fcntl_setfl(fd, O_ASYNC);
1430     fcntl(fd, F_SETOWN, getpid());
1431 }
1432
1433 static int hpet_start_timer(struct qemu_alarm_timer *t)
1434 {
1435     struct hpet_info info;
1436     int r, fd;
1437
1438     fd = open("/dev/hpet", O_RDONLY);
1439     if (fd < 0)
1440         return -1;
1441
1442     /* Set frequency */
1443     r = ioctl(fd, HPET_IRQFREQ, RTC_FREQ);
1444     if (r < 0) {
1445         fprintf(stderr, "Could not configure '/dev/hpet' to have a 1024Hz timer. This is not a fatal\n"
1446                 "error, but for better emulation accuracy type:\n"
1447                 "'echo 1024 > /proc/sys/dev/hpet/max-user-freq' as root.\n");
1448         goto fail;
1449     }
1450
1451     /* Check capabilities */
1452     r = ioctl(fd, HPET_INFO, &info);
1453     if (r < 0)
1454         goto fail;
1455
1456     /* Enable periodic mode */
1457     r = ioctl(fd, HPET_EPI, 0);
1458     if (info.hi_flags && (r < 0))
1459         goto fail;
1460
1461     /* Enable interrupt */
1462     r = ioctl(fd, HPET_IE_ON, 0);
1463     if (r < 0)
1464         goto fail;
1465
1466     enable_sigio_timer(fd);
1467     t->priv = (void *)(long)fd;
1468
1469     return 0;
1470 fail:
1471     close(fd);
1472     return -1;
1473 }
1474
1475 static void hpet_stop_timer(struct qemu_alarm_timer *t)
1476 {
1477     int fd = (long)t->priv;
1478
1479     close(fd);
1480 }
1481
1482 static int rtc_start_timer(struct qemu_alarm_timer *t)
1483 {
1484     int rtc_fd;
1485     unsigned long current_rtc_freq = 0;
1486
1487     TFR(rtc_fd = open("/dev/rtc", O_RDONLY));
1488     if (rtc_fd < 0)
1489         return -1;
1490     ioctl(rtc_fd, RTC_IRQP_READ, &current_rtc_freq);
1491     if (current_rtc_freq != RTC_FREQ &&
1492         ioctl(rtc_fd, RTC_IRQP_SET, RTC_FREQ) < 0) {
1493         fprintf(stderr, "Could not configure '/dev/rtc' to have a 1024 Hz timer. This is not a fatal\n"
1494                 "error, but for better emulation accuracy either use a 2.6 host Linux kernel or\n"
1495                 "type 'echo 1024 > /proc/sys/dev/rtc/max-user-freq' as root.\n");
1496         goto fail;
1497     }
1498     if (ioctl(rtc_fd, RTC_PIE_ON, 0) < 0) {
1499     fail:
1500         close(rtc_fd);
1501         return -1;
1502     }
1503
1504     enable_sigio_timer(rtc_fd);
1505
1506     t->priv = (void *)(long)rtc_fd;
1507
1508     return 0;
1509 }
1510
1511 static void rtc_stop_timer(struct qemu_alarm_timer *t)
1512 {
1513     int rtc_fd = (long)t->priv;
1514
1515     close(rtc_fd);
1516 }
1517
1518 static int dynticks_start_timer(struct qemu_alarm_timer *t)
1519 {
1520     struct sigevent ev;
1521     timer_t host_timer;
1522     struct sigaction act;
1523
1524     sigfillset(&act.sa_mask);
1525     act.sa_flags = 0;
1526     act.sa_handler = host_alarm_handler;
1527
1528     sigaction(SIGALRM, &act, NULL);
1529
1530     ev.sigev_value.sival_int = 0;
1531     ev.sigev_notify = SIGEV_SIGNAL;
1532     ev.sigev_signo = SIGALRM;
1533
1534     if (timer_create(CLOCK_REALTIME, &ev, &host_timer)) {
1535         perror("timer_create");
1536
1537         /* disable dynticks */
1538         fprintf(stderr, "Dynamic Ticks disabled\n");
1539
1540         return -1;
1541     }
1542
1543     t->priv = (void *)(long)host_timer;
1544
1545     return 0;
1546 }
1547
1548 static void dynticks_stop_timer(struct qemu_alarm_timer *t)
1549 {
1550     timer_t host_timer = (timer_t)(long)t->priv;
1551
1552     timer_delete(host_timer);
1553 }
1554
1555 static void dynticks_rearm_timer(struct qemu_alarm_timer *t)
1556 {
1557     timer_t host_timer = (timer_t)(long)t->priv;
1558     struct itimerspec timeout;
1559     int64_t nearest_delta_us = INT64_MAX;
1560     int64_t current_us;
1561
1562     if (!active_timers[QEMU_TIMER_REALTIME] &&
1563                 !active_timers[QEMU_TIMER_VIRTUAL])
1564         return;
1565
1566     nearest_delta_us = qemu_next_deadline_dyntick();
1567
1568     /* check whether a timer is already running */
1569     if (timer_gettime(host_timer, &timeout)) {
1570         perror("gettime");
1571         fprintf(stderr, "Internal timer error: aborting\n");
1572         exit(1);
1573     }
1574     current_us = timeout.it_value.tv_sec * 1000000 + timeout.it_value.tv_nsec/1000;
1575     if (current_us && current_us <= nearest_delta_us)
1576         return;
1577
1578     timeout.it_interval.tv_sec = 0;
1579     timeout.it_interval.tv_nsec = 0; /* 0 for one-shot timer */
1580     timeout.it_value.tv_sec =  nearest_delta_us / 1000000;
1581     timeout.it_value.tv_nsec = (nearest_delta_us % 1000000) * 1000;
1582     if (timer_settime(host_timer, 0 /* RELATIVE */, &timeout, NULL)) {
1583         perror("settime");
1584         fprintf(stderr, "Internal timer error: aborting\n");
1585         exit(1);
1586     }
1587 }
1588
1589 #endif /* defined(__linux__) */
1590
1591 static int unix_start_timer(struct qemu_alarm_timer *t)
1592 {
1593     struct sigaction act;
1594     struct itimerval itv;
1595     int err;
1596
1597     /* timer signal */
1598     sigfillset(&act.sa_mask);
1599     act.sa_flags = 0;
1600     act.sa_handler = host_alarm_handler;
1601
1602     sigaction(SIGALRM, &act, NULL);
1603
1604     itv.it_interval.tv_sec = 0;
1605     /* for i386 kernel 2.6 to get 1 ms */
1606     itv.it_interval.tv_usec = 999;
1607     itv.it_value.tv_sec = 0;
1608     itv.it_value.tv_usec = 10 * 1000;
1609
1610     err = setitimer(ITIMER_REAL, &itv, NULL);
1611     if (err)
1612         return -1;
1613
1614     return 0;
1615 }
1616
1617 static void unix_stop_timer(struct qemu_alarm_timer *t)
1618 {
1619     struct itimerval itv;
1620
1621     memset(&itv, 0, sizeof(itv));
1622     setitimer(ITIMER_REAL, &itv, NULL);
1623 }
1624
1625 #endif /* !defined(_WIN32) */
1626
1627 static void try_to_rearm_timer(void *opaque)
1628 {
1629     struct qemu_alarm_timer *t = opaque;
1630 #ifndef _WIN32
1631     ssize_t len;
1632
1633     /* Drain the notify pipe */
1634     do {
1635         char buffer[512];
1636         len = read(alarm_timer_rfd, buffer, sizeof(buffer));
1637     } while ((len == -1 && errno == EINTR) || len > 0);
1638 #endif
1639
1640     if (t->flags & ALARM_FLAG_EXPIRED) {
1641         alarm_timer->flags &= ~ALARM_FLAG_EXPIRED;
1642         qemu_rearm_alarm_timer(alarm_timer);
1643     }
1644 }
1645
1646 #ifdef _WIN32
1647
1648 static int win32_start_timer(struct qemu_alarm_timer *t)
1649 {
1650     TIMECAPS tc;
1651     struct qemu_alarm_win32 *data = t->priv;
1652     UINT flags;
1653
1654     data->host_alarm = CreateEvent(NULL, FALSE, FALSE, NULL);
1655     if (!data->host_alarm) {
1656         perror("Failed CreateEvent");
1657         return -1;
1658     }
1659
1660     memset(&tc, 0, sizeof(tc));
1661     timeGetDevCaps(&tc, sizeof(tc));
1662
1663     if (data->period < tc.wPeriodMin)
1664         data->period = tc.wPeriodMin;
1665
1666     timeBeginPeriod(data->period);
1667
1668     flags = TIME_CALLBACK_FUNCTION;
1669     if (alarm_has_dynticks(t))
1670         flags |= TIME_ONESHOT;
1671     else
1672         flags |= TIME_PERIODIC;
1673
1674     data->timerId = timeSetEvent(1,         // interval (ms)
1675                         data->period,       // resolution
1676                         host_alarm_handler, // function
1677                         (DWORD)t,           // parameter
1678                         flags);
1679
1680     if (!data->timerId) {
1681         perror("Failed to initialize win32 alarm timer");
1682
1683         timeEndPeriod(data->period);
1684         CloseHandle(data->host_alarm);
1685         return -1;
1686     }
1687
1688     qemu_add_wait_object(data->host_alarm, try_to_rearm_timer, t);
1689
1690     return 0;
1691 }
1692
1693 static void win32_stop_timer(struct qemu_alarm_timer *t)
1694 {
1695     struct qemu_alarm_win32 *data = t->priv;
1696
1697     timeKillEvent(data->timerId);
1698     timeEndPeriod(data->period);
1699
1700     CloseHandle(data->host_alarm);
1701 }
1702
1703 static void win32_rearm_timer(struct qemu_alarm_timer *t)
1704 {
1705     struct qemu_alarm_win32 *data = t->priv;
1706     uint64_t nearest_delta_us;
1707
1708     if (!active_timers[QEMU_TIMER_REALTIME] &&
1709                 !active_timers[QEMU_TIMER_VIRTUAL])
1710         return;
1711
1712     nearest_delta_us = qemu_next_deadline_dyntick();
1713     nearest_delta_us /= 1000;
1714
1715     timeKillEvent(data->timerId);
1716
1717     data->timerId = timeSetEvent(1,
1718                         data->period,
1719                         host_alarm_handler,
1720                         (DWORD)t,
1721                         TIME_ONESHOT | TIME_PERIODIC);
1722
1723     if (!data->timerId) {
1724         perror("Failed to re-arm win32 alarm timer");
1725
1726         timeEndPeriod(data->period);
1727         CloseHandle(data->host_alarm);
1728         exit(1);
1729     }
1730 }
1731
1732 #endif /* _WIN32 */
1733
1734 static int init_timer_alarm(void)
1735 {
1736     struct qemu_alarm_timer *t = NULL;
1737     int i, err = -1;
1738
1739 #ifndef _WIN32
1740     int fds[2];
1741
1742     err = pipe(fds);
1743     if (err == -1)
1744         return -errno;
1745
1746     err = fcntl_setfl(fds[0], O_NONBLOCK);
1747     if (err < 0)
1748         goto fail;
1749
1750     err = fcntl_setfl(fds[1], O_NONBLOCK);
1751     if (err < 0)
1752         goto fail;
1753
1754     alarm_timer_rfd = fds[0];
1755     alarm_timer_wfd = fds[1];
1756 #endif
1757
1758     for (i = 0; alarm_timers[i].name; i++) {
1759         t = &alarm_timers[i];
1760
1761         err = t->start(t);
1762         if (!err)
1763             break;
1764     }
1765
1766     if (err) {
1767         err = -ENOENT;
1768         goto fail;
1769     }
1770
1771 #ifndef _WIN32
1772     qemu_set_fd_handler2(alarm_timer_rfd, NULL,
1773                          try_to_rearm_timer, NULL, t);
1774 #endif
1775
1776     alarm_timer = t;
1777
1778     return 0;
1779
1780 fail:
1781 #ifndef _WIN32
1782     close(fds[0]);
1783     close(fds[1]);
1784 #endif
1785     return err;
1786 }
1787
1788 static void quit_timers(void)
1789 {
1790     alarm_timer->stop(alarm_timer);
1791     alarm_timer = NULL;
1792 }
1793
1794 /***********************************************************/
1795 /* host time/date access */
1796 void qemu_get_timedate(struct tm *tm, int offset)
1797 {
1798     time_t ti;
1799     struct tm *ret;
1800
1801     time(&ti);
1802     ti += offset;
1803     if (rtc_date_offset == -1) {
1804         if (rtc_utc)
1805             ret = gmtime(&ti);
1806         else
1807             ret = localtime(&ti);
1808     } else {
1809         ti -= rtc_date_offset;
1810         ret = gmtime(&ti);
1811     }
1812
1813     memcpy(tm, ret, sizeof(struct tm));
1814 }
1815
1816 int qemu_timedate_diff(struct tm *tm)
1817 {
1818     time_t seconds;
1819
1820     if (rtc_date_offset == -1)
1821         if (rtc_utc)
1822             seconds = mktimegm(tm);
1823         else
1824             seconds = mktime(tm);
1825     else
1826         seconds = mktimegm(tm) + rtc_date_offset;
1827
1828     return seconds - time(NULL);
1829 }
1830
1831 #ifdef _WIN32
1832 static void socket_cleanup(void)
1833 {
1834     WSACleanup();
1835 }
1836
1837 static int socket_init(void)
1838 {
1839     WSADATA Data;
1840     int ret, err;
1841
1842     ret = WSAStartup(MAKEWORD(2,2), &Data);
1843     if (ret != 0) {
1844         err = WSAGetLastError();
1845         fprintf(stderr, "WSAStartup: %d\n", err);
1846         return -1;
1847     }
1848     atexit(socket_cleanup);
1849     return 0;
1850 }
1851 #endif
1852
1853 const char *get_opt_name(char *buf, int buf_size, const char *p)
1854 {
1855     char *q;
1856
1857     q = buf;
1858     while (*p != '\0' && *p != '=') {
1859         if (q && (q - buf) < buf_size - 1)
1860             *q++ = *p;
1861         p++;
1862     }
1863     if (q)
1864         *q = '\0';
1865
1866     return p;
1867 }
1868
1869 const char *get_opt_value(char *buf, int buf_size, const char *p)
1870 {
1871     char *q;
1872
1873     q = buf;
1874     while (*p != '\0') {
1875         if (*p == ',') {
1876             if (*(p + 1) != ',')
1877                 break;
1878             p++;
1879         }
1880         if (q && (q - buf) < buf_size - 1)
1881             *q++ = *p;
1882         p++;
1883     }
1884     if (q)
1885         *q = '\0';
1886
1887     return p;
1888 }
1889
1890 int get_param_value(char *buf, int buf_size,
1891                     const char *tag, const char *str)
1892 {
1893     const char *p;
1894     char option[128];
1895
1896     p = str;
1897     for(;;) {
1898         p = get_opt_name(option, sizeof(option), p);
1899         if (*p != '=')
1900             break;
1901         p++;
1902         if (!strcmp(tag, option)) {
1903             (void)get_opt_value(buf, buf_size, p);
1904             return strlen(buf);
1905         } else {
1906             p = get_opt_value(NULL, 0, p);
1907         }
1908         if (*p != ',')
1909             break;
1910         p++;
1911     }
1912     return 0;
1913 }
1914
1915 int check_params(char *buf, int buf_size,
1916                  const char * const *params, const char *str)
1917 {
1918     const char *p;
1919     int i;
1920
1921     p = str;
1922     for(;;) {
1923         p = get_opt_name(buf, buf_size, p);
1924         if (*p != '=')
1925             return -1;
1926         p++;
1927         for(i = 0; params[i] != NULL; i++)
1928             if (!strcmp(params[i], buf))
1929                 break;
1930         if (params[i] == NULL)
1931             return -1;
1932         p = get_opt_value(NULL, 0, p);
1933         if (*p != ',')
1934             break;
1935         p++;
1936     }
1937     return 0;
1938 }
1939
1940 /***********************************************************/
1941 /* Bluetooth support */
1942 static int nb_hcis;
1943 static int cur_hci;
1944 static struct HCIInfo *hci_table[MAX_NICS];
1945
1946 static struct bt_vlan_s {
1947     struct bt_scatternet_s net;
1948     int id;
1949     struct bt_vlan_s *next;
1950 } *first_bt_vlan;
1951
1952 /* find or alloc a new bluetooth "VLAN" */
1953 static struct bt_scatternet_s *qemu_find_bt_vlan(int id)
1954 {
1955     struct bt_vlan_s **pvlan, *vlan;
1956     for (vlan = first_bt_vlan; vlan != NULL; vlan = vlan->next) {
1957         if (vlan->id == id)
1958             return &vlan->net;
1959     }
1960     vlan = qemu_mallocz(sizeof(struct bt_vlan_s));
1961     vlan->id = id;
1962     pvlan = &first_bt_vlan;
1963     while (*pvlan != NULL)
1964         pvlan = &(*pvlan)->next;
1965     *pvlan = vlan;
1966     return &vlan->net;
1967 }
1968
1969 static void null_hci_send(struct HCIInfo *hci, const uint8_t *data, int len)
1970 {
1971 }
1972
1973 static int null_hci_addr_set(struct HCIInfo *hci, const uint8_t *bd_addr)
1974 {
1975     return -ENOTSUP;
1976 }
1977
1978 static struct HCIInfo null_hci = {
1979     .cmd_send = null_hci_send,
1980     .sco_send = null_hci_send,
1981     .acl_send = null_hci_send,
1982     .bdaddr_set = null_hci_addr_set,
1983 };
1984
1985 struct HCIInfo *qemu_next_hci(void)
1986 {
1987     if (cur_hci == nb_hcis)
1988         return &null_hci;
1989
1990     return hci_table[cur_hci++];
1991 }
1992
1993 static struct HCIInfo *hci_init(const char *str)
1994 {
1995     char *endp;
1996     struct bt_scatternet_s *vlan = 0;
1997
1998     if (!strcmp(str, "null"))
1999         /* null */
2000         return &null_hci;
2001     else if (!strncmp(str, "host", 4) && (str[4] == '\0' || str[4] == ':'))
2002         /* host[:hciN] */
2003         return bt_host_hci(str[4] ? str + 5 : "hci0");
2004     else if (!strncmp(str, "hci", 3)) {
2005         /* hci[,vlan=n] */
2006         if (str[3]) {
2007             if (!strncmp(str + 3, ",vlan=", 6)) {
2008                 vlan = qemu_find_bt_vlan(strtol(str + 9, &endp, 0));
2009                 if (*endp)
2010                     vlan = 0;
2011             }
2012         } else
2013             vlan = qemu_find_bt_vlan(0);
2014         if (vlan)
2015            return bt_new_hci(vlan);
2016     }
2017
2018     fprintf(stderr, "qemu: Unknown bluetooth HCI `%s'.\n", str);
2019
2020     return 0;
2021 }
2022
2023 static int bt_hci_parse(const char *str)
2024 {
2025     struct HCIInfo *hci;
2026     bdaddr_t bdaddr;
2027
2028     if (nb_hcis >= MAX_NICS) {
2029         fprintf(stderr, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS);
2030         return -1;
2031     }
2032
2033     hci = hci_init(str);
2034     if (!hci)
2035         return -1;
2036
2037     bdaddr.b[0] = 0x52;
2038     bdaddr.b[1] = 0x54;
2039     bdaddr.b[2] = 0x00;
2040     bdaddr.b[3] = 0x12;
2041     bdaddr.b[4] = 0x34;
2042     bdaddr.b[5] = 0x56 + nb_hcis;
2043     hci->bdaddr_set(hci, bdaddr.b);
2044
2045     hci_table[nb_hcis++] = hci;
2046
2047     return 0;
2048 }
2049
2050 static void bt_vhci_add(int vlan_id)
2051 {
2052     struct bt_scatternet_s *vlan = qemu_find_bt_vlan(vlan_id);
2053
2054     if (!vlan->slave)
2055         fprintf(stderr, "qemu: warning: adding a VHCI to "
2056                         "an empty scatternet %i\n", vlan_id);
2057
2058     bt_vhci_init(bt_new_hci(vlan));
2059 }
2060
2061 static struct bt_device_s *bt_device_add(const char *opt)
2062 {
2063     struct bt_scatternet_s *vlan;
2064     int vlan_id = 0;
2065     char *endp = strstr(opt, ",vlan=");
2066     int len = (endp ? endp - opt : strlen(opt)) + 1;
2067     char devname[10];
2068
2069     pstrcpy(devname, MIN(sizeof(devname), len), opt);
2070
2071     if (endp) {
2072         vlan_id = strtol(endp + 6, &endp, 0);
2073         if (*endp) {
2074             fprintf(stderr, "qemu: unrecognised bluetooth vlan Id\n");
2075             return 0;
2076         }
2077     }
2078
2079     vlan = qemu_find_bt_vlan(vlan_id);
2080
2081     if (!vlan->slave)
2082         fprintf(stderr, "qemu: warning: adding a slave device to "
2083                         "an empty scatternet %i\n", vlan_id);
2084
2085     if (!strcmp(devname, "keyboard"))
2086         return bt_keyboard_init(vlan);
2087
2088     fprintf(stderr, "qemu: unsupported bluetooth device `%s'\n", devname);
2089     return 0;
2090 }
2091
2092 static int bt_parse(const char *opt)
2093 {
2094     const char *endp, *p;
2095     int vlan;
2096
2097     if (strstart(opt, "hci", &endp)) {
2098         if (!*endp || *endp == ',') {
2099             if (*endp)
2100                 if (!strstart(endp, ",vlan=", 0))
2101                     opt = endp + 1;
2102
2103             return bt_hci_parse(opt);
2104        }
2105     } else if (strstart(opt, "vhci", &endp)) {
2106         if (!*endp || *endp == ',') {
2107             if (*endp) {
2108                 if (strstart(endp, ",vlan=", &p)) {
2109                     vlan = strtol(p, (char **) &endp, 0);
2110                     if (*endp) {
2111                         fprintf(stderr, "qemu: bad scatternet '%s'\n", p);
2112                         return 1;
2113                     }
2114                 } else {
2115                     fprintf(stderr, "qemu: bad parameter '%s'\n", endp + 1);
2116                     return 1;
2117                 }
2118             } else
2119                 vlan = 0;
2120
2121             bt_vhci_add(vlan);
2122             return 0;
2123         }
2124     } else if (strstart(opt, "device:", &endp))
2125         return !bt_device_add(endp);
2126
2127     fprintf(stderr, "qemu: bad bluetooth parameter '%s'\n", opt);
2128     return 1;
2129 }
2130
2131 /***********************************************************/
2132 /* QEMU Block devices */
2133
2134 #define HD_ALIAS "index=%d,media=disk"
2135 #ifdef TARGET_PPC
2136 #define CDROM_ALIAS "index=1,media=cdrom"
2137 #else
2138 #define CDROM_ALIAS "index=2,media=cdrom"
2139 #endif
2140 #define FD_ALIAS "index=%d,if=floppy"
2141 #define PFLASH_ALIAS "if=pflash"
2142 #define MTD_ALIAS "if=mtd"
2143 #define SD_ALIAS "index=0,if=sd"
2144
2145 static int drive_add(const char *file, const char *fmt, ...)
2146 {
2147     va_list ap;
2148
2149     if (nb_drives_opt >= MAX_DRIVES) {
2150         fprintf(stderr, "qemu: too many drives\n");
2151         exit(1);
2152     }
2153
2154     drives_opt[nb_drives_opt].file = file;
2155     va_start(ap, fmt);
2156     vsnprintf(drives_opt[nb_drives_opt].opt,
2157               sizeof(drives_opt[0].opt), fmt, ap);
2158     va_end(ap);
2159
2160     return nb_drives_opt++;
2161 }
2162
2163 int drive_get_index(BlockInterfaceType type, int bus, int unit)
2164 {
2165     int index;
2166
2167     /* seek interface, bus and unit */
2168
2169     for (index = 0; index < nb_drives; index++)
2170         if (drives_table[index].type == type &&
2171             drives_table[index].bus == bus &&
2172             drives_table[index].unit == unit)
2173         return index;
2174
2175     return -1;
2176 }
2177
2178 int drive_get_max_bus(BlockInterfaceType type)
2179 {
2180     int max_bus;
2181     int index;
2182
2183     max_bus = -1;
2184     for (index = 0; index < nb_drives; index++) {
2185         if(drives_table[index].type == type &&
2186            drives_table[index].bus > max_bus)
2187             max_bus = drives_table[index].bus;
2188     }
2189     return max_bus;
2190 }
2191
2192 const char *drive_get_serial(BlockDriverState *bdrv)
2193 {
2194     int index;
2195
2196     for (index = 0; index < nb_drives; index++)
2197         if (drives_table[index].bdrv == bdrv)
2198             return drives_table[index].serial;
2199
2200     return "\0";
2201 }
2202
2203 static void bdrv_format_print(void *opaque, const char *name)
2204 {
2205     fprintf(stderr, " %s", name);
2206 }
2207
2208 static int drive_init(struct drive_opt *arg, int snapshot,
2209                       QEMUMachine *machine)
2210 {
2211     char buf[128];
2212     char file[1024];
2213     char devname[128];
2214     char serial[21];
2215     const char *mediastr = "";
2216     BlockInterfaceType type;
2217     enum { MEDIA_DISK, MEDIA_CDROM } media;
2218     int bus_id, unit_id;
2219     int cyls, heads, secs, translation;
2220     BlockDriverState *bdrv;
2221     BlockDriver *drv = NULL;
2222     int max_devs;
2223     int index;
2224     int cache;
2225     int bdrv_flags;
2226     char *str = arg->opt;
2227     static const char * const params[] = { "bus", "unit", "if", "index",
2228                                            "cyls", "heads", "secs", "trans",
2229                                            "media", "snapshot", "file",
2230                                            "cache", "format", "serial", NULL };
2231
2232     if (check_params(buf, sizeof(buf), params, str) < 0) {
2233          fprintf(stderr, "qemu: unknown parameter '%s' in '%s'\n",
2234                          buf, str);
2235          return -1;
2236     }
2237
2238     file[0] = 0;
2239     cyls = heads = secs = 0;
2240     bus_id = 0;
2241     unit_id = -1;
2242     translation = BIOS_ATA_TRANSLATION_AUTO;
2243     index = -1;
2244     cache = 3;
2245
2246     if (machine->use_scsi) {
2247         type = IF_SCSI;
2248         max_devs = MAX_SCSI_DEVS;
2249         pstrcpy(devname, sizeof(devname), "scsi");
2250     } else {
2251         type = IF_IDE;
2252         max_devs = MAX_IDE_DEVS;
2253         pstrcpy(devname, sizeof(devname), "ide");
2254     }
2255     media = MEDIA_DISK;
2256
2257     /* extract parameters */
2258
2259     if (get_param_value(buf, sizeof(buf), "bus", str)) {
2260         bus_id = strtol(buf, NULL, 0);
2261         if (bus_id < 0) {
2262             fprintf(stderr, "qemu: '%s' invalid bus id\n", str);
2263             return -1;
2264         }
2265     }
2266
2267     if (get_param_value(buf, sizeof(buf), "unit", str)) {
2268         unit_id = strtol(buf, NULL, 0);
2269         if (unit_id < 0) {
2270             fprintf(stderr, "qemu: '%s' invalid unit id\n", str);
2271             return -1;
2272         }
2273     }
2274
2275     if (get_param_value(buf, sizeof(buf), "if", str)) {
2276         pstrcpy(devname, sizeof(devname), buf);
2277         if (!strcmp(buf, "ide")) {
2278             type = IF_IDE;
2279             max_devs = MAX_IDE_DEVS;
2280         } else if (!strcmp(buf, "scsi")) {
2281             type = IF_SCSI;
2282             max_devs = MAX_SCSI_DEVS;
2283         } else if (!strcmp(buf, "floppy")) {
2284             type = IF_FLOPPY;
2285             max_devs = 0;
2286         } else if (!strcmp(buf, "pflash")) {
2287             type = IF_PFLASH;
2288             max_devs = 0;
2289         } else if (!strcmp(buf, "mtd")) {
2290             type = IF_MTD;
2291             max_devs = 0;
2292         } else if (!strcmp(buf, "sd")) {
2293             type = IF_SD;
2294             max_devs = 0;
2295         } else if (!strcmp(buf, "virtio")) {
2296             type = IF_VIRTIO;
2297             max_devs = 0;
2298         } else {
2299             fprintf(stderr, "qemu: '%s' unsupported bus type '%s'\n", str, buf);
2300             return -1;
2301         }
2302     }
2303
2304     if (get_param_value(buf, sizeof(buf), "index", str)) {
2305         index = strtol(buf, NULL, 0);
2306         if (index < 0) {
2307             fprintf(stderr, "qemu: '%s' invalid index\n", str);
2308             return -1;
2309         }
2310     }
2311
2312     if (get_param_value(buf, sizeof(buf), "cyls", str)) {
2313         cyls = strtol(buf, NULL, 0);
2314     }
2315
2316     if (get_param_value(buf, sizeof(buf), "heads", str)) {
2317         heads = strtol(buf, NULL, 0);
2318     }
2319
2320     if (get_param_value(buf, sizeof(buf), "secs", str)) {
2321         secs = strtol(buf, NULL, 0);
2322     }
2323
2324     if (cyls || heads || secs) {
2325         if (cyls < 1 || cyls > 16383) {
2326             fprintf(stderr, "qemu: '%s' invalid physical cyls number\n", str);
2327             return -1;
2328         }
2329         if (heads < 1 || heads > 16) {
2330             fprintf(stderr, "qemu: '%s' invalid physical heads number\n", str);
2331             return -1;
2332         }
2333         if (secs < 1 || secs > 63) {
2334             fprintf(stderr, "qemu: '%s' invalid physical secs number\n", str);
2335             return -1;
2336         }
2337     }
2338
2339     if (get_param_value(buf, sizeof(buf), "trans", str)) {
2340         if (!cyls) {
2341             fprintf(stderr,
2342                     "qemu: '%s' trans must be used with cyls,heads and secs\n",
2343                     str);
2344             return -1;
2345         }
2346         if (!strcmp(buf, "none"))
2347             translation = BIOS_ATA_TRANSLATION_NONE;
2348         else if (!strcmp(buf, "lba"))
2349             translation = BIOS_ATA_TRANSLATION_LBA;
2350         else if (!strcmp(buf, "auto"))
2351             translation = BIOS_ATA_TRANSLATION_AUTO;
2352         else {
2353             fprintf(stderr, "qemu: '%s' invalid translation type\n", str);
2354             return -1;
2355         }
2356     }
2357
2358     if (get_param_value(buf, sizeof(buf), "media", str)) {
2359         if (!strcmp(buf, "disk")) {
2360             media = MEDIA_DISK;
2361         } else if (!strcmp(buf, "cdrom")) {
2362             if (cyls || secs || heads) {
2363                 fprintf(stderr,
2364                         "qemu: '%s' invalid physical CHS format\n", str);
2365                 return -1;
2366             }
2367             media = MEDIA_CDROM;
2368         } else {
2369             fprintf(stderr, "qemu: '%s' invalid media\n", str);
2370             return -1;
2371         }
2372     }
2373
2374     if (get_param_value(buf, sizeof(buf), "snapshot", str)) {
2375         if (!strcmp(buf, "on"))
2376             snapshot = 1;
2377         else if (!strcmp(buf, "off"))
2378             snapshot = 0;
2379         else {
2380             fprintf(stderr, "qemu: '%s' invalid snapshot option\n", str);
2381             return -1;
2382         }
2383     }
2384
2385     if (get_param_value(buf, sizeof(buf), "cache", str)) {
2386         if (!strcmp(buf, "off") || !strcmp(buf, "none"))
2387             cache = 0;
2388         else if (!strcmp(buf, "writethrough"))
2389             cache = 1;
2390         else if (!strcmp(buf, "writeback"))
2391             cache = 2;
2392         else {
2393            fprintf(stderr, "qemu: invalid cache option\n");
2394            return -1;
2395         }
2396     }
2397
2398     if (get_param_value(buf, sizeof(buf), "format", str)) {
2399        if (strcmp(buf, "?") == 0) {
2400             fprintf(stderr, "qemu: Supported formats:");
2401             bdrv_iterate_format(bdrv_format_print, NULL);
2402             fprintf(stderr, "\n");
2403             return -1;
2404         }
2405         drv = bdrv_find_format(buf);
2406         if (!drv) {
2407             fprintf(stderr, "qemu: '%s' invalid format\n", buf);
2408             return -1;
2409         }
2410     }
2411
2412     if (arg->file == NULL)
2413         get_param_value(file, sizeof(file), "file", str);
2414     else
2415         pstrcpy(file, sizeof(file), arg->file);
2416
2417     if (!get_param_value(serial, sizeof(serial), "serial", str))
2418             memset(serial, 0,  sizeof(serial));
2419
2420     /* compute bus and unit according index */
2421
2422     if (index != -1) {
2423         if (bus_id != 0 || unit_id != -1) {
2424             fprintf(stderr,
2425                     "qemu: '%s' index cannot be used with bus and unit\n", str);
2426             return -1;
2427         }
2428         if (max_devs == 0)
2429         {
2430             unit_id = index;
2431             bus_id = 0;
2432         } else {
2433             unit_id = index % max_devs;
2434             bus_id = index / max_devs;
2435         }
2436     }
2437
2438     /* if user doesn't specify a unit_id,
2439      * try to find the first free
2440      */
2441
2442     if (unit_id == -1) {
2443        unit_id = 0;
2444        while (drive_get_index(type, bus_id, unit_id) != -1) {
2445            unit_id++;
2446            if (max_devs && unit_id >= max_devs) {
2447                unit_id -= max_devs;
2448                bus_id++;
2449            }
2450        }
2451     }
2452
2453     /* check unit id */
2454
2455     if (max_devs && unit_id >= max_devs) {
2456         fprintf(stderr, "qemu: '%s' unit %d too big (max is %d)\n",
2457                         str, unit_id, max_devs - 1);
2458         return -1;
2459     }
2460
2461     /*
2462      * ignore multiple definitions
2463      */
2464
2465     if (drive_get_index(type, bus_id, unit_id) != -1)
2466         return 0;
2467
2468     /* init */
2469
2470     if (type == IF_IDE || type == IF_SCSI)
2471         mediastr = (media == MEDIA_CDROM) ? "-cd" : "-hd";
2472     if (max_devs)
2473         snprintf(buf, sizeof(buf), "%s%i%s%i",
2474                  devname, bus_id, mediastr, unit_id);
2475     else
2476         snprintf(buf, sizeof(buf), "%s%s%i",
2477                  devname, mediastr, unit_id);
2478     bdrv = bdrv_new(buf);
2479     drives_table[nb_drives].bdrv = bdrv;
2480     drives_table[nb_drives].type = type;
2481     drives_table[nb_drives].bus = bus_id;
2482     drives_table[nb_drives].unit = unit_id;
2483     strncpy(drives_table[nb_drives].serial, serial, sizeof(serial));
2484     nb_drives++;
2485
2486     switch(type) {
2487     case IF_IDE:
2488     case IF_SCSI:
2489         switch(media) {
2490         case MEDIA_DISK:
2491             if (cyls != 0) {
2492                 bdrv_set_geometry_hint(bdrv, cyls, heads, secs);
2493                 bdrv_set_translation_hint(bdrv, translation);
2494             }
2495             break;
2496         case MEDIA_CDROM:
2497             bdrv_set_type_hint(bdrv, BDRV_TYPE_CDROM);
2498             break;
2499         }
2500         break;
2501     case IF_SD:
2502         /* FIXME: This isn't really a floppy, but it's a reasonable
2503            approximation.  */
2504     case IF_FLOPPY:
2505         bdrv_set_type_hint(bdrv, BDRV_TYPE_FLOPPY);
2506         break;
2507     case IF_PFLASH:
2508     case IF_MTD:
2509     case IF_VIRTIO:
2510         break;
2511     }
2512     if (!file[0])
2513         return 0;
2514     bdrv_flags = 0;
2515     if (snapshot) {
2516         bdrv_flags |= BDRV_O_SNAPSHOT;
2517         cache = 2; /* always use write-back with snapshot */
2518     }
2519     if (cache == 0) /* no caching */
2520         bdrv_flags |= BDRV_O_NOCACHE;
2521     else if (cache == 2) /* write-back */
2522         bdrv_flags |= BDRV_O_CACHE_WB;
2523     else if (cache == 3) /* not specified */
2524         bdrv_flags |= BDRV_O_CACHE_DEF;
2525     if (bdrv_open2(bdrv, file, bdrv_flags, drv) < 0 || qemu_key_check(bdrv, file)) {
2526         fprintf(stderr, "qemu: could not open disk image %s\n",
2527                         file);
2528         return -1;
2529     }
2530     return 0;
2531 }
2532
2533 /***********************************************************/
2534 /* USB devices */
2535
2536 static USBPort *used_usb_ports;
2537 static USBPort *free_usb_ports;
2538
2539 /* ??? Maybe change this to register a hub to keep track of the topology.  */
2540 void qemu_register_usb_port(USBPort *port, void *opaque, int index,
2541                             usb_attachfn attach)
2542 {
2543     port->opaque = opaque;
2544     port->index = index;
2545     port->attach = attach;
2546     port->next = free_usb_ports;
2547     free_usb_ports = port;
2548 }
2549
2550 int usb_device_add_dev(USBDevice *dev)
2551 {
2552     USBPort *port;
2553
2554     /* Find a USB port to add the device to.  */
2555     port = free_usb_ports;
2556     if (!port->next) {
2557         USBDevice *hub;
2558
2559         /* Create a new hub and chain it on.  */
2560         free_usb_ports = NULL;
2561         port->next = used_usb_ports;
2562         used_usb_ports = port;
2563
2564         hub = usb_hub_init(VM_USB_HUB_SIZE);
2565         usb_attach(port, hub);
2566         port = free_usb_ports;
2567     }
2568
2569     free_usb_ports = port->next;
2570     port->next = used_usb_ports;
2571     used_usb_ports = port;
2572     usb_attach(port, dev);
2573     return 0;
2574 }
2575
2576 static int usb_device_add(const char *devname)
2577 {
2578     const char *p;
2579     USBDevice *dev;
2580
2581     if (!free_usb_ports)
2582         return -1;
2583
2584     if (strstart(devname, "host:", &p)) {
2585         dev = usb_host_device_open(p);
2586     } else if (!strcmp(devname, "mouse")) {
2587         dev = usb_mouse_init();
2588     } else if (!strcmp(devname, "tablet")) {
2589         dev = usb_tablet_init();
2590     } else if (!strcmp(devname, "keyboard")) {
2591         dev = usb_keyboard_init();
2592     } else if (strstart(devname, "disk:", &p)) {
2593         dev = usb_msd_init(p);
2594     } else if (!strcmp(devname, "wacom-tablet")) {
2595         dev = usb_wacom_init();
2596     } else if (strstart(devname, "serial:", &p)) {
2597         dev = usb_serial_init(p);
2598 #ifdef CONFIG_BRLAPI
2599     } else if (!strcmp(devname, "braille")) {
2600         dev = usb_baum_init();
2601 #endif
2602     } else if (strstart(devname, "net:", &p)) {
2603         int nic = nb_nics;
2604
2605         if (net_client_init("nic", p) < 0)
2606             return -1;
2607         nd_table[nic].model = "usb";
2608         dev = usb_net_init(&nd_table[nic]);
2609     } else if (!strcmp(devname, "bt") || strstart(devname, "bt:", &p)) {
2610         dev = usb_bt_init(devname[2] ? hci_init(p) :
2611                         bt_new_hci(qemu_find_bt_vlan(0)));
2612     } else {
2613         return -1;
2614     }
2615     if (!dev)
2616         return -1;
2617
2618     return usb_device_add_dev(dev);
2619 }
2620
2621 int usb_device_del_addr(int bus_num, int addr)
2622 {
2623     USBPort *port;
2624     USBPort **lastp;
2625     USBDevice *dev;
2626
2627     if (!used_usb_ports)
2628         return -1;
2629
2630     if (bus_num != 0)
2631         return -1;
2632
2633     lastp = &used_usb_ports;
2634     port = used_usb_ports;
2635     while (port && port->dev->addr != addr) {
2636         lastp = &port->next;
2637         port = port->next;
2638     }
2639
2640     if (!port)
2641         return -1;
2642
2643     dev = port->dev;
2644     *lastp = port->next;
2645     usb_attach(port, NULL);
2646     dev->handle_destroy(dev);
2647     port->next = free_usb_ports;
2648     free_usb_ports = port;
2649     return 0;
2650 }
2651
2652 static int usb_device_del(const char *devname)
2653 {
2654     int bus_num, addr;
2655     const char *p;
2656
2657     if (strstart(devname, "host:", &p))
2658         return usb_host_device_close(p);
2659
2660     if (!used_usb_ports)
2661         return -1;
2662
2663     p = strchr(devname, '.');
2664     if (!p)
2665         return -1;
2666     bus_num = strtoul(devname, NULL, 0);
2667     addr = strtoul(p + 1, NULL, 0);
2668
2669     return usb_device_del_addr(bus_num, addr);
2670 }
2671
2672 void do_usb_add(const char *devname)
2673 {
2674     usb_device_add(devname);
2675 }
2676
2677 void do_usb_del(const char *devname)
2678 {
2679     usb_device_del(devname);
2680 }
2681
2682 void usb_info(void)
2683 {
2684     USBDevice *dev;
2685     USBPort *port;
2686     const char *speed_str;
2687
2688     if (!usb_enabled) {
2689         term_printf("USB support not enabled\n");
2690         return;
2691     }
2692
2693     for (port = used_usb_ports; port; port = port->next) {
2694         dev = port->dev;
2695         if (!dev)
2696             continue;
2697         switch(dev->speed) {
2698         case USB_SPEED_LOW:
2699             speed_str = "1.5";
2700             break;
2701         case USB_SPEED_FULL:
2702             speed_str = "12";
2703             break;
2704         case USB_SPEED_HIGH:
2705             speed_str = "480";
2706             break;
2707         default:
2708             speed_str = "?";
2709             break;
2710         }
2711         term_printf("  Device %d.%d, Speed %s Mb/s, Product %s\n",
2712                     0, dev->addr, speed_str, dev->devname);
2713     }
2714 }
2715
2716 /***********************************************************/
2717 /* PCMCIA/Cardbus */
2718
2719 static struct pcmcia_socket_entry_s {
2720     struct pcmcia_socket_s *socket;
2721     struct pcmcia_socket_entry_s *next;
2722 } *pcmcia_sockets = 0;
2723
2724 void pcmcia_socket_register(struct pcmcia_socket_s *socket)
2725 {
2726     struct pcmcia_socket_entry_s *entry;
2727
2728     entry = qemu_malloc(sizeof(struct pcmcia_socket_entry_s));
2729     entry->socket = socket;
2730     entry->next = pcmcia_sockets;
2731     pcmcia_sockets = entry;
2732 }
2733
2734 void pcmcia_socket_unregister(struct pcmcia_socket_s *socket)
2735 {
2736     struct pcmcia_socket_entry_s *entry, **ptr;
2737
2738     ptr = &pcmcia_sockets;
2739     for (entry = *ptr; entry; ptr = &entry->next, entry = *ptr)
2740         if (entry->socket == socket) {
2741             *ptr = entry->next;
2742             qemu_free(entry);
2743         }
2744 }
2745
2746 void pcmcia_info(void)
2747 {
2748     struct pcmcia_socket_entry_s *iter;
2749     if (!pcmcia_sockets)
2750         term_printf("No PCMCIA sockets\n");
2751
2752     for (iter = pcmcia_sockets; iter; iter = iter->next)
2753         term_printf("%s: %s\n", iter->socket->slot_string,
2754                     iter->socket->attached ? iter->socket->card_string :
2755                     "Empty");
2756 }
2757
2758 /***********************************************************/
2759 /* register display */
2760
2761 void register_displaystate(DisplayState *ds)
2762 {
2763     DisplayState **s;
2764     s = &display_state;
2765     while (*s != NULL)
2766         s = &(*s)->next;
2767     ds->next = NULL;
2768     *s = ds;
2769 }
2770
2771 DisplayState *get_displaystate(void)
2772 {
2773     return display_state;
2774 }
2775
2776 /* dumb display */
2777
2778 static void dumb_display_init(void)
2779 {
2780     DisplayState *ds = qemu_mallocz(sizeof(DisplayState));
2781     if (ds == NULL) {
2782         fprintf(stderr, "dumb_display_init: DisplayState allocation failed\n");
2783         exit(1);
2784     }
2785     ds->surface = qemu_create_displaysurface(640, 480, 32, 640 * 4);
2786     register_displaystate(ds);
2787 }
2788
2789 /***********************************************************/
2790 /* I/O handling */
2791
2792 #define MAX_IO_HANDLERS 64
2793
2794 typedef struct IOHandlerRecord {
2795     int fd;
2796     IOCanRWHandler *fd_read_poll;
2797     IOHandler *fd_read;
2798     IOHandler *fd_write;
2799     int deleted;
2800     void *opaque;
2801     /* temporary data */
2802     struct pollfd *ufd;
2803     struct IOHandlerRecord *next;
2804 } IOHandlerRecord;
2805
2806 static IOHandlerRecord *first_io_handler;
2807
2808 /* XXX: fd_read_poll should be suppressed, but an API change is
2809    necessary in the character devices to suppress fd_can_read(). */
2810 int qemu_set_fd_handler2(int fd,
2811                          IOCanRWHandler *fd_read_poll,
2812                          IOHandler *fd_read,
2813                          IOHandler *fd_write,
2814                          void *opaque)
2815 {
2816     IOHandlerRecord **pioh, *ioh;
2817
2818     if (!fd_read && !fd_write) {
2819         pioh = &first_io_handler;
2820         for(;;) {
2821             ioh = *pioh;
2822             if (ioh == NULL)
2823                 break;
2824             if (ioh->fd == fd) {
2825                 ioh->deleted = 1;
2826                 break;
2827             }
2828             pioh = &ioh->next;
2829         }
2830     } else {
2831         for(ioh = first_io_handler; ioh != NULL; ioh = ioh->next) {
2832             if (ioh->fd == fd)
2833                 goto found;
2834         }
2835         ioh = qemu_mallocz(sizeof(IOHandlerRecord));
2836         if (!ioh)
2837             return -1;
2838         ioh->next = first_io_handler;
2839         first_io_handler = ioh;
2840     found:
2841         ioh->fd = fd;
2842         ioh->fd_read_poll = fd_read_poll;
2843         ioh->fd_read = fd_read;
2844         ioh->fd_write = fd_write;
2845         ioh->opaque = opaque;
2846         ioh->deleted = 0;
2847     }
2848     return 0;
2849 }
2850
2851 int qemu_set_fd_handler(int fd,
2852                         IOHandler *fd_read,
2853                         IOHandler *fd_write,
2854                         void *opaque)
2855 {
2856     return qemu_set_fd_handler2(fd, NULL, fd_read, fd_write, opaque);
2857 }
2858
2859 #ifdef _WIN32
2860 /***********************************************************/
2861 /* Polling handling */
2862
2863 typedef struct PollingEntry {
2864     PollingFunc *func;
2865     void *opaque;
2866     struct PollingEntry *next;
2867 } PollingEntry;
2868
2869 static PollingEntry *first_polling_entry;
2870
2871 int qemu_add_polling_cb(PollingFunc *func, void *opaque)
2872 {
2873     PollingEntry **ppe, *pe;
2874     pe = qemu_mallocz(sizeof(PollingEntry));
2875     if (!pe)
2876         return -1;
2877     pe->func = func;
2878     pe->opaque = opaque;
2879     for(ppe = &first_polling_entry; *ppe != NULL; ppe = &(*ppe)->next);
2880     *ppe = pe;
2881     return 0;
2882 }
2883
2884 void qemu_del_polling_cb(PollingFunc *func, void *opaque)
2885 {
2886     PollingEntry **ppe, *pe;
2887     for(ppe = &first_polling_entry; *ppe != NULL; ppe = &(*ppe)->next) {
2888         pe = *ppe;
2889         if (pe->func == func && pe->opaque == opaque) {
2890             *ppe = pe->next;
2891             qemu_free(pe);
2892             break;
2893         }
2894     }
2895 }
2896
2897 /***********************************************************/
2898 /* Wait objects support */
2899 typedef struct WaitObjects {
2900     int num;
2901     HANDLE events[MAXIMUM_WAIT_OBJECTS + 1];
2902     WaitObjectFunc *func[MAXIMUM_WAIT_OBJECTS + 1];
2903     void *opaque[MAXIMUM_WAIT_OBJECTS + 1];
2904 } WaitObjects;
2905
2906 static WaitObjects wait_objects = {0};
2907
2908 int qemu_add_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
2909 {
2910     WaitObjects *w = &wait_objects;
2911
2912     if (w->num >= MAXIMUM_WAIT_OBJECTS)
2913         return -1;
2914     w->events[w->num] = handle;
2915     w->func[w->num] = func;
2916     w->opaque[w->num] = opaque;
2917     w->num++;
2918     return 0;
2919 }
2920
2921 void qemu_del_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
2922 {
2923     int i, found;
2924     WaitObjects *w = &wait_objects;
2925
2926     found = 0;
2927     for (i = 0; i < w->num; i++) {
2928         if (w->events[i] == handle)
2929             found = 1;
2930         if (found) {
2931             w->events[i] = w->events[i + 1];
2932             w->func[i] = w->func[i + 1];
2933             w->opaque[i] = w->opaque[i + 1];
2934         }
2935     }
2936     if (found)
2937         w->num--;
2938 }
2939 #endif
2940
2941 /***********************************************************/
2942 /* ram save/restore */
2943
2944 static int ram_get_page(QEMUFile *f, uint8_t *buf, int len)
2945 {
2946     int v;
2947
2948     v = qemu_get_byte(f);
2949     switch(v) {
2950     case 0:
2951         if (qemu_get_buffer(f, buf, len) != len)
2952             return -EIO;
2953         break;
2954     case 1:
2955         v = qemu_get_byte(f);
2956         memset(buf, v, len);
2957         break;
2958     default:
2959         return -EINVAL;
2960     }
2961
2962     if (qemu_file_has_error(f))
2963         return -EIO;
2964
2965     return 0;
2966 }
2967
2968 static int ram_load_v1(QEMUFile *f, void *opaque)
2969 {
2970     int ret;
2971     ram_addr_t i;
2972
2973     if (qemu_get_be32(f) != phys_ram_size)
2974         return -EINVAL;
2975     for(i = 0; i < phys_ram_size; i+= TARGET_PAGE_SIZE) {
2976         ret = ram_get_page(f, phys_ram_base + i, TARGET_PAGE_SIZE);
2977         if (ret)
2978             return ret;
2979     }
2980     return 0;
2981 }
2982
2983 #define BDRV_HASH_BLOCK_SIZE 1024
2984 #define IOBUF_SIZE 4096
2985 #define RAM_CBLOCK_MAGIC 0xfabe
2986
2987 typedef struct RamDecompressState {
2988     z_stream zstream;
2989     QEMUFile *f;
2990     uint8_t buf[IOBUF_SIZE];
2991 } RamDecompressState;
2992
2993 static int ram_decompress_open(RamDecompressState *s, QEMUFile *f)
2994 {
2995     int ret;
2996     memset(s, 0, sizeof(*s));
2997     s->f = f;
2998     ret = inflateInit(&s->zstream);
2999     if (ret != Z_OK)
3000         return -1;
3001     return 0;
3002 }
3003
3004 static int ram_decompress_buf(RamDecompressState *s, uint8_t *buf, int len)
3005 {
3006     int ret, clen;
3007
3008     s->zstream.avail_out = len;
3009     s->zstream.next_out = buf;
3010     while (s->zstream.avail_out > 0) {
3011         if (s->zstream.avail_in == 0) {
3012             if (qemu_get_be16(s->f) != RAM_CBLOCK_MAGIC)
3013                 return -1;
3014             clen = qemu_get_be16(s->f);
3015             if (clen > IOBUF_SIZE)
3016                 return -1;
3017             qemu_get_buffer(s->f, s->buf, clen);
3018             s->zstream.avail_in = clen;
3019             s->zstream.next_in = s->buf;
3020         }
3021         ret = inflate(&s->zstream, Z_PARTIAL_FLUSH);
3022         if (ret != Z_OK && ret != Z_STREAM_END) {
3023             return -1;
3024         }
3025     }
3026     return 0;
3027 }
3028
3029 static void ram_decompress_close(RamDecompressState *s)
3030 {
3031     inflateEnd(&s->zstream);
3032 }
3033
3034 #define RAM_SAVE_FLAG_FULL      0x01
3035 #define RAM_SAVE_FLAG_COMPRESS  0x02
3036 #define RAM_SAVE_FLAG_MEM_SIZE  0x04
3037 #define RAM_SAVE_FLAG_PAGE      0x08
3038 #define RAM_SAVE_FLAG_EOS       0x10
3039
3040 static int is_dup_page(uint8_t *page, uint8_t ch)
3041 {
3042     uint32_t val = ch << 24 | ch << 16 | ch << 8 | ch;
3043     uint32_t *array = (uint32_t *)page;
3044     int i;
3045
3046     for (i = 0; i < (TARGET_PAGE_SIZE / 4); i++) {
3047         if (array[i] != val)
3048             return 0;
3049     }
3050
3051     return 1;
3052 }
3053
3054 static int ram_save_block(QEMUFile *f)
3055 {
3056     static ram_addr_t current_addr = 0;
3057     ram_addr_t saved_addr = current_addr;
3058     ram_addr_t addr = 0;
3059     int found = 0;
3060
3061     while (addr < phys_ram_size) {
3062         if (cpu_physical_memory_get_dirty(current_addr, MIGRATION_DIRTY_FLAG)) {
3063             uint8_t ch;
3064
3065             cpu_physical_memory_reset_dirty(current_addr,
3066                                             current_addr + TARGET_PAGE_SIZE,
3067                                             MIGRATION_DIRTY_FLAG);
3068
3069             ch = *(phys_ram_base + current_addr);
3070
3071             if (is_dup_page(phys_ram_base + current_addr, ch)) {
3072                 qemu_put_be64(f, current_addr | RAM_SAVE_FLAG_COMPRESS);
3073                 qemu_put_byte(f, ch);
3074             } else {
3075                 qemu_put_be64(f, current_addr | RAM_SAVE_FLAG_PAGE);
3076                 qemu_put_buffer(f, phys_ram_base + current_addr, TARGET_PAGE_SIZE);
3077             }
3078
3079             found = 1;
3080             break;
3081         }
3082         addr += TARGET_PAGE_SIZE;
3083         current_addr = (saved_addr + addr) % phys_ram_size;
3084     }
3085
3086     return found;
3087 }
3088
3089 static ram_addr_t ram_save_threshold = 10;
3090
3091 static ram_addr_t ram_save_remaining(void)
3092 {
3093     ram_addr_t addr;
3094     ram_addr_t count = 0;
3095
3096     for (addr = 0; addr < phys_ram_size; addr += TARGET_PAGE_SIZE) {
3097         if (cpu_physical_memory_get_dirty(addr, MIGRATION_DIRTY_FLAG))
3098             count++;
3099     }
3100
3101     return count;
3102 }
3103
3104 static int ram_save_live(QEMUFile *f, int stage, void *opaque)
3105 {
3106     ram_addr_t addr;
3107
3108     if (stage == 1) {
3109         /* Make sure all dirty bits are set */
3110         for (addr = 0; addr < phys_ram_size; addr += TARGET_PAGE_SIZE) {
3111             if (!cpu_physical_memory_get_dirty(addr, MIGRATION_DIRTY_FLAG))
3112                 cpu_physical_memory_set_dirty(addr);
3113         }
3114         
3115         /* Enable dirty memory tracking */
3116         cpu_physical_memory_set_dirty_tracking(1);
3117
3118         qemu_put_be64(f, phys_ram_size | RAM_SAVE_FLAG_MEM_SIZE);
3119     }
3120
3121     while (!qemu_file_rate_limit(f)) {
3122         int ret;
3123
3124         ret = ram_save_block(f);
3125         if (ret == 0) /* no more blocks */
3126             break;
3127     }
3128
3129     /* try transferring iterative blocks of memory */
3130
3131     if (stage == 3) {
3132         cpu_physical_memory_set_dirty_tracking(0);
3133
3134         /* flush all remaining blocks regardless of rate limiting */
3135         while (ram_save_block(f) != 0);
3136     }
3137
3138     qemu_put_be64(f, RAM_SAVE_FLAG_EOS);
3139
3140     return (stage == 2) && (ram_save_remaining() < ram_save_threshold);
3141 }
3142
3143 static int ram_load_dead(QEMUFile *f, void *opaque)
3144 {
3145     RamDecompressState s1, *s = &s1;
3146     uint8_t buf[10];
3147     ram_addr_t i;
3148
3149     if (ram_decompress_open(s, f) < 0)
3150         return -EINVAL;
3151     for(i = 0; i < phys_ram_size; i+= BDRV_HASH_BLOCK_SIZE) {
3152         if (ram_decompress_buf(s, buf, 1) < 0) {
3153             fprintf(stderr, "Error while reading ram block header\n");
3154             goto error;
3155         }
3156         if (buf[0] == 0) {
3157             if (ram_decompress_buf(s, phys_ram_base + i, BDRV_HASH_BLOCK_SIZE) < 0) {
3158                 fprintf(stderr, "Error while reading ram block address=0x%08" PRIx64, (uint64_t)i);
3159                 goto error;
3160             }
3161         } else {
3162         error:
3163             printf("Error block header\n");
3164             return -EINVAL;
3165         }
3166     }
3167     ram_decompress_close(s);
3168
3169     return 0;
3170 }
3171
3172 static int ram_load(QEMUFile *f, void *opaque, int version_id)
3173 {
3174     ram_addr_t addr;
3175     int flags;
3176
3177     if (version_id == 1)
3178         return ram_load_v1(f, opaque);
3179
3180     if (version_id == 2) {
3181         if (qemu_get_be32(f) != phys_ram_size)
3182             return -EINVAL;
3183         return ram_load_dead(f, opaque);
3184     }
3185
3186     if (version_id != 3)
3187         return -EINVAL;
3188
3189     do {
3190         addr = qemu_get_be64(f);
3191
3192         flags = addr & ~TARGET_PAGE_MASK;
3193         addr &= TARGET_PAGE_MASK;
3194
3195         if (flags & RAM_SAVE_FLAG_MEM_SIZE) {
3196             if (addr != phys_ram_size)
3197                 return -EINVAL;
3198         }
3199
3200         if (flags & RAM_SAVE_FLAG_FULL) {
3201             if (ram_load_dead(f, opaque) < 0)
3202                 return -EINVAL;
3203         }
3204         
3205         if (flags & RAM_SAVE_FLAG_COMPRESS) {
3206             uint8_t ch = qemu_get_byte(f);
3207             memset(phys_ram_base + addr, ch, TARGET_PAGE_SIZE);
3208         } else if (flags & RAM_SAVE_FLAG_PAGE)
3209             qemu_get_buffer(f, phys_ram_base + addr, TARGET_PAGE_SIZE);
3210     } while (!(flags & RAM_SAVE_FLAG_EOS));
3211
3212     return 0;
3213 }
3214
3215 void qemu_service_io(void)
3216 {
3217     CPUState *env = cpu_single_env;
3218     if (env) {
3219         cpu_interrupt(env, CPU_INTERRUPT_EXIT);
3220 #ifdef USE_KQEMU
3221         if (env->kqemu_enabled) {
3222             kqemu_cpu_interrupt(env);
3223         }
3224 #endif
3225     }
3226 }
3227
3228 /***********************************************************/
3229 /* bottom halves (can be seen as timers which expire ASAP) */
3230
3231 struct QEMUBH {
3232     QEMUBHFunc *cb;
3233     void *opaque;
3234     int scheduled;
3235     int idle;
3236     int deleted;
3237     QEMUBH *next;
3238 };
3239
3240 static QEMUBH *first_bh = NULL;
3241
3242 QEMUBH *qemu_bh_new(QEMUBHFunc *cb, void *opaque)
3243 {
3244     QEMUBH *bh;
3245     bh = qemu_mallocz(sizeof(QEMUBH));
3246     if (!bh)
3247         return NULL;
3248     bh->cb = cb;
3249     bh->opaque = opaque;
3250     bh->next = first_bh;
3251     first_bh = bh;
3252     return bh;
3253 }
3254
3255 int qemu_bh_poll(void)
3256 {
3257     QEMUBH *bh, **bhp;
3258     int ret;
3259
3260     ret = 0;
3261     for (bh = first_bh; bh; bh = bh->next) {
3262         if (!bh->deleted && bh->scheduled) {
3263             bh->scheduled = 0;
3264             if (!bh->idle)
3265                 ret = 1;
3266             bh->idle = 0;
3267             bh->cb(bh->opaque);
3268         }
3269     }
3270
3271     /* remove deleted bhs */
3272     bhp = &first_bh;
3273     while (*bhp) {
3274         bh = *bhp;
3275         if (bh->deleted) {
3276             *bhp = bh->next;
3277             qemu_free(bh);
3278         } else
3279             bhp = &bh->next;
3280     }
3281
3282     return ret;
3283 }
3284
3285 void qemu_bh_schedule_idle(QEMUBH *bh)
3286 {
3287     if (bh->scheduled)
3288         return;
3289     bh->scheduled = 1;
3290     bh->idle = 1;
3291 }
3292
3293 void qemu_bh_schedule(QEMUBH *bh)
3294 {
3295     CPUState *env = cpu_single_env;
3296     if (bh->scheduled)
3297         return;
3298     bh->scheduled = 1;
3299     bh->idle = 0;
3300     /* stop the currently executing CPU to execute the BH ASAP */
3301     if (env) {
3302         cpu_interrupt(env, CPU_INTERRUPT_EXIT);
3303     }
3304 }
3305
3306 void qemu_bh_cancel(QEMUBH *bh)
3307 {
3308     bh->scheduled = 0;
3309 }
3310
3311 void qemu_bh_delete(QEMUBH *bh)
3312 {
3313     bh->scheduled = 0;
3314     bh->deleted = 1;
3315 }
3316
3317 static void qemu_bh_update_timeout(int *timeout)
3318 {
3319     QEMUBH *bh;
3320
3321     for (bh = first_bh; bh; bh = bh->next) {
3322         if (!bh->deleted && bh->scheduled) {
3323             if (bh->idle) {
3324                 /* idle bottom halves will be polled at least
3325                  * every 10ms */
3326                 *timeout = MIN(10, *timeout);
3327             } else {
3328                 /* non-idle bottom halves will be executed
3329                  * immediately */
3330                 *timeout = 0;
3331                 break;
3332             }
3333         }
3334     }
3335 }
3336
3337 /***********************************************************/
3338 /* machine registration */
3339
3340 static QEMUMachine *first_machine = NULL;
3341
3342 int qemu_register_machine(QEMUMachine *m)
3343 {
3344     QEMUMachine **pm;
3345     pm = &first_machine;
3346     while (*pm != NULL)
3347         pm = &(*pm)->next;
3348     m->next = NULL;
3349     *pm = m;
3350     return 0;
3351 }
3352
3353 static QEMUMachine *find_machine(const char *name)
3354 {
3355     QEMUMachine *m;
3356
3357     for(m = first_machine; m != NULL; m = m->next) {
3358         if (!strcmp(m->name, name))
3359             return m;
3360     }
3361     return NULL;
3362 }
3363
3364 /***********************************************************/
3365 /* main execution loop */
3366
3367 static void gui_update(void *opaque)
3368 {
3369     uint64_t interval = GUI_REFRESH_INTERVAL;
3370     DisplayState *ds = opaque;
3371     DisplayChangeListener *dcl = ds->listeners;
3372
3373     dpy_refresh(ds);
3374
3375     while (dcl != NULL) {
3376         if (dcl->gui_timer_interval &&
3377             dcl->gui_timer_interval < interval)
3378             interval = dcl->gui_timer_interval;
3379         dcl = dcl->next;
3380     }
3381     qemu_mod_timer(ds->gui_timer, interval + qemu_get_clock(rt_clock));
3382 }
3383
3384 struct vm_change_state_entry {
3385     VMChangeStateHandler *cb;
3386     void *opaque;
3387     LIST_ENTRY (vm_change_state_entry) entries;
3388 };
3389
3390 static LIST_HEAD(vm_change_state_head, vm_change_state_entry) vm_change_state_head;
3391
3392 VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
3393                                                      void *opaque)
3394 {
3395     VMChangeStateEntry *e;
3396
3397     e = qemu_mallocz(sizeof (*e));
3398     if (!e)
3399         return NULL;
3400
3401     e->cb = cb;
3402     e->opaque = opaque;
3403     LIST_INSERT_HEAD(&vm_change_state_head, e, entries);
3404     return e;
3405 }
3406
3407 void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
3408 {
3409     LIST_REMOVE (e, entries);
3410     qemu_free (e);
3411 }
3412
3413 static void vm_state_notify(int running)
3414 {
3415     VMChangeStateEntry *e;
3416
3417     for (e = vm_change_state_head.lh_first; e; e = e->entries.le_next) {
3418         e->cb(e->opaque, running);
3419     }
3420 }
3421
3422 /* XXX: support several handlers */
3423 static VMStopHandler *vm_stop_cb;
3424 static void *vm_stop_opaque;
3425
3426 int qemu_add_vm_stop_handler(VMStopHandler *cb, void *opaque)
3427 {
3428     vm_stop_cb = cb;
3429     vm_stop_opaque = opaque;
3430     return 0;
3431 }
3432
3433 void qemu_del_vm_stop_handler(VMStopHandler *cb, void *opaque)
3434 {
3435     vm_stop_cb = NULL;
3436 }
3437
3438 void vm_start(void)
3439 {
3440     if (!vm_running) {
3441         cpu_enable_ticks();
3442         vm_running = 1;
3443         vm_state_notify(1);
3444         qemu_rearm_alarm_timer(alarm_timer);
3445     }
3446 }
3447
3448 void vm_stop(int reason)
3449 {
3450     if (vm_running) {
3451         cpu_disable_ticks();
3452         vm_running = 0;
3453         if (reason != 0) {
3454             if (vm_stop_cb) {
3455                 vm_stop_cb(vm_stop_opaque, reason);
3456             }
3457         }
3458         vm_state_notify(0);
3459     }
3460 }
3461
3462 /* reset/shutdown handler */
3463
3464 typedef struct QEMUResetEntry {
3465     QEMUResetHandler *func;
3466     void *opaque;
3467     struct QEMUResetEntry *next;
3468 } QEMUResetEntry;
3469
3470 static QEMUResetEntry *first_reset_entry;
3471 static int reset_requested;
3472 static int shutdown_requested;
3473 static int powerdown_requested;
3474
3475 int qemu_shutdown_requested(void)
3476 {
3477     int r = shutdown_requested;
3478     shutdown_requested = 0;
3479     return r;
3480 }
3481
3482 int qemu_reset_requested(void)
3483 {
3484     int r = reset_requested;
3485     reset_requested = 0;
3486     return r;
3487 }
3488
3489 int qemu_powerdown_requested(void)
3490 {
3491     int r = powerdown_requested;
3492     powerdown_requested = 0;
3493     return r;
3494 }
3495
3496 void qemu_register_reset(QEMUResetHandler *func, void *opaque)
3497 {
3498     QEMUResetEntry **pre, *re;
3499
3500     pre = &first_reset_entry;
3501     while (*pre != NULL)
3502         pre = &(*pre)->next;
3503     re = qemu_mallocz(sizeof(QEMUResetEntry));
3504     re->func = func;
3505     re->opaque = opaque;
3506     re->next = NULL;
3507     *pre = re;
3508 }
3509
3510 void qemu_system_reset(void)
3511 {
3512     QEMUResetEntry *re;
3513
3514     /* reset all devices */
3515     for(re = first_reset_entry; re != NULL; re = re->next) {
3516         re->func(re->opaque);
3517     }
3518 }
3519
3520 void qemu_system_reset_request(void)
3521 {
3522     if (no_reboot) {
3523         shutdown_requested = 1;
3524     } else {
3525         reset_requested = 1;
3526     }
3527     if (cpu_single_env)
3528         cpu_interrupt(cpu_single_env, CPU_INTERRUPT_EXIT);
3529 }
3530
3531 void qemu_system_shutdown_request(void)
3532 {
3533     shutdown_requested = 1;
3534     if (cpu_single_env)
3535         cpu_interrupt(cpu_single_env, CPU_INTERRUPT_EXIT);
3536 }
3537
3538 void qemu_system_powerdown_request(void)
3539 {
3540     powerdown_requested = 1;
3541     if (cpu_single_env)
3542         cpu_interrupt(cpu_single_env, CPU_INTERRUPT_EXIT);
3543 }
3544
3545 #ifdef _WIN32
3546 static void host_main_loop_wait(int *timeout)
3547 {
3548     int ret, ret2, i;
3549     PollingEntry *pe;
3550
3551
3552     /* XXX: need to suppress polling by better using win32 events */
3553     ret = 0;
3554     for(pe = first_polling_entry; pe != NULL; pe = pe->next) {
3555         ret |= pe->func(pe->opaque);
3556     }
3557     if (ret == 0) {
3558         int err;
3559         WaitObjects *w = &wait_objects;
3560
3561         ret = WaitForMultipleObjects(w->num, w->events, FALSE, *timeout);
3562         if (WAIT_OBJECT_0 + 0 <= ret && ret <= WAIT_OBJECT_0 + w->num - 1) {
3563             if (w->func[ret - WAIT_OBJECT_0])
3564                 w->func[ret - WAIT_OBJECT_0](w->opaque[ret - WAIT_OBJECT_0]);
3565
3566             /* Check for additional signaled events */
3567             for(i = (ret - WAIT_OBJECT_0 + 1); i < w->num; i++) {
3568
3569                 /* Check if event is signaled */
3570                 ret2 = WaitForSingleObject(w->events[i], 0);
3571                 if(ret2 == WAIT_OBJECT_0) {
3572                     if (w->func[i])
3573                         w->func[i](w->opaque[i]);
3574                 } else if (ret2 == WAIT_TIMEOUT) {
3575                 } else {
3576                     err = GetLastError();
3577                     fprintf(stderr, "WaitForSingleObject error %d %d\n", i, err);
3578                 }
3579             }
3580         } else if (ret == WAIT_TIMEOUT) {
3581         } else {
3582             err = GetLastError();
3583             fprintf(stderr, "WaitForMultipleObjects error %d %d\n", ret, err);
3584         }
3585     }
3586
3587     *timeout = 0;
3588 }
3589 #else
3590 static void host_main_loop_wait(int *timeout)
3591 {
3592 }
3593 #endif
3594
3595 void main_loop_wait(int timeout)
3596 {
3597     IOHandlerRecord *ioh;
3598     fd_set rfds, wfds, xfds;
3599     int ret, nfds;
3600     struct timeval tv;
3601
3602     qemu_bh_update_timeout(&timeout);
3603
3604     host_main_loop_wait(&timeout);
3605
3606     /* poll any events */
3607     /* XXX: separate device handlers from system ones */
3608     nfds = -1;
3609     FD_ZERO(&rfds);
3610     FD_ZERO(&wfds);
3611     FD_ZERO(&xfds);
3612     for(ioh = first_io_handler; ioh != NULL; ioh = ioh->next) {
3613         if (ioh->deleted)
3614             continue;
3615         if (ioh->fd_read &&
3616             (!ioh->fd_read_poll ||
3617              ioh->fd_read_poll(ioh->opaque) != 0)) {
3618             FD_SET(ioh->fd, &rfds);
3619             if (ioh->fd > nfds)
3620                 nfds = ioh->fd;
3621         }
3622         if (ioh->fd_write) {
3623             FD_SET(ioh->fd, &wfds);
3624             if (ioh->fd > nfds)
3625                 nfds = ioh->fd;
3626         }
3627     }
3628
3629     tv.tv_sec = timeout / 1000;
3630     tv.tv_usec = (timeout % 1000) * 1000;
3631
3632 #if defined(CONFIG_SLIRP)
3633     if (slirp_is_inited()) {
3634         slirp_select_fill(&nfds, &rfds, &wfds, &xfds);
3635     }
3636 #endif
3637     ret = select(nfds + 1, &rfds, &wfds, &xfds, &tv);
3638     if (ret > 0) {
3639         IOHandlerRecord **pioh;
3640
3641         for(ioh = first_io_handler; ioh != NULL; ioh = ioh->next) {
3642             if (!ioh->deleted && ioh->fd_read && FD_ISSET(ioh->fd, &rfds)) {
3643                 ioh->fd_read(ioh->opaque);
3644             }
3645             if (!ioh->deleted && ioh->fd_write && FD_ISSET(ioh->fd, &wfds)) {
3646                 ioh->fd_write(ioh->opaque);
3647             }
3648         }
3649
3650         /* remove deleted IO handlers */
3651         pioh = &first_io_handler;
3652         while (*pioh) {
3653             ioh = *pioh;
3654             if (ioh->deleted) {
3655                 *pioh = ioh->next;
3656                 qemu_free(ioh);
3657             } else
3658                 pioh = &ioh->next;
3659         }
3660     }
3661 #if defined(CONFIG_SLIRP)
3662     if (slirp_is_inited()) {
3663         if (ret < 0) {
3664             FD_ZERO(&rfds);
3665             FD_ZERO(&wfds);
3666             FD_ZERO(&xfds);
3667         }
3668         slirp_select_poll(&rfds, &wfds, &xfds);
3669     }
3670 #endif
3671
3672     /* vm time timers */
3673     if (vm_running && likely(!(cur_cpu->singlestep_enabled & SSTEP_NOTIMER)))
3674         qemu_run_timers(&active_timers[QEMU_TIMER_VIRTUAL],
3675                         qemu_get_clock(vm_clock));
3676
3677     /* real time timers */
3678     qemu_run_timers(&active_timers[QEMU_TIMER_REALTIME],
3679                     qemu_get_clock(rt_clock));
3680
3681     /* Check bottom-halves last in case any of the earlier events triggered
3682        them.  */
3683     qemu_bh_poll();
3684
3685 }
3686
3687 static int main_loop(void)
3688 {
3689     int ret, timeout;
3690 #ifdef CONFIG_PROFILER
3691     int64_t ti;
3692 #endif
3693     CPUState *env;
3694
3695     cur_cpu = first_cpu;
3696     next_cpu = cur_cpu->next_cpu ?: first_cpu;
3697     for(;;) {
3698         if (vm_running) {
3699
3700             for(;;) {
3701                 /* get next cpu */
3702                 env = next_cpu;
3703 #ifdef CONFIG_PROFILER
3704                 ti = profile_getclock();
3705 #endif
3706                 if (use_icount) {
3707                     int64_t count;
3708                     int decr;
3709                     qemu_icount -= (env->icount_decr.u16.low + env->icount_extra);
3710                     env->icount_decr.u16.low = 0;
3711                     env->icount_extra = 0;
3712                     count = qemu_next_deadline();
3713                     count = (count + (1 << icount_time_shift) - 1)
3714                             >> icount_time_shift;
3715                     qemu_icount += count;
3716                     decr = (count > 0xffff) ? 0xffff : count;
3717                     count -= decr;
3718                     env->icount_decr.u16.low = decr;
3719                     env->icount_extra = count;
3720                 }
3721                 ret = cpu_exec(env);
3722 #ifdef CONFIG_PROFILER
3723                 qemu_time += profile_getclock() - ti;
3724 #endif
3725                 if (use_icount) {
3726                     /* Fold pending instructions back into the
3727                        instruction counter, and clear the interrupt flag.  */
3728                     qemu_icount -= (env->icount_decr.u16.low
3729                                     + env->icount_extra);
3730                     env->icount_decr.u32 = 0;
3731                     env->icount_extra = 0;
3732                 }
3733                 next_cpu = env->next_cpu ?: first_cpu;
3734                 if (event_pending && likely(ret != EXCP_DEBUG)) {
3735                     ret = EXCP_INTERRUPT;
3736                     event_pending = 0;
3737                     break;
3738                 }
3739                 if (ret == EXCP_HLT) {
3740                     /* Give the next CPU a chance to run.  */
3741                     cur_cpu = env;
3742                     continue;
3743                 }
3744                 if (ret != EXCP_HALTED)
3745                     break;
3746                 /* all CPUs are halted ? */
3747                 if (env == cur_cpu)
3748                     break;
3749             }
3750             cur_cpu = env;
3751
3752             if (shutdown_requested) {
3753                 ret = EXCP_INTERRUPT;
3754                 if (no_shutdown) {
3755                     vm_stop(0);
3756                     no_shutdown = 0;
3757                 }
3758                 else
3759                     break;
3760             }
3761             if (reset_requested) {
3762                 reset_requested = 0;
3763                 qemu_system_reset();
3764                 ret = EXCP_INTERRUPT;
3765             }
3766             if (powerdown_requested) {
3767                 powerdown_requested = 0;
3768                 qemu_system_powerdown();
3769                 ret = EXCP_INTERRUPT;
3770             }
3771             if (unlikely(ret == EXCP_DEBUG)) {
3772                 gdb_set_stop_cpu(cur_cpu);
3773                 vm_stop(EXCP_DEBUG);
3774             }
3775             /* If all cpus are halted then wait until the next IRQ */
3776             /* XXX: use timeout computed from timers */
3777             if (ret == EXCP_HALTED) {
3778                 if (use_icount) {
3779                     int64_t add;
3780                     int64_t delta;
3781                     /* Advance virtual time to the next event.  */
3782                     if (use_icount == 1) {
3783                         /* When not using an adaptive execution frequency
3784                            we tend to get badly out of sync with real time,
3785                            so just delay for a reasonable amount of time.  */
3786                         delta = 0;
3787                     } else {
3788                         delta = cpu_get_icount() - cpu_get_clock();
3789                     }
3790                     if (delta > 0) {
3791                         /* If virtual time is ahead of real time then just
3792                            wait for IO.  */
3793                         timeout = (delta / 1000000) + 1;
3794                     } else {
3795                         /* Wait for either IO to occur or the next
3796                            timer event.  */
3797                         add = qemu_next_deadline();
3798                         /* We advance the timer before checking for IO.
3799                            Limit the amount we advance so that early IO
3800                            activity won't get the guest too far ahead.  */
3801                         if (add > 10000000)
3802                             add = 10000000;
3803                         delta += add;
3804                         add = (add + (1 << icount_time_shift) - 1)
3805                               >> icount_time_shift;
3806                         qemu_icount += add;
3807                         timeout = delta / 1000000;
3808                         if (timeout < 0)
3809                             timeout = 0;
3810                     }
3811                 } else {
3812                     timeout = 5000;
3813                 }
3814             } else {
3815                 timeout = 0;
3816             }
3817         } else {
3818             if (shutdown_requested) {
3819                 ret = EXCP_INTERRUPT;
3820                 break;
3821             }
3822             timeout = 5000;
3823         }
3824 #ifdef CONFIG_PROFILER
3825         ti = profile_getclock();
3826 #endif
3827         main_loop_wait(timeout);
3828 #ifdef CONFIG_PROFILER
3829         dev_time += profile_getclock() - ti;
3830 #endif
3831     }
3832     cpu_disable_ticks();
3833     return ret;
3834 }
3835
3836 static void help(int exitcode)
3837 {
3838     printf("QEMU PC emulator version " QEMU_VERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n"
3839            "usage: %s [options] [disk_image]\n"
3840            "\n"
3841            "'disk_image' is a raw hard image image for IDE hard disk 0\n"
3842            "\n"
3843            "Standard options:\n"
3844            "-M machine      select emulated machine (-M ? for list)\n"
3845            "-cpu cpu        select CPU (-cpu ? for list)\n"
3846            "-fda/-fdb file  use 'file' as floppy disk 0/1 image\n"
3847            "-hda/-hdb file  use 'file' as IDE hard disk 0/1 image\n"
3848            "-hdc/-hdd file  use 'file' as IDE hard disk 2/3 image\n"
3849            "-cdrom file     use 'file' as IDE cdrom image (cdrom is ide1 master)\n"
3850            "-drive [file=file][,if=type][,bus=n][,unit=m][,media=d][,index=i]\n"
3851            "       [,cyls=c,heads=h,secs=s[,trans=t]][,snapshot=on|off]\n"
3852            "       [,cache=writethrough|writeback|none][,format=f][,serial=s]\n"
3853            "                use 'file' as a drive image\n"
3854            "-mtdblock file  use 'file' as on-board Flash memory image\n"
3855            "-sd file        use 'file' as SecureDigital card image\n"
3856            "-pflash file    use 'file' as a parallel flash image\n"
3857            "-boot [a|c|d|n] boot on floppy (a), hard disk (c), CD-ROM (d), or network (n)\n"
3858            "-snapshot       write to temporary files instead of disk image files\n"
3859 #ifdef CONFIG_SDL
3860            "-no-frame       open SDL window without a frame and window decorations\n"
3861            "-alt-grab       use Ctrl-Alt-Shift to grab mouse (instead of Ctrl-Alt)\n"
3862            "-no-quit        disable SDL window close capability\n"
3863            "-sdl            enable SDL\n"
3864 #endif
3865 #ifdef TARGET_I386
3866            "-no-fd-bootchk  disable boot signature checking for floppy disks\n"
3867 #endif
3868            "-m megs         set virtual RAM size to megs MB [default=%d]\n"
3869            "-smp n          set the number of CPUs to 'n' [default=1]\n"
3870            "-nographic      disable graphical output and redirect serial I/Os to console\n"
3871            "-portrait       rotate graphical output 90 deg left (only PXA LCD)\n"
3872 #ifndef _WIN32
3873            "-k language     use keyboard layout (for example \"fr\" for French)\n"
3874 #endif
3875 #ifdef HAS_AUDIO
3876            "-audio-help     print list of audio drivers and their options\n"
3877            "-soundhw c1,... enable audio support\n"
3878            "                and only specified sound cards (comma separated list)\n"
3879            "                use -soundhw ? to get the list of supported cards\n"
3880            "                use -soundhw all to enable all of them\n"
3881 #endif
3882            "-vga [std|cirrus|vmware|none]\n"
3883            "                select video card type\n"
3884            "-localtime      set the real time clock to local time [default=utc]\n"
3885            "-full-screen    start in full screen\n"
3886 #ifdef TARGET_I386
3887            "-win2k-hack     use it when installing Windows 2000 to avoid a disk full bug\n"
3888            "-rtc-td-hack    use it to fix time drift in Windows ACPI HAL\n"
3889 #endif
3890            "-usb            enable the USB driver (will be the default soon)\n"
3891            "-usbdevice name add the host or guest USB device 'name'\n"
3892 #if defined(TARGET_PPC) || defined(TARGET_SPARC)
3893            "-g WxH[xDEPTH]  Set the initial graphical resolution and depth\n"
3894 #endif
3895            "-name string    set the name of the guest\n"
3896            "-uuid %%08x-%%04x-%%04x-%%04x-%%012x specify machine UUID\n"
3897            "\n"
3898            "Network options:\n"
3899            "-net nic[,vlan=n][,macaddr=addr][,model=type][,name=str]\n"
3900            "                create a new Network Interface Card and connect it to VLAN 'n'\n"
3901 #ifdef CONFIG_SLIRP
3902            "-net user[,vlan=n][,name=str][,hostname=host]\n"
3903            "                connect the user mode network stack to VLAN 'n' and send\n"
3904            "                hostname 'host' to DHCP clients\n"
3905 #endif
3906 #ifdef _WIN32
3907            "-net tap[,vlan=n][,name=str],ifname=name\n"
3908            "                connect the host TAP network interface to VLAN 'n'\n"
3909 #else
3910            "-net tap[,vlan=n][,name=str][,fd=h][,ifname=name][,script=file][,downscript=dfile]\n"
3911            "                connect the host TAP network interface to VLAN 'n' and use the\n"
3912            "                network scripts 'file' (default=%s)\n"
3913            "                and 'dfile' (default=%s);\n"
3914            "                use '[down]script=no' to disable script execution;\n"
3915            "                use 'fd=h' to connect to an already opened TAP interface\n"
3916 #endif
3917            "-net socket[,vlan=n][,name=str][,fd=h][,listen=[host]:port][,connect=host:port]\n"
3918            "                connect the vlan 'n' to another VLAN using a socket connection\n"
3919            "-net socket[,vlan=n][,name=str][,fd=h][,mcast=maddr:port]\n"
3920            "                connect the vlan 'n' to multicast maddr and port\n"
3921 #ifdef CONFIG_VDE
3922            "-net vde[,vlan=n][,name=str][,sock=socketpath][,port=n][,group=groupname][,mode=octalmode]\n"
3923            "                connect the vlan 'n' to port 'n' of a vde switch running\n"
3924            "                on host and listening for incoming connections on 'socketpath'.\n"
3925            "                Use group 'groupname' and mode 'octalmode' to change default\n"
3926            "                ownership and permissions for communication port.\n"
3927 #endif
3928            "-net none       use it alone to have zero network devices; if no -net option\n"
3929            "                is provided, the default is '-net nic -net user'\n"
3930            "\n"
3931            "-bt hci,null    Dumb bluetooth HCI - doesn't respond to commands\n"
3932            "-bt hci,host[:id]\n"
3933            "                Use host's HCI with the given name\n"
3934            "-bt hci[,vlan=n]\n"
3935            "                Emulate a standard HCI in virtual scatternet 'n'\n"
3936            "-bt vhci[,vlan=n]\n"
3937            "                Add host computer to virtual scatternet 'n' using VHCI\n"
3938            "-bt device:dev[,vlan=n]\n"
3939            "                Emulate a bluetooth device 'dev' in scatternet 'n'\n"
3940            "\n"
3941 #ifdef CONFIG_SLIRP
3942            "-tftp dir       allow tftp access to files in dir [-net user]\n"
3943            "-bootp file     advertise file in BOOTP replies\n"
3944 #ifndef _WIN32
3945            "-smb dir        allow SMB access to files in 'dir' [-net user]\n"
3946 #endif
3947            "-redir [tcp|udp]:host-port:[guest-host]:guest-port\n"
3948            "                redirect TCP or UDP connections from host to guest [-net user]\n"
3949 #endif
3950            "\n"
3951            "Linux boot specific:\n"
3952            "-kernel bzImage use 'bzImage' as kernel image\n"
3953            "-append cmdline use 'cmdline' as kernel command line\n"
3954            "-initrd file    use 'file' as initial ram disk\n"
3955            "\n"
3956            "Debug/Expert options:\n"
3957            "-monitor dev    redirect the monitor to char device 'dev'\n"
3958            "-serial dev     redirect the serial port to char device 'dev'\n"
3959            "-parallel dev   redirect the parallel port to char device 'dev'\n"
3960            "-pidfile file   Write PID to 'file'\n"
3961            "-S              freeze CPU at startup (use 'c' to start execution)\n"
3962            "-s              wait gdb connection to port\n"
3963            "-p port         set gdb connection port [default=%s]\n"
3964            "-d item1,...    output log to %s (use -d ? for a list of log items)\n"
3965            "-hdachs c,h,s[,t]  force hard disk 0 physical geometry and the optional BIOS\n"
3966            "                translation (t=none or lba) (usually qemu can guess them)\n"
3967            "-L path         set the directory for the BIOS, VGA BIOS and keymaps\n"
3968 #ifdef USE_KQEMU
3969            "-kernel-kqemu   enable KQEMU full virtualization (default is user mode only)\n"
3970            "-no-kqemu       disable KQEMU kernel module usage\n"
3971 #endif
3972 #ifdef CONFIG_KVM
3973            "-enable-kvm     enable KVM full virtualization support\n"
3974 #endif
3975 #ifdef TARGET_I386
3976            "-no-acpi        disable ACPI\n"
3977            "-no-hpet        disable HPET\n"
3978 #endif
3979 #ifdef CONFIG_CURSES
3980            "-curses         use a curses/ncurses interface instead of SDL\n"
3981 #endif
3982            "-no-reboot      exit instead of rebooting\n"
3983            "-no-shutdown    stop before shutdown\n"
3984            "-loadvm [tag|id]  start right away with a saved state (loadvm in monitor)\n"
3985            "-vnc display    start a VNC server on display\n"
3986 #ifndef _WIN32
3987            "-daemonize      daemonize QEMU after initializing\n"
3988 #endif
3989            "-option-rom rom load a file, rom, into the option ROM space\n"
3990 #ifdef TARGET_SPARC
3991            "-prom-env variable=value  set OpenBIOS nvram variables\n"
3992 #endif
3993            "-clock          force the use of the given methods for timer alarm.\n"
3994            "                To see what timers are available use -clock ?\n"
3995            "-startdate      select initial date of the clock\n"
3996            "-icount [N|auto]\n"
3997            "                Enable virtual instruction counter with 2^N clock ticks per instruction\n"
3998            "\n"
3999            "During emulation, the following keys are useful:\n"
4000            "ctrl-alt-f      toggle full screen\n"
4001            "ctrl-alt-n      switch to virtual console 'n'\n"
4002            "ctrl-alt        toggle mouse and keyboard grab\n"
4003            "\n"
4004            "When using -nographic, press 'ctrl-a h' to get some help.\n"
4005            ,
4006            "qemu",
4007            DEFAULT_RAM_SIZE,
4008 #ifndef _WIN32
4009            DEFAULT_NETWORK_SCRIPT,
4010            DEFAULT_NETWORK_DOWN_SCRIPT,
4011 #endif
4012            DEFAULT_GDBSTUB_PORT,
4013            "/tmp/qemu.log");
4014     exit(exitcode);
4015 }
4016
4017 #define HAS_ARG 0x0001
4018
4019 enum {
4020     QEMU_OPTION_h,
4021
4022     QEMU_OPTION_M,
4023     QEMU_OPTION_cpu,
4024     QEMU_OPTION_fda,
4025     QEMU_OPTION_fdb,
4026     QEMU_OPTION_hda,
4027     QEMU_OPTION_hdb,
4028     QEMU_OPTION_hdc,
4029     QEMU_OPTION_hdd,
4030     QEMU_OPTION_drive,
4031     QEMU_OPTION_cdrom,
4032     QEMU_OPTION_mtdblock,
4033     QEMU_OPTION_sd,
4034     QEMU_OPTION_pflash,
4035     QEMU_OPTION_boot,
4036     QEMU_OPTION_snapshot,
4037 #ifdef TARGET_I386
4038     QEMU_OPTION_no_fd_bootchk,
4039 #endif
4040     QEMU_OPTION_m,
4041     QEMU_OPTION_nographic,
4042     QEMU_OPTION_portrait,
4043 #ifdef HAS_AUDIO
4044     QEMU_OPTION_audio_help,
4045     QEMU_OPTION_soundhw,
4046 #endif
4047
4048     QEMU_OPTION_net,
4049     QEMU_OPTION_tftp,
4050     QEMU_OPTION_bootp,
4051     QEMU_OPTION_smb,
4052     QEMU_OPTION_redir,
4053     QEMU_OPTION_bt,
4054
4055     QEMU_OPTION_kernel,
4056     QEMU_OPTION_append,
4057     QEMU_OPTION_initrd,
4058
4059     QEMU_OPTION_S,
4060     QEMU_OPTION_s,
4061     QEMU_OPTION_p,
4062     QEMU_OPTION_d,
4063     QEMU_OPTION_hdachs,
4064     QEMU_OPTION_L,
4065     QEMU_OPTION_bios,
4066     QEMU_OPTION_k,
4067     QEMU_OPTION_localtime,
4068     QEMU_OPTION_g,
4069     QEMU_OPTION_vga,
4070     QEMU_OPTION_echr,
4071     QEMU_OPTION_monitor,
4072     QEMU_OPTION_serial,
4073     QEMU_OPTION_virtiocon,
4074     QEMU_OPTION_parallel,
4075     QEMU_OPTION_loadvm,
4076     QEMU_OPTION_full_screen,
4077     QEMU_OPTION_no_frame,
4078     QEMU_OPTION_alt_grab,
4079     QEMU_OPTION_no_quit,
4080     QEMU_OPTION_sdl,
4081     QEMU_OPTION_pidfile,
4082     QEMU_OPTION_no_kqemu,
4083     QEMU_OPTION_kernel_kqemu,
4084     QEMU_OPTION_enable_kvm,
4085     QEMU_OPTION_win2k_hack,
4086     QEMU_OPTION_rtc_td_hack,
4087     QEMU_OPTION_usb,
4088     QEMU_OPTION_usbdevice,
4089     QEMU_OPTION_smp,
4090     QEMU_OPTION_vnc,
4091     QEMU_OPTION_no_acpi,
4092     QEMU_OPTION_no_hpet,
4093     QEMU_OPTION_curses,
4094     QEMU_OPTION_no_reboot,
4095     QEMU_OPTION_no_shutdown,
4096     QEMU_OPTION_show_cursor,
4097     QEMU_OPTION_daemonize,
4098     QEMU_OPTION_option_rom,
4099     QEMU_OPTION_semihosting,
4100     QEMU_OPTION_name,
4101     QEMU_OPTION_prom_env,
4102     QEMU_OPTION_old_param,
4103     QEMU_OPTION_clock,
4104     QEMU_OPTION_startdate,
4105     QEMU_OPTION_tb_size,
4106     QEMU_OPTION_icount,
4107     QEMU_OPTION_uuid,
4108     QEMU_OPTION_incoming,
4109 };
4110
4111 typedef struct QEMUOption {
4112     const char *name;
4113     int flags;
4114     int index;
4115 } QEMUOption;
4116
4117 static const QEMUOption qemu_options[] = {
4118     { "h", 0, QEMU_OPTION_h },
4119     { "help", 0, QEMU_OPTION_h },
4120
4121     { "M", HAS_ARG, QEMU_OPTION_M },
4122     { "cpu", HAS_ARG, QEMU_OPTION_cpu },
4123     { "fda", HAS_ARG, QEMU_OPTION_fda },
4124     { "fdb", HAS_ARG, QEMU_OPTION_fdb },
4125     { "hda", HAS_ARG, QEMU_OPTION_hda },
4126     { "hdb", HAS_ARG, QEMU_OPTION_hdb },
4127     { "hdc", HAS_ARG, QEMU_OPTION_hdc },
4128     { "hdd", HAS_ARG, QEMU_OPTION_hdd },
4129     { "drive", HAS_ARG, QEMU_OPTION_drive },
4130     { "cdrom", HAS_ARG, QEMU_OPTION_cdrom },
4131     { "mtdblock", HAS_ARG, QEMU_OPTION_mtdblock },
4132     { "sd", HAS_ARG, QEMU_OPTION_sd },
4133     { "pflash", HAS_ARG, QEMU_OPTION_pflash },
4134     { "boot", HAS_ARG, QEMU_OPTION_boot },
4135     { "snapshot", 0, QEMU_OPTION_snapshot },
4136 #ifdef TARGET_I386
4137     { "no-fd-bootchk", 0, QEMU_OPTION_no_fd_bootchk },
4138 #endif
4139     { "m", HAS_ARG, QEMU_OPTION_m },
4140     { "nographic", 0, QEMU_OPTION_nographic },
4141     { "portrait", 0, QEMU_OPTION_portrait },
4142     { "k", HAS_ARG, QEMU_OPTION_k },
4143 #ifdef HAS_AUDIO
4144     { "audio-help", 0, QEMU_OPTION_audio_help },
4145     { "soundhw", HAS_ARG, QEMU_OPTION_soundhw },
4146 #endif
4147
4148     { "net", HAS_ARG, QEMU_OPTION_net},
4149 #ifdef CONFIG_SLIRP
4150     { "tftp", HAS_ARG, QEMU_OPTION_tftp },
4151     { "bootp", HAS_ARG, QEMU_OPTION_bootp },
4152 #ifndef _WIN32
4153     { "smb", HAS_ARG, QEMU_OPTION_smb },
4154 #endif
4155     { "redir", HAS_ARG, QEMU_OPTION_redir },
4156 #endif
4157     { "bt", HAS_ARG, QEMU_OPTION_bt },
4158
4159     { "kernel", HAS_ARG, QEMU_OPTION_kernel },
4160     { "append", HAS_ARG, QEMU_OPTION_append },
4161     { "initrd", HAS_ARG, QEMU_OPTION_initrd },
4162
4163     { "S", 0, QEMU_OPTION_S },
4164     { "s", 0, QEMU_OPTION_s },
4165     { "p", HAS_ARG, QEMU_OPTION_p },
4166     { "d", HAS_ARG, QEMU_OPTION_d },
4167     { "hdachs", HAS_ARG, QEMU_OPTION_hdachs },
4168     { "L", HAS_ARG, QEMU_OPTION_L },
4169     { "bios", HAS_ARG, QEMU_OPTION_bios },
4170 #ifdef USE_KQEMU
4171     { "no-kqemu", 0, QEMU_OPTION_no_kqemu },
4172     { "kernel-kqemu", 0, QEMU_OPTION_kernel_kqemu },
4173 #endif
4174 #ifdef CONFIG_KVM
4175     { "enable-kvm", 0, QEMU_OPTION_enable_kvm },
4176 #endif
4177 #if defined(TARGET_PPC) || defined(TARGET_SPARC)
4178     { "g", 1, QEMU_OPTION_g },
4179 #endif
4180     { "localtime", 0, QEMU_OPTION_localtime },
4181     { "vga", HAS_ARG, QEMU_OPTION_vga },
4182     { "echr", HAS_ARG, QEMU_OPTION_echr },
4183     { "monitor", HAS_ARG, QEMU_OPTION_monitor },
4184     { "serial", HAS_ARG, QEMU_OPTION_serial },
4185     { "virtioconsole", HAS_ARG, QEMU_OPTION_virtiocon },
4186     { "parallel", HAS_ARG, QEMU_OPTION_parallel },
4187     { "loadvm", HAS_ARG, QEMU_OPTION_loadvm },
4188     { "full-screen", 0, QEMU_OPTION_full_screen },
4189 #ifdef CONFIG_SDL
4190     { "no-frame", 0, QEMU_OPTION_no_frame },
4191     { "alt-grab", 0, QEMU_OPTION_alt_grab },
4192     { "no-quit", 0, QEMU_OPTION_no_quit },
4193     { "sdl", 0, QEMU_OPTION_sdl },
4194 #endif
4195     { "pidfile", HAS_ARG, QEMU_OPTION_pidfile },
4196     { "win2k-hack", 0, QEMU_OPTION_win2k_hack },
4197     { "rtc-td-hack", 0, QEMU_OPTION_rtc_td_hack },
4198     { "usbdevice", HAS_ARG, QEMU_OPTION_usbdevice },
4199     { "smp", HAS_ARG, QEMU_OPTION_smp },
4200     { "vnc", HAS_ARG, QEMU_OPTION_vnc },
4201 #ifdef CONFIG_CURSES
4202     { "curses", 0, QEMU_OPTION_curses },
4203 #endif
4204     { "uuid", HAS_ARG, QEMU_OPTION_uuid },
4205
4206     /* temporary options */
4207     { "usb", 0, QEMU_OPTION_usb },
4208     { "no-acpi", 0, QEMU_OPTION_no_acpi },
4209     { "no-hpet", 0, QEMU_OPTION_no_hpet },
4210     { "no-reboot", 0, QEMU_OPTION_no_reboot },
4211     { "no-shutdown", 0, QEMU_OPTION_no_shutdown },
4212     { "show-cursor", 0, QEMU_OPTION_show_cursor },
4213     { "daemonize", 0, QEMU_OPTION_daemonize },
4214     { "option-rom", HAS_ARG, QEMU_OPTION_option_rom },
4215 #if defined(TARGET_ARM) || defined(TARGET_M68K)
4216     { "semihosting", 0, QEMU_OPTION_semihosting },
4217 #endif
4218     { "name", HAS_ARG, QEMU_OPTION_name },
4219 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
4220     { "prom-env", HAS_ARG, QEMU_OPTION_prom_env },
4221 #endif
4222 #if defined(TARGET_ARM)
4223     { "old-param", 0, QEMU_OPTION_old_param },
4224 #endif
4225     { "clock", HAS_ARG, QEMU_OPTION_clock },
4226     { "startdate", HAS_ARG, QEMU_OPTION_startdate },
4227     { "tb-size", HAS_ARG, QEMU_OPTION_tb_size },
4228     { "icount", HAS_ARG, QEMU_OPTION_icount },
4229     { "incoming", HAS_ARG, QEMU_OPTION_incoming },
4230     { NULL },
4231 };
4232
4233 /* password input */
4234
4235 int qemu_key_check(BlockDriverState *bs, const char *name)
4236 {
4237     char password[256];
4238     int i;
4239
4240     if (!bdrv_is_encrypted(bs))
4241         return 0;
4242
4243     term_printf("%s is encrypted.\n", name);
4244     for(i = 0; i < 3; i++) {
4245         monitor_readline("Password: ", 1, password, sizeof(password));
4246         if (bdrv_set_key(bs, password) == 0)
4247             return 0;
4248         term_printf("invalid password\n");
4249     }
4250     return -EPERM;
4251 }
4252
4253 static BlockDriverState *get_bdrv(int index)
4254 {
4255     if (index > nb_drives)
4256         return NULL;
4257     return drives_table[index].bdrv;
4258 }
4259
4260 static void read_passwords(void)
4261 {
4262     BlockDriverState *bs;
4263     int i;
4264
4265     for(i = 0; i < 6; i++) {
4266         bs = get_bdrv(i);
4267         if (bs)
4268             qemu_key_check(bs, bdrv_get_device_name(bs));
4269     }
4270 }
4271
4272 #ifdef HAS_AUDIO
4273 struct soundhw soundhw[] = {
4274 #ifdef HAS_AUDIO_CHOICE
4275 #if defined(TARGET_I386) || defined(TARGET_MIPS)
4276     {
4277         "pcspk",
4278         "PC speaker",
4279         0,
4280         1,
4281         { .init_isa = pcspk_audio_init }
4282     },
4283 #endif
4284
4285 #ifdef CONFIG_SB16
4286     {
4287         "sb16",
4288         "Creative Sound Blaster 16",
4289         0,
4290         1,
4291         { .init_isa = SB16_init }
4292     },
4293 #endif
4294
4295 #ifdef CONFIG_CS4231A
4296     {
4297         "cs4231a",
4298         "CS4231A",
4299         0,
4300         1,
4301         { .init_isa = cs4231a_init }
4302     },
4303 #endif
4304
4305 #ifdef CONFIG_ADLIB
4306     {
4307         "adlib",
4308 #ifdef HAS_YMF262
4309         "Yamaha YMF262 (OPL3)",
4310 #else
4311         "Yamaha YM3812 (OPL2)",
4312 #endif
4313         0,
4314         1,
4315         { .init_isa = Adlib_init }
4316     },
4317 #endif
4318
4319 #ifdef CONFIG_GUS
4320     {
4321         "gus",
4322         "Gravis Ultrasound GF1",
4323         0,
4324         1,
4325         { .init_isa = GUS_init }
4326     },
4327 #endif
4328
4329 #ifdef CONFIG_AC97
4330     {
4331         "ac97",
4332         "Intel 82801AA AC97 Audio",
4333         0,
4334         0,
4335         { .init_pci = ac97_init }
4336     },
4337 #endif
4338
4339 #ifdef CONFIG_ES1370
4340     {
4341         "es1370",
4342         "ENSONIQ AudioPCI ES1370",
4343         0,
4344         0,
4345         { .init_pci = es1370_init }
4346     },
4347 #endif
4348
4349 #endif /* HAS_AUDIO_CHOICE */
4350
4351     { NULL, NULL, 0, 0, { NULL } }
4352 };
4353
4354 static void select_soundhw (const char *optarg)
4355 {
4356     struct soundhw *c;
4357
4358     if (*optarg == '?') {
4359     show_valid_cards:
4360
4361         printf ("Valid sound card names (comma separated):\n");
4362         for (c = soundhw; c->name; ++c) {
4363             printf ("%-11s %s\n", c->name, c->descr);
4364         }
4365         printf ("\n-soundhw all will enable all of the above\n");
4366         exit (*optarg != '?');
4367     }
4368     else {
4369         size_t l;
4370         const char *p;
4371         char *e;
4372         int bad_card = 0;
4373
4374         if (!strcmp (optarg, "all")) {
4375             for (c = soundhw; c->name; ++c) {
4376                 c->enabled = 1;
4377             }
4378             return;
4379         }
4380
4381         p = optarg;
4382         while (*p) {
4383             e = strchr (p, ',');
4384             l = !e ? strlen (p) : (size_t) (e - p);
4385
4386             for (c = soundhw; c->name; ++c) {
4387                 if (!strncmp (c->name, p, l)) {
4388                     c->enabled = 1;
4389                     break;
4390                 }
4391             }
4392
4393             if (!c->name) {
4394                 if (l > 80) {
4395                     fprintf (stderr,
4396                              "Unknown sound card name (too big to show)\n");
4397                 }
4398                 else {
4399                     fprintf (stderr, "Unknown sound card name `%.*s'\n",
4400                              (int) l, p);
4401                 }
4402                 bad_card = 1;
4403             }
4404             p += l + (e != NULL);
4405         }
4406
4407         if (bad_card)
4408             goto show_valid_cards;
4409     }
4410 }
4411 #endif
4412
4413 static void select_vgahw (const char *p)
4414 {
4415     const char *opts;
4416
4417     if (strstart(p, "std", &opts)) {
4418         std_vga_enabled = 1;
4419         cirrus_vga_enabled = 0;
4420         vmsvga_enabled = 0;
4421     } else if (strstart(p, "cirrus", &opts)) {
4422         cirrus_vga_enabled = 1;
4423         std_vga_enabled = 0;
4424         vmsvga_enabled = 0;
4425     } else if (strstart(p, "vmware", &opts)) {
4426         cirrus_vga_enabled = 0;
4427         std_vga_enabled = 0;
4428         vmsvga_enabled = 1;
4429     } else if (strstart(p, "none", &opts)) {
4430         cirrus_vga_enabled = 0;
4431         std_vga_enabled = 0;
4432         vmsvga_enabled = 0;
4433     } else {
4434     invalid_vga:
4435         fprintf(stderr, "Unknown vga type: %s\n", p);
4436         exit(1);
4437     }
4438     while (*opts) {
4439         const char *nextopt;
4440
4441         if (strstart(opts, ",retrace=", &nextopt)) {
4442             opts = nextopt;
4443             if (strstart(opts, "dumb", &nextopt))
4444                 vga_retrace_method = VGA_RETRACE_DUMB;
4445             else if (strstart(opts, "precise", &nextopt))
4446                 vga_retrace_method = VGA_RETRACE_PRECISE;
4447             else goto invalid_vga;
4448         } else goto invalid_vga;
4449         opts = nextopt;
4450     }
4451 }
4452
4453 #ifdef _WIN32
4454 static BOOL WINAPI qemu_ctrl_handler(DWORD type)
4455 {
4456     exit(STATUS_CONTROL_C_EXIT);
4457     return TRUE;
4458 }
4459 #endif
4460
4461 static int qemu_uuid_parse(const char *str, uint8_t *uuid)
4462 {
4463     int ret;
4464
4465     if(strlen(str) != 36)
4466         return -1;
4467
4468     ret = sscanf(str, UUID_FMT, &uuid[0], &uuid[1], &uuid[2], &uuid[3],
4469             &uuid[4], &uuid[5], &uuid[6], &uuid[7], &uuid[8], &uuid[9],
4470             &uuid[10], &uuid[11], &uuid[12], &uuid[13], &uuid[14], &uuid[15]);
4471
4472     if(ret != 16)
4473         return -1;
4474
4475     return 0;
4476 }
4477
4478 #define MAX_NET_CLIENTS 32
4479
4480 #ifndef _WIN32
4481
4482 static void termsig_handler(int signal)
4483 {
4484     qemu_system_shutdown_request();
4485 }
4486
4487 static void termsig_setup(void)
4488 {
4489     struct sigaction act;
4490
4491     memset(&act, 0, sizeof(act));
4492     act.sa_handler = termsig_handler;
4493     sigaction(SIGINT,  &act, NULL);
4494     sigaction(SIGHUP,  &act, NULL);
4495     sigaction(SIGTERM, &act, NULL);
4496 }
4497
4498 #endif
4499
4500 int main(int argc, char **argv, char **envp)
4501 {
4502 #ifdef CONFIG_GDBSTUB
4503     int use_gdbstub;
4504     const char *gdbstub_port;
4505 #endif
4506     uint32_t boot_devices_bitmap = 0;
4507     int i;
4508     int snapshot, linux_boot, net_boot;
4509     const char *initrd_filename;
4510     const char *kernel_filename, *kernel_cmdline;
4511     const char *boot_devices = "";
4512     DisplayState *ds;
4513     DisplayChangeListener *dcl;
4514     int cyls, heads, secs, translation;
4515     const char *net_clients[MAX_NET_CLIENTS];
4516     int nb_net_clients;
4517     const char *bt_opts[MAX_BT_CMDLINE];
4518     int nb_bt_opts;
4519     int hda_index;
4520     int optind;
4521     const char *r, *optarg;
4522     CharDriverState *monitor_hd = NULL;
4523     const char *monitor_device;
4524     const char *serial_devices[MAX_SERIAL_PORTS];
4525     int serial_device_index;
4526     const char *parallel_devices[MAX_PARALLEL_PORTS];
4527     int parallel_device_index;
4528     const char *virtio_consoles[MAX_VIRTIO_CONSOLES];
4529     int virtio_console_index;
4530     const char *loadvm = NULL;
4531     QEMUMachine *machine;
4532     const char *cpu_model;
4533     const char *usb_devices[MAX_USB_CMDLINE];
4534     int usb_devices_index;
4535     int fds[2];
4536     int tb_size;
4537     const char *pid_file = NULL;
4538     int autostart;
4539     const char *incoming = NULL;
4540
4541     qemu_cache_utils_init(envp);
4542
4543     LIST_INIT (&vm_change_state_head);
4544 #ifndef _WIN32
4545     {
4546         struct sigaction act;
4547         sigfillset(&act.sa_mask);
4548         act.sa_flags = 0;
4549         act.sa_handler = SIG_IGN;
4550         sigaction(SIGPIPE, &act, NULL);
4551     }
4552 #else
4553     SetConsoleCtrlHandler(qemu_ctrl_handler, TRUE);
4554     /* Note: cpu_interrupt() is currently not SMP safe, so we force
4555        QEMU to run on a single CPU */
4556     {
4557         HANDLE h;
4558         DWORD mask, smask;
4559         int i;
4560         h = GetCurrentProcess();
4561         if (GetProcessAffinityMask(h, &mask, &smask)) {
4562             for(i = 0; i < 32; i++) {
4563                 if (mask & (1 << i))
4564                     break;
4565             }
4566             if (i != 32) {
4567                 mask = 1 << i;
4568                 SetProcessAffinityMask(h, mask);
4569             }
4570         }
4571     }
4572 #endif
4573
4574     register_machines();
4575     machine = first_machine;
4576     cpu_model = NULL;
4577     initrd_filename = NULL;
4578     ram_size = 0;
4579     vga_ram_size = VGA_RAM_SIZE;
4580 #ifdef CONFIG_GDBSTUB
4581     use_gdbstub = 0;
4582     gdbstub_port = DEFAULT_GDBSTUB_PORT;
4583 #endif
4584     snapshot = 0;
4585     nographic = 0;
4586     curses = 0;
4587     kernel_filename = NULL;
4588     kernel_cmdline = "";
4589     cyls = heads = secs = 0;
4590     translation = BIOS_ATA_TRANSLATION_AUTO;
4591     monitor_device = "vc";
4592
4593     serial_devices[0] = "vc:80Cx24C";
4594     for(i = 1; i < MAX_SERIAL_PORTS; i++)
4595         serial_devices[i] = NULL;
4596     serial_device_index = 0;
4597
4598     parallel_devices[0] = "vc:640x480";
4599     for(i = 1; i < MAX_PARALLEL_PORTS; i++)
4600         parallel_devices[i] = NULL;
4601     parallel_device_index = 0;
4602
4603     virtio_consoles[0] = "vc:80Cx24C";
4604     for(i = 1; i < MAX_VIRTIO_CONSOLES; i++)
4605         virtio_consoles[i] = NULL;
4606     virtio_console_index = 0;
4607
4608     usb_devices_index = 0;
4609
4610     nb_net_clients = 0;
4611     nb_bt_opts = 0;
4612     nb_drives = 0;
4613     nb_drives_opt = 0;
4614     hda_index = -1;
4615
4616     nb_nics = 0;
4617
4618     tb_size = 0;
4619     autostart= 1;
4620
4621     optind = 1;
4622     for(;;) {
4623         if (optind >= argc)
4624             break;
4625         r = argv[optind];
4626         if (r[0] != '-') {
4627             hda_index = drive_add(argv[optind++], HD_ALIAS, 0);
4628         } else {
4629             const QEMUOption *popt;
4630
4631             optind++;
4632             /* Treat --foo the same as -foo.  */
4633             if (r[1] == '-')
4634                 r++;
4635             popt = qemu_options;
4636             for(;;) {
4637                 if (!popt->name) {
4638                     fprintf(stderr, "%s: invalid option -- '%s'\n",
4639                             argv[0], r);
4640                     exit(1);
4641                 }
4642                 if (!strcmp(popt->name, r + 1))
4643                     break;
4644                 popt++;
4645             }
4646             if (popt->flags & HAS_ARG) {
4647                 if (optind >= argc) {
4648                     fprintf(stderr, "%s: option '%s' requires an argument\n",
4649                             argv[0], r);
4650                     exit(1);
4651                 }
4652                 optarg = argv[optind++];
4653             } else {
4654                 optarg = NULL;
4655             }
4656
4657             switch(popt->index) {
4658             case QEMU_OPTION_M:
4659                 machine = find_machine(optarg);
4660                 if (!machine) {
4661                     QEMUMachine *m;
4662                     printf("Supported machines are:\n");
4663                     for(m = first_machine; m != NULL; m = m->next) {
4664                         printf("%-10s %s%s\n",
4665                                m->name, m->desc,
4666                                m == first_machine ? " (default)" : "");
4667                     }
4668                     exit(*optarg != '?');
4669                 }
4670                 break;
4671             case QEMU_OPTION_cpu:
4672                 /* hw initialization will check this */
4673                 if (*optarg == '?') {
4674 /* XXX: implement xxx_cpu_list for targets that still miss it */
4675 #if defined(cpu_list)
4676                     cpu_list(stdout, &fprintf);
4677 #endif
4678                     exit(0);
4679                 } else {
4680                     cpu_model = optarg;
4681                 }
4682                 break;
4683             case QEMU_OPTION_initrd:
4684                 initrd_filename = optarg;
4685                 break;
4686             case QEMU_OPTION_hda:
4687                 if (cyls == 0)
4688                     hda_index = drive_add(optarg, HD_ALIAS, 0);
4689                 else
4690                     hda_index = drive_add(optarg, HD_ALIAS
4691                              ",cyls=%d,heads=%d,secs=%d%s",
4692                              0, cyls, heads, secs,
4693                              translation == BIOS_ATA_TRANSLATION_LBA ?
4694                                  ",trans=lba" :
4695                              translation == BIOS_ATA_TRANSLATION_NONE ?
4696                                  ",trans=none" : "");
4697                  break;
4698             case QEMU_OPTION_hdb:
4699             case QEMU_OPTION_hdc:
4700             case QEMU_OPTION_hdd:
4701                 drive_add(optarg, HD_ALIAS, popt->index - QEMU_OPTION_hda);
4702                 break;
4703             case QEMU_OPTION_drive:
4704                 drive_add(NULL, "%s", optarg);
4705                 break;
4706             case QEMU_OPTION_mtdblock:
4707                 drive_add(optarg, MTD_ALIAS);
4708                 break;
4709             case QEMU_OPTION_sd:
4710                 drive_add(optarg, SD_ALIAS);
4711                 break;
4712             case QEMU_OPTION_pflash:
4713                 drive_add(optarg, PFLASH_ALIAS);
4714                 break;
4715             case QEMU_OPTION_snapshot:
4716                 snapshot = 1;
4717                 break;
4718             case QEMU_OPTION_hdachs:
4719                 {
4720                     const char *p;
4721                     p = optarg;
4722                     cyls = strtol(p, (char **)&p, 0);
4723                     if (cyls < 1 || cyls > 16383)
4724                         goto chs_fail;
4725                     if (*p != ',')
4726                         goto chs_fail;
4727                     p++;
4728                     heads = strtol(p, (char **)&p, 0);
4729                     if (heads < 1 || heads > 16)
4730                         goto chs_fail;
4731                     if (*p != ',')
4732                         goto chs_fail;
4733                     p++;
4734                     secs = strtol(p, (char **)&p, 0);
4735                     if (secs < 1 || secs > 63)
4736                         goto chs_fail;
4737                     if (*p == ',') {
4738                         p++;
4739                         if (!strcmp(p, "none"))
4740                             translation = BIOS_ATA_TRANSLATION_NONE;
4741                         else if (!strcmp(p, "lba"))
4742                             translation = BIOS_ATA_TRANSLATION_LBA;
4743                         else if (!strcmp(p, "auto"))
4744                             translation = BIOS_ATA_TRANSLATION_AUTO;
4745                         else
4746                             goto chs_fail;
4747                     } else if (*p != '\0') {
4748                     chs_fail:
4749                         fprintf(stderr, "qemu: invalid physical CHS format\n");
4750                         exit(1);
4751                     }
4752                     if (hda_index != -1)
4753                         snprintf(drives_opt[hda_index].opt,
4754                                  sizeof(drives_opt[hda_index].opt),
4755                                  HD_ALIAS ",cyls=%d,heads=%d,secs=%d%s",
4756                                  0, cyls, heads, secs,
4757                                  translation == BIOS_ATA_TRANSLATION_LBA ?
4758                                     ",trans=lba" :
4759                                  translation == BIOS_ATA_TRANSLATION_NONE ?
4760                                      ",trans=none" : "");
4761                 }
4762                 break;
4763             case QEMU_OPTION_nographic:
4764                 nographic = 1;
4765                 break;
4766 #ifdef CONFIG_CURSES
4767             case QEMU_OPTION_curses:
4768                 curses = 1;
4769                 break;
4770 #endif
4771             case QEMU_OPTION_portrait:
4772                 graphic_rotate = 1;
4773                 break;
4774             case QEMU_OPTION_kernel:
4775                 kernel_filename = optarg;
4776                 break;
4777             case QEMU_OPTION_append:
4778                 kernel_cmdline = optarg;
4779                 break;
4780             case QEMU_OPTION_cdrom:
4781                 drive_add(optarg, CDROM_ALIAS);
4782                 break;
4783             case QEMU_OPTION_boot:
4784                 boot_devices = optarg;
4785                 /* We just do some generic consistency checks */
4786                 {
4787                     /* Could easily be extended to 64 devices if needed */
4788                     const char *p;
4789                     
4790                     boot_devices_bitmap = 0;
4791                     for (p = boot_devices; *p != '\0'; p++) {
4792                         /* Allowed boot devices are:
4793                          * a b     : floppy disk drives
4794                          * c ... f : IDE disk drives
4795                          * g ... m : machine implementation dependant drives
4796                          * n ... p : network devices
4797                          * It's up to each machine implementation to check
4798                          * if the given boot devices match the actual hardware
4799                          * implementation and firmware features.
4800                          */
4801                         if (*p < 'a' || *p > 'q') {
4802                             fprintf(stderr, "Invalid boot device '%c'\n", *p);
4803                             exit(1);
4804                         }
4805                         if (boot_devices_bitmap & (1 << (*p - 'a'))) {
4806                             fprintf(stderr,
4807                                     "Boot device '%c' was given twice\n",*p);
4808                             exit(1);
4809                         }
4810                         boot_devices_bitmap |= 1 << (*p - 'a');
4811                     }
4812                 }
4813                 break;
4814             case QEMU_OPTION_fda:
4815             case QEMU_OPTION_fdb:
4816                 drive_add(optarg, FD_ALIAS, popt->index - QEMU_OPTION_fda);
4817                 break;
4818 #ifdef TARGET_I386
4819             case QEMU_OPTION_no_fd_bootchk:
4820                 fd_bootchk = 0;
4821                 break;
4822 #endif
4823             case QEMU_OPTION_net:
4824                 if (nb_net_clients >= MAX_NET_CLIENTS) {
4825                     fprintf(stderr, "qemu: too many network clients\n");
4826                     exit(1);
4827                 }
4828                 net_clients[nb_net_clients] = optarg;
4829                 nb_net_clients++;
4830                 break;
4831 #ifdef CONFIG_SLIRP
4832             case QEMU_OPTION_tftp:
4833                 tftp_prefix = optarg;
4834                 break;
4835             case QEMU_OPTION_bootp:
4836                 bootp_filename = optarg;
4837                 break;
4838 #ifndef _WIN32
4839             case QEMU_OPTION_smb:
4840                 net_slirp_smb(optarg);
4841                 break;
4842 #endif
4843             case QEMU_OPTION_redir:
4844                 net_slirp_redir(optarg);
4845                 break;
4846 #endif
4847             case QEMU_OPTION_bt:
4848                 if (nb_bt_opts >= MAX_BT_CMDLINE) {
4849                     fprintf(stderr, "qemu: too many bluetooth options\n");
4850                     exit(1);
4851                 }
4852                 bt_opts[nb_bt_opts++] = optarg;
4853                 break;
4854 #ifdef HAS_AUDIO
4855             case QEMU_OPTION_audio_help:
4856                 AUD_help ();
4857                 exit (0);
4858                 break;
4859             case QEMU_OPTION_soundhw:
4860                 select_soundhw (optarg);
4861                 break;
4862 #endif
4863             case QEMU_OPTION_h:
4864                 help(0);
4865                 break;
4866             case QEMU_OPTION_m: {
4867                 uint64_t value;
4868                 char *ptr;
4869
4870                 value = strtoul(optarg, &ptr, 10);
4871                 switch (*ptr) {
4872                 case 0: case 'M': case 'm':
4873                     value <<= 20;
4874                     break;
4875                 case 'G': case 'g':
4876                     value <<= 30;
4877                     break;
4878                 default:
4879                     fprintf(stderr, "qemu: invalid ram size: %s\n", optarg);
4880                     exit(1);
4881                 }
4882
4883                 /* On 32-bit hosts, QEMU is limited by virtual address space */
4884                 if (value > (2047 << 20)
4885 #ifndef USE_KQEMU
4886                     && HOST_LONG_BITS == 32
4887 #endif
4888                     ) {
4889                     fprintf(stderr, "qemu: at most 2047 MB RAM can be simulated\n");
4890                     exit(1);
4891                 }
4892                 if (value != (uint64_t)(ram_addr_t)value) {
4893                     fprintf(stderr, "qemu: ram size too large\n");
4894                     exit(1);
4895                 }
4896                 ram_size = value;
4897                 break;
4898             }
4899             case QEMU_OPTION_d:
4900                 {
4901                     int mask;
4902                     const CPULogItem *item;
4903
4904                     mask = cpu_str_to_log_mask(optarg);
4905                     if (!mask) {
4906                         printf("Log items (comma separated):\n");
4907                     for(item = cpu_log_items; item->mask != 0; item++) {
4908                         printf("%-10s %s\n", item->name, item->help);
4909                     }
4910                     exit(1);
4911                     }
4912                     cpu_set_log(mask);
4913                 }
4914                 break;
4915 #ifdef CONFIG_GDBSTUB
4916             case QEMU_OPTION_s:
4917                 use_gdbstub = 1;
4918                 break;
4919             case QEMU_OPTION_p:
4920                 gdbstub_port = optarg;
4921                 break;
4922 #endif
4923             case QEMU_OPTION_L:
4924                 bios_dir = optarg;
4925                 break;
4926             case QEMU_OPTION_bios:
4927                 bios_name = optarg;
4928                 break;
4929             case QEMU_OPTION_S:
4930                 autostart = 0;
4931                 break;
4932             case QEMU_OPTION_k:
4933                 keyboard_layout = optarg;
4934                 break;
4935             case QEMU_OPTION_localtime:
4936                 rtc_utc = 0;
4937                 break;
4938             case QEMU_OPTION_vga:
4939                 select_vgahw (optarg);
4940                 break;
4941             case QEMU_OPTION_g:
4942                 {
4943                     const char *p;
4944                     int w, h, depth;
4945                     p = optarg;
4946                     w = strtol(p, (char **)&p, 10);
4947                     if (w <= 0) {
4948                     graphic_error:
4949                         fprintf(stderr, "qemu: invalid resolution or depth\n");
4950                         exit(1);
4951                     }
4952                     if (*p != 'x')
4953                         goto graphic_error;
4954                     p++;
4955                     h = strtol(p, (char **)&p, 10);
4956                     if (h <= 0)
4957                         goto graphic_error;
4958                     if (*p == 'x') {
4959                         p++;
4960                         depth = strtol(p, (char **)&p, 10);
4961                         if (depth != 8 && depth != 15 && depth != 16 &&
4962                             depth != 24 && depth != 32)
4963                             goto graphic_error;
4964                     } else if (*p == '\0') {
4965                         depth = graphic_depth;
4966                     } else {
4967                         goto graphic_error;
4968                     }
4969
4970                     graphic_width = w;
4971                     graphic_height = h;
4972                     graphic_depth = depth;
4973                 }
4974                 break;
4975             case QEMU_OPTION_echr:
4976                 {
4977                     char *r;
4978                     term_escape_char = strtol(optarg, &r, 0);
4979                     if (r == optarg)
4980                         printf("Bad argument to echr\n");
4981                     break;
4982                 }
4983             case QEMU_OPTION_monitor:
4984                 monitor_device = optarg;
4985                 break;
4986             case QEMU_OPTION_serial:
4987                 if (serial_device_index >= MAX_SERIAL_PORTS) {
4988                     fprintf(stderr, "qemu: too many serial ports\n");
4989                     exit(1);
4990                 }
4991                 serial_devices[serial_device_index] = optarg;
4992                 serial_device_index++;
4993                 break;
4994             case QEMU_OPTION_virtiocon:
4995                 if (virtio_console_index >= MAX_VIRTIO_CONSOLES) {
4996                     fprintf(stderr, "qemu: too many virtio consoles\n");
4997                     exit(1);
4998                 }
4999                 virtio_consoles[virtio_console_index] = optarg;
5000                 virtio_console_index++;
5001                 break;
5002             case QEMU_OPTION_parallel:
5003                 if (parallel_device_index >= MAX_PARALLEL_PORTS) {
5004                     fprintf(stderr, "qemu: too many parallel ports\n");
5005                     exit(1);
5006                 }
5007                 parallel_devices[parallel_device_index] = optarg;
5008                 parallel_device_index++;
5009                 break;
5010             case QEMU_OPTION_loadvm:
5011                 loadvm = optarg;
5012                 break;
5013             case QEMU_OPTION_full_screen:
5014                 full_screen = 1;
5015                 break;
5016 #ifdef CONFIG_SDL
5017             case QEMU_OPTION_no_frame:
5018                 no_frame = 1;
5019                 break;
5020             case QEMU_OPTION_alt_grab:
5021                 alt_grab = 1;
5022                 break;
5023             case QEMU_OPTION_no_quit:
5024                 no_quit = 1;
5025                 break;
5026             case QEMU_OPTION_sdl:
5027                 sdl = 1;
5028                 break;
5029 #endif
5030             case QEMU_OPTION_pidfile:
5031                 pid_file = optarg;
5032                 break;
5033 #ifdef TARGET_I386
5034             case QEMU_OPTION_win2k_hack:
5035                 win2k_install_hack = 1;
5036                 break;
5037             case QEMU_OPTION_rtc_td_hack:
5038                 rtc_td_hack = 1;
5039                 break;
5040 #endif
5041 #ifdef USE_KQEMU
5042             case QEMU_OPTION_no_kqemu:
5043                 kqemu_allowed = 0;
5044                 break;
5045             case QEMU_OPTION_kernel_kqemu:
5046                 kqemu_allowed = 2;
5047                 break;
5048 #endif
5049 #ifdef CONFIG_KVM
5050             case QEMU_OPTION_enable_kvm:
5051                 kvm_allowed = 1;
5052 #ifdef USE_KQEMU
5053                 kqemu_allowed = 0;
5054 #endif
5055                 break;
5056 #endif
5057             case QEMU_OPTION_usb:
5058                 usb_enabled = 1;
5059                 break;
5060             case QEMU_OPTION_usbdevice:
5061                 usb_enabled = 1;
5062                 if (usb_devices_index >= MAX_USB_CMDLINE) {
5063                     fprintf(stderr, "Too many USB devices\n");
5064                     exit(1);
5065                 }
5066                 usb_devices[usb_devices_index] = optarg;
5067                 usb_devices_index++;
5068                 break;
5069             case QEMU_OPTION_smp:
5070                 smp_cpus = atoi(optarg);
5071                 if (smp_cpus < 1) {
5072                     fprintf(stderr, "Invalid number of CPUs\n");
5073                     exit(1);
5074                 }
5075                 break;
5076             case QEMU_OPTION_vnc:
5077                 vnc_display = optarg;
5078                 break;
5079             case QEMU_OPTION_no_acpi:
5080                 acpi_enabled = 0;
5081                 break;
5082             case QEMU_OPTION_no_hpet:
5083                 no_hpet = 1;
5084                 break;
5085             case QEMU_OPTION_no_reboot:
5086                 no_reboot = 1;
5087                 break;
5088             case QEMU_OPTION_no_shutdown:
5089                 no_shutdown = 1;
5090                 break;
5091             case QEMU_OPTION_show_cursor:
5092                 cursor_hide = 0;
5093                 break;
5094             case QEMU_OPTION_uuid:
5095                 if(qemu_uuid_parse(optarg, qemu_uuid) < 0) {
5096                     fprintf(stderr, "Fail to parse UUID string."
5097                             " Wrong format.\n");
5098                     exit(1);
5099                 }
5100                 break;
5101             case QEMU_OPTION_daemonize:
5102                 daemonize = 1;
5103                 break;
5104             case QEMU_OPTION_option_rom:
5105                 if (nb_option_roms >= MAX_OPTION_ROMS) {
5106                     fprintf(stderr, "Too many option ROMs\n");
5107                     exit(1);
5108                 }
5109                 option_rom[nb_option_roms] = optarg;
5110                 nb_option_roms++;
5111                 break;
5112             case QEMU_OPTION_semihosting:
5113                 semihosting_enabled = 1;
5114                 break;
5115             case QEMU_OPTION_name:
5116                 qemu_name = optarg;
5117                 break;
5118 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
5119             case QEMU_OPTION_prom_env:
5120                 if (nb_prom_envs >= MAX_PROM_ENVS) {
5121                     fprintf(stderr, "Too many prom variables\n");
5122                     exit(1);
5123                 }
5124                 prom_envs[nb_prom_envs] = optarg;
5125                 nb_prom_envs++;
5126                 break;
5127 #endif
5128 #ifdef TARGET_ARM
5129             case QEMU_OPTION_old_param:
5130                 old_param = 1;
5131                 break;
5132 #endif
5133             case QEMU_OPTION_clock:
5134                 configure_alarms(optarg);
5135                 break;
5136             case QEMU_OPTION_startdate:
5137                 {
5138                     struct tm tm;
5139                     time_t rtc_start_date;
5140                     if (!strcmp(optarg, "now")) {
5141                         rtc_date_offset = -1;
5142                     } else {
5143                         if (sscanf(optarg, "%d-%d-%dT%d:%d:%d",
5144                                &tm.tm_year,
5145                                &tm.tm_mon,
5146                                &tm.tm_mday,
5147                                &tm.tm_hour,
5148                                &tm.tm_min,
5149                                &tm.tm_sec) == 6) {
5150                             /* OK */
5151                         } else if (sscanf(optarg, "%d-%d-%d",
5152                                           &tm.tm_year,
5153                                           &tm.tm_mon,
5154                                           &tm.tm_mday) == 3) {
5155                             tm.tm_hour = 0;
5156                             tm.tm_min = 0;
5157                             tm.tm_sec = 0;
5158                         } else {
5159                             goto date_fail;
5160                         }
5161                         tm.tm_year -= 1900;
5162                         tm.tm_mon--;
5163                         rtc_start_date = mktimegm(&tm);
5164                         if (rtc_start_date == -1) {
5165                         date_fail:
5166                             fprintf(stderr, "Invalid date format. Valid format are:\n"
5167                                     "'now' or '2006-06-17T16:01:21' or '2006-06-17'\n");
5168                             exit(1);
5169                         }
5170                         rtc_date_offset = time(NULL) - rtc_start_date;
5171                     }
5172                 }
5173                 break;
5174             case QEMU_OPTION_tb_size:
5175                 tb_size = strtol(optarg, NULL, 0);
5176                 if (tb_size < 0)
5177                     tb_size = 0;
5178                 break;
5179             case QEMU_OPTION_icount:
5180                 use_icount = 1;
5181                 if (strcmp(optarg, "auto") == 0) {
5182                     icount_time_shift = -1;
5183                 } else {
5184                     icount_time_shift = strtol(optarg, NULL, 0);
5185                 }
5186                 break;
5187             case QEMU_OPTION_incoming:
5188                 incoming = optarg;
5189                 break;
5190             }
5191         }
5192     }
5193
5194 #if defined(CONFIG_KVM) && defined(USE_KQEMU)
5195     if (kvm_allowed && kqemu_allowed) {
5196         fprintf(stderr,
5197                 "You can not enable both KVM and kqemu at the same time\n");
5198         exit(1);
5199     }
5200 #endif
5201
5202     machine->max_cpus = machine->max_cpus ?: 1; /* Default to UP */
5203     if (smp_cpus > machine->max_cpus) {
5204         fprintf(stderr, "Number of SMP cpus requested (%d), exceeds max cpus "
5205                 "supported by machine `%s' (%d)\n", smp_cpus,  machine->name,
5206                 machine->max_cpus);
5207         exit(1);
5208     }
5209
5210     if (nographic) {
5211        if (serial_device_index == 0)
5212            serial_devices[0] = "stdio";
5213        if (parallel_device_index == 0)
5214            parallel_devices[0] = "null";
5215        if (strncmp(monitor_device, "vc", 2) == 0)
5216            monitor_device = "stdio";
5217        if (virtio_console_index == 0)
5218            virtio_consoles[0] = "null";
5219     }
5220
5221 #ifndef _WIN32
5222     if (daemonize) {
5223         pid_t pid;
5224
5225         if (pipe(fds) == -1)
5226             exit(1);
5227
5228         pid = fork();
5229         if (pid > 0) {
5230             uint8_t status;
5231             ssize_t len;
5232
5233             close(fds[1]);
5234
5235         again:
5236             len = read(fds[0], &status, 1);
5237             if (len == -1 && (errno == EINTR))
5238                 goto again;
5239
5240             if (len != 1)
5241                 exit(1);
5242             else if (status == 1) {
5243                 fprintf(stderr, "Could not acquire pidfile\n");
5244                 exit(1);
5245             } else
5246                 exit(0);
5247         } else if (pid < 0)
5248             exit(1);
5249
5250         setsid();
5251
5252         pid = fork();
5253         if (pid > 0)
5254             exit(0);
5255         else if (pid < 0)
5256             exit(1);
5257
5258         umask(027);
5259
5260         signal(SIGTSTP, SIG_IGN);
5261         signal(SIGTTOU, SIG_IGN);
5262         signal(SIGTTIN, SIG_IGN);
5263     }
5264 #endif
5265
5266     if (pid_file && qemu_create_pidfile(pid_file) != 0) {
5267         if (daemonize) {
5268             uint8_t status = 1;
5269             write(fds[1], &status, 1);
5270         } else
5271             fprintf(stderr, "Could not acquire pid file\n");
5272         exit(1);
5273     }
5274
5275 #ifdef USE_KQEMU
5276     if (smp_cpus > 1)
5277         kqemu_allowed = 0;
5278 #endif
5279     linux_boot = (kernel_filename != NULL);
5280     net_boot = (boot_devices_bitmap >> ('n' - 'a')) & 0xF;
5281
5282     if (!linux_boot && net_boot == 0 &&
5283         !machine->nodisk_ok && nb_drives_opt == 0)
5284         help(1);
5285
5286     if (!linux_boot && *kernel_cmdline != '\0') {
5287         fprintf(stderr, "-append only allowed with -kernel option\n");
5288         exit(1);
5289     }
5290
5291     if (!linux_boot && initrd_filename != NULL) {
5292         fprintf(stderr, "-initrd only allowed with -kernel option\n");
5293         exit(1);
5294     }
5295
5296     /* boot to floppy or the default cd if no hard disk defined yet */
5297     if (!boot_devices[0]) {
5298         boot_devices = "cad";
5299     }
5300     setvbuf(stdout, NULL, _IOLBF, 0);
5301
5302     init_timers();
5303     if (init_timer_alarm() < 0) {
5304         fprintf(stderr, "could not initialize alarm timer\n");
5305         exit(1);
5306     }
5307     if (use_icount && icount_time_shift < 0) {
5308         use_icount = 2;
5309         /* 125MIPS seems a reasonable initial guess at the guest speed.
5310            It will be corrected fairly quickly anyway.  */
5311         icount_time_shift = 3;
5312         init_icount_adjust();
5313     }
5314
5315 #ifdef _WIN32
5316     socket_init();
5317 #endif
5318
5319     /* init network clients */
5320     if (nb_net_clients == 0) {
5321         /* if no clients, we use a default config */
5322         net_clients[nb_net_clients++] = "nic";
5323 #ifdef CONFIG_SLIRP
5324         net_clients[nb_net_clients++] = "user";
5325 #endif
5326     }
5327
5328     for(i = 0;i < nb_net_clients; i++) {
5329         if (net_client_parse(net_clients[i]) < 0)
5330             exit(1);
5331     }
5332     net_client_check();
5333
5334 #ifdef TARGET_I386
5335     /* XXX: this should be moved in the PC machine instantiation code */
5336     if (net_boot != 0) {
5337         int netroms = 0;
5338         for (i = 0; i < nb_nics && i < 4; i++) {
5339             const char *model = nd_table[i].model;
5340             char buf[1024];
5341             if (net_boot & (1 << i)) {
5342                 if (model == NULL)
5343                     model = "ne2k_pci";
5344                 snprintf(buf, sizeof(buf), "%s/pxe-%s.bin", bios_dir, model);
5345                 if (get_image_size(buf) > 0) {
5346                     if (nb_option_roms >= MAX_OPTION_ROMS) {
5347                         fprintf(stderr, "Too many option ROMs\n");
5348                         exit(1);
5349                     }
5350                     option_rom[nb_option_roms] = strdup(buf);
5351                     nb_option_roms++;
5352                     netroms++;
5353                 }
5354             }
5355         }
5356         if (netroms == 0) {
5357             fprintf(stderr, "No valid PXE rom found for network device\n");
5358             exit(1);
5359         }
5360     }
5361 #endif
5362
5363     /* init the bluetooth world */
5364     for (i = 0; i < nb_bt_opts; i++)
5365         if (bt_parse(bt_opts[i]))
5366             exit(1);
5367
5368     /* init the memory */
5369     phys_ram_size = machine->ram_require & ~RAMSIZE_FIXED;
5370
5371     if (machine->ram_require & RAMSIZE_FIXED) {
5372         if (ram_size > 0) {
5373             if (ram_size < phys_ram_size) {
5374                 fprintf(stderr, "Machine `%s' requires %llu bytes of memory\n",
5375                                 machine->name, (unsigned long long) phys_ram_size);
5376                 exit(-1);
5377             }
5378
5379             phys_ram_size = ram_size;
5380         } else
5381             ram_size = phys_ram_size;
5382     } else {
5383         if (ram_size == 0)
5384             ram_size = DEFAULT_RAM_SIZE * 1024 * 1024;
5385
5386         phys_ram_size += ram_size;
5387     }
5388
5389     phys_ram_base = qemu_vmalloc(phys_ram_size);
5390     if (!phys_ram_base) {
5391         fprintf(stderr, "Could not allocate physical memory\n");
5392         exit(1);
5393     }
5394
5395     /* init the dynamic translator */
5396     cpu_exec_init_all(tb_size * 1024 * 1024);
5397
5398     bdrv_init();
5399
5400     /* we always create the cdrom drive, even if no disk is there */
5401
5402     if (nb_drives_opt < MAX_DRIVES)
5403         drive_add(NULL, CDROM_ALIAS);
5404
5405     /* we always create at least one floppy */
5406
5407     if (nb_drives_opt < MAX_DRIVES)
5408         drive_add(NULL, FD_ALIAS, 0);
5409
5410     /* we always create one sd slot, even if no card is in it */
5411
5412     if (nb_drives_opt < MAX_DRIVES)
5413         drive_add(NULL, SD_ALIAS);
5414
5415     /* open the virtual block devices */
5416
5417     for(i = 0; i < nb_drives_opt; i++)
5418         if (drive_init(&drives_opt[i], snapshot, machine) == -1)
5419             exit(1);
5420
5421     register_savevm("timer", 0, 2, timer_save, timer_load, NULL);
5422     register_savevm_live("ram", 0, 3, ram_save_live, NULL, ram_load, NULL);
5423
5424 #ifndef _WIN32
5425     /* must be after terminal init, SDL library changes signal handlers */
5426     termsig_setup();
5427 #endif
5428
5429     /* Maintain compatibility with multiple stdio monitors */
5430     if (!strcmp(monitor_device,"stdio")) {
5431         for (i = 0; i < MAX_SERIAL_PORTS; i++) {
5432             const char *devname = serial_devices[i];
5433             if (devname && !strcmp(devname,"mon:stdio")) {
5434                 monitor_device = NULL;
5435                 break;
5436             } else if (devname && !strcmp(devname,"stdio")) {
5437                 monitor_device = NULL;
5438                 serial_devices[i] = "mon:stdio";
5439                 break;
5440             }
5441         }
5442     }
5443
5444     if (kvm_enabled()) {
5445         int ret;
5446
5447         ret = kvm_init(smp_cpus);
5448         if (ret < 0) {
5449             fprintf(stderr, "failed to initialize KVM\n");
5450             exit(1);
5451         }
5452     }
5453
5454     if (monitor_device) {
5455         monitor_hd = qemu_chr_open("monitor", monitor_device, NULL);
5456         if (!monitor_hd) {
5457             fprintf(stderr, "qemu: could not open monitor device '%s'\n", monitor_device);
5458             exit(1);
5459         }
5460     }
5461
5462     for(i = 0; i < MAX_SERIAL_PORTS; i++) {
5463         const char *devname = serial_devices[i];
5464         if (devname && strcmp(devname, "none")) {
5465             char label[32];
5466             snprintf(label, sizeof(label), "serial%d", i);
5467             serial_hds[i] = qemu_chr_open(label, devname, NULL);
5468             if (!serial_hds[i]) {
5469                 fprintf(stderr, "qemu: could not open serial device '%s'\n",
5470                         devname);
5471                 exit(1);
5472             }
5473         }
5474     }
5475
5476     for(i = 0; i < MAX_PARALLEL_PORTS; i++) {
5477         const char *devname = parallel_devices[i];
5478         if (devname && strcmp(devname, "none")) {
5479             char label[32];
5480             snprintf(label, sizeof(label), "parallel%d", i);
5481             parallel_hds[i] = qemu_chr_open(label, devname, NULL);
5482             if (!parallel_hds[i]) {
5483                 fprintf(stderr, "qemu: could not open parallel device '%s'\n",
5484                         devname);
5485                 exit(1);
5486             }
5487         }
5488     }
5489
5490     for(i = 0; i < MAX_VIRTIO_CONSOLES; i++) {
5491         const char *devname = virtio_consoles[i];
5492         if (devname && strcmp(devname, "none")) {
5493             char label[32];
5494             snprintf(label, sizeof(label), "virtcon%d", i);
5495             virtcon_hds[i] = qemu_chr_open(label, devname, NULL);
5496             if (!virtcon_hds[i]) {
5497                 fprintf(stderr, "qemu: could not open virtio console '%s'\n",
5498                         devname);
5499                 exit(1);
5500             }
5501         }
5502     }
5503
5504     machine->init(ram_size, vga_ram_size, boot_devices,
5505                   kernel_filename, kernel_cmdline, initrd_filename, cpu_model);
5506
5507     /* Set KVM's vcpu state to qemu's initial CPUState. */
5508     if (kvm_enabled()) {
5509         int ret;
5510
5511         ret = kvm_sync_vcpus();
5512         if (ret < 0) {
5513             fprintf(stderr, "failed to initialize vcpus\n");
5514             exit(1);
5515         }
5516     }
5517
5518     /* init USB devices */
5519     if (usb_enabled) {
5520         for(i = 0; i < usb_devices_index; i++) {
5521             if (usb_device_add(usb_devices[i]) < 0) {
5522                 fprintf(stderr, "Warning: could not add USB device %s\n",
5523                         usb_devices[i]);
5524             }
5525         }
5526     }
5527
5528     if (!display_state)
5529         dumb_display_init();
5530     /* just use the first displaystate for the moment */
5531     ds = display_state;
5532     /* terminal init */
5533     if (nographic) {
5534         if (curses) {
5535             fprintf(stderr, "fatal: -nographic can't be used with -curses\n");
5536             exit(1);
5537         }
5538     } else { 
5539 #if defined(CONFIG_CURSES)
5540             if (curses) {
5541                 /* At the moment curses cannot be used with other displays */
5542                 curses_display_init(ds, full_screen);
5543             } else
5544 #endif
5545             {
5546                 if (vnc_display != NULL) {
5547                     vnc_display_init(ds);
5548                     if (vnc_display_open(ds, vnc_display) < 0)
5549                         exit(1);
5550                 }
5551                 if (sdl || !vnc_display)
5552 #if defined(CONFIG_SDL)
5553                     sdl_display_init(ds, full_screen, no_frame);
5554 #elif defined(CONFIG_COCOA)
5555                     cocoa_display_init(ds, full_screen);
5556 #endif
5557             }
5558     }
5559     dpy_resize(ds);
5560
5561     dcl = ds->listeners;
5562     while (dcl != NULL) {
5563         if (dcl->dpy_refresh != NULL) {
5564             ds->gui_timer = qemu_new_timer(rt_clock, gui_update, ds);
5565             qemu_mod_timer(ds->gui_timer, qemu_get_clock(rt_clock));
5566         }
5567         dcl = dcl->next;
5568     }
5569
5570     text_consoles_set_display(display_state);
5571
5572     if (monitor_device && monitor_hd)
5573         monitor_init(monitor_hd, !nographic);
5574
5575     for(i = 0; i < MAX_SERIAL_PORTS; i++) {
5576         const char *devname = serial_devices[i];
5577         if (devname && strcmp(devname, "none")) {
5578             char label[32];
5579             snprintf(label, sizeof(label), "serial%d", i);
5580             if (strstart(devname, "vc", 0))
5581                 qemu_chr_printf(serial_hds[i], "serial%d console\r\n", i);
5582         }
5583     }
5584
5585     for(i = 0; i < MAX_PARALLEL_PORTS; i++) {
5586         const char *devname = parallel_devices[i];
5587         if (devname && strcmp(devname, "none")) {
5588             char label[32];
5589             snprintf(label, sizeof(label), "parallel%d", i);
5590             if (strstart(devname, "vc", 0))
5591                 qemu_chr_printf(parallel_hds[i], "parallel%d console\r\n", i);
5592         }
5593     }
5594
5595     for(i = 0; i < MAX_VIRTIO_CONSOLES; i++) {
5596         const char *devname = virtio_consoles[i];
5597         if (virtcon_hds[i] && devname) {
5598             char label[32];
5599             snprintf(label, sizeof(label), "virtcon%d", i);
5600             if (strstart(devname, "vc", 0))
5601                 qemu_chr_printf(virtcon_hds[i], "virtio console%d\r\n", i);
5602         }
5603     }
5604
5605 #ifdef CONFIG_GDBSTUB
5606     if (use_gdbstub) {
5607         /* XXX: use standard host:port notation and modify options
5608            accordingly. */
5609         if (gdbserver_start(gdbstub_port) < 0) {
5610             fprintf(stderr, "qemu: could not open gdbstub device on port '%s'\n",
5611                     gdbstub_port);
5612             exit(1);
5613         }
5614     }
5615 #endif
5616
5617     if (loadvm)
5618         do_loadvm(loadvm);
5619
5620     if (incoming) {
5621         autostart = 0; /* fixme how to deal with -daemonize */
5622         qemu_start_incoming_migration(incoming);
5623     }
5624
5625     {
5626         /* XXX: simplify init */
5627         read_passwords();
5628         if (autostart) {
5629             vm_start();
5630         }
5631     }
5632
5633     if (daemonize) {
5634         uint8_t status = 0;
5635         ssize_t len;
5636         int fd;
5637
5638     again1:
5639         len = write(fds[1], &status, 1);
5640         if (len == -1 && (errno == EINTR))
5641             goto again1;
5642
5643         if (len != 1)
5644             exit(1);
5645
5646         chdir("/");
5647         TFR(fd = open("/dev/null", O_RDWR));
5648         if (fd == -1)
5649             exit(1);
5650
5651         dup2(fd, 0);
5652         dup2(fd, 1);
5653         dup2(fd, 2);
5654
5655         close(fd);
5656     }
5657
5658     main_loop();
5659     quit_timers();
5660     net_cleanup();
5661
5662     return 0;
5663 }