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
&& (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 if (alarm_timer
) 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
);
1532 * Initialize ev struct to 0 to avoid valgrind complaining
1533 * about uninitialized data in timer_create call
1535 memset(&ev
, 0, sizeof(ev
));
1536 ev
.sigev_value
.sival_int
= 0;
1537 ev
.sigev_notify
= SIGEV_SIGNAL
;
1538 ev
.sigev_signo
= SIGALRM
;
1540 if (timer_create(CLOCK_REALTIME
, &ev
, &host_timer
)) {
1541 perror("timer_create");
1543 /* disable dynticks */
1544 fprintf(stderr
, "Dynamic Ticks disabled\n");
1549 t
->priv
= (void *)(long)host_timer
;
1554 static void dynticks_stop_timer(struct qemu_alarm_timer
*t
)
1556 timer_t host_timer
= (timer_t
)(long)t
->priv
;
1558 timer_delete(host_timer
);
1561 static void dynticks_rearm_timer(struct qemu_alarm_timer
*t
)
1563 timer_t host_timer
= (timer_t
)(long)t
->priv
;
1564 struct itimerspec timeout
;
1565 int64_t nearest_delta_us
= INT64_MAX
;
1568 if (!active_timers
[QEMU_TIMER_REALTIME
] &&
1569 !active_timers
[QEMU_TIMER_VIRTUAL
])
1572 nearest_delta_us
= qemu_next_deadline_dyntick();
1574 /* check whether a timer is already running */
1575 if (timer_gettime(host_timer
, &timeout
)) {
1577 fprintf(stderr
, "Internal timer error: aborting\n");
1580 current_us
= timeout
.it_value
.tv_sec
* 1000000 + timeout
.it_value
.tv_nsec
/1000;
1581 if (current_us
&& current_us
<= nearest_delta_us
)
1584 timeout
.it_interval
.tv_sec
= 0;
1585 timeout
.it_interval
.tv_nsec
= 0; /* 0 for one-shot timer */
1586 timeout
.it_value
.tv_sec
= nearest_delta_us
/ 1000000;
1587 timeout
.it_value
.tv_nsec
= (nearest_delta_us
% 1000000) * 1000;
1588 if (timer_settime(host_timer
, 0 /* RELATIVE */, &timeout
, NULL
)) {
1590 fprintf(stderr
, "Internal timer error: aborting\n");
1595 #endif /* defined(__linux__) */
1597 static int unix_start_timer(struct qemu_alarm_timer
*t
)
1599 struct sigaction act
;
1600 struct itimerval itv
;
1604 sigfillset(&act
.sa_mask
);
1606 act
.sa_handler
= host_alarm_handler
;
1608 sigaction(SIGALRM
, &act
, NULL
);
1610 itv
.it_interval
.tv_sec
= 0;
1611 /* for i386 kernel 2.6 to get 1 ms */
1612 itv
.it_interval
.tv_usec
= 999;
1613 itv
.it_value
.tv_sec
= 0;
1614 itv
.it_value
.tv_usec
= 10 * 1000;
1616 err
= setitimer(ITIMER_REAL
, &itv
, NULL
);
1623 static void unix_stop_timer(struct qemu_alarm_timer
*t
)
1625 struct itimerval itv
;
1627 memset(&itv
, 0, sizeof(itv
));
1628 setitimer(ITIMER_REAL
, &itv
, NULL
);
1631 #endif /* !defined(_WIN32) */
1633 static void try_to_rearm_timer(void *opaque
)
1635 struct qemu_alarm_timer
*t
= opaque
;
1639 /* Drain the notify pipe */
1642 len
= read(alarm_timer_rfd
, buffer
, sizeof(buffer
));
1643 } while ((len
== -1 && errno
== EINTR
) || len
> 0);
1646 if (t
->flags
& ALARM_FLAG_EXPIRED
) {
1647 alarm_timer
->flags
&= ~ALARM_FLAG_EXPIRED
;
1648 qemu_rearm_alarm_timer(alarm_timer
);
1654 static int win32_start_timer(struct qemu_alarm_timer
*t
)
1657 struct qemu_alarm_win32
*data
= t
->priv
;
1660 data
->host_alarm
= CreateEvent(NULL
, FALSE
, FALSE
, NULL
);
1661 if (!data
->host_alarm
) {
1662 perror("Failed CreateEvent");
1666 memset(&tc
, 0, sizeof(tc
));
1667 timeGetDevCaps(&tc
, sizeof(tc
));
1669 if (data
->period
< tc
.wPeriodMin
)
1670 data
->period
= tc
.wPeriodMin
;
1672 timeBeginPeriod(data
->period
);
1674 flags
= TIME_CALLBACK_FUNCTION
;
1675 if (alarm_has_dynticks(t
))
1676 flags
|= TIME_ONESHOT
;
1678 flags
|= TIME_PERIODIC
;
1680 data
->timerId
= timeSetEvent(1, // interval (ms)
1681 data
->period
, // resolution
1682 host_alarm_handler
, // function
1683 (DWORD
)t
, // parameter
1686 if (!data
->timerId
) {
1687 perror("Failed to initialize win32 alarm timer");
1689 timeEndPeriod(data
->period
);
1690 CloseHandle(data
->host_alarm
);
1694 qemu_add_wait_object(data
->host_alarm
, try_to_rearm_timer
, t
);
1699 static void win32_stop_timer(struct qemu_alarm_timer
*t
)
1701 struct qemu_alarm_win32
*data
= t
->priv
;
1703 timeKillEvent(data
->timerId
);
1704 timeEndPeriod(data
->period
);
1706 CloseHandle(data
->host_alarm
);
1709 static void win32_rearm_timer(struct qemu_alarm_timer
*t
)
1711 struct qemu_alarm_win32
*data
= t
->priv
;
1712 uint64_t nearest_delta_us
;
1714 if (!active_timers
[QEMU_TIMER_REALTIME
] &&
1715 !active_timers
[QEMU_TIMER_VIRTUAL
])
1718 nearest_delta_us
= qemu_next_deadline_dyntick();
1719 nearest_delta_us
/= 1000;
1721 timeKillEvent(data
->timerId
);
1723 data
->timerId
= timeSetEvent(1,
1727 TIME_ONESHOT
| TIME_PERIODIC
);
1729 if (!data
->timerId
) {
1730 perror("Failed to re-arm win32 alarm timer");
1732 timeEndPeriod(data
->period
);
1733 CloseHandle(data
->host_alarm
);
1740 static int init_timer_alarm(void)
1742 struct qemu_alarm_timer
*t
= NULL
;
1752 err
= fcntl_setfl(fds
[0], O_NONBLOCK
);
1756 err
= fcntl_setfl(fds
[1], O_NONBLOCK
);
1760 alarm_timer_rfd
= fds
[0];
1761 alarm_timer_wfd
= fds
[1];
1764 for (i
= 0; alarm_timers
[i
].name
; i
++) {
1765 t
= &alarm_timers
[i
];
1778 qemu_set_fd_handler2(alarm_timer_rfd
, NULL
,
1779 try_to_rearm_timer
, NULL
, t
);
1794 static void quit_timers(void)
1796 alarm_timer
->stop(alarm_timer
);
1800 /***********************************************************/
1801 /* host time/date access */
1802 void qemu_get_timedate(struct tm
*tm
, int offset
)
1809 if (rtc_date_offset
== -1) {
1813 ret
= localtime(&ti
);
1815 ti
-= rtc_date_offset
;
1819 memcpy(tm
, ret
, sizeof(struct tm
));
1822 int qemu_timedate_diff(struct tm
*tm
)
1826 if (rtc_date_offset
== -1)
1828 seconds
= mktimegm(tm
);
1830 seconds
= mktime(tm
);
1832 seconds
= mktimegm(tm
) + rtc_date_offset
;
1834 return seconds
- time(NULL
);
1838 static void socket_cleanup(void)
1843 static int socket_init(void)
1848 ret
= WSAStartup(MAKEWORD(2,2), &Data
);
1850 err
= WSAGetLastError();
1851 fprintf(stderr
, "WSAStartup: %d\n", err
);
1854 atexit(socket_cleanup
);
1859 const char *get_opt_name(char *buf
, int buf_size
, const char *p
)
1864 while (*p
!= '\0' && *p
!= '=') {
1865 if (q
&& (q
- buf
) < buf_size
- 1)
1875 const char *get_opt_value(char *buf
, int buf_size
, const char *p
)
1880 while (*p
!= '\0') {
1882 if (*(p
+ 1) != ',')
1886 if (q
&& (q
- buf
) < buf_size
- 1)
1896 int get_param_value(char *buf
, int buf_size
,
1897 const char *tag
, const char *str
)
1904 p
= get_opt_name(option
, sizeof(option
), p
);
1908 if (!strcmp(tag
, option
)) {
1909 (void)get_opt_value(buf
, buf_size
, p
);
1912 p
= get_opt_value(NULL
, 0, p
);
1921 int check_params(char *buf
, int buf_size
,
1922 const char * const *params
, const char *str
)
1929 p
= get_opt_name(buf
, buf_size
, p
);
1933 for(i
= 0; params
[i
] != NULL
; i
++)
1934 if (!strcmp(params
[i
], buf
))
1936 if (params
[i
] == NULL
)
1938 p
= get_opt_value(NULL
, 0, p
);
1946 /***********************************************************/
1947 /* Bluetooth support */
1950 static struct HCIInfo
*hci_table
[MAX_NICS
];
1952 static struct bt_vlan_s
{
1953 struct bt_scatternet_s net
;
1955 struct bt_vlan_s
*next
;
1958 /* find or alloc a new bluetooth "VLAN" */
1959 static struct bt_scatternet_s
*qemu_find_bt_vlan(int id
)
1961 struct bt_vlan_s
**pvlan
, *vlan
;
1962 for (vlan
= first_bt_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
1966 vlan
= qemu_mallocz(sizeof(struct bt_vlan_s
));
1968 pvlan
= &first_bt_vlan
;
1969 while (*pvlan
!= NULL
)
1970 pvlan
= &(*pvlan
)->next
;
1975 static void null_hci_send(struct HCIInfo
*hci
, const uint8_t *data
, int len
)
1979 static int null_hci_addr_set(struct HCIInfo
*hci
, const uint8_t *bd_addr
)
1984 static struct HCIInfo null_hci
= {
1985 .cmd_send
= null_hci_send
,
1986 .sco_send
= null_hci_send
,
1987 .acl_send
= null_hci_send
,
1988 .bdaddr_set
= null_hci_addr_set
,
1991 struct HCIInfo
*qemu_next_hci(void)
1993 if (cur_hci
== nb_hcis
)
1996 return hci_table
[cur_hci
++];
1999 static struct HCIInfo
*hci_init(const char *str
)
2002 struct bt_scatternet_s
*vlan
= 0;
2004 if (!strcmp(str
, "null"))
2007 else if (!strncmp(str
, "host", 4) && (str
[4] == '\0' || str
[4] == ':'))
2009 return bt_host_hci(str
[4] ? str
+ 5 : "hci0");
2010 else if (!strncmp(str
, "hci", 3)) {
2013 if (!strncmp(str
+ 3, ",vlan=", 6)) {
2014 vlan
= qemu_find_bt_vlan(strtol(str
+ 9, &endp
, 0));
2019 vlan
= qemu_find_bt_vlan(0);
2021 return bt_new_hci(vlan
);
2024 fprintf(stderr
, "qemu: Unknown bluetooth HCI `%s'.\n", str
);
2029 static int bt_hci_parse(const char *str
)
2031 struct HCIInfo
*hci
;
2034 if (nb_hcis
>= MAX_NICS
) {
2035 fprintf(stderr
, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS
);
2039 hci
= hci_init(str
);
2048 bdaddr
.b
[5] = 0x56 + nb_hcis
;
2049 hci
->bdaddr_set(hci
, bdaddr
.b
);
2051 hci_table
[nb_hcis
++] = hci
;
2056 static void bt_vhci_add(int vlan_id
)
2058 struct bt_scatternet_s
*vlan
= qemu_find_bt_vlan(vlan_id
);
2061 fprintf(stderr
, "qemu: warning: adding a VHCI to "
2062 "an empty scatternet %i\n", vlan_id
);
2064 bt_vhci_init(bt_new_hci(vlan
));
2067 static struct bt_device_s
*bt_device_add(const char *opt
)
2069 struct bt_scatternet_s
*vlan
;
2071 char *endp
= strstr(opt
, ",vlan=");
2072 int len
= (endp
? endp
- opt
: strlen(opt
)) + 1;
2075 pstrcpy(devname
, MIN(sizeof(devname
), len
), opt
);
2078 vlan_id
= strtol(endp
+ 6, &endp
, 0);
2080 fprintf(stderr
, "qemu: unrecognised bluetooth vlan Id\n");
2085 vlan
= qemu_find_bt_vlan(vlan_id
);
2088 fprintf(stderr
, "qemu: warning: adding a slave device to "
2089 "an empty scatternet %i\n", vlan_id
);
2091 if (!strcmp(devname
, "keyboard"))
2092 return bt_keyboard_init(vlan
);
2094 fprintf(stderr
, "qemu: unsupported bluetooth device `%s'\n", devname
);
2098 static int bt_parse(const char *opt
)
2100 const char *endp
, *p
;
2103 if (strstart(opt
, "hci", &endp
)) {
2104 if (!*endp
|| *endp
== ',') {
2106 if (!strstart(endp
, ",vlan=", 0))
2109 return bt_hci_parse(opt
);
2111 } else if (strstart(opt
, "vhci", &endp
)) {
2112 if (!*endp
|| *endp
== ',') {
2114 if (strstart(endp
, ",vlan=", &p
)) {
2115 vlan
= strtol(p
, (char **) &endp
, 0);
2117 fprintf(stderr
, "qemu: bad scatternet '%s'\n", p
);
2121 fprintf(stderr
, "qemu: bad parameter '%s'\n", endp
+ 1);
2130 } else if (strstart(opt
, "device:", &endp
))
2131 return !bt_device_add(endp
);
2133 fprintf(stderr
, "qemu: bad bluetooth parameter '%s'\n", opt
);
2137 /***********************************************************/
2138 /* QEMU Block devices */
2140 #define HD_ALIAS "index=%d,media=disk"
2142 #define CDROM_ALIAS "index=1,media=cdrom"
2144 #define CDROM_ALIAS "index=2,media=cdrom"
2146 #define FD_ALIAS "index=%d,if=floppy"
2147 #define PFLASH_ALIAS "if=pflash"
2148 #define MTD_ALIAS "if=mtd"
2149 #define SD_ALIAS "index=0,if=sd"
2151 static int drive_opt_get_free_idx(void)
2155 for (index
= 0; index
< MAX_DRIVES
; index
++)
2156 if (!drives_opt
[index
].used
) {
2157 drives_opt
[index
].used
= 1;
2164 static int drive_get_free_idx(void)
2168 for (index
= 0; index
< MAX_DRIVES
; index
++)
2169 if (!drives_table
[index
].used
) {
2170 drives_table
[index
].used
= 1;
2177 int drive_add(const char *file
, const char *fmt
, ...)
2180 int index
= drive_opt_get_free_idx();
2182 if (nb_drives_opt
>= MAX_DRIVES
|| index
== -1) {
2183 fprintf(stderr
, "qemu: too many drives\n");
2187 drives_opt
[index
].file
= file
;
2189 vsnprintf(drives_opt
[index
].opt
,
2190 sizeof(drives_opt
[0].opt
), fmt
, ap
);
2197 void drive_remove(int index
)
2199 drives_opt
[index
].used
= 0;
2203 int drive_get_index(BlockInterfaceType type
, int bus
, int unit
)
2207 /* seek interface, bus and unit */
2209 for (index
= 0; index
< MAX_DRIVES
; index
++)
2210 if (drives_table
[index
].type
== type
&&
2211 drives_table
[index
].bus
== bus
&&
2212 drives_table
[index
].unit
== unit
&&
2213 drives_table
[index
].used
)
2219 int drive_get_max_bus(BlockInterfaceType type
)
2225 for (index
= 0; index
< nb_drives
; index
++) {
2226 if(drives_table
[index
].type
== type
&&
2227 drives_table
[index
].bus
> max_bus
)
2228 max_bus
= drives_table
[index
].bus
;
2233 const char *drive_get_serial(BlockDriverState
*bdrv
)
2237 for (index
= 0; index
< nb_drives
; index
++)
2238 if (drives_table
[index
].bdrv
== bdrv
)
2239 return drives_table
[index
].serial
;
2244 BlockInterfaceErrorAction
drive_get_onerror(BlockDriverState
*bdrv
)
2248 for (index
= 0; index
< nb_drives
; index
++)
2249 if (drives_table
[index
].bdrv
== bdrv
)
2250 return drives_table
[index
].onerror
;
2252 return BLOCK_ERR_STOP_ENOSPC
;
2255 static void bdrv_format_print(void *opaque
, const char *name
)
2257 fprintf(stderr
, " %s", name
);
2260 void drive_uninit(BlockDriverState
*bdrv
)
2264 for (i
= 0; i
< MAX_DRIVES
; i
++)
2265 if (drives_table
[i
].bdrv
== bdrv
) {
2266 drives_table
[i
].bdrv
= NULL
;
2267 drives_table
[i
].used
= 0;
2268 drive_remove(drives_table
[i
].drive_opt_idx
);
2274 int drive_init(struct drive_opt
*arg
, int snapshot
, void *opaque
)
2280 const char *mediastr
= "";
2281 BlockInterfaceType type
;
2282 enum { MEDIA_DISK
, MEDIA_CDROM
} media
;
2283 int bus_id
, unit_id
;
2284 int cyls
, heads
, secs
, translation
;
2285 BlockDriverState
*bdrv
;
2286 BlockDriver
*drv
= NULL
;
2287 QEMUMachine
*machine
= opaque
;
2291 int bdrv_flags
, onerror
;
2292 int drives_table_idx
;
2293 char *str
= arg
->opt
;
2294 static const char * const params
[] = { "bus", "unit", "if", "index",
2295 "cyls", "heads", "secs", "trans",
2296 "media", "snapshot", "file",
2297 "cache", "format", "serial", "werror",
2300 if (check_params(buf
, sizeof(buf
), params
, str
) < 0) {
2301 fprintf(stderr
, "qemu: unknown parameter '%s' in '%s'\n",
2307 cyls
= heads
= secs
= 0;
2310 translation
= BIOS_ATA_TRANSLATION_AUTO
;
2314 if (machine
->use_scsi
) {
2316 max_devs
= MAX_SCSI_DEVS
;
2317 pstrcpy(devname
, sizeof(devname
), "scsi");
2320 max_devs
= MAX_IDE_DEVS
;
2321 pstrcpy(devname
, sizeof(devname
), "ide");
2325 /* extract parameters */
2327 if (get_param_value(buf
, sizeof(buf
), "bus", str
)) {
2328 bus_id
= strtol(buf
, NULL
, 0);
2330 fprintf(stderr
, "qemu: '%s' invalid bus id\n", str
);
2335 if (get_param_value(buf
, sizeof(buf
), "unit", str
)) {
2336 unit_id
= strtol(buf
, NULL
, 0);
2338 fprintf(stderr
, "qemu: '%s' invalid unit id\n", str
);
2343 if (get_param_value(buf
, sizeof(buf
), "if", str
)) {
2344 pstrcpy(devname
, sizeof(devname
), buf
);
2345 if (!strcmp(buf
, "ide")) {
2347 max_devs
= MAX_IDE_DEVS
;
2348 } else if (!strcmp(buf
, "scsi")) {
2350 max_devs
= MAX_SCSI_DEVS
;
2351 } else if (!strcmp(buf
, "floppy")) {
2354 } else if (!strcmp(buf
, "pflash")) {
2357 } else if (!strcmp(buf
, "mtd")) {
2360 } else if (!strcmp(buf
, "sd")) {
2363 } else if (!strcmp(buf
, "virtio")) {
2367 fprintf(stderr
, "qemu: '%s' unsupported bus type '%s'\n", str
, buf
);
2372 if (get_param_value(buf
, sizeof(buf
), "index", str
)) {
2373 index
= strtol(buf
, NULL
, 0);
2375 fprintf(stderr
, "qemu: '%s' invalid index\n", str
);
2380 if (get_param_value(buf
, sizeof(buf
), "cyls", str
)) {
2381 cyls
= strtol(buf
, NULL
, 0);
2384 if (get_param_value(buf
, sizeof(buf
), "heads", str
)) {
2385 heads
= strtol(buf
, NULL
, 0);
2388 if (get_param_value(buf
, sizeof(buf
), "secs", str
)) {
2389 secs
= strtol(buf
, NULL
, 0);
2392 if (cyls
|| heads
|| secs
) {
2393 if (cyls
< 1 || cyls
> 16383) {
2394 fprintf(stderr
, "qemu: '%s' invalid physical cyls number\n", str
);
2397 if (heads
< 1 || heads
> 16) {
2398 fprintf(stderr
, "qemu: '%s' invalid physical heads number\n", str
);
2401 if (secs
< 1 || secs
> 63) {
2402 fprintf(stderr
, "qemu: '%s' invalid physical secs number\n", str
);
2407 if (get_param_value(buf
, sizeof(buf
), "trans", str
)) {
2410 "qemu: '%s' trans must be used with cyls,heads and secs\n",
2414 if (!strcmp(buf
, "none"))
2415 translation
= BIOS_ATA_TRANSLATION_NONE
;
2416 else if (!strcmp(buf
, "lba"))
2417 translation
= BIOS_ATA_TRANSLATION_LBA
;
2418 else if (!strcmp(buf
, "auto"))
2419 translation
= BIOS_ATA_TRANSLATION_AUTO
;
2421 fprintf(stderr
, "qemu: '%s' invalid translation type\n", str
);
2426 if (get_param_value(buf
, sizeof(buf
), "media", str
)) {
2427 if (!strcmp(buf
, "disk")) {
2429 } else if (!strcmp(buf
, "cdrom")) {
2430 if (cyls
|| secs
|| heads
) {
2432 "qemu: '%s' invalid physical CHS format\n", str
);
2435 media
= MEDIA_CDROM
;
2437 fprintf(stderr
, "qemu: '%s' invalid media\n", str
);
2442 if (get_param_value(buf
, sizeof(buf
), "snapshot", str
)) {
2443 if (!strcmp(buf
, "on"))
2445 else if (!strcmp(buf
, "off"))
2448 fprintf(stderr
, "qemu: '%s' invalid snapshot option\n", str
);
2453 if (get_param_value(buf
, sizeof(buf
), "cache", str
)) {
2454 if (!strcmp(buf
, "off") || !strcmp(buf
, "none"))
2456 else if (!strcmp(buf
, "writethrough"))
2458 else if (!strcmp(buf
, "writeback"))
2461 fprintf(stderr
, "qemu: invalid cache option\n");
2466 if (get_param_value(buf
, sizeof(buf
), "format", str
)) {
2467 if (strcmp(buf
, "?") == 0) {
2468 fprintf(stderr
, "qemu: Supported formats:");
2469 bdrv_iterate_format(bdrv_format_print
, NULL
);
2470 fprintf(stderr
, "\n");
2473 drv
= bdrv_find_format(buf
);
2475 fprintf(stderr
, "qemu: '%s' invalid format\n", buf
);
2480 if (arg
->file
== NULL
)
2481 get_param_value(file
, sizeof(file
), "file", str
);
2483 pstrcpy(file
, sizeof(file
), arg
->file
);
2485 if (!get_param_value(serial
, sizeof(serial
), "serial", str
))
2486 memset(serial
, 0, sizeof(serial
));
2488 onerror
= BLOCK_ERR_STOP_ENOSPC
;
2489 if (get_param_value(buf
, sizeof(serial
), "werror", str
)) {
2490 if (type
!= IF_IDE
&& type
!= IF_SCSI
&& type
!= IF_VIRTIO
) {
2491 fprintf(stderr
, "werror is no supported by this format\n");
2494 if (!strcmp(buf
, "ignore"))
2495 onerror
= BLOCK_ERR_IGNORE
;
2496 else if (!strcmp(buf
, "enospc"))
2497 onerror
= BLOCK_ERR_STOP_ENOSPC
;
2498 else if (!strcmp(buf
, "stop"))
2499 onerror
= BLOCK_ERR_STOP_ANY
;
2500 else if (!strcmp(buf
, "report"))
2501 onerror
= BLOCK_ERR_REPORT
;
2503 fprintf(stderr
, "qemu: '%s' invalid write error action\n", buf
);
2508 /* compute bus and unit according index */
2511 if (bus_id
!= 0 || unit_id
!= -1) {
2513 "qemu: '%s' index cannot be used with bus and unit\n", str
);
2521 unit_id
= index
% max_devs
;
2522 bus_id
= index
/ max_devs
;
2526 /* if user doesn't specify a unit_id,
2527 * try to find the first free
2530 if (unit_id
== -1) {
2532 while (drive_get_index(type
, bus_id
, unit_id
) != -1) {
2534 if (max_devs
&& unit_id
>= max_devs
) {
2535 unit_id
-= max_devs
;
2543 if (max_devs
&& unit_id
>= max_devs
) {
2544 fprintf(stderr
, "qemu: '%s' unit %d too big (max is %d)\n",
2545 str
, unit_id
, max_devs
- 1);
2550 * ignore multiple definitions
2553 if (drive_get_index(type
, bus_id
, unit_id
) != -1)
2558 if (type
== IF_IDE
|| type
== IF_SCSI
)
2559 mediastr
= (media
== MEDIA_CDROM
) ? "-cd" : "-hd";
2561 snprintf(buf
, sizeof(buf
), "%s%i%s%i",
2562 devname
, bus_id
, mediastr
, unit_id
);
2564 snprintf(buf
, sizeof(buf
), "%s%s%i",
2565 devname
, mediastr
, unit_id
);
2566 bdrv
= bdrv_new(buf
);
2567 drives_table_idx
= drive_get_free_idx();
2568 drives_table
[drives_table_idx
].bdrv
= bdrv
;
2569 drives_table
[drives_table_idx
].type
= type
;
2570 drives_table
[drives_table_idx
].bus
= bus_id
;
2571 drives_table
[drives_table_idx
].unit
= unit_id
;
2572 drives_table
[drives_table_idx
].onerror
= onerror
;
2573 drives_table
[drives_table_idx
].drive_opt_idx
= arg
- drives_opt
;
2574 strncpy(drives_table
[drives_table_idx
].serial
, serial
, sizeof(serial
));
2583 bdrv_set_geometry_hint(bdrv
, cyls
, heads
, secs
);
2584 bdrv_set_translation_hint(bdrv
, translation
);
2588 bdrv_set_type_hint(bdrv
, BDRV_TYPE_CDROM
);
2593 /* FIXME: This isn't really a floppy, but it's a reasonable
2596 bdrv_set_type_hint(bdrv
, BDRV_TYPE_FLOPPY
);
2607 bdrv_flags
|= BDRV_O_SNAPSHOT
;
2608 cache
= 2; /* always use write-back with snapshot */
2610 if (cache
== 0) /* no caching */
2611 bdrv_flags
|= BDRV_O_NOCACHE
;
2612 else if (cache
== 2) /* write-back */
2613 bdrv_flags
|= BDRV_O_CACHE_WB
;
2614 else if (cache
== 3) /* not specified */
2615 bdrv_flags
|= BDRV_O_CACHE_DEF
;
2616 if (bdrv_open2(bdrv
, file
, bdrv_flags
, drv
) < 0) {
2617 fprintf(stderr
, "qemu: could not open disk image %s\n",
2621 if (bdrv_key_required(bdrv
))
2623 return drives_table_idx
;
2626 /***********************************************************/
2629 static USBPort
*used_usb_ports
;
2630 static USBPort
*free_usb_ports
;
2632 /* ??? Maybe change this to register a hub to keep track of the topology. */
2633 void qemu_register_usb_port(USBPort
*port
, void *opaque
, int index
,
2634 usb_attachfn attach
)
2636 port
->opaque
= opaque
;
2637 port
->index
= index
;
2638 port
->attach
= attach
;
2639 port
->next
= free_usb_ports
;
2640 free_usb_ports
= port
;
2643 int usb_device_add_dev(USBDevice
*dev
)
2647 /* Find a USB port to add the device to. */
2648 port
= free_usb_ports
;
2652 /* Create a new hub and chain it on. */
2653 free_usb_ports
= NULL
;
2654 port
->next
= used_usb_ports
;
2655 used_usb_ports
= port
;
2657 hub
= usb_hub_init(VM_USB_HUB_SIZE
);
2658 usb_attach(port
, hub
);
2659 port
= free_usb_ports
;
2662 free_usb_ports
= port
->next
;
2663 port
->next
= used_usb_ports
;
2664 used_usb_ports
= port
;
2665 usb_attach(port
, dev
);
2669 static int usb_device_add(const char *devname
, int is_hotplug
)
2674 if (!free_usb_ports
)
2677 if (strstart(devname
, "host:", &p
)) {
2678 dev
= usb_host_device_open(p
);
2679 } else if (!strcmp(devname
, "mouse")) {
2680 dev
= usb_mouse_init();
2681 } else if (!strcmp(devname
, "tablet")) {
2682 dev
= usb_tablet_init();
2683 } else if (!strcmp(devname
, "keyboard")) {
2684 dev
= usb_keyboard_init();
2685 } else if (strstart(devname
, "disk:", &p
)) {
2686 BlockDriverState
*bs
;
2688 dev
= usb_msd_init(p
, &bs
);
2691 if (bdrv_key_required(bs
)) {
2693 if (is_hotplug
&& monitor_read_bdrv_key(bs
) < 0) {
2694 dev
->handle_destroy(dev
);
2698 } else if (!strcmp(devname
, "wacom-tablet")) {
2699 dev
= usb_wacom_init();
2700 } else if (strstart(devname
, "serial:", &p
)) {
2701 dev
= usb_serial_init(p
);
2702 #ifdef CONFIG_BRLAPI
2703 } else if (!strcmp(devname
, "braille")) {
2704 dev
= usb_baum_init();
2706 } else if (strstart(devname
, "net:", &p
)) {
2709 if (net_client_init("nic", p
) < 0)
2711 nd_table
[nic
].model
= "usb";
2712 dev
= usb_net_init(&nd_table
[nic
]);
2713 } else if (!strcmp(devname
, "bt") || strstart(devname
, "bt:", &p
)) {
2714 dev
= usb_bt_init(devname
[2] ? hci_init(p
) :
2715 bt_new_hci(qemu_find_bt_vlan(0)));
2722 return usb_device_add_dev(dev
);
2725 int usb_device_del_addr(int bus_num
, int addr
)
2731 if (!used_usb_ports
)
2737 lastp
= &used_usb_ports
;
2738 port
= used_usb_ports
;
2739 while (port
&& port
->dev
->addr
!= addr
) {
2740 lastp
= &port
->next
;
2748 *lastp
= port
->next
;
2749 usb_attach(port
, NULL
);
2750 dev
->handle_destroy(dev
);
2751 port
->next
= free_usb_ports
;
2752 free_usb_ports
= port
;
2756 static int usb_device_del(const char *devname
)
2761 if (strstart(devname
, "host:", &p
))
2762 return usb_host_device_close(p
);
2764 if (!used_usb_ports
)
2767 p
= strchr(devname
, '.');
2770 bus_num
= strtoul(devname
, NULL
, 0);
2771 addr
= strtoul(p
+ 1, NULL
, 0);
2773 return usb_device_del_addr(bus_num
, addr
);
2776 void do_usb_add(const char *devname
)
2778 usb_device_add(devname
, 1);
2781 void do_usb_del(const char *devname
)
2783 usb_device_del(devname
);
2790 const char *speed_str
;
2793 term_printf("USB support not enabled\n");
2797 for (port
= used_usb_ports
; port
; port
= port
->next
) {
2801 switch(dev
->speed
) {
2805 case USB_SPEED_FULL
:
2808 case USB_SPEED_HIGH
:
2815 term_printf(" Device %d.%d, Speed %s Mb/s, Product %s\n",
2816 0, dev
->addr
, speed_str
, dev
->devname
);
2820 /***********************************************************/
2821 /* PCMCIA/Cardbus */
2823 static struct pcmcia_socket_entry_s
{
2824 struct pcmcia_socket_s
*socket
;
2825 struct pcmcia_socket_entry_s
*next
;
2826 } *pcmcia_sockets
= 0;
2828 void pcmcia_socket_register(struct pcmcia_socket_s
*socket
)
2830 struct pcmcia_socket_entry_s
*entry
;
2832 entry
= qemu_malloc(sizeof(struct pcmcia_socket_entry_s
));
2833 entry
->socket
= socket
;
2834 entry
->next
= pcmcia_sockets
;
2835 pcmcia_sockets
= entry
;
2838 void pcmcia_socket_unregister(struct pcmcia_socket_s
*socket
)
2840 struct pcmcia_socket_entry_s
*entry
, **ptr
;
2842 ptr
= &pcmcia_sockets
;
2843 for (entry
= *ptr
; entry
; ptr
= &entry
->next
, entry
= *ptr
)
2844 if (entry
->socket
== socket
) {
2850 void pcmcia_info(void)
2852 struct pcmcia_socket_entry_s
*iter
;
2853 if (!pcmcia_sockets
)
2854 term_printf("No PCMCIA sockets\n");
2856 for (iter
= pcmcia_sockets
; iter
; iter
= iter
->next
)
2857 term_printf("%s: %s\n", iter
->socket
->slot_string
,
2858 iter
->socket
->attached
? iter
->socket
->card_string
:
2862 /***********************************************************/
2863 /* register display */
2865 void register_displaystate(DisplayState
*ds
)
2875 DisplayState
*get_displaystate(void)
2877 return display_state
;
2882 static void dumb_display_init(void)
2884 DisplayState
*ds
= qemu_mallocz(sizeof(DisplayState
));
2885 ds
->surface
= qemu_create_displaysurface(640, 480, 32, 640 * 4);
2886 register_displaystate(ds
);
2889 /***********************************************************/
2892 #define MAX_IO_HANDLERS 64
2894 typedef struct IOHandlerRecord
{
2896 IOCanRWHandler
*fd_read_poll
;
2898 IOHandler
*fd_write
;
2901 /* temporary data */
2903 struct IOHandlerRecord
*next
;
2906 static IOHandlerRecord
*first_io_handler
;
2908 /* XXX: fd_read_poll should be suppressed, but an API change is
2909 necessary in the character devices to suppress fd_can_read(). */
2910 int qemu_set_fd_handler2(int fd
,
2911 IOCanRWHandler
*fd_read_poll
,
2913 IOHandler
*fd_write
,
2916 IOHandlerRecord
**pioh
, *ioh
;
2918 if (!fd_read
&& !fd_write
) {
2919 pioh
= &first_io_handler
;
2924 if (ioh
->fd
== fd
) {
2931 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
2935 ioh
= qemu_mallocz(sizeof(IOHandlerRecord
));
2936 ioh
->next
= first_io_handler
;
2937 first_io_handler
= ioh
;
2940 ioh
->fd_read_poll
= fd_read_poll
;
2941 ioh
->fd_read
= fd_read
;
2942 ioh
->fd_write
= fd_write
;
2943 ioh
->opaque
= opaque
;
2949 int qemu_set_fd_handler(int fd
,
2951 IOHandler
*fd_write
,
2954 return qemu_set_fd_handler2(fd
, NULL
, fd_read
, fd_write
, opaque
);
2958 /***********************************************************/
2959 /* Polling handling */
2961 typedef struct PollingEntry
{
2964 struct PollingEntry
*next
;
2967 static PollingEntry
*first_polling_entry
;
2969 int qemu_add_polling_cb(PollingFunc
*func
, void *opaque
)
2971 PollingEntry
**ppe
, *pe
;
2972 pe
= qemu_mallocz(sizeof(PollingEntry
));
2974 pe
->opaque
= opaque
;
2975 for(ppe
= &first_polling_entry
; *ppe
!= NULL
; ppe
= &(*ppe
)->next
);
2980 void qemu_del_polling_cb(PollingFunc
*func
, void *opaque
)
2982 PollingEntry
**ppe
, *pe
;
2983 for(ppe
= &first_polling_entry
; *ppe
!= NULL
; ppe
= &(*ppe
)->next
) {
2985 if (pe
->func
== func
&& pe
->opaque
== opaque
) {
2993 /***********************************************************/
2994 /* Wait objects support */
2995 typedef struct WaitObjects
{
2997 HANDLE events
[MAXIMUM_WAIT_OBJECTS
+ 1];
2998 WaitObjectFunc
*func
[MAXIMUM_WAIT_OBJECTS
+ 1];
2999 void *opaque
[MAXIMUM_WAIT_OBJECTS
+ 1];
3002 static WaitObjects wait_objects
= {0};
3004 int qemu_add_wait_object(HANDLE handle
, WaitObjectFunc
*func
, void *opaque
)
3006 WaitObjects
*w
= &wait_objects
;
3008 if (w
->num
>= MAXIMUM_WAIT_OBJECTS
)
3010 w
->events
[w
->num
] = handle
;
3011 w
->func
[w
->num
] = func
;
3012 w
->opaque
[w
->num
] = opaque
;
3017 void qemu_del_wait_object(HANDLE handle
, WaitObjectFunc
*func
, void *opaque
)
3020 WaitObjects
*w
= &wait_objects
;
3023 for (i
= 0; i
< w
->num
; i
++) {
3024 if (w
->events
[i
] == handle
)
3027 w
->events
[i
] = w
->events
[i
+ 1];
3028 w
->func
[i
] = w
->func
[i
+ 1];
3029 w
->opaque
[i
] = w
->opaque
[i
+ 1];
3037 /***********************************************************/
3038 /* ram save/restore */
3040 static int ram_get_page(QEMUFile
*f
, uint8_t *buf
, int len
)
3044 v
= qemu_get_byte(f
);
3047 if (qemu_get_buffer(f
, buf
, len
) != len
)
3051 v
= qemu_get_byte(f
);
3052 memset(buf
, v
, len
);
3058 if (qemu_file_has_error(f
))
3064 static int ram_load_v1(QEMUFile
*f
, void *opaque
)
3069 if (qemu_get_be32(f
) != phys_ram_size
)
3071 for(i
= 0; i
< phys_ram_size
; i
+= TARGET_PAGE_SIZE
) {
3072 ret
= ram_get_page(f
, phys_ram_base
+ i
, TARGET_PAGE_SIZE
);
3079 #define BDRV_HASH_BLOCK_SIZE 1024
3080 #define IOBUF_SIZE 4096
3081 #define RAM_CBLOCK_MAGIC 0xfabe
3083 typedef struct RamDecompressState
{
3086 uint8_t buf
[IOBUF_SIZE
];
3087 } RamDecompressState
;
3089 static int ram_decompress_open(RamDecompressState
*s
, QEMUFile
*f
)
3092 memset(s
, 0, sizeof(*s
));
3094 ret
= inflateInit(&s
->zstream
);
3100 static int ram_decompress_buf(RamDecompressState
*s
, uint8_t *buf
, int len
)
3104 s
->zstream
.avail_out
= len
;
3105 s
->zstream
.next_out
= buf
;
3106 while (s
->zstream
.avail_out
> 0) {
3107 if (s
->zstream
.avail_in
== 0) {
3108 if (qemu_get_be16(s
->f
) != RAM_CBLOCK_MAGIC
)
3110 clen
= qemu_get_be16(s
->f
);
3111 if (clen
> IOBUF_SIZE
)
3113 qemu_get_buffer(s
->f
, s
->buf
, clen
);
3114 s
->zstream
.avail_in
= clen
;
3115 s
->zstream
.next_in
= s
->buf
;
3117 ret
= inflate(&s
->zstream
, Z_PARTIAL_FLUSH
);
3118 if (ret
!= Z_OK
&& ret
!= Z_STREAM_END
) {
3125 static void ram_decompress_close(RamDecompressState
*s
)
3127 inflateEnd(&s
->zstream
);
3130 #define RAM_SAVE_FLAG_FULL 0x01
3131 #define RAM_SAVE_FLAG_COMPRESS 0x02
3132 #define RAM_SAVE_FLAG_MEM_SIZE 0x04
3133 #define RAM_SAVE_FLAG_PAGE 0x08
3134 #define RAM_SAVE_FLAG_EOS 0x10
3136 static int is_dup_page(uint8_t *page
, uint8_t ch
)
3138 uint32_t val
= ch
<< 24 | ch
<< 16 | ch
<< 8 | ch
;
3139 uint32_t *array
= (uint32_t *)page
;
3142 for (i
= 0; i
< (TARGET_PAGE_SIZE
/ 4); i
++) {
3143 if (array
[i
] != val
)
3150 static int ram_save_block(QEMUFile
*f
)
3152 static ram_addr_t current_addr
= 0;
3153 ram_addr_t saved_addr
= current_addr
;
3154 ram_addr_t addr
= 0;
3157 while (addr
< phys_ram_size
) {
3158 if (cpu_physical_memory_get_dirty(current_addr
, MIGRATION_DIRTY_FLAG
)) {
3161 cpu_physical_memory_reset_dirty(current_addr
,
3162 current_addr
+ TARGET_PAGE_SIZE
,
3163 MIGRATION_DIRTY_FLAG
);
3165 ch
= *(phys_ram_base
+ current_addr
);
3167 if (is_dup_page(phys_ram_base
+ current_addr
, ch
)) {
3168 qemu_put_be64(f
, current_addr
| RAM_SAVE_FLAG_COMPRESS
);
3169 qemu_put_byte(f
, ch
);
3171 qemu_put_be64(f
, current_addr
| RAM_SAVE_FLAG_PAGE
);
3172 qemu_put_buffer(f
, phys_ram_base
+ current_addr
, TARGET_PAGE_SIZE
);
3178 addr
+= TARGET_PAGE_SIZE
;
3179 current_addr
= (saved_addr
+ addr
) % phys_ram_size
;
3185 static ram_addr_t ram_save_threshold
= 10;
3187 static ram_addr_t
ram_save_remaining(void)
3190 ram_addr_t count
= 0;
3192 for (addr
= 0; addr
< phys_ram_size
; addr
+= TARGET_PAGE_SIZE
) {
3193 if (cpu_physical_memory_get_dirty(addr
, MIGRATION_DIRTY_FLAG
))
3200 static int ram_save_live(QEMUFile
*f
, int stage
, void *opaque
)
3205 /* Make sure all dirty bits are set */
3206 for (addr
= 0; addr
< phys_ram_size
; addr
+= TARGET_PAGE_SIZE
) {
3207 if (!cpu_physical_memory_get_dirty(addr
, MIGRATION_DIRTY_FLAG
))
3208 cpu_physical_memory_set_dirty(addr
);
3211 /* Enable dirty memory tracking */
3212 cpu_physical_memory_set_dirty_tracking(1);
3214 qemu_put_be64(f
, phys_ram_size
| RAM_SAVE_FLAG_MEM_SIZE
);
3217 while (!qemu_file_rate_limit(f
)) {
3220 ret
= ram_save_block(f
);
3221 if (ret
== 0) /* no more blocks */
3225 /* try transferring iterative blocks of memory */
3229 /* flush all remaining blocks regardless of rate limiting */
3230 while (ram_save_block(f
) != 0);
3231 cpu_physical_memory_set_dirty_tracking(0);
3234 qemu_put_be64(f
, RAM_SAVE_FLAG_EOS
);
3236 return (stage
== 2) && (ram_save_remaining() < ram_save_threshold
);
3239 static int ram_load_dead(QEMUFile
*f
, void *opaque
)
3241 RamDecompressState s1
, *s
= &s1
;
3245 if (ram_decompress_open(s
, f
) < 0)
3247 for(i
= 0; i
< phys_ram_size
; i
+= BDRV_HASH_BLOCK_SIZE
) {
3248 if (ram_decompress_buf(s
, buf
, 1) < 0) {
3249 fprintf(stderr
, "Error while reading ram block header\n");
3253 if (ram_decompress_buf(s
, phys_ram_base
+ i
, BDRV_HASH_BLOCK_SIZE
) < 0) {
3254 fprintf(stderr
, "Error while reading ram block address=0x%08" PRIx64
, (uint64_t)i
);
3259 printf("Error block header\n");
3263 ram_decompress_close(s
);
3268 static int ram_load(QEMUFile
*f
, void *opaque
, int version_id
)
3273 if (version_id
== 1)
3274 return ram_load_v1(f
, opaque
);
3276 if (version_id
== 2) {
3277 if (qemu_get_be32(f
) != phys_ram_size
)
3279 return ram_load_dead(f
, opaque
);
3282 if (version_id
!= 3)
3286 addr
= qemu_get_be64(f
);
3288 flags
= addr
& ~TARGET_PAGE_MASK
;
3289 addr
&= TARGET_PAGE_MASK
;
3291 if (flags
& RAM_SAVE_FLAG_MEM_SIZE
) {
3292 if (addr
!= phys_ram_size
)
3296 if (flags
& RAM_SAVE_FLAG_FULL
) {
3297 if (ram_load_dead(f
, opaque
) < 0)
3301 if (flags
& RAM_SAVE_FLAG_COMPRESS
) {
3302 uint8_t ch
= qemu_get_byte(f
);
3303 memset(phys_ram_base
+ addr
, ch
, TARGET_PAGE_SIZE
);
3304 } else if (flags
& RAM_SAVE_FLAG_PAGE
)
3305 qemu_get_buffer(f
, phys_ram_base
+ addr
, TARGET_PAGE_SIZE
);
3306 } while (!(flags
& RAM_SAVE_FLAG_EOS
));
3311 void qemu_service_io(void)
3313 CPUState
*env
= cpu_single_env
;
3315 cpu_interrupt(env
, CPU_INTERRUPT_EXIT
);
3317 if (env
->kqemu_enabled
) {
3318 kqemu_cpu_interrupt(env
);
3324 /***********************************************************/
3325 /* bottom halves (can be seen as timers which expire ASAP) */
3336 static QEMUBH
*first_bh
= NULL
;
3338 QEMUBH
*qemu_bh_new(QEMUBHFunc
*cb
, void *opaque
)
3341 bh
= qemu_mallocz(sizeof(QEMUBH
));
3343 bh
->opaque
= opaque
;
3344 bh
->next
= first_bh
;
3349 int qemu_bh_poll(void)
3355 for (bh
= first_bh
; bh
; bh
= bh
->next
) {
3356 if (!bh
->deleted
&& bh
->scheduled
) {
3365 /* remove deleted bhs */
3379 void qemu_bh_schedule_idle(QEMUBH
*bh
)
3387 void qemu_bh_schedule(QEMUBH
*bh
)
3389 CPUState
*env
= cpu_single_env
;
3394 /* stop the currently executing CPU to execute the BH ASAP */
3396 cpu_interrupt(env
, CPU_INTERRUPT_EXIT
);
3400 void qemu_bh_cancel(QEMUBH
*bh
)
3405 void qemu_bh_delete(QEMUBH
*bh
)
3411 static void qemu_bh_update_timeout(int *timeout
)
3415 for (bh
= first_bh
; bh
; bh
= bh
->next
) {
3416 if (!bh
->deleted
&& bh
->scheduled
) {
3418 /* idle bottom halves will be polled at least
3420 *timeout
= MIN(10, *timeout
);
3422 /* non-idle bottom halves will be executed
3431 /***********************************************************/
3432 /* machine registration */
3434 static QEMUMachine
*first_machine
= NULL
;
3435 QEMUMachine
*current_machine
= NULL
;
3437 int qemu_register_machine(QEMUMachine
*m
)
3440 pm
= &first_machine
;
3448 static QEMUMachine
*find_machine(const char *name
)
3452 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
3453 if (!strcmp(m
->name
, name
))
3459 /***********************************************************/
3460 /* main execution loop */
3462 static void gui_update(void *opaque
)
3464 uint64_t interval
= GUI_REFRESH_INTERVAL
;
3465 DisplayState
*ds
= opaque
;
3466 DisplayChangeListener
*dcl
= ds
->listeners
;
3470 while (dcl
!= NULL
) {
3471 if (dcl
->gui_timer_interval
&&
3472 dcl
->gui_timer_interval
< interval
)
3473 interval
= dcl
->gui_timer_interval
;
3476 qemu_mod_timer(ds
->gui_timer
, interval
+ qemu_get_clock(rt_clock
));
3479 static void nographic_update(void *opaque
)
3481 uint64_t interval
= GUI_REFRESH_INTERVAL
;
3483 qemu_mod_timer(nographic_timer
, interval
+ qemu_get_clock(rt_clock
));
3486 struct vm_change_state_entry
{
3487 VMChangeStateHandler
*cb
;
3489 LIST_ENTRY (vm_change_state_entry
) entries
;
3492 static LIST_HEAD(vm_change_state_head
, vm_change_state_entry
) vm_change_state_head
;
3494 VMChangeStateEntry
*qemu_add_vm_change_state_handler(VMChangeStateHandler
*cb
,
3497 VMChangeStateEntry
*e
;
3499 e
= qemu_mallocz(sizeof (*e
));
3503 LIST_INSERT_HEAD(&vm_change_state_head
, e
, entries
);
3507 void qemu_del_vm_change_state_handler(VMChangeStateEntry
*e
)
3509 LIST_REMOVE (e
, entries
);
3513 static void vm_state_notify(int running
, int reason
)
3515 VMChangeStateEntry
*e
;
3517 for (e
= vm_change_state_head
.lh_first
; e
; e
= e
->entries
.le_next
) {
3518 e
->cb(e
->opaque
, running
, reason
);
3527 vm_state_notify(1, 0);
3528 qemu_rearm_alarm_timer(alarm_timer
);
3532 void vm_stop(int reason
)
3535 cpu_disable_ticks();
3537 vm_state_notify(0, reason
);
3541 /* reset/shutdown handler */
3543 typedef struct QEMUResetEntry
{
3544 QEMUResetHandler
*func
;
3546 struct QEMUResetEntry
*next
;
3549 static QEMUResetEntry
*first_reset_entry
;
3550 static int reset_requested
;
3551 static int shutdown_requested
;
3552 static int powerdown_requested
;
3554 int qemu_shutdown_requested(void)
3556 int r
= shutdown_requested
;
3557 shutdown_requested
= 0;
3561 int qemu_reset_requested(void)
3563 int r
= reset_requested
;
3564 reset_requested
= 0;
3568 int qemu_powerdown_requested(void)
3570 int r
= powerdown_requested
;
3571 powerdown_requested
= 0;
3575 void qemu_register_reset(QEMUResetHandler
*func
, void *opaque
)
3577 QEMUResetEntry
**pre
, *re
;
3579 pre
= &first_reset_entry
;
3580 while (*pre
!= NULL
)
3581 pre
= &(*pre
)->next
;
3582 re
= qemu_mallocz(sizeof(QEMUResetEntry
));
3584 re
->opaque
= opaque
;
3589 void qemu_system_reset(void)
3593 /* reset all devices */
3594 for(re
= first_reset_entry
; re
!= NULL
; re
= re
->next
) {
3595 re
->func(re
->opaque
);
3599 void qemu_system_reset_request(void)
3602 shutdown_requested
= 1;
3604 reset_requested
= 1;
3607 cpu_interrupt(cpu_single_env
, CPU_INTERRUPT_EXIT
);
3610 void qemu_system_shutdown_request(void)
3612 shutdown_requested
= 1;
3614 cpu_interrupt(cpu_single_env
, CPU_INTERRUPT_EXIT
);
3617 void qemu_system_powerdown_request(void)
3619 powerdown_requested
= 1;
3621 cpu_interrupt(cpu_single_env
, CPU_INTERRUPT_EXIT
);
3625 static void host_main_loop_wait(int *timeout
)
3631 /* XXX: need to suppress polling by better using win32 events */
3633 for(pe
= first_polling_entry
; pe
!= NULL
; pe
= pe
->next
) {
3634 ret
|= pe
->func(pe
->opaque
);
3638 WaitObjects
*w
= &wait_objects
;
3640 ret
= WaitForMultipleObjects(w
->num
, w
->events
, FALSE
, *timeout
);
3641 if (WAIT_OBJECT_0
+ 0 <= ret
&& ret
<= WAIT_OBJECT_0
+ w
->num
- 1) {
3642 if (w
->func
[ret
- WAIT_OBJECT_0
])
3643 w
->func
[ret
- WAIT_OBJECT_0
](w
->opaque
[ret
- WAIT_OBJECT_0
]);
3645 /* Check for additional signaled events */
3646 for(i
= (ret
- WAIT_OBJECT_0
+ 1); i
< w
->num
; i
++) {
3648 /* Check if event is signaled */
3649 ret2
= WaitForSingleObject(w
->events
[i
], 0);
3650 if(ret2
== WAIT_OBJECT_0
) {
3652 w
->func
[i
](w
->opaque
[i
]);
3653 } else if (ret2
== WAIT_TIMEOUT
) {
3655 err
= GetLastError();
3656 fprintf(stderr
, "WaitForSingleObject error %d %d\n", i
, err
);
3659 } else if (ret
== WAIT_TIMEOUT
) {
3661 err
= GetLastError();
3662 fprintf(stderr
, "WaitForMultipleObjects error %d %d\n", ret
, err
);
3669 static void host_main_loop_wait(int *timeout
)
3674 void main_loop_wait(int timeout
)
3676 IOHandlerRecord
*ioh
;
3677 fd_set rfds
, wfds
, xfds
;
3681 qemu_bh_update_timeout(&timeout
);
3683 host_main_loop_wait(&timeout
);
3685 /* poll any events */
3686 /* XXX: separate device handlers from system ones */
3691 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
3695 (!ioh
->fd_read_poll
||
3696 ioh
->fd_read_poll(ioh
->opaque
) != 0)) {
3697 FD_SET(ioh
->fd
, &rfds
);
3701 if (ioh
->fd_write
) {
3702 FD_SET(ioh
->fd
, &wfds
);
3708 tv
.tv_sec
= timeout
/ 1000;
3709 tv
.tv_usec
= (timeout
% 1000) * 1000;
3711 #if defined(CONFIG_SLIRP)
3712 if (slirp_is_inited()) {
3713 slirp_select_fill(&nfds
, &rfds
, &wfds
, &xfds
);
3716 ret
= select(nfds
+ 1, &rfds
, &wfds
, &xfds
, &tv
);
3718 IOHandlerRecord
**pioh
;
3720 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
3721 if (!ioh
->deleted
&& ioh
->fd_read
&& FD_ISSET(ioh
->fd
, &rfds
)) {
3722 ioh
->fd_read(ioh
->opaque
);
3724 if (!ioh
->deleted
&& ioh
->fd_write
&& FD_ISSET(ioh
->fd
, &wfds
)) {
3725 ioh
->fd_write(ioh
->opaque
);
3729 /* remove deleted IO handlers */
3730 pioh
= &first_io_handler
;
3740 #if defined(CONFIG_SLIRP)
3741 if (slirp_is_inited()) {
3747 slirp_select_poll(&rfds
, &wfds
, &xfds
);
3751 /* vm time timers */
3752 if (vm_running
&& likely(!(cur_cpu
->singlestep_enabled
& SSTEP_NOTIMER
)))
3753 qemu_run_timers(&active_timers
[QEMU_TIMER_VIRTUAL
],
3754 qemu_get_clock(vm_clock
));
3756 /* real time timers */
3757 qemu_run_timers(&active_timers
[QEMU_TIMER_REALTIME
],
3758 qemu_get_clock(rt_clock
));
3760 /* Check bottom-halves last in case any of the earlier events triggered
3766 static int main_loop(void)
3769 #ifdef CONFIG_PROFILER
3774 cur_cpu
= first_cpu
;
3775 next_cpu
= cur_cpu
->next_cpu
?: first_cpu
;
3782 #ifdef CONFIG_PROFILER
3783 ti
= profile_getclock();
3788 qemu_icount
-= (env
->icount_decr
.u16
.low
+ env
->icount_extra
);
3789 env
->icount_decr
.u16
.low
= 0;
3790 env
->icount_extra
= 0;
3791 count
= qemu_next_deadline();
3792 count
= (count
+ (1 << icount_time_shift
) - 1)
3793 >> icount_time_shift
;
3794 qemu_icount
+= count
;
3795 decr
= (count
> 0xffff) ? 0xffff : count
;
3797 env
->icount_decr
.u16
.low
= decr
;
3798 env
->icount_extra
= count
;
3800 ret
= cpu_exec(env
);
3801 #ifdef CONFIG_PROFILER
3802 qemu_time
+= profile_getclock() - ti
;
3805 /* Fold pending instructions back into the
3806 instruction counter, and clear the interrupt flag. */
3807 qemu_icount
-= (env
->icount_decr
.u16
.low
3808 + env
->icount_extra
);
3809 env
->icount_decr
.u32
= 0;
3810 env
->icount_extra
= 0;
3812 next_cpu
= env
->next_cpu
?: first_cpu
;
3813 if (event_pending
&& likely(ret
!= EXCP_DEBUG
)) {
3814 ret
= EXCP_INTERRUPT
;
3818 if (ret
== EXCP_HLT
) {
3819 /* Give the next CPU a chance to run. */
3823 if (ret
!= EXCP_HALTED
)
3825 /* all CPUs are halted ? */
3831 if (shutdown_requested
) {
3832 ret
= EXCP_INTERRUPT
;
3840 if (reset_requested
) {
3841 reset_requested
= 0;
3842 qemu_system_reset();
3843 ret
= EXCP_INTERRUPT
;
3845 if (powerdown_requested
) {
3846 powerdown_requested
= 0;
3847 qemu_system_powerdown();
3848 ret
= EXCP_INTERRUPT
;
3850 if (unlikely(ret
== EXCP_DEBUG
)) {
3851 gdb_set_stop_cpu(cur_cpu
);
3852 vm_stop(EXCP_DEBUG
);
3854 /* If all cpus are halted then wait until the next IRQ */
3855 /* XXX: use timeout computed from timers */
3856 if (ret
== EXCP_HALTED
) {
3860 /* Advance virtual time to the next event. */
3861 if (use_icount
== 1) {
3862 /* When not using an adaptive execution frequency
3863 we tend to get badly out of sync with real time,
3864 so just delay for a reasonable amount of time. */
3867 delta
= cpu_get_icount() - cpu_get_clock();
3870 /* If virtual time is ahead of real time then just
3872 timeout
= (delta
/ 1000000) + 1;
3874 /* Wait for either IO to occur or the next
3876 add
= qemu_next_deadline();
3877 /* We advance the timer before checking for IO.
3878 Limit the amount we advance so that early IO
3879 activity won't get the guest too far ahead. */
3883 add
= (add
+ (1 << icount_time_shift
) - 1)
3884 >> icount_time_shift
;
3886 timeout
= delta
/ 1000000;
3897 if (shutdown_requested
) {
3898 ret
= EXCP_INTERRUPT
;
3903 #ifdef CONFIG_PROFILER
3904 ti
= profile_getclock();
3906 main_loop_wait(timeout
);
3907 #ifdef CONFIG_PROFILER
3908 dev_time
+= profile_getclock() - ti
;
3911 cpu_disable_ticks();
3915 static void help(int exitcode
)
3917 /* Please keep in synch with QEMU_OPTION_ enums, qemu_options[]
3918 and qemu-doc.texi */
3919 printf("QEMU PC emulator version " QEMU_VERSION
", Copyright (c) 2003-2008 Fabrice Bellard\n"
3920 "usage: %s [options] [disk_image]\n"
3922 "'disk_image' is a raw hard image image for IDE hard disk 0\n"
3924 "Standard options:\n"
3925 "-h or -help display this help and exit\n"
3926 "-M machine select emulated machine (-M ? for list)\n"
3927 "-cpu cpu select CPU (-cpu ? for list)\n"
3928 "-smp n set the number of CPUs to 'n' [default=1]\n"
3929 "-fda/-fdb file use 'file' as floppy disk 0/1 image\n"
3930 "-hda/-hdb file use 'file' as IDE hard disk 0/1 image\n"
3931 "-hdc/-hdd file use 'file' as IDE hard disk 2/3 image\n"
3932 "-cdrom file use 'file' as IDE cdrom image (cdrom is ide1 master)\n"
3933 "-drive [file=file][,if=type][,bus=n][,unit=m][,media=d][,index=i]\n"
3934 " [,cyls=c,heads=h,secs=s[,trans=t]][,snapshot=on|off]\n"
3935 " [,cache=writethrough|writeback|none][,format=f][,serial=s]\n"
3936 " use 'file' as a drive image\n"
3937 "-mtdblock file use 'file' as on-board Flash memory image\n"
3938 "-sd file use 'file' as SecureDigital card image\n"
3939 "-pflash file use 'file' as a parallel flash image\n"
3940 "-boot [a|c|d|n] boot on floppy (a), hard disk (c), CD-ROM (d), or network (n)\n"
3941 "-snapshot write to temporary files instead of disk image files\n"
3942 "-m megs set virtual RAM size to megs MB [default=%d]\n"
3944 "-k language use keyboard layout (for example \"fr\" for French)\n"
3947 "-audio-help print list of audio drivers and their options\n"
3948 "-soundhw c1,... enable audio support\n"
3949 " and only specified sound cards (comma separated list)\n"
3950 " use -soundhw ? to get the list of supported cards\n"
3951 " use -soundhw all to enable all of them\n"
3953 "-usb enable the USB driver (will be the default soon)\n"
3954 "-usbdevice name add the host or guest USB device 'name'\n"
3955 "-name string set the name of the guest\n"
3956 "-uuid %%08x-%%04x-%%04x-%%04x-%%012x\n"
3957 " specify machine UUID\n"
3959 "Display options:\n"
3960 "-nographic disable graphical output and redirect serial I/Os to console\n"
3961 #ifdef CONFIG_CURSES
3962 "-curses use a curses/ncurses interface instead of SDL\n"
3965 "-no-frame open SDL window without a frame and window decorations\n"
3966 "-alt-grab use Ctrl-Alt-Shift to grab mouse (instead of Ctrl-Alt)\n"
3967 "-no-quit disable SDL window close capability\n"
3970 "-portrait rotate graphical output 90 deg left (only PXA LCD)\n"
3971 "-vga [std|cirrus|vmware|none]\n"
3972 " select video card type\n"
3973 "-full-screen start in full screen\n"
3974 #if defined(TARGET_PPC) || defined(TARGET_SPARC)
3975 "-g WxH[xDEPTH] Set the initial graphical resolution and depth\n"
3977 "-vnc display start a VNC server on display\n"
3979 "Network options:\n"
3980 "-net nic[,vlan=n][,macaddr=addr][,model=type][,name=str]\n"
3981 " create a new Network Interface Card and connect it to VLAN 'n'\n"
3983 "-net user[,vlan=n][,name=str][,hostname=host]\n"
3984 " connect the user mode network stack to VLAN 'n' and send\n"
3985 " hostname 'host' to DHCP clients\n"
3988 "-net tap[,vlan=n][,name=str],ifname=name\n"
3989 " connect the host TAP network interface to VLAN 'n'\n"
3991 "-net tap[,vlan=n][,name=str][,fd=h][,ifname=name][,script=file][,downscript=dfile]\n"
3992 " connect the host TAP network interface to VLAN 'n' and use the\n"
3993 " network scripts 'file' (default=%s)\n"
3994 " and 'dfile' (default=%s);\n"
3995 " use '[down]script=no' to disable script execution;\n"
3996 " use 'fd=h' to connect to an already opened TAP interface\n"
3998 "-net socket[,vlan=n][,name=str][,fd=h][,listen=[host]:port][,connect=host:port]\n"
3999 " connect the vlan 'n' to another VLAN using a socket connection\n"
4000 "-net socket[,vlan=n][,name=str][,fd=h][,mcast=maddr:port]\n"
4001 " connect the vlan 'n' to multicast maddr and port\n"
4003 "-net vde[,vlan=n][,name=str][,sock=socketpath][,port=n][,group=groupname][,mode=octalmode]\n"
4004 " connect the vlan 'n' to port 'n' of a vde switch running\n"
4005 " on host and listening for incoming connections on 'socketpath'.\n"
4006 " Use group 'groupname' and mode 'octalmode' to change default\n"
4007 " ownership and permissions for communication port.\n"
4009 "-net none use it alone to have zero network devices; if no -net option\n"
4010 " is provided, the default is '-net nic -net user'\n"
4012 "-tftp dir allow tftp access to files in dir [-net user]\n"
4013 "-bootp file advertise file in BOOTP replies\n"
4015 "-smb dir allow SMB access to files in 'dir' [-net user]\n"
4017 "-redir [tcp|udp]:host-port:[guest-host]:guest-port\n"
4018 " redirect TCP or UDP connections from host to guest [-net user]\n"
4021 "-bt hci,null dumb bluetooth HCI - doesn't respond to commands\n"
4022 "-bt hci,host[:id]\n"
4023 " use host's HCI with the given name\n"
4024 "-bt hci[,vlan=n]\n"
4025 " emulate a standard HCI in virtual scatternet 'n'\n"
4026 "-bt vhci[,vlan=n]\n"
4027 " add host computer to virtual scatternet 'n' using VHCI\n"
4028 "-bt device:dev[,vlan=n]\n"
4029 " emulate a bluetooth device 'dev' in scatternet 'n'\n"
4033 "i386 target only:\n"
4034 "-win2k-hack use it when installing Windows 2000 to avoid a disk full bug\n"
4035 "-rtc-td-hack use it to fix time drift in Windows ACPI HAL\n"
4036 "-no-fd-bootchk disable boot signature checking for floppy disks\n"
4037 "-no-acpi disable ACPI\n"
4038 "-no-hpet disable HPET\n"
4039 "-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"
4040 " ACPI table description\n"
4042 "Linux boot specific:\n"
4043 "-kernel bzImage use 'bzImage' as kernel image\n"
4044 "-append cmdline use 'cmdline' as kernel command line\n"
4045 "-initrd file use 'file' as initial ram disk\n"
4047 "Debug/Expert options:\n"
4048 "-serial dev redirect the serial port to char device 'dev'\n"
4049 "-parallel dev redirect the parallel port to char device 'dev'\n"
4050 "-monitor dev redirect the monitor to char device 'dev'\n"
4051 "-pidfile file write PID to 'file'\n"
4052 "-S freeze CPU at startup (use 'c' to start execution)\n"
4053 "-s wait gdb connection to port\n"
4054 "-p port set gdb connection port [default=%s]\n"
4055 "-d item1,... output log to %s (use -d ? for a list of log items)\n"
4056 "-hdachs c,h,s[,t]\n"
4057 " force hard disk 0 physical geometry and the optional BIOS\n"
4058 " translation (t=none or lba) (usually qemu can guess them)\n"
4059 "-L path set the directory for the BIOS, VGA BIOS and keymaps\n"
4060 "-bios file set the filename for the BIOS\n"
4062 "-kernel-kqemu enable KQEMU full virtualization (default is user mode only)\n"
4063 "-no-kqemu disable KQEMU kernel module usage\n"
4066 "-enable-kvm enable KVM full virtualization support\n"
4068 "-no-reboot exit instead of rebooting\n"
4069 "-no-shutdown stop before shutdown\n"
4070 "-loadvm [tag|id]\n"
4071 " start right away with a saved state (loadvm in monitor)\n"
4073 "-daemonize daemonize QEMU after initializing\n"
4075 "-option-rom rom load a file, rom, into the option ROM space\n"
4076 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
4077 "-prom-env variable=value\n"
4078 " set OpenBIOS nvram variables\n"
4080 "-clock force the use of the given methods for timer alarm.\n"
4081 " To see what timers are available use -clock ?\n"
4082 "-localtime set the real time clock to local time [default=utc]\n"
4083 "-startdate select initial date of the clock\n"
4084 "-icount [N|auto]\n"
4085 " enable virtual instruction counter with 2^N clock ticks per instruction\n"
4086 "-echr chr set terminal escape character instead of ctrl-a\n"
4087 "-virtioconsole c\n"
4088 " set virtio console\n"
4089 "-show-cursor show cursor\n"
4090 #if defined(TARGET_ARM) || defined(TARGET_M68K)
4091 "-semihosting semihosting mode\n"
4093 #if defined(TARGET_ARM)
4094 "-old-param old param mode\n"
4096 "-tb-size n set TB size\n"
4097 "-incoming p prepare for incoming migration, listen on port p\n"
4099 "-chroot dir Chroot to dir just before starting the VM.\n"
4100 "-runas user Change to user id user just before starting the VM.\n"
4103 "During emulation, the following keys are useful:\n"
4104 "ctrl-alt-f toggle full screen\n"
4105 "ctrl-alt-n switch to virtual console 'n'\n"
4106 "ctrl-alt toggle mouse and keyboard grab\n"
4108 "When using -nographic, press 'ctrl-a h' to get some help.\n"
4113 DEFAULT_NETWORK_SCRIPT
,
4114 DEFAULT_NETWORK_DOWN_SCRIPT
,
4116 DEFAULT_GDBSTUB_PORT
,
4121 #define HAS_ARG 0x0001
4124 /* Please keep in synch with help, qemu_options[] and
4126 /* Standard options: */
4139 QEMU_OPTION_mtdblock
,
4143 QEMU_OPTION_snapshot
,
4146 QEMU_OPTION_audio_help
,
4147 QEMU_OPTION_soundhw
,
4149 QEMU_OPTION_usbdevice
,
4153 /* Display options: */
4154 QEMU_OPTION_nographic
,
4156 QEMU_OPTION_no_frame
,
4157 QEMU_OPTION_alt_grab
,
4158 QEMU_OPTION_no_quit
,
4160 QEMU_OPTION_portrait
,
4162 QEMU_OPTION_full_screen
,
4166 /* Network options: */
4174 /* i386 target only: */
4175 QEMU_OPTION_win2k_hack
,
4176 QEMU_OPTION_rtc_td_hack
,
4177 QEMU_OPTION_no_fd_bootchk
,
4178 QEMU_OPTION_no_acpi
,
4179 QEMU_OPTION_no_hpet
,
4180 QEMU_OPTION_acpitable
,
4182 /* Linux boot specific: */
4187 /* Debug/Expert options: */
4189 QEMU_OPTION_parallel
,
4190 QEMU_OPTION_monitor
,
4191 QEMU_OPTION_pidfile
,
4199 QEMU_OPTION_kernel_kqemu
,
4200 QEMU_OPTION_no_kqemu
,
4201 QEMU_OPTION_enable_kvm
,
4202 QEMU_OPTION_no_reboot
,
4203 QEMU_OPTION_no_shutdown
,
4205 QEMU_OPTION_daemonize
,
4206 QEMU_OPTION_option_rom
,
4207 QEMU_OPTION_prom_env
,
4209 QEMU_OPTION_localtime
,
4210 QEMU_OPTION_startdate
,
4213 QEMU_OPTION_virtiocon
,
4214 QEMU_OPTION_show_cursor
,
4215 QEMU_OPTION_semihosting
,
4216 QEMU_OPTION_old_param
,
4217 QEMU_OPTION_tb_size
,
4218 QEMU_OPTION_incoming
,
4223 typedef struct QEMUOption
{
4229 static const QEMUOption qemu_options
[] = {
4230 /* Please keep in synch with help, QEMU_OPTION_ enums, and
4232 /* Standard options: */
4233 { "h", 0, QEMU_OPTION_h
},
4234 { "help", 0, QEMU_OPTION_h
},
4235 { "M", HAS_ARG
, QEMU_OPTION_M
},
4236 { "cpu", HAS_ARG
, QEMU_OPTION_cpu
},
4237 { "smp", HAS_ARG
, QEMU_OPTION_smp
},
4238 { "fda", HAS_ARG
, QEMU_OPTION_fda
},
4239 { "fdb", HAS_ARG
, QEMU_OPTION_fdb
},
4240 { "hda", HAS_ARG
, QEMU_OPTION_hda
},
4241 { "hdb", HAS_ARG
, QEMU_OPTION_hdb
},
4242 { "hdc", HAS_ARG
, QEMU_OPTION_hdc
},
4243 { "hdd", HAS_ARG
, QEMU_OPTION_hdd
},
4244 { "cdrom", HAS_ARG
, QEMU_OPTION_cdrom
},
4245 { "drive", HAS_ARG
, QEMU_OPTION_drive
},
4246 { "mtdblock", HAS_ARG
, QEMU_OPTION_mtdblock
},
4247 { "sd", HAS_ARG
, QEMU_OPTION_sd
},
4248 { "pflash", HAS_ARG
, QEMU_OPTION_pflash
},
4249 { "boot", HAS_ARG
, QEMU_OPTION_boot
},
4250 { "snapshot", 0, QEMU_OPTION_snapshot
},
4251 { "m", HAS_ARG
, QEMU_OPTION_m
},
4252 { "k", HAS_ARG
, QEMU_OPTION_k
},
4254 { "audio-help", 0, QEMU_OPTION_audio_help
},
4255 { "soundhw", HAS_ARG
, QEMU_OPTION_soundhw
},
4257 { "usb", 0, QEMU_OPTION_usb
},
4258 { "usbdevice", HAS_ARG
, QEMU_OPTION_usbdevice
},
4259 { "name", HAS_ARG
, QEMU_OPTION_name
},
4260 { "uuid", HAS_ARG
, QEMU_OPTION_uuid
},
4262 /* Display options: */
4263 { "nographic", 0, QEMU_OPTION_nographic
},
4264 #ifdef CONFIG_CURSES
4265 { "curses", 0, QEMU_OPTION_curses
},
4268 { "no-frame", 0, QEMU_OPTION_no_frame
},
4269 { "alt-grab", 0, QEMU_OPTION_alt_grab
},
4270 { "no-quit", 0, QEMU_OPTION_no_quit
},
4271 { "sdl", 0, QEMU_OPTION_sdl
},
4273 { "portrait", 0, QEMU_OPTION_portrait
},
4274 { "vga", HAS_ARG
, QEMU_OPTION_vga
},
4275 { "full-screen", 0, QEMU_OPTION_full_screen
},
4276 #if defined(TARGET_PPC) || defined(TARGET_SPARC)
4277 { "g", 1, QEMU_OPTION_g
},
4279 { "vnc", HAS_ARG
, QEMU_OPTION_vnc
},
4281 /* Network options: */
4282 { "net", HAS_ARG
, QEMU_OPTION_net
},
4284 { "tftp", HAS_ARG
, QEMU_OPTION_tftp
},
4285 { "bootp", HAS_ARG
, QEMU_OPTION_bootp
},
4287 { "smb", HAS_ARG
, QEMU_OPTION_smb
},
4289 { "redir", HAS_ARG
, QEMU_OPTION_redir
},
4291 { "bt", HAS_ARG
, QEMU_OPTION_bt
},
4293 /* i386 target only: */
4294 { "win2k-hack", 0, QEMU_OPTION_win2k_hack
},
4295 { "rtc-td-hack", 0, QEMU_OPTION_rtc_td_hack
},
4296 { "no-fd-bootchk", 0, QEMU_OPTION_no_fd_bootchk
},
4297 { "no-acpi", 0, QEMU_OPTION_no_acpi
},
4298 { "no-hpet", 0, QEMU_OPTION_no_hpet
},
4299 { "acpitable", HAS_ARG
, QEMU_OPTION_acpitable
},
4302 /* Linux boot specific: */
4303 { "kernel", HAS_ARG
, QEMU_OPTION_kernel
},
4304 { "append", HAS_ARG
, QEMU_OPTION_append
},
4305 { "initrd", HAS_ARG
, QEMU_OPTION_initrd
},
4307 /* Debug/Expert options: */
4308 { "serial", HAS_ARG
, QEMU_OPTION_serial
},
4309 { "parallel", HAS_ARG
, QEMU_OPTION_parallel
},
4310 { "monitor", HAS_ARG
, QEMU_OPTION_monitor
},
4311 { "pidfile", HAS_ARG
, QEMU_OPTION_pidfile
},
4312 { "S", 0, QEMU_OPTION_S
},
4313 { "s", 0, QEMU_OPTION_s
},
4314 { "p", HAS_ARG
, QEMU_OPTION_p
},
4315 { "d", HAS_ARG
, QEMU_OPTION_d
},
4316 { "hdachs", HAS_ARG
, QEMU_OPTION_hdachs
},
4317 { "L", HAS_ARG
, QEMU_OPTION_L
},
4318 { "bios", HAS_ARG
, QEMU_OPTION_bios
},
4320 { "kernel-kqemu", 0, QEMU_OPTION_kernel_kqemu
},
4321 { "no-kqemu", 0, QEMU_OPTION_no_kqemu
},
4324 { "enable-kvm", 0, QEMU_OPTION_enable_kvm
},
4326 { "no-reboot", 0, QEMU_OPTION_no_reboot
},
4327 { "no-shutdown", 0, QEMU_OPTION_no_shutdown
},
4328 { "loadvm", HAS_ARG
, QEMU_OPTION_loadvm
},
4329 { "daemonize", 0, QEMU_OPTION_daemonize
},
4330 { "option-rom", HAS_ARG
, QEMU_OPTION_option_rom
},
4331 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
4332 { "prom-env", HAS_ARG
, QEMU_OPTION_prom_env
},
4334 { "clock", HAS_ARG
, QEMU_OPTION_clock
},
4335 { "localtime", 0, QEMU_OPTION_localtime
},
4336 { "startdate", HAS_ARG
, QEMU_OPTION_startdate
},
4337 { "icount", HAS_ARG
, QEMU_OPTION_icount
},
4338 { "echr", HAS_ARG
, QEMU_OPTION_echr
},
4339 { "virtioconsole", HAS_ARG
, QEMU_OPTION_virtiocon
},
4340 { "show-cursor", 0, QEMU_OPTION_show_cursor
},
4341 #if defined(TARGET_ARM) || defined(TARGET_M68K)
4342 { "semihosting", 0, QEMU_OPTION_semihosting
},
4344 #if defined(TARGET_ARM)
4345 { "old-param", 0, QEMU_OPTION_old_param
},
4347 { "tb-size", HAS_ARG
, QEMU_OPTION_tb_size
},
4348 { "incoming", HAS_ARG
, QEMU_OPTION_incoming
},
4349 { "chroot", HAS_ARG
, QEMU_OPTION_chroot
},
4350 { "runas", HAS_ARG
, QEMU_OPTION_runas
},
4355 struct soundhw soundhw
[] = {
4356 #ifdef HAS_AUDIO_CHOICE
4357 #if defined(TARGET_I386) || defined(TARGET_MIPS)
4363 { .init_isa
= pcspk_audio_init
}
4370 "Creative Sound Blaster 16",
4373 { .init_isa
= SB16_init
}
4377 #ifdef CONFIG_CS4231A
4383 { .init_isa
= cs4231a_init
}
4391 "Yamaha YMF262 (OPL3)",
4393 "Yamaha YM3812 (OPL2)",
4397 { .init_isa
= Adlib_init
}
4404 "Gravis Ultrasound GF1",
4407 { .init_isa
= GUS_init
}
4414 "Intel 82801AA AC97 Audio",
4417 { .init_pci
= ac97_init
}
4421 #ifdef CONFIG_ES1370
4424 "ENSONIQ AudioPCI ES1370",
4427 { .init_pci
= es1370_init
}
4431 #endif /* HAS_AUDIO_CHOICE */
4433 { NULL
, NULL
, 0, 0, { NULL
} }
4436 static void select_soundhw (const char *optarg
)
4440 if (*optarg
== '?') {
4443 printf ("Valid sound card names (comma separated):\n");
4444 for (c
= soundhw
; c
->name
; ++c
) {
4445 printf ("%-11s %s\n", c
->name
, c
->descr
);
4447 printf ("\n-soundhw all will enable all of the above\n");
4448 exit (*optarg
!= '?');
4456 if (!strcmp (optarg
, "all")) {
4457 for (c
= soundhw
; c
->name
; ++c
) {
4465 e
= strchr (p
, ',');
4466 l
= !e
? strlen (p
) : (size_t) (e
- p
);
4468 for (c
= soundhw
; c
->name
; ++c
) {
4469 if (!strncmp (c
->name
, p
, l
)) {
4478 "Unknown sound card name (too big to show)\n");
4481 fprintf (stderr
, "Unknown sound card name `%.*s'\n",
4486 p
+= l
+ (e
!= NULL
);
4490 goto show_valid_cards
;
4495 static void select_vgahw (const char *p
)
4499 if (strstart(p
, "std", &opts
)) {
4500 std_vga_enabled
= 1;
4501 cirrus_vga_enabled
= 0;
4503 } else if (strstart(p
, "cirrus", &opts
)) {
4504 cirrus_vga_enabled
= 1;
4505 std_vga_enabled
= 0;
4507 } else if (strstart(p
, "vmware", &opts
)) {
4508 cirrus_vga_enabled
= 0;
4509 std_vga_enabled
= 0;
4511 } else if (strstart(p
, "none", &opts
)) {
4512 cirrus_vga_enabled
= 0;
4513 std_vga_enabled
= 0;
4517 fprintf(stderr
, "Unknown vga type: %s\n", p
);
4521 const char *nextopt
;
4523 if (strstart(opts
, ",retrace=", &nextopt
)) {
4525 if (strstart(opts
, "dumb", &nextopt
))
4526 vga_retrace_method
= VGA_RETRACE_DUMB
;
4527 else if (strstart(opts
, "precise", &nextopt
))
4528 vga_retrace_method
= VGA_RETRACE_PRECISE
;
4529 else goto invalid_vga
;
4530 } else goto invalid_vga
;
4536 static BOOL WINAPI
qemu_ctrl_handler(DWORD type
)
4538 exit(STATUS_CONTROL_C_EXIT
);
4543 static int qemu_uuid_parse(const char *str
, uint8_t *uuid
)
4547 if(strlen(str
) != 36)
4550 ret
= sscanf(str
, UUID_FMT
, &uuid
[0], &uuid
[1], &uuid
[2], &uuid
[3],
4551 &uuid
[4], &uuid
[5], &uuid
[6], &uuid
[7], &uuid
[8], &uuid
[9],
4552 &uuid
[10], &uuid
[11], &uuid
[12], &uuid
[13], &uuid
[14], &uuid
[15]);
4560 #define MAX_NET_CLIENTS 32
4564 static void termsig_handler(int signal
)
4566 qemu_system_shutdown_request();
4569 static void termsig_setup(void)
4571 struct sigaction act
;
4573 memset(&act
, 0, sizeof(act
));
4574 act
.sa_handler
= termsig_handler
;
4575 sigaction(SIGINT
, &act
, NULL
);
4576 sigaction(SIGHUP
, &act
, NULL
);
4577 sigaction(SIGTERM
, &act
, NULL
);
4582 int main(int argc
, char **argv
, char **envp
)
4584 #ifdef CONFIG_GDBSTUB
4586 const char *gdbstub_port
;
4588 uint32_t boot_devices_bitmap
= 0;
4590 int snapshot
, linux_boot
, net_boot
;
4591 const char *initrd_filename
;
4592 const char *kernel_filename
, *kernel_cmdline
;
4593 const char *boot_devices
= "";
4595 DisplayChangeListener
*dcl
;
4596 int cyls
, heads
, secs
, translation
;
4597 const char *net_clients
[MAX_NET_CLIENTS
];
4599 const char *bt_opts
[MAX_BT_CMDLINE
];
4603 const char *r
, *optarg
;
4604 CharDriverState
*monitor_hd
= NULL
;
4605 const char *monitor_device
;
4606 const char *serial_devices
[MAX_SERIAL_PORTS
];
4607 int serial_device_index
;
4608 const char *parallel_devices
[MAX_PARALLEL_PORTS
];
4609 int parallel_device_index
;
4610 const char *virtio_consoles
[MAX_VIRTIO_CONSOLES
];
4611 int virtio_console_index
;
4612 const char *loadvm
= NULL
;
4613 QEMUMachine
*machine
;
4614 const char *cpu_model
;
4615 const char *usb_devices
[MAX_USB_CMDLINE
];
4616 int usb_devices_index
;
4619 const char *pid_file
= NULL
;
4620 const char *incoming
= NULL
;
4622 struct passwd
*pwd
= NULL
;
4623 const char *chroot_dir
= NULL
;
4624 const char *run_as
= NULL
;
4626 qemu_cache_utils_init(envp
);
4628 LIST_INIT (&vm_change_state_head
);
4631 struct sigaction act
;
4632 sigfillset(&act
.sa_mask
);
4634 act
.sa_handler
= SIG_IGN
;
4635 sigaction(SIGPIPE
, &act
, NULL
);
4638 SetConsoleCtrlHandler(qemu_ctrl_handler
, TRUE
);
4639 /* Note: cpu_interrupt() is currently not SMP safe, so we force
4640 QEMU to run on a single CPU */
4645 h
= GetCurrentProcess();
4646 if (GetProcessAffinityMask(h
, &mask
, &smask
)) {
4647 for(i
= 0; i
< 32; i
++) {
4648 if (mask
& (1 << i
))
4653 SetProcessAffinityMask(h
, mask
);
4659 register_machines();
4660 machine
= first_machine
;
4662 initrd_filename
= NULL
;
4664 vga_ram_size
= VGA_RAM_SIZE
;
4665 #ifdef CONFIG_GDBSTUB
4667 gdbstub_port
= DEFAULT_GDBSTUB_PORT
;
4672 kernel_filename
= NULL
;
4673 kernel_cmdline
= "";
4674 cyls
= heads
= secs
= 0;
4675 translation
= BIOS_ATA_TRANSLATION_AUTO
;
4676 monitor_device
= "vc:80Cx24C";
4678 serial_devices
[0] = "vc:80Cx24C";
4679 for(i
= 1; i
< MAX_SERIAL_PORTS
; i
++)
4680 serial_devices
[i
] = NULL
;
4681 serial_device_index
= 0;
4683 parallel_devices
[0] = "vc:80Cx24C";
4684 for(i
= 1; i
< MAX_PARALLEL_PORTS
; i
++)
4685 parallel_devices
[i
] = NULL
;
4686 parallel_device_index
= 0;
4688 for(i
= 0; i
< MAX_VIRTIO_CONSOLES
; i
++)
4689 virtio_consoles
[i
] = NULL
;
4690 virtio_console_index
= 0;
4692 usb_devices_index
= 0;
4711 hda_index
= drive_add(argv
[optind
++], HD_ALIAS
, 0);
4713 const QEMUOption
*popt
;
4716 /* Treat --foo the same as -foo. */
4719 popt
= qemu_options
;
4722 fprintf(stderr
, "%s: invalid option -- '%s'\n",
4726 if (!strcmp(popt
->name
, r
+ 1))
4730 if (popt
->flags
& HAS_ARG
) {
4731 if (optind
>= argc
) {
4732 fprintf(stderr
, "%s: option '%s' requires an argument\n",
4736 optarg
= argv
[optind
++];
4741 switch(popt
->index
) {
4743 machine
= find_machine(optarg
);
4746 printf("Supported machines are:\n");
4747 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
4748 printf("%-10s %s%s\n",
4750 m
== first_machine
? " (default)" : "");
4752 exit(*optarg
!= '?');
4755 case QEMU_OPTION_cpu
:
4756 /* hw initialization will check this */
4757 if (*optarg
== '?') {
4758 /* XXX: implement xxx_cpu_list for targets that still miss it */
4759 #if defined(cpu_list)
4760 cpu_list(stdout
, &fprintf
);
4767 case QEMU_OPTION_initrd
:
4768 initrd_filename
= optarg
;
4770 case QEMU_OPTION_hda
:
4772 hda_index
= drive_add(optarg
, HD_ALIAS
, 0);
4774 hda_index
= drive_add(optarg
, HD_ALIAS
4775 ",cyls=%d,heads=%d,secs=%d%s",
4776 0, cyls
, heads
, secs
,
4777 translation
== BIOS_ATA_TRANSLATION_LBA
?
4779 translation
== BIOS_ATA_TRANSLATION_NONE
?
4780 ",trans=none" : "");
4782 case QEMU_OPTION_hdb
:
4783 case QEMU_OPTION_hdc
:
4784 case QEMU_OPTION_hdd
:
4785 drive_add(optarg
, HD_ALIAS
, popt
->index
- QEMU_OPTION_hda
);
4787 case QEMU_OPTION_drive
:
4788 drive_add(NULL
, "%s", optarg
);
4790 case QEMU_OPTION_mtdblock
:
4791 drive_add(optarg
, MTD_ALIAS
);
4793 case QEMU_OPTION_sd
:
4794 drive_add(optarg
, SD_ALIAS
);
4796 case QEMU_OPTION_pflash
:
4797 drive_add(optarg
, PFLASH_ALIAS
);
4799 case QEMU_OPTION_snapshot
:
4802 case QEMU_OPTION_hdachs
:
4806 cyls
= strtol(p
, (char **)&p
, 0);
4807 if (cyls
< 1 || cyls
> 16383)
4812 heads
= strtol(p
, (char **)&p
, 0);
4813 if (heads
< 1 || heads
> 16)
4818 secs
= strtol(p
, (char **)&p
, 0);
4819 if (secs
< 1 || secs
> 63)
4823 if (!strcmp(p
, "none"))
4824 translation
= BIOS_ATA_TRANSLATION_NONE
;
4825 else if (!strcmp(p
, "lba"))
4826 translation
= BIOS_ATA_TRANSLATION_LBA
;
4827 else if (!strcmp(p
, "auto"))
4828 translation
= BIOS_ATA_TRANSLATION_AUTO
;
4831 } else if (*p
!= '\0') {
4833 fprintf(stderr
, "qemu: invalid physical CHS format\n");
4836 if (hda_index
!= -1)
4837 snprintf(drives_opt
[hda_index
].opt
,
4838 sizeof(drives_opt
[hda_index
].opt
),
4839 HD_ALIAS
",cyls=%d,heads=%d,secs=%d%s",
4840 0, cyls
, heads
, secs
,
4841 translation
== BIOS_ATA_TRANSLATION_LBA
?
4843 translation
== BIOS_ATA_TRANSLATION_NONE
?
4844 ",trans=none" : "");
4847 case QEMU_OPTION_nographic
:
4850 #ifdef CONFIG_CURSES
4851 case QEMU_OPTION_curses
:
4855 case QEMU_OPTION_portrait
:
4858 case QEMU_OPTION_kernel
:
4859 kernel_filename
= optarg
;
4861 case QEMU_OPTION_append
:
4862 kernel_cmdline
= optarg
;
4864 case QEMU_OPTION_cdrom
:
4865 drive_add(optarg
, CDROM_ALIAS
);
4867 case QEMU_OPTION_boot
:
4868 boot_devices
= optarg
;
4869 /* We just do some generic consistency checks */
4871 /* Could easily be extended to 64 devices if needed */
4874 boot_devices_bitmap
= 0;
4875 for (p
= boot_devices
; *p
!= '\0'; p
++) {
4876 /* Allowed boot devices are:
4877 * a b : floppy disk drives
4878 * c ... f : IDE disk drives
4879 * g ... m : machine implementation dependant drives
4880 * n ... p : network devices
4881 * It's up to each machine implementation to check
4882 * if the given boot devices match the actual hardware
4883 * implementation and firmware features.
4885 if (*p
< 'a' || *p
> 'q') {
4886 fprintf(stderr
, "Invalid boot device '%c'\n", *p
);
4889 if (boot_devices_bitmap
& (1 << (*p
- 'a'))) {
4891 "Boot device '%c' was given twice\n",*p
);
4894 boot_devices_bitmap
|= 1 << (*p
- 'a');
4898 case QEMU_OPTION_fda
:
4899 case QEMU_OPTION_fdb
:
4900 drive_add(optarg
, FD_ALIAS
, popt
->index
- QEMU_OPTION_fda
);
4903 case QEMU_OPTION_no_fd_bootchk
:
4907 case QEMU_OPTION_net
:
4908 if (nb_net_clients
>= MAX_NET_CLIENTS
) {
4909 fprintf(stderr
, "qemu: too many network clients\n");
4912 net_clients
[nb_net_clients
] = optarg
;
4916 case QEMU_OPTION_tftp
:
4917 tftp_prefix
= optarg
;
4919 case QEMU_OPTION_bootp
:
4920 bootp_filename
= optarg
;
4923 case QEMU_OPTION_smb
:
4924 net_slirp_smb(optarg
);
4927 case QEMU_OPTION_redir
:
4928 net_slirp_redir(optarg
);
4931 case QEMU_OPTION_bt
:
4932 if (nb_bt_opts
>= MAX_BT_CMDLINE
) {
4933 fprintf(stderr
, "qemu: too many bluetooth options\n");
4936 bt_opts
[nb_bt_opts
++] = optarg
;
4939 case QEMU_OPTION_audio_help
:
4943 case QEMU_OPTION_soundhw
:
4944 select_soundhw (optarg
);
4950 case QEMU_OPTION_m
: {
4954 value
= strtoul(optarg
, &ptr
, 10);
4956 case 0: case 'M': case 'm':
4963 fprintf(stderr
, "qemu: invalid ram size: %s\n", optarg
);
4967 /* On 32-bit hosts, QEMU is limited by virtual address space */
4968 if (value
> (2047 << 20)
4970 && HOST_LONG_BITS
== 32
4973 fprintf(stderr
, "qemu: at most 2047 MB RAM can be simulated\n");
4976 if (value
!= (uint64_t)(ram_addr_t
)value
) {
4977 fprintf(stderr
, "qemu: ram size too large\n");
4986 const CPULogItem
*item
;
4988 mask
= cpu_str_to_log_mask(optarg
);
4990 printf("Log items (comma separated):\n");
4991 for(item
= cpu_log_items
; item
->mask
!= 0; item
++) {
4992 printf("%-10s %s\n", item
->name
, item
->help
);
4999 #ifdef CONFIG_GDBSTUB
5004 gdbstub_port
= optarg
;
5010 case QEMU_OPTION_bios
:
5017 keyboard_layout
= optarg
;
5019 case QEMU_OPTION_localtime
:
5022 case QEMU_OPTION_vga
:
5023 select_vgahw (optarg
);
5030 w
= strtol(p
, (char **)&p
, 10);
5033 fprintf(stderr
, "qemu: invalid resolution or depth\n");
5039 h
= strtol(p
, (char **)&p
, 10);
5044 depth
= strtol(p
, (char **)&p
, 10);
5045 if (depth
!= 8 && depth
!= 15 && depth
!= 16 &&
5046 depth
!= 24 && depth
!= 32)
5048 } else if (*p
== '\0') {
5049 depth
= graphic_depth
;
5056 graphic_depth
= depth
;
5059 case QEMU_OPTION_echr
:
5062 term_escape_char
= strtol(optarg
, &r
, 0);
5064 printf("Bad argument to echr\n");
5067 case QEMU_OPTION_monitor
:
5068 monitor_device
= optarg
;
5070 case QEMU_OPTION_serial
:
5071 if (serial_device_index
>= MAX_SERIAL_PORTS
) {
5072 fprintf(stderr
, "qemu: too many serial ports\n");
5075 serial_devices
[serial_device_index
] = optarg
;
5076 serial_device_index
++;
5078 case QEMU_OPTION_virtiocon
:
5079 if (virtio_console_index
>= MAX_VIRTIO_CONSOLES
) {
5080 fprintf(stderr
, "qemu: too many virtio consoles\n");
5083 virtio_consoles
[virtio_console_index
] = optarg
;
5084 virtio_console_index
++;
5086 case QEMU_OPTION_parallel
:
5087 if (parallel_device_index
>= MAX_PARALLEL_PORTS
) {
5088 fprintf(stderr
, "qemu: too many parallel ports\n");
5091 parallel_devices
[parallel_device_index
] = optarg
;
5092 parallel_device_index
++;
5094 case QEMU_OPTION_loadvm
:
5097 case QEMU_OPTION_full_screen
:
5101 case QEMU_OPTION_no_frame
:
5104 case QEMU_OPTION_alt_grab
:
5107 case QEMU_OPTION_no_quit
:
5110 case QEMU_OPTION_sdl
:
5114 case QEMU_OPTION_pidfile
:
5118 case QEMU_OPTION_win2k_hack
:
5119 win2k_install_hack
= 1;
5121 case QEMU_OPTION_rtc_td_hack
:
5124 case QEMU_OPTION_acpitable
:
5125 if(acpi_table_add(optarg
) < 0) {
5126 fprintf(stderr
, "Wrong acpi table provided\n");
5132 case QEMU_OPTION_no_kqemu
:
5135 case QEMU_OPTION_kernel_kqemu
:
5140 case QEMU_OPTION_enable_kvm
:
5147 case QEMU_OPTION_usb
:
5150 case QEMU_OPTION_usbdevice
:
5152 if (usb_devices_index
>= MAX_USB_CMDLINE
) {
5153 fprintf(stderr
, "Too many USB devices\n");
5156 usb_devices
[usb_devices_index
] = optarg
;
5157 usb_devices_index
++;
5159 case QEMU_OPTION_smp
:
5160 smp_cpus
= atoi(optarg
);
5162 fprintf(stderr
, "Invalid number of CPUs\n");
5166 case QEMU_OPTION_vnc
:
5167 vnc_display
= optarg
;
5169 case QEMU_OPTION_no_acpi
:
5172 case QEMU_OPTION_no_hpet
:
5175 case QEMU_OPTION_no_reboot
:
5178 case QEMU_OPTION_no_shutdown
:
5181 case QEMU_OPTION_show_cursor
:
5184 case QEMU_OPTION_uuid
:
5185 if(qemu_uuid_parse(optarg
, qemu_uuid
) < 0) {
5186 fprintf(stderr
, "Fail to parse UUID string."
5187 " Wrong format.\n");
5191 case QEMU_OPTION_daemonize
:
5194 case QEMU_OPTION_option_rom
:
5195 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
5196 fprintf(stderr
, "Too many option ROMs\n");
5199 option_rom
[nb_option_roms
] = optarg
;
5202 case QEMU_OPTION_semihosting
:
5203 semihosting_enabled
= 1;
5205 case QEMU_OPTION_name
:
5208 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
5209 case QEMU_OPTION_prom_env
:
5210 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
5211 fprintf(stderr
, "Too many prom variables\n");
5214 prom_envs
[nb_prom_envs
] = optarg
;
5219 case QEMU_OPTION_old_param
:
5223 case QEMU_OPTION_clock
:
5224 configure_alarms(optarg
);
5226 case QEMU_OPTION_startdate
:
5229 time_t rtc_start_date
;
5230 if (!strcmp(optarg
, "now")) {
5231 rtc_date_offset
= -1;
5233 if (sscanf(optarg
, "%d-%d-%dT%d:%d:%d",
5241 } else if (sscanf(optarg
, "%d-%d-%d",
5244 &tm
.tm_mday
) == 3) {
5253 rtc_start_date
= mktimegm(&tm
);
5254 if (rtc_start_date
== -1) {
5256 fprintf(stderr
, "Invalid date format. Valid format are:\n"
5257 "'now' or '2006-06-17T16:01:21' or '2006-06-17'\n");
5260 rtc_date_offset
= time(NULL
) - rtc_start_date
;
5264 case QEMU_OPTION_tb_size
:
5265 tb_size
= strtol(optarg
, NULL
, 0);
5269 case QEMU_OPTION_icount
:
5271 if (strcmp(optarg
, "auto") == 0) {
5272 icount_time_shift
= -1;
5274 icount_time_shift
= strtol(optarg
, NULL
, 0);
5277 case QEMU_OPTION_incoming
:
5280 case QEMU_OPTION_chroot
:
5281 chroot_dir
= optarg
;
5283 case QEMU_OPTION_runas
:
5290 #if defined(CONFIG_KVM) && defined(USE_KQEMU)
5291 if (kvm_allowed
&& kqemu_allowed
) {
5293 "You can not enable both KVM and kqemu at the same time\n");
5298 machine
->max_cpus
= machine
->max_cpus
?: 1; /* Default to UP */
5299 if (smp_cpus
> machine
->max_cpus
) {
5300 fprintf(stderr
, "Number of SMP cpus requested (%d), exceeds max cpus "
5301 "supported by machine `%s' (%d)\n", smp_cpus
, machine
->name
,
5307 if (serial_device_index
== 0)
5308 serial_devices
[0] = "stdio";
5309 if (parallel_device_index
== 0)
5310 parallel_devices
[0] = "null";
5311 if (strncmp(monitor_device
, "vc", 2) == 0)
5312 monitor_device
= "stdio";
5319 if (pipe(fds
) == -1)
5330 len
= read(fds
[0], &status
, 1);
5331 if (len
== -1 && (errno
== EINTR
))
5336 else if (status
== 1) {
5337 fprintf(stderr
, "Could not acquire pidfile\n");
5354 signal(SIGTSTP
, SIG_IGN
);
5355 signal(SIGTTOU
, SIG_IGN
);
5356 signal(SIGTTIN
, SIG_IGN
);
5360 if (pid_file
&& qemu_create_pidfile(pid_file
) != 0) {
5363 write(fds
[1], &status
, 1);
5365 fprintf(stderr
, "Could not acquire pid file\n");
5373 linux_boot
= (kernel_filename
!= NULL
);
5374 net_boot
= (boot_devices_bitmap
>> ('n' - 'a')) & 0xF;
5376 if (!linux_boot
&& net_boot
== 0 &&
5377 !machine
->nodisk_ok
&& nb_drives_opt
== 0)
5380 if (!linux_boot
&& *kernel_cmdline
!= '\0') {
5381 fprintf(stderr
, "-append only allowed with -kernel option\n");
5385 if (!linux_boot
&& initrd_filename
!= NULL
) {
5386 fprintf(stderr
, "-initrd only allowed with -kernel option\n");
5390 /* boot to floppy or the default cd if no hard disk defined yet */
5391 if (!boot_devices
[0]) {
5392 boot_devices
= "cad";
5394 setvbuf(stdout
, NULL
, _IOLBF
, 0);
5397 if (init_timer_alarm() < 0) {
5398 fprintf(stderr
, "could not initialize alarm timer\n");
5401 if (use_icount
&& icount_time_shift
< 0) {
5403 /* 125MIPS seems a reasonable initial guess at the guest speed.
5404 It will be corrected fairly quickly anyway. */
5405 icount_time_shift
= 3;
5406 init_icount_adjust();
5413 /* init network clients */
5414 if (nb_net_clients
== 0) {
5415 /* if no clients, we use a default config */
5416 net_clients
[nb_net_clients
++] = "nic";
5418 net_clients
[nb_net_clients
++] = "user";
5422 for(i
= 0;i
< nb_net_clients
; i
++) {
5423 if (net_client_parse(net_clients
[i
]) < 0)
5429 /* XXX: this should be moved in the PC machine instantiation code */
5430 if (net_boot
!= 0) {
5432 for (i
= 0; i
< nb_nics
&& i
< 4; i
++) {
5433 const char *model
= nd_table
[i
].model
;
5435 if (net_boot
& (1 << i
)) {
5438 snprintf(buf
, sizeof(buf
), "%s/pxe-%s.bin", bios_dir
, model
);
5439 if (get_image_size(buf
) > 0) {
5440 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
5441 fprintf(stderr
, "Too many option ROMs\n");
5444 option_rom
[nb_option_roms
] = strdup(buf
);
5451 fprintf(stderr
, "No valid PXE rom found for network device\n");
5457 /* init the bluetooth world */
5458 for (i
= 0; i
< nb_bt_opts
; i
++)
5459 if (bt_parse(bt_opts
[i
]))
5462 /* init the memory */
5463 phys_ram_size
= machine
->ram_require
& ~RAMSIZE_FIXED
;
5465 if (machine
->ram_require
& RAMSIZE_FIXED
) {
5467 if (ram_size
< phys_ram_size
) {
5468 fprintf(stderr
, "Machine `%s' requires %llu bytes of memory\n",
5469 machine
->name
, (unsigned long long) phys_ram_size
);
5473 phys_ram_size
= ram_size
;
5475 ram_size
= phys_ram_size
;
5478 ram_size
= DEFAULT_RAM_SIZE
* 1024 * 1024;
5480 phys_ram_size
+= ram_size
;
5483 phys_ram_base
= qemu_vmalloc(phys_ram_size
);
5484 if (!phys_ram_base
) {
5485 fprintf(stderr
, "Could not allocate physical memory\n");
5489 /* init the dynamic translator */
5490 cpu_exec_init_all(tb_size
* 1024 * 1024);
5495 /* we always create the cdrom drive, even if no disk is there */
5497 if (nb_drives_opt
< MAX_DRIVES
)
5498 drive_add(NULL
, CDROM_ALIAS
);
5500 /* we always create at least one floppy */
5502 if (nb_drives_opt
< MAX_DRIVES
)
5503 drive_add(NULL
, FD_ALIAS
, 0);
5505 /* we always create one sd slot, even if no card is in it */
5507 if (nb_drives_opt
< MAX_DRIVES
)
5508 drive_add(NULL
, SD_ALIAS
);
5510 /* open the virtual block devices */
5512 for(i
= 0; i
< nb_drives_opt
; i
++)
5513 if (drive_init(&drives_opt
[i
], snapshot
, machine
) == -1)
5516 register_savevm("timer", 0, 2, timer_save
, timer_load
, NULL
);
5517 register_savevm_live("ram", 0, 3, ram_save_live
, NULL
, ram_load
, NULL
);
5520 /* must be after terminal init, SDL library changes signal handlers */
5524 /* Maintain compatibility with multiple stdio monitors */
5525 if (!strcmp(monitor_device
,"stdio")) {
5526 for (i
= 0; i
< MAX_SERIAL_PORTS
; i
++) {
5527 const char *devname
= serial_devices
[i
];
5528 if (devname
&& !strcmp(devname
,"mon:stdio")) {
5529 monitor_device
= NULL
;
5531 } else if (devname
&& !strcmp(devname
,"stdio")) {
5532 monitor_device
= NULL
;
5533 serial_devices
[i
] = "mon:stdio";
5539 if (kvm_enabled()) {
5542 ret
= kvm_init(smp_cpus
);
5544 fprintf(stderr
, "failed to initialize KVM\n");
5549 if (monitor_device
) {
5550 monitor_hd
= qemu_chr_open("monitor", monitor_device
, NULL
);
5552 fprintf(stderr
, "qemu: could not open monitor device '%s'\n", monitor_device
);
5557 for(i
= 0; i
< MAX_SERIAL_PORTS
; i
++) {
5558 const char *devname
= serial_devices
[i
];
5559 if (devname
&& strcmp(devname
, "none")) {
5561 snprintf(label
, sizeof(label
), "serial%d", i
);
5562 serial_hds
[i
] = qemu_chr_open(label
, devname
, NULL
);
5563 if (!serial_hds
[i
]) {
5564 fprintf(stderr
, "qemu: could not open serial device '%s'\n",
5571 for(i
= 0; i
< MAX_PARALLEL_PORTS
; i
++) {
5572 const char *devname
= parallel_devices
[i
];
5573 if (devname
&& strcmp(devname
, "none")) {
5575 snprintf(label
, sizeof(label
), "parallel%d", i
);
5576 parallel_hds
[i
] = qemu_chr_open(label
, devname
, NULL
);
5577 if (!parallel_hds
[i
]) {
5578 fprintf(stderr
, "qemu: could not open parallel device '%s'\n",
5585 for(i
= 0; i
< MAX_VIRTIO_CONSOLES
; i
++) {
5586 const char *devname
= virtio_consoles
[i
];
5587 if (devname
&& strcmp(devname
, "none")) {
5589 snprintf(label
, sizeof(label
), "virtcon%d", i
);
5590 virtcon_hds
[i
] = qemu_chr_open(label
, devname
, NULL
);
5591 if (!virtcon_hds
[i
]) {
5592 fprintf(stderr
, "qemu: could not open virtio console '%s'\n",
5599 machine
->init(ram_size
, vga_ram_size
, boot_devices
,
5600 kernel_filename
, kernel_cmdline
, initrd_filename
, cpu_model
);
5602 current_machine
= machine
;
5604 /* Set KVM's vcpu state to qemu's initial CPUState. */
5605 if (kvm_enabled()) {
5608 ret
= kvm_sync_vcpus();
5610 fprintf(stderr
, "failed to initialize vcpus\n");
5615 /* init USB devices */
5617 for(i
= 0; i
< usb_devices_index
; i
++) {
5618 if (usb_device_add(usb_devices
[i
], 0) < 0) {
5619 fprintf(stderr
, "Warning: could not add USB device %s\n",
5626 dumb_display_init();
5627 /* just use the first displaystate for the moment */
5632 fprintf(stderr
, "fatal: -nographic can't be used with -curses\n");
5636 #if defined(CONFIG_CURSES)
5638 /* At the moment curses cannot be used with other displays */
5639 curses_display_init(ds
, full_screen
);
5643 if (vnc_display
!= NULL
) {
5644 vnc_display_init(ds
);
5645 if (vnc_display_open(ds
, vnc_display
) < 0)
5648 #if defined(CONFIG_SDL)
5649 if (sdl
|| !vnc_display
)
5650 sdl_display_init(ds
, full_screen
, no_frame
);
5651 #elif defined(CONFIG_COCOA)
5652 if (sdl
|| !vnc_display
)
5653 cocoa_display_init(ds
, full_screen
);
5659 dcl
= ds
->listeners
;
5660 while (dcl
!= NULL
) {
5661 if (dcl
->dpy_refresh
!= NULL
) {
5662 ds
->gui_timer
= qemu_new_timer(rt_clock
, gui_update
, ds
);
5663 qemu_mod_timer(ds
->gui_timer
, qemu_get_clock(rt_clock
));
5668 if (nographic
|| (vnc_display
&& !sdl
)) {
5669 nographic_timer
= qemu_new_timer(rt_clock
, nographic_update
, NULL
);
5670 qemu_mod_timer(nographic_timer
, qemu_get_clock(rt_clock
));
5673 text_consoles_set_display(display_state
);
5674 qemu_chr_initial_reset();
5676 if (monitor_device
&& monitor_hd
)
5677 monitor_init(monitor_hd
, !nographic
);
5679 for(i
= 0; i
< MAX_SERIAL_PORTS
; i
++) {
5680 const char *devname
= serial_devices
[i
];
5681 if (devname
&& strcmp(devname
, "none")) {
5683 snprintf(label
, sizeof(label
), "serial%d", i
);
5684 if (strstart(devname
, "vc", 0))
5685 qemu_chr_printf(serial_hds
[i
], "serial%d console\r\n", i
);
5689 for(i
= 0; i
< MAX_PARALLEL_PORTS
; i
++) {
5690 const char *devname
= parallel_devices
[i
];
5691 if (devname
&& strcmp(devname
, "none")) {
5693 snprintf(label
, sizeof(label
), "parallel%d", i
);
5694 if (strstart(devname
, "vc", 0))
5695 qemu_chr_printf(parallel_hds
[i
], "parallel%d console\r\n", i
);
5699 for(i
= 0; i
< MAX_VIRTIO_CONSOLES
; i
++) {
5700 const char *devname
= virtio_consoles
[i
];
5701 if (virtcon_hds
[i
] && devname
) {
5703 snprintf(label
, sizeof(label
), "virtcon%d", i
);
5704 if (strstart(devname
, "vc", 0))
5705 qemu_chr_printf(virtcon_hds
[i
], "virtio console%d\r\n", i
);
5709 #ifdef CONFIG_GDBSTUB
5711 /* XXX: use standard host:port notation and modify options
5713 if (gdbserver_start(gdbstub_port
) < 0) {
5714 fprintf(stderr
, "qemu: could not open gdbstub device on port '%s'\n",
5725 autostart
= 0; /* fixme how to deal with -daemonize */
5726 qemu_start_incoming_migration(incoming
);
5737 len
= write(fds
[1], &status
, 1);
5738 if (len
== -1 && (errno
== EINTR
))
5745 TFR(fd
= open("/dev/null", O_RDWR
));
5752 pwd
= getpwnam(run_as
);
5754 fprintf(stderr
, "User \"%s\" doesn't exist\n", run_as
);
5760 if (chroot(chroot_dir
) < 0) {
5761 fprintf(stderr
, "chroot failed\n");
5768 if (setgid(pwd
->pw_gid
) < 0) {
5769 fprintf(stderr
, "Failed to setgid(%d)\n", pwd
->pw_gid
);
5772 if (setuid(pwd
->pw_uid
) < 0) {
5773 fprintf(stderr
, "Failed to setuid(%d)\n", pwd
->pw_uid
);
5776 if (setuid(0) != -1) {
5777 fprintf(stderr
, "Dropping privileges failed\n");