4 * Copyright (c) 2003-2008 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
25 #include "hw/boards.h"
27 #include "hw/pcmcia.h"
29 #include "hw/audiodev.h"
37 #include "qemu-timer.h"
38 #include "qemu-char.h"
39 #include "cache-utils.h"
41 #include "audio/audio.h"
42 #include "migration.h"
56 #include <sys/times.h>
60 #include <sys/ioctl.h>
61 #include <sys/resource.h>
62 #include <sys/socket.h>
63 #include <netinet/in.h>
65 #if defined(__NetBSD__)
66 #include <net/if_tap.h>
69 #include <linux/if_tun.h>
71 #include <arpa/inet.h>
74 #include <sys/select.h>
82 #elif defined (__GLIBC__) && defined (__FreeBSD_kernel__)
83 #include <freebsd/stdlib.h>
88 #include <linux/rtc.h>
90 /* For the benefit of older linux systems which don't supply it,
91 we use a local copy of hpet.h. */
92 /* #include <linux/hpet.h> */
95 #include <linux/ppdev.h>
96 #include <linux/parport.h>
100 #include <sys/ethernet.h>
101 #include <sys/sockio.h>
102 #include <netinet/arp.h>
103 #include <netinet/in.h>
104 #include <netinet/in_systm.h>
105 #include <netinet/ip.h>
106 #include <netinet/ip_icmp.h> // must come after ip.h
107 #include <netinet/udp.h>
108 #include <netinet/tcp.h>
116 #include "qemu_socket.h"
118 #if defined(CONFIG_SLIRP)
119 #include "libslirp.h"
122 #if defined(__OpenBSD__)
126 #if defined(CONFIG_VDE)
127 #include <libvdeplug.h>
132 #include <sys/timeb.h>
133 #include <mmsystem.h>
134 #define getopt_long_only getopt_long
135 #define memalign(align, size) malloc(size)
141 int qemu_main(int argc
, char **argv
, char **envp
);
142 int main(int argc
, char **argv
)
144 qemu_main(argc
, argv
, NULL
);
147 #define main qemu_main
149 #endif /* CONFIG_SDL */
153 #define main qemu_main
154 #endif /* CONFIG_COCOA */
158 #include "exec-all.h"
160 //#define DEBUG_UNUSED_IOPORT
161 //#define DEBUG_IOPORT
163 //#define DEBUG_SLIRP
167 # define LOG_IOPORT(...) qemu_log_mask(CPU_LOG_IOPORT, ## __VA_ARGS__)
169 # define LOG_IOPORT(...) do { } while (0)
172 #define DEFAULT_RAM_SIZE 128
174 /* Max number of USB devices that can be specified on the commandline. */
175 #define MAX_USB_CMDLINE 8
177 /* Max number of bluetooth switches on the commandline. */
178 #define MAX_BT_CMDLINE 10
180 /* XXX: use a two level table to limit memory usage */
181 #define MAX_IOPORTS 65536
183 const char *bios_dir
= CONFIG_QEMU_SHAREDIR
;
184 const char *bios_name
= NULL
;
185 static void *ioport_opaque
[MAX_IOPORTS
];
186 static IOPortReadFunc
*ioport_read_table
[3][MAX_IOPORTS
];
187 static IOPortWriteFunc
*ioport_write_table
[3][MAX_IOPORTS
];
188 /* Note: drives_table[MAX_DRIVES] is a dummy block driver if none available
189 to store the VM snapshots */
190 DriveInfo drives_table
[MAX_DRIVES
+1];
192 static int vga_ram_size
;
193 enum vga_retrace_method vga_retrace_method
= VGA_RETRACE_DUMB
;
194 static DisplayState
*display_state
;
198 const char* keyboard_layout
= NULL
;
199 int64_t ticks_per_sec
;
202 NICInfo nd_table
[MAX_NICS
];
204 static int autostart
;
205 static int rtc_utc
= 1;
206 static int rtc_date_offset
= -1; /* -1 means no change */
207 int cirrus_vga_enabled
= 1;
208 int std_vga_enabled
= 0;
209 int vmsvga_enabled
= 0;
211 int graphic_width
= 1024;
212 int graphic_height
= 768;
213 int graphic_depth
= 8;
215 int graphic_width
= 800;
216 int graphic_height
= 600;
217 int graphic_depth
= 15;
219 static int full_screen
= 0;
221 static int no_frame
= 0;
224 CharDriverState
*serial_hds
[MAX_SERIAL_PORTS
];
225 CharDriverState
*parallel_hds
[MAX_PARALLEL_PORTS
];
226 CharDriverState
*virtcon_hds
[MAX_VIRTIO_CONSOLES
];
228 int win2k_install_hack
= 0;
233 const char *vnc_display
;
234 int acpi_enabled
= 1;
240 int graphic_rotate
= 0;
242 const char *option_rom
[MAX_OPTION_ROMS
];
244 int semihosting_enabled
= 0;
248 const char *qemu_name
;
250 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
251 unsigned int nb_prom_envs
= 0;
252 const char *prom_envs
[MAX_PROM_ENVS
];
255 struct drive_opt drives_opt
[MAX_DRIVES
];
257 static CPUState
*cur_cpu
;
258 static CPUState
*next_cpu
;
259 static int event_pending
= 1;
260 /* Conversion factor from emulated instructions to virtual clock ticks. */
261 static int icount_time_shift
;
262 /* Arbitrarily pick 1MIPS as the minimum allowable speed. */
263 #define MAX_ICOUNT_SHIFT 10
264 /* Compensate for varying guest execution speed. */
265 static int64_t qemu_icount_bias
;
266 static QEMUTimer
*icount_rt_timer
;
267 static QEMUTimer
*icount_vm_timer
;
268 static QEMUTimer
*nographic_timer
;
270 uint8_t qemu_uuid
[16];
272 /***********************************************************/
273 /* x86 ISA bus support */
275 target_phys_addr_t isa_mem_base
= 0;
278 static IOPortReadFunc default_ioport_readb
, default_ioport_readw
, default_ioport_readl
;
279 static IOPortWriteFunc default_ioport_writeb
, default_ioport_writew
, default_ioport_writel
;
281 static uint32_t ioport_read(int index
, uint32_t address
)
283 static IOPortReadFunc
*default_func
[3] = {
284 default_ioport_readb
,
285 default_ioport_readw
,
288 IOPortReadFunc
*func
= ioport_read_table
[index
][address
];
290 func
= default_func
[index
];
291 return func(ioport_opaque
[address
], address
);
294 static void ioport_write(int index
, uint32_t address
, uint32_t data
)
296 static IOPortWriteFunc
*default_func
[3] = {
297 default_ioport_writeb
,
298 default_ioport_writew
,
299 default_ioport_writel
301 IOPortWriteFunc
*func
= ioport_write_table
[index
][address
];
303 func
= default_func
[index
];
304 func(ioport_opaque
[address
], address
, data
);
307 static uint32_t default_ioport_readb(void *opaque
, uint32_t address
)
309 #ifdef DEBUG_UNUSED_IOPORT
310 fprintf(stderr
, "unused inb: port=0x%04x\n", address
);
315 static void default_ioport_writeb(void *opaque
, uint32_t address
, uint32_t data
)
317 #ifdef DEBUG_UNUSED_IOPORT
318 fprintf(stderr
, "unused outb: port=0x%04x data=0x%02x\n", address
, data
);
322 /* default is to make two byte accesses */
323 static uint32_t default_ioport_readw(void *opaque
, uint32_t address
)
326 data
= ioport_read(0, address
);
327 address
= (address
+ 1) & (MAX_IOPORTS
- 1);
328 data
|= ioport_read(0, address
) << 8;
332 static void default_ioport_writew(void *opaque
, uint32_t address
, uint32_t data
)
334 ioport_write(0, address
, data
& 0xff);
335 address
= (address
+ 1) & (MAX_IOPORTS
- 1);
336 ioport_write(0, address
, (data
>> 8) & 0xff);
339 static uint32_t default_ioport_readl(void *opaque
, uint32_t address
)
341 #ifdef DEBUG_UNUSED_IOPORT
342 fprintf(stderr
, "unused inl: port=0x%04x\n", address
);
347 static void default_ioport_writel(void *opaque
, uint32_t address
, uint32_t data
)
349 #ifdef DEBUG_UNUSED_IOPORT
350 fprintf(stderr
, "unused outl: port=0x%04x data=0x%02x\n", address
, data
);
354 /* size is the word size in byte */
355 int register_ioport_read(int start
, int length
, int size
,
356 IOPortReadFunc
*func
, void *opaque
)
362 } else if (size
== 2) {
364 } else if (size
== 4) {
367 hw_error("register_ioport_read: invalid size");
370 for(i
= start
; i
< start
+ length
; i
+= size
) {
371 ioport_read_table
[bsize
][i
] = func
;
372 if (ioport_opaque
[i
] != NULL
&& ioport_opaque
[i
] != opaque
)
373 hw_error("register_ioport_read: invalid opaque");
374 ioport_opaque
[i
] = opaque
;
379 /* size is the word size in byte */
380 int register_ioport_write(int start
, int length
, int size
,
381 IOPortWriteFunc
*func
, void *opaque
)
387 } else if (size
== 2) {
389 } else if (size
== 4) {
392 hw_error("register_ioport_write: invalid size");
395 for(i
= start
; i
< start
+ length
; i
+= size
) {
396 ioport_write_table
[bsize
][i
] = func
;
397 if (ioport_opaque
[i
] != NULL
&& ioport_opaque
[i
] != opaque
)
398 hw_error("register_ioport_write: invalid opaque");
399 ioport_opaque
[i
] = opaque
;
404 void isa_unassign_ioport(int start
, int length
)
408 for(i
= start
; i
< start
+ length
; i
++) {
409 ioport_read_table
[0][i
] = default_ioport_readb
;
410 ioport_read_table
[1][i
] = default_ioport_readw
;
411 ioport_read_table
[2][i
] = default_ioport_readl
;
413 ioport_write_table
[0][i
] = default_ioport_writeb
;
414 ioport_write_table
[1][i
] = default_ioport_writew
;
415 ioport_write_table
[2][i
] = default_ioport_writel
;
417 ioport_opaque
[i
] = NULL
;
421 /***********************************************************/
423 void cpu_outb(CPUState
*env
, int addr
, int val
)
425 LOG_IOPORT("outb: %04x %02x\n", addr
, val
);
426 ioport_write(0, addr
, val
);
429 env
->last_io_time
= cpu_get_time_fast();
433 void cpu_outw(CPUState
*env
, int addr
, int val
)
435 LOG_IOPORT("outw: %04x %04x\n", addr
, val
);
436 ioport_write(1, addr
, val
);
439 env
->last_io_time
= cpu_get_time_fast();
443 void cpu_outl(CPUState
*env
, int addr
, int val
)
445 LOG_IOPORT("outl: %04x %08x\n", addr
, val
);
446 ioport_write(2, addr
, val
);
449 env
->last_io_time
= cpu_get_time_fast();
453 int cpu_inb(CPUState
*env
, int addr
)
456 val
= ioport_read(0, addr
);
457 LOG_IOPORT("inb : %04x %02x\n", addr
, val
);
460 env
->last_io_time
= cpu_get_time_fast();
465 int cpu_inw(CPUState
*env
, int addr
)
468 val
= ioport_read(1, addr
);
469 LOG_IOPORT("inw : %04x %04x\n", addr
, val
);
472 env
->last_io_time
= cpu_get_time_fast();
477 int cpu_inl(CPUState
*env
, int addr
)
480 val
= ioport_read(2, addr
);
481 LOG_IOPORT("inl : %04x %08x\n", addr
, val
);
484 env
->last_io_time
= cpu_get_time_fast();
489 /***********************************************************/
490 void hw_error(const char *fmt
, ...)
496 fprintf(stderr
, "qemu: hardware error: ");
497 vfprintf(stderr
, fmt
, ap
);
498 fprintf(stderr
, "\n");
499 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
500 fprintf(stderr
, "CPU #%d:\n", env
->cpu_index
);
502 cpu_dump_state(env
, stderr
, fprintf
, X86_DUMP_FPU
);
504 cpu_dump_state(env
, stderr
, fprintf
, 0);
514 static QEMUBalloonEvent
*qemu_balloon_event
;
515 void *qemu_balloon_event_opaque
;
517 void qemu_add_balloon_handler(QEMUBalloonEvent
*func
, void *opaque
)
519 qemu_balloon_event
= func
;
520 qemu_balloon_event_opaque
= opaque
;
523 void qemu_balloon(ram_addr_t target
)
525 if (qemu_balloon_event
)
526 qemu_balloon_event(qemu_balloon_event_opaque
, target
);
529 ram_addr_t
qemu_balloon_status(void)
531 if (qemu_balloon_event
)
532 return qemu_balloon_event(qemu_balloon_event_opaque
, 0);
536 /***********************************************************/
539 static QEMUPutKBDEvent
*qemu_put_kbd_event
;
540 static void *qemu_put_kbd_event_opaque
;
541 static QEMUPutMouseEntry
*qemu_put_mouse_event_head
;
542 static QEMUPutMouseEntry
*qemu_put_mouse_event_current
;
544 void qemu_add_kbd_event_handler(QEMUPutKBDEvent
*func
, void *opaque
)
546 qemu_put_kbd_event_opaque
= opaque
;
547 qemu_put_kbd_event
= func
;
550 QEMUPutMouseEntry
*qemu_add_mouse_event_handler(QEMUPutMouseEvent
*func
,
551 void *opaque
, int absolute
,
554 QEMUPutMouseEntry
*s
, *cursor
;
556 s
= qemu_mallocz(sizeof(QEMUPutMouseEntry
));
558 s
->qemu_put_mouse_event
= func
;
559 s
->qemu_put_mouse_event_opaque
= opaque
;
560 s
->qemu_put_mouse_event_absolute
= absolute
;
561 s
->qemu_put_mouse_event_name
= qemu_strdup(name
);
564 if (!qemu_put_mouse_event_head
) {
565 qemu_put_mouse_event_head
= qemu_put_mouse_event_current
= s
;
569 cursor
= qemu_put_mouse_event_head
;
570 while (cursor
->next
!= NULL
)
571 cursor
= cursor
->next
;
574 qemu_put_mouse_event_current
= s
;
579 void qemu_remove_mouse_event_handler(QEMUPutMouseEntry
*entry
)
581 QEMUPutMouseEntry
*prev
= NULL
, *cursor
;
583 if (!qemu_put_mouse_event_head
|| entry
== NULL
)
586 cursor
= qemu_put_mouse_event_head
;
587 while (cursor
!= NULL
&& cursor
!= entry
) {
589 cursor
= cursor
->next
;
592 if (cursor
== NULL
) // does not exist or list empty
594 else if (prev
== NULL
) { // entry is head
595 qemu_put_mouse_event_head
= cursor
->next
;
596 if (qemu_put_mouse_event_current
== entry
)
597 qemu_put_mouse_event_current
= cursor
->next
;
598 qemu_free(entry
->qemu_put_mouse_event_name
);
603 prev
->next
= entry
->next
;
605 if (qemu_put_mouse_event_current
== entry
)
606 qemu_put_mouse_event_current
= prev
;
608 qemu_free(entry
->qemu_put_mouse_event_name
);
612 void kbd_put_keycode(int keycode
)
614 if (qemu_put_kbd_event
) {
615 qemu_put_kbd_event(qemu_put_kbd_event_opaque
, keycode
);
619 void kbd_mouse_event(int dx
, int dy
, int dz
, int buttons_state
)
621 QEMUPutMouseEvent
*mouse_event
;
622 void *mouse_event_opaque
;
625 if (!qemu_put_mouse_event_current
) {
630 qemu_put_mouse_event_current
->qemu_put_mouse_event
;
632 qemu_put_mouse_event_current
->qemu_put_mouse_event_opaque
;
635 if (graphic_rotate
) {
636 if (qemu_put_mouse_event_current
->qemu_put_mouse_event_absolute
)
639 width
= graphic_width
- 1;
640 mouse_event(mouse_event_opaque
,
641 width
- dy
, dx
, dz
, buttons_state
);
643 mouse_event(mouse_event_opaque
,
644 dx
, dy
, dz
, buttons_state
);
648 int kbd_mouse_is_absolute(void)
650 if (!qemu_put_mouse_event_current
)
653 return qemu_put_mouse_event_current
->qemu_put_mouse_event_absolute
;
656 void do_info_mice(void)
658 QEMUPutMouseEntry
*cursor
;
661 if (!qemu_put_mouse_event_head
) {
662 term_printf("No mouse devices connected\n");
666 term_printf("Mouse devices available:\n");
667 cursor
= qemu_put_mouse_event_head
;
668 while (cursor
!= NULL
) {
669 term_printf("%c Mouse #%d: %s\n",
670 (cursor
== qemu_put_mouse_event_current
? '*' : ' '),
671 index
, cursor
->qemu_put_mouse_event_name
);
673 cursor
= cursor
->next
;
677 void do_mouse_set(int index
)
679 QEMUPutMouseEntry
*cursor
;
682 if (!qemu_put_mouse_event_head
) {
683 term_printf("No mouse devices connected\n");
687 cursor
= qemu_put_mouse_event_head
;
688 while (cursor
!= NULL
&& index
!= i
) {
690 cursor
= cursor
->next
;
694 qemu_put_mouse_event_current
= cursor
;
696 term_printf("Mouse at given index not found\n");
699 /* compute with 96 bit intermediate result: (a*b)/c */
700 uint64_t muldiv64(uint64_t a
, uint32_t b
, uint32_t c
)
705 #ifdef WORDS_BIGENDIAN
715 rl
= (uint64_t)u
.l
.low
* (uint64_t)b
;
716 rh
= (uint64_t)u
.l
.high
* (uint64_t)b
;
719 res
.l
.low
= (((rh
% c
) << 32) + (rl
& 0xffffffff)) / c
;
723 /***********************************************************/
724 /* real time host monotonic timer */
726 #define QEMU_TIMER_BASE 1000000000LL
730 static int64_t clock_freq
;
732 static void init_get_clock(void)
736 ret
= QueryPerformanceFrequency(&freq
);
738 fprintf(stderr
, "Could not calibrate ticks\n");
741 clock_freq
= freq
.QuadPart
;
744 static int64_t get_clock(void)
747 QueryPerformanceCounter(&ti
);
748 return muldiv64(ti
.QuadPart
, QEMU_TIMER_BASE
, clock_freq
);
753 static int use_rt_clock
;
755 static void init_get_clock(void)
758 #if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD_version >= 500000)
761 if (clock_gettime(CLOCK_MONOTONIC
, &ts
) == 0) {
768 static int64_t get_clock(void)
770 #if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD_version >= 500000)
773 clock_gettime(CLOCK_MONOTONIC
, &ts
);
774 return ts
.tv_sec
* 1000000000LL + ts
.tv_nsec
;
778 /* XXX: using gettimeofday leads to problems if the date
779 changes, so it should be avoided. */
781 gettimeofday(&tv
, NULL
);
782 return tv
.tv_sec
* 1000000000LL + (tv
.tv_usec
* 1000);
787 /* Return the virtual CPU time, based on the instruction counter. */
788 static int64_t cpu_get_icount(void)
791 CPUState
*env
= cpu_single_env
;;
792 icount
= qemu_icount
;
795 fprintf(stderr
, "Bad clock read\n");
796 icount
-= (env
->icount_decr
.u16
.low
+ env
->icount_extra
);
798 return qemu_icount_bias
+ (icount
<< icount_time_shift
);
801 /***********************************************************/
802 /* guest cycle counter */
804 static int64_t cpu_ticks_prev
;
805 static int64_t cpu_ticks_offset
;
806 static int64_t cpu_clock_offset
;
807 static int cpu_ticks_enabled
;
809 /* return the host CPU cycle counter and handle stop/restart */
810 int64_t cpu_get_ticks(void)
813 return cpu_get_icount();
815 if (!cpu_ticks_enabled
) {
816 return cpu_ticks_offset
;
819 ticks
= cpu_get_real_ticks();
820 if (cpu_ticks_prev
> ticks
) {
821 /* Note: non increasing ticks may happen if the host uses
823 cpu_ticks_offset
+= cpu_ticks_prev
- ticks
;
825 cpu_ticks_prev
= ticks
;
826 return ticks
+ cpu_ticks_offset
;
830 /* return the host CPU monotonic timer and handle stop/restart */
831 static int64_t cpu_get_clock(void)
834 if (!cpu_ticks_enabled
) {
835 return cpu_clock_offset
;
838 return ti
+ cpu_clock_offset
;
842 /* enable cpu_get_ticks() */
843 void cpu_enable_ticks(void)
845 if (!cpu_ticks_enabled
) {
846 cpu_ticks_offset
-= cpu_get_real_ticks();
847 cpu_clock_offset
-= get_clock();
848 cpu_ticks_enabled
= 1;
852 /* disable cpu_get_ticks() : the clock is stopped. You must not call
853 cpu_get_ticks() after that. */
854 void cpu_disable_ticks(void)
856 if (cpu_ticks_enabled
) {
857 cpu_ticks_offset
= cpu_get_ticks();
858 cpu_clock_offset
= cpu_get_clock();
859 cpu_ticks_enabled
= 0;
863 /***********************************************************/
866 #define QEMU_TIMER_REALTIME 0
867 #define QEMU_TIMER_VIRTUAL 1
871 /* XXX: add frequency */
879 struct QEMUTimer
*next
;
882 struct qemu_alarm_timer
{
886 int (*start
)(struct qemu_alarm_timer
*t
);
887 void (*stop
)(struct qemu_alarm_timer
*t
);
888 void (*rearm
)(struct qemu_alarm_timer
*t
);
892 #define ALARM_FLAG_DYNTICKS 0x1
893 #define ALARM_FLAG_EXPIRED 0x2
895 static inline int alarm_has_dynticks(struct qemu_alarm_timer
*t
)
897 return t
->flags
& ALARM_FLAG_DYNTICKS
;
900 static void qemu_rearm_alarm_timer(struct qemu_alarm_timer
*t
)
902 if (!alarm_has_dynticks(t
))
908 /* TODO: MIN_TIMER_REARM_US should be optimized */
909 #define MIN_TIMER_REARM_US 250
911 static struct qemu_alarm_timer
*alarm_timer
;
913 static int alarm_timer_rfd
, alarm_timer_wfd
;
918 struct qemu_alarm_win32
{
922 } alarm_win32_data
= {0, NULL
, -1};
924 static int win32_start_timer(struct qemu_alarm_timer
*t
);
925 static void win32_stop_timer(struct qemu_alarm_timer
*t
);
926 static void win32_rearm_timer(struct qemu_alarm_timer
*t
);
930 static int unix_start_timer(struct qemu_alarm_timer
*t
);
931 static void unix_stop_timer(struct qemu_alarm_timer
*t
);
935 static int dynticks_start_timer(struct qemu_alarm_timer
*t
);
936 static void dynticks_stop_timer(struct qemu_alarm_timer
*t
);
937 static void dynticks_rearm_timer(struct qemu_alarm_timer
*t
);
939 static int hpet_start_timer(struct qemu_alarm_timer
*t
);
940 static void hpet_stop_timer(struct qemu_alarm_timer
*t
);
942 static int rtc_start_timer(struct qemu_alarm_timer
*t
);
943 static void rtc_stop_timer(struct qemu_alarm_timer
*t
);
945 #endif /* __linux__ */
949 /* Correlation between real and virtual time is always going to be
950 fairly approximate, so ignore small variation.
951 When the guest is idle real and virtual time will be aligned in
953 #define ICOUNT_WOBBLE (QEMU_TIMER_BASE / 10)
955 static void icount_adjust(void)
960 static int64_t last_delta
;
961 /* If the VM is not running, then do nothing. */
965 cur_time
= cpu_get_clock();
966 cur_icount
= qemu_get_clock(vm_clock
);
967 delta
= cur_icount
- cur_time
;
968 /* FIXME: This is a very crude algorithm, somewhat prone to oscillation. */
970 && last_delta
+ ICOUNT_WOBBLE
< delta
* 2
971 && icount_time_shift
> 0) {
972 /* The guest is getting too far ahead. Slow time down. */
976 && last_delta
- ICOUNT_WOBBLE
> delta
* 2
977 && icount_time_shift
< MAX_ICOUNT_SHIFT
) {
978 /* The guest is getting too far behind. Speed time up. */
982 qemu_icount_bias
= cur_icount
- (qemu_icount
<< icount_time_shift
);
985 static void icount_adjust_rt(void * opaque
)
987 qemu_mod_timer(icount_rt_timer
,
988 qemu_get_clock(rt_clock
) + 1000);
992 static void icount_adjust_vm(void * opaque
)
994 qemu_mod_timer(icount_vm_timer
,
995 qemu_get_clock(vm_clock
) + QEMU_TIMER_BASE
/ 10);
999 static void init_icount_adjust(void)
1001 /* Have both realtime and virtual time triggers for speed adjustment.
1002 The realtime trigger catches emulated time passing too slowly,
1003 the virtual time trigger catches emulated time passing too fast.
1004 Realtime triggers occur even when idle, so use them less frequently
1005 than VM triggers. */
1006 icount_rt_timer
= qemu_new_timer(rt_clock
, icount_adjust_rt
, NULL
);
1007 qemu_mod_timer(icount_rt_timer
,
1008 qemu_get_clock(rt_clock
) + 1000);
1009 icount_vm_timer
= qemu_new_timer(vm_clock
, icount_adjust_vm
, NULL
);
1010 qemu_mod_timer(icount_vm_timer
,
1011 qemu_get_clock(vm_clock
) + QEMU_TIMER_BASE
/ 10);
1014 static struct qemu_alarm_timer alarm_timers
[] = {
1017 {"dynticks", ALARM_FLAG_DYNTICKS
, dynticks_start_timer
,
1018 dynticks_stop_timer
, dynticks_rearm_timer
, NULL
},
1019 /* HPET - if available - is preferred */
1020 {"hpet", 0, hpet_start_timer
, hpet_stop_timer
, NULL
, NULL
},
1021 /* ...otherwise try RTC */
1022 {"rtc", 0, rtc_start_timer
, rtc_stop_timer
, NULL
, NULL
},
1024 {"unix", 0, unix_start_timer
, unix_stop_timer
, NULL
, NULL
},
1026 {"dynticks", ALARM_FLAG_DYNTICKS
, win32_start_timer
,
1027 win32_stop_timer
, win32_rearm_timer
, &alarm_win32_data
},
1028 {"win32", 0, win32_start_timer
,
1029 win32_stop_timer
, NULL
, &alarm_win32_data
},
1034 static void show_available_alarms(void)
1038 printf("Available alarm timers, in order of precedence:\n");
1039 for (i
= 0; alarm_timers
[i
].name
; i
++)
1040 printf("%s\n", alarm_timers
[i
].name
);
1043 static void configure_alarms(char const *opt
)
1047 int count
= ARRAY_SIZE(alarm_timers
) - 1;
1050 struct qemu_alarm_timer tmp
;
1052 if (!strcmp(opt
, "?")) {
1053 show_available_alarms();
1059 /* Reorder the array */
1060 name
= strtok(arg
, ",");
1062 for (i
= 0; i
< count
&& alarm_timers
[i
].name
; i
++) {
1063 if (!strcmp(alarm_timers
[i
].name
, name
))
1068 fprintf(stderr
, "Unknown clock %s\n", name
);
1077 tmp
= alarm_timers
[i
];
1078 alarm_timers
[i
] = alarm_timers
[cur
];
1079 alarm_timers
[cur
] = tmp
;
1083 name
= strtok(NULL
, ",");
1089 /* Disable remaining timers */
1090 for (i
= cur
; i
< count
; i
++)
1091 alarm_timers
[i
].name
= NULL
;
1093 show_available_alarms();
1098 QEMUClock
*rt_clock
;
1099 QEMUClock
*vm_clock
;
1101 static QEMUTimer
*active_timers
[2];
1103 static QEMUClock
*qemu_new_clock(int type
)
1106 clock
= qemu_mallocz(sizeof(QEMUClock
));
1111 QEMUTimer
*qemu_new_timer(QEMUClock
*clock
, QEMUTimerCB
*cb
, void *opaque
)
1115 ts
= qemu_mallocz(sizeof(QEMUTimer
));
1118 ts
->opaque
= opaque
;
1122 void qemu_free_timer(QEMUTimer
*ts
)
1127 /* stop a timer, but do not dealloc it */
1128 void qemu_del_timer(QEMUTimer
*ts
)
1132 /* NOTE: this code must be signal safe because
1133 qemu_timer_expired() can be called from a signal. */
1134 pt
= &active_timers
[ts
->clock
->type
];
1147 /* modify the current timer so that it will be fired when current_time
1148 >= expire_time. The corresponding callback will be called. */
1149 void qemu_mod_timer(QEMUTimer
*ts
, int64_t expire_time
)
1155 /* add the timer in the sorted list */
1156 /* NOTE: this code must be signal safe because
1157 qemu_timer_expired() can be called from a signal. */
1158 pt
= &active_timers
[ts
->clock
->type
];
1163 if (t
->expire_time
> expire_time
)
1167 ts
->expire_time
= expire_time
;
1171 /* Rearm if necessary */
1172 if (pt
== &active_timers
[ts
->clock
->type
]) {
1173 if ((alarm_timer
->flags
& ALARM_FLAG_EXPIRED
) == 0) {
1174 qemu_rearm_alarm_timer(alarm_timer
);
1176 /* Interrupt execution to force deadline recalculation. */
1177 if (use_icount
&& cpu_single_env
) {
1178 cpu_interrupt(cpu_single_env
, CPU_INTERRUPT_EXIT
);
1183 int qemu_timer_pending(QEMUTimer
*ts
)
1186 for(t
= active_timers
[ts
->clock
->type
]; t
!= NULL
; t
= t
->next
) {
1193 static inline int qemu_timer_expired(QEMUTimer
*timer_head
, int64_t current_time
)
1197 return (timer_head
->expire_time
<= current_time
);
1200 static void qemu_run_timers(QEMUTimer
**ptimer_head
, int64_t current_time
)
1206 if (!ts
|| ts
->expire_time
> current_time
)
1208 /* remove timer from the list before calling the callback */
1209 *ptimer_head
= ts
->next
;
1212 /* run the callback (the timer list can be modified) */
1217 int64_t qemu_get_clock(QEMUClock
*clock
)
1219 switch(clock
->type
) {
1220 case QEMU_TIMER_REALTIME
:
1221 return get_clock() / 1000000;
1223 case QEMU_TIMER_VIRTUAL
:
1225 return cpu_get_icount();
1227 return cpu_get_clock();
1232 static void init_timers(void)
1235 ticks_per_sec
= QEMU_TIMER_BASE
;
1236 rt_clock
= qemu_new_clock(QEMU_TIMER_REALTIME
);
1237 vm_clock
= qemu_new_clock(QEMU_TIMER_VIRTUAL
);
1241 void qemu_put_timer(QEMUFile
*f
, QEMUTimer
*ts
)
1243 uint64_t expire_time
;
1245 if (qemu_timer_pending(ts
)) {
1246 expire_time
= ts
->expire_time
;
1250 qemu_put_be64(f
, expire_time
);
1253 void qemu_get_timer(QEMUFile
*f
, QEMUTimer
*ts
)
1255 uint64_t expire_time
;
1257 expire_time
= qemu_get_be64(f
);
1258 if (expire_time
!= -1) {
1259 qemu_mod_timer(ts
, expire_time
);
1265 static void timer_save(QEMUFile
*f
, void *opaque
)
1267 if (cpu_ticks_enabled
) {
1268 hw_error("cannot save state if virtual timers are running");
1270 qemu_put_be64(f
, cpu_ticks_offset
);
1271 qemu_put_be64(f
, ticks_per_sec
);
1272 qemu_put_be64(f
, cpu_clock_offset
);
1275 static int timer_load(QEMUFile
*f
, void *opaque
, int version_id
)
1277 if (version_id
!= 1 && version_id
!= 2)
1279 if (cpu_ticks_enabled
) {
1282 cpu_ticks_offset
=qemu_get_be64(f
);
1283 ticks_per_sec
=qemu_get_be64(f
);
1284 if (version_id
== 2) {
1285 cpu_clock_offset
=qemu_get_be64(f
);
1291 void CALLBACK
host_alarm_handler(UINT uTimerID
, UINT uMsg
,
1292 DWORD_PTR dwUser
, DWORD_PTR dw1
, DWORD_PTR dw2
)
1294 static void host_alarm_handler(int host_signum
)
1298 #define DISP_FREQ 1000
1300 static int64_t delta_min
= INT64_MAX
;
1301 static int64_t delta_max
, delta_cum
, last_clock
, delta
, ti
;
1303 ti
= qemu_get_clock(vm_clock
);
1304 if (last_clock
!= 0) {
1305 delta
= ti
- last_clock
;
1306 if (delta
< delta_min
)
1308 if (delta
> delta_max
)
1311 if (++count
== DISP_FREQ
) {
1312 printf("timer: min=%" PRId64
" us max=%" PRId64
" us avg=%" PRId64
" us avg_freq=%0.3f Hz\n",
1313 muldiv64(delta_min
, 1000000, ticks_per_sec
),
1314 muldiv64(delta_max
, 1000000, ticks_per_sec
),
1315 muldiv64(delta_cum
, 1000000 / DISP_FREQ
, ticks_per_sec
),
1316 (double)ticks_per_sec
/ ((double)delta_cum
/ DISP_FREQ
));
1318 delta_min
= INT64_MAX
;
1326 if (alarm_has_dynticks(alarm_timer
) ||
1328 qemu_timer_expired(active_timers
[QEMU_TIMER_VIRTUAL
],
1329 qemu_get_clock(vm_clock
))) ||
1330 qemu_timer_expired(active_timers
[QEMU_TIMER_REALTIME
],
1331 qemu_get_clock(rt_clock
))) {
1332 CPUState
*env
= next_cpu
;
1335 struct qemu_alarm_win32
*data
= ((struct qemu_alarm_timer
*)dwUser
)->priv
;
1336 SetEvent(data
->host_alarm
);
1338 static const char byte
= 0;
1339 write(alarm_timer_wfd
, &byte
, sizeof(byte
));
1341 alarm_timer
->flags
|= ALARM_FLAG_EXPIRED
;
1344 /* stop the currently executing cpu because a timer occured */
1345 cpu_interrupt(env
, CPU_INTERRUPT_EXIT
);
1347 if (env
->kqemu_enabled
) {
1348 kqemu_cpu_interrupt(env
);
1356 static int64_t qemu_next_deadline(void)
1360 if (active_timers
[QEMU_TIMER_VIRTUAL
]) {
1361 delta
= active_timers
[QEMU_TIMER_VIRTUAL
]->expire_time
-
1362 qemu_get_clock(vm_clock
);
1364 /* To avoid problems with overflow limit this to 2^32. */
1374 #if defined(__linux__) || defined(_WIN32)
1375 static uint64_t qemu_next_deadline_dyntick(void)
1383 delta
= (qemu_next_deadline() + 999) / 1000;
1385 if (active_timers
[QEMU_TIMER_REALTIME
]) {
1386 rtdelta
= (active_timers
[QEMU_TIMER_REALTIME
]->expire_time
-
1387 qemu_get_clock(rt_clock
))*1000;
1388 if (rtdelta
< delta
)
1392 if (delta
< MIN_TIMER_REARM_US
)
1393 delta
= MIN_TIMER_REARM_US
;
1401 /* Sets a specific flag */
1402 static int fcntl_setfl(int fd
, int flag
)
1406 flags
= fcntl(fd
, F_GETFL
);
1410 if (fcntl(fd
, F_SETFL
, flags
| flag
) == -1)
1416 #if defined(__linux__)
1418 #define RTC_FREQ 1024
1420 static void enable_sigio_timer(int fd
)
1422 struct sigaction act
;
1425 sigfillset(&act
.sa_mask
);
1427 act
.sa_handler
= host_alarm_handler
;
1429 sigaction(SIGIO
, &act
, NULL
);
1430 fcntl_setfl(fd
, O_ASYNC
);
1431 fcntl(fd
, F_SETOWN
, getpid());
1434 static int hpet_start_timer(struct qemu_alarm_timer
*t
)
1436 struct hpet_info info
;
1439 fd
= open("/dev/hpet", O_RDONLY
);
1444 r
= ioctl(fd
, HPET_IRQFREQ
, RTC_FREQ
);
1446 fprintf(stderr
, "Could not configure '/dev/hpet' to have a 1024Hz timer. This is not a fatal\n"
1447 "error, but for better emulation accuracy type:\n"
1448 "'echo 1024 > /proc/sys/dev/hpet/max-user-freq' as root.\n");
1452 /* Check capabilities */
1453 r
= ioctl(fd
, HPET_INFO
, &info
);
1457 /* Enable periodic mode */
1458 r
= ioctl(fd
, HPET_EPI
, 0);
1459 if (info
.hi_flags
&& (r
< 0))
1462 /* Enable interrupt */
1463 r
= ioctl(fd
, HPET_IE_ON
, 0);
1467 enable_sigio_timer(fd
);
1468 t
->priv
= (void *)(long)fd
;
1476 static void hpet_stop_timer(struct qemu_alarm_timer
*t
)
1478 int fd
= (long)t
->priv
;
1483 static int rtc_start_timer(struct qemu_alarm_timer
*t
)
1486 unsigned long current_rtc_freq
= 0;
1488 TFR(rtc_fd
= open("/dev/rtc", O_RDONLY
));
1491 ioctl(rtc_fd
, RTC_IRQP_READ
, ¤t_rtc_freq
);
1492 if (current_rtc_freq
!= RTC_FREQ
&&
1493 ioctl(rtc_fd
, RTC_IRQP_SET
, RTC_FREQ
) < 0) {
1494 fprintf(stderr
, "Could not configure '/dev/rtc' to have a 1024 Hz timer. This is not a fatal\n"
1495 "error, but for better emulation accuracy either use a 2.6 host Linux kernel or\n"
1496 "type 'echo 1024 > /proc/sys/dev/rtc/max-user-freq' as root.\n");
1499 if (ioctl(rtc_fd
, RTC_PIE_ON
, 0) < 0) {
1505 enable_sigio_timer(rtc_fd
);
1507 t
->priv
= (void *)(long)rtc_fd
;
1512 static void rtc_stop_timer(struct qemu_alarm_timer
*t
)
1514 int rtc_fd
= (long)t
->priv
;
1519 static int dynticks_start_timer(struct qemu_alarm_timer
*t
)
1523 struct sigaction act
;
1525 sigfillset(&act
.sa_mask
);
1527 act
.sa_handler
= host_alarm_handler
;
1529 sigaction(SIGALRM
, &act
, NULL
);
1531 ev
.sigev_value
.sival_int
= 0;
1532 ev
.sigev_notify
= SIGEV_SIGNAL
;
1533 ev
.sigev_signo
= SIGALRM
;
1535 if (timer_create(CLOCK_REALTIME
, &ev
, &host_timer
)) {
1536 perror("timer_create");
1538 /* disable dynticks */
1539 fprintf(stderr
, "Dynamic Ticks disabled\n");
1544 t
->priv
= (void *)(long)host_timer
;
1549 static void dynticks_stop_timer(struct qemu_alarm_timer
*t
)
1551 timer_t host_timer
= (timer_t
)(long)t
->priv
;
1553 timer_delete(host_timer
);
1556 static void dynticks_rearm_timer(struct qemu_alarm_timer
*t
)
1558 timer_t host_timer
= (timer_t
)(long)t
->priv
;
1559 struct itimerspec timeout
;
1560 int64_t nearest_delta_us
= INT64_MAX
;
1563 if (!active_timers
[QEMU_TIMER_REALTIME
] &&
1564 !active_timers
[QEMU_TIMER_VIRTUAL
])
1567 nearest_delta_us
= qemu_next_deadline_dyntick();
1569 /* check whether a timer is already running */
1570 if (timer_gettime(host_timer
, &timeout
)) {
1572 fprintf(stderr
, "Internal timer error: aborting\n");
1575 current_us
= timeout
.it_value
.tv_sec
* 1000000 + timeout
.it_value
.tv_nsec
/1000;
1576 if (current_us
&& current_us
<= nearest_delta_us
)
1579 timeout
.it_interval
.tv_sec
= 0;
1580 timeout
.it_interval
.tv_nsec
= 0; /* 0 for one-shot timer */
1581 timeout
.it_value
.tv_sec
= nearest_delta_us
/ 1000000;
1582 timeout
.it_value
.tv_nsec
= (nearest_delta_us
% 1000000) * 1000;
1583 if (timer_settime(host_timer
, 0 /* RELATIVE */, &timeout
, NULL
)) {
1585 fprintf(stderr
, "Internal timer error: aborting\n");
1590 #endif /* defined(__linux__) */
1592 static int unix_start_timer(struct qemu_alarm_timer
*t
)
1594 struct sigaction act
;
1595 struct itimerval itv
;
1599 sigfillset(&act
.sa_mask
);
1601 act
.sa_handler
= host_alarm_handler
;
1603 sigaction(SIGALRM
, &act
, NULL
);
1605 itv
.it_interval
.tv_sec
= 0;
1606 /* for i386 kernel 2.6 to get 1 ms */
1607 itv
.it_interval
.tv_usec
= 999;
1608 itv
.it_value
.tv_sec
= 0;
1609 itv
.it_value
.tv_usec
= 10 * 1000;
1611 err
= setitimer(ITIMER_REAL
, &itv
, NULL
);
1618 static void unix_stop_timer(struct qemu_alarm_timer
*t
)
1620 struct itimerval itv
;
1622 memset(&itv
, 0, sizeof(itv
));
1623 setitimer(ITIMER_REAL
, &itv
, NULL
);
1626 #endif /* !defined(_WIN32) */
1628 static void try_to_rearm_timer(void *opaque
)
1630 struct qemu_alarm_timer
*t
= opaque
;
1634 /* Drain the notify pipe */
1637 len
= read(alarm_timer_rfd
, buffer
, sizeof(buffer
));
1638 } while ((len
== -1 && errno
== EINTR
) || len
> 0);
1641 if (t
->flags
& ALARM_FLAG_EXPIRED
) {
1642 alarm_timer
->flags
&= ~ALARM_FLAG_EXPIRED
;
1643 qemu_rearm_alarm_timer(alarm_timer
);
1649 static int win32_start_timer(struct qemu_alarm_timer
*t
)
1652 struct qemu_alarm_win32
*data
= t
->priv
;
1655 data
->host_alarm
= CreateEvent(NULL
, FALSE
, FALSE
, NULL
);
1656 if (!data
->host_alarm
) {
1657 perror("Failed CreateEvent");
1661 memset(&tc
, 0, sizeof(tc
));
1662 timeGetDevCaps(&tc
, sizeof(tc
));
1664 if (data
->period
< tc
.wPeriodMin
)
1665 data
->period
= tc
.wPeriodMin
;
1667 timeBeginPeriod(data
->period
);
1669 flags
= TIME_CALLBACK_FUNCTION
;
1670 if (alarm_has_dynticks(t
))
1671 flags
|= TIME_ONESHOT
;
1673 flags
|= TIME_PERIODIC
;
1675 data
->timerId
= timeSetEvent(1, // interval (ms)
1676 data
->period
, // resolution
1677 host_alarm_handler
, // function
1678 (DWORD
)t
, // parameter
1681 if (!data
->timerId
) {
1682 perror("Failed to initialize win32 alarm timer");
1684 timeEndPeriod(data
->period
);
1685 CloseHandle(data
->host_alarm
);
1689 qemu_add_wait_object(data
->host_alarm
, try_to_rearm_timer
, t
);
1694 static void win32_stop_timer(struct qemu_alarm_timer
*t
)
1696 struct qemu_alarm_win32
*data
= t
->priv
;
1698 timeKillEvent(data
->timerId
);
1699 timeEndPeriod(data
->period
);
1701 CloseHandle(data
->host_alarm
);
1704 static void win32_rearm_timer(struct qemu_alarm_timer
*t
)
1706 struct qemu_alarm_win32
*data
= t
->priv
;
1707 uint64_t nearest_delta_us
;
1709 if (!active_timers
[QEMU_TIMER_REALTIME
] &&
1710 !active_timers
[QEMU_TIMER_VIRTUAL
])
1713 nearest_delta_us
= qemu_next_deadline_dyntick();
1714 nearest_delta_us
/= 1000;
1716 timeKillEvent(data
->timerId
);
1718 data
->timerId
= timeSetEvent(1,
1722 TIME_ONESHOT
| TIME_PERIODIC
);
1724 if (!data
->timerId
) {
1725 perror("Failed to re-arm win32 alarm timer");
1727 timeEndPeriod(data
->period
);
1728 CloseHandle(data
->host_alarm
);
1735 static int init_timer_alarm(void)
1737 struct qemu_alarm_timer
*t
= NULL
;
1747 err
= fcntl_setfl(fds
[0], O_NONBLOCK
);
1751 err
= fcntl_setfl(fds
[1], O_NONBLOCK
);
1755 alarm_timer_rfd
= fds
[0];
1756 alarm_timer_wfd
= fds
[1];
1759 for (i
= 0; alarm_timers
[i
].name
; i
++) {
1760 t
= &alarm_timers
[i
];
1773 qemu_set_fd_handler2(alarm_timer_rfd
, NULL
,
1774 try_to_rearm_timer
, NULL
, t
);
1789 static void quit_timers(void)
1791 alarm_timer
->stop(alarm_timer
);
1795 /***********************************************************/
1796 /* host time/date access */
1797 void qemu_get_timedate(struct tm
*tm
, int offset
)
1804 if (rtc_date_offset
== -1) {
1808 ret
= localtime(&ti
);
1810 ti
-= rtc_date_offset
;
1814 memcpy(tm
, ret
, sizeof(struct tm
));
1817 int qemu_timedate_diff(struct tm
*tm
)
1821 if (rtc_date_offset
== -1)
1823 seconds
= mktimegm(tm
);
1825 seconds
= mktime(tm
);
1827 seconds
= mktimegm(tm
) + rtc_date_offset
;
1829 return seconds
- time(NULL
);
1833 static void socket_cleanup(void)
1838 static int socket_init(void)
1843 ret
= WSAStartup(MAKEWORD(2,2), &Data
);
1845 err
= WSAGetLastError();
1846 fprintf(stderr
, "WSAStartup: %d\n", err
);
1849 atexit(socket_cleanup
);
1854 const char *get_opt_name(char *buf
, int buf_size
, const char *p
)
1859 while (*p
!= '\0' && *p
!= '=') {
1860 if (q
&& (q
- buf
) < buf_size
- 1)
1870 const char *get_opt_value(char *buf
, int buf_size
, const char *p
)
1875 while (*p
!= '\0') {
1877 if (*(p
+ 1) != ',')
1881 if (q
&& (q
- buf
) < buf_size
- 1)
1891 int get_param_value(char *buf
, int buf_size
,
1892 const char *tag
, const char *str
)
1899 p
= get_opt_name(option
, sizeof(option
), p
);
1903 if (!strcmp(tag
, option
)) {
1904 (void)get_opt_value(buf
, buf_size
, p
);
1907 p
= get_opt_value(NULL
, 0, p
);
1916 int check_params(char *buf
, int buf_size
,
1917 const char * const *params
, const char *str
)
1924 p
= get_opt_name(buf
, buf_size
, p
);
1928 for(i
= 0; params
[i
] != NULL
; i
++)
1929 if (!strcmp(params
[i
], buf
))
1931 if (params
[i
] == NULL
)
1933 p
= get_opt_value(NULL
, 0, p
);
1941 /***********************************************************/
1942 /* Bluetooth support */
1945 static struct HCIInfo
*hci_table
[MAX_NICS
];
1947 static struct bt_vlan_s
{
1948 struct bt_scatternet_s net
;
1950 struct bt_vlan_s
*next
;
1953 /* find or alloc a new bluetooth "VLAN" */
1954 static struct bt_scatternet_s
*qemu_find_bt_vlan(int id
)
1956 struct bt_vlan_s
**pvlan
, *vlan
;
1957 for (vlan
= first_bt_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
1961 vlan
= qemu_mallocz(sizeof(struct bt_vlan_s
));
1963 pvlan
= &first_bt_vlan
;
1964 while (*pvlan
!= NULL
)
1965 pvlan
= &(*pvlan
)->next
;
1970 static void null_hci_send(struct HCIInfo
*hci
, const uint8_t *data
, int len
)
1974 static int null_hci_addr_set(struct HCIInfo
*hci
, const uint8_t *bd_addr
)
1979 static struct HCIInfo null_hci
= {
1980 .cmd_send
= null_hci_send
,
1981 .sco_send
= null_hci_send
,
1982 .acl_send
= null_hci_send
,
1983 .bdaddr_set
= null_hci_addr_set
,
1986 struct HCIInfo
*qemu_next_hci(void)
1988 if (cur_hci
== nb_hcis
)
1991 return hci_table
[cur_hci
++];
1994 static struct HCIInfo
*hci_init(const char *str
)
1997 struct bt_scatternet_s
*vlan
= 0;
1999 if (!strcmp(str
, "null"))
2002 else if (!strncmp(str
, "host", 4) && (str
[4] == '\0' || str
[4] == ':'))
2004 return bt_host_hci(str
[4] ? str
+ 5 : "hci0");
2005 else if (!strncmp(str
, "hci", 3)) {
2008 if (!strncmp(str
+ 3, ",vlan=", 6)) {
2009 vlan
= qemu_find_bt_vlan(strtol(str
+ 9, &endp
, 0));
2014 vlan
= qemu_find_bt_vlan(0);
2016 return bt_new_hci(vlan
);
2019 fprintf(stderr
, "qemu: Unknown bluetooth HCI `%s'.\n", str
);
2024 static int bt_hci_parse(const char *str
)
2026 struct HCIInfo
*hci
;
2029 if (nb_hcis
>= MAX_NICS
) {
2030 fprintf(stderr
, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS
);
2034 hci
= hci_init(str
);
2043 bdaddr
.b
[5] = 0x56 + nb_hcis
;
2044 hci
->bdaddr_set(hci
, bdaddr
.b
);
2046 hci_table
[nb_hcis
++] = hci
;
2051 static void bt_vhci_add(int vlan_id
)
2053 struct bt_scatternet_s
*vlan
= qemu_find_bt_vlan(vlan_id
);
2056 fprintf(stderr
, "qemu: warning: adding a VHCI to "
2057 "an empty scatternet %i\n", vlan_id
);
2059 bt_vhci_init(bt_new_hci(vlan
));
2062 static struct bt_device_s
*bt_device_add(const char *opt
)
2064 struct bt_scatternet_s
*vlan
;
2066 char *endp
= strstr(opt
, ",vlan=");
2067 int len
= (endp
? endp
- opt
: strlen(opt
)) + 1;
2070 pstrcpy(devname
, MIN(sizeof(devname
), len
), opt
);
2073 vlan_id
= strtol(endp
+ 6, &endp
, 0);
2075 fprintf(stderr
, "qemu: unrecognised bluetooth vlan Id\n");
2080 vlan
= qemu_find_bt_vlan(vlan_id
);
2083 fprintf(stderr
, "qemu: warning: adding a slave device to "
2084 "an empty scatternet %i\n", vlan_id
);
2086 if (!strcmp(devname
, "keyboard"))
2087 return bt_keyboard_init(vlan
);
2089 fprintf(stderr
, "qemu: unsupported bluetooth device `%s'\n", devname
);
2093 static int bt_parse(const char *opt
)
2095 const char *endp
, *p
;
2098 if (strstart(opt
, "hci", &endp
)) {
2099 if (!*endp
|| *endp
== ',') {
2101 if (!strstart(endp
, ",vlan=", 0))
2104 return bt_hci_parse(opt
);
2106 } else if (strstart(opt
, "vhci", &endp
)) {
2107 if (!*endp
|| *endp
== ',') {
2109 if (strstart(endp
, ",vlan=", &p
)) {
2110 vlan
= strtol(p
, (char **) &endp
, 0);
2112 fprintf(stderr
, "qemu: bad scatternet '%s'\n", p
);
2116 fprintf(stderr
, "qemu: bad parameter '%s'\n", endp
+ 1);
2125 } else if (strstart(opt
, "device:", &endp
))
2126 return !bt_device_add(endp
);
2128 fprintf(stderr
, "qemu: bad bluetooth parameter '%s'\n", opt
);
2132 /***********************************************************/
2133 /* QEMU Block devices */
2135 #define HD_ALIAS "index=%d,media=disk"
2137 #define CDROM_ALIAS "index=1,media=cdrom"
2139 #define CDROM_ALIAS "index=2,media=cdrom"
2141 #define FD_ALIAS "index=%d,if=floppy"
2142 #define PFLASH_ALIAS "if=pflash"
2143 #define MTD_ALIAS "if=mtd"
2144 #define SD_ALIAS "index=0,if=sd"
2146 static int drive_opt_get_free_idx(void)
2150 for (index
= 0; index
< MAX_DRIVES
; index
++)
2151 if (!drives_opt
[index
].used
) {
2152 drives_opt
[index
].used
= 1;
2159 static int drive_get_free_idx(void)
2163 for (index
= 0; index
< MAX_DRIVES
; index
++)
2164 if (!drives_table
[index
].used
) {
2165 drives_table
[index
].used
= 1;
2172 int drive_add(const char *file
, const char *fmt
, ...)
2175 int index
= drive_opt_get_free_idx();
2177 if (nb_drives_opt
>= MAX_DRIVES
|| index
== -1) {
2178 fprintf(stderr
, "qemu: too many drives\n");
2182 drives_opt
[index
].file
= file
;
2184 vsnprintf(drives_opt
[index
].opt
,
2185 sizeof(drives_opt
[0].opt
), fmt
, ap
);
2192 void drive_remove(int index
)
2194 drives_opt
[index
].used
= 0;
2198 int drive_get_index(BlockInterfaceType type
, int bus
, int unit
)
2202 /* seek interface, bus and unit */
2204 for (index
= 0; index
< MAX_DRIVES
; index
++)
2205 if (drives_table
[index
].type
== type
&&
2206 drives_table
[index
].bus
== bus
&&
2207 drives_table
[index
].unit
== unit
&&
2208 drives_table
[index
].used
)
2214 int drive_get_max_bus(BlockInterfaceType type
)
2220 for (index
= 0; index
< nb_drives
; index
++) {
2221 if(drives_table
[index
].type
== type
&&
2222 drives_table
[index
].bus
> max_bus
)
2223 max_bus
= drives_table
[index
].bus
;
2228 const char *drive_get_serial(BlockDriverState
*bdrv
)
2232 for (index
= 0; index
< nb_drives
; index
++)
2233 if (drives_table
[index
].bdrv
== bdrv
)
2234 return drives_table
[index
].serial
;
2239 BlockInterfaceErrorAction
drive_get_onerror(BlockDriverState
*bdrv
)
2243 for (index
= 0; index
< nb_drives
; index
++)
2244 if (drives_table
[index
].bdrv
== bdrv
)
2245 return drives_table
[index
].onerror
;
2247 return BLOCK_ERR_STOP_ENOSPC
;
2250 static void bdrv_format_print(void *opaque
, const char *name
)
2252 fprintf(stderr
, " %s", name
);
2255 void drive_uninit(BlockDriverState
*bdrv
)
2259 for (i
= 0; i
< MAX_DRIVES
; i
++)
2260 if (drives_table
[i
].bdrv
== bdrv
) {
2261 drives_table
[i
].bdrv
= NULL
;
2262 drives_table
[i
].used
= 0;
2263 drive_remove(drives_table
[i
].drive_opt_idx
);
2269 int drive_init(struct drive_opt
*arg
, int snapshot
, void *opaque
)
2275 const char *mediastr
= "";
2276 BlockInterfaceType type
;
2277 enum { MEDIA_DISK
, MEDIA_CDROM
} media
;
2278 int bus_id
, unit_id
;
2279 int cyls
, heads
, secs
, translation
;
2280 BlockDriverState
*bdrv
;
2281 BlockDriver
*drv
= NULL
;
2282 QEMUMachine
*machine
= opaque
;
2286 int bdrv_flags
, onerror
;
2287 int drives_table_idx
;
2288 char *str
= arg
->opt
;
2289 static const char * const params
[] = { "bus", "unit", "if", "index",
2290 "cyls", "heads", "secs", "trans",
2291 "media", "snapshot", "file",
2292 "cache", "format", "serial", "werror",
2295 if (check_params(buf
, sizeof(buf
), params
, str
) < 0) {
2296 fprintf(stderr
, "qemu: unknown parameter '%s' in '%s'\n",
2302 cyls
= heads
= secs
= 0;
2305 translation
= BIOS_ATA_TRANSLATION_AUTO
;
2309 if (machine
->use_scsi
) {
2311 max_devs
= MAX_SCSI_DEVS
;
2312 pstrcpy(devname
, sizeof(devname
), "scsi");
2315 max_devs
= MAX_IDE_DEVS
;
2316 pstrcpy(devname
, sizeof(devname
), "ide");
2320 /* extract parameters */
2322 if (get_param_value(buf
, sizeof(buf
), "bus", str
)) {
2323 bus_id
= strtol(buf
, NULL
, 0);
2325 fprintf(stderr
, "qemu: '%s' invalid bus id\n", str
);
2330 if (get_param_value(buf
, sizeof(buf
), "unit", str
)) {
2331 unit_id
= strtol(buf
, NULL
, 0);
2333 fprintf(stderr
, "qemu: '%s' invalid unit id\n", str
);
2338 if (get_param_value(buf
, sizeof(buf
), "if", str
)) {
2339 pstrcpy(devname
, sizeof(devname
), buf
);
2340 if (!strcmp(buf
, "ide")) {
2342 max_devs
= MAX_IDE_DEVS
;
2343 } else if (!strcmp(buf
, "scsi")) {
2345 max_devs
= MAX_SCSI_DEVS
;
2346 } else if (!strcmp(buf
, "floppy")) {
2349 } else if (!strcmp(buf
, "pflash")) {
2352 } else if (!strcmp(buf
, "mtd")) {
2355 } else if (!strcmp(buf
, "sd")) {
2358 } else if (!strcmp(buf
, "virtio")) {
2362 fprintf(stderr
, "qemu: '%s' unsupported bus type '%s'\n", str
, buf
);
2367 if (get_param_value(buf
, sizeof(buf
), "index", str
)) {
2368 index
= strtol(buf
, NULL
, 0);
2370 fprintf(stderr
, "qemu: '%s' invalid index\n", str
);
2375 if (get_param_value(buf
, sizeof(buf
), "cyls", str
)) {
2376 cyls
= strtol(buf
, NULL
, 0);
2379 if (get_param_value(buf
, sizeof(buf
), "heads", str
)) {
2380 heads
= strtol(buf
, NULL
, 0);
2383 if (get_param_value(buf
, sizeof(buf
), "secs", str
)) {
2384 secs
= strtol(buf
, NULL
, 0);
2387 if (cyls
|| heads
|| secs
) {
2388 if (cyls
< 1 || cyls
> 16383) {
2389 fprintf(stderr
, "qemu: '%s' invalid physical cyls number\n", str
);
2392 if (heads
< 1 || heads
> 16) {
2393 fprintf(stderr
, "qemu: '%s' invalid physical heads number\n", str
);
2396 if (secs
< 1 || secs
> 63) {
2397 fprintf(stderr
, "qemu: '%s' invalid physical secs number\n", str
);
2402 if (get_param_value(buf
, sizeof(buf
), "trans", str
)) {
2405 "qemu: '%s' trans must be used with cyls,heads and secs\n",
2409 if (!strcmp(buf
, "none"))
2410 translation
= BIOS_ATA_TRANSLATION_NONE
;
2411 else if (!strcmp(buf
, "lba"))
2412 translation
= BIOS_ATA_TRANSLATION_LBA
;
2413 else if (!strcmp(buf
, "auto"))
2414 translation
= BIOS_ATA_TRANSLATION_AUTO
;
2416 fprintf(stderr
, "qemu: '%s' invalid translation type\n", str
);
2421 if (get_param_value(buf
, sizeof(buf
), "media", str
)) {
2422 if (!strcmp(buf
, "disk")) {
2424 } else if (!strcmp(buf
, "cdrom")) {
2425 if (cyls
|| secs
|| heads
) {
2427 "qemu: '%s' invalid physical CHS format\n", str
);
2430 media
= MEDIA_CDROM
;
2432 fprintf(stderr
, "qemu: '%s' invalid media\n", str
);
2437 if (get_param_value(buf
, sizeof(buf
), "snapshot", str
)) {
2438 if (!strcmp(buf
, "on"))
2440 else if (!strcmp(buf
, "off"))
2443 fprintf(stderr
, "qemu: '%s' invalid snapshot option\n", str
);
2448 if (get_param_value(buf
, sizeof(buf
), "cache", str
)) {
2449 if (!strcmp(buf
, "off") || !strcmp(buf
, "none"))
2451 else if (!strcmp(buf
, "writethrough"))
2453 else if (!strcmp(buf
, "writeback"))
2456 fprintf(stderr
, "qemu: invalid cache option\n");
2461 if (get_param_value(buf
, sizeof(buf
), "format", str
)) {
2462 if (strcmp(buf
, "?") == 0) {
2463 fprintf(stderr
, "qemu: Supported formats:");
2464 bdrv_iterate_format(bdrv_format_print
, NULL
);
2465 fprintf(stderr
, "\n");
2468 drv
= bdrv_find_format(buf
);
2470 fprintf(stderr
, "qemu: '%s' invalid format\n", buf
);
2475 if (arg
->file
== NULL
)
2476 get_param_value(file
, sizeof(file
), "file", str
);
2478 pstrcpy(file
, sizeof(file
), arg
->file
);
2480 if (!get_param_value(serial
, sizeof(serial
), "serial", str
))
2481 memset(serial
, 0, sizeof(serial
));
2483 onerror
= BLOCK_ERR_STOP_ENOSPC
;
2484 if (get_param_value(buf
, sizeof(serial
), "werror", str
)) {
2485 if (type
!= IF_IDE
&& type
!= IF_SCSI
&& type
!= IF_VIRTIO
) {
2486 fprintf(stderr
, "werror is no supported by this format\n");
2489 if (!strcmp(buf
, "ignore"))
2490 onerror
= BLOCK_ERR_IGNORE
;
2491 else if (!strcmp(buf
, "enospc"))
2492 onerror
= BLOCK_ERR_STOP_ENOSPC
;
2493 else if (!strcmp(buf
, "stop"))
2494 onerror
= BLOCK_ERR_STOP_ANY
;
2495 else if (!strcmp(buf
, "report"))
2496 onerror
= BLOCK_ERR_REPORT
;
2498 fprintf(stderr
, "qemu: '%s' invalid write error action\n", buf
);
2503 /* compute bus and unit according index */
2506 if (bus_id
!= 0 || unit_id
!= -1) {
2508 "qemu: '%s' index cannot be used with bus and unit\n", str
);
2516 unit_id
= index
% max_devs
;
2517 bus_id
= index
/ max_devs
;
2521 /* if user doesn't specify a unit_id,
2522 * try to find the first free
2525 if (unit_id
== -1) {
2527 while (drive_get_index(type
, bus_id
, unit_id
) != -1) {
2529 if (max_devs
&& unit_id
>= max_devs
) {
2530 unit_id
-= max_devs
;
2538 if (max_devs
&& unit_id
>= max_devs
) {
2539 fprintf(stderr
, "qemu: '%s' unit %d too big (max is %d)\n",
2540 str
, unit_id
, max_devs
- 1);
2545 * ignore multiple definitions
2548 if (drive_get_index(type
, bus_id
, unit_id
) != -1)
2553 if (type
== IF_IDE
|| type
== IF_SCSI
)
2554 mediastr
= (media
== MEDIA_CDROM
) ? "-cd" : "-hd";
2556 snprintf(buf
, sizeof(buf
), "%s%i%s%i",
2557 devname
, bus_id
, mediastr
, unit_id
);
2559 snprintf(buf
, sizeof(buf
), "%s%s%i",
2560 devname
, mediastr
, unit_id
);
2561 bdrv
= bdrv_new(buf
);
2562 drives_table_idx
= drive_get_free_idx();
2563 drives_table
[drives_table_idx
].bdrv
= bdrv
;
2564 drives_table
[drives_table_idx
].type
= type
;
2565 drives_table
[drives_table_idx
].bus
= bus_id
;
2566 drives_table
[drives_table_idx
].unit
= unit_id
;
2567 drives_table
[drives_table_idx
].onerror
= onerror
;
2568 drives_table
[drives_table_idx
].drive_opt_idx
= arg
- drives_opt
;
2569 strncpy(drives_table
[nb_drives
].serial
, serial
, sizeof(serial
));
2578 bdrv_set_geometry_hint(bdrv
, cyls
, heads
, secs
);
2579 bdrv_set_translation_hint(bdrv
, translation
);
2583 bdrv_set_type_hint(bdrv
, BDRV_TYPE_CDROM
);
2588 /* FIXME: This isn't really a floppy, but it's a reasonable
2591 bdrv_set_type_hint(bdrv
, BDRV_TYPE_FLOPPY
);
2602 bdrv_flags
|= BDRV_O_SNAPSHOT
;
2603 cache
= 2; /* always use write-back with snapshot */
2605 if (cache
== 0) /* no caching */
2606 bdrv_flags
|= BDRV_O_NOCACHE
;
2607 else if (cache
== 2) /* write-back */
2608 bdrv_flags
|= BDRV_O_CACHE_WB
;
2609 else if (cache
== 3) /* not specified */
2610 bdrv_flags
|= BDRV_O_CACHE_DEF
;
2611 if (bdrv_open2(bdrv
, file
, bdrv_flags
, drv
) < 0) {
2612 fprintf(stderr
, "qemu: could not open disk image %s\n",
2616 if (bdrv_key_required(bdrv
))
2618 return drives_table_idx
;
2621 /***********************************************************/
2624 static USBPort
*used_usb_ports
;
2625 static USBPort
*free_usb_ports
;
2627 /* ??? Maybe change this to register a hub to keep track of the topology. */
2628 void qemu_register_usb_port(USBPort
*port
, void *opaque
, int index
,
2629 usb_attachfn attach
)
2631 port
->opaque
= opaque
;
2632 port
->index
= index
;
2633 port
->attach
= attach
;
2634 port
->next
= free_usb_ports
;
2635 free_usb_ports
= port
;
2638 int usb_device_add_dev(USBDevice
*dev
)
2642 /* Find a USB port to add the device to. */
2643 port
= free_usb_ports
;
2647 /* Create a new hub and chain it on. */
2648 free_usb_ports
= NULL
;
2649 port
->next
= used_usb_ports
;
2650 used_usb_ports
= port
;
2652 hub
= usb_hub_init(VM_USB_HUB_SIZE
);
2653 usb_attach(port
, hub
);
2654 port
= free_usb_ports
;
2657 free_usb_ports
= port
->next
;
2658 port
->next
= used_usb_ports
;
2659 used_usb_ports
= port
;
2660 usb_attach(port
, dev
);
2664 static void usb_msd_password_cb(void *opaque
, int err
)
2666 USBDevice
*dev
= opaque
;
2669 usb_device_add_dev(dev
);
2671 dev
->handle_destroy(dev
);
2674 static int usb_device_add(const char *devname
, int is_hotplug
)
2679 if (!free_usb_ports
)
2682 if (strstart(devname
, "host:", &p
)) {
2683 dev
= usb_host_device_open(p
);
2684 } else if (!strcmp(devname
, "mouse")) {
2685 dev
= usb_mouse_init();
2686 } else if (!strcmp(devname
, "tablet")) {
2687 dev
= usb_tablet_init();
2688 } else if (!strcmp(devname
, "keyboard")) {
2689 dev
= usb_keyboard_init();
2690 } else if (strstart(devname
, "disk:", &p
)) {
2691 BlockDriverState
*bs
;
2693 dev
= usb_msd_init(p
);
2696 bs
= usb_msd_get_bdrv(dev
);
2697 if (bdrv_key_required(bs
)) {
2700 monitor_read_bdrv_key_start(bs
, usb_msd_password_cb
, dev
);
2704 } else if (!strcmp(devname
, "wacom-tablet")) {
2705 dev
= usb_wacom_init();
2706 } else if (strstart(devname
, "serial:", &p
)) {
2707 dev
= usb_serial_init(p
);
2708 #ifdef CONFIG_BRLAPI
2709 } else if (!strcmp(devname
, "braille")) {
2710 dev
= usb_baum_init();
2712 } else if (strstart(devname
, "net:", &p
)) {
2715 if (net_client_init("nic", p
) < 0)
2717 nd_table
[nic
].model
= "usb";
2718 dev
= usb_net_init(&nd_table
[nic
]);
2719 } else if (!strcmp(devname
, "bt") || strstart(devname
, "bt:", &p
)) {
2720 dev
= usb_bt_init(devname
[2] ? hci_init(p
) :
2721 bt_new_hci(qemu_find_bt_vlan(0)));
2728 return usb_device_add_dev(dev
);
2731 int usb_device_del_addr(int bus_num
, int addr
)
2737 if (!used_usb_ports
)
2743 lastp
= &used_usb_ports
;
2744 port
= used_usb_ports
;
2745 while (port
&& port
->dev
->addr
!= addr
) {
2746 lastp
= &port
->next
;
2754 *lastp
= port
->next
;
2755 usb_attach(port
, NULL
);
2756 dev
->handle_destroy(dev
);
2757 port
->next
= free_usb_ports
;
2758 free_usb_ports
= port
;
2762 static int usb_device_del(const char *devname
)
2767 if (strstart(devname
, "host:", &p
))
2768 return usb_host_device_close(p
);
2770 if (!used_usb_ports
)
2773 p
= strchr(devname
, '.');
2776 bus_num
= strtoul(devname
, NULL
, 0);
2777 addr
= strtoul(p
+ 1, NULL
, 0);
2779 return usb_device_del_addr(bus_num
, addr
);
2782 void do_usb_add(const char *devname
)
2784 usb_device_add(devname
, 1);
2787 void do_usb_del(const char *devname
)
2789 usb_device_del(devname
);
2796 const char *speed_str
;
2799 term_printf("USB support not enabled\n");
2803 for (port
= used_usb_ports
; port
; port
= port
->next
) {
2807 switch(dev
->speed
) {
2811 case USB_SPEED_FULL
:
2814 case USB_SPEED_HIGH
:
2821 term_printf(" Device %d.%d, Speed %s Mb/s, Product %s\n",
2822 0, dev
->addr
, speed_str
, dev
->devname
);
2826 /***********************************************************/
2827 /* PCMCIA/Cardbus */
2829 static struct pcmcia_socket_entry_s
{
2830 struct pcmcia_socket_s
*socket
;
2831 struct pcmcia_socket_entry_s
*next
;
2832 } *pcmcia_sockets
= 0;
2834 void pcmcia_socket_register(struct pcmcia_socket_s
*socket
)
2836 struct pcmcia_socket_entry_s
*entry
;
2838 entry
= qemu_malloc(sizeof(struct pcmcia_socket_entry_s
));
2839 entry
->socket
= socket
;
2840 entry
->next
= pcmcia_sockets
;
2841 pcmcia_sockets
= entry
;
2844 void pcmcia_socket_unregister(struct pcmcia_socket_s
*socket
)
2846 struct pcmcia_socket_entry_s
*entry
, **ptr
;
2848 ptr
= &pcmcia_sockets
;
2849 for (entry
= *ptr
; entry
; ptr
= &entry
->next
, entry
= *ptr
)
2850 if (entry
->socket
== socket
) {
2856 void pcmcia_info(void)
2858 struct pcmcia_socket_entry_s
*iter
;
2859 if (!pcmcia_sockets
)
2860 term_printf("No PCMCIA sockets\n");
2862 for (iter
= pcmcia_sockets
; iter
; iter
= iter
->next
)
2863 term_printf("%s: %s\n", iter
->socket
->slot_string
,
2864 iter
->socket
->attached
? iter
->socket
->card_string
:
2868 /***********************************************************/
2869 /* register display */
2871 void register_displaystate(DisplayState
*ds
)
2881 DisplayState
*get_displaystate(void)
2883 return display_state
;
2888 static void dumb_display_init(void)
2890 DisplayState
*ds
= qemu_mallocz(sizeof(DisplayState
));
2891 ds
->surface
= qemu_create_displaysurface(640, 480, 32, 640 * 4);
2892 register_displaystate(ds
);
2895 /***********************************************************/
2898 #define MAX_IO_HANDLERS 64
2900 typedef struct IOHandlerRecord
{
2902 IOCanRWHandler
*fd_read_poll
;
2904 IOHandler
*fd_write
;
2907 /* temporary data */
2909 struct IOHandlerRecord
*next
;
2912 static IOHandlerRecord
*first_io_handler
;
2914 /* XXX: fd_read_poll should be suppressed, but an API change is
2915 necessary in the character devices to suppress fd_can_read(). */
2916 int qemu_set_fd_handler2(int fd
,
2917 IOCanRWHandler
*fd_read_poll
,
2919 IOHandler
*fd_write
,
2922 IOHandlerRecord
**pioh
, *ioh
;
2924 if (!fd_read
&& !fd_write
) {
2925 pioh
= &first_io_handler
;
2930 if (ioh
->fd
== fd
) {
2937 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
2941 ioh
= qemu_mallocz(sizeof(IOHandlerRecord
));
2942 ioh
->next
= first_io_handler
;
2943 first_io_handler
= ioh
;
2946 ioh
->fd_read_poll
= fd_read_poll
;
2947 ioh
->fd_read
= fd_read
;
2948 ioh
->fd_write
= fd_write
;
2949 ioh
->opaque
= opaque
;
2955 int qemu_set_fd_handler(int fd
,
2957 IOHandler
*fd_write
,
2960 return qemu_set_fd_handler2(fd
, NULL
, fd_read
, fd_write
, opaque
);
2964 /***********************************************************/
2965 /* Polling handling */
2967 typedef struct PollingEntry
{
2970 struct PollingEntry
*next
;
2973 static PollingEntry
*first_polling_entry
;
2975 int qemu_add_polling_cb(PollingFunc
*func
, void *opaque
)
2977 PollingEntry
**ppe
, *pe
;
2978 pe
= qemu_mallocz(sizeof(PollingEntry
));
2980 pe
->opaque
= opaque
;
2981 for(ppe
= &first_polling_entry
; *ppe
!= NULL
; ppe
= &(*ppe
)->next
);
2986 void qemu_del_polling_cb(PollingFunc
*func
, void *opaque
)
2988 PollingEntry
**ppe
, *pe
;
2989 for(ppe
= &first_polling_entry
; *ppe
!= NULL
; ppe
= &(*ppe
)->next
) {
2991 if (pe
->func
== func
&& pe
->opaque
== opaque
) {
2999 /***********************************************************/
3000 /* Wait objects support */
3001 typedef struct WaitObjects
{
3003 HANDLE events
[MAXIMUM_WAIT_OBJECTS
+ 1];
3004 WaitObjectFunc
*func
[MAXIMUM_WAIT_OBJECTS
+ 1];
3005 void *opaque
[MAXIMUM_WAIT_OBJECTS
+ 1];
3008 static WaitObjects wait_objects
= {0};
3010 int qemu_add_wait_object(HANDLE handle
, WaitObjectFunc
*func
, void *opaque
)
3012 WaitObjects
*w
= &wait_objects
;
3014 if (w
->num
>= MAXIMUM_WAIT_OBJECTS
)
3016 w
->events
[w
->num
] = handle
;
3017 w
->func
[w
->num
] = func
;
3018 w
->opaque
[w
->num
] = opaque
;
3023 void qemu_del_wait_object(HANDLE handle
, WaitObjectFunc
*func
, void *opaque
)
3026 WaitObjects
*w
= &wait_objects
;
3029 for (i
= 0; i
< w
->num
; i
++) {
3030 if (w
->events
[i
] == handle
)
3033 w
->events
[i
] = w
->events
[i
+ 1];
3034 w
->func
[i
] = w
->func
[i
+ 1];
3035 w
->opaque
[i
] = w
->opaque
[i
+ 1];
3043 /***********************************************************/
3044 /* ram save/restore */
3046 static int ram_get_page(QEMUFile
*f
, uint8_t *buf
, int len
)
3050 v
= qemu_get_byte(f
);
3053 if (qemu_get_buffer(f
, buf
, len
) != len
)
3057 v
= qemu_get_byte(f
);
3058 memset(buf
, v
, len
);
3064 if (qemu_file_has_error(f
))
3070 static int ram_load_v1(QEMUFile
*f
, void *opaque
)
3075 if (qemu_get_be32(f
) != phys_ram_size
)
3077 for(i
= 0; i
< phys_ram_size
; i
+= TARGET_PAGE_SIZE
) {
3078 ret
= ram_get_page(f
, phys_ram_base
+ i
, TARGET_PAGE_SIZE
);
3085 #define BDRV_HASH_BLOCK_SIZE 1024
3086 #define IOBUF_SIZE 4096
3087 #define RAM_CBLOCK_MAGIC 0xfabe
3089 typedef struct RamDecompressState
{
3092 uint8_t buf
[IOBUF_SIZE
];
3093 } RamDecompressState
;
3095 static int ram_decompress_open(RamDecompressState
*s
, QEMUFile
*f
)
3098 memset(s
, 0, sizeof(*s
));
3100 ret
= inflateInit(&s
->zstream
);
3106 static int ram_decompress_buf(RamDecompressState
*s
, uint8_t *buf
, int len
)
3110 s
->zstream
.avail_out
= len
;
3111 s
->zstream
.next_out
= buf
;
3112 while (s
->zstream
.avail_out
> 0) {
3113 if (s
->zstream
.avail_in
== 0) {
3114 if (qemu_get_be16(s
->f
) != RAM_CBLOCK_MAGIC
)
3116 clen
= qemu_get_be16(s
->f
);
3117 if (clen
> IOBUF_SIZE
)
3119 qemu_get_buffer(s
->f
, s
->buf
, clen
);
3120 s
->zstream
.avail_in
= clen
;
3121 s
->zstream
.next_in
= s
->buf
;
3123 ret
= inflate(&s
->zstream
, Z_PARTIAL_FLUSH
);
3124 if (ret
!= Z_OK
&& ret
!= Z_STREAM_END
) {
3131 static void ram_decompress_close(RamDecompressState
*s
)
3133 inflateEnd(&s
->zstream
);
3136 #define RAM_SAVE_FLAG_FULL 0x01
3137 #define RAM_SAVE_FLAG_COMPRESS 0x02
3138 #define RAM_SAVE_FLAG_MEM_SIZE 0x04
3139 #define RAM_SAVE_FLAG_PAGE 0x08
3140 #define RAM_SAVE_FLAG_EOS 0x10
3142 static int is_dup_page(uint8_t *page
, uint8_t ch
)
3144 uint32_t val
= ch
<< 24 | ch
<< 16 | ch
<< 8 | ch
;
3145 uint32_t *array
= (uint32_t *)page
;
3148 for (i
= 0; i
< (TARGET_PAGE_SIZE
/ 4); i
++) {
3149 if (array
[i
] != val
)
3156 static int ram_save_block(QEMUFile
*f
)
3158 static ram_addr_t current_addr
= 0;
3159 ram_addr_t saved_addr
= current_addr
;
3160 ram_addr_t addr
= 0;
3163 while (addr
< phys_ram_size
) {
3164 if (cpu_physical_memory_get_dirty(current_addr
, MIGRATION_DIRTY_FLAG
)) {
3167 cpu_physical_memory_reset_dirty(current_addr
,
3168 current_addr
+ TARGET_PAGE_SIZE
,
3169 MIGRATION_DIRTY_FLAG
);
3171 ch
= *(phys_ram_base
+ current_addr
);
3173 if (is_dup_page(phys_ram_base
+ current_addr
, ch
)) {
3174 qemu_put_be64(f
, current_addr
| RAM_SAVE_FLAG_COMPRESS
);
3175 qemu_put_byte(f
, ch
);
3177 qemu_put_be64(f
, current_addr
| RAM_SAVE_FLAG_PAGE
);
3178 qemu_put_buffer(f
, phys_ram_base
+ current_addr
, TARGET_PAGE_SIZE
);
3184 addr
+= TARGET_PAGE_SIZE
;
3185 current_addr
= (saved_addr
+ addr
) % phys_ram_size
;
3191 static ram_addr_t ram_save_threshold
= 10;
3193 static ram_addr_t
ram_save_remaining(void)
3196 ram_addr_t count
= 0;
3198 for (addr
= 0; addr
< phys_ram_size
; addr
+= TARGET_PAGE_SIZE
) {
3199 if (cpu_physical_memory_get_dirty(addr
, MIGRATION_DIRTY_FLAG
))
3206 static int ram_save_live(QEMUFile
*f
, int stage
, void *opaque
)
3211 /* Make sure all dirty bits are set */
3212 for (addr
= 0; addr
< phys_ram_size
; addr
+= TARGET_PAGE_SIZE
) {
3213 if (!cpu_physical_memory_get_dirty(addr
, MIGRATION_DIRTY_FLAG
))
3214 cpu_physical_memory_set_dirty(addr
);
3217 /* Enable dirty memory tracking */
3218 cpu_physical_memory_set_dirty_tracking(1);
3220 qemu_put_be64(f
, phys_ram_size
| RAM_SAVE_FLAG_MEM_SIZE
);
3223 while (!qemu_file_rate_limit(f
)) {
3226 ret
= ram_save_block(f
);
3227 if (ret
== 0) /* no more blocks */
3231 /* try transferring iterative blocks of memory */
3234 cpu_physical_memory_set_dirty_tracking(0);
3236 /* flush all remaining blocks regardless of rate limiting */
3237 while (ram_save_block(f
) != 0);
3240 qemu_put_be64(f
, RAM_SAVE_FLAG_EOS
);
3242 return (stage
== 2) && (ram_save_remaining() < ram_save_threshold
);
3245 static int ram_load_dead(QEMUFile
*f
, void *opaque
)
3247 RamDecompressState s1
, *s
= &s1
;
3251 if (ram_decompress_open(s
, f
) < 0)
3253 for(i
= 0; i
< phys_ram_size
; i
+= BDRV_HASH_BLOCK_SIZE
) {
3254 if (ram_decompress_buf(s
, buf
, 1) < 0) {
3255 fprintf(stderr
, "Error while reading ram block header\n");
3259 if (ram_decompress_buf(s
, phys_ram_base
+ i
, BDRV_HASH_BLOCK_SIZE
) < 0) {
3260 fprintf(stderr
, "Error while reading ram block address=0x%08" PRIx64
, (uint64_t)i
);
3265 printf("Error block header\n");
3269 ram_decompress_close(s
);
3274 static int ram_load(QEMUFile
*f
, void *opaque
, int version_id
)
3279 if (version_id
== 1)
3280 return ram_load_v1(f
, opaque
);
3282 if (version_id
== 2) {
3283 if (qemu_get_be32(f
) != phys_ram_size
)
3285 return ram_load_dead(f
, opaque
);
3288 if (version_id
!= 3)
3292 addr
= qemu_get_be64(f
);
3294 flags
= addr
& ~TARGET_PAGE_MASK
;
3295 addr
&= TARGET_PAGE_MASK
;
3297 if (flags
& RAM_SAVE_FLAG_MEM_SIZE
) {
3298 if (addr
!= phys_ram_size
)
3302 if (flags
& RAM_SAVE_FLAG_FULL
) {
3303 if (ram_load_dead(f
, opaque
) < 0)
3307 if (flags
& RAM_SAVE_FLAG_COMPRESS
) {
3308 uint8_t ch
= qemu_get_byte(f
);
3309 memset(phys_ram_base
+ addr
, ch
, TARGET_PAGE_SIZE
);
3310 } else if (flags
& RAM_SAVE_FLAG_PAGE
)
3311 qemu_get_buffer(f
, phys_ram_base
+ addr
, TARGET_PAGE_SIZE
);
3312 } while (!(flags
& RAM_SAVE_FLAG_EOS
));
3317 void qemu_service_io(void)
3319 CPUState
*env
= cpu_single_env
;
3321 cpu_interrupt(env
, CPU_INTERRUPT_EXIT
);
3323 if (env
->kqemu_enabled
) {
3324 kqemu_cpu_interrupt(env
);
3330 /***********************************************************/
3331 /* bottom halves (can be seen as timers which expire ASAP) */
3342 static QEMUBH
*first_bh
= NULL
;
3344 QEMUBH
*qemu_bh_new(QEMUBHFunc
*cb
, void *opaque
)
3347 bh
= qemu_mallocz(sizeof(QEMUBH
));
3349 bh
->opaque
= opaque
;
3350 bh
->next
= first_bh
;
3355 int qemu_bh_poll(void)
3361 for (bh
= first_bh
; bh
; bh
= bh
->next
) {
3362 if (!bh
->deleted
&& bh
->scheduled
) {
3371 /* remove deleted bhs */
3385 void qemu_bh_schedule_idle(QEMUBH
*bh
)
3393 void qemu_bh_schedule(QEMUBH
*bh
)
3395 CPUState
*env
= cpu_single_env
;
3400 /* stop the currently executing CPU to execute the BH ASAP */
3402 cpu_interrupt(env
, CPU_INTERRUPT_EXIT
);
3406 void qemu_bh_cancel(QEMUBH
*bh
)
3411 void qemu_bh_delete(QEMUBH
*bh
)
3417 static void qemu_bh_update_timeout(int *timeout
)
3421 for (bh
= first_bh
; bh
; bh
= bh
->next
) {
3422 if (!bh
->deleted
&& bh
->scheduled
) {
3424 /* idle bottom halves will be polled at least
3426 *timeout
= MIN(10, *timeout
);
3428 /* non-idle bottom halves will be executed
3437 /***********************************************************/
3438 /* machine registration */
3440 static QEMUMachine
*first_machine
= NULL
;
3441 QEMUMachine
*current_machine
= NULL
;
3443 int qemu_register_machine(QEMUMachine
*m
)
3446 pm
= &first_machine
;
3454 static QEMUMachine
*find_machine(const char *name
)
3458 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
3459 if (!strcmp(m
->name
, name
))
3465 /***********************************************************/
3466 /* main execution loop */
3468 static void gui_update(void *opaque
)
3470 uint64_t interval
= GUI_REFRESH_INTERVAL
;
3471 DisplayState
*ds
= opaque
;
3472 DisplayChangeListener
*dcl
= ds
->listeners
;
3476 while (dcl
!= NULL
) {
3477 if (dcl
->gui_timer_interval
&&
3478 dcl
->gui_timer_interval
< interval
)
3479 interval
= dcl
->gui_timer_interval
;
3482 qemu_mod_timer(ds
->gui_timer
, interval
+ qemu_get_clock(rt_clock
));
3485 static void nographic_update(void *opaque
)
3487 uint64_t interval
= GUI_REFRESH_INTERVAL
;
3489 qemu_mod_timer(nographic_timer
, interval
+ qemu_get_clock(rt_clock
));
3492 struct vm_change_state_entry
{
3493 VMChangeStateHandler
*cb
;
3495 LIST_ENTRY (vm_change_state_entry
) entries
;
3498 static LIST_HEAD(vm_change_state_head
, vm_change_state_entry
) vm_change_state_head
;
3500 VMChangeStateEntry
*qemu_add_vm_change_state_handler(VMChangeStateHandler
*cb
,
3503 VMChangeStateEntry
*e
;
3505 e
= qemu_mallocz(sizeof (*e
));
3509 LIST_INSERT_HEAD(&vm_change_state_head
, e
, entries
);
3513 void qemu_del_vm_change_state_handler(VMChangeStateEntry
*e
)
3515 LIST_REMOVE (e
, entries
);
3519 static void vm_state_notify(int running
, int reason
)
3521 VMChangeStateEntry
*e
;
3523 for (e
= vm_change_state_head
.lh_first
; e
; e
= e
->entries
.le_next
) {
3524 e
->cb(e
->opaque
, running
, reason
);
3533 vm_state_notify(1, 0);
3534 qemu_rearm_alarm_timer(alarm_timer
);
3538 void vm_stop(int reason
)
3541 cpu_disable_ticks();
3543 vm_state_notify(0, reason
);
3547 /* reset/shutdown handler */
3549 typedef struct QEMUResetEntry
{
3550 QEMUResetHandler
*func
;
3552 struct QEMUResetEntry
*next
;
3555 static QEMUResetEntry
*first_reset_entry
;
3556 static int reset_requested
;
3557 static int shutdown_requested
;
3558 static int powerdown_requested
;
3560 int qemu_shutdown_requested(void)
3562 int r
= shutdown_requested
;
3563 shutdown_requested
= 0;
3567 int qemu_reset_requested(void)
3569 int r
= reset_requested
;
3570 reset_requested
= 0;
3574 int qemu_powerdown_requested(void)
3576 int r
= powerdown_requested
;
3577 powerdown_requested
= 0;
3581 void qemu_register_reset(QEMUResetHandler
*func
, void *opaque
)
3583 QEMUResetEntry
**pre
, *re
;
3585 pre
= &first_reset_entry
;
3586 while (*pre
!= NULL
)
3587 pre
= &(*pre
)->next
;
3588 re
= qemu_mallocz(sizeof(QEMUResetEntry
));
3590 re
->opaque
= opaque
;
3595 void qemu_system_reset(void)
3599 /* reset all devices */
3600 for(re
= first_reset_entry
; re
!= NULL
; re
= re
->next
) {
3601 re
->func(re
->opaque
);
3605 void qemu_system_reset_request(void)
3608 shutdown_requested
= 1;
3610 reset_requested
= 1;
3613 cpu_interrupt(cpu_single_env
, CPU_INTERRUPT_EXIT
);
3616 void qemu_system_shutdown_request(void)
3618 shutdown_requested
= 1;
3620 cpu_interrupt(cpu_single_env
, CPU_INTERRUPT_EXIT
);
3623 void qemu_system_powerdown_request(void)
3625 powerdown_requested
= 1;
3627 cpu_interrupt(cpu_single_env
, CPU_INTERRUPT_EXIT
);
3631 static void host_main_loop_wait(int *timeout
)
3637 /* XXX: need to suppress polling by better using win32 events */
3639 for(pe
= first_polling_entry
; pe
!= NULL
; pe
= pe
->next
) {
3640 ret
|= pe
->func(pe
->opaque
);
3644 WaitObjects
*w
= &wait_objects
;
3646 ret
= WaitForMultipleObjects(w
->num
, w
->events
, FALSE
, *timeout
);
3647 if (WAIT_OBJECT_0
+ 0 <= ret
&& ret
<= WAIT_OBJECT_0
+ w
->num
- 1) {
3648 if (w
->func
[ret
- WAIT_OBJECT_0
])
3649 w
->func
[ret
- WAIT_OBJECT_0
](w
->opaque
[ret
- WAIT_OBJECT_0
]);
3651 /* Check for additional signaled events */
3652 for(i
= (ret
- WAIT_OBJECT_0
+ 1); i
< w
->num
; i
++) {
3654 /* Check if event is signaled */
3655 ret2
= WaitForSingleObject(w
->events
[i
], 0);
3656 if(ret2
== WAIT_OBJECT_0
) {
3658 w
->func
[i
](w
->opaque
[i
]);
3659 } else if (ret2
== WAIT_TIMEOUT
) {
3661 err
= GetLastError();
3662 fprintf(stderr
, "WaitForSingleObject error %d %d\n", i
, err
);
3665 } else if (ret
== WAIT_TIMEOUT
) {
3667 err
= GetLastError();
3668 fprintf(stderr
, "WaitForMultipleObjects error %d %d\n", ret
, err
);
3675 static void host_main_loop_wait(int *timeout
)
3680 void main_loop_wait(int timeout
)
3682 IOHandlerRecord
*ioh
;
3683 fd_set rfds
, wfds
, xfds
;
3687 qemu_bh_update_timeout(&timeout
);
3689 host_main_loop_wait(&timeout
);
3691 /* poll any events */
3692 /* XXX: separate device handlers from system ones */
3697 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
3701 (!ioh
->fd_read_poll
||
3702 ioh
->fd_read_poll(ioh
->opaque
) != 0)) {
3703 FD_SET(ioh
->fd
, &rfds
);
3707 if (ioh
->fd_write
) {
3708 FD_SET(ioh
->fd
, &wfds
);
3714 tv
.tv_sec
= timeout
/ 1000;
3715 tv
.tv_usec
= (timeout
% 1000) * 1000;
3717 #if defined(CONFIG_SLIRP)
3718 if (slirp_is_inited()) {
3719 slirp_select_fill(&nfds
, &rfds
, &wfds
, &xfds
);
3722 ret
= select(nfds
+ 1, &rfds
, &wfds
, &xfds
, &tv
);
3724 IOHandlerRecord
**pioh
;
3726 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
3727 if (!ioh
->deleted
&& ioh
->fd_read
&& FD_ISSET(ioh
->fd
, &rfds
)) {
3728 ioh
->fd_read(ioh
->opaque
);
3730 if (!ioh
->deleted
&& ioh
->fd_write
&& FD_ISSET(ioh
->fd
, &wfds
)) {
3731 ioh
->fd_write(ioh
->opaque
);
3735 /* remove deleted IO handlers */
3736 pioh
= &first_io_handler
;
3746 #if defined(CONFIG_SLIRP)
3747 if (slirp_is_inited()) {
3753 slirp_select_poll(&rfds
, &wfds
, &xfds
);
3757 /* vm time timers */
3758 if (vm_running
&& likely(!(cur_cpu
->singlestep_enabled
& SSTEP_NOTIMER
)))
3759 qemu_run_timers(&active_timers
[QEMU_TIMER_VIRTUAL
],
3760 qemu_get_clock(vm_clock
));
3762 /* real time timers */
3763 qemu_run_timers(&active_timers
[QEMU_TIMER_REALTIME
],
3764 qemu_get_clock(rt_clock
));
3766 /* Check bottom-halves last in case any of the earlier events triggered
3772 static int main_loop(void)
3775 #ifdef CONFIG_PROFILER
3780 cur_cpu
= first_cpu
;
3781 next_cpu
= cur_cpu
->next_cpu
?: first_cpu
;
3788 #ifdef CONFIG_PROFILER
3789 ti
= profile_getclock();
3794 qemu_icount
-= (env
->icount_decr
.u16
.low
+ env
->icount_extra
);
3795 env
->icount_decr
.u16
.low
= 0;
3796 env
->icount_extra
= 0;
3797 count
= qemu_next_deadline();
3798 count
= (count
+ (1 << icount_time_shift
) - 1)
3799 >> icount_time_shift
;
3800 qemu_icount
+= count
;
3801 decr
= (count
> 0xffff) ? 0xffff : count
;
3803 env
->icount_decr
.u16
.low
= decr
;
3804 env
->icount_extra
= count
;
3806 ret
= cpu_exec(env
);
3807 #ifdef CONFIG_PROFILER
3808 qemu_time
+= profile_getclock() - ti
;
3811 /* Fold pending instructions back into the
3812 instruction counter, and clear the interrupt flag. */
3813 qemu_icount
-= (env
->icount_decr
.u16
.low
3814 + env
->icount_extra
);
3815 env
->icount_decr
.u32
= 0;
3816 env
->icount_extra
= 0;
3818 next_cpu
= env
->next_cpu
?: first_cpu
;
3819 if (event_pending
&& likely(ret
!= EXCP_DEBUG
)) {
3820 ret
= EXCP_INTERRUPT
;
3824 if (ret
== EXCP_HLT
) {
3825 /* Give the next CPU a chance to run. */
3829 if (ret
!= EXCP_HALTED
)
3831 /* all CPUs are halted ? */
3837 if (shutdown_requested
) {
3838 ret
= EXCP_INTERRUPT
;
3846 if (reset_requested
) {
3847 reset_requested
= 0;
3848 qemu_system_reset();
3849 ret
= EXCP_INTERRUPT
;
3851 if (powerdown_requested
) {
3852 powerdown_requested
= 0;
3853 qemu_system_powerdown();
3854 ret
= EXCP_INTERRUPT
;
3856 if (unlikely(ret
== EXCP_DEBUG
)) {
3857 gdb_set_stop_cpu(cur_cpu
);
3858 vm_stop(EXCP_DEBUG
);
3860 /* If all cpus are halted then wait until the next IRQ */
3861 /* XXX: use timeout computed from timers */
3862 if (ret
== EXCP_HALTED
) {
3866 /* Advance virtual time to the next event. */
3867 if (use_icount
== 1) {
3868 /* When not using an adaptive execution frequency
3869 we tend to get badly out of sync with real time,
3870 so just delay for a reasonable amount of time. */
3873 delta
= cpu_get_icount() - cpu_get_clock();
3876 /* If virtual time is ahead of real time then just
3878 timeout
= (delta
/ 1000000) + 1;
3880 /* Wait for either IO to occur or the next
3882 add
= qemu_next_deadline();
3883 /* We advance the timer before checking for IO.
3884 Limit the amount we advance so that early IO
3885 activity won't get the guest too far ahead. */
3889 add
= (add
+ (1 << icount_time_shift
) - 1)
3890 >> icount_time_shift
;
3892 timeout
= delta
/ 1000000;
3903 if (shutdown_requested
) {
3904 ret
= EXCP_INTERRUPT
;
3909 #ifdef CONFIG_PROFILER
3910 ti
= profile_getclock();
3912 main_loop_wait(timeout
);
3913 #ifdef CONFIG_PROFILER
3914 dev_time
+= profile_getclock() - ti
;
3917 cpu_disable_ticks();
3921 static void help(int exitcode
)
3923 /* Please keep in synch with QEMU_OPTION_ enums, qemu_options[]
3924 and qemu-doc.texi */
3925 printf("QEMU PC emulator version " QEMU_VERSION
", Copyright (c) 2003-2008 Fabrice Bellard\n"
3926 "usage: %s [options] [disk_image]\n"
3928 "'disk_image' is a raw hard image image for IDE hard disk 0\n"
3930 "Standard options:\n"
3931 "-h or -help display this help and exit\n"
3932 "-M machine select emulated machine (-M ? for list)\n"
3933 "-cpu cpu select CPU (-cpu ? for list)\n"
3934 "-smp n set the number of CPUs to 'n' [default=1]\n"
3935 "-fda/-fdb file use 'file' as floppy disk 0/1 image\n"
3936 "-hda/-hdb file use 'file' as IDE hard disk 0/1 image\n"
3937 "-hdc/-hdd file use 'file' as IDE hard disk 2/3 image\n"
3938 "-cdrom file use 'file' as IDE cdrom image (cdrom is ide1 master)\n"
3939 "-drive [file=file][,if=type][,bus=n][,unit=m][,media=d][,index=i]\n"
3940 " [,cyls=c,heads=h,secs=s[,trans=t]][,snapshot=on|off]\n"
3941 " [,cache=writethrough|writeback|none][,format=f][,serial=s]\n"
3942 " use 'file' as a drive image\n"
3943 "-mtdblock file use 'file' as on-board Flash memory image\n"
3944 "-sd file use 'file' as SecureDigital card image\n"
3945 "-pflash file use 'file' as a parallel flash image\n"
3946 "-boot [a|c|d|n] boot on floppy (a), hard disk (c), CD-ROM (d), or network (n)\n"
3947 "-snapshot write to temporary files instead of disk image files\n"
3948 "-m megs set virtual RAM size to megs MB [default=%d]\n"
3950 "-k language use keyboard layout (for example \"fr\" for French)\n"
3953 "-audio-help print list of audio drivers and their options\n"
3954 "-soundhw c1,... enable audio support\n"
3955 " and only specified sound cards (comma separated list)\n"
3956 " use -soundhw ? to get the list of supported cards\n"
3957 " use -soundhw all to enable all of them\n"
3959 "-usb enable the USB driver (will be the default soon)\n"
3960 "-usbdevice name add the host or guest USB device 'name'\n"
3961 "-name string set the name of the guest\n"
3962 "-uuid %%08x-%%04x-%%04x-%%04x-%%012x\n"
3963 " specify machine UUID\n"
3965 "Display options:\n"
3966 "-nographic disable graphical output and redirect serial I/Os to console\n"
3967 #ifdef CONFIG_CURSES
3968 "-curses use a curses/ncurses interface instead of SDL\n"
3971 "-no-frame open SDL window without a frame and window decorations\n"
3972 "-alt-grab use Ctrl-Alt-Shift to grab mouse (instead of Ctrl-Alt)\n"
3973 "-no-quit disable SDL window close capability\n"
3976 "-portrait rotate graphical output 90 deg left (only PXA LCD)\n"
3977 "-vga [std|cirrus|vmware|none]\n"
3978 " select video card type\n"
3979 "-full-screen start in full screen\n"
3980 #if defined(TARGET_PPC) || defined(TARGET_SPARC)
3981 "-g WxH[xDEPTH] Set the initial graphical resolution and depth\n"
3983 "-vnc display start a VNC server on display\n"
3985 "Network options:\n"
3986 "-net nic[,vlan=n][,macaddr=addr][,model=type][,name=str]\n"
3987 " create a new Network Interface Card and connect it to VLAN 'n'\n"
3989 "-net user[,vlan=n][,name=str][,hostname=host]\n"
3990 " connect the user mode network stack to VLAN 'n' and send\n"
3991 " hostname 'host' to DHCP clients\n"
3994 "-net tap[,vlan=n][,name=str],ifname=name\n"
3995 " connect the host TAP network interface to VLAN 'n'\n"
3997 "-net tap[,vlan=n][,name=str][,fd=h][,ifname=name][,script=file][,downscript=dfile]\n"
3998 " connect the host TAP network interface to VLAN 'n' and use the\n"
3999 " network scripts 'file' (default=%s)\n"
4000 " and 'dfile' (default=%s);\n"
4001 " use '[down]script=no' to disable script execution;\n"
4002 " use 'fd=h' to connect to an already opened TAP interface\n"
4004 "-net socket[,vlan=n][,name=str][,fd=h][,listen=[host]:port][,connect=host:port]\n"
4005 " connect the vlan 'n' to another VLAN using a socket connection\n"
4006 "-net socket[,vlan=n][,name=str][,fd=h][,mcast=maddr:port]\n"
4007 " connect the vlan 'n' to multicast maddr and port\n"
4009 "-net vde[,vlan=n][,name=str][,sock=socketpath][,port=n][,group=groupname][,mode=octalmode]\n"
4010 " connect the vlan 'n' to port 'n' of a vde switch running\n"
4011 " on host and listening for incoming connections on 'socketpath'.\n"
4012 " Use group 'groupname' and mode 'octalmode' to change default\n"
4013 " ownership and permissions for communication port.\n"
4015 "-net none use it alone to have zero network devices; if no -net option\n"
4016 " is provided, the default is '-net nic -net user'\n"
4018 "-tftp dir allow tftp access to files in dir [-net user]\n"
4019 "-bootp file advertise file in BOOTP replies\n"
4021 "-smb dir allow SMB access to files in 'dir' [-net user]\n"
4023 "-redir [tcp|udp]:host-port:[guest-host]:guest-port\n"
4024 " redirect TCP or UDP connections from host to guest [-net user]\n"
4027 "-bt hci,null dumb bluetooth HCI - doesn't respond to commands\n"
4028 "-bt hci,host[:id]\n"
4029 " use host's HCI with the given name\n"
4030 "-bt hci[,vlan=n]\n"
4031 " emulate a standard HCI in virtual scatternet 'n'\n"
4032 "-bt vhci[,vlan=n]\n"
4033 " add host computer to virtual scatternet 'n' using VHCI\n"
4034 "-bt device:dev[,vlan=n]\n"
4035 " emulate a bluetooth device 'dev' in scatternet 'n'\n"
4039 "i386 target only:\n"
4040 "-win2k-hack use it when installing Windows 2000 to avoid a disk full bug\n"
4041 "-rtc-td-hack use it to fix time drift in Windows ACPI HAL\n"
4042 "-no-fd-bootchk disable boot signature checking for floppy disks\n"
4043 "-no-acpi disable ACPI\n"
4044 "-no-hpet disable HPET\n"
4045 "-acpitable [sig=str][,rev=n][,oem_id=str][,oem_table_id=str][,oem_rev=n][,asl_compiler_id=str][,asl_compiler_rev=n][,data=file1[:file2]...]\n"
4046 " ACPI table description\n"
4048 "Linux boot specific:\n"
4049 "-kernel bzImage use 'bzImage' as kernel image\n"
4050 "-append cmdline use 'cmdline' as kernel command line\n"
4051 "-initrd file use 'file' as initial ram disk\n"
4053 "Debug/Expert options:\n"
4054 "-serial dev redirect the serial port to char device 'dev'\n"
4055 "-parallel dev redirect the parallel port to char device 'dev'\n"
4056 "-monitor dev redirect the monitor to char device 'dev'\n"
4057 "-pidfile file write PID to 'file'\n"
4058 "-S freeze CPU at startup (use 'c' to start execution)\n"
4059 "-s wait gdb connection to port\n"
4060 "-p port set gdb connection port [default=%s]\n"
4061 "-d item1,... output log to %s (use -d ? for a list of log items)\n"
4062 "-hdachs c,h,s[,t]\n"
4063 " force hard disk 0 physical geometry and the optional BIOS\n"
4064 " translation (t=none or lba) (usually qemu can guess them)\n"
4065 "-L path set the directory for the BIOS, VGA BIOS and keymaps\n"
4066 "-bios file set the filename for the BIOS\n"
4068 "-kernel-kqemu enable KQEMU full virtualization (default is user mode only)\n"
4069 "-no-kqemu disable KQEMU kernel module usage\n"
4072 "-enable-kvm enable KVM full virtualization support\n"
4074 "-no-reboot exit instead of rebooting\n"
4075 "-no-shutdown stop before shutdown\n"
4076 "-loadvm [tag|id]\n"
4077 " start right away with a saved state (loadvm in monitor)\n"
4079 "-daemonize daemonize QEMU after initializing\n"
4081 "-option-rom rom load a file, rom, into the option ROM space\n"
4082 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
4083 "-prom-env variable=value\n"
4084 " set OpenBIOS nvram variables\n"
4086 "-clock force the use of the given methods for timer alarm.\n"
4087 " To see what timers are available use -clock ?\n"
4088 "-localtime set the real time clock to local time [default=utc]\n"
4089 "-startdate select initial date of the clock\n"
4090 "-icount [N|auto]\n"
4091 " enable virtual instruction counter with 2^N clock ticks per instruction\n"
4092 "-echr chr set terminal escape character instead of ctrl-a\n"
4093 "-virtioconsole c\n"
4094 " set virtio console\n"
4095 "-show-cursor show cursor\n"
4096 #if defined(TARGET_ARM) || defined(TARGET_M68K)
4097 "-semihosting semihosting mode\n"
4099 #if defined(TARGET_ARM)
4100 "-old-param old param mode\n"
4102 "-tb-size n set TB size\n"
4103 "-incoming p prepare for incoming migration, listen on port p\n"
4105 "-chroot dir Chroot to dir just before starting the VM.\n"
4106 "-runas user Change to user id user just before starting the VM.\n"
4109 "During emulation, the following keys are useful:\n"
4110 "ctrl-alt-f toggle full screen\n"
4111 "ctrl-alt-n switch to virtual console 'n'\n"
4112 "ctrl-alt toggle mouse and keyboard grab\n"
4114 "When using -nographic, press 'ctrl-a h' to get some help.\n"
4119 DEFAULT_NETWORK_SCRIPT
,
4120 DEFAULT_NETWORK_DOWN_SCRIPT
,
4122 DEFAULT_GDBSTUB_PORT
,
4127 #define HAS_ARG 0x0001
4130 /* Please keep in synch with help, qemu_options[] and
4132 /* Standard options: */
4145 QEMU_OPTION_mtdblock
,
4149 QEMU_OPTION_snapshot
,
4152 QEMU_OPTION_audio_help
,
4153 QEMU_OPTION_soundhw
,
4155 QEMU_OPTION_usbdevice
,
4159 /* Display options: */
4160 QEMU_OPTION_nographic
,
4162 QEMU_OPTION_no_frame
,
4163 QEMU_OPTION_alt_grab
,
4164 QEMU_OPTION_no_quit
,
4166 QEMU_OPTION_portrait
,
4168 QEMU_OPTION_full_screen
,
4172 /* Network options: */
4180 /* i386 target only: */
4181 QEMU_OPTION_win2k_hack
,
4182 QEMU_OPTION_rtc_td_hack
,
4183 QEMU_OPTION_no_fd_bootchk
,
4184 QEMU_OPTION_no_acpi
,
4185 QEMU_OPTION_no_hpet
,
4186 QEMU_OPTION_acpitable
,
4188 /* Linux boot specific: */
4193 /* Debug/Expert options: */
4195 QEMU_OPTION_parallel
,
4196 QEMU_OPTION_monitor
,
4197 QEMU_OPTION_pidfile
,
4205 QEMU_OPTION_kernel_kqemu
,
4206 QEMU_OPTION_no_kqemu
,
4207 QEMU_OPTION_enable_kvm
,
4208 QEMU_OPTION_no_reboot
,
4209 QEMU_OPTION_no_shutdown
,
4211 QEMU_OPTION_daemonize
,
4212 QEMU_OPTION_option_rom
,
4213 QEMU_OPTION_prom_env
,
4215 QEMU_OPTION_localtime
,
4216 QEMU_OPTION_startdate
,
4219 QEMU_OPTION_virtiocon
,
4220 QEMU_OPTION_show_cursor
,
4221 QEMU_OPTION_semihosting
,
4222 QEMU_OPTION_old_param
,
4223 QEMU_OPTION_tb_size
,
4224 QEMU_OPTION_incoming
,
4229 typedef struct QEMUOption
{
4235 static const QEMUOption qemu_options
[] = {
4236 /* Please keep in synch with help, QEMU_OPTION_ enums, and
4238 /* Standard options: */
4239 { "h", 0, QEMU_OPTION_h
},
4240 { "help", 0, QEMU_OPTION_h
},
4241 { "M", HAS_ARG
, QEMU_OPTION_M
},
4242 { "cpu", HAS_ARG
, QEMU_OPTION_cpu
},
4243 { "smp", HAS_ARG
, QEMU_OPTION_smp
},
4244 { "fda", HAS_ARG
, QEMU_OPTION_fda
},
4245 { "fdb", HAS_ARG
, QEMU_OPTION_fdb
},
4246 { "hda", HAS_ARG
, QEMU_OPTION_hda
},
4247 { "hdb", HAS_ARG
, QEMU_OPTION_hdb
},
4248 { "hdc", HAS_ARG
, QEMU_OPTION_hdc
},
4249 { "hdd", HAS_ARG
, QEMU_OPTION_hdd
},
4250 { "cdrom", HAS_ARG
, QEMU_OPTION_cdrom
},
4251 { "drive", HAS_ARG
, QEMU_OPTION_drive
},
4252 { "mtdblock", HAS_ARG
, QEMU_OPTION_mtdblock
},
4253 { "sd", HAS_ARG
, QEMU_OPTION_sd
},
4254 { "pflash", HAS_ARG
, QEMU_OPTION_pflash
},
4255 { "boot", HAS_ARG
, QEMU_OPTION_boot
},
4256 { "snapshot", 0, QEMU_OPTION_snapshot
},
4257 { "m", HAS_ARG
, QEMU_OPTION_m
},
4259 { "k", HAS_ARG
, QEMU_OPTION_k
},
4262 { "audio-help", 0, QEMU_OPTION_audio_help
},
4263 { "soundhw", HAS_ARG
, QEMU_OPTION_soundhw
},
4265 { "usb", 0, QEMU_OPTION_usb
},
4266 { "usbdevice", HAS_ARG
, QEMU_OPTION_usbdevice
},
4267 { "name", HAS_ARG
, QEMU_OPTION_name
},
4268 { "uuid", HAS_ARG
, QEMU_OPTION_uuid
},
4270 /* Display options: */
4271 { "nographic", 0, QEMU_OPTION_nographic
},
4272 #ifdef CONFIG_CURSES
4273 { "curses", 0, QEMU_OPTION_curses
},
4276 { "no-frame", 0, QEMU_OPTION_no_frame
},
4277 { "alt-grab", 0, QEMU_OPTION_alt_grab
},
4278 { "no-quit", 0, QEMU_OPTION_no_quit
},
4279 { "sdl", 0, QEMU_OPTION_sdl
},
4281 { "portrait", 0, QEMU_OPTION_portrait
},
4282 { "vga", HAS_ARG
, QEMU_OPTION_vga
},
4283 { "full-screen", 0, QEMU_OPTION_full_screen
},
4284 #if defined(TARGET_PPC) || defined(TARGET_SPARC)
4285 { "g", 1, QEMU_OPTION_g
},
4287 { "vnc", HAS_ARG
, QEMU_OPTION_vnc
},
4289 /* Network options: */
4290 { "net", HAS_ARG
, QEMU_OPTION_net
},
4292 { "tftp", HAS_ARG
, QEMU_OPTION_tftp
},
4293 { "bootp", HAS_ARG
, QEMU_OPTION_bootp
},
4295 { "smb", HAS_ARG
, QEMU_OPTION_smb
},
4297 { "redir", HAS_ARG
, QEMU_OPTION_redir
},
4299 { "bt", HAS_ARG
, QEMU_OPTION_bt
},
4301 /* i386 target only: */
4302 { "win2k-hack", 0, QEMU_OPTION_win2k_hack
},
4303 { "rtc-td-hack", 0, QEMU_OPTION_rtc_td_hack
},
4304 { "no-fd-bootchk", 0, QEMU_OPTION_no_fd_bootchk
},
4305 { "no-acpi", 0, QEMU_OPTION_no_acpi
},
4306 { "no-hpet", 0, QEMU_OPTION_no_hpet
},
4307 { "acpitable", HAS_ARG
, QEMU_OPTION_acpitable
},
4310 /* Linux boot specific: */
4311 { "kernel", HAS_ARG
, QEMU_OPTION_kernel
},
4312 { "append", HAS_ARG
, QEMU_OPTION_append
},
4313 { "initrd", HAS_ARG
, QEMU_OPTION_initrd
},
4315 /* Debug/Expert options: */
4316 { "serial", HAS_ARG
, QEMU_OPTION_serial
},
4317 { "parallel", HAS_ARG
, QEMU_OPTION_parallel
},
4318 { "monitor", HAS_ARG
, QEMU_OPTION_monitor
},
4319 { "pidfile", HAS_ARG
, QEMU_OPTION_pidfile
},
4320 { "S", 0, QEMU_OPTION_S
},
4321 { "s", 0, QEMU_OPTION_s
},
4322 { "p", HAS_ARG
, QEMU_OPTION_p
},
4323 { "d", HAS_ARG
, QEMU_OPTION_d
},
4324 { "hdachs", HAS_ARG
, QEMU_OPTION_hdachs
},
4325 { "L", HAS_ARG
, QEMU_OPTION_L
},
4326 { "bios", HAS_ARG
, QEMU_OPTION_bios
},
4328 { "kernel-kqemu", 0, QEMU_OPTION_kernel_kqemu
},
4329 { "no-kqemu", 0, QEMU_OPTION_no_kqemu
},
4332 { "enable-kvm", 0, QEMU_OPTION_enable_kvm
},
4334 { "no-reboot", 0, QEMU_OPTION_no_reboot
},
4335 { "no-shutdown", 0, QEMU_OPTION_no_shutdown
},
4336 { "loadvm", HAS_ARG
, QEMU_OPTION_loadvm
},
4337 { "daemonize", 0, QEMU_OPTION_daemonize
},
4338 { "option-rom", HAS_ARG
, QEMU_OPTION_option_rom
},
4339 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
4340 { "prom-env", HAS_ARG
, QEMU_OPTION_prom_env
},
4342 { "clock", HAS_ARG
, QEMU_OPTION_clock
},
4343 { "localtime", 0, QEMU_OPTION_localtime
},
4344 { "startdate", HAS_ARG
, QEMU_OPTION_startdate
},
4345 { "icount", HAS_ARG
, QEMU_OPTION_icount
},
4346 { "echr", HAS_ARG
, QEMU_OPTION_echr
},
4347 { "virtioconsole", HAS_ARG
, QEMU_OPTION_virtiocon
},
4348 { "show-cursor", 0, QEMU_OPTION_show_cursor
},
4349 #if defined(TARGET_ARM) || defined(TARGET_M68K)
4350 { "semihosting", 0, QEMU_OPTION_semihosting
},
4352 #if defined(TARGET_ARM)
4353 { "old-param", 0, QEMU_OPTION_old_param
},
4355 { "tb-size", HAS_ARG
, QEMU_OPTION_tb_size
},
4356 { "incoming", HAS_ARG
, QEMU_OPTION_incoming
},
4357 { "chroot", HAS_ARG
, QEMU_OPTION_chroot
},
4358 { "runas", HAS_ARG
, QEMU_OPTION_runas
},
4363 struct soundhw soundhw
[] = {
4364 #ifdef HAS_AUDIO_CHOICE
4365 #if defined(TARGET_I386) || defined(TARGET_MIPS)
4371 { .init_isa
= pcspk_audio_init
}
4378 "Creative Sound Blaster 16",
4381 { .init_isa
= SB16_init
}
4385 #ifdef CONFIG_CS4231A
4391 { .init_isa
= cs4231a_init
}
4399 "Yamaha YMF262 (OPL3)",
4401 "Yamaha YM3812 (OPL2)",
4405 { .init_isa
= Adlib_init
}
4412 "Gravis Ultrasound GF1",
4415 { .init_isa
= GUS_init
}
4422 "Intel 82801AA AC97 Audio",
4425 { .init_pci
= ac97_init
}
4429 #ifdef CONFIG_ES1370
4432 "ENSONIQ AudioPCI ES1370",
4435 { .init_pci
= es1370_init
}
4439 #endif /* HAS_AUDIO_CHOICE */
4441 { NULL
, NULL
, 0, 0, { NULL
} }
4444 static void select_soundhw (const char *optarg
)
4448 if (*optarg
== '?') {
4451 printf ("Valid sound card names (comma separated):\n");
4452 for (c
= soundhw
; c
->name
; ++c
) {
4453 printf ("%-11s %s\n", c
->name
, c
->descr
);
4455 printf ("\n-soundhw all will enable all of the above\n");
4456 exit (*optarg
!= '?');
4464 if (!strcmp (optarg
, "all")) {
4465 for (c
= soundhw
; c
->name
; ++c
) {
4473 e
= strchr (p
, ',');
4474 l
= !e
? strlen (p
) : (size_t) (e
- p
);
4476 for (c
= soundhw
; c
->name
; ++c
) {
4477 if (!strncmp (c
->name
, p
, l
)) {
4486 "Unknown sound card name (too big to show)\n");
4489 fprintf (stderr
, "Unknown sound card name `%.*s'\n",
4494 p
+= l
+ (e
!= NULL
);
4498 goto show_valid_cards
;
4503 static void select_vgahw (const char *p
)
4507 if (strstart(p
, "std", &opts
)) {
4508 std_vga_enabled
= 1;
4509 cirrus_vga_enabled
= 0;
4511 } else if (strstart(p
, "cirrus", &opts
)) {
4512 cirrus_vga_enabled
= 1;
4513 std_vga_enabled
= 0;
4515 } else if (strstart(p
, "vmware", &opts
)) {
4516 cirrus_vga_enabled
= 0;
4517 std_vga_enabled
= 0;
4519 } else if (strstart(p
, "none", &opts
)) {
4520 cirrus_vga_enabled
= 0;
4521 std_vga_enabled
= 0;
4525 fprintf(stderr
, "Unknown vga type: %s\n", p
);
4529 const char *nextopt
;
4531 if (strstart(opts
, ",retrace=", &nextopt
)) {
4533 if (strstart(opts
, "dumb", &nextopt
))
4534 vga_retrace_method
= VGA_RETRACE_DUMB
;
4535 else if (strstart(opts
, "precise", &nextopt
))
4536 vga_retrace_method
= VGA_RETRACE_PRECISE
;
4537 else goto invalid_vga
;
4538 } else goto invalid_vga
;
4544 static BOOL WINAPI
qemu_ctrl_handler(DWORD type
)
4546 exit(STATUS_CONTROL_C_EXIT
);
4551 static int qemu_uuid_parse(const char *str
, uint8_t *uuid
)
4555 if(strlen(str
) != 36)
4558 ret
= sscanf(str
, UUID_FMT
, &uuid
[0], &uuid
[1], &uuid
[2], &uuid
[3],
4559 &uuid
[4], &uuid
[5], &uuid
[6], &uuid
[7], &uuid
[8], &uuid
[9],
4560 &uuid
[10], &uuid
[11], &uuid
[12], &uuid
[13], &uuid
[14], &uuid
[15]);
4568 #define MAX_NET_CLIENTS 32
4572 static void termsig_handler(int signal
)
4574 qemu_system_shutdown_request();
4577 static void termsig_setup(void)
4579 struct sigaction act
;
4581 memset(&act
, 0, sizeof(act
));
4582 act
.sa_handler
= termsig_handler
;
4583 sigaction(SIGINT
, &act
, NULL
);
4584 sigaction(SIGHUP
, &act
, NULL
);
4585 sigaction(SIGTERM
, &act
, NULL
);
4590 int main(int argc
, char **argv
, char **envp
)
4592 #ifdef CONFIG_GDBSTUB
4594 const char *gdbstub_port
;
4596 uint32_t boot_devices_bitmap
= 0;
4598 int snapshot
, linux_boot
, net_boot
;
4599 const char *initrd_filename
;
4600 const char *kernel_filename
, *kernel_cmdline
;
4601 const char *boot_devices
= "";
4603 DisplayChangeListener
*dcl
;
4604 int cyls
, heads
, secs
, translation
;
4605 const char *net_clients
[MAX_NET_CLIENTS
];
4607 const char *bt_opts
[MAX_BT_CMDLINE
];
4611 const char *r
, *optarg
;
4612 CharDriverState
*monitor_hd
= NULL
;
4613 const char *monitor_device
;
4614 const char *serial_devices
[MAX_SERIAL_PORTS
];
4615 int serial_device_index
;
4616 const char *parallel_devices
[MAX_PARALLEL_PORTS
];
4617 int parallel_device_index
;
4618 const char *virtio_consoles
[MAX_VIRTIO_CONSOLES
];
4619 int virtio_console_index
;
4620 const char *loadvm
= NULL
;
4621 QEMUMachine
*machine
;
4622 const char *cpu_model
;
4623 const char *usb_devices
[MAX_USB_CMDLINE
];
4624 int usb_devices_index
;
4627 const char *pid_file
= NULL
;
4628 const char *incoming
= NULL
;
4630 struct passwd
*pwd
= NULL
;
4631 const char *chroot_dir
= NULL
;
4632 const char *run_as
= NULL
;
4634 qemu_cache_utils_init(envp
);
4636 LIST_INIT (&vm_change_state_head
);
4639 struct sigaction act
;
4640 sigfillset(&act
.sa_mask
);
4642 act
.sa_handler
= SIG_IGN
;
4643 sigaction(SIGPIPE
, &act
, NULL
);
4646 SetConsoleCtrlHandler(qemu_ctrl_handler
, TRUE
);
4647 /* Note: cpu_interrupt() is currently not SMP safe, so we force
4648 QEMU to run on a single CPU */
4653 h
= GetCurrentProcess();
4654 if (GetProcessAffinityMask(h
, &mask
, &smask
)) {
4655 for(i
= 0; i
< 32; i
++) {
4656 if (mask
& (1 << i
))
4661 SetProcessAffinityMask(h
, mask
);
4667 register_machines();
4668 machine
= first_machine
;
4670 initrd_filename
= NULL
;
4672 vga_ram_size
= VGA_RAM_SIZE
;
4673 #ifdef CONFIG_GDBSTUB
4675 gdbstub_port
= DEFAULT_GDBSTUB_PORT
;
4680 kernel_filename
= NULL
;
4681 kernel_cmdline
= "";
4682 cyls
= heads
= secs
= 0;
4683 translation
= BIOS_ATA_TRANSLATION_AUTO
;
4684 monitor_device
= "vc:80Cx24C";
4686 serial_devices
[0] = "vc:80Cx24C";
4687 for(i
= 1; i
< MAX_SERIAL_PORTS
; i
++)
4688 serial_devices
[i
] = NULL
;
4689 serial_device_index
= 0;
4691 parallel_devices
[0] = "vc:80Cx24C";
4692 for(i
= 1; i
< MAX_PARALLEL_PORTS
; i
++)
4693 parallel_devices
[i
] = NULL
;
4694 parallel_device_index
= 0;
4696 for(i
= 0; i
< MAX_VIRTIO_CONSOLES
; i
++)
4697 virtio_consoles
[i
] = NULL
;
4698 virtio_console_index
= 0;
4700 usb_devices_index
= 0;
4719 hda_index
= drive_add(argv
[optind
++], HD_ALIAS
, 0);
4721 const QEMUOption
*popt
;
4724 /* Treat --foo the same as -foo. */
4727 popt
= qemu_options
;
4730 fprintf(stderr
, "%s: invalid option -- '%s'\n",
4734 if (!strcmp(popt
->name
, r
+ 1))
4738 if (popt
->flags
& HAS_ARG
) {
4739 if (optind
>= argc
) {
4740 fprintf(stderr
, "%s: option '%s' requires an argument\n",
4744 optarg
= argv
[optind
++];
4749 switch(popt
->index
) {
4751 machine
= find_machine(optarg
);
4754 printf("Supported machines are:\n");
4755 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
4756 printf("%-10s %s%s\n",
4758 m
== first_machine
? " (default)" : "");
4760 exit(*optarg
!= '?');
4763 case QEMU_OPTION_cpu
:
4764 /* hw initialization will check this */
4765 if (*optarg
== '?') {
4766 /* XXX: implement xxx_cpu_list for targets that still miss it */
4767 #if defined(cpu_list)
4768 cpu_list(stdout
, &fprintf
);
4775 case QEMU_OPTION_initrd
:
4776 initrd_filename
= optarg
;
4778 case QEMU_OPTION_hda
:
4780 hda_index
= drive_add(optarg
, HD_ALIAS
, 0);
4782 hda_index
= drive_add(optarg
, HD_ALIAS
4783 ",cyls=%d,heads=%d,secs=%d%s",
4784 0, cyls
, heads
, secs
,
4785 translation
== BIOS_ATA_TRANSLATION_LBA
?
4787 translation
== BIOS_ATA_TRANSLATION_NONE
?
4788 ",trans=none" : "");
4790 case QEMU_OPTION_hdb
:
4791 case QEMU_OPTION_hdc
:
4792 case QEMU_OPTION_hdd
:
4793 drive_add(optarg
, HD_ALIAS
, popt
->index
- QEMU_OPTION_hda
);
4795 case QEMU_OPTION_drive
:
4796 drive_add(NULL
, "%s", optarg
);
4798 case QEMU_OPTION_mtdblock
:
4799 drive_add(optarg
, MTD_ALIAS
);
4801 case QEMU_OPTION_sd
:
4802 drive_add(optarg
, SD_ALIAS
);
4804 case QEMU_OPTION_pflash
:
4805 drive_add(optarg
, PFLASH_ALIAS
);
4807 case QEMU_OPTION_snapshot
:
4810 case QEMU_OPTION_hdachs
:
4814 cyls
= strtol(p
, (char **)&p
, 0);
4815 if (cyls
< 1 || cyls
> 16383)
4820 heads
= strtol(p
, (char **)&p
, 0);
4821 if (heads
< 1 || heads
> 16)
4826 secs
= strtol(p
, (char **)&p
, 0);
4827 if (secs
< 1 || secs
> 63)
4831 if (!strcmp(p
, "none"))
4832 translation
= BIOS_ATA_TRANSLATION_NONE
;
4833 else if (!strcmp(p
, "lba"))
4834 translation
= BIOS_ATA_TRANSLATION_LBA
;
4835 else if (!strcmp(p
, "auto"))
4836 translation
= BIOS_ATA_TRANSLATION_AUTO
;
4839 } else if (*p
!= '\0') {
4841 fprintf(stderr
, "qemu: invalid physical CHS format\n");
4844 if (hda_index
!= -1)
4845 snprintf(drives_opt
[hda_index
].opt
,
4846 sizeof(drives_opt
[hda_index
].opt
),
4847 HD_ALIAS
",cyls=%d,heads=%d,secs=%d%s",
4848 0, cyls
, heads
, secs
,
4849 translation
== BIOS_ATA_TRANSLATION_LBA
?
4851 translation
== BIOS_ATA_TRANSLATION_NONE
?
4852 ",trans=none" : "");
4855 case QEMU_OPTION_nographic
:
4858 #ifdef CONFIG_CURSES
4859 case QEMU_OPTION_curses
:
4863 case QEMU_OPTION_portrait
:
4866 case QEMU_OPTION_kernel
:
4867 kernel_filename
= optarg
;
4869 case QEMU_OPTION_append
:
4870 kernel_cmdline
= optarg
;
4872 case QEMU_OPTION_cdrom
:
4873 drive_add(optarg
, CDROM_ALIAS
);
4875 case QEMU_OPTION_boot
:
4876 boot_devices
= optarg
;
4877 /* We just do some generic consistency checks */
4879 /* Could easily be extended to 64 devices if needed */
4882 boot_devices_bitmap
= 0;
4883 for (p
= boot_devices
; *p
!= '\0'; p
++) {
4884 /* Allowed boot devices are:
4885 * a b : floppy disk drives
4886 * c ... f : IDE disk drives
4887 * g ... m : machine implementation dependant drives
4888 * n ... p : network devices
4889 * It's up to each machine implementation to check
4890 * if the given boot devices match the actual hardware
4891 * implementation and firmware features.
4893 if (*p
< 'a' || *p
> 'q') {
4894 fprintf(stderr
, "Invalid boot device '%c'\n", *p
);
4897 if (boot_devices_bitmap
& (1 << (*p
- 'a'))) {
4899 "Boot device '%c' was given twice\n",*p
);
4902 boot_devices_bitmap
|= 1 << (*p
- 'a');
4906 case QEMU_OPTION_fda
:
4907 case QEMU_OPTION_fdb
:
4908 drive_add(optarg
, FD_ALIAS
, popt
->index
- QEMU_OPTION_fda
);
4911 case QEMU_OPTION_no_fd_bootchk
:
4915 case QEMU_OPTION_net
:
4916 if (nb_net_clients
>= MAX_NET_CLIENTS
) {
4917 fprintf(stderr
, "qemu: too many network clients\n");
4920 net_clients
[nb_net_clients
] = optarg
;
4924 case QEMU_OPTION_tftp
:
4925 tftp_prefix
= optarg
;
4927 case QEMU_OPTION_bootp
:
4928 bootp_filename
= optarg
;
4931 case QEMU_OPTION_smb
:
4932 net_slirp_smb(optarg
);
4935 case QEMU_OPTION_redir
:
4936 net_slirp_redir(optarg
);
4939 case QEMU_OPTION_bt
:
4940 if (nb_bt_opts
>= MAX_BT_CMDLINE
) {
4941 fprintf(stderr
, "qemu: too many bluetooth options\n");
4944 bt_opts
[nb_bt_opts
++] = optarg
;
4947 case QEMU_OPTION_audio_help
:
4951 case QEMU_OPTION_soundhw
:
4952 select_soundhw (optarg
);
4958 case QEMU_OPTION_m
: {
4962 value
= strtoul(optarg
, &ptr
, 10);
4964 case 0: case 'M': case 'm':
4971 fprintf(stderr
, "qemu: invalid ram size: %s\n", optarg
);
4975 /* On 32-bit hosts, QEMU is limited by virtual address space */
4976 if (value
> (2047 << 20)
4978 && HOST_LONG_BITS
== 32
4981 fprintf(stderr
, "qemu: at most 2047 MB RAM can be simulated\n");
4984 if (value
!= (uint64_t)(ram_addr_t
)value
) {
4985 fprintf(stderr
, "qemu: ram size too large\n");
4994 const CPULogItem
*item
;
4996 mask
= cpu_str_to_log_mask(optarg
);
4998 printf("Log items (comma separated):\n");
4999 for(item
= cpu_log_items
; item
->mask
!= 0; item
++) {
5000 printf("%-10s %s\n", item
->name
, item
->help
);
5007 #ifdef CONFIG_GDBSTUB
5012 gdbstub_port
= optarg
;
5018 case QEMU_OPTION_bios
:
5025 keyboard_layout
= optarg
;
5027 case QEMU_OPTION_localtime
:
5030 case QEMU_OPTION_vga
:
5031 select_vgahw (optarg
);
5038 w
= strtol(p
, (char **)&p
, 10);
5041 fprintf(stderr
, "qemu: invalid resolution or depth\n");
5047 h
= strtol(p
, (char **)&p
, 10);
5052 depth
= strtol(p
, (char **)&p
, 10);
5053 if (depth
!= 8 && depth
!= 15 && depth
!= 16 &&
5054 depth
!= 24 && depth
!= 32)
5056 } else if (*p
== '\0') {
5057 depth
= graphic_depth
;
5064 graphic_depth
= depth
;
5067 case QEMU_OPTION_echr
:
5070 term_escape_char
= strtol(optarg
, &r
, 0);
5072 printf("Bad argument to echr\n");
5075 case QEMU_OPTION_monitor
:
5076 monitor_device
= optarg
;
5078 case QEMU_OPTION_serial
:
5079 if (serial_device_index
>= MAX_SERIAL_PORTS
) {
5080 fprintf(stderr
, "qemu: too many serial ports\n");
5083 serial_devices
[serial_device_index
] = optarg
;
5084 serial_device_index
++;
5086 case QEMU_OPTION_virtiocon
:
5087 if (virtio_console_index
>= MAX_VIRTIO_CONSOLES
) {
5088 fprintf(stderr
, "qemu: too many virtio consoles\n");
5091 virtio_consoles
[virtio_console_index
] = optarg
;
5092 virtio_console_index
++;
5094 case QEMU_OPTION_parallel
:
5095 if (parallel_device_index
>= MAX_PARALLEL_PORTS
) {
5096 fprintf(stderr
, "qemu: too many parallel ports\n");
5099 parallel_devices
[parallel_device_index
] = optarg
;
5100 parallel_device_index
++;
5102 case QEMU_OPTION_loadvm
:
5105 case QEMU_OPTION_full_screen
:
5109 case QEMU_OPTION_no_frame
:
5112 case QEMU_OPTION_alt_grab
:
5115 case QEMU_OPTION_no_quit
:
5118 case QEMU_OPTION_sdl
:
5122 case QEMU_OPTION_pidfile
:
5126 case QEMU_OPTION_win2k_hack
:
5127 win2k_install_hack
= 1;
5129 case QEMU_OPTION_rtc_td_hack
:
5132 case QEMU_OPTION_acpitable
:
5133 if(acpi_table_add(optarg
) < 0) {
5134 fprintf(stderr
, "Wrong acpi table provided\n");
5140 case QEMU_OPTION_no_kqemu
:
5143 case QEMU_OPTION_kernel_kqemu
:
5148 case QEMU_OPTION_enable_kvm
:
5155 case QEMU_OPTION_usb
:
5158 case QEMU_OPTION_usbdevice
:
5160 if (usb_devices_index
>= MAX_USB_CMDLINE
) {
5161 fprintf(stderr
, "Too many USB devices\n");
5164 usb_devices
[usb_devices_index
] = optarg
;
5165 usb_devices_index
++;
5167 case QEMU_OPTION_smp
:
5168 smp_cpus
= atoi(optarg
);
5170 fprintf(stderr
, "Invalid number of CPUs\n");
5174 case QEMU_OPTION_vnc
:
5175 vnc_display
= optarg
;
5177 case QEMU_OPTION_no_acpi
:
5180 case QEMU_OPTION_no_hpet
:
5183 case QEMU_OPTION_no_reboot
:
5186 case QEMU_OPTION_no_shutdown
:
5189 case QEMU_OPTION_show_cursor
:
5192 case QEMU_OPTION_uuid
:
5193 if(qemu_uuid_parse(optarg
, qemu_uuid
) < 0) {
5194 fprintf(stderr
, "Fail to parse UUID string."
5195 " Wrong format.\n");
5199 case QEMU_OPTION_daemonize
:
5202 case QEMU_OPTION_option_rom
:
5203 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
5204 fprintf(stderr
, "Too many option ROMs\n");
5207 option_rom
[nb_option_roms
] = optarg
;
5210 case QEMU_OPTION_semihosting
:
5211 semihosting_enabled
= 1;
5213 case QEMU_OPTION_name
:
5216 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
5217 case QEMU_OPTION_prom_env
:
5218 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
5219 fprintf(stderr
, "Too many prom variables\n");
5222 prom_envs
[nb_prom_envs
] = optarg
;
5227 case QEMU_OPTION_old_param
:
5231 case QEMU_OPTION_clock
:
5232 configure_alarms(optarg
);
5234 case QEMU_OPTION_startdate
:
5237 time_t rtc_start_date
;
5238 if (!strcmp(optarg
, "now")) {
5239 rtc_date_offset
= -1;
5241 if (sscanf(optarg
, "%d-%d-%dT%d:%d:%d",
5249 } else if (sscanf(optarg
, "%d-%d-%d",
5252 &tm
.tm_mday
) == 3) {
5261 rtc_start_date
= mktimegm(&tm
);
5262 if (rtc_start_date
== -1) {
5264 fprintf(stderr
, "Invalid date format. Valid format are:\n"
5265 "'now' or '2006-06-17T16:01:21' or '2006-06-17'\n");
5268 rtc_date_offset
= time(NULL
) - rtc_start_date
;
5272 case QEMU_OPTION_tb_size
:
5273 tb_size
= strtol(optarg
, NULL
, 0);
5277 case QEMU_OPTION_icount
:
5279 if (strcmp(optarg
, "auto") == 0) {
5280 icount_time_shift
= -1;
5282 icount_time_shift
= strtol(optarg
, NULL
, 0);
5285 case QEMU_OPTION_incoming
:
5288 case QEMU_OPTION_chroot
:
5289 chroot_dir
= optarg
;
5291 case QEMU_OPTION_runas
:
5298 #if defined(CONFIG_KVM) && defined(USE_KQEMU)
5299 if (kvm_allowed
&& kqemu_allowed
) {
5301 "You can not enable both KVM and kqemu at the same time\n");
5306 machine
->max_cpus
= machine
->max_cpus
?: 1; /* Default to UP */
5307 if (smp_cpus
> machine
->max_cpus
) {
5308 fprintf(stderr
, "Number of SMP cpus requested (%d), exceeds max cpus "
5309 "supported by machine `%s' (%d)\n", smp_cpus
, machine
->name
,
5315 if (serial_device_index
== 0)
5316 serial_devices
[0] = "stdio";
5317 if (parallel_device_index
== 0)
5318 parallel_devices
[0] = "null";
5319 if (strncmp(monitor_device
, "vc", 2) == 0)
5320 monitor_device
= "stdio";
5327 if (pipe(fds
) == -1)
5338 len
= read(fds
[0], &status
, 1);
5339 if (len
== -1 && (errno
== EINTR
))
5344 else if (status
== 1) {
5345 fprintf(stderr
, "Could not acquire pidfile\n");
5362 signal(SIGTSTP
, SIG_IGN
);
5363 signal(SIGTTOU
, SIG_IGN
);
5364 signal(SIGTTIN
, SIG_IGN
);
5368 if (pid_file
&& qemu_create_pidfile(pid_file
) != 0) {
5371 write(fds
[1], &status
, 1);
5373 fprintf(stderr
, "Could not acquire pid file\n");
5381 linux_boot
= (kernel_filename
!= NULL
);
5382 net_boot
= (boot_devices_bitmap
>> ('n' - 'a')) & 0xF;
5384 if (!linux_boot
&& net_boot
== 0 &&
5385 !machine
->nodisk_ok
&& nb_drives_opt
== 0)
5388 if (!linux_boot
&& *kernel_cmdline
!= '\0') {
5389 fprintf(stderr
, "-append only allowed with -kernel option\n");
5393 if (!linux_boot
&& initrd_filename
!= NULL
) {
5394 fprintf(stderr
, "-initrd only allowed with -kernel option\n");
5398 /* boot to floppy or the default cd if no hard disk defined yet */
5399 if (!boot_devices
[0]) {
5400 boot_devices
= "cad";
5402 setvbuf(stdout
, NULL
, _IOLBF
, 0);
5405 if (init_timer_alarm() < 0) {
5406 fprintf(stderr
, "could not initialize alarm timer\n");
5409 if (use_icount
&& icount_time_shift
< 0) {
5411 /* 125MIPS seems a reasonable initial guess at the guest speed.
5412 It will be corrected fairly quickly anyway. */
5413 icount_time_shift
= 3;
5414 init_icount_adjust();
5421 /* init network clients */
5422 if (nb_net_clients
== 0) {
5423 /* if no clients, we use a default config */
5424 net_clients
[nb_net_clients
++] = "nic";
5426 net_clients
[nb_net_clients
++] = "user";
5430 for(i
= 0;i
< nb_net_clients
; i
++) {
5431 if (net_client_parse(net_clients
[i
]) < 0)
5437 /* XXX: this should be moved in the PC machine instantiation code */
5438 if (net_boot
!= 0) {
5440 for (i
= 0; i
< nb_nics
&& i
< 4; i
++) {
5441 const char *model
= nd_table
[i
].model
;
5443 if (net_boot
& (1 << i
)) {
5446 snprintf(buf
, sizeof(buf
), "%s/pxe-%s.bin", bios_dir
, model
);
5447 if (get_image_size(buf
) > 0) {
5448 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
5449 fprintf(stderr
, "Too many option ROMs\n");
5452 option_rom
[nb_option_roms
] = strdup(buf
);
5459 fprintf(stderr
, "No valid PXE rom found for network device\n");
5465 /* init the bluetooth world */
5466 for (i
= 0; i
< nb_bt_opts
; i
++)
5467 if (bt_parse(bt_opts
[i
]))
5470 /* init the memory */
5471 phys_ram_size
= machine
->ram_require
& ~RAMSIZE_FIXED
;
5473 if (machine
->ram_require
& RAMSIZE_FIXED
) {
5475 if (ram_size
< phys_ram_size
) {
5476 fprintf(stderr
, "Machine `%s' requires %llu bytes of memory\n",
5477 machine
->name
, (unsigned long long) phys_ram_size
);
5481 phys_ram_size
= ram_size
;
5483 ram_size
= phys_ram_size
;
5486 ram_size
= DEFAULT_RAM_SIZE
* 1024 * 1024;
5488 phys_ram_size
+= ram_size
;
5491 phys_ram_base
= qemu_vmalloc(phys_ram_size
);
5492 if (!phys_ram_base
) {
5493 fprintf(stderr
, "Could not allocate physical memory\n");
5497 /* init the dynamic translator */
5498 cpu_exec_init_all(tb_size
* 1024 * 1024);
5502 /* we always create the cdrom drive, even if no disk is there */
5504 if (nb_drives_opt
< MAX_DRIVES
)
5505 drive_add(NULL
, CDROM_ALIAS
);
5507 /* we always create at least one floppy */
5509 if (nb_drives_opt
< MAX_DRIVES
)
5510 drive_add(NULL
, FD_ALIAS
, 0);
5512 /* we always create one sd slot, even if no card is in it */
5514 if (nb_drives_opt
< MAX_DRIVES
)
5515 drive_add(NULL
, SD_ALIAS
);
5517 /* open the virtual block devices */
5519 for(i
= 0; i
< nb_drives_opt
; i
++)
5520 if (drive_init(&drives_opt
[i
], snapshot
, machine
) == -1)
5523 register_savevm("timer", 0, 2, timer_save
, timer_load
, NULL
);
5524 register_savevm_live("ram", 0, 3, ram_save_live
, NULL
, ram_load
, NULL
);
5527 /* must be after terminal init, SDL library changes signal handlers */
5531 /* Maintain compatibility with multiple stdio monitors */
5532 if (!strcmp(monitor_device
,"stdio")) {
5533 for (i
= 0; i
< MAX_SERIAL_PORTS
; i
++) {
5534 const char *devname
= serial_devices
[i
];
5535 if (devname
&& !strcmp(devname
,"mon:stdio")) {
5536 monitor_device
= NULL
;
5538 } else if (devname
&& !strcmp(devname
,"stdio")) {
5539 monitor_device
= NULL
;
5540 serial_devices
[i
] = "mon:stdio";
5546 if (kvm_enabled()) {
5549 ret
= kvm_init(smp_cpus
);
5551 fprintf(stderr
, "failed to initialize KVM\n");
5556 if (monitor_device
) {
5557 monitor_hd
= qemu_chr_open("monitor", monitor_device
, NULL
);
5559 fprintf(stderr
, "qemu: could not open monitor device '%s'\n", monitor_device
);
5564 for(i
= 0; i
< MAX_SERIAL_PORTS
; i
++) {
5565 const char *devname
= serial_devices
[i
];
5566 if (devname
&& strcmp(devname
, "none")) {
5568 snprintf(label
, sizeof(label
), "serial%d", i
);
5569 serial_hds
[i
] = qemu_chr_open(label
, devname
, NULL
);
5570 if (!serial_hds
[i
]) {
5571 fprintf(stderr
, "qemu: could not open serial device '%s'\n",
5578 for(i
= 0; i
< MAX_PARALLEL_PORTS
; i
++) {
5579 const char *devname
= parallel_devices
[i
];
5580 if (devname
&& strcmp(devname
, "none")) {
5582 snprintf(label
, sizeof(label
), "parallel%d", i
);
5583 parallel_hds
[i
] = qemu_chr_open(label
, devname
, NULL
);
5584 if (!parallel_hds
[i
]) {
5585 fprintf(stderr
, "qemu: could not open parallel device '%s'\n",
5592 for(i
= 0; i
< MAX_VIRTIO_CONSOLES
; i
++) {
5593 const char *devname
= virtio_consoles
[i
];
5594 if (devname
&& strcmp(devname
, "none")) {
5596 snprintf(label
, sizeof(label
), "virtcon%d", i
);
5597 virtcon_hds
[i
] = qemu_chr_open(label
, devname
, NULL
);
5598 if (!virtcon_hds
[i
]) {
5599 fprintf(stderr
, "qemu: could not open virtio console '%s'\n",
5606 machine
->init(ram_size
, vga_ram_size
, boot_devices
,
5607 kernel_filename
, kernel_cmdline
, initrd_filename
, cpu_model
);
5609 current_machine
= machine
;
5611 /* Set KVM's vcpu state to qemu's initial CPUState. */
5612 if (kvm_enabled()) {
5615 ret
= kvm_sync_vcpus();
5617 fprintf(stderr
, "failed to initialize vcpus\n");
5622 /* init USB devices */
5624 for(i
= 0; i
< usb_devices_index
; i
++) {
5625 if (usb_device_add(usb_devices
[i
], 0) < 0) {
5626 fprintf(stderr
, "Warning: could not add USB device %s\n",
5633 dumb_display_init();
5634 /* just use the first displaystate for the moment */
5639 fprintf(stderr
, "fatal: -nographic can't be used with -curses\n");
5643 #if defined(CONFIG_CURSES)
5645 /* At the moment curses cannot be used with other displays */
5646 curses_display_init(ds
, full_screen
);
5650 if (vnc_display
!= NULL
) {
5651 vnc_display_init(ds
);
5652 if (vnc_display_open(ds
, vnc_display
) < 0)
5655 #if defined(CONFIG_SDL)
5656 if (sdl
|| !vnc_display
)
5657 sdl_display_init(ds
, full_screen
, no_frame
);
5658 #elif defined(CONFIG_COCOA)
5659 if (sdl
|| !vnc_display
)
5660 cocoa_display_init(ds
, full_screen
);
5666 dcl
= ds
->listeners
;
5667 while (dcl
!= NULL
) {
5668 if (dcl
->dpy_refresh
!= NULL
) {
5669 ds
->gui_timer
= qemu_new_timer(rt_clock
, gui_update
, ds
);
5670 qemu_mod_timer(ds
->gui_timer
, qemu_get_clock(rt_clock
));
5675 if (nographic
|| (vnc_display
&& !sdl
)) {
5676 nographic_timer
= qemu_new_timer(rt_clock
, nographic_update
, NULL
);
5677 qemu_mod_timer(nographic_timer
, qemu_get_clock(rt_clock
));
5680 text_consoles_set_display(display_state
);
5681 qemu_chr_initial_reset();
5683 if (monitor_device
&& monitor_hd
)
5684 monitor_init(monitor_hd
, !nographic
);
5686 for(i
= 0; i
< MAX_SERIAL_PORTS
; i
++) {
5687 const char *devname
= serial_devices
[i
];
5688 if (devname
&& strcmp(devname
, "none")) {
5690 snprintf(label
, sizeof(label
), "serial%d", i
);
5691 if (strstart(devname
, "vc", 0))
5692 qemu_chr_printf(serial_hds
[i
], "serial%d console\r\n", i
);
5696 for(i
= 0; i
< MAX_PARALLEL_PORTS
; i
++) {
5697 const char *devname
= parallel_devices
[i
];
5698 if (devname
&& strcmp(devname
, "none")) {
5700 snprintf(label
, sizeof(label
), "parallel%d", i
);
5701 if (strstart(devname
, "vc", 0))
5702 qemu_chr_printf(parallel_hds
[i
], "parallel%d console\r\n", i
);
5706 for(i
= 0; i
< MAX_VIRTIO_CONSOLES
; i
++) {
5707 const char *devname
= virtio_consoles
[i
];
5708 if (virtcon_hds
[i
] && devname
) {
5710 snprintf(label
, sizeof(label
), "virtcon%d", i
);
5711 if (strstart(devname
, "vc", 0))
5712 qemu_chr_printf(virtcon_hds
[i
], "virtio console%d\r\n", i
);
5716 #ifdef CONFIG_GDBSTUB
5718 /* XXX: use standard host:port notation and modify options
5720 if (gdbserver_start(gdbstub_port
) < 0) {
5721 fprintf(stderr
, "qemu: could not open gdbstub device on port '%s'\n",
5732 autostart
= 0; /* fixme how to deal with -daemonize */
5733 qemu_start_incoming_migration(incoming
);
5744 len
= write(fds
[1], &status
, 1);
5745 if (len
== -1 && (errno
== EINTR
))
5752 TFR(fd
= open("/dev/null", O_RDWR
));
5759 pwd
= getpwnam(run_as
);
5761 fprintf(stderr
, "User \"%s\" doesn't exist\n", run_as
);
5767 if (chroot(chroot_dir
) < 0) {
5768 fprintf(stderr
, "chroot failed\n");
5775 if (setgid(pwd
->pw_gid
) < 0) {
5776 fprintf(stderr
, "Failed to setgid(%d)\n", pwd
->pw_gid
);
5779 if (setuid(pwd
->pw_uid
) < 0) {
5780 fprintf(stderr
, "Failed to setuid(%d)\n", pwd
->pw_uid
);
5783 if (setuid(0) != -1) {
5784 fprintf(stderr
, "Dropping privileges failed\n");