6d319bc3305266789d932d0922568ff6d4067aa9
[qemu] / vl.c
1 /*
2  * QEMU System Emulator
3  * 
4  * Copyright (c) 2003-2005 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 "vl.h"
25
26 #include <unistd.h>
27 #include <fcntl.h>
28 #include <signal.h>
29 #include <time.h>
30 #include <errno.h>
31 #include <sys/time.h>
32
33 #ifndef _WIN32
34 #include <sys/times.h>
35 #include <sys/wait.h>
36 #include <termios.h>
37 #include <sys/poll.h>
38 #include <sys/mman.h>
39 #include <sys/ioctl.h>
40 #include <sys/socket.h>
41 #include <netinet/in.h>
42 #include <dirent.h>
43 #include <netdb.h>
44 #ifdef _BSD
45 #include <sys/stat.h>
46 #ifndef __APPLE__
47 #include <libutil.h>
48 #endif
49 #else
50 #include <linux/if.h>
51 #include <linux/if_tun.h>
52 #include <pty.h>
53 #include <malloc.h>
54 #include <linux/rtc.h>
55 #include <linux/ppdev.h>
56 #endif
57 #endif
58
59 #if defined(CONFIG_SLIRP)
60 #include "libslirp.h"
61 #endif
62
63 #ifdef _WIN32
64 #include <malloc.h>
65 #include <sys/timeb.h>
66 #include <windows.h>
67 #include <winsock2.h>
68 #include <ws2tcpip.h>
69 #define getopt_long_only getopt_long
70 #define memalign(align, size) malloc(size)
71 #endif
72
73 #ifdef CONFIG_SDL
74 #ifdef __APPLE__
75 #include <SDL/SDL.h>
76 #endif
77 #endif /* CONFIG_SDL */
78
79 #ifdef CONFIG_COCOA
80 #undef main
81 #define main qemu_main
82 #endif /* CONFIG_COCOA */
83
84 #include "disas.h"
85
86 #include "exec-all.h"
87
88 #define DEFAULT_NETWORK_SCRIPT "/etc/qemu-ifup"
89
90 //#define DEBUG_UNUSED_IOPORT
91 //#define DEBUG_IOPORT
92
93 #if !defined(CONFIG_SOFTMMU)
94 #define PHYS_RAM_MAX_SIZE (256 * 1024 * 1024)
95 #else
96 #define PHYS_RAM_MAX_SIZE (2047 * 1024 * 1024)
97 #endif
98
99 #ifdef TARGET_PPC
100 #define DEFAULT_RAM_SIZE 144
101 #else
102 #define DEFAULT_RAM_SIZE 128
103 #endif
104 /* in ms */
105 #define GUI_REFRESH_INTERVAL 30
106
107 /* XXX: use a two level table to limit memory usage */
108 #define MAX_IOPORTS 65536
109
110 const char *bios_dir = CONFIG_QEMU_SHAREDIR;
111 char phys_ram_file[1024];
112 void *ioport_opaque[MAX_IOPORTS];
113 IOPortReadFunc *ioport_read_table[3][MAX_IOPORTS];
114 IOPortWriteFunc *ioport_write_table[3][MAX_IOPORTS];
115 BlockDriverState *bs_table[MAX_DISKS], *fd_table[MAX_FD];
116 int vga_ram_size;
117 int bios_size;
118 static DisplayState display_state;
119 int nographic;
120 const char* keyboard_layout = NULL;
121 int64_t ticks_per_sec;
122 int boot_device = 'c';
123 int ram_size;
124 int pit_min_timer_count = 0;
125 int nb_nics;
126 NICInfo nd_table[MAX_NICS];
127 QEMUTimer *gui_timer;
128 int vm_running;
129 int rtc_utc = 1;
130 int cirrus_vga_enabled = 1;
131 #ifdef TARGET_SPARC
132 int graphic_width = 1024;
133 int graphic_height = 768;
134 #else
135 int graphic_width = 800;
136 int graphic_height = 600;
137 #endif
138 int graphic_depth = 15;
139 int full_screen = 0;
140 TextConsole *vga_console;
141 CharDriverState *serial_hds[MAX_SERIAL_PORTS];
142 CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
143 #ifdef TARGET_I386
144 int win2k_install_hack = 0;
145 #endif
146 int usb_enabled = 0;
147 USBPort *vm_usb_ports[MAX_VM_USB_PORTS];
148 USBDevice *vm_usb_hub;
149 static VLANState *first_vlan;
150 int smp_cpus = 1;
151 #if defined(TARGET_SPARC)
152 #define MAX_CPUS 16
153 #elif defined(TARGET_I386)
154 #define MAX_CPUS 255
155 #else
156 #define MAX_CPUS 1
157 #endif
158
159 /***********************************************************/
160 /* x86 ISA bus support */
161
162 target_phys_addr_t isa_mem_base = 0;
163 PicState2 *isa_pic;
164
165 uint32_t default_ioport_readb(void *opaque, uint32_t address)
166 {
167 #ifdef DEBUG_UNUSED_IOPORT
168     fprintf(stderr, "inb: port=0x%04x\n", address);
169 #endif
170     return 0xff;
171 }
172
173 void default_ioport_writeb(void *opaque, uint32_t address, uint32_t data)
174 {
175 #ifdef DEBUG_UNUSED_IOPORT
176     fprintf(stderr, "outb: port=0x%04x data=0x%02x\n", address, data);
177 #endif
178 }
179
180 /* default is to make two byte accesses */
181 uint32_t default_ioport_readw(void *opaque, uint32_t address)
182 {
183     uint32_t data;
184     data = ioport_read_table[0][address](ioport_opaque[address], address);
185     address = (address + 1) & (MAX_IOPORTS - 1);
186     data |= ioport_read_table[0][address](ioport_opaque[address], address) << 8;
187     return data;
188 }
189
190 void default_ioport_writew(void *opaque, uint32_t address, uint32_t data)
191 {
192     ioport_write_table[0][address](ioport_opaque[address], address, data & 0xff);
193     address = (address + 1) & (MAX_IOPORTS - 1);
194     ioport_write_table[0][address](ioport_opaque[address], address, (data >> 8) & 0xff);
195 }
196
197 uint32_t default_ioport_readl(void *opaque, uint32_t address)
198 {
199 #ifdef DEBUG_UNUSED_IOPORT
200     fprintf(stderr, "inl: port=0x%04x\n", address);
201 #endif
202     return 0xffffffff;
203 }
204
205 void default_ioport_writel(void *opaque, uint32_t address, uint32_t data)
206 {
207 #ifdef DEBUG_UNUSED_IOPORT
208     fprintf(stderr, "outl: port=0x%04x data=0x%02x\n", address, data);
209 #endif
210 }
211
212 void init_ioports(void)
213 {
214     int i;
215
216     for(i = 0; i < MAX_IOPORTS; i++) {
217         ioport_read_table[0][i] = default_ioport_readb;
218         ioport_write_table[0][i] = default_ioport_writeb;
219         ioport_read_table[1][i] = default_ioport_readw;
220         ioport_write_table[1][i] = default_ioport_writew;
221         ioport_read_table[2][i] = default_ioport_readl;
222         ioport_write_table[2][i] = default_ioport_writel;
223     }
224 }
225
226 /* size is the word size in byte */
227 int register_ioport_read(int start, int length, int size, 
228                          IOPortReadFunc *func, void *opaque)
229 {
230     int i, bsize;
231
232     if (size == 1) {
233         bsize = 0;
234     } else if (size == 2) {
235         bsize = 1;
236     } else if (size == 4) {
237         bsize = 2;
238     } else {
239         hw_error("register_ioport_read: invalid size");
240         return -1;
241     }
242     for(i = start; i < start + length; i += size) {
243         ioport_read_table[bsize][i] = func;
244         if (ioport_opaque[i] != NULL && ioport_opaque[i] != opaque)
245             hw_error("register_ioport_read: invalid opaque");
246         ioport_opaque[i] = opaque;
247     }
248     return 0;
249 }
250
251 /* size is the word size in byte */
252 int register_ioport_write(int start, int length, int size, 
253                           IOPortWriteFunc *func, void *opaque)
254 {
255     int i, bsize;
256
257     if (size == 1) {
258         bsize = 0;
259     } else if (size == 2) {
260         bsize = 1;
261     } else if (size == 4) {
262         bsize = 2;
263     } else {
264         hw_error("register_ioport_write: invalid size");
265         return -1;
266     }
267     for(i = start; i < start + length; i += size) {
268         ioport_write_table[bsize][i] = func;
269         if (ioport_opaque[i] != NULL && ioport_opaque[i] != opaque)
270             hw_error("register_ioport_read: invalid opaque");
271         ioport_opaque[i] = opaque;
272     }
273     return 0;
274 }
275
276 void isa_unassign_ioport(int start, int length)
277 {
278     int i;
279
280     for(i = start; i < start + length; i++) {
281         ioport_read_table[0][i] = default_ioport_readb;
282         ioport_read_table[1][i] = default_ioport_readw;
283         ioport_read_table[2][i] = default_ioport_readl;
284
285         ioport_write_table[0][i] = default_ioport_writeb;
286         ioport_write_table[1][i] = default_ioport_writew;
287         ioport_write_table[2][i] = default_ioport_writel;
288     }
289 }
290
291 /***********************************************************/
292
293 void pstrcpy(char *buf, int buf_size, const char *str)
294 {
295     int c;
296     char *q = buf;
297
298     if (buf_size <= 0)
299         return;
300
301     for(;;) {
302         c = *str++;
303         if (c == 0 || q >= buf + buf_size - 1)
304             break;
305         *q++ = c;
306     }
307     *q = '\0';
308 }
309
310 /* strcat and truncate. */
311 char *pstrcat(char *buf, int buf_size, const char *s)
312 {
313     int len;
314     len = strlen(buf);
315     if (len < buf_size) 
316         pstrcpy(buf + len, buf_size - len, s);
317     return buf;
318 }
319
320 int strstart(const char *str, const char *val, const char **ptr)
321 {
322     const char *p, *q;
323     p = str;
324     q = val;
325     while (*q != '\0') {
326         if (*p != *q)
327             return 0;
328         p++;
329         q++;
330     }
331     if (ptr)
332         *ptr = p;
333     return 1;
334 }
335
336 /* return the size or -1 if error */
337 int get_image_size(const char *filename)
338 {
339     int fd, size;
340     fd = open(filename, O_RDONLY | O_BINARY);
341     if (fd < 0)
342         return -1;
343     size = lseek(fd, 0, SEEK_END);
344     close(fd);
345     return size;
346 }
347
348 /* return the size or -1 if error */
349 int load_image(const char *filename, uint8_t *addr)
350 {
351     int fd, size;
352     fd = open(filename, O_RDONLY | O_BINARY);
353     if (fd < 0)
354         return -1;
355     size = lseek(fd, 0, SEEK_END);
356     lseek(fd, 0, SEEK_SET);
357     if (read(fd, addr, size) != size) {
358         close(fd);
359         return -1;
360     }
361     close(fd);
362     return size;
363 }
364
365 void cpu_outb(CPUState *env, int addr, int val)
366 {
367 #ifdef DEBUG_IOPORT
368     if (loglevel & CPU_LOG_IOPORT)
369         fprintf(logfile, "outb: %04x %02x\n", addr, val);
370 #endif    
371     ioport_write_table[0][addr](ioport_opaque[addr], addr, val);
372 }
373
374 void cpu_outw(CPUState *env, int addr, int val)
375 {
376 #ifdef DEBUG_IOPORT
377     if (loglevel & CPU_LOG_IOPORT)
378         fprintf(logfile, "outw: %04x %04x\n", addr, val);
379 #endif    
380     ioport_write_table[1][addr](ioport_opaque[addr], addr, val);
381 }
382
383 void cpu_outl(CPUState *env, int addr, int val)
384 {
385 #ifdef DEBUG_IOPORT
386     if (loglevel & CPU_LOG_IOPORT)
387         fprintf(logfile, "outl: %04x %08x\n", addr, val);
388 #endif
389     ioport_write_table[2][addr](ioport_opaque[addr], addr, val);
390 }
391
392 int cpu_inb(CPUState *env, int addr)
393 {
394     int val;
395     val = ioport_read_table[0][addr](ioport_opaque[addr], addr);
396 #ifdef DEBUG_IOPORT
397     if (loglevel & CPU_LOG_IOPORT)
398         fprintf(logfile, "inb : %04x %02x\n", addr, val);
399 #endif
400     return val;
401 }
402
403 int cpu_inw(CPUState *env, int addr)
404 {
405     int val;
406     val = ioport_read_table[1][addr](ioport_opaque[addr], addr);
407 #ifdef DEBUG_IOPORT
408     if (loglevel & CPU_LOG_IOPORT)
409         fprintf(logfile, "inw : %04x %04x\n", addr, val);
410 #endif
411     return val;
412 }
413
414 int cpu_inl(CPUState *env, int addr)
415 {
416     int val;
417     val = ioport_read_table[2][addr](ioport_opaque[addr], addr);
418 #ifdef DEBUG_IOPORT
419     if (loglevel & CPU_LOG_IOPORT)
420         fprintf(logfile, "inl : %04x %08x\n", addr, val);
421 #endif
422     return val;
423 }
424
425 /***********************************************************/
426 void hw_error(const char *fmt, ...)
427 {
428     va_list ap;
429     CPUState *env;
430
431     va_start(ap, fmt);
432     fprintf(stderr, "qemu: hardware error: ");
433     vfprintf(stderr, fmt, ap);
434     fprintf(stderr, "\n");
435     for(env = first_cpu; env != NULL; env = env->next_cpu) {
436         fprintf(stderr, "CPU #%d:\n", env->cpu_index);
437 #ifdef TARGET_I386
438         cpu_dump_state(env, stderr, fprintf, X86_DUMP_FPU);
439 #else
440         cpu_dump_state(env, stderr, fprintf, 0);
441 #endif
442     }
443     va_end(ap);
444     abort();
445 }
446
447 /***********************************************************/
448 /* keyboard/mouse */
449
450 static QEMUPutKBDEvent *qemu_put_kbd_event;
451 static void *qemu_put_kbd_event_opaque;
452 static QEMUPutMouseEvent *qemu_put_mouse_event;
453 static void *qemu_put_mouse_event_opaque;
454
455 void qemu_add_kbd_event_handler(QEMUPutKBDEvent *func, void *opaque)
456 {
457     qemu_put_kbd_event_opaque = opaque;
458     qemu_put_kbd_event = func;
459 }
460
461 void qemu_add_mouse_event_handler(QEMUPutMouseEvent *func, void *opaque)
462 {
463     qemu_put_mouse_event_opaque = opaque;
464     qemu_put_mouse_event = func;
465 }
466
467 void kbd_put_keycode(int keycode)
468 {
469     if (qemu_put_kbd_event) {
470         qemu_put_kbd_event(qemu_put_kbd_event_opaque, keycode);
471     }
472 }
473
474 void kbd_mouse_event(int dx, int dy, int dz, int buttons_state)
475 {
476     if (qemu_put_mouse_event) {
477         qemu_put_mouse_event(qemu_put_mouse_event_opaque, 
478                              dx, dy, dz, buttons_state);
479     }
480 }
481
482 /***********************************************************/
483 /* timers */
484
485 #if defined(__powerpc__)
486
487 static inline uint32_t get_tbl(void) 
488 {
489     uint32_t tbl;
490     asm volatile("mftb %0" : "=r" (tbl));
491     return tbl;
492 }
493
494 static inline uint32_t get_tbu(void) 
495 {
496         uint32_t tbl;
497         asm volatile("mftbu %0" : "=r" (tbl));
498         return tbl;
499 }
500
501 int64_t cpu_get_real_ticks(void)
502 {
503     uint32_t l, h, h1;
504     /* NOTE: we test if wrapping has occurred */
505     do {
506         h = get_tbu();
507         l = get_tbl();
508         h1 = get_tbu();
509     } while (h != h1);
510     return ((int64_t)h << 32) | l;
511 }
512
513 #elif defined(__i386__)
514
515 int64_t cpu_get_real_ticks(void)
516 {
517     int64_t val;
518     asm volatile ("rdtsc" : "=A" (val));
519     return val;
520 }
521
522 #elif defined(__x86_64__)
523
524 int64_t cpu_get_real_ticks(void)
525 {
526     uint32_t low,high;
527     int64_t val;
528     asm volatile("rdtsc" : "=a" (low), "=d" (high));
529     val = high;
530     val <<= 32;
531     val |= low;
532     return val;
533 }
534
535 #elif defined(__ia64)
536
537 int64_t cpu_get_real_ticks(void)
538 {
539         int64_t val;
540         asm volatile ("mov %0 = ar.itc" : "=r"(val) :: "memory");
541         return val;
542 }
543
544 #elif defined(__s390__)
545
546 int64_t cpu_get_real_ticks(void)
547 {
548     int64_t val;
549     asm volatile("stck 0(%1)" : "=m" (val) : "a" (&val) : "cc");
550     return val;
551 }
552
553 #else
554 #error unsupported CPU
555 #endif
556
557 static int64_t cpu_ticks_offset;
558 static int cpu_ticks_enabled;
559
560 static inline int64_t cpu_get_ticks(void)
561 {
562     if (!cpu_ticks_enabled) {
563         return cpu_ticks_offset;
564     } else {
565         return cpu_get_real_ticks() + cpu_ticks_offset;
566     }
567 }
568
569 /* enable cpu_get_ticks() */
570 void cpu_enable_ticks(void)
571 {
572     if (!cpu_ticks_enabled) {
573         cpu_ticks_offset -= cpu_get_real_ticks();
574         cpu_ticks_enabled = 1;
575     }
576 }
577
578 /* disable cpu_get_ticks() : the clock is stopped. You must not call
579    cpu_get_ticks() after that.  */
580 void cpu_disable_ticks(void)
581 {
582     if (cpu_ticks_enabled) {
583         cpu_ticks_offset = cpu_get_ticks();
584         cpu_ticks_enabled = 0;
585     }
586 }
587
588 static int64_t get_clock(void)
589 {
590 #ifdef _WIN32
591     struct _timeb tb;
592     _ftime(&tb);
593     return ((int64_t)tb.time * 1000 + (int64_t)tb.millitm) * 1000;
594 #else
595     struct timeval tv;
596     gettimeofday(&tv, NULL);
597     return tv.tv_sec * 1000000LL + tv.tv_usec;
598 #endif
599 }
600
601 void cpu_calibrate_ticks(void)
602 {
603     int64_t usec, ticks;
604
605     usec = get_clock();
606     ticks = cpu_get_real_ticks();
607 #ifdef _WIN32
608     Sleep(50);
609 #else
610     usleep(50 * 1000);
611 #endif
612     usec = get_clock() - usec;
613     ticks = cpu_get_real_ticks() - ticks;
614     ticks_per_sec = (ticks * 1000000LL + (usec >> 1)) / usec;
615 }
616
617 /* compute with 96 bit intermediate result: (a*b)/c */
618 uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c)
619 {
620     union {
621         uint64_t ll;
622         struct {
623 #ifdef WORDS_BIGENDIAN
624             uint32_t high, low;
625 #else
626             uint32_t low, high;
627 #endif            
628         } l;
629     } u, res;
630     uint64_t rl, rh;
631
632     u.ll = a;
633     rl = (uint64_t)u.l.low * (uint64_t)b;
634     rh = (uint64_t)u.l.high * (uint64_t)b;
635     rh += (rl >> 32);
636     res.l.high = rh / c;
637     res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c;
638     return res.ll;
639 }
640
641 #define QEMU_TIMER_REALTIME 0
642 #define QEMU_TIMER_VIRTUAL  1
643
644 struct QEMUClock {
645     int type;
646     /* XXX: add frequency */
647 };
648
649 struct QEMUTimer {
650     QEMUClock *clock;
651     int64_t expire_time;
652     QEMUTimerCB *cb;
653     void *opaque;
654     struct QEMUTimer *next;
655 };
656
657 QEMUClock *rt_clock;
658 QEMUClock *vm_clock;
659
660 static QEMUTimer *active_timers[2];
661 #ifdef _WIN32
662 static MMRESULT timerID;
663 #else
664 /* frequency of the times() clock tick */
665 static int timer_freq;
666 #endif
667
668 QEMUClock *qemu_new_clock(int type)
669 {
670     QEMUClock *clock;
671     clock = qemu_mallocz(sizeof(QEMUClock));
672     if (!clock)
673         return NULL;
674     clock->type = type;
675     return clock;
676 }
677
678 QEMUTimer *qemu_new_timer(QEMUClock *clock, QEMUTimerCB *cb, void *opaque)
679 {
680     QEMUTimer *ts;
681
682     ts = qemu_mallocz(sizeof(QEMUTimer));
683     ts->clock = clock;
684     ts->cb = cb;
685     ts->opaque = opaque;
686     return ts;
687 }
688
689 void qemu_free_timer(QEMUTimer *ts)
690 {
691     qemu_free(ts);
692 }
693
694 /* stop a timer, but do not dealloc it */
695 void qemu_del_timer(QEMUTimer *ts)
696 {
697     QEMUTimer **pt, *t;
698
699     /* NOTE: this code must be signal safe because
700        qemu_timer_expired() can be called from a signal. */
701     pt = &active_timers[ts->clock->type];
702     for(;;) {
703         t = *pt;
704         if (!t)
705             break;
706         if (t == ts) {
707             *pt = t->next;
708             break;
709         }
710         pt = &t->next;
711     }
712 }
713
714 /* modify the current timer so that it will be fired when current_time
715    >= expire_time. The corresponding callback will be called. */
716 void qemu_mod_timer(QEMUTimer *ts, int64_t expire_time)
717 {
718     QEMUTimer **pt, *t;
719
720     qemu_del_timer(ts);
721
722     /* add the timer in the sorted list */
723     /* NOTE: this code must be signal safe because
724        qemu_timer_expired() can be called from a signal. */
725     pt = &active_timers[ts->clock->type];
726     for(;;) {
727         t = *pt;
728         if (!t)
729             break;
730         if (t->expire_time > expire_time) 
731             break;
732         pt = &t->next;
733     }
734     ts->expire_time = expire_time;
735     ts->next = *pt;
736     *pt = ts;
737 }
738
739 int qemu_timer_pending(QEMUTimer *ts)
740 {
741     QEMUTimer *t;
742     for(t = active_timers[ts->clock->type]; t != NULL; t = t->next) {
743         if (t == ts)
744             return 1;
745     }
746     return 0;
747 }
748
749 static inline int qemu_timer_expired(QEMUTimer *timer_head, int64_t current_time)
750 {
751     if (!timer_head)
752         return 0;
753     return (timer_head->expire_time <= current_time);
754 }
755
756 static void qemu_run_timers(QEMUTimer **ptimer_head, int64_t current_time)
757 {
758     QEMUTimer *ts;
759     
760     for(;;) {
761         ts = *ptimer_head;
762         if (!ts || ts->expire_time > current_time)
763             break;
764         /* remove timer from the list before calling the callback */
765         *ptimer_head = ts->next;
766         ts->next = NULL;
767         
768         /* run the callback (the timer list can be modified) */
769         ts->cb(ts->opaque);
770     }
771 }
772
773 int64_t qemu_get_clock(QEMUClock *clock)
774 {
775     switch(clock->type) {
776     case QEMU_TIMER_REALTIME:
777 #ifdef _WIN32
778         return GetTickCount();
779 #else
780         {
781             struct tms tp;
782
783             /* Note that using gettimeofday() is not a good solution
784                for timers because its value change when the date is
785                modified. */
786             if (timer_freq == 100) {
787                 return times(&tp) * 10;
788             } else {
789                 return ((int64_t)times(&tp) * 1000) / timer_freq;
790             }
791         }
792 #endif
793     default:
794     case QEMU_TIMER_VIRTUAL:
795         return cpu_get_ticks();
796     }
797 }
798
799 /* save a timer */
800 void qemu_put_timer(QEMUFile *f, QEMUTimer *ts)
801 {
802     uint64_t expire_time;
803
804     if (qemu_timer_pending(ts)) {
805         expire_time = ts->expire_time;
806     } else {
807         expire_time = -1;
808     }
809     qemu_put_be64(f, expire_time);
810 }
811
812 void qemu_get_timer(QEMUFile *f, QEMUTimer *ts)
813 {
814     uint64_t expire_time;
815
816     expire_time = qemu_get_be64(f);
817     if (expire_time != -1) {
818         qemu_mod_timer(ts, expire_time);
819     } else {
820         qemu_del_timer(ts);
821     }
822 }
823
824 static void timer_save(QEMUFile *f, void *opaque)
825 {
826     if (cpu_ticks_enabled) {
827         hw_error("cannot save state if virtual timers are running");
828     }
829     qemu_put_be64s(f, &cpu_ticks_offset);
830     qemu_put_be64s(f, &ticks_per_sec);
831 }
832
833 static int timer_load(QEMUFile *f, void *opaque, int version_id)
834 {
835     if (version_id != 1)
836         return -EINVAL;
837     if (cpu_ticks_enabled) {
838         return -EINVAL;
839     }
840     qemu_get_be64s(f, &cpu_ticks_offset);
841     qemu_get_be64s(f, &ticks_per_sec);
842     return 0;
843 }
844
845 #ifdef _WIN32
846 void CALLBACK host_alarm_handler(UINT uTimerID, UINT uMsg, 
847                                  DWORD_PTR dwUser, DWORD_PTR dw1, DWORD_PTR dw2)
848 #else
849 static void host_alarm_handler(int host_signum)
850 #endif
851 {
852 #if 0
853 #define DISP_FREQ 1000
854     {
855         static int64_t delta_min = INT64_MAX;
856         static int64_t delta_max, delta_cum, last_clock, delta, ti;
857         static int count;
858         ti = qemu_get_clock(vm_clock);
859         if (last_clock != 0) {
860             delta = ti - last_clock;
861             if (delta < delta_min)
862                 delta_min = delta;
863             if (delta > delta_max)
864                 delta_max = delta;
865             delta_cum += delta;
866             if (++count == DISP_FREQ) {
867                 printf("timer: min=%lld us max=%lld us avg=%lld us avg_freq=%0.3f Hz\n",
868                        muldiv64(delta_min, 1000000, ticks_per_sec),
869                        muldiv64(delta_max, 1000000, ticks_per_sec),
870                        muldiv64(delta_cum, 1000000 / DISP_FREQ, ticks_per_sec),
871                        (double)ticks_per_sec / ((double)delta_cum / DISP_FREQ));
872                 count = 0;
873                 delta_min = INT64_MAX;
874                 delta_max = 0;
875                 delta_cum = 0;
876             }
877         }
878         last_clock = ti;
879     }
880 #endif
881     if (qemu_timer_expired(active_timers[QEMU_TIMER_VIRTUAL],
882                            qemu_get_clock(vm_clock)) ||
883         qemu_timer_expired(active_timers[QEMU_TIMER_REALTIME],
884                            qemu_get_clock(rt_clock))) {
885         CPUState *env = cpu_single_env;
886         if (env) {
887             /* stop the currently executing cpu because a timer occured */
888             cpu_interrupt(env, CPU_INTERRUPT_EXIT);
889 #ifdef USE_KQEMU
890             if (env->kqemu_enabled) {
891                 kqemu_cpu_interrupt(env);
892             }
893 #endif
894         }
895     }
896 }
897
898 #ifndef _WIN32
899
900 #if defined(__linux__)
901
902 #define RTC_FREQ 1024
903
904 static int rtc_fd;
905
906 static int start_rtc_timer(void)
907 {
908     rtc_fd = open("/dev/rtc", O_RDONLY);
909     if (rtc_fd < 0)
910         return -1;
911     if (ioctl(rtc_fd, RTC_IRQP_SET, RTC_FREQ) < 0) {
912         fprintf(stderr, "Could not configure '/dev/rtc' to have a 1024 Hz timer. This is not a fatal\n"
913                 "error, but for better emulation accuracy either use a 2.6 host Linux kernel or\n"
914                 "type 'echo 1024 > /proc/sys/dev/rtc/max-user-freq' as root.\n");
915         goto fail;
916     }
917     if (ioctl(rtc_fd, RTC_PIE_ON, 0) < 0) {
918     fail:
919         close(rtc_fd);
920         return -1;
921     }
922     pit_min_timer_count = PIT_FREQ / RTC_FREQ;
923     return 0;
924 }
925
926 #else
927
928 static int start_rtc_timer(void)
929 {
930     return -1;
931 }
932
933 #endif /* !defined(__linux__) */
934
935 #endif /* !defined(_WIN32) */
936
937 static void init_timers(void)
938 {
939     rt_clock = qemu_new_clock(QEMU_TIMER_REALTIME);
940     vm_clock = qemu_new_clock(QEMU_TIMER_VIRTUAL);
941
942 #ifdef _WIN32
943     {
944         int count=0;
945         timerID = timeSetEvent(1,     // interval (ms)
946                                0,     // resolution
947                                host_alarm_handler, // function
948                                (DWORD)&count,  // user parameter
949                                TIME_PERIODIC | TIME_CALLBACK_FUNCTION);
950         if( !timerID ) {
951             perror("failed timer alarm");
952             exit(1);
953         }
954     }
955     pit_min_timer_count = ((uint64_t)10000 * PIT_FREQ) / 1000000;
956 #else
957     {
958         struct sigaction act;
959         struct itimerval itv;
960         
961         /* get times() syscall frequency */
962         timer_freq = sysconf(_SC_CLK_TCK);
963         
964         /* timer signal */
965         sigfillset(&act.sa_mask);
966        act.sa_flags = 0;
967 #if defined (TARGET_I386) && defined(USE_CODE_COPY)
968         act.sa_flags |= SA_ONSTACK;
969 #endif
970         act.sa_handler = host_alarm_handler;
971         sigaction(SIGALRM, &act, NULL);
972
973         itv.it_interval.tv_sec = 0;
974         itv.it_interval.tv_usec = 999; /* for i386 kernel 2.6 to get 1 ms */
975         itv.it_value.tv_sec = 0;
976         itv.it_value.tv_usec = 10 * 1000;
977         setitimer(ITIMER_REAL, &itv, NULL);
978         /* we probe the tick duration of the kernel to inform the user if
979            the emulated kernel requested a too high timer frequency */
980         getitimer(ITIMER_REAL, &itv);
981
982 #if defined(__linux__)
983         if (itv.it_interval.tv_usec > 1000) {
984             /* try to use /dev/rtc to have a faster timer */
985             if (start_rtc_timer() < 0)
986                 goto use_itimer;
987             /* disable itimer */
988             itv.it_interval.tv_sec = 0;
989             itv.it_interval.tv_usec = 0;
990             itv.it_value.tv_sec = 0;
991             itv.it_value.tv_usec = 0;
992             setitimer(ITIMER_REAL, &itv, NULL);
993
994             /* use the RTC */
995             sigaction(SIGIO, &act, NULL);
996             fcntl(rtc_fd, F_SETFL, O_ASYNC);
997             fcntl(rtc_fd, F_SETOWN, getpid());
998         } else 
999 #endif /* defined(__linux__) */
1000         {
1001         use_itimer:
1002             pit_min_timer_count = ((uint64_t)itv.it_interval.tv_usec * 
1003                                    PIT_FREQ) / 1000000;
1004         }
1005     }
1006 #endif
1007 }
1008
1009 void quit_timers(void)
1010 {
1011 #ifdef _WIN32
1012     timeKillEvent(timerID);
1013 #endif
1014 }
1015
1016 /***********************************************************/
1017 /* character device */
1018
1019 int qemu_chr_write(CharDriverState *s, const uint8_t *buf, int len)
1020 {
1021     return s->chr_write(s, buf, len);
1022 }
1023
1024 int qemu_chr_ioctl(CharDriverState *s, int cmd, void *arg)
1025 {
1026     if (!s->chr_ioctl)
1027         return -ENOTSUP;
1028     return s->chr_ioctl(s, cmd, arg);
1029 }
1030
1031 void qemu_chr_printf(CharDriverState *s, const char *fmt, ...)
1032 {
1033     char buf[4096];
1034     va_list ap;
1035     va_start(ap, fmt);
1036     vsnprintf(buf, sizeof(buf), fmt, ap);
1037     qemu_chr_write(s, buf, strlen(buf));
1038     va_end(ap);
1039 }
1040
1041 void qemu_chr_send_event(CharDriverState *s, int event)
1042 {
1043     if (s->chr_send_event)
1044         s->chr_send_event(s, event);
1045 }
1046
1047 void qemu_chr_add_read_handler(CharDriverState *s, 
1048                                IOCanRWHandler *fd_can_read, 
1049                                IOReadHandler *fd_read, void *opaque)
1050 {
1051     s->chr_add_read_handler(s, fd_can_read, fd_read, opaque);
1052 }
1053              
1054 void qemu_chr_add_event_handler(CharDriverState *s, IOEventHandler *chr_event)
1055 {
1056     s->chr_event = chr_event;
1057 }
1058
1059 static int null_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
1060 {
1061     return len;
1062 }
1063
1064 static void null_chr_add_read_handler(CharDriverState *chr, 
1065                                     IOCanRWHandler *fd_can_read, 
1066                                     IOReadHandler *fd_read, void *opaque)
1067 {
1068 }
1069
1070 CharDriverState *qemu_chr_open_null(void)
1071 {
1072     CharDriverState *chr;
1073
1074     chr = qemu_mallocz(sizeof(CharDriverState));
1075     if (!chr)
1076         return NULL;
1077     chr->chr_write = null_chr_write;
1078     chr->chr_add_read_handler = null_chr_add_read_handler;
1079     return chr;
1080 }
1081
1082 #ifdef _WIN32
1083
1084 #define socket_error() WSAGetLastError()
1085 #undef EINTR
1086 #define EWOULDBLOCK WSAEWOULDBLOCK
1087 #define EINTR       WSAEINTR
1088 #define EINPROGRESS WSAEINPROGRESS
1089
1090 static void socket_cleanup(void)
1091 {
1092     WSACleanup();
1093 }
1094
1095 static int socket_init(void)
1096 {
1097     WSADATA Data;
1098     int ret, err;
1099
1100     ret = WSAStartup(MAKEWORD(2,2), &Data);
1101     if (ret != 0) {
1102         err = WSAGetLastError();
1103         fprintf(stderr, "WSAStartup: %d\n", err);
1104         return -1;
1105     }
1106     atexit(socket_cleanup);
1107     return 0;
1108 }
1109
1110 static int send_all(int fd, const uint8_t *buf, int len1)
1111 {
1112     int ret, len;
1113     
1114     len = len1;
1115     while (len > 0) {
1116         ret = send(fd, buf, len, 0);
1117         if (ret < 0) {
1118             int errno;
1119             errno = WSAGetLastError();
1120             if (errno != WSAEWOULDBLOCK) {
1121                 return -1;
1122             }
1123         } else if (ret == 0) {
1124             break;
1125         } else {
1126             buf += ret;
1127             len -= ret;
1128         }
1129     }
1130     return len1 - len;
1131 }
1132
1133 void socket_set_nonblock(int fd)
1134 {
1135     unsigned long opt = 1;
1136     ioctlsocket(fd, FIONBIO, &opt);
1137 }
1138
1139 #else
1140
1141 #define socket_error() errno
1142 #define closesocket(s) close(s)
1143
1144 static int unix_write(int fd, const uint8_t *buf, int len1)
1145 {
1146     int ret, len;
1147
1148     len = len1;
1149     while (len > 0) {
1150         ret = write(fd, buf, len);
1151         if (ret < 0) {
1152             if (errno != EINTR && errno != EAGAIN)
1153                 return -1;
1154         } else if (ret == 0) {
1155             break;
1156         } else {
1157             buf += ret;
1158             len -= ret;
1159         }
1160     }
1161     return len1 - len;
1162 }
1163
1164 static inline int send_all(int fd, const uint8_t *buf, int len1)
1165 {
1166     return unix_write(fd, buf, len1);
1167 }
1168
1169 void socket_set_nonblock(int fd)
1170 {
1171     fcntl(fd, F_SETFL, O_NONBLOCK);
1172 }
1173 #endif /* !_WIN32 */
1174
1175 #ifndef _WIN32
1176
1177 typedef struct {
1178     int fd_in, fd_out;
1179     IOCanRWHandler *fd_can_read; 
1180     IOReadHandler *fd_read;
1181     void *fd_opaque;
1182     int max_size;
1183 } FDCharDriver;
1184
1185 #define STDIO_MAX_CLIENTS 2
1186
1187 static int stdio_nb_clients;
1188 static CharDriverState *stdio_clients[STDIO_MAX_CLIENTS];
1189
1190 static int fd_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
1191 {
1192     FDCharDriver *s = chr->opaque;
1193     return unix_write(s->fd_out, buf, len);
1194 }
1195
1196 static int fd_chr_read_poll(void *opaque)
1197 {
1198     CharDriverState *chr = opaque;
1199     FDCharDriver *s = chr->opaque;
1200
1201     s->max_size = s->fd_can_read(s->fd_opaque);
1202     return s->max_size;
1203 }
1204
1205 static void fd_chr_read(void *opaque)
1206 {
1207     CharDriverState *chr = opaque;
1208     FDCharDriver *s = chr->opaque;
1209     int size, len;
1210     uint8_t buf[1024];
1211     
1212     len = sizeof(buf);
1213     if (len > s->max_size)
1214         len = s->max_size;
1215     if (len == 0)
1216         return;
1217     size = read(s->fd_in, buf, len);
1218     if (size > 0) {
1219         s->fd_read(s->fd_opaque, buf, size);
1220     }
1221 }
1222
1223 static void fd_chr_add_read_handler(CharDriverState *chr, 
1224                                     IOCanRWHandler *fd_can_read, 
1225                                     IOReadHandler *fd_read, void *opaque)
1226 {
1227     FDCharDriver *s = chr->opaque;
1228
1229     if (s->fd_in >= 0) {
1230         s->fd_can_read = fd_can_read;
1231         s->fd_read = fd_read;
1232         s->fd_opaque = opaque;
1233         if (nographic && s->fd_in == 0) {
1234         } else {
1235             qemu_set_fd_handler2(s->fd_in, fd_chr_read_poll, 
1236                                  fd_chr_read, NULL, chr);
1237         }
1238     }
1239 }
1240
1241 /* open a character device to a unix fd */
1242 CharDriverState *qemu_chr_open_fd(int fd_in, int fd_out)
1243 {
1244     CharDriverState *chr;
1245     FDCharDriver *s;
1246
1247     chr = qemu_mallocz(sizeof(CharDriverState));
1248     if (!chr)
1249         return NULL;
1250     s = qemu_mallocz(sizeof(FDCharDriver));
1251     if (!s) {
1252         free(chr);
1253         return NULL;
1254     }
1255     s->fd_in = fd_in;
1256     s->fd_out = fd_out;
1257     chr->opaque = s;
1258     chr->chr_write = fd_chr_write;
1259     chr->chr_add_read_handler = fd_chr_add_read_handler;
1260     return chr;
1261 }
1262
1263 CharDriverState *qemu_chr_open_file_out(const char *file_out)
1264 {
1265     int fd_out;
1266
1267     fd_out = open(file_out, O_WRONLY | O_TRUNC | O_CREAT | O_BINARY);
1268     if (fd_out < 0)
1269         return NULL;
1270     return qemu_chr_open_fd(-1, fd_out);
1271 }
1272
1273 CharDriverState *qemu_chr_open_pipe(const char *filename)
1274 {
1275     int fd;
1276
1277     fd = open(filename, O_RDWR | O_BINARY);
1278     if (fd < 0)
1279         return NULL;
1280     return qemu_chr_open_fd(fd, fd);
1281 }
1282
1283
1284 /* for STDIO, we handle the case where several clients use it
1285    (nographic mode) */
1286
1287 #define TERM_ESCAPE 0x01 /* ctrl-a is used for escape */
1288
1289 #define TERM_FIFO_MAX_SIZE 1
1290
1291 static int term_got_escape, client_index;
1292 static uint8_t term_fifo[TERM_FIFO_MAX_SIZE];
1293 int term_fifo_size;
1294
1295 void term_print_help(void)
1296 {
1297     printf("\n"
1298            "C-a h    print this help\n"
1299            "C-a x    exit emulator\n"
1300            "C-a s    save disk data back to file (if -snapshot)\n"
1301            "C-a b    send break (magic sysrq)\n"
1302            "C-a c    switch between console and monitor\n"
1303            "C-a C-a  send C-a\n"
1304            );
1305 }
1306
1307 /* called when a char is received */
1308 static void stdio_received_byte(int ch)
1309 {
1310     if (term_got_escape) {
1311         term_got_escape = 0;
1312         switch(ch) {
1313         case 'h':
1314             term_print_help();
1315             break;
1316         case 'x':
1317             exit(0);
1318             break;
1319         case 's': 
1320             {
1321                 int i;
1322                 for (i = 0; i < MAX_DISKS; i++) {
1323                     if (bs_table[i])
1324                         bdrv_commit(bs_table[i]);
1325                 }
1326             }
1327             break;
1328         case 'b':
1329             if (client_index < stdio_nb_clients) {
1330                 CharDriverState *chr;
1331                 FDCharDriver *s;
1332
1333                 chr = stdio_clients[client_index];
1334                 s = chr->opaque;
1335                 chr->chr_event(s->fd_opaque, CHR_EVENT_BREAK);
1336             }
1337             break;
1338         case 'c':
1339             client_index++;
1340             if (client_index >= stdio_nb_clients)
1341                 client_index = 0;
1342             if (client_index == 0) {
1343                 /* send a new line in the monitor to get the prompt */
1344                 ch = '\r';
1345                 goto send_char;
1346             }
1347             break;
1348         case TERM_ESCAPE:
1349             goto send_char;
1350         }
1351     } else if (ch == TERM_ESCAPE) {
1352         term_got_escape = 1;
1353     } else {
1354     send_char:
1355         if (client_index < stdio_nb_clients) {
1356             uint8_t buf[1];
1357             CharDriverState *chr;
1358             FDCharDriver *s;
1359             
1360             chr = stdio_clients[client_index];
1361             s = chr->opaque;
1362             if (s->fd_can_read(s->fd_opaque) > 0) {
1363                 buf[0] = ch;
1364                 s->fd_read(s->fd_opaque, buf, 1);
1365             } else if (term_fifo_size == 0) {
1366                 term_fifo[term_fifo_size++] = ch;
1367             }
1368         }
1369     }
1370 }
1371
1372 static int stdio_read_poll(void *opaque)
1373 {
1374     CharDriverState *chr;
1375     FDCharDriver *s;
1376
1377     if (client_index < stdio_nb_clients) {
1378         chr = stdio_clients[client_index];
1379         s = chr->opaque;
1380         /* try to flush the queue if needed */
1381         if (term_fifo_size != 0 && s->fd_can_read(s->fd_opaque) > 0) {
1382             s->fd_read(s->fd_opaque, term_fifo, 1);
1383             term_fifo_size = 0;
1384         }
1385         /* see if we can absorb more chars */
1386         if (term_fifo_size == 0)
1387             return 1;
1388         else
1389             return 0;
1390     } else {
1391         return 1;
1392     }
1393 }
1394
1395 static void stdio_read(void *opaque)
1396 {
1397     int size;
1398     uint8_t buf[1];
1399     
1400     size = read(0, buf, 1);
1401     if (size > 0)
1402         stdio_received_byte(buf[0]);
1403 }
1404
1405 /* init terminal so that we can grab keys */
1406 static struct termios oldtty;
1407 static int old_fd0_flags;
1408
1409 static void term_exit(void)
1410 {
1411     tcsetattr (0, TCSANOW, &oldtty);
1412     fcntl(0, F_SETFL, old_fd0_flags);
1413 }
1414
1415 static void term_init(void)
1416 {
1417     struct termios tty;
1418
1419     tcgetattr (0, &tty);
1420     oldtty = tty;
1421     old_fd0_flags = fcntl(0, F_GETFL);
1422
1423     tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
1424                           |INLCR|IGNCR|ICRNL|IXON);
1425     tty.c_oflag |= OPOST;
1426     tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN);
1427     /* if graphical mode, we allow Ctrl-C handling */
1428     if (nographic)
1429         tty.c_lflag &= ~ISIG;
1430     tty.c_cflag &= ~(CSIZE|PARENB);
1431     tty.c_cflag |= CS8;
1432     tty.c_cc[VMIN] = 1;
1433     tty.c_cc[VTIME] = 0;
1434     
1435     tcsetattr (0, TCSANOW, &tty);
1436
1437     atexit(term_exit);
1438
1439     fcntl(0, F_SETFL, O_NONBLOCK);
1440 }
1441
1442 CharDriverState *qemu_chr_open_stdio(void)
1443 {
1444     CharDriverState *chr;
1445
1446     if (nographic) {
1447         if (stdio_nb_clients >= STDIO_MAX_CLIENTS)
1448             return NULL;
1449         chr = qemu_chr_open_fd(0, 1);
1450         if (stdio_nb_clients == 0)
1451             qemu_set_fd_handler2(0, stdio_read_poll, stdio_read, NULL, NULL);
1452         client_index = stdio_nb_clients;
1453     } else {
1454         if (stdio_nb_clients != 0)
1455             return NULL;
1456         chr = qemu_chr_open_fd(0, 1);
1457     }
1458     stdio_clients[stdio_nb_clients++] = chr;
1459     if (stdio_nb_clients == 1) {
1460         /* set the terminal in raw mode */
1461         term_init();
1462     }
1463     return chr;
1464 }
1465
1466 #if defined(__linux__)
1467 CharDriverState *qemu_chr_open_pty(void)
1468 {
1469     struct termios tty;
1470     char slave_name[1024];
1471     int master_fd, slave_fd;
1472     
1473     /* Not satisfying */
1474     if (openpty(&master_fd, &slave_fd, slave_name, NULL, NULL) < 0) {
1475         return NULL;
1476     }
1477     
1478     /* Disabling local echo and line-buffered output */
1479     tcgetattr (master_fd, &tty);
1480     tty.c_lflag &= ~(ECHO|ICANON|ISIG);
1481     tty.c_cc[VMIN] = 1;
1482     tty.c_cc[VTIME] = 0;
1483     tcsetattr (master_fd, TCSAFLUSH, &tty);
1484
1485     fprintf(stderr, "char device redirected to %s\n", slave_name);
1486     return qemu_chr_open_fd(master_fd, master_fd);
1487 }
1488
1489 static void tty_serial_init(int fd, int speed, 
1490                             int parity, int data_bits, int stop_bits)
1491 {
1492     struct termios tty;
1493     speed_t spd;
1494
1495 #if 0
1496     printf("tty_serial_init: speed=%d parity=%c data=%d stop=%d\n", 
1497            speed, parity, data_bits, stop_bits);
1498 #endif
1499     tcgetattr (fd, &tty);
1500
1501     switch(speed) {
1502     case 50:
1503         spd = B50;
1504         break;
1505     case 75:
1506         spd = B75;
1507         break;
1508     case 300:
1509         spd = B300;
1510         break;
1511     case 600:
1512         spd = B600;
1513         break;
1514     case 1200:
1515         spd = B1200;
1516         break;
1517     case 2400:
1518         spd = B2400;
1519         break;
1520     case 4800:
1521         spd = B4800;
1522         break;
1523     case 9600:
1524         spd = B9600;
1525         break;
1526     case 19200:
1527         spd = B19200;
1528         break;
1529     case 38400:
1530         spd = B38400;
1531         break;
1532     case 57600:
1533         spd = B57600;
1534         break;
1535     default:
1536     case 115200:
1537         spd = B115200;
1538         break;
1539     }
1540
1541     cfsetispeed(&tty, spd);
1542     cfsetospeed(&tty, spd);
1543
1544     tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
1545                           |INLCR|IGNCR|ICRNL|IXON);
1546     tty.c_oflag |= OPOST;
1547     tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN|ISIG);
1548     tty.c_cflag &= ~(CSIZE|PARENB|PARODD|CRTSCTS);
1549     switch(data_bits) {
1550     default:
1551     case 8:
1552         tty.c_cflag |= CS8;
1553         break;
1554     case 7:
1555         tty.c_cflag |= CS7;
1556         break;
1557     case 6:
1558         tty.c_cflag |= CS6;
1559         break;
1560     case 5:
1561         tty.c_cflag |= CS5;
1562         break;
1563     }
1564     switch(parity) {
1565     default:
1566     case 'N':
1567         break;
1568     case 'E':
1569         tty.c_cflag |= PARENB;
1570         break;
1571     case 'O':
1572         tty.c_cflag |= PARENB | PARODD;
1573         break;
1574     }
1575     
1576     tcsetattr (fd, TCSANOW, &tty);
1577 }
1578
1579 static int tty_serial_ioctl(CharDriverState *chr, int cmd, void *arg)
1580 {
1581     FDCharDriver *s = chr->opaque;
1582     
1583     switch(cmd) {
1584     case CHR_IOCTL_SERIAL_SET_PARAMS:
1585         {
1586             QEMUSerialSetParams *ssp = arg;
1587             tty_serial_init(s->fd_in, ssp->speed, ssp->parity, 
1588                             ssp->data_bits, ssp->stop_bits);
1589         }
1590         break;
1591     case CHR_IOCTL_SERIAL_SET_BREAK:
1592         {
1593             int enable = *(int *)arg;
1594             if (enable)
1595                 tcsendbreak(s->fd_in, 1);
1596         }
1597         break;
1598     default:
1599         return -ENOTSUP;
1600     }
1601     return 0;
1602 }
1603
1604 CharDriverState *qemu_chr_open_tty(const char *filename)
1605 {
1606     CharDriverState *chr;
1607     int fd;
1608
1609     fd = open(filename, O_RDWR | O_NONBLOCK);
1610     if (fd < 0)
1611         return NULL;
1612     fcntl(fd, F_SETFL, O_NONBLOCK);
1613     tty_serial_init(fd, 115200, 'N', 8, 1);
1614     chr = qemu_chr_open_fd(fd, fd);
1615     if (!chr)
1616         return NULL;
1617     chr->chr_ioctl = tty_serial_ioctl;
1618     return chr;
1619 }
1620
1621 static int pp_ioctl(CharDriverState *chr, int cmd, void *arg)
1622 {
1623     int fd = (int)chr->opaque;
1624     uint8_t b;
1625
1626     switch(cmd) {
1627     case CHR_IOCTL_PP_READ_DATA:
1628         if (ioctl(fd, PPRDATA, &b) < 0)
1629             return -ENOTSUP;
1630         *(uint8_t *)arg = b;
1631         break;
1632     case CHR_IOCTL_PP_WRITE_DATA:
1633         b = *(uint8_t *)arg;
1634         if (ioctl(fd, PPWDATA, &b) < 0)
1635             return -ENOTSUP;
1636         break;
1637     case CHR_IOCTL_PP_READ_CONTROL:
1638         if (ioctl(fd, PPRCONTROL, &b) < 0)
1639             return -ENOTSUP;
1640         *(uint8_t *)arg = b;
1641         break;
1642     case CHR_IOCTL_PP_WRITE_CONTROL:
1643         b = *(uint8_t *)arg;
1644         if (ioctl(fd, PPWCONTROL, &b) < 0)
1645             return -ENOTSUP;
1646         break;
1647     case CHR_IOCTL_PP_READ_STATUS:
1648         if (ioctl(fd, PPRSTATUS, &b) < 0)
1649             return -ENOTSUP;
1650         *(uint8_t *)arg = b;
1651         break;
1652     default:
1653         return -ENOTSUP;
1654     }
1655     return 0;
1656 }
1657
1658 CharDriverState *qemu_chr_open_pp(const char *filename)
1659 {
1660     CharDriverState *chr;
1661     int fd;
1662
1663     fd = open(filename, O_RDWR);
1664     if (fd < 0)
1665         return NULL;
1666
1667     if (ioctl(fd, PPCLAIM) < 0) {
1668         close(fd);
1669         return NULL;
1670     }
1671
1672     chr = qemu_mallocz(sizeof(CharDriverState));
1673     if (!chr) {
1674         close(fd);
1675         return NULL;
1676     }
1677     chr->opaque = (void *)fd;
1678     chr->chr_write = null_chr_write;
1679     chr->chr_add_read_handler = null_chr_add_read_handler;
1680     chr->chr_ioctl = pp_ioctl;
1681     return chr;
1682 }
1683
1684 #else
1685 CharDriverState *qemu_chr_open_pty(void)
1686 {
1687     return NULL;
1688 }
1689 #endif
1690
1691 #endif /* !defined(_WIN32) */
1692
1693 CharDriverState *qemu_chr_open(const char *filename)
1694 {
1695 #ifndef _WIN32
1696     const char *p;
1697 #endif
1698
1699     if (!strcmp(filename, "vc")) {
1700         return text_console_init(&display_state);
1701     } else if (!strcmp(filename, "null")) {
1702         return qemu_chr_open_null();
1703     } else 
1704 #ifndef _WIN32
1705     if (strstart(filename, "file:", &p)) {
1706         return qemu_chr_open_file_out(p);
1707     } else if (strstart(filename, "pipe:", &p)) {
1708         return qemu_chr_open_pipe(p);
1709     } else if (!strcmp(filename, "pty")) {
1710         return qemu_chr_open_pty();
1711     } else if (!strcmp(filename, "stdio")) {
1712         return qemu_chr_open_stdio();
1713     } else 
1714 #endif
1715 #if defined(__linux__)
1716     if (strstart(filename, "/dev/parport", NULL)) {
1717         return qemu_chr_open_pp(filename);
1718     } else 
1719     if (strstart(filename, "/dev/", NULL)) {
1720         return qemu_chr_open_tty(filename);
1721     } else 
1722 #endif
1723     {
1724         return NULL;
1725     }
1726 }
1727
1728 /***********************************************************/
1729 /* network device redirectors */
1730
1731 void hex_dump(FILE *f, const uint8_t *buf, int size)
1732 {
1733     int len, i, j, c;
1734
1735     for(i=0;i<size;i+=16) {
1736         len = size - i;
1737         if (len > 16)
1738             len = 16;
1739         fprintf(f, "%08x ", i);
1740         for(j=0;j<16;j++) {
1741             if (j < len)
1742                 fprintf(f, " %02x", buf[i+j]);
1743             else
1744                 fprintf(f, "   ");
1745         }
1746         fprintf(f, " ");
1747         for(j=0;j<len;j++) {
1748             c = buf[i+j];
1749             if (c < ' ' || c > '~')
1750                 c = '.';
1751             fprintf(f, "%c", c);
1752         }
1753         fprintf(f, "\n");
1754     }
1755 }
1756
1757 static int parse_macaddr(uint8_t *macaddr, const char *p)
1758 {
1759     int i;
1760     for(i = 0; i < 6; i++) {
1761         macaddr[i] = strtol(p, (char **)&p, 16);
1762         if (i == 5) {
1763             if (*p != '\0') 
1764                 return -1;
1765         } else {
1766             if (*p != ':') 
1767                 return -1;
1768             p++;
1769         }
1770     }
1771     return 0;
1772 }
1773
1774 static int get_str_sep(char *buf, int buf_size, const char **pp, int sep)
1775 {
1776     const char *p, *p1;
1777     int len;
1778     p = *pp;
1779     p1 = strchr(p, sep);
1780     if (!p1)
1781         return -1;
1782     len = p1 - p;
1783     p1++;
1784     if (buf_size > 0) {
1785         if (len > buf_size - 1)
1786             len = buf_size - 1;
1787         memcpy(buf, p, len);
1788         buf[len] = '\0';
1789     }
1790     *pp = p1;
1791     return 0;
1792 }
1793
1794 int parse_host_port(struct sockaddr_in *saddr, const char *str)
1795 {
1796     char buf[512];
1797     struct hostent *he;
1798     const char *p, *r;
1799     int port;
1800
1801     p = str;
1802     if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
1803         return -1;
1804     saddr->sin_family = AF_INET;
1805     if (buf[0] == '\0') {
1806         saddr->sin_addr.s_addr = 0;
1807     } else {
1808         if (isdigit(buf[0])) {
1809             if (!inet_aton(buf, &saddr->sin_addr))
1810                 return -1;
1811         } else {
1812             if ((he = gethostbyname(buf)) == NULL)
1813                 return - 1;
1814             saddr->sin_addr = *(struct in_addr *)he->h_addr;
1815         }
1816     }
1817     port = strtol(p, (char **)&r, 0);
1818     if (r == p)
1819         return -1;
1820     saddr->sin_port = htons(port);
1821     return 0;
1822 }
1823
1824 /* find or alloc a new VLAN */
1825 VLANState *qemu_find_vlan(int id)
1826 {
1827     VLANState **pvlan, *vlan;
1828     for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
1829         if (vlan->id == id)
1830             return vlan;
1831     }
1832     vlan = qemu_mallocz(sizeof(VLANState));
1833     if (!vlan)
1834         return NULL;
1835     vlan->id = id;
1836     vlan->next = NULL;
1837     pvlan = &first_vlan;
1838     while (*pvlan != NULL)
1839         pvlan = &(*pvlan)->next;
1840     *pvlan = vlan;
1841     return vlan;
1842 }
1843
1844 VLANClientState *qemu_new_vlan_client(VLANState *vlan,
1845                                       IOReadHandler *fd_read,
1846                                       IOCanRWHandler *fd_can_read,
1847                                       void *opaque)
1848 {
1849     VLANClientState *vc, **pvc;
1850     vc = qemu_mallocz(sizeof(VLANClientState));
1851     if (!vc)
1852         return NULL;
1853     vc->fd_read = fd_read;
1854     vc->fd_can_read = fd_can_read;
1855     vc->opaque = opaque;
1856     vc->vlan = vlan;
1857
1858     vc->next = NULL;
1859     pvc = &vlan->first_client;
1860     while (*pvc != NULL)
1861         pvc = &(*pvc)->next;
1862     *pvc = vc;
1863     return vc;
1864 }
1865
1866 int qemu_can_send_packet(VLANClientState *vc1)
1867 {
1868     VLANState *vlan = vc1->vlan;
1869     VLANClientState *vc;
1870
1871     for(vc = vlan->first_client; vc != NULL; vc = vc->next) {
1872         if (vc != vc1) {
1873             if (vc->fd_can_read && !vc->fd_can_read(vc->opaque))
1874                 return 0;
1875         }
1876     }
1877     return 1;
1878 }
1879
1880 void qemu_send_packet(VLANClientState *vc1, const uint8_t *buf, int size)
1881 {
1882     VLANState *vlan = vc1->vlan;
1883     VLANClientState *vc;
1884
1885 #if 0
1886     printf("vlan %d send:\n", vlan->id);
1887     hex_dump(stdout, buf, size);
1888 #endif
1889     for(vc = vlan->first_client; vc != NULL; vc = vc->next) {
1890         if (vc != vc1) {
1891             vc->fd_read(vc->opaque, buf, size);
1892         }
1893     }
1894 }
1895
1896 #if defined(CONFIG_SLIRP)
1897
1898 /* slirp network adapter */
1899
1900 static int slirp_inited;
1901 static VLANClientState *slirp_vc;
1902
1903 int slirp_can_output(void)
1904 {
1905     return qemu_can_send_packet(slirp_vc);
1906 }
1907
1908 void slirp_output(const uint8_t *pkt, int pkt_len)
1909 {
1910 #if 0
1911     printf("slirp output:\n");
1912     hex_dump(stdout, pkt, pkt_len);
1913 #endif
1914     qemu_send_packet(slirp_vc, pkt, pkt_len);
1915 }
1916
1917 static void slirp_receive(void *opaque, const uint8_t *buf, int size)
1918 {
1919 #if 0
1920     printf("slirp input:\n");
1921     hex_dump(stdout, buf, size);
1922 #endif
1923     slirp_input(buf, size);
1924 }
1925
1926 static int net_slirp_init(VLANState *vlan)
1927 {
1928     if (!slirp_inited) {
1929         slirp_inited = 1;
1930         slirp_init();
1931     }
1932     slirp_vc = qemu_new_vlan_client(vlan, 
1933                                     slirp_receive, NULL, NULL);
1934     snprintf(slirp_vc->info_str, sizeof(slirp_vc->info_str), "user redirector");
1935     return 0;
1936 }
1937
1938 static void net_slirp_redir(const char *redir_str)
1939 {
1940     int is_udp;
1941     char buf[256], *r;
1942     const char *p;
1943     struct in_addr guest_addr;
1944     int host_port, guest_port;
1945     
1946     if (!slirp_inited) {
1947         slirp_inited = 1;
1948         slirp_init();
1949     }
1950
1951     p = redir_str;
1952     if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
1953         goto fail;
1954     if (!strcmp(buf, "tcp")) {
1955         is_udp = 0;
1956     } else if (!strcmp(buf, "udp")) {
1957         is_udp = 1;
1958     } else {
1959         goto fail;
1960     }
1961
1962     if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
1963         goto fail;
1964     host_port = strtol(buf, &r, 0);
1965     if (r == buf)
1966         goto fail;
1967
1968     if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
1969         goto fail;
1970     if (buf[0] == '\0') {
1971         pstrcpy(buf, sizeof(buf), "10.0.2.15");
1972     }
1973     if (!inet_aton(buf, &guest_addr))
1974         goto fail;
1975     
1976     guest_port = strtol(p, &r, 0);
1977     if (r == p)
1978         goto fail;
1979     
1980     if (slirp_redir(is_udp, host_port, guest_addr, guest_port) < 0) {
1981         fprintf(stderr, "qemu: could not set up redirection\n");
1982         exit(1);
1983     }
1984     return;
1985  fail:
1986     fprintf(stderr, "qemu: syntax: -redir [tcp|udp]:host-port:[guest-host]:guest-port\n");
1987     exit(1);
1988 }
1989     
1990 #ifndef _WIN32
1991
1992 char smb_dir[1024];
1993
1994 static void smb_exit(void)
1995 {
1996     DIR *d;
1997     struct dirent *de;
1998     char filename[1024];
1999
2000     /* erase all the files in the directory */
2001     d = opendir(smb_dir);
2002     for(;;) {
2003         de = readdir(d);
2004         if (!de)
2005             break;
2006         if (strcmp(de->d_name, ".") != 0 &&
2007             strcmp(de->d_name, "..") != 0) {
2008             snprintf(filename, sizeof(filename), "%s/%s", 
2009                      smb_dir, de->d_name);
2010             unlink(filename);
2011         }
2012     }
2013     closedir(d);
2014     rmdir(smb_dir);
2015 }
2016
2017 /* automatic user mode samba server configuration */
2018 void net_slirp_smb(const char *exported_dir)
2019 {
2020     char smb_conf[1024];
2021     char smb_cmdline[1024];
2022     FILE *f;
2023
2024     if (!slirp_inited) {
2025         slirp_inited = 1;
2026         slirp_init();
2027     }
2028
2029     /* XXX: better tmp dir construction */
2030     snprintf(smb_dir, sizeof(smb_dir), "/tmp/qemu-smb.%d", getpid());
2031     if (mkdir(smb_dir, 0700) < 0) {
2032         fprintf(stderr, "qemu: could not create samba server dir '%s'\n", smb_dir);
2033         exit(1);
2034     }
2035     snprintf(smb_conf, sizeof(smb_conf), "%s/%s", smb_dir, "smb.conf");
2036     
2037     f = fopen(smb_conf, "w");
2038     if (!f) {
2039         fprintf(stderr, "qemu: could not create samba server configuration file '%s'\n", smb_conf);
2040         exit(1);
2041     }
2042     fprintf(f, 
2043             "[global]\n"
2044             "private dir=%s\n"
2045             "smb ports=0\n"
2046             "socket address=127.0.0.1\n"
2047             "pid directory=%s\n"
2048             "lock directory=%s\n"
2049             "log file=%s/log.smbd\n"
2050             "smb passwd file=%s/smbpasswd\n"
2051             "security = share\n"
2052             "[qemu]\n"
2053             "path=%s\n"
2054             "read only=no\n"
2055             "guest ok=yes\n",
2056             smb_dir,
2057             smb_dir,
2058             smb_dir,
2059             smb_dir,
2060             smb_dir,
2061             exported_dir
2062             );
2063     fclose(f);
2064     atexit(smb_exit);
2065
2066     snprintf(smb_cmdline, sizeof(smb_cmdline), "/usr/sbin/smbd -s %s",
2067              smb_conf);
2068     
2069     slirp_add_exec(0, smb_cmdline, 4, 139);
2070 }
2071
2072 #endif /* !defined(_WIN32) */
2073
2074 #endif /* CONFIG_SLIRP */
2075
2076 #if !defined(_WIN32)
2077
2078 typedef struct TAPState {
2079     VLANClientState *vc;
2080     int fd;
2081 } TAPState;
2082
2083 static void tap_receive(void *opaque, const uint8_t *buf, int size)
2084 {
2085     TAPState *s = opaque;
2086     int ret;
2087     for(;;) {
2088         ret = write(s->fd, buf, size);
2089         if (ret < 0 && (errno == EINTR || errno == EAGAIN)) {
2090         } else {
2091             break;
2092         }
2093     }
2094 }
2095
2096 static void tap_send(void *opaque)
2097 {
2098     TAPState *s = opaque;
2099     uint8_t buf[4096];
2100     int size;
2101
2102     size = read(s->fd, buf, sizeof(buf));
2103     if (size > 0) {
2104         qemu_send_packet(s->vc, buf, size);
2105     }
2106 }
2107
2108 /* fd support */
2109
2110 static TAPState *net_tap_fd_init(VLANState *vlan, int fd)
2111 {
2112     TAPState *s;
2113
2114     s = qemu_mallocz(sizeof(TAPState));
2115     if (!s)
2116         return NULL;
2117     s->fd = fd;
2118     s->vc = qemu_new_vlan_client(vlan, tap_receive, NULL, s);
2119     qemu_set_fd_handler(s->fd, tap_send, NULL, s);
2120     snprintf(s->vc->info_str, sizeof(s->vc->info_str), "tap: fd=%d", fd);
2121     return s;
2122 }
2123
2124 #ifdef _BSD
2125 static int tap_open(char *ifname, int ifname_size)
2126 {
2127     int fd;
2128     char *dev;
2129     struct stat s;
2130
2131     fd = open("/dev/tap", O_RDWR);
2132     if (fd < 0) {
2133         fprintf(stderr, "warning: could not open /dev/tap: no virtual network emulation\n");
2134         return -1;
2135     }
2136
2137     fstat(fd, &s);
2138     dev = devname(s.st_rdev, S_IFCHR);
2139     pstrcpy(ifname, ifname_size, dev);
2140
2141     fcntl(fd, F_SETFL, O_NONBLOCK);
2142     return fd;
2143 }
2144 #else
2145 static int tap_open(char *ifname, int ifname_size)
2146 {
2147     struct ifreq ifr;
2148     int fd, ret;
2149     
2150     fd = open("/dev/net/tun", O_RDWR);
2151     if (fd < 0) {
2152         fprintf(stderr, "warning: could not open /dev/net/tun: no virtual network emulation\n");
2153         return -1;
2154     }
2155     memset(&ifr, 0, sizeof(ifr));
2156     ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
2157     if (ifname[0] != '\0')
2158         pstrcpy(ifr.ifr_name, IFNAMSIZ, ifname);
2159     else
2160         pstrcpy(ifr.ifr_name, IFNAMSIZ, "tap%d");
2161     ret = ioctl(fd, TUNSETIFF, (void *) &ifr);
2162     if (ret != 0) {
2163         fprintf(stderr, "warning: could not configure /dev/net/tun: no virtual network emulation\n");
2164         close(fd);
2165         return -1;
2166     }
2167     pstrcpy(ifname, ifname_size, ifr.ifr_name);
2168     fcntl(fd, F_SETFL, O_NONBLOCK);
2169     return fd;
2170 }
2171 #endif
2172
2173 static int net_tap_init(VLANState *vlan, const char *ifname1,
2174                         const char *setup_script)
2175 {
2176     TAPState *s;
2177     int pid, status, fd;
2178     char *args[3];
2179     char **parg;
2180     char ifname[128];
2181
2182     if (ifname1 != NULL)
2183         pstrcpy(ifname, sizeof(ifname), ifname1);
2184     else
2185         ifname[0] = '\0';
2186     fd = tap_open(ifname, sizeof(ifname));
2187     if (fd < 0)
2188         return -1;
2189
2190     if (!setup_script)
2191         setup_script = "";
2192     if (setup_script[0] != '\0') {
2193         /* try to launch network init script */
2194         pid = fork();
2195         if (pid >= 0) {
2196             if (pid == 0) {
2197                 parg = args;
2198                 *parg++ = (char *)setup_script;
2199                 *parg++ = ifname;
2200                 *parg++ = NULL;
2201                 execv(setup_script, args);
2202                 _exit(1);
2203             }
2204             while (waitpid(pid, &status, 0) != pid);
2205             if (!WIFEXITED(status) ||
2206                 WEXITSTATUS(status) != 0) {
2207                 fprintf(stderr, "%s: could not launch network script\n",
2208                         setup_script);
2209                 return -1;
2210             }
2211         }
2212     }
2213     s = net_tap_fd_init(vlan, fd);
2214     if (!s)
2215         return -1;
2216     snprintf(s->vc->info_str, sizeof(s->vc->info_str), 
2217              "tap: ifname=%s setup_script=%s", ifname, setup_script);
2218     return 0;
2219 }
2220
2221 #endif /* !_WIN32 */
2222
2223 /* network connection */
2224 typedef struct NetSocketState {
2225     VLANClientState *vc;
2226     int fd;
2227     int state; /* 0 = getting length, 1 = getting data */
2228     int index;
2229     int packet_len;
2230     uint8_t buf[4096];
2231     struct sockaddr_in dgram_dst; /* contains inet host and port destination iff connectionless (SOCK_DGRAM) */
2232 } NetSocketState;
2233
2234 typedef struct NetSocketListenState {
2235     VLANState *vlan;
2236     int fd;
2237 } NetSocketListenState;
2238
2239 /* XXX: we consider we can send the whole packet without blocking */
2240 static void net_socket_receive(void *opaque, const uint8_t *buf, int size)
2241 {
2242     NetSocketState *s = opaque;
2243     uint32_t len;
2244     len = htonl(size);
2245
2246     send_all(s->fd, (const uint8_t *)&len, sizeof(len));
2247     send_all(s->fd, buf, size);
2248 }
2249
2250 static void net_socket_receive_dgram(void *opaque, const uint8_t *buf, int size)
2251 {
2252     NetSocketState *s = opaque;
2253     sendto(s->fd, buf, size, 0, 
2254            (struct sockaddr *)&s->dgram_dst, sizeof(s->dgram_dst));
2255 }
2256
2257 static void net_socket_send(void *opaque)
2258 {
2259     NetSocketState *s = opaque;
2260     int l, size, err;
2261     uint8_t buf1[4096];
2262     const uint8_t *buf;
2263
2264     size = recv(s->fd, buf1, sizeof(buf1), 0);
2265     if (size < 0) {
2266         err = socket_error();
2267         if (err != EWOULDBLOCK) 
2268             goto eoc;
2269     } else if (size == 0) {
2270         /* end of connection */
2271     eoc:
2272         qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
2273         closesocket(s->fd);
2274         return;
2275     }
2276     buf = buf1;
2277     while (size > 0) {
2278         /* reassemble a packet from the network */
2279         switch(s->state) {
2280         case 0:
2281             l = 4 - s->index;
2282             if (l > size)
2283                 l = size;
2284             memcpy(s->buf + s->index, buf, l);
2285             buf += l;
2286             size -= l;
2287             s->index += l;
2288             if (s->index == 4) {
2289                 /* got length */
2290                 s->packet_len = ntohl(*(uint32_t *)s->buf);
2291                 s->index = 0;
2292                 s->state = 1;
2293             }
2294             break;
2295         case 1:
2296             l = s->packet_len - s->index;
2297             if (l > size)
2298                 l = size;
2299             memcpy(s->buf + s->index, buf, l);
2300             s->index += l;
2301             buf += l;
2302             size -= l;
2303             if (s->index >= s->packet_len) {
2304                 qemu_send_packet(s->vc, s->buf, s->packet_len);
2305                 s->index = 0;
2306                 s->state = 0;
2307             }
2308             break;
2309         }
2310     }
2311 }
2312
2313 static void net_socket_send_dgram(void *opaque)
2314 {
2315     NetSocketState *s = opaque;
2316     int size;
2317
2318     size = recv(s->fd, s->buf, sizeof(s->buf), 0);
2319     if (size < 0) 
2320         return;
2321     if (size == 0) {
2322         /* end of connection */
2323         qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
2324         return;
2325     }
2326     qemu_send_packet(s->vc, s->buf, size);
2327 }
2328
2329 static int net_socket_mcast_create(struct sockaddr_in *mcastaddr)
2330 {
2331     struct ip_mreq imr;
2332     int fd;
2333     int val, ret;
2334     if (!IN_MULTICAST(ntohl(mcastaddr->sin_addr.s_addr))) {
2335         fprintf(stderr, "qemu: error: specified mcastaddr \"%s\" (0x%08x) does not contain a multicast address\n",
2336                 inet_ntoa(mcastaddr->sin_addr), 
2337                 (int)ntohl(mcastaddr->sin_addr.s_addr));
2338         return -1;
2339
2340     }
2341     fd = socket(PF_INET, SOCK_DGRAM, 0);
2342     if (fd < 0) {
2343         perror("socket(PF_INET, SOCK_DGRAM)");
2344         return -1;
2345     }
2346
2347     val = 1;
2348     ret=setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, 
2349                    (const char *)&val, sizeof(val));
2350     if (ret < 0) {
2351         perror("setsockopt(SOL_SOCKET, SO_REUSEADDR)");
2352         goto fail;
2353     }
2354
2355     ret = bind(fd, (struct sockaddr *)mcastaddr, sizeof(*mcastaddr));
2356     if (ret < 0) {
2357         perror("bind");
2358         goto fail;
2359     }
2360     
2361     /* Add host to multicast group */
2362     imr.imr_multiaddr = mcastaddr->sin_addr;
2363     imr.imr_interface.s_addr = htonl(INADDR_ANY);
2364
2365     ret = setsockopt(fd, IPPROTO_IP, IP_ADD_MEMBERSHIP, 
2366                      (const char *)&imr, sizeof(struct ip_mreq));
2367     if (ret < 0) {
2368         perror("setsockopt(IP_ADD_MEMBERSHIP)");
2369         goto fail;
2370     }
2371
2372     /* Force mcast msgs to loopback (eg. several QEMUs in same host */
2373     val = 1;
2374     ret=setsockopt(fd, IPPROTO_IP, IP_MULTICAST_LOOP, 
2375                    (const char *)&val, sizeof(val));
2376     if (ret < 0) {
2377         perror("setsockopt(SOL_IP, IP_MULTICAST_LOOP)");
2378         goto fail;
2379     }
2380
2381     socket_set_nonblock(fd);
2382     return fd;
2383 fail:
2384     if (fd>=0) close(fd);
2385     return -1;
2386 }
2387
2388 static NetSocketState *net_socket_fd_init_dgram(VLANState *vlan, int fd, 
2389                                           int is_connected)
2390 {
2391     struct sockaddr_in saddr;
2392     int newfd;
2393     socklen_t saddr_len;
2394     NetSocketState *s;
2395
2396     /* fd passed: multicast: "learn" dgram_dst address from bound address and save it
2397      * Because this may be "shared" socket from a "master" process, datagrams would be recv() 
2398      * by ONLY ONE process: we must "clone" this dgram socket --jjo
2399      */
2400
2401     if (is_connected) {
2402         if (getsockname(fd, (struct sockaddr *) &saddr, &saddr_len) == 0) {
2403             /* must be bound */
2404             if (saddr.sin_addr.s_addr==0) {
2405                 fprintf(stderr, "qemu: error: init_dgram: fd=%d unbound, cannot setup multicast dst addr\n",
2406                         fd);
2407                 return NULL;
2408             }
2409             /* clone dgram socket */
2410             newfd = net_socket_mcast_create(&saddr);
2411             if (newfd < 0) {
2412                 /* error already reported by net_socket_mcast_create() */
2413                 close(fd);
2414                 return NULL;
2415             }
2416             /* clone newfd to fd, close newfd */
2417             dup2(newfd, fd);
2418             close(newfd);
2419         
2420         } else {
2421             fprintf(stderr, "qemu: error: init_dgram: fd=%d failed getsockname(): %s\n",
2422                     fd, strerror(errno));
2423             return NULL;
2424         }
2425     }
2426
2427     s = qemu_mallocz(sizeof(NetSocketState));
2428     if (!s)
2429         return NULL;
2430     s->fd = fd;
2431
2432     s->vc = qemu_new_vlan_client(vlan, net_socket_receive_dgram, NULL, s);
2433     qemu_set_fd_handler(s->fd, net_socket_send_dgram, NULL, s);
2434
2435     /* mcast: save bound address as dst */
2436     if (is_connected) s->dgram_dst=saddr;
2437
2438     snprintf(s->vc->info_str, sizeof(s->vc->info_str),
2439             "socket: fd=%d (%s mcast=%s:%d)", 
2440             fd, is_connected? "cloned" : "",
2441             inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
2442     return s;
2443 }
2444
2445 static void net_socket_connect(void *opaque)
2446 {
2447     NetSocketState *s = opaque;
2448     qemu_set_fd_handler(s->fd, net_socket_send, NULL, s);
2449 }
2450
2451 static NetSocketState *net_socket_fd_init_stream(VLANState *vlan, int fd, 
2452                                           int is_connected)
2453 {
2454     NetSocketState *s;
2455     s = qemu_mallocz(sizeof(NetSocketState));
2456     if (!s)
2457         return NULL;
2458     s->fd = fd;
2459     s->vc = qemu_new_vlan_client(vlan, 
2460                                  net_socket_receive, NULL, s);
2461     snprintf(s->vc->info_str, sizeof(s->vc->info_str),
2462              "socket: fd=%d", fd);
2463     if (is_connected) {
2464         net_socket_connect(s);
2465     } else {
2466         qemu_set_fd_handler(s->fd, NULL, net_socket_connect, s);
2467     }
2468     return s;
2469 }
2470
2471 static NetSocketState *net_socket_fd_init(VLANState *vlan, int fd, 
2472                                           int is_connected)
2473 {
2474     int so_type=-1, optlen=sizeof(so_type);
2475
2476     if(getsockopt(fd, SOL_SOCKET, SO_TYPE, (char *)&so_type, &optlen)< 0) {
2477         fprintf(stderr, "qemu: error: setsockopt(SO_TYPE) for fd=%d failed\n", fd);
2478         return NULL;
2479     }
2480     switch(so_type) {
2481     case SOCK_DGRAM:
2482         return net_socket_fd_init_dgram(vlan, fd, is_connected);
2483     case SOCK_STREAM:
2484         return net_socket_fd_init_stream(vlan, fd, is_connected);
2485     default:
2486         /* who knows ... this could be a eg. a pty, do warn and continue as stream */
2487         fprintf(stderr, "qemu: warning: socket type=%d for fd=%d is not SOCK_DGRAM or SOCK_STREAM\n", so_type, fd);
2488         return net_socket_fd_init_stream(vlan, fd, is_connected);
2489     }
2490     return NULL;
2491 }
2492
2493 static void net_socket_accept(void *opaque)
2494 {
2495     NetSocketListenState *s = opaque;    
2496     NetSocketState *s1;
2497     struct sockaddr_in saddr;
2498     socklen_t len;
2499     int fd;
2500
2501     for(;;) {
2502         len = sizeof(saddr);
2503         fd = accept(s->fd, (struct sockaddr *)&saddr, &len);
2504         if (fd < 0 && errno != EINTR) {
2505             return;
2506         } else if (fd >= 0) {
2507             break;
2508         }
2509     }
2510     s1 = net_socket_fd_init(s->vlan, fd, 1); 
2511     if (!s1) {
2512         close(fd);
2513     } else {
2514         snprintf(s1->vc->info_str, sizeof(s1->vc->info_str),
2515                  "socket: connection from %s:%d", 
2516                  inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
2517     }
2518 }
2519
2520 static int net_socket_listen_init(VLANState *vlan, const char *host_str)
2521 {
2522     NetSocketListenState *s;
2523     int fd, val, ret;
2524     struct sockaddr_in saddr;
2525
2526     if (parse_host_port(&saddr, host_str) < 0)
2527         return -1;
2528     
2529     s = qemu_mallocz(sizeof(NetSocketListenState));
2530     if (!s)
2531         return -1;
2532
2533     fd = socket(PF_INET, SOCK_STREAM, 0);
2534     if (fd < 0) {
2535         perror("socket");
2536         return -1;
2537     }
2538     socket_set_nonblock(fd);
2539
2540     /* allow fast reuse */
2541     val = 1;
2542     setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (const char *)&val, sizeof(val));
2543     
2544     ret = bind(fd, (struct sockaddr *)&saddr, sizeof(saddr));
2545     if (ret < 0) {
2546         perror("bind");
2547         return -1;
2548     }
2549     ret = listen(fd, 0);
2550     if (ret < 0) {
2551         perror("listen");
2552         return -1;
2553     }
2554     s->vlan = vlan;
2555     s->fd = fd;
2556     qemu_set_fd_handler(fd, net_socket_accept, NULL, s);
2557     return 0;
2558 }
2559
2560 static int net_socket_connect_init(VLANState *vlan, const char *host_str)
2561 {
2562     NetSocketState *s;
2563     int fd, connected, ret, err;
2564     struct sockaddr_in saddr;
2565
2566     if (parse_host_port(&saddr, host_str) < 0)
2567         return -1;
2568
2569     fd = socket(PF_INET, SOCK_STREAM, 0);
2570     if (fd < 0) {
2571         perror("socket");
2572         return -1;
2573     }
2574     socket_set_nonblock(fd);
2575
2576     connected = 0;
2577     for(;;) {
2578         ret = connect(fd, (struct sockaddr *)&saddr, sizeof(saddr));
2579         if (ret < 0) {
2580             err = socket_error();
2581             if (err == EINTR || err == EWOULDBLOCK) {
2582             } else if (err == EINPROGRESS) {
2583                 break;
2584             } else {
2585                 perror("connect");
2586                 closesocket(fd);
2587                 return -1;
2588             }
2589         } else {
2590             connected = 1;
2591             break;
2592         }
2593     }
2594     s = net_socket_fd_init(vlan, fd, connected);
2595     if (!s)
2596         return -1;
2597     snprintf(s->vc->info_str, sizeof(s->vc->info_str),
2598              "socket: connect to %s:%d", 
2599              inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
2600     return 0;
2601 }
2602
2603 static int net_socket_mcast_init(VLANState *vlan, const char *host_str)
2604 {
2605     NetSocketState *s;
2606     int fd;
2607     struct sockaddr_in saddr;
2608
2609     if (parse_host_port(&saddr, host_str) < 0)
2610         return -1;
2611
2612
2613     fd = net_socket_mcast_create(&saddr);
2614     if (fd < 0)
2615         return -1;
2616
2617     s = net_socket_fd_init(vlan, fd, 0);
2618     if (!s)
2619         return -1;
2620
2621     s->dgram_dst = saddr;
2622     
2623     snprintf(s->vc->info_str, sizeof(s->vc->info_str),
2624              "socket: mcast=%s:%d", 
2625              inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
2626     return 0;
2627
2628 }
2629
2630 static int get_param_value(char *buf, int buf_size,
2631                            const char *tag, const char *str)
2632 {
2633     const char *p;
2634     char *q;
2635     char option[128];
2636
2637     p = str;
2638     for(;;) {
2639         q = option;
2640         while (*p != '\0' && *p != '=') {
2641             if ((q - option) < sizeof(option) - 1)
2642                 *q++ = *p;
2643             p++;
2644         }
2645         *q = '\0';
2646         if (*p != '=')
2647             break;
2648         p++;
2649         if (!strcmp(tag, option)) {
2650             q = buf;
2651             while (*p != '\0' && *p != ',') {
2652                 if ((q - buf) < buf_size - 1)
2653                     *q++ = *p;
2654                 p++;
2655             }
2656             *q = '\0';
2657             return q - buf;
2658         } else {
2659             while (*p != '\0' && *p != ',') {
2660                 p++;
2661             }
2662         }
2663         if (*p != ',')
2664             break;
2665         p++;
2666     }
2667     return 0;
2668 }
2669
2670 int net_client_init(const char *str)
2671 {
2672     const char *p;
2673     char *q;
2674     char device[64];
2675     char buf[1024];
2676     int vlan_id, ret;
2677     VLANState *vlan;
2678
2679     p = str;
2680     q = device;
2681     while (*p != '\0' && *p != ',') {
2682         if ((q - device) < sizeof(device) - 1)
2683             *q++ = *p;
2684         p++;
2685     }
2686     *q = '\0';
2687     if (*p == ',')
2688         p++;
2689     vlan_id = 0;
2690     if (get_param_value(buf, sizeof(buf), "vlan", p)) {
2691         vlan_id = strtol(buf, NULL, 0);
2692     }
2693     vlan = qemu_find_vlan(vlan_id);
2694     if (!vlan) {
2695         fprintf(stderr, "Could not create vlan %d\n", vlan_id);
2696         return -1;
2697     }
2698     if (!strcmp(device, "nic")) {
2699         NICInfo *nd;
2700         uint8_t *macaddr;
2701
2702         if (nb_nics >= MAX_NICS) {
2703             fprintf(stderr, "Too Many NICs\n");
2704             return -1;
2705         }
2706         nd = &nd_table[nb_nics];
2707         macaddr = nd->macaddr;
2708         macaddr[0] = 0x52;
2709         macaddr[1] = 0x54;
2710         macaddr[2] = 0x00;
2711         macaddr[3] = 0x12;
2712         macaddr[4] = 0x34;
2713         macaddr[5] = 0x56 + nb_nics;
2714
2715         if (get_param_value(buf, sizeof(buf), "macaddr", p)) {
2716             if (parse_macaddr(macaddr, buf) < 0) {
2717                 fprintf(stderr, "invalid syntax for ethernet address\n");
2718                 return -1;
2719             }
2720         }
2721         nd->vlan = vlan;
2722         nb_nics++;
2723         ret = 0;
2724     } else
2725     if (!strcmp(device, "none")) {
2726         /* does nothing. It is needed to signal that no network cards
2727            are wanted */
2728         ret = 0;
2729     } else
2730 #ifdef CONFIG_SLIRP
2731     if (!strcmp(device, "user")) {
2732         ret = net_slirp_init(vlan);
2733     } else
2734 #endif
2735 #ifdef _WIN32
2736     if (!strcmp(device, "tap")) {
2737         char ifname[64];
2738         if (get_param_value(ifname, sizeof(ifname), "ifname", p) <= 0) {
2739             fprintf(stderr, "tap: no interface name\n");
2740             return -1;
2741         }
2742         ret = tap_win32_init(vlan, ifname);
2743     } else
2744 #else
2745     if (!strcmp(device, "tap")) {
2746         char ifname[64];
2747         char setup_script[1024];
2748         int fd;
2749         if (get_param_value(buf, sizeof(buf), "fd", p) > 0) {
2750             fd = strtol(buf, NULL, 0);
2751             ret = -1;
2752             if (net_tap_fd_init(vlan, fd))
2753                 ret = 0;
2754         } else {
2755             get_param_value(ifname, sizeof(ifname), "ifname", p);
2756             if (get_param_value(setup_script, sizeof(setup_script), "script", p) == 0) {
2757                 pstrcpy(setup_script, sizeof(setup_script), DEFAULT_NETWORK_SCRIPT);
2758             }
2759             ret = net_tap_init(vlan, ifname, setup_script);
2760         }
2761     } else
2762 #endif
2763     if (!strcmp(device, "socket")) {
2764         if (get_param_value(buf, sizeof(buf), "fd", p) > 0) {
2765             int fd;
2766             fd = strtol(buf, NULL, 0);
2767             ret = -1;
2768             if (net_socket_fd_init(vlan, fd, 1))
2769                 ret = 0;
2770         } else if (get_param_value(buf, sizeof(buf), "listen", p) > 0) {
2771             ret = net_socket_listen_init(vlan, buf);
2772         } else if (get_param_value(buf, sizeof(buf), "connect", p) > 0) {
2773             ret = net_socket_connect_init(vlan, buf);
2774         } else if (get_param_value(buf, sizeof(buf), "mcast", p) > 0) {
2775             ret = net_socket_mcast_init(vlan, buf);
2776         } else {
2777             fprintf(stderr, "Unknown socket options: %s\n", p);
2778             return -1;
2779         }
2780     } else
2781     {
2782         fprintf(stderr, "Unknown network device: %s\n", device);
2783         return -1;
2784     }
2785     if (ret < 0) {
2786         fprintf(stderr, "Could not initialize device '%s'\n", device);
2787     }
2788     
2789     return ret;
2790 }
2791
2792 void do_info_network(void)
2793 {
2794     VLANState *vlan;
2795     VLANClientState *vc;
2796
2797     for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
2798         term_printf("VLAN %d devices:\n", vlan->id);
2799         for(vc = vlan->first_client; vc != NULL; vc = vc->next)
2800             term_printf("  %s\n", vc->info_str);
2801     }
2802 }
2803  
2804 /***********************************************************/
2805 /* USB devices */
2806
2807 static int usb_device_add(const char *devname)
2808 {
2809     const char *p;
2810     USBDevice *dev;
2811     int i;
2812
2813     if (!vm_usb_hub)
2814         return -1;
2815     for(i = 0;i < MAX_VM_USB_PORTS; i++) {
2816         if (!vm_usb_ports[i]->dev)
2817             break;
2818     }
2819     if (i == MAX_VM_USB_PORTS)
2820         return -1;
2821
2822     if (strstart(devname, "host:", &p)) {
2823         dev = usb_host_device_open(p);
2824         if (!dev)
2825             return -1;
2826     } else if (!strcmp(devname, "mouse")) {
2827         dev = usb_mouse_init();
2828         if (!dev)
2829             return -1;
2830     } else {
2831         return -1;
2832     }
2833     usb_attach(vm_usb_ports[i], dev);
2834     return 0;
2835 }
2836
2837 static int usb_device_del(const char *devname)
2838 {
2839     USBDevice *dev;
2840     int bus_num, addr, i;
2841     const char *p;
2842
2843     if (!vm_usb_hub)
2844         return -1;
2845
2846     p = strchr(devname, '.');
2847     if (!p) 
2848         return -1;
2849     bus_num = strtoul(devname, NULL, 0);
2850     addr = strtoul(p + 1, NULL, 0);
2851     if (bus_num != 0)
2852         return -1;
2853     for(i = 0;i < MAX_VM_USB_PORTS; i++) {
2854         dev = vm_usb_ports[i]->dev;
2855         if (dev && dev->addr == addr)
2856             break;
2857     }
2858     if (i == MAX_VM_USB_PORTS)
2859         return -1;
2860     usb_attach(vm_usb_ports[i], NULL);
2861     return 0;
2862 }
2863
2864 void do_usb_add(const char *devname)
2865 {
2866     int ret;
2867     ret = usb_device_add(devname);
2868     if (ret < 0) 
2869         term_printf("Could not add USB device '%s'\n", devname);
2870 }
2871
2872 void do_usb_del(const char *devname)
2873 {
2874     int ret;
2875     ret = usb_device_del(devname);
2876     if (ret < 0) 
2877         term_printf("Could not remove USB device '%s'\n", devname);
2878 }
2879
2880 void usb_info(void)
2881 {
2882     USBDevice *dev;
2883     int i;
2884     const char *speed_str;
2885
2886     if (!vm_usb_hub) {
2887         term_printf("USB support not enabled\n");
2888         return;
2889     }
2890
2891     for(i = 0; i < MAX_VM_USB_PORTS; i++) {
2892         dev = vm_usb_ports[i]->dev;
2893         if (dev) {
2894             term_printf("Hub port %d:\n", i);
2895             switch(dev->speed) {
2896             case USB_SPEED_LOW: 
2897                 speed_str = "1.5"; 
2898                 break;
2899             case USB_SPEED_FULL: 
2900                 speed_str = "12"; 
2901                 break;
2902             case USB_SPEED_HIGH: 
2903                 speed_str = "480"; 
2904                 break;
2905             default:
2906                 speed_str = "?"; 
2907                 break;
2908             }
2909             term_printf("  Device %d.%d, speed %s Mb/s\n", 
2910                         0, dev->addr, speed_str);
2911         }
2912     }
2913 }
2914
2915 /***********************************************************/
2916 /* pid file */
2917
2918 static char *pid_filename;
2919
2920 /* Remove PID file. Called on normal exit */
2921
2922 static void remove_pidfile(void) 
2923 {
2924     unlink (pid_filename);
2925 }
2926
2927 static void create_pidfile(const char *filename)
2928 {
2929     struct stat pidstat;
2930     FILE *f;
2931
2932     /* Try to write our PID to the named file */
2933     if (stat(filename, &pidstat) < 0) {
2934         if (errno == ENOENT) {
2935             if ((f = fopen (filename, "w")) == NULL) {
2936                 perror("Opening pidfile");
2937                 exit(1);
2938             }
2939             fprintf(f, "%d\n", getpid());
2940             fclose(f);
2941             pid_filename = qemu_strdup(filename);
2942             if (!pid_filename) {
2943                 fprintf(stderr, "Could not save PID filename");
2944                 exit(1);
2945             }
2946             atexit(remove_pidfile);
2947         }
2948     } else {
2949         fprintf(stderr, "%s already exists. Remove it and try again.\n", 
2950                 filename);
2951         exit(1);
2952     }
2953 }
2954
2955 /***********************************************************/
2956 /* dumb display */
2957
2958 static void dumb_update(DisplayState *ds, int x, int y, int w, int h)
2959 {
2960 }
2961
2962 static void dumb_resize(DisplayState *ds, int w, int h)
2963 {
2964 }
2965
2966 static void dumb_refresh(DisplayState *ds)
2967 {
2968     vga_update_display();
2969 }
2970
2971 void dumb_display_init(DisplayState *ds)
2972 {
2973     ds->data = NULL;
2974     ds->linesize = 0;
2975     ds->depth = 0;
2976     ds->dpy_update = dumb_update;
2977     ds->dpy_resize = dumb_resize;
2978     ds->dpy_refresh = dumb_refresh;
2979 }
2980
2981 #if !defined(CONFIG_SOFTMMU)
2982 /***********************************************************/
2983 /* cpu signal handler */
2984 static void host_segv_handler(int host_signum, siginfo_t *info, 
2985                               void *puc)
2986 {
2987     if (cpu_signal_handler(host_signum, info, puc))
2988         return;
2989     if (stdio_nb_clients > 0)
2990         term_exit();
2991     abort();
2992 }
2993 #endif
2994
2995 /***********************************************************/
2996 /* I/O handling */
2997
2998 #define MAX_IO_HANDLERS 64
2999
3000 typedef struct IOHandlerRecord {
3001     int fd;
3002     IOCanRWHandler *fd_read_poll;
3003     IOHandler *fd_read;
3004     IOHandler *fd_write;
3005     void *opaque;
3006     /* temporary data */
3007     struct pollfd *ufd;
3008     struct IOHandlerRecord *next;
3009 } IOHandlerRecord;
3010
3011 static IOHandlerRecord *first_io_handler;
3012
3013 /* XXX: fd_read_poll should be suppressed, but an API change is
3014    necessary in the character devices to suppress fd_can_read(). */
3015 int qemu_set_fd_handler2(int fd, 
3016                          IOCanRWHandler *fd_read_poll, 
3017                          IOHandler *fd_read, 
3018                          IOHandler *fd_write, 
3019                          void *opaque)
3020 {
3021     IOHandlerRecord **pioh, *ioh;
3022
3023     if (!fd_read && !fd_write) {
3024         pioh = &first_io_handler;
3025         for(;;) {
3026             ioh = *pioh;
3027             if (ioh == NULL)
3028                 break;
3029             if (ioh->fd == fd) {
3030                 *pioh = ioh->next;
3031                 qemu_free(ioh);
3032                 break;
3033             }
3034             pioh = &ioh->next;
3035         }
3036     } else {
3037         for(ioh = first_io_handler; ioh != NULL; ioh = ioh->next) {
3038             if (ioh->fd == fd)
3039                 goto found;
3040         }
3041         ioh = qemu_mallocz(sizeof(IOHandlerRecord));
3042         if (!ioh)
3043             return -1;
3044         ioh->next = first_io_handler;
3045         first_io_handler = ioh;
3046     found:
3047         ioh->fd = fd;
3048         ioh->fd_read_poll = fd_read_poll;
3049         ioh->fd_read = fd_read;
3050         ioh->fd_write = fd_write;
3051         ioh->opaque = opaque;
3052     }
3053     return 0;
3054 }
3055
3056 int qemu_set_fd_handler(int fd, 
3057                         IOHandler *fd_read, 
3058                         IOHandler *fd_write, 
3059                         void *opaque)
3060 {
3061     return qemu_set_fd_handler2(fd, NULL, fd_read, fd_write, opaque);
3062 }
3063
3064 /***********************************************************/
3065 /* savevm/loadvm support */
3066
3067 void qemu_put_buffer(QEMUFile *f, const uint8_t *buf, int size)
3068 {
3069     fwrite(buf, 1, size, f);
3070 }
3071
3072 void qemu_put_byte(QEMUFile *f, int v)
3073 {
3074     fputc(v, f);
3075 }
3076
3077 void qemu_put_be16(QEMUFile *f, unsigned int v)
3078 {
3079     qemu_put_byte(f, v >> 8);
3080     qemu_put_byte(f, v);
3081 }
3082
3083 void qemu_put_be32(QEMUFile *f, unsigned int v)
3084 {
3085     qemu_put_byte(f, v >> 24);
3086     qemu_put_byte(f, v >> 16);
3087     qemu_put_byte(f, v >> 8);
3088     qemu_put_byte(f, v);
3089 }
3090
3091 void qemu_put_be64(QEMUFile *f, uint64_t v)
3092 {
3093     qemu_put_be32(f, v >> 32);
3094     qemu_put_be32(f, v);
3095 }
3096
3097 int qemu_get_buffer(QEMUFile *f, uint8_t *buf, int size)
3098 {
3099     return fread(buf, 1, size, f);
3100 }
3101
3102 int qemu_get_byte(QEMUFile *f)
3103 {
3104     int v;
3105     v = fgetc(f);
3106     if (v == EOF)
3107         return 0;
3108     else
3109         return v;
3110 }
3111
3112 unsigned int qemu_get_be16(QEMUFile *f)
3113 {
3114     unsigned int v;
3115     v = qemu_get_byte(f) << 8;
3116     v |= qemu_get_byte(f);
3117     return v;
3118 }
3119
3120 unsigned int qemu_get_be32(QEMUFile *f)
3121 {
3122     unsigned int v;
3123     v = qemu_get_byte(f) << 24;
3124     v |= qemu_get_byte(f) << 16;
3125     v |= qemu_get_byte(f) << 8;
3126     v |= qemu_get_byte(f);
3127     return v;
3128 }
3129
3130 uint64_t qemu_get_be64(QEMUFile *f)
3131 {
3132     uint64_t v;
3133     v = (uint64_t)qemu_get_be32(f) << 32;
3134     v |= qemu_get_be32(f);
3135     return v;
3136 }
3137
3138 int64_t qemu_ftell(QEMUFile *f)
3139 {
3140     return ftell(f);
3141 }
3142
3143 int64_t qemu_fseek(QEMUFile *f, int64_t pos, int whence)
3144 {
3145     if (fseek(f, pos, whence) < 0)
3146         return -1;
3147     return ftell(f);
3148 }
3149
3150 typedef struct SaveStateEntry {
3151     char idstr[256];
3152     int instance_id;
3153     int version_id;
3154     SaveStateHandler *save_state;
3155     LoadStateHandler *load_state;
3156     void *opaque;
3157     struct SaveStateEntry *next;
3158 } SaveStateEntry;
3159
3160 static SaveStateEntry *first_se;
3161
3162 int register_savevm(const char *idstr, 
3163                     int instance_id, 
3164                     int version_id,
3165                     SaveStateHandler *save_state,
3166                     LoadStateHandler *load_state,
3167                     void *opaque)
3168 {
3169     SaveStateEntry *se, **pse;
3170
3171     se = qemu_malloc(sizeof(SaveStateEntry));
3172     if (!se)
3173         return -1;
3174     pstrcpy(se->idstr, sizeof(se->idstr), idstr);
3175     se->instance_id = instance_id;
3176     se->version_id = version_id;
3177     se->save_state = save_state;
3178     se->load_state = load_state;
3179     se->opaque = opaque;
3180     se->next = NULL;
3181
3182     /* add at the end of list */
3183     pse = &first_se;
3184     while (*pse != NULL)
3185         pse = &(*pse)->next;
3186     *pse = se;
3187     return 0;
3188 }
3189
3190 #define QEMU_VM_FILE_MAGIC   0x5145564d
3191 #define QEMU_VM_FILE_VERSION 0x00000001
3192
3193 int qemu_savevm(const char *filename)
3194 {
3195     SaveStateEntry *se;
3196     QEMUFile *f;
3197     int len, len_pos, cur_pos, saved_vm_running, ret;
3198
3199     saved_vm_running = vm_running;
3200     vm_stop(0);
3201
3202     f = fopen(filename, "wb");
3203     if (!f) {
3204         ret = -1;
3205         goto the_end;
3206     }
3207
3208     qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
3209     qemu_put_be32(f, QEMU_VM_FILE_VERSION);
3210
3211     for(se = first_se; se != NULL; se = se->next) {
3212         /* ID string */
3213         len = strlen(se->idstr);
3214         qemu_put_byte(f, len);
3215         qemu_put_buffer(f, se->idstr, len);
3216
3217         qemu_put_be32(f, se->instance_id);
3218         qemu_put_be32(f, se->version_id);
3219
3220         /* record size: filled later */
3221         len_pos = ftell(f);
3222         qemu_put_be32(f, 0);
3223         
3224         se->save_state(f, se->opaque);
3225
3226         /* fill record size */
3227         cur_pos = ftell(f);
3228         len = ftell(f) - len_pos - 4;
3229         fseek(f, len_pos, SEEK_SET);
3230         qemu_put_be32(f, len);
3231         fseek(f, cur_pos, SEEK_SET);
3232     }
3233
3234     fclose(f);
3235     ret = 0;
3236  the_end:
3237     if (saved_vm_running)
3238         vm_start();
3239     return ret;
3240 }
3241
3242 static SaveStateEntry *find_se(const char *idstr, int instance_id)
3243 {
3244     SaveStateEntry *se;
3245
3246     for(se = first_se; se != NULL; se = se->next) {
3247         if (!strcmp(se->idstr, idstr) && 
3248             instance_id == se->instance_id)
3249             return se;
3250     }
3251     return NULL;
3252 }
3253
3254 int qemu_loadvm(const char *filename)
3255 {
3256     SaveStateEntry *se;
3257     QEMUFile *f;
3258     int len, cur_pos, ret, instance_id, record_len, version_id;
3259     int saved_vm_running;
3260     unsigned int v;
3261     char idstr[256];
3262     
3263     saved_vm_running = vm_running;
3264     vm_stop(0);
3265
3266     f = fopen(filename, "rb");
3267     if (!f) {
3268         ret = -1;
3269         goto the_end;
3270     }
3271
3272     v = qemu_get_be32(f);
3273     if (v != QEMU_VM_FILE_MAGIC)
3274         goto fail;
3275     v = qemu_get_be32(f);
3276     if (v != QEMU_VM_FILE_VERSION) {
3277     fail:
3278         fclose(f);
3279         ret = -1;
3280         goto the_end;
3281     }
3282     for(;;) {
3283         len = qemu_get_byte(f);
3284         if (feof(f))
3285             break;
3286         qemu_get_buffer(f, idstr, len);
3287         idstr[len] = '\0';
3288         instance_id = qemu_get_be32(f);
3289         version_id = qemu_get_be32(f);
3290         record_len = qemu_get_be32(f);
3291 #if 0
3292         printf("idstr=%s instance=0x%x version=%d len=%d\n", 
3293                idstr, instance_id, version_id, record_len);
3294 #endif
3295         cur_pos = ftell(f);
3296         se = find_se(idstr, instance_id);
3297         if (!se) {
3298             fprintf(stderr, "qemu: warning: instance 0x%x of device '%s' not present in current VM\n", 
3299                     instance_id, idstr);
3300         } else {
3301             ret = se->load_state(f, se->opaque, version_id);
3302             if (ret < 0) {
3303                 fprintf(stderr, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n", 
3304                         instance_id, idstr);
3305             }
3306         }
3307         /* always seek to exact end of record */
3308         qemu_fseek(f, cur_pos + record_len, SEEK_SET);
3309     }
3310     fclose(f);
3311     ret = 0;
3312  the_end:
3313     if (saved_vm_running)
3314         vm_start();
3315     return ret;
3316 }
3317
3318 /***********************************************************/
3319 /* cpu save/restore */
3320
3321 #if defined(TARGET_I386)
3322
3323 static void cpu_put_seg(QEMUFile *f, SegmentCache *dt)
3324 {
3325     qemu_put_be32(f, dt->selector);
3326     qemu_put_betl(f, dt->base);
3327     qemu_put_be32(f, dt->limit);
3328     qemu_put_be32(f, dt->flags);
3329 }
3330
3331 static void cpu_get_seg(QEMUFile *f, SegmentCache *dt)
3332 {
3333     dt->selector = qemu_get_be32(f);
3334     dt->base = qemu_get_betl(f);
3335     dt->limit = qemu_get_be32(f);
3336     dt->flags = qemu_get_be32(f);
3337 }
3338
3339 void cpu_save(QEMUFile *f, void *opaque)
3340 {
3341     CPUState *env = opaque;
3342     uint16_t fptag, fpus, fpuc, fpregs_format;
3343     uint32_t hflags;
3344     int i;
3345     
3346     for(i = 0; i < CPU_NB_REGS; i++)
3347         qemu_put_betls(f, &env->regs[i]);
3348     qemu_put_betls(f, &env->eip);
3349     qemu_put_betls(f, &env->eflags);
3350     hflags = env->hflags; /* XXX: suppress most of the redundant hflags */
3351     qemu_put_be32s(f, &hflags);
3352     
3353     /* FPU */
3354     fpuc = env->fpuc;
3355     fpus = (env->fpus & ~0x3800) | (env->fpstt & 0x7) << 11;
3356     fptag = 0;
3357     for(i = 0; i < 8; i++) {
3358         fptag |= ((!env->fptags[i]) << i);
3359     }
3360     
3361     qemu_put_be16s(f, &fpuc);
3362     qemu_put_be16s(f, &fpus);
3363     qemu_put_be16s(f, &fptag);
3364
3365 #ifdef USE_X86LDOUBLE
3366     fpregs_format = 0;
3367 #else
3368     fpregs_format = 1;
3369 #endif
3370     qemu_put_be16s(f, &fpregs_format);
3371     
3372     for(i = 0; i < 8; i++) {
3373 #ifdef USE_X86LDOUBLE
3374         {
3375             uint64_t mant;
3376             uint16_t exp;
3377             /* we save the real CPU data (in case of MMX usage only 'mant'
3378                contains the MMX register */
3379             cpu_get_fp80(&mant, &exp, env->fpregs[i].d);
3380             qemu_put_be64(f, mant);
3381             qemu_put_be16(f, exp);
3382         }
3383 #else
3384         /* if we use doubles for float emulation, we save the doubles to
3385            avoid losing information in case of MMX usage. It can give
3386            problems if the image is restored on a CPU where long
3387            doubles are used instead. */
3388         qemu_put_be64(f, env->fpregs[i].mmx.MMX_Q(0));
3389 #endif
3390     }
3391
3392     for(i = 0; i < 6; i++)
3393         cpu_put_seg(f, &env->segs[i]);
3394     cpu_put_seg(f, &env->ldt);
3395     cpu_put_seg(f, &env->tr);
3396     cpu_put_seg(f, &env->gdt);
3397     cpu_put_seg(f, &env->idt);
3398     
3399     qemu_put_be32s(f, &env->sysenter_cs);
3400     qemu_put_be32s(f, &env->sysenter_esp);
3401     qemu_put_be32s(f, &env->sysenter_eip);
3402     
3403     qemu_put_betls(f, &env->cr[0]);
3404     qemu_put_betls(f, &env->cr[2]);
3405     qemu_put_betls(f, &env->cr[3]);
3406     qemu_put_betls(f, &env->cr[4]);
3407     
3408     for(i = 0; i < 8; i++)
3409         qemu_put_betls(f, &env->dr[i]);
3410
3411     /* MMU */
3412     qemu_put_be32s(f, &env->a20_mask);
3413
3414     /* XMM */
3415     qemu_put_be32s(f, &env->mxcsr);
3416     for(i = 0; i < CPU_NB_REGS; i++) {
3417         qemu_put_be64s(f, &env->xmm_regs[i].XMM_Q(0));
3418         qemu_put_be64s(f, &env->xmm_regs[i].XMM_Q(1));
3419     }
3420
3421 #ifdef TARGET_X86_64
3422     qemu_put_be64s(f, &env->efer);
3423     qemu_put_be64s(f, &env->star);
3424     qemu_put_be64s(f, &env->lstar);
3425     qemu_put_be64s(f, &env->cstar);
3426     qemu_put_be64s(f, &env->fmask);
3427     qemu_put_be64s(f, &env->kernelgsbase);
3428 #endif
3429 }
3430
3431 #ifdef USE_X86LDOUBLE
3432 /* XXX: add that in a FPU generic layer */
3433 union x86_longdouble {
3434     uint64_t mant;
3435     uint16_t exp;
3436 };
3437
3438 #define MANTD1(fp)      (fp & ((1LL << 52) - 1))
3439 #define EXPBIAS1 1023
3440 #define EXPD1(fp)       ((fp >> 52) & 0x7FF)
3441 #define SIGND1(fp)      ((fp >> 32) & 0x80000000)
3442
3443 static void fp64_to_fp80(union x86_longdouble *p, uint64_t temp)
3444 {
3445     int e;
3446     /* mantissa */
3447     p->mant = (MANTD1(temp) << 11) | (1LL << 63);
3448     /* exponent + sign */
3449     e = EXPD1(temp) - EXPBIAS1 + 16383;
3450     e |= SIGND1(temp) >> 16;
3451     p->exp = e;
3452 }
3453 #endif
3454
3455 int cpu_load(QEMUFile *f, void *opaque, int version_id)
3456 {
3457     CPUState *env = opaque;
3458     int i, guess_mmx;
3459     uint32_t hflags;
3460     uint16_t fpus, fpuc, fptag, fpregs_format;
3461
3462     if (version_id != 3)
3463         return -EINVAL;
3464     for(i = 0; i < CPU_NB_REGS; i++)
3465         qemu_get_betls(f, &env->regs[i]);
3466     qemu_get_betls(f, &env->eip);
3467     qemu_get_betls(f, &env->eflags);
3468     qemu_get_be32s(f, &hflags);
3469
3470     qemu_get_be16s(f, &fpuc);
3471     qemu_get_be16s(f, &fpus);
3472     qemu_get_be16s(f, &fptag);
3473     qemu_get_be16s(f, &fpregs_format);
3474     
3475     /* NOTE: we cannot always restore the FPU state if the image come
3476        from a host with a different 'USE_X86LDOUBLE' define. We guess
3477        if we are in an MMX state to restore correctly in that case. */
3478     guess_mmx = ((fptag == 0xff) && (fpus & 0x3800) == 0);
3479     for(i = 0; i < 8; i++) {
3480         uint64_t mant;
3481         uint16_t exp;
3482         
3483         switch(fpregs_format) {
3484         case 0:
3485             mant = qemu_get_be64(f);
3486             exp = qemu_get_be16(f);
3487 #ifdef USE_X86LDOUBLE
3488             env->fpregs[i].d = cpu_set_fp80(mant, exp);
3489 #else
3490             /* difficult case */
3491             if (guess_mmx)
3492                 env->fpregs[i].mmx.MMX_Q(0) = mant;
3493             else
3494                 env->fpregs[i].d = cpu_set_fp80(mant, exp);
3495 #endif
3496             break;
3497         case 1:
3498             mant = qemu_get_be64(f);
3499 #ifdef USE_X86LDOUBLE
3500             {
3501                 union x86_longdouble *p;
3502                 /* difficult case */
3503                 p = (void *)&env->fpregs[i];
3504                 if (guess_mmx) {
3505                     p->mant = mant;
3506                     p->exp = 0xffff;
3507                 } else {
3508                     fp64_to_fp80(p, mant);
3509                 }
3510             }
3511 #else
3512             env->fpregs[i].mmx.MMX_Q(0) = mant;
3513 #endif            
3514             break;
3515         default:
3516             return -EINVAL;
3517         }
3518     }
3519
3520     env->fpuc = fpuc;
3521     /* XXX: restore FPU round state */
3522     env->fpstt = (fpus >> 11) & 7;
3523     env->fpus = fpus & ~0x3800;
3524     fptag ^= 0xff;
3525     for(i = 0; i < 8; i++) {
3526         env->fptags[i] = (fptag >> i) & 1;
3527     }
3528     
3529     for(i = 0; i < 6; i++)
3530         cpu_get_seg(f, &env->segs[i]);
3531     cpu_get_seg(f, &env->ldt);
3532     cpu_get_seg(f, &env->tr);
3533     cpu_get_seg(f, &env->gdt);
3534     cpu_get_seg(f, &env->idt);
3535     
3536     qemu_get_be32s(f, &env->sysenter_cs);
3537     qemu_get_be32s(f, &env->sysenter_esp);
3538     qemu_get_be32s(f, &env->sysenter_eip);
3539     
3540     qemu_get_betls(f, &env->cr[0]);
3541     qemu_get_betls(f, &env->cr[2]);
3542     qemu_get_betls(f, &env->cr[3]);
3543     qemu_get_betls(f, &env->cr[4]);
3544     
3545     for(i = 0; i < 8; i++)
3546         qemu_get_betls(f, &env->dr[i]);
3547
3548     /* MMU */
3549     qemu_get_be32s(f, &env->a20_mask);
3550
3551     qemu_get_be32s(f, &env->mxcsr);
3552     for(i = 0; i < CPU_NB_REGS; i++) {
3553         qemu_get_be64s(f, &env->xmm_regs[i].XMM_Q(0));
3554         qemu_get_be64s(f, &env->xmm_regs[i].XMM_Q(1));
3555     }
3556
3557 #ifdef TARGET_X86_64
3558     qemu_get_be64s(f, &env->efer);
3559     qemu_get_be64s(f, &env->star);
3560     qemu_get_be64s(f, &env->lstar);
3561     qemu_get_be64s(f, &env->cstar);
3562     qemu_get_be64s(f, &env->fmask);
3563     qemu_get_be64s(f, &env->kernelgsbase);
3564 #endif
3565
3566     /* XXX: compute hflags from scratch, except for CPL and IIF */
3567     env->hflags = hflags;
3568     tlb_flush(env, 1);
3569     return 0;
3570 }
3571
3572 #elif defined(TARGET_PPC)
3573 void cpu_save(QEMUFile *f, void *opaque)
3574 {
3575 }
3576
3577 int cpu_load(QEMUFile *f, void *opaque, int version_id)
3578 {
3579     return 0;
3580 }
3581
3582 #elif defined(TARGET_MIPS)
3583 void cpu_save(QEMUFile *f, void *opaque)
3584 {
3585 }
3586
3587 int cpu_load(QEMUFile *f, void *opaque, int version_id)
3588 {
3589     return 0;
3590 }
3591
3592 #elif defined(TARGET_SPARC)
3593 void cpu_save(QEMUFile *f, void *opaque)
3594 {
3595     CPUState *env = opaque;
3596     int i;
3597     uint32_t tmp;
3598
3599     for(i = 0; i < 8; i++)
3600         qemu_put_betls(f, &env->gregs[i]);
3601     for(i = 0; i < NWINDOWS * 16; i++)
3602         qemu_put_betls(f, &env->regbase[i]);
3603
3604     /* FPU */
3605     for(i = 0; i < TARGET_FPREGS; i++) {
3606         union {
3607             TARGET_FPREG_T f;
3608             target_ulong i;
3609         } u;
3610         u.f = env->fpr[i];
3611         qemu_put_betl(f, u.i);
3612     }
3613
3614     qemu_put_betls(f, &env->pc);
3615     qemu_put_betls(f, &env->npc);
3616     qemu_put_betls(f, &env->y);
3617     tmp = GET_PSR(env);
3618     qemu_put_be32(f, tmp);
3619     qemu_put_betls(f, &env->fsr);
3620     qemu_put_betls(f, &env->tbr);
3621 #ifndef TARGET_SPARC64
3622     qemu_put_be32s(f, &env->wim);
3623     /* MMU */
3624     for(i = 0; i < 16; i++)
3625         qemu_put_be32s(f, &env->mmuregs[i]);
3626 #endif
3627 }
3628
3629 int cpu_load(QEMUFile *f, void *opaque, int version_id)
3630 {
3631     CPUState *env = opaque;
3632     int i;
3633     uint32_t tmp;
3634
3635     for(i = 0; i < 8; i++)
3636         qemu_get_betls(f, &env->gregs[i]);
3637     for(i = 0; i < NWINDOWS * 16; i++)
3638         qemu_get_betls(f, &env->regbase[i]);
3639
3640     /* FPU */
3641     for(i = 0; i < TARGET_FPREGS; i++) {
3642         union {
3643             TARGET_FPREG_T f;
3644             target_ulong i;
3645         } u;
3646         u.i = qemu_get_betl(f);
3647         env->fpr[i] = u.f;
3648     }
3649
3650     qemu_get_betls(f, &env->pc);
3651     qemu_get_betls(f, &env->npc);
3652     qemu_get_betls(f, &env->y);
3653     tmp = qemu_get_be32(f);
3654     env->cwp = 0; /* needed to ensure that the wrapping registers are
3655                      correctly updated */
3656     PUT_PSR(env, tmp);
3657     qemu_get_betls(f, &env->fsr);
3658     qemu_get_betls(f, &env->tbr);
3659 #ifndef TARGET_SPARC64
3660     qemu_get_be32s(f, &env->wim);
3661     /* MMU */
3662     for(i = 0; i < 16; i++)
3663         qemu_get_be32s(f, &env->mmuregs[i]);
3664 #endif
3665     tlb_flush(env, 1);
3666     return 0;
3667 }
3668
3669 #elif defined(TARGET_ARM)
3670
3671 /* ??? Need to implement these.  */
3672 void cpu_save(QEMUFile *f, void *opaque)
3673 {
3674 }
3675
3676 int cpu_load(QEMUFile *f, void *opaque, int version_id)
3677 {
3678     return 0;
3679 }
3680
3681 #else
3682
3683 #warning No CPU save/restore functions
3684
3685 #endif
3686
3687 /***********************************************************/
3688 /* ram save/restore */
3689
3690 /* we just avoid storing empty pages */
3691 static void ram_put_page(QEMUFile *f, const uint8_t *buf, int len)
3692 {
3693     int i, v;
3694
3695     v = buf[0];
3696     for(i = 1; i < len; i++) {
3697         if (buf[i] != v)
3698             goto normal_save;
3699     }
3700     qemu_put_byte(f, 1);
3701     qemu_put_byte(f, v);
3702     return;
3703  normal_save:
3704     qemu_put_byte(f, 0); 
3705     qemu_put_buffer(f, buf, len);
3706 }
3707
3708 static int ram_get_page(QEMUFile *f, uint8_t *buf, int len)
3709 {
3710     int v;
3711
3712     v = qemu_get_byte(f);
3713     switch(v) {
3714     case 0:
3715         if (qemu_get_buffer(f, buf, len) != len)
3716             return -EIO;
3717         break;
3718     case 1:
3719         v = qemu_get_byte(f);
3720         memset(buf, v, len);
3721         break;
3722     default:
3723         return -EINVAL;
3724     }
3725     return 0;
3726 }
3727
3728 static void ram_save(QEMUFile *f, void *opaque)
3729 {
3730     int i;
3731     qemu_put_be32(f, phys_ram_size);
3732     for(i = 0; i < phys_ram_size; i+= TARGET_PAGE_SIZE) {
3733         ram_put_page(f, phys_ram_base + i, TARGET_PAGE_SIZE);
3734     }
3735 }
3736
3737 static int ram_load(QEMUFile *f, void *opaque, int version_id)
3738 {
3739     int i, ret;
3740
3741     if (version_id != 1)
3742         return -EINVAL;
3743     if (qemu_get_be32(f) != phys_ram_size)
3744         return -EINVAL;
3745     for(i = 0; i < phys_ram_size; i+= TARGET_PAGE_SIZE) {
3746         ret = ram_get_page(f, phys_ram_base + i, TARGET_PAGE_SIZE);
3747         if (ret)
3748             return ret;
3749     }
3750     return 0;
3751 }
3752
3753 /***********************************************************/
3754 /* machine registration */
3755
3756 QEMUMachine *first_machine = NULL;
3757
3758 int qemu_register_machine(QEMUMachine *m)
3759 {
3760     QEMUMachine **pm;
3761     pm = &first_machine;
3762     while (*pm != NULL)
3763         pm = &(*pm)->next;
3764     m->next = NULL;
3765     *pm = m;
3766     return 0;
3767 }
3768
3769 QEMUMachine *find_machine(const char *name)
3770 {
3771     QEMUMachine *m;
3772
3773     for(m = first_machine; m != NULL; m = m->next) {
3774         if (!strcmp(m->name, name))
3775             return m;
3776     }
3777     return NULL;
3778 }
3779
3780 /***********************************************************/
3781 /* main execution loop */
3782
3783 void gui_update(void *opaque)
3784 {
3785     display_state.dpy_refresh(&display_state);
3786     qemu_mod_timer(gui_timer, GUI_REFRESH_INTERVAL + qemu_get_clock(rt_clock));
3787 }
3788
3789 struct vm_change_state_entry {
3790     VMChangeStateHandler *cb;
3791     void *opaque;
3792     LIST_ENTRY (vm_change_state_entry) entries;
3793 };
3794
3795 static LIST_HEAD(vm_change_state_head, vm_change_state_entry) vm_change_state_head;
3796
3797 VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
3798                                                      void *opaque)
3799 {
3800     VMChangeStateEntry *e;
3801
3802     e = qemu_mallocz(sizeof (*e));
3803     if (!e)
3804         return NULL;
3805
3806     e->cb = cb;
3807     e->opaque = opaque;
3808     LIST_INSERT_HEAD(&vm_change_state_head, e, entries);
3809     return e;
3810 }
3811
3812 void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
3813 {
3814     LIST_REMOVE (e, entries);
3815     qemu_free (e);
3816 }
3817
3818 static void vm_state_notify(int running)
3819 {
3820     VMChangeStateEntry *e;
3821
3822     for (e = vm_change_state_head.lh_first; e; e = e->entries.le_next) {
3823         e->cb(e->opaque, running);
3824     }
3825 }
3826
3827 /* XXX: support several handlers */
3828 static VMStopHandler *vm_stop_cb;
3829 static void *vm_stop_opaque;
3830
3831 int qemu_add_vm_stop_handler(VMStopHandler *cb, void *opaque)
3832 {
3833     vm_stop_cb = cb;
3834     vm_stop_opaque = opaque;
3835     return 0;
3836 }
3837
3838 void qemu_del_vm_stop_handler(VMStopHandler *cb, void *opaque)
3839 {
3840     vm_stop_cb = NULL;
3841 }
3842
3843 void vm_start(void)
3844 {
3845     if (!vm_running) {
3846         cpu_enable_ticks();
3847         vm_running = 1;
3848         vm_state_notify(1);
3849     }
3850 }
3851
3852 void vm_stop(int reason) 
3853 {
3854     if (vm_running) {
3855         cpu_disable_ticks();
3856         vm_running = 0;
3857         if (reason != 0) {
3858             if (vm_stop_cb) {
3859                 vm_stop_cb(vm_stop_opaque, reason);
3860             }
3861         }
3862         vm_state_notify(0);
3863     }
3864 }
3865
3866 /* reset/shutdown handler */
3867
3868 typedef struct QEMUResetEntry {
3869     QEMUResetHandler *func;
3870     void *opaque;
3871     struct QEMUResetEntry *next;
3872 } QEMUResetEntry;
3873
3874 static QEMUResetEntry *first_reset_entry;
3875 static int reset_requested;
3876 static int shutdown_requested;
3877 static int powerdown_requested;
3878
3879 void qemu_register_reset(QEMUResetHandler *func, void *opaque)
3880 {
3881     QEMUResetEntry **pre, *re;
3882
3883     pre = &first_reset_entry;
3884     while (*pre != NULL)
3885         pre = &(*pre)->next;
3886     re = qemu_mallocz(sizeof(QEMUResetEntry));
3887     re->func = func;
3888     re->opaque = opaque;
3889     re->next = NULL;
3890     *pre = re;
3891 }
3892
3893 void qemu_system_reset(void)
3894 {
3895     QEMUResetEntry *re;
3896
3897     /* reset all devices */
3898     for(re = first_reset_entry; re != NULL; re = re->next) {
3899         re->func(re->opaque);
3900     }
3901 }
3902
3903 void qemu_system_reset_request(void)
3904 {
3905     reset_requested = 1;
3906     if (cpu_single_env)
3907         cpu_interrupt(cpu_single_env, CPU_INTERRUPT_EXIT);
3908 }
3909
3910 void qemu_system_shutdown_request(void)
3911 {
3912     shutdown_requested = 1;
3913     if (cpu_single_env)
3914         cpu_interrupt(cpu_single_env, CPU_INTERRUPT_EXIT);
3915 }
3916
3917 void qemu_system_powerdown_request(void)
3918 {
3919     powerdown_requested = 1;
3920     if (cpu_single_env)
3921         cpu_interrupt(cpu_single_env, CPU_INTERRUPT_EXIT);
3922 }
3923
3924 void main_loop_wait(int timeout)
3925 {
3926     IOHandlerRecord *ioh, *ioh_next;
3927     fd_set rfds, wfds;
3928     int ret, nfds;
3929     struct timeval tv;
3930
3931 #ifdef _WIN32
3932     /* XXX: see how to merge it with the select. The constraint is
3933        that the select must be interrupted by the timer */
3934     if (timeout > 0)
3935         Sleep(timeout);
3936 #endif
3937     /* poll any events */
3938     /* XXX: separate device handlers from system ones */
3939     nfds = -1;
3940     FD_ZERO(&rfds);
3941     FD_ZERO(&wfds);
3942     for(ioh = first_io_handler; ioh != NULL; ioh = ioh->next) {
3943         if (ioh->fd_read &&
3944             (!ioh->fd_read_poll ||
3945              ioh->fd_read_poll(ioh->opaque) != 0)) {
3946             FD_SET(ioh->fd, &rfds);
3947             if (ioh->fd > nfds)
3948                 nfds = ioh->fd;
3949         }
3950         if (ioh->fd_write) {
3951             FD_SET(ioh->fd, &wfds);
3952             if (ioh->fd > nfds)
3953                 nfds = ioh->fd;
3954         }
3955     }
3956     
3957     tv.tv_sec = 0;
3958 #ifdef _WIN32
3959     tv.tv_usec = 0;
3960 #else
3961     tv.tv_usec = timeout * 1000;
3962 #endif
3963     ret = select(nfds + 1, &rfds, &wfds, NULL, &tv);
3964     if (ret > 0) {
3965         /* XXX: better handling of removal */
3966         for(ioh = first_io_handler; ioh != NULL; ioh = ioh_next) {
3967             ioh_next = ioh->next;
3968             if (FD_ISSET(ioh->fd, &rfds)) {
3969                 ioh->fd_read(ioh->opaque);
3970             }
3971             if (FD_ISSET(ioh->fd, &wfds)) {
3972                 ioh->fd_write(ioh->opaque);
3973             }
3974         }
3975     }
3976 #ifdef _WIN32
3977     tap_win32_poll();
3978 #endif
3979
3980 #if defined(CONFIG_SLIRP)
3981     /* XXX: merge with the previous select() */
3982     if (slirp_inited) {
3983         fd_set rfds, wfds, xfds;
3984         int nfds;
3985         struct timeval tv;
3986         
3987         nfds = -1;
3988         FD_ZERO(&rfds);
3989         FD_ZERO(&wfds);
3990         FD_ZERO(&xfds);
3991         slirp_select_fill(&nfds, &rfds, &wfds, &xfds);
3992         tv.tv_sec = 0;
3993         tv.tv_usec = 0;
3994         ret = select(nfds + 1, &rfds, &wfds, &xfds, &tv);
3995         if (ret >= 0) {
3996             slirp_select_poll(&rfds, &wfds, &xfds);
3997         }
3998     }
3999 #endif
4000
4001     if (vm_running) {
4002         qemu_run_timers(&active_timers[QEMU_TIMER_VIRTUAL], 
4003                         qemu_get_clock(vm_clock));
4004         /* run dma transfers, if any */
4005         DMA_run();
4006     }
4007     
4008     /* real time timers */
4009     qemu_run_timers(&active_timers[QEMU_TIMER_REALTIME], 
4010                     qemu_get_clock(rt_clock));
4011 }
4012
4013 static CPUState *cur_cpu;
4014
4015 int main_loop(void)
4016 {
4017     int ret, timeout;
4018     CPUState *env;
4019
4020     cur_cpu = first_cpu;
4021     for(;;) {
4022         if (vm_running) {
4023
4024             env = cur_cpu;
4025             for(;;) {
4026                 /* get next cpu */
4027                 env = env->next_cpu;
4028                 if (!env)
4029                     env = first_cpu;
4030                 ret = cpu_exec(env);
4031                 if (ret != EXCP_HALTED)
4032                     break;
4033                 /* all CPUs are halted ? */
4034                 if (env == cur_cpu) {
4035                     ret = EXCP_HLT;
4036                     break;
4037                 }
4038             }
4039             cur_cpu = env;
4040
4041             if (shutdown_requested) {
4042                 ret = EXCP_INTERRUPT;
4043                 break;
4044             }
4045             if (reset_requested) {
4046                 reset_requested = 0;
4047                 qemu_system_reset();
4048                 ret = EXCP_INTERRUPT;
4049             }
4050             if (powerdown_requested) {
4051                 powerdown_requested = 0;
4052                 qemu_system_powerdown();
4053                 ret = EXCP_INTERRUPT;
4054             }
4055             if (ret == EXCP_DEBUG) {
4056                 vm_stop(EXCP_DEBUG);
4057             }
4058             /* if hlt instruction, we wait until the next IRQ */
4059             /* XXX: use timeout computed from timers */
4060             if (ret == EXCP_HLT)
4061                 timeout = 10;
4062             else
4063                 timeout = 0;
4064         } else {
4065             timeout = 10;
4066         }
4067         main_loop_wait(timeout);
4068     }
4069     cpu_disable_ticks();
4070     return ret;
4071 }
4072
4073 void help(void)
4074 {
4075     printf("QEMU PC emulator version " QEMU_VERSION ", Copyright (c) 2003-2005 Fabrice Bellard\n"
4076            "usage: %s [options] [disk_image]\n"
4077            "\n"
4078            "'disk_image' is a raw hard image image for IDE hard disk 0\n"
4079            "\n"
4080            "Standard options:\n"
4081            "-M machine      select emulated machine (-M ? for list)\n"
4082            "-fda/-fdb file  use 'file' as floppy disk 0/1 image\n"
4083            "-hda/-hdb file  use 'file' as IDE hard disk 0/1 image\n"
4084            "-hdc/-hdd file  use 'file' as IDE hard disk 2/3 image\n"
4085            "-cdrom file     use 'file' as IDE cdrom image (cdrom is ide1 master)\n"
4086            "-boot [a|c|d]   boot on floppy (a), hard disk (c) or CD-ROM (d)\n"
4087            "-snapshot       write to temporary files instead of disk image files\n"
4088            "-m megs         set virtual RAM size to megs MB [default=%d]\n"
4089            "-smp n          set the number of CPUs to 'n' [default=1]\n"
4090            "-nographic      disable graphical output and redirect serial I/Os to console\n"
4091 #ifndef _WIN32
4092            "-k language     use keyboard layout (for example \"fr\" for French)\n"
4093 #endif
4094 #ifdef HAS_AUDIO
4095            "-audio-help     print list of audio drivers and their options\n"
4096            "-soundhw c1,... enable audio support\n"
4097            "                and only specified sound cards (comma separated list)\n"
4098            "                use -soundhw ? to get the list of supported cards\n"
4099            "                use -soundhw all to enable all of them\n"
4100 #endif
4101            "-localtime      set the real time clock to local time [default=utc]\n"
4102            "-full-screen    start in full screen\n"
4103 #ifdef TARGET_I386
4104            "-win2k-hack     use it when installing Windows 2000 to avoid a disk full bug\n"
4105 #endif
4106            "-usb            enable the USB driver (will be the default soon)\n"
4107            "-usbdevice name add the host or guest USB device 'name'\n"
4108 #if defined(TARGET_PPC) || defined(TARGET_SPARC)
4109            "-g WxH[xDEPTH]  Set the initial graphical resolution and depth\n"
4110 #endif
4111            "\n"
4112            "Network options:\n"
4113            "-net nic[,vlan=n][,macaddr=addr]\n"
4114            "                create a new Network Interface Card and connect it to VLAN 'n'\n"
4115 #ifdef CONFIG_SLIRP
4116            "-net user[,vlan=n]\n"
4117            "                connect the user mode network stack to VLAN 'n'\n"
4118 #endif
4119 #ifdef _WIN32
4120            "-net tap[,vlan=n],ifname=name\n"
4121            "                connect the host TAP network interface to VLAN 'n'\n"
4122 #else
4123            "-net tap[,vlan=n][,fd=h][,ifname=name][,script=file]\n"
4124            "                connect the host TAP network interface to VLAN 'n' and use\n"
4125            "                the network script 'file' (default=%s);\n"
4126            "                use 'fd=h' to connect to an already opened TAP interface\n"
4127 #endif
4128            "-net socket[,vlan=n][,fd=h][,listen=[host]:port][,connect=host:port]\n"
4129            "                connect the vlan 'n' to another VLAN using a socket connection\n"
4130            "-net socket[,vlan=n][,fd=h][,mcast=maddr:port]\n"
4131            "                connect the vlan 'n' to multicast maddr and port\n"
4132            "-net none       use it alone to have zero network devices; if no -net option\n"
4133            "                is provided, the default is '-net nic -net user'\n"
4134            "\n"
4135 #ifdef CONFIG_SLIRP
4136            "-tftp prefix    allow tftp access to files starting with prefix [-net user]\n"
4137 #ifndef _WIN32
4138            "-smb dir        allow SMB access to files in 'dir' [-net user]\n"
4139 #endif
4140            "-redir [tcp|udp]:host-port:[guest-host]:guest-port\n"
4141            "                redirect TCP or UDP connections from host to guest [-net user]\n"
4142 #endif
4143            "\n"
4144            "Linux boot specific:\n"
4145            "-kernel bzImage use 'bzImage' as kernel image\n"
4146            "-append cmdline use 'cmdline' as kernel command line\n"
4147            "-initrd file    use 'file' as initial ram disk\n"
4148            "\n"
4149            "Debug/Expert options:\n"
4150            "-monitor dev    redirect the monitor to char device 'dev'\n"
4151            "-serial dev     redirect the serial port to char device 'dev'\n"
4152            "-parallel dev   redirect the parallel port to char device 'dev'\n"
4153            "-pidfile file   Write PID to 'file'\n"
4154            "-S              freeze CPU at startup (use 'c' to start execution)\n"
4155            "-s              wait gdb connection to port %d\n"
4156            "-p port         change gdb connection port\n"
4157            "-d item1,...    output log to %s (use -d ? for a list of log items)\n"
4158            "-hdachs c,h,s[,t]  force hard disk 0 physical geometry and the optional BIOS\n"
4159            "                translation (t=none or lba) (usually qemu can guess them)\n"
4160            "-L path         set the directory for the BIOS and VGA BIOS\n"
4161 #ifdef USE_KQEMU
4162            "-no-kqemu       disable KQEMU kernel module usage\n"
4163 #endif
4164 #ifdef USE_CODE_COPY
4165            "-no-code-copy   disable code copy acceleration\n"
4166 #endif
4167 #ifdef TARGET_I386
4168            "-std-vga        simulate a standard VGA card with VESA Bochs Extensions\n"
4169            "                (default is CL-GD5446 PCI VGA)\n"
4170 #endif
4171            "-loadvm file    start right away with a saved state (loadvm in monitor)\n"
4172            "\n"
4173            "During emulation, the following keys are useful:\n"
4174            "ctrl-alt-f      toggle full screen\n"
4175            "ctrl-alt-n      switch to virtual console 'n'\n"
4176            "ctrl-alt        toggle mouse and keyboard grab\n"
4177            "\n"
4178            "When using -nographic, press 'ctrl-a h' to get some help.\n"
4179            ,
4180 #ifdef CONFIG_SOFTMMU
4181            "qemu",
4182 #else
4183            "qemu-fast",
4184 #endif
4185            DEFAULT_RAM_SIZE,
4186 #ifndef _WIN32
4187            DEFAULT_NETWORK_SCRIPT,
4188 #endif
4189            DEFAULT_GDBSTUB_PORT,
4190            "/tmp/qemu.log");
4191 #ifndef CONFIG_SOFTMMU
4192     printf("\n"
4193            "NOTE: this version of QEMU is faster but it needs slightly patched OSes to\n"
4194            "work. Please use the 'qemu' executable to have a more accurate (but slower)\n"
4195            "PC emulation.\n");
4196 #endif
4197     exit(1);
4198 }
4199
4200 #define HAS_ARG 0x0001
4201
4202 enum {
4203     QEMU_OPTION_h,
4204
4205     QEMU_OPTION_M,
4206     QEMU_OPTION_fda,
4207     QEMU_OPTION_fdb,
4208     QEMU_OPTION_hda,
4209     QEMU_OPTION_hdb,
4210     QEMU_OPTION_hdc,
4211     QEMU_OPTION_hdd,
4212     QEMU_OPTION_cdrom,
4213     QEMU_OPTION_boot,
4214     QEMU_OPTION_snapshot,
4215     QEMU_OPTION_m,
4216     QEMU_OPTION_nographic,
4217 #ifdef HAS_AUDIO
4218     QEMU_OPTION_audio_help,
4219     QEMU_OPTION_soundhw,
4220 #endif
4221
4222     QEMU_OPTION_net,
4223     QEMU_OPTION_tftp,
4224     QEMU_OPTION_smb,
4225     QEMU_OPTION_redir,
4226
4227     QEMU_OPTION_kernel,
4228     QEMU_OPTION_append,
4229     QEMU_OPTION_initrd,
4230
4231     QEMU_OPTION_S,
4232     QEMU_OPTION_s,
4233     QEMU_OPTION_p,
4234     QEMU_OPTION_d,
4235     QEMU_OPTION_hdachs,
4236     QEMU_OPTION_L,
4237     QEMU_OPTION_no_code_copy,
4238     QEMU_OPTION_k,
4239     QEMU_OPTION_localtime,
4240     QEMU_OPTION_cirrusvga,
4241     QEMU_OPTION_g,
4242     QEMU_OPTION_std_vga,
4243     QEMU_OPTION_monitor,
4244     QEMU_OPTION_serial,
4245     QEMU_OPTION_parallel,
4246     QEMU_OPTION_loadvm,
4247     QEMU_OPTION_full_screen,
4248     QEMU_OPTION_pidfile,
4249     QEMU_OPTION_no_kqemu,
4250     QEMU_OPTION_win2k_hack,
4251     QEMU_OPTION_usb,
4252     QEMU_OPTION_usbdevice,
4253     QEMU_OPTION_smp,
4254 };
4255
4256 typedef struct QEMUOption {
4257     const char *name;
4258     int flags;
4259     int index;
4260 } QEMUOption;
4261
4262 const QEMUOption qemu_options[] = {
4263     { "h", 0, QEMU_OPTION_h },
4264
4265     { "M", HAS_ARG, QEMU_OPTION_M },
4266     { "fda", HAS_ARG, QEMU_OPTION_fda },
4267     { "fdb", HAS_ARG, QEMU_OPTION_fdb },
4268     { "hda", HAS_ARG, QEMU_OPTION_hda },
4269     { "hdb", HAS_ARG, QEMU_OPTION_hdb },
4270     { "hdc", HAS_ARG, QEMU_OPTION_hdc },
4271     { "hdd", HAS_ARG, QEMU_OPTION_hdd },
4272     { "cdrom", HAS_ARG, QEMU_OPTION_cdrom },
4273     { "boot", HAS_ARG, QEMU_OPTION_boot },
4274     { "snapshot", 0, QEMU_OPTION_snapshot },
4275     { "m", HAS_ARG, QEMU_OPTION_m },
4276     { "nographic", 0, QEMU_OPTION_nographic },
4277     { "k", HAS_ARG, QEMU_OPTION_k },
4278 #ifdef HAS_AUDIO
4279     { "audio-help", 0, QEMU_OPTION_audio_help },
4280     { "soundhw", HAS_ARG, QEMU_OPTION_soundhw },
4281 #endif
4282
4283     { "net", HAS_ARG, QEMU_OPTION_net},
4284 #ifdef CONFIG_SLIRP
4285     { "tftp", HAS_ARG, QEMU_OPTION_tftp },
4286 #ifndef _WIN32
4287     { "smb", HAS_ARG, QEMU_OPTION_smb },
4288 #endif
4289     { "redir", HAS_ARG, QEMU_OPTION_redir },
4290 #endif
4291
4292     { "kernel", HAS_ARG, QEMU_OPTION_kernel },
4293     { "append", HAS_ARG, QEMU_OPTION_append },
4294     { "initrd", HAS_ARG, QEMU_OPTION_initrd },
4295
4296     { "S", 0, QEMU_OPTION_S },
4297     { "s", 0, QEMU_OPTION_s },
4298     { "p", HAS_ARG, QEMU_OPTION_p },
4299     { "d", HAS_ARG, QEMU_OPTION_d },
4300     { "hdachs", HAS_ARG, QEMU_OPTION_hdachs },
4301     { "L", HAS_ARG, QEMU_OPTION_L },
4302     { "no-code-copy", 0, QEMU_OPTION_no_code_copy },
4303 #ifdef USE_KQEMU
4304     { "no-kqemu", 0, QEMU_OPTION_no_kqemu },
4305 #endif
4306 #if defined(TARGET_PPC) || defined(TARGET_SPARC)
4307     { "g", 1, QEMU_OPTION_g },
4308 #endif
4309     { "localtime", 0, QEMU_OPTION_localtime },
4310     { "std-vga", 0, QEMU_OPTION_std_vga },
4311     { "monitor", 1, QEMU_OPTION_monitor },
4312     { "serial", 1, QEMU_OPTION_serial },
4313     { "parallel", 1, QEMU_OPTION_parallel },
4314     { "loadvm", HAS_ARG, QEMU_OPTION_loadvm },
4315     { "full-screen", 0, QEMU_OPTION_full_screen },
4316     { "pidfile", HAS_ARG, QEMU_OPTION_pidfile },
4317     { "win2k-hack", 0, QEMU_OPTION_win2k_hack },
4318     { "usbdevice", HAS_ARG, QEMU_OPTION_usbdevice },
4319     { "smp", HAS_ARG, QEMU_OPTION_smp },
4320     
4321     /* temporary options */
4322     { "usb", 0, QEMU_OPTION_usb },
4323     { "cirrusvga", 0, QEMU_OPTION_cirrusvga },
4324     { NULL },
4325 };
4326
4327 #if defined (TARGET_I386) && defined(USE_CODE_COPY)
4328
4329 /* this stack is only used during signal handling */
4330 #define SIGNAL_STACK_SIZE 32768
4331
4332 static uint8_t *signal_stack;
4333
4334 #endif
4335
4336 /* password input */
4337
4338 static BlockDriverState *get_bdrv(int index)
4339 {
4340     BlockDriverState *bs;
4341
4342     if (index < 4) {
4343         bs = bs_table[index];
4344     } else if (index < 6) {
4345         bs = fd_table[index - 4];
4346     } else {
4347         bs = NULL;
4348     }
4349     return bs;
4350 }
4351
4352 static void read_passwords(void)
4353 {
4354     BlockDriverState *bs;
4355     int i, j;
4356     char password[256];
4357
4358     for(i = 0; i < 6; i++) {
4359         bs = get_bdrv(i);
4360         if (bs && bdrv_is_encrypted(bs)) {
4361             term_printf("%s is encrypted.\n", bdrv_get_device_name(bs));
4362             for(j = 0; j < 3; j++) {
4363                 monitor_readline("Password: ", 
4364                                  1, password, sizeof(password));
4365                 if (bdrv_set_key(bs, password) == 0)
4366                     break;
4367                 term_printf("invalid password\n");
4368             }
4369         }
4370     }
4371 }
4372
4373 /* XXX: currently we cannot use simultaneously different CPUs */
4374 void register_machines(void)
4375 {
4376 #if defined(TARGET_I386)
4377     qemu_register_machine(&pc_machine);
4378     qemu_register_machine(&isapc_machine);
4379 #elif defined(TARGET_PPC)
4380     qemu_register_machine(&heathrow_machine);
4381     qemu_register_machine(&core99_machine);
4382     qemu_register_machine(&prep_machine);
4383 #elif defined(TARGET_MIPS)
4384     qemu_register_machine(&mips_machine);
4385 #elif defined(TARGET_SPARC)
4386 #ifdef TARGET_SPARC64
4387     qemu_register_machine(&sun4u_machine);
4388 #else
4389     qemu_register_machine(&sun4m_machine);
4390 #endif
4391 #elif defined(TARGET_ARM)
4392     qemu_register_machine(&integratorcp_machine);
4393 #else
4394 #error unsupported CPU
4395 #endif
4396 }
4397
4398 #ifdef HAS_AUDIO
4399 struct soundhw soundhw[] = {
4400     {
4401         "sb16",
4402         "Creative Sound Blaster 16",
4403         0,
4404         1,
4405         { .init_isa = SB16_init }
4406     },
4407
4408 #ifdef CONFIG_ADLIB
4409     {
4410         "adlib",
4411 #ifdef HAS_YMF262
4412         "Yamaha YMF262 (OPL3)",
4413 #else
4414         "Yamaha YM3812 (OPL2)",
4415 #endif
4416         0,
4417         1,
4418         { .init_isa = Adlib_init }
4419     },
4420 #endif
4421
4422 #ifdef CONFIG_GUS
4423     {
4424         "gus",
4425         "Gravis Ultrasound GF1",
4426         0,
4427         1,
4428         { .init_isa = GUS_init }
4429     },
4430 #endif
4431
4432     {
4433         "es1370",
4434         "ENSONIQ AudioPCI ES1370",
4435         0,
4436         0,
4437         { .init_pci = es1370_init }
4438     },
4439
4440     { NULL, NULL, 0, 0, { NULL } }
4441 };
4442
4443 static void select_soundhw (const char *optarg)
4444 {
4445     struct soundhw *c;
4446
4447     if (*optarg == '?') {
4448     show_valid_cards:
4449
4450         printf ("Valid sound card names (comma separated):\n");
4451         for (c = soundhw; c->name; ++c) {
4452             printf ("%-11s %s\n", c->name, c->descr);
4453         }
4454         printf ("\n-soundhw all will enable all of the above\n");
4455         exit (*optarg != '?');
4456     }
4457     else {
4458         size_t l;
4459         const char *p;
4460         char *e;
4461         int bad_card = 0;
4462
4463         if (!strcmp (optarg, "all")) {
4464             for (c = soundhw; c->name; ++c) {
4465                 c->enabled = 1;
4466             }
4467             return;
4468         }
4469
4470         p = optarg;
4471         while (*p) {
4472             e = strchr (p, ',');
4473             l = !e ? strlen (p) : (size_t) (e - p);
4474
4475             for (c = soundhw; c->name; ++c) {
4476                 if (!strncmp (c->name, p, l)) {
4477                     c->enabled = 1;
4478                     break;
4479                 }
4480             }
4481
4482             if (!c->name) {
4483                 if (l > 80) {
4484                     fprintf (stderr,
4485                              "Unknown sound card name (too big to show)\n");
4486                 }
4487                 else {
4488                     fprintf (stderr, "Unknown sound card name `%.*s'\n",
4489                              (int) l, p);
4490                 }
4491                 bad_card = 1;
4492             }
4493             p += l + (e != NULL);
4494         }
4495
4496         if (bad_card)
4497             goto show_valid_cards;
4498     }
4499 }
4500 #endif
4501
4502 #define MAX_NET_CLIENTS 32
4503
4504 int main(int argc, char **argv)
4505 {
4506 #ifdef CONFIG_GDBSTUB
4507     int use_gdbstub, gdbstub_port;
4508 #endif
4509     int i, cdrom_index;
4510     int snapshot, linux_boot;
4511     const char *initrd_filename;
4512     const char *hd_filename[MAX_DISKS], *fd_filename[MAX_FD];
4513     const char *kernel_filename, *kernel_cmdline;
4514     DisplayState *ds = &display_state;
4515     int cyls, heads, secs, translation;
4516     int start_emulation = 1;
4517     char net_clients[MAX_NET_CLIENTS][256];
4518     int nb_net_clients;
4519     int optind;
4520     const char *r, *optarg;
4521     CharDriverState *monitor_hd;
4522     char monitor_device[128];
4523     char serial_devices[MAX_SERIAL_PORTS][128];
4524     int serial_device_index;
4525     char parallel_devices[MAX_PARALLEL_PORTS][128];
4526     int parallel_device_index;
4527     const char *loadvm = NULL;
4528     QEMUMachine *machine;
4529     char usb_devices[MAX_VM_USB_PORTS][128];
4530     int usb_devices_index;
4531
4532     LIST_INIT (&vm_change_state_head);
4533 #if !defined(CONFIG_SOFTMMU)
4534     /* we never want that malloc() uses mmap() */
4535     mallopt(M_MMAP_THRESHOLD, 4096 * 1024);
4536 #endif
4537     register_machines();
4538     machine = first_machine;
4539     initrd_filename = NULL;
4540     for(i = 0; i < MAX_FD; i++)
4541         fd_filename[i] = NULL;
4542     for(i = 0; i < MAX_DISKS; i++)
4543         hd_filename[i] = NULL;
4544     ram_size = DEFAULT_RAM_SIZE * 1024 * 1024;
4545     vga_ram_size = VGA_RAM_SIZE;
4546     bios_size = BIOS_SIZE;
4547 #ifdef CONFIG_GDBSTUB
4548     use_gdbstub = 0;
4549     gdbstub_port = DEFAULT_GDBSTUB_PORT;
4550 #endif
4551     snapshot = 0;
4552     nographic = 0;
4553     kernel_filename = NULL;
4554     kernel_cmdline = "";
4555 #ifdef TARGET_PPC
4556     cdrom_index = 1;
4557 #else
4558     cdrom_index = 2;
4559 #endif
4560     cyls = heads = secs = 0;
4561     translation = BIOS_ATA_TRANSLATION_AUTO;
4562     pstrcpy(monitor_device, sizeof(monitor_device), "vc");
4563
4564     pstrcpy(serial_devices[0], sizeof(serial_devices[0]), "vc");
4565     for(i = 1; i < MAX_SERIAL_PORTS; i++)
4566         serial_devices[i][0] = '\0';
4567     serial_device_index = 0;
4568     
4569     pstrcpy(parallel_devices[0], sizeof(parallel_devices[0]), "vc");
4570     for(i = 1; i < MAX_PARALLEL_PORTS; i++)
4571         parallel_devices[i][0] = '\0';
4572     parallel_device_index = 0;
4573     
4574     usb_devices_index = 0;
4575     
4576     nb_net_clients = 0;
4577
4578     nb_nics = 0;
4579     /* default mac address of the first network interface */
4580     
4581     optind = 1;
4582     for(;;) {
4583         if (optind >= argc)
4584             break;
4585         r = argv[optind];
4586         if (r[0] != '-') {
4587             hd_filename[0] = argv[optind++];
4588         } else {
4589             const QEMUOption *popt;
4590
4591             optind++;
4592             popt = qemu_options;
4593             for(;;) {
4594                 if (!popt->name) {
4595                     fprintf(stderr, "%s: invalid option -- '%s'\n", 
4596                             argv[0], r);
4597                     exit(1);
4598                 }
4599                 if (!strcmp(popt->name, r + 1))
4600                     break;
4601                 popt++;
4602             }
4603             if (popt->flags & HAS_ARG) {
4604                 if (optind >= argc) {
4605                     fprintf(stderr, "%s: option '%s' requires an argument\n",
4606                             argv[0], r);
4607                     exit(1);
4608                 }
4609                 optarg = argv[optind++];
4610             } else {
4611                 optarg = NULL;
4612             }
4613
4614             switch(popt->index) {
4615             case QEMU_OPTION_M:
4616                 machine = find_machine(optarg);
4617                 if (!machine) {
4618                     QEMUMachine *m;
4619                     printf("Supported machines are:\n");
4620                     for(m = first_machine; m != NULL; m = m->next) {
4621                         printf("%-10s %s%s\n",
4622                                m->name, m->desc, 
4623                                m == first_machine ? " (default)" : "");
4624                     }
4625                     exit(1);
4626                 }
4627                 break;
4628             case QEMU_OPTION_initrd:
4629                 initrd_filename = optarg;
4630                 break;
4631             case QEMU_OPTION_hda:
4632             case QEMU_OPTION_hdb:
4633             case QEMU_OPTION_hdc:
4634             case QEMU_OPTION_hdd:
4635                 {
4636                     int hd_index;
4637                     hd_index = popt->index - QEMU_OPTION_hda;
4638                     hd_filename[hd_index] = optarg;
4639                     if (hd_index == cdrom_index)
4640                         cdrom_index = -1;
4641                 }
4642                 break;
4643             case QEMU_OPTION_snapshot:
4644                 snapshot = 1;
4645                 break;
4646             case QEMU_OPTION_hdachs:
4647                 {
4648                     const char *p;
4649                     p = optarg;
4650                     cyls = strtol(p, (char **)&p, 0);
4651                     if (cyls < 1 || cyls > 16383)
4652                         goto chs_fail;
4653                     if (*p != ',')
4654                         goto chs_fail;
4655                     p++;
4656                     heads = strtol(p, (char **)&p, 0);
4657                     if (heads < 1 || heads > 16)
4658                         goto chs_fail;
4659                     if (*p != ',')
4660                         goto chs_fail;
4661                     p++;
4662                     secs = strtol(p, (char **)&p, 0);
4663                     if (secs < 1 || secs > 63)
4664                         goto chs_fail;
4665                     if (*p == ',') {
4666                         p++;
4667                         if (!strcmp(p, "none"))
4668                             translation = BIOS_ATA_TRANSLATION_NONE;
4669                         else if (!strcmp(p, "lba"))
4670                             translation = BIOS_ATA_TRANSLATION_LBA;
4671                         else if (!strcmp(p, "auto"))
4672                             translation = BIOS_ATA_TRANSLATION_AUTO;
4673                         else
4674                             goto chs_fail;
4675                     } else if (*p != '\0') {
4676                     chs_fail:
4677                         fprintf(stderr, "qemu: invalid physical CHS format\n");
4678                         exit(1);
4679                     }
4680                 }
4681                 break;
4682             case QEMU_OPTION_nographic:
4683                 pstrcpy(monitor_device, sizeof(monitor_device), "stdio");
4684                 pstrcpy(serial_devices[0], sizeof(serial_devices[0]), "stdio");
4685                 nographic = 1;
4686                 break;
4687             case QEMU_OPTION_kernel:
4688                 kernel_filename = optarg;
4689                 break;
4690             case QEMU_OPTION_append:
4691                 kernel_cmdline = optarg;
4692                 break;
4693             case QEMU_OPTION_cdrom:
4694                 if (cdrom_index >= 0) {
4695                     hd_filename[cdrom_index] = optarg;
4696                 }
4697                 break;
4698             case QEMU_OPTION_boot:
4699                 boot_device = optarg[0];
4700                 if (boot_device != 'a' && 
4701 #ifdef TARGET_SPARC
4702                     // Network boot
4703                     boot_device != 'n' &&
4704 #endif
4705                     boot_device != 'c' && boot_device != 'd') {
4706                     fprintf(stderr, "qemu: invalid boot device '%c'\n", boot_device);
4707                     exit(1);
4708                 }
4709                 break;
4710             case QEMU_OPTION_fda:
4711                 fd_filename[0] = optarg;
4712                 break;
4713             case QEMU_OPTION_fdb:
4714                 fd_filename[1] = optarg;
4715                 break;
4716             case QEMU_OPTION_no_code_copy:
4717                 code_copy_enabled = 0;
4718                 break;
4719             case QEMU_OPTION_net:
4720                 if (nb_net_clients >= MAX_NET_CLIENTS) {
4721                     fprintf(stderr, "qemu: too many network clients\n");
4722                     exit(1);
4723                 }
4724                 pstrcpy(net_clients[nb_net_clients],
4725                         sizeof(net_clients[0]),
4726                         optarg);
4727                 nb_net_clients++;
4728                 break;
4729 #ifdef CONFIG_SLIRP
4730             case QEMU_OPTION_tftp:
4731                 tftp_prefix = optarg;
4732                 break;
4733 #ifndef _WIN32
4734             case QEMU_OPTION_smb:
4735                 net_slirp_smb(optarg);
4736                 break;
4737 #endif
4738             case QEMU_OPTION_redir:
4739                 net_slirp_redir(optarg);                
4740                 break;
4741 #endif
4742 #ifdef HAS_AUDIO
4743             case QEMU_OPTION_audio_help:
4744                 AUD_help ();
4745                 exit (0);
4746                 break;
4747             case QEMU_OPTION_soundhw:
4748                 select_soundhw (optarg);
4749                 break;
4750 #endif
4751             case QEMU_OPTION_h:
4752                 help();
4753                 break;
4754             case QEMU_OPTION_m:
4755                 ram_size = atoi(optarg) * 1024 * 1024;
4756                 if (ram_size <= 0)
4757                     help();
4758                 if (ram_size > PHYS_RAM_MAX_SIZE) {
4759                     fprintf(stderr, "qemu: at most %d MB RAM can be simulated\n",
4760                             PHYS_RAM_MAX_SIZE / (1024 * 1024));
4761                     exit(1);
4762                 }
4763                 break;
4764             case QEMU_OPTION_d:
4765                 {
4766                     int mask;
4767                     CPULogItem *item;
4768                     
4769                     mask = cpu_str_to_log_mask(optarg);
4770                     if (!mask) {
4771                         printf("Log items (comma separated):\n");
4772                     for(item = cpu_log_items; item->mask != 0; item++) {
4773                         printf("%-10s %s\n", item->name, item->help);
4774                     }
4775                     exit(1);
4776                     }
4777                     cpu_set_log(mask);
4778                 }
4779                 break;
4780 #ifdef CONFIG_GDBSTUB
4781             case QEMU_OPTION_s:
4782                 use_gdbstub = 1;
4783                 break;
4784             case QEMU_OPTION_p:
4785                 gdbstub_port = atoi(optarg);
4786                 break;
4787 #endif
4788             case QEMU_OPTION_L:
4789                 bios_dir = optarg;
4790                 break;
4791             case QEMU_OPTION_S:
4792                 start_emulation = 0;
4793                 break;
4794             case QEMU_OPTION_k:
4795                 keyboard_layout = optarg;
4796                 break;
4797             case QEMU_OPTION_localtime:
4798                 rtc_utc = 0;
4799                 break;
4800             case QEMU_OPTION_cirrusvga:
4801                 cirrus_vga_enabled = 1;
4802                 break;
4803             case QEMU_OPTION_std_vga:
4804                 cirrus_vga_enabled = 0;
4805                 break;
4806             case QEMU_OPTION_g:
4807                 {
4808                     const char *p;
4809                     int w, h, depth;
4810                     p = optarg;
4811                     w = strtol(p, (char **)&p, 10);
4812                     if (w <= 0) {
4813                     graphic_error:
4814                         fprintf(stderr, "qemu: invalid resolution or depth\n");
4815                         exit(1);
4816                     }
4817                     if (*p != 'x')
4818                         goto graphic_error;
4819                     p++;
4820                     h = strtol(p, (char **)&p, 10);
4821                     if (h <= 0)
4822                         goto graphic_error;
4823                     if (*p == 'x') {
4824                         p++;
4825                         depth = strtol(p, (char **)&p, 10);
4826                         if (depth != 8 && depth != 15 && depth != 16 && 
4827                             depth != 24 && depth != 32)
4828                             goto graphic_error;
4829                     } else if (*p == '\0') {
4830                         depth = graphic_depth;
4831                     } else {
4832                         goto graphic_error;
4833                     }
4834                     
4835                     graphic_width = w;
4836                     graphic_height = h;
4837                     graphic_depth = depth;
4838                 }
4839                 break;
4840             case QEMU_OPTION_monitor:
4841                 pstrcpy(monitor_device, sizeof(monitor_device), optarg);
4842                 break;
4843             case QEMU_OPTION_serial:
4844                 if (serial_device_index >= MAX_SERIAL_PORTS) {
4845                     fprintf(stderr, "qemu: too many serial ports\n");
4846                     exit(1);
4847                 }
4848                 pstrcpy(serial_devices[serial_device_index], 
4849                         sizeof(serial_devices[0]), optarg);
4850                 serial_device_index++;
4851                 break;
4852             case QEMU_OPTION_parallel:
4853                 if (parallel_device_index >= MAX_PARALLEL_PORTS) {
4854                     fprintf(stderr, "qemu: too many parallel ports\n");
4855                     exit(1);
4856                 }
4857                 pstrcpy(parallel_devices[parallel_device_index], 
4858                         sizeof(parallel_devices[0]), optarg);
4859                 parallel_device_index++;
4860                 break;
4861             case QEMU_OPTION_loadvm:
4862                 loadvm = optarg;
4863                 break;
4864             case QEMU_OPTION_full_screen:
4865                 full_screen = 1;
4866                 break;
4867             case QEMU_OPTION_pidfile:
4868                 create_pidfile(optarg);
4869                 break;
4870 #ifdef TARGET_I386
4871             case QEMU_OPTION_win2k_hack:
4872                 win2k_install_hack = 1;
4873                 break;
4874 #endif
4875 #ifdef USE_KQEMU
4876             case QEMU_OPTION_no_kqemu:
4877                 kqemu_allowed = 0;
4878                 break;
4879 #endif
4880             case QEMU_OPTION_usb:
4881                 usb_enabled = 1;
4882                 break;
4883             case QEMU_OPTION_usbdevice:
4884                 usb_enabled = 1;
4885                 if (usb_devices_index >= MAX_VM_USB_PORTS) {
4886                     fprintf(stderr, "Too many USB devices\n");
4887                     exit(1);
4888                 }
4889                 pstrcpy(usb_devices[usb_devices_index],
4890                         sizeof(usb_devices[usb_devices_index]),
4891                         optarg);
4892                 usb_devices_index++;
4893                 break;
4894             case QEMU_OPTION_smp:
4895                 smp_cpus = atoi(optarg);
4896                 if (smp_cpus < 1 || smp_cpus > MAX_CPUS) {
4897                     fprintf(stderr, "Invalid number of CPUs\n");
4898                     exit(1);
4899                 }
4900                 break;
4901             }
4902         }
4903     }
4904
4905 #ifdef USE_KQEMU
4906     if (smp_cpus > 1)
4907         kqemu_allowed = 0;
4908 #endif
4909     linux_boot = (kernel_filename != NULL);
4910         
4911     if (!linux_boot && 
4912         hd_filename[0] == '\0' && 
4913         (cdrom_index >= 0 && hd_filename[cdrom_index] == '\0') &&
4914         fd_filename[0] == '\0')
4915         help();
4916     
4917     /* boot to cd by default if no hard disk */
4918     if (hd_filename[0] == '\0' && boot_device == 'c') {
4919         if (fd_filename[0] != '\0')
4920             boot_device = 'a';
4921         else
4922             boot_device = 'd';
4923     }
4924
4925 #if !defined(CONFIG_SOFTMMU)
4926     /* must avoid mmap() usage of glibc by setting a buffer "by hand" */
4927     {
4928         static uint8_t stdout_buf[4096];
4929         setvbuf(stdout, stdout_buf, _IOLBF, sizeof(stdout_buf));
4930     }
4931 #else
4932     setvbuf(stdout, NULL, _IOLBF, 0);
4933 #endif
4934     
4935 #ifdef _WIN32
4936     socket_init();
4937 #endif
4938
4939     /* init network clients */
4940     if (nb_net_clients == 0) {
4941         /* if no clients, we use a default config */
4942         pstrcpy(net_clients[0], sizeof(net_clients[0]),
4943                 "nic");
4944         pstrcpy(net_clients[1], sizeof(net_clients[0]),
4945                 "user");
4946         nb_net_clients = 2;
4947     }
4948
4949     for(i = 0;i < nb_net_clients; i++) {
4950         if (net_client_init(net_clients[i]) < 0)
4951             exit(1);
4952     }
4953
4954     /* init the memory */
4955     phys_ram_size = ram_size + vga_ram_size + bios_size;
4956
4957 #ifdef CONFIG_SOFTMMU
4958     phys_ram_base = qemu_vmalloc(phys_ram_size);
4959     if (!phys_ram_base) {
4960         fprintf(stderr, "Could not allocate physical memory\n");
4961         exit(1);
4962     }
4963 #else
4964     /* as we must map the same page at several addresses, we must use
4965        a fd */
4966     {
4967         const char *tmpdir;
4968
4969         tmpdir = getenv("QEMU_TMPDIR");
4970         if (!tmpdir)
4971             tmpdir = "/tmp";
4972         snprintf(phys_ram_file, sizeof(phys_ram_file), "%s/vlXXXXXX", tmpdir);
4973         if (mkstemp(phys_ram_file) < 0) {
4974             fprintf(stderr, "Could not create temporary memory file '%s'\n", 
4975                     phys_ram_file);
4976             exit(1);
4977         }
4978         phys_ram_fd = open(phys_ram_file, O_CREAT | O_TRUNC | O_RDWR, 0600);
4979         if (phys_ram_fd < 0) {
4980             fprintf(stderr, "Could not open temporary memory file '%s'\n", 
4981                     phys_ram_file);
4982             exit(1);
4983         }
4984         ftruncate(phys_ram_fd, phys_ram_size);
4985         unlink(phys_ram_file);
4986         phys_ram_base = mmap(get_mmap_addr(phys_ram_size), 
4987                              phys_ram_size, 
4988                              PROT_WRITE | PROT_READ, MAP_SHARED | MAP_FIXED, 
4989                              phys_ram_fd, 0);
4990         if (phys_ram_base == MAP_FAILED) {
4991             fprintf(stderr, "Could not map physical memory\n");
4992             exit(1);
4993         }
4994     }
4995 #endif
4996
4997     /* we always create the cdrom drive, even if no disk is there */
4998     bdrv_init();
4999     if (cdrom_index >= 0) {
5000         bs_table[cdrom_index] = bdrv_new("cdrom");
5001         bdrv_set_type_hint(bs_table[cdrom_index], BDRV_TYPE_CDROM);
5002     }
5003
5004     /* open the virtual block devices */
5005     for(i = 0; i < MAX_DISKS; i++) {
5006         if (hd_filename[i]) {
5007             if (!bs_table[i]) {
5008                 char buf[64];
5009                 snprintf(buf, sizeof(buf), "hd%c", i + 'a');
5010                 bs_table[i] = bdrv_new(buf);
5011             }
5012             if (bdrv_open(bs_table[i], hd_filename[i], snapshot) < 0) {
5013                 fprintf(stderr, "qemu: could not open hard disk image '%s'\n",
5014                         hd_filename[i]);
5015                 exit(1);
5016             }
5017             if (i == 0 && cyls != 0) {
5018                 bdrv_set_geometry_hint(bs_table[i], cyls, heads, secs);
5019                 bdrv_set_translation_hint(bs_table[i], translation);
5020             }
5021         }
5022     }
5023
5024     /* we always create at least one floppy disk */
5025     fd_table[0] = bdrv_new("fda");
5026     bdrv_set_type_hint(fd_table[0], BDRV_TYPE_FLOPPY);
5027
5028     for(i = 0; i < MAX_FD; i++) {
5029         if (fd_filename[i]) {
5030             if (!fd_table[i]) {
5031                 char buf[64];
5032                 snprintf(buf, sizeof(buf), "fd%c", i + 'a');
5033                 fd_table[i] = bdrv_new(buf);
5034                 bdrv_set_type_hint(fd_table[i], BDRV_TYPE_FLOPPY);
5035             }
5036             if (fd_filename[i] != '\0') {
5037                 if (bdrv_open(fd_table[i], fd_filename[i], snapshot) < 0) {
5038                     fprintf(stderr, "qemu: could not open floppy disk image '%s'\n",
5039                             fd_filename[i]);
5040                     exit(1);
5041                 }
5042             }
5043         }
5044     }
5045
5046     /* init USB devices */
5047     if (usb_enabled) {
5048         vm_usb_hub = usb_hub_init(vm_usb_ports, MAX_VM_USB_PORTS);
5049         for(i = 0; i < usb_devices_index; i++) {
5050             if (usb_device_add(usb_devices[i]) < 0) {
5051                 fprintf(stderr, "Warning: could not add USB device %s\n",
5052                         usb_devices[i]);
5053             }
5054         }
5055     }
5056
5057     register_savevm("timer", 0, 1, timer_save, timer_load, NULL);
5058     register_savevm("ram", 0, 1, ram_save, ram_load, NULL);
5059
5060     init_ioports();
5061     cpu_calibrate_ticks();
5062
5063     /* terminal init */
5064     if (nographic) {
5065         dumb_display_init(ds);
5066     } else {
5067 #if defined(CONFIG_SDL)
5068         sdl_display_init(ds, full_screen);
5069 #elif defined(CONFIG_COCOA)
5070         cocoa_display_init(ds, full_screen);
5071 #else
5072         dumb_display_init(ds);
5073 #endif
5074     }
5075
5076     vga_console = graphic_console_init(ds);
5077     
5078     monitor_hd = qemu_chr_open(monitor_device);
5079     if (!monitor_hd) {
5080         fprintf(stderr, "qemu: could not open monitor device '%s'\n", monitor_device);
5081         exit(1);
5082     }
5083     monitor_init(monitor_hd, !nographic);
5084
5085     for(i = 0; i < MAX_SERIAL_PORTS; i++) {
5086         if (serial_devices[i][0] != '\0') {
5087             serial_hds[i] = qemu_chr_open(serial_devices[i]);
5088             if (!serial_hds[i]) {
5089                 fprintf(stderr, "qemu: could not open serial device '%s'\n", 
5090                         serial_devices[i]);
5091                 exit(1);
5092             }
5093             if (!strcmp(serial_devices[i], "vc"))
5094                 qemu_chr_printf(serial_hds[i], "serial%d console\n", i);
5095         }
5096     }
5097
5098     for(i = 0; i < MAX_PARALLEL_PORTS; i++) {
5099         if (parallel_devices[i][0] != '\0') {
5100             parallel_hds[i] = qemu_chr_open(parallel_devices[i]);
5101             if (!parallel_hds[i]) {
5102                 fprintf(stderr, "qemu: could not open parallel device '%s'\n", 
5103                         parallel_devices[i]);
5104                 exit(1);
5105             }
5106             if (!strcmp(parallel_devices[i], "vc"))
5107                 qemu_chr_printf(parallel_hds[i], "parallel%d console\n", i);
5108         }
5109     }
5110
5111     /* setup cpu signal handlers for MMU / self modifying code handling */
5112 #if !defined(CONFIG_SOFTMMU)
5113     
5114 #if defined (TARGET_I386) && defined(USE_CODE_COPY)
5115     {
5116         stack_t stk;
5117         signal_stack = memalign(16, SIGNAL_STACK_SIZE);
5118         stk.ss_sp = signal_stack;
5119         stk.ss_size = SIGNAL_STACK_SIZE;
5120         stk.ss_flags = 0;
5121
5122         if (sigaltstack(&stk, NULL) < 0) {
5123             perror("sigaltstack");
5124             exit(1);
5125         }
5126     }
5127 #endif
5128     {
5129         struct sigaction act;
5130         
5131         sigfillset(&act.sa_mask);
5132         act.sa_flags = SA_SIGINFO;
5133 #if defined (TARGET_I386) && defined(USE_CODE_COPY)
5134         act.sa_flags |= SA_ONSTACK;
5135 #endif
5136         act.sa_sigaction = host_segv_handler;
5137         sigaction(SIGSEGV, &act, NULL);
5138         sigaction(SIGBUS, &act, NULL);
5139 #if defined (TARGET_I386) && defined(USE_CODE_COPY)
5140         sigaction(SIGFPE, &act, NULL);
5141 #endif
5142     }
5143 #endif
5144
5145 #ifndef _WIN32
5146     {
5147         struct sigaction act;
5148         sigfillset(&act.sa_mask);
5149         act.sa_flags = 0;
5150         act.sa_handler = SIG_IGN;
5151         sigaction(SIGPIPE, &act, NULL);
5152     }
5153 #endif
5154     init_timers();
5155
5156     machine->init(ram_size, vga_ram_size, boot_device,
5157                   ds, fd_filename, snapshot,
5158                   kernel_filename, kernel_cmdline, initrd_filename);
5159
5160     gui_timer = qemu_new_timer(rt_clock, gui_update, NULL);
5161     qemu_mod_timer(gui_timer, qemu_get_clock(rt_clock));
5162
5163 #ifdef CONFIG_GDBSTUB
5164     if (use_gdbstub) {
5165         if (gdbserver_start(gdbstub_port) < 0) {
5166             fprintf(stderr, "Could not open gdbserver socket on port %d\n", 
5167                     gdbstub_port);
5168             exit(1);
5169         } else {
5170             printf("Waiting gdb connection on port %d\n", gdbstub_port);
5171         }
5172     } else 
5173 #endif
5174     if (loadvm)
5175         qemu_loadvm(loadvm);
5176
5177     {
5178         /* XXX: simplify init */
5179         read_passwords();
5180         if (start_emulation) {
5181             vm_start();
5182         }
5183     }
5184     main_loop();
5185     quit_timers();
5186     return 0;
5187 }