4 * Copyright (c) 2003-2007 Fabrice Bellard
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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
35 #include <sys/times.h>
40 #include <sys/ioctl.h>
41 #include <sys/socket.h>
42 #include <netinet/in.h>
53 #include <linux/if_tun.h>
56 #include <linux/rtc.h>
57 #include <linux/ppdev.h>
62 #if defined(CONFIG_SLIRP)
68 #include <sys/timeb.h>
70 #define getopt_long_only getopt_long
71 #define memalign(align, size) malloc(size)
74 #include "qemu_socket.h"
80 #endif /* CONFIG_SDL */
84 #define main qemu_main
85 #endif /* CONFIG_COCOA */
91 #define DEFAULT_NETWORK_SCRIPT "/etc/qemu-ifup"
93 #define SMBD_COMMAND "/usr/sfw/sbin/smbd"
95 #define SMBD_COMMAND "/usr/sbin/smbd"
98 //#define DEBUG_UNUSED_IOPORT
99 //#define DEBUG_IOPORT
101 #define PHYS_RAM_MAX_SIZE (2047 * 1024 * 1024)
104 #define DEFAULT_RAM_SIZE 144
106 #define DEFAULT_RAM_SIZE 128
109 #define GUI_REFRESH_INTERVAL 30
111 /* Max number of USB devices that can be specified on the commandline. */
112 #define MAX_USB_CMDLINE 8
114 /* XXX: use a two level table to limit memory usage */
115 #define MAX_IOPORTS 65536
117 const char *bios_dir
= CONFIG_QEMU_SHAREDIR
;
118 char phys_ram_file
[1024];
119 void *ioport_opaque
[MAX_IOPORTS
];
120 IOPortReadFunc
*ioport_read_table
[3][MAX_IOPORTS
];
121 IOPortWriteFunc
*ioport_write_table
[3][MAX_IOPORTS
];
122 /* Note: bs_table[MAX_DISKS] is a dummy block driver if none available
123 to store the VM snapshots */
124 BlockDriverState
*bs_table
[MAX_DISKS
+ 1], *fd_table
[MAX_FD
];
125 /* point to the block driver where the snapshots are managed */
126 BlockDriverState
*bs_snapshots
;
129 static DisplayState display_state
;
131 const char* keyboard_layout
= NULL
;
132 int64_t ticks_per_sec
;
133 int boot_device
= 'c';
135 int pit_min_timer_count
= 0;
137 NICInfo nd_table
[MAX_NICS
];
138 QEMUTimer
*gui_timer
;
141 int cirrus_vga_enabled
= 1;
143 int graphic_width
= 1024;
144 int graphic_height
= 768;
146 int graphic_width
= 800;
147 int graphic_height
= 600;
149 int graphic_depth
= 15;
152 CharDriverState
*serial_hds
[MAX_SERIAL_PORTS
];
153 CharDriverState
*parallel_hds
[MAX_PARALLEL_PORTS
];
155 int win2k_install_hack
= 0;
158 static VLANState
*first_vlan
;
160 const char *vnc_display
;
161 #if defined(TARGET_SPARC)
163 #elif defined(TARGET_I386)
168 int acpi_enabled
= 1;
172 const char *option_rom
[MAX_OPTION_ROMS
];
174 int semihosting_enabled
= 0;
177 /***********************************************************/
178 /* x86 ISA bus support */
180 target_phys_addr_t isa_mem_base
= 0;
183 uint32_t default_ioport_readb(void *opaque
, uint32_t address
)
185 #ifdef DEBUG_UNUSED_IOPORT
186 fprintf(stderr
, "inb: port=0x%04x\n", address
);
191 void default_ioport_writeb(void *opaque
, uint32_t address
, uint32_t data
)
193 #ifdef DEBUG_UNUSED_IOPORT
194 fprintf(stderr
, "outb: port=0x%04x data=0x%02x\n", address
, data
);
198 /* default is to make two byte accesses */
199 uint32_t default_ioport_readw(void *opaque
, uint32_t address
)
202 data
= ioport_read_table
[0][address
](ioport_opaque
[address
], address
);
203 address
= (address
+ 1) & (MAX_IOPORTS
- 1);
204 data
|= ioport_read_table
[0][address
](ioport_opaque
[address
], address
) << 8;
208 void default_ioport_writew(void *opaque
, uint32_t address
, uint32_t data
)
210 ioport_write_table
[0][address
](ioport_opaque
[address
], address
, data
& 0xff);
211 address
= (address
+ 1) & (MAX_IOPORTS
- 1);
212 ioport_write_table
[0][address
](ioport_opaque
[address
], address
, (data
>> 8) & 0xff);
215 uint32_t default_ioport_readl(void *opaque
, uint32_t address
)
217 #ifdef DEBUG_UNUSED_IOPORT
218 fprintf(stderr
, "inl: port=0x%04x\n", address
);
223 void default_ioport_writel(void *opaque
, uint32_t address
, uint32_t data
)
225 #ifdef DEBUG_UNUSED_IOPORT
226 fprintf(stderr
, "outl: port=0x%04x data=0x%02x\n", address
, data
);
230 void init_ioports(void)
234 for(i
= 0; i
< MAX_IOPORTS
; i
++) {
235 ioport_read_table
[0][i
] = default_ioport_readb
;
236 ioport_write_table
[0][i
] = default_ioport_writeb
;
237 ioport_read_table
[1][i
] = default_ioport_readw
;
238 ioport_write_table
[1][i
] = default_ioport_writew
;
239 ioport_read_table
[2][i
] = default_ioport_readl
;
240 ioport_write_table
[2][i
] = default_ioport_writel
;
244 /* size is the word size in byte */
245 int register_ioport_read(int start
, int length
, int size
,
246 IOPortReadFunc
*func
, void *opaque
)
252 } else if (size
== 2) {
254 } else if (size
== 4) {
257 hw_error("register_ioport_read: invalid size");
260 for(i
= start
; i
< start
+ length
; i
+= size
) {
261 ioport_read_table
[bsize
][i
] = func
;
262 if (ioport_opaque
[i
] != NULL
&& ioport_opaque
[i
] != opaque
)
263 hw_error("register_ioport_read: invalid opaque");
264 ioport_opaque
[i
] = opaque
;
269 /* size is the word size in byte */
270 int register_ioport_write(int start
, int length
, int size
,
271 IOPortWriteFunc
*func
, void *opaque
)
277 } else if (size
== 2) {
279 } else if (size
== 4) {
282 hw_error("register_ioport_write: invalid size");
285 for(i
= start
; i
< start
+ length
; i
+= size
) {
286 ioport_write_table
[bsize
][i
] = func
;
287 if (ioport_opaque
[i
] != NULL
&& ioport_opaque
[i
] != opaque
)
288 hw_error("register_ioport_write: invalid opaque");
289 ioport_opaque
[i
] = opaque
;
294 void isa_unassign_ioport(int start
, int length
)
298 for(i
= start
; i
< start
+ length
; i
++) {
299 ioport_read_table
[0][i
] = default_ioport_readb
;
300 ioport_read_table
[1][i
] = default_ioport_readw
;
301 ioport_read_table
[2][i
] = default_ioport_readl
;
303 ioport_write_table
[0][i
] = default_ioport_writeb
;
304 ioport_write_table
[1][i
] = default_ioport_writew
;
305 ioport_write_table
[2][i
] = default_ioport_writel
;
309 /***********************************************************/
311 void cpu_outb(CPUState
*env
, int addr
, int val
)
314 if (loglevel
& CPU_LOG_IOPORT
)
315 fprintf(logfile
, "outb: %04x %02x\n", addr
, val
);
317 ioport_write_table
[0][addr
](ioport_opaque
[addr
], addr
, val
);
320 env
->last_io_time
= cpu_get_time_fast();
324 void cpu_outw(CPUState
*env
, int addr
, int val
)
327 if (loglevel
& CPU_LOG_IOPORT
)
328 fprintf(logfile
, "outw: %04x %04x\n", addr
, val
);
330 ioport_write_table
[1][addr
](ioport_opaque
[addr
], addr
, val
);
333 env
->last_io_time
= cpu_get_time_fast();
337 void cpu_outl(CPUState
*env
, int addr
, int val
)
340 if (loglevel
& CPU_LOG_IOPORT
)
341 fprintf(logfile
, "outl: %04x %08x\n", addr
, val
);
343 ioport_write_table
[2][addr
](ioport_opaque
[addr
], addr
, val
);
346 env
->last_io_time
= cpu_get_time_fast();
350 int cpu_inb(CPUState
*env
, int addr
)
353 val
= ioport_read_table
[0][addr
](ioport_opaque
[addr
], addr
);
355 if (loglevel
& CPU_LOG_IOPORT
)
356 fprintf(logfile
, "inb : %04x %02x\n", addr
, val
);
360 env
->last_io_time
= cpu_get_time_fast();
365 int cpu_inw(CPUState
*env
, int addr
)
368 val
= ioport_read_table
[1][addr
](ioport_opaque
[addr
], addr
);
370 if (loglevel
& CPU_LOG_IOPORT
)
371 fprintf(logfile
, "inw : %04x %04x\n", addr
, val
);
375 env
->last_io_time
= cpu_get_time_fast();
380 int cpu_inl(CPUState
*env
, int addr
)
383 val
= ioport_read_table
[2][addr
](ioport_opaque
[addr
], addr
);
385 if (loglevel
& CPU_LOG_IOPORT
)
386 fprintf(logfile
, "inl : %04x %08x\n", addr
, val
);
390 env
->last_io_time
= cpu_get_time_fast();
395 /***********************************************************/
396 void hw_error(const char *fmt
, ...)
402 fprintf(stderr
, "qemu: hardware error: ");
403 vfprintf(stderr
, fmt
, ap
);
404 fprintf(stderr
, "\n");
405 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
406 fprintf(stderr
, "CPU #%d:\n", env
->cpu_index
);
408 cpu_dump_state(env
, stderr
, fprintf
, X86_DUMP_FPU
);
410 cpu_dump_state(env
, stderr
, fprintf
, 0);
417 /***********************************************************/
420 static QEMUPutKBDEvent
*qemu_put_kbd_event
;
421 static void *qemu_put_kbd_event_opaque
;
422 static QEMUPutMouseEntry
*qemu_put_mouse_event_head
;
423 static QEMUPutMouseEntry
*qemu_put_mouse_event_current
;
425 void qemu_add_kbd_event_handler(QEMUPutKBDEvent
*func
, void *opaque
)
427 qemu_put_kbd_event_opaque
= opaque
;
428 qemu_put_kbd_event
= func
;
431 QEMUPutMouseEntry
*qemu_add_mouse_event_handler(QEMUPutMouseEvent
*func
,
432 void *opaque
, int absolute
,
435 QEMUPutMouseEntry
*s
, *cursor
;
437 s
= qemu_mallocz(sizeof(QEMUPutMouseEntry
));
441 s
->qemu_put_mouse_event
= func
;
442 s
->qemu_put_mouse_event_opaque
= opaque
;
443 s
->qemu_put_mouse_event_absolute
= absolute
;
444 s
->qemu_put_mouse_event_name
= qemu_strdup(name
);
447 if (!qemu_put_mouse_event_head
) {
448 qemu_put_mouse_event_head
= qemu_put_mouse_event_current
= s
;
452 cursor
= qemu_put_mouse_event_head
;
453 while (cursor
->next
!= NULL
)
454 cursor
= cursor
->next
;
457 qemu_put_mouse_event_current
= s
;
462 void qemu_remove_mouse_event_handler(QEMUPutMouseEntry
*entry
)
464 QEMUPutMouseEntry
*prev
= NULL
, *cursor
;
466 if (!qemu_put_mouse_event_head
|| entry
== NULL
)
469 cursor
= qemu_put_mouse_event_head
;
470 while (cursor
!= NULL
&& cursor
!= entry
) {
472 cursor
= cursor
->next
;
475 if (cursor
== NULL
) // does not exist or list empty
477 else if (prev
== NULL
) { // entry is head
478 qemu_put_mouse_event_head
= cursor
->next
;
479 if (qemu_put_mouse_event_current
== entry
)
480 qemu_put_mouse_event_current
= cursor
->next
;
481 qemu_free(entry
->qemu_put_mouse_event_name
);
486 prev
->next
= entry
->next
;
488 if (qemu_put_mouse_event_current
== entry
)
489 qemu_put_mouse_event_current
= prev
;
491 qemu_free(entry
->qemu_put_mouse_event_name
);
495 void kbd_put_keycode(int keycode
)
497 if (qemu_put_kbd_event
) {
498 qemu_put_kbd_event(qemu_put_kbd_event_opaque
, keycode
);
502 void kbd_mouse_event(int dx
, int dy
, int dz
, int buttons_state
)
504 QEMUPutMouseEvent
*mouse_event
;
505 void *mouse_event_opaque
;
507 if (!qemu_put_mouse_event_current
) {
512 qemu_put_mouse_event_current
->qemu_put_mouse_event
;
514 qemu_put_mouse_event_current
->qemu_put_mouse_event_opaque
;
517 mouse_event(mouse_event_opaque
, dx
, dy
, dz
, buttons_state
);
521 int kbd_mouse_is_absolute(void)
523 if (!qemu_put_mouse_event_current
)
526 return qemu_put_mouse_event_current
->qemu_put_mouse_event_absolute
;
529 void do_info_mice(void)
531 QEMUPutMouseEntry
*cursor
;
534 if (!qemu_put_mouse_event_head
) {
535 term_printf("No mouse devices connected\n");
539 term_printf("Mouse devices available:\n");
540 cursor
= qemu_put_mouse_event_head
;
541 while (cursor
!= NULL
) {
542 term_printf("%c Mouse #%d: %s\n",
543 (cursor
== qemu_put_mouse_event_current
? '*' : ' '),
544 index
, cursor
->qemu_put_mouse_event_name
);
546 cursor
= cursor
->next
;
550 void do_mouse_set(int index
)
552 QEMUPutMouseEntry
*cursor
;
555 if (!qemu_put_mouse_event_head
) {
556 term_printf("No mouse devices connected\n");
560 cursor
= qemu_put_mouse_event_head
;
561 while (cursor
!= NULL
&& index
!= i
) {
563 cursor
= cursor
->next
;
567 qemu_put_mouse_event_current
= cursor
;
569 term_printf("Mouse at given index not found\n");
572 /* compute with 96 bit intermediate result: (a*b)/c */
573 uint64_t muldiv64(uint64_t a
, uint32_t b
, uint32_t c
)
578 #ifdef WORDS_BIGENDIAN
588 rl
= (uint64_t)u
.l
.low
* (uint64_t)b
;
589 rh
= (uint64_t)u
.l
.high
* (uint64_t)b
;
592 res
.l
.low
= (((rh
% c
) << 32) + (rl
& 0xffffffff)) / c
;
596 /***********************************************************/
597 /* real time host monotonic timer */
599 #define QEMU_TIMER_BASE 1000000000LL
603 static int64_t clock_freq
;
605 static void init_get_clock(void)
609 ret
= QueryPerformanceFrequency(&freq
);
611 fprintf(stderr
, "Could not calibrate ticks\n");
614 clock_freq
= freq
.QuadPart
;
617 static int64_t get_clock(void)
620 QueryPerformanceCounter(&ti
);
621 return muldiv64(ti
.QuadPart
, QEMU_TIMER_BASE
, clock_freq
);
626 static int use_rt_clock
;
628 static void init_get_clock(void)
631 #if defined(__linux__)
634 if (clock_gettime(CLOCK_MONOTONIC
, &ts
) == 0) {
641 static int64_t get_clock(void)
643 #if defined(__linux__)
646 clock_gettime(CLOCK_MONOTONIC
, &ts
);
647 return ts
.tv_sec
* 1000000000LL + ts
.tv_nsec
;
651 /* XXX: using gettimeofday leads to problems if the date
652 changes, so it should be avoided. */
654 gettimeofday(&tv
, NULL
);
655 return tv
.tv_sec
* 1000000000LL + (tv
.tv_usec
* 1000);
661 /***********************************************************/
662 /* guest cycle counter */
664 static int64_t cpu_ticks_prev
;
665 static int64_t cpu_ticks_offset
;
666 static int64_t cpu_clock_offset
;
667 static int cpu_ticks_enabled
;
669 /* return the host CPU cycle counter and handle stop/restart */
670 int64_t cpu_get_ticks(void)
672 if (!cpu_ticks_enabled
) {
673 return cpu_ticks_offset
;
676 ticks
= cpu_get_real_ticks();
677 if (cpu_ticks_prev
> ticks
) {
678 /* Note: non increasing ticks may happen if the host uses
680 cpu_ticks_offset
+= cpu_ticks_prev
- ticks
;
682 cpu_ticks_prev
= ticks
;
683 return ticks
+ cpu_ticks_offset
;
687 /* return the host CPU monotonic timer and handle stop/restart */
688 static int64_t cpu_get_clock(void)
691 if (!cpu_ticks_enabled
) {
692 return cpu_clock_offset
;
695 return ti
+ cpu_clock_offset
;
699 /* enable cpu_get_ticks() */
700 void cpu_enable_ticks(void)
702 if (!cpu_ticks_enabled
) {
703 cpu_ticks_offset
-= cpu_get_real_ticks();
704 cpu_clock_offset
-= get_clock();
705 cpu_ticks_enabled
= 1;
709 /* disable cpu_get_ticks() : the clock is stopped. You must not call
710 cpu_get_ticks() after that. */
711 void cpu_disable_ticks(void)
713 if (cpu_ticks_enabled
) {
714 cpu_ticks_offset
= cpu_get_ticks();
715 cpu_clock_offset
= cpu_get_clock();
716 cpu_ticks_enabled
= 0;
720 /***********************************************************/
723 #define QEMU_TIMER_REALTIME 0
724 #define QEMU_TIMER_VIRTUAL 1
728 /* XXX: add frequency */
736 struct QEMUTimer
*next
;
742 static QEMUTimer
*active_timers
[2];
744 static MMRESULT timerID
;
745 static HANDLE host_alarm
= NULL
;
746 static unsigned int period
= 1;
748 /* frequency of the times() clock tick */
749 static int timer_freq
;
752 QEMUClock
*qemu_new_clock(int type
)
755 clock
= qemu_mallocz(sizeof(QEMUClock
));
762 QEMUTimer
*qemu_new_timer(QEMUClock
*clock
, QEMUTimerCB
*cb
, void *opaque
)
766 ts
= qemu_mallocz(sizeof(QEMUTimer
));
773 void qemu_free_timer(QEMUTimer
*ts
)
778 /* stop a timer, but do not dealloc it */
779 void qemu_del_timer(QEMUTimer
*ts
)
783 /* NOTE: this code must be signal safe because
784 qemu_timer_expired() can be called from a signal. */
785 pt
= &active_timers
[ts
->clock
->type
];
798 /* modify the current timer so that it will be fired when current_time
799 >= expire_time. The corresponding callback will be called. */
800 void qemu_mod_timer(QEMUTimer
*ts
, int64_t expire_time
)
806 /* add the timer in the sorted list */
807 /* NOTE: this code must be signal safe because
808 qemu_timer_expired() can be called from a signal. */
809 pt
= &active_timers
[ts
->clock
->type
];
814 if (t
->expire_time
> expire_time
)
818 ts
->expire_time
= expire_time
;
823 int qemu_timer_pending(QEMUTimer
*ts
)
826 for(t
= active_timers
[ts
->clock
->type
]; t
!= NULL
; t
= t
->next
) {
833 static inline int qemu_timer_expired(QEMUTimer
*timer_head
, int64_t current_time
)
837 return (timer_head
->expire_time
<= current_time
);
840 static void qemu_run_timers(QEMUTimer
**ptimer_head
, int64_t current_time
)
846 if (!ts
|| ts
->expire_time
> current_time
)
848 /* remove timer from the list before calling the callback */
849 *ptimer_head
= ts
->next
;
852 /* run the callback (the timer list can be modified) */
857 int64_t qemu_get_clock(QEMUClock
*clock
)
859 switch(clock
->type
) {
860 case QEMU_TIMER_REALTIME
:
861 return get_clock() / 1000000;
863 case QEMU_TIMER_VIRTUAL
:
864 return cpu_get_clock();
868 static void init_timers(void)
871 ticks_per_sec
= QEMU_TIMER_BASE
;
872 rt_clock
= qemu_new_clock(QEMU_TIMER_REALTIME
);
873 vm_clock
= qemu_new_clock(QEMU_TIMER_VIRTUAL
);
877 void qemu_put_timer(QEMUFile
*f
, QEMUTimer
*ts
)
879 uint64_t expire_time
;
881 if (qemu_timer_pending(ts
)) {
882 expire_time
= ts
->expire_time
;
886 qemu_put_be64(f
, expire_time
);
889 void qemu_get_timer(QEMUFile
*f
, QEMUTimer
*ts
)
891 uint64_t expire_time
;
893 expire_time
= qemu_get_be64(f
);
894 if (expire_time
!= -1) {
895 qemu_mod_timer(ts
, expire_time
);
901 static void timer_save(QEMUFile
*f
, void *opaque
)
903 if (cpu_ticks_enabled
) {
904 hw_error("cannot save state if virtual timers are running");
906 qemu_put_be64s(f
, &cpu_ticks_offset
);
907 qemu_put_be64s(f
, &ticks_per_sec
);
908 qemu_put_be64s(f
, &cpu_clock_offset
);
911 static int timer_load(QEMUFile
*f
, void *opaque
, int version_id
)
913 if (version_id
!= 1 && version_id
!= 2)
915 if (cpu_ticks_enabled
) {
918 qemu_get_be64s(f
, &cpu_ticks_offset
);
919 qemu_get_be64s(f
, &ticks_per_sec
);
920 if (version_id
== 2) {
921 qemu_get_be64s(f
, &cpu_clock_offset
);
927 void CALLBACK
host_alarm_handler(UINT uTimerID
, UINT uMsg
,
928 DWORD_PTR dwUser
, DWORD_PTR dw1
, DWORD_PTR dw2
)
930 static void host_alarm_handler(int host_signum
)
934 #define DISP_FREQ 1000
936 static int64_t delta_min
= INT64_MAX
;
937 static int64_t delta_max
, delta_cum
, last_clock
, delta
, ti
;
939 ti
= qemu_get_clock(vm_clock
);
940 if (last_clock
!= 0) {
941 delta
= ti
- last_clock
;
942 if (delta
< delta_min
)
944 if (delta
> delta_max
)
947 if (++count
== DISP_FREQ
) {
948 printf("timer: min=%" PRId64
" us max=%" PRId64
" us avg=%" PRId64
" us avg_freq=%0.3f Hz\n",
949 muldiv64(delta_min
, 1000000, ticks_per_sec
),
950 muldiv64(delta_max
, 1000000, ticks_per_sec
),
951 muldiv64(delta_cum
, 1000000 / DISP_FREQ
, ticks_per_sec
),
952 (double)ticks_per_sec
/ ((double)delta_cum
/ DISP_FREQ
));
954 delta_min
= INT64_MAX
;
962 if (qemu_timer_expired(active_timers
[QEMU_TIMER_VIRTUAL
],
963 qemu_get_clock(vm_clock
)) ||
964 qemu_timer_expired(active_timers
[QEMU_TIMER_REALTIME
],
965 qemu_get_clock(rt_clock
))) {
967 SetEvent(host_alarm
);
969 CPUState
*env
= cpu_single_env
;
971 /* stop the currently executing cpu because a timer occured */
972 cpu_interrupt(env
, CPU_INTERRUPT_EXIT
);
974 if (env
->kqemu_enabled
) {
975 kqemu_cpu_interrupt(env
);
984 #if defined(__linux__)
986 #define RTC_FREQ 1024
990 static int start_rtc_timer(void)
992 rtc_fd
= open("/dev/rtc", O_RDONLY
);
995 if (ioctl(rtc_fd
, RTC_IRQP_SET
, RTC_FREQ
) < 0) {
996 fprintf(stderr
, "Could not configure '/dev/rtc' to have a 1024 Hz timer. This is not a fatal\n"
997 "error, but for better emulation accuracy either use a 2.6 host Linux kernel or\n"
998 "type 'echo 1024 > /proc/sys/dev/rtc/max-user-freq' as root.\n");
1001 if (ioctl(rtc_fd
, RTC_PIE_ON
, 0) < 0) {
1006 pit_min_timer_count
= PIT_FREQ
/ RTC_FREQ
;
1012 static int start_rtc_timer(void)
1017 #endif /* !defined(__linux__) */
1019 #endif /* !defined(_WIN32) */
1021 static void init_timer_alarm(void)
1028 ZeroMemory(&tc
, sizeof(TIMECAPS
));
1029 timeGetDevCaps(&tc
, sizeof(TIMECAPS
));
1030 if (period
< tc
.wPeriodMin
)
1031 period
= tc
.wPeriodMin
;
1032 timeBeginPeriod(period
);
1033 timerID
= timeSetEvent(1, // interval (ms)
1034 period
, // resolution
1035 host_alarm_handler
, // function
1036 (DWORD
)&count
, // user parameter
1037 TIME_PERIODIC
| TIME_CALLBACK_FUNCTION
);
1039 perror("failed timer alarm");
1042 host_alarm
= CreateEvent(NULL
, FALSE
, FALSE
, NULL
);
1044 perror("failed CreateEvent");
1047 qemu_add_wait_object(host_alarm
, NULL
, NULL
);
1049 pit_min_timer_count
= ((uint64_t)10000 * PIT_FREQ
) / 1000000;
1052 struct sigaction act
;
1053 struct itimerval itv
;
1055 /* get times() syscall frequency */
1056 timer_freq
= sysconf(_SC_CLK_TCK
);
1059 sigfillset(&act
.sa_mask
);
1061 #if defined (TARGET_I386) && defined(USE_CODE_COPY)
1062 act
.sa_flags
|= SA_ONSTACK
;
1064 act
.sa_handler
= host_alarm_handler
;
1065 sigaction(SIGALRM
, &act
, NULL
);
1067 itv
.it_interval
.tv_sec
= 0;
1068 itv
.it_interval
.tv_usec
= 999; /* for i386 kernel 2.6 to get 1 ms */
1069 itv
.it_value
.tv_sec
= 0;
1070 itv
.it_value
.tv_usec
= 10 * 1000;
1071 setitimer(ITIMER_REAL
, &itv
, NULL
);
1072 /* we probe the tick duration of the kernel to inform the user if
1073 the emulated kernel requested a too high timer frequency */
1074 getitimer(ITIMER_REAL
, &itv
);
1076 #if defined(__linux__)
1077 /* XXX: force /dev/rtc usage because even 2.6 kernels may not
1078 have timers with 1 ms resolution. The correct solution will
1079 be to use the POSIX real time timers available in recent
1081 if (itv
.it_interval
.tv_usec
> 1000 || 1) {
1082 /* try to use /dev/rtc to have a faster timer */
1083 if (start_rtc_timer() < 0)
1085 /* disable itimer */
1086 itv
.it_interval
.tv_sec
= 0;
1087 itv
.it_interval
.tv_usec
= 0;
1088 itv
.it_value
.tv_sec
= 0;
1089 itv
.it_value
.tv_usec
= 0;
1090 setitimer(ITIMER_REAL
, &itv
, NULL
);
1093 sigaction(SIGIO
, &act
, NULL
);
1094 fcntl(rtc_fd
, F_SETFL
, O_ASYNC
);
1095 fcntl(rtc_fd
, F_SETOWN
, getpid());
1097 #endif /* defined(__linux__) */
1100 pit_min_timer_count
= ((uint64_t)itv
.it_interval
.tv_usec
*
1101 PIT_FREQ
) / 1000000;
1107 void quit_timers(void)
1110 timeKillEvent(timerID
);
1111 timeEndPeriod(period
);
1113 CloseHandle(host_alarm
);
1119 /***********************************************************/
1120 /* character device */
1122 static void qemu_chr_event(CharDriverState
*s
, int event
)
1126 s
->chr_event(s
->handler_opaque
, event
);
1129 static void qemu_chr_reset_bh(void *opaque
)
1131 CharDriverState
*s
= opaque
;
1132 qemu_chr_event(s
, CHR_EVENT_RESET
);
1133 qemu_bh_delete(s
->bh
);
1137 void qemu_chr_reset(CharDriverState
*s
)
1139 if (s
->bh
== NULL
) {
1140 s
->bh
= qemu_bh_new(qemu_chr_reset_bh
, s
);
1141 qemu_bh_schedule(s
->bh
);
1145 int qemu_chr_write(CharDriverState
*s
, const uint8_t *buf
, int len
)
1147 return s
->chr_write(s
, buf
, len
);
1150 int qemu_chr_ioctl(CharDriverState
*s
, int cmd
, void *arg
)
1154 return s
->chr_ioctl(s
, cmd
, arg
);
1157 int qemu_chr_can_read(CharDriverState
*s
)
1159 if (!s
->chr_can_read
)
1161 return s
->chr_can_read(s
->handler_opaque
);
1164 void qemu_chr_read(CharDriverState
*s
, uint8_t *buf
, int len
)
1166 s
->chr_read(s
->handler_opaque
, buf
, len
);
1170 void qemu_chr_printf(CharDriverState
*s
, const char *fmt
, ...)
1175 vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
1176 qemu_chr_write(s
, buf
, strlen(buf
));
1180 void qemu_chr_send_event(CharDriverState
*s
, int event
)
1182 if (s
->chr_send_event
)
1183 s
->chr_send_event(s
, event
);
1186 void qemu_chr_add_handlers(CharDriverState
*s
,
1187 IOCanRWHandler
*fd_can_read
,
1188 IOReadHandler
*fd_read
,
1189 IOEventHandler
*fd_event
,
1192 s
->chr_can_read
= fd_can_read
;
1193 s
->chr_read
= fd_read
;
1194 s
->chr_event
= fd_event
;
1195 s
->handler_opaque
= opaque
;
1196 if (s
->chr_update_read_handler
)
1197 s
->chr_update_read_handler(s
);
1200 static int null_chr_write(CharDriverState
*chr
, const uint8_t *buf
, int len
)
1205 static CharDriverState
*qemu_chr_open_null(void)
1207 CharDriverState
*chr
;
1209 chr
= qemu_mallocz(sizeof(CharDriverState
));
1212 chr
->chr_write
= null_chr_write
;
1218 static void socket_cleanup(void)
1223 static int socket_init(void)
1228 ret
= WSAStartup(MAKEWORD(2,2), &Data
);
1230 err
= WSAGetLastError();
1231 fprintf(stderr
, "WSAStartup: %d\n", err
);
1234 atexit(socket_cleanup
);
1238 static int send_all(int fd
, const uint8_t *buf
, int len1
)
1244 ret
= send(fd
, buf
, len
, 0);
1247 errno
= WSAGetLastError();
1248 if (errno
!= WSAEWOULDBLOCK
) {
1251 } else if (ret
== 0) {
1261 void socket_set_nonblock(int fd
)
1263 unsigned long opt
= 1;
1264 ioctlsocket(fd
, FIONBIO
, &opt
);
1269 static int unix_write(int fd
, const uint8_t *buf
, int len1
)
1275 ret
= write(fd
, buf
, len
);
1277 if (errno
!= EINTR
&& errno
!= EAGAIN
)
1279 } else if (ret
== 0) {
1289 static inline int send_all(int fd
, const uint8_t *buf
, int len1
)
1291 return unix_write(fd
, buf
, len1
);
1294 void socket_set_nonblock(int fd
)
1296 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
1298 #endif /* !_WIN32 */
1307 #define STDIO_MAX_CLIENTS 2
1309 static int stdio_nb_clients
;
1310 static CharDriverState
*stdio_clients
[STDIO_MAX_CLIENTS
];
1312 static int fd_chr_write(CharDriverState
*chr
, const uint8_t *buf
, int len
)
1314 FDCharDriver
*s
= chr
->opaque
;
1315 return unix_write(s
->fd_out
, buf
, len
);
1318 static int fd_chr_read_poll(void *opaque
)
1320 CharDriverState
*chr
= opaque
;
1321 FDCharDriver
*s
= chr
->opaque
;
1323 s
->max_size
= qemu_chr_can_read(chr
);
1327 static void fd_chr_read(void *opaque
)
1329 CharDriverState
*chr
= opaque
;
1330 FDCharDriver
*s
= chr
->opaque
;
1335 if (len
> s
->max_size
)
1339 size
= read(s
->fd_in
, buf
, len
);
1341 /* FD has been closed. Remove it from the active list. */
1342 qemu_set_fd_handler2(s
->fd_in
, NULL
, NULL
, NULL
, NULL
);
1346 qemu_chr_read(chr
, buf
, size
);
1350 static void fd_chr_update_read_handler(CharDriverState
*chr
)
1352 FDCharDriver
*s
= chr
->opaque
;
1354 if (s
->fd_in
>= 0) {
1355 if (nographic
&& s
->fd_in
== 0) {
1357 qemu_set_fd_handler2(s
->fd_in
, fd_chr_read_poll
,
1358 fd_chr_read
, NULL
, chr
);
1363 /* open a character device to a unix fd */
1364 static CharDriverState
*qemu_chr_open_fd(int fd_in
, int fd_out
)
1366 CharDriverState
*chr
;
1369 chr
= qemu_mallocz(sizeof(CharDriverState
));
1372 s
= qemu_mallocz(sizeof(FDCharDriver
));
1380 chr
->chr_write
= fd_chr_write
;
1381 chr
->chr_update_read_handler
= fd_chr_update_read_handler
;
1383 qemu_chr_reset(chr
);
1388 static CharDriverState
*qemu_chr_open_file_out(const char *file_out
)
1392 fd_out
= open(file_out
, O_WRONLY
| O_TRUNC
| O_CREAT
| O_BINARY
, 0666);
1395 return qemu_chr_open_fd(-1, fd_out
);
1398 static CharDriverState
*qemu_chr_open_pipe(const char *filename
)
1401 char filename_in
[256], filename_out
[256];
1403 snprintf(filename_in
, 256, "%s.in", filename
);
1404 snprintf(filename_out
, 256, "%s.out", filename
);
1405 fd_in
= open(filename_in
, O_RDWR
| O_BINARY
);
1406 fd_out
= open(filename_out
, O_RDWR
| O_BINARY
);
1407 if (fd_in
< 0 || fd_out
< 0) {
1412 fd_in
= fd_out
= open(filename
, O_RDWR
| O_BINARY
);
1416 return qemu_chr_open_fd(fd_in
, fd_out
);
1420 /* for STDIO, we handle the case where several clients use it
1423 #define TERM_ESCAPE 0x01 /* ctrl-a is used for escape */
1425 #define TERM_FIFO_MAX_SIZE 1
1427 static int term_got_escape
, client_index
;
1428 static uint8_t term_fifo
[TERM_FIFO_MAX_SIZE
];
1429 static int term_fifo_size
;
1430 static int term_timestamps
;
1431 static int64_t term_timestamps_start
;
1433 void term_print_help(void)
1436 "C-a h print this help\n"
1437 "C-a x exit emulator\n"
1438 "C-a s save disk data back to file (if -snapshot)\n"
1439 "C-a b send break (magic sysrq)\n"
1440 "C-a t toggle console timestamps\n"
1441 "C-a c switch between console and monitor\n"
1442 "C-a C-a send C-a\n"
1446 /* called when a char is received */
1447 static void stdio_received_byte(int ch
)
1449 if (term_got_escape
) {
1450 term_got_escape
= 0;
1461 for (i
= 0; i
< MAX_DISKS
; i
++) {
1463 bdrv_commit(bs_table
[i
]);
1468 if (client_index
< stdio_nb_clients
) {
1469 CharDriverState
*chr
;
1472 chr
= stdio_clients
[client_index
];
1474 qemu_chr_event(chr
, CHR_EVENT_BREAK
);
1479 if (client_index
>= stdio_nb_clients
)
1481 if (client_index
== 0) {
1482 /* send a new line in the monitor to get the prompt */
1488 term_timestamps
= !term_timestamps
;
1489 term_timestamps_start
= -1;
1494 } else if (ch
== TERM_ESCAPE
) {
1495 term_got_escape
= 1;
1498 if (client_index
< stdio_nb_clients
) {
1500 CharDriverState
*chr
;
1502 chr
= stdio_clients
[client_index
];
1503 if (qemu_chr_can_read(chr
) > 0) {
1505 qemu_chr_read(chr
, buf
, 1);
1506 } else if (term_fifo_size
== 0) {
1507 term_fifo
[term_fifo_size
++] = ch
;
1513 static int stdio_read_poll(void *opaque
)
1515 CharDriverState
*chr
;
1517 if (client_index
< stdio_nb_clients
) {
1518 chr
= stdio_clients
[client_index
];
1519 /* try to flush the queue if needed */
1520 if (term_fifo_size
!= 0 && qemu_chr_can_read(chr
) > 0) {
1521 qemu_chr_read(chr
, term_fifo
, 1);
1524 /* see if we can absorb more chars */
1525 if (term_fifo_size
== 0)
1534 static void stdio_read(void *opaque
)
1539 size
= read(0, buf
, 1);
1541 /* stdin has been closed. Remove it from the active list. */
1542 qemu_set_fd_handler2(0, NULL
, NULL
, NULL
, NULL
);
1546 stdio_received_byte(buf
[0]);
1549 static int stdio_write(CharDriverState
*chr
, const uint8_t *buf
, int len
)
1551 FDCharDriver
*s
= chr
->opaque
;
1552 if (!term_timestamps
) {
1553 return unix_write(s
->fd_out
, buf
, len
);
1558 for(i
= 0; i
< len
; i
++) {
1559 unix_write(s
->fd_out
, buf
+ i
, 1);
1560 if (buf
[i
] == '\n') {
1565 if (term_timestamps_start
== -1)
1566 term_timestamps_start
= ti
;
1567 ti
-= term_timestamps_start
;
1568 secs
= ti
/ 1000000000;
1569 snprintf(buf1
, sizeof(buf1
),
1570 "[%02d:%02d:%02d.%03d] ",
1574 (int)((ti
/ 1000000) % 1000));
1575 unix_write(s
->fd_out
, buf1
, strlen(buf1
));
1582 /* init terminal so that we can grab keys */
1583 static struct termios oldtty
;
1584 static int old_fd0_flags
;
1586 static void term_exit(void)
1588 tcsetattr (0, TCSANOW
, &oldtty
);
1589 fcntl(0, F_SETFL
, old_fd0_flags
);
1592 static void term_init(void)
1596 tcgetattr (0, &tty
);
1598 old_fd0_flags
= fcntl(0, F_GETFL
);
1600 tty
.c_iflag
&= ~(IGNBRK
|BRKINT
|PARMRK
|ISTRIP
1601 |INLCR
|IGNCR
|ICRNL
|IXON
);
1602 tty
.c_oflag
|= OPOST
;
1603 tty
.c_lflag
&= ~(ECHO
|ECHONL
|ICANON
|IEXTEN
);
1604 /* if graphical mode, we allow Ctrl-C handling */
1606 tty
.c_lflag
&= ~ISIG
;
1607 tty
.c_cflag
&= ~(CSIZE
|PARENB
);
1610 tty
.c_cc
[VTIME
] = 0;
1612 tcsetattr (0, TCSANOW
, &tty
);
1616 fcntl(0, F_SETFL
, O_NONBLOCK
);
1619 static CharDriverState
*qemu_chr_open_stdio(void)
1621 CharDriverState
*chr
;
1624 if (stdio_nb_clients
>= STDIO_MAX_CLIENTS
)
1626 chr
= qemu_chr_open_fd(0, 1);
1627 chr
->chr_write
= stdio_write
;
1628 if (stdio_nb_clients
== 0)
1629 qemu_set_fd_handler2(0, stdio_read_poll
, stdio_read
, NULL
, NULL
);
1630 client_index
= stdio_nb_clients
;
1632 if (stdio_nb_clients
!= 0)
1634 chr
= qemu_chr_open_fd(0, 1);
1636 stdio_clients
[stdio_nb_clients
++] = chr
;
1637 if (stdio_nb_clients
== 1) {
1638 /* set the terminal in raw mode */
1644 #if defined(__linux__)
1645 static CharDriverState
*qemu_chr_open_pty(void)
1648 char slave_name
[1024];
1649 int master_fd
, slave_fd
;
1651 /* Not satisfying */
1652 if (openpty(&master_fd
, &slave_fd
, slave_name
, NULL
, NULL
) < 0) {
1656 /* Disabling local echo and line-buffered output */
1657 tcgetattr (master_fd
, &tty
);
1658 tty
.c_lflag
&= ~(ECHO
|ICANON
|ISIG
);
1660 tty
.c_cc
[VTIME
] = 0;
1661 tcsetattr (master_fd
, TCSAFLUSH
, &tty
);
1663 fprintf(stderr
, "char device redirected to %s\n", slave_name
);
1664 return qemu_chr_open_fd(master_fd
, master_fd
);
1667 static void tty_serial_init(int fd
, int speed
,
1668 int parity
, int data_bits
, int stop_bits
)
1674 printf("tty_serial_init: speed=%d parity=%c data=%d stop=%d\n",
1675 speed
, parity
, data_bits
, stop_bits
);
1677 tcgetattr (fd
, &tty
);
1719 cfsetispeed(&tty
, spd
);
1720 cfsetospeed(&tty
, spd
);
1722 tty
.c_iflag
&= ~(IGNBRK
|BRKINT
|PARMRK
|ISTRIP
1723 |INLCR
|IGNCR
|ICRNL
|IXON
);
1724 tty
.c_oflag
|= OPOST
;
1725 tty
.c_lflag
&= ~(ECHO
|ECHONL
|ICANON
|IEXTEN
|ISIG
);
1726 tty
.c_cflag
&= ~(CSIZE
|PARENB
|PARODD
|CRTSCTS
|CSTOPB
);
1747 tty
.c_cflag
|= PARENB
;
1750 tty
.c_cflag
|= PARENB
| PARODD
;
1754 tty
.c_cflag
|= CSTOPB
;
1756 tcsetattr (fd
, TCSANOW
, &tty
);
1759 static int tty_serial_ioctl(CharDriverState
*chr
, int cmd
, void *arg
)
1761 FDCharDriver
*s
= chr
->opaque
;
1764 case CHR_IOCTL_SERIAL_SET_PARAMS
:
1766 QEMUSerialSetParams
*ssp
= arg
;
1767 tty_serial_init(s
->fd_in
, ssp
->speed
, ssp
->parity
,
1768 ssp
->data_bits
, ssp
->stop_bits
);
1771 case CHR_IOCTL_SERIAL_SET_BREAK
:
1773 int enable
= *(int *)arg
;
1775 tcsendbreak(s
->fd_in
, 1);
1784 static CharDriverState
*qemu_chr_open_tty(const char *filename
)
1786 CharDriverState
*chr
;
1789 fd
= open(filename
, O_RDWR
| O_NONBLOCK
);
1792 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
1793 tty_serial_init(fd
, 115200, 'N', 8, 1);
1794 chr
= qemu_chr_open_fd(fd
, fd
);
1797 chr
->chr_ioctl
= tty_serial_ioctl
;
1798 qemu_chr_reset(chr
);
1802 static int pp_ioctl(CharDriverState
*chr
, int cmd
, void *arg
)
1804 int fd
= (int)chr
->opaque
;
1808 case CHR_IOCTL_PP_READ_DATA
:
1809 if (ioctl(fd
, PPRDATA
, &b
) < 0)
1811 *(uint8_t *)arg
= b
;
1813 case CHR_IOCTL_PP_WRITE_DATA
:
1814 b
= *(uint8_t *)arg
;
1815 if (ioctl(fd
, PPWDATA
, &b
) < 0)
1818 case CHR_IOCTL_PP_READ_CONTROL
:
1819 if (ioctl(fd
, PPRCONTROL
, &b
) < 0)
1821 *(uint8_t *)arg
= b
;
1823 case CHR_IOCTL_PP_WRITE_CONTROL
:
1824 b
= *(uint8_t *)arg
;
1825 if (ioctl(fd
, PPWCONTROL
, &b
) < 0)
1828 case CHR_IOCTL_PP_READ_STATUS
:
1829 if (ioctl(fd
, PPRSTATUS
, &b
) < 0)
1831 *(uint8_t *)arg
= b
;
1839 static CharDriverState
*qemu_chr_open_pp(const char *filename
)
1841 CharDriverState
*chr
;
1844 fd
= open(filename
, O_RDWR
);
1848 if (ioctl(fd
, PPCLAIM
) < 0) {
1853 chr
= qemu_mallocz(sizeof(CharDriverState
));
1858 chr
->opaque
= (void *)fd
;
1859 chr
->chr_write
= null_chr_write
;
1860 chr
->chr_ioctl
= pp_ioctl
;
1862 qemu_chr_reset(chr
);
1868 static CharDriverState
*qemu_chr_open_pty(void)
1874 #endif /* !defined(_WIN32) */
1878 CharDriverState
*chr
;
1880 HANDLE hcom
, hrecv
, hsend
;
1881 OVERLAPPED orecv
, osend
;
1886 #define NSENDBUF 2048
1887 #define NRECVBUF 2048
1888 #define MAXCONNECT 1
1889 #define NTIMEOUT 5000
1891 static int win_chr_poll(void *opaque
);
1892 static int win_chr_pipe_poll(void *opaque
);
1894 static void win_chr_close2(WinCharState
*s
)
1897 CloseHandle(s
->hsend
);
1901 CloseHandle(s
->hrecv
);
1905 CloseHandle(s
->hcom
);
1909 qemu_del_polling_cb(win_chr_pipe_poll
, s
);
1911 qemu_del_polling_cb(win_chr_poll
, s
);
1914 static void win_chr_close(CharDriverState
*chr
)
1916 WinCharState
*s
= chr
->opaque
;
1920 static int win_chr_init(WinCharState
*s
, CharDriverState
*chr
, const char *filename
)
1923 COMMTIMEOUTS cto
= { 0, 0, 0, 0, 0};
1928 s
->hsend
= CreateEvent(NULL
, TRUE
, FALSE
, NULL
);
1930 fprintf(stderr
, "Failed CreateEvent\n");
1933 s
->hrecv
= CreateEvent(NULL
, TRUE
, FALSE
, NULL
);
1935 fprintf(stderr
, "Failed CreateEvent\n");
1939 s
->hcom
= CreateFile(filename
, GENERIC_READ
|GENERIC_WRITE
, 0, NULL
,
1940 OPEN_EXISTING
, FILE_FLAG_OVERLAPPED
, 0);
1941 if (s
->hcom
== INVALID_HANDLE_VALUE
) {
1942 fprintf(stderr
, "Failed CreateFile (%lu)\n", GetLastError());
1947 if (!SetupComm(s
->hcom
, NRECVBUF
, NSENDBUF
)) {
1948 fprintf(stderr
, "Failed SetupComm\n");
1952 ZeroMemory(&comcfg
, sizeof(COMMCONFIG
));
1953 size
= sizeof(COMMCONFIG
);
1954 GetDefaultCommConfig(filename
, &comcfg
, &size
);
1955 comcfg
.dcb
.DCBlength
= sizeof(DCB
);
1956 CommConfigDialog(filename
, NULL
, &comcfg
);
1958 if (!SetCommState(s
->hcom
, &comcfg
.dcb
)) {
1959 fprintf(stderr
, "Failed SetCommState\n");
1963 if (!SetCommMask(s
->hcom
, EV_ERR
)) {
1964 fprintf(stderr
, "Failed SetCommMask\n");
1968 cto
.ReadIntervalTimeout
= MAXDWORD
;
1969 if (!SetCommTimeouts(s
->hcom
, &cto
)) {
1970 fprintf(stderr
, "Failed SetCommTimeouts\n");
1974 if (!ClearCommError(s
->hcom
, &err
, &comstat
)) {
1975 fprintf(stderr
, "Failed ClearCommError\n");
1979 qemu_add_polling_cb(win_chr_poll
, s
);
1987 static int win_chr_write(CharDriverState
*chr
, const uint8_t *buf
, int len1
)
1989 WinCharState
*s
= chr
->opaque
;
1990 DWORD len
, ret
, size
, err
;
1993 ZeroMemory(&s
->osend
, sizeof(s
->osend
));
1994 s
->osend
.hEvent
= s
->hsend
;
1997 ret
= WriteFile(s
->hcom
, buf
, len
, &size
, &s
->osend
);
1999 ret
= WriteFile(s
->hcom
, buf
, len
, &size
, NULL
);
2001 err
= GetLastError();
2002 if (err
== ERROR_IO_PENDING
) {
2003 ret
= GetOverlappedResult(s
->hcom
, &s
->osend
, &size
, TRUE
);
2021 static int win_chr_read_poll(WinCharState
*s
)
2023 s
->max_size
= qemu_chr_can_read(s
->chr
);
2027 static void win_chr_readfile(WinCharState
*s
)
2033 ZeroMemory(&s
->orecv
, sizeof(s
->orecv
));
2034 s
->orecv
.hEvent
= s
->hrecv
;
2035 ret
= ReadFile(s
->hcom
, buf
, s
->len
, &size
, &s
->orecv
);
2037 err
= GetLastError();
2038 if (err
== ERROR_IO_PENDING
) {
2039 ret
= GetOverlappedResult(s
->hcom
, &s
->orecv
, &size
, TRUE
);
2044 qemu_chr_read(s
->chr
, buf
, size
);
2048 static void win_chr_read(WinCharState
*s
)
2050 if (s
->len
> s
->max_size
)
2051 s
->len
= s
->max_size
;
2055 win_chr_readfile(s
);
2058 static int win_chr_poll(void *opaque
)
2060 WinCharState
*s
= opaque
;
2064 ClearCommError(s
->hcom
, &comerr
, &status
);
2065 if (status
.cbInQue
> 0) {
2066 s
->len
= status
.cbInQue
;
2067 win_chr_read_poll(s
);
2074 static CharDriverState
*qemu_chr_open_win(const char *filename
)
2076 CharDriverState
*chr
;
2079 chr
= qemu_mallocz(sizeof(CharDriverState
));
2082 s
= qemu_mallocz(sizeof(WinCharState
));
2088 chr
->chr_write
= win_chr_write
;
2089 chr
->chr_close
= win_chr_close
;
2091 if (win_chr_init(s
, chr
, filename
) < 0) {
2096 qemu_chr_reset(chr
);
2100 static int win_chr_pipe_poll(void *opaque
)
2102 WinCharState
*s
= opaque
;
2105 PeekNamedPipe(s
->hcom
, NULL
, 0, NULL
, &size
, NULL
);
2108 win_chr_read_poll(s
);
2115 static int win_chr_pipe_init(WinCharState
*s
, const char *filename
)
2124 s
->hsend
= CreateEvent(NULL
, TRUE
, FALSE
, NULL
);
2126 fprintf(stderr
, "Failed CreateEvent\n");
2129 s
->hrecv
= CreateEvent(NULL
, TRUE
, FALSE
, NULL
);
2131 fprintf(stderr
, "Failed CreateEvent\n");
2135 snprintf(openname
, sizeof(openname
), "\\\\.\\pipe\\%s", filename
);
2136 s
->hcom
= CreateNamedPipe(openname
, PIPE_ACCESS_DUPLEX
| FILE_FLAG_OVERLAPPED
,
2137 PIPE_TYPE_BYTE
| PIPE_READMODE_BYTE
|
2139 MAXCONNECT
, NSENDBUF
, NRECVBUF
, NTIMEOUT
, NULL
);
2140 if (s
->hcom
== INVALID_HANDLE_VALUE
) {
2141 fprintf(stderr
, "Failed CreateNamedPipe (%lu)\n", GetLastError());
2146 ZeroMemory(&ov
, sizeof(ov
));
2147 ov
.hEvent
= CreateEvent(NULL
, TRUE
, FALSE
, NULL
);
2148 ret
= ConnectNamedPipe(s
->hcom
, &ov
);
2150 fprintf(stderr
, "Failed ConnectNamedPipe\n");
2154 ret
= GetOverlappedResult(s
->hcom
, &ov
, &size
, TRUE
);
2156 fprintf(stderr
, "Failed GetOverlappedResult\n");
2158 CloseHandle(ov
.hEvent
);
2165 CloseHandle(ov
.hEvent
);
2168 qemu_add_polling_cb(win_chr_pipe_poll
, s
);
2177 static CharDriverState
*qemu_chr_open_win_pipe(const char *filename
)
2179 CharDriverState
*chr
;
2182 chr
= qemu_mallocz(sizeof(CharDriverState
));
2185 s
= qemu_mallocz(sizeof(WinCharState
));
2191 chr
->chr_write
= win_chr_write
;
2192 chr
->chr_close
= win_chr_close
;
2194 if (win_chr_pipe_init(s
, filename
) < 0) {
2199 qemu_chr_reset(chr
);
2203 static CharDriverState
*qemu_chr_open_win_file(HANDLE fd_out
)
2205 CharDriverState
*chr
;
2208 chr
= qemu_mallocz(sizeof(CharDriverState
));
2211 s
= qemu_mallocz(sizeof(WinCharState
));
2218 chr
->chr_write
= win_chr_write
;
2219 qemu_chr_reset(chr
);
2223 static CharDriverState
*qemu_chr_open_win_file_out(const char *file_out
)
2227 fd_out
= CreateFile(file_out
, GENERIC_WRITE
, FILE_SHARE_READ
, NULL
,
2228 OPEN_ALWAYS
, FILE_ATTRIBUTE_NORMAL
, NULL
);
2229 if (fd_out
== INVALID_HANDLE_VALUE
)
2232 return qemu_chr_open_win_file(fd_out
);
2236 /***********************************************************/
2237 /* UDP Net console */
2241 struct sockaddr_in daddr
;
2248 static int udp_chr_write(CharDriverState
*chr
, const uint8_t *buf
, int len
)
2250 NetCharDriver
*s
= chr
->opaque
;
2252 return sendto(s
->fd
, buf
, len
, 0,
2253 (struct sockaddr
*)&s
->daddr
, sizeof(struct sockaddr_in
));
2256 static int udp_chr_read_poll(void *opaque
)
2258 CharDriverState
*chr
= opaque
;
2259 NetCharDriver
*s
= chr
->opaque
;
2261 s
->max_size
= qemu_chr_can_read(chr
);
2263 /* If there were any stray characters in the queue process them
2266 while (s
->max_size
> 0 && s
->bufptr
< s
->bufcnt
) {
2267 qemu_chr_read(chr
, &s
->buf
[s
->bufptr
], 1);
2269 s
->max_size
= qemu_chr_can_read(chr
);
2274 static void udp_chr_read(void *opaque
)
2276 CharDriverState
*chr
= opaque
;
2277 NetCharDriver
*s
= chr
->opaque
;
2279 if (s
->max_size
== 0)
2281 s
->bufcnt
= recv(s
->fd
, s
->buf
, sizeof(s
->buf
), 0);
2282 s
->bufptr
= s
->bufcnt
;
2287 while (s
->max_size
> 0 && s
->bufptr
< s
->bufcnt
) {
2288 qemu_chr_read(chr
, &s
->buf
[s
->bufptr
], 1);
2290 s
->max_size
= qemu_chr_can_read(chr
);
2294 static void udp_chr_update_read_handler(CharDriverState
*chr
)
2296 NetCharDriver
*s
= chr
->opaque
;
2299 qemu_set_fd_handler2(s
->fd
, udp_chr_read_poll
,
2300 udp_chr_read
, NULL
, chr
);
2304 int parse_host_port(struct sockaddr_in
*saddr
, const char *str
);
2306 static int parse_unix_path(struct sockaddr_un
*uaddr
, const char *str
);
2308 int parse_host_src_port(struct sockaddr_in
*haddr
,
2309 struct sockaddr_in
*saddr
,
2312 static CharDriverState
*qemu_chr_open_udp(const char *def
)
2314 CharDriverState
*chr
= NULL
;
2315 NetCharDriver
*s
= NULL
;
2317 struct sockaddr_in saddr
;
2319 chr
= qemu_mallocz(sizeof(CharDriverState
));
2322 s
= qemu_mallocz(sizeof(NetCharDriver
));
2326 fd
= socket(PF_INET
, SOCK_DGRAM
, 0);
2328 perror("socket(PF_INET, SOCK_DGRAM)");
2332 if (parse_host_src_port(&s
->daddr
, &saddr
, def
) < 0) {
2333 printf("Could not parse: %s\n", def
);
2337 if (bind(fd
, (struct sockaddr
*)&saddr
, sizeof(saddr
)) < 0)
2347 chr
->chr_write
= udp_chr_write
;
2348 chr
->chr_update_read_handler
= udp_chr_update_read_handler
;
2361 /***********************************************************/
2362 /* TCP Net console */
2373 static void tcp_chr_accept(void *opaque
);
2375 static int tcp_chr_write(CharDriverState
*chr
, const uint8_t *buf
, int len
)
2377 TCPCharDriver
*s
= chr
->opaque
;
2379 return send_all(s
->fd
, buf
, len
);
2381 /* XXX: indicate an error ? */
2386 static int tcp_chr_read_poll(void *opaque
)
2388 CharDriverState
*chr
= opaque
;
2389 TCPCharDriver
*s
= chr
->opaque
;
2392 s
->max_size
= qemu_chr_can_read(chr
);
2397 #define IAC_BREAK 243
2398 static void tcp_chr_process_IAC_bytes(CharDriverState
*chr
,
2400 char *buf
, int *size
)
2402 /* Handle any telnet client's basic IAC options to satisfy char by
2403 * char mode with no echo. All IAC options will be removed from
2404 * the buf and the do_telnetopt variable will be used to track the
2405 * state of the width of the IAC information.
2407 * IAC commands come in sets of 3 bytes with the exception of the
2408 * "IAC BREAK" command and the double IAC.
2414 for (i
= 0; i
< *size
; i
++) {
2415 if (s
->do_telnetopt
> 1) {
2416 if ((unsigned char)buf
[i
] == IAC
&& s
->do_telnetopt
== 2) {
2417 /* Double IAC means send an IAC */
2421 s
->do_telnetopt
= 1;
2423 if ((unsigned char)buf
[i
] == IAC_BREAK
&& s
->do_telnetopt
== 2) {
2424 /* Handle IAC break commands by sending a serial break */
2425 qemu_chr_event(chr
, CHR_EVENT_BREAK
);
2430 if (s
->do_telnetopt
>= 4) {
2431 s
->do_telnetopt
= 1;
2434 if ((unsigned char)buf
[i
] == IAC
) {
2435 s
->do_telnetopt
= 2;
2446 static void tcp_chr_read(void *opaque
)
2448 CharDriverState
*chr
= opaque
;
2449 TCPCharDriver
*s
= chr
->opaque
;
2453 if (!s
->connected
|| s
->max_size
<= 0)
2456 if (len
> s
->max_size
)
2458 size
= recv(s
->fd
, buf
, len
, 0);
2460 /* connection closed */
2462 if (s
->listen_fd
>= 0) {
2463 qemu_set_fd_handler(s
->listen_fd
, tcp_chr_accept
, NULL
, chr
);
2465 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
2468 } else if (size
> 0) {
2469 if (s
->do_telnetopt
)
2470 tcp_chr_process_IAC_bytes(chr
, s
, buf
, &size
);
2472 qemu_chr_read(chr
, buf
, size
);
2476 static void tcp_chr_connect(void *opaque
)
2478 CharDriverState
*chr
= opaque
;
2479 TCPCharDriver
*s
= chr
->opaque
;
2482 qemu_set_fd_handler2(s
->fd
, tcp_chr_read_poll
,
2483 tcp_chr_read
, NULL
, chr
);
2484 qemu_chr_reset(chr
);
2487 #define IACSET(x,a,b,c) x[0] = a; x[1] = b; x[2] = c;
2488 static void tcp_chr_telnet_init(int fd
)
2491 /* Send the telnet negotion to put telnet in binary, no echo, single char mode */
2492 IACSET(buf
, 0xff, 0xfb, 0x01); /* IAC WILL ECHO */
2493 send(fd
, (char *)buf
, 3, 0);
2494 IACSET(buf
, 0xff, 0xfb, 0x03); /* IAC WILL Suppress go ahead */
2495 send(fd
, (char *)buf
, 3, 0);
2496 IACSET(buf
, 0xff, 0xfb, 0x00); /* IAC WILL Binary */
2497 send(fd
, (char *)buf
, 3, 0);
2498 IACSET(buf
, 0xff, 0xfd, 0x00); /* IAC DO Binary */
2499 send(fd
, (char *)buf
, 3, 0);
2502 static void socket_set_nodelay(int fd
)
2505 setsockopt(fd
, IPPROTO_TCP
, TCP_NODELAY
, (char *)&val
, sizeof(val
));
2508 static void tcp_chr_accept(void *opaque
)
2510 CharDriverState
*chr
= opaque
;
2511 TCPCharDriver
*s
= chr
->opaque
;
2512 struct sockaddr_in saddr
;
2514 struct sockaddr_un uaddr
;
2516 struct sockaddr
*addr
;
2523 len
= sizeof(uaddr
);
2524 addr
= (struct sockaddr
*)&uaddr
;
2528 len
= sizeof(saddr
);
2529 addr
= (struct sockaddr
*)&saddr
;
2531 fd
= accept(s
->listen_fd
, addr
, &len
);
2532 if (fd
< 0 && errno
!= EINTR
) {
2534 } else if (fd
>= 0) {
2535 if (s
->do_telnetopt
)
2536 tcp_chr_telnet_init(fd
);
2540 socket_set_nonblock(fd
);
2542 socket_set_nodelay(fd
);
2544 qemu_set_fd_handler(s
->listen_fd
, NULL
, NULL
, NULL
);
2545 tcp_chr_connect(chr
);
2548 static void tcp_chr_close(CharDriverState
*chr
)
2550 TCPCharDriver
*s
= chr
->opaque
;
2553 if (s
->listen_fd
>= 0)
2554 closesocket(s
->listen_fd
);
2558 static CharDriverState
*qemu_chr_open_tcp(const char *host_str
,
2562 CharDriverState
*chr
= NULL
;
2563 TCPCharDriver
*s
= NULL
;
2564 int fd
= -1, ret
, err
, val
;
2566 int is_waitconnect
= 1;
2569 struct sockaddr_in saddr
;
2571 struct sockaddr_un uaddr
;
2573 struct sockaddr
*addr
;
2578 addr
= (struct sockaddr
*)&uaddr
;
2579 addrlen
= sizeof(uaddr
);
2580 if (parse_unix_path(&uaddr
, host_str
) < 0)
2585 addr
= (struct sockaddr
*)&saddr
;
2586 addrlen
= sizeof(saddr
);
2587 if (parse_host_port(&saddr
, host_str
) < 0)
2592 while((ptr
= strchr(ptr
,','))) {
2594 if (!strncmp(ptr
,"server",6)) {
2596 } else if (!strncmp(ptr
,"nowait",6)) {
2598 } else if (!strncmp(ptr
,"nodelay",6)) {
2601 printf("Unknown option: %s\n", ptr
);
2608 chr
= qemu_mallocz(sizeof(CharDriverState
));
2611 s
= qemu_mallocz(sizeof(TCPCharDriver
));
2617 fd
= socket(PF_UNIX
, SOCK_STREAM
, 0);
2620 fd
= socket(PF_INET
, SOCK_STREAM
, 0);
2625 if (!is_waitconnect
)
2626 socket_set_nonblock(fd
);
2631 s
->is_unix
= is_unix
;
2632 s
->do_nodelay
= do_nodelay
&& !is_unix
;
2635 chr
->chr_write
= tcp_chr_write
;
2636 chr
->chr_close
= tcp_chr_close
;
2639 /* allow fast reuse */
2643 strncpy(path
, uaddr
.sun_path
, 108);
2650 setsockopt(fd
, SOL_SOCKET
, SO_REUSEADDR
, (const char *)&val
, sizeof(val
));
2653 ret
= bind(fd
, addr
, addrlen
);
2657 ret
= listen(fd
, 0);
2662 qemu_set_fd_handler(s
->listen_fd
, tcp_chr_accept
, NULL
, chr
);
2664 s
->do_telnetopt
= 1;
2667 ret
= connect(fd
, addr
, addrlen
);
2669 err
= socket_error();
2670 if (err
== EINTR
|| err
== EWOULDBLOCK
) {
2671 } else if (err
== EINPROGRESS
) {
2682 socket_set_nodelay(fd
);
2684 tcp_chr_connect(chr
);
2686 qemu_set_fd_handler(s
->fd
, NULL
, tcp_chr_connect
, chr
);
2689 if (is_listen
&& is_waitconnect
) {
2690 printf("QEMU waiting for connection on: %s\n", host_str
);
2691 tcp_chr_accept(chr
);
2692 socket_set_nonblock(s
->listen_fd
);
2704 CharDriverState
*qemu_chr_open(const char *filename
)
2708 if (!strcmp(filename
, "vc")) {
2709 return text_console_init(&display_state
);
2710 } else if (!strcmp(filename
, "null")) {
2711 return qemu_chr_open_null();
2713 if (strstart(filename
, "tcp:", &p
)) {
2714 return qemu_chr_open_tcp(p
, 0, 0);
2716 if (strstart(filename
, "telnet:", &p
)) {
2717 return qemu_chr_open_tcp(p
, 1, 0);
2719 if (strstart(filename
, "udp:", &p
)) {
2720 return qemu_chr_open_udp(p
);
2723 if (strstart(filename
, "unix:", &p
)) {
2724 return qemu_chr_open_tcp(p
, 0, 1);
2725 } else if (strstart(filename
, "file:", &p
)) {
2726 return qemu_chr_open_file_out(p
);
2727 } else if (strstart(filename
, "pipe:", &p
)) {
2728 return qemu_chr_open_pipe(p
);
2729 } else if (!strcmp(filename
, "pty")) {
2730 return qemu_chr_open_pty();
2731 } else if (!strcmp(filename
, "stdio")) {
2732 return qemu_chr_open_stdio();
2735 #if defined(__linux__)
2736 if (strstart(filename
, "/dev/parport", NULL
)) {
2737 return qemu_chr_open_pp(filename
);
2739 if (strstart(filename
, "/dev/", NULL
)) {
2740 return qemu_chr_open_tty(filename
);
2744 if (strstart(filename
, "COM", NULL
)) {
2745 return qemu_chr_open_win(filename
);
2747 if (strstart(filename
, "pipe:", &p
)) {
2748 return qemu_chr_open_win_pipe(p
);
2750 if (strstart(filename
, "file:", &p
)) {
2751 return qemu_chr_open_win_file_out(p
);
2759 void qemu_chr_close(CharDriverState
*chr
)
2762 chr
->chr_close(chr
);
2765 /***********************************************************/
2766 /* network device redirectors */
2768 void hex_dump(FILE *f
, const uint8_t *buf
, int size
)
2772 for(i
=0;i
<size
;i
+=16) {
2776 fprintf(f
, "%08x ", i
);
2779 fprintf(f
, " %02x", buf
[i
+j
]);
2784 for(j
=0;j
<len
;j
++) {
2786 if (c
< ' ' || c
> '~')
2788 fprintf(f
, "%c", c
);
2794 static int parse_macaddr(uint8_t *macaddr
, const char *p
)
2797 for(i
= 0; i
< 6; i
++) {
2798 macaddr
[i
] = strtol(p
, (char **)&p
, 16);
2811 static int get_str_sep(char *buf
, int buf_size
, const char **pp
, int sep
)
2816 p1
= strchr(p
, sep
);
2822 if (len
> buf_size
- 1)
2824 memcpy(buf
, p
, len
);
2831 int parse_host_src_port(struct sockaddr_in
*haddr
,
2832 struct sockaddr_in
*saddr
,
2833 const char *input_str
)
2835 char *str
= strdup(input_str
);
2836 char *host_str
= str
;
2841 * Chop off any extra arguments at the end of the string which
2842 * would start with a comma, then fill in the src port information
2843 * if it was provided else use the "any address" and "any port".
2845 if ((ptr
= strchr(str
,',')))
2848 if ((src_str
= strchr(input_str
,'@'))) {
2853 if (parse_host_port(haddr
, host_str
) < 0)
2856 if (!src_str
|| *src_str
== '\0')
2859 if (parse_host_port(saddr
, src_str
) < 0)
2870 int parse_host_port(struct sockaddr_in
*saddr
, const char *str
)
2878 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0)
2880 saddr
->sin_family
= AF_INET
;
2881 if (buf
[0] == '\0') {
2882 saddr
->sin_addr
.s_addr
= 0;
2884 if (isdigit(buf
[0])) {
2885 if (!inet_aton(buf
, &saddr
->sin_addr
))
2888 if ((he
= gethostbyname(buf
)) == NULL
)
2890 saddr
->sin_addr
= *(struct in_addr
*)he
->h_addr
;
2893 port
= strtol(p
, (char **)&r
, 0);
2896 saddr
->sin_port
= htons(port
);
2901 static int parse_unix_path(struct sockaddr_un
*uaddr
, const char *str
)
2906 len
= MIN(108, strlen(str
));
2907 p
= strchr(str
, ',');
2909 len
= MIN(len
, p
- str
);
2911 memset(uaddr
, 0, sizeof(*uaddr
));
2913 uaddr
->sun_family
= AF_UNIX
;
2914 memcpy(uaddr
->sun_path
, str
, len
);
2920 /* find or alloc a new VLAN */
2921 VLANState
*qemu_find_vlan(int id
)
2923 VLANState
**pvlan
, *vlan
;
2924 for(vlan
= first_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
2928 vlan
= qemu_mallocz(sizeof(VLANState
));
2933 pvlan
= &first_vlan
;
2934 while (*pvlan
!= NULL
)
2935 pvlan
= &(*pvlan
)->next
;
2940 VLANClientState
*qemu_new_vlan_client(VLANState
*vlan
,
2941 IOReadHandler
*fd_read
,
2942 IOCanRWHandler
*fd_can_read
,
2945 VLANClientState
*vc
, **pvc
;
2946 vc
= qemu_mallocz(sizeof(VLANClientState
));
2949 vc
->fd_read
= fd_read
;
2950 vc
->fd_can_read
= fd_can_read
;
2951 vc
->opaque
= opaque
;
2955 pvc
= &vlan
->first_client
;
2956 while (*pvc
!= NULL
)
2957 pvc
= &(*pvc
)->next
;
2962 int qemu_can_send_packet(VLANClientState
*vc1
)
2964 VLANState
*vlan
= vc1
->vlan
;
2965 VLANClientState
*vc
;
2967 for(vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
) {
2969 if (vc
->fd_can_read
&& !vc
->fd_can_read(vc
->opaque
))
2976 void qemu_send_packet(VLANClientState
*vc1
, const uint8_t *buf
, int size
)
2978 VLANState
*vlan
= vc1
->vlan
;
2979 VLANClientState
*vc
;
2982 printf("vlan %d send:\n", vlan
->id
);
2983 hex_dump(stdout
, buf
, size
);
2985 for(vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
) {
2987 vc
->fd_read(vc
->opaque
, buf
, size
);
2992 #if defined(CONFIG_SLIRP)
2994 /* slirp network adapter */
2996 static int slirp_inited
;
2997 static VLANClientState
*slirp_vc
;
2999 int slirp_can_output(void)
3001 return !slirp_vc
|| qemu_can_send_packet(slirp_vc
);
3004 void slirp_output(const uint8_t *pkt
, int pkt_len
)
3007 printf("slirp output:\n");
3008 hex_dump(stdout
, pkt
, pkt_len
);
3012 qemu_send_packet(slirp_vc
, pkt
, pkt_len
);
3015 static void slirp_receive(void *opaque
, const uint8_t *buf
, int size
)
3018 printf("slirp input:\n");
3019 hex_dump(stdout
, buf
, size
);
3021 slirp_input(buf
, size
);
3024 static int net_slirp_init(VLANState
*vlan
)
3026 if (!slirp_inited
) {
3030 slirp_vc
= qemu_new_vlan_client(vlan
,
3031 slirp_receive
, NULL
, NULL
);
3032 snprintf(slirp_vc
->info_str
, sizeof(slirp_vc
->info_str
), "user redirector");
3036 static void net_slirp_redir(const char *redir_str
)
3041 struct in_addr guest_addr
;
3042 int host_port
, guest_port
;
3044 if (!slirp_inited
) {
3050 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0)
3052 if (!strcmp(buf
, "tcp")) {
3054 } else if (!strcmp(buf
, "udp")) {
3060 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0)
3062 host_port
= strtol(buf
, &r
, 0);
3066 if (get_str_sep(buf
, sizeof(buf
), &p
, ':') < 0)
3068 if (buf
[0] == '\0') {
3069 pstrcpy(buf
, sizeof(buf
), "10.0.2.15");
3071 if (!inet_aton(buf
, &guest_addr
))
3074 guest_port
= strtol(p
, &r
, 0);
3078 if (slirp_redir(is_udp
, host_port
, guest_addr
, guest_port
) < 0) {
3079 fprintf(stderr
, "qemu: could not set up redirection\n");
3084 fprintf(stderr
, "qemu: syntax: -redir [tcp|udp]:host-port:[guest-host]:guest-port\n");
3092 static void smb_exit(void)
3096 char filename
[1024];
3098 /* erase all the files in the directory */
3099 d
= opendir(smb_dir
);
3104 if (strcmp(de
->d_name
, ".") != 0 &&
3105 strcmp(de
->d_name
, "..") != 0) {
3106 snprintf(filename
, sizeof(filename
), "%s/%s",
3107 smb_dir
, de
->d_name
);
3115 /* automatic user mode samba server configuration */
3116 void net_slirp_smb(const char *exported_dir
)
3118 char smb_conf
[1024];
3119 char smb_cmdline
[1024];
3122 if (!slirp_inited
) {
3127 /* XXX: better tmp dir construction */
3128 snprintf(smb_dir
, sizeof(smb_dir
), "/tmp/qemu-smb.%d", getpid());
3129 if (mkdir(smb_dir
, 0700) < 0) {
3130 fprintf(stderr
, "qemu: could not create samba server dir '%s'\n", smb_dir
);
3133 snprintf(smb_conf
, sizeof(smb_conf
), "%s/%s", smb_dir
, "smb.conf");
3135 f
= fopen(smb_conf
, "w");
3137 fprintf(stderr
, "qemu: could not create samba server configuration file '%s'\n", smb_conf
);
3144 "socket address=127.0.0.1\n"
3145 "pid directory=%s\n"
3146 "lock directory=%s\n"
3147 "log file=%s/log.smbd\n"
3148 "smb passwd file=%s/smbpasswd\n"
3149 "security = share\n"
3164 snprintf(smb_cmdline
, sizeof(smb_cmdline
), "%s -s %s",
3165 SMBD_COMMAND
, smb_conf
);
3167 slirp_add_exec(0, smb_cmdline
, 4, 139);
3170 #endif /* !defined(_WIN32) */
3172 #endif /* CONFIG_SLIRP */
3174 #if !defined(_WIN32)
3176 typedef struct TAPState
{
3177 VLANClientState
*vc
;
3181 static void tap_receive(void *opaque
, const uint8_t *buf
, int size
)
3183 TAPState
*s
= opaque
;
3186 ret
= write(s
->fd
, buf
, size
);
3187 if (ret
< 0 && (errno
== EINTR
|| errno
== EAGAIN
)) {
3194 static void tap_send(void *opaque
)
3196 TAPState
*s
= opaque
;
3200 size
= read(s
->fd
, buf
, sizeof(buf
));
3202 qemu_send_packet(s
->vc
, buf
, size
);
3208 static TAPState
*net_tap_fd_init(VLANState
*vlan
, int fd
)
3212 s
= qemu_mallocz(sizeof(TAPState
));
3216 s
->vc
= qemu_new_vlan_client(vlan
, tap_receive
, NULL
, s
);
3217 qemu_set_fd_handler(s
->fd
, tap_send
, NULL
, s
);
3218 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
), "tap: fd=%d", fd
);
3223 static int tap_open(char *ifname
, int ifname_size
)
3229 fd
= open("/dev/tap", O_RDWR
);
3231 fprintf(stderr
, "warning: could not open /dev/tap: no virtual network emulation\n");
3236 dev
= devname(s
.st_rdev
, S_IFCHR
);
3237 pstrcpy(ifname
, ifname_size
, dev
);
3239 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
3242 #elif defined(__sun__)
3243 static int tap_open(char *ifname
, int ifname_size
)
3245 fprintf(stderr
, "warning: tap_open not yet implemented\n");
3249 static int tap_open(char *ifname
, int ifname_size
)
3254 fd
= open("/dev/net/tun", O_RDWR
);
3256 fprintf(stderr
, "warning: could not open /dev/net/tun: no virtual network emulation\n");
3259 memset(&ifr
, 0, sizeof(ifr
));
3260 ifr
.ifr_flags
= IFF_TAP
| IFF_NO_PI
;
3261 if (ifname
[0] != '\0')
3262 pstrcpy(ifr
.ifr_name
, IFNAMSIZ
, ifname
);
3264 pstrcpy(ifr
.ifr_name
, IFNAMSIZ
, "tap%d");
3265 ret
= ioctl(fd
, TUNSETIFF
, (void *) &ifr
);
3267 fprintf(stderr
, "warning: could not configure /dev/net/tun: no virtual network emulation\n");
3271 pstrcpy(ifname
, ifname_size
, ifr
.ifr_name
);
3272 fcntl(fd
, F_SETFL
, O_NONBLOCK
);
3277 static int net_tap_init(VLANState
*vlan
, const char *ifname1
,
3278 const char *setup_script
)
3281 int pid
, status
, fd
;
3286 if (ifname1
!= NULL
)
3287 pstrcpy(ifname
, sizeof(ifname
), ifname1
);
3290 fd
= tap_open(ifname
, sizeof(ifname
));
3294 if (!setup_script
|| !strcmp(setup_script
, "no"))
3296 if (setup_script
[0] != '\0') {
3297 /* try to launch network init script */
3302 *parg
++ = (char *)setup_script
;
3305 execv(setup_script
, args
);
3308 while (waitpid(pid
, &status
, 0) != pid
);
3309 if (!WIFEXITED(status
) ||
3310 WEXITSTATUS(status
) != 0) {
3311 fprintf(stderr
, "%s: could not launch network script\n",
3317 s
= net_tap_fd_init(vlan
, fd
);
3320 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
3321 "tap: ifname=%s setup_script=%s", ifname
, setup_script
);
3325 #endif /* !_WIN32 */
3327 /* network connection */
3328 typedef struct NetSocketState
{
3329 VLANClientState
*vc
;
3331 int state
; /* 0 = getting length, 1 = getting data */
3335 struct sockaddr_in dgram_dst
; /* contains inet host and port destination iff connectionless (SOCK_DGRAM) */
3338 typedef struct NetSocketListenState
{
3341 } NetSocketListenState
;
3343 /* XXX: we consider we can send the whole packet without blocking */
3344 static void net_socket_receive(void *opaque
, const uint8_t *buf
, int size
)
3346 NetSocketState
*s
= opaque
;
3350 send_all(s
->fd
, (const uint8_t *)&len
, sizeof(len
));
3351 send_all(s
->fd
, buf
, size
);
3354 static void net_socket_receive_dgram(void *opaque
, const uint8_t *buf
, int size
)
3356 NetSocketState
*s
= opaque
;
3357 sendto(s
->fd
, buf
, size
, 0,
3358 (struct sockaddr
*)&s
->dgram_dst
, sizeof(s
->dgram_dst
));
3361 static void net_socket_send(void *opaque
)
3363 NetSocketState
*s
= opaque
;
3368 size
= recv(s
->fd
, buf1
, sizeof(buf1
), 0);
3370 err
= socket_error();
3371 if (err
!= EWOULDBLOCK
)
3373 } else if (size
== 0) {
3374 /* end of connection */
3376 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
3382 /* reassemble a packet from the network */
3388 memcpy(s
->buf
+ s
->index
, buf
, l
);
3392 if (s
->index
== 4) {
3394 s
->packet_len
= ntohl(*(uint32_t *)s
->buf
);
3400 l
= s
->packet_len
- s
->index
;
3403 memcpy(s
->buf
+ s
->index
, buf
, l
);
3407 if (s
->index
>= s
->packet_len
) {
3408 qemu_send_packet(s
->vc
, s
->buf
, s
->packet_len
);
3417 static void net_socket_send_dgram(void *opaque
)
3419 NetSocketState
*s
= opaque
;
3422 size
= recv(s
->fd
, s
->buf
, sizeof(s
->buf
), 0);
3426 /* end of connection */
3427 qemu_set_fd_handler(s
->fd
, NULL
, NULL
, NULL
);
3430 qemu_send_packet(s
->vc
, s
->buf
, size
);
3433 static int net_socket_mcast_create(struct sockaddr_in
*mcastaddr
)
3438 if (!IN_MULTICAST(ntohl(mcastaddr
->sin_addr
.s_addr
))) {
3439 fprintf(stderr
, "qemu: error: specified mcastaddr \"%s\" (0x%08x) does not contain a multicast address\n",
3440 inet_ntoa(mcastaddr
->sin_addr
),
3441 (int)ntohl(mcastaddr
->sin_addr
.s_addr
));
3445 fd
= socket(PF_INET
, SOCK_DGRAM
, 0);
3447 perror("socket(PF_INET, SOCK_DGRAM)");
3452 ret
=setsockopt(fd
, SOL_SOCKET
, SO_REUSEADDR
,
3453 (const char *)&val
, sizeof(val
));
3455 perror("setsockopt(SOL_SOCKET, SO_REUSEADDR)");
3459 ret
= bind(fd
, (struct sockaddr
*)mcastaddr
, sizeof(*mcastaddr
));
3465 /* Add host to multicast group */
3466 imr
.imr_multiaddr
= mcastaddr
->sin_addr
;
3467 imr
.imr_interface
.s_addr
= htonl(INADDR_ANY
);
3469 ret
= setsockopt(fd
, IPPROTO_IP
, IP_ADD_MEMBERSHIP
,
3470 (const char *)&imr
, sizeof(struct ip_mreq
));
3472 perror("setsockopt(IP_ADD_MEMBERSHIP)");
3476 /* Force mcast msgs to loopback (eg. several QEMUs in same host */
3478 ret
=setsockopt(fd
, IPPROTO_IP
, IP_MULTICAST_LOOP
,
3479 (const char *)&val
, sizeof(val
));
3481 perror("setsockopt(SOL_IP, IP_MULTICAST_LOOP)");
3485 socket_set_nonblock(fd
);
3493 static NetSocketState
*net_socket_fd_init_dgram(VLANState
*vlan
, int fd
,
3496 struct sockaddr_in saddr
;
3498 socklen_t saddr_len
;
3501 /* fd passed: multicast: "learn" dgram_dst address from bound address and save it
3502 * Because this may be "shared" socket from a "master" process, datagrams would be recv()
3503 * by ONLY ONE process: we must "clone" this dgram socket --jjo
3507 if (getsockname(fd
, (struct sockaddr
*) &saddr
, &saddr_len
) == 0) {
3509 if (saddr
.sin_addr
.s_addr
==0) {
3510 fprintf(stderr
, "qemu: error: init_dgram: fd=%d unbound, cannot setup multicast dst addr\n",
3514 /* clone dgram socket */
3515 newfd
= net_socket_mcast_create(&saddr
);
3517 /* error already reported by net_socket_mcast_create() */
3521 /* clone newfd to fd, close newfd */
3526 fprintf(stderr
, "qemu: error: init_dgram: fd=%d failed getsockname(): %s\n",
3527 fd
, strerror(errno
));
3532 s
= qemu_mallocz(sizeof(NetSocketState
));
3537 s
->vc
= qemu_new_vlan_client(vlan
, net_socket_receive_dgram
, NULL
, s
);
3538 qemu_set_fd_handler(s
->fd
, net_socket_send_dgram
, NULL
, s
);
3540 /* mcast: save bound address as dst */
3541 if (is_connected
) s
->dgram_dst
=saddr
;
3543 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
3544 "socket: fd=%d (%s mcast=%s:%d)",
3545 fd
, is_connected
? "cloned" : "",
3546 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
3550 static void net_socket_connect(void *opaque
)
3552 NetSocketState
*s
= opaque
;
3553 qemu_set_fd_handler(s
->fd
, net_socket_send
, NULL
, s
);
3556 static NetSocketState
*net_socket_fd_init_stream(VLANState
*vlan
, int fd
,
3560 s
= qemu_mallocz(sizeof(NetSocketState
));
3564 s
->vc
= qemu_new_vlan_client(vlan
,
3565 net_socket_receive
, NULL
, s
);
3566 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
3567 "socket: fd=%d", fd
);
3569 net_socket_connect(s
);
3571 qemu_set_fd_handler(s
->fd
, NULL
, net_socket_connect
, s
);
3576 static NetSocketState
*net_socket_fd_init(VLANState
*vlan
, int fd
,
3579 int so_type
=-1, optlen
=sizeof(so_type
);
3581 if(getsockopt(fd
, SOL_SOCKET
, SO_TYPE
, (char *)&so_type
, &optlen
)< 0) {
3582 fprintf(stderr
, "qemu: error: setsockopt(SO_TYPE) for fd=%d failed\n", fd
);
3587 return net_socket_fd_init_dgram(vlan
, fd
, is_connected
);
3589 return net_socket_fd_init_stream(vlan
, fd
, is_connected
);
3591 /* who knows ... this could be a eg. a pty, do warn and continue as stream */
3592 fprintf(stderr
, "qemu: warning: socket type=%d for fd=%d is not SOCK_DGRAM or SOCK_STREAM\n", so_type
, fd
);
3593 return net_socket_fd_init_stream(vlan
, fd
, is_connected
);
3598 static void net_socket_accept(void *opaque
)
3600 NetSocketListenState
*s
= opaque
;
3602 struct sockaddr_in saddr
;
3607 len
= sizeof(saddr
);
3608 fd
= accept(s
->fd
, (struct sockaddr
*)&saddr
, &len
);
3609 if (fd
< 0 && errno
!= EINTR
) {
3611 } else if (fd
>= 0) {
3615 s1
= net_socket_fd_init(s
->vlan
, fd
, 1);
3619 snprintf(s1
->vc
->info_str
, sizeof(s1
->vc
->info_str
),
3620 "socket: connection from %s:%d",
3621 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
3625 static int net_socket_listen_init(VLANState
*vlan
, const char *host_str
)
3627 NetSocketListenState
*s
;
3629 struct sockaddr_in saddr
;
3631 if (parse_host_port(&saddr
, host_str
) < 0)
3634 s
= qemu_mallocz(sizeof(NetSocketListenState
));
3638 fd
= socket(PF_INET
, SOCK_STREAM
, 0);
3643 socket_set_nonblock(fd
);
3645 /* allow fast reuse */
3647 setsockopt(fd
, SOL_SOCKET
, SO_REUSEADDR
, (const char *)&val
, sizeof(val
));
3649 ret
= bind(fd
, (struct sockaddr
*)&saddr
, sizeof(saddr
));
3654 ret
= listen(fd
, 0);
3661 qemu_set_fd_handler(fd
, net_socket_accept
, NULL
, s
);
3665 static int net_socket_connect_init(VLANState
*vlan
, const char *host_str
)
3668 int fd
, connected
, ret
, err
;
3669 struct sockaddr_in saddr
;
3671 if (parse_host_port(&saddr
, host_str
) < 0)
3674 fd
= socket(PF_INET
, SOCK_STREAM
, 0);
3679 socket_set_nonblock(fd
);
3683 ret
= connect(fd
, (struct sockaddr
*)&saddr
, sizeof(saddr
));
3685 err
= socket_error();
3686 if (err
== EINTR
|| err
== EWOULDBLOCK
) {
3687 } else if (err
== EINPROGRESS
) {
3699 s
= net_socket_fd_init(vlan
, fd
, connected
);
3702 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
3703 "socket: connect to %s:%d",
3704 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
3708 static int net_socket_mcast_init(VLANState
*vlan
, const char *host_str
)
3712 struct sockaddr_in saddr
;
3714 if (parse_host_port(&saddr
, host_str
) < 0)
3718 fd
= net_socket_mcast_create(&saddr
);
3722 s
= net_socket_fd_init(vlan
, fd
, 0);
3726 s
->dgram_dst
= saddr
;
3728 snprintf(s
->vc
->info_str
, sizeof(s
->vc
->info_str
),
3729 "socket: mcast=%s:%d",
3730 inet_ntoa(saddr
.sin_addr
), ntohs(saddr
.sin_port
));
3735 static int get_param_value(char *buf
, int buf_size
,
3736 const char *tag
, const char *str
)
3745 while (*p
!= '\0' && *p
!= '=') {
3746 if ((q
- option
) < sizeof(option
) - 1)
3754 if (!strcmp(tag
, option
)) {
3756 while (*p
!= '\0' && *p
!= ',') {
3757 if ((q
- buf
) < buf_size
- 1)
3764 while (*p
!= '\0' && *p
!= ',') {
3775 static int net_client_init(const char *str
)
3786 while (*p
!= '\0' && *p
!= ',') {
3787 if ((q
- device
) < sizeof(device
) - 1)
3795 if (get_param_value(buf
, sizeof(buf
), "vlan", p
)) {
3796 vlan_id
= strtol(buf
, NULL
, 0);
3798 vlan
= qemu_find_vlan(vlan_id
);
3800 fprintf(stderr
, "Could not create vlan %d\n", vlan_id
);
3803 if (!strcmp(device
, "nic")) {
3807 if (nb_nics
>= MAX_NICS
) {
3808 fprintf(stderr
, "Too Many NICs\n");
3811 nd
= &nd_table
[nb_nics
];
3812 macaddr
= nd
->macaddr
;
3818 macaddr
[5] = 0x56 + nb_nics
;
3820 if (get_param_value(buf
, sizeof(buf
), "macaddr", p
)) {
3821 if (parse_macaddr(macaddr
, buf
) < 0) {
3822 fprintf(stderr
, "invalid syntax for ethernet address\n");
3826 if (get_param_value(buf
, sizeof(buf
), "model", p
)) {
3827 nd
->model
= strdup(buf
);
3833 if (!strcmp(device
, "none")) {
3834 /* does nothing. It is needed to signal that no network cards
3839 if (!strcmp(device
, "user")) {
3840 if (get_param_value(buf
, sizeof(buf
), "hostname", p
)) {
3841 pstrcpy(slirp_hostname
, sizeof(slirp_hostname
), buf
);
3843 ret
= net_slirp_init(vlan
);
3847 if (!strcmp(device
, "tap")) {
3849 if (get_param_value(ifname
, sizeof(ifname
), "ifname", p
) <= 0) {
3850 fprintf(stderr
, "tap: no interface name\n");
3853 ret
= tap_win32_init(vlan
, ifname
);
3856 if (!strcmp(device
, "tap")) {
3858 char setup_script
[1024];
3860 if (get_param_value(buf
, sizeof(buf
), "fd", p
) > 0) {
3861 fd
= strtol(buf
, NULL
, 0);
3863 if (net_tap_fd_init(vlan
, fd
))
3866 if (get_param_value(ifname
, sizeof(ifname
), "ifname", p
) <= 0) {
3869 if (get_param_value(setup_script
, sizeof(setup_script
), "script", p
) == 0) {
3870 pstrcpy(setup_script
, sizeof(setup_script
), DEFAULT_NETWORK_SCRIPT
);
3872 ret
= net_tap_init(vlan
, ifname
, setup_script
);
3876 if (!strcmp(device
, "socket")) {
3877 if (get_param_value(buf
, sizeof(buf
), "fd", p
) > 0) {
3879 fd
= strtol(buf
, NULL
, 0);
3881 if (net_socket_fd_init(vlan
, fd
, 1))
3883 } else if (get_param_value(buf
, sizeof(buf
), "listen", p
) > 0) {
3884 ret
= net_socket_listen_init(vlan
, buf
);
3885 } else if (get_param_value(buf
, sizeof(buf
), "connect", p
) > 0) {
3886 ret
= net_socket_connect_init(vlan
, buf
);
3887 } else if (get_param_value(buf
, sizeof(buf
), "mcast", p
) > 0) {
3888 ret
= net_socket_mcast_init(vlan
, buf
);
3890 fprintf(stderr
, "Unknown socket options: %s\n", p
);
3895 fprintf(stderr
, "Unknown network device: %s\n", device
);
3899 fprintf(stderr
, "Could not initialize device '%s'\n", device
);
3905 void do_info_network(void)
3908 VLANClientState
*vc
;
3910 for(vlan
= first_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
3911 term_printf("VLAN %d devices:\n", vlan
->id
);
3912 for(vc
= vlan
->first_client
; vc
!= NULL
; vc
= vc
->next
)
3913 term_printf(" %s\n", vc
->info_str
);
3917 /***********************************************************/
3920 static USBPort
*used_usb_ports
;
3921 static USBPort
*free_usb_ports
;
3923 /* ??? Maybe change this to register a hub to keep track of the topology. */
3924 void qemu_register_usb_port(USBPort
*port
, void *opaque
, int index
,
3925 usb_attachfn attach
)
3927 port
->opaque
= opaque
;
3928 port
->index
= index
;
3929 port
->attach
= attach
;
3930 port
->next
= free_usb_ports
;
3931 free_usb_ports
= port
;
3934 static int usb_device_add(const char *devname
)
3940 if (!free_usb_ports
)
3943 if (strstart(devname
, "host:", &p
)) {
3944 dev
= usb_host_device_open(p
);
3945 } else if (!strcmp(devname
, "mouse")) {
3946 dev
= usb_mouse_init();
3947 } else if (!strcmp(devname
, "tablet")) {
3948 dev
= usb_tablet_init();
3949 } else if (strstart(devname
, "disk:", &p
)) {
3950 dev
= usb_msd_init(p
);
3957 /* Find a USB port to add the device to. */
3958 port
= free_usb_ports
;
3962 /* Create a new hub and chain it on. */
3963 free_usb_ports
= NULL
;
3964 port
->next
= used_usb_ports
;
3965 used_usb_ports
= port
;
3967 hub
= usb_hub_init(VM_USB_HUB_SIZE
);
3968 usb_attach(port
, hub
);
3969 port
= free_usb_ports
;
3972 free_usb_ports
= port
->next
;
3973 port
->next
= used_usb_ports
;
3974 used_usb_ports
= port
;
3975 usb_attach(port
, dev
);
3979 static int usb_device_del(const char *devname
)
3987 if (!used_usb_ports
)
3990 p
= strchr(devname
, '.');
3993 bus_num
= strtoul(devname
, NULL
, 0);
3994 addr
= strtoul(p
+ 1, NULL
, 0);
3998 lastp
= &used_usb_ports
;
3999 port
= used_usb_ports
;
4000 while (port
&& port
->dev
->addr
!= addr
) {
4001 lastp
= &port
->next
;
4009 *lastp
= port
->next
;
4010 usb_attach(port
, NULL
);
4011 dev
->handle_destroy(dev
);
4012 port
->next
= free_usb_ports
;
4013 free_usb_ports
= port
;
4017 void do_usb_add(const char *devname
)
4020 ret
= usb_device_add(devname
);
4022 term_printf("Could not add USB device '%s'\n", devname
);
4025 void do_usb_del(const char *devname
)
4028 ret
= usb_device_del(devname
);
4030 term_printf("Could not remove USB device '%s'\n", devname
);
4037 const char *speed_str
;
4040 term_printf("USB support not enabled\n");
4044 for (port
= used_usb_ports
; port
; port
= port
->next
) {
4048 switch(dev
->speed
) {
4052 case USB_SPEED_FULL
:
4055 case USB_SPEED_HIGH
:
4062 term_printf(" Device %d.%d, Speed %s Mb/s, Product %s\n",
4063 0, dev
->addr
, speed_str
, dev
->devname
);
4067 /***********************************************************/
4070 static char *pid_filename
;
4072 /* Remove PID file. Called on normal exit */
4074 static void remove_pidfile(void)
4076 unlink (pid_filename
);
4079 static void create_pidfile(const char *filename
)
4081 struct stat pidstat
;
4084 /* Try to write our PID to the named file */
4085 if (stat(filename
, &pidstat
) < 0) {
4086 if (errno
== ENOENT
) {
4087 if ((f
= fopen (filename
, "w")) == NULL
) {
4088 perror("Opening pidfile");
4091 fprintf(f
, "%d\n", getpid());
4093 pid_filename
= qemu_strdup(filename
);
4094 if (!pid_filename
) {
4095 fprintf(stderr
, "Could not save PID filename");
4098 atexit(remove_pidfile
);
4101 fprintf(stderr
, "%s already exists. Remove it and try again.\n",
4107 /***********************************************************/
4110 static void dumb_update(DisplayState
*ds
, int x
, int y
, int w
, int h
)
4114 static void dumb_resize(DisplayState
*ds
, int w
, int h
)
4118 static void dumb_refresh(DisplayState
*ds
)
4123 void dumb_display_init(DisplayState
*ds
)
4128 ds
->dpy_update
= dumb_update
;
4129 ds
->dpy_resize
= dumb_resize
;
4130 ds
->dpy_refresh
= dumb_refresh
;
4133 /***********************************************************/
4136 #define MAX_IO_HANDLERS 64
4138 typedef struct IOHandlerRecord
{
4140 IOCanRWHandler
*fd_read_poll
;
4142 IOHandler
*fd_write
;
4144 /* temporary data */
4146 struct IOHandlerRecord
*next
;
4149 static IOHandlerRecord
*first_io_handler
;
4151 /* XXX: fd_read_poll should be suppressed, but an API change is
4152 necessary in the character devices to suppress fd_can_read(). */
4153 int qemu_set_fd_handler2(int fd
,
4154 IOCanRWHandler
*fd_read_poll
,
4156 IOHandler
*fd_write
,
4159 IOHandlerRecord
**pioh
, *ioh
;
4161 if (!fd_read
&& !fd_write
) {
4162 pioh
= &first_io_handler
;
4167 if (ioh
->fd
== fd
) {
4175 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
4179 ioh
= qemu_mallocz(sizeof(IOHandlerRecord
));
4182 ioh
->next
= first_io_handler
;
4183 first_io_handler
= ioh
;
4186 ioh
->fd_read_poll
= fd_read_poll
;
4187 ioh
->fd_read
= fd_read
;
4188 ioh
->fd_write
= fd_write
;
4189 ioh
->opaque
= opaque
;
4194 int qemu_set_fd_handler(int fd
,
4196 IOHandler
*fd_write
,
4199 return qemu_set_fd_handler2(fd
, NULL
, fd_read
, fd_write
, opaque
);
4202 /***********************************************************/
4203 /* Polling handling */
4205 typedef struct PollingEntry
{
4208 struct PollingEntry
*next
;
4211 static PollingEntry
*first_polling_entry
;
4213 int qemu_add_polling_cb(PollingFunc
*func
, void *opaque
)
4215 PollingEntry
**ppe
, *pe
;
4216 pe
= qemu_mallocz(sizeof(PollingEntry
));
4220 pe
->opaque
= opaque
;
4221 for(ppe
= &first_polling_entry
; *ppe
!= NULL
; ppe
= &(*ppe
)->next
);
4226 void qemu_del_polling_cb(PollingFunc
*func
, void *opaque
)
4228 PollingEntry
**ppe
, *pe
;
4229 for(ppe
= &first_polling_entry
; *ppe
!= NULL
; ppe
= &(*ppe
)->next
) {
4231 if (pe
->func
== func
&& pe
->opaque
== opaque
) {
4240 /***********************************************************/
4241 /* Wait objects support */
4242 typedef struct WaitObjects
{
4244 HANDLE events
[MAXIMUM_WAIT_OBJECTS
+ 1];
4245 WaitObjectFunc
*func
[MAXIMUM_WAIT_OBJECTS
+ 1];
4246 void *opaque
[MAXIMUM_WAIT_OBJECTS
+ 1];
4249 static WaitObjects wait_objects
= {0};
4251 int qemu_add_wait_object(HANDLE handle
, WaitObjectFunc
*func
, void *opaque
)
4253 WaitObjects
*w
= &wait_objects
;
4255 if (w
->num
>= MAXIMUM_WAIT_OBJECTS
)
4257 w
->events
[w
->num
] = handle
;
4258 w
->func
[w
->num
] = func
;
4259 w
->opaque
[w
->num
] = opaque
;
4264 void qemu_del_wait_object(HANDLE handle
, WaitObjectFunc
*func
, void *opaque
)
4267 WaitObjects
*w
= &wait_objects
;
4270 for (i
= 0; i
< w
->num
; i
++) {
4271 if (w
->events
[i
] == handle
)
4274 w
->events
[i
] = w
->events
[i
+ 1];
4275 w
->func
[i
] = w
->func
[i
+ 1];
4276 w
->opaque
[i
] = w
->opaque
[i
+ 1];
4284 /***********************************************************/
4285 /* savevm/loadvm support */
4287 #define IO_BUF_SIZE 32768
4291 BlockDriverState
*bs
;
4294 int64_t base_offset
;
4295 int64_t buf_offset
; /* start of buffer when writing, end of buffer
4298 int buf_size
; /* 0 when writing */
4299 uint8_t buf
[IO_BUF_SIZE
];
4302 QEMUFile
*qemu_fopen(const char *filename
, const char *mode
)
4306 f
= qemu_mallocz(sizeof(QEMUFile
));
4309 if (!strcmp(mode
, "wb")) {
4311 } else if (!strcmp(mode
, "rb")) {
4316 f
->outfile
= fopen(filename
, mode
);
4328 QEMUFile
*qemu_fopen_bdrv(BlockDriverState
*bs
, int64_t offset
, int is_writable
)
4332 f
= qemu_mallocz(sizeof(QEMUFile
));
4337 f
->is_writable
= is_writable
;
4338 f
->base_offset
= offset
;
4342 void qemu_fflush(QEMUFile
*f
)
4344 if (!f
->is_writable
)
4346 if (f
->buf_index
> 0) {
4348 fseek(f
->outfile
, f
->buf_offset
, SEEK_SET
);
4349 fwrite(f
->buf
, 1, f
->buf_index
, f
->outfile
);
4351 bdrv_pwrite(f
->bs
, f
->base_offset
+ f
->buf_offset
,
4352 f
->buf
, f
->buf_index
);
4354 f
->buf_offset
+= f
->buf_index
;
4359 static void qemu_fill_buffer(QEMUFile
*f
)
4366 fseek(f
->outfile
, f
->buf_offset
, SEEK_SET
);
4367 len
= fread(f
->buf
, 1, IO_BUF_SIZE
, f
->outfile
);
4371 len
= bdrv_pread(f
->bs
, f
->base_offset
+ f
->buf_offset
,
4372 f
->buf
, IO_BUF_SIZE
);
4378 f
->buf_offset
+= len
;
4381 void qemu_fclose(QEMUFile
*f
)
4391 void qemu_put_buffer(QEMUFile
*f
, const uint8_t *buf
, int size
)
4395 l
= IO_BUF_SIZE
- f
->buf_index
;
4398 memcpy(f
->buf
+ f
->buf_index
, buf
, l
);
4402 if (f
->buf_index
>= IO_BUF_SIZE
)
4407 void qemu_put_byte(QEMUFile
*f
, int v
)
4409 f
->buf
[f
->buf_index
++] = v
;
4410 if (f
->buf_index
>= IO_BUF_SIZE
)
4414 int qemu_get_buffer(QEMUFile
*f
, uint8_t *buf
, int size1
)
4420 l
= f
->buf_size
- f
->buf_index
;
4422 qemu_fill_buffer(f
);
4423 l
= f
->buf_size
- f
->buf_index
;
4429 memcpy(buf
, f
->buf
+ f
->buf_index
, l
);
4434 return size1
- size
;
4437 int qemu_get_byte(QEMUFile
*f
)
4439 if (f
->buf_index
>= f
->buf_size
) {
4440 qemu_fill_buffer(f
);
4441 if (f
->buf_index
>= f
->buf_size
)
4444 return f
->buf
[f
->buf_index
++];
4447 int64_t qemu_ftell(QEMUFile
*f
)
4449 return f
->buf_offset
- f
->buf_size
+ f
->buf_index
;
4452 int64_t qemu_fseek(QEMUFile
*f
, int64_t pos
, int whence
)
4454 if (whence
== SEEK_SET
) {
4456 } else if (whence
== SEEK_CUR
) {
4457 pos
+= qemu_ftell(f
);
4459 /* SEEK_END not supported */
4462 if (f
->is_writable
) {
4464 f
->buf_offset
= pos
;
4466 f
->buf_offset
= pos
;
4473 void qemu_put_be16(QEMUFile
*f
, unsigned int v
)
4475 qemu_put_byte(f
, v
>> 8);
4476 qemu_put_byte(f
, v
);
4479 void qemu_put_be32(QEMUFile
*f
, unsigned int v
)
4481 qemu_put_byte(f
, v
>> 24);
4482 qemu_put_byte(f
, v
>> 16);
4483 qemu_put_byte(f
, v
>> 8);
4484 qemu_put_byte(f
, v
);
4487 void qemu_put_be64(QEMUFile
*f
, uint64_t v
)
4489 qemu_put_be32(f
, v
>> 32);
4490 qemu_put_be32(f
, v
);
4493 unsigned int qemu_get_be16(QEMUFile
*f
)
4496 v
= qemu_get_byte(f
) << 8;
4497 v
|= qemu_get_byte(f
);
4501 unsigned int qemu_get_be32(QEMUFile
*f
)
4504 v
= qemu_get_byte(f
) << 24;
4505 v
|= qemu_get_byte(f
) << 16;
4506 v
|= qemu_get_byte(f
) << 8;
4507 v
|= qemu_get_byte(f
);
4511 uint64_t qemu_get_be64(QEMUFile
*f
)
4514 v
= (uint64_t)qemu_get_be32(f
) << 32;
4515 v
|= qemu_get_be32(f
);
4519 typedef struct SaveStateEntry
{
4523 SaveStateHandler
*save_state
;
4524 LoadStateHandler
*load_state
;
4526 struct SaveStateEntry
*next
;
4529 static SaveStateEntry
*first_se
;
4531 int register_savevm(const char *idstr
,
4534 SaveStateHandler
*save_state
,
4535 LoadStateHandler
*load_state
,
4538 SaveStateEntry
*se
, **pse
;
4540 se
= qemu_malloc(sizeof(SaveStateEntry
));
4543 pstrcpy(se
->idstr
, sizeof(se
->idstr
), idstr
);
4544 se
->instance_id
= instance_id
;
4545 se
->version_id
= version_id
;
4546 se
->save_state
= save_state
;
4547 se
->load_state
= load_state
;
4548 se
->opaque
= opaque
;
4551 /* add at the end of list */
4553 while (*pse
!= NULL
)
4554 pse
= &(*pse
)->next
;
4559 #define QEMU_VM_FILE_MAGIC 0x5145564d
4560 #define QEMU_VM_FILE_VERSION 0x00000002
4562 int qemu_savevm_state(QEMUFile
*f
)
4566 int64_t cur_pos
, len_pos
, total_len_pos
;
4568 qemu_put_be32(f
, QEMU_VM_FILE_MAGIC
);
4569 qemu_put_be32(f
, QEMU_VM_FILE_VERSION
);
4570 total_len_pos
= qemu_ftell(f
);
4571 qemu_put_be64(f
, 0); /* total size */
4573 for(se
= first_se
; se
!= NULL
; se
= se
->next
) {
4575 len
= strlen(se
->idstr
);
4576 qemu_put_byte(f
, len
);
4577 qemu_put_buffer(f
, se
->idstr
, len
);
4579 qemu_put_be32(f
, se
->instance_id
);
4580 qemu_put_be32(f
, se
->version_id
);
4582 /* record size: filled later */
4583 len_pos
= qemu_ftell(f
);
4584 qemu_put_be32(f
, 0);
4586 se
->save_state(f
, se
->opaque
);
4588 /* fill record size */
4589 cur_pos
= qemu_ftell(f
);
4590 len
= cur_pos
- len_pos
- 4;
4591 qemu_fseek(f
, len_pos
, SEEK_SET
);
4592 qemu_put_be32(f
, len
);
4593 qemu_fseek(f
, cur_pos
, SEEK_SET
);
4595 cur_pos
= qemu_ftell(f
);
4596 qemu_fseek(f
, total_len_pos
, SEEK_SET
);
4597 qemu_put_be64(f
, cur_pos
- total_len_pos
- 8);
4598 qemu_fseek(f
, cur_pos
, SEEK_SET
);
4604 static SaveStateEntry
*find_se(const char *idstr
, int instance_id
)
4608 for(se
= first_se
; se
!= NULL
; se
= se
->next
) {
4609 if (!strcmp(se
->idstr
, idstr
) &&
4610 instance_id
== se
->instance_id
)
4616 int qemu_loadvm_state(QEMUFile
*f
)
4619 int len
, ret
, instance_id
, record_len
, version_id
;
4620 int64_t total_len
, end_pos
, cur_pos
;
4624 v
= qemu_get_be32(f
);
4625 if (v
!= QEMU_VM_FILE_MAGIC
)
4627 v
= qemu_get_be32(f
);
4628 if (v
!= QEMU_VM_FILE_VERSION
) {
4633 total_len
= qemu_get_be64(f
);
4634 end_pos
= total_len
+ qemu_ftell(f
);
4636 if (qemu_ftell(f
) >= end_pos
)
4638 len
= qemu_get_byte(f
);
4639 qemu_get_buffer(f
, idstr
, len
);
4641 instance_id
= qemu_get_be32(f
);
4642 version_id
= qemu_get_be32(f
);
4643 record_len
= qemu_get_be32(f
);
4645 printf("idstr=%s instance=0x%x version=%d len=%d\n",
4646 idstr
, instance_id
, version_id
, record_len
);
4648 cur_pos
= qemu_ftell(f
);
4649 se
= find_se(idstr
, instance_id
);
4651 fprintf(stderr
, "qemu: warning: instance 0x%x of device '%s' not present in current VM\n",
4652 instance_id
, idstr
);
4654 ret
= se
->load_state(f
, se
->opaque
, version_id
);
4656 fprintf(stderr
, "qemu: warning: error while loading state for instance 0x%x of device '%s'\n",
4657 instance_id
, idstr
);
4660 /* always seek to exact end of record */
4661 qemu_fseek(f
, cur_pos
+ record_len
, SEEK_SET
);
4668 /* device can contain snapshots */
4669 static int bdrv_can_snapshot(BlockDriverState
*bs
)
4672 !bdrv_is_removable(bs
) &&
4673 !bdrv_is_read_only(bs
));
4676 /* device must be snapshots in order to have a reliable snapshot */
4677 static int bdrv_has_snapshot(BlockDriverState
*bs
)
4680 !bdrv_is_removable(bs
) &&
4681 !bdrv_is_read_only(bs
));
4684 static BlockDriverState
*get_bs_snapshots(void)
4686 BlockDriverState
*bs
;
4690 return bs_snapshots
;
4691 for(i
= 0; i
<= MAX_DISKS
; i
++) {
4693 if (bdrv_can_snapshot(bs
))
4702 static int bdrv_snapshot_find(BlockDriverState
*bs
, QEMUSnapshotInfo
*sn_info
,
4705 QEMUSnapshotInfo
*sn_tab
, *sn
;
4709 nb_sns
= bdrv_snapshot_list(bs
, &sn_tab
);
4712 for(i
= 0; i
< nb_sns
; i
++) {
4714 if (!strcmp(sn
->id_str
, name
) || !strcmp(sn
->name
, name
)) {
4724 void do_savevm(const char *name
)
4726 BlockDriverState
*bs
, *bs1
;
4727 QEMUSnapshotInfo sn1
, *sn
= &sn1
, old_sn1
, *old_sn
= &old_sn1
;
4728 int must_delete
, ret
, i
;
4729 BlockDriverInfo bdi1
, *bdi
= &bdi1
;
4731 int saved_vm_running
;
4738 bs
= get_bs_snapshots();
4740 term_printf("No block device can accept snapshots\n");
4744 /* ??? Should this occur after vm_stop? */
4747 saved_vm_running
= vm_running
;
4752 ret
= bdrv_snapshot_find(bs
, old_sn
, name
);
4757 memset(sn
, 0, sizeof(*sn
));
4759 pstrcpy(sn
->name
, sizeof(sn
->name
), old_sn
->name
);
4760 pstrcpy(sn
->id_str
, sizeof(sn
->id_str
), old_sn
->id_str
);
4763 pstrcpy(sn
->name
, sizeof(sn
->name
), name
);
4766 /* fill auxiliary fields */
4769 sn
->date_sec
= tb
.time
;
4770 sn
->date_nsec
= tb
.millitm
* 1000000;
4772 gettimeofday(&tv
, NULL
);
4773 sn
->date_sec
= tv
.tv_sec
;
4774 sn
->date_nsec
= tv
.tv_usec
* 1000;
4776 sn
->vm_clock_nsec
= qemu_get_clock(vm_clock
);
4778 if (bdrv_get_info(bs
, bdi
) < 0 || bdi
->vm_state_offset
<= 0) {
4779 term_printf("Device %s does not support VM state snapshots\n",
4780 bdrv_get_device_name(bs
));
4784 /* save the VM state */
4785 f
= qemu_fopen_bdrv(bs
, bdi
->vm_state_offset
, 1);
4787 term_printf("Could not open VM state file\n");
4790 ret
= qemu_savevm_state(f
);
4791 sn
->vm_state_size
= qemu_ftell(f
);
4794 term_printf("Error %d while writing VM\n", ret
);
4798 /* create the snapshots */
4800 for(i
= 0; i
< MAX_DISKS
; i
++) {
4802 if (bdrv_has_snapshot(bs1
)) {
4804 ret
= bdrv_snapshot_delete(bs1
, old_sn
->id_str
);
4806 term_printf("Error while deleting snapshot on '%s'\n",
4807 bdrv_get_device_name(bs1
));
4810 ret
= bdrv_snapshot_create(bs1
, sn
);
4812 term_printf("Error while creating snapshot on '%s'\n",
4813 bdrv_get_device_name(bs1
));
4819 if (saved_vm_running
)
4823 void do_loadvm(const char *name
)
4825 BlockDriverState
*bs
, *bs1
;
4826 BlockDriverInfo bdi1
, *bdi
= &bdi1
;
4829 int saved_vm_running
;
4831 bs
= get_bs_snapshots();
4833 term_printf("No block device supports snapshots\n");
4837 /* Flush all IO requests so they don't interfere with the new state. */
4840 saved_vm_running
= vm_running
;
4843 for(i
= 0; i
<= MAX_DISKS
; i
++) {
4845 if (bdrv_has_snapshot(bs1
)) {
4846 ret
= bdrv_snapshot_goto(bs1
, name
);
4849 term_printf("Warning: ");
4852 term_printf("Snapshots not supported on device '%s'\n",
4853 bdrv_get_device_name(bs1
));
4856 term_printf("Could not find snapshot '%s' on device '%s'\n",
4857 name
, bdrv_get_device_name(bs1
));
4860 term_printf("Error %d while activating snapshot on '%s'\n",
4861 ret
, bdrv_get_device_name(bs1
));
4864 /* fatal on snapshot block device */
4871 if (bdrv_get_info(bs
, bdi
) < 0 || bdi
->vm_state_offset
<= 0) {
4872 term_printf("Device %s does not support VM state snapshots\n",
4873 bdrv_get_device_name(bs
));
4877 /* restore the VM state */
4878 f
= qemu_fopen_bdrv(bs
, bdi
->vm_state_offset
, 0);
4880 term_printf("Could not open VM state file\n");
4883 ret
= qemu_loadvm_state(f
);
4886 term_printf("Error %d while loading VM state\n", ret
);
4889 if (saved_vm_running
)
4893 void do_delvm(const char *name
)
4895 BlockDriverState
*bs
, *bs1
;
4898 bs
= get_bs_snapshots();
4900 term_printf("No block device supports snapshots\n");
4904 for(i
= 0; i
<= MAX_DISKS
; i
++) {
4906 if (bdrv_has_snapshot(bs1
)) {
4907 ret
= bdrv_snapshot_delete(bs1
, name
);
4909 if (ret
== -ENOTSUP
)
4910 term_printf("Snapshots not supported on device '%s'\n",
4911 bdrv_get_device_name(bs1
));
4913 term_printf("Error %d while deleting snapshot on '%s'\n",
4914 ret
, bdrv_get_device_name(bs1
));
4920 void do_info_snapshots(void)
4922 BlockDriverState
*bs
, *bs1
;
4923 QEMUSnapshotInfo
*sn_tab
, *sn
;
4927 bs
= get_bs_snapshots();
4929 term_printf("No available block device supports snapshots\n");
4932 term_printf("Snapshot devices:");
4933 for(i
= 0; i
<= MAX_DISKS
; i
++) {
4935 if (bdrv_has_snapshot(bs1
)) {
4937 term_printf(" %s", bdrv_get_device_name(bs1
));
4942 nb_sns
= bdrv_snapshot_list(bs
, &sn_tab
);
4944 term_printf("bdrv_snapshot_list: error %d\n", nb_sns
);
4947 term_printf("Snapshot list (from %s):\n", bdrv_get_device_name(bs
));
4948 term_printf("%s\n", bdrv_snapshot_dump(buf
, sizeof(buf
), NULL
));
4949 for(i
= 0; i
< nb_sns
; i
++) {
4951 term_printf("%s\n", bdrv_snapshot_dump(buf
, sizeof(buf
), sn
));
4956 /***********************************************************/
4957 /* cpu save/restore */
4959 #if defined(TARGET_I386)
4961 static void cpu_put_seg(QEMUFile
*f
, SegmentCache
*dt
)
4963 qemu_put_be32(f
, dt
->selector
);
4964 qemu_put_betl(f
, dt
->base
);
4965 qemu_put_be32(f
, dt
->limit
);
4966 qemu_put_be32(f
, dt
->flags
);
4969 static void cpu_get_seg(QEMUFile
*f
, SegmentCache
*dt
)
4971 dt
->selector
= qemu_get_be32(f
);
4972 dt
->base
= qemu_get_betl(f
);
4973 dt
->limit
= qemu_get_be32(f
);
4974 dt
->flags
= qemu_get_be32(f
);
4977 void cpu_save(QEMUFile
*f
, void *opaque
)
4979 CPUState
*env
= opaque
;
4980 uint16_t fptag
, fpus
, fpuc
, fpregs_format
;
4984 for(i
= 0; i
< CPU_NB_REGS
; i
++)
4985 qemu_put_betls(f
, &env
->regs
[i
]);
4986 qemu_put_betls(f
, &env
->eip
);
4987 qemu_put_betls(f
, &env
->eflags
);
4988 hflags
= env
->hflags
; /* XXX: suppress most of the redundant hflags */
4989 qemu_put_be32s(f
, &hflags
);
4993 fpus
= (env
->fpus
& ~0x3800) | (env
->fpstt
& 0x7) << 11;
4995 for(i
= 0; i
< 8; i
++) {
4996 fptag
|= ((!env
->fptags
[i
]) << i
);
4999 qemu_put_be16s(f
, &fpuc
);
5000 qemu_put_be16s(f
, &fpus
);
5001 qemu_put_be16s(f
, &fptag
);
5003 #ifdef USE_X86LDOUBLE
5008 qemu_put_be16s(f
, &fpregs_format
);
5010 for(i
= 0; i
< 8; i
++) {
5011 #ifdef USE_X86LDOUBLE
5015 /* we save the real CPU data (in case of MMX usage only 'mant'
5016 contains the MMX register */
5017 cpu_get_fp80(&mant
, &exp
, env
->fpregs
[i
].d
);
5018 qemu_put_be64(f
, mant
);
5019 qemu_put_be16(f
, exp
);
5022 /* if we use doubles for float emulation, we save the doubles to
5023 avoid losing information in case of MMX usage. It can give
5024 problems if the image is restored on a CPU where long
5025 doubles are used instead. */
5026 qemu_put_be64(f
, env
->fpregs
[i
].mmx
.MMX_Q(0));
5030 for(i
= 0; i
< 6; i
++)
5031 cpu_put_seg(f
, &env
->segs
[i
]);
5032 cpu_put_seg(f
, &env
->ldt
);
5033 cpu_put_seg(f
, &env
->tr
);
5034 cpu_put_seg(f
, &env
->gdt
);
5035 cpu_put_seg(f
, &env
->idt
);
5037 qemu_put_be32s(f
, &env
->sysenter_cs
);
5038 qemu_put_be32s(f
, &env
->sysenter_esp
);
5039 qemu_put_be32s(f
, &env
->sysenter_eip
);
5041 qemu_put_betls(f
, &env
->cr
[0]);
5042 qemu_put_betls(f
, &env
->cr
[2]);
5043 qemu_put_betls(f
, &env
->cr
[3]);
5044 qemu_put_betls(f
, &env
->cr
[4]);
5046 for(i
= 0; i
< 8; i
++)
5047 qemu_put_betls(f
, &env
->dr
[i
]);
5050 qemu_put_be32s(f
, &env
->a20_mask
);
5053 qemu_put_be32s(f
, &env
->mxcsr
);
5054 for(i
= 0; i
< CPU_NB_REGS
; i
++) {
5055 qemu_put_be64s(f
, &env
->xmm_regs
[i
].XMM_Q(0));
5056 qemu_put_be64s(f
, &env
->xmm_regs
[i
].XMM_Q(1));
5059 #ifdef TARGET_X86_64
5060 qemu_put_be64s(f
, &env
->efer
);
5061 qemu_put_be64s(f
, &env
->star
);
5062 qemu_put_be64s(f
, &env
->lstar
);
5063 qemu_put_be64s(f
, &env
->cstar
);
5064 qemu_put_be64s(f
, &env
->fmask
);
5065 qemu_put_be64s(f
, &env
->kernelgsbase
);
5067 qemu_put_be32s(f
, &env
->smbase
);
5070 #ifdef USE_X86LDOUBLE
5071 /* XXX: add that in a FPU generic layer */
5072 union x86_longdouble
{
5077 #define MANTD1(fp) (fp & ((1LL << 52) - 1))
5078 #define EXPBIAS1 1023
5079 #define EXPD1(fp) ((fp >> 52) & 0x7FF)
5080 #define SIGND1(fp) ((fp >> 32) & 0x80000000)
5082 static void fp64_to_fp80(union x86_longdouble
*p
, uint64_t temp
)
5086 p
->mant
= (MANTD1(temp
) << 11) | (1LL << 63);
5087 /* exponent + sign */
5088 e
= EXPD1(temp
) - EXPBIAS1
+ 16383;
5089 e
|= SIGND1(temp
) >> 16;
5094 int cpu_load(QEMUFile
*f
, void *opaque
, int version_id
)
5096 CPUState
*env
= opaque
;
5099 uint16_t fpus
, fpuc
, fptag
, fpregs_format
;
5101 if (version_id
!= 3 && version_id
!= 4)
5103 for(i
= 0; i
< CPU_NB_REGS
; i
++)
5104 qemu_get_betls(f
, &env
->regs
[i
]);
5105 qemu_get_betls(f
, &env
->eip
);
5106 qemu_get_betls(f
, &env
->eflags
);
5107 qemu_get_be32s(f
, &hflags
);
5109 qemu_get_be16s(f
, &fpuc
);
5110 qemu_get_be16s(f
, &fpus
);
5111 qemu_get_be16s(f
, &fptag
);
5112 qemu_get_be16s(f
, &fpregs_format
);
5114 /* NOTE: we cannot always restore the FPU state if the image come
5115 from a host with a different 'USE_X86LDOUBLE' define. We guess
5116 if we are in an MMX state to restore correctly in that case. */
5117 guess_mmx
= ((fptag
== 0xff) && (fpus
& 0x3800) == 0);
5118 for(i
= 0; i
< 8; i
++) {
5122 switch(fpregs_format
) {
5124 mant
= qemu_get_be64(f
);
5125 exp
= qemu_get_be16(f
);
5126 #ifdef USE_X86LDOUBLE
5127 env
->fpregs
[i
].d
= cpu_set_fp80(mant
, exp
);
5129 /* difficult case */
5131 env
->fpregs
[i
].mmx
.MMX_Q(0) = mant
;
5133 env
->fpregs
[i
].d
= cpu_set_fp80(mant
, exp
);
5137 mant
= qemu_get_be64(f
);
5138 #ifdef USE_X86LDOUBLE
5140 union x86_longdouble
*p
;
5141 /* difficult case */
5142 p
= (void *)&env
->fpregs
[i
];
5147 fp64_to_fp80(p
, mant
);
5151 env
->fpregs
[i
].mmx
.MMX_Q(0) = mant
;
5160 /* XXX: restore FPU round state */
5161 env
->fpstt
= (fpus
>> 11) & 7;
5162 env
->fpus
= fpus
& ~0x3800;
5164 for(i
= 0; i
< 8; i
++) {
5165 env
->fptags
[i
] = (fptag
>> i
) & 1;
5168 for(i
= 0; i
< 6; i
++)
5169 cpu_get_seg(f
, &env
->segs
[i
]);
5170 cpu_get_seg(f
, &env
->ldt
);
5171 cpu_get_seg(f
, &env
->tr
);
5172 cpu_get_seg(f
, &env
->gdt
);
5173 cpu_get_seg(f
, &env
->idt
);
5175 qemu_get_be32s(f
, &env
->sysenter_cs
);
5176 qemu_get_be32s(f
, &env
->sysenter_esp
);
5177 qemu_get_be32s(f
, &env
->sysenter_eip
);
5179 qemu_get_betls(f
, &env
->cr
[0]);
5180 qemu_get_betls(f
, &env
->cr
[2]);
5181 qemu_get_betls(f
, &env
->cr
[3]);
5182 qemu_get_betls(f
, &env
->cr
[4]);
5184 for(i
= 0; i
< 8; i
++)
5185 qemu_get_betls(f
, &env
->dr
[i
]);
5188 qemu_get_be32s(f
, &env
->a20_mask
);
5190 qemu_get_be32s(f
, &env
->mxcsr
);
5191 for(i
= 0; i
< CPU_NB_REGS
; i
++) {
5192 qemu_get_be64s(f
, &env
->xmm_regs
[i
].XMM_Q(0));
5193 qemu_get_be64s(f
, &env
->xmm_regs
[i
].XMM_Q(1));
5196 #ifdef TARGET_X86_64
5197 qemu_get_be64s(f
, &env
->efer
);
5198 qemu_get_be64s(f
, &env
->star
);
5199 qemu_get_be64s(f
, &env
->lstar
);
5200 qemu_get_be64s(f
, &env
->cstar
);
5201 qemu_get_be64s(f
, &env
->fmask
);
5202 qemu_get_be64s(f
, &env
->kernelgsbase
);
5204 if (version_id
>= 4)
5205 qemu_get_be32s(f
, &env
->smbase
);
5207 /* XXX: compute hflags from scratch, except for CPL and IIF */
5208 env
->hflags
= hflags
;
5213 #elif defined(TARGET_PPC)
5214 void cpu_save(QEMUFile
*f
, void *opaque
)
5218 int cpu_load(QEMUFile
*f
, void *opaque
, int version_id
)
5223 #elif defined(TARGET_MIPS)
5224 void cpu_save(QEMUFile
*f
, void *opaque
)
5228 int cpu_load(QEMUFile
*f
, void *opaque
, int version_id
)
5233 #elif defined(TARGET_SPARC)
5234 void cpu_save(QEMUFile
*f
, void *opaque
)
5236 CPUState
*env
= opaque
;
5240 for(i
= 0; i
< 8; i
++)
5241 qemu_put_betls(f
, &env
->gregs
[i
]);
5242 for(i
= 0; i
< NWINDOWS
* 16; i
++)
5243 qemu_put_betls(f
, &env
->regbase
[i
]);
5246 for(i
= 0; i
< TARGET_FPREGS
; i
++) {
5252 qemu_put_be32(f
, u
.i
);
5255 qemu_put_betls(f
, &env
->pc
);
5256 qemu_put_betls(f
, &env
->npc
);
5257 qemu_put_betls(f
, &env
->y
);
5259 qemu_put_be32(f
, tmp
);
5260 qemu_put_betls(f
, &env
->fsr
);
5261 qemu_put_betls(f
, &env
->tbr
);
5262 #ifndef TARGET_SPARC64
5263 qemu_put_be32s(f
, &env
->wim
);
5265 for(i
= 0; i
< 16; i
++)
5266 qemu_put_be32s(f
, &env
->mmuregs
[i
]);
5270 int cpu_load(QEMUFile
*f
, void *opaque
, int version_id
)
5272 CPUState
*env
= opaque
;
5276 for(i
= 0; i
< 8; i
++)
5277 qemu_get_betls(f
, &env
->gregs
[i
]);
5278 for(i
= 0; i
< NWINDOWS
* 16; i
++)
5279 qemu_get_betls(f
, &env
->regbase
[i
]);
5282 for(i
= 0; i
< TARGET_FPREGS
; i
++) {
5287 u
.i
= qemu_get_be32(f
);
5291 qemu_get_betls(f
, &env
->pc
);
5292 qemu_get_betls(f
, &env
->npc
);
5293 qemu_get_betls(f
, &env
->y
);
5294 tmp
= qemu_get_be32(f
);
5295 env
->cwp
= 0; /* needed to ensure that the wrapping registers are
5296 correctly updated */
5298 qemu_get_betls(f
, &env
->fsr
);
5299 qemu_get_betls(f
, &env
->tbr
);
5300 #ifndef TARGET_SPARC64
5301 qemu_get_be32s(f
, &env
->wim
);
5303 for(i
= 0; i
< 16; i
++)
5304 qemu_get_be32s(f
, &env
->mmuregs
[i
]);
5310 #elif defined(TARGET_ARM)
5312 /* ??? Need to implement these. */
5313 void cpu_save(QEMUFile
*f
, void *opaque
)
5317 int cpu_load(QEMUFile
*f
, void *opaque
, int version_id
)
5324 #warning No CPU save/restore functions
5328 /***********************************************************/
5329 /* ram save/restore */
5331 static int ram_get_page(QEMUFile
*f
, uint8_t *buf
, int len
)
5335 v
= qemu_get_byte(f
);
5338 if (qemu_get_buffer(f
, buf
, len
) != len
)
5342 v
= qemu_get_byte(f
);
5343 memset(buf
, v
, len
);
5351 static int ram_load_v1(QEMUFile
*f
, void *opaque
)
5355 if (qemu_get_be32(f
) != phys_ram_size
)
5357 for(i
= 0; i
< phys_ram_size
; i
+= TARGET_PAGE_SIZE
) {
5358 ret
= ram_get_page(f
, phys_ram_base
+ i
, TARGET_PAGE_SIZE
);
5365 #define BDRV_HASH_BLOCK_SIZE 1024
5366 #define IOBUF_SIZE 4096
5367 #define RAM_CBLOCK_MAGIC 0xfabe
5369 typedef struct RamCompressState
{
5372 uint8_t buf
[IOBUF_SIZE
];
5375 static int ram_compress_open(RamCompressState
*s
, QEMUFile
*f
)
5378 memset(s
, 0, sizeof(*s
));
5380 ret
= deflateInit2(&s
->zstream
, 1,
5382 9, Z_DEFAULT_STRATEGY
);
5385 s
->zstream
.avail_out
= IOBUF_SIZE
;
5386 s
->zstream
.next_out
= s
->buf
;
5390 static void ram_put_cblock(RamCompressState
*s
, const uint8_t *buf
, int len
)
5392 qemu_put_be16(s
->f
, RAM_CBLOCK_MAGIC
);
5393 qemu_put_be16(s
->f
, len
);
5394 qemu_put_buffer(s
->f
, buf
, len
);
5397 static int ram_compress_buf(RamCompressState
*s
, const uint8_t *buf
, int len
)
5401 s
->zstream
.avail_in
= len
;
5402 s
->zstream
.next_in
= (uint8_t *)buf
;
5403 while (s
->zstream
.avail_in
> 0) {
5404 ret
= deflate(&s
->zstream
, Z_NO_FLUSH
);
5407 if (s
->zstream
.avail_out
== 0) {
5408 ram_put_cblock(s
, s
->buf
, IOBUF_SIZE
);
5409 s
->zstream
.avail_out
= IOBUF_SIZE
;
5410 s
->zstream
.next_out
= s
->buf
;
5416 static void ram_compress_close(RamCompressState
*s
)
5420 /* compress last bytes */
5422 ret
= deflate(&s
->zstream
, Z_FINISH
);
5423 if (ret
== Z_OK
|| ret
== Z_STREAM_END
) {
5424 len
= IOBUF_SIZE
- s
->zstream
.avail_out
;
5426 ram_put_cblock(s
, s
->buf
, len
);
5428 s
->zstream
.avail_out
= IOBUF_SIZE
;
5429 s
->zstream
.next_out
= s
->buf
;
5430 if (ret
== Z_STREAM_END
)
5437 deflateEnd(&s
->zstream
);
5440 typedef struct RamDecompressState
{
5443 uint8_t buf
[IOBUF_SIZE
];
5444 } RamDecompressState
;
5446 static int ram_decompress_open(RamDecompressState
*s
, QEMUFile
*f
)
5449 memset(s
, 0, sizeof(*s
));
5451 ret
= inflateInit(&s
->zstream
);
5457 static int ram_decompress_buf(RamDecompressState
*s
, uint8_t *buf
, int len
)
5461 s
->zstream
.avail_out
= len
;
5462 s
->zstream
.next_out
= buf
;
5463 while (s
->zstream
.avail_out
> 0) {
5464 if (s
->zstream
.avail_in
== 0) {
5465 if (qemu_get_be16(s
->f
) != RAM_CBLOCK_MAGIC
)
5467 clen
= qemu_get_be16(s
->f
);
5468 if (clen
> IOBUF_SIZE
)
5470 qemu_get_buffer(s
->f
, s
->buf
, clen
);
5471 s
->zstream
.avail_in
= clen
;
5472 s
->zstream
.next_in
= s
->buf
;
5474 ret
= inflate(&s
->zstream
, Z_PARTIAL_FLUSH
);
5475 if (ret
!= Z_OK
&& ret
!= Z_STREAM_END
) {
5482 static void ram_decompress_close(RamDecompressState
*s
)
5484 inflateEnd(&s
->zstream
);
5487 static void ram_save(QEMUFile
*f
, void *opaque
)
5490 RamCompressState s1
, *s
= &s1
;
5493 qemu_put_be32(f
, phys_ram_size
);
5494 if (ram_compress_open(s
, f
) < 0)
5496 for(i
= 0; i
< phys_ram_size
; i
+= BDRV_HASH_BLOCK_SIZE
) {
5498 if (tight_savevm_enabled
) {
5502 /* find if the memory block is available on a virtual
5505 for(j
= 0; j
< MAX_DISKS
; j
++) {
5507 sector_num
= bdrv_hash_find(bs_table
[j
],
5508 phys_ram_base
+ i
, BDRV_HASH_BLOCK_SIZE
);
5509 if (sector_num
>= 0)
5514 goto normal_compress
;
5517 cpu_to_be64wu((uint64_t *)(buf
+ 2), sector_num
);
5518 ram_compress_buf(s
, buf
, 10);
5524 ram_compress_buf(s
, buf
, 1);
5525 ram_compress_buf(s
, phys_ram_base
+ i
, BDRV_HASH_BLOCK_SIZE
);
5528 ram_compress_close(s
);
5531 static int ram_load(QEMUFile
*f
, void *opaque
, int version_id
)
5533 RamDecompressState s1
, *s
= &s1
;
5537 if (version_id
== 1)
5538 return ram_load_v1(f
, opaque
);
5539 if (version_id
!= 2)
5541 if (qemu_get_be32(f
) != phys_ram_size
)
5543 if (ram_decompress_open(s
, f
) < 0)
5545 for(i
= 0; i
< phys_ram_size
; i
+= BDRV_HASH_BLOCK_SIZE
) {
5546 if (ram_decompress_buf(s
, buf
, 1) < 0) {
5547 fprintf(stderr
, "Error while reading ram block header\n");
5551 if (ram_decompress_buf(s
, phys_ram_base
+ i
, BDRV_HASH_BLOCK_SIZE
) < 0) {
5552 fprintf(stderr
, "Error while reading ram block address=0x%08x", i
);
5561 ram_decompress_buf(s
, buf
+ 1, 9);
5563 sector_num
= be64_to_cpupu((const uint64_t *)(buf
+ 2));
5564 if (bs_index
>= MAX_DISKS
|| bs_table
[bs_index
] == NULL
) {
5565 fprintf(stderr
, "Invalid block device index %d\n", bs_index
);
5568 if (bdrv_read(bs_table
[bs_index
], sector_num
, phys_ram_base
+ i
,
5569 BDRV_HASH_BLOCK_SIZE
/ 512) < 0) {
5570 fprintf(stderr
, "Error while reading sector %d:%" PRId64
"\n",
5571 bs_index
, sector_num
);
5578 printf("Error block header\n");
5582 ram_decompress_close(s
);
5586 /***********************************************************/
5587 /* bottom halves (can be seen as timers which expire ASAP) */
5596 static QEMUBH
*first_bh
= NULL
;
5598 QEMUBH
*qemu_bh_new(QEMUBHFunc
*cb
, void *opaque
)
5601 bh
= qemu_mallocz(sizeof(QEMUBH
));
5605 bh
->opaque
= opaque
;
5609 int qemu_bh_poll(void)
5628 void qemu_bh_schedule(QEMUBH
*bh
)
5630 CPUState
*env
= cpu_single_env
;
5634 bh
->next
= first_bh
;
5637 /* stop the currently executing CPU to execute the BH ASAP */
5639 cpu_interrupt(env
, CPU_INTERRUPT_EXIT
);
5643 void qemu_bh_cancel(QEMUBH
*bh
)
5646 if (bh
->scheduled
) {
5649 pbh
= &(*pbh
)->next
;
5655 void qemu_bh_delete(QEMUBH
*bh
)
5661 /***********************************************************/
5662 /* machine registration */
5664 QEMUMachine
*first_machine
= NULL
;
5666 int qemu_register_machine(QEMUMachine
*m
)
5669 pm
= &first_machine
;
5677 QEMUMachine
*find_machine(const char *name
)
5681 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
5682 if (!strcmp(m
->name
, name
))
5688 /***********************************************************/
5689 /* main execution loop */
5691 void gui_update(void *opaque
)
5693 display_state
.dpy_refresh(&display_state
);
5694 qemu_mod_timer(gui_timer
, GUI_REFRESH_INTERVAL
+ qemu_get_clock(rt_clock
));
5697 struct vm_change_state_entry
{
5698 VMChangeStateHandler
*cb
;
5700 LIST_ENTRY (vm_change_state_entry
) entries
;
5703 static LIST_HEAD(vm_change_state_head
, vm_change_state_entry
) vm_change_state_head
;
5705 VMChangeStateEntry
*qemu_add_vm_change_state_handler(VMChangeStateHandler
*cb
,
5708 VMChangeStateEntry
*e
;
5710 e
= qemu_mallocz(sizeof (*e
));
5716 LIST_INSERT_HEAD(&vm_change_state_head
, e
, entries
);
5720 void qemu_del_vm_change_state_handler(VMChangeStateEntry
*e
)
5722 LIST_REMOVE (e
, entries
);
5726 static void vm_state_notify(int running
)
5728 VMChangeStateEntry
*e
;
5730 for (e
= vm_change_state_head
.lh_first
; e
; e
= e
->entries
.le_next
) {
5731 e
->cb(e
->opaque
, running
);
5735 /* XXX: support several handlers */
5736 static VMStopHandler
*vm_stop_cb
;
5737 static void *vm_stop_opaque
;
5739 int qemu_add_vm_stop_handler(VMStopHandler
*cb
, void *opaque
)
5742 vm_stop_opaque
= opaque
;
5746 void qemu_del_vm_stop_handler(VMStopHandler
*cb
, void *opaque
)
5760 void vm_stop(int reason
)
5763 cpu_disable_ticks();
5767 vm_stop_cb(vm_stop_opaque
, reason
);
5774 /* reset/shutdown handler */
5776 typedef struct QEMUResetEntry
{
5777 QEMUResetHandler
*func
;
5779 struct QEMUResetEntry
*next
;
5782 static QEMUResetEntry
*first_reset_entry
;
5783 static int reset_requested
;
5784 static int shutdown_requested
;
5785 static int powerdown_requested
;
5787 void qemu_register_reset(QEMUResetHandler
*func
, void *opaque
)
5789 QEMUResetEntry
**pre
, *re
;
5791 pre
= &first_reset_entry
;
5792 while (*pre
!= NULL
)
5793 pre
= &(*pre
)->next
;
5794 re
= qemu_mallocz(sizeof(QEMUResetEntry
));
5796 re
->opaque
= opaque
;
5801 static void qemu_system_reset(void)
5805 /* reset all devices */
5806 for(re
= first_reset_entry
; re
!= NULL
; re
= re
->next
) {
5807 re
->func(re
->opaque
);
5811 void qemu_system_reset_request(void)
5814 shutdown_requested
= 1;
5816 reset_requested
= 1;
5819 cpu_interrupt(cpu_single_env
, CPU_INTERRUPT_EXIT
);
5822 void qemu_system_shutdown_request(void)
5824 shutdown_requested
= 1;
5826 cpu_interrupt(cpu_single_env
, CPU_INTERRUPT_EXIT
);
5829 void qemu_system_powerdown_request(void)
5831 powerdown_requested
= 1;
5833 cpu_interrupt(cpu_single_env
, CPU_INTERRUPT_EXIT
);
5836 void main_loop_wait(int timeout
)
5838 IOHandlerRecord
*ioh
, *ioh_next
;
5839 fd_set rfds
, wfds
, xfds
;
5845 /* XXX: need to suppress polling by better using win32 events */
5847 for(pe
= first_polling_entry
; pe
!= NULL
; pe
= pe
->next
) {
5848 ret
|= pe
->func(pe
->opaque
);
5851 if (ret
== 0 && timeout
> 0) {
5853 WaitObjects
*w
= &wait_objects
;
5855 ret
= WaitForMultipleObjects(w
->num
, w
->events
, FALSE
, timeout
);
5856 if (WAIT_OBJECT_0
+ 0 <= ret
&& ret
<= WAIT_OBJECT_0
+ w
->num
- 1) {
5857 if (w
->func
[ret
- WAIT_OBJECT_0
])
5858 w
->func
[ret
- WAIT_OBJECT_0
](w
->opaque
[ret
- WAIT_OBJECT_0
]);
5859 } else if (ret
== WAIT_TIMEOUT
) {
5861 err
= GetLastError();
5862 fprintf(stderr
, "Wait error %d %d\n", ret
, err
);
5866 /* poll any events */
5867 /* XXX: separate device handlers from system ones */
5872 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
5874 (!ioh
->fd_read_poll
||
5875 ioh
->fd_read_poll(ioh
->opaque
) != 0)) {
5876 FD_SET(ioh
->fd
, &rfds
);
5880 if (ioh
->fd_write
) {
5881 FD_SET(ioh
->fd
, &wfds
);
5891 tv
.tv_usec
= timeout
* 1000;
5893 #if defined(CONFIG_SLIRP)
5895 slirp_select_fill(&nfds
, &rfds
, &wfds
, &xfds
);
5898 ret
= select(nfds
+ 1, &rfds
, &wfds
, &xfds
, &tv
);
5900 /* XXX: better handling of removal */
5901 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh_next
) {
5902 ioh_next
= ioh
->next
;
5903 if (FD_ISSET(ioh
->fd
, &rfds
)) {
5904 ioh
->fd_read(ioh
->opaque
);
5906 if (FD_ISSET(ioh
->fd
, &wfds
)) {
5907 ioh
->fd_write(ioh
->opaque
);
5911 #if defined(CONFIG_SLIRP)
5918 slirp_select_poll(&rfds
, &wfds
, &xfds
);
5925 qemu_run_timers(&active_timers
[QEMU_TIMER_VIRTUAL
],
5926 qemu_get_clock(vm_clock
));
5927 /* run dma transfers, if any */
5931 /* real time timers */
5932 qemu_run_timers(&active_timers
[QEMU_TIMER_REALTIME
],
5933 qemu_get_clock(rt_clock
));
5936 static CPUState
*cur_cpu
;
5941 #ifdef CONFIG_PROFILER
5946 cur_cpu
= first_cpu
;
5953 env
= env
->next_cpu
;
5956 #ifdef CONFIG_PROFILER
5957 ti
= profile_getclock();
5959 ret
= cpu_exec(env
);
5960 #ifdef CONFIG_PROFILER
5961 qemu_time
+= profile_getclock() - ti
;
5963 if (ret
!= EXCP_HALTED
)
5965 /* all CPUs are halted ? */
5966 if (env
== cur_cpu
) {
5973 if (shutdown_requested
) {
5974 ret
= EXCP_INTERRUPT
;
5977 if (reset_requested
) {
5978 reset_requested
= 0;
5979 qemu_system_reset();
5980 ret
= EXCP_INTERRUPT
;
5982 if (powerdown_requested
) {
5983 powerdown_requested
= 0;
5984 qemu_system_powerdown();
5985 ret
= EXCP_INTERRUPT
;
5987 if (ret
== EXCP_DEBUG
) {
5988 vm_stop(EXCP_DEBUG
);
5990 /* if hlt instruction, we wait until the next IRQ */
5991 /* XXX: use timeout computed from timers */
5992 if (ret
== EXCP_HLT
)
5999 #ifdef CONFIG_PROFILER
6000 ti
= profile_getclock();
6002 main_loop_wait(timeout
);
6003 #ifdef CONFIG_PROFILER
6004 dev_time
+= profile_getclock() - ti
;
6007 cpu_disable_ticks();
6013 printf("QEMU PC emulator version " QEMU_VERSION
", Copyright (c) 2003-2007 Fabrice Bellard\n"
6014 "usage: %s [options] [disk_image]\n"
6016 "'disk_image' is a raw hard image image for IDE hard disk 0\n"
6018 "Standard options:\n"
6019 "-M machine select emulated machine (-M ? for list)\n"
6020 "-fda/-fdb file use 'file' as floppy disk 0/1 image\n"
6021 "-hda/-hdb file use 'file' as IDE hard disk 0/1 image\n"
6022 "-hdc/-hdd file use 'file' as IDE hard disk 2/3 image\n"
6023 "-cdrom file use 'file' as IDE cdrom image (cdrom is ide1 master)\n"
6024 "-boot [a|c|d|n] boot on floppy (a), hard disk (c), CD-ROM (d), or network (n)\n"
6025 "-snapshot write to temporary files instead of disk image files\n"
6027 "-no-quit disable SDL window close capability\n"
6030 "-no-fd-bootchk disable boot signature checking for floppy disks\n"
6032 "-m megs set virtual RAM size to megs MB [default=%d]\n"
6033 "-smp n set the number of CPUs to 'n' [default=1]\n"
6034 "-nographic disable graphical output and redirect serial I/Os to console\n"
6036 "-k language use keyboard layout (for example \"fr\" for French)\n"
6039 "-audio-help print list of audio drivers and their options\n"
6040 "-soundhw c1,... enable audio support\n"
6041 " and only specified sound cards (comma separated list)\n"
6042 " use -soundhw ? to get the list of supported cards\n"
6043 " use -soundhw all to enable all of them\n"
6045 "-localtime set the real time clock to local time [default=utc]\n"
6046 "-full-screen start in full screen\n"
6048 "-win2k-hack use it when installing Windows 2000 to avoid a disk full bug\n"
6050 "-usb enable the USB driver (will be the default soon)\n"
6051 "-usbdevice name add the host or guest USB device 'name'\n"
6052 #if defined(TARGET_PPC) || defined(TARGET_SPARC)
6053 "-g WxH[xDEPTH] Set the initial graphical resolution and depth\n"
6056 "Network options:\n"
6057 "-net nic[,vlan=n][,macaddr=addr][,model=type]\n"
6058 " create a new Network Interface Card and connect it to VLAN 'n'\n"
6060 "-net user[,vlan=n][,hostname=host]\n"
6061 " connect the user mode network stack to VLAN 'n' and send\n"
6062 " hostname 'host' to DHCP clients\n"
6065 "-net tap[,vlan=n],ifname=name\n"
6066 " connect the host TAP network interface to VLAN 'n'\n"
6068 "-net tap[,vlan=n][,fd=h][,ifname=name][,script=file]\n"
6069 " connect the host TAP network interface to VLAN 'n' and use\n"
6070 " the network script 'file' (default=%s);\n"
6071 " use 'script=no' to disable script execution;\n"
6072 " use 'fd=h' to connect to an already opened TAP interface\n"
6074 "-net socket[,vlan=n][,fd=h][,listen=[host]:port][,connect=host:port]\n"
6075 " connect the vlan 'n' to another VLAN using a socket connection\n"
6076 "-net socket[,vlan=n][,fd=h][,mcast=maddr:port]\n"
6077 " connect the vlan 'n' to multicast maddr and port\n"
6078 "-net none use it alone to have zero network devices; if no -net option\n"
6079 " is provided, the default is '-net nic -net user'\n"
6082 "-tftp prefix allow tftp access to files starting with prefix [-net user]\n"
6084 "-smb dir allow SMB access to files in 'dir' [-net user]\n"
6086 "-redir [tcp|udp]:host-port:[guest-host]:guest-port\n"
6087 " redirect TCP or UDP connections from host to guest [-net user]\n"
6090 "Linux boot specific:\n"
6091 "-kernel bzImage use 'bzImage' as kernel image\n"
6092 "-append cmdline use 'cmdline' as kernel command line\n"
6093 "-initrd file use 'file' as initial ram disk\n"
6095 "Debug/Expert options:\n"
6096 "-monitor dev redirect the monitor to char device 'dev'\n"
6097 "-serial dev redirect the serial port to char device 'dev'\n"
6098 "-parallel dev redirect the parallel port to char device 'dev'\n"
6099 "-pidfile file Write PID to 'file'\n"
6100 "-S freeze CPU at startup (use 'c' to start execution)\n"
6101 "-s wait gdb connection to port %d\n"
6102 "-p port change gdb connection port\n"
6103 "-d item1,... output log to %s (use -d ? for a list of log items)\n"
6104 "-hdachs c,h,s[,t] force hard disk 0 physical geometry and the optional BIOS\n"
6105 " translation (t=none or lba) (usually qemu can guess them)\n"
6106 "-L path set the directory for the BIOS, VGA BIOS and keymaps\n"
6108 "-kernel-kqemu enable KQEMU full virtualization (default is user mode only)\n"
6109 "-no-kqemu disable KQEMU kernel module usage\n"
6111 #ifdef USE_CODE_COPY
6112 "-no-code-copy disable code copy acceleration\n"
6115 "-std-vga simulate a standard VGA card with VESA Bochs Extensions\n"
6116 " (default is CL-GD5446 PCI VGA)\n"
6117 "-no-acpi disable ACPI\n"
6119 "-no-reboot exit instead of rebooting\n"
6120 "-loadvm file start right away with a saved state (loadvm in monitor)\n"
6121 "-vnc display start a VNC server on display\n"
6123 "-daemonize daemonize QEMU after initializing\n"
6125 "-option-rom rom load a file, rom, into the option ROM space\n"
6127 "During emulation, the following keys are useful:\n"
6128 "ctrl-alt-f toggle full screen\n"
6129 "ctrl-alt-n switch to virtual console 'n'\n"
6130 "ctrl-alt toggle mouse and keyboard grab\n"
6132 "When using -nographic, press 'ctrl-a h' to get some help.\n"
6137 DEFAULT_NETWORK_SCRIPT
,
6139 DEFAULT_GDBSTUB_PORT
,
6144 #define HAS_ARG 0x0001
6158 QEMU_OPTION_snapshot
,
6160 QEMU_OPTION_no_fd_bootchk
,
6163 QEMU_OPTION_nographic
,
6165 QEMU_OPTION_audio_help
,
6166 QEMU_OPTION_soundhw
,
6184 QEMU_OPTION_no_code_copy
,
6186 QEMU_OPTION_localtime
,
6187 QEMU_OPTION_cirrusvga
,
6189 QEMU_OPTION_std_vga
,
6190 QEMU_OPTION_monitor
,
6192 QEMU_OPTION_parallel
,
6194 QEMU_OPTION_full_screen
,
6195 QEMU_OPTION_no_quit
,
6196 QEMU_OPTION_pidfile
,
6197 QEMU_OPTION_no_kqemu
,
6198 QEMU_OPTION_kernel_kqemu
,
6199 QEMU_OPTION_win2k_hack
,
6201 QEMU_OPTION_usbdevice
,
6204 QEMU_OPTION_no_acpi
,
6205 QEMU_OPTION_no_reboot
,
6206 QEMU_OPTION_daemonize
,
6207 QEMU_OPTION_option_rom
,
6208 QEMU_OPTION_semihosting
6211 typedef struct QEMUOption
{
6217 const QEMUOption qemu_options
[] = {
6218 { "h", 0, QEMU_OPTION_h
},
6219 { "help", 0, QEMU_OPTION_h
},
6221 { "M", HAS_ARG
, QEMU_OPTION_M
},
6222 { "fda", HAS_ARG
, QEMU_OPTION_fda
},
6223 { "fdb", HAS_ARG
, QEMU_OPTION_fdb
},
6224 { "hda", HAS_ARG
, QEMU_OPTION_hda
},
6225 { "hdb", HAS_ARG
, QEMU_OPTION_hdb
},
6226 { "hdc", HAS_ARG
, QEMU_OPTION_hdc
},
6227 { "hdd", HAS_ARG
, QEMU_OPTION_hdd
},
6228 { "cdrom", HAS_ARG
, QEMU_OPTION_cdrom
},
6229 { "boot", HAS_ARG
, QEMU_OPTION_boot
},
6230 { "snapshot", 0, QEMU_OPTION_snapshot
},
6232 { "no-fd-bootchk", 0, QEMU_OPTION_no_fd_bootchk
},
6234 { "m", HAS_ARG
, QEMU_OPTION_m
},
6235 { "nographic", 0, QEMU_OPTION_nographic
},
6236 { "k", HAS_ARG
, QEMU_OPTION_k
},
6238 { "audio-help", 0, QEMU_OPTION_audio_help
},
6239 { "soundhw", HAS_ARG
, QEMU_OPTION_soundhw
},
6242 { "net", HAS_ARG
, QEMU_OPTION_net
},
6244 { "tftp", HAS_ARG
, QEMU_OPTION_tftp
},
6246 { "smb", HAS_ARG
, QEMU_OPTION_smb
},
6248 { "redir", HAS_ARG
, QEMU_OPTION_redir
},
6251 { "kernel", HAS_ARG
, QEMU_OPTION_kernel
},
6252 { "append", HAS_ARG
, QEMU_OPTION_append
},
6253 { "initrd", HAS_ARG
, QEMU_OPTION_initrd
},
6255 { "S", 0, QEMU_OPTION_S
},
6256 { "s", 0, QEMU_OPTION_s
},
6257 { "p", HAS_ARG
, QEMU_OPTION_p
},
6258 { "d", HAS_ARG
, QEMU_OPTION_d
},
6259 { "hdachs", HAS_ARG
, QEMU_OPTION_hdachs
},
6260 { "L", HAS_ARG
, QEMU_OPTION_L
},
6261 { "no-code-copy", 0, QEMU_OPTION_no_code_copy
},
6263 { "no-kqemu", 0, QEMU_OPTION_no_kqemu
},
6264 { "kernel-kqemu", 0, QEMU_OPTION_kernel_kqemu
},
6266 #if defined(TARGET_PPC) || defined(TARGET_SPARC)
6267 { "g", 1, QEMU_OPTION_g
},
6269 { "localtime", 0, QEMU_OPTION_localtime
},
6270 { "std-vga", 0, QEMU_OPTION_std_vga
},
6271 { "monitor", 1, QEMU_OPTION_monitor
},
6272 { "serial", 1, QEMU_OPTION_serial
},
6273 { "parallel", 1, QEMU_OPTION_parallel
},
6274 { "loadvm", HAS_ARG
, QEMU_OPTION_loadvm
},
6275 { "full-screen", 0, QEMU_OPTION_full_screen
},
6277 { "no-quit", 0, QEMU_OPTION_no_quit
},
6279 { "pidfile", HAS_ARG
, QEMU_OPTION_pidfile
},
6280 { "win2k-hack", 0, QEMU_OPTION_win2k_hack
},
6281 { "usbdevice", HAS_ARG
, QEMU_OPTION_usbdevice
},
6282 { "smp", HAS_ARG
, QEMU_OPTION_smp
},
6283 { "vnc", HAS_ARG
, QEMU_OPTION_vnc
},
6285 /* temporary options */
6286 { "usb", 0, QEMU_OPTION_usb
},
6287 { "cirrusvga", 0, QEMU_OPTION_cirrusvga
},
6288 { "no-acpi", 0, QEMU_OPTION_no_acpi
},
6289 { "no-reboot", 0, QEMU_OPTION_no_reboot
},
6290 { "daemonize", 0, QEMU_OPTION_daemonize
},
6291 { "option-rom", HAS_ARG
, QEMU_OPTION_option_rom
},
6292 #if defined(TARGET_ARM)
6293 { "semihosting", 0, QEMU_OPTION_semihosting
},
6298 #if defined (TARGET_I386) && defined(USE_CODE_COPY)
6300 /* this stack is only used during signal handling */
6301 #define SIGNAL_STACK_SIZE 32768
6303 static uint8_t *signal_stack
;
6307 /* password input */
6309 static BlockDriverState
*get_bdrv(int index
)
6311 BlockDriverState
*bs
;
6314 bs
= bs_table
[index
];
6315 } else if (index
< 6) {
6316 bs
= fd_table
[index
- 4];
6323 static void read_passwords(void)
6325 BlockDriverState
*bs
;
6329 for(i
= 0; i
< 6; i
++) {
6331 if (bs
&& bdrv_is_encrypted(bs
)) {
6332 term_printf("%s is encrypted.\n", bdrv_get_device_name(bs
));
6333 for(j
= 0; j
< 3; j
++) {
6334 monitor_readline("Password: ",
6335 1, password
, sizeof(password
));
6336 if (bdrv_set_key(bs
, password
) == 0)
6338 term_printf("invalid password\n");
6344 /* XXX: currently we cannot use simultaneously different CPUs */
6345 void register_machines(void)
6347 #if defined(TARGET_I386)
6348 qemu_register_machine(&pc_machine
);
6349 qemu_register_machine(&isapc_machine
);
6350 #elif defined(TARGET_PPC)
6351 qemu_register_machine(&heathrow_machine
);
6352 qemu_register_machine(&core99_machine
);
6353 qemu_register_machine(&prep_machine
);
6354 #elif defined(TARGET_MIPS)
6355 qemu_register_machine(&mips_machine
);
6356 qemu_register_machine(&mips_malta_machine
);
6357 #elif defined(TARGET_SPARC)
6358 #ifdef TARGET_SPARC64
6359 qemu_register_machine(&sun4u_machine
);
6361 qemu_register_machine(&sun4m_machine
);
6363 #elif defined(TARGET_ARM)
6364 qemu_register_machine(&integratorcp926_machine
);
6365 qemu_register_machine(&integratorcp1026_machine
);
6366 qemu_register_machine(&versatilepb_machine
);
6367 qemu_register_machine(&versatileab_machine
);
6368 qemu_register_machine(&realview_machine
);
6369 #elif defined(TARGET_SH4)
6370 qemu_register_machine(&shix_machine
);
6372 #error unsupported CPU
6377 struct soundhw soundhw
[] = {
6384 { .init_isa
= pcspk_audio_init
}
6389 "Creative Sound Blaster 16",
6392 { .init_isa
= SB16_init
}
6399 "Yamaha YMF262 (OPL3)",
6401 "Yamaha YM3812 (OPL2)",
6405 { .init_isa
= Adlib_init
}
6412 "Gravis Ultrasound GF1",
6415 { .init_isa
= GUS_init
}
6421 "ENSONIQ AudioPCI ES1370",
6424 { .init_pci
= es1370_init
}
6427 { NULL
, NULL
, 0, 0, { NULL
} }
6430 static void select_soundhw (const char *optarg
)
6434 if (*optarg
== '?') {
6437 printf ("Valid sound card names (comma separated):\n");
6438 for (c
= soundhw
; c
->name
; ++c
) {
6439 printf ("%-11s %s\n", c
->name
, c
->descr
);
6441 printf ("\n-soundhw all will enable all of the above\n");
6442 exit (*optarg
!= '?');
6450 if (!strcmp (optarg
, "all")) {
6451 for (c
= soundhw
; c
->name
; ++c
) {
6459 e
= strchr (p
, ',');
6460 l
= !e
? strlen (p
) : (size_t) (e
- p
);
6462 for (c
= soundhw
; c
->name
; ++c
) {
6463 if (!strncmp (c
->name
, p
, l
)) {
6472 "Unknown sound card name (too big to show)\n");
6475 fprintf (stderr
, "Unknown sound card name `%.*s'\n",
6480 p
+= l
+ (e
!= NULL
);
6484 goto show_valid_cards
;
6490 static BOOL WINAPI
qemu_ctrl_handler(DWORD type
)
6492 exit(STATUS_CONTROL_C_EXIT
);
6497 #define MAX_NET_CLIENTS 32
6499 int main(int argc
, char **argv
)
6501 #ifdef CONFIG_GDBSTUB
6502 int use_gdbstub
, gdbstub_port
;
6505 int snapshot
, linux_boot
;
6506 const char *initrd_filename
;
6507 const char *hd_filename
[MAX_DISKS
], *fd_filename
[MAX_FD
];
6508 const char *kernel_filename
, *kernel_cmdline
;
6509 DisplayState
*ds
= &display_state
;
6510 int cyls
, heads
, secs
, translation
;
6511 char net_clients
[MAX_NET_CLIENTS
][256];
6514 const char *r
, *optarg
;
6515 CharDriverState
*monitor_hd
;
6516 char monitor_device
[128];
6517 char serial_devices
[MAX_SERIAL_PORTS
][128];
6518 int serial_device_index
;
6519 char parallel_devices
[MAX_PARALLEL_PORTS
][128];
6520 int parallel_device_index
;
6521 const char *loadvm
= NULL
;
6522 QEMUMachine
*machine
;
6523 char usb_devices
[MAX_USB_CMDLINE
][128];
6524 int usb_devices_index
;
6527 LIST_INIT (&vm_change_state_head
);
6530 struct sigaction act
;
6531 sigfillset(&act
.sa_mask
);
6533 act
.sa_handler
= SIG_IGN
;
6534 sigaction(SIGPIPE
, &act
, NULL
);
6537 SetConsoleCtrlHandler(qemu_ctrl_handler
, TRUE
);
6538 /* Note: cpu_interrupt() is currently not SMP safe, so we force
6539 QEMU to run on a single CPU */
6544 h
= GetCurrentProcess();
6545 if (GetProcessAffinityMask(h
, &mask
, &smask
)) {
6546 for(i
= 0; i
< 32; i
++) {
6547 if (mask
& (1 << i
))
6552 SetProcessAffinityMask(h
, mask
);
6558 register_machines();
6559 machine
= first_machine
;
6560 initrd_filename
= NULL
;
6561 for(i
= 0; i
< MAX_FD
; i
++)
6562 fd_filename
[i
] = NULL
;
6563 for(i
= 0; i
< MAX_DISKS
; i
++)
6564 hd_filename
[i
] = NULL
;
6565 ram_size
= DEFAULT_RAM_SIZE
* 1024 * 1024;
6566 vga_ram_size
= VGA_RAM_SIZE
;
6567 bios_size
= BIOS_SIZE
;
6568 #ifdef CONFIG_GDBSTUB
6570 gdbstub_port
= DEFAULT_GDBSTUB_PORT
;
6574 kernel_filename
= NULL
;
6575 kernel_cmdline
= "";
6581 cyls
= heads
= secs
= 0;
6582 translation
= BIOS_ATA_TRANSLATION_AUTO
;
6583 pstrcpy(monitor_device
, sizeof(monitor_device
), "vc");
6585 pstrcpy(serial_devices
[0], sizeof(serial_devices
[0]), "vc");
6586 for(i
= 1; i
< MAX_SERIAL_PORTS
; i
++)
6587 serial_devices
[i
][0] = '\0';
6588 serial_device_index
= 0;
6590 pstrcpy(parallel_devices
[0], sizeof(parallel_devices
[0]), "vc");
6591 for(i
= 1; i
< MAX_PARALLEL_PORTS
; i
++)
6592 parallel_devices
[i
][0] = '\0';
6593 parallel_device_index
= 0;
6595 usb_devices_index
= 0;
6600 /* default mac address of the first network interface */
6608 hd_filename
[0] = argv
[optind
++];
6610 const QEMUOption
*popt
;
6613 /* Treat --foo the same as -foo. */
6616 popt
= qemu_options
;
6619 fprintf(stderr
, "%s: invalid option -- '%s'\n",
6623 if (!strcmp(popt
->name
, r
+ 1))
6627 if (popt
->flags
& HAS_ARG
) {
6628 if (optind
>= argc
) {
6629 fprintf(stderr
, "%s: option '%s' requires an argument\n",
6633 optarg
= argv
[optind
++];
6638 switch(popt
->index
) {
6640 machine
= find_machine(optarg
);
6643 printf("Supported machines are:\n");
6644 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
6645 printf("%-10s %s%s\n",
6647 m
== first_machine
? " (default)" : "");
6652 case QEMU_OPTION_initrd
:
6653 initrd_filename
= optarg
;
6655 case QEMU_OPTION_hda
:
6656 case QEMU_OPTION_hdb
:
6657 case QEMU_OPTION_hdc
:
6658 case QEMU_OPTION_hdd
:
6661 hd_index
= popt
->index
- QEMU_OPTION_hda
;
6662 hd_filename
[hd_index
] = optarg
;
6663 if (hd_index
== cdrom_index
)
6667 case QEMU_OPTION_snapshot
:
6670 case QEMU_OPTION_hdachs
:
6674 cyls
= strtol(p
, (char **)&p
, 0);
6675 if (cyls
< 1 || cyls
> 16383)
6680 heads
= strtol(p
, (char **)&p
, 0);
6681 if (heads
< 1 || heads
> 16)
6686 secs
= strtol(p
, (char **)&p
, 0);
6687 if (secs
< 1 || secs
> 63)
6691 if (!strcmp(p
, "none"))
6692 translation
= BIOS_ATA_TRANSLATION_NONE
;
6693 else if (!strcmp(p
, "lba"))
6694 translation
= BIOS_ATA_TRANSLATION_LBA
;
6695 else if (!strcmp(p
, "auto"))
6696 translation
= BIOS_ATA_TRANSLATION_AUTO
;
6699 } else if (*p
!= '\0') {
6701 fprintf(stderr
, "qemu: invalid physical CHS format\n");
6706 case QEMU_OPTION_nographic
:
6707 pstrcpy(monitor_device
, sizeof(monitor_device
), "stdio");
6708 pstrcpy(serial_devices
[0], sizeof(serial_devices
[0]), "stdio");
6711 case QEMU_OPTION_kernel
:
6712 kernel_filename
= optarg
;
6714 case QEMU_OPTION_append
:
6715 kernel_cmdline
= optarg
;
6717 case QEMU_OPTION_cdrom
:
6718 if (cdrom_index
>= 0) {
6719 hd_filename
[cdrom_index
] = optarg
;
6722 case QEMU_OPTION_boot
:
6723 boot_device
= optarg
[0];
6724 if (boot_device
!= 'a' &&
6725 #if defined(TARGET_SPARC) || defined(TARGET_I386)
6727 boot_device
!= 'n' &&
6729 boot_device
!= 'c' && boot_device
!= 'd') {
6730 fprintf(stderr
, "qemu: invalid boot device '%c'\n", boot_device
);
6734 case QEMU_OPTION_fda
:
6735 fd_filename
[0] = optarg
;
6737 case QEMU_OPTION_fdb
:
6738 fd_filename
[1] = optarg
;
6741 case QEMU_OPTION_no_fd_bootchk
:
6745 case QEMU_OPTION_no_code_copy
:
6746 code_copy_enabled
= 0;
6748 case QEMU_OPTION_net
:
6749 if (nb_net_clients
>= MAX_NET_CLIENTS
) {
6750 fprintf(stderr
, "qemu: too many network clients\n");
6753 pstrcpy(net_clients
[nb_net_clients
],
6754 sizeof(net_clients
[0]),
6759 case QEMU_OPTION_tftp
:
6760 tftp_prefix
= optarg
;
6763 case QEMU_OPTION_smb
:
6764 net_slirp_smb(optarg
);
6767 case QEMU_OPTION_redir
:
6768 net_slirp_redir(optarg
);
6772 case QEMU_OPTION_audio_help
:
6776 case QEMU_OPTION_soundhw
:
6777 select_soundhw (optarg
);
6784 ram_size
= atoi(optarg
) * 1024 * 1024;
6787 if (ram_size
> PHYS_RAM_MAX_SIZE
) {
6788 fprintf(stderr
, "qemu: at most %d MB RAM can be simulated\n",
6789 PHYS_RAM_MAX_SIZE
/ (1024 * 1024));
6798 mask
= cpu_str_to_log_mask(optarg
);
6800 printf("Log items (comma separated):\n");
6801 for(item
= cpu_log_items
; item
->mask
!= 0; item
++) {
6802 printf("%-10s %s\n", item
->name
, item
->help
);
6809 #ifdef CONFIG_GDBSTUB
6814 gdbstub_port
= atoi(optarg
);
6824 keyboard_layout
= optarg
;
6826 case QEMU_OPTION_localtime
:
6829 case QEMU_OPTION_cirrusvga
:
6830 cirrus_vga_enabled
= 1;
6832 case QEMU_OPTION_std_vga
:
6833 cirrus_vga_enabled
= 0;
6840 w
= strtol(p
, (char **)&p
, 10);
6843 fprintf(stderr
, "qemu: invalid resolution or depth\n");
6849 h
= strtol(p
, (char **)&p
, 10);
6854 depth
= strtol(p
, (char **)&p
, 10);
6855 if (depth
!= 8 && depth
!= 15 && depth
!= 16 &&
6856 depth
!= 24 && depth
!= 32)
6858 } else if (*p
== '\0') {
6859 depth
= graphic_depth
;
6866 graphic_depth
= depth
;
6869 case QEMU_OPTION_monitor
:
6870 pstrcpy(monitor_device
, sizeof(monitor_device
), optarg
);
6872 case QEMU_OPTION_serial
:
6873 if (serial_device_index
>= MAX_SERIAL_PORTS
) {
6874 fprintf(stderr
, "qemu: too many serial ports\n");
6877 pstrcpy(serial_devices
[serial_device_index
],
6878 sizeof(serial_devices
[0]), optarg
);
6879 serial_device_index
++;
6881 case QEMU_OPTION_parallel
:
6882 if (parallel_device_index
>= MAX_PARALLEL_PORTS
) {
6883 fprintf(stderr
, "qemu: too many parallel ports\n");
6886 pstrcpy(parallel_devices
[parallel_device_index
],
6887 sizeof(parallel_devices
[0]), optarg
);
6888 parallel_device_index
++;
6890 case QEMU_OPTION_loadvm
:
6893 case QEMU_OPTION_full_screen
:
6897 case QEMU_OPTION_no_quit
:
6901 case QEMU_OPTION_pidfile
:
6902 create_pidfile(optarg
);
6905 case QEMU_OPTION_win2k_hack
:
6906 win2k_install_hack
= 1;
6910 case QEMU_OPTION_no_kqemu
:
6913 case QEMU_OPTION_kernel_kqemu
:
6917 case QEMU_OPTION_usb
:
6920 case QEMU_OPTION_usbdevice
:
6922 if (usb_devices_index
>= MAX_USB_CMDLINE
) {
6923 fprintf(stderr
, "Too many USB devices\n");
6926 pstrcpy(usb_devices
[usb_devices_index
],
6927 sizeof(usb_devices
[usb_devices_index
]),
6929 usb_devices_index
++;
6931 case QEMU_OPTION_smp
:
6932 smp_cpus
= atoi(optarg
);
6933 if (smp_cpus
< 1 || smp_cpus
> MAX_CPUS
) {
6934 fprintf(stderr
, "Invalid number of CPUs\n");
6938 case QEMU_OPTION_vnc
:
6939 vnc_display
= optarg
;
6941 case QEMU_OPTION_no_acpi
:
6944 case QEMU_OPTION_no_reboot
:
6947 case QEMU_OPTION_daemonize
:
6950 case QEMU_OPTION_option_rom
:
6951 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
6952 fprintf(stderr
, "Too many option ROMs\n");
6955 option_rom
[nb_option_roms
] = optarg
;
6958 case QEMU_OPTION_semihosting
:
6959 semihosting_enabled
= 1;
6966 if (daemonize
&& !nographic
&& vnc_display
== NULL
) {
6967 fprintf(stderr
, "Can only daemonize if using -nographic or -vnc\n");
6974 if (pipe(fds
) == -1)
6985 len
= read(fds
[0], &status
, 1);
6986 if (len
== -1 && (errno
== EINTR
))
6989 if (len
!= 1 || status
!= 0)
7007 signal(SIGTSTP
, SIG_IGN
);
7008 signal(SIGTTOU
, SIG_IGN
);
7009 signal(SIGTTIN
, SIG_IGN
);
7017 linux_boot
= (kernel_filename
!= NULL
);
7020 hd_filename
[0] == '\0' &&
7021 (cdrom_index
>= 0 && hd_filename
[cdrom_index
] == '\0') &&
7022 fd_filename
[0] == '\0')
7025 /* boot to floppy or the default cd if no hard disk defined yet */
7026 if (hd_filename
[0] == '\0' && boot_device
== 'c') {
7027 if (fd_filename
[0] != '\0')
7033 setvbuf(stdout
, NULL
, _IOLBF
, 0);
7043 /* init network clients */
7044 if (nb_net_clients
== 0) {
7045 /* if no clients, we use a default config */
7046 pstrcpy(net_clients
[0], sizeof(net_clients
[0]),
7048 pstrcpy(net_clients
[1], sizeof(net_clients
[0]),
7053 for(i
= 0;i
< nb_net_clients
; i
++) {
7054 if (net_client_init(net_clients
[i
]) < 0)
7059 if (boot_device
== 'n') {
7060 for (i
= 0; i
< nb_nics
; i
++) {
7061 const char *model
= nd_table
[i
].model
;
7065 snprintf(buf
, sizeof(buf
), "%s/pxe-%s.bin", bios_dir
, model
);
7066 if (get_image_size(buf
) > 0) {
7067 option_rom
[nb_option_roms
] = strdup(buf
);
7073 fprintf(stderr
, "No valid PXE rom found for network device\n");
7076 boot_device
= 'c'; /* to prevent confusion by the BIOS */
7080 /* init the memory */
7081 phys_ram_size
= ram_size
+ vga_ram_size
+ bios_size
;
7083 for (i
= 0; i
< nb_option_roms
; i
++) {
7084 int ret
= get_image_size(option_rom
[i
]);
7086 fprintf(stderr
, "Could not load option rom '%s'\n", option_rom
[i
]);
7089 phys_ram_size
+= ret
;
7092 phys_ram_base
= qemu_vmalloc(phys_ram_size
);
7093 if (!phys_ram_base
) {
7094 fprintf(stderr
, "Could not allocate physical memory\n");
7098 /* we always create the cdrom drive, even if no disk is there */
7100 if (cdrom_index
>= 0) {
7101 bs_table
[cdrom_index
] = bdrv_new("cdrom");
7102 bdrv_set_type_hint(bs_table
[cdrom_index
], BDRV_TYPE_CDROM
);
7105 /* open the virtual block devices */
7106 for(i
= 0; i
< MAX_DISKS
; i
++) {
7107 if (hd_filename
[i
]) {
7110 snprintf(buf
, sizeof(buf
), "hd%c", i
+ 'a');
7111 bs_table
[i
] = bdrv_new(buf
);
7113 if (bdrv_open(bs_table
[i
], hd_filename
[i
], snapshot
? BDRV_O_SNAPSHOT
: 0) < 0) {
7114 fprintf(stderr
, "qemu: could not open hard disk image '%s'\n",
7118 if (i
== 0 && cyls
!= 0) {
7119 bdrv_set_geometry_hint(bs_table
[i
], cyls
, heads
, secs
);
7120 bdrv_set_translation_hint(bs_table
[i
], translation
);
7125 /* we always create at least one floppy disk */
7126 fd_table
[0] = bdrv_new("fda");
7127 bdrv_set_type_hint(fd_table
[0], BDRV_TYPE_FLOPPY
);
7129 for(i
= 0; i
< MAX_FD
; i
++) {
7130 if (fd_filename
[i
]) {
7133 snprintf(buf
, sizeof(buf
), "fd%c", i
+ 'a');
7134 fd_table
[i
] = bdrv_new(buf
);
7135 bdrv_set_type_hint(fd_table
[i
], BDRV_TYPE_FLOPPY
);
7137 if (fd_filename
[i
] != '\0') {
7138 if (bdrv_open(fd_table
[i
], fd_filename
[i
],
7139 snapshot
? BDRV_O_SNAPSHOT
: 0) < 0) {
7140 fprintf(stderr
, "qemu: could not open floppy disk image '%s'\n",
7148 register_savevm("timer", 0, 2, timer_save
, timer_load
, NULL
);
7149 register_savevm("ram", 0, 2, ram_save
, ram_load
, NULL
);
7155 dumb_display_init(ds
);
7156 } else if (vnc_display
!= NULL
) {
7157 vnc_display_init(ds
, vnc_display
);
7159 #if defined(CONFIG_SDL)
7160 sdl_display_init(ds
, full_screen
);
7161 #elif defined(CONFIG_COCOA)
7162 cocoa_display_init(ds
, full_screen
);
7164 dumb_display_init(ds
);
7168 monitor_hd
= qemu_chr_open(monitor_device
);
7170 fprintf(stderr
, "qemu: could not open monitor device '%s'\n", monitor_device
);
7173 monitor_init(monitor_hd
, !nographic
);
7175 for(i
= 0; i
< MAX_SERIAL_PORTS
; i
++) {
7176 const char *devname
= serial_devices
[i
];
7177 if (devname
[0] != '\0' && strcmp(devname
, "none")) {
7178 serial_hds
[i
] = qemu_chr_open(devname
);
7179 if (!serial_hds
[i
]) {
7180 fprintf(stderr
, "qemu: could not open serial device '%s'\n",
7184 if (!strcmp(devname
, "vc"))
7185 qemu_chr_printf(serial_hds
[i
], "serial%d console\r\n", i
);
7189 for(i
= 0; i
< MAX_PARALLEL_PORTS
; i
++) {
7190 const char *devname
= parallel_devices
[i
];
7191 if (devname
[0] != '\0' && strcmp(devname
, "none")) {
7192 parallel_hds
[i
] = qemu_chr_open(devname
);
7193 if (!parallel_hds
[i
]) {
7194 fprintf(stderr
, "qemu: could not open parallel device '%s'\n",
7198 if (!strcmp(devname
, "vc"))
7199 qemu_chr_printf(parallel_hds
[i
], "parallel%d console\r\n", i
);
7203 machine
->init(ram_size
, vga_ram_size
, boot_device
,
7204 ds
, fd_filename
, snapshot
,
7205 kernel_filename
, kernel_cmdline
, initrd_filename
);
7207 /* init USB devices */
7209 for(i
= 0; i
< usb_devices_index
; i
++) {
7210 if (usb_device_add(usb_devices
[i
]) < 0) {
7211 fprintf(stderr
, "Warning: could not add USB device %s\n",
7217 gui_timer
= qemu_new_timer(rt_clock
, gui_update
, NULL
);
7218 qemu_mod_timer(gui_timer
, qemu_get_clock(rt_clock
));
7220 #ifdef CONFIG_GDBSTUB
7222 /* XXX: use standard host:port notation and modify options
7224 if (gdbserver_start_port(gdbstub_port
) < 0) {
7225 fprintf(stderr
, "qemu: could not open gdbstub device on port '%d'\n",
7235 /* XXX: simplify init */
7248 len
= write(fds
[1], &status
, 1);
7249 if (len
== -1 && (errno
== EINTR
))
7255 fd
= open("/dev/null", O_RDWR
);