Remove dumb_display (Stefan 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     register_displaystate(ds);
2782 }
2783
2784 /***********************************************************/
2785 /* I/O handling */
2786
2787 #define MAX_IO_HANDLERS 64
2788
2789 typedef struct IOHandlerRecord {
2790     int fd;
2791     IOCanRWHandler *fd_read_poll;
2792     IOHandler *fd_read;
2793     IOHandler *fd_write;
2794     int deleted;
2795     void *opaque;
2796     /* temporary data */
2797     struct pollfd *ufd;
2798     struct IOHandlerRecord *next;
2799 } IOHandlerRecord;
2800
2801 static IOHandlerRecord *first_io_handler;
2802
2803 /* XXX: fd_read_poll should be suppressed, but an API change is
2804    necessary in the character devices to suppress fd_can_read(). */
2805 int qemu_set_fd_handler2(int fd,
2806                          IOCanRWHandler *fd_read_poll,
2807                          IOHandler *fd_read,
2808                          IOHandler *fd_write,
2809                          void *opaque)
2810 {
2811     IOHandlerRecord **pioh, *ioh;
2812
2813     if (!fd_read && !fd_write) {
2814         pioh = &first_io_handler;
2815         for(;;) {
2816             ioh = *pioh;
2817             if (ioh == NULL)
2818                 break;
2819             if (ioh->fd == fd) {
2820                 ioh->deleted = 1;
2821                 break;
2822             }
2823             pioh = &ioh->next;
2824         }
2825     } else {
2826         for(ioh = first_io_handler; ioh != NULL; ioh = ioh->next) {
2827             if (ioh->fd == fd)
2828                 goto found;
2829         }
2830         ioh = qemu_mallocz(sizeof(IOHandlerRecord));
2831         if (!ioh)
2832             return -1;
2833         ioh->next = first_io_handler;
2834         first_io_handler = ioh;
2835     found:
2836         ioh->fd = fd;
2837         ioh->fd_read_poll = fd_read_poll;
2838         ioh->fd_read = fd_read;
2839         ioh->fd_write = fd_write;
2840         ioh->opaque = opaque;
2841         ioh->deleted = 0;
2842     }
2843     return 0;
2844 }
2845
2846 int qemu_set_fd_handler(int fd,
2847                         IOHandler *fd_read,
2848                         IOHandler *fd_write,
2849                         void *opaque)
2850 {
2851     return qemu_set_fd_handler2(fd, NULL, fd_read, fd_write, opaque);
2852 }
2853
2854 #ifdef _WIN32
2855 /***********************************************************/
2856 /* Polling handling */
2857
2858 typedef struct PollingEntry {
2859     PollingFunc *func;
2860     void *opaque;
2861     struct PollingEntry *next;
2862 } PollingEntry;
2863
2864 static PollingEntry *first_polling_entry;
2865
2866 int qemu_add_polling_cb(PollingFunc *func, void *opaque)
2867 {
2868     PollingEntry **ppe, *pe;
2869     pe = qemu_mallocz(sizeof(PollingEntry));
2870     if (!pe)
2871         return -1;
2872     pe->func = func;
2873     pe->opaque = opaque;
2874     for(ppe = &first_polling_entry; *ppe != NULL; ppe = &(*ppe)->next);
2875     *ppe = pe;
2876     return 0;
2877 }
2878
2879 void qemu_del_polling_cb(PollingFunc *func, void *opaque)
2880 {
2881     PollingEntry **ppe, *pe;
2882     for(ppe = &first_polling_entry; *ppe != NULL; ppe = &(*ppe)->next) {
2883         pe = *ppe;
2884         if (pe->func == func && pe->opaque == opaque) {
2885             *ppe = pe->next;
2886             qemu_free(pe);
2887             break;
2888         }
2889     }
2890 }
2891
2892 /***********************************************************/
2893 /* Wait objects support */
2894 typedef struct WaitObjects {
2895     int num;
2896     HANDLE events[MAXIMUM_WAIT_OBJECTS + 1];
2897     WaitObjectFunc *func[MAXIMUM_WAIT_OBJECTS + 1];
2898     void *opaque[MAXIMUM_WAIT_OBJECTS + 1];
2899 } WaitObjects;
2900
2901 static WaitObjects wait_objects = {0};
2902
2903 int qemu_add_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
2904 {
2905     WaitObjects *w = &wait_objects;
2906
2907     if (w->num >= MAXIMUM_WAIT_OBJECTS)
2908         return -1;
2909     w->events[w->num] = handle;
2910     w->func[w->num] = func;
2911     w->opaque[w->num] = opaque;
2912     w->num++;
2913     return 0;
2914 }
2915
2916 void qemu_del_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
2917 {
2918     int i, found;
2919     WaitObjects *w = &wait_objects;
2920
2921     found = 0;
2922     for (i = 0; i < w->num; i++) {
2923         if (w->events[i] == handle)
2924             found = 1;
2925         if (found) {
2926             w->events[i] = w->events[i + 1];
2927             w->func[i] = w->func[i + 1];
2928             w->opaque[i] = w->opaque[i + 1];
2929         }
2930     }
2931     if (found)
2932         w->num--;
2933 }
2934 #endif
2935
2936 /***********************************************************/
2937 /* ram save/restore */
2938
2939 static int ram_get_page(QEMUFile *f, uint8_t *buf, int len)
2940 {
2941     int v;
2942
2943     v = qemu_get_byte(f);
2944     switch(v) {
2945     case 0:
2946         if (qemu_get_buffer(f, buf, len) != len)
2947             return -EIO;
2948         break;
2949     case 1:
2950         v = qemu_get_byte(f);
2951         memset(buf, v, len);
2952         break;
2953     default:
2954         return -EINVAL;
2955     }
2956
2957     if (qemu_file_has_error(f))
2958         return -EIO;
2959
2960     return 0;
2961 }
2962
2963 static int ram_load_v1(QEMUFile *f, void *opaque)
2964 {
2965     int ret;
2966     ram_addr_t i;
2967
2968     if (qemu_get_be32(f) != phys_ram_size)
2969         return -EINVAL;
2970     for(i = 0; i < phys_ram_size; i+= TARGET_PAGE_SIZE) {
2971         ret = ram_get_page(f, phys_ram_base + i, TARGET_PAGE_SIZE);
2972         if (ret)
2973             return ret;
2974     }
2975     return 0;
2976 }
2977
2978 #define BDRV_HASH_BLOCK_SIZE 1024
2979 #define IOBUF_SIZE 4096
2980 #define RAM_CBLOCK_MAGIC 0xfabe
2981
2982 typedef struct RamDecompressState {
2983     z_stream zstream;
2984     QEMUFile *f;
2985     uint8_t buf[IOBUF_SIZE];
2986 } RamDecompressState;
2987
2988 static int ram_decompress_open(RamDecompressState *s, QEMUFile *f)
2989 {
2990     int ret;
2991     memset(s, 0, sizeof(*s));
2992     s->f = f;
2993     ret = inflateInit(&s->zstream);
2994     if (ret != Z_OK)
2995         return -1;
2996     return 0;
2997 }
2998
2999 static int ram_decompress_buf(RamDecompressState *s, uint8_t *buf, int len)
3000 {
3001     int ret, clen;
3002
3003     s->zstream.avail_out = len;
3004     s->zstream.next_out = buf;
3005     while (s->zstream.avail_out > 0) {
3006         if (s->zstream.avail_in == 0) {
3007             if (qemu_get_be16(s->f) != RAM_CBLOCK_MAGIC)
3008                 return -1;
3009             clen = qemu_get_be16(s->f);
3010             if (clen > IOBUF_SIZE)
3011                 return -1;
3012             qemu_get_buffer(s->f, s->buf, clen);
3013             s->zstream.avail_in = clen;
3014             s->zstream.next_in = s->buf;
3015         }
3016         ret = inflate(&s->zstream, Z_PARTIAL_FLUSH);
3017         if (ret != Z_OK && ret != Z_STREAM_END) {
3018             return -1;
3019         }
3020     }
3021     return 0;
3022 }
3023
3024 static void ram_decompress_close(RamDecompressState *s)
3025 {
3026     inflateEnd(&s->zstream);
3027 }
3028
3029 #define RAM_SAVE_FLAG_FULL      0x01
3030 #define RAM_SAVE_FLAG_COMPRESS  0x02
3031 #define RAM_SAVE_FLAG_MEM_SIZE  0x04
3032 #define RAM_SAVE_FLAG_PAGE      0x08
3033 #define RAM_SAVE_FLAG_EOS       0x10
3034
3035 static int is_dup_page(uint8_t *page, uint8_t ch)
3036 {
3037     uint32_t val = ch << 24 | ch << 16 | ch << 8 | ch;
3038     uint32_t *array = (uint32_t *)page;
3039     int i;
3040
3041     for (i = 0; i < (TARGET_PAGE_SIZE / 4); i++) {
3042         if (array[i] != val)
3043             return 0;
3044     }
3045
3046     return 1;
3047 }
3048
3049 static int ram_save_block(QEMUFile *f)
3050 {
3051     static ram_addr_t current_addr = 0;
3052     ram_addr_t saved_addr = current_addr;
3053     ram_addr_t addr = 0;
3054     int found = 0;
3055
3056     while (addr < phys_ram_size) {
3057         if (cpu_physical_memory_get_dirty(current_addr, MIGRATION_DIRTY_FLAG)) {
3058             uint8_t ch;
3059
3060             cpu_physical_memory_reset_dirty(current_addr,
3061                                             current_addr + TARGET_PAGE_SIZE,
3062                                             MIGRATION_DIRTY_FLAG);
3063
3064             ch = *(phys_ram_base + current_addr);
3065
3066             if (is_dup_page(phys_ram_base + current_addr, ch)) {
3067                 qemu_put_be64(f, current_addr | RAM_SAVE_FLAG_COMPRESS);
3068                 qemu_put_byte(f, ch);
3069             } else {
3070                 qemu_put_be64(f, current_addr | RAM_SAVE_FLAG_PAGE);
3071                 qemu_put_buffer(f, phys_ram_base + current_addr, TARGET_PAGE_SIZE);
3072             }
3073
3074             found = 1;
3075             break;
3076         }
3077         addr += TARGET_PAGE_SIZE;
3078         current_addr = (saved_addr + addr) % phys_ram_size;
3079     }
3080
3081     return found;
3082 }
3083
3084 static ram_addr_t ram_save_threshold = 10;
3085
3086 static ram_addr_t ram_save_remaining(void)
3087 {
3088     ram_addr_t addr;
3089     ram_addr_t count = 0;
3090
3091     for (addr = 0; addr < phys_ram_size; addr += TARGET_PAGE_SIZE) {
3092         if (cpu_physical_memory_get_dirty(addr, MIGRATION_DIRTY_FLAG))
3093             count++;
3094     }
3095
3096     return count;
3097 }
3098
3099 static int ram_save_live(QEMUFile *f, int stage, void *opaque)
3100 {
3101     ram_addr_t addr;
3102
3103     if (stage == 1) {
3104         /* Make sure all dirty bits are set */
3105         for (addr = 0; addr < phys_ram_size; addr += TARGET_PAGE_SIZE) {
3106             if (!cpu_physical_memory_get_dirty(addr, MIGRATION_DIRTY_FLAG))
3107                 cpu_physical_memory_set_dirty(addr);
3108         }
3109         
3110         /* Enable dirty memory tracking */
3111         cpu_physical_memory_set_dirty_tracking(1);
3112
3113         qemu_put_be64(f, phys_ram_size | RAM_SAVE_FLAG_MEM_SIZE);
3114     }
3115
3116     while (!qemu_file_rate_limit(f)) {
3117         int ret;
3118
3119         ret = ram_save_block(f);
3120         if (ret == 0) /* no more blocks */
3121             break;
3122     }
3123
3124     /* try transferring iterative blocks of memory */
3125
3126     if (stage == 3) {
3127         cpu_physical_memory_set_dirty_tracking(0);
3128
3129         /* flush all remaining blocks regardless of rate limiting */
3130         while (ram_save_block(f) != 0);
3131     }
3132
3133     qemu_put_be64(f, RAM_SAVE_FLAG_EOS);
3134
3135     return (stage == 2) && (ram_save_remaining() < ram_save_threshold);
3136 }
3137
3138 static int ram_load_dead(QEMUFile *f, void *opaque)
3139 {
3140     RamDecompressState s1, *s = &s1;
3141     uint8_t buf[10];
3142     ram_addr_t i;
3143
3144     if (ram_decompress_open(s, f) < 0)
3145         return -EINVAL;
3146     for(i = 0; i < phys_ram_size; i+= BDRV_HASH_BLOCK_SIZE) {
3147         if (ram_decompress_buf(s, buf, 1) < 0) {
3148             fprintf(stderr, "Error while reading ram block header\n");
3149             goto error;
3150         }
3151         if (buf[0] == 0) {
3152             if (ram_decompress_buf(s, phys_ram_base + i, BDRV_HASH_BLOCK_SIZE) < 0) {
3153                 fprintf(stderr, "Error while reading ram block address=0x%08" PRIx64, (uint64_t)i);
3154                 goto error;
3155             }
3156         } else {
3157         error:
3158             printf("Error block header\n");
3159             return -EINVAL;
3160         }
3161     }
3162     ram_decompress_close(s);
3163
3164     return 0;
3165 }
3166
3167 static int ram_load(QEMUFile *f, void *opaque, int version_id)
3168 {
3169     ram_addr_t addr;
3170     int flags;
3171
3172     if (version_id == 1)
3173         return ram_load_v1(f, opaque);
3174
3175     if (version_id == 2) {
3176         if (qemu_get_be32(f) != phys_ram_size)
3177             return -EINVAL;
3178         return ram_load_dead(f, opaque);
3179     }
3180
3181     if (version_id != 3)
3182         return -EINVAL;
3183
3184     do {
3185         addr = qemu_get_be64(f);
3186
3187         flags = addr & ~TARGET_PAGE_MASK;
3188         addr &= TARGET_PAGE_MASK;
3189
3190         if (flags & RAM_SAVE_FLAG_MEM_SIZE) {
3191             if (addr != phys_ram_size)
3192                 return -EINVAL;
3193         }
3194
3195         if (flags & RAM_SAVE_FLAG_FULL) {
3196             if (ram_load_dead(f, opaque) < 0)
3197                 return -EINVAL;
3198         }
3199         
3200         if (flags & RAM_SAVE_FLAG_COMPRESS) {
3201             uint8_t ch = qemu_get_byte(f);
3202             memset(phys_ram_base + addr, ch, TARGET_PAGE_SIZE);
3203         } else if (flags & RAM_SAVE_FLAG_PAGE)
3204             qemu_get_buffer(f, phys_ram_base + addr, TARGET_PAGE_SIZE);
3205     } while (!(flags & RAM_SAVE_FLAG_EOS));
3206
3207     return 0;
3208 }
3209
3210 void qemu_service_io(void)
3211 {
3212     CPUState *env = cpu_single_env;
3213     if (env) {
3214         cpu_interrupt(env, CPU_INTERRUPT_EXIT);
3215 #ifdef USE_KQEMU
3216         if (env->kqemu_enabled) {
3217             kqemu_cpu_interrupt(env);
3218         }
3219 #endif
3220     }
3221 }
3222
3223 /***********************************************************/
3224 /* bottom halves (can be seen as timers which expire ASAP) */
3225
3226 struct QEMUBH {
3227     QEMUBHFunc *cb;
3228     void *opaque;
3229     int scheduled;
3230     int idle;
3231     int deleted;
3232     QEMUBH *next;
3233 };
3234
3235 static QEMUBH *first_bh = NULL;
3236
3237 QEMUBH *qemu_bh_new(QEMUBHFunc *cb, void *opaque)
3238 {
3239     QEMUBH *bh;
3240     bh = qemu_mallocz(sizeof(QEMUBH));
3241     if (!bh)
3242         return NULL;
3243     bh->cb = cb;
3244     bh->opaque = opaque;
3245     bh->next = first_bh;
3246     first_bh = bh;
3247     return bh;
3248 }
3249
3250 int qemu_bh_poll(void)
3251 {
3252     QEMUBH *bh, **bhp;
3253     int ret;
3254
3255     ret = 0;
3256     for (bh = first_bh; bh; bh = bh->next) {
3257         if (!bh->deleted && bh->scheduled) {
3258             bh->scheduled = 0;
3259             if (!bh->idle)
3260                 ret = 1;
3261             bh->idle = 0;
3262             bh->cb(bh->opaque);
3263         }
3264     }
3265
3266     /* remove deleted bhs */
3267     bhp = &first_bh;
3268     while (*bhp) {
3269         bh = *bhp;
3270         if (bh->deleted) {
3271             *bhp = bh->next;
3272             qemu_free(bh);
3273         } else
3274             bhp = &bh->next;
3275     }
3276
3277     return ret;
3278 }
3279
3280 void qemu_bh_schedule_idle(QEMUBH *bh)
3281 {
3282     if (bh->scheduled)
3283         return;
3284     bh->scheduled = 1;
3285     bh->idle = 1;
3286 }
3287
3288 void qemu_bh_schedule(QEMUBH *bh)
3289 {
3290     CPUState *env = cpu_single_env;
3291     if (bh->scheduled)
3292         return;
3293     bh->scheduled = 1;
3294     bh->idle = 0;
3295     /* stop the currently executing CPU to execute the BH ASAP */
3296     if (env) {
3297         cpu_interrupt(env, CPU_INTERRUPT_EXIT);
3298     }
3299 }
3300
3301 void qemu_bh_cancel(QEMUBH *bh)
3302 {
3303     bh->scheduled = 0;
3304 }
3305
3306 void qemu_bh_delete(QEMUBH *bh)
3307 {
3308     bh->scheduled = 0;
3309     bh->deleted = 1;
3310 }
3311
3312 static void qemu_bh_update_timeout(int *timeout)
3313 {
3314     QEMUBH *bh;
3315
3316     for (bh = first_bh; bh; bh = bh->next) {
3317         if (!bh->deleted && bh->scheduled) {
3318             if (bh->idle) {
3319                 /* idle bottom halves will be polled at least
3320                  * every 10ms */
3321                 *timeout = MIN(10, *timeout);
3322             } else {
3323                 /* non-idle bottom halves will be executed
3324                  * immediately */
3325                 *timeout = 0;
3326                 break;
3327             }
3328         }
3329     }
3330 }
3331
3332 /***********************************************************/
3333 /* machine registration */
3334
3335 static QEMUMachine *first_machine = NULL;
3336
3337 int qemu_register_machine(QEMUMachine *m)
3338 {
3339     QEMUMachine **pm;
3340     pm = &first_machine;
3341     while (*pm != NULL)
3342         pm = &(*pm)->next;
3343     m->next = NULL;
3344     *pm = m;
3345     return 0;
3346 }
3347
3348 static QEMUMachine *find_machine(const char *name)
3349 {
3350     QEMUMachine *m;
3351
3352     for(m = first_machine; m != NULL; m = m->next) {
3353         if (!strcmp(m->name, name))
3354             return m;
3355     }
3356     return NULL;
3357 }
3358
3359 /***********************************************************/
3360 /* main execution loop */
3361
3362 static void gui_update(void *opaque)
3363 {
3364     uint64_t interval = GUI_REFRESH_INTERVAL;
3365     DisplayState *ds = opaque;
3366     DisplayChangeListener *dcl = ds->listeners;
3367
3368     dpy_refresh(ds);
3369
3370     while (dcl != NULL) {
3371         if (dcl->gui_timer_interval &&
3372             dcl->gui_timer_interval < interval)
3373             interval = dcl->gui_timer_interval;
3374         dcl = dcl->next;
3375     }
3376     qemu_mod_timer(ds->gui_timer, interval + qemu_get_clock(rt_clock));
3377 }
3378
3379 struct vm_change_state_entry {
3380     VMChangeStateHandler *cb;
3381     void *opaque;
3382     LIST_ENTRY (vm_change_state_entry) entries;
3383 };
3384
3385 static LIST_HEAD(vm_change_state_head, vm_change_state_entry) vm_change_state_head;
3386
3387 VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
3388                                                      void *opaque)
3389 {
3390     VMChangeStateEntry *e;
3391
3392     e = qemu_mallocz(sizeof (*e));
3393     if (!e)
3394         return NULL;
3395
3396     e->cb = cb;
3397     e->opaque = opaque;
3398     LIST_INSERT_HEAD(&vm_change_state_head, e, entries);
3399     return e;
3400 }
3401
3402 void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
3403 {
3404     LIST_REMOVE (e, entries);
3405     qemu_free (e);
3406 }
3407
3408 static void vm_state_notify(int running)
3409 {
3410     VMChangeStateEntry *e;
3411
3412     for (e = vm_change_state_head.lh_first; e; e = e->entries.le_next) {
3413         e->cb(e->opaque, running);
3414     }
3415 }
3416
3417 /* XXX: support several handlers */
3418 static VMStopHandler *vm_stop_cb;
3419 static void *vm_stop_opaque;
3420
3421 int qemu_add_vm_stop_handler(VMStopHandler *cb, void *opaque)
3422 {
3423     vm_stop_cb = cb;
3424     vm_stop_opaque = opaque;
3425     return 0;
3426 }
3427
3428 void qemu_del_vm_stop_handler(VMStopHandler *cb, void *opaque)
3429 {
3430     vm_stop_cb = NULL;
3431 }
3432
3433 void vm_start(void)
3434 {
3435     if (!vm_running) {
3436         cpu_enable_ticks();
3437         vm_running = 1;
3438         vm_state_notify(1);
3439         qemu_rearm_alarm_timer(alarm_timer);
3440     }
3441 }
3442
3443 void vm_stop(int reason)
3444 {
3445     if (vm_running) {
3446         cpu_disable_ticks();
3447         vm_running = 0;
3448         if (reason != 0) {
3449             if (vm_stop_cb) {
3450                 vm_stop_cb(vm_stop_opaque, reason);
3451             }
3452         }
3453         vm_state_notify(0);
3454     }
3455 }
3456
3457 /* reset/shutdown handler */
3458
3459 typedef struct QEMUResetEntry {
3460     QEMUResetHandler *func;
3461     void *opaque;
3462     struct QEMUResetEntry *next;
3463 } QEMUResetEntry;
3464
3465 static QEMUResetEntry *first_reset_entry;
3466 static int reset_requested;
3467 static int shutdown_requested;
3468 static int powerdown_requested;
3469
3470 int qemu_shutdown_requested(void)
3471 {
3472     int r = shutdown_requested;
3473     shutdown_requested = 0;
3474     return r;
3475 }
3476
3477 int qemu_reset_requested(void)
3478 {
3479     int r = reset_requested;
3480     reset_requested = 0;
3481     return r;
3482 }
3483
3484 int qemu_powerdown_requested(void)
3485 {
3486     int r = powerdown_requested;
3487     powerdown_requested = 0;
3488     return r;
3489 }
3490
3491 void qemu_register_reset(QEMUResetHandler *func, void *opaque)
3492 {
3493     QEMUResetEntry **pre, *re;
3494
3495     pre = &first_reset_entry;
3496     while (*pre != NULL)
3497         pre = &(*pre)->next;
3498     re = qemu_mallocz(sizeof(QEMUResetEntry));
3499     re->func = func;
3500     re->opaque = opaque;
3501     re->next = NULL;
3502     *pre = re;
3503 }
3504
3505 void qemu_system_reset(void)
3506 {
3507     QEMUResetEntry *re;
3508
3509     /* reset all devices */
3510     for(re = first_reset_entry; re != NULL; re = re->next) {
3511         re->func(re->opaque);
3512     }
3513 }
3514
3515 void qemu_system_reset_request(void)
3516 {
3517     if (no_reboot) {
3518         shutdown_requested = 1;
3519     } else {
3520         reset_requested = 1;
3521     }
3522     if (cpu_single_env)
3523         cpu_interrupt(cpu_single_env, CPU_INTERRUPT_EXIT);
3524 }
3525
3526 void qemu_system_shutdown_request(void)
3527 {
3528     shutdown_requested = 1;
3529     if (cpu_single_env)
3530         cpu_interrupt(cpu_single_env, CPU_INTERRUPT_EXIT);
3531 }
3532
3533 void qemu_system_powerdown_request(void)
3534 {
3535     powerdown_requested = 1;
3536     if (cpu_single_env)
3537         cpu_interrupt(cpu_single_env, CPU_INTERRUPT_EXIT);
3538 }
3539
3540 #ifdef _WIN32
3541 static void host_main_loop_wait(int *timeout)
3542 {
3543     int ret, ret2, i;
3544     PollingEntry *pe;
3545
3546
3547     /* XXX: need to suppress polling by better using win32 events */
3548     ret = 0;
3549     for(pe = first_polling_entry; pe != NULL; pe = pe->next) {
3550         ret |= pe->func(pe->opaque);
3551     }
3552     if (ret == 0) {
3553         int err;
3554         WaitObjects *w = &wait_objects;
3555
3556         ret = WaitForMultipleObjects(w->num, w->events, FALSE, *timeout);
3557         if (WAIT_OBJECT_0 + 0 <= ret && ret <= WAIT_OBJECT_0 + w->num - 1) {
3558             if (w->func[ret - WAIT_OBJECT_0])
3559                 w->func[ret - WAIT_OBJECT_0](w->opaque[ret - WAIT_OBJECT_0]);
3560
3561             /* Check for additional signaled events */
3562             for(i = (ret - WAIT_OBJECT_0 + 1); i < w->num; i++) {
3563
3564                 /* Check if event is signaled */
3565                 ret2 = WaitForSingleObject(w->events[i], 0);
3566                 if(ret2 == WAIT_OBJECT_0) {
3567                     if (w->func[i])
3568                         w->func[i](w->opaque[i]);
3569                 } else if (ret2 == WAIT_TIMEOUT) {
3570                 } else {
3571                     err = GetLastError();
3572                     fprintf(stderr, "WaitForSingleObject error %d %d\n", i, err);
3573                 }
3574             }
3575         } else if (ret == WAIT_TIMEOUT) {
3576         } else {
3577             err = GetLastError();
3578             fprintf(stderr, "WaitForMultipleObjects error %d %d\n", ret, err);
3579         }
3580     }
3581
3582     *timeout = 0;
3583 }
3584 #else
3585 static void host_main_loop_wait(int *timeout)
3586 {
3587 }
3588 #endif
3589
3590 void main_loop_wait(int timeout)
3591 {
3592     IOHandlerRecord *ioh;
3593     fd_set rfds, wfds, xfds;
3594     int ret, nfds;
3595     struct timeval tv;
3596
3597     qemu_bh_update_timeout(&timeout);
3598
3599     host_main_loop_wait(&timeout);
3600
3601     /* poll any events */
3602     /* XXX: separate device handlers from system ones */
3603     nfds = -1;
3604     FD_ZERO(&rfds);
3605     FD_ZERO(&wfds);
3606     FD_ZERO(&xfds);
3607     for(ioh = first_io_handler; ioh != NULL; ioh = ioh->next) {
3608         if (ioh->deleted)
3609             continue;
3610         if (ioh->fd_read &&
3611             (!ioh->fd_read_poll ||
3612              ioh->fd_read_poll(ioh->opaque) != 0)) {
3613             FD_SET(ioh->fd, &rfds);
3614             if (ioh->fd > nfds)
3615                 nfds = ioh->fd;
3616         }
3617         if (ioh->fd_write) {
3618             FD_SET(ioh->fd, &wfds);
3619             if (ioh->fd > nfds)
3620                 nfds = ioh->fd;
3621         }
3622     }
3623
3624     tv.tv_sec = timeout / 1000;
3625     tv.tv_usec = (timeout % 1000) * 1000;
3626
3627 #if defined(CONFIG_SLIRP)
3628     if (slirp_is_inited()) {
3629         slirp_select_fill(&nfds, &rfds, &wfds, &xfds);
3630     }
3631 #endif
3632     ret = select(nfds + 1, &rfds, &wfds, &xfds, &tv);
3633     if (ret > 0) {
3634         IOHandlerRecord **pioh;
3635
3636         for(ioh = first_io_handler; ioh != NULL; ioh = ioh->next) {
3637             if (!ioh->deleted && ioh->fd_read && FD_ISSET(ioh->fd, &rfds)) {
3638                 ioh->fd_read(ioh->opaque);
3639             }
3640             if (!ioh->deleted && ioh->fd_write && FD_ISSET(ioh->fd, &wfds)) {
3641                 ioh->fd_write(ioh->opaque);
3642             }
3643         }
3644
3645         /* remove deleted IO handlers */
3646         pioh = &first_io_handler;
3647         while (*pioh) {
3648             ioh = *pioh;
3649             if (ioh->deleted) {
3650                 *pioh = ioh->next;
3651                 qemu_free(ioh);
3652             } else
3653                 pioh = &ioh->next;
3654         }
3655     }
3656 #if defined(CONFIG_SLIRP)
3657     if (slirp_is_inited()) {
3658         if (ret < 0) {
3659             FD_ZERO(&rfds);
3660             FD_ZERO(&wfds);
3661             FD_ZERO(&xfds);
3662         }
3663         slirp_select_poll(&rfds, &wfds, &xfds);
3664     }
3665 #endif
3666
3667     /* vm time timers */
3668     if (vm_running && likely(!(cur_cpu->singlestep_enabled & SSTEP_NOTIMER)))
3669         qemu_run_timers(&active_timers[QEMU_TIMER_VIRTUAL],
3670                         qemu_get_clock(vm_clock));
3671
3672     /* real time timers */
3673     qemu_run_timers(&active_timers[QEMU_TIMER_REALTIME],
3674                     qemu_get_clock(rt_clock));
3675
3676     /* Check bottom-halves last in case any of the earlier events triggered
3677        them.  */
3678     qemu_bh_poll();
3679
3680 }
3681
3682 static int main_loop(void)
3683 {
3684     int ret, timeout;
3685 #ifdef CONFIG_PROFILER
3686     int64_t ti;
3687 #endif
3688     CPUState *env;
3689
3690     cur_cpu = first_cpu;
3691     next_cpu = cur_cpu->next_cpu ?: first_cpu;
3692     for(;;) {
3693         if (vm_running) {
3694
3695             for(;;) {
3696                 /* get next cpu */
3697                 env = next_cpu;
3698 #ifdef CONFIG_PROFILER
3699                 ti = profile_getclock();
3700 #endif
3701                 if (use_icount) {
3702                     int64_t count;
3703                     int decr;
3704                     qemu_icount -= (env->icount_decr.u16.low + env->icount_extra);
3705                     env->icount_decr.u16.low = 0;
3706                     env->icount_extra = 0;
3707                     count = qemu_next_deadline();
3708                     count = (count + (1 << icount_time_shift) - 1)
3709                             >> icount_time_shift;
3710                     qemu_icount += count;
3711                     decr = (count > 0xffff) ? 0xffff : count;
3712                     count -= decr;
3713                     env->icount_decr.u16.low = decr;
3714                     env->icount_extra = count;
3715                 }
3716                 ret = cpu_exec(env);
3717 #ifdef CONFIG_PROFILER
3718                 qemu_time += profile_getclock() - ti;
3719 #endif
3720                 if (use_icount) {
3721                     /* Fold pending instructions back into the
3722                        instruction counter, and clear the interrupt flag.  */
3723                     qemu_icount -= (env->icount_decr.u16.low
3724                                     + env->icount_extra);
3725                     env->icount_decr.u32 = 0;
3726                     env->icount_extra = 0;
3727                 }
3728                 next_cpu = env->next_cpu ?: first_cpu;
3729                 if (event_pending && likely(ret != EXCP_DEBUG)) {
3730                     ret = EXCP_INTERRUPT;
3731                     event_pending = 0;
3732                     break;
3733                 }
3734                 if (ret == EXCP_HLT) {
3735                     /* Give the next CPU a chance to run.  */
3736                     cur_cpu = env;
3737                     continue;
3738                 }
3739                 if (ret != EXCP_HALTED)
3740                     break;
3741                 /* all CPUs are halted ? */
3742                 if (env == cur_cpu)
3743                     break;
3744             }
3745             cur_cpu = env;
3746
3747             if (shutdown_requested) {
3748                 ret = EXCP_INTERRUPT;
3749                 if (no_shutdown) {
3750                     vm_stop(0);
3751                     no_shutdown = 0;
3752                 }
3753                 else
3754                     break;
3755             }
3756             if (reset_requested) {
3757                 reset_requested = 0;
3758                 qemu_system_reset();
3759                 ret = EXCP_INTERRUPT;
3760             }
3761             if (powerdown_requested) {
3762                 powerdown_requested = 0;
3763                 qemu_system_powerdown();
3764                 ret = EXCP_INTERRUPT;
3765             }
3766             if (unlikely(ret == EXCP_DEBUG)) {
3767                 gdb_set_stop_cpu(cur_cpu);
3768                 vm_stop(EXCP_DEBUG);
3769             }
3770             /* If all cpus are halted then wait until the next IRQ */
3771             /* XXX: use timeout computed from timers */
3772             if (ret == EXCP_HALTED) {
3773                 if (use_icount) {
3774                     int64_t add;
3775                     int64_t delta;
3776                     /* Advance virtual time to the next event.  */
3777                     if (use_icount == 1) {
3778                         /* When not using an adaptive execution frequency
3779                            we tend to get badly out of sync with real time,
3780                            so just delay for a reasonable amount of time.  */
3781                         delta = 0;
3782                     } else {
3783                         delta = cpu_get_icount() - cpu_get_clock();
3784                     }
3785                     if (delta > 0) {
3786                         /* If virtual time is ahead of real time then just
3787                            wait for IO.  */
3788                         timeout = (delta / 1000000) + 1;
3789                     } else {
3790                         /* Wait for either IO to occur or the next
3791                            timer event.  */
3792                         add = qemu_next_deadline();
3793                         /* We advance the timer before checking for IO.
3794                            Limit the amount we advance so that early IO
3795                            activity won't get the guest too far ahead.  */
3796                         if (add > 10000000)
3797                             add = 10000000;
3798                         delta += add;
3799                         add = (add + (1 << icount_time_shift) - 1)
3800                               >> icount_time_shift;
3801                         qemu_icount += add;
3802                         timeout = delta / 1000000;
3803                         if (timeout < 0)
3804                             timeout = 0;
3805                     }
3806                 } else {
3807                     timeout = 5000;
3808                 }
3809             } else {
3810                 timeout = 0;
3811             }
3812         } else {
3813             if (shutdown_requested) {
3814                 ret = EXCP_INTERRUPT;
3815                 break;
3816             }
3817             timeout = 5000;
3818         }
3819 #ifdef CONFIG_PROFILER
3820         ti = profile_getclock();
3821 #endif
3822         main_loop_wait(timeout);
3823 #ifdef CONFIG_PROFILER
3824         dev_time += profile_getclock() - ti;
3825 #endif
3826     }
3827     cpu_disable_ticks();
3828     return ret;
3829 }
3830
3831 static void help(int exitcode)
3832 {
3833     printf("QEMU PC emulator version " QEMU_VERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n"
3834            "usage: %s [options] [disk_image]\n"
3835            "\n"
3836            "'disk_image' is a raw hard image image for IDE hard disk 0\n"
3837            "\n"
3838            "Standard options:\n"
3839            "-M machine      select emulated machine (-M ? for list)\n"
3840            "-cpu cpu        select CPU (-cpu ? for list)\n"
3841            "-fda/-fdb file  use 'file' as floppy disk 0/1 image\n"
3842            "-hda/-hdb file  use 'file' as IDE hard disk 0/1 image\n"
3843            "-hdc/-hdd file  use 'file' as IDE hard disk 2/3 image\n"
3844            "-cdrom file     use 'file' as IDE cdrom image (cdrom is ide1 master)\n"
3845            "-drive [file=file][,if=type][,bus=n][,unit=m][,media=d][,index=i]\n"
3846            "       [,cyls=c,heads=h,secs=s[,trans=t]][,snapshot=on|off]\n"
3847            "       [,cache=writethrough|writeback|none][,format=f][,serial=s]\n"
3848            "                use 'file' as a drive image\n"
3849            "-mtdblock file  use 'file' as on-board Flash memory image\n"
3850            "-sd file        use 'file' as SecureDigital card image\n"
3851            "-pflash file    use 'file' as a parallel flash image\n"
3852            "-boot [a|c|d|n] boot on floppy (a), hard disk (c), CD-ROM (d), or network (n)\n"
3853            "-snapshot       write to temporary files instead of disk image files\n"
3854 #ifdef CONFIG_SDL
3855            "-no-frame       open SDL window without a frame and window decorations\n"
3856            "-alt-grab       use Ctrl-Alt-Shift to grab mouse (instead of Ctrl-Alt)\n"
3857            "-no-quit        disable SDL window close capability\n"
3858            "-sdl            enable SDL\n"
3859 #endif
3860 #ifdef TARGET_I386
3861            "-no-fd-bootchk  disable boot signature checking for floppy disks\n"
3862 #endif
3863            "-m megs         set virtual RAM size to megs MB [default=%d]\n"
3864            "-smp n          set the number of CPUs to 'n' [default=1]\n"
3865            "-nographic      disable graphical output and redirect serial I/Os to console\n"
3866            "-portrait       rotate graphical output 90 deg left (only PXA LCD)\n"
3867 #ifndef _WIN32
3868            "-k language     use keyboard layout (for example \"fr\" for French)\n"
3869 #endif
3870 #ifdef HAS_AUDIO
3871            "-audio-help     print list of audio drivers and their options\n"
3872            "-soundhw c1,... enable audio support\n"
3873            "                and only specified sound cards (comma separated list)\n"
3874            "                use -soundhw ? to get the list of supported cards\n"
3875            "                use -soundhw all to enable all of them\n"
3876 #endif
3877            "-vga [std|cirrus|vmware|none]\n"
3878            "                select video card type\n"
3879            "-localtime      set the real time clock to local time [default=utc]\n"
3880            "-full-screen    start in full screen\n"
3881 #ifdef TARGET_I386
3882            "-win2k-hack     use it when installing Windows 2000 to avoid a disk full bug\n"
3883            "-rtc-td-hack    use it to fix time drift in Windows ACPI HAL\n"
3884 #endif
3885            "-usb            enable the USB driver (will be the default soon)\n"
3886            "-usbdevice name add the host or guest USB device 'name'\n"
3887 #if defined(TARGET_PPC) || defined(TARGET_SPARC)
3888            "-g WxH[xDEPTH]  Set the initial graphical resolution and depth\n"
3889 #endif
3890            "-name string    set the name of the guest\n"
3891            "-uuid %%08x-%%04x-%%04x-%%04x-%%012x specify machine UUID\n"
3892            "\n"
3893            "Network options:\n"
3894            "-net nic[,vlan=n][,macaddr=addr][,model=type][,name=str]\n"
3895            "                create a new Network Interface Card and connect it to VLAN 'n'\n"
3896 #ifdef CONFIG_SLIRP
3897            "-net user[,vlan=n][,name=str][,hostname=host]\n"
3898            "                connect the user mode network stack to VLAN 'n' and send\n"
3899            "                hostname 'host' to DHCP clients\n"
3900 #endif
3901 #ifdef _WIN32
3902            "-net tap[,vlan=n][,name=str],ifname=name\n"
3903            "                connect the host TAP network interface to VLAN 'n'\n"
3904 #else
3905            "-net tap[,vlan=n][,name=str][,fd=h][,ifname=name][,script=file][,downscript=dfile]\n"
3906            "                connect the host TAP network interface to VLAN 'n' and use the\n"
3907            "                network scripts 'file' (default=%s)\n"
3908            "                and 'dfile' (default=%s);\n"
3909            "                use '[down]script=no' to disable script execution;\n"
3910            "                use 'fd=h' to connect to an already opened TAP interface\n"
3911 #endif
3912            "-net socket[,vlan=n][,name=str][,fd=h][,listen=[host]:port][,connect=host:port]\n"
3913            "                connect the vlan 'n' to another VLAN using a socket connection\n"
3914            "-net socket[,vlan=n][,name=str][,fd=h][,mcast=maddr:port]\n"
3915            "                connect the vlan 'n' to multicast maddr and port\n"
3916 #ifdef CONFIG_VDE
3917            "-net vde[,vlan=n][,name=str][,sock=socketpath][,port=n][,group=groupname][,mode=octalmode]\n"
3918            "                connect the vlan 'n' to port 'n' of a vde switch running\n"
3919            "                on host and listening for incoming connections on 'socketpath'.\n"
3920            "                Use group 'groupname' and mode 'octalmode' to change default\n"
3921            "                ownership and permissions for communication port.\n"
3922 #endif
3923            "-net none       use it alone to have zero network devices; if no -net option\n"
3924            "                is provided, the default is '-net nic -net user'\n"
3925            "\n"
3926            "-bt hci,null    Dumb bluetooth HCI - doesn't respond to commands\n"
3927            "-bt hci,host[:id]\n"
3928            "                Use host's HCI with the given name\n"
3929            "-bt hci[,vlan=n]\n"
3930            "                Emulate a standard HCI in virtual scatternet 'n'\n"
3931            "-bt vhci[,vlan=n]\n"
3932            "                Add host computer to virtual scatternet 'n' using VHCI\n"
3933            "-bt device:dev[,vlan=n]\n"
3934            "                Emulate a bluetooth device 'dev' in scatternet 'n'\n"
3935            "\n"
3936 #ifdef CONFIG_SLIRP
3937            "-tftp dir       allow tftp access to files in dir [-net user]\n"
3938            "-bootp file     advertise file in BOOTP replies\n"
3939 #ifndef _WIN32
3940            "-smb dir        allow SMB access to files in 'dir' [-net user]\n"
3941 #endif
3942            "-redir [tcp|udp]:host-port:[guest-host]:guest-port\n"
3943            "                redirect TCP or UDP connections from host to guest [-net user]\n"
3944 #endif
3945            "\n"
3946            "Linux boot specific:\n"
3947            "-kernel bzImage use 'bzImage' as kernel image\n"
3948            "-append cmdline use 'cmdline' as kernel command line\n"
3949            "-initrd file    use 'file' as initial ram disk\n"
3950            "\n"
3951            "Debug/Expert options:\n"
3952            "-monitor dev    redirect the monitor to char device 'dev'\n"
3953            "-serial dev     redirect the serial port to char device 'dev'\n"
3954            "-parallel dev   redirect the parallel port to char device 'dev'\n"
3955            "-pidfile file   Write PID to 'file'\n"
3956            "-S              freeze CPU at startup (use 'c' to start execution)\n"
3957            "-s              wait gdb connection to port\n"
3958            "-p port         set gdb connection port [default=%s]\n"
3959            "-d item1,...    output log to %s (use -d ? for a list of log items)\n"
3960            "-hdachs c,h,s[,t]  force hard disk 0 physical geometry and the optional BIOS\n"
3961            "                translation (t=none or lba) (usually qemu can guess them)\n"
3962            "-L path         set the directory for the BIOS, VGA BIOS and keymaps\n"
3963 #ifdef USE_KQEMU
3964            "-kernel-kqemu   enable KQEMU full virtualization (default is user mode only)\n"
3965            "-no-kqemu       disable KQEMU kernel module usage\n"
3966 #endif
3967 #ifdef CONFIG_KVM
3968            "-enable-kvm     enable KVM full virtualization support\n"
3969 #endif
3970 #ifdef TARGET_I386
3971            "-no-acpi        disable ACPI\n"
3972            "-no-hpet        disable HPET\n"
3973 #endif
3974 #ifdef CONFIG_CURSES
3975            "-curses         use a curses/ncurses interface instead of SDL\n"
3976 #endif
3977            "-no-reboot      exit instead of rebooting\n"
3978            "-no-shutdown    stop before shutdown\n"
3979            "-loadvm [tag|id]  start right away with a saved state (loadvm in monitor)\n"
3980            "-vnc display    start a VNC server on display\n"
3981 #ifndef _WIN32
3982            "-daemonize      daemonize QEMU after initializing\n"
3983 #endif
3984            "-option-rom rom load a file, rom, into the option ROM space\n"
3985 #ifdef TARGET_SPARC
3986            "-prom-env variable=value  set OpenBIOS nvram variables\n"
3987 #endif
3988            "-clock          force the use of the given methods for timer alarm.\n"
3989            "                To see what timers are available use -clock ?\n"
3990            "-startdate      select initial date of the clock\n"
3991            "-icount [N|auto]\n"
3992            "                Enable virtual instruction counter with 2^N clock ticks per instruction\n"
3993            "\n"
3994            "During emulation, the following keys are useful:\n"
3995            "ctrl-alt-f      toggle full screen\n"
3996            "ctrl-alt-n      switch to virtual console 'n'\n"
3997            "ctrl-alt        toggle mouse and keyboard grab\n"
3998            "\n"
3999            "When using -nographic, press 'ctrl-a h' to get some help.\n"
4000            ,
4001            "qemu",
4002            DEFAULT_RAM_SIZE,
4003 #ifndef _WIN32
4004            DEFAULT_NETWORK_SCRIPT,
4005            DEFAULT_NETWORK_DOWN_SCRIPT,
4006 #endif
4007            DEFAULT_GDBSTUB_PORT,
4008            "/tmp/qemu.log");
4009     exit(exitcode);
4010 }
4011
4012 #define HAS_ARG 0x0001
4013
4014 enum {
4015     QEMU_OPTION_h,
4016
4017     QEMU_OPTION_M,
4018     QEMU_OPTION_cpu,
4019     QEMU_OPTION_fda,
4020     QEMU_OPTION_fdb,
4021     QEMU_OPTION_hda,
4022     QEMU_OPTION_hdb,
4023     QEMU_OPTION_hdc,
4024     QEMU_OPTION_hdd,
4025     QEMU_OPTION_drive,
4026     QEMU_OPTION_cdrom,
4027     QEMU_OPTION_mtdblock,
4028     QEMU_OPTION_sd,
4029     QEMU_OPTION_pflash,
4030     QEMU_OPTION_boot,
4031     QEMU_OPTION_snapshot,
4032 #ifdef TARGET_I386
4033     QEMU_OPTION_no_fd_bootchk,
4034 #endif
4035     QEMU_OPTION_m,
4036     QEMU_OPTION_nographic,
4037     QEMU_OPTION_portrait,
4038 #ifdef HAS_AUDIO
4039     QEMU_OPTION_audio_help,
4040     QEMU_OPTION_soundhw,
4041 #endif
4042
4043     QEMU_OPTION_net,
4044     QEMU_OPTION_tftp,
4045     QEMU_OPTION_bootp,
4046     QEMU_OPTION_smb,
4047     QEMU_OPTION_redir,
4048     QEMU_OPTION_bt,
4049
4050     QEMU_OPTION_kernel,
4051     QEMU_OPTION_append,
4052     QEMU_OPTION_initrd,
4053
4054     QEMU_OPTION_S,
4055     QEMU_OPTION_s,
4056     QEMU_OPTION_p,
4057     QEMU_OPTION_d,
4058     QEMU_OPTION_hdachs,
4059     QEMU_OPTION_L,
4060     QEMU_OPTION_bios,
4061     QEMU_OPTION_k,
4062     QEMU_OPTION_localtime,
4063     QEMU_OPTION_g,
4064     QEMU_OPTION_vga,
4065     QEMU_OPTION_echr,
4066     QEMU_OPTION_monitor,
4067     QEMU_OPTION_serial,
4068     QEMU_OPTION_virtiocon,
4069     QEMU_OPTION_parallel,
4070     QEMU_OPTION_loadvm,
4071     QEMU_OPTION_full_screen,
4072     QEMU_OPTION_no_frame,
4073     QEMU_OPTION_alt_grab,
4074     QEMU_OPTION_no_quit,
4075     QEMU_OPTION_sdl,
4076     QEMU_OPTION_pidfile,
4077     QEMU_OPTION_no_kqemu,
4078     QEMU_OPTION_kernel_kqemu,
4079     QEMU_OPTION_enable_kvm,
4080     QEMU_OPTION_win2k_hack,
4081     QEMU_OPTION_rtc_td_hack,
4082     QEMU_OPTION_usb,
4083     QEMU_OPTION_usbdevice,
4084     QEMU_OPTION_smp,
4085     QEMU_OPTION_vnc,
4086     QEMU_OPTION_no_acpi,
4087     QEMU_OPTION_no_hpet,
4088     QEMU_OPTION_curses,
4089     QEMU_OPTION_no_reboot,
4090     QEMU_OPTION_no_shutdown,
4091     QEMU_OPTION_show_cursor,
4092     QEMU_OPTION_daemonize,
4093     QEMU_OPTION_option_rom,
4094     QEMU_OPTION_semihosting,
4095     QEMU_OPTION_name,
4096     QEMU_OPTION_prom_env,
4097     QEMU_OPTION_old_param,
4098     QEMU_OPTION_clock,
4099     QEMU_OPTION_startdate,
4100     QEMU_OPTION_tb_size,
4101     QEMU_OPTION_icount,
4102     QEMU_OPTION_uuid,
4103     QEMU_OPTION_incoming,
4104 };
4105
4106 typedef struct QEMUOption {
4107     const char *name;
4108     int flags;
4109     int index;
4110 } QEMUOption;
4111
4112 static const QEMUOption qemu_options[] = {
4113     { "h", 0, QEMU_OPTION_h },
4114     { "help", 0, QEMU_OPTION_h },
4115
4116     { "M", HAS_ARG, QEMU_OPTION_M },
4117     { "cpu", HAS_ARG, QEMU_OPTION_cpu },
4118     { "fda", HAS_ARG, QEMU_OPTION_fda },
4119     { "fdb", HAS_ARG, QEMU_OPTION_fdb },
4120     { "hda", HAS_ARG, QEMU_OPTION_hda },
4121     { "hdb", HAS_ARG, QEMU_OPTION_hdb },
4122     { "hdc", HAS_ARG, QEMU_OPTION_hdc },
4123     { "hdd", HAS_ARG, QEMU_OPTION_hdd },
4124     { "drive", HAS_ARG, QEMU_OPTION_drive },
4125     { "cdrom", HAS_ARG, QEMU_OPTION_cdrom },
4126     { "mtdblock", HAS_ARG, QEMU_OPTION_mtdblock },
4127     { "sd", HAS_ARG, QEMU_OPTION_sd },
4128     { "pflash", HAS_ARG, QEMU_OPTION_pflash },
4129     { "boot", HAS_ARG, QEMU_OPTION_boot },
4130     { "snapshot", 0, QEMU_OPTION_snapshot },
4131 #ifdef TARGET_I386
4132     { "no-fd-bootchk", 0, QEMU_OPTION_no_fd_bootchk },
4133 #endif
4134     { "m", HAS_ARG, QEMU_OPTION_m },
4135     { "nographic", 0, QEMU_OPTION_nographic },
4136     { "portrait", 0, QEMU_OPTION_portrait },
4137     { "k", HAS_ARG, QEMU_OPTION_k },
4138 #ifdef HAS_AUDIO
4139     { "audio-help", 0, QEMU_OPTION_audio_help },
4140     { "soundhw", HAS_ARG, QEMU_OPTION_soundhw },
4141 #endif
4142
4143     { "net", HAS_ARG, QEMU_OPTION_net},
4144 #ifdef CONFIG_SLIRP
4145     { "tftp", HAS_ARG, QEMU_OPTION_tftp },
4146     { "bootp", HAS_ARG, QEMU_OPTION_bootp },
4147 #ifndef _WIN32
4148     { "smb", HAS_ARG, QEMU_OPTION_smb },
4149 #endif
4150     { "redir", HAS_ARG, QEMU_OPTION_redir },
4151 #endif
4152     { "bt", HAS_ARG, QEMU_OPTION_bt },
4153
4154     { "kernel", HAS_ARG, QEMU_OPTION_kernel },
4155     { "append", HAS_ARG, QEMU_OPTION_append },
4156     { "initrd", HAS_ARG, QEMU_OPTION_initrd },
4157
4158     { "S", 0, QEMU_OPTION_S },
4159     { "s", 0, QEMU_OPTION_s },
4160     { "p", HAS_ARG, QEMU_OPTION_p },
4161     { "d", HAS_ARG, QEMU_OPTION_d },
4162     { "hdachs", HAS_ARG, QEMU_OPTION_hdachs },
4163     { "L", HAS_ARG, QEMU_OPTION_L },
4164     { "bios", HAS_ARG, QEMU_OPTION_bios },
4165 #ifdef USE_KQEMU
4166     { "no-kqemu", 0, QEMU_OPTION_no_kqemu },
4167     { "kernel-kqemu", 0, QEMU_OPTION_kernel_kqemu },
4168 #endif
4169 #ifdef CONFIG_KVM
4170     { "enable-kvm", 0, QEMU_OPTION_enable_kvm },
4171 #endif
4172 #if defined(TARGET_PPC) || defined(TARGET_SPARC)
4173     { "g", 1, QEMU_OPTION_g },
4174 #endif
4175     { "localtime", 0, QEMU_OPTION_localtime },
4176     { "vga", HAS_ARG, QEMU_OPTION_vga },
4177     { "echr", HAS_ARG, QEMU_OPTION_echr },
4178     { "monitor", HAS_ARG, QEMU_OPTION_monitor },
4179     { "serial", HAS_ARG, QEMU_OPTION_serial },
4180     { "virtioconsole", HAS_ARG, QEMU_OPTION_virtiocon },
4181     { "parallel", HAS_ARG, QEMU_OPTION_parallel },
4182     { "loadvm", HAS_ARG, QEMU_OPTION_loadvm },
4183     { "full-screen", 0, QEMU_OPTION_full_screen },
4184 #ifdef CONFIG_SDL
4185     { "no-frame", 0, QEMU_OPTION_no_frame },
4186     { "alt-grab", 0, QEMU_OPTION_alt_grab },
4187     { "no-quit", 0, QEMU_OPTION_no_quit },
4188     { "sdl", 0, QEMU_OPTION_sdl },
4189 #endif
4190     { "pidfile", HAS_ARG, QEMU_OPTION_pidfile },
4191     { "win2k-hack", 0, QEMU_OPTION_win2k_hack },
4192     { "rtc-td-hack", 0, QEMU_OPTION_rtc_td_hack },
4193     { "usbdevice", HAS_ARG, QEMU_OPTION_usbdevice },
4194     { "smp", HAS_ARG, QEMU_OPTION_smp },
4195     { "vnc", HAS_ARG, QEMU_OPTION_vnc },
4196 #ifdef CONFIG_CURSES
4197     { "curses", 0, QEMU_OPTION_curses },
4198 #endif
4199     { "uuid", HAS_ARG, QEMU_OPTION_uuid },
4200
4201     /* temporary options */
4202     { "usb", 0, QEMU_OPTION_usb },
4203     { "no-acpi", 0, QEMU_OPTION_no_acpi },
4204     { "no-hpet", 0, QEMU_OPTION_no_hpet },
4205     { "no-reboot", 0, QEMU_OPTION_no_reboot },
4206     { "no-shutdown", 0, QEMU_OPTION_no_shutdown },
4207     { "show-cursor", 0, QEMU_OPTION_show_cursor },
4208     { "daemonize", 0, QEMU_OPTION_daemonize },
4209     { "option-rom", HAS_ARG, QEMU_OPTION_option_rom },
4210 #if defined(TARGET_ARM) || defined(TARGET_M68K)
4211     { "semihosting", 0, QEMU_OPTION_semihosting },
4212 #endif
4213     { "name", HAS_ARG, QEMU_OPTION_name },
4214 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
4215     { "prom-env", HAS_ARG, QEMU_OPTION_prom_env },
4216 #endif
4217 #if defined(TARGET_ARM)
4218     { "old-param", 0, QEMU_OPTION_old_param },
4219 #endif
4220     { "clock", HAS_ARG, QEMU_OPTION_clock },
4221     { "startdate", HAS_ARG, QEMU_OPTION_startdate },
4222     { "tb-size", HAS_ARG, QEMU_OPTION_tb_size },
4223     { "icount", HAS_ARG, QEMU_OPTION_icount },
4224     { "incoming", HAS_ARG, QEMU_OPTION_incoming },
4225     { NULL },
4226 };
4227
4228 /* password input */
4229
4230 int qemu_key_check(BlockDriverState *bs, const char *name)
4231 {
4232     char password[256];
4233     int i;
4234
4235     if (!bdrv_is_encrypted(bs))
4236         return 0;
4237
4238     term_printf("%s is encrypted.\n", name);
4239     for(i = 0; i < 3; i++) {
4240         monitor_readline("Password: ", 1, password, sizeof(password));
4241         if (bdrv_set_key(bs, password) == 0)
4242             return 0;
4243         term_printf("invalid password\n");
4244     }
4245     return -EPERM;
4246 }
4247
4248 static BlockDriverState *get_bdrv(int index)
4249 {
4250     if (index > nb_drives)
4251         return NULL;
4252     return drives_table[index].bdrv;
4253 }
4254
4255 static void read_passwords(void)
4256 {
4257     BlockDriverState *bs;
4258     int i;
4259
4260     for(i = 0; i < 6; i++) {
4261         bs = get_bdrv(i);
4262         if (bs)
4263             qemu_key_check(bs, bdrv_get_device_name(bs));
4264     }
4265 }
4266
4267 #ifdef HAS_AUDIO
4268 struct soundhw soundhw[] = {
4269 #ifdef HAS_AUDIO_CHOICE
4270 #if defined(TARGET_I386) || defined(TARGET_MIPS)
4271     {
4272         "pcspk",
4273         "PC speaker",
4274         0,
4275         1,
4276         { .init_isa = pcspk_audio_init }
4277     },
4278 #endif
4279
4280 #ifdef CONFIG_SB16
4281     {
4282         "sb16",
4283         "Creative Sound Blaster 16",
4284         0,
4285         1,
4286         { .init_isa = SB16_init }
4287     },
4288 #endif
4289
4290 #ifdef CONFIG_CS4231A
4291     {
4292         "cs4231a",
4293         "CS4231A",
4294         0,
4295         1,
4296         { .init_isa = cs4231a_init }
4297     },
4298 #endif
4299
4300 #ifdef CONFIG_ADLIB
4301     {
4302         "adlib",
4303 #ifdef HAS_YMF262
4304         "Yamaha YMF262 (OPL3)",
4305 #else
4306         "Yamaha YM3812 (OPL2)",
4307 #endif
4308         0,
4309         1,
4310         { .init_isa = Adlib_init }
4311     },
4312 #endif
4313
4314 #ifdef CONFIG_GUS
4315     {
4316         "gus",
4317         "Gravis Ultrasound GF1",
4318         0,
4319         1,
4320         { .init_isa = GUS_init }
4321     },
4322 #endif
4323
4324 #ifdef CONFIG_AC97
4325     {
4326         "ac97",
4327         "Intel 82801AA AC97 Audio",
4328         0,
4329         0,
4330         { .init_pci = ac97_init }
4331     },
4332 #endif
4333
4334 #ifdef CONFIG_ES1370
4335     {
4336         "es1370",
4337         "ENSONIQ AudioPCI ES1370",
4338         0,
4339         0,
4340         { .init_pci = es1370_init }
4341     },
4342 #endif
4343
4344 #endif /* HAS_AUDIO_CHOICE */
4345
4346     { NULL, NULL, 0, 0, { NULL } }
4347 };
4348
4349 static void select_soundhw (const char *optarg)
4350 {
4351     struct soundhw *c;
4352
4353     if (*optarg == '?') {
4354     show_valid_cards:
4355
4356         printf ("Valid sound card names (comma separated):\n");
4357         for (c = soundhw; c->name; ++c) {
4358             printf ("%-11s %s\n", c->name, c->descr);
4359         }
4360         printf ("\n-soundhw all will enable all of the above\n");
4361         exit (*optarg != '?');
4362     }
4363     else {
4364         size_t l;
4365         const char *p;
4366         char *e;
4367         int bad_card = 0;
4368
4369         if (!strcmp (optarg, "all")) {
4370             for (c = soundhw; c->name; ++c) {
4371                 c->enabled = 1;
4372             }
4373             return;
4374         }
4375
4376         p = optarg;
4377         while (*p) {
4378             e = strchr (p, ',');
4379             l = !e ? strlen (p) : (size_t) (e - p);
4380
4381             for (c = soundhw; c->name; ++c) {
4382                 if (!strncmp (c->name, p, l)) {
4383                     c->enabled = 1;
4384                     break;
4385                 }
4386             }
4387
4388             if (!c->name) {
4389                 if (l > 80) {
4390                     fprintf (stderr,
4391                              "Unknown sound card name (too big to show)\n");
4392                 }
4393                 else {
4394                     fprintf (stderr, "Unknown sound card name `%.*s'\n",
4395                              (int) l, p);
4396                 }
4397                 bad_card = 1;
4398             }
4399             p += l + (e != NULL);
4400         }
4401
4402         if (bad_card)
4403             goto show_valid_cards;
4404     }
4405 }
4406 #endif
4407
4408 static void select_vgahw (const char *p)
4409 {
4410     const char *opts;
4411
4412     if (strstart(p, "std", &opts)) {
4413         std_vga_enabled = 1;
4414         cirrus_vga_enabled = 0;
4415         vmsvga_enabled = 0;
4416     } else if (strstart(p, "cirrus", &opts)) {
4417         cirrus_vga_enabled = 1;
4418         std_vga_enabled = 0;
4419         vmsvga_enabled = 0;
4420     } else if (strstart(p, "vmware", &opts)) {
4421         cirrus_vga_enabled = 0;
4422         std_vga_enabled = 0;
4423         vmsvga_enabled = 1;
4424     } else if (strstart(p, "none", &opts)) {
4425         cirrus_vga_enabled = 0;
4426         std_vga_enabled = 0;
4427         vmsvga_enabled = 0;
4428     } else {
4429     invalid_vga:
4430         fprintf(stderr, "Unknown vga type: %s\n", p);
4431         exit(1);
4432     }
4433     while (*opts) {
4434         const char *nextopt;
4435
4436         if (strstart(opts, ",retrace=", &nextopt)) {
4437             opts = nextopt;
4438             if (strstart(opts, "dumb", &nextopt))
4439                 vga_retrace_method = VGA_RETRACE_DUMB;
4440             else if (strstart(opts, "precise", &nextopt))
4441                 vga_retrace_method = VGA_RETRACE_PRECISE;
4442             else goto invalid_vga;
4443         } else goto invalid_vga;
4444         opts = nextopt;
4445     }
4446 }
4447
4448 #ifdef _WIN32
4449 static BOOL WINAPI qemu_ctrl_handler(DWORD type)
4450 {
4451     exit(STATUS_CONTROL_C_EXIT);
4452     return TRUE;
4453 }
4454 #endif
4455
4456 static int qemu_uuid_parse(const char *str, uint8_t *uuid)
4457 {
4458     int ret;
4459
4460     if(strlen(str) != 36)
4461         return -1;
4462
4463     ret = sscanf(str, UUID_FMT, &uuid[0], &uuid[1], &uuid[2], &uuid[3],
4464             &uuid[4], &uuid[5], &uuid[6], &uuid[7], &uuid[8], &uuid[9],
4465             &uuid[10], &uuid[11], &uuid[12], &uuid[13], &uuid[14], &uuid[15]);
4466
4467     if(ret != 16)
4468         return -1;
4469
4470     return 0;
4471 }
4472
4473 #define MAX_NET_CLIENTS 32
4474
4475 #ifndef _WIN32
4476
4477 static void termsig_handler(int signal)
4478 {
4479     qemu_system_shutdown_request();
4480 }
4481
4482 static void termsig_setup(void)
4483 {
4484     struct sigaction act;
4485
4486     memset(&act, 0, sizeof(act));
4487     act.sa_handler = termsig_handler;
4488     sigaction(SIGINT,  &act, NULL);
4489     sigaction(SIGHUP,  &act, NULL);
4490     sigaction(SIGTERM, &act, NULL);
4491 }
4492
4493 #endif
4494
4495 int main(int argc, char **argv, char **envp)
4496 {
4497 #ifdef CONFIG_GDBSTUB
4498     int use_gdbstub;
4499     const char *gdbstub_port;
4500 #endif
4501     uint32_t boot_devices_bitmap = 0;
4502     int i;
4503     int snapshot, linux_boot, net_boot;
4504     const char *initrd_filename;
4505     const char *kernel_filename, *kernel_cmdline;
4506     const char *boot_devices = "";
4507     DisplayState *ds;
4508     DisplayChangeListener *dcl;
4509     int cyls, heads, secs, translation;
4510     const char *net_clients[MAX_NET_CLIENTS];
4511     int nb_net_clients;
4512     const char *bt_opts[MAX_BT_CMDLINE];
4513     int nb_bt_opts;
4514     int hda_index;
4515     int optind;
4516     const char *r, *optarg;
4517     CharDriverState *monitor_hd = NULL;
4518     const char *monitor_device;
4519     const char *serial_devices[MAX_SERIAL_PORTS];
4520     int serial_device_index;
4521     const char *parallel_devices[MAX_PARALLEL_PORTS];
4522     int parallel_device_index;
4523     const char *virtio_consoles[MAX_VIRTIO_CONSOLES];
4524     int virtio_console_index;
4525     const char *loadvm = NULL;
4526     QEMUMachine *machine;
4527     const char *cpu_model;
4528     const char *usb_devices[MAX_USB_CMDLINE];
4529     int usb_devices_index;
4530     int fds[2];
4531     int tb_size;
4532     const char *pid_file = NULL;
4533     int autostart;
4534     const char *incoming = NULL;
4535
4536     qemu_cache_utils_init(envp);
4537
4538     LIST_INIT (&vm_change_state_head);
4539 #ifndef _WIN32
4540     {
4541         struct sigaction act;
4542         sigfillset(&act.sa_mask);
4543         act.sa_flags = 0;
4544         act.sa_handler = SIG_IGN;
4545         sigaction(SIGPIPE, &act, NULL);
4546     }
4547 #else
4548     SetConsoleCtrlHandler(qemu_ctrl_handler, TRUE);
4549     /* Note: cpu_interrupt() is currently not SMP safe, so we force
4550        QEMU to run on a single CPU */
4551     {
4552         HANDLE h;
4553         DWORD mask, smask;
4554         int i;
4555         h = GetCurrentProcess();
4556         if (GetProcessAffinityMask(h, &mask, &smask)) {
4557             for(i = 0; i < 32; i++) {
4558                 if (mask & (1 << i))
4559                     break;
4560             }
4561             if (i != 32) {
4562                 mask = 1 << i;
4563                 SetProcessAffinityMask(h, mask);
4564             }
4565         }
4566     }
4567 #endif
4568
4569     register_machines();
4570     machine = first_machine;
4571     cpu_model = NULL;
4572     initrd_filename = NULL;
4573     ram_size = 0;
4574     vga_ram_size = VGA_RAM_SIZE;
4575 #ifdef CONFIG_GDBSTUB
4576     use_gdbstub = 0;
4577     gdbstub_port = DEFAULT_GDBSTUB_PORT;
4578 #endif
4579     snapshot = 0;
4580     nographic = 0;
4581     curses = 0;
4582     kernel_filename = NULL;
4583     kernel_cmdline = "";
4584     cyls = heads = secs = 0;
4585     translation = BIOS_ATA_TRANSLATION_AUTO;
4586     monitor_device = "vc";
4587
4588     serial_devices[0] = "vc:80Cx24C";
4589     for(i = 1; i < MAX_SERIAL_PORTS; i++)
4590         serial_devices[i] = NULL;
4591     serial_device_index = 0;
4592
4593     parallel_devices[0] = "vc:640x480";
4594     for(i = 1; i < MAX_PARALLEL_PORTS; i++)
4595         parallel_devices[i] = NULL;
4596     parallel_device_index = 0;
4597
4598     virtio_consoles[0] = "vc:80Cx24C";
4599     for(i = 1; i < MAX_VIRTIO_CONSOLES; i++)
4600         virtio_consoles[i] = NULL;
4601     virtio_console_index = 0;
4602
4603     usb_devices_index = 0;
4604
4605     nb_net_clients = 0;
4606     nb_bt_opts = 0;
4607     nb_drives = 0;
4608     nb_drives_opt = 0;
4609     hda_index = -1;
4610
4611     nb_nics = 0;
4612
4613     tb_size = 0;
4614     autostart= 1;
4615
4616     optind = 1;
4617     for(;;) {
4618         if (optind >= argc)
4619             break;
4620         r = argv[optind];
4621         if (r[0] != '-') {
4622             hda_index = drive_add(argv[optind++], HD_ALIAS, 0);
4623         } else {
4624             const QEMUOption *popt;
4625
4626             optind++;
4627             /* Treat --foo the same as -foo.  */
4628             if (r[1] == '-')
4629                 r++;
4630             popt = qemu_options;
4631             for(;;) {
4632                 if (!popt->name) {
4633                     fprintf(stderr, "%s: invalid option -- '%s'\n",
4634                             argv[0], r);
4635                     exit(1);
4636                 }
4637                 if (!strcmp(popt->name, r + 1))
4638                     break;
4639                 popt++;
4640             }
4641             if (popt->flags & HAS_ARG) {
4642                 if (optind >= argc) {
4643                     fprintf(stderr, "%s: option '%s' requires an argument\n",
4644                             argv[0], r);
4645                     exit(1);
4646                 }
4647                 optarg = argv[optind++];
4648             } else {
4649                 optarg = NULL;
4650             }
4651
4652             switch(popt->index) {
4653             case QEMU_OPTION_M:
4654                 machine = find_machine(optarg);
4655                 if (!machine) {
4656                     QEMUMachine *m;
4657                     printf("Supported machines are:\n");
4658                     for(m = first_machine; m != NULL; m = m->next) {
4659                         printf("%-10s %s%s\n",
4660                                m->name, m->desc,
4661                                m == first_machine ? " (default)" : "");
4662                     }
4663                     exit(*optarg != '?');
4664                 }
4665                 break;
4666             case QEMU_OPTION_cpu:
4667                 /* hw initialization will check this */
4668                 if (*optarg == '?') {
4669 /* XXX: implement xxx_cpu_list for targets that still miss it */
4670 #if defined(cpu_list)
4671                     cpu_list(stdout, &fprintf);
4672 #endif
4673                     exit(0);
4674                 } else {
4675                     cpu_model = optarg;
4676                 }
4677                 break;
4678             case QEMU_OPTION_initrd:
4679                 initrd_filename = optarg;
4680                 break;
4681             case QEMU_OPTION_hda:
4682                 if (cyls == 0)
4683                     hda_index = drive_add(optarg, HD_ALIAS, 0);
4684                 else
4685                     hda_index = drive_add(optarg, HD_ALIAS
4686                              ",cyls=%d,heads=%d,secs=%d%s",
4687                              0, cyls, heads, secs,
4688                              translation == BIOS_ATA_TRANSLATION_LBA ?
4689                                  ",trans=lba" :
4690                              translation == BIOS_ATA_TRANSLATION_NONE ?
4691                                  ",trans=none" : "");
4692                  break;
4693             case QEMU_OPTION_hdb:
4694             case QEMU_OPTION_hdc:
4695             case QEMU_OPTION_hdd:
4696                 drive_add(optarg, HD_ALIAS, popt->index - QEMU_OPTION_hda);
4697                 break;
4698             case QEMU_OPTION_drive:
4699                 drive_add(NULL, "%s", optarg);
4700                 break;
4701             case QEMU_OPTION_mtdblock:
4702                 drive_add(optarg, MTD_ALIAS);
4703                 break;
4704             case QEMU_OPTION_sd:
4705                 drive_add(optarg, SD_ALIAS);
4706                 break;
4707             case QEMU_OPTION_pflash:
4708                 drive_add(optarg, PFLASH_ALIAS);
4709                 break;
4710             case QEMU_OPTION_snapshot:
4711                 snapshot = 1;
4712                 break;
4713             case QEMU_OPTION_hdachs:
4714                 {
4715                     const char *p;
4716                     p = optarg;
4717                     cyls = strtol(p, (char **)&p, 0);
4718                     if (cyls < 1 || cyls > 16383)
4719                         goto chs_fail;
4720                     if (*p != ',')
4721                         goto chs_fail;
4722                     p++;
4723                     heads = strtol(p, (char **)&p, 0);
4724                     if (heads < 1 || heads > 16)
4725                         goto chs_fail;
4726                     if (*p != ',')
4727                         goto chs_fail;
4728                     p++;
4729                     secs = strtol(p, (char **)&p, 0);
4730                     if (secs < 1 || secs > 63)
4731                         goto chs_fail;
4732                     if (*p == ',') {
4733                         p++;
4734                         if (!strcmp(p, "none"))
4735                             translation = BIOS_ATA_TRANSLATION_NONE;
4736                         else if (!strcmp(p, "lba"))
4737                             translation = BIOS_ATA_TRANSLATION_LBA;
4738                         else if (!strcmp(p, "auto"))
4739                             translation = BIOS_ATA_TRANSLATION_AUTO;
4740                         else
4741                             goto chs_fail;
4742                     } else if (*p != '\0') {
4743                     chs_fail:
4744                         fprintf(stderr, "qemu: invalid physical CHS format\n");
4745                         exit(1);
4746                     }
4747                     if (hda_index != -1)
4748                         snprintf(drives_opt[hda_index].opt,
4749                                  sizeof(drives_opt[hda_index].opt),
4750                                  HD_ALIAS ",cyls=%d,heads=%d,secs=%d%s",
4751                                  0, cyls, heads, secs,
4752                                  translation == BIOS_ATA_TRANSLATION_LBA ?
4753                                     ",trans=lba" :
4754                                  translation == BIOS_ATA_TRANSLATION_NONE ?
4755                                      ",trans=none" : "");
4756                 }
4757                 break;
4758             case QEMU_OPTION_nographic:
4759                 nographic = 1;
4760                 break;
4761 #ifdef CONFIG_CURSES
4762             case QEMU_OPTION_curses:
4763                 curses = 1;
4764                 break;
4765 #endif
4766             case QEMU_OPTION_portrait:
4767                 graphic_rotate = 1;
4768                 break;
4769             case QEMU_OPTION_kernel:
4770                 kernel_filename = optarg;
4771                 break;
4772             case QEMU_OPTION_append:
4773                 kernel_cmdline = optarg;
4774                 break;
4775             case QEMU_OPTION_cdrom:
4776                 drive_add(optarg, CDROM_ALIAS);
4777                 break;
4778             case QEMU_OPTION_boot:
4779                 boot_devices = optarg;
4780                 /* We just do some generic consistency checks */
4781                 {
4782                     /* Could easily be extended to 64 devices if needed */
4783                     const char *p;
4784                     
4785                     boot_devices_bitmap = 0;
4786                     for (p = boot_devices; *p != '\0'; p++) {
4787                         /* Allowed boot devices are:
4788                          * a b     : floppy disk drives
4789                          * c ... f : IDE disk drives
4790                          * g ... m : machine implementation dependant drives
4791                          * n ... p : network devices
4792                          * It's up to each machine implementation to check
4793                          * if the given boot devices match the actual hardware
4794                          * implementation and firmware features.
4795                          */
4796                         if (*p < 'a' || *p > 'q') {
4797                             fprintf(stderr, "Invalid boot device '%c'\n", *p);
4798                             exit(1);
4799                         }
4800                         if (boot_devices_bitmap & (1 << (*p - 'a'))) {
4801                             fprintf(stderr,
4802                                     "Boot device '%c' was given twice\n",*p);
4803                             exit(1);
4804                         }
4805                         boot_devices_bitmap |= 1 << (*p - 'a');
4806                     }
4807                 }
4808                 break;
4809             case QEMU_OPTION_fda:
4810             case QEMU_OPTION_fdb:
4811                 drive_add(optarg, FD_ALIAS, popt->index - QEMU_OPTION_fda);
4812                 break;
4813 #ifdef TARGET_I386
4814             case QEMU_OPTION_no_fd_bootchk:
4815                 fd_bootchk = 0;
4816                 break;
4817 #endif
4818             case QEMU_OPTION_net:
4819                 if (nb_net_clients >= MAX_NET_CLIENTS) {
4820                     fprintf(stderr, "qemu: too many network clients\n");
4821                     exit(1);
4822                 }
4823                 net_clients[nb_net_clients] = optarg;
4824                 nb_net_clients++;
4825                 break;
4826 #ifdef CONFIG_SLIRP
4827             case QEMU_OPTION_tftp:
4828                 tftp_prefix = optarg;
4829                 break;
4830             case QEMU_OPTION_bootp:
4831                 bootp_filename = optarg;
4832                 break;
4833 #ifndef _WIN32
4834             case QEMU_OPTION_smb:
4835                 net_slirp_smb(optarg);
4836                 break;
4837 #endif
4838             case QEMU_OPTION_redir:
4839                 net_slirp_redir(optarg);
4840                 break;
4841 #endif
4842             case QEMU_OPTION_bt:
4843                 if (nb_bt_opts >= MAX_BT_CMDLINE) {
4844                     fprintf(stderr, "qemu: too many bluetooth options\n");
4845                     exit(1);
4846                 }
4847                 bt_opts[nb_bt_opts++] = optarg;
4848                 break;
4849 #ifdef HAS_AUDIO
4850             case QEMU_OPTION_audio_help:
4851                 AUD_help ();
4852                 exit (0);
4853                 break;
4854             case QEMU_OPTION_soundhw:
4855                 select_soundhw (optarg);
4856                 break;
4857 #endif
4858             case QEMU_OPTION_h:
4859                 help(0);
4860                 break;
4861             case QEMU_OPTION_m: {
4862                 uint64_t value;
4863                 char *ptr;
4864
4865                 value = strtoul(optarg, &ptr, 10);
4866                 switch (*ptr) {
4867                 case 0: case 'M': case 'm':
4868                     value <<= 20;
4869                     break;
4870                 case 'G': case 'g':
4871                     value <<= 30;
4872                     break;
4873                 default:
4874                     fprintf(stderr, "qemu: invalid ram size: %s\n", optarg);
4875                     exit(1);
4876                 }
4877
4878                 /* On 32-bit hosts, QEMU is limited by virtual address space */
4879                 if (value > (2047 << 20)
4880 #ifndef USE_KQEMU
4881                     && HOST_LONG_BITS == 32
4882 #endif
4883                     ) {
4884                     fprintf(stderr, "qemu: at most 2047 MB RAM can be simulated\n");
4885                     exit(1);
4886                 }
4887                 if (value != (uint64_t)(ram_addr_t)value) {
4888                     fprintf(stderr, "qemu: ram size too large\n");
4889                     exit(1);
4890                 }
4891                 ram_size = value;
4892                 break;
4893             }
4894             case QEMU_OPTION_d:
4895                 {
4896                     int mask;
4897                     const CPULogItem *item;
4898
4899                     mask = cpu_str_to_log_mask(optarg);
4900                     if (!mask) {
4901                         printf("Log items (comma separated):\n");
4902                     for(item = cpu_log_items; item->mask != 0; item++) {
4903                         printf("%-10s %s\n", item->name, item->help);
4904                     }
4905                     exit(1);
4906                     }
4907                     cpu_set_log(mask);
4908                 }
4909                 break;
4910 #ifdef CONFIG_GDBSTUB
4911             case QEMU_OPTION_s:
4912                 use_gdbstub = 1;
4913                 break;
4914             case QEMU_OPTION_p:
4915                 gdbstub_port = optarg;
4916                 break;
4917 #endif
4918             case QEMU_OPTION_L:
4919                 bios_dir = optarg;
4920                 break;
4921             case QEMU_OPTION_bios:
4922                 bios_name = optarg;
4923                 break;
4924             case QEMU_OPTION_S:
4925                 autostart = 0;
4926                 break;
4927             case QEMU_OPTION_k:
4928                 keyboard_layout = optarg;
4929                 break;
4930             case QEMU_OPTION_localtime:
4931                 rtc_utc = 0;
4932                 break;
4933             case QEMU_OPTION_vga:
4934                 select_vgahw (optarg);
4935                 break;
4936             case QEMU_OPTION_g:
4937                 {
4938                     const char *p;
4939                     int w, h, depth;
4940                     p = optarg;
4941                     w = strtol(p, (char **)&p, 10);
4942                     if (w <= 0) {
4943                     graphic_error:
4944                         fprintf(stderr, "qemu: invalid resolution or depth\n");
4945                         exit(1);
4946                     }
4947                     if (*p != 'x')
4948                         goto graphic_error;
4949                     p++;
4950                     h = strtol(p, (char **)&p, 10);
4951                     if (h <= 0)
4952                         goto graphic_error;
4953                     if (*p == 'x') {
4954                         p++;
4955                         depth = strtol(p, (char **)&p, 10);
4956                         if (depth != 8 && depth != 15 && depth != 16 &&
4957                             depth != 24 && depth != 32)
4958                             goto graphic_error;
4959                     } else if (*p == '\0') {
4960                         depth = graphic_depth;
4961                     } else {
4962                         goto graphic_error;
4963                     }
4964
4965                     graphic_width = w;
4966                     graphic_height = h;
4967                     graphic_depth = depth;
4968                 }
4969                 break;
4970             case QEMU_OPTION_echr:
4971                 {
4972                     char *r;
4973                     term_escape_char = strtol(optarg, &r, 0);
4974                     if (r == optarg)
4975                         printf("Bad argument to echr\n");
4976                     break;
4977                 }
4978             case QEMU_OPTION_monitor:
4979                 monitor_device = optarg;
4980                 break;
4981             case QEMU_OPTION_serial:
4982                 if (serial_device_index >= MAX_SERIAL_PORTS) {
4983                     fprintf(stderr, "qemu: too many serial ports\n");
4984                     exit(1);
4985                 }
4986                 serial_devices[serial_device_index] = optarg;
4987                 serial_device_index++;
4988                 break;
4989             case QEMU_OPTION_virtiocon:
4990                 if (virtio_console_index >= MAX_VIRTIO_CONSOLES) {
4991                     fprintf(stderr, "qemu: too many virtio consoles\n");
4992                     exit(1);
4993                 }
4994                 virtio_consoles[virtio_console_index] = optarg;
4995                 virtio_console_index++;
4996                 break;
4997             case QEMU_OPTION_parallel:
4998                 if (parallel_device_index >= MAX_PARALLEL_PORTS) {
4999                     fprintf(stderr, "qemu: too many parallel ports\n");
5000                     exit(1);
5001                 }
5002                 parallel_devices[parallel_device_index] = optarg;
5003                 parallel_device_index++;
5004                 break;
5005             case QEMU_OPTION_loadvm:
5006                 loadvm = optarg;
5007                 break;
5008             case QEMU_OPTION_full_screen:
5009                 full_screen = 1;
5010                 break;
5011 #ifdef CONFIG_SDL
5012             case QEMU_OPTION_no_frame:
5013                 no_frame = 1;
5014                 break;
5015             case QEMU_OPTION_alt_grab:
5016                 alt_grab = 1;
5017                 break;
5018             case QEMU_OPTION_no_quit:
5019                 no_quit = 1;
5020                 break;
5021             case QEMU_OPTION_sdl:
5022                 sdl = 1;
5023                 break;
5024 #endif
5025             case QEMU_OPTION_pidfile:
5026                 pid_file = optarg;
5027                 break;
5028 #ifdef TARGET_I386
5029             case QEMU_OPTION_win2k_hack:
5030                 win2k_install_hack = 1;
5031                 break;
5032             case QEMU_OPTION_rtc_td_hack:
5033                 rtc_td_hack = 1;
5034                 break;
5035 #endif
5036 #ifdef USE_KQEMU
5037             case QEMU_OPTION_no_kqemu:
5038                 kqemu_allowed = 0;
5039                 break;
5040             case QEMU_OPTION_kernel_kqemu:
5041                 kqemu_allowed = 2;
5042                 break;
5043 #endif
5044 #ifdef CONFIG_KVM
5045             case QEMU_OPTION_enable_kvm:
5046                 kvm_allowed = 1;
5047 #ifdef USE_KQEMU
5048                 kqemu_allowed = 0;
5049 #endif
5050                 break;
5051 #endif
5052             case QEMU_OPTION_usb:
5053                 usb_enabled = 1;
5054                 break;
5055             case QEMU_OPTION_usbdevice:
5056                 usb_enabled = 1;
5057                 if (usb_devices_index >= MAX_USB_CMDLINE) {
5058                     fprintf(stderr, "Too many USB devices\n");
5059                     exit(1);
5060                 }
5061                 usb_devices[usb_devices_index] = optarg;
5062                 usb_devices_index++;
5063                 break;
5064             case QEMU_OPTION_smp:
5065                 smp_cpus = atoi(optarg);
5066                 if (smp_cpus < 1) {
5067                     fprintf(stderr, "Invalid number of CPUs\n");
5068                     exit(1);
5069                 }
5070                 break;
5071             case QEMU_OPTION_vnc:
5072                 vnc_display = optarg;
5073                 break;
5074             case QEMU_OPTION_no_acpi:
5075                 acpi_enabled = 0;
5076                 break;
5077             case QEMU_OPTION_no_hpet:
5078                 no_hpet = 1;
5079                 break;
5080             case QEMU_OPTION_no_reboot:
5081                 no_reboot = 1;
5082                 break;
5083             case QEMU_OPTION_no_shutdown:
5084                 no_shutdown = 1;
5085                 break;
5086             case QEMU_OPTION_show_cursor:
5087                 cursor_hide = 0;
5088                 break;
5089             case QEMU_OPTION_uuid:
5090                 if(qemu_uuid_parse(optarg, qemu_uuid) < 0) {
5091                     fprintf(stderr, "Fail to parse UUID string."
5092                             " Wrong format.\n");
5093                     exit(1);
5094                 }
5095                 break;
5096             case QEMU_OPTION_daemonize:
5097                 daemonize = 1;
5098                 break;
5099             case QEMU_OPTION_option_rom:
5100                 if (nb_option_roms >= MAX_OPTION_ROMS) {
5101                     fprintf(stderr, "Too many option ROMs\n");
5102                     exit(1);
5103                 }
5104                 option_rom[nb_option_roms] = optarg;
5105                 nb_option_roms++;
5106                 break;
5107             case QEMU_OPTION_semihosting:
5108                 semihosting_enabled = 1;
5109                 break;
5110             case QEMU_OPTION_name:
5111                 qemu_name = optarg;
5112                 break;
5113 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
5114             case QEMU_OPTION_prom_env:
5115                 if (nb_prom_envs >= MAX_PROM_ENVS) {
5116                     fprintf(stderr, "Too many prom variables\n");
5117                     exit(1);
5118                 }
5119                 prom_envs[nb_prom_envs] = optarg;
5120                 nb_prom_envs++;
5121                 break;
5122 #endif
5123 #ifdef TARGET_ARM
5124             case QEMU_OPTION_old_param:
5125                 old_param = 1;
5126                 break;
5127 #endif
5128             case QEMU_OPTION_clock:
5129                 configure_alarms(optarg);
5130                 break;
5131             case QEMU_OPTION_startdate:
5132                 {
5133                     struct tm tm;
5134                     time_t rtc_start_date;
5135                     if (!strcmp(optarg, "now")) {
5136                         rtc_date_offset = -1;
5137                     } else {
5138                         if (sscanf(optarg, "%d-%d-%dT%d:%d:%d",
5139                                &tm.tm_year,
5140                                &tm.tm_mon,
5141                                &tm.tm_mday,
5142                                &tm.tm_hour,
5143                                &tm.tm_min,
5144                                &tm.tm_sec) == 6) {
5145                             /* OK */
5146                         } else if (sscanf(optarg, "%d-%d-%d",
5147                                           &tm.tm_year,
5148                                           &tm.tm_mon,
5149                                           &tm.tm_mday) == 3) {
5150                             tm.tm_hour = 0;
5151                             tm.tm_min = 0;
5152                             tm.tm_sec = 0;
5153                         } else {
5154                             goto date_fail;
5155                         }
5156                         tm.tm_year -= 1900;
5157                         tm.tm_mon--;
5158                         rtc_start_date = mktimegm(&tm);
5159                         if (rtc_start_date == -1) {
5160                         date_fail:
5161                             fprintf(stderr, "Invalid date format. Valid format are:\n"
5162                                     "'now' or '2006-06-17T16:01:21' or '2006-06-17'\n");
5163                             exit(1);
5164                         }
5165                         rtc_date_offset = time(NULL) - rtc_start_date;
5166                     }
5167                 }
5168                 break;
5169             case QEMU_OPTION_tb_size:
5170                 tb_size = strtol(optarg, NULL, 0);
5171                 if (tb_size < 0)
5172                     tb_size = 0;
5173                 break;
5174             case QEMU_OPTION_icount:
5175                 use_icount = 1;
5176                 if (strcmp(optarg, "auto") == 0) {
5177                     icount_time_shift = -1;
5178                 } else {
5179                     icount_time_shift = strtol(optarg, NULL, 0);
5180                 }
5181                 break;
5182             case QEMU_OPTION_incoming:
5183                 incoming = optarg;
5184                 break;
5185             }
5186         }
5187     }
5188
5189 #if defined(CONFIG_KVM) && defined(USE_KQEMU)
5190     if (kvm_allowed && kqemu_allowed) {
5191         fprintf(stderr,
5192                 "You can not enable both KVM and kqemu at the same time\n");
5193         exit(1);
5194     }
5195 #endif
5196
5197     machine->max_cpus = machine->max_cpus ?: 1; /* Default to UP */
5198     if (smp_cpus > machine->max_cpus) {
5199         fprintf(stderr, "Number of SMP cpus requested (%d), exceeds max cpus "
5200                 "supported by machine `%s' (%d)\n", smp_cpus,  machine->name,
5201                 machine->max_cpus);
5202         exit(1);
5203     }
5204
5205     if (nographic) {
5206        if (serial_device_index == 0)
5207            serial_devices[0] = "stdio";
5208        if (parallel_device_index == 0)
5209            parallel_devices[0] = "null";
5210        if (strncmp(monitor_device, "vc", 2) == 0)
5211            monitor_device = "stdio";
5212        if (virtio_console_index == 0)
5213            virtio_consoles[0] = "null";
5214     }
5215
5216 #ifndef _WIN32
5217     if (daemonize) {
5218         pid_t pid;
5219
5220         if (pipe(fds) == -1)
5221             exit(1);
5222
5223         pid = fork();
5224         if (pid > 0) {
5225             uint8_t status;
5226             ssize_t len;
5227
5228             close(fds[1]);
5229
5230         again:
5231             len = read(fds[0], &status, 1);
5232             if (len == -1 && (errno == EINTR))
5233                 goto again;
5234
5235             if (len != 1)
5236                 exit(1);
5237             else if (status == 1) {
5238                 fprintf(stderr, "Could not acquire pidfile\n");
5239                 exit(1);
5240             } else
5241                 exit(0);
5242         } else if (pid < 0)
5243             exit(1);
5244
5245         setsid();
5246
5247         pid = fork();
5248         if (pid > 0)
5249             exit(0);
5250         else if (pid < 0)
5251             exit(1);
5252
5253         umask(027);
5254
5255         signal(SIGTSTP, SIG_IGN);
5256         signal(SIGTTOU, SIG_IGN);
5257         signal(SIGTTIN, SIG_IGN);
5258     }
5259 #endif
5260
5261     if (pid_file && qemu_create_pidfile(pid_file) != 0) {
5262         if (daemonize) {
5263             uint8_t status = 1;
5264             write(fds[1], &status, 1);
5265         } else
5266             fprintf(stderr, "Could not acquire pid file\n");
5267         exit(1);
5268     }
5269
5270 #ifdef USE_KQEMU
5271     if (smp_cpus > 1)
5272         kqemu_allowed = 0;
5273 #endif
5274     linux_boot = (kernel_filename != NULL);
5275     net_boot = (boot_devices_bitmap >> ('n' - 'a')) & 0xF;
5276
5277     if (!linux_boot && net_boot == 0 &&
5278         !machine->nodisk_ok && nb_drives_opt == 0)
5279         help(1);
5280
5281     if (!linux_boot && *kernel_cmdline != '\0') {
5282         fprintf(stderr, "-append only allowed with -kernel option\n");
5283         exit(1);
5284     }
5285
5286     if (!linux_boot && initrd_filename != NULL) {
5287         fprintf(stderr, "-initrd only allowed with -kernel option\n");
5288         exit(1);
5289     }
5290
5291     /* boot to floppy or the default cd if no hard disk defined yet */
5292     if (!boot_devices[0]) {
5293         boot_devices = "cad";
5294     }
5295     setvbuf(stdout, NULL, _IOLBF, 0);
5296
5297     init_timers();
5298     if (init_timer_alarm() < 0) {
5299         fprintf(stderr, "could not initialize alarm timer\n");
5300         exit(1);
5301     }
5302     if (use_icount && icount_time_shift < 0) {
5303         use_icount = 2;
5304         /* 125MIPS seems a reasonable initial guess at the guest speed.
5305            It will be corrected fairly quickly anyway.  */
5306         icount_time_shift = 3;
5307         init_icount_adjust();
5308     }
5309
5310 #ifdef _WIN32
5311     socket_init();
5312 #endif
5313
5314     /* init network clients */
5315     if (nb_net_clients == 0) {
5316         /* if no clients, we use a default config */
5317         net_clients[nb_net_clients++] = "nic";
5318 #ifdef CONFIG_SLIRP
5319         net_clients[nb_net_clients++] = "user";
5320 #endif
5321     }
5322
5323     for(i = 0;i < nb_net_clients; i++) {
5324         if (net_client_parse(net_clients[i]) < 0)
5325             exit(1);
5326     }
5327     net_client_check();
5328
5329 #ifdef TARGET_I386
5330     /* XXX: this should be moved in the PC machine instantiation code */
5331     if (net_boot != 0) {
5332         int netroms = 0;
5333         for (i = 0; i < nb_nics && i < 4; i++) {
5334             const char *model = nd_table[i].model;
5335             char buf[1024];
5336             if (net_boot & (1 << i)) {
5337                 if (model == NULL)
5338                     model = "ne2k_pci";
5339                 snprintf(buf, sizeof(buf), "%s/pxe-%s.bin", bios_dir, model);
5340                 if (get_image_size(buf) > 0) {
5341                     if (nb_option_roms >= MAX_OPTION_ROMS) {
5342                         fprintf(stderr, "Too many option ROMs\n");
5343                         exit(1);
5344                     }
5345                     option_rom[nb_option_roms] = strdup(buf);
5346                     nb_option_roms++;
5347                     netroms++;
5348                 }
5349             }
5350         }
5351         if (netroms == 0) {
5352             fprintf(stderr, "No valid PXE rom found for network device\n");
5353             exit(1);
5354         }
5355     }
5356 #endif
5357
5358     /* init the bluetooth world */
5359     for (i = 0; i < nb_bt_opts; i++)
5360         if (bt_parse(bt_opts[i]))
5361             exit(1);
5362
5363     /* init the memory */
5364     phys_ram_size = machine->ram_require & ~RAMSIZE_FIXED;
5365
5366     if (machine->ram_require & RAMSIZE_FIXED) {
5367         if (ram_size > 0) {
5368             if (ram_size < phys_ram_size) {
5369                 fprintf(stderr, "Machine `%s' requires %llu bytes of memory\n",
5370                                 machine->name, (unsigned long long) phys_ram_size);
5371                 exit(-1);
5372             }
5373
5374             phys_ram_size = ram_size;
5375         } else
5376             ram_size = phys_ram_size;
5377     } else {
5378         if (ram_size == 0)
5379             ram_size = DEFAULT_RAM_SIZE * 1024 * 1024;
5380
5381         phys_ram_size += ram_size;
5382     }
5383
5384     phys_ram_base = qemu_vmalloc(phys_ram_size);
5385     if (!phys_ram_base) {
5386         fprintf(stderr, "Could not allocate physical memory\n");
5387         exit(1);
5388     }
5389
5390     /* init the dynamic translator */
5391     cpu_exec_init_all(tb_size * 1024 * 1024);
5392
5393     bdrv_init();
5394
5395     /* we always create the cdrom drive, even if no disk is there */
5396
5397     if (nb_drives_opt < MAX_DRIVES)
5398         drive_add(NULL, CDROM_ALIAS);
5399
5400     /* we always create at least one floppy */
5401
5402     if (nb_drives_opt < MAX_DRIVES)
5403         drive_add(NULL, FD_ALIAS, 0);
5404
5405     /* we always create one sd slot, even if no card is in it */
5406
5407     if (nb_drives_opt < MAX_DRIVES)
5408         drive_add(NULL, SD_ALIAS);
5409
5410     /* open the virtual block devices */
5411
5412     for(i = 0; i < nb_drives_opt; i++)
5413         if (drive_init(&drives_opt[i], snapshot, machine) == -1)
5414             exit(1);
5415
5416     register_savevm("timer", 0, 2, timer_save, timer_load, NULL);
5417     register_savevm_live("ram", 0, 3, ram_save_live, NULL, ram_load, NULL);
5418
5419 #ifndef _WIN32
5420     /* must be after terminal init, SDL library changes signal handlers */
5421     termsig_setup();
5422 #endif
5423
5424     /* Maintain compatibility with multiple stdio monitors */
5425     if (!strcmp(monitor_device,"stdio")) {
5426         for (i = 0; i < MAX_SERIAL_PORTS; i++) {
5427             const char *devname = serial_devices[i];
5428             if (devname && !strcmp(devname,"mon:stdio")) {
5429                 monitor_device = NULL;
5430                 break;
5431             } else if (devname && !strcmp(devname,"stdio")) {
5432                 monitor_device = NULL;
5433                 serial_devices[i] = "mon:stdio";
5434                 break;
5435             }
5436         }
5437     }
5438
5439     if (kvm_enabled()) {
5440         int ret;
5441
5442         ret = kvm_init(smp_cpus);
5443         if (ret < 0) {
5444             fprintf(stderr, "failed to initialize KVM\n");
5445             exit(1);
5446         }
5447     }
5448
5449     if (monitor_device) {
5450         monitor_hd = qemu_chr_open("monitor", monitor_device, NULL);
5451         if (!monitor_hd) {
5452             fprintf(stderr, "qemu: could not open monitor device '%s'\n", monitor_device);
5453             exit(1);
5454         }
5455     }
5456
5457     for(i = 0; i < MAX_SERIAL_PORTS; i++) {
5458         const char *devname = serial_devices[i];
5459         if (devname && strcmp(devname, "none")) {
5460             char label[32];
5461             snprintf(label, sizeof(label), "serial%d", i);
5462             serial_hds[i] = qemu_chr_open(label, devname, NULL);
5463             if (!serial_hds[i]) {
5464                 fprintf(stderr, "qemu: could not open serial device '%s'\n",
5465                         devname);
5466                 exit(1);
5467             }
5468         }
5469     }
5470
5471     for(i = 0; i < MAX_PARALLEL_PORTS; i++) {
5472         const char *devname = parallel_devices[i];
5473         if (devname && strcmp(devname, "none")) {
5474             char label[32];
5475             snprintf(label, sizeof(label), "parallel%d", i);
5476             parallel_hds[i] = qemu_chr_open(label, devname, NULL);
5477             if (!parallel_hds[i]) {
5478                 fprintf(stderr, "qemu: could not open parallel device '%s'\n",
5479                         devname);
5480                 exit(1);
5481             }
5482         }
5483     }
5484
5485     for(i = 0; i < MAX_VIRTIO_CONSOLES; i++) {
5486         const char *devname = virtio_consoles[i];
5487         if (devname && strcmp(devname, "none")) {
5488             char label[32];
5489             snprintf(label, sizeof(label), "virtcon%d", i);
5490             virtcon_hds[i] = qemu_chr_open(label, devname, NULL);
5491             if (!virtcon_hds[i]) {
5492                 fprintf(stderr, "qemu: could not open virtio console '%s'\n",
5493                         devname);
5494                 exit(1);
5495             }
5496         }
5497     }
5498
5499     machine->init(ram_size, vga_ram_size, boot_devices,
5500                   kernel_filename, kernel_cmdline, initrd_filename, cpu_model);
5501
5502     /* Set KVM's vcpu state to qemu's initial CPUState. */
5503     if (kvm_enabled()) {
5504         int ret;
5505
5506         ret = kvm_sync_vcpus();
5507         if (ret < 0) {
5508             fprintf(stderr, "failed to initialize vcpus\n");
5509             exit(1);
5510         }
5511     }
5512
5513     /* init USB devices */
5514     if (usb_enabled) {
5515         for(i = 0; i < usb_devices_index; i++) {
5516             if (usb_device_add(usb_devices[i]) < 0) {
5517                 fprintf(stderr, "Warning: could not add USB device %s\n",
5518                         usb_devices[i]);
5519             }
5520         }
5521     }
5522
5523     if (!display_state)
5524         dumb_display_init();
5525     /* just use the first displaystate for the moment */
5526     ds = display_state;
5527     /* terminal init */
5528     if (nographic) {
5529         if (curses) {
5530             fprintf(stderr, "fatal: -nographic can't be used with -curses\n");
5531             exit(1);
5532         }
5533     } else { 
5534 #if defined(CONFIG_CURSES)
5535             if (curses) {
5536                 /* At the moment curses cannot be used with other displays */
5537                 curses_display_init(ds, full_screen);
5538             } else
5539 #endif
5540             {
5541                 if (vnc_display != NULL) {
5542                     vnc_display_init(ds);
5543                     if (vnc_display_open(ds, vnc_display) < 0)
5544                         exit(1);
5545                 }
5546                 if (sdl || !vnc_display)
5547 #if defined(CONFIG_SDL)
5548                     sdl_display_init(ds, full_screen, no_frame);
5549 #elif defined(CONFIG_COCOA)
5550                     cocoa_display_init(ds, full_screen);
5551 #endif
5552             }
5553     }
5554     dpy_resize(ds);
5555
5556     dcl = ds->listeners;
5557     while (dcl != NULL) {
5558         if (dcl->dpy_refresh != NULL) {
5559             ds->gui_timer = qemu_new_timer(rt_clock, gui_update, ds);
5560             qemu_mod_timer(ds->gui_timer, qemu_get_clock(rt_clock));
5561         }
5562         dcl = dcl->next;
5563     }
5564
5565     text_consoles_set_display(display_state);
5566
5567     if (monitor_device && monitor_hd)
5568         monitor_init(monitor_hd, !nographic);
5569
5570     for(i = 0; i < MAX_SERIAL_PORTS; i++) {
5571         const char *devname = serial_devices[i];
5572         if (devname && strcmp(devname, "none")) {
5573             char label[32];
5574             snprintf(label, sizeof(label), "serial%d", i);
5575             if (strstart(devname, "vc", 0))
5576                 qemu_chr_printf(serial_hds[i], "serial%d console\r\n", i);
5577         }
5578     }
5579
5580     for(i = 0; i < MAX_PARALLEL_PORTS; i++) {
5581         const char *devname = parallel_devices[i];
5582         if (devname && strcmp(devname, "none")) {
5583             char label[32];
5584             snprintf(label, sizeof(label), "parallel%d", i);
5585             if (strstart(devname, "vc", 0))
5586                 qemu_chr_printf(parallel_hds[i], "parallel%d console\r\n", i);
5587         }
5588     }
5589
5590     for(i = 0; i < MAX_VIRTIO_CONSOLES; i++) {
5591         const char *devname = virtio_consoles[i];
5592         if (virtcon_hds[i] && devname) {
5593             char label[32];
5594             snprintf(label, sizeof(label), "virtcon%d", i);
5595             if (strstart(devname, "vc", 0))
5596                 qemu_chr_printf(virtcon_hds[i], "virtio console%d\r\n", i);
5597         }
5598     }
5599
5600 #ifdef CONFIG_GDBSTUB
5601     if (use_gdbstub) {
5602         /* XXX: use standard host:port notation and modify options
5603            accordingly. */
5604         if (gdbserver_start(gdbstub_port) < 0) {
5605             fprintf(stderr, "qemu: could not open gdbstub device on port '%s'\n",
5606                     gdbstub_port);
5607             exit(1);
5608         }
5609     }
5610 #endif
5611
5612     if (loadvm)
5613         do_loadvm(loadvm);
5614
5615     if (incoming) {
5616         autostart = 0; /* fixme how to deal with -daemonize */
5617         qemu_start_incoming_migration(incoming);
5618     }
5619
5620     {
5621         /* XXX: simplify init */
5622         read_passwords();
5623         if (autostart) {
5624             vm_start();
5625         }
5626     }
5627
5628     if (daemonize) {
5629         uint8_t status = 0;
5630         ssize_t len;
5631         int fd;
5632
5633     again1:
5634         len = write(fds[1], &status, 1);
5635         if (len == -1 && (errno == EINTR))
5636             goto again1;
5637
5638         if (len != 1)
5639             exit(1);
5640
5641         chdir("/");
5642         TFR(fd = open("/dev/null", O_RDWR));
5643         if (fd == -1)
5644             exit(1);
5645
5646         dup2(fd, 0);
5647         dup2(fd, 1);
5648         dup2(fd, 2);
5649
5650         close(fd);
5651     }
5652
5653     main_loop();
5654     quit_timers();
5655     net_cleanup();
5656
5657     return 0;
5658 }