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 rtc_utc
= 1;
205 static int rtc_date_offset
= -1; /* -1 means no change */
206 int cirrus_vga_enabled
= 1;
207 int std_vga_enabled
= 0;
208 int vmsvga_enabled
= 0;
210 int graphic_width
= 1024;
211 int graphic_height
= 768;
212 int graphic_depth
= 8;
214 int graphic_width
= 800;
215 int graphic_height
= 600;
216 int graphic_depth
= 15;
218 static int full_screen
= 0;
220 static int no_frame
= 0;
223 CharDriverState
*serial_hds
[MAX_SERIAL_PORTS
];
224 CharDriverState
*parallel_hds
[MAX_PARALLEL_PORTS
];
225 CharDriverState
*virtcon_hds
[MAX_VIRTIO_CONSOLES
];
227 int win2k_install_hack
= 0;
232 const char *vnc_display
;
233 int acpi_enabled
= 1;
239 int graphic_rotate
= 0;
241 const char *option_rom
[MAX_OPTION_ROMS
];
243 int semihosting_enabled
= 0;
247 const char *qemu_name
;
249 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
250 unsigned int nb_prom_envs
= 0;
251 const char *prom_envs
[MAX_PROM_ENVS
];
254 struct drive_opt drives_opt
[MAX_DRIVES
];
256 static CPUState
*cur_cpu
;
257 static CPUState
*next_cpu
;
258 static int event_pending
= 1;
259 /* Conversion factor from emulated instructions to virtual clock ticks. */
260 static int icount_time_shift
;
261 /* Arbitrarily pick 1MIPS as the minimum allowable speed. */
262 #define MAX_ICOUNT_SHIFT 10
263 /* Compensate for varying guest execution speed. */
264 static int64_t qemu_icount_bias
;
265 static QEMUTimer
*icount_rt_timer
;
266 static QEMUTimer
*icount_vm_timer
;
267 static QEMUTimer
*nographic_timer
;
269 uint8_t qemu_uuid
[16];
271 /***********************************************************/
272 /* x86 ISA bus support */
274 target_phys_addr_t isa_mem_base
= 0;
277 static IOPortReadFunc default_ioport_readb
, default_ioport_readw
, default_ioport_readl
;
278 static IOPortWriteFunc default_ioport_writeb
, default_ioport_writew
, default_ioport_writel
;
280 static uint32_t ioport_read(int index
, uint32_t address
)
282 static IOPortReadFunc
*default_func
[3] = {
283 default_ioport_readb
,
284 default_ioport_readw
,
287 IOPortReadFunc
*func
= ioport_read_table
[index
][address
];
289 func
= default_func
[index
];
290 return func(ioport_opaque
[address
], address
);
293 static void ioport_write(int index
, uint32_t address
, uint32_t data
)
295 static IOPortWriteFunc
*default_func
[3] = {
296 default_ioport_writeb
,
297 default_ioport_writew
,
298 default_ioport_writel
300 IOPortWriteFunc
*func
= ioport_write_table
[index
][address
];
302 func
= default_func
[index
];
303 func(ioport_opaque
[address
], address
, data
);
306 static uint32_t default_ioport_readb(void *opaque
, uint32_t address
)
308 #ifdef DEBUG_UNUSED_IOPORT
309 fprintf(stderr
, "unused inb: port=0x%04x\n", address
);
314 static void default_ioport_writeb(void *opaque
, uint32_t address
, uint32_t data
)
316 #ifdef DEBUG_UNUSED_IOPORT
317 fprintf(stderr
, "unused outb: port=0x%04x data=0x%02x\n", address
, data
);
321 /* default is to make two byte accesses */
322 static uint32_t default_ioport_readw(void *opaque
, uint32_t address
)
325 data
= ioport_read(0, address
);
326 address
= (address
+ 1) & (MAX_IOPORTS
- 1);
327 data
|= ioport_read(0, address
) << 8;
331 static void default_ioport_writew(void *opaque
, uint32_t address
, uint32_t data
)
333 ioport_write(0, address
, data
& 0xff);
334 address
= (address
+ 1) & (MAX_IOPORTS
- 1);
335 ioport_write(0, address
, (data
>> 8) & 0xff);
338 static uint32_t default_ioport_readl(void *opaque
, uint32_t address
)
340 #ifdef DEBUG_UNUSED_IOPORT
341 fprintf(stderr
, "unused inl: port=0x%04x\n", address
);
346 static void default_ioport_writel(void *opaque
, uint32_t address
, uint32_t data
)
348 #ifdef DEBUG_UNUSED_IOPORT
349 fprintf(stderr
, "unused outl: port=0x%04x data=0x%02x\n", address
, data
);
353 /* size is the word size in byte */
354 int register_ioport_read(int start
, int length
, int size
,
355 IOPortReadFunc
*func
, void *opaque
)
361 } else if (size
== 2) {
363 } else if (size
== 4) {
366 hw_error("register_ioport_read: invalid size");
369 for(i
= start
; i
< start
+ length
; i
+= size
) {
370 ioport_read_table
[bsize
][i
] = func
;
371 if (ioport_opaque
[i
] != NULL
&& ioport_opaque
[i
] != opaque
)
372 hw_error("register_ioport_read: invalid opaque");
373 ioport_opaque
[i
] = opaque
;
378 /* size is the word size in byte */
379 int register_ioport_write(int start
, int length
, int size
,
380 IOPortWriteFunc
*func
, void *opaque
)
386 } else if (size
== 2) {
388 } else if (size
== 4) {
391 hw_error("register_ioport_write: invalid size");
394 for(i
= start
; i
< start
+ length
; i
+= size
) {
395 ioport_write_table
[bsize
][i
] = func
;
396 if (ioport_opaque
[i
] != NULL
&& ioport_opaque
[i
] != opaque
)
397 hw_error("register_ioport_write: invalid opaque");
398 ioport_opaque
[i
] = opaque
;
403 void isa_unassign_ioport(int start
, int length
)
407 for(i
= start
; i
< start
+ length
; i
++) {
408 ioport_read_table
[0][i
] = default_ioport_readb
;
409 ioport_read_table
[1][i
] = default_ioport_readw
;
410 ioport_read_table
[2][i
] = default_ioport_readl
;
412 ioport_write_table
[0][i
] = default_ioport_writeb
;
413 ioport_write_table
[1][i
] = default_ioport_writew
;
414 ioport_write_table
[2][i
] = default_ioport_writel
;
416 ioport_opaque
[i
] = NULL
;
420 /***********************************************************/
422 void cpu_outb(CPUState
*env
, int addr
, int val
)
424 LOG_IOPORT("outb: %04x %02x\n", addr
, val
);
425 ioport_write(0, addr
, val
);
428 env
->last_io_time
= cpu_get_time_fast();
432 void cpu_outw(CPUState
*env
, int addr
, int val
)
434 LOG_IOPORT("outw: %04x %04x\n", addr
, val
);
435 ioport_write(1, addr
, val
);
438 env
->last_io_time
= cpu_get_time_fast();
442 void cpu_outl(CPUState
*env
, int addr
, int val
)
444 LOG_IOPORT("outl: %04x %08x\n", addr
, val
);
445 ioport_write(2, addr
, val
);
448 env
->last_io_time
= cpu_get_time_fast();
452 int cpu_inb(CPUState
*env
, int addr
)
455 val
= ioport_read(0, addr
);
456 LOG_IOPORT("inb : %04x %02x\n", addr
, val
);
459 env
->last_io_time
= cpu_get_time_fast();
464 int cpu_inw(CPUState
*env
, int addr
)
467 val
= ioport_read(1, addr
);
468 LOG_IOPORT("inw : %04x %04x\n", addr
, val
);
471 env
->last_io_time
= cpu_get_time_fast();
476 int cpu_inl(CPUState
*env
, int addr
)
479 val
= ioport_read(2, addr
);
480 LOG_IOPORT("inl : %04x %08x\n", addr
, val
);
483 env
->last_io_time
= cpu_get_time_fast();
488 /***********************************************************/
489 void hw_error(const char *fmt
, ...)
495 fprintf(stderr
, "qemu: hardware error: ");
496 vfprintf(stderr
, fmt
, ap
);
497 fprintf(stderr
, "\n");
498 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
499 fprintf(stderr
, "CPU #%d:\n", env
->cpu_index
);
501 cpu_dump_state(env
, stderr
, fprintf
, X86_DUMP_FPU
);
503 cpu_dump_state(env
, stderr
, fprintf
, 0);
513 static QEMUBalloonEvent
*qemu_balloon_event
;
514 void *qemu_balloon_event_opaque
;
516 void qemu_add_balloon_handler(QEMUBalloonEvent
*func
, void *opaque
)
518 qemu_balloon_event
= func
;
519 qemu_balloon_event_opaque
= opaque
;
522 void qemu_balloon(ram_addr_t target
)
524 if (qemu_balloon_event
)
525 qemu_balloon_event(qemu_balloon_event_opaque
, target
);
528 ram_addr_t
qemu_balloon_status(void)
530 if (qemu_balloon_event
)
531 return qemu_balloon_event(qemu_balloon_event_opaque
, 0);
535 /***********************************************************/
538 static QEMUPutKBDEvent
*qemu_put_kbd_event
;
539 static void *qemu_put_kbd_event_opaque
;
540 static QEMUPutMouseEntry
*qemu_put_mouse_event_head
;
541 static QEMUPutMouseEntry
*qemu_put_mouse_event_current
;
543 void qemu_add_kbd_event_handler(QEMUPutKBDEvent
*func
, void *opaque
)
545 qemu_put_kbd_event_opaque
= opaque
;
546 qemu_put_kbd_event
= func
;
549 QEMUPutMouseEntry
*qemu_add_mouse_event_handler(QEMUPutMouseEvent
*func
,
550 void *opaque
, int absolute
,
553 QEMUPutMouseEntry
*s
, *cursor
;
555 s
= qemu_mallocz(sizeof(QEMUPutMouseEntry
));
557 s
->qemu_put_mouse_event
= func
;
558 s
->qemu_put_mouse_event_opaque
= opaque
;
559 s
->qemu_put_mouse_event_absolute
= absolute
;
560 s
->qemu_put_mouse_event_name
= qemu_strdup(name
);
563 if (!qemu_put_mouse_event_head
) {
564 qemu_put_mouse_event_head
= qemu_put_mouse_event_current
= s
;
568 cursor
= qemu_put_mouse_event_head
;
569 while (cursor
->next
!= NULL
)
570 cursor
= cursor
->next
;
573 qemu_put_mouse_event_current
= s
;
578 void qemu_remove_mouse_event_handler(QEMUPutMouseEntry
*entry
)
580 QEMUPutMouseEntry
*prev
= NULL
, *cursor
;
582 if (!qemu_put_mouse_event_head
|| entry
== NULL
)
585 cursor
= qemu_put_mouse_event_head
;
586 while (cursor
!= NULL
&& cursor
!= entry
) {
588 cursor
= cursor
->next
;
591 if (cursor
== NULL
) // does not exist or list empty
593 else if (prev
== NULL
) { // entry is head
594 qemu_put_mouse_event_head
= cursor
->next
;
595 if (qemu_put_mouse_event_current
== entry
)
596 qemu_put_mouse_event_current
= cursor
->next
;
597 qemu_free(entry
->qemu_put_mouse_event_name
);
602 prev
->next
= entry
->next
;
604 if (qemu_put_mouse_event_current
== entry
)
605 qemu_put_mouse_event_current
= prev
;
607 qemu_free(entry
->qemu_put_mouse_event_name
);
611 void kbd_put_keycode(int keycode
)
613 if (qemu_put_kbd_event
) {
614 qemu_put_kbd_event(qemu_put_kbd_event_opaque
, keycode
);
618 void kbd_mouse_event(int dx
, int dy
, int dz
, int buttons_state
)
620 QEMUPutMouseEvent
*mouse_event
;
621 void *mouse_event_opaque
;
624 if (!qemu_put_mouse_event_current
) {
629 qemu_put_mouse_event_current
->qemu_put_mouse_event
;
631 qemu_put_mouse_event_current
->qemu_put_mouse_event_opaque
;
634 if (graphic_rotate
) {
635 if (qemu_put_mouse_event_current
->qemu_put_mouse_event_absolute
)
638 width
= graphic_width
- 1;
639 mouse_event(mouse_event_opaque
,
640 width
- dy
, dx
, dz
, buttons_state
);
642 mouse_event(mouse_event_opaque
,
643 dx
, dy
, dz
, buttons_state
);
647 int kbd_mouse_is_absolute(void)
649 if (!qemu_put_mouse_event_current
)
652 return qemu_put_mouse_event_current
->qemu_put_mouse_event_absolute
;
655 void do_info_mice(void)
657 QEMUPutMouseEntry
*cursor
;
660 if (!qemu_put_mouse_event_head
) {
661 term_printf("No mouse devices connected\n");
665 term_printf("Mouse devices available:\n");
666 cursor
= qemu_put_mouse_event_head
;
667 while (cursor
!= NULL
) {
668 term_printf("%c Mouse #%d: %s\n",
669 (cursor
== qemu_put_mouse_event_current
? '*' : ' '),
670 index
, cursor
->qemu_put_mouse_event_name
);
672 cursor
= cursor
->next
;
676 void do_mouse_set(int index
)
678 QEMUPutMouseEntry
*cursor
;
681 if (!qemu_put_mouse_event_head
) {
682 term_printf("No mouse devices connected\n");
686 cursor
= qemu_put_mouse_event_head
;
687 while (cursor
!= NULL
&& index
!= i
) {
689 cursor
= cursor
->next
;
693 qemu_put_mouse_event_current
= cursor
;
695 term_printf("Mouse at given index not found\n");
698 /* compute with 96 bit intermediate result: (a*b)/c */
699 uint64_t muldiv64(uint64_t a
, uint32_t b
, uint32_t c
)
704 #ifdef WORDS_BIGENDIAN
714 rl
= (uint64_t)u
.l
.low
* (uint64_t)b
;
715 rh
= (uint64_t)u
.l
.high
* (uint64_t)b
;
718 res
.l
.low
= (((rh
% c
) << 32) + (rl
& 0xffffffff)) / c
;
722 /***********************************************************/
723 /* real time host monotonic timer */
725 #define QEMU_TIMER_BASE 1000000000LL
729 static int64_t clock_freq
;
731 static void init_get_clock(void)
735 ret
= QueryPerformanceFrequency(&freq
);
737 fprintf(stderr
, "Could not calibrate ticks\n");
740 clock_freq
= freq
.QuadPart
;
743 static int64_t get_clock(void)
746 QueryPerformanceCounter(&ti
);
747 return muldiv64(ti
.QuadPart
, QEMU_TIMER_BASE
, clock_freq
);
752 static int use_rt_clock
;
754 static void init_get_clock(void)
757 #if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD_version >= 500000)
760 if (clock_gettime(CLOCK_MONOTONIC
, &ts
) == 0) {
767 static int64_t get_clock(void)
769 #if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD_version >= 500000)
772 clock_gettime(CLOCK_MONOTONIC
, &ts
);
773 return ts
.tv_sec
* 1000000000LL + ts
.tv_nsec
;
777 /* XXX: using gettimeofday leads to problems if the date
778 changes, so it should be avoided. */
780 gettimeofday(&tv
, NULL
);
781 return tv
.tv_sec
* 1000000000LL + (tv
.tv_usec
* 1000);
786 /* Return the virtual CPU time, based on the instruction counter. */
787 static int64_t cpu_get_icount(void)
790 CPUState
*env
= cpu_single_env
;;
791 icount
= qemu_icount
;
794 fprintf(stderr
, "Bad clock read\n");
795 icount
-= (env
->icount_decr
.u16
.low
+ env
->icount_extra
);
797 return qemu_icount_bias
+ (icount
<< icount_time_shift
);
800 /***********************************************************/
801 /* guest cycle counter */
803 static int64_t cpu_ticks_prev
;
804 static int64_t cpu_ticks_offset
;
805 static int64_t cpu_clock_offset
;
806 static int cpu_ticks_enabled
;
808 /* return the host CPU cycle counter and handle stop/restart */
809 int64_t cpu_get_ticks(void)
812 return cpu_get_icount();
814 if (!cpu_ticks_enabled
) {
815 return cpu_ticks_offset
;
818 ticks
= cpu_get_real_ticks();
819 if (cpu_ticks_prev
> ticks
) {
820 /* Note: non increasing ticks may happen if the host uses
822 cpu_ticks_offset
+= cpu_ticks_prev
- ticks
;
824 cpu_ticks_prev
= ticks
;
825 return ticks
+ cpu_ticks_offset
;
829 /* return the host CPU monotonic timer and handle stop/restart */
830 static int64_t cpu_get_clock(void)
833 if (!cpu_ticks_enabled
) {
834 return cpu_clock_offset
;
837 return ti
+ cpu_clock_offset
;
841 /* enable cpu_get_ticks() */
842 void cpu_enable_ticks(void)
844 if (!cpu_ticks_enabled
) {
845 cpu_ticks_offset
-= cpu_get_real_ticks();
846 cpu_clock_offset
-= get_clock();
847 cpu_ticks_enabled
= 1;
851 /* disable cpu_get_ticks() : the clock is stopped. You must not call
852 cpu_get_ticks() after that. */
853 void cpu_disable_ticks(void)
855 if (cpu_ticks_enabled
) {
856 cpu_ticks_offset
= cpu_get_ticks();
857 cpu_clock_offset
= cpu_get_clock();
858 cpu_ticks_enabled
= 0;
862 /***********************************************************/
865 #define QEMU_TIMER_REALTIME 0
866 #define QEMU_TIMER_VIRTUAL 1
870 /* XXX: add frequency */
878 struct QEMUTimer
*next
;
881 struct qemu_alarm_timer
{
885 int (*start
)(struct qemu_alarm_timer
*t
);
886 void (*stop
)(struct qemu_alarm_timer
*t
);
887 void (*rearm
)(struct qemu_alarm_timer
*t
);
891 #define ALARM_FLAG_DYNTICKS 0x1
892 #define ALARM_FLAG_EXPIRED 0x2
894 static inline int alarm_has_dynticks(struct qemu_alarm_timer
*t
)
896 return t
->flags
& ALARM_FLAG_DYNTICKS
;
899 static void qemu_rearm_alarm_timer(struct qemu_alarm_timer
*t
)
901 if (!alarm_has_dynticks(t
))
907 /* TODO: MIN_TIMER_REARM_US should be optimized */
908 #define MIN_TIMER_REARM_US 250
910 static struct qemu_alarm_timer
*alarm_timer
;
912 static int alarm_timer_rfd
, alarm_timer_wfd
;
917 struct qemu_alarm_win32
{
921 } alarm_win32_data
= {0, NULL
, -1};
923 static int win32_start_timer(struct qemu_alarm_timer
*t
);
924 static void win32_stop_timer(struct qemu_alarm_timer
*t
);
925 static void win32_rearm_timer(struct qemu_alarm_timer
*t
);
929 static int unix_start_timer(struct qemu_alarm_timer
*t
);
930 static void unix_stop_timer(struct qemu_alarm_timer
*t
);
934 static int dynticks_start_timer(struct qemu_alarm_timer
*t
);
935 static void dynticks_stop_timer(struct qemu_alarm_timer
*t
);
936 static void dynticks_rearm_timer(struct qemu_alarm_timer
*t
);
938 static int hpet_start_timer(struct qemu_alarm_timer
*t
);
939 static void hpet_stop_timer(struct qemu_alarm_timer
*t
);
941 static int rtc_start_timer(struct qemu_alarm_timer
*t
);
942 static void rtc_stop_timer(struct qemu_alarm_timer
*t
);
944 #endif /* __linux__ */
948 /* Correlation between real and virtual time is always going to be
949 fairly approximate, so ignore small variation.
950 When the guest is idle real and virtual time will be aligned in
952 #define ICOUNT_WOBBLE (QEMU_TIMER_BASE / 10)
954 static void icount_adjust(void)
959 static int64_t last_delta
;
960 /* If the VM is not running, then do nothing. */
964 cur_time
= cpu_get_clock();
965 cur_icount
= qemu_get_clock(vm_clock
);
966 delta
= cur_icount
- cur_time
;
967 /* FIXME: This is a very crude algorithm, somewhat prone to oscillation. */
969 && last_delta
+ ICOUNT_WOBBLE
< delta
* 2
970 && icount_time_shift
> 0) {
971 /* The guest is getting too far ahead. Slow time down. */
975 && last_delta
- ICOUNT_WOBBLE
> delta
* 2
976 && icount_time_shift
< MAX_ICOUNT_SHIFT
) {
977 /* The guest is getting too far behind. Speed time up. */
981 qemu_icount_bias
= cur_icount
- (qemu_icount
<< icount_time_shift
);
984 static void icount_adjust_rt(void * opaque
)
986 qemu_mod_timer(icount_rt_timer
,
987 qemu_get_clock(rt_clock
) + 1000);
991 static void icount_adjust_vm(void * opaque
)
993 qemu_mod_timer(icount_vm_timer
,
994 qemu_get_clock(vm_clock
) + QEMU_TIMER_BASE
/ 10);
998 static void init_icount_adjust(void)
1000 /* Have both realtime and virtual time triggers for speed adjustment.
1001 The realtime trigger catches emulated time passing too slowly,
1002 the virtual time trigger catches emulated time passing too fast.
1003 Realtime triggers occur even when idle, so use them less frequently
1004 than VM triggers. */
1005 icount_rt_timer
= qemu_new_timer(rt_clock
, icount_adjust_rt
, NULL
);
1006 qemu_mod_timer(icount_rt_timer
,
1007 qemu_get_clock(rt_clock
) + 1000);
1008 icount_vm_timer
= qemu_new_timer(vm_clock
, icount_adjust_vm
, NULL
);
1009 qemu_mod_timer(icount_vm_timer
,
1010 qemu_get_clock(vm_clock
) + QEMU_TIMER_BASE
/ 10);
1013 static struct qemu_alarm_timer alarm_timers
[] = {
1016 {"dynticks", ALARM_FLAG_DYNTICKS
, dynticks_start_timer
,
1017 dynticks_stop_timer
, dynticks_rearm_timer
, NULL
},
1018 /* HPET - if available - is preferred */
1019 {"hpet", 0, hpet_start_timer
, hpet_stop_timer
, NULL
, NULL
},
1020 /* ...otherwise try RTC */
1021 {"rtc", 0, rtc_start_timer
, rtc_stop_timer
, NULL
, NULL
},
1023 {"unix", 0, unix_start_timer
, unix_stop_timer
, NULL
, NULL
},
1025 {"dynticks", ALARM_FLAG_DYNTICKS
, win32_start_timer
,
1026 win32_stop_timer
, win32_rearm_timer
, &alarm_win32_data
},
1027 {"win32", 0, win32_start_timer
,
1028 win32_stop_timer
, NULL
, &alarm_win32_data
},
1033 static void show_available_alarms(void)
1037 printf("Available alarm timers, in order of precedence:\n");
1038 for (i
= 0; alarm_timers
[i
].name
; i
++)
1039 printf("%s\n", alarm_timers
[i
].name
);
1042 static void configure_alarms(char const *opt
)
1046 int count
= ARRAY_SIZE(alarm_timers
) - 1;
1049 struct qemu_alarm_timer tmp
;
1051 if (!strcmp(opt
, "?")) {
1052 show_available_alarms();
1058 /* Reorder the array */
1059 name
= strtok(arg
, ",");
1061 for (i
= 0; i
< count
&& alarm_timers
[i
].name
; i
++) {
1062 if (!strcmp(alarm_timers
[i
].name
, name
))
1067 fprintf(stderr
, "Unknown clock %s\n", name
);
1076 tmp
= alarm_timers
[i
];
1077 alarm_timers
[i
] = alarm_timers
[cur
];
1078 alarm_timers
[cur
] = tmp
;
1082 name
= strtok(NULL
, ",");
1088 /* Disable remaining timers */
1089 for (i
= cur
; i
< count
; i
++)
1090 alarm_timers
[i
].name
= NULL
;
1092 show_available_alarms();
1097 QEMUClock
*rt_clock
;
1098 QEMUClock
*vm_clock
;
1100 static QEMUTimer
*active_timers
[2];
1102 static QEMUClock
*qemu_new_clock(int type
)
1105 clock
= qemu_mallocz(sizeof(QEMUClock
));
1110 QEMUTimer
*qemu_new_timer(QEMUClock
*clock
, QEMUTimerCB
*cb
, void *opaque
)
1114 ts
= qemu_mallocz(sizeof(QEMUTimer
));
1117 ts
->opaque
= opaque
;
1121 void qemu_free_timer(QEMUTimer
*ts
)
1126 /* stop a timer, but do not dealloc it */
1127 void qemu_del_timer(QEMUTimer
*ts
)
1131 /* NOTE: this code must be signal safe because
1132 qemu_timer_expired() can be called from a signal. */
1133 pt
= &active_timers
[ts
->clock
->type
];
1146 /* modify the current timer so that it will be fired when current_time
1147 >= expire_time. The corresponding callback will be called. */
1148 void qemu_mod_timer(QEMUTimer
*ts
, int64_t expire_time
)
1154 /* add the timer in the sorted list */
1155 /* NOTE: this code must be signal safe because
1156 qemu_timer_expired() can be called from a signal. */
1157 pt
= &active_timers
[ts
->clock
->type
];
1162 if (t
->expire_time
> expire_time
)
1166 ts
->expire_time
= expire_time
;
1170 /* Rearm if necessary */
1171 if (pt
== &active_timers
[ts
->clock
->type
]) {
1172 if ((alarm_timer
->flags
& ALARM_FLAG_EXPIRED
) == 0) {
1173 qemu_rearm_alarm_timer(alarm_timer
);
1175 /* Interrupt execution to force deadline recalculation. */
1176 if (use_icount
&& cpu_single_env
) {
1177 cpu_interrupt(cpu_single_env
, CPU_INTERRUPT_EXIT
);
1182 int qemu_timer_pending(QEMUTimer
*ts
)
1185 for(t
= active_timers
[ts
->clock
->type
]; t
!= NULL
; t
= t
->next
) {
1192 static inline int qemu_timer_expired(QEMUTimer
*timer_head
, int64_t current_time
)
1196 return (timer_head
->expire_time
<= current_time
);
1199 static void qemu_run_timers(QEMUTimer
**ptimer_head
, int64_t current_time
)
1205 if (!ts
|| ts
->expire_time
> current_time
)
1207 /* remove timer from the list before calling the callback */
1208 *ptimer_head
= ts
->next
;
1211 /* run the callback (the timer list can be modified) */
1216 int64_t qemu_get_clock(QEMUClock
*clock
)
1218 switch(clock
->type
) {
1219 case QEMU_TIMER_REALTIME
:
1220 return get_clock() / 1000000;
1222 case QEMU_TIMER_VIRTUAL
:
1224 return cpu_get_icount();
1226 return cpu_get_clock();
1231 static void init_timers(void)
1234 ticks_per_sec
= QEMU_TIMER_BASE
;
1235 rt_clock
= qemu_new_clock(QEMU_TIMER_REALTIME
);
1236 vm_clock
= qemu_new_clock(QEMU_TIMER_VIRTUAL
);
1240 void qemu_put_timer(QEMUFile
*f
, QEMUTimer
*ts
)
1242 uint64_t expire_time
;
1244 if (qemu_timer_pending(ts
)) {
1245 expire_time
= ts
->expire_time
;
1249 qemu_put_be64(f
, expire_time
);
1252 void qemu_get_timer(QEMUFile
*f
, QEMUTimer
*ts
)
1254 uint64_t expire_time
;
1256 expire_time
= qemu_get_be64(f
);
1257 if (expire_time
!= -1) {
1258 qemu_mod_timer(ts
, expire_time
);
1264 static void timer_save(QEMUFile
*f
, void *opaque
)
1266 if (cpu_ticks_enabled
) {
1267 hw_error("cannot save state if virtual timers are running");
1269 qemu_put_be64(f
, cpu_ticks_offset
);
1270 qemu_put_be64(f
, ticks_per_sec
);
1271 qemu_put_be64(f
, cpu_clock_offset
);
1274 static int timer_load(QEMUFile
*f
, void *opaque
, int version_id
)
1276 if (version_id
!= 1 && version_id
!= 2)
1278 if (cpu_ticks_enabled
) {
1281 cpu_ticks_offset
=qemu_get_be64(f
);
1282 ticks_per_sec
=qemu_get_be64(f
);
1283 if (version_id
== 2) {
1284 cpu_clock_offset
=qemu_get_be64(f
);
1290 void CALLBACK
host_alarm_handler(UINT uTimerID
, UINT uMsg
,
1291 DWORD_PTR dwUser
, DWORD_PTR dw1
, DWORD_PTR dw2
)
1293 static void host_alarm_handler(int host_signum
)
1297 #define DISP_FREQ 1000
1299 static int64_t delta_min
= INT64_MAX
;
1300 static int64_t delta_max
, delta_cum
, last_clock
, delta
, ti
;
1302 ti
= qemu_get_clock(vm_clock
);
1303 if (last_clock
!= 0) {
1304 delta
= ti
- last_clock
;
1305 if (delta
< delta_min
)
1307 if (delta
> delta_max
)
1310 if (++count
== DISP_FREQ
) {
1311 printf("timer: min=%" PRId64
" us max=%" PRId64
" us avg=%" PRId64
" us avg_freq=%0.3f Hz\n",
1312 muldiv64(delta_min
, 1000000, ticks_per_sec
),
1313 muldiv64(delta_max
, 1000000, ticks_per_sec
),
1314 muldiv64(delta_cum
, 1000000 / DISP_FREQ
, ticks_per_sec
),
1315 (double)ticks_per_sec
/ ((double)delta_cum
/ DISP_FREQ
));
1317 delta_min
= INT64_MAX
;
1325 if (alarm_has_dynticks(alarm_timer
) ||
1327 qemu_timer_expired(active_timers
[QEMU_TIMER_VIRTUAL
],
1328 qemu_get_clock(vm_clock
))) ||
1329 qemu_timer_expired(active_timers
[QEMU_TIMER_REALTIME
],
1330 qemu_get_clock(rt_clock
))) {
1331 CPUState
*env
= next_cpu
;
1334 struct qemu_alarm_win32
*data
= ((struct qemu_alarm_timer
*)dwUser
)->priv
;
1335 SetEvent(data
->host_alarm
);
1337 static const char byte
= 0;
1338 write(alarm_timer_wfd
, &byte
, sizeof(byte
));
1340 alarm_timer
->flags
|= ALARM_FLAG_EXPIRED
;
1343 /* stop the currently executing cpu because a timer occured */
1344 cpu_interrupt(env
, CPU_INTERRUPT_EXIT
);
1346 if (env
->kqemu_enabled
) {
1347 kqemu_cpu_interrupt(env
);
1355 static int64_t qemu_next_deadline(void)
1359 if (active_timers
[QEMU_TIMER_VIRTUAL
]) {
1360 delta
= active_timers
[QEMU_TIMER_VIRTUAL
]->expire_time
-
1361 qemu_get_clock(vm_clock
);
1363 /* To avoid problems with overflow limit this to 2^32. */
1373 #if defined(__linux__) || defined(_WIN32)
1374 static uint64_t qemu_next_deadline_dyntick(void)
1382 delta
= (qemu_next_deadline() + 999) / 1000;
1384 if (active_timers
[QEMU_TIMER_REALTIME
]) {
1385 rtdelta
= (active_timers
[QEMU_TIMER_REALTIME
]->expire_time
-
1386 qemu_get_clock(rt_clock
))*1000;
1387 if (rtdelta
< delta
)
1391 if (delta
< MIN_TIMER_REARM_US
)
1392 delta
= MIN_TIMER_REARM_US
;
1400 /* Sets a specific flag */
1401 static int fcntl_setfl(int fd
, int flag
)
1405 flags
= fcntl(fd
, F_GETFL
);
1409 if (fcntl(fd
, F_SETFL
, flags
| flag
) == -1)
1415 #if defined(__linux__)
1417 #define RTC_FREQ 1024
1419 static void enable_sigio_timer(int fd
)
1421 struct sigaction act
;
1424 sigfillset(&act
.sa_mask
);
1426 act
.sa_handler
= host_alarm_handler
;
1428 sigaction(SIGIO
, &act
, NULL
);
1429 fcntl_setfl(fd
, O_ASYNC
);
1430 fcntl(fd
, F_SETOWN
, getpid());
1433 static int hpet_start_timer(struct qemu_alarm_timer
*t
)
1435 struct hpet_info info
;
1438 fd
= open("/dev/hpet", O_RDONLY
);
1443 r
= ioctl(fd
, HPET_IRQFREQ
, RTC_FREQ
);
1445 fprintf(stderr
, "Could not configure '/dev/hpet' to have a 1024Hz timer. This is not a fatal\n"
1446 "error, but for better emulation accuracy type:\n"
1447 "'echo 1024 > /proc/sys/dev/hpet/max-user-freq' as root.\n");
1451 /* Check capabilities */
1452 r
= ioctl(fd
, HPET_INFO
, &info
);
1456 /* Enable periodic mode */
1457 r
= ioctl(fd
, HPET_EPI
, 0);
1458 if (info
.hi_flags
&& (r
< 0))
1461 /* Enable interrupt */
1462 r
= ioctl(fd
, HPET_IE_ON
, 0);
1466 enable_sigio_timer(fd
);
1467 t
->priv
= (void *)(long)fd
;
1475 static void hpet_stop_timer(struct qemu_alarm_timer
*t
)
1477 int fd
= (long)t
->priv
;
1482 static int rtc_start_timer(struct qemu_alarm_timer
*t
)
1485 unsigned long current_rtc_freq
= 0;
1487 TFR(rtc_fd
= open("/dev/rtc", O_RDONLY
));
1490 ioctl(rtc_fd
, RTC_IRQP_READ
, ¤t_rtc_freq
);
1491 if (current_rtc_freq
!= RTC_FREQ
&&
1492 ioctl(rtc_fd
, RTC_IRQP_SET
, RTC_FREQ
) < 0) {
1493 fprintf(stderr
, "Could not configure '/dev/rtc' to have a 1024 Hz timer. This is not a fatal\n"
1494 "error, but for better emulation accuracy either use a 2.6 host Linux kernel or\n"
1495 "type 'echo 1024 > /proc/sys/dev/rtc/max-user-freq' as root.\n");
1498 if (ioctl(rtc_fd
, RTC_PIE_ON
, 0) < 0) {
1504 enable_sigio_timer(rtc_fd
);
1506 t
->priv
= (void *)(long)rtc_fd
;
1511 static void rtc_stop_timer(struct qemu_alarm_timer
*t
)
1513 int rtc_fd
= (long)t
->priv
;
1518 static int dynticks_start_timer(struct qemu_alarm_timer
*t
)
1522 struct sigaction act
;
1524 sigfillset(&act
.sa_mask
);
1526 act
.sa_handler
= host_alarm_handler
;
1528 sigaction(SIGALRM
, &act
, NULL
);
1530 ev
.sigev_value
.sival_int
= 0;
1531 ev
.sigev_notify
= SIGEV_SIGNAL
;
1532 ev
.sigev_signo
= SIGALRM
;
1534 if (timer_create(CLOCK_REALTIME
, &ev
, &host_timer
)) {
1535 perror("timer_create");
1537 /* disable dynticks */
1538 fprintf(stderr
, "Dynamic Ticks disabled\n");
1543 t
->priv
= (void *)(long)host_timer
;
1548 static void dynticks_stop_timer(struct qemu_alarm_timer
*t
)
1550 timer_t host_timer
= (timer_t
)(long)t
->priv
;
1552 timer_delete(host_timer
);
1555 static void dynticks_rearm_timer(struct qemu_alarm_timer
*t
)
1557 timer_t host_timer
= (timer_t
)(long)t
->priv
;
1558 struct itimerspec timeout
;
1559 int64_t nearest_delta_us
= INT64_MAX
;
1562 if (!active_timers
[QEMU_TIMER_REALTIME
] &&
1563 !active_timers
[QEMU_TIMER_VIRTUAL
])
1566 nearest_delta_us
= qemu_next_deadline_dyntick();
1568 /* check whether a timer is already running */
1569 if (timer_gettime(host_timer
, &timeout
)) {
1571 fprintf(stderr
, "Internal timer error: aborting\n");
1574 current_us
= timeout
.it_value
.tv_sec
* 1000000 + timeout
.it_value
.tv_nsec
/1000;
1575 if (current_us
&& current_us
<= nearest_delta_us
)
1578 timeout
.it_interval
.tv_sec
= 0;
1579 timeout
.it_interval
.tv_nsec
= 0; /* 0 for one-shot timer */
1580 timeout
.it_value
.tv_sec
= nearest_delta_us
/ 1000000;
1581 timeout
.it_value
.tv_nsec
= (nearest_delta_us
% 1000000) * 1000;
1582 if (timer_settime(host_timer
, 0 /* RELATIVE */, &timeout
, NULL
)) {
1584 fprintf(stderr
, "Internal timer error: aborting\n");
1589 #endif /* defined(__linux__) */
1591 static int unix_start_timer(struct qemu_alarm_timer
*t
)
1593 struct sigaction act
;
1594 struct itimerval itv
;
1598 sigfillset(&act
.sa_mask
);
1600 act
.sa_handler
= host_alarm_handler
;
1602 sigaction(SIGALRM
, &act
, NULL
);
1604 itv
.it_interval
.tv_sec
= 0;
1605 /* for i386 kernel 2.6 to get 1 ms */
1606 itv
.it_interval
.tv_usec
= 999;
1607 itv
.it_value
.tv_sec
= 0;
1608 itv
.it_value
.tv_usec
= 10 * 1000;
1610 err
= setitimer(ITIMER_REAL
, &itv
, NULL
);
1617 static void unix_stop_timer(struct qemu_alarm_timer
*t
)
1619 struct itimerval itv
;
1621 memset(&itv
, 0, sizeof(itv
));
1622 setitimer(ITIMER_REAL
, &itv
, NULL
);
1625 #endif /* !defined(_WIN32) */
1627 static void try_to_rearm_timer(void *opaque
)
1629 struct qemu_alarm_timer
*t
= opaque
;
1633 /* Drain the notify pipe */
1636 len
= read(alarm_timer_rfd
, buffer
, sizeof(buffer
));
1637 } while ((len
== -1 && errno
== EINTR
) || len
> 0);
1640 if (t
->flags
& ALARM_FLAG_EXPIRED
) {
1641 alarm_timer
->flags
&= ~ALARM_FLAG_EXPIRED
;
1642 qemu_rearm_alarm_timer(alarm_timer
);
1648 static int win32_start_timer(struct qemu_alarm_timer
*t
)
1651 struct qemu_alarm_win32
*data
= t
->priv
;
1654 data
->host_alarm
= CreateEvent(NULL
, FALSE
, FALSE
, NULL
);
1655 if (!data
->host_alarm
) {
1656 perror("Failed CreateEvent");
1660 memset(&tc
, 0, sizeof(tc
));
1661 timeGetDevCaps(&tc
, sizeof(tc
));
1663 if (data
->period
< tc
.wPeriodMin
)
1664 data
->period
= tc
.wPeriodMin
;
1666 timeBeginPeriod(data
->period
);
1668 flags
= TIME_CALLBACK_FUNCTION
;
1669 if (alarm_has_dynticks(t
))
1670 flags
|= TIME_ONESHOT
;
1672 flags
|= TIME_PERIODIC
;
1674 data
->timerId
= timeSetEvent(1, // interval (ms)
1675 data
->period
, // resolution
1676 host_alarm_handler
, // function
1677 (DWORD
)t
, // parameter
1680 if (!data
->timerId
) {
1681 perror("Failed to initialize win32 alarm timer");
1683 timeEndPeriod(data
->period
);
1684 CloseHandle(data
->host_alarm
);
1688 qemu_add_wait_object(data
->host_alarm
, try_to_rearm_timer
, t
);
1693 static void win32_stop_timer(struct qemu_alarm_timer
*t
)
1695 struct qemu_alarm_win32
*data
= t
->priv
;
1697 timeKillEvent(data
->timerId
);
1698 timeEndPeriod(data
->period
);
1700 CloseHandle(data
->host_alarm
);
1703 static void win32_rearm_timer(struct qemu_alarm_timer
*t
)
1705 struct qemu_alarm_win32
*data
= t
->priv
;
1706 uint64_t nearest_delta_us
;
1708 if (!active_timers
[QEMU_TIMER_REALTIME
] &&
1709 !active_timers
[QEMU_TIMER_VIRTUAL
])
1712 nearest_delta_us
= qemu_next_deadline_dyntick();
1713 nearest_delta_us
/= 1000;
1715 timeKillEvent(data
->timerId
);
1717 data
->timerId
= timeSetEvent(1,
1721 TIME_ONESHOT
| TIME_PERIODIC
);
1723 if (!data
->timerId
) {
1724 perror("Failed to re-arm win32 alarm timer");
1726 timeEndPeriod(data
->period
);
1727 CloseHandle(data
->host_alarm
);
1734 static int init_timer_alarm(void)
1736 struct qemu_alarm_timer
*t
= NULL
;
1746 err
= fcntl_setfl(fds
[0], O_NONBLOCK
);
1750 err
= fcntl_setfl(fds
[1], O_NONBLOCK
);
1754 alarm_timer_rfd
= fds
[0];
1755 alarm_timer_wfd
= fds
[1];
1758 for (i
= 0; alarm_timers
[i
].name
; i
++) {
1759 t
= &alarm_timers
[i
];
1772 qemu_set_fd_handler2(alarm_timer_rfd
, NULL
,
1773 try_to_rearm_timer
, NULL
, t
);
1788 static void quit_timers(void)
1790 alarm_timer
->stop(alarm_timer
);
1794 /***********************************************************/
1795 /* host time/date access */
1796 void qemu_get_timedate(struct tm
*tm
, int offset
)
1803 if (rtc_date_offset
== -1) {
1807 ret
= localtime(&ti
);
1809 ti
-= rtc_date_offset
;
1813 memcpy(tm
, ret
, sizeof(struct tm
));
1816 int qemu_timedate_diff(struct tm
*tm
)
1820 if (rtc_date_offset
== -1)
1822 seconds
= mktimegm(tm
);
1824 seconds
= mktime(tm
);
1826 seconds
= mktimegm(tm
) + rtc_date_offset
;
1828 return seconds
- time(NULL
);
1832 static void socket_cleanup(void)
1837 static int socket_init(void)
1842 ret
= WSAStartup(MAKEWORD(2,2), &Data
);
1844 err
= WSAGetLastError();
1845 fprintf(stderr
, "WSAStartup: %d\n", err
);
1848 atexit(socket_cleanup
);
1853 const char *get_opt_name(char *buf
, int buf_size
, const char *p
)
1858 while (*p
!= '\0' && *p
!= '=') {
1859 if (q
&& (q
- buf
) < buf_size
- 1)
1869 const char *get_opt_value(char *buf
, int buf_size
, const char *p
)
1874 while (*p
!= '\0') {
1876 if (*(p
+ 1) != ',')
1880 if (q
&& (q
- buf
) < buf_size
- 1)
1890 int get_param_value(char *buf
, int buf_size
,
1891 const char *tag
, const char *str
)
1898 p
= get_opt_name(option
, sizeof(option
), p
);
1902 if (!strcmp(tag
, option
)) {
1903 (void)get_opt_value(buf
, buf_size
, p
);
1906 p
= get_opt_value(NULL
, 0, p
);
1915 int check_params(char *buf
, int buf_size
,
1916 const char * const *params
, const char *str
)
1923 p
= get_opt_name(buf
, buf_size
, p
);
1927 for(i
= 0; params
[i
] != NULL
; i
++)
1928 if (!strcmp(params
[i
], buf
))
1930 if (params
[i
] == NULL
)
1932 p
= get_opt_value(NULL
, 0, p
);
1940 /***********************************************************/
1941 /* Bluetooth support */
1944 static struct HCIInfo
*hci_table
[MAX_NICS
];
1946 static struct bt_vlan_s
{
1947 struct bt_scatternet_s net
;
1949 struct bt_vlan_s
*next
;
1952 /* find or alloc a new bluetooth "VLAN" */
1953 static struct bt_scatternet_s
*qemu_find_bt_vlan(int id
)
1955 struct bt_vlan_s
**pvlan
, *vlan
;
1956 for (vlan
= first_bt_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
1960 vlan
= qemu_mallocz(sizeof(struct bt_vlan_s
));
1962 pvlan
= &first_bt_vlan
;
1963 while (*pvlan
!= NULL
)
1964 pvlan
= &(*pvlan
)->next
;
1969 static void null_hci_send(struct HCIInfo
*hci
, const uint8_t *data
, int len
)
1973 static int null_hci_addr_set(struct HCIInfo
*hci
, const uint8_t *bd_addr
)
1978 static struct HCIInfo null_hci
= {
1979 .cmd_send
= null_hci_send
,
1980 .sco_send
= null_hci_send
,
1981 .acl_send
= null_hci_send
,
1982 .bdaddr_set
= null_hci_addr_set
,
1985 struct HCIInfo
*qemu_next_hci(void)
1987 if (cur_hci
== nb_hcis
)
1990 return hci_table
[cur_hci
++];
1993 static struct HCIInfo
*hci_init(const char *str
)
1996 struct bt_scatternet_s
*vlan
= 0;
1998 if (!strcmp(str
, "null"))
2001 else if (!strncmp(str
, "host", 4) && (str
[4] == '\0' || str
[4] == ':'))
2003 return bt_host_hci(str
[4] ? str
+ 5 : "hci0");
2004 else if (!strncmp(str
, "hci", 3)) {
2007 if (!strncmp(str
+ 3, ",vlan=", 6)) {
2008 vlan
= qemu_find_bt_vlan(strtol(str
+ 9, &endp
, 0));
2013 vlan
= qemu_find_bt_vlan(0);
2015 return bt_new_hci(vlan
);
2018 fprintf(stderr
, "qemu: Unknown bluetooth HCI `%s'.\n", str
);
2023 static int bt_hci_parse(const char *str
)
2025 struct HCIInfo
*hci
;
2028 if (nb_hcis
>= MAX_NICS
) {
2029 fprintf(stderr
, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS
);
2033 hci
= hci_init(str
);
2042 bdaddr
.b
[5] = 0x56 + nb_hcis
;
2043 hci
->bdaddr_set(hci
, bdaddr
.b
);
2045 hci_table
[nb_hcis
++] = hci
;
2050 static void bt_vhci_add(int vlan_id
)
2052 struct bt_scatternet_s
*vlan
= qemu_find_bt_vlan(vlan_id
);
2055 fprintf(stderr
, "qemu: warning: adding a VHCI to "
2056 "an empty scatternet %i\n", vlan_id
);
2058 bt_vhci_init(bt_new_hci(vlan
));
2061 static struct bt_device_s
*bt_device_add(const char *opt
)
2063 struct bt_scatternet_s
*vlan
;
2065 char *endp
= strstr(opt
, ",vlan=");
2066 int len
= (endp
? endp
- opt
: strlen(opt
)) + 1;
2069 pstrcpy(devname
, MIN(sizeof(devname
), len
), opt
);
2072 vlan_id
= strtol(endp
+ 6, &endp
, 0);
2074 fprintf(stderr
, "qemu: unrecognised bluetooth vlan Id\n");
2079 vlan
= qemu_find_bt_vlan(vlan_id
);
2082 fprintf(stderr
, "qemu: warning: adding a slave device to "
2083 "an empty scatternet %i\n", vlan_id
);
2085 if (!strcmp(devname
, "keyboard"))
2086 return bt_keyboard_init(vlan
);
2088 fprintf(stderr
, "qemu: unsupported bluetooth device `%s'\n", devname
);
2092 static int bt_parse(const char *opt
)
2094 const char *endp
, *p
;
2097 if (strstart(opt
, "hci", &endp
)) {
2098 if (!*endp
|| *endp
== ',') {
2100 if (!strstart(endp
, ",vlan=", 0))
2103 return bt_hci_parse(opt
);
2105 } else if (strstart(opt
, "vhci", &endp
)) {
2106 if (!*endp
|| *endp
== ',') {
2108 if (strstart(endp
, ",vlan=", &p
)) {
2109 vlan
= strtol(p
, (char **) &endp
, 0);
2111 fprintf(stderr
, "qemu: bad scatternet '%s'\n", p
);
2115 fprintf(stderr
, "qemu: bad parameter '%s'\n", endp
+ 1);
2124 } else if (strstart(opt
, "device:", &endp
))
2125 return !bt_device_add(endp
);
2127 fprintf(stderr
, "qemu: bad bluetooth parameter '%s'\n", opt
);
2131 /***********************************************************/
2132 /* QEMU Block devices */
2134 #define HD_ALIAS "index=%d,media=disk"
2136 #define CDROM_ALIAS "index=1,media=cdrom"
2138 #define CDROM_ALIAS "index=2,media=cdrom"
2140 #define FD_ALIAS "index=%d,if=floppy"
2141 #define PFLASH_ALIAS "if=pflash"
2142 #define MTD_ALIAS "if=mtd"
2143 #define SD_ALIAS "index=0,if=sd"
2145 static int drive_opt_get_free_idx(void)
2149 for (index
= 0; index
< MAX_DRIVES
; index
++)
2150 if (!drives_opt
[index
].used
) {
2151 drives_opt
[index
].used
= 1;
2158 static int drive_get_free_idx(void)
2162 for (index
= 0; index
< MAX_DRIVES
; index
++)
2163 if (!drives_table
[index
].used
) {
2164 drives_table
[index
].used
= 1;
2171 int drive_add(const char *file
, const char *fmt
, ...)
2174 int index
= drive_opt_get_free_idx();
2176 if (nb_drives_opt
>= MAX_DRIVES
|| index
== -1) {
2177 fprintf(stderr
, "qemu: too many drives\n");
2181 drives_opt
[index
].file
= file
;
2183 vsnprintf(drives_opt
[index
].opt
,
2184 sizeof(drives_opt
[0].opt
), fmt
, ap
);
2191 void drive_remove(int index
)
2193 drives_opt
[index
].used
= 0;
2197 int drive_get_index(BlockInterfaceType type
, int bus
, int unit
)
2201 /* seek interface, bus and unit */
2203 for (index
= 0; index
< MAX_DRIVES
; index
++)
2204 if (drives_table
[index
].type
== type
&&
2205 drives_table
[index
].bus
== bus
&&
2206 drives_table
[index
].unit
== unit
&&
2207 drives_table
[index
].used
)
2213 int drive_get_max_bus(BlockInterfaceType type
)
2219 for (index
= 0; index
< nb_drives
; index
++) {
2220 if(drives_table
[index
].type
== type
&&
2221 drives_table
[index
].bus
> max_bus
)
2222 max_bus
= drives_table
[index
].bus
;
2227 const char *drive_get_serial(BlockDriverState
*bdrv
)
2231 for (index
= 0; index
< nb_drives
; index
++)
2232 if (drives_table
[index
].bdrv
== bdrv
)
2233 return drives_table
[index
].serial
;
2238 BlockInterfaceErrorAction
drive_get_onerror(BlockDriverState
*bdrv
)
2242 for (index
= 0; index
< nb_drives
; index
++)
2243 if (drives_table
[index
].bdrv
== bdrv
)
2244 return drives_table
[index
].onerror
;
2246 return BLOCK_ERR_STOP_ENOSPC
;
2249 static void bdrv_format_print(void *opaque
, const char *name
)
2251 fprintf(stderr
, " %s", name
);
2254 void drive_uninit(BlockDriverState
*bdrv
)
2258 for (i
= 0; i
< MAX_DRIVES
; i
++)
2259 if (drives_table
[i
].bdrv
== bdrv
) {
2260 drives_table
[i
].bdrv
= NULL
;
2261 drives_table
[i
].used
= 0;
2262 drive_remove(drives_table
[i
].drive_opt_idx
);
2268 int drive_init(struct drive_opt
*arg
, int snapshot
, void *opaque
)
2274 const char *mediastr
= "";
2275 BlockInterfaceType type
;
2276 enum { MEDIA_DISK
, MEDIA_CDROM
} media
;
2277 int bus_id
, unit_id
;
2278 int cyls
, heads
, secs
, translation
;
2279 BlockDriverState
*bdrv
;
2280 BlockDriver
*drv
= NULL
;
2281 QEMUMachine
*machine
= opaque
;
2285 int bdrv_flags
, onerror
;
2286 int drives_table_idx
;
2287 char *str
= arg
->opt
;
2288 static const char * const params
[] = { "bus", "unit", "if", "index",
2289 "cyls", "heads", "secs", "trans",
2290 "media", "snapshot", "file",
2291 "cache", "format", "serial", "werror",
2294 if (check_params(buf
, sizeof(buf
), params
, str
) < 0) {
2295 fprintf(stderr
, "qemu: unknown parameter '%s' in '%s'\n",
2301 cyls
= heads
= secs
= 0;
2304 translation
= BIOS_ATA_TRANSLATION_AUTO
;
2308 if (machine
->use_scsi
) {
2310 max_devs
= MAX_SCSI_DEVS
;
2311 pstrcpy(devname
, sizeof(devname
), "scsi");
2314 max_devs
= MAX_IDE_DEVS
;
2315 pstrcpy(devname
, sizeof(devname
), "ide");
2319 /* extract parameters */
2321 if (get_param_value(buf
, sizeof(buf
), "bus", str
)) {
2322 bus_id
= strtol(buf
, NULL
, 0);
2324 fprintf(stderr
, "qemu: '%s' invalid bus id\n", str
);
2329 if (get_param_value(buf
, sizeof(buf
), "unit", str
)) {
2330 unit_id
= strtol(buf
, NULL
, 0);
2332 fprintf(stderr
, "qemu: '%s' invalid unit id\n", str
);
2337 if (get_param_value(buf
, sizeof(buf
), "if", str
)) {
2338 pstrcpy(devname
, sizeof(devname
), buf
);
2339 if (!strcmp(buf
, "ide")) {
2341 max_devs
= MAX_IDE_DEVS
;
2342 } else if (!strcmp(buf
, "scsi")) {
2344 max_devs
= MAX_SCSI_DEVS
;
2345 } else if (!strcmp(buf
, "floppy")) {
2348 } else if (!strcmp(buf
, "pflash")) {
2351 } else if (!strcmp(buf
, "mtd")) {
2354 } else if (!strcmp(buf
, "sd")) {
2357 } else if (!strcmp(buf
, "virtio")) {
2361 fprintf(stderr
, "qemu: '%s' unsupported bus type '%s'\n", str
, buf
);
2366 if (get_param_value(buf
, sizeof(buf
), "index", str
)) {
2367 index
= strtol(buf
, NULL
, 0);
2369 fprintf(stderr
, "qemu: '%s' invalid index\n", str
);
2374 if (get_param_value(buf
, sizeof(buf
), "cyls", str
)) {
2375 cyls
= strtol(buf
, NULL
, 0);
2378 if (get_param_value(buf
, sizeof(buf
), "heads", str
)) {
2379 heads
= strtol(buf
, NULL
, 0);
2382 if (get_param_value(buf
, sizeof(buf
), "secs", str
)) {
2383 secs
= strtol(buf
, NULL
, 0);
2386 if (cyls
|| heads
|| secs
) {
2387 if (cyls
< 1 || cyls
> 16383) {
2388 fprintf(stderr
, "qemu: '%s' invalid physical cyls number\n", str
);
2391 if (heads
< 1 || heads
> 16) {
2392 fprintf(stderr
, "qemu: '%s' invalid physical heads number\n", str
);
2395 if (secs
< 1 || secs
> 63) {
2396 fprintf(stderr
, "qemu: '%s' invalid physical secs number\n", str
);
2401 if (get_param_value(buf
, sizeof(buf
), "trans", str
)) {
2404 "qemu: '%s' trans must be used with cyls,heads and secs\n",
2408 if (!strcmp(buf
, "none"))
2409 translation
= BIOS_ATA_TRANSLATION_NONE
;
2410 else if (!strcmp(buf
, "lba"))
2411 translation
= BIOS_ATA_TRANSLATION_LBA
;
2412 else if (!strcmp(buf
, "auto"))
2413 translation
= BIOS_ATA_TRANSLATION_AUTO
;
2415 fprintf(stderr
, "qemu: '%s' invalid translation type\n", str
);
2420 if (get_param_value(buf
, sizeof(buf
), "media", str
)) {
2421 if (!strcmp(buf
, "disk")) {
2423 } else if (!strcmp(buf
, "cdrom")) {
2424 if (cyls
|| secs
|| heads
) {
2426 "qemu: '%s' invalid physical CHS format\n", str
);
2429 media
= MEDIA_CDROM
;
2431 fprintf(stderr
, "qemu: '%s' invalid media\n", str
);
2436 if (get_param_value(buf
, sizeof(buf
), "snapshot", str
)) {
2437 if (!strcmp(buf
, "on"))
2439 else if (!strcmp(buf
, "off"))
2442 fprintf(stderr
, "qemu: '%s' invalid snapshot option\n", str
);
2447 if (get_param_value(buf
, sizeof(buf
), "cache", str
)) {
2448 if (!strcmp(buf
, "off") || !strcmp(buf
, "none"))
2450 else if (!strcmp(buf
, "writethrough"))
2452 else if (!strcmp(buf
, "writeback"))
2455 fprintf(stderr
, "qemu: invalid cache option\n");
2460 if (get_param_value(buf
, sizeof(buf
), "format", str
)) {
2461 if (strcmp(buf
, "?") == 0) {
2462 fprintf(stderr
, "qemu: Supported formats:");
2463 bdrv_iterate_format(bdrv_format_print
, NULL
);
2464 fprintf(stderr
, "\n");
2467 drv
= bdrv_find_format(buf
);
2469 fprintf(stderr
, "qemu: '%s' invalid format\n", buf
);
2474 if (arg
->file
== NULL
)
2475 get_param_value(file
, sizeof(file
), "file", str
);
2477 pstrcpy(file
, sizeof(file
), arg
->file
);
2479 if (!get_param_value(serial
, sizeof(serial
), "serial", str
))
2480 memset(serial
, 0, sizeof(serial
));
2482 onerror
= BLOCK_ERR_STOP_ENOSPC
;
2483 if (get_param_value(buf
, sizeof(serial
), "werror", str
)) {
2484 if (type
!= IF_IDE
&& type
!= IF_SCSI
&& type
!= IF_VIRTIO
) {
2485 fprintf(stderr
, "werror is no supported by this format\n");
2488 if (!strcmp(buf
, "ignore"))
2489 onerror
= BLOCK_ERR_IGNORE
;
2490 else if (!strcmp(buf
, "enospc"))
2491 onerror
= BLOCK_ERR_STOP_ENOSPC
;
2492 else if (!strcmp(buf
, "stop"))
2493 onerror
= BLOCK_ERR_STOP_ANY
;
2494 else if (!strcmp(buf
, "report"))
2495 onerror
= BLOCK_ERR_REPORT
;
2497 fprintf(stderr
, "qemu: '%s' invalid write error action\n", buf
);
2502 /* compute bus and unit according index */
2505 if (bus_id
!= 0 || unit_id
!= -1) {
2507 "qemu: '%s' index cannot be used with bus and unit\n", str
);
2515 unit_id
= index
% max_devs
;
2516 bus_id
= index
/ max_devs
;
2520 /* if user doesn't specify a unit_id,
2521 * try to find the first free
2524 if (unit_id
== -1) {
2526 while (drive_get_index(type
, bus_id
, unit_id
) != -1) {
2528 if (max_devs
&& unit_id
>= max_devs
) {
2529 unit_id
-= max_devs
;
2537 if (max_devs
&& unit_id
>= max_devs
) {
2538 fprintf(stderr
, "qemu: '%s' unit %d too big (max is %d)\n",
2539 str
, unit_id
, max_devs
- 1);
2544 * ignore multiple definitions
2547 if (drive_get_index(type
, bus_id
, unit_id
) != -1)
2552 if (type
== IF_IDE
|| type
== IF_SCSI
)
2553 mediastr
= (media
== MEDIA_CDROM
) ? "-cd" : "-hd";
2555 snprintf(buf
, sizeof(buf
), "%s%i%s%i",
2556 devname
, bus_id
, mediastr
, unit_id
);
2558 snprintf(buf
, sizeof(buf
), "%s%s%i",
2559 devname
, mediastr
, unit_id
);
2560 bdrv
= bdrv_new(buf
);
2561 drives_table_idx
= drive_get_free_idx();
2562 drives_table
[drives_table_idx
].bdrv
= bdrv
;
2563 drives_table
[drives_table_idx
].type
= type
;
2564 drives_table
[drives_table_idx
].bus
= bus_id
;
2565 drives_table
[drives_table_idx
].unit
= unit_id
;
2566 drives_table
[drives_table_idx
].onerror
= onerror
;
2567 drives_table
[drives_table_idx
].drive_opt_idx
= arg
- drives_opt
;
2568 strncpy(drives_table
[nb_drives
].serial
, serial
, sizeof(serial
));
2577 bdrv_set_geometry_hint(bdrv
, cyls
, heads
, secs
);
2578 bdrv_set_translation_hint(bdrv
, translation
);
2582 bdrv_set_type_hint(bdrv
, BDRV_TYPE_CDROM
);
2587 /* FIXME: This isn't really a floppy, but it's a reasonable
2590 bdrv_set_type_hint(bdrv
, BDRV_TYPE_FLOPPY
);
2601 bdrv_flags
|= BDRV_O_SNAPSHOT
;
2602 cache
= 2; /* always use write-back with snapshot */
2604 if (cache
== 0) /* no caching */
2605 bdrv_flags
|= BDRV_O_NOCACHE
;
2606 else if (cache
== 2) /* write-back */
2607 bdrv_flags
|= BDRV_O_CACHE_WB
;
2608 else if (cache
== 3) /* not specified */
2609 bdrv_flags
|= BDRV_O_CACHE_DEF
;
2610 if (bdrv_open2(bdrv
, file
, bdrv_flags
, drv
) < 0 || qemu_key_check(bdrv
, file
)) {
2611 fprintf(stderr
, "qemu: could not open disk image %s\n",
2615 return drives_table_idx
;
2618 /***********************************************************/
2621 static USBPort
*used_usb_ports
;
2622 static USBPort
*free_usb_ports
;
2624 /* ??? Maybe change this to register a hub to keep track of the topology. */
2625 void qemu_register_usb_port(USBPort
*port
, void *opaque
, int index
,
2626 usb_attachfn attach
)
2628 port
->opaque
= opaque
;
2629 port
->index
= index
;
2630 port
->attach
= attach
;
2631 port
->next
= free_usb_ports
;
2632 free_usb_ports
= port
;
2635 int usb_device_add_dev(USBDevice
*dev
)
2639 /* Find a USB port to add the device to. */
2640 port
= free_usb_ports
;
2644 /* Create a new hub and chain it on. */
2645 free_usb_ports
= NULL
;
2646 port
->next
= used_usb_ports
;
2647 used_usb_ports
= port
;
2649 hub
= usb_hub_init(VM_USB_HUB_SIZE
);
2650 usb_attach(port
, hub
);
2651 port
= free_usb_ports
;
2654 free_usb_ports
= port
->next
;
2655 port
->next
= used_usb_ports
;
2656 used_usb_ports
= port
;
2657 usb_attach(port
, dev
);
2661 static int usb_device_add(const char *devname
)
2666 if (!free_usb_ports
)
2669 if (strstart(devname
, "host:", &p
)) {
2670 dev
= usb_host_device_open(p
);
2671 } else if (!strcmp(devname
, "mouse")) {
2672 dev
= usb_mouse_init();
2673 } else if (!strcmp(devname
, "tablet")) {
2674 dev
= usb_tablet_init();
2675 } else if (!strcmp(devname
, "keyboard")) {
2676 dev
= usb_keyboard_init();
2677 } else if (strstart(devname
, "disk:", &p
)) {
2678 dev
= usb_msd_init(p
);
2679 } else if (!strcmp(devname
, "wacom-tablet")) {
2680 dev
= usb_wacom_init();
2681 } else if (strstart(devname
, "serial:", &p
)) {
2682 dev
= usb_serial_init(p
);
2683 #ifdef CONFIG_BRLAPI
2684 } else if (!strcmp(devname
, "braille")) {
2685 dev
= usb_baum_init();
2687 } else if (strstart(devname
, "net:", &p
)) {
2690 if (net_client_init("nic", p
) < 0)
2692 nd_table
[nic
].model
= "usb";
2693 dev
= usb_net_init(&nd_table
[nic
]);
2694 } else if (!strcmp(devname
, "bt") || strstart(devname
, "bt:", &p
)) {
2695 dev
= usb_bt_init(devname
[2] ? hci_init(p
) :
2696 bt_new_hci(qemu_find_bt_vlan(0)));
2703 return usb_device_add_dev(dev
);
2706 int usb_device_del_addr(int bus_num
, int addr
)
2712 if (!used_usb_ports
)
2718 lastp
= &used_usb_ports
;
2719 port
= used_usb_ports
;
2720 while (port
&& port
->dev
->addr
!= addr
) {
2721 lastp
= &port
->next
;
2729 *lastp
= port
->next
;
2730 usb_attach(port
, NULL
);
2731 dev
->handle_destroy(dev
);
2732 port
->next
= free_usb_ports
;
2733 free_usb_ports
= port
;
2737 static int usb_device_del(const char *devname
)
2742 if (strstart(devname
, "host:", &p
))
2743 return usb_host_device_close(p
);
2745 if (!used_usb_ports
)
2748 p
= strchr(devname
, '.');
2751 bus_num
= strtoul(devname
, NULL
, 0);
2752 addr
= strtoul(p
+ 1, NULL
, 0);
2754 return usb_device_del_addr(bus_num
, addr
);
2757 void do_usb_add(const char *devname
)
2759 usb_device_add(devname
);
2762 void do_usb_del(const char *devname
)
2764 usb_device_del(devname
);
2771 const char *speed_str
;
2774 term_printf("USB support not enabled\n");
2778 for (port
= used_usb_ports
; port
; port
= port
->next
) {
2782 switch(dev
->speed
) {
2786 case USB_SPEED_FULL
:
2789 case USB_SPEED_HIGH
:
2796 term_printf(" Device %d.%d, Speed %s Mb/s, Product %s\n",
2797 0, dev
->addr
, speed_str
, dev
->devname
);
2801 /***********************************************************/
2802 /* PCMCIA/Cardbus */
2804 static struct pcmcia_socket_entry_s
{
2805 struct pcmcia_socket_s
*socket
;
2806 struct pcmcia_socket_entry_s
*next
;
2807 } *pcmcia_sockets
= 0;
2809 void pcmcia_socket_register(struct pcmcia_socket_s
*socket
)
2811 struct pcmcia_socket_entry_s
*entry
;
2813 entry
= qemu_malloc(sizeof(struct pcmcia_socket_entry_s
));
2814 entry
->socket
= socket
;
2815 entry
->next
= pcmcia_sockets
;
2816 pcmcia_sockets
= entry
;
2819 void pcmcia_socket_unregister(struct pcmcia_socket_s
*socket
)
2821 struct pcmcia_socket_entry_s
*entry
, **ptr
;
2823 ptr
= &pcmcia_sockets
;
2824 for (entry
= *ptr
; entry
; ptr
= &entry
->next
, entry
= *ptr
)
2825 if (entry
->socket
== socket
) {
2831 void pcmcia_info(void)
2833 struct pcmcia_socket_entry_s
*iter
;
2834 if (!pcmcia_sockets
)
2835 term_printf("No PCMCIA sockets\n");
2837 for (iter
= pcmcia_sockets
; iter
; iter
= iter
->next
)
2838 term_printf("%s: %s\n", iter
->socket
->slot_string
,
2839 iter
->socket
->attached
? iter
->socket
->card_string
:
2843 /***********************************************************/
2844 /* register display */
2846 void register_displaystate(DisplayState
*ds
)
2856 DisplayState
*get_displaystate(void)
2858 return display_state
;
2863 static void dumb_display_init(void)
2865 DisplayState
*ds
= qemu_mallocz(sizeof(DisplayState
));
2866 ds
->surface
= qemu_create_displaysurface(640, 480, 32, 640 * 4);
2867 register_displaystate(ds
);
2870 /***********************************************************/
2873 #define MAX_IO_HANDLERS 64
2875 typedef struct IOHandlerRecord
{
2877 IOCanRWHandler
*fd_read_poll
;
2879 IOHandler
*fd_write
;
2882 /* temporary data */
2884 struct IOHandlerRecord
*next
;
2887 static IOHandlerRecord
*first_io_handler
;
2889 /* XXX: fd_read_poll should be suppressed, but an API change is
2890 necessary in the character devices to suppress fd_can_read(). */
2891 int qemu_set_fd_handler2(int fd
,
2892 IOCanRWHandler
*fd_read_poll
,
2894 IOHandler
*fd_write
,
2897 IOHandlerRecord
**pioh
, *ioh
;
2899 if (!fd_read
&& !fd_write
) {
2900 pioh
= &first_io_handler
;
2905 if (ioh
->fd
== fd
) {
2912 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
2916 ioh
= qemu_mallocz(sizeof(IOHandlerRecord
));
2917 ioh
->next
= first_io_handler
;
2918 first_io_handler
= ioh
;
2921 ioh
->fd_read_poll
= fd_read_poll
;
2922 ioh
->fd_read
= fd_read
;
2923 ioh
->fd_write
= fd_write
;
2924 ioh
->opaque
= opaque
;
2930 int qemu_set_fd_handler(int fd
,
2932 IOHandler
*fd_write
,
2935 return qemu_set_fd_handler2(fd
, NULL
, fd_read
, fd_write
, opaque
);
2939 /***********************************************************/
2940 /* Polling handling */
2942 typedef struct PollingEntry
{
2945 struct PollingEntry
*next
;
2948 static PollingEntry
*first_polling_entry
;
2950 int qemu_add_polling_cb(PollingFunc
*func
, void *opaque
)
2952 PollingEntry
**ppe
, *pe
;
2953 pe
= qemu_mallocz(sizeof(PollingEntry
));
2955 pe
->opaque
= opaque
;
2956 for(ppe
= &first_polling_entry
; *ppe
!= NULL
; ppe
= &(*ppe
)->next
);
2961 void qemu_del_polling_cb(PollingFunc
*func
, void *opaque
)
2963 PollingEntry
**ppe
, *pe
;
2964 for(ppe
= &first_polling_entry
; *ppe
!= NULL
; ppe
= &(*ppe
)->next
) {
2966 if (pe
->func
== func
&& pe
->opaque
== opaque
) {
2974 /***********************************************************/
2975 /* Wait objects support */
2976 typedef struct WaitObjects
{
2978 HANDLE events
[MAXIMUM_WAIT_OBJECTS
+ 1];
2979 WaitObjectFunc
*func
[MAXIMUM_WAIT_OBJECTS
+ 1];
2980 void *opaque
[MAXIMUM_WAIT_OBJECTS
+ 1];
2983 static WaitObjects wait_objects
= {0};
2985 int qemu_add_wait_object(HANDLE handle
, WaitObjectFunc
*func
, void *opaque
)
2987 WaitObjects
*w
= &wait_objects
;
2989 if (w
->num
>= MAXIMUM_WAIT_OBJECTS
)
2991 w
->events
[w
->num
] = handle
;
2992 w
->func
[w
->num
] = func
;
2993 w
->opaque
[w
->num
] = opaque
;
2998 void qemu_del_wait_object(HANDLE handle
, WaitObjectFunc
*func
, void *opaque
)
3001 WaitObjects
*w
= &wait_objects
;
3004 for (i
= 0; i
< w
->num
; i
++) {
3005 if (w
->events
[i
] == handle
)
3008 w
->events
[i
] = w
->events
[i
+ 1];
3009 w
->func
[i
] = w
->func
[i
+ 1];
3010 w
->opaque
[i
] = w
->opaque
[i
+ 1];
3018 /***********************************************************/
3019 /* ram save/restore */
3021 static int ram_get_page(QEMUFile
*f
, uint8_t *buf
, int len
)
3025 v
= qemu_get_byte(f
);
3028 if (qemu_get_buffer(f
, buf
, len
) != len
)
3032 v
= qemu_get_byte(f
);
3033 memset(buf
, v
, len
);
3039 if (qemu_file_has_error(f
))
3045 static int ram_load_v1(QEMUFile
*f
, void *opaque
)
3050 if (qemu_get_be32(f
) != phys_ram_size
)
3052 for(i
= 0; i
< phys_ram_size
; i
+= TARGET_PAGE_SIZE
) {
3053 ret
= ram_get_page(f
, phys_ram_base
+ i
, TARGET_PAGE_SIZE
);
3060 #define BDRV_HASH_BLOCK_SIZE 1024
3061 #define IOBUF_SIZE 4096
3062 #define RAM_CBLOCK_MAGIC 0xfabe
3064 typedef struct RamDecompressState
{
3067 uint8_t buf
[IOBUF_SIZE
];
3068 } RamDecompressState
;
3070 static int ram_decompress_open(RamDecompressState
*s
, QEMUFile
*f
)
3073 memset(s
, 0, sizeof(*s
));
3075 ret
= inflateInit(&s
->zstream
);
3081 static int ram_decompress_buf(RamDecompressState
*s
, uint8_t *buf
, int len
)
3085 s
->zstream
.avail_out
= len
;
3086 s
->zstream
.next_out
= buf
;
3087 while (s
->zstream
.avail_out
> 0) {
3088 if (s
->zstream
.avail_in
== 0) {
3089 if (qemu_get_be16(s
->f
) != RAM_CBLOCK_MAGIC
)
3091 clen
= qemu_get_be16(s
->f
);
3092 if (clen
> IOBUF_SIZE
)
3094 qemu_get_buffer(s
->f
, s
->buf
, clen
);
3095 s
->zstream
.avail_in
= clen
;
3096 s
->zstream
.next_in
= s
->buf
;
3098 ret
= inflate(&s
->zstream
, Z_PARTIAL_FLUSH
);
3099 if (ret
!= Z_OK
&& ret
!= Z_STREAM_END
) {
3106 static void ram_decompress_close(RamDecompressState
*s
)
3108 inflateEnd(&s
->zstream
);
3111 #define RAM_SAVE_FLAG_FULL 0x01
3112 #define RAM_SAVE_FLAG_COMPRESS 0x02
3113 #define RAM_SAVE_FLAG_MEM_SIZE 0x04
3114 #define RAM_SAVE_FLAG_PAGE 0x08
3115 #define RAM_SAVE_FLAG_EOS 0x10
3117 static int is_dup_page(uint8_t *page
, uint8_t ch
)
3119 uint32_t val
= ch
<< 24 | ch
<< 16 | ch
<< 8 | ch
;
3120 uint32_t *array
= (uint32_t *)page
;
3123 for (i
= 0; i
< (TARGET_PAGE_SIZE
/ 4); i
++) {
3124 if (array
[i
] != val
)
3131 static int ram_save_block(QEMUFile
*f
)
3133 static ram_addr_t current_addr
= 0;
3134 ram_addr_t saved_addr
= current_addr
;
3135 ram_addr_t addr
= 0;
3138 while (addr
< phys_ram_size
) {
3139 if (cpu_physical_memory_get_dirty(current_addr
, MIGRATION_DIRTY_FLAG
)) {
3142 cpu_physical_memory_reset_dirty(current_addr
,
3143 current_addr
+ TARGET_PAGE_SIZE
,
3144 MIGRATION_DIRTY_FLAG
);
3146 ch
= *(phys_ram_base
+ current_addr
);
3148 if (is_dup_page(phys_ram_base
+ current_addr
, ch
)) {
3149 qemu_put_be64(f
, current_addr
| RAM_SAVE_FLAG_COMPRESS
);
3150 qemu_put_byte(f
, ch
);
3152 qemu_put_be64(f
, current_addr
| RAM_SAVE_FLAG_PAGE
);
3153 qemu_put_buffer(f
, phys_ram_base
+ current_addr
, TARGET_PAGE_SIZE
);
3159 addr
+= TARGET_PAGE_SIZE
;
3160 current_addr
= (saved_addr
+ addr
) % phys_ram_size
;
3166 static ram_addr_t ram_save_threshold
= 10;
3168 static ram_addr_t
ram_save_remaining(void)
3171 ram_addr_t count
= 0;
3173 for (addr
= 0; addr
< phys_ram_size
; addr
+= TARGET_PAGE_SIZE
) {
3174 if (cpu_physical_memory_get_dirty(addr
, MIGRATION_DIRTY_FLAG
))
3181 static int ram_save_live(QEMUFile
*f
, int stage
, void *opaque
)
3186 /* Make sure all dirty bits are set */
3187 for (addr
= 0; addr
< phys_ram_size
; addr
+= TARGET_PAGE_SIZE
) {
3188 if (!cpu_physical_memory_get_dirty(addr
, MIGRATION_DIRTY_FLAG
))
3189 cpu_physical_memory_set_dirty(addr
);
3192 /* Enable dirty memory tracking */
3193 cpu_physical_memory_set_dirty_tracking(1);
3195 qemu_put_be64(f
, phys_ram_size
| RAM_SAVE_FLAG_MEM_SIZE
);
3198 while (!qemu_file_rate_limit(f
)) {
3201 ret
= ram_save_block(f
);
3202 if (ret
== 0) /* no more blocks */
3206 /* try transferring iterative blocks of memory */
3209 cpu_physical_memory_set_dirty_tracking(0);
3211 /* flush all remaining blocks regardless of rate limiting */
3212 while (ram_save_block(f
) != 0);
3215 qemu_put_be64(f
, RAM_SAVE_FLAG_EOS
);
3217 return (stage
== 2) && (ram_save_remaining() < ram_save_threshold
);
3220 static int ram_load_dead(QEMUFile
*f
, void *opaque
)
3222 RamDecompressState s1
, *s
= &s1
;
3226 if (ram_decompress_open(s
, f
) < 0)
3228 for(i
= 0; i
< phys_ram_size
; i
+= BDRV_HASH_BLOCK_SIZE
) {
3229 if (ram_decompress_buf(s
, buf
, 1) < 0) {
3230 fprintf(stderr
, "Error while reading ram block header\n");
3234 if (ram_decompress_buf(s
, phys_ram_base
+ i
, BDRV_HASH_BLOCK_SIZE
) < 0) {
3235 fprintf(stderr
, "Error while reading ram block address=0x%08" PRIx64
, (uint64_t)i
);
3240 printf("Error block header\n");
3244 ram_decompress_close(s
);
3249 static int ram_load(QEMUFile
*f
, void *opaque
, int version_id
)
3254 if (version_id
== 1)
3255 return ram_load_v1(f
, opaque
);
3257 if (version_id
== 2) {
3258 if (qemu_get_be32(f
) != phys_ram_size
)
3260 return ram_load_dead(f
, opaque
);
3263 if (version_id
!= 3)
3267 addr
= qemu_get_be64(f
);
3269 flags
= addr
& ~TARGET_PAGE_MASK
;
3270 addr
&= TARGET_PAGE_MASK
;
3272 if (flags
& RAM_SAVE_FLAG_MEM_SIZE
) {
3273 if (addr
!= phys_ram_size
)
3277 if (flags
& RAM_SAVE_FLAG_FULL
) {
3278 if (ram_load_dead(f
, opaque
) < 0)
3282 if (flags
& RAM_SAVE_FLAG_COMPRESS
) {
3283 uint8_t ch
= qemu_get_byte(f
);
3284 memset(phys_ram_base
+ addr
, ch
, TARGET_PAGE_SIZE
);
3285 } else if (flags
& RAM_SAVE_FLAG_PAGE
)
3286 qemu_get_buffer(f
, phys_ram_base
+ addr
, TARGET_PAGE_SIZE
);
3287 } while (!(flags
& RAM_SAVE_FLAG_EOS
));
3292 void qemu_service_io(void)
3294 CPUState
*env
= cpu_single_env
;
3296 cpu_interrupt(env
, CPU_INTERRUPT_EXIT
);
3298 if (env
->kqemu_enabled
) {
3299 kqemu_cpu_interrupt(env
);
3305 /***********************************************************/
3306 /* bottom halves (can be seen as timers which expire ASAP) */
3317 static QEMUBH
*first_bh
= NULL
;
3319 QEMUBH
*qemu_bh_new(QEMUBHFunc
*cb
, void *opaque
)
3322 bh
= qemu_mallocz(sizeof(QEMUBH
));
3324 bh
->opaque
= opaque
;
3325 bh
->next
= first_bh
;
3330 int qemu_bh_poll(void)
3336 for (bh
= first_bh
; bh
; bh
= bh
->next
) {
3337 if (!bh
->deleted
&& bh
->scheduled
) {
3346 /* remove deleted bhs */
3360 void qemu_bh_schedule_idle(QEMUBH
*bh
)
3368 void qemu_bh_schedule(QEMUBH
*bh
)
3370 CPUState
*env
= cpu_single_env
;
3375 /* stop the currently executing CPU to execute the BH ASAP */
3377 cpu_interrupt(env
, CPU_INTERRUPT_EXIT
);
3381 void qemu_bh_cancel(QEMUBH
*bh
)
3386 void qemu_bh_delete(QEMUBH
*bh
)
3392 static void qemu_bh_update_timeout(int *timeout
)
3396 for (bh
= first_bh
; bh
; bh
= bh
->next
) {
3397 if (!bh
->deleted
&& bh
->scheduled
) {
3399 /* idle bottom halves will be polled at least
3401 *timeout
= MIN(10, *timeout
);
3403 /* non-idle bottom halves will be executed
3412 /***********************************************************/
3413 /* machine registration */
3415 static QEMUMachine
*first_machine
= NULL
;
3416 QEMUMachine
*current_machine
= NULL
;
3418 int qemu_register_machine(QEMUMachine
*m
)
3421 pm
= &first_machine
;
3429 static QEMUMachine
*find_machine(const char *name
)
3433 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
3434 if (!strcmp(m
->name
, name
))
3440 /***********************************************************/
3441 /* main execution loop */
3443 static void gui_update(void *opaque
)
3445 uint64_t interval
= GUI_REFRESH_INTERVAL
;
3446 DisplayState
*ds
= opaque
;
3447 DisplayChangeListener
*dcl
= ds
->listeners
;
3451 while (dcl
!= NULL
) {
3452 if (dcl
->gui_timer_interval
&&
3453 dcl
->gui_timer_interval
< interval
)
3454 interval
= dcl
->gui_timer_interval
;
3457 qemu_mod_timer(ds
->gui_timer
, interval
+ qemu_get_clock(rt_clock
));
3460 static void nographic_update(void *opaque
)
3462 uint64_t interval
= GUI_REFRESH_INTERVAL
;
3464 qemu_mod_timer(nographic_timer
, interval
+ qemu_get_clock(rt_clock
));
3467 struct vm_change_state_entry
{
3468 VMChangeStateHandler
*cb
;
3470 LIST_ENTRY (vm_change_state_entry
) entries
;
3473 static LIST_HEAD(vm_change_state_head
, vm_change_state_entry
) vm_change_state_head
;
3475 VMChangeStateEntry
*qemu_add_vm_change_state_handler(VMChangeStateHandler
*cb
,
3478 VMChangeStateEntry
*e
;
3480 e
= qemu_mallocz(sizeof (*e
));
3484 LIST_INSERT_HEAD(&vm_change_state_head
, e
, entries
);
3488 void qemu_del_vm_change_state_handler(VMChangeStateEntry
*e
)
3490 LIST_REMOVE (e
, entries
);
3494 static void vm_state_notify(int running
, int reason
)
3496 VMChangeStateEntry
*e
;
3498 for (e
= vm_change_state_head
.lh_first
; e
; e
= e
->entries
.le_next
) {
3499 e
->cb(e
->opaque
, running
, reason
);
3508 vm_state_notify(1, 0);
3509 qemu_rearm_alarm_timer(alarm_timer
);
3513 void vm_stop(int reason
)
3516 cpu_disable_ticks();
3518 vm_state_notify(0, reason
);
3522 /* reset/shutdown handler */
3524 typedef struct QEMUResetEntry
{
3525 QEMUResetHandler
*func
;
3527 struct QEMUResetEntry
*next
;
3530 static QEMUResetEntry
*first_reset_entry
;
3531 static int reset_requested
;
3532 static int shutdown_requested
;
3533 static int powerdown_requested
;
3535 int qemu_shutdown_requested(void)
3537 int r
= shutdown_requested
;
3538 shutdown_requested
= 0;
3542 int qemu_reset_requested(void)
3544 int r
= reset_requested
;
3545 reset_requested
= 0;
3549 int qemu_powerdown_requested(void)
3551 int r
= powerdown_requested
;
3552 powerdown_requested
= 0;
3556 void qemu_register_reset(QEMUResetHandler
*func
, void *opaque
)
3558 QEMUResetEntry
**pre
, *re
;
3560 pre
= &first_reset_entry
;
3561 while (*pre
!= NULL
)
3562 pre
= &(*pre
)->next
;
3563 re
= qemu_mallocz(sizeof(QEMUResetEntry
));
3565 re
->opaque
= opaque
;
3570 void qemu_system_reset(void)
3574 /* reset all devices */
3575 for(re
= first_reset_entry
; re
!= NULL
; re
= re
->next
) {
3576 re
->func(re
->opaque
);
3580 void qemu_system_reset_request(void)
3583 shutdown_requested
= 1;
3585 reset_requested
= 1;
3588 cpu_interrupt(cpu_single_env
, CPU_INTERRUPT_EXIT
);
3591 void qemu_system_shutdown_request(void)
3593 shutdown_requested
= 1;
3595 cpu_interrupt(cpu_single_env
, CPU_INTERRUPT_EXIT
);
3598 void qemu_system_powerdown_request(void)
3600 powerdown_requested
= 1;
3602 cpu_interrupt(cpu_single_env
, CPU_INTERRUPT_EXIT
);
3606 static void host_main_loop_wait(int *timeout
)
3612 /* XXX: need to suppress polling by better using win32 events */
3614 for(pe
= first_polling_entry
; pe
!= NULL
; pe
= pe
->next
) {
3615 ret
|= pe
->func(pe
->opaque
);
3619 WaitObjects
*w
= &wait_objects
;
3621 ret
= WaitForMultipleObjects(w
->num
, w
->events
, FALSE
, *timeout
);
3622 if (WAIT_OBJECT_0
+ 0 <= ret
&& ret
<= WAIT_OBJECT_0
+ w
->num
- 1) {
3623 if (w
->func
[ret
- WAIT_OBJECT_0
])
3624 w
->func
[ret
- WAIT_OBJECT_0
](w
->opaque
[ret
- WAIT_OBJECT_0
]);
3626 /* Check for additional signaled events */
3627 for(i
= (ret
- WAIT_OBJECT_0
+ 1); i
< w
->num
; i
++) {
3629 /* Check if event is signaled */
3630 ret2
= WaitForSingleObject(w
->events
[i
], 0);
3631 if(ret2
== WAIT_OBJECT_0
) {
3633 w
->func
[i
](w
->opaque
[i
]);
3634 } else if (ret2
== WAIT_TIMEOUT
) {
3636 err
= GetLastError();
3637 fprintf(stderr
, "WaitForSingleObject error %d %d\n", i
, err
);
3640 } else if (ret
== WAIT_TIMEOUT
) {
3642 err
= GetLastError();
3643 fprintf(stderr
, "WaitForMultipleObjects error %d %d\n", ret
, err
);
3650 static void host_main_loop_wait(int *timeout
)
3655 void main_loop_wait(int timeout
)
3657 IOHandlerRecord
*ioh
;
3658 fd_set rfds
, wfds
, xfds
;
3662 qemu_bh_update_timeout(&timeout
);
3664 host_main_loop_wait(&timeout
);
3666 /* poll any events */
3667 /* XXX: separate device handlers from system ones */
3672 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
3676 (!ioh
->fd_read_poll
||
3677 ioh
->fd_read_poll(ioh
->opaque
) != 0)) {
3678 FD_SET(ioh
->fd
, &rfds
);
3682 if (ioh
->fd_write
) {
3683 FD_SET(ioh
->fd
, &wfds
);
3689 tv
.tv_sec
= timeout
/ 1000;
3690 tv
.tv_usec
= (timeout
% 1000) * 1000;
3692 #if defined(CONFIG_SLIRP)
3693 if (slirp_is_inited()) {
3694 slirp_select_fill(&nfds
, &rfds
, &wfds
, &xfds
);
3697 ret
= select(nfds
+ 1, &rfds
, &wfds
, &xfds
, &tv
);
3699 IOHandlerRecord
**pioh
;
3701 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
3702 if (!ioh
->deleted
&& ioh
->fd_read
&& FD_ISSET(ioh
->fd
, &rfds
)) {
3703 ioh
->fd_read(ioh
->opaque
);
3705 if (!ioh
->deleted
&& ioh
->fd_write
&& FD_ISSET(ioh
->fd
, &wfds
)) {
3706 ioh
->fd_write(ioh
->opaque
);
3710 /* remove deleted IO handlers */
3711 pioh
= &first_io_handler
;
3721 #if defined(CONFIG_SLIRP)
3722 if (slirp_is_inited()) {
3728 slirp_select_poll(&rfds
, &wfds
, &xfds
);
3732 /* vm time timers */
3733 if (vm_running
&& likely(!(cur_cpu
->singlestep_enabled
& SSTEP_NOTIMER
)))
3734 qemu_run_timers(&active_timers
[QEMU_TIMER_VIRTUAL
],
3735 qemu_get_clock(vm_clock
));
3737 /* real time timers */
3738 qemu_run_timers(&active_timers
[QEMU_TIMER_REALTIME
],
3739 qemu_get_clock(rt_clock
));
3741 /* Check bottom-halves last in case any of the earlier events triggered
3747 static int main_loop(void)
3750 #ifdef CONFIG_PROFILER
3755 cur_cpu
= first_cpu
;
3756 next_cpu
= cur_cpu
->next_cpu
?: first_cpu
;
3763 #ifdef CONFIG_PROFILER
3764 ti
= profile_getclock();
3769 qemu_icount
-= (env
->icount_decr
.u16
.low
+ env
->icount_extra
);
3770 env
->icount_decr
.u16
.low
= 0;
3771 env
->icount_extra
= 0;
3772 count
= qemu_next_deadline();
3773 count
= (count
+ (1 << icount_time_shift
) - 1)
3774 >> icount_time_shift
;
3775 qemu_icount
+= count
;
3776 decr
= (count
> 0xffff) ? 0xffff : count
;
3778 env
->icount_decr
.u16
.low
= decr
;
3779 env
->icount_extra
= count
;
3781 ret
= cpu_exec(env
);
3782 #ifdef CONFIG_PROFILER
3783 qemu_time
+= profile_getclock() - ti
;
3786 /* Fold pending instructions back into the
3787 instruction counter, and clear the interrupt flag. */
3788 qemu_icount
-= (env
->icount_decr
.u16
.low
3789 + env
->icount_extra
);
3790 env
->icount_decr
.u32
= 0;
3791 env
->icount_extra
= 0;
3793 next_cpu
= env
->next_cpu
?: first_cpu
;
3794 if (event_pending
&& likely(ret
!= EXCP_DEBUG
)) {
3795 ret
= EXCP_INTERRUPT
;
3799 if (ret
== EXCP_HLT
) {
3800 /* Give the next CPU a chance to run. */
3804 if (ret
!= EXCP_HALTED
)
3806 /* all CPUs are halted ? */
3812 if (shutdown_requested
) {
3813 ret
= EXCP_INTERRUPT
;
3821 if (reset_requested
) {
3822 reset_requested
= 0;
3823 qemu_system_reset();
3824 ret
= EXCP_INTERRUPT
;
3826 if (powerdown_requested
) {
3827 powerdown_requested
= 0;
3828 qemu_system_powerdown();
3829 ret
= EXCP_INTERRUPT
;
3831 if (unlikely(ret
== EXCP_DEBUG
)) {
3832 gdb_set_stop_cpu(cur_cpu
);
3833 vm_stop(EXCP_DEBUG
);
3835 /* If all cpus are halted then wait until the next IRQ */
3836 /* XXX: use timeout computed from timers */
3837 if (ret
== EXCP_HALTED
) {
3841 /* Advance virtual time to the next event. */
3842 if (use_icount
== 1) {
3843 /* When not using an adaptive execution frequency
3844 we tend to get badly out of sync with real time,
3845 so just delay for a reasonable amount of time. */
3848 delta
= cpu_get_icount() - cpu_get_clock();
3851 /* If virtual time is ahead of real time then just
3853 timeout
= (delta
/ 1000000) + 1;
3855 /* Wait for either IO to occur or the next
3857 add
= qemu_next_deadline();
3858 /* We advance the timer before checking for IO.
3859 Limit the amount we advance so that early IO
3860 activity won't get the guest too far ahead. */
3864 add
= (add
+ (1 << icount_time_shift
) - 1)
3865 >> icount_time_shift
;
3867 timeout
= delta
/ 1000000;
3878 if (shutdown_requested
) {
3879 ret
= EXCP_INTERRUPT
;
3884 #ifdef CONFIG_PROFILER
3885 ti
= profile_getclock();
3887 main_loop_wait(timeout
);
3888 #ifdef CONFIG_PROFILER
3889 dev_time
+= profile_getclock() - ti
;
3892 cpu_disable_ticks();
3896 static void help(int exitcode
)
3898 /* Please keep in synch with QEMU_OPTION_ enums, qemu_options[]
3899 and qemu-doc.texi */
3900 printf("QEMU PC emulator version " QEMU_VERSION
", Copyright (c) 2003-2008 Fabrice Bellard\n"
3901 "usage: %s [options] [disk_image]\n"
3903 "'disk_image' is a raw hard image image for IDE hard disk 0\n"
3905 "Standard options:\n"
3906 "-h or -help display this help and exit\n"
3907 "-M machine select emulated machine (-M ? for list)\n"
3908 "-cpu cpu select CPU (-cpu ? for list)\n"
3909 "-smp n set the number of CPUs to 'n' [default=1]\n"
3910 "-fda/-fdb file use 'file' as floppy disk 0/1 image\n"
3911 "-hda/-hdb file use 'file' as IDE hard disk 0/1 image\n"
3912 "-hdc/-hdd file use 'file' as IDE hard disk 2/3 image\n"
3913 "-cdrom file use 'file' as IDE cdrom image (cdrom is ide1 master)\n"
3914 "-drive [file=file][,if=type][,bus=n][,unit=m][,media=d][,index=i]\n"
3915 " [,cyls=c,heads=h,secs=s[,trans=t]][,snapshot=on|off]\n"
3916 " [,cache=writethrough|writeback|none][,format=f][,serial=s]\n"
3917 " use 'file' as a drive image\n"
3918 "-mtdblock file use 'file' as on-board Flash memory image\n"
3919 "-sd file use 'file' as SecureDigital card image\n"
3920 "-pflash file use 'file' as a parallel flash image\n"
3921 "-boot [a|c|d|n] boot on floppy (a), hard disk (c), CD-ROM (d), or network (n)\n"
3922 "-snapshot write to temporary files instead of disk image files\n"
3923 "-m megs set virtual RAM size to megs MB [default=%d]\n"
3925 "-k language use keyboard layout (for example \"fr\" for French)\n"
3928 "-audio-help print list of audio drivers and their options\n"
3929 "-soundhw c1,... enable audio support\n"
3930 " and only specified sound cards (comma separated list)\n"
3931 " use -soundhw ? to get the list of supported cards\n"
3932 " use -soundhw all to enable all of them\n"
3934 "-usb enable the USB driver (will be the default soon)\n"
3935 "-usbdevice name add the host or guest USB device 'name'\n"
3936 "-name string set the name of the guest\n"
3937 "-uuid %%08x-%%04x-%%04x-%%04x-%%012x\n"
3938 " specify machine UUID\n"
3940 "Display options:\n"
3941 "-nographic disable graphical output and redirect serial I/Os to console\n"
3942 #ifdef CONFIG_CURSES
3943 "-curses use a curses/ncurses interface instead of SDL\n"
3946 "-no-frame open SDL window without a frame and window decorations\n"
3947 "-alt-grab use Ctrl-Alt-Shift to grab mouse (instead of Ctrl-Alt)\n"
3948 "-no-quit disable SDL window close capability\n"
3951 "-portrait rotate graphical output 90 deg left (only PXA LCD)\n"
3952 "-vga [std|cirrus|vmware|none]\n"
3953 " select video card type\n"
3954 "-full-screen start in full screen\n"
3955 #if defined(TARGET_PPC) || defined(TARGET_SPARC)
3956 "-g WxH[xDEPTH] Set the initial graphical resolution and depth\n"
3958 "-vnc display start a VNC server on display\n"
3960 "Network options:\n"
3961 "-net nic[,vlan=n][,macaddr=addr][,model=type][,name=str]\n"
3962 " create a new Network Interface Card and connect it to VLAN 'n'\n"
3964 "-net user[,vlan=n][,name=str][,hostname=host]\n"
3965 " connect the user mode network stack to VLAN 'n' and send\n"
3966 " hostname 'host' to DHCP clients\n"
3969 "-net tap[,vlan=n][,name=str],ifname=name\n"
3970 " connect the host TAP network interface to VLAN 'n'\n"
3972 "-net tap[,vlan=n][,name=str][,fd=h][,ifname=name][,script=file][,downscript=dfile]\n"
3973 " connect the host TAP network interface to VLAN 'n' and use the\n"
3974 " network scripts 'file' (default=%s)\n"
3975 " and 'dfile' (default=%s);\n"
3976 " use '[down]script=no' to disable script execution;\n"
3977 " use 'fd=h' to connect to an already opened TAP interface\n"
3979 "-net socket[,vlan=n][,name=str][,fd=h][,listen=[host]:port][,connect=host:port]\n"
3980 " connect the vlan 'n' to another VLAN using a socket connection\n"
3981 "-net socket[,vlan=n][,name=str][,fd=h][,mcast=maddr:port]\n"
3982 " connect the vlan 'n' to multicast maddr and port\n"
3984 "-net vde[,vlan=n][,name=str][,sock=socketpath][,port=n][,group=groupname][,mode=octalmode]\n"
3985 " connect the vlan 'n' to port 'n' of a vde switch running\n"
3986 " on host and listening for incoming connections on 'socketpath'.\n"
3987 " Use group 'groupname' and mode 'octalmode' to change default\n"
3988 " ownership and permissions for communication port.\n"
3990 "-net none use it alone to have zero network devices; if no -net option\n"
3991 " is provided, the default is '-net nic -net user'\n"
3993 "-tftp dir allow tftp access to files in dir [-net user]\n"
3994 "-bootp file advertise file in BOOTP replies\n"
3996 "-smb dir allow SMB access to files in 'dir' [-net user]\n"
3998 "-redir [tcp|udp]:host-port:[guest-host]:guest-port\n"
3999 " redirect TCP or UDP connections from host to guest [-net user]\n"
4002 "-bt hci,null dumb bluetooth HCI - doesn't respond to commands\n"
4003 "-bt hci,host[:id]\n"
4004 " use host's HCI with the given name\n"
4005 "-bt hci[,vlan=n]\n"
4006 " emulate a standard HCI in virtual scatternet 'n'\n"
4007 "-bt vhci[,vlan=n]\n"
4008 " add host computer to virtual scatternet 'n' using VHCI\n"
4009 "-bt device:dev[,vlan=n]\n"
4010 " emulate a bluetooth device 'dev' in scatternet 'n'\n"
4014 "i386 target only:\n"
4015 "-win2k-hack use it when installing Windows 2000 to avoid a disk full bug\n"
4016 "-rtc-td-hack use it to fix time drift in Windows ACPI HAL\n"
4017 "-no-fd-bootchk disable boot signature checking for floppy disks\n"
4018 "-no-acpi disable ACPI\n"
4019 "-no-hpet disable HPET\n"
4020 "-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"
4021 " ACPI table description\n"
4023 "Linux boot specific:\n"
4024 "-kernel bzImage use 'bzImage' as kernel image\n"
4025 "-append cmdline use 'cmdline' as kernel command line\n"
4026 "-initrd file use 'file' as initial ram disk\n"
4028 "Debug/Expert options:\n"
4029 "-serial dev redirect the serial port to char device 'dev'\n"
4030 "-parallel dev redirect the parallel port to char device 'dev'\n"
4031 "-monitor dev redirect the monitor to char device 'dev'\n"
4032 "-pidfile file write PID to 'file'\n"
4033 "-S freeze CPU at startup (use 'c' to start execution)\n"
4034 "-s wait gdb connection to port\n"
4035 "-p port set gdb connection port [default=%s]\n"
4036 "-d item1,... output log to %s (use -d ? for a list of log items)\n"
4037 "-hdachs c,h,s[,t]\n"
4038 " force hard disk 0 physical geometry and the optional BIOS\n"
4039 " translation (t=none or lba) (usually qemu can guess them)\n"
4040 "-L path set the directory for the BIOS, VGA BIOS and keymaps\n"
4041 "-bios file set the filename for the BIOS\n"
4043 "-kernel-kqemu enable KQEMU full virtualization (default is user mode only)\n"
4044 "-no-kqemu disable KQEMU kernel module usage\n"
4047 "-enable-kvm enable KVM full virtualization support\n"
4049 "-no-reboot exit instead of rebooting\n"
4050 "-no-shutdown stop before shutdown\n"
4051 "-loadvm [tag|id]\n"
4052 " start right away with a saved state (loadvm in monitor)\n"
4054 "-daemonize daemonize QEMU after initializing\n"
4056 "-option-rom rom load a file, rom, into the option ROM space\n"
4057 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
4058 "-prom-env variable=value\n"
4059 " set OpenBIOS nvram variables\n"
4061 "-clock force the use of the given methods for timer alarm.\n"
4062 " To see what timers are available use -clock ?\n"
4063 "-localtime set the real time clock to local time [default=utc]\n"
4064 "-startdate select initial date of the clock\n"
4065 "-icount [N|auto]\n"
4066 " enable virtual instruction counter with 2^N clock ticks per instruction\n"
4067 "-echr chr set terminal escape character instead of ctrl-a\n"
4068 "-virtioconsole c\n"
4069 " set virtio console\n"
4070 "-show-cursor show cursor\n"
4071 #if defined(TARGET_ARM) || defined(TARGET_M68K)
4072 "-semihosting semihosting mode\n"
4074 #if defined(TARGET_ARM)
4075 "-old-param old param mode\n"
4077 "-tb-size n set TB size\n"
4078 "-incoming p prepare for incoming migration, listen on port p\n"
4080 "-chroot dir Chroot to dir just before starting the VM.\n"
4081 "-runas user Change to user id user just before starting the VM.\n"
4084 "During emulation, the following keys are useful:\n"
4085 "ctrl-alt-f toggle full screen\n"
4086 "ctrl-alt-n switch to virtual console 'n'\n"
4087 "ctrl-alt toggle mouse and keyboard grab\n"
4089 "When using -nographic, press 'ctrl-a h' to get some help.\n"
4094 DEFAULT_NETWORK_SCRIPT
,
4095 DEFAULT_NETWORK_DOWN_SCRIPT
,
4097 DEFAULT_GDBSTUB_PORT
,
4102 #define HAS_ARG 0x0001
4105 /* Please keep in synch with help, qemu_options[] and
4107 /* Standard options: */
4120 QEMU_OPTION_mtdblock
,
4124 QEMU_OPTION_snapshot
,
4127 QEMU_OPTION_audio_help
,
4128 QEMU_OPTION_soundhw
,
4130 QEMU_OPTION_usbdevice
,
4134 /* Display options: */
4135 QEMU_OPTION_nographic
,
4137 QEMU_OPTION_no_frame
,
4138 QEMU_OPTION_alt_grab
,
4139 QEMU_OPTION_no_quit
,
4141 QEMU_OPTION_portrait
,
4143 QEMU_OPTION_full_screen
,
4147 /* Network options: */
4155 /* i386 target only: */
4156 QEMU_OPTION_win2k_hack
,
4157 QEMU_OPTION_rtc_td_hack
,
4158 QEMU_OPTION_no_fd_bootchk
,
4159 QEMU_OPTION_no_acpi
,
4160 QEMU_OPTION_no_hpet
,
4161 QEMU_OPTION_acpitable
,
4163 /* Linux boot specific: */
4168 /* Debug/Expert options: */
4170 QEMU_OPTION_parallel
,
4171 QEMU_OPTION_monitor
,
4172 QEMU_OPTION_pidfile
,
4180 QEMU_OPTION_kernel_kqemu
,
4181 QEMU_OPTION_no_kqemu
,
4182 QEMU_OPTION_enable_kvm
,
4183 QEMU_OPTION_no_reboot
,
4184 QEMU_OPTION_no_shutdown
,
4186 QEMU_OPTION_daemonize
,
4187 QEMU_OPTION_option_rom
,
4188 QEMU_OPTION_prom_env
,
4190 QEMU_OPTION_localtime
,
4191 QEMU_OPTION_startdate
,
4194 QEMU_OPTION_virtiocon
,
4195 QEMU_OPTION_show_cursor
,
4196 QEMU_OPTION_semihosting
,
4197 QEMU_OPTION_old_param
,
4198 QEMU_OPTION_tb_size
,
4199 QEMU_OPTION_incoming
,
4204 typedef struct QEMUOption
{
4210 static const QEMUOption qemu_options
[] = {
4211 /* Please keep in synch with help, QEMU_OPTION_ enums, and
4213 /* Standard options: */
4214 { "h", 0, QEMU_OPTION_h
},
4215 { "help", 0, QEMU_OPTION_h
},
4216 { "M", HAS_ARG
, QEMU_OPTION_M
},
4217 { "cpu", HAS_ARG
, QEMU_OPTION_cpu
},
4218 { "smp", HAS_ARG
, QEMU_OPTION_smp
},
4219 { "fda", HAS_ARG
, QEMU_OPTION_fda
},
4220 { "fdb", HAS_ARG
, QEMU_OPTION_fdb
},
4221 { "hda", HAS_ARG
, QEMU_OPTION_hda
},
4222 { "hdb", HAS_ARG
, QEMU_OPTION_hdb
},
4223 { "hdc", HAS_ARG
, QEMU_OPTION_hdc
},
4224 { "hdd", HAS_ARG
, QEMU_OPTION_hdd
},
4225 { "cdrom", HAS_ARG
, QEMU_OPTION_cdrom
},
4226 { "drive", HAS_ARG
, QEMU_OPTION_drive
},
4227 { "mtdblock", HAS_ARG
, QEMU_OPTION_mtdblock
},
4228 { "sd", HAS_ARG
, QEMU_OPTION_sd
},
4229 { "pflash", HAS_ARG
, QEMU_OPTION_pflash
},
4230 { "boot", HAS_ARG
, QEMU_OPTION_boot
},
4231 { "snapshot", 0, QEMU_OPTION_snapshot
},
4232 { "m", HAS_ARG
, QEMU_OPTION_m
},
4234 { "k", HAS_ARG
, QEMU_OPTION_k
},
4237 { "audio-help", 0, QEMU_OPTION_audio_help
},
4238 { "soundhw", HAS_ARG
, QEMU_OPTION_soundhw
},
4240 { "usb", 0, QEMU_OPTION_usb
},
4241 { "usbdevice", HAS_ARG
, QEMU_OPTION_usbdevice
},
4242 { "name", HAS_ARG
, QEMU_OPTION_name
},
4243 { "uuid", HAS_ARG
, QEMU_OPTION_uuid
},
4245 /* Display options: */
4246 { "nographic", 0, QEMU_OPTION_nographic
},
4247 #ifdef CONFIG_CURSES
4248 { "curses", 0, QEMU_OPTION_curses
},
4251 { "no-frame", 0, QEMU_OPTION_no_frame
},
4252 { "alt-grab", 0, QEMU_OPTION_alt_grab
},
4253 { "no-quit", 0, QEMU_OPTION_no_quit
},
4254 { "sdl", 0, QEMU_OPTION_sdl
},
4256 { "portrait", 0, QEMU_OPTION_portrait
},
4257 { "vga", HAS_ARG
, QEMU_OPTION_vga
},
4258 { "full-screen", 0, QEMU_OPTION_full_screen
},
4259 #if defined(TARGET_PPC) || defined(TARGET_SPARC)
4260 { "g", 1, QEMU_OPTION_g
},
4262 { "vnc", HAS_ARG
, QEMU_OPTION_vnc
},
4264 /* Network options: */
4265 { "net", HAS_ARG
, QEMU_OPTION_net
},
4267 { "tftp", HAS_ARG
, QEMU_OPTION_tftp
},
4268 { "bootp", HAS_ARG
, QEMU_OPTION_bootp
},
4270 { "smb", HAS_ARG
, QEMU_OPTION_smb
},
4272 { "redir", HAS_ARG
, QEMU_OPTION_redir
},
4274 { "bt", HAS_ARG
, QEMU_OPTION_bt
},
4276 /* i386 target only: */
4277 { "win2k-hack", 0, QEMU_OPTION_win2k_hack
},
4278 { "rtc-td-hack", 0, QEMU_OPTION_rtc_td_hack
},
4279 { "no-fd-bootchk", 0, QEMU_OPTION_no_fd_bootchk
},
4280 { "no-acpi", 0, QEMU_OPTION_no_acpi
},
4281 { "no-hpet", 0, QEMU_OPTION_no_hpet
},
4282 { "acpitable", HAS_ARG
, QEMU_OPTION_acpitable
},
4285 /* Linux boot specific: */
4286 { "kernel", HAS_ARG
, QEMU_OPTION_kernel
},
4287 { "append", HAS_ARG
, QEMU_OPTION_append
},
4288 { "initrd", HAS_ARG
, QEMU_OPTION_initrd
},
4290 /* Debug/Expert options: */
4291 { "serial", HAS_ARG
, QEMU_OPTION_serial
},
4292 { "parallel", HAS_ARG
, QEMU_OPTION_parallel
},
4293 { "monitor", HAS_ARG
, QEMU_OPTION_monitor
},
4294 { "pidfile", HAS_ARG
, QEMU_OPTION_pidfile
},
4295 { "S", 0, QEMU_OPTION_S
},
4296 { "s", 0, QEMU_OPTION_s
},
4297 { "p", HAS_ARG
, QEMU_OPTION_p
},
4298 { "d", HAS_ARG
, QEMU_OPTION_d
},
4299 { "hdachs", HAS_ARG
, QEMU_OPTION_hdachs
},
4300 { "L", HAS_ARG
, QEMU_OPTION_L
},
4301 { "bios", HAS_ARG
, QEMU_OPTION_bios
},
4303 { "kernel-kqemu", 0, QEMU_OPTION_kernel_kqemu
},
4304 { "no-kqemu", 0, QEMU_OPTION_no_kqemu
},
4307 { "enable-kvm", 0, QEMU_OPTION_enable_kvm
},
4309 { "no-reboot", 0, QEMU_OPTION_no_reboot
},
4310 { "no-shutdown", 0, QEMU_OPTION_no_shutdown
},
4311 { "loadvm", HAS_ARG
, QEMU_OPTION_loadvm
},
4312 { "daemonize", 0, QEMU_OPTION_daemonize
},
4313 { "option-rom", HAS_ARG
, QEMU_OPTION_option_rom
},
4314 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
4315 { "prom-env", HAS_ARG
, QEMU_OPTION_prom_env
},
4317 { "clock", HAS_ARG
, QEMU_OPTION_clock
},
4318 { "localtime", 0, QEMU_OPTION_localtime
},
4319 { "startdate", HAS_ARG
, QEMU_OPTION_startdate
},
4320 { "icount", HAS_ARG
, QEMU_OPTION_icount
},
4321 { "echr", HAS_ARG
, QEMU_OPTION_echr
},
4322 { "virtioconsole", HAS_ARG
, QEMU_OPTION_virtiocon
},
4323 { "show-cursor", 0, QEMU_OPTION_show_cursor
},
4324 #if defined(TARGET_ARM) || defined(TARGET_M68K)
4325 { "semihosting", 0, QEMU_OPTION_semihosting
},
4327 #if defined(TARGET_ARM)
4328 { "old-param", 0, QEMU_OPTION_old_param
},
4330 { "tb-size", HAS_ARG
, QEMU_OPTION_tb_size
},
4331 { "incoming", HAS_ARG
, QEMU_OPTION_incoming
},
4332 { "chroot", HAS_ARG
, QEMU_OPTION_chroot
},
4333 { "runas", HAS_ARG
, QEMU_OPTION_runas
},
4337 /* password input */
4339 int qemu_key_check(BlockDriverState
*bs
, const char *name
)
4344 if (!bdrv_is_encrypted(bs
))
4347 term_printf("%s is encrypted.\n", name
);
4348 for(i
= 0; i
< 3; i
++) {
4349 monitor_readline("Password: ", 1, password
, sizeof(password
));
4350 if (bdrv_set_key(bs
, password
) == 0)
4352 term_printf("invalid password\n");
4357 static BlockDriverState
*get_bdrv(int index
)
4359 if (index
> nb_drives
)
4361 return drives_table
[index
].bdrv
;
4364 static void read_passwords(void)
4366 BlockDriverState
*bs
;
4369 for(i
= 0; i
< 6; i
++) {
4372 qemu_key_check(bs
, bdrv_get_device_name(bs
));
4377 struct soundhw soundhw
[] = {
4378 #ifdef HAS_AUDIO_CHOICE
4379 #if defined(TARGET_I386) || defined(TARGET_MIPS)
4385 { .init_isa
= pcspk_audio_init
}
4392 "Creative Sound Blaster 16",
4395 { .init_isa
= SB16_init
}
4399 #ifdef CONFIG_CS4231A
4405 { .init_isa
= cs4231a_init
}
4413 "Yamaha YMF262 (OPL3)",
4415 "Yamaha YM3812 (OPL2)",
4419 { .init_isa
= Adlib_init
}
4426 "Gravis Ultrasound GF1",
4429 { .init_isa
= GUS_init
}
4436 "Intel 82801AA AC97 Audio",
4439 { .init_pci
= ac97_init
}
4443 #ifdef CONFIG_ES1370
4446 "ENSONIQ AudioPCI ES1370",
4449 { .init_pci
= es1370_init
}
4453 #endif /* HAS_AUDIO_CHOICE */
4455 { NULL
, NULL
, 0, 0, { NULL
} }
4458 static void select_soundhw (const char *optarg
)
4462 if (*optarg
== '?') {
4465 printf ("Valid sound card names (comma separated):\n");
4466 for (c
= soundhw
; c
->name
; ++c
) {
4467 printf ("%-11s %s\n", c
->name
, c
->descr
);
4469 printf ("\n-soundhw all will enable all of the above\n");
4470 exit (*optarg
!= '?');
4478 if (!strcmp (optarg
, "all")) {
4479 for (c
= soundhw
; c
->name
; ++c
) {
4487 e
= strchr (p
, ',');
4488 l
= !e
? strlen (p
) : (size_t) (e
- p
);
4490 for (c
= soundhw
; c
->name
; ++c
) {
4491 if (!strncmp (c
->name
, p
, l
)) {
4500 "Unknown sound card name (too big to show)\n");
4503 fprintf (stderr
, "Unknown sound card name `%.*s'\n",
4508 p
+= l
+ (e
!= NULL
);
4512 goto show_valid_cards
;
4517 static void select_vgahw (const char *p
)
4521 if (strstart(p
, "std", &opts
)) {
4522 std_vga_enabled
= 1;
4523 cirrus_vga_enabled
= 0;
4525 } else if (strstart(p
, "cirrus", &opts
)) {
4526 cirrus_vga_enabled
= 1;
4527 std_vga_enabled
= 0;
4529 } else if (strstart(p
, "vmware", &opts
)) {
4530 cirrus_vga_enabled
= 0;
4531 std_vga_enabled
= 0;
4533 } else if (strstart(p
, "none", &opts
)) {
4534 cirrus_vga_enabled
= 0;
4535 std_vga_enabled
= 0;
4539 fprintf(stderr
, "Unknown vga type: %s\n", p
);
4543 const char *nextopt
;
4545 if (strstart(opts
, ",retrace=", &nextopt
)) {
4547 if (strstart(opts
, "dumb", &nextopt
))
4548 vga_retrace_method
= VGA_RETRACE_DUMB
;
4549 else if (strstart(opts
, "precise", &nextopt
))
4550 vga_retrace_method
= VGA_RETRACE_PRECISE
;
4551 else goto invalid_vga
;
4552 } else goto invalid_vga
;
4558 static BOOL WINAPI
qemu_ctrl_handler(DWORD type
)
4560 exit(STATUS_CONTROL_C_EXIT
);
4565 static int qemu_uuid_parse(const char *str
, uint8_t *uuid
)
4569 if(strlen(str
) != 36)
4572 ret
= sscanf(str
, UUID_FMT
, &uuid
[0], &uuid
[1], &uuid
[2], &uuid
[3],
4573 &uuid
[4], &uuid
[5], &uuid
[6], &uuid
[7], &uuid
[8], &uuid
[9],
4574 &uuid
[10], &uuid
[11], &uuid
[12], &uuid
[13], &uuid
[14], &uuid
[15]);
4582 #define MAX_NET_CLIENTS 32
4586 static void termsig_handler(int signal
)
4588 qemu_system_shutdown_request();
4591 static void termsig_setup(void)
4593 struct sigaction act
;
4595 memset(&act
, 0, sizeof(act
));
4596 act
.sa_handler
= termsig_handler
;
4597 sigaction(SIGINT
, &act
, NULL
);
4598 sigaction(SIGHUP
, &act
, NULL
);
4599 sigaction(SIGTERM
, &act
, NULL
);
4604 int main(int argc
, char **argv
, char **envp
)
4606 #ifdef CONFIG_GDBSTUB
4608 const char *gdbstub_port
;
4610 uint32_t boot_devices_bitmap
= 0;
4612 int snapshot
, linux_boot
, net_boot
;
4613 const char *initrd_filename
;
4614 const char *kernel_filename
, *kernel_cmdline
;
4615 const char *boot_devices
= "";
4617 DisplayChangeListener
*dcl
;
4618 int cyls
, heads
, secs
, translation
;
4619 const char *net_clients
[MAX_NET_CLIENTS
];
4621 const char *bt_opts
[MAX_BT_CMDLINE
];
4625 const char *r
, *optarg
;
4626 CharDriverState
*monitor_hd
= NULL
;
4627 const char *monitor_device
;
4628 const char *serial_devices
[MAX_SERIAL_PORTS
];
4629 int serial_device_index
;
4630 const char *parallel_devices
[MAX_PARALLEL_PORTS
];
4631 int parallel_device_index
;
4632 const char *virtio_consoles
[MAX_VIRTIO_CONSOLES
];
4633 int virtio_console_index
;
4634 const char *loadvm
= NULL
;
4635 QEMUMachine
*machine
;
4636 const char *cpu_model
;
4637 const char *usb_devices
[MAX_USB_CMDLINE
];
4638 int usb_devices_index
;
4641 const char *pid_file
= NULL
;
4643 const char *incoming
= NULL
;
4645 struct passwd
*pwd
= NULL
;
4646 const char *chroot_dir
= NULL
;
4647 const char *run_as
= NULL
;
4649 qemu_cache_utils_init(envp
);
4651 LIST_INIT (&vm_change_state_head
);
4654 struct sigaction act
;
4655 sigfillset(&act
.sa_mask
);
4657 act
.sa_handler
= SIG_IGN
;
4658 sigaction(SIGPIPE
, &act
, NULL
);
4661 SetConsoleCtrlHandler(qemu_ctrl_handler
, TRUE
);
4662 /* Note: cpu_interrupt() is currently not SMP safe, so we force
4663 QEMU to run on a single CPU */
4668 h
= GetCurrentProcess();
4669 if (GetProcessAffinityMask(h
, &mask
, &smask
)) {
4670 for(i
= 0; i
< 32; i
++) {
4671 if (mask
& (1 << i
))
4676 SetProcessAffinityMask(h
, mask
);
4682 register_machines();
4683 machine
= first_machine
;
4685 initrd_filename
= NULL
;
4687 vga_ram_size
= VGA_RAM_SIZE
;
4688 #ifdef CONFIG_GDBSTUB
4690 gdbstub_port
= DEFAULT_GDBSTUB_PORT
;
4695 kernel_filename
= NULL
;
4696 kernel_cmdline
= "";
4697 cyls
= heads
= secs
= 0;
4698 translation
= BIOS_ATA_TRANSLATION_AUTO
;
4699 monitor_device
= "vc";
4701 serial_devices
[0] = "vc:80Cx24C";
4702 for(i
= 1; i
< MAX_SERIAL_PORTS
; i
++)
4703 serial_devices
[i
] = NULL
;
4704 serial_device_index
= 0;
4706 parallel_devices
[0] = "vc:80Cx24C";
4707 for(i
= 1; i
< MAX_PARALLEL_PORTS
; i
++)
4708 parallel_devices
[i
] = NULL
;
4709 parallel_device_index
= 0;
4711 for(i
= 0; i
< MAX_VIRTIO_CONSOLES
; i
++)
4712 virtio_consoles
[i
] = NULL
;
4713 virtio_console_index
= 0;
4715 usb_devices_index
= 0;
4734 hda_index
= drive_add(argv
[optind
++], HD_ALIAS
, 0);
4736 const QEMUOption
*popt
;
4739 /* Treat --foo the same as -foo. */
4742 popt
= qemu_options
;
4745 fprintf(stderr
, "%s: invalid option -- '%s'\n",
4749 if (!strcmp(popt
->name
, r
+ 1))
4753 if (popt
->flags
& HAS_ARG
) {
4754 if (optind
>= argc
) {
4755 fprintf(stderr
, "%s: option '%s' requires an argument\n",
4759 optarg
= argv
[optind
++];
4764 switch(popt
->index
) {
4766 machine
= find_machine(optarg
);
4769 printf("Supported machines are:\n");
4770 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
4771 printf("%-10s %s%s\n",
4773 m
== first_machine
? " (default)" : "");
4775 exit(*optarg
!= '?');
4778 case QEMU_OPTION_cpu
:
4779 /* hw initialization will check this */
4780 if (*optarg
== '?') {
4781 /* XXX: implement xxx_cpu_list for targets that still miss it */
4782 #if defined(cpu_list)
4783 cpu_list(stdout
, &fprintf
);
4790 case QEMU_OPTION_initrd
:
4791 initrd_filename
= optarg
;
4793 case QEMU_OPTION_hda
:
4795 hda_index
= drive_add(optarg
, HD_ALIAS
, 0);
4797 hda_index
= drive_add(optarg
, HD_ALIAS
4798 ",cyls=%d,heads=%d,secs=%d%s",
4799 0, cyls
, heads
, secs
,
4800 translation
== BIOS_ATA_TRANSLATION_LBA
?
4802 translation
== BIOS_ATA_TRANSLATION_NONE
?
4803 ",trans=none" : "");
4805 case QEMU_OPTION_hdb
:
4806 case QEMU_OPTION_hdc
:
4807 case QEMU_OPTION_hdd
:
4808 drive_add(optarg
, HD_ALIAS
, popt
->index
- QEMU_OPTION_hda
);
4810 case QEMU_OPTION_drive
:
4811 drive_add(NULL
, "%s", optarg
);
4813 case QEMU_OPTION_mtdblock
:
4814 drive_add(optarg
, MTD_ALIAS
);
4816 case QEMU_OPTION_sd
:
4817 drive_add(optarg
, SD_ALIAS
);
4819 case QEMU_OPTION_pflash
:
4820 drive_add(optarg
, PFLASH_ALIAS
);
4822 case QEMU_OPTION_snapshot
:
4825 case QEMU_OPTION_hdachs
:
4829 cyls
= strtol(p
, (char **)&p
, 0);
4830 if (cyls
< 1 || cyls
> 16383)
4835 heads
= strtol(p
, (char **)&p
, 0);
4836 if (heads
< 1 || heads
> 16)
4841 secs
= strtol(p
, (char **)&p
, 0);
4842 if (secs
< 1 || secs
> 63)
4846 if (!strcmp(p
, "none"))
4847 translation
= BIOS_ATA_TRANSLATION_NONE
;
4848 else if (!strcmp(p
, "lba"))
4849 translation
= BIOS_ATA_TRANSLATION_LBA
;
4850 else if (!strcmp(p
, "auto"))
4851 translation
= BIOS_ATA_TRANSLATION_AUTO
;
4854 } else if (*p
!= '\0') {
4856 fprintf(stderr
, "qemu: invalid physical CHS format\n");
4859 if (hda_index
!= -1)
4860 snprintf(drives_opt
[hda_index
].opt
,
4861 sizeof(drives_opt
[hda_index
].opt
),
4862 HD_ALIAS
",cyls=%d,heads=%d,secs=%d%s",
4863 0, cyls
, heads
, secs
,
4864 translation
== BIOS_ATA_TRANSLATION_LBA
?
4866 translation
== BIOS_ATA_TRANSLATION_NONE
?
4867 ",trans=none" : "");
4870 case QEMU_OPTION_nographic
:
4873 #ifdef CONFIG_CURSES
4874 case QEMU_OPTION_curses
:
4878 case QEMU_OPTION_portrait
:
4881 case QEMU_OPTION_kernel
:
4882 kernel_filename
= optarg
;
4884 case QEMU_OPTION_append
:
4885 kernel_cmdline
= optarg
;
4887 case QEMU_OPTION_cdrom
:
4888 drive_add(optarg
, CDROM_ALIAS
);
4890 case QEMU_OPTION_boot
:
4891 boot_devices
= optarg
;
4892 /* We just do some generic consistency checks */
4894 /* Could easily be extended to 64 devices if needed */
4897 boot_devices_bitmap
= 0;
4898 for (p
= boot_devices
; *p
!= '\0'; p
++) {
4899 /* Allowed boot devices are:
4900 * a b : floppy disk drives
4901 * c ... f : IDE disk drives
4902 * g ... m : machine implementation dependant drives
4903 * n ... p : network devices
4904 * It's up to each machine implementation to check
4905 * if the given boot devices match the actual hardware
4906 * implementation and firmware features.
4908 if (*p
< 'a' || *p
> 'q') {
4909 fprintf(stderr
, "Invalid boot device '%c'\n", *p
);
4912 if (boot_devices_bitmap
& (1 << (*p
- 'a'))) {
4914 "Boot device '%c' was given twice\n",*p
);
4917 boot_devices_bitmap
|= 1 << (*p
- 'a');
4921 case QEMU_OPTION_fda
:
4922 case QEMU_OPTION_fdb
:
4923 drive_add(optarg
, FD_ALIAS
, popt
->index
- QEMU_OPTION_fda
);
4926 case QEMU_OPTION_no_fd_bootchk
:
4930 case QEMU_OPTION_net
:
4931 if (nb_net_clients
>= MAX_NET_CLIENTS
) {
4932 fprintf(stderr
, "qemu: too many network clients\n");
4935 net_clients
[nb_net_clients
] = optarg
;
4939 case QEMU_OPTION_tftp
:
4940 tftp_prefix
= optarg
;
4942 case QEMU_OPTION_bootp
:
4943 bootp_filename
= optarg
;
4946 case QEMU_OPTION_smb
:
4947 net_slirp_smb(optarg
);
4950 case QEMU_OPTION_redir
:
4951 net_slirp_redir(optarg
);
4954 case QEMU_OPTION_bt
:
4955 if (nb_bt_opts
>= MAX_BT_CMDLINE
) {
4956 fprintf(stderr
, "qemu: too many bluetooth options\n");
4959 bt_opts
[nb_bt_opts
++] = optarg
;
4962 case QEMU_OPTION_audio_help
:
4966 case QEMU_OPTION_soundhw
:
4967 select_soundhw (optarg
);
4973 case QEMU_OPTION_m
: {
4977 value
= strtoul(optarg
, &ptr
, 10);
4979 case 0: case 'M': case 'm':
4986 fprintf(stderr
, "qemu: invalid ram size: %s\n", optarg
);
4990 /* On 32-bit hosts, QEMU is limited by virtual address space */
4991 if (value
> (2047 << 20)
4993 && HOST_LONG_BITS
== 32
4996 fprintf(stderr
, "qemu: at most 2047 MB RAM can be simulated\n");
4999 if (value
!= (uint64_t)(ram_addr_t
)value
) {
5000 fprintf(stderr
, "qemu: ram size too large\n");
5009 const CPULogItem
*item
;
5011 mask
= cpu_str_to_log_mask(optarg
);
5013 printf("Log items (comma separated):\n");
5014 for(item
= cpu_log_items
; item
->mask
!= 0; item
++) {
5015 printf("%-10s %s\n", item
->name
, item
->help
);
5022 #ifdef CONFIG_GDBSTUB
5027 gdbstub_port
= optarg
;
5033 case QEMU_OPTION_bios
:
5040 keyboard_layout
= optarg
;
5042 case QEMU_OPTION_localtime
:
5045 case QEMU_OPTION_vga
:
5046 select_vgahw (optarg
);
5053 w
= strtol(p
, (char **)&p
, 10);
5056 fprintf(stderr
, "qemu: invalid resolution or depth\n");
5062 h
= strtol(p
, (char **)&p
, 10);
5067 depth
= strtol(p
, (char **)&p
, 10);
5068 if (depth
!= 8 && depth
!= 15 && depth
!= 16 &&
5069 depth
!= 24 && depth
!= 32)
5071 } else if (*p
== '\0') {
5072 depth
= graphic_depth
;
5079 graphic_depth
= depth
;
5082 case QEMU_OPTION_echr
:
5085 term_escape_char
= strtol(optarg
, &r
, 0);
5087 printf("Bad argument to echr\n");
5090 case QEMU_OPTION_monitor
:
5091 monitor_device
= optarg
;
5093 case QEMU_OPTION_serial
:
5094 if (serial_device_index
>= MAX_SERIAL_PORTS
) {
5095 fprintf(stderr
, "qemu: too many serial ports\n");
5098 serial_devices
[serial_device_index
] = optarg
;
5099 serial_device_index
++;
5101 case QEMU_OPTION_virtiocon
:
5102 if (virtio_console_index
>= MAX_VIRTIO_CONSOLES
) {
5103 fprintf(stderr
, "qemu: too many virtio consoles\n");
5106 virtio_consoles
[virtio_console_index
] = optarg
;
5107 virtio_console_index
++;
5109 case QEMU_OPTION_parallel
:
5110 if (parallel_device_index
>= MAX_PARALLEL_PORTS
) {
5111 fprintf(stderr
, "qemu: too many parallel ports\n");
5114 parallel_devices
[parallel_device_index
] = optarg
;
5115 parallel_device_index
++;
5117 case QEMU_OPTION_loadvm
:
5120 case QEMU_OPTION_full_screen
:
5124 case QEMU_OPTION_no_frame
:
5127 case QEMU_OPTION_alt_grab
:
5130 case QEMU_OPTION_no_quit
:
5133 case QEMU_OPTION_sdl
:
5137 case QEMU_OPTION_pidfile
:
5141 case QEMU_OPTION_win2k_hack
:
5142 win2k_install_hack
= 1;
5144 case QEMU_OPTION_rtc_td_hack
:
5147 case QEMU_OPTION_acpitable
:
5148 if(acpi_table_add(optarg
) < 0) {
5149 fprintf(stderr
, "Wrong acpi table provided\n");
5155 case QEMU_OPTION_no_kqemu
:
5158 case QEMU_OPTION_kernel_kqemu
:
5163 case QEMU_OPTION_enable_kvm
:
5170 case QEMU_OPTION_usb
:
5173 case QEMU_OPTION_usbdevice
:
5175 if (usb_devices_index
>= MAX_USB_CMDLINE
) {
5176 fprintf(stderr
, "Too many USB devices\n");
5179 usb_devices
[usb_devices_index
] = optarg
;
5180 usb_devices_index
++;
5182 case QEMU_OPTION_smp
:
5183 smp_cpus
= atoi(optarg
);
5185 fprintf(stderr
, "Invalid number of CPUs\n");
5189 case QEMU_OPTION_vnc
:
5190 vnc_display
= optarg
;
5192 case QEMU_OPTION_no_acpi
:
5195 case QEMU_OPTION_no_hpet
:
5198 case QEMU_OPTION_no_reboot
:
5201 case QEMU_OPTION_no_shutdown
:
5204 case QEMU_OPTION_show_cursor
:
5207 case QEMU_OPTION_uuid
:
5208 if(qemu_uuid_parse(optarg
, qemu_uuid
) < 0) {
5209 fprintf(stderr
, "Fail to parse UUID string."
5210 " Wrong format.\n");
5214 case QEMU_OPTION_daemonize
:
5217 case QEMU_OPTION_option_rom
:
5218 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
5219 fprintf(stderr
, "Too many option ROMs\n");
5222 option_rom
[nb_option_roms
] = optarg
;
5225 case QEMU_OPTION_semihosting
:
5226 semihosting_enabled
= 1;
5228 case QEMU_OPTION_name
:
5231 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
5232 case QEMU_OPTION_prom_env
:
5233 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
5234 fprintf(stderr
, "Too many prom variables\n");
5237 prom_envs
[nb_prom_envs
] = optarg
;
5242 case QEMU_OPTION_old_param
:
5246 case QEMU_OPTION_clock
:
5247 configure_alarms(optarg
);
5249 case QEMU_OPTION_startdate
:
5252 time_t rtc_start_date
;
5253 if (!strcmp(optarg
, "now")) {
5254 rtc_date_offset
= -1;
5256 if (sscanf(optarg
, "%d-%d-%dT%d:%d:%d",
5264 } else if (sscanf(optarg
, "%d-%d-%d",
5267 &tm
.tm_mday
) == 3) {
5276 rtc_start_date
= mktimegm(&tm
);
5277 if (rtc_start_date
== -1) {
5279 fprintf(stderr
, "Invalid date format. Valid format are:\n"
5280 "'now' or '2006-06-17T16:01:21' or '2006-06-17'\n");
5283 rtc_date_offset
= time(NULL
) - rtc_start_date
;
5287 case QEMU_OPTION_tb_size
:
5288 tb_size
= strtol(optarg
, NULL
, 0);
5292 case QEMU_OPTION_icount
:
5294 if (strcmp(optarg
, "auto") == 0) {
5295 icount_time_shift
= -1;
5297 icount_time_shift
= strtol(optarg
, NULL
, 0);
5300 case QEMU_OPTION_incoming
:
5303 case QEMU_OPTION_chroot
:
5304 chroot_dir
= optarg
;
5306 case QEMU_OPTION_runas
:
5313 #if defined(CONFIG_KVM) && defined(USE_KQEMU)
5314 if (kvm_allowed
&& kqemu_allowed
) {
5316 "You can not enable both KVM and kqemu at the same time\n");
5321 machine
->max_cpus
= machine
->max_cpus
?: 1; /* Default to UP */
5322 if (smp_cpus
> machine
->max_cpus
) {
5323 fprintf(stderr
, "Number of SMP cpus requested (%d), exceeds max cpus "
5324 "supported by machine `%s' (%d)\n", smp_cpus
, machine
->name
,
5330 if (serial_device_index
== 0)
5331 serial_devices
[0] = "stdio";
5332 if (parallel_device_index
== 0)
5333 parallel_devices
[0] = "null";
5334 if (strncmp(monitor_device
, "vc", 2) == 0)
5335 monitor_device
= "stdio";
5342 if (pipe(fds
) == -1)
5353 len
= read(fds
[0], &status
, 1);
5354 if (len
== -1 && (errno
== EINTR
))
5359 else if (status
== 1) {
5360 fprintf(stderr
, "Could not acquire pidfile\n");
5377 signal(SIGTSTP
, SIG_IGN
);
5378 signal(SIGTTOU
, SIG_IGN
);
5379 signal(SIGTTIN
, SIG_IGN
);
5383 if (pid_file
&& qemu_create_pidfile(pid_file
) != 0) {
5386 write(fds
[1], &status
, 1);
5388 fprintf(stderr
, "Could not acquire pid file\n");
5396 linux_boot
= (kernel_filename
!= NULL
);
5397 net_boot
= (boot_devices_bitmap
>> ('n' - 'a')) & 0xF;
5399 if (!linux_boot
&& net_boot
== 0 &&
5400 !machine
->nodisk_ok
&& nb_drives_opt
== 0)
5403 if (!linux_boot
&& *kernel_cmdline
!= '\0') {
5404 fprintf(stderr
, "-append only allowed with -kernel option\n");
5408 if (!linux_boot
&& initrd_filename
!= NULL
) {
5409 fprintf(stderr
, "-initrd only allowed with -kernel option\n");
5413 /* boot to floppy or the default cd if no hard disk defined yet */
5414 if (!boot_devices
[0]) {
5415 boot_devices
= "cad";
5417 setvbuf(stdout
, NULL
, _IOLBF
, 0);
5420 if (init_timer_alarm() < 0) {
5421 fprintf(stderr
, "could not initialize alarm timer\n");
5424 if (use_icount
&& icount_time_shift
< 0) {
5426 /* 125MIPS seems a reasonable initial guess at the guest speed.
5427 It will be corrected fairly quickly anyway. */
5428 icount_time_shift
= 3;
5429 init_icount_adjust();
5436 /* init network clients */
5437 if (nb_net_clients
== 0) {
5438 /* if no clients, we use a default config */
5439 net_clients
[nb_net_clients
++] = "nic";
5441 net_clients
[nb_net_clients
++] = "user";
5445 for(i
= 0;i
< nb_net_clients
; i
++) {
5446 if (net_client_parse(net_clients
[i
]) < 0)
5452 /* XXX: this should be moved in the PC machine instantiation code */
5453 if (net_boot
!= 0) {
5455 for (i
= 0; i
< nb_nics
&& i
< 4; i
++) {
5456 const char *model
= nd_table
[i
].model
;
5458 if (net_boot
& (1 << i
)) {
5461 snprintf(buf
, sizeof(buf
), "%s/pxe-%s.bin", bios_dir
, model
);
5462 if (get_image_size(buf
) > 0) {
5463 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
5464 fprintf(stderr
, "Too many option ROMs\n");
5467 option_rom
[nb_option_roms
] = strdup(buf
);
5474 fprintf(stderr
, "No valid PXE rom found for network device\n");
5480 /* init the bluetooth world */
5481 for (i
= 0; i
< nb_bt_opts
; i
++)
5482 if (bt_parse(bt_opts
[i
]))
5485 /* init the memory */
5486 phys_ram_size
= machine
->ram_require
& ~RAMSIZE_FIXED
;
5488 if (machine
->ram_require
& RAMSIZE_FIXED
) {
5490 if (ram_size
< phys_ram_size
) {
5491 fprintf(stderr
, "Machine `%s' requires %llu bytes of memory\n",
5492 machine
->name
, (unsigned long long) phys_ram_size
);
5496 phys_ram_size
= ram_size
;
5498 ram_size
= phys_ram_size
;
5501 ram_size
= DEFAULT_RAM_SIZE
* 1024 * 1024;
5503 phys_ram_size
+= ram_size
;
5506 phys_ram_base
= qemu_vmalloc(phys_ram_size
);
5507 if (!phys_ram_base
) {
5508 fprintf(stderr
, "Could not allocate physical memory\n");
5512 /* init the dynamic translator */
5513 cpu_exec_init_all(tb_size
* 1024 * 1024);
5517 /* we always create the cdrom drive, even if no disk is there */
5519 if (nb_drives_opt
< MAX_DRIVES
)
5520 drive_add(NULL
, CDROM_ALIAS
);
5522 /* we always create at least one floppy */
5524 if (nb_drives_opt
< MAX_DRIVES
)
5525 drive_add(NULL
, FD_ALIAS
, 0);
5527 /* we always create one sd slot, even if no card is in it */
5529 if (nb_drives_opt
< MAX_DRIVES
)
5530 drive_add(NULL
, SD_ALIAS
);
5532 /* open the virtual block devices */
5534 for(i
= 0; i
< nb_drives_opt
; i
++)
5535 if (drive_init(&drives_opt
[i
], snapshot
, machine
) == -1)
5538 register_savevm("timer", 0, 2, timer_save
, timer_load
, NULL
);
5539 register_savevm_live("ram", 0, 3, ram_save_live
, NULL
, ram_load
, NULL
);
5542 /* must be after terminal init, SDL library changes signal handlers */
5546 /* Maintain compatibility with multiple stdio monitors */
5547 if (!strcmp(monitor_device
,"stdio")) {
5548 for (i
= 0; i
< MAX_SERIAL_PORTS
; i
++) {
5549 const char *devname
= serial_devices
[i
];
5550 if (devname
&& !strcmp(devname
,"mon:stdio")) {
5551 monitor_device
= NULL
;
5553 } else if (devname
&& !strcmp(devname
,"stdio")) {
5554 monitor_device
= NULL
;
5555 serial_devices
[i
] = "mon:stdio";
5561 if (kvm_enabled()) {
5564 ret
= kvm_init(smp_cpus
);
5566 fprintf(stderr
, "failed to initialize KVM\n");
5571 if (monitor_device
) {
5572 monitor_hd
= qemu_chr_open("monitor", monitor_device
, NULL
);
5574 fprintf(stderr
, "qemu: could not open monitor device '%s'\n", monitor_device
);
5579 for(i
= 0; i
< MAX_SERIAL_PORTS
; i
++) {
5580 const char *devname
= serial_devices
[i
];
5581 if (devname
&& strcmp(devname
, "none")) {
5583 snprintf(label
, sizeof(label
), "serial%d", i
);
5584 serial_hds
[i
] = qemu_chr_open(label
, devname
, NULL
);
5585 if (!serial_hds
[i
]) {
5586 fprintf(stderr
, "qemu: could not open serial device '%s'\n",
5593 for(i
= 0; i
< MAX_PARALLEL_PORTS
; i
++) {
5594 const char *devname
= parallel_devices
[i
];
5595 if (devname
&& strcmp(devname
, "none")) {
5597 snprintf(label
, sizeof(label
), "parallel%d", i
);
5598 parallel_hds
[i
] = qemu_chr_open(label
, devname
, NULL
);
5599 if (!parallel_hds
[i
]) {
5600 fprintf(stderr
, "qemu: could not open parallel device '%s'\n",
5607 for(i
= 0; i
< MAX_VIRTIO_CONSOLES
; i
++) {
5608 const char *devname
= virtio_consoles
[i
];
5609 if (devname
&& strcmp(devname
, "none")) {
5611 snprintf(label
, sizeof(label
), "virtcon%d", i
);
5612 virtcon_hds
[i
] = qemu_chr_open(label
, devname
, NULL
);
5613 if (!virtcon_hds
[i
]) {
5614 fprintf(stderr
, "qemu: could not open virtio console '%s'\n",
5621 machine
->init(ram_size
, vga_ram_size
, boot_devices
,
5622 kernel_filename
, kernel_cmdline
, initrd_filename
, cpu_model
);
5624 current_machine
= machine
;
5626 /* Set KVM's vcpu state to qemu's initial CPUState. */
5627 if (kvm_enabled()) {
5630 ret
= kvm_sync_vcpus();
5632 fprintf(stderr
, "failed to initialize vcpus\n");
5637 /* init USB devices */
5639 for(i
= 0; i
< usb_devices_index
; i
++) {
5640 if (usb_device_add(usb_devices
[i
]) < 0) {
5641 fprintf(stderr
, "Warning: could not add USB device %s\n",
5648 dumb_display_init();
5649 /* just use the first displaystate for the moment */
5654 fprintf(stderr
, "fatal: -nographic can't be used with -curses\n");
5658 #if defined(CONFIG_CURSES)
5660 /* At the moment curses cannot be used with other displays */
5661 curses_display_init(ds
, full_screen
);
5665 if (vnc_display
!= NULL
) {
5666 vnc_display_init(ds
);
5667 if (vnc_display_open(ds
, vnc_display
) < 0)
5670 #if defined(CONFIG_SDL)
5671 if (sdl
|| !vnc_display
)
5672 sdl_display_init(ds
, full_screen
, no_frame
);
5673 #elif defined(CONFIG_COCOA)
5674 if (sdl
|| !vnc_display
)
5675 cocoa_display_init(ds
, full_screen
);
5681 dcl
= ds
->listeners
;
5682 while (dcl
!= NULL
) {
5683 if (dcl
->dpy_refresh
!= NULL
) {
5684 ds
->gui_timer
= qemu_new_timer(rt_clock
, gui_update
, ds
);
5685 qemu_mod_timer(ds
->gui_timer
, qemu_get_clock(rt_clock
));
5690 if (nographic
|| (vnc_display
&& !sdl
)) {
5691 nographic_timer
= qemu_new_timer(rt_clock
, nographic_update
, NULL
);
5692 qemu_mod_timer(nographic_timer
, qemu_get_clock(rt_clock
));
5695 text_consoles_set_display(display_state
);
5697 if (monitor_device
&& monitor_hd
)
5698 monitor_init(monitor_hd
, !nographic
);
5700 for(i
= 0; i
< MAX_SERIAL_PORTS
; i
++) {
5701 const char *devname
= serial_devices
[i
];
5702 if (devname
&& strcmp(devname
, "none")) {
5704 snprintf(label
, sizeof(label
), "serial%d", i
);
5705 if (strstart(devname
, "vc", 0))
5706 qemu_chr_printf(serial_hds
[i
], "serial%d console\r\n", i
);
5710 for(i
= 0; i
< MAX_PARALLEL_PORTS
; i
++) {
5711 const char *devname
= parallel_devices
[i
];
5712 if (devname
&& strcmp(devname
, "none")) {
5714 snprintf(label
, sizeof(label
), "parallel%d", i
);
5715 if (strstart(devname
, "vc", 0))
5716 qemu_chr_printf(parallel_hds
[i
], "parallel%d console\r\n", i
);
5720 for(i
= 0; i
< MAX_VIRTIO_CONSOLES
; i
++) {
5721 const char *devname
= virtio_consoles
[i
];
5722 if (virtcon_hds
[i
] && devname
) {
5724 snprintf(label
, sizeof(label
), "virtcon%d", i
);
5725 if (strstart(devname
, "vc", 0))
5726 qemu_chr_printf(virtcon_hds
[i
], "virtio console%d\r\n", i
);
5730 #ifdef CONFIG_GDBSTUB
5732 /* XXX: use standard host:port notation and modify options
5734 if (gdbserver_start(gdbstub_port
) < 0) {
5735 fprintf(stderr
, "qemu: could not open gdbstub device on port '%s'\n",
5746 autostart
= 0; /* fixme how to deal with -daemonize */
5747 qemu_start_incoming_migration(incoming
);
5751 /* XXX: simplify init */
5763 len
= write(fds
[1], &status
, 1);
5764 if (len
== -1 && (errno
== EINTR
))
5771 TFR(fd
= open("/dev/null", O_RDWR
));
5778 pwd
= getpwnam(run_as
);
5780 fprintf(stderr
, "User \"%s\" doesn't exist\n", run_as
);
5786 if (chroot(chroot_dir
) < 0) {
5787 fprintf(stderr
, "chroot failed\n");
5794 if (setgid(pwd
->pw_gid
) < 0) {
5795 fprintf(stderr
, "Failed to setgid(%d)\n", pwd
->pw_gid
);
5798 if (setuid(pwd
->pw_uid
) < 0) {
5799 fprintf(stderr
, "Failed to setuid(%d)\n", pwd
->pw_uid
);
5802 if (setuid(0) != -1) {
5803 fprintf(stderr
, "Dropping privileges failed\n");