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)
116 #if defined(__APPLE__) || defined(main)
118 int qemu_main(int argc
, char **argv
, char **envp
);
119 int main(int argc
, char **argv
)
121 return 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_next_param_value(char *buf
, int buf_size
,
1846 const char *tag
, const char **pstr
)
1853 p
= get_opt_name(option
, sizeof(option
), p
, '=');
1857 if (!strcmp(tag
, option
)) {
1858 *pstr
= get_opt_value(buf
, buf_size
, p
);
1859 if (**pstr
== ',') {
1864 p
= get_opt_value(NULL
, 0, p
);
1873 int get_param_value(char *buf
, int buf_size
,
1874 const char *tag
, const char *str
)
1876 return get_next_param_value(buf
, buf_size
, tag
, &str
);
1879 int check_params(char *buf
, int buf_size
,
1880 const char * const *params
, const char *str
)
1886 while (*p
!= '\0') {
1887 p
= get_opt_name(buf
, buf_size
, p
, '=');
1892 for (i
= 0; params
[i
] != NULL
; i
++) {
1893 if (!strcmp(params
[i
], buf
)) {
1897 if (params
[i
] == NULL
) {
1900 p
= get_opt_value(NULL
, 0, p
);
1909 /***********************************************************/
1910 /* Bluetooth support */
1913 static struct HCIInfo
*hci_table
[MAX_NICS
];
1915 static struct bt_vlan_s
{
1916 struct bt_scatternet_s net
;
1918 struct bt_vlan_s
*next
;
1921 /* find or alloc a new bluetooth "VLAN" */
1922 static struct bt_scatternet_s
*qemu_find_bt_vlan(int id
)
1924 struct bt_vlan_s
**pvlan
, *vlan
;
1925 for (vlan
= first_bt_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
1929 vlan
= qemu_mallocz(sizeof(struct bt_vlan_s
));
1931 pvlan
= &first_bt_vlan
;
1932 while (*pvlan
!= NULL
)
1933 pvlan
= &(*pvlan
)->next
;
1938 static void null_hci_send(struct HCIInfo
*hci
, const uint8_t *data
, int len
)
1942 static int null_hci_addr_set(struct HCIInfo
*hci
, const uint8_t *bd_addr
)
1947 static struct HCIInfo null_hci
= {
1948 .cmd_send
= null_hci_send
,
1949 .sco_send
= null_hci_send
,
1950 .acl_send
= null_hci_send
,
1951 .bdaddr_set
= null_hci_addr_set
,
1954 struct HCIInfo
*qemu_next_hci(void)
1956 if (cur_hci
== nb_hcis
)
1959 return hci_table
[cur_hci
++];
1962 static struct HCIInfo
*hci_init(const char *str
)
1965 struct bt_scatternet_s
*vlan
= 0;
1967 if (!strcmp(str
, "null"))
1970 else if (!strncmp(str
, "host", 4) && (str
[4] == '\0' || str
[4] == ':'))
1972 return bt_host_hci(str
[4] ? str
+ 5 : "hci0");
1973 else if (!strncmp(str
, "hci", 3)) {
1976 if (!strncmp(str
+ 3, ",vlan=", 6)) {
1977 vlan
= qemu_find_bt_vlan(strtol(str
+ 9, &endp
, 0));
1982 vlan
= qemu_find_bt_vlan(0);
1984 return bt_new_hci(vlan
);
1987 fprintf(stderr
, "qemu: Unknown bluetooth HCI `%s'.\n", str
);
1992 static int bt_hci_parse(const char *str
)
1994 struct HCIInfo
*hci
;
1997 if (nb_hcis
>= MAX_NICS
) {
1998 fprintf(stderr
, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS
);
2002 hci
= hci_init(str
);
2011 bdaddr
.b
[5] = 0x56 + nb_hcis
;
2012 hci
->bdaddr_set(hci
, bdaddr
.b
);
2014 hci_table
[nb_hcis
++] = hci
;
2019 static void bt_vhci_add(int vlan_id
)
2021 struct bt_scatternet_s
*vlan
= qemu_find_bt_vlan(vlan_id
);
2024 fprintf(stderr
, "qemu: warning: adding a VHCI to "
2025 "an empty scatternet %i\n", vlan_id
);
2027 bt_vhci_init(bt_new_hci(vlan
));
2030 static struct bt_device_s
*bt_device_add(const char *opt
)
2032 struct bt_scatternet_s
*vlan
;
2034 char *endp
= strstr(opt
, ",vlan=");
2035 int len
= (endp
? endp
- opt
: strlen(opt
)) + 1;
2038 pstrcpy(devname
, MIN(sizeof(devname
), len
), opt
);
2041 vlan_id
= strtol(endp
+ 6, &endp
, 0);
2043 fprintf(stderr
, "qemu: unrecognised bluetooth vlan Id\n");
2048 vlan
= qemu_find_bt_vlan(vlan_id
);
2051 fprintf(stderr
, "qemu: warning: adding a slave device to "
2052 "an empty scatternet %i\n", vlan_id
);
2054 if (!strcmp(devname
, "keyboard"))
2055 return bt_keyboard_init(vlan
);
2057 fprintf(stderr
, "qemu: unsupported bluetooth device `%s'\n", devname
);
2061 static int bt_parse(const char *opt
)
2063 const char *endp
, *p
;
2066 if (strstart(opt
, "hci", &endp
)) {
2067 if (!*endp
|| *endp
== ',') {
2069 if (!strstart(endp
, ",vlan=", 0))
2072 return bt_hci_parse(opt
);
2074 } else if (strstart(opt
, "vhci", &endp
)) {
2075 if (!*endp
|| *endp
== ',') {
2077 if (strstart(endp
, ",vlan=", &p
)) {
2078 vlan
= strtol(p
, (char **) &endp
, 0);
2080 fprintf(stderr
, "qemu: bad scatternet '%s'\n", p
);
2084 fprintf(stderr
, "qemu: bad parameter '%s'\n", endp
+ 1);
2093 } else if (strstart(opt
, "device:", &endp
))
2094 return !bt_device_add(endp
);
2096 fprintf(stderr
, "qemu: bad bluetooth parameter '%s'\n", opt
);
2100 /***********************************************************/
2101 /* QEMU Block devices */
2103 #define HD_ALIAS "index=%d,media=disk"
2104 #define CDROM_ALIAS "index=2,media=cdrom"
2105 #define FD_ALIAS "index=%d,if=floppy"
2106 #define PFLASH_ALIAS "if=pflash"
2107 #define MTD_ALIAS "if=mtd"
2108 #define SD_ALIAS "index=0,if=sd"
2110 static int drive_opt_get_free_idx(void)
2114 for (index
= 0; index
< MAX_DRIVES
; index
++)
2115 if (!drives_opt
[index
].used
) {
2116 drives_opt
[index
].used
= 1;
2123 static int drive_get_free_idx(void)
2127 for (index
= 0; index
< MAX_DRIVES
; index
++)
2128 if (!drives_table
[index
].used
) {
2129 drives_table
[index
].used
= 1;
2136 int drive_add(const char *file
, const char *fmt
, ...)
2139 int index
= drive_opt_get_free_idx();
2141 if (nb_drives_opt
>= MAX_DRIVES
|| index
== -1) {
2142 fprintf(stderr
, "qemu: too many drives\n");
2146 drives_opt
[index
].file
= file
;
2148 vsnprintf(drives_opt
[index
].opt
,
2149 sizeof(drives_opt
[0].opt
), fmt
, ap
);
2156 void drive_remove(int index
)
2158 drives_opt
[index
].used
= 0;
2162 int drive_get_index(BlockInterfaceType type
, int bus
, int unit
)
2166 /* seek interface, bus and unit */
2168 for (index
= 0; index
< MAX_DRIVES
; index
++)
2169 if (drives_table
[index
].type
== type
&&
2170 drives_table
[index
].bus
== bus
&&
2171 drives_table
[index
].unit
== unit
&&
2172 drives_table
[index
].used
)
2178 int drive_get_max_bus(BlockInterfaceType type
)
2184 for (index
= 0; index
< nb_drives
; index
++) {
2185 if(drives_table
[index
].type
== type
&&
2186 drives_table
[index
].bus
> max_bus
)
2187 max_bus
= drives_table
[index
].bus
;
2192 const char *drive_get_serial(BlockDriverState
*bdrv
)
2196 for (index
= 0; index
< nb_drives
; index
++)
2197 if (drives_table
[index
].bdrv
== bdrv
)
2198 return drives_table
[index
].serial
;
2203 BlockInterfaceErrorAction
drive_get_onerror(BlockDriverState
*bdrv
)
2207 for (index
= 0; index
< nb_drives
; index
++)
2208 if (drives_table
[index
].bdrv
== bdrv
)
2209 return drives_table
[index
].onerror
;
2211 return BLOCK_ERR_STOP_ENOSPC
;
2214 static void bdrv_format_print(void *opaque
, const char *name
)
2216 fprintf(stderr
, " %s", name
);
2219 void drive_uninit(BlockDriverState
*bdrv
)
2223 for (i
= 0; i
< MAX_DRIVES
; i
++)
2224 if (drives_table
[i
].bdrv
== bdrv
) {
2225 drives_table
[i
].bdrv
= NULL
;
2226 drives_table
[i
].used
= 0;
2227 drive_remove(drives_table
[i
].drive_opt_idx
);
2233 int drive_init(struct drive_opt
*arg
, int snapshot
, void *opaque
)
2239 const char *mediastr
= "";
2240 BlockInterfaceType type
;
2241 enum { MEDIA_DISK
, MEDIA_CDROM
} media
;
2242 int bus_id
, unit_id
;
2243 int cyls
, heads
, secs
, translation
;
2244 BlockDriverState
*bdrv
;
2245 BlockDriver
*drv
= NULL
;
2246 QEMUMachine
*machine
= opaque
;
2250 int bdrv_flags
, onerror
;
2251 const char *devaddr
;
2252 int drives_table_idx
;
2253 char *str
= arg
->opt
;
2254 static const char * const params
[] = { "bus", "unit", "if", "index",
2255 "cyls", "heads", "secs", "trans",
2256 "media", "snapshot", "file",
2257 "cache", "format", "serial",
2262 if (check_params(buf
, sizeof(buf
), params
, str
) < 0) {
2263 fprintf(stderr
, "qemu: unknown parameter '%s' in '%s'\n",
2269 cyls
= heads
= secs
= 0;
2272 translation
= BIOS_ATA_TRANSLATION_AUTO
;
2276 if (machine
->use_scsi
) {
2278 max_devs
= MAX_SCSI_DEVS
;
2279 pstrcpy(devname
, sizeof(devname
), "scsi");
2282 max_devs
= MAX_IDE_DEVS
;
2283 pstrcpy(devname
, sizeof(devname
), "ide");
2287 /* extract parameters */
2289 if (get_param_value(buf
, sizeof(buf
), "bus", str
)) {
2290 bus_id
= strtol(buf
, NULL
, 0);
2292 fprintf(stderr
, "qemu: '%s' invalid bus id\n", str
);
2297 if (get_param_value(buf
, sizeof(buf
), "unit", str
)) {
2298 unit_id
= strtol(buf
, NULL
, 0);
2300 fprintf(stderr
, "qemu: '%s' invalid unit id\n", str
);
2305 if (get_param_value(buf
, sizeof(buf
), "if", str
)) {
2306 pstrcpy(devname
, sizeof(devname
), buf
);
2307 if (!strcmp(buf
, "ide")) {
2309 max_devs
= MAX_IDE_DEVS
;
2310 } else if (!strcmp(buf
, "scsi")) {
2312 max_devs
= MAX_SCSI_DEVS
;
2313 } else if (!strcmp(buf
, "floppy")) {
2316 } else if (!strcmp(buf
, "pflash")) {
2319 } else if (!strcmp(buf
, "mtd")) {
2322 } else if (!strcmp(buf
, "sd")) {
2325 } else if (!strcmp(buf
, "virtio")) {
2328 } else if (!strcmp(buf
, "xen")) {
2332 fprintf(stderr
, "qemu: '%s' unsupported bus type '%s'\n", str
, buf
);
2337 if (get_param_value(buf
, sizeof(buf
), "index", str
)) {
2338 index
= strtol(buf
, NULL
, 0);
2340 fprintf(stderr
, "qemu: '%s' invalid index\n", str
);
2345 if (get_param_value(buf
, sizeof(buf
), "cyls", str
)) {
2346 cyls
= strtol(buf
, NULL
, 0);
2349 if (get_param_value(buf
, sizeof(buf
), "heads", str
)) {
2350 heads
= strtol(buf
, NULL
, 0);
2353 if (get_param_value(buf
, sizeof(buf
), "secs", str
)) {
2354 secs
= strtol(buf
, NULL
, 0);
2357 if (cyls
|| heads
|| secs
) {
2358 if (cyls
< 1 || cyls
> 16383) {
2359 fprintf(stderr
, "qemu: '%s' invalid physical cyls number\n", str
);
2362 if (heads
< 1 || heads
> 16) {
2363 fprintf(stderr
, "qemu: '%s' invalid physical heads number\n", str
);
2366 if (secs
< 1 || secs
> 63) {
2367 fprintf(stderr
, "qemu: '%s' invalid physical secs number\n", str
);
2372 if (get_param_value(buf
, sizeof(buf
), "trans", str
)) {
2375 "qemu: '%s' trans must be used with cyls,heads and secs\n",
2379 if (!strcmp(buf
, "none"))
2380 translation
= BIOS_ATA_TRANSLATION_NONE
;
2381 else if (!strcmp(buf
, "lba"))
2382 translation
= BIOS_ATA_TRANSLATION_LBA
;
2383 else if (!strcmp(buf
, "auto"))
2384 translation
= BIOS_ATA_TRANSLATION_AUTO
;
2386 fprintf(stderr
, "qemu: '%s' invalid translation type\n", str
);
2391 if (get_param_value(buf
, sizeof(buf
), "media", str
)) {
2392 if (!strcmp(buf
, "disk")) {
2394 } else if (!strcmp(buf
, "cdrom")) {
2395 if (cyls
|| secs
|| heads
) {
2397 "qemu: '%s' invalid physical CHS format\n", str
);
2400 media
= MEDIA_CDROM
;
2402 fprintf(stderr
, "qemu: '%s' invalid media\n", str
);
2407 if (get_param_value(buf
, sizeof(buf
), "snapshot", str
)) {
2408 if (!strcmp(buf
, "on"))
2410 else if (!strcmp(buf
, "off"))
2413 fprintf(stderr
, "qemu: '%s' invalid snapshot option\n", str
);
2418 if (get_param_value(buf
, sizeof(buf
), "cache", str
)) {
2419 if (!strcmp(buf
, "off") || !strcmp(buf
, "none"))
2421 else if (!strcmp(buf
, "writethrough"))
2423 else if (!strcmp(buf
, "writeback"))
2426 fprintf(stderr
, "qemu: invalid cache option\n");
2431 if (get_param_value(buf
, sizeof(buf
), "format", str
)) {
2432 if (strcmp(buf
, "?") == 0) {
2433 fprintf(stderr
, "qemu: Supported formats:");
2434 bdrv_iterate_format(bdrv_format_print
, NULL
);
2435 fprintf(stderr
, "\n");
2438 drv
= bdrv_find_format(buf
);
2440 fprintf(stderr
, "qemu: '%s' invalid format\n", buf
);
2445 if (get_param_value(buf
, sizeof(buf
), "boot", str
)) {
2446 if (!strcmp(buf
, "on")) {
2447 if (extboot_drive
!= -1) {
2448 fprintf(stderr
, "qemu: two bootable drives specified\n");
2451 extboot_drive
= nb_drives
;
2452 } else if (strcmp(buf
, "off")) {
2453 fprintf(stderr
, "qemu: '%s' invalid boot option\n", str
);
2458 if (arg
->file
== NULL
)
2459 get_param_value(file
, sizeof(file
), "file", str
);
2461 pstrcpy(file
, sizeof(file
), arg
->file
);
2463 if (!get_param_value(serial
, sizeof(serial
), "serial", str
))
2464 memset(serial
, 0, sizeof(serial
));
2466 onerror
= BLOCK_ERR_STOP_ENOSPC
;
2467 if (get_param_value(buf
, sizeof(serial
), "werror", str
)) {
2468 if (type
!= IF_IDE
&& type
!= IF_SCSI
&& type
!= IF_VIRTIO
) {
2469 fprintf(stderr
, "werror is no supported by this format\n");
2472 if (!strcmp(buf
, "ignore"))
2473 onerror
= BLOCK_ERR_IGNORE
;
2474 else if (!strcmp(buf
, "enospc"))
2475 onerror
= BLOCK_ERR_STOP_ENOSPC
;
2476 else if (!strcmp(buf
, "stop"))
2477 onerror
= BLOCK_ERR_STOP_ANY
;
2478 else if (!strcmp(buf
, "report"))
2479 onerror
= BLOCK_ERR_REPORT
;
2481 fprintf(stderr
, "qemu: '%s' invalid write error action\n", buf
);
2487 if (get_param_value(buf
, sizeof(buf
), "addr", str
)) {
2488 if (type
!= IF_VIRTIO
) {
2489 fprintf(stderr
, "addr is not supported by in '%s'\n", str
);
2492 devaddr
= strdup(buf
);
2495 /* compute bus and unit according index */
2498 if (bus_id
!= 0 || unit_id
!= -1) {
2500 "qemu: '%s' index cannot be used with bus and unit\n", str
);
2508 unit_id
= index
% max_devs
;
2509 bus_id
= index
/ max_devs
;
2513 /* if user doesn't specify a unit_id,
2514 * try to find the first free
2517 if (unit_id
== -1) {
2519 while (drive_get_index(type
, bus_id
, unit_id
) != -1) {
2521 if (max_devs
&& unit_id
>= max_devs
) {
2522 unit_id
-= max_devs
;
2530 if (max_devs
&& unit_id
>= max_devs
) {
2531 fprintf(stderr
, "qemu: '%s' unit %d too big (max is %d)\n",
2532 str
, unit_id
, max_devs
- 1);
2537 * ignore multiple definitions
2540 if (drive_get_index(type
, bus_id
, unit_id
) != -1)
2545 if (type
== IF_IDE
|| type
== IF_SCSI
)
2546 mediastr
= (media
== MEDIA_CDROM
) ? "-cd" : "-hd";
2548 snprintf(buf
, sizeof(buf
), "%s%i%s%i",
2549 devname
, bus_id
, mediastr
, unit_id
);
2551 snprintf(buf
, sizeof(buf
), "%s%s%i",
2552 devname
, mediastr
, unit_id
);
2553 bdrv
= bdrv_new(buf
);
2554 drives_table_idx
= drive_get_free_idx();
2555 drives_table
[drives_table_idx
].bdrv
= bdrv
;
2556 drives_table
[drives_table_idx
].devaddr
= devaddr
;
2557 drives_table
[drives_table_idx
].type
= type
;
2558 drives_table
[drives_table_idx
].bus
= bus_id
;
2559 drives_table
[drives_table_idx
].unit
= unit_id
;
2560 drives_table
[drives_table_idx
].onerror
= onerror
;
2561 drives_table
[drives_table_idx
].drive_opt_idx
= arg
- drives_opt
;
2562 strncpy(drives_table
[drives_table_idx
].serial
, serial
, sizeof(serial
));
2572 bdrv_set_geometry_hint(bdrv
, cyls
, heads
, secs
);
2573 bdrv_set_translation_hint(bdrv
, translation
);
2577 bdrv_set_type_hint(bdrv
, BDRV_TYPE_CDROM
);
2582 /* FIXME: This isn't really a floppy, but it's a reasonable
2585 bdrv_set_type_hint(bdrv
, BDRV_TYPE_FLOPPY
);
2598 bdrv_flags
|= BDRV_O_SNAPSHOT
;
2599 cache
= 2; /* always use write-back with snapshot */
2601 if (cache
== 0) /* no caching */
2602 bdrv_flags
|= BDRV_O_NOCACHE
;
2603 else if (cache
== 2) /* write-back */
2604 bdrv_flags
|= BDRV_O_CACHE_WB
;
2605 else if (cache
== 3) /* not specified */
2606 bdrv_flags
|= BDRV_O_CACHE_DEF
;
2607 if (bdrv_open2(bdrv
, file
, bdrv_flags
, drv
) < 0) {
2608 fprintf(stderr
, "qemu: could not open disk image %s\n",
2612 if (bdrv_key_required(bdrv
))
2614 return drives_table_idx
;
2617 static void numa_add(const char *optarg
)
2621 unsigned long long value
, endvalue
;
2624 optarg
= get_opt_name(option
, 128, optarg
, ',') + 1;
2625 if (!strcmp(option
, "node")) {
2626 if (get_param_value(option
, 128, "nodeid", optarg
) == 0) {
2627 nodenr
= nb_numa_nodes
;
2629 nodenr
= strtoull(option
, NULL
, 10);
2632 if (get_param_value(option
, 128, "mem", optarg
) == 0) {
2633 node_mem
[nodenr
] = 0;
2635 value
= strtoull(option
, &endptr
, 0);
2637 case 0: case 'M': case 'm':
2644 node_mem
[nodenr
] = value
;
2646 if (get_param_value(option
, 128, "cpus", optarg
) == 0) {
2647 node_cpumask
[nodenr
] = 0;
2649 value
= strtoull(option
, &endptr
, 10);
2652 fprintf(stderr
, "only 64 CPUs in NUMA mode supported.\n");
2654 if (*endptr
== '-') {
2655 endvalue
= strtoull(endptr
+1, &endptr
, 10);
2656 if (endvalue
>= 63) {
2659 "only 63 CPUs in NUMA mode supported.\n");
2661 value
= (1 << (endvalue
+ 1)) - (1 << value
);
2666 node_cpumask
[nodenr
] = value
;
2673 /***********************************************************/
2676 static USBPort
*used_usb_ports
;
2677 static USBPort
*free_usb_ports
;
2679 /* ??? Maybe change this to register a hub to keep track of the topology. */
2680 void qemu_register_usb_port(USBPort
*port
, void *opaque
, int index
,
2681 usb_attachfn attach
)
2683 port
->opaque
= opaque
;
2684 port
->index
= index
;
2685 port
->attach
= attach
;
2686 port
->next
= free_usb_ports
;
2687 free_usb_ports
= port
;
2690 int usb_device_add_dev(USBDevice
*dev
)
2694 /* Find a USB port to add the device to. */
2695 port
= free_usb_ports
;
2699 /* Create a new hub and chain it on. */
2700 free_usb_ports
= NULL
;
2701 port
->next
= used_usb_ports
;
2702 used_usb_ports
= port
;
2704 hub
= usb_hub_init(VM_USB_HUB_SIZE
);
2705 usb_attach(port
, hub
);
2706 port
= free_usb_ports
;
2709 free_usb_ports
= port
->next
;
2710 port
->next
= used_usb_ports
;
2711 used_usb_ports
= port
;
2712 usb_attach(port
, dev
);
2716 static void usb_msd_password_cb(void *opaque
, int err
)
2718 USBDevice
*dev
= opaque
;
2721 usb_device_add_dev(dev
);
2723 dev
->handle_destroy(dev
);
2726 static int usb_device_add(const char *devname
, int is_hotplug
)
2731 if (!free_usb_ports
)
2734 if (strstart(devname
, "host:", &p
)) {
2735 dev
= usb_host_device_open(p
);
2736 } else if (!strcmp(devname
, "mouse")) {
2737 dev
= usb_mouse_init();
2738 } else if (!strcmp(devname
, "tablet")) {
2739 dev
= usb_tablet_init();
2740 } else if (!strcmp(devname
, "keyboard")) {
2741 dev
= usb_keyboard_init();
2742 } else if (strstart(devname
, "disk:", &p
)) {
2743 BlockDriverState
*bs
;
2745 dev
= usb_msd_init(p
);
2748 bs
= usb_msd_get_bdrv(dev
);
2749 if (bdrv_key_required(bs
)) {
2752 monitor_read_bdrv_key_start(cur_mon
, bs
, usb_msd_password_cb
,
2757 } else if (!strcmp(devname
, "wacom-tablet")) {
2758 dev
= usb_wacom_init();
2759 } else if (strstart(devname
, "serial:", &p
)) {
2760 dev
= usb_serial_init(p
);
2761 #ifdef CONFIG_BRLAPI
2762 } else if (!strcmp(devname
, "braille")) {
2763 dev
= usb_baum_init();
2765 } else if (strstart(devname
, "net:", &p
)) {
2768 if (net_client_init(NULL
, "nic", p
) < 0)
2770 nd_table
[nic
].model
= "usb";
2771 dev
= usb_net_init(&nd_table
[nic
]);
2772 } else if (!strcmp(devname
, "bt") || strstart(devname
, "bt:", &p
)) {
2773 dev
= usb_bt_init(devname
[2] ? hci_init(p
) :
2774 bt_new_hci(qemu_find_bt_vlan(0)));
2781 return usb_device_add_dev(dev
);
2784 int usb_device_del_addr(int bus_num
, int addr
)
2790 if (!used_usb_ports
)
2796 lastp
= &used_usb_ports
;
2797 port
= used_usb_ports
;
2798 while (port
&& port
->dev
->addr
!= addr
) {
2799 lastp
= &port
->next
;
2807 *lastp
= port
->next
;
2808 usb_attach(port
, NULL
);
2809 dev
->handle_destroy(dev
);
2810 port
->next
= free_usb_ports
;
2811 free_usb_ports
= port
;
2815 static int usb_device_del(const char *devname
)
2820 if (strstart(devname
, "host:", &p
))
2821 return usb_host_device_close(p
);
2823 if (!used_usb_ports
)
2826 p
= strchr(devname
, '.');
2829 bus_num
= strtoul(devname
, NULL
, 0);
2830 addr
= strtoul(p
+ 1, NULL
, 0);
2832 return usb_device_del_addr(bus_num
, addr
);
2835 void do_usb_add(Monitor
*mon
, const char *devname
)
2837 usb_device_add(devname
, 1);
2840 void do_usb_del(Monitor
*mon
, const char *devname
)
2842 usb_device_del(devname
);
2845 void usb_info(Monitor
*mon
)
2849 const char *speed_str
;
2852 monitor_printf(mon
, "USB support not enabled\n");
2856 for (port
= used_usb_ports
; port
; port
= port
->next
) {
2860 switch(dev
->speed
) {
2864 case USB_SPEED_FULL
:
2867 case USB_SPEED_HIGH
:
2874 monitor_printf(mon
, " Device %d.%d, Speed %s Mb/s, Product %s\n",
2875 0, dev
->addr
, speed_str
, dev
->devname
);
2879 /***********************************************************/
2880 /* PCMCIA/Cardbus */
2882 static struct pcmcia_socket_entry_s
{
2883 PCMCIASocket
*socket
;
2884 struct pcmcia_socket_entry_s
*next
;
2885 } *pcmcia_sockets
= 0;
2887 void pcmcia_socket_register(PCMCIASocket
*socket
)
2889 struct pcmcia_socket_entry_s
*entry
;
2891 entry
= qemu_malloc(sizeof(struct pcmcia_socket_entry_s
));
2892 entry
->socket
= socket
;
2893 entry
->next
= pcmcia_sockets
;
2894 pcmcia_sockets
= entry
;
2897 void pcmcia_socket_unregister(PCMCIASocket
*socket
)
2899 struct pcmcia_socket_entry_s
*entry
, **ptr
;
2901 ptr
= &pcmcia_sockets
;
2902 for (entry
= *ptr
; entry
; ptr
= &entry
->next
, entry
= *ptr
)
2903 if (entry
->socket
== socket
) {
2909 void pcmcia_info(Monitor
*mon
)
2911 struct pcmcia_socket_entry_s
*iter
;
2913 if (!pcmcia_sockets
)
2914 monitor_printf(mon
, "No PCMCIA sockets\n");
2916 for (iter
= pcmcia_sockets
; iter
; iter
= iter
->next
)
2917 monitor_printf(mon
, "%s: %s\n", iter
->socket
->slot_string
,
2918 iter
->socket
->attached
? iter
->socket
->card_string
:
2922 /***********************************************************/
2923 /* register display */
2925 struct DisplayAllocator default_allocator
= {
2926 defaultallocator_create_displaysurface
,
2927 defaultallocator_resize_displaysurface
,
2928 defaultallocator_free_displaysurface
2931 void register_displaystate(DisplayState
*ds
)
2941 DisplayState
*get_displaystate(void)
2943 return display_state
;
2946 DisplayAllocator
*register_displayallocator(DisplayState
*ds
, DisplayAllocator
*da
)
2948 if(ds
->allocator
== &default_allocator
) ds
->allocator
= da
;
2949 return ds
->allocator
;
2954 static void dumb_display_init(void)
2956 DisplayState
*ds
= qemu_mallocz(sizeof(DisplayState
));
2957 ds
->allocator
= &default_allocator
;
2958 ds
->surface
= qemu_create_displaysurface(ds
, 640, 480);
2959 register_displaystate(ds
);
2962 /***********************************************************/
2965 typedef struct IOHandlerRecord
{
2967 IOCanRWHandler
*fd_read_poll
;
2969 IOHandler
*fd_write
;
2972 /* temporary data */
2974 struct IOHandlerRecord
*next
;
2977 static IOHandlerRecord
*first_io_handler
;
2979 /* XXX: fd_read_poll should be suppressed, but an API change is
2980 necessary in the character devices to suppress fd_can_read(). */
2981 int qemu_set_fd_handler2(int fd
,
2982 IOCanRWHandler
*fd_read_poll
,
2984 IOHandler
*fd_write
,
2987 IOHandlerRecord
**pioh
, *ioh
;
2989 if (!fd_read
&& !fd_write
) {
2990 pioh
= &first_io_handler
;
2995 if (ioh
->fd
== fd
) {
3002 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
3006 ioh
= qemu_mallocz(sizeof(IOHandlerRecord
));
3007 ioh
->next
= first_io_handler
;
3008 first_io_handler
= ioh
;
3011 ioh
->fd_read_poll
= fd_read_poll
;
3012 ioh
->fd_read
= fd_read
;
3013 ioh
->fd_write
= fd_write
;
3014 ioh
->opaque
= opaque
;
3017 qemu_notify_event();
3021 int qemu_set_fd_handler(int fd
,
3023 IOHandler
*fd_write
,
3026 return qemu_set_fd_handler2(fd
, NULL
, fd_read
, fd_write
, opaque
);
3030 /***********************************************************/
3031 /* Polling handling */
3033 typedef struct PollingEntry
{
3036 struct PollingEntry
*next
;
3039 static PollingEntry
*first_polling_entry
;
3041 int qemu_add_polling_cb(PollingFunc
*func
, void *opaque
)
3043 PollingEntry
**ppe
, *pe
;
3044 pe
= qemu_mallocz(sizeof(PollingEntry
));
3046 pe
->opaque
= opaque
;
3047 for(ppe
= &first_polling_entry
; *ppe
!= NULL
; ppe
= &(*ppe
)->next
);
3052 void qemu_del_polling_cb(PollingFunc
*func
, void *opaque
)
3054 PollingEntry
**ppe
, *pe
;
3055 for(ppe
= &first_polling_entry
; *ppe
!= NULL
; ppe
= &(*ppe
)->next
) {
3057 if (pe
->func
== func
&& pe
->opaque
== opaque
) {
3065 /***********************************************************/
3066 /* Wait objects support */
3067 typedef struct WaitObjects
{
3069 HANDLE events
[MAXIMUM_WAIT_OBJECTS
+ 1];
3070 WaitObjectFunc
*func
[MAXIMUM_WAIT_OBJECTS
+ 1];
3071 void *opaque
[MAXIMUM_WAIT_OBJECTS
+ 1];
3074 static WaitObjects wait_objects
= {0};
3076 int qemu_add_wait_object(HANDLE handle
, WaitObjectFunc
*func
, void *opaque
)
3078 WaitObjects
*w
= &wait_objects
;
3080 if (w
->num
>= MAXIMUM_WAIT_OBJECTS
)
3082 w
->events
[w
->num
] = handle
;
3083 w
->func
[w
->num
] = func
;
3084 w
->opaque
[w
->num
] = opaque
;
3089 void qemu_del_wait_object(HANDLE handle
, WaitObjectFunc
*func
, void *opaque
)
3092 WaitObjects
*w
= &wait_objects
;
3095 for (i
= 0; i
< w
->num
; i
++) {
3096 if (w
->events
[i
] == handle
)
3099 w
->events
[i
] = w
->events
[i
+ 1];
3100 w
->func
[i
] = w
->func
[i
+ 1];
3101 w
->opaque
[i
] = w
->opaque
[i
+ 1];
3109 /***********************************************************/
3110 /* ram save/restore */
3112 static int ram_get_page(QEMUFile
*f
, uint8_t *buf
, int len
)
3116 v
= qemu_get_byte(f
);
3119 if (qemu_get_buffer(f
, buf
, len
) != len
)
3123 v
= qemu_get_byte(f
);
3124 memset(buf
, v
, len
);
3130 if (qemu_file_has_error(f
))
3136 static int ram_load_v1(QEMUFile
*f
, void *opaque
)
3141 if (qemu_get_be32(f
) != last_ram_offset
)
3143 for(i
= 0; i
< last_ram_offset
; i
+= TARGET_PAGE_SIZE
) {
3144 if (kvm_enabled() && (i
>=0xa0000) && (i
<0xc0000)) /* do not access video-addresses */
3146 ret
= ram_get_page(f
, qemu_get_ram_ptr(i
), TARGET_PAGE_SIZE
);
3153 #define BDRV_HASH_BLOCK_SIZE 1024
3154 #define IOBUF_SIZE 4096
3155 #define RAM_CBLOCK_MAGIC 0xfabe
3157 typedef struct RamDecompressState
{
3160 uint8_t buf
[IOBUF_SIZE
];
3161 } RamDecompressState
;
3163 static int ram_decompress_open(RamDecompressState
*s
, QEMUFile
*f
)
3166 memset(s
, 0, sizeof(*s
));
3168 ret
= inflateInit(&s
->zstream
);
3174 static int ram_decompress_buf(RamDecompressState
*s
, uint8_t *buf
, int len
)
3178 s
->zstream
.avail_out
= len
;
3179 s
->zstream
.next_out
= buf
;
3180 while (s
->zstream
.avail_out
> 0) {
3181 if (s
->zstream
.avail_in
== 0) {
3182 if (qemu_get_be16(s
->f
) != RAM_CBLOCK_MAGIC
)
3184 clen
= qemu_get_be16(s
->f
);
3185 if (clen
> IOBUF_SIZE
)
3187 qemu_get_buffer(s
->f
, s
->buf
, clen
);
3188 s
->zstream
.avail_in
= clen
;
3189 s
->zstream
.next_in
= s
->buf
;
3191 ret
= inflate(&s
->zstream
, Z_PARTIAL_FLUSH
);
3192 if (ret
!= Z_OK
&& ret
!= Z_STREAM_END
) {
3199 static void ram_decompress_close(RamDecompressState
*s
)
3201 inflateEnd(&s
->zstream
);
3204 #define RAM_SAVE_FLAG_FULL 0x01
3205 #define RAM_SAVE_FLAG_COMPRESS 0x02
3206 #define RAM_SAVE_FLAG_MEM_SIZE 0x04
3207 #define RAM_SAVE_FLAG_PAGE 0x08
3208 #define RAM_SAVE_FLAG_EOS 0x10
3210 static int is_dup_page(uint8_t *page
, uint8_t ch
)
3212 uint32_t val
= ch
<< 24 | ch
<< 16 | ch
<< 8 | ch
;
3213 uint32_t *array
= (uint32_t *)page
;
3216 for (i
= 0; i
< (TARGET_PAGE_SIZE
/ 4); i
++) {
3217 if (array
[i
] != val
)
3224 static int ram_save_block(QEMUFile
*f
)
3226 static ram_addr_t current_addr
= 0;
3227 ram_addr_t saved_addr
= current_addr
;
3228 ram_addr_t addr
= 0;
3231 while (addr
< last_ram_offset
) {
3232 if (kvm_enabled() && current_addr
== 0) {
3234 r
= kvm_update_dirty_pages_log();
3236 fprintf(stderr
, "%s: update dirty pages log failed %d\n", __FUNCTION__
, r
);
3237 qemu_file_set_error(f
);
3241 if (cpu_physical_memory_get_dirty(current_addr
, MIGRATION_DIRTY_FLAG
)) {
3244 cpu_physical_memory_reset_dirty(current_addr
,
3245 current_addr
+ TARGET_PAGE_SIZE
,
3246 MIGRATION_DIRTY_FLAG
);
3248 p
= qemu_get_ram_ptr(current_addr
);
3250 if (is_dup_page(p
, *p
)) {
3251 qemu_put_be64(f
, current_addr
| RAM_SAVE_FLAG_COMPRESS
);
3252 qemu_put_byte(f
, *p
);
3254 qemu_put_be64(f
, current_addr
| RAM_SAVE_FLAG_PAGE
);
3255 qemu_put_buffer(f
, p
, TARGET_PAGE_SIZE
);
3261 addr
+= TARGET_PAGE_SIZE
;
3262 current_addr
= (saved_addr
+ addr
) % last_ram_offset
;
3268 static uint64_t bytes_transferred
= 0;
3270 static ram_addr_t
ram_save_remaining(void)
3273 ram_addr_t count
= 0;
3275 for (addr
= 0; addr
< last_ram_offset
; addr
+= TARGET_PAGE_SIZE
) {
3276 if (cpu_physical_memory_get_dirty(addr
, MIGRATION_DIRTY_FLAG
))
3283 uint64_t ram_bytes_remaining(void)
3285 return ram_save_remaining() * TARGET_PAGE_SIZE
;
3288 uint64_t ram_bytes_transferred(void)
3290 return bytes_transferred
;
3293 uint64_t ram_bytes_total(void)
3295 return last_ram_offset
;
3298 static int ram_save_live(QEMUFile
*f
, int stage
, void *opaque
)
3301 uint64_t bytes_transferred_last
;
3303 uint64_t expected_time
= 0;
3305 if (cpu_physical_sync_dirty_bitmap(0, TARGET_PHYS_ADDR_MAX
) != 0) {
3306 qemu_file_set_error(f
);
3311 /* Make sure all dirty bits are set */
3312 for (addr
= 0; addr
< last_ram_offset
; addr
+= TARGET_PAGE_SIZE
) {
3313 if (!cpu_physical_memory_get_dirty(addr
, MIGRATION_DIRTY_FLAG
))
3314 cpu_physical_memory_set_dirty(addr
);
3317 /* Enable dirty memory tracking */
3318 cpu_physical_memory_set_dirty_tracking(1);
3320 qemu_put_be64(f
, last_ram_offset
| RAM_SAVE_FLAG_MEM_SIZE
);
3323 bytes_transferred_last
= bytes_transferred
;
3324 bwidth
= get_clock();
3326 while (!qemu_file_rate_limit(f
)) {
3329 ret
= ram_save_block(f
);
3330 bytes_transferred
+= ret
* TARGET_PAGE_SIZE
;
3331 if (ret
== 0) /* no more blocks */
3335 bwidth
= get_clock() - bwidth
;
3336 bwidth
= (bytes_transferred
- bytes_transferred_last
) / bwidth
;
3338 /* if we haven't transferred anything this round, force expected_time to a
3339 * a very high value, but without crashing */
3343 /* try transferring iterative blocks of memory */
3347 /* flush all remaining blocks regardless of rate limiting */
3348 while (ram_save_block(f
) != 0) {
3349 bytes_transferred
+= TARGET_PAGE_SIZE
;
3351 cpu_physical_memory_set_dirty_tracking(0);
3354 qemu_put_be64(f
, RAM_SAVE_FLAG_EOS
);
3356 expected_time
= ram_save_remaining() * TARGET_PAGE_SIZE
/ bwidth
;
3358 return (stage
== 2) && (expected_time
<= migrate_max_downtime());
3361 static int ram_load_dead(QEMUFile
*f
, void *opaque
)
3363 RamDecompressState s1
, *s
= &s1
;
3367 if (ram_decompress_open(s
, f
) < 0)
3369 for(i
= 0; i
< last_ram_offset
; i
+= BDRV_HASH_BLOCK_SIZE
) {
3370 if (kvm_enabled() && (i
>=0xa0000) && (i
<0xc0000)) /* do not access video-addresses */
3372 if (ram_decompress_buf(s
, buf
, 1) < 0) {
3373 fprintf(stderr
, "Error while reading ram block header\n");
3377 if (ram_decompress_buf(s
, qemu_get_ram_ptr(i
),
3378 BDRV_HASH_BLOCK_SIZE
) < 0) {
3379 fprintf(stderr
, "Error while reading ram block address=0x%08" PRIx64
, (uint64_t)i
);
3384 printf("Error block header\n");
3388 ram_decompress_close(s
);
3393 static int ram_load(QEMUFile
*f
, void *opaque
, int version_id
)
3398 if (version_id
== 1)
3399 return ram_load_v1(f
, opaque
);
3401 if (version_id
== 2) {
3402 if (qemu_get_be32(f
) != last_ram_offset
)
3404 return ram_load_dead(f
, opaque
);
3407 if (version_id
!= 3)
3411 addr
= qemu_get_be64(f
);
3413 flags
= addr
& ~TARGET_PAGE_MASK
;
3414 addr
&= TARGET_PAGE_MASK
;
3416 if (flags
& RAM_SAVE_FLAG_MEM_SIZE
) {
3417 if (addr
!= last_ram_offset
)
3421 if (flags
& RAM_SAVE_FLAG_FULL
) {
3422 if (ram_load_dead(f
, opaque
) < 0)
3426 if (flags
& RAM_SAVE_FLAG_COMPRESS
) {
3427 uint8_t ch
= qemu_get_byte(f
);
3428 memset(qemu_get_ram_ptr(addr
), ch
, TARGET_PAGE_SIZE
);
3431 (!kvm_enabled() || kvm_has_sync_mmu())) {
3432 madvise(qemu_get_ram_ptr(addr
), TARGET_PAGE_SIZE
, MADV_DONTNEED
);
3435 } else if (flags
& RAM_SAVE_FLAG_PAGE
)
3436 qemu_get_buffer(f
, qemu_get_ram_ptr(addr
), TARGET_PAGE_SIZE
);
3437 } while (!(flags
& RAM_SAVE_FLAG_EOS
));
3442 void qemu_service_io(void)
3444 qemu_notify_event();
3447 /***********************************************************/
3448 /* bottom halves (can be seen as timers which expire ASAP) */
3459 static QEMUBH
*first_bh
= NULL
;
3461 QEMUBH
*qemu_bh_new(QEMUBHFunc
*cb
, void *opaque
)
3464 bh
= qemu_mallocz(sizeof(QEMUBH
));
3466 bh
->opaque
= opaque
;
3467 bh
->next
= first_bh
;
3472 int qemu_bh_poll(void)
3478 for (bh
= first_bh
; bh
; bh
= bh
->next
) {
3479 if (!bh
->deleted
&& bh
->scheduled
) {
3488 /* remove deleted bhs */
3502 void qemu_bh_schedule_idle(QEMUBH
*bh
)
3510 void qemu_bh_schedule(QEMUBH
*bh
)
3516 /* stop the currently executing CPU to execute the BH ASAP */
3517 qemu_notify_event();
3520 void qemu_bh_cancel(QEMUBH
*bh
)
3525 void qemu_bh_delete(QEMUBH
*bh
)
3531 static void qemu_bh_update_timeout(int *timeout
)
3535 for (bh
= first_bh
; bh
; bh
= bh
->next
) {
3536 if (!bh
->deleted
&& bh
->scheduled
) {
3538 /* idle bottom halves will be polled at least
3540 *timeout
= MIN(10, *timeout
);
3542 /* non-idle bottom halves will be executed
3551 /***********************************************************/
3552 /* machine registration */
3554 static QEMUMachine
*first_machine
= NULL
;
3555 QEMUMachine
*current_machine
= NULL
;
3557 int qemu_register_machine(QEMUMachine
*m
)
3560 pm
= &first_machine
;
3568 static QEMUMachine
*find_machine(const char *name
)
3572 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
3573 if (!strcmp(m
->name
, name
))
3579 static QEMUMachine
*find_default_machine(void)
3583 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
3584 if (m
->is_default
) {
3591 /***********************************************************/
3592 /* main execution loop */
3594 static void gui_update(void *opaque
)
3596 uint64_t interval
= GUI_REFRESH_INTERVAL
;
3597 DisplayState
*ds
= opaque
;
3598 DisplayChangeListener
*dcl
= ds
->listeners
;
3602 while (dcl
!= NULL
) {
3603 if (dcl
->gui_timer_interval
&&
3604 dcl
->gui_timer_interval
< interval
)
3605 interval
= dcl
->gui_timer_interval
;
3608 qemu_mod_timer(ds
->gui_timer
, interval
+ qemu_get_clock(rt_clock
));
3611 static void nographic_update(void *opaque
)
3613 uint64_t interval
= GUI_REFRESH_INTERVAL
;
3615 qemu_mod_timer(nographic_timer
, interval
+ qemu_get_clock(rt_clock
));
3618 struct vm_change_state_entry
{
3619 VMChangeStateHandler
*cb
;
3621 LIST_ENTRY (vm_change_state_entry
) entries
;
3624 static LIST_HEAD(vm_change_state_head
, vm_change_state_entry
) vm_change_state_head
;
3626 VMChangeStateEntry
*qemu_add_vm_change_state_handler(VMChangeStateHandler
*cb
,
3629 VMChangeStateEntry
*e
;
3631 e
= qemu_mallocz(sizeof (*e
));
3635 LIST_INSERT_HEAD(&vm_change_state_head
, e
, entries
);
3639 void qemu_del_vm_change_state_handler(VMChangeStateEntry
*e
)
3641 LIST_REMOVE (e
, entries
);
3645 static void vm_state_notify(int running
, int reason
)
3647 VMChangeStateEntry
*e
;
3649 for (e
= vm_change_state_head
.lh_first
; e
; e
= e
->entries
.le_next
) {
3650 e
->cb(e
->opaque
, running
, reason
);
3654 static void resume_all_vcpus(void);
3655 static void pause_all_vcpus(void);
3662 vm_state_notify(1, 0);
3663 qemu_rearm_alarm_timer(alarm_timer
);
3668 /* reset/shutdown handler */
3670 typedef struct QEMUResetEntry
{
3671 QEMUResetHandler
*func
;
3674 struct QEMUResetEntry
*next
;
3677 static QEMUResetEntry
*first_reset_entry
;
3678 static int reset_requested
;
3679 static int shutdown_requested
;
3680 static int powerdown_requested
;
3681 static int debug_requested
;
3682 static int vmstop_requested
;
3684 int qemu_no_shutdown(void)
3686 int r
= no_shutdown
;
3691 int qemu_shutdown_requested(void)
3693 int r
= shutdown_requested
;
3694 shutdown_requested
= 0;
3698 int qemu_reset_requested(void)
3700 int r
= reset_requested
;
3701 reset_requested
= 0;
3705 int qemu_powerdown_requested(void)
3707 int r
= powerdown_requested
;
3708 powerdown_requested
= 0;
3712 static int qemu_debug_requested(void)
3714 int r
= debug_requested
;
3715 debug_requested
= 0;
3719 static int qemu_vmstop_requested(void)
3721 int r
= vmstop_requested
;
3722 vmstop_requested
= 0;
3726 static void do_vm_stop(int reason
)
3729 cpu_disable_ticks();
3732 vm_state_notify(0, reason
);
3736 void qemu_register_reset(QEMUResetHandler
*func
, int order
, void *opaque
)
3738 QEMUResetEntry
**pre
, *re
;
3740 pre
= &first_reset_entry
;
3741 while (*pre
!= NULL
&& (*pre
)->order
>= order
) {
3742 pre
= &(*pre
)->next
;
3744 re
= qemu_mallocz(sizeof(QEMUResetEntry
));
3746 re
->opaque
= opaque
;
3752 void qemu_system_reset(void)
3756 /* reset all devices */
3757 for(re
= first_reset_entry
; re
!= NULL
; re
= re
->next
) {
3758 re
->func(re
->opaque
);
3762 void qemu_system_reset_request(void)
3765 shutdown_requested
= 1;
3767 reset_requested
= 1;
3769 if (cpu_single_env
) {
3770 qemu_kvm_cpu_stop(cpu_single_env
);
3772 qemu_notify_event();
3775 void qemu_system_shutdown_request(void)
3777 shutdown_requested
= 1;
3778 qemu_notify_event();
3781 void qemu_system_powerdown_request(void)
3783 powerdown_requested
= 1;
3784 qemu_notify_event();
3787 #ifdef CONFIG_IOTHREAD
3788 static void qemu_system_vmstop_request(int reason
)
3790 vmstop_requested
= reason
;
3791 qemu_notify_event();
3796 static int io_thread_fd
= -1;
3798 static void qemu_event_increment(void)
3800 static const char byte
= 0;
3802 if (io_thread_fd
== -1)
3805 write(io_thread_fd
, &byte
, sizeof(byte
));
3808 static void qemu_event_read(void *opaque
)
3810 int fd
= (unsigned long)opaque
;
3813 /* Drain the notify pipe */
3816 len
= read(fd
, buffer
, sizeof(buffer
));
3817 } while ((len
== -1 && errno
== EINTR
) || len
> 0);
3820 static int qemu_event_init(void)
3829 err
= fcntl_setfl(fds
[0], O_NONBLOCK
);
3833 err
= fcntl_setfl(fds
[1], O_NONBLOCK
);
3837 qemu_set_fd_handler2(fds
[0], NULL
, qemu_event_read
, NULL
,
3838 (void *)(unsigned long)fds
[0]);
3840 io_thread_fd
= fds
[1];
3849 HANDLE qemu_event_handle
;
3851 static void dummy_event_handler(void *opaque
)
3855 static int qemu_event_init(void)
3857 qemu_event_handle
= CreateEvent(NULL
, FALSE
, FALSE
, NULL
);
3858 if (!qemu_event_handle
) {
3859 perror("Failed CreateEvent");
3862 qemu_add_wait_object(qemu_event_handle
, dummy_event_handler
, NULL
);
3866 static void qemu_event_increment(void)
3868 SetEvent(qemu_event_handle
);
3872 static int cpu_can_run(CPUState
*env
)
3881 #ifndef CONFIG_IOTHREAD
3882 static int qemu_init_main_loop(void)
3884 return qemu_event_init();
3887 void qemu_init_vcpu(void *_env
)
3889 CPUState
*env
= _env
;
3896 int qemu_cpu_self(void *env
)
3901 static void resume_all_vcpus(void)
3905 static void pause_all_vcpus(void)
3909 void qemu_cpu_kick(void *env
)
3914 void qemu_notify_event(void)
3916 CPUState
*env
= cpu_single_env
;
3918 if (kvm_enabled()) {
3919 qemu_kvm_notify_work();
3925 if (env
->kqemu_enabled
)
3926 kqemu_cpu_interrupt(env
);
3931 #define qemu_mutex_lock_iothread() do { } while (0)
3932 #define qemu_mutex_unlock_iothread() do { } while (0)
3934 void vm_stop(int reason
)
3939 #else /* CONFIG_IOTHREAD */
3941 #include "qemu-thread.h"
3943 QemuMutex qemu_global_mutex
;
3944 static QemuMutex qemu_fair_mutex
;
3946 static QemuThread io_thread
;
3948 static QemuThread
*tcg_cpu_thread
;
3949 static QemuCond
*tcg_halt_cond
;
3951 static int qemu_system_ready
;
3953 static QemuCond qemu_cpu_cond
;
3955 static QemuCond qemu_system_cond
;
3956 static QemuCond qemu_pause_cond
;
3958 static void block_io_signals(void);
3959 static void unblock_io_signals(void);
3960 static int tcg_has_work(void);
3962 static int qemu_init_main_loop(void)
3966 ret
= qemu_event_init();
3970 qemu_cond_init(&qemu_pause_cond
);
3971 qemu_mutex_init(&qemu_fair_mutex
);
3972 qemu_mutex_init(&qemu_global_mutex
);
3973 qemu_mutex_lock(&qemu_global_mutex
);
3975 unblock_io_signals();
3976 qemu_thread_self(&io_thread
);
3981 static void qemu_wait_io_event(CPUState
*env
)
3983 while (!tcg_has_work())
3984 qemu_cond_timedwait(env
->halt_cond
, &qemu_global_mutex
, 1000);
3986 qemu_mutex_unlock(&qemu_global_mutex
);
3989 * Users of qemu_global_mutex can be starved, having no chance
3990 * to acquire it since this path will get to it first.
3991 * So use another lock to provide fairness.
3993 qemu_mutex_lock(&qemu_fair_mutex
);
3994 qemu_mutex_unlock(&qemu_fair_mutex
);
3996 qemu_mutex_lock(&qemu_global_mutex
);
4000 qemu_cond_signal(&qemu_pause_cond
);
4004 static int qemu_cpu_exec(CPUState
*env
);
4006 static void *kvm_cpu_thread_fn(void *arg
)
4008 CPUState
*env
= arg
;
4011 qemu_thread_self(env
->thread
);
4013 /* signal CPU creation */
4014 qemu_mutex_lock(&qemu_global_mutex
);
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);
4023 if (cpu_can_run(env
))
4025 qemu_wait_io_event(env
);
4031 static void tcg_cpu_exec(void);
4033 static void *tcg_cpu_thread_fn(void *arg
)
4035 CPUState
*env
= arg
;
4038 qemu_thread_self(env
->thread
);
4040 /* signal CPU creation */
4041 qemu_mutex_lock(&qemu_global_mutex
);
4042 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
)
4044 qemu_cond_signal(&qemu_cpu_cond
);
4046 /* and wait for machine initialization */
4047 while (!qemu_system_ready
)
4048 qemu_cond_timedwait(&qemu_system_cond
, &qemu_global_mutex
, 100);
4052 qemu_wait_io_event(cur_cpu
);
4058 void qemu_cpu_kick(void *_env
)
4060 CPUState
*env
= _env
;
4061 qemu_cond_broadcast(env
->halt_cond
);
4063 qemu_thread_signal(env
->thread
, SIGUSR1
);
4066 int qemu_cpu_self(void *env
)
4068 return (cpu_single_env
!= NULL
);
4071 static void cpu_signal(int sig
)
4074 cpu_exit(cpu_single_env
);
4077 static void block_io_signals(void)
4080 struct sigaction sigact
;
4083 sigaddset(&set
, SIGUSR2
);
4084 sigaddset(&set
, SIGIO
);
4085 sigaddset(&set
, SIGALRM
);
4086 pthread_sigmask(SIG_BLOCK
, &set
, NULL
);
4089 sigaddset(&set
, SIGUSR1
);
4090 pthread_sigmask(SIG_UNBLOCK
, &set
, NULL
);
4092 memset(&sigact
, 0, sizeof(sigact
));
4093 sigact
.sa_handler
= cpu_signal
;
4094 sigaction(SIGUSR1
, &sigact
, NULL
);
4097 static void unblock_io_signals(void)
4102 sigaddset(&set
, SIGUSR2
);
4103 sigaddset(&set
, SIGIO
);
4104 sigaddset(&set
, SIGALRM
);
4105 pthread_sigmask(SIG_UNBLOCK
, &set
, NULL
);
4108 sigaddset(&set
, SIGUSR1
);
4109 pthread_sigmask(SIG_BLOCK
, &set
, NULL
);
4112 static void qemu_signal_lock(unsigned int msecs
)
4114 qemu_mutex_lock(&qemu_fair_mutex
);
4116 while (qemu_mutex_trylock(&qemu_global_mutex
)) {
4117 qemu_thread_signal(tcg_cpu_thread
, SIGUSR1
);
4118 if (!qemu_mutex_timedlock(&qemu_global_mutex
, msecs
))
4121 qemu_mutex_unlock(&qemu_fair_mutex
);
4124 static void qemu_mutex_lock_iothread(void)
4126 if (kvm_enabled()) {
4127 qemu_mutex_lock(&qemu_fair_mutex
);
4128 qemu_mutex_lock(&qemu_global_mutex
);
4129 qemu_mutex_unlock(&qemu_fair_mutex
);
4131 qemu_signal_lock(100);
4134 static void qemu_mutex_unlock_iothread(void)
4136 qemu_mutex_unlock(&qemu_global_mutex
);
4139 static int all_vcpus_paused(void)
4141 CPUState
*penv
= first_cpu
;
4146 penv
= (CPUState
*)penv
->next_cpu
;
4152 static void pause_all_vcpus(void)
4154 CPUState
*penv
= first_cpu
;
4158 qemu_thread_signal(penv
->thread
, SIGUSR1
);
4159 qemu_cpu_kick(penv
);
4160 penv
= (CPUState
*)penv
->next_cpu
;
4163 while (!all_vcpus_paused()) {
4164 qemu_cond_timedwait(&qemu_pause_cond
, &qemu_global_mutex
, 100);
4167 qemu_thread_signal(penv
->thread
, SIGUSR1
);
4168 penv
= (CPUState
*)penv
->next_cpu
;
4173 static void resume_all_vcpus(void)
4175 CPUState
*penv
= first_cpu
;
4180 qemu_thread_signal(penv
->thread
, SIGUSR1
);
4181 qemu_cpu_kick(penv
);
4182 penv
= (CPUState
*)penv
->next_cpu
;
4186 static void tcg_init_vcpu(void *_env
)
4188 CPUState
*env
= _env
;
4189 /* share a single thread for all cpus with TCG */
4190 if (!tcg_cpu_thread
) {
4191 env
->thread
= qemu_mallocz(sizeof(QemuThread
));
4192 env
->halt_cond
= qemu_mallocz(sizeof(QemuCond
));
4193 qemu_cond_init(env
->halt_cond
);
4194 qemu_thread_create(env
->thread
, tcg_cpu_thread_fn
, env
);
4195 while (env
->created
== 0)
4196 qemu_cond_timedwait(&qemu_cpu_cond
, &qemu_global_mutex
, 100);
4197 tcg_cpu_thread
= env
->thread
;
4198 tcg_halt_cond
= env
->halt_cond
;
4200 env
->thread
= tcg_cpu_thread
;
4201 env
->halt_cond
= tcg_halt_cond
;
4205 static void kvm_start_vcpu(CPUState
*env
)
4208 env
->thread
= qemu_mallocz(sizeof(QemuThread
));
4209 env
->halt_cond
= qemu_mallocz(sizeof(QemuCond
));
4210 qemu_cond_init(env
->halt_cond
);
4211 qemu_thread_create(env
->thread
, kvm_cpu_thread_fn
, env
);
4212 while (env
->created
== 0)
4213 qemu_cond_timedwait(&qemu_cpu_cond
, &qemu_global_mutex
, 100);
4216 void qemu_init_vcpu(void *_env
)
4218 CPUState
*env
= _env
;
4221 kvm_start_vcpu(env
);
4226 void qemu_notify_event(void)
4228 qemu_event_increment();
4231 void vm_stop(int reason
)
4234 qemu_thread_self(&me
);
4236 if (!qemu_thread_equal(&me
, &io_thread
)) {
4237 qemu_system_vmstop_request(reason
);
4239 * FIXME: should not return to device code in case
4240 * vm_stop() has been requested.
4242 if (cpu_single_env
) {
4243 cpu_exit(cpu_single_env
);
4244 cpu_single_env
->stop
= 1;
4255 static void host_main_loop_wait(int *timeout
)
4261 /* XXX: need to suppress polling by better using win32 events */
4263 for(pe
= first_polling_entry
; pe
!= NULL
; pe
= pe
->next
) {
4264 ret
|= pe
->func(pe
->opaque
);
4268 WaitObjects
*w
= &wait_objects
;
4270 ret
= WaitForMultipleObjects(w
->num
, w
->events
, FALSE
, *timeout
);
4271 if (WAIT_OBJECT_0
+ 0 <= ret
&& ret
<= WAIT_OBJECT_0
+ w
->num
- 1) {
4272 if (w
->func
[ret
- WAIT_OBJECT_0
])
4273 w
->func
[ret
- WAIT_OBJECT_0
](w
->opaque
[ret
- WAIT_OBJECT_0
]);
4275 /* Check for additional signaled events */
4276 for(i
= (ret
- WAIT_OBJECT_0
+ 1); i
< w
->num
; i
++) {
4278 /* Check if event is signaled */
4279 ret2
= WaitForSingleObject(w
->events
[i
], 0);
4280 if(ret2
== WAIT_OBJECT_0
) {
4282 w
->func
[i
](w
->opaque
[i
]);
4283 } else if (ret2
== WAIT_TIMEOUT
) {
4285 err
= GetLastError();
4286 fprintf(stderr
, "WaitForSingleObject error %d %d\n", i
, err
);
4289 } else if (ret
== WAIT_TIMEOUT
) {
4291 err
= GetLastError();
4292 fprintf(stderr
, "WaitForMultipleObjects error %d %d\n", ret
, err
);
4299 static void host_main_loop_wait(int *timeout
)
4304 void main_loop_wait(int timeout
)
4306 IOHandlerRecord
*ioh
;
4307 fd_set rfds
, wfds
, xfds
;
4311 qemu_bh_update_timeout(&timeout
);
4313 host_main_loop_wait(&timeout
);
4315 /* poll any events */
4316 /* XXX: separate device handlers from system ones */
4321 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
4325 (!ioh
->fd_read_poll
||
4326 ioh
->fd_read_poll(ioh
->opaque
) != 0)) {
4327 FD_SET(ioh
->fd
, &rfds
);
4331 if (ioh
->fd_write
) {
4332 FD_SET(ioh
->fd
, &wfds
);
4338 tv
.tv_sec
= timeout
/ 1000;
4339 tv
.tv_usec
= (timeout
% 1000) * 1000;
4341 #if defined(CONFIG_SLIRP)
4342 if (slirp_is_inited()) {
4343 slirp_select_fill(&nfds
, &rfds
, &wfds
, &xfds
);
4346 ret
= qemu_select(nfds
+ 1, &rfds
, &wfds
, &xfds
, &tv
);
4348 IOHandlerRecord
**pioh
;
4350 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
4351 if (!ioh
->deleted
&& ioh
->fd_read
&& FD_ISSET(ioh
->fd
, &rfds
)) {
4352 ioh
->fd_read(ioh
->opaque
);
4353 if (!(ioh
->fd_read_poll
&& ioh
->fd_read_poll(ioh
->opaque
)))
4354 FD_CLR(ioh
->fd
, &rfds
);
4356 if (!ioh
->deleted
&& ioh
->fd_write
&& FD_ISSET(ioh
->fd
, &wfds
)) {
4357 ioh
->fd_write(ioh
->opaque
);
4361 /* remove deleted IO handlers */
4362 pioh
= &first_io_handler
;
4372 #if defined(CONFIG_SLIRP)
4373 if (slirp_is_inited()) {
4379 slirp_select_poll(&rfds
, &wfds
, &xfds
);
4383 /* rearm timer, if not periodic */
4384 if (alarm_timer
->flags
& ALARM_FLAG_EXPIRED
) {
4385 alarm_timer
->flags
&= ~ALARM_FLAG_EXPIRED
;
4386 qemu_rearm_alarm_timer(alarm_timer
);
4389 /* vm time timers */
4391 if (!cur_cpu
|| likely(!(cur_cpu
->singlestep_enabled
& SSTEP_NOTIMER
)))
4392 qemu_run_timers(&active_timers
[QEMU_TIMER_VIRTUAL
],
4393 qemu_get_clock(vm_clock
));
4396 /* real time timers */
4397 qemu_run_timers(&active_timers
[QEMU_TIMER_REALTIME
],
4398 qemu_get_clock(rt_clock
));
4400 /* Check bottom-halves last in case any of the earlier events triggered
4406 static int qemu_cpu_exec(CPUState
*env
)
4409 #ifdef CONFIG_PROFILER
4413 #ifdef CONFIG_PROFILER
4414 ti
= profile_getclock();
4419 qemu_icount
-= (env
->icount_decr
.u16
.low
+ env
->icount_extra
);
4420 env
->icount_decr
.u16
.low
= 0;
4421 env
->icount_extra
= 0;
4422 count
= qemu_next_deadline();
4423 count
= (count
+ (1 << icount_time_shift
) - 1)
4424 >> icount_time_shift
;
4425 qemu_icount
+= count
;
4426 decr
= (count
> 0xffff) ? 0xffff : count
;
4428 env
->icount_decr
.u16
.low
= decr
;
4429 env
->icount_extra
= count
;
4431 ret
= cpu_exec(env
);
4432 #ifdef CONFIG_PROFILER
4433 qemu_time
+= profile_getclock() - ti
;
4436 /* Fold pending instructions back into the
4437 instruction counter, and clear the interrupt flag. */
4438 qemu_icount
-= (env
->icount_decr
.u16
.low
4439 + env
->icount_extra
);
4440 env
->icount_decr
.u32
= 0;
4441 env
->icount_extra
= 0;
4446 static void tcg_cpu_exec(void)
4450 if (next_cpu
== NULL
)
4451 next_cpu
= first_cpu
;
4452 for (; next_cpu
!= NULL
; next_cpu
= next_cpu
->next_cpu
) {
4453 CPUState
*env
= cur_cpu
= next_cpu
;
4457 if (timer_alarm_pending
) {
4458 timer_alarm_pending
= 0;
4461 if (cpu_can_run(env
))
4462 ret
= qemu_cpu_exec(env
);
4463 if (ret
== EXCP_DEBUG
) {
4464 gdb_set_stop_cpu(env
);
4465 debug_requested
= 1;
4471 static int cpu_has_work(CPUState
*env
)
4479 if (qemu_cpu_has_work(env
))
4484 static int tcg_has_work(void)
4488 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
)
4489 if (cpu_has_work(env
))
4494 static int qemu_calculate_timeout(void)
4496 #ifndef CONFIG_IOTHREAD
4501 else if (tcg_has_work())
4503 else if (!use_icount
)
4506 /* XXX: use timeout computed from timers */
4509 /* Advance virtual time to the next event. */
4510 if (use_icount
== 1) {
4511 /* When not using an adaptive execution frequency
4512 we tend to get badly out of sync with real time,
4513 so just delay for a reasonable amount of time. */
4516 delta
= cpu_get_icount() - cpu_get_clock();
4519 /* If virtual time is ahead of real time then just
4521 timeout
= (delta
/ 1000000) + 1;
4523 /* Wait for either IO to occur or the next
4525 add
= qemu_next_deadline();
4526 /* We advance the timer before checking for IO.
4527 Limit the amount we advance so that early IO
4528 activity won't get the guest too far ahead. */
4532 add
= (add
+ (1 << icount_time_shift
) - 1)
4533 >> icount_time_shift
;
4535 timeout
= delta
/ 1000000;
4542 #else /* CONFIG_IOTHREAD */
4547 static int vm_can_run(void)
4549 if (powerdown_requested
)
4551 if (reset_requested
)
4553 if (shutdown_requested
)
4555 if (debug_requested
)
4560 static void main_loop(void)
4564 if (kvm_enabled()) {
4566 cpu_disable_ticks();
4570 #ifdef CONFIG_IOTHREAD
4571 qemu_system_ready
= 1;
4572 qemu_cond_broadcast(&qemu_system_cond
);
4577 #ifdef CONFIG_PROFILER
4580 #ifndef CONFIG_IOTHREAD
4583 #ifdef CONFIG_PROFILER
4584 ti
= profile_getclock();
4586 main_loop_wait(qemu_calculate_timeout());
4587 #ifdef CONFIG_PROFILER
4588 dev_time
+= profile_getclock() - ti
;
4590 } while (vm_can_run());
4592 if (qemu_debug_requested())
4593 vm_stop(EXCP_DEBUG
);
4594 if (qemu_shutdown_requested()) {
4601 if (qemu_reset_requested()) {
4603 qemu_system_reset();
4606 if (qemu_powerdown_requested())
4607 qemu_system_powerdown();
4608 if ((r
= qemu_vmstop_requested()))
4614 static void version(void)
4616 printf("QEMU PC emulator version " QEMU_VERSION QEMU_PKGVERSION
", Copyright (c) 2003-2008 Fabrice Bellard\n");
4619 static void help(int exitcode
)
4622 printf("usage: %s [options] [disk_image]\n"
4624 "'disk_image' is a raw hard image image for IDE hard disk 0\n"
4626 #define DEF(option, opt_arg, opt_enum, opt_help) \
4628 #define DEFHEADING(text) stringify(text) "\n"
4629 #include "qemu-options.h"
4634 "During emulation, the following keys are useful:\n"
4635 "ctrl-alt-f toggle full screen\n"
4636 "ctrl-alt-n switch to virtual console 'n'\n"
4637 "ctrl-alt toggle mouse and keyboard grab\n"
4639 "When using -nographic, press 'ctrl-a h' to get some help.\n"
4644 DEFAULT_NETWORK_SCRIPT
,
4645 DEFAULT_NETWORK_DOWN_SCRIPT
,
4647 DEFAULT_GDBSTUB_PORT
,
4652 #define HAS_ARG 0x0001
4655 #define DEF(option, opt_arg, opt_enum, opt_help) \
4657 #define DEFHEADING(text)
4658 #include "qemu-options.h"
4664 typedef struct QEMUOption
{
4670 static const QEMUOption qemu_options
[] = {
4671 { "h", 0, QEMU_OPTION_h
},
4672 #define DEF(option, opt_arg, opt_enum, opt_help) \
4673 { option, opt_arg, opt_enum },
4674 #define DEFHEADING(text)
4675 #include "qemu-options.h"
4683 struct soundhw soundhw
[] = {
4684 #ifdef HAS_AUDIO_CHOICE
4685 #if defined(TARGET_I386) || defined(TARGET_MIPS)
4691 { .init_isa
= pcspk_audio_init
}
4698 "Creative Sound Blaster 16",
4701 { .init_isa
= SB16_init
}
4705 #ifdef CONFIG_CS4231A
4711 { .init_isa
= cs4231a_init
}
4719 "Yamaha YMF262 (OPL3)",
4721 "Yamaha YM3812 (OPL2)",
4725 { .init_isa
= Adlib_init
}
4732 "Gravis Ultrasound GF1",
4735 { .init_isa
= GUS_init
}
4742 "Intel 82801AA AC97 Audio",
4745 { .init_pci
= ac97_init
}
4749 #ifdef CONFIG_ES1370
4752 "ENSONIQ AudioPCI ES1370",
4755 { .init_pci
= es1370_init
}
4759 #endif /* HAS_AUDIO_CHOICE */
4761 { NULL
, NULL
, 0, 0, { NULL
} }
4764 static void select_soundhw (const char *optarg
)
4768 if (*optarg
== '?') {
4771 printf ("Valid sound card names (comma separated):\n");
4772 for (c
= soundhw
; c
->name
; ++c
) {
4773 printf ("%-11s %s\n", c
->name
, c
->descr
);
4775 printf ("\n-soundhw all will enable all of the above\n");
4776 exit (*optarg
!= '?');
4784 if (!strcmp (optarg
, "all")) {
4785 for (c
= soundhw
; c
->name
; ++c
) {
4793 e
= strchr (p
, ',');
4794 l
= !e
? strlen (p
) : (size_t) (e
- p
);
4796 for (c
= soundhw
; c
->name
; ++c
) {
4797 if (!strncmp (c
->name
, p
, l
)) {
4806 "Unknown sound card name (too big to show)\n");
4809 fprintf (stderr
, "Unknown sound card name `%.*s'\n",
4814 p
+= l
+ (e
!= NULL
);
4818 goto show_valid_cards
;
4823 static void select_vgahw (const char *p
)
4827 cirrus_vga_enabled
= 0;
4828 std_vga_enabled
= 0;
4831 if (strstart(p
, "std", &opts
)) {
4832 std_vga_enabled
= 1;
4833 } else if (strstart(p
, "cirrus", &opts
)) {
4834 cirrus_vga_enabled
= 1;
4835 } else if (strstart(p
, "vmware", &opts
)) {
4837 } else if (strstart(p
, "xenfb", &opts
)) {
4839 } else if (!strstart(p
, "none", &opts
)) {
4841 fprintf(stderr
, "Unknown vga type: %s\n", p
);
4845 const char *nextopt
;
4847 if (strstart(opts
, ",retrace=", &nextopt
)) {
4849 if (strstart(opts
, "dumb", &nextopt
))
4850 vga_retrace_method
= VGA_RETRACE_DUMB
;
4851 else if (strstart(opts
, "precise", &nextopt
))
4852 vga_retrace_method
= VGA_RETRACE_PRECISE
;
4853 else goto invalid_vga
;
4854 } else goto invalid_vga
;
4860 static BOOL WINAPI
qemu_ctrl_handler(DWORD type
)
4862 exit(STATUS_CONTROL_C_EXIT
);
4867 int qemu_uuid_parse(const char *str
, uint8_t *uuid
)
4871 if(strlen(str
) != 36)
4874 ret
= sscanf(str
, UUID_FMT
, &uuid
[0], &uuid
[1], &uuid
[2], &uuid
[3],
4875 &uuid
[4], &uuid
[5], &uuid
[6], &uuid
[7], &uuid
[8], &uuid
[9],
4876 &uuid
[10], &uuid
[11], &uuid
[12], &uuid
[13], &uuid
[14], &uuid
[15]);
4882 smbios_add_field(1, offsetof(struct smbios_type_1
, uuid
), 16, uuid
);
4888 #define MAX_NET_CLIENTS 32
4892 static void termsig_handler(int signal
)
4894 qemu_system_shutdown_request();
4897 static void sigchld_handler(int signal
)
4899 waitpid(-1, NULL
, WNOHANG
);
4902 static void sighandler_setup(void)
4904 struct sigaction act
;
4906 memset(&act
, 0, sizeof(act
));
4907 act
.sa_handler
= termsig_handler
;
4908 sigaction(SIGINT
, &act
, NULL
);
4909 sigaction(SIGHUP
, &act
, NULL
);
4910 sigaction(SIGTERM
, &act
, NULL
);
4912 act
.sa_handler
= sigchld_handler
;
4913 act
.sa_flags
= SA_NOCLDSTOP
;
4914 sigaction(SIGCHLD
, &act
, NULL
);
4920 /* Look for support files in the same directory as the executable. */
4921 static char *find_datadir(const char *argv0
)
4927 len
= GetModuleFileName(NULL
, buf
, sizeof(buf
) - 1);
4934 while (p
!= buf
&& *p
!= '\\')
4937 if (access(buf
, R_OK
) == 0) {
4938 return qemu_strdup(buf
);
4944 /* Find a likely location for support files using the location of the binary.
4945 For installed binaries this will be "$bindir/../share/qemu". When
4946 running from the build tree this will be "$bindir/../pc-bios". */
4947 #define SHARE_SUFFIX "/share/qemu"
4948 #define BUILD_SUFFIX "/pc-bios"
4949 static char *find_datadir(const char *argv0
)
4959 #if defined(__linux__)
4962 len
= readlink("/proc/self/exe", buf
, sizeof(buf
) - 1);
4968 #elif defined(__FreeBSD__)
4971 len
= readlink("/proc/curproc/file", buf
, sizeof(buf
) - 1);
4978 /* If we don't have any way of figuring out the actual executable
4979 location then try argv[0]. */
4984 p
= realpath(argv0
, p
);
4992 max_len
= strlen(dir
) +
4993 MAX(strlen(SHARE_SUFFIX
), strlen(BUILD_SUFFIX
)) + 1;
4994 res
= qemu_mallocz(max_len
);
4995 snprintf(res
, max_len
, "%s%s", dir
, SHARE_SUFFIX
);
4996 if (access(res
, R_OK
)) {
4997 snprintf(res
, max_len
, "%s%s", dir
, BUILD_SUFFIX
);
4998 if (access(res
, R_OK
)) {
5012 char *qemu_find_file(int type
, const char *name
)
5018 /* If name contains path separators then try it as a straight path. */
5019 if ((strchr(name
, '/') || strchr(name
, '\\'))
5020 && access(name
, R_OK
) == 0) {
5021 return strdup(name
);
5024 case QEMU_FILE_TYPE_BIOS
:
5027 case QEMU_FILE_TYPE_KEYMAP
:
5028 subdir
= "keymaps/";
5033 len
= strlen(data_dir
) + strlen(name
) + strlen(subdir
) + 2;
5034 buf
= qemu_mallocz(len
);
5035 snprintf(buf
, len
, "%s/%s%s", data_dir
, subdir
, name
);
5036 if (access(buf
, R_OK
)) {
5043 int main(int argc
, char **argv
, char **envp
)
5045 const char *gdbstub_dev
= NULL
;
5046 uint32_t boot_devices_bitmap
= 0;
5048 int snapshot
, linux_boot
, net_boot
;
5049 const char *initrd_filename
;
5050 const char *kernel_filename
, *kernel_cmdline
;
5051 const char *boot_devices
= "";
5053 DisplayChangeListener
*dcl
;
5054 int cyls
, heads
, secs
, translation
;
5055 const char *net_clients
[MAX_NET_CLIENTS
];
5057 const char *bt_opts
[MAX_BT_CMDLINE
];
5061 const char *r
, *optarg
;
5062 CharDriverState
*monitor_hd
= NULL
;
5063 const char *monitor_device
;
5064 const char *serial_devices
[MAX_SERIAL_PORTS
];
5065 int serial_device_index
;
5066 const char *parallel_devices
[MAX_PARALLEL_PORTS
];
5067 int parallel_device_index
;
5068 const char *virtio_consoles
[MAX_VIRTIO_CONSOLES
];
5069 int virtio_console_index
;
5070 const char *loadvm
= NULL
;
5071 QEMUMachine
*machine
;
5072 const char *cpu_model
;
5073 const char *usb_devices
[MAX_USB_CMDLINE
];
5074 int usb_devices_index
;
5079 const char *pid_file
= NULL
;
5080 const char *incoming
= NULL
;
5083 struct passwd
*pwd
= NULL
;
5084 const char *chroot_dir
= NULL
;
5085 const char *run_as
= NULL
;
5088 int show_vnc_port
= 0;
5090 qemu_cache_utils_init(envp
);
5092 LIST_INIT (&vm_change_state_head
);
5095 struct sigaction act
;
5096 sigfillset(&act
.sa_mask
);
5098 act
.sa_handler
= SIG_IGN
;
5099 sigaction(SIGPIPE
, &act
, NULL
);
5102 SetConsoleCtrlHandler(qemu_ctrl_handler
, TRUE
);
5103 /* Note: cpu_interrupt() is currently not SMP safe, so we force
5104 QEMU to run on a single CPU */
5109 h
= GetCurrentProcess();
5110 if (GetProcessAffinityMask(h
, &mask
, &smask
)) {
5111 for(i
= 0; i
< 32; i
++) {
5112 if (mask
& (1 << i
))
5117 SetProcessAffinityMask(h
, mask
);
5123 module_call_init(MODULE_INIT_MACHINE
);
5124 machine
= find_default_machine();
5126 initrd_filename
= NULL
;
5129 kernel_filename
= NULL
;
5130 kernel_cmdline
= "";
5131 cyls
= heads
= secs
= 0;
5132 translation
= BIOS_ATA_TRANSLATION_AUTO
;
5133 monitor_device
= "vc:80Cx24C";
5135 serial_devices
[0] = "vc:80Cx24C";
5136 for(i
= 1; i
< MAX_SERIAL_PORTS
; i
++)
5137 serial_devices
[i
] = NULL
;
5138 serial_device_index
= 0;
5140 parallel_devices
[0] = "vc:80Cx24C";
5141 for(i
= 1; i
< MAX_PARALLEL_PORTS
; i
++)
5142 parallel_devices
[i
] = NULL
;
5143 parallel_device_index
= 0;
5145 for(i
= 0; i
< MAX_VIRTIO_CONSOLES
; i
++)
5146 virtio_consoles
[i
] = NULL
;
5147 virtio_console_index
= 0;
5149 for (i
= 0; i
< MAX_NODES
; i
++) {
5151 node_cpumask
[i
] = 0;
5154 usb_devices_index
= 0;
5155 assigned_devices_index
= 0;
5169 register_watchdogs();
5177 hda_index
= drive_add(argv
[optind
++], HD_ALIAS
, 0);
5179 const QEMUOption
*popt
;
5182 /* Treat --foo the same as -foo. */
5185 popt
= qemu_options
;
5188 fprintf(stderr
, "%s: invalid option -- '%s'\n",
5192 if (!strcmp(popt
->name
, r
+ 1))
5196 if (popt
->flags
& HAS_ARG
) {
5197 if (optind
>= argc
) {
5198 fprintf(stderr
, "%s: option '%s' requires an argument\n",
5202 optarg
= argv
[optind
++];
5207 switch(popt
->index
) {
5209 machine
= find_machine(optarg
);
5212 printf("Supported machines are:\n");
5213 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
5214 printf("%-10s %s%s\n",
5216 m
->is_default
? " (default)" : "");
5218 exit(*optarg
!= '?');
5221 case QEMU_OPTION_cpu
:
5222 /* hw initialization will check this */
5223 if (*optarg
== '?') {
5224 /* XXX: implement xxx_cpu_list for targets that still miss it */
5225 #if defined(cpu_list)
5226 cpu_list(stdout
, &fprintf
);
5233 case QEMU_OPTION_initrd
:
5234 initrd_filename
= optarg
;
5236 case QEMU_OPTION_hda
:
5238 hda_index
= drive_add(optarg
, HD_ALIAS
, 0);
5240 hda_index
= drive_add(optarg
, HD_ALIAS
5241 ",cyls=%d,heads=%d,secs=%d%s",
5242 0, cyls
, heads
, secs
,
5243 translation
== BIOS_ATA_TRANSLATION_LBA
?
5245 translation
== BIOS_ATA_TRANSLATION_NONE
?
5246 ",trans=none" : "");
5248 case QEMU_OPTION_hdb
:
5249 case QEMU_OPTION_hdc
:
5250 case QEMU_OPTION_hdd
:
5251 drive_add(optarg
, HD_ALIAS
, popt
->index
- QEMU_OPTION_hda
);
5253 case QEMU_OPTION_drive
:
5254 drive_add(NULL
, "%s", optarg
);
5256 case QEMU_OPTION_mtdblock
:
5257 drive_add(optarg
, MTD_ALIAS
);
5259 case QEMU_OPTION_sd
:
5260 drive_add(optarg
, SD_ALIAS
);
5262 case QEMU_OPTION_pflash
:
5263 drive_add(optarg
, PFLASH_ALIAS
);
5265 case QEMU_OPTION_snapshot
:
5268 case QEMU_OPTION_hdachs
:
5272 cyls
= strtol(p
, (char **)&p
, 0);
5273 if (cyls
< 1 || cyls
> 16383)
5278 heads
= strtol(p
, (char **)&p
, 0);
5279 if (heads
< 1 || heads
> 16)
5284 secs
= strtol(p
, (char **)&p
, 0);
5285 if (secs
< 1 || secs
> 63)
5289 if (!strcmp(p
, "none"))
5290 translation
= BIOS_ATA_TRANSLATION_NONE
;
5291 else if (!strcmp(p
, "lba"))
5292 translation
= BIOS_ATA_TRANSLATION_LBA
;
5293 else if (!strcmp(p
, "auto"))
5294 translation
= BIOS_ATA_TRANSLATION_AUTO
;
5297 } else if (*p
!= '\0') {
5299 fprintf(stderr
, "qemu: invalid physical CHS format\n");
5302 if (hda_index
!= -1)
5303 snprintf(drives_opt
[hda_index
].opt
,
5304 sizeof(drives_opt
[hda_index
].opt
),
5305 HD_ALIAS
",cyls=%d,heads=%d,secs=%d%s",
5306 0, cyls
, heads
, secs
,
5307 translation
== BIOS_ATA_TRANSLATION_LBA
?
5309 translation
== BIOS_ATA_TRANSLATION_NONE
?
5310 ",trans=none" : "");
5313 case QEMU_OPTION_numa
:
5314 if (nb_numa_nodes
>= MAX_NODES
) {
5315 fprintf(stderr
, "qemu: too many NUMA nodes\n");
5320 case QEMU_OPTION_nographic
:
5321 display_type
= DT_NOGRAPHIC
;
5323 #ifdef CONFIG_CURSES
5324 case QEMU_OPTION_curses
:
5325 display_type
= DT_CURSES
;
5328 case QEMU_OPTION_portrait
:
5331 case QEMU_OPTION_kernel
:
5332 kernel_filename
= optarg
;
5334 case QEMU_OPTION_append
:
5335 kernel_cmdline
= optarg
;
5337 case QEMU_OPTION_cdrom
:
5338 drive_add(optarg
, CDROM_ALIAS
);
5340 case QEMU_OPTION_boot
:
5341 boot_devices
= optarg
;
5342 /* We just do some generic consistency checks */
5344 /* Could easily be extended to 64 devices if needed */
5347 boot_devices_bitmap
= 0;
5348 for (p
= boot_devices
; *p
!= '\0'; p
++) {
5349 /* Allowed boot devices are:
5350 * a b : floppy disk drives
5351 * c ... f : IDE disk drives
5352 * g ... m : machine implementation dependant drives
5353 * n ... p : network devices
5354 * It's up to each machine implementation to check
5355 * if the given boot devices match the actual hardware
5356 * implementation and firmware features.
5358 if (*p
< 'a' || *p
> 'q') {
5359 fprintf(stderr
, "Invalid boot device '%c'\n", *p
);
5362 if (boot_devices_bitmap
& (1 << (*p
- 'a'))) {
5364 "Boot device '%c' was given twice\n",*p
);
5367 boot_devices_bitmap
|= 1 << (*p
- 'a');
5371 case QEMU_OPTION_fda
:
5372 case QEMU_OPTION_fdb
:
5373 drive_add(optarg
, FD_ALIAS
, popt
->index
- QEMU_OPTION_fda
);
5376 case QEMU_OPTION_no_fd_bootchk
:
5380 case QEMU_OPTION_net
:
5381 if (nb_net_clients
>= MAX_NET_CLIENTS
) {
5382 fprintf(stderr
, "qemu: too many network clients\n");
5385 net_clients
[nb_net_clients
] = optarg
;
5389 case QEMU_OPTION_tftp
:
5390 legacy_tftp_prefix
= optarg
;
5392 case QEMU_OPTION_bootp
:
5393 legacy_bootp_filename
= optarg
;
5396 case QEMU_OPTION_smb
:
5397 net_slirp_smb(optarg
);
5400 case QEMU_OPTION_redir
:
5401 net_slirp_redir(optarg
);
5404 case QEMU_OPTION_bt
:
5405 if (nb_bt_opts
>= MAX_BT_CMDLINE
) {
5406 fprintf(stderr
, "qemu: too many bluetooth options\n");
5409 bt_opts
[nb_bt_opts
++] = optarg
;
5412 case QEMU_OPTION_audio_help
:
5416 case QEMU_OPTION_soundhw
:
5417 select_soundhw (optarg
);
5423 case QEMU_OPTION_version
:
5427 case QEMU_OPTION_m
: {
5431 value
= strtoul(optarg
, &ptr
, 10);
5433 case 0: case 'M': case 'm':
5440 fprintf(stderr
, "qemu: invalid ram size: %s\n", optarg
);
5444 /* On 32-bit hosts, QEMU is limited by virtual address space */
5445 if (value
> (2047 << 20)
5446 #ifndef CONFIG_KQEMU
5447 && HOST_LONG_BITS
== 32
5450 fprintf(stderr
, "qemu: at most 2047 MB RAM can be simulated\n");
5453 if (value
!= (uint64_t)(ram_addr_t
)value
) {
5454 fprintf(stderr
, "qemu: ram size too large\n");
5463 const CPULogItem
*item
;
5465 mask
= cpu_str_to_log_mask(optarg
);
5467 printf("Log items (comma separated):\n");
5468 for(item
= cpu_log_items
; item
->mask
!= 0; item
++) {
5469 printf("%-10s %s\n", item
->name
, item
->help
);
5477 gdbstub_dev
= "tcp::" DEFAULT_GDBSTUB_PORT
;
5479 case QEMU_OPTION_gdb
:
5480 gdbstub_dev
= optarg
;
5485 case QEMU_OPTION_bios
:
5488 case QEMU_OPTION_singlestep
:
5496 keyboard_layout
= optarg
;
5499 case QEMU_OPTION_localtime
:
5502 case QEMU_OPTION_vga
:
5503 select_vgahw (optarg
);
5505 #if defined(TARGET_PPC) || defined(TARGET_SPARC)
5511 w
= strtol(p
, (char **)&p
, 10);
5514 fprintf(stderr
, "qemu: invalid resolution or depth\n");
5520 h
= strtol(p
, (char **)&p
, 10);
5525 depth
= strtol(p
, (char **)&p
, 10);
5526 if (depth
!= 8 && depth
!= 15 && depth
!= 16 &&
5527 depth
!= 24 && depth
!= 32)
5529 } else if (*p
== '\0') {
5530 depth
= graphic_depth
;
5537 graphic_depth
= depth
;
5541 case QEMU_OPTION_echr
:
5544 term_escape_char
= strtol(optarg
, &r
, 0);
5546 printf("Bad argument to echr\n");
5549 case QEMU_OPTION_monitor
:
5550 monitor_device
= optarg
;
5552 case QEMU_OPTION_serial
:
5553 if (serial_device_index
>= MAX_SERIAL_PORTS
) {
5554 fprintf(stderr
, "qemu: too many serial ports\n");
5557 serial_devices
[serial_device_index
] = optarg
;
5558 serial_device_index
++;
5560 case QEMU_OPTION_watchdog
:
5561 i
= select_watchdog(optarg
);
5563 exit (i
== 1 ? 1 : 0);
5565 case QEMU_OPTION_watchdog_action
:
5566 if (select_watchdog_action(optarg
) == -1) {
5567 fprintf(stderr
, "Unknown -watchdog-action parameter\n");
5571 case QEMU_OPTION_virtiocon
:
5572 if (virtio_console_index
>= MAX_VIRTIO_CONSOLES
) {
5573 fprintf(stderr
, "qemu: too many virtio consoles\n");
5576 virtio_consoles
[virtio_console_index
] = optarg
;
5577 virtio_console_index
++;
5579 case QEMU_OPTION_parallel
:
5580 if (parallel_device_index
>= MAX_PARALLEL_PORTS
) {
5581 fprintf(stderr
, "qemu: too many parallel ports\n");
5584 parallel_devices
[parallel_device_index
] = optarg
;
5585 parallel_device_index
++;
5587 case QEMU_OPTION_loadvm
:
5590 case QEMU_OPTION_full_screen
:
5594 case QEMU_OPTION_no_frame
:
5597 case QEMU_OPTION_alt_grab
:
5600 case QEMU_OPTION_no_quit
:
5603 case QEMU_OPTION_sdl
:
5604 display_type
= DT_SDL
;
5607 case QEMU_OPTION_pidfile
:
5611 case QEMU_OPTION_win2k_hack
:
5612 win2k_install_hack
= 1;
5614 case QEMU_OPTION_rtc_td_hack
:
5617 case QEMU_OPTION_acpitable
:
5618 if(acpi_table_add(optarg
) < 0) {
5619 fprintf(stderr
, "Wrong acpi table provided\n");
5623 case QEMU_OPTION_smbios
:
5624 if(smbios_entry_add(optarg
) < 0) {
5625 fprintf(stderr
, "Wrong smbios provided\n");
5631 case QEMU_OPTION_no_kqemu
:
5634 case QEMU_OPTION_kernel_kqemu
:
5639 case QEMU_OPTION_enable_kvm
:
5647 case QEMU_OPTION_no_kvm
:
5650 case QEMU_OPTION_no_kvm_irqchip
: {
5655 case QEMU_OPTION_no_kvm_pit
: {
5659 case QEMU_OPTION_no_kvm_pit_reinjection
: {
5660 kvm_pit_reinject
= 0;
5663 case QEMU_OPTION_enable_nesting
: {
5667 #if defined(TARGET_I386) || defined(TARGET_X86_64) || defined(TARGET_IA64) || defined(__linux__)
5668 case QEMU_OPTION_pcidevice
:
5669 if (assigned_devices_index
>= MAX_DEV_ASSIGN_CMDLINE
) {
5670 fprintf(stderr
, "Too many assigned devices\n");
5673 assigned_devices
[assigned_devices_index
] = optarg
;
5674 assigned_devices_index
++;
5678 case QEMU_OPTION_usb
:
5681 case QEMU_OPTION_usbdevice
:
5683 if (usb_devices_index
>= MAX_USB_CMDLINE
) {
5684 fprintf(stderr
, "Too many USB devices\n");
5687 usb_devices
[usb_devices_index
] = optarg
;
5688 usb_devices_index
++;
5690 case QEMU_OPTION_smp
:
5691 smp_cpus
= atoi(optarg
);
5693 fprintf(stderr
, "Invalid number of CPUs\n");
5697 case QEMU_OPTION_vnc
:
5698 display_type
= DT_VNC
;
5699 vnc_display
= optarg
;
5702 case QEMU_OPTION_no_acpi
:
5705 case QEMU_OPTION_no_hpet
:
5708 case QEMU_OPTION_no_virtio_balloon
:
5709 no_virtio_balloon
= 1;
5712 case QEMU_OPTION_no_reboot
:
5715 case QEMU_OPTION_no_shutdown
:
5718 case QEMU_OPTION_show_cursor
:
5721 case QEMU_OPTION_uuid
:
5722 if(qemu_uuid_parse(optarg
, qemu_uuid
) < 0) {
5723 fprintf(stderr
, "Fail to parse UUID string."
5724 " Wrong format.\n");
5729 case QEMU_OPTION_daemonize
:
5733 case QEMU_OPTION_option_rom
:
5734 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
5735 fprintf(stderr
, "Too many option ROMs\n");
5738 option_rom
[nb_option_roms
] = optarg
;
5741 #if defined(TARGET_ARM) || defined(TARGET_M68K)
5742 case QEMU_OPTION_semihosting
:
5743 semihosting_enabled
= 1;
5746 case QEMU_OPTION_tdf
:
5749 case QEMU_OPTION_kvm_shadow_memory
:
5750 kvm_shadow_memory
= (int64_t)atoi(optarg
) * 1024 * 1024 / 4096;
5752 case QEMU_OPTION_mempath
:
5756 case QEMU_OPTION_mem_prealloc
:
5757 mem_prealloc
= !mem_prealloc
;
5760 case QEMU_OPTION_name
:
5763 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
5764 case QEMU_OPTION_prom_env
:
5765 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
5766 fprintf(stderr
, "Too many prom variables\n");
5769 prom_envs
[nb_prom_envs
] = optarg
;
5774 case QEMU_OPTION_old_param
:
5778 case QEMU_OPTION_clock
:
5779 configure_alarms(optarg
);
5781 case QEMU_OPTION_startdate
:
5784 time_t rtc_start_date
;
5785 if (!strcmp(optarg
, "now")) {
5786 rtc_date_offset
= -1;
5788 if (sscanf(optarg
, "%d-%d-%dT%d:%d:%d",
5796 } else if (sscanf(optarg
, "%d-%d-%d",
5799 &tm
.tm_mday
) == 3) {
5808 rtc_start_date
= mktimegm(&tm
);
5809 if (rtc_start_date
== -1) {
5811 fprintf(stderr
, "Invalid date format. Valid format are:\n"
5812 "'now' or '2006-06-17T16:01:21' or '2006-06-17'\n");
5815 rtc_date_offset
= time(NULL
) - rtc_start_date
;
5819 case QEMU_OPTION_tb_size
:
5820 tb_size
= strtol(optarg
, NULL
, 0);
5824 case QEMU_OPTION_icount
:
5826 if (strcmp(optarg
, "auto") == 0) {
5827 icount_time_shift
= -1;
5829 icount_time_shift
= strtol(optarg
, NULL
, 0);
5832 case QEMU_OPTION_incoming
:
5836 case QEMU_OPTION_chroot
:
5837 chroot_dir
= optarg
;
5839 case QEMU_OPTION_runas
:
5842 case QEMU_OPTION_nvram
:
5847 case QEMU_OPTION_xen_domid
:
5848 xen_domid
= atoi(optarg
);
5850 case QEMU_OPTION_xen_create
:
5851 xen_mode
= XEN_CREATE
;
5853 case QEMU_OPTION_xen_attach
:
5854 xen_mode
= XEN_ATTACH
;
5861 /* If no data_dir is specified then try to find it relative to the
5864 data_dir
= find_datadir(argv
[0]);
5866 /* If all else fails use the install patch specified when building. */
5868 data_dir
= CONFIG_QEMU_SHAREDIR
;
5871 #if defined(CONFIG_KVM) && defined(CONFIG_KQEMU)
5872 if (kvm_allowed
&& kqemu_allowed
) {
5874 "You can not enable both KVM and kqemu at the same time\n");
5879 machine
->max_cpus
= machine
->max_cpus
?: 1; /* Default to UP */
5880 if (smp_cpus
> machine
->max_cpus
) {
5881 fprintf(stderr
, "Number of SMP cpus requested (%d), exceeds max cpus "
5882 "supported by machine `%s' (%d)\n", smp_cpus
, machine
->name
,
5887 if (display_type
== DT_NOGRAPHIC
) {
5888 if (serial_device_index
== 0)
5889 serial_devices
[0] = "stdio";
5890 if (parallel_device_index
== 0)
5891 parallel_devices
[0] = "null";
5892 if (strncmp(monitor_device
, "vc", 2) == 0)
5893 monitor_device
= "stdio";
5900 if (pipe(fds
) == -1)
5911 len
= read(fds
[0], &status
, 1);
5912 if (len
== -1 && (errno
== EINTR
))
5917 else if (status
== 1) {
5918 fprintf(stderr
, "Could not acquire pidfile\n");
5935 signal(SIGTSTP
, SIG_IGN
);
5936 signal(SIGTTOU
, SIG_IGN
);
5937 signal(SIGTTIN
, SIG_IGN
);
5941 if (kvm_enabled()) {
5942 if (kvm_qemu_init() < 0) {
5943 fprintf(stderr
, "Could not initialize KVM, will disable KVM support\n");
5944 #ifdef NO_CPU_EMULATION
5945 fprintf(stderr
, "Compiled with --disable-cpu-emulation, exiting.\n");
5953 if (pid_file
&& qemu_create_pidfile(pid_file
) != 0) {
5956 write(fds
[1], &status
, 1);
5958 fprintf(stderr
, "Could not acquire pid file\n");
5967 if (qemu_init_main_loop()) {
5968 fprintf(stderr
, "qemu_init_main_loop failed\n");
5971 linux_boot
= (kernel_filename
!= NULL
);
5973 if (!linux_boot
&& *kernel_cmdline
!= '\0') {
5974 fprintf(stderr
, "-append only allowed with -kernel option\n");
5978 if (!linux_boot
&& initrd_filename
!= NULL
) {
5979 fprintf(stderr
, "-initrd only allowed with -kernel option\n");
5983 /* boot to floppy or the default cd if no hard disk defined yet */
5984 if (!boot_devices
[0]) {
5985 boot_devices
= "cad";
5987 setvbuf(stdout
, NULL
, _IOLBF
, 0);
5990 if (init_timer_alarm() < 0) {
5991 fprintf(stderr
, "could not initialize alarm timer\n");
5994 if (use_icount
&& icount_time_shift
< 0) {
5996 /* 125MIPS seems a reasonable initial guess at the guest speed.
5997 It will be corrected fairly quickly anyway. */
5998 icount_time_shift
= 3;
5999 init_icount_adjust();
6006 /* init network clients */
6007 if (nb_net_clients
== 0) {
6008 /* if no clients, we use a default config */
6009 net_clients
[nb_net_clients
++] = "nic";
6011 net_clients
[nb_net_clients
++] = "user";
6015 for(i
= 0;i
< nb_net_clients
; i
++) {
6016 if (net_client_parse(net_clients
[i
]) < 0)
6020 net_boot
= (boot_devices_bitmap
>> ('n' - 'a')) & 0xF;
6021 net_set_boot_mask(net_boot
);
6025 /* init the bluetooth world */
6026 for (i
= 0; i
< nb_bt_opts
; i
++)
6027 if (bt_parse(bt_opts
[i
]))
6030 /* init the memory */
6032 ram_size
= DEFAULT_RAM_SIZE
* 1024 * 1024;
6034 if (kvm_enabled()) {
6035 if (kvm_qemu_create_context() < 0) {
6036 fprintf(stderr
, "Could not create KVM context\n");
6042 /* FIXME: This is a nasty hack because kqemu can't cope with dynamic
6043 guest ram allocation. It needs to go away. */
6044 if (kqemu_allowed
) {
6045 kqemu_phys_ram_size
= ram_size
+ 8 * 1024 * 1024 + 4 * 1024 * 1024;
6046 kqemu_phys_ram_base
= qemu_vmalloc(kqemu_phys_ram_size
);
6047 if (!kqemu_phys_ram_base
) {
6048 fprintf(stderr
, "Could not allocate physical memory\n");
6054 /* init the dynamic translator */
6055 cpu_exec_init_all(tb_size
* 1024 * 1024);
6059 /* we always create the cdrom drive, even if no disk is there */
6061 if (nb_drives_opt
< MAX_DRIVES
)
6062 drive_add(NULL
, CDROM_ALIAS
);
6064 /* we always create at least one floppy */
6066 if (nb_drives_opt
< MAX_DRIVES
)
6067 drive_add(NULL
, FD_ALIAS
, 0);
6069 /* we always create one sd slot, even if no card is in it */
6071 if (nb_drives_opt
< MAX_DRIVES
)
6072 drive_add(NULL
, SD_ALIAS
);
6074 /* open the virtual block devices
6075 * note that migration with device
6076 * hot add/remove is broken.
6078 for(i
= 0; i
< nb_drives_opt
; i
++)
6079 if (drive_init(&drives_opt
[i
], snapshot
, machine
) == -1)
6082 register_savevm("timer", 0, 2, timer_save
, timer_load
, NULL
);
6083 register_savevm_live("ram", 0, 3, ram_save_live
, NULL
, ram_load
, NULL
);
6086 /* must be after terminal init, SDL library changes signal handlers */
6090 /* Maintain compatibility with multiple stdio monitors */
6091 if (!strcmp(monitor_device
,"stdio")) {
6092 for (i
= 0; i
< MAX_SERIAL_PORTS
; i
++) {
6093 const char *devname
= serial_devices
[i
];
6094 if (devname
&& !strcmp(devname
,"mon:stdio")) {
6095 monitor_device
= NULL
;
6097 } else if (devname
&& !strcmp(devname
,"stdio")) {
6098 monitor_device
= NULL
;
6099 serial_devices
[i
] = "mon:stdio";
6105 if (nb_numa_nodes
> 0) {
6108 if (nb_numa_nodes
> smp_cpus
) {
6109 nb_numa_nodes
= smp_cpus
;
6112 /* If no memory size if given for any node, assume the default case
6113 * and distribute the available memory equally across all nodes
6115 for (i
= 0; i
< nb_numa_nodes
; i
++) {
6116 if (node_mem
[i
] != 0)
6119 if (i
== nb_numa_nodes
) {
6120 uint64_t usedmem
= 0;
6122 /* On Linux, the each node's border has to be 8MB aligned,
6123 * the final node gets the rest.
6125 for (i
= 0; i
< nb_numa_nodes
- 1; i
++) {
6126 node_mem
[i
] = (ram_size
/ nb_numa_nodes
) & ~((1 << 23UL) - 1);
6127 usedmem
+= node_mem
[i
];
6129 node_mem
[i
] = ram_size
- usedmem
;
6132 for (i
= 0; i
< nb_numa_nodes
; i
++) {
6133 if (node_cpumask
[i
] != 0)
6136 /* assigning the VCPUs round-robin is easier to implement, guest OSes
6137 * must cope with this anyway, because there are BIOSes out there in
6138 * real machines which also use this scheme.
6140 if (i
== nb_numa_nodes
) {
6141 for (i
= 0; i
< smp_cpus
; i
++) {
6142 node_cpumask
[i
% nb_numa_nodes
] |= 1 << i
;
6148 if (kvm_enabled()) {
6151 ret
= kvm_init(smp_cpus
);
6153 fprintf(stderr
, "failed to initialize KVM\n");
6159 if (monitor_device
) {
6160 monitor_hd
= qemu_chr_open("monitor", monitor_device
, NULL
);
6162 fprintf(stderr
, "qemu: could not open monitor device '%s'\n", monitor_device
);
6167 for(i
= 0; i
< MAX_SERIAL_PORTS
; i
++) {
6168 const char *devname
= serial_devices
[i
];
6169 if (devname
&& strcmp(devname
, "none")) {
6171 snprintf(label
, sizeof(label
), "serial%d", i
);
6172 serial_hds
[i
] = qemu_chr_open(label
, devname
, NULL
);
6173 if (!serial_hds
[i
]) {
6174 fprintf(stderr
, "qemu: could not open serial device '%s'\n",
6181 for(i
= 0; i
< MAX_PARALLEL_PORTS
; i
++) {
6182 const char *devname
= parallel_devices
[i
];
6183 if (devname
&& strcmp(devname
, "none")) {
6185 snprintf(label
, sizeof(label
), "parallel%d", i
);
6186 parallel_hds
[i
] = qemu_chr_open(label
, devname
, NULL
);
6187 if (!parallel_hds
[i
]) {
6188 fprintf(stderr
, "qemu: could not open parallel device '%s'\n",
6195 for(i
= 0; i
< MAX_VIRTIO_CONSOLES
; i
++) {
6196 const char *devname
= virtio_consoles
[i
];
6197 if (devname
&& strcmp(devname
, "none")) {
6199 snprintf(label
, sizeof(label
), "virtcon%d", i
);
6200 virtcon_hds
[i
] = qemu_chr_open(label
, devname
, NULL
);
6201 if (!virtcon_hds
[i
]) {
6202 fprintf(stderr
, "qemu: could not open virtio console '%s'\n",
6209 module_call_init(MODULE_INIT_DEVICE
);
6214 machine
->init(ram_size
, boot_devices
,
6215 kernel_filename
, kernel_cmdline
, initrd_filename
, cpu_model
);
6218 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
6219 for (i
= 0; i
< nb_numa_nodes
; i
++) {
6220 if (node_cpumask
[i
] & (1 << env
->cpu_index
)) {
6226 current_machine
= machine
;
6228 /* Set KVM's vcpu state to qemu's initial CPUState. */
6229 if (kvm_enabled()) {
6232 ret
= kvm_sync_vcpus();
6234 fprintf(stderr
, "failed to initialize vcpus\n");
6239 /* init USB devices */
6241 for(i
= 0; i
< usb_devices_index
; i
++) {
6242 if (usb_device_add(usb_devices
[i
], 0) < 0) {
6243 fprintf(stderr
, "Warning: could not add USB device %s\n",
6250 dumb_display_init();
6251 /* just use the first displaystate for the moment */
6254 if (display_type
== DT_DEFAULT
) {
6255 #if defined(CONFIG_SDL) || defined(CONFIG_COCOA)
6256 display_type
= DT_SDL
;
6258 display_type
= DT_VNC
;
6259 vnc_display
= "localhost:0,to=99";
6265 switch (display_type
) {
6268 #if defined(CONFIG_CURSES)
6270 curses_display_init(ds
, full_screen
);
6273 #if defined(CONFIG_SDL)
6275 sdl_display_init(ds
, full_screen
, no_frame
);
6277 #elif defined(CONFIG_COCOA)
6279 cocoa_display_init(ds
, full_screen
);
6283 vnc_display_init(ds
);
6284 if (vnc_display_open(ds
, vnc_display
) < 0)
6287 if (show_vnc_port
) {
6288 printf("VNC server running on `%s'\n", vnc_display_local_addr(ds
));
6296 dcl
= ds
->listeners
;
6297 while (dcl
!= NULL
) {
6298 if (dcl
->dpy_refresh
!= NULL
) {
6299 ds
->gui_timer
= qemu_new_timer(rt_clock
, gui_update
, ds
);
6300 qemu_mod_timer(ds
->gui_timer
, qemu_get_clock(rt_clock
));
6305 if (display_type
== DT_NOGRAPHIC
|| display_type
== DT_VNC
) {
6306 nographic_timer
= qemu_new_timer(rt_clock
, nographic_update
, NULL
);
6307 qemu_mod_timer(nographic_timer
, qemu_get_clock(rt_clock
));
6310 text_consoles_set_display(display_state
);
6311 qemu_chr_initial_reset();
6313 if (monitor_device
&& monitor_hd
)
6314 monitor_init(monitor_hd
, MONITOR_USE_READLINE
| MONITOR_IS_DEFAULT
);
6316 for(i
= 0; i
< MAX_SERIAL_PORTS
; i
++) {
6317 const char *devname
= serial_devices
[i
];
6318 if (devname
&& strcmp(devname
, "none")) {
6319 if (strstart(devname
, "vc", 0))
6320 qemu_chr_printf(serial_hds
[i
], "serial%d console\r\n", i
);
6324 for(i
= 0; i
< MAX_PARALLEL_PORTS
; i
++) {
6325 const char *devname
= parallel_devices
[i
];
6326 if (devname
&& strcmp(devname
, "none")) {
6327 if (strstart(devname
, "vc", 0))
6328 qemu_chr_printf(parallel_hds
[i
], "parallel%d console\r\n", i
);
6332 for(i
= 0; i
< MAX_VIRTIO_CONSOLES
; i
++) {
6333 const char *devname
= virtio_consoles
[i
];
6334 if (virtcon_hds
[i
] && devname
) {
6335 if (strstart(devname
, "vc", 0))
6336 qemu_chr_printf(virtcon_hds
[i
], "virtio console%d\r\n", i
);
6340 if (gdbstub_dev
&& gdbserver_start(gdbstub_dev
) < 0) {
6341 fprintf(stderr
, "qemu: could not open gdbserver on device '%s'\n",
6347 do_loadvm(cur_mon
, loadvm
);
6350 autostart
= 0; /* fixme how to deal with -daemonize */
6351 qemu_start_incoming_migration(incoming
);
6363 len
= write(fds
[1], &status
, 1);
6364 if (len
== -1 && (errno
== EINTR
))
6371 TFR(fd
= open("/dev/null", O_RDWR
));
6377 pwd
= getpwnam(run_as
);
6379 fprintf(stderr
, "User \"%s\" doesn't exist\n", run_as
);
6385 if (chroot(chroot_dir
) < 0) {
6386 fprintf(stderr
, "chroot failed\n");
6393 if (setgid(pwd
->pw_gid
) < 0) {
6394 fprintf(stderr
, "Failed to setgid(%d)\n", pwd
->pw_gid
);
6397 if (setuid(pwd
->pw_uid
) < 0) {
6398 fprintf(stderr
, "Failed to setuid(%d)\n", pwd
->pw_uid
);
6401 if (setuid(0) != -1) {
6402 fprintf(stderr
, "Dropping privileges failed\n");