use uint8_t instead of char
[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, void *opaque)
1846 {
1847     VLANClientState *vc, **pvc;
1848     vc = qemu_mallocz(sizeof(VLANClientState));
1849     if (!vc)
1850         return NULL;
1851     vc->fd_read = fd_read;
1852     vc->opaque = opaque;
1853     vc->vlan = vlan;
1854
1855     vc->next = NULL;
1856     pvc = &vlan->first_client;
1857     while (*pvc != NULL)
1858         pvc = &(*pvc)->next;
1859     *pvc = vc;
1860     return vc;
1861 }
1862
1863 void qemu_send_packet(VLANClientState *vc1, const uint8_t *buf, int size)
1864 {
1865     VLANState *vlan = vc1->vlan;
1866     VLANClientState *vc;
1867
1868 #if 0
1869     printf("vlan %d send:\n", vlan->id);
1870     hex_dump(stdout, buf, size);
1871 #endif
1872     for(vc = vlan->first_client; vc != NULL; vc = vc->next) {
1873         if (vc != vc1) {
1874             vc->fd_read(vc->opaque, buf, size);
1875         }
1876     }
1877 }
1878
1879 #if defined(CONFIG_SLIRP)
1880
1881 /* slirp network adapter */
1882
1883 static int slirp_inited;
1884 static VLANClientState *slirp_vc;
1885
1886 int slirp_can_output(void)
1887 {
1888     return 1;
1889 }
1890
1891 void slirp_output(const uint8_t *pkt, int pkt_len)
1892 {
1893 #if 0
1894     printf("slirp output:\n");
1895     hex_dump(stdout, pkt, pkt_len);
1896 #endif
1897     qemu_send_packet(slirp_vc, pkt, pkt_len);
1898 }
1899
1900 static void slirp_receive(void *opaque, const uint8_t *buf, int size)
1901 {
1902 #if 0
1903     printf("slirp input:\n");
1904     hex_dump(stdout, buf, size);
1905 #endif
1906     slirp_input(buf, size);
1907 }
1908
1909 static int net_slirp_init(VLANState *vlan)
1910 {
1911     if (!slirp_inited) {
1912         slirp_inited = 1;
1913         slirp_init();
1914     }
1915     slirp_vc = qemu_new_vlan_client(vlan, 
1916                                     slirp_receive, NULL);
1917     snprintf(slirp_vc->info_str, sizeof(slirp_vc->info_str), "user redirector");
1918     return 0;
1919 }
1920
1921 static void net_slirp_redir(const char *redir_str)
1922 {
1923     int is_udp;
1924     char buf[256], *r;
1925     const char *p;
1926     struct in_addr guest_addr;
1927     int host_port, guest_port;
1928     
1929     if (!slirp_inited) {
1930         slirp_inited = 1;
1931         slirp_init();
1932     }
1933
1934     p = redir_str;
1935     if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
1936         goto fail;
1937     if (!strcmp(buf, "tcp")) {
1938         is_udp = 0;
1939     } else if (!strcmp(buf, "udp")) {
1940         is_udp = 1;
1941     } else {
1942         goto fail;
1943     }
1944
1945     if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
1946         goto fail;
1947     host_port = strtol(buf, &r, 0);
1948     if (r == buf)
1949         goto fail;
1950
1951     if (get_str_sep(buf, sizeof(buf), &p, ':') < 0)
1952         goto fail;
1953     if (buf[0] == '\0') {
1954         pstrcpy(buf, sizeof(buf), "10.0.2.15");
1955     }
1956     if (!inet_aton(buf, &guest_addr))
1957         goto fail;
1958     
1959     guest_port = strtol(p, &r, 0);
1960     if (r == p)
1961         goto fail;
1962     
1963     if (slirp_redir(is_udp, host_port, guest_addr, guest_port) < 0) {
1964         fprintf(stderr, "qemu: could not set up redirection\n");
1965         exit(1);
1966     }
1967     return;
1968  fail:
1969     fprintf(stderr, "qemu: syntax: -redir [tcp|udp]:host-port:[guest-host]:guest-port\n");
1970     exit(1);
1971 }
1972     
1973 #ifndef _WIN32
1974
1975 char smb_dir[1024];
1976
1977 static void smb_exit(void)
1978 {
1979     DIR *d;
1980     struct dirent *de;
1981     char filename[1024];
1982
1983     /* erase all the files in the directory */
1984     d = opendir(smb_dir);
1985     for(;;) {
1986         de = readdir(d);
1987         if (!de)
1988             break;
1989         if (strcmp(de->d_name, ".") != 0 &&
1990             strcmp(de->d_name, "..") != 0) {
1991             snprintf(filename, sizeof(filename), "%s/%s", 
1992                      smb_dir, de->d_name);
1993             unlink(filename);
1994         }
1995     }
1996     closedir(d);
1997     rmdir(smb_dir);
1998 }
1999
2000 /* automatic user mode samba server configuration */
2001 void net_slirp_smb(const char *exported_dir)
2002 {
2003     char smb_conf[1024];
2004     char smb_cmdline[1024];
2005     FILE *f;
2006
2007     if (!slirp_inited) {
2008         slirp_inited = 1;
2009         slirp_init();
2010     }
2011
2012     /* XXX: better tmp dir construction */
2013     snprintf(smb_dir, sizeof(smb_dir), "/tmp/qemu-smb.%d", getpid());
2014     if (mkdir(smb_dir, 0700) < 0) {
2015         fprintf(stderr, "qemu: could not create samba server dir '%s'\n", smb_dir);
2016         exit(1);
2017     }
2018     snprintf(smb_conf, sizeof(smb_conf), "%s/%s", smb_dir, "smb.conf");
2019     
2020     f = fopen(smb_conf, "w");
2021     if (!f) {
2022         fprintf(stderr, "qemu: could not create samba server configuration file '%s'\n", smb_conf);
2023         exit(1);
2024     }
2025     fprintf(f, 
2026             "[global]\n"
2027             "private dir=%s\n"
2028             "smb ports=0\n"
2029             "socket address=127.0.0.1\n"
2030             "pid directory=%s\n"
2031             "lock directory=%s\n"
2032             "log file=%s/log.smbd\n"
2033             "smb passwd file=%s/smbpasswd\n"
2034             "security = share\n"
2035             "[qemu]\n"
2036             "path=%s\n"
2037             "read only=no\n"
2038             "guest ok=yes\n",
2039             smb_dir,
2040             smb_dir,
2041             smb_dir,
2042             smb_dir,
2043             smb_dir,
2044             exported_dir
2045             );
2046     fclose(f);
2047     atexit(smb_exit);
2048
2049     snprintf(smb_cmdline, sizeof(smb_cmdline), "/usr/sbin/smbd -s %s",
2050              smb_conf);
2051     
2052     slirp_add_exec(0, smb_cmdline, 4, 139);
2053 }
2054
2055 #endif /* !defined(_WIN32) */
2056
2057 #endif /* CONFIG_SLIRP */
2058
2059 #if !defined(_WIN32)
2060
2061 typedef struct TAPState {
2062     VLANClientState *vc;
2063     int fd;
2064 } TAPState;
2065
2066 static void tap_receive(void *opaque, const uint8_t *buf, int size)
2067 {
2068     TAPState *s = opaque;
2069     int ret;
2070     for(;;) {
2071         ret = write(s->fd, buf, size);
2072         if (ret < 0 && (errno == EINTR || errno == EAGAIN)) {
2073         } else {
2074             break;
2075         }
2076     }
2077 }
2078
2079 static void tap_send(void *opaque)
2080 {
2081     TAPState *s = opaque;
2082     uint8_t buf[4096];
2083     int size;
2084
2085     size = read(s->fd, buf, sizeof(buf));
2086     if (size > 0) {
2087         qemu_send_packet(s->vc, buf, size);
2088     }
2089 }
2090
2091 /* fd support */
2092
2093 static TAPState *net_tap_fd_init(VLANState *vlan, int fd)
2094 {
2095     TAPState *s;
2096
2097     s = qemu_mallocz(sizeof(TAPState));
2098     if (!s)
2099         return NULL;
2100     s->fd = fd;
2101     s->vc = qemu_new_vlan_client(vlan, tap_receive, s);
2102     qemu_set_fd_handler(s->fd, tap_send, NULL, s);
2103     snprintf(s->vc->info_str, sizeof(s->vc->info_str), "tap: fd=%d", fd);
2104     return s;
2105 }
2106
2107 #ifdef _BSD
2108 static int tap_open(char *ifname, int ifname_size)
2109 {
2110     int fd;
2111     char *dev;
2112     struct stat s;
2113
2114     fd = open("/dev/tap", O_RDWR);
2115     if (fd < 0) {
2116         fprintf(stderr, "warning: could not open /dev/tap: no virtual network emulation\n");
2117         return -1;
2118     }
2119
2120     fstat(fd, &s);
2121     dev = devname(s.st_rdev, S_IFCHR);
2122     pstrcpy(ifname, ifname_size, dev);
2123
2124     fcntl(fd, F_SETFL, O_NONBLOCK);
2125     return fd;
2126 }
2127 #else
2128 static int tap_open(char *ifname, int ifname_size)
2129 {
2130     struct ifreq ifr;
2131     int fd, ret;
2132     
2133     fd = open("/dev/net/tun", O_RDWR);
2134     if (fd < 0) {
2135         fprintf(stderr, "warning: could not open /dev/net/tun: no virtual network emulation\n");
2136         return -1;
2137     }
2138     memset(&ifr, 0, sizeof(ifr));
2139     ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
2140     if (ifname[0] != '\0')
2141         pstrcpy(ifr.ifr_name, IFNAMSIZ, ifname);
2142     else
2143         pstrcpy(ifr.ifr_name, IFNAMSIZ, "tap%d");
2144     ret = ioctl(fd, TUNSETIFF, (void *) &ifr);
2145     if (ret != 0) {
2146         fprintf(stderr, "warning: could not configure /dev/net/tun: no virtual network emulation\n");
2147         close(fd);
2148         return -1;
2149     }
2150     pstrcpy(ifname, ifname_size, ifr.ifr_name);
2151     fcntl(fd, F_SETFL, O_NONBLOCK);
2152     return fd;
2153 }
2154 #endif
2155
2156 static int net_tap_init(VLANState *vlan, const char *ifname1,
2157                         const char *setup_script)
2158 {
2159     TAPState *s;
2160     int pid, status, fd;
2161     char *args[3];
2162     char **parg;
2163     char ifname[128];
2164
2165     if (ifname1 != NULL)
2166         pstrcpy(ifname, sizeof(ifname), ifname1);
2167     else
2168         ifname[0] = '\0';
2169     fd = tap_open(ifname, sizeof(ifname));
2170     if (fd < 0)
2171         return -1;
2172
2173     if (!setup_script)
2174         setup_script = "";
2175     if (setup_script[0] != '\0') {
2176         /* try to launch network init script */
2177         pid = fork();
2178         if (pid >= 0) {
2179             if (pid == 0) {
2180                 parg = args;
2181                 *parg++ = (char *)setup_script;
2182                 *parg++ = ifname;
2183                 *parg++ = NULL;
2184                 execv(setup_script, args);
2185                 _exit(1);
2186             }
2187             while (waitpid(pid, &status, 0) != pid);
2188             if (!WIFEXITED(status) ||
2189                 WEXITSTATUS(status) != 0) {
2190                 fprintf(stderr, "%s: could not launch network script\n",
2191                         setup_script);
2192                 return -1;
2193             }
2194         }
2195     }
2196     s = net_tap_fd_init(vlan, fd);
2197     if (!s)
2198         return -1;
2199     snprintf(s->vc->info_str, sizeof(s->vc->info_str), 
2200              "tap: ifname=%s setup_script=%s", ifname, setup_script);
2201     return 0;
2202 }
2203
2204 #endif /* !_WIN32 */
2205
2206 /* network connection */
2207 typedef struct NetSocketState {
2208     VLANClientState *vc;
2209     int fd;
2210     int state; /* 0 = getting length, 1 = getting data */
2211     int index;
2212     int packet_len;
2213     uint8_t buf[4096];
2214     struct sockaddr_in dgram_dst; /* contains inet host and port destination iff connectionless (SOCK_DGRAM) */
2215 } NetSocketState;
2216
2217 typedef struct NetSocketListenState {
2218     VLANState *vlan;
2219     int fd;
2220 } NetSocketListenState;
2221
2222 /* XXX: we consider we can send the whole packet without blocking */
2223 static void net_socket_receive(void *opaque, const uint8_t *buf, int size)
2224 {
2225     NetSocketState *s = opaque;
2226     uint32_t len;
2227     len = htonl(size);
2228
2229     send_all(s->fd, (const uint8_t *)&len, sizeof(len));
2230     send_all(s->fd, buf, size);
2231 }
2232
2233 static void net_socket_receive_dgram(void *opaque, const uint8_t *buf, int size)
2234 {
2235     NetSocketState *s = opaque;
2236     sendto(s->fd, buf, size, 0, 
2237            (struct sockaddr *)&s->dgram_dst, sizeof(s->dgram_dst));
2238 }
2239
2240 static void net_socket_send(void *opaque)
2241 {
2242     NetSocketState *s = opaque;
2243     int l, size, err;
2244     uint8_t buf1[4096];
2245     const uint8_t *buf;
2246
2247     size = recv(s->fd, buf1, sizeof(buf1), 0);
2248     if (size < 0) {
2249         err = socket_error();
2250         if (err != EWOULDBLOCK) 
2251             goto eoc;
2252     } else if (size == 0) {
2253         /* end of connection */
2254     eoc:
2255         qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
2256         closesocket(s->fd);
2257         return;
2258     }
2259     buf = buf1;
2260     while (size > 0) {
2261         /* reassemble a packet from the network */
2262         switch(s->state) {
2263         case 0:
2264             l = 4 - s->index;
2265             if (l > size)
2266                 l = size;
2267             memcpy(s->buf + s->index, buf, l);
2268             buf += l;
2269             size -= l;
2270             s->index += l;
2271             if (s->index == 4) {
2272                 /* got length */
2273                 s->packet_len = ntohl(*(uint32_t *)s->buf);
2274                 s->index = 0;
2275                 s->state = 1;
2276             }
2277             break;
2278         case 1:
2279             l = s->packet_len - s->index;
2280             if (l > size)
2281                 l = size;
2282             memcpy(s->buf + s->index, buf, l);
2283             s->index += l;
2284             buf += l;
2285             size -= l;
2286             if (s->index >= s->packet_len) {
2287                 qemu_send_packet(s->vc, s->buf, s->packet_len);
2288                 s->index = 0;
2289                 s->state = 0;
2290             }
2291             break;
2292         }
2293     }
2294 }
2295
2296 static void net_socket_send_dgram(void *opaque)
2297 {
2298     NetSocketState *s = opaque;
2299     int size;
2300
2301     size = recv(s->fd, s->buf, sizeof(s->buf), 0);
2302     if (size < 0) 
2303         return;
2304     if (size == 0) {
2305         /* end of connection */
2306         qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
2307         return;
2308     }
2309     qemu_send_packet(s->vc, s->buf, size);
2310 }
2311
2312 static int net_socket_mcast_create(struct sockaddr_in *mcastaddr)
2313 {
2314     struct ip_mreq imr;
2315     int fd;
2316     int val, ret;
2317     if (!IN_MULTICAST(ntohl(mcastaddr->sin_addr.s_addr))) {
2318         fprintf(stderr, "qemu: error: specified mcastaddr \"%s\" (0x%08x) does not contain a multicast address\n",
2319                 inet_ntoa(mcastaddr->sin_addr), 
2320                 (int)ntohl(mcastaddr->sin_addr.s_addr));
2321         return -1;
2322
2323     }
2324     fd = socket(PF_INET, SOCK_DGRAM, 0);
2325     if (fd < 0) {
2326         perror("socket(PF_INET, SOCK_DGRAM)");
2327         return -1;
2328     }
2329
2330     val = 1;
2331     ret=setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, 
2332                    (const char *)&val, sizeof(val));
2333     if (ret < 0) {
2334         perror("setsockopt(SOL_SOCKET, SO_REUSEADDR)");
2335         goto fail;
2336     }
2337
2338     ret = bind(fd, (struct sockaddr *)mcastaddr, sizeof(*mcastaddr));
2339     if (ret < 0) {
2340         perror("bind");
2341         goto fail;
2342     }
2343     
2344     /* Add host to multicast group */
2345     imr.imr_multiaddr = mcastaddr->sin_addr;
2346     imr.imr_interface.s_addr = htonl(INADDR_ANY);
2347
2348     ret = setsockopt(fd, IPPROTO_IP, IP_ADD_MEMBERSHIP, 
2349                      (const char *)&imr, sizeof(struct ip_mreq));
2350     if (ret < 0) {
2351         perror("setsockopt(IP_ADD_MEMBERSHIP)");
2352         goto fail;
2353     }
2354
2355     /* Force mcast msgs to loopback (eg. several QEMUs in same host */
2356     val = 1;
2357     ret=setsockopt(fd, IPPROTO_IP, IP_MULTICAST_LOOP, 
2358                    (const char *)&val, sizeof(val));
2359     if (ret < 0) {
2360         perror("setsockopt(SOL_IP, IP_MULTICAST_LOOP)");
2361         goto fail;
2362     }
2363
2364     socket_set_nonblock(fd);
2365     return fd;
2366 fail:
2367     if (fd>=0) close(fd);
2368     return -1;
2369 }
2370
2371 static NetSocketState *net_socket_fd_init_dgram(VLANState *vlan, int fd, 
2372                                           int is_connected)
2373 {
2374     struct sockaddr_in saddr;
2375     int newfd;
2376     socklen_t saddr_len;
2377     NetSocketState *s;
2378
2379     /* fd passed: multicast: "learn" dgram_dst address from bound address and save it
2380      * Because this may be "shared" socket from a "master" process, datagrams would be recv() 
2381      * by ONLY ONE process: we must "clone" this dgram socket --jjo
2382      */
2383
2384     if (is_connected) {
2385         if (getsockname(fd, (struct sockaddr *) &saddr, &saddr_len) == 0) {
2386             /* must be bound */
2387             if (saddr.sin_addr.s_addr==0) {
2388                 fprintf(stderr, "qemu: error: init_dgram: fd=%d unbound, cannot setup multicast dst addr\n",
2389                         fd);
2390                 return NULL;
2391             }
2392             /* clone dgram socket */
2393             newfd = net_socket_mcast_create(&saddr);
2394             if (newfd < 0) {
2395                 /* error already reported by net_socket_mcast_create() */
2396                 close(fd);
2397                 return NULL;
2398             }
2399             /* clone newfd to fd, close newfd */
2400             dup2(newfd, fd);
2401             close(newfd);
2402         
2403         } else {
2404             fprintf(stderr, "qemu: error: init_dgram: fd=%d failed getsockname(): %s\n",
2405                     fd, strerror(errno));
2406             return NULL;
2407         }
2408     }
2409
2410     s = qemu_mallocz(sizeof(NetSocketState));
2411     if (!s)
2412         return NULL;
2413     s->fd = fd;
2414
2415     s->vc = qemu_new_vlan_client(vlan, net_socket_receive_dgram, s);
2416     qemu_set_fd_handler(s->fd, net_socket_send_dgram, NULL, s);
2417
2418     /* mcast: save bound address as dst */
2419     if (is_connected) s->dgram_dst=saddr;
2420
2421     snprintf(s->vc->info_str, sizeof(s->vc->info_str),
2422             "socket: fd=%d (%s mcast=%s:%d)", 
2423             fd, is_connected? "cloned" : "",
2424             inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
2425     return s;
2426 }
2427
2428 static void net_socket_connect(void *opaque)
2429 {
2430     NetSocketState *s = opaque;
2431     qemu_set_fd_handler(s->fd, net_socket_send, NULL, s);
2432 }
2433
2434 static NetSocketState *net_socket_fd_init_stream(VLANState *vlan, int fd, 
2435                                           int is_connected)
2436 {
2437     NetSocketState *s;
2438     s = qemu_mallocz(sizeof(NetSocketState));
2439     if (!s)
2440         return NULL;
2441     s->fd = fd;
2442     s->vc = qemu_new_vlan_client(vlan, 
2443                                  net_socket_receive, s);
2444     snprintf(s->vc->info_str, sizeof(s->vc->info_str),
2445              "socket: fd=%d", fd);
2446     if (is_connected) {
2447         net_socket_connect(s);
2448     } else {
2449         qemu_set_fd_handler(s->fd, NULL, net_socket_connect, s);
2450     }
2451     return s;
2452 }
2453
2454 static NetSocketState *net_socket_fd_init(VLANState *vlan, int fd, 
2455                                           int is_connected)
2456 {
2457     int so_type=-1, optlen=sizeof(so_type);
2458
2459     if(getsockopt(fd, SOL_SOCKET, SO_TYPE, (char *)&so_type, &optlen)< 0) {
2460         fprintf(stderr, "qemu: error: setsockopt(SO_TYPE) for fd=%d failed\n", fd);
2461         return NULL;
2462     }
2463     switch(so_type) {
2464     case SOCK_DGRAM:
2465         return net_socket_fd_init_dgram(vlan, fd, is_connected);
2466     case SOCK_STREAM:
2467         return net_socket_fd_init_stream(vlan, fd, is_connected);
2468     default:
2469         /* who knows ... this could be a eg. a pty, do warn and continue as stream */
2470         fprintf(stderr, "qemu: warning: socket type=%d for fd=%d is not SOCK_DGRAM or SOCK_STREAM\n", so_type, fd);
2471         return net_socket_fd_init_stream(vlan, fd, is_connected);
2472     }
2473     return NULL;
2474 }
2475
2476 static void net_socket_accept(void *opaque)
2477 {
2478     NetSocketListenState *s = opaque;    
2479     NetSocketState *s1;
2480     struct sockaddr_in saddr;
2481     socklen_t len;
2482     int fd;
2483
2484     for(;;) {
2485         len = sizeof(saddr);
2486         fd = accept(s->fd, (struct sockaddr *)&saddr, &len);
2487         if (fd < 0 && errno != EINTR) {
2488             return;
2489         } else if (fd >= 0) {
2490             break;
2491         }
2492     }
2493     s1 = net_socket_fd_init(s->vlan, fd, 1); 
2494     if (!s1) {
2495         close(fd);
2496     } else {
2497         snprintf(s1->vc->info_str, sizeof(s1->vc->info_str),
2498                  "socket: connection from %s:%d", 
2499                  inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
2500     }
2501 }
2502
2503 static int net_socket_listen_init(VLANState *vlan, const char *host_str)
2504 {
2505     NetSocketListenState *s;
2506     int fd, val, ret;
2507     struct sockaddr_in saddr;
2508
2509     if (parse_host_port(&saddr, host_str) < 0)
2510         return -1;
2511     
2512     s = qemu_mallocz(sizeof(NetSocketListenState));
2513     if (!s)
2514         return -1;
2515
2516     fd = socket(PF_INET, SOCK_STREAM, 0);
2517     if (fd < 0) {
2518         perror("socket");
2519         return -1;
2520     }
2521     socket_set_nonblock(fd);
2522
2523     /* allow fast reuse */
2524     val = 1;
2525     setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (const char *)&val, sizeof(val));
2526     
2527     ret = bind(fd, (struct sockaddr *)&saddr, sizeof(saddr));
2528     if (ret < 0) {
2529         perror("bind");
2530         return -1;
2531     }
2532     ret = listen(fd, 0);
2533     if (ret < 0) {
2534         perror("listen");
2535         return -1;
2536     }
2537     s->vlan = vlan;
2538     s->fd = fd;
2539     qemu_set_fd_handler(fd, net_socket_accept, NULL, s);
2540     return 0;
2541 }
2542
2543 static int net_socket_connect_init(VLANState *vlan, const char *host_str)
2544 {
2545     NetSocketState *s;
2546     int fd, connected, ret, err;
2547     struct sockaddr_in saddr;
2548
2549     if (parse_host_port(&saddr, host_str) < 0)
2550         return -1;
2551
2552     fd = socket(PF_INET, SOCK_STREAM, 0);
2553     if (fd < 0) {
2554         perror("socket");
2555         return -1;
2556     }
2557     socket_set_nonblock(fd);
2558
2559     connected = 0;
2560     for(;;) {
2561         ret = connect(fd, (struct sockaddr *)&saddr, sizeof(saddr));
2562         if (ret < 0) {
2563             err = socket_error();
2564             if (err == EINTR || err == EWOULDBLOCK) {
2565             } else if (err == EINPROGRESS) {
2566                 break;
2567             } else {
2568                 perror("connect");
2569                 closesocket(fd);
2570                 return -1;
2571             }
2572         } else {
2573             connected = 1;
2574             break;
2575         }
2576     }
2577     s = net_socket_fd_init(vlan, fd, connected);
2578     if (!s)
2579         return -1;
2580     snprintf(s->vc->info_str, sizeof(s->vc->info_str),
2581              "socket: connect to %s:%d", 
2582              inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
2583     return 0;
2584 }
2585
2586 static int net_socket_mcast_init(VLANState *vlan, const char *host_str)
2587 {
2588     NetSocketState *s;
2589     int fd;
2590     struct sockaddr_in saddr;
2591
2592     if (parse_host_port(&saddr, host_str) < 0)
2593         return -1;
2594
2595
2596     fd = net_socket_mcast_create(&saddr);
2597     if (fd < 0)
2598         return -1;
2599
2600     s = net_socket_fd_init(vlan, fd, 0);
2601     if (!s)
2602         return -1;
2603
2604     s->dgram_dst = saddr;
2605     
2606     snprintf(s->vc->info_str, sizeof(s->vc->info_str),
2607              "socket: mcast=%s:%d", 
2608              inet_ntoa(saddr.sin_addr), ntohs(saddr.sin_port));
2609     return 0;
2610
2611 }
2612
2613 static int get_param_value(char *buf, int buf_size,
2614                            const char *tag, const char *str)
2615 {
2616     const char *p;
2617     char *q;
2618     char option[128];
2619
2620     p = str;
2621     for(;;) {
2622         q = option;
2623         while (*p != '\0' && *p != '=') {
2624             if ((q - option) < sizeof(option) - 1)
2625                 *q++ = *p;
2626             p++;
2627         }
2628         *q = '\0';
2629         if (*p != '=')
2630             break;
2631         p++;
2632         if (!strcmp(tag, option)) {
2633             q = buf;
2634             while (*p != '\0' && *p != ',') {
2635                 if ((q - buf) < buf_size - 1)
2636                     *q++ = *p;
2637                 p++;
2638             }
2639             *q = '\0';
2640             return q - buf;
2641         } else {
2642             while (*p != '\0' && *p != ',') {
2643                 p++;
2644             }
2645         }
2646         if (*p != ',')
2647             break;
2648         p++;
2649     }
2650     return 0;
2651 }
2652
2653 int net_client_init(const char *str)
2654 {
2655     const char *p;
2656     char *q;
2657     char device[64];
2658     char buf[1024];
2659     int vlan_id, ret;
2660     VLANState *vlan;
2661
2662     p = str;
2663     q = device;
2664     while (*p != '\0' && *p != ',') {
2665         if ((q - device) < sizeof(device) - 1)
2666             *q++ = *p;
2667         p++;
2668     }
2669     *q = '\0';
2670     if (*p == ',')
2671         p++;
2672     vlan_id = 0;
2673     if (get_param_value(buf, sizeof(buf), "vlan", p)) {
2674         vlan_id = strtol(buf, NULL, 0);
2675     }
2676     vlan = qemu_find_vlan(vlan_id);
2677     if (!vlan) {
2678         fprintf(stderr, "Could not create vlan %d\n", vlan_id);
2679         return -1;
2680     }
2681     if (!strcmp(device, "nic")) {
2682         NICInfo *nd;
2683         uint8_t *macaddr;
2684
2685         if (nb_nics >= MAX_NICS) {
2686             fprintf(stderr, "Too Many NICs\n");
2687             return -1;
2688         }
2689         nd = &nd_table[nb_nics];
2690         macaddr = nd->macaddr;
2691         macaddr[0] = 0x52;
2692         macaddr[1] = 0x54;
2693         macaddr[2] = 0x00;
2694         macaddr[3] = 0x12;
2695         macaddr[4] = 0x34;
2696         macaddr[5] = 0x56 + nb_nics;
2697
2698         if (get_param_value(buf, sizeof(buf), "macaddr", p)) {
2699             if (parse_macaddr(macaddr, buf) < 0) {
2700                 fprintf(stderr, "invalid syntax for ethernet address\n");
2701                 return -1;
2702             }
2703         }
2704         nd->vlan = vlan;
2705         nb_nics++;
2706         ret = 0;
2707     } else
2708     if (!strcmp(device, "none")) {
2709         /* does nothing. It is needed to signal that no network cards
2710            are wanted */
2711         ret = 0;
2712     } else
2713 #ifdef CONFIG_SLIRP
2714     if (!strcmp(device, "user")) {
2715         ret = net_slirp_init(vlan);
2716     } else
2717 #endif
2718 #ifndef _WIN32
2719     if (!strcmp(device, "tap")) {
2720         char ifname[64];
2721         char setup_script[1024];
2722         int fd;
2723         if (get_param_value(buf, sizeof(buf), "fd", p) > 0) {
2724             fd = strtol(buf, NULL, 0);
2725             ret = -1;
2726             if (net_tap_fd_init(vlan, fd))
2727                 ret = 0;
2728         } else {
2729             get_param_value(ifname, sizeof(ifname), "ifname", p);
2730             if (get_param_value(setup_script, sizeof(setup_script), "script", p) == 0) {
2731                 pstrcpy(setup_script, sizeof(setup_script), DEFAULT_NETWORK_SCRIPT);
2732             }
2733             ret = net_tap_init(vlan, ifname, setup_script);
2734         }
2735     } else
2736 #endif
2737     if (!strcmp(device, "socket")) {
2738         if (get_param_value(buf, sizeof(buf), "fd", p) > 0) {
2739             int fd;
2740             fd = strtol(buf, NULL, 0);
2741             ret = -1;
2742             if (net_socket_fd_init(vlan, fd, 1))
2743                 ret = 0;
2744         } else if (get_param_value(buf, sizeof(buf), "listen", p) > 0) {
2745             ret = net_socket_listen_init(vlan, buf);
2746         } else if (get_param_value(buf, sizeof(buf), "connect", p) > 0) {
2747             ret = net_socket_connect_init(vlan, buf);
2748         } else if (get_param_value(buf, sizeof(buf), "mcast", p) > 0) {
2749             ret = net_socket_mcast_init(vlan, buf);
2750         } else {
2751             fprintf(stderr, "Unknown socket options: %s\n", p);
2752             return -1;
2753         }
2754     } else
2755     {
2756         fprintf(stderr, "Unknown network device: %s\n", device);
2757         return -1;
2758     }
2759     if (ret < 0) {
2760         fprintf(stderr, "Could not initialize device '%s'\n", device);
2761     }
2762     
2763     return ret;
2764 }
2765
2766 void do_info_network(void)
2767 {
2768     VLANState *vlan;
2769     VLANClientState *vc;
2770
2771     for(vlan = first_vlan; vlan != NULL; vlan = vlan->next) {
2772         term_printf("VLAN %d devices:\n", vlan->id);
2773         for(vc = vlan->first_client; vc != NULL; vc = vc->next)
2774             term_printf("  %s\n", vc->info_str);
2775     }
2776 }
2777  
2778 /***********************************************************/
2779 /* USB devices */
2780
2781 static int usb_device_add(const char *devname)
2782 {
2783     const char *p;
2784     USBDevice *dev;
2785     int i;
2786
2787     if (!vm_usb_hub)
2788         return -1;
2789     for(i = 0;i < MAX_VM_USB_PORTS; i++) {
2790         if (!vm_usb_ports[i]->dev)
2791             break;
2792     }
2793     if (i == MAX_VM_USB_PORTS)
2794         return -1;
2795
2796     if (strstart(devname, "host:", &p)) {
2797         dev = usb_host_device_open(p);
2798         if (!dev)
2799             return -1;
2800     } else if (!strcmp(devname, "mouse")) {
2801         dev = usb_mouse_init();
2802         if (!dev)
2803             return -1;
2804     } else {
2805         return -1;
2806     }
2807     usb_attach(vm_usb_ports[i], dev);
2808     return 0;
2809 }
2810
2811 static int usb_device_del(const char *devname)
2812 {
2813     USBDevice *dev;
2814     int bus_num, addr, i;
2815     const char *p;
2816
2817     if (!vm_usb_hub)
2818         return -1;
2819
2820     p = strchr(devname, '.');
2821     if (!p) 
2822         return -1;
2823     bus_num = strtoul(devname, NULL, 0);
2824     addr = strtoul(p + 1, NULL, 0);
2825     if (bus_num != 0)
2826         return -1;
2827     for(i = 0;i < MAX_VM_USB_PORTS; i++) {
2828         dev = vm_usb_ports[i]->dev;
2829         if (dev && dev->addr == addr)
2830             break;
2831     }
2832     if (i == MAX_VM_USB_PORTS)
2833         return -1;
2834     usb_attach(vm_usb_ports[i], NULL);
2835     return 0;
2836 }
2837
2838 void do_usb_add(const char *devname)
2839 {
2840     int ret;
2841     ret = usb_device_add(devname);
2842     if (ret < 0) 
2843         term_printf("Could not add USB device '%s'\n", devname);
2844 }
2845
2846 void do_usb_del(const char *devname)
2847 {
2848     int ret;
2849     ret = usb_device_del(devname);
2850     if (ret < 0) 
2851         term_printf("Could not remove USB device '%s'\n", devname);
2852 }
2853
2854 void usb_info(void)
2855 {
2856     USBDevice *dev;
2857     int i;
2858     const char *speed_str;
2859
2860     if (!vm_usb_hub) {
2861         term_printf("USB support not enabled\n");
2862         return;
2863     }
2864
2865     for(i = 0; i < MAX_VM_USB_PORTS; i++) {
2866         dev = vm_usb_ports[i]->dev;
2867         if (dev) {
2868             term_printf("Hub port %d:\n", i);
2869             switch(dev->speed) {
2870             case USB_SPEED_LOW: 
2871                 speed_str = "1.5"; 
2872                 break;
2873             case USB_SPEED_FULL: 
2874                 speed_str = "12"; 
2875                 break;
2876             case USB_SPEED_HIGH: 
2877                 speed_str = "480"; 
2878                 break;
2879             default:
2880                 speed_str = "?"; 
2881                 break;
2882             }
2883             term_printf("  Device %d.%d, speed %s Mb/s\n", 
2884                         0, dev->addr, speed_str);
2885         }
2886     }
2887 }
2888
2889 /***********************************************************/
2890 /* pid file */
2891
2892 static char *pid_filename;
2893
2894 /* Remove PID file. Called on normal exit */
2895
2896 static void remove_pidfile(void) 
2897 {
2898     unlink (pid_filename);
2899 }
2900
2901 static void create_pidfile(const char *filename)
2902 {
2903     struct stat pidstat;
2904     FILE *f;
2905
2906     /* Try to write our PID to the named file */
2907     if (stat(filename, &pidstat) < 0) {
2908         if (errno == ENOENT) {
2909             if ((f = fopen (filename, "w")) == NULL) {
2910                 perror("Opening pidfile");
2911                 exit(1);
2912             }
2913             fprintf(f, "%d\n", getpid());
2914             fclose(f);
2915             pid_filename = qemu_strdup(filename);
2916             if (!pid_filename) {
2917                 fprintf(stderr, "Could not save PID filename");
2918                 exit(1);
2919             }
2920             atexit(remove_pidfile);
2921         }
2922     } else {
2923         fprintf(stderr, "%s already exists. Remove it and try again.\n", 
2924                 filename);
2925         exit(1);
2926     }
2927 }
2928
2929 /***********************************************************/
2930 /* dumb display */
2931
2932 static void dumb_update(DisplayState *ds, int x, int y, int w, int h)
2933 {
2934 }
2935
2936 static void dumb_resize(DisplayState *ds, int w, int h)
2937 {
2938 }
2939
2940 static void dumb_refresh(DisplayState *ds)
2941 {
2942     vga_update_display();
2943 }
2944
2945 void dumb_display_init(DisplayState *ds)
2946 {
2947     ds->data = NULL;
2948     ds->linesize = 0;
2949     ds->depth = 0;
2950     ds->dpy_update = dumb_update;
2951     ds->dpy_resize = dumb_resize;
2952     ds->dpy_refresh = dumb_refresh;
2953 }
2954
2955 #if !defined(CONFIG_SOFTMMU)
2956 /***********************************************************/
2957 /* cpu signal handler */
2958 static void host_segv_handler(int host_signum, siginfo_t *info, 
2959                               void *puc)
2960 {
2961     if (cpu_signal_handler(host_signum, info, puc))
2962         return;
2963     if (stdio_nb_clients > 0)
2964         term_exit();
2965     abort();
2966 }
2967 #endif
2968
2969 /***********************************************************/
2970 /* I/O handling */
2971
2972 #define MAX_IO_HANDLERS 64
2973
2974 typedef struct IOHandlerRecord {
2975     int fd;
2976     IOCanRWHandler *fd_read_poll;
2977     IOHandler *fd_read;
2978     IOHandler *fd_write;
2979     void *opaque;
2980     /* temporary data */
2981     struct pollfd *ufd;
2982     struct IOHandlerRecord *next;
2983 } IOHandlerRecord;
2984
2985 static IOHandlerRecord *first_io_handler;
2986
2987 /* XXX: fd_read_poll should be suppressed, but an API change is
2988    necessary in the character devices to suppress fd_can_read(). */
2989 int qemu_set_fd_handler2(int fd, 
2990                          IOCanRWHandler *fd_read_poll, 
2991                          IOHandler *fd_read, 
2992                          IOHandler *fd_write, 
2993                          void *opaque)
2994 {
2995     IOHandlerRecord **pioh, *ioh;
2996
2997     if (!fd_read && !fd_write) {
2998         pioh = &first_io_handler;
2999         for(;;) {
3000             ioh = *pioh;
3001             if (ioh == NULL)
3002                 break;
3003             if (ioh->fd == fd) {
3004                 *pioh = ioh->next;
3005                 qemu_free(ioh);
3006                 break;
3007             }
3008             pioh = &ioh->next;
3009         }
3010     } else {
3011         for(ioh = first_io_handler; ioh != NULL; ioh = ioh->next) {
3012             if (ioh->fd == fd)
3013                 goto found;
3014         }
3015         ioh = qemu_mallocz(sizeof(IOHandlerRecord));
3016         if (!ioh)
3017             return -1;
3018         ioh->next = first_io_handler;
3019         first_io_handler = ioh;
3020     found:
3021         ioh->fd = fd;
3022         ioh->fd_read_poll = fd_read_poll;
3023         ioh->fd_read = fd_read;
3024         ioh->fd_write = fd_write;
3025         ioh->opaque = opaque;
3026     }
3027     return 0;
3028 }
3029
3030 int qemu_set_fd_handler(int fd, 
3031                         IOHandler *fd_read, 
3032                         IOHandler *fd_write, 
3033                         void *opaque)
3034 {
3035     return qemu_set_fd_handler2(fd, NULL, fd_read, fd_write, opaque);
3036 }
3037
3038 /***********************************************************/
3039 /* savevm/loadvm support */
3040
3041 void qemu_put_buffer(QEMUFile *f, const uint8_t *buf, int size)
3042 {
3043     fwrite(buf, 1, size, f);
3044 }
3045
3046 void qemu_put_byte(QEMUFile *f, int v)
3047 {
3048     fputc(v, f);
3049 }
3050
3051 void qemu_put_be16(QEMUFile *f, unsigned int v)
3052 {
3053     qemu_put_byte(f, v >> 8);
3054     qemu_put_byte(f, v);
3055 }
3056
3057 void qemu_put_be32(QEMUFile *f, unsigned int v)
3058 {
3059     qemu_put_byte(f, v >> 24);
3060     qemu_put_byte(f, v >> 16);
3061     qemu_put_byte(f, v >> 8);
3062     qemu_put_byte(f, v);
3063 }
3064
3065 void qemu_put_be64(QEMUFile *f, uint64_t v)
3066 {
3067     qemu_put_be32(f, v >> 32);
3068     qemu_put_be32(f, v);
3069 }
3070
3071 int qemu_get_buffer(QEMUFile *f, uint8_t *buf, int size)
3072 {
3073     return fread(buf, 1, size, f);
3074 }
3075
3076 int qemu_get_byte(QEMUFile *f)
3077 {
3078     int v;
3079     v = fgetc(f);
3080     if (v == EOF)
3081         return 0;
3082     else
3083         return v;
3084 }
3085
3086 unsigned int qemu_get_be16(QEMUFile *f)
3087 {
3088     unsigned int v;
3089     v = qemu_get_byte(f) << 8;
3090     v |= qemu_get_byte(f);
3091     return v;
3092 }
3093
3094 unsigned int qemu_get_be32(QEMUFile *f)
3095 {
3096     unsigned int v;
3097     v = qemu_get_byte(f) << 24;
3098     v |= qemu_get_byte(f) << 16;
3099     v |= qemu_get_byte(f) << 8;
3100     v |= qemu_get_byte(f);
3101     return v;
3102 }
3103
3104 uint64_t qemu_get_be64(QEMUFile *f)
3105 {
3106     uint64_t v;
3107     v = (uint64_t)qemu_get_be32(f) << 32;
3108     v |= qemu_get_be32(f);
3109     return v;
3110 }
3111
3112 int64_t qemu_ftell(QEMUFile *f)
3113 {
3114     return ftell(f);
3115 }
3116
3117 int64_t qemu_fseek(QEMUFile *f, int64_t pos, int whence)
3118 {
3119     if (fseek(f, pos, whence) < 0)
3120         return -1;
3121     return ftell(f);
3122 }
3123
3124 typedef struct SaveStateEntry {
3125     char idstr[256];
3126     int instance_id;
3127     int version_id;
3128     SaveStateHandler *save_state;
3129     LoadStateHandler *load_state;
3130     void *opaque;
3131     struct SaveStateEntry *next;
3132 } SaveStateEntry;
3133
3134 static SaveStateEntry *first_se;
3135
3136 int register_savevm(const char *idstr, 
3137                     int instance_id, 
3138                     int version_id,
3139                     SaveStateHandler *save_state,
3140                     LoadStateHandler *load_state,
3141                     void *opaque)
3142 {
3143     SaveStateEntry *se, **pse;
3144
3145     se = qemu_malloc(sizeof(SaveStateEntry));
3146     if (!se)
3147         return -1;
3148     pstrcpy(se->idstr, sizeof(se->idstr), idstr);
3149     se->instance_id = instance_id;
3150     se->version_id = version_id;
3151     se->save_state = save_state;
3152     se->load_state = load_state;
3153     se->opaque = opaque;
3154     se->next = NULL;
3155
3156     /* add at the end of list */
3157     pse = &first_se;
3158     while (*pse != NULL)
3159         pse = &(*pse)->next;
3160     *pse = se;
3161     return 0;
3162 }
3163
3164 #define QEMU_VM_FILE_MAGIC   0x5145564d
3165 #define QEMU_VM_FILE_VERSION 0x00000001
3166
3167 int qemu_savevm(const char *filename)
3168 {
3169     SaveStateEntry *se;
3170     QEMUFile *f;
3171     int len, len_pos, cur_pos, saved_vm_running, ret;
3172
3173     saved_vm_running = vm_running;
3174     vm_stop(0);
3175
3176     f = fopen(filename, "wb");
3177     if (!f) {
3178         ret = -1;
3179         goto the_end;
3180     }
3181
3182     qemu_put_be32(f, QEMU_VM_FILE_MAGIC);
3183     qemu_put_be32(f, QEMU_VM_FILE_VERSION);
3184
3185     for(se = first_se; se != NULL; se = se->next) {
3186         /* ID string */
3187         len = strlen(se->idstr);
3188         qemu_put_byte(f, len);
3189         qemu_put_buffer(f, se->idstr, len);
3190
3191         qemu_put_be32(f, se->instance_id);
3192         qemu_put_be32(f, se->version_id);
3193
3194         /* record size: filled later */
3195         len_pos = ftell(f);
3196         qemu_put_be32(f, 0);
3197         
3198         se->save_state(f, se->opaque);
3199
3200         /* fill record size */
3201         cur_pos = ftell(f);
3202         len = ftell(f) - len_pos - 4;
3203         fseek(f, len_pos, SEEK_SET);
3204         qemu_put_be32(f, len);
3205         fseek(f, cur_pos, SEEK_SET);
3206     }
3207
3208     fclose(f);
3209     ret = 0;
3210  the_end:
3211     if (saved_vm_running)
3212         vm_start();
3213     return ret;
3214 }
3215
3216 static SaveStateEntry *find_se(const char *idstr, int instance_id)
3217 {
3218     SaveStateEntry *se;
3219
3220     for(se = first_se; se != NULL; se = se->next) {
3221         if (!strcmp(se->idstr, idstr) && 
3222             instance_id == se->instance_id)
3223             return se;
3224     }
3225     return NULL;
3226 }
3227
3228 int qemu_loadvm(const char *filename)
3229 {
3230     SaveStateEntry *se;
3231     QEMUFile *f;
3232     int len, cur_pos, ret, instance_id, record_len, version_id;
3233     int saved_vm_running;
3234     unsigned int v;
3235     char idstr[256];
3236     
3237     saved_vm_running = vm_running;
3238     vm_stop(0);
3239
3240     f = fopen(filename, "rb");
3241     if (!f) {
3242         ret = -1;
3243         goto the_end;
3244     }
3245
3246     v = qemu_get_be32(f);
3247     if (v != QEMU_VM_FILE_MAGIC)
3248         goto fail;
3249     v = qemu_get_be32(f);
3250     if (v != QEMU_VM_FILE_VERSION) {
3251     fail:
3252         fclose(f);
3253         ret = -1;
3254         goto the_end;
3255     }
3256     for(;;) {
3257         len = qemu_get_byte(f);
3258         if (feof(f))
3259             break;
3260         qemu_get_buffer(f, idstr, len);
3261         idstr[len] = '\0';
3262         instance_id = qemu_get_be32(f);
3263         version_id = qemu_get_be32(f);
3264         record_len = qemu_get_be32(f);
3265 #if 0
3266         printf("idstr=%s instance=0x%x version=%d len=%d\n", 
3267                idstr, instance_id, version_id, record_len);
3268 #endif
3269         cur_pos = ftell(f);
3270         se = find_se(idstr, instance_id);
3271         if (!se) {
3272             fprintf(stderr, "qemu: warning: instance 0x%x of device '%s' not present in current VM\n", 
3273                     instance_id, idstr);
3274         } else {
3275             ret = se->load_state(f, se->opaque, version_id);
3276             if (ret < 0) {
3277                 fprintf(stderr, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n", 
3278                         instance_id, idstr);
3279             }
3280         }
3281         /* always seek to exact end of record */
3282         qemu_fseek(f, cur_pos + record_len, SEEK_SET);
3283     }
3284     fclose(f);
3285     ret = 0;
3286  the_end:
3287     if (saved_vm_running)
3288         vm_start();
3289     return ret;
3290 }
3291
3292 /***********************************************************/
3293 /* cpu save/restore */
3294
3295 #if defined(TARGET_I386)
3296
3297 static void cpu_put_seg(QEMUFile *f, SegmentCache *dt)
3298 {
3299     qemu_put_be32(f, dt->selector);
3300     qemu_put_betl(f, dt->base);
3301     qemu_put_be32(f, dt->limit);
3302     qemu_put_be32(f, dt->flags);
3303 }
3304
3305 static void cpu_get_seg(QEMUFile *f, SegmentCache *dt)
3306 {
3307     dt->selector = qemu_get_be32(f);
3308     dt->base = qemu_get_betl(f);
3309     dt->limit = qemu_get_be32(f);
3310     dt->flags = qemu_get_be32(f);
3311 }
3312
3313 void cpu_save(QEMUFile *f, void *opaque)
3314 {
3315     CPUState *env = opaque;
3316     uint16_t fptag, fpus, fpuc, fpregs_format;
3317     uint32_t hflags;
3318     int i;
3319     
3320     for(i = 0; i < CPU_NB_REGS; i++)
3321         qemu_put_betls(f, &env->regs[i]);
3322     qemu_put_betls(f, &env->eip);
3323     qemu_put_betls(f, &env->eflags);
3324     hflags = env->hflags; /* XXX: suppress most of the redundant hflags */
3325     qemu_put_be32s(f, &hflags);
3326     
3327     /* FPU */
3328     fpuc = env->fpuc;
3329     fpus = (env->fpus & ~0x3800) | (env->fpstt & 0x7) << 11;
3330     fptag = 0;
3331     for(i = 0; i < 8; i++) {
3332         fptag |= ((!env->fptags[i]) << i);
3333     }
3334     
3335     qemu_put_be16s(f, &fpuc);
3336     qemu_put_be16s(f, &fpus);
3337     qemu_put_be16s(f, &fptag);
3338
3339 #ifdef USE_X86LDOUBLE
3340     fpregs_format = 0;
3341 #else
3342     fpregs_format = 1;
3343 #endif
3344     qemu_put_be16s(f, &fpregs_format);
3345     
3346     for(i = 0; i < 8; i++) {
3347 #ifdef USE_X86LDOUBLE
3348         {
3349             uint64_t mant;
3350             uint16_t exp;
3351             /* we save the real CPU data (in case of MMX usage only 'mant'
3352                contains the MMX register */
3353             cpu_get_fp80(&mant, &exp, env->fpregs[i].d);
3354             qemu_put_be64(f, mant);
3355             qemu_put_be16(f, exp);
3356         }
3357 #else
3358         /* if we use doubles for float emulation, we save the doubles to
3359            avoid losing information in case of MMX usage. It can give
3360            problems if the image is restored on a CPU where long
3361            doubles are used instead. */
3362         qemu_put_be64(f, env->fpregs[i].mmx.MMX_Q(0));
3363 #endif
3364     }
3365
3366     for(i = 0; i < 6; i++)
3367         cpu_put_seg(f, &env->segs[i]);
3368     cpu_put_seg(f, &env->ldt);
3369     cpu_put_seg(f, &env->tr);
3370     cpu_put_seg(f, &env->gdt);
3371     cpu_put_seg(f, &env->idt);
3372     
3373     qemu_put_be32s(f, &env->sysenter_cs);
3374     qemu_put_be32s(f, &env->sysenter_esp);
3375     qemu_put_be32s(f, &env->sysenter_eip);
3376     
3377     qemu_put_betls(f, &env->cr[0]);
3378     qemu_put_betls(f, &env->cr[2]);
3379     qemu_put_betls(f, &env->cr[3]);
3380     qemu_put_betls(f, &env->cr[4]);
3381     
3382     for(i = 0; i < 8; i++)
3383         qemu_put_betls(f, &env->dr[i]);
3384
3385     /* MMU */
3386     qemu_put_be32s(f, &env->a20_mask);
3387
3388     /* XMM */
3389     qemu_put_be32s(f, &env->mxcsr);
3390     for(i = 0; i < CPU_NB_REGS; i++) {
3391         qemu_put_be64s(f, &env->xmm_regs[i].XMM_Q(0));
3392         qemu_put_be64s(f, &env->xmm_regs[i].XMM_Q(1));
3393     }
3394
3395 #ifdef TARGET_X86_64
3396     qemu_put_be64s(f, &env->efer);
3397     qemu_put_be64s(f, &env->star);
3398     qemu_put_be64s(f, &env->lstar);
3399     qemu_put_be64s(f, &env->cstar);
3400     qemu_put_be64s(f, &env->fmask);
3401     qemu_put_be64s(f, &env->kernelgsbase);
3402 #endif
3403 }
3404
3405 #ifdef USE_X86LDOUBLE
3406 /* XXX: add that in a FPU generic layer */
3407 union x86_longdouble {
3408     uint64_t mant;
3409     uint16_t exp;
3410 };
3411
3412 #define MANTD1(fp)      (fp & ((1LL << 52) - 1))
3413 #define EXPBIAS1 1023
3414 #define EXPD1(fp)       ((fp >> 52) & 0x7FF)
3415 #define SIGND1(fp)      ((fp >> 32) & 0x80000000)
3416
3417 static void fp64_to_fp80(union x86_longdouble *p, uint64_t temp)
3418 {
3419     int e;
3420     /* mantissa */
3421     p->mant = (MANTD1(temp) << 11) | (1LL << 63);
3422     /* exponent + sign */
3423     e = EXPD1(temp) - EXPBIAS1 + 16383;
3424     e |= SIGND1(temp) >> 16;
3425     p->exp = e;
3426 }
3427 #endif
3428
3429 int cpu_load(QEMUFile *f, void *opaque, int version_id)
3430 {
3431     CPUState *env = opaque;
3432     int i, guess_mmx;
3433     uint32_t hflags;
3434     uint16_t fpus, fpuc, fptag, fpregs_format;
3435
3436     if (version_id != 3)
3437         return -EINVAL;
3438     for(i = 0; i < CPU_NB_REGS; i++)
3439         qemu_get_betls(f, &env->regs[i]);
3440     qemu_get_betls(f, &env->eip);
3441     qemu_get_betls(f, &env->eflags);
3442     qemu_get_be32s(f, &hflags);
3443
3444     qemu_get_be16s(f, &fpuc);
3445     qemu_get_be16s(f, &fpus);
3446     qemu_get_be16s(f, &fptag);
3447     qemu_get_be16s(f, &fpregs_format);
3448     
3449     /* NOTE: we cannot always restore the FPU state if the image come
3450        from a host with a different 'USE_X86LDOUBLE' define. We guess
3451        if we are in an MMX state to restore correctly in that case. */
3452     guess_mmx = ((fptag == 0xff) && (fpus & 0x3800) == 0);
3453     for(i = 0; i < 8; i++) {
3454         uint64_t mant;
3455         uint16_t exp;
3456         
3457         switch(fpregs_format) {
3458         case 0:
3459             mant = qemu_get_be64(f);
3460             exp = qemu_get_be16(f);
3461 #ifdef USE_X86LDOUBLE
3462             env->fpregs[i].d = cpu_set_fp80(mant, exp);
3463 #else
3464             /* difficult case */
3465             if (guess_mmx)
3466                 env->fpregs[i].mmx.MMX_Q(0) = mant;
3467             else
3468                 env->fpregs[i].d = cpu_set_fp80(mant, exp);
3469 #endif
3470             break;
3471         case 1:
3472             mant = qemu_get_be64(f);
3473 #ifdef USE_X86LDOUBLE
3474             {
3475                 union x86_longdouble *p;
3476                 /* difficult case */
3477                 p = (void *)&env->fpregs[i];
3478                 if (guess_mmx) {
3479                     p->mant = mant;
3480                     p->exp = 0xffff;
3481                 } else {
3482                     fp64_to_fp80(p, mant);
3483                 }
3484             }
3485 #else
3486             env->fpregs[i].mmx.MMX_Q(0) = mant;
3487 #endif            
3488             break;
3489         default:
3490             return -EINVAL;
3491         }
3492     }
3493
3494     env->fpuc = fpuc;
3495     /* XXX: restore FPU round state */
3496     env->fpstt = (fpus >> 11) & 7;
3497     env->fpus = fpus & ~0x3800;
3498     fptag ^= 0xff;
3499     for(i = 0; i < 8; i++) {
3500         env->fptags[i] = (fptag >> i) & 1;
3501     }
3502     
3503     for(i = 0; i < 6; i++)
3504         cpu_get_seg(f, &env->segs[i]);
3505     cpu_get_seg(f, &env->ldt);
3506     cpu_get_seg(f, &env->tr);
3507     cpu_get_seg(f, &env->gdt);
3508     cpu_get_seg(f, &env->idt);
3509     
3510     qemu_get_be32s(f, &env->sysenter_cs);
3511     qemu_get_be32s(f, &env->sysenter_esp);
3512     qemu_get_be32s(f, &env->sysenter_eip);
3513     
3514     qemu_get_betls(f, &env->cr[0]);
3515     qemu_get_betls(f, &env->cr[2]);
3516     qemu_get_betls(f, &env->cr[3]);
3517     qemu_get_betls(f, &env->cr[4]);
3518     
3519     for(i = 0; i < 8; i++)
3520         qemu_get_betls(f, &env->dr[i]);
3521
3522     /* MMU */
3523     qemu_get_be32s(f, &env->a20_mask);
3524
3525     qemu_get_be32s(f, &env->mxcsr);
3526     for(i = 0; i < CPU_NB_REGS; i++) {
3527         qemu_get_be64s(f, &env->xmm_regs[i].XMM_Q(0));
3528         qemu_get_be64s(f, &env->xmm_regs[i].XMM_Q(1));
3529     }
3530
3531 #ifdef TARGET_X86_64
3532     qemu_get_be64s(f, &env->efer);
3533     qemu_get_be64s(f, &env->star);
3534     qemu_get_be64s(f, &env->lstar);
3535     qemu_get_be64s(f, &env->cstar);
3536     qemu_get_be64s(f, &env->fmask);
3537     qemu_get_be64s(f, &env->kernelgsbase);
3538 #endif
3539
3540     /* XXX: compute hflags from scratch, except for CPL and IIF */
3541     env->hflags = hflags;
3542     tlb_flush(env, 1);
3543     return 0;
3544 }
3545
3546 #elif defined(TARGET_PPC)
3547 void cpu_save(QEMUFile *f, void *opaque)
3548 {
3549 }
3550
3551 int cpu_load(QEMUFile *f, void *opaque, int version_id)
3552 {
3553     return 0;
3554 }
3555
3556 #elif defined(TARGET_MIPS)
3557 void cpu_save(QEMUFile *f, void *opaque)
3558 {
3559 }
3560
3561 int cpu_load(QEMUFile *f, void *opaque, int version_id)
3562 {
3563     return 0;
3564 }
3565
3566 #elif defined(TARGET_SPARC)
3567 void cpu_save(QEMUFile *f, void *opaque)
3568 {
3569     CPUState *env = opaque;
3570     int i;
3571     uint32_t tmp;
3572
3573     for(i = 0; i < 8; i++)
3574         qemu_put_betls(f, &env->gregs[i]);
3575     for(i = 0; i < NWINDOWS * 16; i++)
3576         qemu_put_betls(f, &env->regbase[i]);
3577
3578     /* FPU */
3579     for(i = 0; i < TARGET_FPREGS; i++) {
3580         union {
3581             TARGET_FPREG_T f;
3582             target_ulong i;
3583         } u;
3584         u.f = env->fpr[i];
3585         qemu_put_betl(f, u.i);
3586     }
3587
3588     qemu_put_betls(f, &env->pc);
3589     qemu_put_betls(f, &env->npc);
3590     qemu_put_betls(f, &env->y);
3591     tmp = GET_PSR(env);
3592     qemu_put_be32(f, tmp);
3593     qemu_put_betls(f, &env->fsr);
3594     qemu_put_betls(f, &env->tbr);
3595 #ifndef TARGET_SPARC64
3596     qemu_put_be32s(f, &env->wim);
3597     /* MMU */
3598     for(i = 0; i < 16; i++)
3599         qemu_put_be32s(f, &env->mmuregs[i]);
3600 #endif
3601 }
3602
3603 int cpu_load(QEMUFile *f, void *opaque, int version_id)
3604 {
3605     CPUState *env = opaque;
3606     int i;
3607     uint32_t tmp;
3608
3609     for(i = 0; i < 8; i++)
3610         qemu_get_betls(f, &env->gregs[i]);
3611     for(i = 0; i < NWINDOWS * 16; i++)
3612         qemu_get_betls(f, &env->regbase[i]);
3613
3614     /* FPU */
3615     for(i = 0; i < TARGET_FPREGS; i++) {
3616         union {
3617             TARGET_FPREG_T f;
3618             target_ulong i;
3619         } u;
3620         u.i = qemu_get_betl(f);
3621         env->fpr[i] = u.f;
3622     }
3623
3624     qemu_get_betls(f, &env->pc);
3625     qemu_get_betls(f, &env->npc);
3626     qemu_get_betls(f, &env->y);
3627     tmp = qemu_get_be32(f);
3628     env->cwp = 0; /* needed to ensure that the wrapping registers are
3629                      correctly updated */
3630     PUT_PSR(env, tmp);
3631     qemu_get_betls(f, &env->fsr);
3632     qemu_get_betls(f, &env->tbr);
3633 #ifndef TARGET_SPARC64
3634     qemu_get_be32s(f, &env->wim);
3635     /* MMU */
3636     for(i = 0; i < 16; i++)
3637         qemu_get_be32s(f, &env->mmuregs[i]);
3638 #endif
3639     tlb_flush(env, 1);
3640     return 0;
3641 }
3642
3643 #elif defined(TARGET_ARM)
3644
3645 /* ??? Need to implement these.  */
3646 void cpu_save(QEMUFile *f, void *opaque)
3647 {
3648 }
3649
3650 int cpu_load(QEMUFile *f, void *opaque, int version_id)
3651 {
3652     return 0;
3653 }
3654
3655 #else
3656
3657 #warning No CPU save/restore functions
3658
3659 #endif
3660
3661 /***********************************************************/
3662 /* ram save/restore */
3663
3664 /* we just avoid storing empty pages */
3665 static void ram_put_page(QEMUFile *f, const uint8_t *buf, int len)
3666 {
3667     int i, v;
3668
3669     v = buf[0];
3670     for(i = 1; i < len; i++) {
3671         if (buf[i] != v)
3672             goto normal_save;
3673     }
3674     qemu_put_byte(f, 1);
3675     qemu_put_byte(f, v);
3676     return;
3677  normal_save:
3678     qemu_put_byte(f, 0); 
3679     qemu_put_buffer(f, buf, len);
3680 }
3681
3682 static int ram_get_page(QEMUFile *f, uint8_t *buf, int len)
3683 {
3684     int v;
3685
3686     v = qemu_get_byte(f);
3687     switch(v) {
3688     case 0:
3689         if (qemu_get_buffer(f, buf, len) != len)
3690             return -EIO;
3691         break;
3692     case 1:
3693         v = qemu_get_byte(f);
3694         memset(buf, v, len);
3695         break;
3696     default:
3697         return -EINVAL;
3698     }
3699     return 0;
3700 }
3701
3702 static void ram_save(QEMUFile *f, void *opaque)
3703 {
3704     int i;
3705     qemu_put_be32(f, phys_ram_size);
3706     for(i = 0; i < phys_ram_size; i+= TARGET_PAGE_SIZE) {
3707         ram_put_page(f, phys_ram_base + i, TARGET_PAGE_SIZE);
3708     }
3709 }
3710
3711 static int ram_load(QEMUFile *f, void *opaque, int version_id)
3712 {
3713     int i, ret;
3714
3715     if (version_id != 1)
3716         return -EINVAL;
3717     if (qemu_get_be32(f) != phys_ram_size)
3718         return -EINVAL;
3719     for(i = 0; i < phys_ram_size; i+= TARGET_PAGE_SIZE) {
3720         ret = ram_get_page(f, phys_ram_base + i, TARGET_PAGE_SIZE);
3721         if (ret)
3722             return ret;
3723     }
3724     return 0;
3725 }
3726
3727 /***********************************************************/
3728 /* machine registration */
3729
3730 QEMUMachine *first_machine = NULL;
3731
3732 int qemu_register_machine(QEMUMachine *m)
3733 {
3734     QEMUMachine **pm;
3735     pm = &first_machine;
3736     while (*pm != NULL)
3737         pm = &(*pm)->next;
3738     m->next = NULL;
3739     *pm = m;
3740     return 0;
3741 }
3742
3743 QEMUMachine *find_machine(const char *name)
3744 {
3745     QEMUMachine *m;
3746
3747     for(m = first_machine; m != NULL; m = m->next) {
3748         if (!strcmp(m->name, name))
3749             return m;
3750     }
3751     return NULL;
3752 }
3753
3754 /***********************************************************/
3755 /* main execution loop */
3756
3757 void gui_update(void *opaque)
3758 {
3759     display_state.dpy_refresh(&display_state);
3760     qemu_mod_timer(gui_timer, GUI_REFRESH_INTERVAL + qemu_get_clock(rt_clock));
3761 }
3762
3763 struct vm_change_state_entry {
3764     VMChangeStateHandler *cb;
3765     void *opaque;
3766     LIST_ENTRY (vm_change_state_entry) entries;
3767 };
3768
3769 static LIST_HEAD(vm_change_state_head, vm_change_state_entry) vm_change_state_head;
3770
3771 VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
3772                                                      void *opaque)
3773 {
3774     VMChangeStateEntry *e;
3775
3776     e = qemu_mallocz(sizeof (*e));
3777     if (!e)
3778         return NULL;
3779
3780     e->cb = cb;
3781     e->opaque = opaque;
3782     LIST_INSERT_HEAD(&vm_change_state_head, e, entries);
3783     return e;
3784 }
3785
3786 void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
3787 {
3788     LIST_REMOVE (e, entries);
3789     qemu_free (e);
3790 }
3791
3792 static void vm_state_notify(int running)
3793 {
3794     VMChangeStateEntry *e;
3795
3796     for (e = vm_change_state_head.lh_first; e; e = e->entries.le_next) {
3797         e->cb(e->opaque, running);
3798     }
3799 }
3800
3801 /* XXX: support several handlers */
3802 static VMStopHandler *vm_stop_cb;
3803 static void *vm_stop_opaque;
3804
3805 int qemu_add_vm_stop_handler(VMStopHandler *cb, void *opaque)
3806 {
3807     vm_stop_cb = cb;
3808     vm_stop_opaque = opaque;
3809     return 0;
3810 }
3811
3812 void qemu_del_vm_stop_handler(VMStopHandler *cb, void *opaque)
3813 {
3814     vm_stop_cb = NULL;
3815 }
3816
3817 void vm_start(void)
3818 {
3819     if (!vm_running) {
3820         cpu_enable_ticks();
3821         vm_running = 1;
3822         vm_state_notify(1);
3823     }
3824 }
3825
3826 void vm_stop(int reason) 
3827 {
3828     if (vm_running) {
3829         cpu_disable_ticks();
3830         vm_running = 0;
3831         if (reason != 0) {
3832             if (vm_stop_cb) {
3833                 vm_stop_cb(vm_stop_opaque, reason);
3834             }
3835         }
3836         vm_state_notify(0);
3837     }
3838 }
3839
3840 /* reset/shutdown handler */
3841
3842 typedef struct QEMUResetEntry {
3843     QEMUResetHandler *func;
3844     void *opaque;
3845     struct QEMUResetEntry *next;
3846 } QEMUResetEntry;
3847
3848 static QEMUResetEntry *first_reset_entry;
3849 static int reset_requested;
3850 static int shutdown_requested;
3851 static int powerdown_requested;
3852
3853 void qemu_register_reset(QEMUResetHandler *func, void *opaque)
3854 {
3855     QEMUResetEntry **pre, *re;
3856
3857     pre = &first_reset_entry;
3858     while (*pre != NULL)
3859         pre = &(*pre)->next;
3860     re = qemu_mallocz(sizeof(QEMUResetEntry));
3861     re->func = func;
3862     re->opaque = opaque;
3863     re->next = NULL;
3864     *pre = re;
3865 }
3866
3867 void qemu_system_reset(void)
3868 {
3869     QEMUResetEntry *re;
3870
3871     /* reset all devices */
3872     for(re = first_reset_entry; re != NULL; re = re->next) {
3873         re->func(re->opaque);
3874     }
3875 }
3876
3877 void qemu_system_reset_request(void)
3878 {
3879     reset_requested = 1;
3880     if (cpu_single_env)
3881         cpu_interrupt(cpu_single_env, CPU_INTERRUPT_EXIT);
3882 }
3883
3884 void qemu_system_shutdown_request(void)
3885 {
3886     shutdown_requested = 1;
3887     if (cpu_single_env)
3888         cpu_interrupt(cpu_single_env, CPU_INTERRUPT_EXIT);
3889 }
3890
3891 void qemu_system_powerdown_request(void)
3892 {
3893     powerdown_requested = 1;
3894     if (cpu_single_env)
3895         cpu_interrupt(cpu_single_env, CPU_INTERRUPT_EXIT);
3896 }
3897
3898 void main_loop_wait(int timeout)
3899 {
3900     IOHandlerRecord *ioh, *ioh_next;
3901     fd_set rfds, wfds;
3902     int ret, nfds;
3903     struct timeval tv;
3904
3905 #ifdef _WIN32
3906     /* XXX: see how to merge it with the select. The constraint is
3907        that the select must be interrupted by the timer */
3908     if (timeout > 0)
3909         Sleep(timeout);
3910 #endif
3911     /* poll any events */
3912     /* XXX: separate device handlers from system ones */
3913     nfds = -1;
3914     FD_ZERO(&rfds);
3915     FD_ZERO(&wfds);
3916     for(ioh = first_io_handler; ioh != NULL; ioh = ioh->next) {
3917         if (ioh->fd_read &&
3918             (!ioh->fd_read_poll ||
3919              ioh->fd_read_poll(ioh->opaque) != 0)) {
3920             FD_SET(ioh->fd, &rfds);
3921             if (ioh->fd > nfds)
3922                 nfds = ioh->fd;
3923         }
3924         if (ioh->fd_write) {
3925             FD_SET(ioh->fd, &wfds);
3926             if (ioh->fd > nfds)
3927                 nfds = ioh->fd;
3928         }
3929     }
3930     
3931     tv.tv_sec = 0;
3932 #ifdef _WIN32
3933     tv.tv_usec = 0;
3934 #else
3935     tv.tv_usec = timeout * 1000;
3936 #endif
3937     ret = select(nfds + 1, &rfds, &wfds, NULL, &tv);
3938     if (ret > 0) {
3939         /* XXX: better handling of removal */
3940         for(ioh = first_io_handler; ioh != NULL; ioh = ioh_next) {
3941             ioh_next = ioh->next;
3942             if (FD_ISSET(ioh->fd, &rfds)) {
3943                 ioh->fd_read(ioh->opaque);
3944             }
3945             if (FD_ISSET(ioh->fd, &wfds)) {
3946                 ioh->fd_write(ioh->opaque);
3947             }
3948         }
3949     }
3950
3951 #if defined(CONFIG_SLIRP)
3952     /* XXX: merge with the previous select() */
3953     if (slirp_inited) {
3954         fd_set rfds, wfds, xfds;
3955         int nfds;
3956         struct timeval tv;
3957         
3958         nfds = -1;
3959         FD_ZERO(&rfds);
3960         FD_ZERO(&wfds);
3961         FD_ZERO(&xfds);
3962         slirp_select_fill(&nfds, &rfds, &wfds, &xfds);
3963         tv.tv_sec = 0;
3964         tv.tv_usec = 0;
3965         ret = select(nfds + 1, &rfds, &wfds, &xfds, &tv);
3966         if (ret >= 0) {
3967             slirp_select_poll(&rfds, &wfds, &xfds);
3968         }
3969     }
3970 #endif
3971
3972     if (vm_running) {
3973         qemu_run_timers(&active_timers[QEMU_TIMER_VIRTUAL], 
3974                         qemu_get_clock(vm_clock));
3975         /* run dma transfers, if any */
3976         DMA_run();
3977     }
3978     
3979     /* real time timers */
3980     qemu_run_timers(&active_timers[QEMU_TIMER_REALTIME], 
3981                     qemu_get_clock(rt_clock));
3982 }
3983
3984 static CPUState *cur_cpu;
3985
3986 int main_loop(void)
3987 {
3988     int ret, timeout;
3989     CPUState *env;
3990
3991     cur_cpu = first_cpu;
3992     for(;;) {
3993         if (vm_running) {
3994
3995             env = cur_cpu;
3996             for(;;) {
3997                 /* get next cpu */
3998                 env = env->next_cpu;
3999                 if (!env)
4000                     env = first_cpu;
4001                 ret = cpu_exec(env);
4002                 if (ret != EXCP_HALTED)
4003                     break;
4004                 /* all CPUs are halted ? */
4005                 if (env == cur_cpu) {
4006                     ret = EXCP_HLT;
4007                     break;
4008                 }
4009             }
4010             cur_cpu = env;
4011
4012             if (shutdown_requested) {
4013                 ret = EXCP_INTERRUPT;
4014                 break;
4015             }
4016             if (reset_requested) {
4017                 reset_requested = 0;
4018                 qemu_system_reset();
4019                 ret = EXCP_INTERRUPT;
4020             }
4021             if (powerdown_requested) {
4022                 powerdown_requested = 0;
4023                 qemu_system_powerdown();
4024                 ret = EXCP_INTERRUPT;
4025             }
4026             if (ret == EXCP_DEBUG) {
4027                 vm_stop(EXCP_DEBUG);
4028             }
4029             /* if hlt instruction, we wait until the next IRQ */
4030             /* XXX: use timeout computed from timers */
4031             if (ret == EXCP_HLT)
4032                 timeout = 10;
4033             else
4034                 timeout = 0;
4035         } else {
4036             timeout = 10;
4037         }
4038         main_loop_wait(timeout);
4039     }
4040     cpu_disable_ticks();
4041     return ret;
4042 }
4043
4044 void help(void)
4045 {
4046     printf("QEMU PC emulator version " QEMU_VERSION ", Copyright (c) 2003-2005 Fabrice Bellard\n"
4047            "usage: %s [options] [disk_image]\n"
4048            "\n"
4049            "'disk_image' is a raw hard image image for IDE hard disk 0\n"
4050            "\n"
4051            "Standard options:\n"
4052            "-M machine      select emulated machine (-M ? for list)\n"
4053            "-fda/-fdb file  use 'file' as floppy disk 0/1 image\n"
4054            "-hda/-hdb file  use 'file' as IDE hard disk 0/1 image\n"
4055            "-hdc/-hdd file  use 'file' as IDE hard disk 2/3 image\n"
4056            "-cdrom file     use 'file' as IDE cdrom image (cdrom is ide1 master)\n"
4057            "-boot [a|c|d]   boot on floppy (a), hard disk (c) or CD-ROM (d)\n"
4058            "-snapshot       write to temporary files instead of disk image files\n"
4059            "-m megs         set virtual RAM size to megs MB [default=%d]\n"
4060            "-smp n          set the number of CPUs to 'n' [default=1]\n"
4061            "-nographic      disable graphical output and redirect serial I/Os to console\n"
4062 #ifndef _WIN32
4063            "-k language     use keyboard layout (for example \"fr\" for French)\n"
4064 #endif
4065 #ifdef HAS_AUDIO
4066            "-audio-help     print list of audio drivers and their options\n"
4067            "-soundhw c1,... enable audio support\n"
4068            "                and only specified sound cards (comma separated list)\n"
4069            "                use -soundhw ? to get the list of supported cards\n"
4070            "                use -soundhw all to enable all of them\n"
4071 #endif
4072            "-localtime      set the real time clock to local time [default=utc]\n"
4073            "-full-screen    start in full screen\n"
4074 #ifdef TARGET_I386
4075            "-win2k-hack     use it when installing Windows 2000 to avoid a disk full bug\n"
4076 #endif
4077            "-usb            enable the USB driver (will be the default soon)\n"
4078            "-usbdevice name add the host or guest USB device 'name'\n"
4079 #if defined(TARGET_PPC) || defined(TARGET_SPARC)
4080            "-g WxH[xDEPTH]  Set the initial graphical resolution and depth\n"
4081 #endif
4082            "\n"
4083            "Network options:\n"
4084            "-net nic[,vlan=n][,macaddr=addr]\n"
4085            "                create a new Network Interface Card and connect it to VLAN 'n'\n"
4086 #ifdef CONFIG_SLIRP
4087            "-net user[,vlan=n]\n"
4088            "                connect the user mode network stack to VLAN 'n'\n"
4089 #endif
4090 #ifndef _WIN32
4091            "-net tap[,vlan=n][,fd=h][,ifname=name][,script=file]\n"
4092            "                connect the host TAP network interface to VLAN 'n' and use\n"
4093            "                the network script 'file' (default=%s);\n"
4094            "                use 'fd=h' to connect to an already opened TAP interface\n"
4095            "-net socket[,vlan=n][,fd=h][,listen=[host]:port][,connect=host:port]\n"
4096            "                connect the vlan 'n' to another VLAN using a socket connection\n"
4097            "-net socket[,vlan=n][,fd=h][,mcast=maddr:port]\n"
4098            "                connect the vlan 'n' to multicast maddr and port\n"
4099 #endif
4100            "-net none       use it alone to have zero network devices; if no -net option\n"
4101            "                is provided, the default is '-net nic -net user'\n"
4102            "\n"
4103 #ifdef CONFIG_SLIRP
4104            "-tftp prefix    allow tftp access to files starting with prefix [-net user]\n"
4105 #ifndef _WIN32
4106            "-smb dir        allow SMB access to files in 'dir' [-net user]\n"
4107 #endif
4108            "-redir [tcp|udp]:host-port:[guest-host]:guest-port\n"
4109            "                redirect TCP or UDP connections from host to guest [-net user]\n"
4110 #endif
4111            "\n"
4112            "Linux boot specific:\n"
4113            "-kernel bzImage use 'bzImage' as kernel image\n"
4114            "-append cmdline use 'cmdline' as kernel command line\n"
4115            "-initrd file    use 'file' as initial ram disk\n"
4116            "\n"
4117            "Debug/Expert options:\n"
4118            "-monitor dev    redirect the monitor to char device 'dev'\n"
4119            "-serial dev     redirect the serial port to char device 'dev'\n"
4120            "-parallel dev   redirect the parallel port to char device 'dev'\n"
4121            "-pidfile file   Write PID to 'file'\n"
4122            "-S              freeze CPU at startup (use 'c' to start execution)\n"
4123            "-s              wait gdb connection to port %d\n"
4124            "-p port         change gdb connection port\n"
4125            "-d item1,...    output log to %s (use -d ? for a list of log items)\n"
4126            "-hdachs c,h,s[,t]  force hard disk 0 physical geometry and the optional BIOS\n"
4127            "                translation (t=none or lba) (usually qemu can guess them)\n"
4128            "-L path         set the directory for the BIOS and VGA BIOS\n"
4129 #ifdef USE_KQEMU
4130            "-no-kqemu       disable KQEMU kernel module usage\n"
4131 #endif
4132 #ifdef USE_CODE_COPY
4133            "-no-code-copy   disable code copy acceleration\n"
4134 #endif
4135 #ifdef TARGET_I386
4136            "-std-vga        simulate a standard VGA card with VESA Bochs Extensions\n"
4137            "                (default is CL-GD5446 PCI VGA)\n"
4138 #endif
4139            "-loadvm file    start right away with a saved state (loadvm in monitor)\n"
4140            "\n"
4141            "During emulation, the following keys are useful:\n"
4142            "ctrl-alt-f      toggle full screen\n"
4143            "ctrl-alt-n      switch to virtual console 'n'\n"
4144            "ctrl-alt        toggle mouse and keyboard grab\n"
4145            "\n"
4146            "When using -nographic, press 'ctrl-a h' to get some help.\n"
4147            ,
4148 #ifdef CONFIG_SOFTMMU
4149            "qemu",
4150 #else
4151            "qemu-fast",
4152 #endif
4153            DEFAULT_RAM_SIZE,
4154 #ifndef _WIN32
4155            DEFAULT_NETWORK_SCRIPT,
4156 #endif
4157            DEFAULT_GDBSTUB_PORT,
4158            "/tmp/qemu.log");
4159 #ifndef CONFIG_SOFTMMU
4160     printf("\n"
4161            "NOTE: this version of QEMU is faster but it needs slightly patched OSes to\n"
4162            "work. Please use the 'qemu' executable to have a more accurate (but slower)\n"
4163            "PC emulation.\n");
4164 #endif
4165     exit(1);
4166 }
4167
4168 #define HAS_ARG 0x0001
4169
4170 enum {
4171     QEMU_OPTION_h,
4172
4173     QEMU_OPTION_M,
4174     QEMU_OPTION_fda,
4175     QEMU_OPTION_fdb,
4176     QEMU_OPTION_hda,
4177     QEMU_OPTION_hdb,
4178     QEMU_OPTION_hdc,
4179     QEMU_OPTION_hdd,
4180     QEMU_OPTION_cdrom,
4181     QEMU_OPTION_boot,
4182     QEMU_OPTION_snapshot,
4183     QEMU_OPTION_m,
4184     QEMU_OPTION_nographic,
4185 #ifdef HAS_AUDIO
4186     QEMU_OPTION_audio_help,
4187     QEMU_OPTION_soundhw,
4188 #endif
4189
4190     QEMU_OPTION_net,
4191     QEMU_OPTION_tftp,
4192     QEMU_OPTION_smb,
4193     QEMU_OPTION_redir,
4194
4195     QEMU_OPTION_kernel,
4196     QEMU_OPTION_append,
4197     QEMU_OPTION_initrd,
4198
4199     QEMU_OPTION_S,
4200     QEMU_OPTION_s,
4201     QEMU_OPTION_p,
4202     QEMU_OPTION_d,
4203     QEMU_OPTION_hdachs,
4204     QEMU_OPTION_L,
4205     QEMU_OPTION_no_code_copy,
4206     QEMU_OPTION_k,
4207     QEMU_OPTION_localtime,
4208     QEMU_OPTION_cirrusvga,
4209     QEMU_OPTION_g,
4210     QEMU_OPTION_std_vga,
4211     QEMU_OPTION_monitor,
4212     QEMU_OPTION_serial,
4213     QEMU_OPTION_parallel,
4214     QEMU_OPTION_loadvm,
4215     QEMU_OPTION_full_screen,
4216     QEMU_OPTION_pidfile,
4217     QEMU_OPTION_no_kqemu,
4218     QEMU_OPTION_win2k_hack,
4219     QEMU_OPTION_usb,
4220     QEMU_OPTION_usbdevice,
4221     QEMU_OPTION_smp,
4222 };
4223
4224 typedef struct QEMUOption {
4225     const char *name;
4226     int flags;
4227     int index;
4228 } QEMUOption;
4229
4230 const QEMUOption qemu_options[] = {
4231     { "h", 0, QEMU_OPTION_h },
4232
4233     { "M", HAS_ARG, QEMU_OPTION_M },
4234     { "fda", HAS_ARG, QEMU_OPTION_fda },
4235     { "fdb", HAS_ARG, QEMU_OPTION_fdb },
4236     { "hda", HAS_ARG, QEMU_OPTION_hda },
4237     { "hdb", HAS_ARG, QEMU_OPTION_hdb },
4238     { "hdc", HAS_ARG, QEMU_OPTION_hdc },
4239     { "hdd", HAS_ARG, QEMU_OPTION_hdd },
4240     { "cdrom", HAS_ARG, QEMU_OPTION_cdrom },
4241     { "boot", HAS_ARG, QEMU_OPTION_boot },
4242     { "snapshot", 0, QEMU_OPTION_snapshot },
4243     { "m", HAS_ARG, QEMU_OPTION_m },
4244     { "nographic", 0, QEMU_OPTION_nographic },
4245     { "k", HAS_ARG, QEMU_OPTION_k },
4246 #ifdef HAS_AUDIO
4247     { "audio-help", 0, QEMU_OPTION_audio_help },
4248     { "soundhw", HAS_ARG, QEMU_OPTION_soundhw },
4249 #endif
4250
4251     { "net", HAS_ARG, QEMU_OPTION_net},
4252 #ifdef CONFIG_SLIRP
4253     { "tftp", HAS_ARG, QEMU_OPTION_tftp },
4254 #ifndef _WIN32
4255     { "smb", HAS_ARG, QEMU_OPTION_smb },
4256 #endif
4257     { "redir", HAS_ARG, QEMU_OPTION_redir },
4258 #endif
4259
4260     { "kernel", HAS_ARG, QEMU_OPTION_kernel },
4261     { "append", HAS_ARG, QEMU_OPTION_append },
4262     { "initrd", HAS_ARG, QEMU_OPTION_initrd },
4263
4264     { "S", 0, QEMU_OPTION_S },
4265     { "s", 0, QEMU_OPTION_s },
4266     { "p", HAS_ARG, QEMU_OPTION_p },
4267     { "d", HAS_ARG, QEMU_OPTION_d },
4268     { "hdachs", HAS_ARG, QEMU_OPTION_hdachs },
4269     { "L", HAS_ARG, QEMU_OPTION_L },
4270     { "no-code-copy", 0, QEMU_OPTION_no_code_copy },
4271 #ifdef USE_KQEMU
4272     { "no-kqemu", 0, QEMU_OPTION_no_kqemu },
4273 #endif
4274 #if defined(TARGET_PPC) || defined(TARGET_SPARC)
4275     { "g", 1, QEMU_OPTION_g },
4276 #endif
4277     { "localtime", 0, QEMU_OPTION_localtime },
4278     { "std-vga", 0, QEMU_OPTION_std_vga },
4279     { "monitor", 1, QEMU_OPTION_monitor },
4280     { "serial", 1, QEMU_OPTION_serial },
4281     { "parallel", 1, QEMU_OPTION_parallel },
4282     { "loadvm", HAS_ARG, QEMU_OPTION_loadvm },
4283     { "full-screen", 0, QEMU_OPTION_full_screen },
4284     { "pidfile", HAS_ARG, QEMU_OPTION_pidfile },
4285     { "win2k-hack", 0, QEMU_OPTION_win2k_hack },
4286     { "usbdevice", HAS_ARG, QEMU_OPTION_usbdevice },
4287     { "smp", HAS_ARG, QEMU_OPTION_smp },
4288     
4289     /* temporary options */
4290     { "usb", 0, QEMU_OPTION_usb },
4291     { "cirrusvga", 0, QEMU_OPTION_cirrusvga },
4292     { NULL },
4293 };
4294
4295 #if defined (TARGET_I386) && defined(USE_CODE_COPY)
4296
4297 /* this stack is only used during signal handling */
4298 #define SIGNAL_STACK_SIZE 32768
4299
4300 static uint8_t *signal_stack;
4301
4302 #endif
4303
4304 /* password input */
4305
4306 static BlockDriverState *get_bdrv(int index)
4307 {
4308     BlockDriverState *bs;
4309
4310     if (index < 4) {
4311         bs = bs_table[index];
4312     } else if (index < 6) {
4313         bs = fd_table[index - 4];
4314     } else {
4315         bs = NULL;
4316     }
4317     return bs;
4318 }
4319
4320 static void read_passwords(void)
4321 {
4322     BlockDriverState *bs;
4323     int i, j;
4324     char password[256];
4325
4326     for(i = 0; i < 6; i++) {
4327         bs = get_bdrv(i);
4328         if (bs && bdrv_is_encrypted(bs)) {
4329             term_printf("%s is encrypted.\n", bdrv_get_device_name(bs));
4330             for(j = 0; j < 3; j++) {
4331                 monitor_readline("Password: ", 
4332                                  1, password, sizeof(password));
4333                 if (bdrv_set_key(bs, password) == 0)
4334                     break;
4335                 term_printf("invalid password\n");
4336             }
4337         }
4338     }
4339 }
4340
4341 /* XXX: currently we cannot use simultaneously different CPUs */
4342 void register_machines(void)
4343 {
4344 #if defined(TARGET_I386)
4345     qemu_register_machine(&pc_machine);
4346     qemu_register_machine(&isapc_machine);
4347 #elif defined(TARGET_PPC)
4348     qemu_register_machine(&heathrow_machine);
4349     qemu_register_machine(&core99_machine);
4350     qemu_register_machine(&prep_machine);
4351 #elif defined(TARGET_MIPS)
4352     qemu_register_machine(&mips_machine);
4353 #elif defined(TARGET_SPARC)
4354 #ifdef TARGET_SPARC64
4355     qemu_register_machine(&sun4u_machine);
4356 #else
4357     qemu_register_machine(&sun4m_machine);
4358 #endif
4359 #elif defined(TARGET_ARM)
4360     qemu_register_machine(&integratorcp_machine);
4361 #else
4362 #error unsupported CPU
4363 #endif
4364 }
4365
4366 #ifdef HAS_AUDIO
4367 struct soundhw soundhw[] = {
4368     {
4369         "sb16",
4370         "Creative Sound Blaster 16",
4371         0,
4372         1,
4373         { .init_isa = SB16_init }
4374     },
4375
4376 #ifdef CONFIG_ADLIB
4377     {
4378         "adlib",
4379 #ifdef HAS_YMF262
4380         "Yamaha YMF262 (OPL3)",
4381 #else
4382         "Yamaha YM3812 (OPL2)",
4383 #endif
4384         0,
4385         1,
4386         { .init_isa = Adlib_init }
4387     },
4388 #endif
4389
4390 #ifdef CONFIG_GUS
4391     {
4392         "gus",
4393         "Gravis Ultrasound GF1",
4394         0,
4395         1,
4396         { .init_isa = GUS_init }
4397     },
4398 #endif
4399
4400     {
4401         "es1370",
4402         "ENSONIQ AudioPCI ES1370",
4403         0,
4404         0,
4405         { .init_pci = es1370_init }
4406     },
4407
4408     { NULL, NULL, 0, 0, { NULL } }
4409 };
4410
4411 static void select_soundhw (const char *optarg)
4412 {
4413     struct soundhw *c;
4414
4415     if (*optarg == '?') {
4416     show_valid_cards:
4417
4418         printf ("Valid sound card names (comma separated):\n");
4419         for (c = soundhw; c->name; ++c) {
4420             printf ("%-11s %s\n", c->name, c->descr);
4421         }
4422         printf ("\n-soundhw all will enable all of the above\n");
4423         exit (*optarg != '?');
4424     }
4425     else {
4426         size_t l;
4427         const char *p;
4428         char *e;
4429         int bad_card = 0;
4430
4431         if (!strcmp (optarg, "all")) {
4432             for (c = soundhw; c->name; ++c) {
4433                 c->enabled = 1;
4434             }
4435             return;
4436         }
4437
4438         p = optarg;
4439         while (*p) {
4440             e = strchr (p, ',');
4441             l = !e ? strlen (p) : (size_t) (e - p);
4442
4443             for (c = soundhw; c->name; ++c) {
4444                 if (!strncmp (c->name, p, l)) {
4445                     c->enabled = 1;
4446                     break;
4447                 }
4448             }
4449
4450             if (!c->name) {
4451                 if (l > 80) {
4452                     fprintf (stderr,
4453                              "Unknown sound card name (too big to show)\n");
4454                 }
4455                 else {
4456                     fprintf (stderr, "Unknown sound card name `%.*s'\n",
4457                              (int) l, p);
4458                 }
4459                 bad_card = 1;
4460             }
4461             p += l + (e != NULL);
4462         }
4463
4464         if (bad_card)
4465             goto show_valid_cards;
4466     }
4467 }
4468 #endif
4469
4470 #define MAX_NET_CLIENTS 32
4471
4472 int main(int argc, char **argv)
4473 {
4474 #ifdef CONFIG_GDBSTUB
4475     int use_gdbstub, gdbstub_port;
4476 #endif
4477     int i, cdrom_index;
4478     int snapshot, linux_boot;
4479     const char *initrd_filename;
4480     const char *hd_filename[MAX_DISKS], *fd_filename[MAX_FD];
4481     const char *kernel_filename, *kernel_cmdline;
4482     DisplayState *ds = &display_state;
4483     int cyls, heads, secs, translation;
4484     int start_emulation = 1;
4485     char net_clients[MAX_NET_CLIENTS][256];
4486     int nb_net_clients;
4487     int optind;
4488     const char *r, *optarg;
4489     CharDriverState *monitor_hd;
4490     char monitor_device[128];
4491     char serial_devices[MAX_SERIAL_PORTS][128];
4492     int serial_device_index;
4493     char parallel_devices[MAX_PARALLEL_PORTS][128];
4494     int parallel_device_index;
4495     const char *loadvm = NULL;
4496     QEMUMachine *machine;
4497     char usb_devices[MAX_VM_USB_PORTS][128];
4498     int usb_devices_index;
4499
4500     LIST_INIT (&vm_change_state_head);
4501 #if !defined(CONFIG_SOFTMMU)
4502     /* we never want that malloc() uses mmap() */
4503     mallopt(M_MMAP_THRESHOLD, 4096 * 1024);
4504 #endif
4505     register_machines();
4506     machine = first_machine;
4507     initrd_filename = NULL;
4508     for(i = 0; i < MAX_FD; i++)
4509         fd_filename[i] = NULL;
4510     for(i = 0; i < MAX_DISKS; i++)
4511         hd_filename[i] = NULL;
4512     ram_size = DEFAULT_RAM_SIZE * 1024 * 1024;
4513     vga_ram_size = VGA_RAM_SIZE;
4514     bios_size = BIOS_SIZE;
4515 #ifdef CONFIG_GDBSTUB
4516     use_gdbstub = 0;
4517     gdbstub_port = DEFAULT_GDBSTUB_PORT;
4518 #endif
4519     snapshot = 0;
4520     nographic = 0;
4521     kernel_filename = NULL;
4522     kernel_cmdline = "";
4523 #ifdef TARGET_PPC
4524     cdrom_index = 1;
4525 #else
4526     cdrom_index = 2;
4527 #endif
4528     cyls = heads = secs = 0;
4529     translation = BIOS_ATA_TRANSLATION_AUTO;
4530     pstrcpy(monitor_device, sizeof(monitor_device), "vc");
4531
4532     pstrcpy(serial_devices[0], sizeof(serial_devices[0]), "vc");
4533     for(i = 1; i < MAX_SERIAL_PORTS; i++)
4534         serial_devices[i][0] = '\0';
4535     serial_device_index = 0;
4536     
4537     pstrcpy(parallel_devices[0], sizeof(parallel_devices[0]), "vc");
4538     for(i = 1; i < MAX_PARALLEL_PORTS; i++)
4539         parallel_devices[i][0] = '\0';
4540     parallel_device_index = 0;
4541     
4542     usb_devices_index = 0;
4543     
4544     nb_net_clients = 0;
4545
4546     nb_nics = 0;
4547     /* default mac address of the first network interface */
4548     
4549     optind = 1;
4550     for(;;) {
4551         if (optind >= argc)
4552             break;
4553         r = argv[optind];
4554         if (r[0] != '-') {
4555             hd_filename[0] = argv[optind++];
4556         } else {
4557             const QEMUOption *popt;
4558
4559             optind++;
4560             popt = qemu_options;
4561             for(;;) {
4562                 if (!popt->name) {
4563                     fprintf(stderr, "%s: invalid option -- '%s'\n", 
4564                             argv[0], r);
4565                     exit(1);
4566                 }
4567                 if (!strcmp(popt->name, r + 1))
4568                     break;
4569                 popt++;
4570             }
4571             if (popt->flags & HAS_ARG) {
4572                 if (optind >= argc) {
4573                     fprintf(stderr, "%s: option '%s' requires an argument\n",
4574                             argv[0], r);
4575                     exit(1);
4576                 }
4577                 optarg = argv[optind++];
4578             } else {
4579                 optarg = NULL;
4580             }
4581
4582             switch(popt->index) {
4583             case QEMU_OPTION_M:
4584                 machine = find_machine(optarg);
4585                 if (!machine) {
4586                     QEMUMachine *m;
4587                     printf("Supported machines are:\n");
4588                     for(m = first_machine; m != NULL; m = m->next) {
4589                         printf("%-10s %s%s\n",
4590                                m->name, m->desc, 
4591                                m == first_machine ? " (default)" : "");
4592                     }
4593                     exit(1);
4594                 }
4595                 break;
4596             case QEMU_OPTION_initrd:
4597                 initrd_filename = optarg;
4598                 break;
4599             case QEMU_OPTION_hda:
4600             case QEMU_OPTION_hdb:
4601             case QEMU_OPTION_hdc:
4602             case QEMU_OPTION_hdd:
4603                 {
4604                     int hd_index;
4605                     hd_index = popt->index - QEMU_OPTION_hda;
4606                     hd_filename[hd_index] = optarg;
4607                     if (hd_index == cdrom_index)
4608                         cdrom_index = -1;
4609                 }
4610                 break;
4611             case QEMU_OPTION_snapshot:
4612                 snapshot = 1;
4613                 break;
4614             case QEMU_OPTION_hdachs:
4615                 {
4616                     const char *p;
4617                     p = optarg;
4618                     cyls = strtol(p, (char **)&p, 0);
4619                     if (cyls < 1 || cyls > 16383)
4620                         goto chs_fail;
4621                     if (*p != ',')
4622                         goto chs_fail;
4623                     p++;
4624                     heads = strtol(p, (char **)&p, 0);
4625                     if (heads < 1 || heads > 16)
4626                         goto chs_fail;
4627                     if (*p != ',')
4628                         goto chs_fail;
4629                     p++;
4630                     secs = strtol(p, (char **)&p, 0);
4631                     if (secs < 1 || secs > 63)
4632                         goto chs_fail;
4633                     if (*p == ',') {
4634                         p++;
4635                         if (!strcmp(p, "none"))
4636                             translation = BIOS_ATA_TRANSLATION_NONE;
4637                         else if (!strcmp(p, "lba"))
4638                             translation = BIOS_ATA_TRANSLATION_LBA;
4639                         else if (!strcmp(p, "auto"))
4640                             translation = BIOS_ATA_TRANSLATION_AUTO;
4641                         else
4642                             goto chs_fail;
4643                     } else if (*p != '\0') {
4644                     chs_fail:
4645                         fprintf(stderr, "qemu: invalid physical CHS format\n");
4646                         exit(1);
4647                     }
4648                 }
4649                 break;
4650             case QEMU_OPTION_nographic:
4651                 pstrcpy(monitor_device, sizeof(monitor_device), "stdio");
4652                 pstrcpy(serial_devices[0], sizeof(serial_devices[0]), "stdio");
4653                 nographic = 1;
4654                 break;
4655             case QEMU_OPTION_kernel:
4656                 kernel_filename = optarg;
4657                 break;
4658             case QEMU_OPTION_append:
4659                 kernel_cmdline = optarg;
4660                 break;
4661             case QEMU_OPTION_cdrom:
4662                 if (cdrom_index >= 0) {
4663                     hd_filename[cdrom_index] = optarg;
4664                 }
4665                 break;
4666             case QEMU_OPTION_boot:
4667                 boot_device = optarg[0];
4668                 if (boot_device != 'a' && 
4669 #ifdef TARGET_SPARC
4670                     // Network boot
4671                     boot_device != 'n' &&
4672 #endif
4673                     boot_device != 'c' && boot_device != 'd') {
4674                     fprintf(stderr, "qemu: invalid boot device '%c'\n", boot_device);
4675                     exit(1);
4676                 }
4677                 break;
4678             case QEMU_OPTION_fda:
4679                 fd_filename[0] = optarg;
4680                 break;
4681             case QEMU_OPTION_fdb:
4682                 fd_filename[1] = optarg;
4683                 break;
4684             case QEMU_OPTION_no_code_copy:
4685                 code_copy_enabled = 0;
4686                 break;
4687             case QEMU_OPTION_net:
4688                 if (nb_net_clients >= MAX_NET_CLIENTS) {
4689                     fprintf(stderr, "qemu: too many network clients\n");
4690                     exit(1);
4691                 }
4692                 pstrcpy(net_clients[nb_net_clients],
4693                         sizeof(net_clients[0]),
4694                         optarg);
4695                 nb_net_clients++;
4696                 break;
4697 #ifdef CONFIG_SLIRP
4698             case QEMU_OPTION_tftp:
4699                 tftp_prefix = optarg;
4700                 break;
4701 #ifndef _WIN32
4702             case QEMU_OPTION_smb:
4703                 net_slirp_smb(optarg);
4704                 break;
4705 #endif
4706             case QEMU_OPTION_redir:
4707                 net_slirp_redir(optarg);                
4708                 break;
4709 #endif
4710 #ifdef HAS_AUDIO
4711             case QEMU_OPTION_audio_help:
4712                 AUD_help ();
4713                 exit (0);
4714                 break;
4715             case QEMU_OPTION_soundhw:
4716                 select_soundhw (optarg);
4717                 break;
4718 #endif
4719             case QEMU_OPTION_h:
4720                 help();
4721                 break;
4722             case QEMU_OPTION_m:
4723                 ram_size = atoi(optarg) * 1024 * 1024;
4724                 if (ram_size <= 0)
4725                     help();
4726                 if (ram_size > PHYS_RAM_MAX_SIZE) {
4727                     fprintf(stderr, "qemu: at most %d MB RAM can be simulated\n",
4728                             PHYS_RAM_MAX_SIZE / (1024 * 1024));
4729                     exit(1);
4730                 }
4731                 break;
4732             case QEMU_OPTION_d:
4733                 {
4734                     int mask;
4735                     CPULogItem *item;
4736                     
4737                     mask = cpu_str_to_log_mask(optarg);
4738                     if (!mask) {
4739                         printf("Log items (comma separated):\n");
4740                     for(item = cpu_log_items; item->mask != 0; item++) {
4741                         printf("%-10s %s\n", item->name, item->help);
4742                     }
4743                     exit(1);
4744                     }
4745                     cpu_set_log(mask);
4746                 }
4747                 break;
4748 #ifdef CONFIG_GDBSTUB
4749             case QEMU_OPTION_s:
4750                 use_gdbstub = 1;
4751                 break;
4752             case QEMU_OPTION_p:
4753                 gdbstub_port = atoi(optarg);
4754                 break;
4755 #endif
4756             case QEMU_OPTION_L:
4757                 bios_dir = optarg;
4758                 break;
4759             case QEMU_OPTION_S:
4760                 start_emulation = 0;
4761                 break;
4762             case QEMU_OPTION_k:
4763                 keyboard_layout = optarg;
4764                 break;
4765             case QEMU_OPTION_localtime:
4766                 rtc_utc = 0;
4767                 break;
4768             case QEMU_OPTION_cirrusvga:
4769                 cirrus_vga_enabled = 1;
4770                 break;
4771             case QEMU_OPTION_std_vga:
4772                 cirrus_vga_enabled = 0;
4773                 break;
4774             case QEMU_OPTION_g:
4775                 {
4776                     const char *p;
4777                     int w, h, depth;
4778                     p = optarg;
4779                     w = strtol(p, (char **)&p, 10);
4780                     if (w <= 0) {
4781                     graphic_error:
4782                         fprintf(stderr, "qemu: invalid resolution or depth\n");
4783                         exit(1);
4784                     }
4785                     if (*p != 'x')
4786                         goto graphic_error;
4787                     p++;
4788                     h = strtol(p, (char **)&p, 10);
4789                     if (h <= 0)
4790                         goto graphic_error;
4791                     if (*p == 'x') {
4792                         p++;
4793                         depth = strtol(p, (char **)&p, 10);
4794                         if (depth != 8 && depth != 15 && depth != 16 && 
4795                             depth != 24 && depth != 32)
4796                             goto graphic_error;
4797                     } else if (*p == '\0') {
4798                         depth = graphic_depth;
4799                     } else {
4800                         goto graphic_error;
4801                     }
4802                     
4803                     graphic_width = w;
4804                     graphic_height = h;
4805                     graphic_depth = depth;
4806                 }
4807                 break;
4808             case QEMU_OPTION_monitor:
4809                 pstrcpy(monitor_device, sizeof(monitor_device), optarg);
4810                 break;
4811             case QEMU_OPTION_serial:
4812                 if (serial_device_index >= MAX_SERIAL_PORTS) {
4813                     fprintf(stderr, "qemu: too many serial ports\n");
4814                     exit(1);
4815                 }
4816                 pstrcpy(serial_devices[serial_device_index], 
4817                         sizeof(serial_devices[0]), optarg);
4818                 serial_device_index++;
4819                 break;
4820             case QEMU_OPTION_parallel:
4821                 if (parallel_device_index >= MAX_PARALLEL_PORTS) {
4822                     fprintf(stderr, "qemu: too many parallel ports\n");
4823                     exit(1);
4824                 }
4825                 pstrcpy(parallel_devices[parallel_device_index], 
4826                         sizeof(parallel_devices[0]), optarg);
4827                 parallel_device_index++;
4828                 break;
4829             case QEMU_OPTION_loadvm:
4830                 loadvm = optarg;
4831                 break;
4832             case QEMU_OPTION_full_screen:
4833                 full_screen = 1;
4834                 break;
4835             case QEMU_OPTION_pidfile:
4836                 create_pidfile(optarg);
4837                 break;
4838 #ifdef TARGET_I386
4839             case QEMU_OPTION_win2k_hack:
4840                 win2k_install_hack = 1;
4841                 break;
4842 #endif
4843 #ifdef USE_KQEMU
4844             case QEMU_OPTION_no_kqemu:
4845                 kqemu_allowed = 0;
4846                 break;
4847 #endif
4848             case QEMU_OPTION_usb:
4849                 usb_enabled = 1;
4850                 break;
4851             case QEMU_OPTION_usbdevice:
4852                 usb_enabled = 1;
4853                 if (usb_devices_index >= MAX_VM_USB_PORTS) {
4854                     fprintf(stderr, "Too many USB devices\n");
4855                     exit(1);
4856                 }
4857                 pstrcpy(usb_devices[usb_devices_index],
4858                         sizeof(usb_devices[usb_devices_index]),
4859                         optarg);
4860                 usb_devices_index++;
4861                 break;
4862             case QEMU_OPTION_smp:
4863                 smp_cpus = atoi(optarg);
4864                 if (smp_cpus < 1 || smp_cpus > MAX_CPUS) {
4865                     fprintf(stderr, "Invalid number of CPUs\n");
4866                     exit(1);
4867                 }
4868                 break;
4869             }
4870         }
4871     }
4872
4873 #ifdef USE_KQEMU
4874     if (smp_cpus > 1)
4875         kqemu_allowed = 0;
4876 #endif
4877     linux_boot = (kernel_filename != NULL);
4878         
4879     if (!linux_boot && 
4880         hd_filename[0] == '\0' && 
4881         (cdrom_index >= 0 && hd_filename[cdrom_index] == '\0') &&
4882         fd_filename[0] == '\0')
4883         help();
4884     
4885     /* boot to cd by default if no hard disk */
4886     if (hd_filename[0] == '\0' && boot_device == 'c') {
4887         if (fd_filename[0] != '\0')
4888             boot_device = 'a';
4889         else
4890             boot_device = 'd';
4891     }
4892
4893 #if !defined(CONFIG_SOFTMMU)
4894     /* must avoid mmap() usage of glibc by setting a buffer "by hand" */
4895     {
4896         static uint8_t stdout_buf[4096];
4897         setvbuf(stdout, stdout_buf, _IOLBF, sizeof(stdout_buf));
4898     }
4899 #else
4900     setvbuf(stdout, NULL, _IOLBF, 0);
4901 #endif
4902     
4903 #ifdef _WIN32
4904     socket_init();
4905 #endif
4906
4907     /* init network clients */
4908     if (nb_net_clients == 0) {
4909         /* if no clients, we use a default config */
4910         pstrcpy(net_clients[0], sizeof(net_clients[0]),
4911                 "nic");
4912         pstrcpy(net_clients[1], sizeof(net_clients[0]),
4913                 "user");
4914         nb_net_clients = 2;
4915     }
4916
4917     for(i = 0;i < nb_net_clients; i++) {
4918         if (net_client_init(net_clients[i]) < 0)
4919             exit(1);
4920     }
4921
4922     /* init the memory */
4923     phys_ram_size = ram_size + vga_ram_size + bios_size;
4924
4925 #ifdef CONFIG_SOFTMMU
4926     phys_ram_base = qemu_vmalloc(phys_ram_size);
4927     if (!phys_ram_base) {
4928         fprintf(stderr, "Could not allocate physical memory\n");
4929         exit(1);
4930     }
4931 #else
4932     /* as we must map the same page at several addresses, we must use
4933        a fd */
4934     {
4935         const char *tmpdir;
4936
4937         tmpdir = getenv("QEMU_TMPDIR");
4938         if (!tmpdir)
4939             tmpdir = "/tmp";
4940         snprintf(phys_ram_file, sizeof(phys_ram_file), "%s/vlXXXXXX", tmpdir);
4941         if (mkstemp(phys_ram_file) < 0) {
4942             fprintf(stderr, "Could not create temporary memory file '%s'\n", 
4943                     phys_ram_file);
4944             exit(1);
4945         }
4946         phys_ram_fd = open(phys_ram_file, O_CREAT | O_TRUNC | O_RDWR, 0600);
4947         if (phys_ram_fd < 0) {
4948             fprintf(stderr, "Could not open temporary memory file '%s'\n", 
4949                     phys_ram_file);
4950             exit(1);
4951         }
4952         ftruncate(phys_ram_fd, phys_ram_size);
4953         unlink(phys_ram_file);
4954         phys_ram_base = mmap(get_mmap_addr(phys_ram_size), 
4955                              phys_ram_size, 
4956                              PROT_WRITE | PROT_READ, MAP_SHARED | MAP_FIXED, 
4957                              phys_ram_fd, 0);
4958         if (phys_ram_base == MAP_FAILED) {
4959             fprintf(stderr, "Could not map physical memory\n");
4960             exit(1);
4961         }
4962     }
4963 #endif
4964
4965     /* we always create the cdrom drive, even if no disk is there */
4966     bdrv_init();
4967     if (cdrom_index >= 0) {
4968         bs_table[cdrom_index] = bdrv_new("cdrom");
4969         bdrv_set_type_hint(bs_table[cdrom_index], BDRV_TYPE_CDROM);
4970     }
4971
4972     /* open the virtual block devices */
4973     for(i = 0; i < MAX_DISKS; i++) {
4974         if (hd_filename[i]) {
4975             if (!bs_table[i]) {
4976                 char buf[64];
4977                 snprintf(buf, sizeof(buf), "hd%c", i + 'a');
4978                 bs_table[i] = bdrv_new(buf);
4979             }
4980             if (bdrv_open(bs_table[i], hd_filename[i], snapshot) < 0) {
4981                 fprintf(stderr, "qemu: could not open hard disk image '%s'\n",
4982                         hd_filename[i]);
4983                 exit(1);
4984             }
4985             if (i == 0 && cyls != 0) {
4986                 bdrv_set_geometry_hint(bs_table[i], cyls, heads, secs);
4987                 bdrv_set_translation_hint(bs_table[i], translation);
4988             }
4989         }
4990     }
4991
4992     /* we always create at least one floppy disk */
4993     fd_table[0] = bdrv_new("fda");
4994     bdrv_set_type_hint(fd_table[0], BDRV_TYPE_FLOPPY);
4995
4996     for(i = 0; i < MAX_FD; i++) {
4997         if (fd_filename[i]) {
4998             if (!fd_table[i]) {
4999                 char buf[64];
5000                 snprintf(buf, sizeof(buf), "fd%c", i + 'a');
5001                 fd_table[i] = bdrv_new(buf);
5002                 bdrv_set_type_hint(fd_table[i], BDRV_TYPE_FLOPPY);
5003             }
5004             if (fd_filename[i] != '\0') {
5005                 if (bdrv_open(fd_table[i], fd_filename[i], snapshot) < 0) {
5006                     fprintf(stderr, "qemu: could not open floppy disk image '%s'\n",
5007                             fd_filename[i]);
5008                     exit(1);
5009                 }
5010             }
5011         }
5012     }
5013
5014     /* init USB devices */
5015     if (usb_enabled) {
5016         vm_usb_hub = usb_hub_init(vm_usb_ports, MAX_VM_USB_PORTS);
5017         for(i = 0; i < usb_devices_index; i++) {
5018             if (usb_device_add(usb_devices[i]) < 0) {
5019                 fprintf(stderr, "Warning: could not add USB device %s\n",
5020                         usb_devices[i]);
5021             }
5022         }
5023     }
5024
5025     register_savevm("timer", 0, 1, timer_save, timer_load, NULL);
5026     register_savevm("ram", 0, 1, ram_save, ram_load, NULL);
5027
5028     init_ioports();
5029     cpu_calibrate_ticks();
5030
5031     /* terminal init */
5032     if (nographic) {
5033         dumb_display_init(ds);
5034     } else {
5035 #if defined(CONFIG_SDL)
5036         sdl_display_init(ds, full_screen);
5037 #elif defined(CONFIG_COCOA)
5038         cocoa_display_init(ds, full_screen);
5039 #else
5040         dumb_display_init(ds);
5041 #endif
5042     }
5043
5044     vga_console = graphic_console_init(ds);
5045     
5046     monitor_hd = qemu_chr_open(monitor_device);
5047     if (!monitor_hd) {
5048         fprintf(stderr, "qemu: could not open monitor device '%s'\n", monitor_device);
5049         exit(1);
5050     }
5051     monitor_init(monitor_hd, !nographic);
5052
5053     for(i = 0; i < MAX_SERIAL_PORTS; i++) {
5054         if (serial_devices[i][0] != '\0') {
5055             serial_hds[i] = qemu_chr_open(serial_devices[i]);
5056             if (!serial_hds[i]) {
5057                 fprintf(stderr, "qemu: could not open serial device '%s'\n", 
5058                         serial_devices[i]);
5059                 exit(1);
5060             }
5061             if (!strcmp(serial_devices[i], "vc"))
5062                 qemu_chr_printf(serial_hds[i], "serial%d console\n", i);
5063         }
5064     }
5065
5066     for(i = 0; i < MAX_PARALLEL_PORTS; i++) {
5067         if (parallel_devices[i][0] != '\0') {
5068             parallel_hds[i] = qemu_chr_open(parallel_devices[i]);
5069             if (!parallel_hds[i]) {
5070                 fprintf(stderr, "qemu: could not open parallel device '%s'\n", 
5071                         parallel_devices[i]);
5072                 exit(1);
5073             }
5074             if (!strcmp(parallel_devices[i], "vc"))
5075                 qemu_chr_printf(parallel_hds[i], "parallel%d console\n", i);
5076         }
5077     }
5078
5079     /* setup cpu signal handlers for MMU / self modifying code handling */
5080 #if !defined(CONFIG_SOFTMMU)
5081     
5082 #if defined (TARGET_I386) && defined(USE_CODE_COPY)
5083     {
5084         stack_t stk;
5085         signal_stack = memalign(16, SIGNAL_STACK_SIZE);
5086         stk.ss_sp = signal_stack;
5087         stk.ss_size = SIGNAL_STACK_SIZE;
5088         stk.ss_flags = 0;
5089
5090         if (sigaltstack(&stk, NULL) < 0) {
5091             perror("sigaltstack");
5092             exit(1);
5093         }
5094     }
5095 #endif
5096     {
5097         struct sigaction act;
5098         
5099         sigfillset(&act.sa_mask);
5100         act.sa_flags = SA_SIGINFO;
5101 #if defined (TARGET_I386) && defined(USE_CODE_COPY)
5102         act.sa_flags |= SA_ONSTACK;
5103 #endif
5104         act.sa_sigaction = host_segv_handler;
5105         sigaction(SIGSEGV, &act, NULL);
5106         sigaction(SIGBUS, &act, NULL);
5107 #if defined (TARGET_I386) && defined(USE_CODE_COPY)
5108         sigaction(SIGFPE, &act, NULL);
5109 #endif
5110     }
5111 #endif
5112
5113 #ifndef _WIN32
5114     {
5115         struct sigaction act;
5116         sigfillset(&act.sa_mask);
5117         act.sa_flags = 0;
5118         act.sa_handler = SIG_IGN;
5119         sigaction(SIGPIPE, &act, NULL);
5120     }
5121 #endif
5122     init_timers();
5123
5124     machine->init(ram_size, vga_ram_size, boot_device,
5125                   ds, fd_filename, snapshot,
5126                   kernel_filename, kernel_cmdline, initrd_filename);
5127
5128     gui_timer = qemu_new_timer(rt_clock, gui_update, NULL);
5129     qemu_mod_timer(gui_timer, qemu_get_clock(rt_clock));
5130
5131 #ifdef CONFIG_GDBSTUB
5132     if (use_gdbstub) {
5133         if (gdbserver_start(gdbstub_port) < 0) {
5134             fprintf(stderr, "Could not open gdbserver socket on port %d\n", 
5135                     gdbstub_port);
5136             exit(1);
5137         } else {
5138             printf("Waiting gdb connection on port %d\n", gdbstub_port);
5139         }
5140     } else 
5141 #endif
5142     if (loadvm)
5143         qemu_loadvm(loadvm);
5144
5145     {
5146         /* XXX: simplify init */
5147         read_passwords();
5148         if (start_emulation) {
5149             vm_start();
5150         }
5151     }
5152     main_loop();
5153     quit_timers();
5154     return 0;
5155 }