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
32 /* Needed early for HOST_BSD etc. */
33 #include "config-host.h"
38 #include <sys/times.h>
42 #include <sys/ioctl.h>
43 #include <sys/resource.h>
44 #include <sys/socket.h>
45 #include <netinet/in.h>
47 #if defined(__NetBSD__)
48 #include <net/if_tap.h>
51 #include <linux/if_tun.h>
53 #include <arpa/inet.h>
56 #include <sys/select.h>
59 #if defined(__FreeBSD__) || defined(__DragonFly__)
64 #elif defined (__GLIBC__) && defined (__FreeBSD_kernel__)
65 #include <freebsd/stdlib.h>
70 #include <linux/rtc.h>
72 /* For the benefit of older linux systems which don't supply it,
73 we use a local copy of hpet.h. */
74 /* #include <linux/hpet.h> */
77 #include <linux/ppdev.h>
78 #include <linux/parport.h>
82 #include <sys/ethernet.h>
83 #include <sys/sockio.h>
84 #include <netinet/arp.h>
85 #include <netinet/in.h>
86 #include <netinet/in_systm.h>
87 #include <netinet/ip.h>
88 #include <netinet/ip_icmp.h> // must come after ip.h
89 #include <netinet/udp.h>
90 #include <netinet/tcp.h>
98 #if defined(__OpenBSD__)
102 #if defined(CONFIG_VDE)
103 #include <libvdeplug.h>
109 #include <sys/timeb.h>
110 #include <mmsystem.h>
111 #define getopt_long_only getopt_long
112 #define memalign(align, size) malloc(size)
118 int qemu_main(int argc
, char **argv
, char **envp
);
119 int main(int argc
, char **argv
)
121 qemu_main(argc
, argv
, NULL
);
124 #define main qemu_main
126 #endif /* CONFIG_SDL */
130 #define main qemu_main
131 #endif /* CONFIG_COCOA */
134 #include "hw/boards.h"
136 #include "hw/pcmcia.h"
138 #include "hw/audiodev.h"
142 #include "hw/watchdog.h"
143 #include "hw/smbios.h"
151 #include "qemu-timer.h"
152 #include "qemu-char.h"
153 #include "cache-utils.h"
156 #include "audio/audio.h"
157 #include "migration.h"
160 #include "qemu-option.h"
161 #include "qemu-kvm.h"
162 #include "hw/device-assignment.h"
166 #include "exec-all.h"
168 #include "qemu_socket.h"
170 #if defined(CONFIG_SLIRP)
171 #include "libslirp.h"
174 //#define DEBUG_UNUSED_IOPORT
175 //#define DEBUG_IOPORT
177 //#define DEBUG_SLIRP
181 # define LOG_IOPORT(...) qemu_log_mask(CPU_LOG_IOPORT, ## __VA_ARGS__)
183 # define LOG_IOPORT(...) do { } while (0)
186 #define DEFAULT_RAM_SIZE 128
188 /* Max number of USB devices that can be specified on the commandline. */
189 #define MAX_USB_CMDLINE 8
191 /* Max number of bluetooth switches on the commandline. */
192 #define MAX_BT_CMDLINE 10
194 /* XXX: use a two level table to limit memory usage */
195 #define MAX_IOPORTS 65536
197 static const char *data_dir
;
198 const char *bios_name
= NULL
;
199 static void *ioport_opaque
[MAX_IOPORTS
];
200 static IOPortReadFunc
*ioport_read_table
[3][MAX_IOPORTS
];
201 static IOPortWriteFunc
*ioport_write_table
[3][MAX_IOPORTS
];
202 /* Note: drives_table[MAX_DRIVES] is a dummy block driver if none available
203 to store the VM snapshots */
204 DriveInfo drives_table
[MAX_DRIVES
+1];
206 int extboot_drive
= -1;
207 enum vga_retrace_method vga_retrace_method
= VGA_RETRACE_DUMB
;
208 static DisplayState
*display_state
;
209 DisplayType display_type
= DT_DEFAULT
;
210 const char* keyboard_layout
= NULL
;
211 int64_t ticks_per_sec
;
214 NICInfo nd_table
[MAX_NICS
];
216 static int autostart
;
217 static int rtc_utc
= 1;
218 static int rtc_date_offset
= -1; /* -1 means no change */
219 int cirrus_vga_enabled
= 1;
220 int std_vga_enabled
= 0;
221 int vmsvga_enabled
= 0;
222 int xenfb_enabled
= 0;
224 int graphic_width
= 1024;
225 int graphic_height
= 768;
226 int graphic_depth
= 8;
228 int graphic_width
= 800;
229 int graphic_height
= 600;
230 int graphic_depth
= 15;
232 static int full_screen
= 0;
234 static int no_frame
= 0;
237 CharDriverState
*serial_hds
[MAX_SERIAL_PORTS
];
238 CharDriverState
*parallel_hds
[MAX_PARALLEL_PORTS
];
239 CharDriverState
*virtcon_hds
[MAX_VIRTIO_CONSOLES
];
241 int win2k_install_hack
= 0;
246 const char *assigned_devices
[MAX_DEV_ASSIGN_CMDLINE
];
247 int assigned_devices_index
;
249 const char *vnc_display
;
250 int acpi_enabled
= 1;
252 int no_virtio_balloon
= 0;
257 int graphic_rotate
= 0;
261 WatchdogTimerModel
*watchdog
= NULL
;
262 int watchdog_action
= WDT_RESET
;
263 const char *option_rom
[MAX_OPTION_ROMS
];
265 int semihosting_enabled
= 0;
266 int time_drift_fix
= 0;
267 unsigned int kvm_shadow_memory
= 0;
268 const char *mem_path
= NULL
;
270 int mem_prealloc
= 1; /* force preallocation of physical target memory */
275 const char *qemu_name
;
277 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
278 unsigned int nb_prom_envs
= 0;
279 const char *prom_envs
[MAX_PROM_ENVS
];
282 const char *nvram
= NULL
;
283 struct drive_opt drives_opt
[MAX_DRIVES
];
286 uint64_t node_mem
[MAX_NODES
];
287 uint64_t node_cpumask
[MAX_NODES
];
289 static CPUState
*cur_cpu
;
290 static CPUState
*next_cpu
;
291 static int timer_alarm_pending
= 1;
292 /* Conversion factor from emulated instructions to virtual clock ticks. */
293 static int icount_time_shift
;
294 /* Arbitrarily pick 1MIPS as the minimum allowable speed. */
295 #define MAX_ICOUNT_SHIFT 10
296 /* Compensate for varying guest execution speed. */
297 static int64_t qemu_icount_bias
;
298 static QEMUTimer
*icount_rt_timer
;
299 static QEMUTimer
*icount_vm_timer
;
300 static QEMUTimer
*nographic_timer
;
302 uint8_t qemu_uuid
[16];
304 static int qemu_select(int max_fd
, fd_set
*rfds
, fd_set
*wfds
, fd_set
*xfds
,
309 /* KVM holds a mutex while QEMU code is running, we need hooks to
310 release the mutex whenever QEMU code sleeps. */
314 ret
= select(max_fd
, rfds
, wfds
, xfds
, tv
);
322 /***********************************************************/
323 /* x86 ISA bus support */
325 target_phys_addr_t isa_mem_base
= 0;
328 static IOPortReadFunc default_ioport_readb
, default_ioport_readw
, default_ioport_readl
;
329 static IOPortWriteFunc default_ioport_writeb
, default_ioport_writew
, default_ioport_writel
;
331 static uint32_t ioport_read(int index
, uint32_t address
)
333 static IOPortReadFunc
*default_func
[3] = {
334 default_ioport_readb
,
335 default_ioport_readw
,
338 IOPortReadFunc
*func
= ioport_read_table
[index
][address
];
340 func
= default_func
[index
];
341 return func(ioport_opaque
[address
], address
);
344 static void ioport_write(int index
, uint32_t address
, uint32_t data
)
346 static IOPortWriteFunc
*default_func
[3] = {
347 default_ioport_writeb
,
348 default_ioport_writew
,
349 default_ioport_writel
351 IOPortWriteFunc
*func
= ioport_write_table
[index
][address
];
353 func
= default_func
[index
];
354 func(ioport_opaque
[address
], address
, data
);
357 static uint32_t default_ioport_readb(void *opaque
, uint32_t address
)
359 #ifdef DEBUG_UNUSED_IOPORT
360 fprintf(stderr
, "unused inb: port=0x%04x\n", address
);
365 static void default_ioport_writeb(void *opaque
, uint32_t address
, uint32_t data
)
367 #ifdef DEBUG_UNUSED_IOPORT
368 fprintf(stderr
, "unused outb: port=0x%04x data=0x%02x\n", address
, data
);
372 /* default is to make two byte accesses */
373 static uint32_t default_ioport_readw(void *opaque
, uint32_t address
)
376 data
= ioport_read(0, address
);
377 address
= (address
+ 1) & (MAX_IOPORTS
- 1);
378 data
|= ioport_read(0, address
) << 8;
382 static void default_ioport_writew(void *opaque
, uint32_t address
, uint32_t data
)
384 ioport_write(0, address
, data
& 0xff);
385 address
= (address
+ 1) & (MAX_IOPORTS
- 1);
386 ioport_write(0, address
, (data
>> 8) & 0xff);
389 static uint32_t default_ioport_readl(void *opaque
, uint32_t address
)
391 #ifdef DEBUG_UNUSED_IOPORT
392 fprintf(stderr
, "unused inl: port=0x%04x\n", address
);
397 static void default_ioport_writel(void *opaque
, uint32_t address
, uint32_t data
)
399 #ifdef DEBUG_UNUSED_IOPORT
400 fprintf(stderr
, "unused outl: port=0x%04x data=0x%02x\n", address
, data
);
404 /* size is the word size in byte */
405 int register_ioport_read(int start
, int length
, int size
,
406 IOPortReadFunc
*func
, void *opaque
)
412 } else if (size
== 2) {
414 } else if (size
== 4) {
417 hw_error("register_ioport_read: invalid size");
420 for(i
= start
; i
< start
+ length
; i
+= size
) {
421 ioport_read_table
[bsize
][i
] = func
;
422 if (ioport_opaque
[i
] != NULL
&& ioport_opaque
[i
] != opaque
)
423 hw_error("register_ioport_read: invalid opaque");
424 ioport_opaque
[i
] = opaque
;
429 /* size is the word size in byte */
430 int register_ioport_write(int start
, int length
, int size
,
431 IOPortWriteFunc
*func
, void *opaque
)
437 } else if (size
== 2) {
439 } else if (size
== 4) {
442 hw_error("register_ioport_write: invalid size");
445 for(i
= start
; i
< start
+ length
; i
+= size
) {
446 ioport_write_table
[bsize
][i
] = func
;
447 if (ioport_opaque
[i
] != NULL
&& ioport_opaque
[i
] != opaque
)
448 hw_error("register_ioport_write: invalid opaque");
449 ioport_opaque
[i
] = opaque
;
454 void isa_unassign_ioport(int start
, int length
)
458 for(i
= start
; i
< start
+ length
; i
++) {
459 ioport_read_table
[0][i
] = default_ioport_readb
;
460 ioport_read_table
[1][i
] = default_ioport_readw
;
461 ioport_read_table
[2][i
] = default_ioport_readl
;
463 ioport_write_table
[0][i
] = default_ioport_writeb
;
464 ioport_write_table
[1][i
] = default_ioport_writew
;
465 ioport_write_table
[2][i
] = default_ioport_writel
;
467 ioport_opaque
[i
] = NULL
;
471 /***********************************************************/
473 void cpu_outb(CPUState
*env
, int addr
, int val
)
475 LOG_IOPORT("outb: %04x %02x\n", addr
, val
);
476 ioport_write(0, addr
, val
);
479 env
->last_io_time
= cpu_get_time_fast();
483 void cpu_outw(CPUState
*env
, int addr
, int val
)
485 LOG_IOPORT("outw: %04x %04x\n", addr
, val
);
486 ioport_write(1, addr
, val
);
489 env
->last_io_time
= cpu_get_time_fast();
493 void cpu_outl(CPUState
*env
, int addr
, int val
)
495 LOG_IOPORT("outl: %04x %08x\n", addr
, val
);
496 ioport_write(2, addr
, val
);
499 env
->last_io_time
= cpu_get_time_fast();
503 int cpu_inb(CPUState
*env
, int addr
)
506 val
= ioport_read(0, addr
);
507 LOG_IOPORT("inb : %04x %02x\n", addr
, val
);
510 env
->last_io_time
= cpu_get_time_fast();
515 int cpu_inw(CPUState
*env
, int addr
)
518 val
= ioport_read(1, addr
);
519 LOG_IOPORT("inw : %04x %04x\n", addr
, val
);
522 env
->last_io_time
= cpu_get_time_fast();
527 int cpu_inl(CPUState
*env
, int addr
)
530 val
= ioport_read(2, addr
);
531 LOG_IOPORT("inl : %04x %08x\n", addr
, val
);
534 env
->last_io_time
= cpu_get_time_fast();
539 /***********************************************************/
540 void hw_error(const char *fmt
, ...)
546 fprintf(stderr
, "qemu: hardware error: ");
547 vfprintf(stderr
, fmt
, ap
);
548 fprintf(stderr
, "\n");
549 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
550 fprintf(stderr
, "CPU #%d:\n", env
->cpu_index
);
552 cpu_dump_state(env
, stderr
, fprintf
, X86_DUMP_FPU
);
554 cpu_dump_state(env
, stderr
, fprintf
, 0);
564 static QEMUBalloonEvent
*qemu_balloon_event
;
565 void *qemu_balloon_event_opaque
;
567 void qemu_add_balloon_handler(QEMUBalloonEvent
*func
, void *opaque
)
569 qemu_balloon_event
= func
;
570 qemu_balloon_event_opaque
= opaque
;
573 void qemu_balloon(ram_addr_t target
)
575 if (qemu_balloon_event
)
576 qemu_balloon_event(qemu_balloon_event_opaque
, target
);
579 ram_addr_t
qemu_balloon_status(void)
581 if (qemu_balloon_event
)
582 return qemu_balloon_event(qemu_balloon_event_opaque
, 0);
586 /***********************************************************/
589 static QEMUPutKBDEvent
*qemu_put_kbd_event
;
590 static void *qemu_put_kbd_event_opaque
;
591 static QEMUPutMouseEntry
*qemu_put_mouse_event_head
;
592 static QEMUPutMouseEntry
*qemu_put_mouse_event_current
;
594 void qemu_add_kbd_event_handler(QEMUPutKBDEvent
*func
, void *opaque
)
596 qemu_put_kbd_event_opaque
= opaque
;
597 qemu_put_kbd_event
= func
;
600 QEMUPutMouseEntry
*qemu_add_mouse_event_handler(QEMUPutMouseEvent
*func
,
601 void *opaque
, int absolute
,
604 QEMUPutMouseEntry
*s
, *cursor
;
606 s
= qemu_mallocz(sizeof(QEMUPutMouseEntry
));
608 s
->qemu_put_mouse_event
= func
;
609 s
->qemu_put_mouse_event_opaque
= opaque
;
610 s
->qemu_put_mouse_event_absolute
= absolute
;
611 s
->qemu_put_mouse_event_name
= qemu_strdup(name
);
614 if (!qemu_put_mouse_event_head
) {
615 qemu_put_mouse_event_head
= qemu_put_mouse_event_current
= s
;
619 cursor
= qemu_put_mouse_event_head
;
620 while (cursor
->next
!= NULL
)
621 cursor
= cursor
->next
;
624 qemu_put_mouse_event_current
= s
;
629 void qemu_remove_mouse_event_handler(QEMUPutMouseEntry
*entry
)
631 QEMUPutMouseEntry
*prev
= NULL
, *cursor
;
633 if (!qemu_put_mouse_event_head
|| entry
== NULL
)
636 cursor
= qemu_put_mouse_event_head
;
637 while (cursor
!= NULL
&& cursor
!= entry
) {
639 cursor
= cursor
->next
;
642 if (cursor
== NULL
) // does not exist or list empty
644 else if (prev
== NULL
) { // entry is head
645 qemu_put_mouse_event_head
= cursor
->next
;
646 if (qemu_put_mouse_event_current
== entry
)
647 qemu_put_mouse_event_current
= cursor
->next
;
648 qemu_free(entry
->qemu_put_mouse_event_name
);
653 prev
->next
= entry
->next
;
655 if (qemu_put_mouse_event_current
== entry
)
656 qemu_put_mouse_event_current
= prev
;
658 qemu_free(entry
->qemu_put_mouse_event_name
);
662 void kbd_put_keycode(int keycode
)
664 if (qemu_put_kbd_event
) {
665 qemu_put_kbd_event(qemu_put_kbd_event_opaque
, keycode
);
669 void kbd_mouse_event(int dx
, int dy
, int dz
, int buttons_state
)
671 QEMUPutMouseEvent
*mouse_event
;
672 void *mouse_event_opaque
;
675 if (!qemu_put_mouse_event_current
) {
680 qemu_put_mouse_event_current
->qemu_put_mouse_event
;
682 qemu_put_mouse_event_current
->qemu_put_mouse_event_opaque
;
685 if (graphic_rotate
) {
686 if (qemu_put_mouse_event_current
->qemu_put_mouse_event_absolute
)
689 width
= graphic_width
- 1;
690 mouse_event(mouse_event_opaque
,
691 width
- dy
, dx
, dz
, buttons_state
);
693 mouse_event(mouse_event_opaque
,
694 dx
, dy
, dz
, buttons_state
);
698 int kbd_mouse_is_absolute(void)
700 if (!qemu_put_mouse_event_current
)
703 return qemu_put_mouse_event_current
->qemu_put_mouse_event_absolute
;
706 void do_info_mice(Monitor
*mon
)
708 QEMUPutMouseEntry
*cursor
;
711 if (!qemu_put_mouse_event_head
) {
712 monitor_printf(mon
, "No mouse devices connected\n");
716 monitor_printf(mon
, "Mouse devices available:\n");
717 cursor
= qemu_put_mouse_event_head
;
718 while (cursor
!= NULL
) {
719 monitor_printf(mon
, "%c Mouse #%d: %s\n",
720 (cursor
== qemu_put_mouse_event_current
? '*' : ' '),
721 index
, cursor
->qemu_put_mouse_event_name
);
723 cursor
= cursor
->next
;
727 void do_mouse_set(Monitor
*mon
, int index
)
729 QEMUPutMouseEntry
*cursor
;
732 if (!qemu_put_mouse_event_head
) {
733 monitor_printf(mon
, "No mouse devices connected\n");
737 cursor
= qemu_put_mouse_event_head
;
738 while (cursor
!= NULL
&& index
!= i
) {
740 cursor
= cursor
->next
;
744 qemu_put_mouse_event_current
= cursor
;
746 monitor_printf(mon
, "Mouse at given index not found\n");
749 /* compute with 96 bit intermediate result: (a*b)/c */
750 uint64_t muldiv64(uint64_t a
, uint32_t b
, uint32_t c
)
755 #ifdef WORDS_BIGENDIAN
765 rl
= (uint64_t)u
.l
.low
* (uint64_t)b
;
766 rh
= (uint64_t)u
.l
.high
* (uint64_t)b
;
769 res
.l
.low
= (((rh
% c
) << 32) + (rl
& 0xffffffff)) / c
;
773 /***********************************************************/
774 /* real time host monotonic timer */
776 #define QEMU_TIMER_BASE 1000000000LL
780 static int64_t clock_freq
;
782 static void init_get_clock(void)
786 ret
= QueryPerformanceFrequency(&freq
);
788 fprintf(stderr
, "Could not calibrate ticks\n");
791 clock_freq
= freq
.QuadPart
;
794 static int64_t get_clock(void)
797 QueryPerformanceCounter(&ti
);
798 return muldiv64(ti
.QuadPart
, QEMU_TIMER_BASE
, clock_freq
);
803 static int use_rt_clock
;
805 static void init_get_clock(void)
808 #if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD_version >= 500000) \
809 || defined(__DragonFly__)
812 if (clock_gettime(CLOCK_MONOTONIC
, &ts
) == 0) {
819 static int64_t get_clock(void)
821 #if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD_version >= 500000) \
822 || defined(__DragonFly__)
825 clock_gettime(CLOCK_MONOTONIC
, &ts
);
826 return ts
.tv_sec
* 1000000000LL + ts
.tv_nsec
;
830 /* XXX: using gettimeofday leads to problems if the date
831 changes, so it should be avoided. */
833 gettimeofday(&tv
, NULL
);
834 return tv
.tv_sec
* 1000000000LL + (tv
.tv_usec
* 1000);
839 /* Return the virtual CPU time, based on the instruction counter. */
840 static int64_t cpu_get_icount(void)
843 CPUState
*env
= cpu_single_env
;;
844 icount
= qemu_icount
;
847 fprintf(stderr
, "Bad clock read\n");
848 icount
-= (env
->icount_decr
.u16
.low
+ env
->icount_extra
);
850 return qemu_icount_bias
+ (icount
<< icount_time_shift
);
853 /***********************************************************/
854 /* guest cycle counter */
856 static int64_t cpu_ticks_prev
;
857 static int64_t cpu_ticks_offset
;
858 static int64_t cpu_clock_offset
;
859 static int cpu_ticks_enabled
;
861 /* return the host CPU cycle counter and handle stop/restart */
862 int64_t cpu_get_ticks(void)
865 return cpu_get_icount();
867 if (!cpu_ticks_enabled
) {
868 return cpu_ticks_offset
;
871 ticks
= cpu_get_real_ticks();
872 if (cpu_ticks_prev
> ticks
) {
873 /* Note: non increasing ticks may happen if the host uses
875 cpu_ticks_offset
+= cpu_ticks_prev
- ticks
;
877 cpu_ticks_prev
= ticks
;
878 return ticks
+ cpu_ticks_offset
;
882 /* return the host CPU monotonic timer and handle stop/restart */
883 static int64_t cpu_get_clock(void)
886 if (!cpu_ticks_enabled
) {
887 return cpu_clock_offset
;
890 return ti
+ cpu_clock_offset
;
894 /* enable cpu_get_ticks() */
895 void cpu_enable_ticks(void)
897 if (!cpu_ticks_enabled
) {
898 cpu_ticks_offset
-= cpu_get_real_ticks();
899 cpu_clock_offset
-= get_clock();
900 cpu_ticks_enabled
= 1;
904 /* disable cpu_get_ticks() : the clock is stopped. You must not call
905 cpu_get_ticks() after that. */
906 void cpu_disable_ticks(void)
908 if (cpu_ticks_enabled
) {
909 cpu_ticks_offset
= cpu_get_ticks();
910 cpu_clock_offset
= cpu_get_clock();
911 cpu_ticks_enabled
= 0;
915 /***********************************************************/
918 #define QEMU_TIMER_REALTIME 0
919 #define QEMU_TIMER_VIRTUAL 1
923 /* XXX: add frequency */
931 struct QEMUTimer
*next
;
934 struct qemu_alarm_timer
{
938 int (*start
)(struct qemu_alarm_timer
*t
);
939 void (*stop
)(struct qemu_alarm_timer
*t
);
940 void (*rearm
)(struct qemu_alarm_timer
*t
);
944 #define ALARM_FLAG_DYNTICKS 0x1
945 #define ALARM_FLAG_EXPIRED 0x2
947 static inline int alarm_has_dynticks(struct qemu_alarm_timer
*t
)
949 return t
&& (t
->flags
& ALARM_FLAG_DYNTICKS
);
952 static void qemu_rearm_alarm_timer(struct qemu_alarm_timer
*t
)
954 if (!alarm_has_dynticks(t
))
960 /* TODO: MIN_TIMER_REARM_US should be optimized */
961 #define MIN_TIMER_REARM_US 250
963 static struct qemu_alarm_timer
*alarm_timer
;
967 struct qemu_alarm_win32
{
970 } alarm_win32_data
= {0, -1};
972 static int win32_start_timer(struct qemu_alarm_timer
*t
);
973 static void win32_stop_timer(struct qemu_alarm_timer
*t
);
974 static void win32_rearm_timer(struct qemu_alarm_timer
*t
);
978 static int unix_start_timer(struct qemu_alarm_timer
*t
);
979 static void unix_stop_timer(struct qemu_alarm_timer
*t
);
983 static int dynticks_start_timer(struct qemu_alarm_timer
*t
);
984 static void dynticks_stop_timer(struct qemu_alarm_timer
*t
);
985 static void dynticks_rearm_timer(struct qemu_alarm_timer
*t
);
987 static int hpet_start_timer(struct qemu_alarm_timer
*t
);
988 static void hpet_stop_timer(struct qemu_alarm_timer
*t
);
990 static int rtc_start_timer(struct qemu_alarm_timer
*t
);
991 static void rtc_stop_timer(struct qemu_alarm_timer
*t
);
993 #endif /* __linux__ */
997 /* Correlation between real and virtual time is always going to be
998 fairly approximate, so ignore small variation.
999 When the guest is idle real and virtual time will be aligned in
1000 the IO wait loop. */
1001 #define ICOUNT_WOBBLE (QEMU_TIMER_BASE / 10)
1003 static void icount_adjust(void)
1008 static int64_t last_delta
;
1009 /* If the VM is not running, then do nothing. */
1013 cur_time
= cpu_get_clock();
1014 cur_icount
= qemu_get_clock(vm_clock
);
1015 delta
= cur_icount
- cur_time
;
1016 /* FIXME: This is a very crude algorithm, somewhat prone to oscillation. */
1018 && last_delta
+ ICOUNT_WOBBLE
< delta
* 2
1019 && icount_time_shift
> 0) {
1020 /* The guest is getting too far ahead. Slow time down. */
1021 icount_time_shift
--;
1024 && last_delta
- ICOUNT_WOBBLE
> delta
* 2
1025 && icount_time_shift
< MAX_ICOUNT_SHIFT
) {
1026 /* The guest is getting too far behind. Speed time up. */
1027 icount_time_shift
++;
1030 qemu_icount_bias
= cur_icount
- (qemu_icount
<< icount_time_shift
);
1033 static void icount_adjust_rt(void * opaque
)
1035 qemu_mod_timer(icount_rt_timer
,
1036 qemu_get_clock(rt_clock
) + 1000);
1040 static void icount_adjust_vm(void * opaque
)
1042 qemu_mod_timer(icount_vm_timer
,
1043 qemu_get_clock(vm_clock
) + QEMU_TIMER_BASE
/ 10);
1047 static void init_icount_adjust(void)
1049 /* Have both realtime and virtual time triggers for speed adjustment.
1050 The realtime trigger catches emulated time passing too slowly,
1051 the virtual time trigger catches emulated time passing too fast.
1052 Realtime triggers occur even when idle, so use them less frequently
1053 than VM triggers. */
1054 icount_rt_timer
= qemu_new_timer(rt_clock
, icount_adjust_rt
, NULL
);
1055 qemu_mod_timer(icount_rt_timer
,
1056 qemu_get_clock(rt_clock
) + 1000);
1057 icount_vm_timer
= qemu_new_timer(vm_clock
, icount_adjust_vm
, NULL
);
1058 qemu_mod_timer(icount_vm_timer
,
1059 qemu_get_clock(vm_clock
) + QEMU_TIMER_BASE
/ 10);
1062 static struct qemu_alarm_timer alarm_timers
[] = {
1065 {"dynticks", ALARM_FLAG_DYNTICKS
, dynticks_start_timer
,
1066 dynticks_stop_timer
, dynticks_rearm_timer
, NULL
},
1067 /* HPET - if available - is preferred */
1068 {"hpet", 0, hpet_start_timer
, hpet_stop_timer
, NULL
, NULL
},
1069 /* ...otherwise try RTC */
1070 {"rtc", 0, rtc_start_timer
, rtc_stop_timer
, NULL
, NULL
},
1072 {"unix", 0, unix_start_timer
, unix_stop_timer
, NULL
, NULL
},
1074 {"dynticks", ALARM_FLAG_DYNTICKS
, win32_start_timer
,
1075 win32_stop_timer
, win32_rearm_timer
, &alarm_win32_data
},
1076 {"win32", 0, win32_start_timer
,
1077 win32_stop_timer
, NULL
, &alarm_win32_data
},
1082 static void show_available_alarms(void)
1086 printf("Available alarm timers, in order of precedence:\n");
1087 for (i
= 0; alarm_timers
[i
].name
; i
++)
1088 printf("%s\n", alarm_timers
[i
].name
);
1091 static void configure_alarms(char const *opt
)
1095 int count
= ARRAY_SIZE(alarm_timers
) - 1;
1098 struct qemu_alarm_timer tmp
;
1100 if (!strcmp(opt
, "?")) {
1101 show_available_alarms();
1107 /* Reorder the array */
1108 name
= strtok(arg
, ",");
1110 for (i
= 0; i
< count
&& alarm_timers
[i
].name
; i
++) {
1111 if (!strcmp(alarm_timers
[i
].name
, name
))
1116 fprintf(stderr
, "Unknown clock %s\n", name
);
1125 tmp
= alarm_timers
[i
];
1126 alarm_timers
[i
] = alarm_timers
[cur
];
1127 alarm_timers
[cur
] = tmp
;
1131 name
= strtok(NULL
, ",");
1137 /* Disable remaining timers */
1138 for (i
= cur
; i
< count
; i
++)
1139 alarm_timers
[i
].name
= NULL
;
1141 show_available_alarms();
1146 QEMUClock
*rt_clock
;
1147 QEMUClock
*vm_clock
;
1149 static QEMUTimer
*active_timers
[2];
1151 static QEMUClock
*qemu_new_clock(int type
)
1154 clock
= qemu_mallocz(sizeof(QEMUClock
));
1159 QEMUTimer
*qemu_new_timer(QEMUClock
*clock
, QEMUTimerCB
*cb
, void *opaque
)
1163 ts
= qemu_mallocz(sizeof(QEMUTimer
));
1166 ts
->opaque
= opaque
;
1170 void qemu_free_timer(QEMUTimer
*ts
)
1175 /* stop a timer, but do not dealloc it */
1176 void qemu_del_timer(QEMUTimer
*ts
)
1180 /* NOTE: this code must be signal safe because
1181 qemu_timer_expired() can be called from a signal. */
1182 pt
= &active_timers
[ts
->clock
->type
];
1195 /* modify the current timer so that it will be fired when current_time
1196 >= expire_time. The corresponding callback will be called. */
1197 void qemu_mod_timer(QEMUTimer
*ts
, int64_t expire_time
)
1203 /* add the timer in the sorted list */
1204 /* NOTE: this code must be signal safe because
1205 qemu_timer_expired() can be called from a signal. */
1206 pt
= &active_timers
[ts
->clock
->type
];
1211 if (t
->expire_time
> expire_time
)
1215 ts
->expire_time
= expire_time
;
1219 /* Rearm if necessary */
1220 if (pt
== &active_timers
[ts
->clock
->type
]) {
1221 if ((alarm_timer
->flags
& ALARM_FLAG_EXPIRED
) == 0) {
1222 qemu_rearm_alarm_timer(alarm_timer
);
1224 /* Interrupt execution to force deadline recalculation. */
1226 qemu_notify_event();
1230 int qemu_timer_pending(QEMUTimer
*ts
)
1233 for(t
= active_timers
[ts
->clock
->type
]; t
!= NULL
; t
= t
->next
) {
1240 static inline int qemu_timer_expired(QEMUTimer
*timer_head
, int64_t current_time
)
1244 return (timer_head
->expire_time
<= current_time
);
1247 static void qemu_run_timers(QEMUTimer
**ptimer_head
, int64_t current_time
)
1253 if (!ts
|| ts
->expire_time
> current_time
)
1255 /* remove timer from the list before calling the callback */
1256 *ptimer_head
= ts
->next
;
1259 /* run the callback (the timer list can be modified) */
1264 int64_t qemu_get_clock(QEMUClock
*clock
)
1266 switch(clock
->type
) {
1267 case QEMU_TIMER_REALTIME
:
1268 return get_clock() / 1000000;
1270 case QEMU_TIMER_VIRTUAL
:
1272 return cpu_get_icount();
1274 return cpu_get_clock();
1279 static void init_timers(void)
1282 ticks_per_sec
= QEMU_TIMER_BASE
;
1283 rt_clock
= qemu_new_clock(QEMU_TIMER_REALTIME
);
1284 vm_clock
= qemu_new_clock(QEMU_TIMER_VIRTUAL
);
1288 void qemu_put_timer(QEMUFile
*f
, QEMUTimer
*ts
)
1290 uint64_t expire_time
;
1292 if (qemu_timer_pending(ts
)) {
1293 expire_time
= ts
->expire_time
;
1297 qemu_put_be64(f
, expire_time
);
1300 void qemu_get_timer(QEMUFile
*f
, QEMUTimer
*ts
)
1302 uint64_t expire_time
;
1304 expire_time
= qemu_get_be64(f
);
1305 if (expire_time
!= -1) {
1306 qemu_mod_timer(ts
, expire_time
);
1312 static void timer_save(QEMUFile
*f
, void *opaque
)
1314 if (cpu_ticks_enabled
) {
1315 hw_error("cannot save state if virtual timers are running");
1317 qemu_put_be64(f
, cpu_ticks_offset
);
1318 qemu_put_be64(f
, ticks_per_sec
);
1319 qemu_put_be64(f
, cpu_clock_offset
);
1322 static int timer_load(QEMUFile
*f
, void *opaque
, int version_id
)
1324 if (version_id
!= 1 && version_id
!= 2)
1326 if (cpu_ticks_enabled
) {
1329 cpu_ticks_offset
=qemu_get_be64(f
);
1330 ticks_per_sec
=qemu_get_be64(f
);
1331 if (version_id
== 2) {
1332 cpu_clock_offset
=qemu_get_be64(f
);
1337 static void qemu_event_increment(void);
1340 static void CALLBACK
host_alarm_handler(UINT uTimerID
, UINT uMsg
,
1341 DWORD_PTR dwUser
, DWORD_PTR dw1
,
1344 static void host_alarm_handler(int host_signum
)
1348 #define DISP_FREQ 1000
1350 static int64_t delta_min
= INT64_MAX
;
1351 static int64_t delta_max
, delta_cum
, last_clock
, delta
, ti
;
1353 ti
= qemu_get_clock(vm_clock
);
1354 if (last_clock
!= 0) {
1355 delta
= ti
- last_clock
;
1356 if (delta
< delta_min
)
1358 if (delta
> delta_max
)
1361 if (++count
== DISP_FREQ
) {
1362 printf("timer: min=%" PRId64
" us max=%" PRId64
" us avg=%" PRId64
" us avg_freq=%0.3f Hz\n",
1363 muldiv64(delta_min
, 1000000, ticks_per_sec
),
1364 muldiv64(delta_max
, 1000000, ticks_per_sec
),
1365 muldiv64(delta_cum
, 1000000 / DISP_FREQ
, ticks_per_sec
),
1366 (double)ticks_per_sec
/ ((double)delta_cum
/ DISP_FREQ
));
1368 delta_min
= INT64_MAX
;
1376 if (alarm_has_dynticks(alarm_timer
) ||
1378 qemu_timer_expired(active_timers
[QEMU_TIMER_VIRTUAL
],
1379 qemu_get_clock(vm_clock
))) ||
1380 qemu_timer_expired(active_timers
[QEMU_TIMER_REALTIME
],
1381 qemu_get_clock(rt_clock
))) {
1382 qemu_event_increment();
1383 if (alarm_timer
) alarm_timer
->flags
|= ALARM_FLAG_EXPIRED
;
1385 #ifndef CONFIG_IOTHREAD
1387 /* stop the currently executing cpu because a timer occured */
1390 if (next_cpu
->kqemu_enabled
) {
1391 kqemu_cpu_interrupt(next_cpu
);
1396 timer_alarm_pending
= 1;
1397 qemu_notify_event();
1401 static int64_t qemu_next_deadline(void)
1405 if (active_timers
[QEMU_TIMER_VIRTUAL
]) {
1406 delta
= active_timers
[QEMU_TIMER_VIRTUAL
]->expire_time
-
1407 qemu_get_clock(vm_clock
);
1409 /* To avoid problems with overflow limit this to 2^32. */
1419 #if defined(__linux__) || defined(_WIN32)
1420 static uint64_t qemu_next_deadline_dyntick(void)
1428 delta
= (qemu_next_deadline() + 999) / 1000;
1430 if (active_timers
[QEMU_TIMER_REALTIME
]) {
1431 rtdelta
= (active_timers
[QEMU_TIMER_REALTIME
]->expire_time
-
1432 qemu_get_clock(rt_clock
))*1000;
1433 if (rtdelta
< delta
)
1437 if (delta
< MIN_TIMER_REARM_US
)
1438 delta
= MIN_TIMER_REARM_US
;
1446 /* Sets a specific flag */
1447 static int fcntl_setfl(int fd
, int flag
)
1451 flags
= fcntl(fd
, F_GETFL
);
1455 if (fcntl(fd
, F_SETFL
, flags
| flag
) == -1)
1461 #if defined(__linux__)
1463 #define RTC_FREQ 1024
1465 static void enable_sigio_timer(int fd
)
1467 struct sigaction act
;
1470 sigfillset(&act
.sa_mask
);
1472 act
.sa_handler
= host_alarm_handler
;
1474 sigaction(SIGIO
, &act
, NULL
);
1475 fcntl_setfl(fd
, O_ASYNC
);
1476 fcntl(fd
, F_SETOWN
, getpid());
1479 static int hpet_start_timer(struct qemu_alarm_timer
*t
)
1481 struct hpet_info info
;
1484 fd
= open("/dev/hpet", O_RDONLY
);
1489 r
= ioctl(fd
, HPET_IRQFREQ
, RTC_FREQ
);
1491 fprintf(stderr
, "Could not configure '/dev/hpet' to have a 1024Hz timer. This is not a fatal\n"
1492 "error, but for better emulation accuracy type:\n"
1493 "'echo 1024 > /proc/sys/dev/hpet/max-user-freq' as root.\n");
1497 /* Check capabilities */
1498 r
= ioctl(fd
, HPET_INFO
, &info
);
1502 /* Enable periodic mode */
1503 r
= ioctl(fd
, HPET_EPI
, 0);
1504 if (info
.hi_flags
&& (r
< 0))
1507 /* Enable interrupt */
1508 r
= ioctl(fd
, HPET_IE_ON
, 0);
1512 enable_sigio_timer(fd
);
1513 t
->priv
= (void *)(long)fd
;
1521 static void hpet_stop_timer(struct qemu_alarm_timer
*t
)
1523 int fd
= (long)t
->priv
;
1528 static int rtc_start_timer(struct qemu_alarm_timer
*t
)
1531 unsigned long current_rtc_freq
= 0;
1533 TFR(rtc_fd
= open("/dev/rtc", O_RDONLY
));
1536 ioctl(rtc_fd
, RTC_IRQP_READ
, ¤t_rtc_freq
);
1537 if (current_rtc_freq
!= RTC_FREQ
&&
1538 ioctl(rtc_fd
, RTC_IRQP_SET
, RTC_FREQ
) < 0) {
1539 fprintf(stderr
, "Could not configure '/dev/rtc' to have a 1024 Hz timer. This is not a fatal\n"
1540 "error, but for better emulation accuracy either use a 2.6 host Linux kernel or\n"
1541 "type 'echo 1024 > /proc/sys/dev/rtc/max-user-freq' as root.\n");
1544 if (ioctl(rtc_fd
, RTC_PIE_ON
, 0) < 0) {
1550 enable_sigio_timer(rtc_fd
);
1552 t
->priv
= (void *)(long)rtc_fd
;
1557 static void rtc_stop_timer(struct qemu_alarm_timer
*t
)
1559 int rtc_fd
= (long)t
->priv
;
1564 static int dynticks_start_timer(struct qemu_alarm_timer
*t
)
1568 struct sigaction act
;
1570 sigfillset(&act
.sa_mask
);
1572 act
.sa_handler
= host_alarm_handler
;
1574 sigaction(SIGALRM
, &act
, NULL
);
1577 * Initialize ev struct to 0 to avoid valgrind complaining
1578 * about uninitialized data in timer_create call
1580 memset(&ev
, 0, sizeof(ev
));
1581 ev
.sigev_value
.sival_int
= 0;
1582 ev
.sigev_notify
= SIGEV_SIGNAL
;
1583 ev
.sigev_signo
= SIGALRM
;
1585 if (timer_create(CLOCK_REALTIME
, &ev
, &host_timer
)) {
1586 perror("timer_create");
1588 /* disable dynticks */
1589 fprintf(stderr
, "Dynamic Ticks disabled\n");
1594 t
->priv
= (void *)(long)host_timer
;
1599 static void dynticks_stop_timer(struct qemu_alarm_timer
*t
)
1601 timer_t host_timer
= (timer_t
)(long)t
->priv
;
1603 timer_delete(host_timer
);
1606 static void dynticks_rearm_timer(struct qemu_alarm_timer
*t
)
1608 timer_t host_timer
= (timer_t
)(long)t
->priv
;
1609 struct itimerspec timeout
;
1610 int64_t nearest_delta_us
= INT64_MAX
;
1613 if (!active_timers
[QEMU_TIMER_REALTIME
] &&
1614 !active_timers
[QEMU_TIMER_VIRTUAL
])
1617 nearest_delta_us
= qemu_next_deadline_dyntick();
1619 /* check whether a timer is already running */
1620 if (timer_gettime(host_timer
, &timeout
)) {
1622 fprintf(stderr
, "Internal timer error: aborting\n");
1625 current_us
= timeout
.it_value
.tv_sec
* 1000000 + timeout
.it_value
.tv_nsec
/1000;
1626 if (current_us
&& current_us
<= nearest_delta_us
)
1629 timeout
.it_interval
.tv_sec
= 0;
1630 timeout
.it_interval
.tv_nsec
= 0; /* 0 for one-shot timer */
1631 timeout
.it_value
.tv_sec
= nearest_delta_us
/ 1000000;
1632 timeout
.it_value
.tv_nsec
= (nearest_delta_us
% 1000000) * 1000;
1633 if (timer_settime(host_timer
, 0 /* RELATIVE */, &timeout
, NULL
)) {
1635 fprintf(stderr
, "Internal timer error: aborting\n");
1640 #endif /* defined(__linux__) */
1642 static int unix_start_timer(struct qemu_alarm_timer
*t
)
1644 struct sigaction act
;
1645 struct itimerval itv
;
1649 sigfillset(&act
.sa_mask
);
1651 act
.sa_handler
= host_alarm_handler
;
1653 sigaction(SIGALRM
, &act
, NULL
);
1655 itv
.it_interval
.tv_sec
= 0;
1656 /* for i386 kernel 2.6 to get 1 ms */
1657 itv
.it_interval
.tv_usec
= 999;
1658 itv
.it_value
.tv_sec
= 0;
1659 itv
.it_value
.tv_usec
= 10 * 1000;
1661 err
= setitimer(ITIMER_REAL
, &itv
, NULL
);
1668 static void unix_stop_timer(struct qemu_alarm_timer
*t
)
1670 struct itimerval itv
;
1672 memset(&itv
, 0, sizeof(itv
));
1673 setitimer(ITIMER_REAL
, &itv
, NULL
);
1676 #endif /* !defined(_WIN32) */
1681 static int win32_start_timer(struct qemu_alarm_timer
*t
)
1684 struct qemu_alarm_win32
*data
= t
->priv
;
1687 memset(&tc
, 0, sizeof(tc
));
1688 timeGetDevCaps(&tc
, sizeof(tc
));
1690 if (data
->period
< tc
.wPeriodMin
)
1691 data
->period
= tc
.wPeriodMin
;
1693 timeBeginPeriod(data
->period
);
1695 flags
= TIME_CALLBACK_FUNCTION
;
1696 if (alarm_has_dynticks(t
))
1697 flags
|= TIME_ONESHOT
;
1699 flags
|= TIME_PERIODIC
;
1701 data
->timerId
= timeSetEvent(1, // interval (ms)
1702 data
->period
, // resolution
1703 host_alarm_handler
, // function
1704 (DWORD
)t
, // parameter
1707 if (!data
->timerId
) {
1708 perror("Failed to initialize win32 alarm timer");
1709 timeEndPeriod(data
->period
);
1716 static void win32_stop_timer(struct qemu_alarm_timer
*t
)
1718 struct qemu_alarm_win32
*data
= t
->priv
;
1720 timeKillEvent(data
->timerId
);
1721 timeEndPeriod(data
->period
);
1724 static void win32_rearm_timer(struct qemu_alarm_timer
*t
)
1726 struct qemu_alarm_win32
*data
= t
->priv
;
1727 uint64_t nearest_delta_us
;
1729 if (!active_timers
[QEMU_TIMER_REALTIME
] &&
1730 !active_timers
[QEMU_TIMER_VIRTUAL
])
1733 nearest_delta_us
= qemu_next_deadline_dyntick();
1734 nearest_delta_us
/= 1000;
1736 timeKillEvent(data
->timerId
);
1738 data
->timerId
= timeSetEvent(1,
1742 TIME_ONESHOT
| TIME_PERIODIC
);
1744 if (!data
->timerId
) {
1745 perror("Failed to re-arm win32 alarm timer");
1747 timeEndPeriod(data
->period
);
1754 static int init_timer_alarm(void)
1756 struct qemu_alarm_timer
*t
= NULL
;
1759 for (i
= 0; alarm_timers
[i
].name
; i
++) {
1760 t
= &alarm_timers
[i
];
1780 static void quit_timers(void)
1782 alarm_timer
->stop(alarm_timer
);
1786 /***********************************************************/
1787 /* host time/date access */
1788 void qemu_get_timedate(struct tm
*tm
, int offset
)
1795 if (rtc_date_offset
== -1) {
1799 ret
= localtime(&ti
);
1801 ti
-= rtc_date_offset
;
1805 memcpy(tm
, ret
, sizeof(struct tm
));
1808 int qemu_timedate_diff(struct tm
*tm
)
1812 if (rtc_date_offset
== -1)
1814 seconds
= mktimegm(tm
);
1816 seconds
= mktime(tm
);
1818 seconds
= mktimegm(tm
) + rtc_date_offset
;
1820 return seconds
- time(NULL
);
1824 static void socket_cleanup(void)
1829 static int socket_init(void)
1834 ret
= WSAStartup(MAKEWORD(2,2), &Data
);
1836 err
= WSAGetLastError();
1837 fprintf(stderr
, "WSAStartup: %d\n", err
);
1840 atexit(socket_cleanup
);
1845 int get_param_value(char *buf
, int buf_size
,
1846 const char *tag
, const char *str
)
1853 p
= get_opt_name(option
, sizeof(option
), p
, '=');
1857 if (!strcmp(tag
, option
)) {
1858 (void)get_opt_value(buf
, buf_size
, p
);
1861 p
= get_opt_value(NULL
, 0, p
);
1870 int check_params(char *buf
, int buf_size
,
1871 const char * const *params
, const char *str
)
1877 while (*p
!= '\0') {
1878 p
= get_opt_name(buf
, buf_size
, p
, '=');
1883 for (i
= 0; params
[i
] != NULL
; i
++) {
1884 if (!strcmp(params
[i
], buf
)) {
1888 if (params
[i
] == NULL
) {
1891 p
= get_opt_value(NULL
, 0, p
);
1900 /***********************************************************/
1901 /* Bluetooth support */
1904 static struct HCIInfo
*hci_table
[MAX_NICS
];
1906 static struct bt_vlan_s
{
1907 struct bt_scatternet_s net
;
1909 struct bt_vlan_s
*next
;
1912 /* find or alloc a new bluetooth "VLAN" */
1913 static struct bt_scatternet_s
*qemu_find_bt_vlan(int id
)
1915 struct bt_vlan_s
**pvlan
, *vlan
;
1916 for (vlan
= first_bt_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
1920 vlan
= qemu_mallocz(sizeof(struct bt_vlan_s
));
1922 pvlan
= &first_bt_vlan
;
1923 while (*pvlan
!= NULL
)
1924 pvlan
= &(*pvlan
)->next
;
1929 static void null_hci_send(struct HCIInfo
*hci
, const uint8_t *data
, int len
)
1933 static int null_hci_addr_set(struct HCIInfo
*hci
, const uint8_t *bd_addr
)
1938 static struct HCIInfo null_hci
= {
1939 .cmd_send
= null_hci_send
,
1940 .sco_send
= null_hci_send
,
1941 .acl_send
= null_hci_send
,
1942 .bdaddr_set
= null_hci_addr_set
,
1945 struct HCIInfo
*qemu_next_hci(void)
1947 if (cur_hci
== nb_hcis
)
1950 return hci_table
[cur_hci
++];
1953 static struct HCIInfo
*hci_init(const char *str
)
1956 struct bt_scatternet_s
*vlan
= 0;
1958 if (!strcmp(str
, "null"))
1961 else if (!strncmp(str
, "host", 4) && (str
[4] == '\0' || str
[4] == ':'))
1963 return bt_host_hci(str
[4] ? str
+ 5 : "hci0");
1964 else if (!strncmp(str
, "hci", 3)) {
1967 if (!strncmp(str
+ 3, ",vlan=", 6)) {
1968 vlan
= qemu_find_bt_vlan(strtol(str
+ 9, &endp
, 0));
1973 vlan
= qemu_find_bt_vlan(0);
1975 return bt_new_hci(vlan
);
1978 fprintf(stderr
, "qemu: Unknown bluetooth HCI `%s'.\n", str
);
1983 static int bt_hci_parse(const char *str
)
1985 struct HCIInfo
*hci
;
1988 if (nb_hcis
>= MAX_NICS
) {
1989 fprintf(stderr
, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS
);
1993 hci
= hci_init(str
);
2002 bdaddr
.b
[5] = 0x56 + nb_hcis
;
2003 hci
->bdaddr_set(hci
, bdaddr
.b
);
2005 hci_table
[nb_hcis
++] = hci
;
2010 static void bt_vhci_add(int vlan_id
)
2012 struct bt_scatternet_s
*vlan
= qemu_find_bt_vlan(vlan_id
);
2015 fprintf(stderr
, "qemu: warning: adding a VHCI to "
2016 "an empty scatternet %i\n", vlan_id
);
2018 bt_vhci_init(bt_new_hci(vlan
));
2021 static struct bt_device_s
*bt_device_add(const char *opt
)
2023 struct bt_scatternet_s
*vlan
;
2025 char *endp
= strstr(opt
, ",vlan=");
2026 int len
= (endp
? endp
- opt
: strlen(opt
)) + 1;
2029 pstrcpy(devname
, MIN(sizeof(devname
), len
), opt
);
2032 vlan_id
= strtol(endp
+ 6, &endp
, 0);
2034 fprintf(stderr
, "qemu: unrecognised bluetooth vlan Id\n");
2039 vlan
= qemu_find_bt_vlan(vlan_id
);
2042 fprintf(stderr
, "qemu: warning: adding a slave device to "
2043 "an empty scatternet %i\n", vlan_id
);
2045 if (!strcmp(devname
, "keyboard"))
2046 return bt_keyboard_init(vlan
);
2048 fprintf(stderr
, "qemu: unsupported bluetooth device `%s'\n", devname
);
2052 static int bt_parse(const char *opt
)
2054 const char *endp
, *p
;
2057 if (strstart(opt
, "hci", &endp
)) {
2058 if (!*endp
|| *endp
== ',') {
2060 if (!strstart(endp
, ",vlan=", 0))
2063 return bt_hci_parse(opt
);
2065 } else if (strstart(opt
, "vhci", &endp
)) {
2066 if (!*endp
|| *endp
== ',') {
2068 if (strstart(endp
, ",vlan=", &p
)) {
2069 vlan
= strtol(p
, (char **) &endp
, 0);
2071 fprintf(stderr
, "qemu: bad scatternet '%s'\n", p
);
2075 fprintf(stderr
, "qemu: bad parameter '%s'\n", endp
+ 1);
2084 } else if (strstart(opt
, "device:", &endp
))
2085 return !bt_device_add(endp
);
2087 fprintf(stderr
, "qemu: bad bluetooth parameter '%s'\n", opt
);
2091 /***********************************************************/
2092 /* QEMU Block devices */
2094 #define HD_ALIAS "index=%d,media=disk"
2095 #define CDROM_ALIAS "index=2,media=cdrom"
2096 #define FD_ALIAS "index=%d,if=floppy"
2097 #define PFLASH_ALIAS "if=pflash"
2098 #define MTD_ALIAS "if=mtd"
2099 #define SD_ALIAS "index=0,if=sd"
2101 static int drive_opt_get_free_idx(void)
2105 for (index
= 0; index
< MAX_DRIVES
; index
++)
2106 if (!drives_opt
[index
].used
) {
2107 drives_opt
[index
].used
= 1;
2114 static int drive_get_free_idx(void)
2118 for (index
= 0; index
< MAX_DRIVES
; index
++)
2119 if (!drives_table
[index
].used
) {
2120 drives_table
[index
].used
= 1;
2127 int drive_add(const char *file
, const char *fmt
, ...)
2130 int index
= drive_opt_get_free_idx();
2132 if (nb_drives_opt
>= MAX_DRIVES
|| index
== -1) {
2133 fprintf(stderr
, "qemu: too many drives\n");
2137 drives_opt
[index
].file
= file
;
2139 vsnprintf(drives_opt
[index
].opt
,
2140 sizeof(drives_opt
[0].opt
), fmt
, ap
);
2147 void drive_remove(int index
)
2149 drives_opt
[index
].used
= 0;
2153 int drive_get_index(BlockInterfaceType type
, int bus
, int unit
)
2157 /* seek interface, bus and unit */
2159 for (index
= 0; index
< MAX_DRIVES
; index
++)
2160 if (drives_table
[index
].type
== type
&&
2161 drives_table
[index
].bus
== bus
&&
2162 drives_table
[index
].unit
== unit
&&
2163 drives_table
[index
].used
)
2169 int drive_get_max_bus(BlockInterfaceType type
)
2175 for (index
= 0; index
< nb_drives
; index
++) {
2176 if(drives_table
[index
].type
== type
&&
2177 drives_table
[index
].bus
> max_bus
)
2178 max_bus
= drives_table
[index
].bus
;
2183 const char *drive_get_serial(BlockDriverState
*bdrv
)
2187 for (index
= 0; index
< nb_drives
; index
++)
2188 if (drives_table
[index
].bdrv
== bdrv
)
2189 return drives_table
[index
].serial
;
2194 BlockInterfaceErrorAction
drive_get_onerror(BlockDriverState
*bdrv
)
2198 for (index
= 0; index
< nb_drives
; index
++)
2199 if (drives_table
[index
].bdrv
== bdrv
)
2200 return drives_table
[index
].onerror
;
2202 return BLOCK_ERR_STOP_ENOSPC
;
2205 static void bdrv_format_print(void *opaque
, const char *name
)
2207 fprintf(stderr
, " %s", name
);
2210 void drive_uninit(BlockDriverState
*bdrv
)
2214 for (i
= 0; i
< MAX_DRIVES
; i
++)
2215 if (drives_table
[i
].bdrv
== bdrv
) {
2216 drives_table
[i
].bdrv
= NULL
;
2217 drives_table
[i
].used
= 0;
2218 drive_remove(drives_table
[i
].drive_opt_idx
);
2224 int drive_init(struct drive_opt
*arg
, int snapshot
, void *opaque
)
2230 const char *mediastr
= "";
2231 BlockInterfaceType type
;
2232 enum { MEDIA_DISK
, MEDIA_CDROM
} media
;
2233 int bus_id
, unit_id
;
2234 int cyls
, heads
, secs
, translation
;
2235 BlockDriverState
*bdrv
;
2236 BlockDriver
*drv
= NULL
;
2237 QEMUMachine
*machine
= opaque
;
2241 int bdrv_flags
, onerror
;
2242 int drives_table_idx
;
2243 char *str
= arg
->opt
;
2244 static const char * const params
[] = { "bus", "unit", "if", "index",
2245 "cyls", "heads", "secs", "trans",
2246 "media", "snapshot", "file",
2247 "cache", "format", "serial", "werror",
2250 if (check_params(buf
, sizeof(buf
), params
, str
) < 0) {
2251 fprintf(stderr
, "qemu: unknown parameter '%s' in '%s'\n",
2257 cyls
= heads
= secs
= 0;
2260 translation
= BIOS_ATA_TRANSLATION_AUTO
;
2264 if (machine
->use_scsi
) {
2266 max_devs
= MAX_SCSI_DEVS
;
2267 pstrcpy(devname
, sizeof(devname
), "scsi");
2270 max_devs
= MAX_IDE_DEVS
;
2271 pstrcpy(devname
, sizeof(devname
), "ide");
2275 /* extract parameters */
2277 if (get_param_value(buf
, sizeof(buf
), "bus", str
)) {
2278 bus_id
= strtol(buf
, NULL
, 0);
2280 fprintf(stderr
, "qemu: '%s' invalid bus id\n", str
);
2285 if (get_param_value(buf
, sizeof(buf
), "unit", str
)) {
2286 unit_id
= strtol(buf
, NULL
, 0);
2288 fprintf(stderr
, "qemu: '%s' invalid unit id\n", str
);
2293 if (get_param_value(buf
, sizeof(buf
), "if", str
)) {
2294 pstrcpy(devname
, sizeof(devname
), buf
);
2295 if (!strcmp(buf
, "ide")) {
2297 max_devs
= MAX_IDE_DEVS
;
2298 } else if (!strcmp(buf
, "scsi")) {
2300 max_devs
= MAX_SCSI_DEVS
;
2301 } else if (!strcmp(buf
, "floppy")) {
2304 } else if (!strcmp(buf
, "pflash")) {
2307 } else if (!strcmp(buf
, "mtd")) {
2310 } else if (!strcmp(buf
, "sd")) {
2313 } else if (!strcmp(buf
, "virtio")) {
2316 } else if (!strcmp(buf
, "xen")) {
2320 fprintf(stderr
, "qemu: '%s' unsupported bus type '%s'\n", str
, buf
);
2325 if (get_param_value(buf
, sizeof(buf
), "index", str
)) {
2326 index
= strtol(buf
, NULL
, 0);
2328 fprintf(stderr
, "qemu: '%s' invalid index\n", str
);
2333 if (get_param_value(buf
, sizeof(buf
), "cyls", str
)) {
2334 cyls
= strtol(buf
, NULL
, 0);
2337 if (get_param_value(buf
, sizeof(buf
), "heads", str
)) {
2338 heads
= strtol(buf
, NULL
, 0);
2341 if (get_param_value(buf
, sizeof(buf
), "secs", str
)) {
2342 secs
= strtol(buf
, NULL
, 0);
2345 if (cyls
|| heads
|| secs
) {
2346 if (cyls
< 1 || cyls
> 16383) {
2347 fprintf(stderr
, "qemu: '%s' invalid physical cyls number\n", str
);
2350 if (heads
< 1 || heads
> 16) {
2351 fprintf(stderr
, "qemu: '%s' invalid physical heads number\n", str
);
2354 if (secs
< 1 || secs
> 63) {
2355 fprintf(stderr
, "qemu: '%s' invalid physical secs number\n", str
);
2360 if (get_param_value(buf
, sizeof(buf
), "trans", str
)) {
2363 "qemu: '%s' trans must be used with cyls,heads and secs\n",
2367 if (!strcmp(buf
, "none"))
2368 translation
= BIOS_ATA_TRANSLATION_NONE
;
2369 else if (!strcmp(buf
, "lba"))
2370 translation
= BIOS_ATA_TRANSLATION_LBA
;
2371 else if (!strcmp(buf
, "auto"))
2372 translation
= BIOS_ATA_TRANSLATION_AUTO
;
2374 fprintf(stderr
, "qemu: '%s' invalid translation type\n", str
);
2379 if (get_param_value(buf
, sizeof(buf
), "media", str
)) {
2380 if (!strcmp(buf
, "disk")) {
2382 } else if (!strcmp(buf
, "cdrom")) {
2383 if (cyls
|| secs
|| heads
) {
2385 "qemu: '%s' invalid physical CHS format\n", str
);
2388 media
= MEDIA_CDROM
;
2390 fprintf(stderr
, "qemu: '%s' invalid media\n", str
);
2395 if (get_param_value(buf
, sizeof(buf
), "snapshot", str
)) {
2396 if (!strcmp(buf
, "on"))
2398 else if (!strcmp(buf
, "off"))
2401 fprintf(stderr
, "qemu: '%s' invalid snapshot option\n", str
);
2406 if (get_param_value(buf
, sizeof(buf
), "cache", str
)) {
2407 if (!strcmp(buf
, "off") || !strcmp(buf
, "none"))
2409 else if (!strcmp(buf
, "writethrough"))
2411 else if (!strcmp(buf
, "writeback"))
2414 fprintf(stderr
, "qemu: invalid cache option\n");
2419 if (get_param_value(buf
, sizeof(buf
), "format", str
)) {
2420 if (strcmp(buf
, "?") == 0) {
2421 fprintf(stderr
, "qemu: Supported formats:");
2422 bdrv_iterate_format(bdrv_format_print
, NULL
);
2423 fprintf(stderr
, "\n");
2426 drv
= bdrv_find_format(buf
);
2428 fprintf(stderr
, "qemu: '%s' invalid format\n", buf
);
2433 if (get_param_value(buf
, sizeof(buf
), "boot", str
)) {
2434 if (!strcmp(buf
, "on")) {
2435 if (extboot_drive
!= -1) {
2436 fprintf(stderr
, "qemu: two bootable drives specified\n");
2439 extboot_drive
= nb_drives
;
2440 } else if (strcmp(buf
, "off")) {
2441 fprintf(stderr
, "qemu: '%s' invalid boot option\n", str
);
2446 if (arg
->file
== NULL
)
2447 get_param_value(file
, sizeof(file
), "file", str
);
2449 pstrcpy(file
, sizeof(file
), arg
->file
);
2451 if (!get_param_value(serial
, sizeof(serial
), "serial", str
))
2452 memset(serial
, 0, sizeof(serial
));
2454 onerror
= BLOCK_ERR_STOP_ENOSPC
;
2455 if (get_param_value(buf
, sizeof(serial
), "werror", str
)) {
2456 if (type
!= IF_IDE
&& type
!= IF_SCSI
&& type
!= IF_VIRTIO
) {
2457 fprintf(stderr
, "werror is no supported by this format\n");
2460 if (!strcmp(buf
, "ignore"))
2461 onerror
= BLOCK_ERR_IGNORE
;
2462 else if (!strcmp(buf
, "enospc"))
2463 onerror
= BLOCK_ERR_STOP_ENOSPC
;
2464 else if (!strcmp(buf
, "stop"))
2465 onerror
= BLOCK_ERR_STOP_ANY
;
2466 else if (!strcmp(buf
, "report"))
2467 onerror
= BLOCK_ERR_REPORT
;
2469 fprintf(stderr
, "qemu: '%s' invalid write error action\n", buf
);
2474 /* compute bus and unit according index */
2477 if (bus_id
!= 0 || unit_id
!= -1) {
2479 "qemu: '%s' index cannot be used with bus and unit\n", str
);
2487 unit_id
= index
% max_devs
;
2488 bus_id
= index
/ max_devs
;
2492 /* if user doesn't specify a unit_id,
2493 * try to find the first free
2496 if (unit_id
== -1) {
2498 while (drive_get_index(type
, bus_id
, unit_id
) != -1) {
2500 if (max_devs
&& unit_id
>= max_devs
) {
2501 unit_id
-= max_devs
;
2509 if (max_devs
&& unit_id
>= max_devs
) {
2510 fprintf(stderr
, "qemu: '%s' unit %d too big (max is %d)\n",
2511 str
, unit_id
, max_devs
- 1);
2516 * ignore multiple definitions
2519 if (drive_get_index(type
, bus_id
, unit_id
) != -1)
2524 if (type
== IF_IDE
|| type
== IF_SCSI
)
2525 mediastr
= (media
== MEDIA_CDROM
) ? "-cd" : "-hd";
2527 snprintf(buf
, sizeof(buf
), "%s%i%s%i",
2528 devname
, bus_id
, mediastr
, unit_id
);
2530 snprintf(buf
, sizeof(buf
), "%s%s%i",
2531 devname
, mediastr
, unit_id
);
2532 bdrv
= bdrv_new(buf
);
2533 drives_table_idx
= drive_get_free_idx();
2534 drives_table
[drives_table_idx
].bdrv
= bdrv
;
2535 drives_table
[drives_table_idx
].type
= type
;
2536 drives_table
[drives_table_idx
].bus
= bus_id
;
2537 drives_table
[drives_table_idx
].unit
= unit_id
;
2538 drives_table
[drives_table_idx
].onerror
= onerror
;
2539 drives_table
[drives_table_idx
].drive_opt_idx
= arg
- drives_opt
;
2540 strncpy(drives_table
[drives_table_idx
].serial
, serial
, sizeof(serial
));
2550 bdrv_set_geometry_hint(bdrv
, cyls
, heads
, secs
);
2551 bdrv_set_translation_hint(bdrv
, translation
);
2555 bdrv_set_type_hint(bdrv
, BDRV_TYPE_CDROM
);
2560 /* FIXME: This isn't really a floppy, but it's a reasonable
2563 bdrv_set_type_hint(bdrv
, BDRV_TYPE_FLOPPY
);
2576 bdrv_flags
|= BDRV_O_SNAPSHOT
;
2577 cache
= 2; /* always use write-back with snapshot */
2579 if (cache
== 0) /* no caching */
2580 bdrv_flags
|= BDRV_O_NOCACHE
;
2581 else if (cache
== 2) /* write-back */
2582 bdrv_flags
|= BDRV_O_CACHE_WB
;
2583 else if (cache
== 3) /* not specified */
2584 bdrv_flags
|= BDRV_O_CACHE_DEF
;
2585 if (bdrv_open2(bdrv
, file
, bdrv_flags
, drv
) < 0) {
2586 fprintf(stderr
, "qemu: could not open disk image %s\n",
2590 if (bdrv_key_required(bdrv
))
2592 return drives_table_idx
;
2595 static void numa_add(const char *optarg
)
2599 unsigned long long value
, endvalue
;
2602 optarg
= get_opt_name(option
, 128, optarg
, ',') + 1;
2603 if (!strcmp(option
, "node")) {
2604 if (get_param_value(option
, 128, "nodeid", optarg
) == 0) {
2605 nodenr
= nb_numa_nodes
;
2607 nodenr
= strtoull(option
, NULL
, 10);
2610 if (get_param_value(option
, 128, "mem", optarg
) == 0) {
2611 node_mem
[nodenr
] = 0;
2613 value
= strtoull(option
, &endptr
, 0);
2615 case 0: case 'M': case 'm':
2622 node_mem
[nodenr
] = value
;
2624 if (get_param_value(option
, 128, "cpus", optarg
) == 0) {
2625 node_cpumask
[nodenr
] = 0;
2627 value
= strtoull(option
, &endptr
, 10);
2630 fprintf(stderr
, "only 64 CPUs in NUMA mode supported.\n");
2632 if (*endptr
== '-') {
2633 endvalue
= strtoull(endptr
+1, &endptr
, 10);
2634 if (endvalue
>= 63) {
2637 "only 63 CPUs in NUMA mode supported.\n");
2639 value
= (1 << (endvalue
+ 1)) - (1 << value
);
2644 node_cpumask
[nodenr
] = value
;
2651 /***********************************************************/
2654 static USBPort
*used_usb_ports
;
2655 static USBPort
*free_usb_ports
;
2657 /* ??? Maybe change this to register a hub to keep track of the topology. */
2658 void qemu_register_usb_port(USBPort
*port
, void *opaque
, int index
,
2659 usb_attachfn attach
)
2661 port
->opaque
= opaque
;
2662 port
->index
= index
;
2663 port
->attach
= attach
;
2664 port
->next
= free_usb_ports
;
2665 free_usb_ports
= port
;
2668 int usb_device_add_dev(USBDevice
*dev
)
2672 /* Find a USB port to add the device to. */
2673 port
= free_usb_ports
;
2677 /* Create a new hub and chain it on. */
2678 free_usb_ports
= NULL
;
2679 port
->next
= used_usb_ports
;
2680 used_usb_ports
= port
;
2682 hub
= usb_hub_init(VM_USB_HUB_SIZE
);
2683 usb_attach(port
, hub
);
2684 port
= free_usb_ports
;
2687 free_usb_ports
= port
->next
;
2688 port
->next
= used_usb_ports
;
2689 used_usb_ports
= port
;
2690 usb_attach(port
, dev
);
2694 static void usb_msd_password_cb(void *opaque
, int err
)
2696 USBDevice
*dev
= opaque
;
2699 usb_device_add_dev(dev
);
2701 dev
->handle_destroy(dev
);
2704 static int usb_device_add(const char *devname
, int is_hotplug
)
2709 if (!free_usb_ports
)
2712 if (strstart(devname
, "host:", &p
)) {
2713 dev
= usb_host_device_open(p
);
2714 } else if (!strcmp(devname
, "mouse")) {
2715 dev
= usb_mouse_init();
2716 } else if (!strcmp(devname
, "tablet")) {
2717 dev
= usb_tablet_init();
2718 } else if (!strcmp(devname
, "keyboard")) {
2719 dev
= usb_keyboard_init();
2720 } else if (strstart(devname
, "disk:", &p
)) {
2721 BlockDriverState
*bs
;
2723 dev
= usb_msd_init(p
);
2726 bs
= usb_msd_get_bdrv(dev
);
2727 if (bdrv_key_required(bs
)) {
2730 monitor_read_bdrv_key_start(cur_mon
, bs
, usb_msd_password_cb
,
2735 } else if (!strcmp(devname
, "wacom-tablet")) {
2736 dev
= usb_wacom_init();
2737 } else if (strstart(devname
, "serial:", &p
)) {
2738 dev
= usb_serial_init(p
);
2739 #ifdef CONFIG_BRLAPI
2740 } else if (!strcmp(devname
, "braille")) {
2741 dev
= usb_baum_init();
2743 } else if (strstart(devname
, "net:", &p
)) {
2746 if (net_client_init(NULL
, "nic", p
) < 0)
2748 nd_table
[nic
].model
= "usb";
2749 dev
= usb_net_init(&nd_table
[nic
]);
2750 } else if (!strcmp(devname
, "bt") || strstart(devname
, "bt:", &p
)) {
2751 dev
= usb_bt_init(devname
[2] ? hci_init(p
) :
2752 bt_new_hci(qemu_find_bt_vlan(0)));
2759 return usb_device_add_dev(dev
);
2762 int usb_device_del_addr(int bus_num
, int addr
)
2768 if (!used_usb_ports
)
2774 lastp
= &used_usb_ports
;
2775 port
= used_usb_ports
;
2776 while (port
&& port
->dev
->addr
!= addr
) {
2777 lastp
= &port
->next
;
2785 *lastp
= port
->next
;
2786 usb_attach(port
, NULL
);
2787 dev
->handle_destroy(dev
);
2788 port
->next
= free_usb_ports
;
2789 free_usb_ports
= port
;
2793 static int usb_device_del(const char *devname
)
2798 if (strstart(devname
, "host:", &p
))
2799 return usb_host_device_close(p
);
2801 if (!used_usb_ports
)
2804 p
= strchr(devname
, '.');
2807 bus_num
= strtoul(devname
, NULL
, 0);
2808 addr
= strtoul(p
+ 1, NULL
, 0);
2810 return usb_device_del_addr(bus_num
, addr
);
2813 void do_usb_add(Monitor
*mon
, const char *devname
)
2815 usb_device_add(devname
, 1);
2818 void do_usb_del(Monitor
*mon
, const char *devname
)
2820 usb_device_del(devname
);
2823 void usb_info(Monitor
*mon
)
2827 const char *speed_str
;
2830 monitor_printf(mon
, "USB support not enabled\n");
2834 for (port
= used_usb_ports
; port
; port
= port
->next
) {
2838 switch(dev
->speed
) {
2842 case USB_SPEED_FULL
:
2845 case USB_SPEED_HIGH
:
2852 monitor_printf(mon
, " Device %d.%d, Speed %s Mb/s, Product %s\n",
2853 0, dev
->addr
, speed_str
, dev
->devname
);
2857 /***********************************************************/
2858 /* PCMCIA/Cardbus */
2860 static struct pcmcia_socket_entry_s
{
2861 PCMCIASocket
*socket
;
2862 struct pcmcia_socket_entry_s
*next
;
2863 } *pcmcia_sockets
= 0;
2865 void pcmcia_socket_register(PCMCIASocket
*socket
)
2867 struct pcmcia_socket_entry_s
*entry
;
2869 entry
= qemu_malloc(sizeof(struct pcmcia_socket_entry_s
));
2870 entry
->socket
= socket
;
2871 entry
->next
= pcmcia_sockets
;
2872 pcmcia_sockets
= entry
;
2875 void pcmcia_socket_unregister(PCMCIASocket
*socket
)
2877 struct pcmcia_socket_entry_s
*entry
, **ptr
;
2879 ptr
= &pcmcia_sockets
;
2880 for (entry
= *ptr
; entry
; ptr
= &entry
->next
, entry
= *ptr
)
2881 if (entry
->socket
== socket
) {
2887 void pcmcia_info(Monitor
*mon
)
2889 struct pcmcia_socket_entry_s
*iter
;
2891 if (!pcmcia_sockets
)
2892 monitor_printf(mon
, "No PCMCIA sockets\n");
2894 for (iter
= pcmcia_sockets
; iter
; iter
= iter
->next
)
2895 monitor_printf(mon
, "%s: %s\n", iter
->socket
->slot_string
,
2896 iter
->socket
->attached
? iter
->socket
->card_string
:
2900 /***********************************************************/
2901 /* register display */
2903 struct DisplayAllocator default_allocator
= {
2904 defaultallocator_create_displaysurface
,
2905 defaultallocator_resize_displaysurface
,
2906 defaultallocator_free_displaysurface
2909 void register_displaystate(DisplayState
*ds
)
2919 DisplayState
*get_displaystate(void)
2921 return display_state
;
2924 DisplayAllocator
*register_displayallocator(DisplayState
*ds
, DisplayAllocator
*da
)
2926 if(ds
->allocator
== &default_allocator
) ds
->allocator
= da
;
2927 return ds
->allocator
;
2932 static void dumb_display_init(void)
2934 DisplayState
*ds
= qemu_mallocz(sizeof(DisplayState
));
2935 ds
->allocator
= &default_allocator
;
2936 ds
->surface
= qemu_create_displaysurface(ds
, 640, 480);
2937 register_displaystate(ds
);
2940 /***********************************************************/
2943 typedef struct IOHandlerRecord
{
2945 IOCanRWHandler
*fd_read_poll
;
2947 IOHandler
*fd_write
;
2950 /* temporary data */
2952 struct IOHandlerRecord
*next
;
2955 static IOHandlerRecord
*first_io_handler
;
2957 /* XXX: fd_read_poll should be suppressed, but an API change is
2958 necessary in the character devices to suppress fd_can_read(). */
2959 int qemu_set_fd_handler2(int fd
,
2960 IOCanRWHandler
*fd_read_poll
,
2962 IOHandler
*fd_write
,
2965 IOHandlerRecord
**pioh
, *ioh
;
2967 if (!fd_read
&& !fd_write
) {
2968 pioh
= &first_io_handler
;
2973 if (ioh
->fd
== fd
) {
2980 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
2984 ioh
= qemu_mallocz(sizeof(IOHandlerRecord
));
2985 ioh
->next
= first_io_handler
;
2986 first_io_handler
= ioh
;
2989 ioh
->fd_read_poll
= fd_read_poll
;
2990 ioh
->fd_read
= fd_read
;
2991 ioh
->fd_write
= fd_write
;
2992 ioh
->opaque
= opaque
;
2995 qemu_notify_event();
2999 int qemu_set_fd_handler(int fd
,
3001 IOHandler
*fd_write
,
3004 return qemu_set_fd_handler2(fd
, NULL
, fd_read
, fd_write
, opaque
);
3008 /***********************************************************/
3009 /* Polling handling */
3011 typedef struct PollingEntry
{
3014 struct PollingEntry
*next
;
3017 static PollingEntry
*first_polling_entry
;
3019 int qemu_add_polling_cb(PollingFunc
*func
, void *opaque
)
3021 PollingEntry
**ppe
, *pe
;
3022 pe
= qemu_mallocz(sizeof(PollingEntry
));
3024 pe
->opaque
= opaque
;
3025 for(ppe
= &first_polling_entry
; *ppe
!= NULL
; ppe
= &(*ppe
)->next
);
3030 void qemu_del_polling_cb(PollingFunc
*func
, void *opaque
)
3032 PollingEntry
**ppe
, *pe
;
3033 for(ppe
= &first_polling_entry
; *ppe
!= NULL
; ppe
= &(*ppe
)->next
) {
3035 if (pe
->func
== func
&& pe
->opaque
== opaque
) {
3043 /***********************************************************/
3044 /* Wait objects support */
3045 typedef struct WaitObjects
{
3047 HANDLE events
[MAXIMUM_WAIT_OBJECTS
+ 1];
3048 WaitObjectFunc
*func
[MAXIMUM_WAIT_OBJECTS
+ 1];
3049 void *opaque
[MAXIMUM_WAIT_OBJECTS
+ 1];
3052 static WaitObjects wait_objects
= {0};
3054 int qemu_add_wait_object(HANDLE handle
, WaitObjectFunc
*func
, void *opaque
)
3056 WaitObjects
*w
= &wait_objects
;
3058 if (w
->num
>= MAXIMUM_WAIT_OBJECTS
)
3060 w
->events
[w
->num
] = handle
;
3061 w
->func
[w
->num
] = func
;
3062 w
->opaque
[w
->num
] = opaque
;
3067 void qemu_del_wait_object(HANDLE handle
, WaitObjectFunc
*func
, void *opaque
)
3070 WaitObjects
*w
= &wait_objects
;
3073 for (i
= 0; i
< w
->num
; i
++) {
3074 if (w
->events
[i
] == handle
)
3077 w
->events
[i
] = w
->events
[i
+ 1];
3078 w
->func
[i
] = w
->func
[i
+ 1];
3079 w
->opaque
[i
] = w
->opaque
[i
+ 1];
3087 /***********************************************************/
3088 /* ram save/restore */
3090 static int ram_get_page(QEMUFile
*f
, uint8_t *buf
, int len
)
3094 v
= qemu_get_byte(f
);
3097 if (qemu_get_buffer(f
, buf
, len
) != len
)
3101 v
= qemu_get_byte(f
);
3102 memset(buf
, v
, len
);
3108 if (qemu_file_has_error(f
))
3114 static int ram_load_v1(QEMUFile
*f
, void *opaque
)
3119 if (qemu_get_be32(f
) != last_ram_offset
)
3121 for(i
= 0; i
< last_ram_offset
; i
+= TARGET_PAGE_SIZE
) {
3122 if (kvm_enabled() && (i
>=0xa0000) && (i
<0xc0000)) /* do not access video-addresses */
3124 ret
= ram_get_page(f
, qemu_get_ram_ptr(i
), TARGET_PAGE_SIZE
);
3131 #define BDRV_HASH_BLOCK_SIZE 1024
3132 #define IOBUF_SIZE 4096
3133 #define RAM_CBLOCK_MAGIC 0xfabe
3135 typedef struct RamDecompressState
{
3138 uint8_t buf
[IOBUF_SIZE
];
3139 } RamDecompressState
;
3141 static int ram_decompress_open(RamDecompressState
*s
, QEMUFile
*f
)
3144 memset(s
, 0, sizeof(*s
));
3146 ret
= inflateInit(&s
->zstream
);
3152 static int ram_decompress_buf(RamDecompressState
*s
, uint8_t *buf
, int len
)
3156 s
->zstream
.avail_out
= len
;
3157 s
->zstream
.next_out
= buf
;
3158 while (s
->zstream
.avail_out
> 0) {
3159 if (s
->zstream
.avail_in
== 0) {
3160 if (qemu_get_be16(s
->f
) != RAM_CBLOCK_MAGIC
)
3162 clen
= qemu_get_be16(s
->f
);
3163 if (clen
> IOBUF_SIZE
)
3165 qemu_get_buffer(s
->f
, s
->buf
, clen
);
3166 s
->zstream
.avail_in
= clen
;
3167 s
->zstream
.next_in
= s
->buf
;
3169 ret
= inflate(&s
->zstream
, Z_PARTIAL_FLUSH
);
3170 if (ret
!= Z_OK
&& ret
!= Z_STREAM_END
) {
3177 static void ram_decompress_close(RamDecompressState
*s
)
3179 inflateEnd(&s
->zstream
);
3182 #define RAM_SAVE_FLAG_FULL 0x01
3183 #define RAM_SAVE_FLAG_COMPRESS 0x02
3184 #define RAM_SAVE_FLAG_MEM_SIZE 0x04
3185 #define RAM_SAVE_FLAG_PAGE 0x08
3186 #define RAM_SAVE_FLAG_EOS 0x10
3188 static int is_dup_page(uint8_t *page
, uint8_t ch
)
3190 uint32_t val
= ch
<< 24 | ch
<< 16 | ch
<< 8 | ch
;
3191 uint32_t *array
= (uint32_t *)page
;
3194 for (i
= 0; i
< (TARGET_PAGE_SIZE
/ 4); i
++) {
3195 if (array
[i
] != val
)
3202 static int ram_save_block(QEMUFile
*f
)
3204 static ram_addr_t current_addr
= 0;
3205 ram_addr_t saved_addr
= current_addr
;
3206 ram_addr_t addr
= 0;
3209 while (addr
< last_ram_offset
) {
3210 if (kvm_enabled() && current_addr
== 0) {
3212 r
= kvm_update_dirty_pages_log();
3214 fprintf(stderr
, "%s: update dirty pages log failed %d\n", __FUNCTION__
, r
);
3215 qemu_file_set_error(f
);
3219 if (cpu_physical_memory_get_dirty(current_addr
, MIGRATION_DIRTY_FLAG
)) {
3222 cpu_physical_memory_reset_dirty(current_addr
,
3223 current_addr
+ TARGET_PAGE_SIZE
,
3224 MIGRATION_DIRTY_FLAG
);
3226 p
= qemu_get_ram_ptr(current_addr
);
3228 if (is_dup_page(p
, *p
)) {
3229 qemu_put_be64(f
, current_addr
| RAM_SAVE_FLAG_COMPRESS
);
3230 qemu_put_byte(f
, *p
);
3232 qemu_put_be64(f
, current_addr
| RAM_SAVE_FLAG_PAGE
);
3233 qemu_put_buffer(f
, p
, TARGET_PAGE_SIZE
);
3239 addr
+= TARGET_PAGE_SIZE
;
3240 current_addr
= (saved_addr
+ addr
) % last_ram_offset
;
3246 static uint64_t bytes_transferred
= 0;
3248 static ram_addr_t
ram_save_remaining(void)
3251 ram_addr_t count
= 0;
3253 for (addr
= 0; addr
< last_ram_offset
; addr
+= TARGET_PAGE_SIZE
) {
3254 if (cpu_physical_memory_get_dirty(addr
, MIGRATION_DIRTY_FLAG
))
3261 uint64_t ram_bytes_remaining(void)
3263 return ram_save_remaining() * TARGET_PAGE_SIZE
;
3266 uint64_t ram_bytes_transferred(void)
3268 return bytes_transferred
;
3271 uint64_t ram_bytes_total(void)
3273 return last_ram_offset
;
3276 static int ram_save_live(QEMUFile
*f
, int stage
, void *opaque
)
3279 uint64_t bytes_transferred_last
;
3281 uint64_t expected_time
= 0;
3283 if (cpu_physical_sync_dirty_bitmap(0, TARGET_PHYS_ADDR_MAX
) != 0) {
3284 qemu_file_set_error(f
);
3289 /* Make sure all dirty bits are set */
3290 for (addr
= 0; addr
< last_ram_offset
; addr
+= TARGET_PAGE_SIZE
) {
3291 if (!cpu_physical_memory_get_dirty(addr
, MIGRATION_DIRTY_FLAG
))
3292 cpu_physical_memory_set_dirty(addr
);
3295 /* Enable dirty memory tracking */
3296 cpu_physical_memory_set_dirty_tracking(1);
3298 qemu_put_be64(f
, last_ram_offset
| RAM_SAVE_FLAG_MEM_SIZE
);
3301 bytes_transferred_last
= bytes_transferred
;
3302 bwidth
= get_clock();
3304 while (!qemu_file_rate_limit(f
)) {
3307 ret
= ram_save_block(f
);
3308 bytes_transferred
+= ret
* TARGET_PAGE_SIZE
;
3309 if (ret
== 0) /* no more blocks */
3313 bwidth
= get_clock() - bwidth
;
3314 bwidth
= (bytes_transferred
- bytes_transferred_last
) / bwidth
;
3316 /* if we haven't transferred anything this round, force expected_time to a
3317 * a very high value, but without crashing */
3321 /* try transferring iterative blocks of memory */
3325 /* flush all remaining blocks regardless of rate limiting */
3326 while (ram_save_block(f
) != 0) {
3327 bytes_transferred
+= TARGET_PAGE_SIZE
;
3329 cpu_physical_memory_set_dirty_tracking(0);
3332 qemu_put_be64(f
, RAM_SAVE_FLAG_EOS
);
3334 expected_time
= ram_save_remaining() * TARGET_PAGE_SIZE
/ bwidth
;
3336 return (stage
== 2) && (expected_time
<= migrate_max_downtime());
3339 static int ram_load_dead(QEMUFile
*f
, void *opaque
)
3341 RamDecompressState s1
, *s
= &s1
;
3345 if (ram_decompress_open(s
, f
) < 0)
3347 for(i
= 0; i
< last_ram_offset
; i
+= BDRV_HASH_BLOCK_SIZE
) {
3348 if (kvm_enabled() && (i
>=0xa0000) && (i
<0xc0000)) /* do not access video-addresses */
3350 if (ram_decompress_buf(s
, buf
, 1) < 0) {
3351 fprintf(stderr
, "Error while reading ram block header\n");
3355 if (ram_decompress_buf(s
, qemu_get_ram_ptr(i
),
3356 BDRV_HASH_BLOCK_SIZE
) < 0) {
3357 fprintf(stderr
, "Error while reading ram block address=0x%08" PRIx64
, (uint64_t)i
);
3362 printf("Error block header\n");
3366 ram_decompress_close(s
);
3371 static int ram_load(QEMUFile
*f
, void *opaque
, int version_id
)
3376 if (version_id
== 1)
3377 return ram_load_v1(f
, opaque
);
3379 if (version_id
== 2) {
3380 if (qemu_get_be32(f
) != last_ram_offset
)
3382 return ram_load_dead(f
, opaque
);
3385 if (version_id
!= 3)
3389 addr
= qemu_get_be64(f
);
3391 flags
= addr
& ~TARGET_PAGE_MASK
;
3392 addr
&= TARGET_PAGE_MASK
;
3394 if (flags
& RAM_SAVE_FLAG_MEM_SIZE
) {
3395 if (addr
!= last_ram_offset
)
3399 if (flags
& RAM_SAVE_FLAG_FULL
) {
3400 if (ram_load_dead(f
, opaque
) < 0)
3404 if (flags
& RAM_SAVE_FLAG_COMPRESS
) {
3405 uint8_t ch
= qemu_get_byte(f
);
3406 memset(qemu_get_ram_ptr(addr
), ch
, TARGET_PAGE_SIZE
);
3407 } else if (flags
& RAM_SAVE_FLAG_PAGE
)
3408 qemu_get_buffer(f
, qemu_get_ram_ptr(addr
), TARGET_PAGE_SIZE
);
3409 } while (!(flags
& RAM_SAVE_FLAG_EOS
));
3414 void qemu_service_io(void)
3416 qemu_notify_event();
3419 /***********************************************************/
3420 /* bottom halves (can be seen as timers which expire ASAP) */
3431 static QEMUBH
*first_bh
= NULL
;
3433 QEMUBH
*qemu_bh_new(QEMUBHFunc
*cb
, void *opaque
)
3436 bh
= qemu_mallocz(sizeof(QEMUBH
));
3438 bh
->opaque
= opaque
;
3439 bh
->next
= first_bh
;
3444 int qemu_bh_poll(void)
3450 for (bh
= first_bh
; bh
; bh
= bh
->next
) {
3451 if (!bh
->deleted
&& bh
->scheduled
) {
3460 /* remove deleted bhs */
3474 void qemu_bh_schedule_idle(QEMUBH
*bh
)
3482 void qemu_bh_schedule(QEMUBH
*bh
)
3488 /* stop the currently executing CPU to execute the BH ASAP */
3489 qemu_notify_event();
3492 void qemu_bh_cancel(QEMUBH
*bh
)
3497 void qemu_bh_delete(QEMUBH
*bh
)
3503 static void qemu_bh_update_timeout(int *timeout
)
3507 for (bh
= first_bh
; bh
; bh
= bh
->next
) {
3508 if (!bh
->deleted
&& bh
->scheduled
) {
3510 /* idle bottom halves will be polled at least
3512 *timeout
= MIN(10, *timeout
);
3514 /* non-idle bottom halves will be executed
3523 /***********************************************************/
3524 /* machine registration */
3526 static QEMUMachine
*first_machine
= NULL
;
3527 QEMUMachine
*current_machine
= NULL
;
3529 int qemu_register_machine(QEMUMachine
*m
)
3532 pm
= &first_machine
;
3540 static QEMUMachine
*find_machine(const char *name
)
3544 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
3545 if (!strcmp(m
->name
, name
))
3551 static QEMUMachine
*find_default_machine(void)
3555 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
3556 if (m
->is_default
) {
3563 /***********************************************************/
3564 /* main execution loop */
3566 static void gui_update(void *opaque
)
3568 uint64_t interval
= GUI_REFRESH_INTERVAL
;
3569 DisplayState
*ds
= opaque
;
3570 DisplayChangeListener
*dcl
= ds
->listeners
;
3574 while (dcl
!= NULL
) {
3575 if (dcl
->gui_timer_interval
&&
3576 dcl
->gui_timer_interval
< interval
)
3577 interval
= dcl
->gui_timer_interval
;
3580 qemu_mod_timer(ds
->gui_timer
, interval
+ qemu_get_clock(rt_clock
));
3583 static void nographic_update(void *opaque
)
3585 uint64_t interval
= GUI_REFRESH_INTERVAL
;
3587 qemu_mod_timer(nographic_timer
, interval
+ qemu_get_clock(rt_clock
));
3590 struct vm_change_state_entry
{
3591 VMChangeStateHandler
*cb
;
3593 LIST_ENTRY (vm_change_state_entry
) entries
;
3596 static LIST_HEAD(vm_change_state_head
, vm_change_state_entry
) vm_change_state_head
;
3598 VMChangeStateEntry
*qemu_add_vm_change_state_handler(VMChangeStateHandler
*cb
,
3601 VMChangeStateEntry
*e
;
3603 e
= qemu_mallocz(sizeof (*e
));
3607 LIST_INSERT_HEAD(&vm_change_state_head
, e
, entries
);
3611 void qemu_del_vm_change_state_handler(VMChangeStateEntry
*e
)
3613 LIST_REMOVE (e
, entries
);
3617 static void vm_state_notify(int running
, int reason
)
3619 VMChangeStateEntry
*e
;
3621 for (e
= vm_change_state_head
.lh_first
; e
; e
= e
->entries
.le_next
) {
3622 e
->cb(e
->opaque
, running
, reason
);
3626 static void resume_all_vcpus(void);
3627 static void pause_all_vcpus(void);
3634 vm_state_notify(1, 0);
3635 qemu_rearm_alarm_timer(alarm_timer
);
3640 /* reset/shutdown handler */
3642 typedef struct QEMUResetEntry
{
3643 QEMUResetHandler
*func
;
3646 struct QEMUResetEntry
*next
;
3649 static QEMUResetEntry
*first_reset_entry
;
3650 static int reset_requested
;
3651 static int shutdown_requested
;
3652 static int powerdown_requested
;
3653 static int debug_requested
;
3654 static int vmstop_requested
;
3656 int qemu_no_shutdown(void)
3658 int r
= no_shutdown
;
3663 int qemu_shutdown_requested(void)
3665 int r
= shutdown_requested
;
3666 shutdown_requested
= 0;
3670 int qemu_reset_requested(void)
3672 int r
= reset_requested
;
3673 reset_requested
= 0;
3677 int qemu_powerdown_requested(void)
3679 int r
= powerdown_requested
;
3680 powerdown_requested
= 0;
3684 static int qemu_debug_requested(void)
3686 int r
= debug_requested
;
3687 debug_requested
= 0;
3691 static int qemu_vmstop_requested(void)
3693 int r
= vmstop_requested
;
3694 vmstop_requested
= 0;
3698 static void do_vm_stop(int reason
)
3701 cpu_disable_ticks();
3704 vm_state_notify(0, reason
);
3708 void qemu_register_reset(QEMUResetHandler
*func
, int order
, void *opaque
)
3710 QEMUResetEntry
**pre
, *re
;
3712 pre
= &first_reset_entry
;
3713 while (*pre
!= NULL
&& (*pre
)->order
>= order
) {
3714 pre
= &(*pre
)->next
;
3716 re
= qemu_mallocz(sizeof(QEMUResetEntry
));
3718 re
->opaque
= opaque
;
3724 void qemu_system_reset(void)
3728 /* reset all devices */
3729 for(re
= first_reset_entry
; re
!= NULL
; re
= re
->next
) {
3730 re
->func(re
->opaque
);
3734 void qemu_system_reset_request(void)
3737 shutdown_requested
= 1;
3739 reset_requested
= 1;
3741 if (cpu_single_env
) {
3742 qemu_kvm_cpu_stop(cpu_single_env
);
3744 qemu_notify_event();
3747 void qemu_system_shutdown_request(void)
3749 shutdown_requested
= 1;
3750 qemu_notify_event();
3753 void qemu_system_powerdown_request(void)
3755 powerdown_requested
= 1;
3756 qemu_notify_event();
3759 #ifdef CONFIG_IOTHREAD
3760 static void qemu_system_vmstop_request(int reason
)
3762 vmstop_requested
= reason
;
3763 qemu_notify_event();
3768 static int io_thread_fd
= -1;
3770 static void qemu_event_increment(void)
3772 static const char byte
= 0;
3774 if (io_thread_fd
== -1)
3777 write(io_thread_fd
, &byte
, sizeof(byte
));
3780 static void qemu_event_read(void *opaque
)
3782 int fd
= (unsigned long)opaque
;
3785 /* Drain the notify pipe */
3788 len
= read(fd
, buffer
, sizeof(buffer
));
3789 } while ((len
== -1 && errno
== EINTR
) || len
> 0);
3792 static int qemu_event_init(void)
3801 err
= fcntl_setfl(fds
[0], O_NONBLOCK
);
3805 err
= fcntl_setfl(fds
[1], O_NONBLOCK
);
3809 qemu_set_fd_handler2(fds
[0], NULL
, qemu_event_read
, NULL
,
3810 (void *)(unsigned long)fds
[0]);
3812 io_thread_fd
= fds
[1];
3821 HANDLE qemu_event_handle
;
3823 static void dummy_event_handler(void *opaque
)
3827 static int qemu_event_init(void)
3829 qemu_event_handle
= CreateEvent(NULL
, FALSE
, FALSE
, NULL
);
3830 if (!qemu_event_handle
) {
3831 perror("Failed CreateEvent");
3834 qemu_add_wait_object(qemu_event_handle
, dummy_event_handler
, NULL
);
3838 static void qemu_event_increment(void)
3840 SetEvent(qemu_event_handle
);
3844 static int cpu_can_run(CPUState
*env
)
3853 #ifndef CONFIG_IOTHREAD
3854 static int qemu_init_main_loop(void)
3856 return qemu_event_init();
3859 void qemu_init_vcpu(void *_env
)
3861 CPUState
*env
= _env
;
3868 int qemu_cpu_self(void *env
)
3873 static void resume_all_vcpus(void)
3877 static void pause_all_vcpus(void)
3881 void qemu_cpu_kick(void *env
)
3886 void qemu_notify_event(void)
3888 CPUState
*env
= cpu_single_env
;
3890 if (kvm_enabled()) {
3891 qemu_kvm_notify_work();
3897 if (env
->kqemu_enabled
)
3898 kqemu_cpu_interrupt(env
);
3903 #define qemu_mutex_lock_iothread() do { } while (0)
3904 #define qemu_mutex_unlock_iothread() do { } while (0)
3906 void vm_stop(int reason
)
3911 #else /* CONFIG_IOTHREAD */
3913 #include "qemu-thread.h"
3915 QemuMutex qemu_global_mutex
;
3916 static QemuMutex qemu_fair_mutex
;
3918 static QemuThread io_thread
;
3920 static QemuThread
*tcg_cpu_thread
;
3921 static QemuCond
*tcg_halt_cond
;
3923 static int qemu_system_ready
;
3925 static QemuCond qemu_cpu_cond
;
3927 static QemuCond qemu_system_cond
;
3928 static QemuCond qemu_pause_cond
;
3930 static void block_io_signals(void);
3931 static void unblock_io_signals(void);
3932 static int tcg_has_work(void);
3934 static int qemu_init_main_loop(void)
3938 ret
= qemu_event_init();
3942 qemu_cond_init(&qemu_pause_cond
);
3943 qemu_mutex_init(&qemu_fair_mutex
);
3944 qemu_mutex_init(&qemu_global_mutex
);
3945 qemu_mutex_lock(&qemu_global_mutex
);
3947 unblock_io_signals();
3948 qemu_thread_self(&io_thread
);
3953 static void qemu_wait_io_event(CPUState
*env
)
3955 while (!tcg_has_work())
3956 qemu_cond_timedwait(env
->halt_cond
, &qemu_global_mutex
, 1000);
3958 qemu_mutex_unlock(&qemu_global_mutex
);
3961 * Users of qemu_global_mutex can be starved, having no chance
3962 * to acquire it since this path will get to it first.
3963 * So use another lock to provide fairness.
3965 qemu_mutex_lock(&qemu_fair_mutex
);
3966 qemu_mutex_unlock(&qemu_fair_mutex
);
3968 qemu_mutex_lock(&qemu_global_mutex
);
3972 qemu_cond_signal(&qemu_pause_cond
);
3976 static int qemu_cpu_exec(CPUState
*env
);
3978 static void *kvm_cpu_thread_fn(void *arg
)
3980 CPUState
*env
= arg
;
3983 qemu_thread_self(env
->thread
);
3985 /* signal CPU creation */
3986 qemu_mutex_lock(&qemu_global_mutex
);
3988 qemu_cond_signal(&qemu_cpu_cond
);
3990 /* and wait for machine initialization */
3991 while (!qemu_system_ready
)
3992 qemu_cond_timedwait(&qemu_system_cond
, &qemu_global_mutex
, 100);
3995 if (cpu_can_run(env
))
3997 qemu_wait_io_event(env
);
4003 static void tcg_cpu_exec(void);
4005 static void *tcg_cpu_thread_fn(void *arg
)
4007 CPUState
*env
= arg
;
4010 qemu_thread_self(env
->thread
);
4012 /* signal CPU creation */
4013 qemu_mutex_lock(&qemu_global_mutex
);
4014 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
)
4016 qemu_cond_signal(&qemu_cpu_cond
);
4018 /* and wait for machine initialization */
4019 while (!qemu_system_ready
)
4020 qemu_cond_timedwait(&qemu_system_cond
, &qemu_global_mutex
, 100);
4024 qemu_wait_io_event(cur_cpu
);
4030 void qemu_cpu_kick(void *_env
)
4032 CPUState
*env
= _env
;
4033 qemu_cond_broadcast(env
->halt_cond
);
4035 qemu_thread_signal(env
->thread
, SIGUSR1
);
4038 int qemu_cpu_self(void *env
)
4040 return (cpu_single_env
!= NULL
);
4043 static void cpu_signal(int sig
)
4046 cpu_exit(cpu_single_env
);
4049 static void block_io_signals(void)
4052 struct sigaction sigact
;
4055 sigaddset(&set
, SIGUSR2
);
4056 sigaddset(&set
, SIGIO
);
4057 sigaddset(&set
, SIGALRM
);
4058 pthread_sigmask(SIG_BLOCK
, &set
, NULL
);
4061 sigaddset(&set
, SIGUSR1
);
4062 pthread_sigmask(SIG_UNBLOCK
, &set
, NULL
);
4064 memset(&sigact
, 0, sizeof(sigact
));
4065 sigact
.sa_handler
= cpu_signal
;
4066 sigaction(SIGUSR1
, &sigact
, NULL
);
4069 static void unblock_io_signals(void)
4074 sigaddset(&set
, SIGUSR2
);
4075 sigaddset(&set
, SIGIO
);
4076 sigaddset(&set
, SIGALRM
);
4077 pthread_sigmask(SIG_UNBLOCK
, &set
, NULL
);
4080 sigaddset(&set
, SIGUSR1
);
4081 pthread_sigmask(SIG_BLOCK
, &set
, NULL
);
4084 static void qemu_signal_lock(unsigned int msecs
)
4086 qemu_mutex_lock(&qemu_fair_mutex
);
4088 while (qemu_mutex_trylock(&qemu_global_mutex
)) {
4089 qemu_thread_signal(tcg_cpu_thread
, SIGUSR1
);
4090 if (!qemu_mutex_timedlock(&qemu_global_mutex
, msecs
))
4093 qemu_mutex_unlock(&qemu_fair_mutex
);
4096 static void qemu_mutex_lock_iothread(void)
4098 if (kvm_enabled()) {
4099 qemu_mutex_lock(&qemu_fair_mutex
);
4100 qemu_mutex_lock(&qemu_global_mutex
);
4101 qemu_mutex_unlock(&qemu_fair_mutex
);
4103 qemu_signal_lock(100);
4106 static void qemu_mutex_unlock_iothread(void)
4108 qemu_mutex_unlock(&qemu_global_mutex
);
4111 static int all_vcpus_paused(void)
4113 CPUState
*penv
= first_cpu
;
4118 penv
= (CPUState
*)penv
->next_cpu
;
4124 static void pause_all_vcpus(void)
4126 CPUState
*penv
= first_cpu
;
4130 qemu_thread_signal(penv
->thread
, SIGUSR1
);
4131 qemu_cpu_kick(penv
);
4132 penv
= (CPUState
*)penv
->next_cpu
;
4135 while (!all_vcpus_paused()) {
4136 qemu_cond_timedwait(&qemu_pause_cond
, &qemu_global_mutex
, 100);
4139 qemu_thread_signal(penv
->thread
, SIGUSR1
);
4140 penv
= (CPUState
*)penv
->next_cpu
;
4145 static void resume_all_vcpus(void)
4147 CPUState
*penv
= first_cpu
;
4152 qemu_thread_signal(penv
->thread
, SIGUSR1
);
4153 qemu_cpu_kick(penv
);
4154 penv
= (CPUState
*)penv
->next_cpu
;
4158 static void tcg_init_vcpu(void *_env
)
4160 CPUState
*env
= _env
;
4161 /* share a single thread for all cpus with TCG */
4162 if (!tcg_cpu_thread
) {
4163 env
->thread
= qemu_mallocz(sizeof(QemuThread
));
4164 env
->halt_cond
= qemu_mallocz(sizeof(QemuCond
));
4165 qemu_cond_init(env
->halt_cond
);
4166 qemu_thread_create(env
->thread
, tcg_cpu_thread_fn
, env
);
4167 while (env
->created
== 0)
4168 qemu_cond_timedwait(&qemu_cpu_cond
, &qemu_global_mutex
, 100);
4169 tcg_cpu_thread
= env
->thread
;
4170 tcg_halt_cond
= env
->halt_cond
;
4172 env
->thread
= tcg_cpu_thread
;
4173 env
->halt_cond
= tcg_halt_cond
;
4177 static void kvm_start_vcpu(CPUState
*env
)
4180 env
->thread
= qemu_mallocz(sizeof(QemuThread
));
4181 env
->halt_cond
= qemu_mallocz(sizeof(QemuCond
));
4182 qemu_cond_init(env
->halt_cond
);
4183 qemu_thread_create(env
->thread
, kvm_cpu_thread_fn
, env
);
4184 while (env
->created
== 0)
4185 qemu_cond_timedwait(&qemu_cpu_cond
, &qemu_global_mutex
, 100);
4188 void qemu_init_vcpu(void *_env
)
4190 CPUState
*env
= _env
;
4193 kvm_start_vcpu(env
);
4198 void qemu_notify_event(void)
4200 qemu_event_increment();
4203 void vm_stop(int reason
)
4206 qemu_thread_self(&me
);
4208 if (!qemu_thread_equal(&me
, &io_thread
)) {
4209 qemu_system_vmstop_request(reason
);
4211 * FIXME: should not return to device code in case
4212 * vm_stop() has been requested.
4214 if (cpu_single_env
) {
4215 cpu_exit(cpu_single_env
);
4216 cpu_single_env
->stop
= 1;
4227 static void host_main_loop_wait(int *timeout
)
4233 /* XXX: need to suppress polling by better using win32 events */
4235 for(pe
= first_polling_entry
; pe
!= NULL
; pe
= pe
->next
) {
4236 ret
|= pe
->func(pe
->opaque
);
4240 WaitObjects
*w
= &wait_objects
;
4242 ret
= WaitForMultipleObjects(w
->num
, w
->events
, FALSE
, *timeout
);
4243 if (WAIT_OBJECT_0
+ 0 <= ret
&& ret
<= WAIT_OBJECT_0
+ w
->num
- 1) {
4244 if (w
->func
[ret
- WAIT_OBJECT_0
])
4245 w
->func
[ret
- WAIT_OBJECT_0
](w
->opaque
[ret
- WAIT_OBJECT_0
]);
4247 /* Check for additional signaled events */
4248 for(i
= (ret
- WAIT_OBJECT_0
+ 1); i
< w
->num
; i
++) {
4250 /* Check if event is signaled */
4251 ret2
= WaitForSingleObject(w
->events
[i
], 0);
4252 if(ret2
== WAIT_OBJECT_0
) {
4254 w
->func
[i
](w
->opaque
[i
]);
4255 } else if (ret2
== WAIT_TIMEOUT
) {
4257 err
= GetLastError();
4258 fprintf(stderr
, "WaitForSingleObject error %d %d\n", i
, err
);
4261 } else if (ret
== WAIT_TIMEOUT
) {
4263 err
= GetLastError();
4264 fprintf(stderr
, "WaitForMultipleObjects error %d %d\n", ret
, err
);
4271 static void host_main_loop_wait(int *timeout
)
4276 void main_loop_wait(int timeout
)
4278 IOHandlerRecord
*ioh
;
4279 fd_set rfds
, wfds
, xfds
;
4283 qemu_bh_update_timeout(&timeout
);
4285 host_main_loop_wait(&timeout
);
4287 /* poll any events */
4288 /* XXX: separate device handlers from system ones */
4293 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
4297 (!ioh
->fd_read_poll
||
4298 ioh
->fd_read_poll(ioh
->opaque
) != 0)) {
4299 FD_SET(ioh
->fd
, &rfds
);
4303 if (ioh
->fd_write
) {
4304 FD_SET(ioh
->fd
, &wfds
);
4310 tv
.tv_sec
= timeout
/ 1000;
4311 tv
.tv_usec
= (timeout
% 1000) * 1000;
4313 #if defined(CONFIG_SLIRP)
4314 if (slirp_is_inited()) {
4315 slirp_select_fill(&nfds
, &rfds
, &wfds
, &xfds
);
4318 ret
= qemu_select(nfds
+ 1, &rfds
, &wfds
, &xfds
, &tv
);
4320 IOHandlerRecord
**pioh
;
4322 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
4323 if (!ioh
->deleted
&& ioh
->fd_read
&& FD_ISSET(ioh
->fd
, &rfds
)) {
4324 ioh
->fd_read(ioh
->opaque
);
4325 if (!(ioh
->fd_read_poll
&& ioh
->fd_read_poll(ioh
->opaque
)))
4326 FD_CLR(ioh
->fd
, &rfds
);
4328 if (!ioh
->deleted
&& ioh
->fd_write
&& FD_ISSET(ioh
->fd
, &wfds
)) {
4329 ioh
->fd_write(ioh
->opaque
);
4333 /* remove deleted IO handlers */
4334 pioh
= &first_io_handler
;
4344 #if defined(CONFIG_SLIRP)
4345 if (slirp_is_inited()) {
4351 slirp_select_poll(&rfds
, &wfds
, &xfds
);
4355 /* rearm timer, if not periodic */
4356 if (alarm_timer
->flags
& ALARM_FLAG_EXPIRED
) {
4357 alarm_timer
->flags
&= ~ALARM_FLAG_EXPIRED
;
4358 qemu_rearm_alarm_timer(alarm_timer
);
4361 /* vm time timers */
4363 if (!cur_cpu
|| likely(!(cur_cpu
->singlestep_enabled
& SSTEP_NOTIMER
)))
4364 qemu_run_timers(&active_timers
[QEMU_TIMER_VIRTUAL
],
4365 qemu_get_clock(vm_clock
));
4368 /* real time timers */
4369 qemu_run_timers(&active_timers
[QEMU_TIMER_REALTIME
],
4370 qemu_get_clock(rt_clock
));
4372 /* Check bottom-halves last in case any of the earlier events triggered
4378 static int qemu_cpu_exec(CPUState
*env
)
4381 #ifdef CONFIG_PROFILER
4385 #ifdef CONFIG_PROFILER
4386 ti
= profile_getclock();
4391 qemu_icount
-= (env
->icount_decr
.u16
.low
+ env
->icount_extra
);
4392 env
->icount_decr
.u16
.low
= 0;
4393 env
->icount_extra
= 0;
4394 count
= qemu_next_deadline();
4395 count
= (count
+ (1 << icount_time_shift
) - 1)
4396 >> icount_time_shift
;
4397 qemu_icount
+= count
;
4398 decr
= (count
> 0xffff) ? 0xffff : count
;
4400 env
->icount_decr
.u16
.low
= decr
;
4401 env
->icount_extra
= count
;
4403 ret
= cpu_exec(env
);
4404 #ifdef CONFIG_PROFILER
4405 qemu_time
+= profile_getclock() - ti
;
4408 /* Fold pending instructions back into the
4409 instruction counter, and clear the interrupt flag. */
4410 qemu_icount
-= (env
->icount_decr
.u16
.low
4411 + env
->icount_extra
);
4412 env
->icount_decr
.u32
= 0;
4413 env
->icount_extra
= 0;
4418 static void tcg_cpu_exec(void)
4422 if (next_cpu
== NULL
)
4423 next_cpu
= first_cpu
;
4424 for (; next_cpu
!= NULL
; next_cpu
= next_cpu
->next_cpu
) {
4425 CPUState
*env
= cur_cpu
= next_cpu
;
4429 if (timer_alarm_pending
) {
4430 timer_alarm_pending
= 0;
4433 if (cpu_can_run(env
))
4434 ret
= qemu_cpu_exec(env
);
4435 if (ret
== EXCP_DEBUG
) {
4436 gdb_set_stop_cpu(env
);
4437 debug_requested
= 1;
4443 static int cpu_has_work(CPUState
*env
)
4451 if (qemu_cpu_has_work(env
))
4456 static int tcg_has_work(void)
4460 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
)
4461 if (cpu_has_work(env
))
4466 static int qemu_calculate_timeout(void)
4468 #ifndef CONFIG_IOTHREAD
4473 else if (tcg_has_work())
4475 else if (!use_icount
)
4478 /* XXX: use timeout computed from timers */
4481 /* Advance virtual time to the next event. */
4482 if (use_icount
== 1) {
4483 /* When not using an adaptive execution frequency
4484 we tend to get badly out of sync with real time,
4485 so just delay for a reasonable amount of time. */
4488 delta
= cpu_get_icount() - cpu_get_clock();
4491 /* If virtual time is ahead of real time then just
4493 timeout
= (delta
/ 1000000) + 1;
4495 /* Wait for either IO to occur or the next
4497 add
= qemu_next_deadline();
4498 /* We advance the timer before checking for IO.
4499 Limit the amount we advance so that early IO
4500 activity won't get the guest too far ahead. */
4504 add
= (add
+ (1 << icount_time_shift
) - 1)
4505 >> icount_time_shift
;
4507 timeout
= delta
/ 1000000;
4514 #else /* CONFIG_IOTHREAD */
4519 static int vm_can_run(void)
4521 if (powerdown_requested
)
4523 if (reset_requested
)
4525 if (shutdown_requested
)
4527 if (debug_requested
)
4532 static void main_loop(void)
4536 if (kvm_enabled()) {
4538 cpu_disable_ticks();
4542 #ifdef CONFIG_IOTHREAD
4543 qemu_system_ready
= 1;
4544 qemu_cond_broadcast(&qemu_system_cond
);
4549 #ifdef CONFIG_PROFILER
4552 #ifndef CONFIG_IOTHREAD
4555 #ifdef CONFIG_PROFILER
4556 ti
= profile_getclock();
4558 main_loop_wait(qemu_calculate_timeout());
4559 #ifdef CONFIG_PROFILER
4560 dev_time
+= profile_getclock() - ti
;
4562 } while (vm_can_run());
4564 if (qemu_debug_requested())
4565 vm_stop(EXCP_DEBUG
);
4566 if (qemu_shutdown_requested()) {
4573 if (qemu_reset_requested()) {
4575 qemu_system_reset();
4578 if (qemu_powerdown_requested())
4579 qemu_system_powerdown();
4580 if ((r
= qemu_vmstop_requested()))
4586 static void version(void)
4588 printf("QEMU PC emulator version " QEMU_VERSION QEMU_PKGVERSION
", Copyright (c) 2003-2008 Fabrice Bellard\n");
4591 static void help(int exitcode
)
4594 printf("usage: %s [options] [disk_image]\n"
4596 "'disk_image' is a raw hard image image for IDE hard disk 0\n"
4598 #define DEF(option, opt_arg, opt_enum, opt_help) \
4600 #define DEFHEADING(text) stringify(text) "\n"
4601 #include "qemu-options.h"
4606 "During emulation, the following keys are useful:\n"
4607 "ctrl-alt-f toggle full screen\n"
4608 "ctrl-alt-n switch to virtual console 'n'\n"
4609 "ctrl-alt toggle mouse and keyboard grab\n"
4611 "When using -nographic, press 'ctrl-a h' to get some help.\n"
4616 DEFAULT_NETWORK_SCRIPT
,
4617 DEFAULT_NETWORK_DOWN_SCRIPT
,
4619 DEFAULT_GDBSTUB_PORT
,
4624 #define HAS_ARG 0x0001
4627 #define DEF(option, opt_arg, opt_enum, opt_help) \
4629 #define DEFHEADING(text)
4630 #include "qemu-options.h"
4636 typedef struct QEMUOption
{
4642 static const QEMUOption qemu_options
[] = {
4643 { "h", 0, QEMU_OPTION_h
},
4644 #define DEF(option, opt_arg, opt_enum, opt_help) \
4645 { option, opt_arg, opt_enum },
4646 #define DEFHEADING(text)
4647 #include "qemu-options.h"
4655 struct soundhw soundhw
[] = {
4656 #ifdef HAS_AUDIO_CHOICE
4657 #if defined(TARGET_I386) || defined(TARGET_MIPS)
4663 { .init_isa
= pcspk_audio_init
}
4670 "Creative Sound Blaster 16",
4673 { .init_isa
= SB16_init
}
4677 #ifdef CONFIG_CS4231A
4683 { .init_isa
= cs4231a_init
}
4691 "Yamaha YMF262 (OPL3)",
4693 "Yamaha YM3812 (OPL2)",
4697 { .init_isa
= Adlib_init
}
4704 "Gravis Ultrasound GF1",
4707 { .init_isa
= GUS_init
}
4714 "Intel 82801AA AC97 Audio",
4717 { .init_pci
= ac97_init
}
4721 #ifdef CONFIG_ES1370
4724 "ENSONIQ AudioPCI ES1370",
4727 { .init_pci
= es1370_init
}
4731 #endif /* HAS_AUDIO_CHOICE */
4733 { NULL
, NULL
, 0, 0, { NULL
} }
4736 static void select_soundhw (const char *optarg
)
4740 if (*optarg
== '?') {
4743 printf ("Valid sound card names (comma separated):\n");
4744 for (c
= soundhw
; c
->name
; ++c
) {
4745 printf ("%-11s %s\n", c
->name
, c
->descr
);
4747 printf ("\n-soundhw all will enable all of the above\n");
4748 exit (*optarg
!= '?');
4756 if (!strcmp (optarg
, "all")) {
4757 for (c
= soundhw
; c
->name
; ++c
) {
4765 e
= strchr (p
, ',');
4766 l
= !e
? strlen (p
) : (size_t) (e
- p
);
4768 for (c
= soundhw
; c
->name
; ++c
) {
4769 if (!strncmp (c
->name
, p
, l
)) {
4778 "Unknown sound card name (too big to show)\n");
4781 fprintf (stderr
, "Unknown sound card name `%.*s'\n",
4786 p
+= l
+ (e
!= NULL
);
4790 goto show_valid_cards
;
4795 static void select_vgahw (const char *p
)
4799 cirrus_vga_enabled
= 0;
4800 std_vga_enabled
= 0;
4803 if (strstart(p
, "std", &opts
)) {
4804 std_vga_enabled
= 1;
4805 } else if (strstart(p
, "cirrus", &opts
)) {
4806 cirrus_vga_enabled
= 1;
4807 } else if (strstart(p
, "vmware", &opts
)) {
4809 } else if (strstart(p
, "xenfb", &opts
)) {
4811 } else if (!strstart(p
, "none", &opts
)) {
4813 fprintf(stderr
, "Unknown vga type: %s\n", p
);
4817 const char *nextopt
;
4819 if (strstart(opts
, ",retrace=", &nextopt
)) {
4821 if (strstart(opts
, "dumb", &nextopt
))
4822 vga_retrace_method
= VGA_RETRACE_DUMB
;
4823 else if (strstart(opts
, "precise", &nextopt
))
4824 vga_retrace_method
= VGA_RETRACE_PRECISE
;
4825 else goto invalid_vga
;
4826 } else goto invalid_vga
;
4832 static BOOL WINAPI
qemu_ctrl_handler(DWORD type
)
4834 exit(STATUS_CONTROL_C_EXIT
);
4839 int qemu_uuid_parse(const char *str
, uint8_t *uuid
)
4843 if(strlen(str
) != 36)
4846 ret
= sscanf(str
, UUID_FMT
, &uuid
[0], &uuid
[1], &uuid
[2], &uuid
[3],
4847 &uuid
[4], &uuid
[5], &uuid
[6], &uuid
[7], &uuid
[8], &uuid
[9],
4848 &uuid
[10], &uuid
[11], &uuid
[12], &uuid
[13], &uuid
[14], &uuid
[15]);
4854 smbios_add_field(1, offsetof(struct smbios_type_1
, uuid
), 16, uuid
);
4860 #define MAX_NET_CLIENTS 32
4864 static void termsig_handler(int signal
)
4866 qemu_system_shutdown_request();
4869 static void sigchld_handler(int signal
)
4871 waitpid(-1, NULL
, WNOHANG
);
4874 static void sighandler_setup(void)
4876 struct sigaction act
;
4878 memset(&act
, 0, sizeof(act
));
4879 act
.sa_handler
= termsig_handler
;
4880 sigaction(SIGINT
, &act
, NULL
);
4881 sigaction(SIGHUP
, &act
, NULL
);
4882 sigaction(SIGTERM
, &act
, NULL
);
4884 act
.sa_handler
= sigchld_handler
;
4885 act
.sa_flags
= SA_NOCLDSTOP
;
4886 sigaction(SIGCHLD
, &act
, NULL
);
4892 /* Look for support files in the same directory as the executable. */
4893 static char *find_datadir(const char *argv0
)
4899 len
= GetModuleFileName(NULL
, buf
, sizeof(buf
) - 1);
4906 while (p
!= buf
&& *p
!= '\\')
4909 if (access(buf
, R_OK
) == 0) {
4910 return qemu_strdup(buf
);
4916 /* Find a likely location for support files using the location of the binary.
4917 For installed binaries this will be "$bindir/../share/qemu". When
4918 running from the build tree this will be "$bindir/../pc-bios". */
4919 #define SHARE_SUFFIX "/share/qemu"
4920 #define BUILD_SUFFIX "/pc-bios"
4921 static char *find_datadir(const char *argv0
)
4931 #if defined(__linux__)
4934 len
= readlink("/proc/self/exe", buf
, sizeof(buf
) - 1);
4940 #elif defined(__FreeBSD__)
4943 len
= readlink("/proc/curproc/file", buf
, sizeof(buf
) - 1);
4950 /* If we don't have any way of figuring out the actual executable
4951 location then try argv[0]. */
4956 p
= realpath(argv0
, p
);
4964 max_len
= strlen(dir
) +
4965 MAX(strlen(SHARE_SUFFIX
), strlen(BUILD_SUFFIX
)) + 1;
4966 res
= qemu_mallocz(max_len
);
4967 snprintf(res
, max_len
, "%s%s", dir
, SHARE_SUFFIX
);
4968 if (access(res
, R_OK
)) {
4969 snprintf(res
, max_len
, "%s%s", dir
, BUILD_SUFFIX
);
4970 if (access(res
, R_OK
)) {
4984 char *qemu_find_file(int type
, const char *name
)
4990 /* If name contains path separators then try it as a straight path. */
4991 if ((strchr(name
, '/') || strchr(name
, '\\'))
4992 && access(name
, R_OK
) == 0) {
4993 return strdup(name
);
4996 case QEMU_FILE_TYPE_BIOS
:
4999 case QEMU_FILE_TYPE_KEYMAP
:
5000 subdir
= "keymaps/";
5005 len
= strlen(data_dir
) + strlen(name
) + strlen(subdir
) + 2;
5006 buf
= qemu_mallocz(len
);
5007 snprintf(buf
, len
, "%s/%s%s", data_dir
, subdir
, name
);
5008 if (access(buf
, R_OK
)) {
5015 int main(int argc
, char **argv
, char **envp
)
5017 const char *gdbstub_dev
= NULL
;
5018 uint32_t boot_devices_bitmap
= 0;
5020 int snapshot
, linux_boot
, net_boot
;
5021 const char *initrd_filename
;
5022 const char *kernel_filename
, *kernel_cmdline
;
5023 const char *boot_devices
= "";
5025 DisplayChangeListener
*dcl
;
5026 int cyls
, heads
, secs
, translation
;
5027 const char *net_clients
[MAX_NET_CLIENTS
];
5029 const char *bt_opts
[MAX_BT_CMDLINE
];
5033 const char *r
, *optarg
;
5034 CharDriverState
*monitor_hd
= NULL
;
5035 const char *monitor_device
;
5036 const char *serial_devices
[MAX_SERIAL_PORTS
];
5037 int serial_device_index
;
5038 const char *parallel_devices
[MAX_PARALLEL_PORTS
];
5039 int parallel_device_index
;
5040 const char *virtio_consoles
[MAX_VIRTIO_CONSOLES
];
5041 int virtio_console_index
;
5042 const char *loadvm
= NULL
;
5043 QEMUMachine
*machine
;
5044 const char *cpu_model
;
5045 const char *usb_devices
[MAX_USB_CMDLINE
];
5046 int usb_devices_index
;
5051 const char *pid_file
= NULL
;
5052 const char *incoming
= NULL
;
5055 struct passwd
*pwd
= NULL
;
5056 const char *chroot_dir
= NULL
;
5057 const char *run_as
= NULL
;
5060 int show_vnc_port
= 0;
5062 qemu_cache_utils_init(envp
);
5064 LIST_INIT (&vm_change_state_head
);
5067 struct sigaction act
;
5068 sigfillset(&act
.sa_mask
);
5070 act
.sa_handler
= SIG_IGN
;
5071 sigaction(SIGPIPE
, &act
, NULL
);
5074 SetConsoleCtrlHandler(qemu_ctrl_handler
, TRUE
);
5075 /* Note: cpu_interrupt() is currently not SMP safe, so we force
5076 QEMU to run on a single CPU */
5081 h
= GetCurrentProcess();
5082 if (GetProcessAffinityMask(h
, &mask
, &smask
)) {
5083 for(i
= 0; i
< 32; i
++) {
5084 if (mask
& (1 << i
))
5089 SetProcessAffinityMask(h
, mask
);
5095 module_call_init(MODULE_INIT_MACHINE
);
5096 machine
= find_default_machine();
5098 initrd_filename
= NULL
;
5101 kernel_filename
= NULL
;
5102 kernel_cmdline
= "";
5103 cyls
= heads
= secs
= 0;
5104 translation
= BIOS_ATA_TRANSLATION_AUTO
;
5105 monitor_device
= "vc:80Cx24C";
5107 serial_devices
[0] = "vc:80Cx24C";
5108 for(i
= 1; i
< MAX_SERIAL_PORTS
; i
++)
5109 serial_devices
[i
] = NULL
;
5110 serial_device_index
= 0;
5112 parallel_devices
[0] = "vc:80Cx24C";
5113 for(i
= 1; i
< MAX_PARALLEL_PORTS
; i
++)
5114 parallel_devices
[i
] = NULL
;
5115 parallel_device_index
= 0;
5117 for(i
= 0; i
< MAX_VIRTIO_CONSOLES
; i
++)
5118 virtio_consoles
[i
] = NULL
;
5119 virtio_console_index
= 0;
5121 for (i
= 0; i
< MAX_NODES
; i
++) {
5123 node_cpumask
[i
] = 0;
5126 usb_devices_index
= 0;
5127 assigned_devices_index
= 0;
5141 register_watchdogs();
5149 hda_index
= drive_add(argv
[optind
++], HD_ALIAS
, 0);
5151 const QEMUOption
*popt
;
5154 /* Treat --foo the same as -foo. */
5157 popt
= qemu_options
;
5160 fprintf(stderr
, "%s: invalid option -- '%s'\n",
5164 if (!strcmp(popt
->name
, r
+ 1))
5168 if (popt
->flags
& HAS_ARG
) {
5169 if (optind
>= argc
) {
5170 fprintf(stderr
, "%s: option '%s' requires an argument\n",
5174 optarg
= argv
[optind
++];
5179 switch(popt
->index
) {
5181 machine
= find_machine(optarg
);
5184 printf("Supported machines are:\n");
5185 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
5186 printf("%-10s %s%s\n",
5188 m
->is_default
? " (default)" : "");
5190 exit(*optarg
!= '?');
5193 case QEMU_OPTION_cpu
:
5194 /* hw initialization will check this */
5195 if (*optarg
== '?') {
5196 /* XXX: implement xxx_cpu_list for targets that still miss it */
5197 #if defined(cpu_list)
5198 cpu_list(stdout
, &fprintf
);
5205 case QEMU_OPTION_initrd
:
5206 initrd_filename
= optarg
;
5208 case QEMU_OPTION_hda
:
5210 hda_index
= drive_add(optarg
, HD_ALIAS
, 0);
5212 hda_index
= drive_add(optarg
, HD_ALIAS
5213 ",cyls=%d,heads=%d,secs=%d%s",
5214 0, cyls
, heads
, secs
,
5215 translation
== BIOS_ATA_TRANSLATION_LBA
?
5217 translation
== BIOS_ATA_TRANSLATION_NONE
?
5218 ",trans=none" : "");
5220 case QEMU_OPTION_hdb
:
5221 case QEMU_OPTION_hdc
:
5222 case QEMU_OPTION_hdd
:
5223 drive_add(optarg
, HD_ALIAS
, popt
->index
- QEMU_OPTION_hda
);
5225 case QEMU_OPTION_drive
:
5226 drive_add(NULL
, "%s", optarg
);
5228 case QEMU_OPTION_mtdblock
:
5229 drive_add(optarg
, MTD_ALIAS
);
5231 case QEMU_OPTION_sd
:
5232 drive_add(optarg
, SD_ALIAS
);
5234 case QEMU_OPTION_pflash
:
5235 drive_add(optarg
, PFLASH_ALIAS
);
5237 case QEMU_OPTION_snapshot
:
5240 case QEMU_OPTION_hdachs
:
5244 cyls
= strtol(p
, (char **)&p
, 0);
5245 if (cyls
< 1 || cyls
> 16383)
5250 heads
= strtol(p
, (char **)&p
, 0);
5251 if (heads
< 1 || heads
> 16)
5256 secs
= strtol(p
, (char **)&p
, 0);
5257 if (secs
< 1 || secs
> 63)
5261 if (!strcmp(p
, "none"))
5262 translation
= BIOS_ATA_TRANSLATION_NONE
;
5263 else if (!strcmp(p
, "lba"))
5264 translation
= BIOS_ATA_TRANSLATION_LBA
;
5265 else if (!strcmp(p
, "auto"))
5266 translation
= BIOS_ATA_TRANSLATION_AUTO
;
5269 } else if (*p
!= '\0') {
5271 fprintf(stderr
, "qemu: invalid physical CHS format\n");
5274 if (hda_index
!= -1)
5275 snprintf(drives_opt
[hda_index
].opt
,
5276 sizeof(drives_opt
[hda_index
].opt
),
5277 HD_ALIAS
",cyls=%d,heads=%d,secs=%d%s",
5278 0, cyls
, heads
, secs
,
5279 translation
== BIOS_ATA_TRANSLATION_LBA
?
5281 translation
== BIOS_ATA_TRANSLATION_NONE
?
5282 ",trans=none" : "");
5285 case QEMU_OPTION_numa
:
5286 if (nb_numa_nodes
>= MAX_NODES
) {
5287 fprintf(stderr
, "qemu: too many NUMA nodes\n");
5292 case QEMU_OPTION_nographic
:
5293 display_type
= DT_NOGRAPHIC
;
5295 #ifdef CONFIG_CURSES
5296 case QEMU_OPTION_curses
:
5297 display_type
= DT_CURSES
;
5300 case QEMU_OPTION_portrait
:
5303 case QEMU_OPTION_kernel
:
5304 kernel_filename
= optarg
;
5306 case QEMU_OPTION_append
:
5307 kernel_cmdline
= optarg
;
5309 case QEMU_OPTION_cdrom
:
5310 drive_add(optarg
, CDROM_ALIAS
);
5312 case QEMU_OPTION_boot
:
5313 boot_devices
= optarg
;
5314 /* We just do some generic consistency checks */
5316 /* Could easily be extended to 64 devices if needed */
5319 boot_devices_bitmap
= 0;
5320 for (p
= boot_devices
; *p
!= '\0'; p
++) {
5321 /* Allowed boot devices are:
5322 * a b : floppy disk drives
5323 * c ... f : IDE disk drives
5324 * g ... m : machine implementation dependant drives
5325 * n ... p : network devices
5326 * It's up to each machine implementation to check
5327 * if the given boot devices match the actual hardware
5328 * implementation and firmware features.
5330 if (*p
< 'a' || *p
> 'q') {
5331 fprintf(stderr
, "Invalid boot device '%c'\n", *p
);
5334 if (boot_devices_bitmap
& (1 << (*p
- 'a'))) {
5336 "Boot device '%c' was given twice\n",*p
);
5339 boot_devices_bitmap
|= 1 << (*p
- 'a');
5343 case QEMU_OPTION_fda
:
5344 case QEMU_OPTION_fdb
:
5345 drive_add(optarg
, FD_ALIAS
, popt
->index
- QEMU_OPTION_fda
);
5348 case QEMU_OPTION_no_fd_bootchk
:
5352 case QEMU_OPTION_net
:
5353 if (nb_net_clients
>= MAX_NET_CLIENTS
) {
5354 fprintf(stderr
, "qemu: too many network clients\n");
5357 net_clients
[nb_net_clients
] = optarg
;
5361 case QEMU_OPTION_tftp
:
5362 tftp_prefix
= optarg
;
5364 case QEMU_OPTION_bootp
:
5365 bootp_filename
= optarg
;
5368 case QEMU_OPTION_smb
:
5369 net_slirp_smb(optarg
);
5372 case QEMU_OPTION_redir
:
5373 net_slirp_redir(NULL
, optarg
, NULL
);
5376 case QEMU_OPTION_bt
:
5377 if (nb_bt_opts
>= MAX_BT_CMDLINE
) {
5378 fprintf(stderr
, "qemu: too many bluetooth options\n");
5381 bt_opts
[nb_bt_opts
++] = optarg
;
5384 case QEMU_OPTION_audio_help
:
5388 case QEMU_OPTION_soundhw
:
5389 select_soundhw (optarg
);
5395 case QEMU_OPTION_version
:
5399 case QEMU_OPTION_m
: {
5403 value
= strtoul(optarg
, &ptr
, 10);
5405 case 0: case 'M': case 'm':
5412 fprintf(stderr
, "qemu: invalid ram size: %s\n", optarg
);
5416 /* On 32-bit hosts, QEMU is limited by virtual address space */
5417 if (value
> (2047 << 20)
5418 #ifndef CONFIG_KQEMU
5419 && HOST_LONG_BITS
== 32
5422 fprintf(stderr
, "qemu: at most 2047 MB RAM can be simulated\n");
5425 if (value
!= (uint64_t)(ram_addr_t
)value
) {
5426 fprintf(stderr
, "qemu: ram size too large\n");
5435 const CPULogItem
*item
;
5437 mask
= cpu_str_to_log_mask(optarg
);
5439 printf("Log items (comma separated):\n");
5440 for(item
= cpu_log_items
; item
->mask
!= 0; item
++) {
5441 printf("%-10s %s\n", item
->name
, item
->help
);
5449 gdbstub_dev
= "tcp::" DEFAULT_GDBSTUB_PORT
;
5451 case QEMU_OPTION_gdb
:
5452 gdbstub_dev
= optarg
;
5457 case QEMU_OPTION_bios
:
5460 case QEMU_OPTION_singlestep
:
5468 keyboard_layout
= optarg
;
5471 case QEMU_OPTION_localtime
:
5474 case QEMU_OPTION_vga
:
5475 select_vgahw (optarg
);
5477 #if defined(TARGET_PPC) || defined(TARGET_SPARC)
5483 w
= strtol(p
, (char **)&p
, 10);
5486 fprintf(stderr
, "qemu: invalid resolution or depth\n");
5492 h
= strtol(p
, (char **)&p
, 10);
5497 depth
= strtol(p
, (char **)&p
, 10);
5498 if (depth
!= 8 && depth
!= 15 && depth
!= 16 &&
5499 depth
!= 24 && depth
!= 32)
5501 } else if (*p
== '\0') {
5502 depth
= graphic_depth
;
5509 graphic_depth
= depth
;
5513 case QEMU_OPTION_echr
:
5516 term_escape_char
= strtol(optarg
, &r
, 0);
5518 printf("Bad argument to echr\n");
5521 case QEMU_OPTION_monitor
:
5522 monitor_device
= optarg
;
5524 case QEMU_OPTION_serial
:
5525 if (serial_device_index
>= MAX_SERIAL_PORTS
) {
5526 fprintf(stderr
, "qemu: too many serial ports\n");
5529 serial_devices
[serial_device_index
] = optarg
;
5530 serial_device_index
++;
5532 case QEMU_OPTION_watchdog
:
5533 i
= select_watchdog(optarg
);
5535 exit (i
== 1 ? 1 : 0);
5537 case QEMU_OPTION_watchdog_action
:
5538 if (select_watchdog_action(optarg
) == -1) {
5539 fprintf(stderr
, "Unknown -watchdog-action parameter\n");
5543 case QEMU_OPTION_virtiocon
:
5544 if (virtio_console_index
>= MAX_VIRTIO_CONSOLES
) {
5545 fprintf(stderr
, "qemu: too many virtio consoles\n");
5548 virtio_consoles
[virtio_console_index
] = optarg
;
5549 virtio_console_index
++;
5551 case QEMU_OPTION_parallel
:
5552 if (parallel_device_index
>= MAX_PARALLEL_PORTS
) {
5553 fprintf(stderr
, "qemu: too many parallel ports\n");
5556 parallel_devices
[parallel_device_index
] = optarg
;
5557 parallel_device_index
++;
5559 case QEMU_OPTION_loadvm
:
5562 case QEMU_OPTION_full_screen
:
5566 case QEMU_OPTION_no_frame
:
5569 case QEMU_OPTION_alt_grab
:
5572 case QEMU_OPTION_no_quit
:
5575 case QEMU_OPTION_sdl
:
5576 display_type
= DT_SDL
;
5579 case QEMU_OPTION_pidfile
:
5583 case QEMU_OPTION_win2k_hack
:
5584 win2k_install_hack
= 1;
5586 case QEMU_OPTION_rtc_td_hack
:
5589 case QEMU_OPTION_acpitable
:
5590 if(acpi_table_add(optarg
) < 0) {
5591 fprintf(stderr
, "Wrong acpi table provided\n");
5595 case QEMU_OPTION_smbios
:
5596 if(smbios_entry_add(optarg
) < 0) {
5597 fprintf(stderr
, "Wrong smbios provided\n");
5603 case QEMU_OPTION_no_kqemu
:
5606 case QEMU_OPTION_kernel_kqemu
:
5611 case QEMU_OPTION_enable_kvm
:
5619 case QEMU_OPTION_no_kvm
:
5622 case QEMU_OPTION_no_kvm_irqchip
: {
5627 case QEMU_OPTION_no_kvm_pit
: {
5631 case QEMU_OPTION_no_kvm_pit_reinjection
: {
5632 kvm_pit_reinject
= 0;
5635 case QEMU_OPTION_enable_nesting
: {
5639 #if defined(TARGET_I386) || defined(TARGET_X86_64) || defined(TARGET_IA64) || defined(__linux__)
5640 case QEMU_OPTION_pcidevice
:
5641 if (assigned_devices_index
>= MAX_DEV_ASSIGN_CMDLINE
) {
5642 fprintf(stderr
, "Too many assigned devices\n");
5645 assigned_devices
[assigned_devices_index
] = optarg
;
5646 assigned_devices_index
++;
5650 case QEMU_OPTION_usb
:
5653 case QEMU_OPTION_usbdevice
:
5655 if (usb_devices_index
>= MAX_USB_CMDLINE
) {
5656 fprintf(stderr
, "Too many USB devices\n");
5659 usb_devices
[usb_devices_index
] = optarg
;
5660 usb_devices_index
++;
5662 case QEMU_OPTION_smp
:
5663 smp_cpus
= atoi(optarg
);
5665 fprintf(stderr
, "Invalid number of CPUs\n");
5669 case QEMU_OPTION_vnc
:
5670 display_type
= DT_VNC
;
5671 vnc_display
= optarg
;
5674 case QEMU_OPTION_no_acpi
:
5677 case QEMU_OPTION_no_hpet
:
5680 case QEMU_OPTION_no_virtio_balloon
:
5681 no_virtio_balloon
= 1;
5684 case QEMU_OPTION_no_reboot
:
5687 case QEMU_OPTION_no_shutdown
:
5690 case QEMU_OPTION_show_cursor
:
5693 case QEMU_OPTION_uuid
:
5694 if(qemu_uuid_parse(optarg
, qemu_uuid
) < 0) {
5695 fprintf(stderr
, "Fail to parse UUID string."
5696 " Wrong format.\n");
5701 case QEMU_OPTION_daemonize
:
5705 case QEMU_OPTION_option_rom
:
5706 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
5707 fprintf(stderr
, "Too many option ROMs\n");
5710 option_rom
[nb_option_roms
] = optarg
;
5713 #if defined(TARGET_ARM) || defined(TARGET_M68K)
5714 case QEMU_OPTION_semihosting
:
5715 semihosting_enabled
= 1;
5718 case QEMU_OPTION_tdf
:
5721 case QEMU_OPTION_kvm_shadow_memory
:
5722 kvm_shadow_memory
= (int64_t)atoi(optarg
) * 1024 * 1024 / 4096;
5724 case QEMU_OPTION_mempath
:
5728 case QEMU_OPTION_mem_prealloc
:
5729 mem_prealloc
= !mem_prealloc
;
5732 case QEMU_OPTION_name
:
5735 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
5736 case QEMU_OPTION_prom_env
:
5737 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
5738 fprintf(stderr
, "Too many prom variables\n");
5741 prom_envs
[nb_prom_envs
] = optarg
;
5746 case QEMU_OPTION_old_param
:
5750 case QEMU_OPTION_clock
:
5751 configure_alarms(optarg
);
5753 case QEMU_OPTION_startdate
:
5756 time_t rtc_start_date
;
5757 if (!strcmp(optarg
, "now")) {
5758 rtc_date_offset
= -1;
5760 if (sscanf(optarg
, "%d-%d-%dT%d:%d:%d",
5768 } else if (sscanf(optarg
, "%d-%d-%d",
5771 &tm
.tm_mday
) == 3) {
5780 rtc_start_date
= mktimegm(&tm
);
5781 if (rtc_start_date
== -1) {
5783 fprintf(stderr
, "Invalid date format. Valid format are:\n"
5784 "'now' or '2006-06-17T16:01:21' or '2006-06-17'\n");
5787 rtc_date_offset
= time(NULL
) - rtc_start_date
;
5791 case QEMU_OPTION_tb_size
:
5792 tb_size
= strtol(optarg
, NULL
, 0);
5796 case QEMU_OPTION_icount
:
5798 if (strcmp(optarg
, "auto") == 0) {
5799 icount_time_shift
= -1;
5801 icount_time_shift
= strtol(optarg
, NULL
, 0);
5804 case QEMU_OPTION_incoming
:
5808 case QEMU_OPTION_chroot
:
5809 chroot_dir
= optarg
;
5811 case QEMU_OPTION_runas
:
5814 case QEMU_OPTION_nvram
:
5819 case QEMU_OPTION_xen_domid
:
5820 xen_domid
= atoi(optarg
);
5822 case QEMU_OPTION_xen_create
:
5823 xen_mode
= XEN_CREATE
;
5825 case QEMU_OPTION_xen_attach
:
5826 xen_mode
= XEN_ATTACH
;
5833 /* If no data_dir is specified then try to find it relative to the
5836 data_dir
= find_datadir(argv
[0]);
5838 /* If all else fails use the install patch specified when building. */
5840 data_dir
= CONFIG_QEMU_SHAREDIR
;
5843 #if defined(CONFIG_KVM) && defined(CONFIG_KQEMU)
5844 if (kvm_allowed
&& kqemu_allowed
) {
5846 "You can not enable both KVM and kqemu at the same time\n");
5851 machine
->max_cpus
= machine
->max_cpus
?: 1; /* Default to UP */
5852 if (smp_cpus
> machine
->max_cpus
) {
5853 fprintf(stderr
, "Number of SMP cpus requested (%d), exceeds max cpus "
5854 "supported by machine `%s' (%d)\n", smp_cpus
, machine
->name
,
5859 if (display_type
== DT_NOGRAPHIC
) {
5860 if (serial_device_index
== 0)
5861 serial_devices
[0] = "stdio";
5862 if (parallel_device_index
== 0)
5863 parallel_devices
[0] = "null";
5864 if (strncmp(monitor_device
, "vc", 2) == 0)
5865 monitor_device
= "stdio";
5872 if (pipe(fds
) == -1)
5883 len
= read(fds
[0], &status
, 1);
5884 if (len
== -1 && (errno
== EINTR
))
5889 else if (status
== 1) {
5890 fprintf(stderr
, "Could not acquire pidfile\n");
5907 signal(SIGTSTP
, SIG_IGN
);
5908 signal(SIGTTOU
, SIG_IGN
);
5909 signal(SIGTTIN
, SIG_IGN
);
5913 if (kvm_enabled()) {
5914 if (kvm_qemu_init() < 0) {
5915 fprintf(stderr
, "Could not initialize KVM, will disable KVM support\n");
5916 #ifdef NO_CPU_EMULATION
5917 fprintf(stderr
, "Compiled with --disable-cpu-emulation, exiting.\n");
5925 if (pid_file
&& qemu_create_pidfile(pid_file
) != 0) {
5928 write(fds
[1], &status
, 1);
5930 fprintf(stderr
, "Could not acquire pid file\n");
5939 if (qemu_init_main_loop()) {
5940 fprintf(stderr
, "qemu_init_main_loop failed\n");
5943 linux_boot
= (kernel_filename
!= NULL
);
5944 net_boot
= (boot_devices_bitmap
>> ('n' - 'a')) & 0xF;
5946 if (!linux_boot
&& *kernel_cmdline
!= '\0') {
5947 fprintf(stderr
, "-append only allowed with -kernel option\n");
5951 if (!linux_boot
&& initrd_filename
!= NULL
) {
5952 fprintf(stderr
, "-initrd only allowed with -kernel option\n");
5956 /* boot to floppy or the default cd if no hard disk defined yet */
5957 if (!boot_devices
[0]) {
5958 boot_devices
= "cad";
5960 setvbuf(stdout
, NULL
, _IOLBF
, 0);
5963 if (init_timer_alarm() < 0) {
5964 fprintf(stderr
, "could not initialize alarm timer\n");
5967 if (use_icount
&& icount_time_shift
< 0) {
5969 /* 125MIPS seems a reasonable initial guess at the guest speed.
5970 It will be corrected fairly quickly anyway. */
5971 icount_time_shift
= 3;
5972 init_icount_adjust();
5979 /* init network clients */
5980 if (nb_net_clients
== 0) {
5981 /* if no clients, we use a default config */
5982 net_clients
[nb_net_clients
++] = "nic";
5984 net_clients
[nb_net_clients
++] = "user";
5988 for(i
= 0;i
< nb_net_clients
; i
++) {
5989 if (net_client_parse(net_clients
[i
]) < 0)
5995 /* XXX: this should be moved in the PC machine instantiation code */
5996 if (net_boot
!= 0) {
5998 for (i
= 0; i
< nb_nics
&& i
< 4; i
++) {
5999 const char *model
= nd_table
[i
].model
;
6002 if (net_boot
& (1 << i
)) {
6005 snprintf(buf
, sizeof(buf
), "pxe-%s.bin", model
);
6006 filename
= qemu_find_file(QEMU_FILE_TYPE_BIOS
, buf
);
6007 if (filename
&& get_image_size(filename
) > 0) {
6008 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
6009 fprintf(stderr
, "Too many option ROMs\n");
6012 option_rom
[nb_option_roms
] = qemu_strdup(buf
);
6017 qemu_free(filename
);
6022 fprintf(stderr
, "No valid PXE rom found for network device\n");
6028 /* init the bluetooth world */
6029 for (i
= 0; i
< nb_bt_opts
; i
++)
6030 if (bt_parse(bt_opts
[i
]))
6033 /* init the memory */
6035 ram_size
= DEFAULT_RAM_SIZE
* 1024 * 1024;
6037 if (kvm_enabled()) {
6038 if (kvm_qemu_create_context() < 0) {
6039 fprintf(stderr
, "Could not create KVM context\n");
6045 /* FIXME: This is a nasty hack because kqemu can't cope with dynamic
6046 guest ram allocation. It needs to go away. */
6047 if (kqemu_allowed
) {
6048 kqemu_phys_ram_size
= ram_size
+ 8 * 1024 * 1024 + 4 * 1024 * 1024;
6049 kqemu_phys_ram_base
= qemu_vmalloc(kqemu_phys_ram_size
);
6050 if (!kqemu_phys_ram_base
) {
6051 fprintf(stderr
, "Could not allocate physical memory\n");
6057 /* init the dynamic translator */
6058 cpu_exec_init_all(tb_size
* 1024 * 1024);
6062 /* we always create the cdrom drive, even if no disk is there */
6064 if (nb_drives_opt
< MAX_DRIVES
)
6065 drive_add(NULL
, CDROM_ALIAS
);
6067 /* we always create at least one floppy */
6069 if (nb_drives_opt
< MAX_DRIVES
)
6070 drive_add(NULL
, FD_ALIAS
, 0);
6072 /* we always create one sd slot, even if no card is in it */
6074 if (nb_drives_opt
< MAX_DRIVES
)
6075 drive_add(NULL
, SD_ALIAS
);
6077 /* open the virtual block devices
6078 * note that migration with device
6079 * hot add/remove is broken.
6081 for(i
= 0; i
< nb_drives_opt
; i
++)
6082 if (drive_init(&drives_opt
[i
], snapshot
, machine
) == -1)
6085 register_savevm("timer", 0, 2, timer_save
, timer_load
, NULL
);
6086 register_savevm_live("ram", 0, 3, ram_save_live
, NULL
, ram_load
, NULL
);
6089 /* must be after terminal init, SDL library changes signal handlers */
6093 /* Maintain compatibility with multiple stdio monitors */
6094 if (!strcmp(monitor_device
,"stdio")) {
6095 for (i
= 0; i
< MAX_SERIAL_PORTS
; i
++) {
6096 const char *devname
= serial_devices
[i
];
6097 if (devname
&& !strcmp(devname
,"mon:stdio")) {
6098 monitor_device
= NULL
;
6100 } else if (devname
&& !strcmp(devname
,"stdio")) {
6101 monitor_device
= NULL
;
6102 serial_devices
[i
] = "mon:stdio";
6108 if (nb_numa_nodes
> 0) {
6111 if (nb_numa_nodes
> smp_cpus
) {
6112 nb_numa_nodes
= smp_cpus
;
6115 /* If no memory size if given for any node, assume the default case
6116 * and distribute the available memory equally across all nodes
6118 for (i
= 0; i
< nb_numa_nodes
; i
++) {
6119 if (node_mem
[i
] != 0)
6122 if (i
== nb_numa_nodes
) {
6123 uint64_t usedmem
= 0;
6125 /* On Linux, the each node's border has to be 8MB aligned,
6126 * the final node gets the rest.
6128 for (i
= 0; i
< nb_numa_nodes
- 1; i
++) {
6129 node_mem
[i
] = (ram_size
/ nb_numa_nodes
) & ~((1 << 23UL) - 1);
6130 usedmem
+= node_mem
[i
];
6132 node_mem
[i
] = ram_size
- usedmem
;
6135 for (i
= 0; i
< nb_numa_nodes
; i
++) {
6136 if (node_cpumask
[i
] != 0)
6139 /* assigning the VCPUs round-robin is easier to implement, guest OSes
6140 * must cope with this anyway, because there are BIOSes out there in
6141 * real machines which also use this scheme.
6143 if (i
== nb_numa_nodes
) {
6144 for (i
= 0; i
< smp_cpus
; i
++) {
6145 node_cpumask
[i
% nb_numa_nodes
] |= 1 << i
;
6151 if (kvm_enabled()) {
6154 ret
= kvm_init(smp_cpus
);
6156 fprintf(stderr
, "failed to initialize KVM\n");
6162 if (monitor_device
) {
6163 monitor_hd
= qemu_chr_open("monitor", monitor_device
, NULL
);
6165 fprintf(stderr
, "qemu: could not open monitor device '%s'\n", monitor_device
);
6170 for(i
= 0; i
< MAX_SERIAL_PORTS
; i
++) {
6171 const char *devname
= serial_devices
[i
];
6172 if (devname
&& strcmp(devname
, "none")) {
6174 snprintf(label
, sizeof(label
), "serial%d", i
);
6175 serial_hds
[i
] = qemu_chr_open(label
, devname
, NULL
);
6176 if (!serial_hds
[i
]) {
6177 fprintf(stderr
, "qemu: could not open serial device '%s'\n",
6184 for(i
= 0; i
< MAX_PARALLEL_PORTS
; i
++) {
6185 const char *devname
= parallel_devices
[i
];
6186 if (devname
&& strcmp(devname
, "none")) {
6188 snprintf(label
, sizeof(label
), "parallel%d", i
);
6189 parallel_hds
[i
] = qemu_chr_open(label
, devname
, NULL
);
6190 if (!parallel_hds
[i
]) {
6191 fprintf(stderr
, "qemu: could not open parallel device '%s'\n",
6198 for(i
= 0; i
< MAX_VIRTIO_CONSOLES
; i
++) {
6199 const char *devname
= virtio_consoles
[i
];
6200 if (devname
&& strcmp(devname
, "none")) {
6202 snprintf(label
, sizeof(label
), "virtcon%d", i
);
6203 virtcon_hds
[i
] = qemu_chr_open(label
, devname
, NULL
);
6204 if (!virtcon_hds
[i
]) {
6205 fprintf(stderr
, "qemu: could not open virtio console '%s'\n",
6212 module_call_init(MODULE_INIT_DEVICE
);
6217 machine
->init(ram_size
, boot_devices
,
6218 kernel_filename
, kernel_cmdline
, initrd_filename
, cpu_model
);
6221 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
6222 for (i
= 0; i
< nb_numa_nodes
; i
++) {
6223 if (node_cpumask
[i
] & (1 << env
->cpu_index
)) {
6229 current_machine
= machine
;
6231 /* Set KVM's vcpu state to qemu's initial CPUState. */
6232 if (kvm_enabled()) {
6235 ret
= kvm_sync_vcpus();
6237 fprintf(stderr
, "failed to initialize vcpus\n");
6242 /* init USB devices */
6244 for(i
= 0; i
< usb_devices_index
; i
++) {
6245 if (usb_device_add(usb_devices
[i
], 0) < 0) {
6246 fprintf(stderr
, "Warning: could not add USB device %s\n",
6253 dumb_display_init();
6254 /* just use the first displaystate for the moment */
6257 if (display_type
== DT_DEFAULT
) {
6258 #if defined(CONFIG_SDL) || defined(CONFIG_COCOA)
6259 display_type
= DT_SDL
;
6261 display_type
= DT_VNC
;
6262 vnc_display
= "localhost:0,to=99";
6268 switch (display_type
) {
6271 #if defined(CONFIG_CURSES)
6273 curses_display_init(ds
, full_screen
);
6276 #if defined(CONFIG_SDL)
6278 sdl_display_init(ds
, full_screen
, no_frame
);
6280 #elif defined(CONFIG_COCOA)
6282 cocoa_display_init(ds
, full_screen
);
6286 vnc_display_init(ds
);
6287 if (vnc_display_open(ds
, vnc_display
) < 0)
6290 if (show_vnc_port
) {
6291 printf("VNC server running on `%s'\n", vnc_display_local_addr(ds
));
6299 dcl
= ds
->listeners
;
6300 while (dcl
!= NULL
) {
6301 if (dcl
->dpy_refresh
!= NULL
) {
6302 ds
->gui_timer
= qemu_new_timer(rt_clock
, gui_update
, ds
);
6303 qemu_mod_timer(ds
->gui_timer
, qemu_get_clock(rt_clock
));
6308 if (display_type
== DT_NOGRAPHIC
|| display_type
== DT_VNC
) {
6309 nographic_timer
= qemu_new_timer(rt_clock
, nographic_update
, NULL
);
6310 qemu_mod_timer(nographic_timer
, qemu_get_clock(rt_clock
));
6313 text_consoles_set_display(display_state
);
6314 qemu_chr_initial_reset();
6316 if (monitor_device
&& monitor_hd
)
6317 monitor_init(monitor_hd
, MONITOR_USE_READLINE
| MONITOR_IS_DEFAULT
);
6319 for(i
= 0; i
< MAX_SERIAL_PORTS
; i
++) {
6320 const char *devname
= serial_devices
[i
];
6321 if (devname
&& strcmp(devname
, "none")) {
6322 if (strstart(devname
, "vc", 0))
6323 qemu_chr_printf(serial_hds
[i
], "serial%d console\r\n", i
);
6327 for(i
= 0; i
< MAX_PARALLEL_PORTS
; i
++) {
6328 const char *devname
= parallel_devices
[i
];
6329 if (devname
&& strcmp(devname
, "none")) {
6330 if (strstart(devname
, "vc", 0))
6331 qemu_chr_printf(parallel_hds
[i
], "parallel%d console\r\n", i
);
6335 for(i
= 0; i
< MAX_VIRTIO_CONSOLES
; i
++) {
6336 const char *devname
= virtio_consoles
[i
];
6337 if (virtcon_hds
[i
] && devname
) {
6338 if (strstart(devname
, "vc", 0))
6339 qemu_chr_printf(virtcon_hds
[i
], "virtio console%d\r\n", i
);
6343 if (gdbstub_dev
&& gdbserver_start(gdbstub_dev
) < 0) {
6344 fprintf(stderr
, "qemu: could not open gdbserver on device '%s'\n",
6350 do_loadvm(cur_mon
, loadvm
);
6353 autostart
= 0; /* fixme how to deal with -daemonize */
6354 qemu_start_incoming_migration(incoming
);
6366 len
= write(fds
[1], &status
, 1);
6367 if (len
== -1 && (errno
== EINTR
))
6374 TFR(fd
= open("/dev/null", O_RDWR
));
6380 pwd
= getpwnam(run_as
);
6382 fprintf(stderr
, "User \"%s\" doesn't exist\n", run_as
);
6388 if (chroot(chroot_dir
) < 0) {
6389 fprintf(stderr
, "chroot failed\n");
6396 if (setgid(pwd
->pw_gid
) < 0) {
6397 fprintf(stderr
, "Failed to setgid(%d)\n", pwd
->pw_gid
);
6400 if (setuid(pwd
->pw_uid
) < 0) {
6401 fprintf(stderr
, "Failed to setuid(%d)\n", pwd
->pw_uid
);
6404 if (setuid(0) != -1) {
6405 fprintf(stderr
, "Dropping privileges failed\n");