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>
71 #include <sys/prctl.h>
73 /* For the benefit of older linux systems which don't supply it,
74 we use a local copy of hpet.h. */
75 /* #include <linux/hpet.h> */
78 #include <linux/ppdev.h>
79 #include <linux/parport.h>
83 #include <sys/ethernet.h>
84 #include <sys/sockio.h>
85 #include <netinet/arp.h>
86 #include <netinet/in.h>
87 #include <netinet/in_systm.h>
88 #include <netinet/ip.h>
89 #include <netinet/ip_icmp.h> // must come after ip.h
90 #include <netinet/udp.h>
91 #include <netinet/tcp.h>
99 #if defined(__OpenBSD__)
103 #if defined(CONFIG_VDE)
104 #include <libvdeplug.h>
110 #include <sys/timeb.h>
111 #include <mmsystem.h>
112 #define getopt_long_only getopt_long
113 #define memalign(align, size) malloc(size)
117 #if defined(__APPLE__) || defined(main)
119 int qemu_main(int argc
, char **argv
, char **envp
);
120 int main(int argc
, char **argv
)
122 return qemu_main(argc
, argv
, NULL
);
125 #define main qemu_main
127 #endif /* CONFIG_SDL */
131 #define main qemu_main
132 #endif /* CONFIG_COCOA */
135 #include "hw/boards.h"
137 #include "hw/pcmcia.h"
139 #include "hw/audiodev.h"
143 #include "hw/watchdog.h"
144 #include "hw/smbios.h"
152 #include "qemu-timer.h"
153 #include "qemu-char.h"
154 #include "cache-utils.h"
157 #include "audio/audio.h"
158 #include "migration.h"
161 #include "qemu-option.h"
165 #include "exec-all.h"
167 #include "qemu_socket.h"
169 #include "slirp/libslirp.h"
172 //#define DEBUG_SLIRP
174 #define DEFAULT_RAM_SIZE 128
176 /* Max number of USB devices that can be specified on the commandline. */
177 #define MAX_USB_CMDLINE 8
179 /* Max number of bluetooth switches on the commandline. */
180 #define MAX_BT_CMDLINE 10
182 static const char *data_dir
;
183 const char *bios_name
= NULL
;
184 /* Note: drives_table[MAX_DRIVES] is a dummy block driver if none available
185 to store the VM snapshots */
186 DriveInfo drives_table
[MAX_DRIVES
+1];
188 enum vga_retrace_method vga_retrace_method
= VGA_RETRACE_DUMB
;
189 static DisplayState
*display_state
;
190 DisplayType display_type
= DT_DEFAULT
;
191 const char* keyboard_layout
= NULL
;
192 int64_t ticks_per_sec
;
195 NICInfo nd_table
[MAX_NICS
];
197 static int autostart
;
198 static int rtc_utc
= 1;
199 static int rtc_date_offset
= -1; /* -1 means no change */
200 int cirrus_vga_enabled
= 1;
201 int std_vga_enabled
= 0;
202 int vmsvga_enabled
= 0;
203 int xenfb_enabled
= 0;
205 int graphic_width
= 1024;
206 int graphic_height
= 768;
207 int graphic_depth
= 8;
209 int graphic_width
= 800;
210 int graphic_height
= 600;
211 int graphic_depth
= 15;
213 static int full_screen
= 0;
215 static int no_frame
= 0;
218 CharDriverState
*serial_hds
[MAX_SERIAL_PORTS
];
219 CharDriverState
*parallel_hds
[MAX_PARALLEL_PORTS
];
220 CharDriverState
*virtcon_hds
[MAX_VIRTIO_CONSOLES
];
222 int win2k_install_hack
= 0;
228 const char *vnc_display
;
229 int acpi_enabled
= 1;
231 int virtio_balloon
= 1;
232 const char *virtio_balloon_devaddr
;
237 int graphic_rotate
= 0;
241 WatchdogTimerModel
*watchdog
= NULL
;
242 int watchdog_action
= WDT_RESET
;
243 const char *option_rom
[MAX_OPTION_ROMS
];
245 int semihosting_enabled
= 0;
249 const char *qemu_name
;
251 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
252 unsigned int nb_prom_envs
= 0;
253 const char *prom_envs
[MAX_PROM_ENVS
];
256 struct drive_opt drives_opt
[MAX_DRIVES
];
259 uint64_t node_mem
[MAX_NODES
];
260 uint64_t node_cpumask
[MAX_NODES
];
262 static CPUState
*cur_cpu
;
263 static CPUState
*next_cpu
;
264 static int timer_alarm_pending
= 1;
265 /* Conversion factor from emulated instructions to virtual clock ticks. */
266 static int icount_time_shift
;
267 /* Arbitrarily pick 1MIPS as the minimum allowable speed. */
268 #define MAX_ICOUNT_SHIFT 10
269 /* Compensate for varying guest execution speed. */
270 static int64_t qemu_icount_bias
;
271 static QEMUTimer
*icount_rt_timer
;
272 static QEMUTimer
*icount_vm_timer
;
273 static QEMUTimer
*nographic_timer
;
275 uint8_t qemu_uuid
[16];
277 static QEMUBootSetHandler
*boot_set_handler
;
278 static void *boot_set_opaque
;
280 /***********************************************************/
281 /* x86 ISA bus support */
283 target_phys_addr_t isa_mem_base
= 0;
286 /***********************************************************/
287 void hw_error(const char *fmt
, ...)
293 fprintf(stderr
, "qemu: hardware error: ");
294 vfprintf(stderr
, fmt
, ap
);
295 fprintf(stderr
, "\n");
296 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
297 fprintf(stderr
, "CPU #%d:\n", env
->cpu_index
);
299 cpu_dump_state(env
, stderr
, fprintf
, X86_DUMP_FPU
);
301 cpu_dump_state(env
, stderr
, fprintf
, 0);
308 static void set_proc_name(const char *s
)
314 name
[sizeof(name
) - 1] = 0;
315 strncpy(name
, s
, sizeof(name
));
316 /* Could rewrite argv[0] too, but that's a bit more complicated.
317 This simple way is enough for `top'. */
318 prctl(PR_SET_NAME
, name
);
325 static QEMUBalloonEvent
*qemu_balloon_event
;
326 void *qemu_balloon_event_opaque
;
328 void qemu_add_balloon_handler(QEMUBalloonEvent
*func
, void *opaque
)
330 qemu_balloon_event
= func
;
331 qemu_balloon_event_opaque
= opaque
;
334 void qemu_balloon(ram_addr_t target
)
336 if (qemu_balloon_event
)
337 qemu_balloon_event(qemu_balloon_event_opaque
, target
);
340 ram_addr_t
qemu_balloon_status(void)
342 if (qemu_balloon_event
)
343 return qemu_balloon_event(qemu_balloon_event_opaque
, 0);
347 /***********************************************************/
350 static QEMUPutKBDEvent
*qemu_put_kbd_event
;
351 static void *qemu_put_kbd_event_opaque
;
352 static QEMUPutMouseEntry
*qemu_put_mouse_event_head
;
353 static QEMUPutMouseEntry
*qemu_put_mouse_event_current
;
355 void qemu_add_kbd_event_handler(QEMUPutKBDEvent
*func
, void *opaque
)
357 qemu_put_kbd_event_opaque
= opaque
;
358 qemu_put_kbd_event
= func
;
361 QEMUPutMouseEntry
*qemu_add_mouse_event_handler(QEMUPutMouseEvent
*func
,
362 void *opaque
, int absolute
,
365 QEMUPutMouseEntry
*s
, *cursor
;
367 s
= qemu_mallocz(sizeof(QEMUPutMouseEntry
));
369 s
->qemu_put_mouse_event
= func
;
370 s
->qemu_put_mouse_event_opaque
= opaque
;
371 s
->qemu_put_mouse_event_absolute
= absolute
;
372 s
->qemu_put_mouse_event_name
= qemu_strdup(name
);
375 if (!qemu_put_mouse_event_head
) {
376 qemu_put_mouse_event_head
= qemu_put_mouse_event_current
= s
;
380 cursor
= qemu_put_mouse_event_head
;
381 while (cursor
->next
!= NULL
)
382 cursor
= cursor
->next
;
385 qemu_put_mouse_event_current
= s
;
390 void qemu_remove_mouse_event_handler(QEMUPutMouseEntry
*entry
)
392 QEMUPutMouseEntry
*prev
= NULL
, *cursor
;
394 if (!qemu_put_mouse_event_head
|| entry
== NULL
)
397 cursor
= qemu_put_mouse_event_head
;
398 while (cursor
!= NULL
&& cursor
!= entry
) {
400 cursor
= cursor
->next
;
403 if (cursor
== NULL
) // does not exist or list empty
405 else if (prev
== NULL
) { // entry is head
406 qemu_put_mouse_event_head
= cursor
->next
;
407 if (qemu_put_mouse_event_current
== entry
)
408 qemu_put_mouse_event_current
= cursor
->next
;
409 qemu_free(entry
->qemu_put_mouse_event_name
);
414 prev
->next
= entry
->next
;
416 if (qemu_put_mouse_event_current
== entry
)
417 qemu_put_mouse_event_current
= prev
;
419 qemu_free(entry
->qemu_put_mouse_event_name
);
423 void kbd_put_keycode(int keycode
)
425 if (qemu_put_kbd_event
) {
426 qemu_put_kbd_event(qemu_put_kbd_event_opaque
, keycode
);
430 void kbd_mouse_event(int dx
, int dy
, int dz
, int buttons_state
)
432 QEMUPutMouseEvent
*mouse_event
;
433 void *mouse_event_opaque
;
436 if (!qemu_put_mouse_event_current
) {
441 qemu_put_mouse_event_current
->qemu_put_mouse_event
;
443 qemu_put_mouse_event_current
->qemu_put_mouse_event_opaque
;
446 if (graphic_rotate
) {
447 if (qemu_put_mouse_event_current
->qemu_put_mouse_event_absolute
)
450 width
= graphic_width
- 1;
451 mouse_event(mouse_event_opaque
,
452 width
- dy
, dx
, dz
, buttons_state
);
454 mouse_event(mouse_event_opaque
,
455 dx
, dy
, dz
, buttons_state
);
459 int kbd_mouse_is_absolute(void)
461 if (!qemu_put_mouse_event_current
)
464 return qemu_put_mouse_event_current
->qemu_put_mouse_event_absolute
;
467 void do_info_mice(Monitor
*mon
)
469 QEMUPutMouseEntry
*cursor
;
472 if (!qemu_put_mouse_event_head
) {
473 monitor_printf(mon
, "No mouse devices connected\n");
477 monitor_printf(mon
, "Mouse devices available:\n");
478 cursor
= qemu_put_mouse_event_head
;
479 while (cursor
!= NULL
) {
480 monitor_printf(mon
, "%c Mouse #%d: %s\n",
481 (cursor
== qemu_put_mouse_event_current
? '*' : ' '),
482 index
, cursor
->qemu_put_mouse_event_name
);
484 cursor
= cursor
->next
;
488 void do_mouse_set(Monitor
*mon
, int index
)
490 QEMUPutMouseEntry
*cursor
;
493 if (!qemu_put_mouse_event_head
) {
494 monitor_printf(mon
, "No mouse devices connected\n");
498 cursor
= qemu_put_mouse_event_head
;
499 while (cursor
!= NULL
&& index
!= i
) {
501 cursor
= cursor
->next
;
505 qemu_put_mouse_event_current
= cursor
;
507 monitor_printf(mon
, "Mouse at given index not found\n");
510 /* compute with 96 bit intermediate result: (a*b)/c */
511 uint64_t muldiv64(uint64_t a
, uint32_t b
, uint32_t c
)
516 #ifdef WORDS_BIGENDIAN
526 rl
= (uint64_t)u
.l
.low
* (uint64_t)b
;
527 rh
= (uint64_t)u
.l
.high
* (uint64_t)b
;
530 res
.l
.low
= (((rh
% c
) << 32) + (rl
& 0xffffffff)) / c
;
534 /***********************************************************/
535 /* real time host monotonic timer */
537 #define QEMU_TIMER_BASE 1000000000LL
541 static int64_t clock_freq
;
543 static void init_get_clock(void)
547 ret
= QueryPerformanceFrequency(&freq
);
549 fprintf(stderr
, "Could not calibrate ticks\n");
552 clock_freq
= freq
.QuadPart
;
555 static int64_t get_clock(void)
558 QueryPerformanceCounter(&ti
);
559 return muldiv64(ti
.QuadPart
, QEMU_TIMER_BASE
, clock_freq
);
564 static int use_rt_clock
;
566 static void init_get_clock(void)
569 #if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD_version >= 500000) \
570 || defined(__DragonFly__)
573 if (clock_gettime(CLOCK_MONOTONIC
, &ts
) == 0) {
580 static int64_t get_clock(void)
582 #if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD_version >= 500000) \
583 || defined(__DragonFly__)
586 clock_gettime(CLOCK_MONOTONIC
, &ts
);
587 return ts
.tv_sec
* 1000000000LL + ts
.tv_nsec
;
591 /* XXX: using gettimeofday leads to problems if the date
592 changes, so it should be avoided. */
594 gettimeofday(&tv
, NULL
);
595 return tv
.tv_sec
* 1000000000LL + (tv
.tv_usec
* 1000);
600 /* Return the virtual CPU time, based on the instruction counter. */
601 static int64_t cpu_get_icount(void)
604 CPUState
*env
= cpu_single_env
;;
605 icount
= qemu_icount
;
608 fprintf(stderr
, "Bad clock read\n");
609 icount
-= (env
->icount_decr
.u16
.low
+ env
->icount_extra
);
611 return qemu_icount_bias
+ (icount
<< icount_time_shift
);
614 /***********************************************************/
615 /* guest cycle counter */
617 static int64_t cpu_ticks_prev
;
618 static int64_t cpu_ticks_offset
;
619 static int64_t cpu_clock_offset
;
620 static int cpu_ticks_enabled
;
622 /* return the host CPU cycle counter and handle stop/restart */
623 int64_t cpu_get_ticks(void)
626 return cpu_get_icount();
628 if (!cpu_ticks_enabled
) {
629 return cpu_ticks_offset
;
632 ticks
= cpu_get_real_ticks();
633 if (cpu_ticks_prev
> ticks
) {
634 /* Note: non increasing ticks may happen if the host uses
636 cpu_ticks_offset
+= cpu_ticks_prev
- ticks
;
638 cpu_ticks_prev
= ticks
;
639 return ticks
+ cpu_ticks_offset
;
643 /* return the host CPU monotonic timer and handle stop/restart */
644 static int64_t cpu_get_clock(void)
647 if (!cpu_ticks_enabled
) {
648 return cpu_clock_offset
;
651 return ti
+ cpu_clock_offset
;
655 /* enable cpu_get_ticks() */
656 void cpu_enable_ticks(void)
658 if (!cpu_ticks_enabled
) {
659 cpu_ticks_offset
-= cpu_get_real_ticks();
660 cpu_clock_offset
-= get_clock();
661 cpu_ticks_enabled
= 1;
665 /* disable cpu_get_ticks() : the clock is stopped. You must not call
666 cpu_get_ticks() after that. */
667 void cpu_disable_ticks(void)
669 if (cpu_ticks_enabled
) {
670 cpu_ticks_offset
= cpu_get_ticks();
671 cpu_clock_offset
= cpu_get_clock();
672 cpu_ticks_enabled
= 0;
676 /***********************************************************/
679 #define QEMU_TIMER_REALTIME 0
680 #define QEMU_TIMER_VIRTUAL 1
684 /* XXX: add frequency */
692 struct QEMUTimer
*next
;
695 struct qemu_alarm_timer
{
699 int (*start
)(struct qemu_alarm_timer
*t
);
700 void (*stop
)(struct qemu_alarm_timer
*t
);
701 void (*rearm
)(struct qemu_alarm_timer
*t
);
705 #define ALARM_FLAG_DYNTICKS 0x1
706 #define ALARM_FLAG_EXPIRED 0x2
708 static inline int alarm_has_dynticks(struct qemu_alarm_timer
*t
)
710 return t
&& (t
->flags
& ALARM_FLAG_DYNTICKS
);
713 static void qemu_rearm_alarm_timer(struct qemu_alarm_timer
*t
)
715 if (!alarm_has_dynticks(t
))
721 /* TODO: MIN_TIMER_REARM_US should be optimized */
722 #define MIN_TIMER_REARM_US 250
724 static struct qemu_alarm_timer
*alarm_timer
;
728 struct qemu_alarm_win32
{
731 } alarm_win32_data
= {0, -1};
733 static int win32_start_timer(struct qemu_alarm_timer
*t
);
734 static void win32_stop_timer(struct qemu_alarm_timer
*t
);
735 static void win32_rearm_timer(struct qemu_alarm_timer
*t
);
739 static int unix_start_timer(struct qemu_alarm_timer
*t
);
740 static void unix_stop_timer(struct qemu_alarm_timer
*t
);
744 static int dynticks_start_timer(struct qemu_alarm_timer
*t
);
745 static void dynticks_stop_timer(struct qemu_alarm_timer
*t
);
746 static void dynticks_rearm_timer(struct qemu_alarm_timer
*t
);
748 static int hpet_start_timer(struct qemu_alarm_timer
*t
);
749 static void hpet_stop_timer(struct qemu_alarm_timer
*t
);
751 static int rtc_start_timer(struct qemu_alarm_timer
*t
);
752 static void rtc_stop_timer(struct qemu_alarm_timer
*t
);
754 #endif /* __linux__ */
758 /* Correlation between real and virtual time is always going to be
759 fairly approximate, so ignore small variation.
760 When the guest is idle real and virtual time will be aligned in
762 #define ICOUNT_WOBBLE (QEMU_TIMER_BASE / 10)
764 static void icount_adjust(void)
769 static int64_t last_delta
;
770 /* If the VM is not running, then do nothing. */
774 cur_time
= cpu_get_clock();
775 cur_icount
= qemu_get_clock(vm_clock
);
776 delta
= cur_icount
- cur_time
;
777 /* FIXME: This is a very crude algorithm, somewhat prone to oscillation. */
779 && last_delta
+ ICOUNT_WOBBLE
< delta
* 2
780 && icount_time_shift
> 0) {
781 /* The guest is getting too far ahead. Slow time down. */
785 && last_delta
- ICOUNT_WOBBLE
> delta
* 2
786 && icount_time_shift
< MAX_ICOUNT_SHIFT
) {
787 /* The guest is getting too far behind. Speed time up. */
791 qemu_icount_bias
= cur_icount
- (qemu_icount
<< icount_time_shift
);
794 static void icount_adjust_rt(void * opaque
)
796 qemu_mod_timer(icount_rt_timer
,
797 qemu_get_clock(rt_clock
) + 1000);
801 static void icount_adjust_vm(void * opaque
)
803 qemu_mod_timer(icount_vm_timer
,
804 qemu_get_clock(vm_clock
) + QEMU_TIMER_BASE
/ 10);
808 static void init_icount_adjust(void)
810 /* Have both realtime and virtual time triggers for speed adjustment.
811 The realtime trigger catches emulated time passing too slowly,
812 the virtual time trigger catches emulated time passing too fast.
813 Realtime triggers occur even when idle, so use them less frequently
815 icount_rt_timer
= qemu_new_timer(rt_clock
, icount_adjust_rt
, NULL
);
816 qemu_mod_timer(icount_rt_timer
,
817 qemu_get_clock(rt_clock
) + 1000);
818 icount_vm_timer
= qemu_new_timer(vm_clock
, icount_adjust_vm
, NULL
);
819 qemu_mod_timer(icount_vm_timer
,
820 qemu_get_clock(vm_clock
) + QEMU_TIMER_BASE
/ 10);
823 static struct qemu_alarm_timer alarm_timers
[] = {
826 {"dynticks", ALARM_FLAG_DYNTICKS
, dynticks_start_timer
,
827 dynticks_stop_timer
, dynticks_rearm_timer
, NULL
},
828 /* HPET - if available - is preferred */
829 {"hpet", 0, hpet_start_timer
, hpet_stop_timer
, NULL
, NULL
},
830 /* ...otherwise try RTC */
831 {"rtc", 0, rtc_start_timer
, rtc_stop_timer
, NULL
, NULL
},
833 {"unix", 0, unix_start_timer
, unix_stop_timer
, NULL
, NULL
},
835 {"dynticks", ALARM_FLAG_DYNTICKS
, win32_start_timer
,
836 win32_stop_timer
, win32_rearm_timer
, &alarm_win32_data
},
837 {"win32", 0, win32_start_timer
,
838 win32_stop_timer
, NULL
, &alarm_win32_data
},
843 static void show_available_alarms(void)
847 printf("Available alarm timers, in order of precedence:\n");
848 for (i
= 0; alarm_timers
[i
].name
; i
++)
849 printf("%s\n", alarm_timers
[i
].name
);
852 static void configure_alarms(char const *opt
)
856 int count
= ARRAY_SIZE(alarm_timers
) - 1;
859 struct qemu_alarm_timer tmp
;
861 if (!strcmp(opt
, "?")) {
862 show_available_alarms();
868 /* Reorder the array */
869 name
= strtok(arg
, ",");
871 for (i
= 0; i
< count
&& alarm_timers
[i
].name
; i
++) {
872 if (!strcmp(alarm_timers
[i
].name
, name
))
877 fprintf(stderr
, "Unknown clock %s\n", name
);
886 tmp
= alarm_timers
[i
];
887 alarm_timers
[i
] = alarm_timers
[cur
];
888 alarm_timers
[cur
] = tmp
;
892 name
= strtok(NULL
, ",");
898 /* Disable remaining timers */
899 for (i
= cur
; i
< count
; i
++)
900 alarm_timers
[i
].name
= NULL
;
902 show_available_alarms();
910 static QEMUTimer
*active_timers
[2];
912 static QEMUClock
*qemu_new_clock(int type
)
915 clock
= qemu_mallocz(sizeof(QEMUClock
));
920 QEMUTimer
*qemu_new_timer(QEMUClock
*clock
, QEMUTimerCB
*cb
, void *opaque
)
924 ts
= qemu_mallocz(sizeof(QEMUTimer
));
931 void qemu_free_timer(QEMUTimer
*ts
)
936 /* stop a timer, but do not dealloc it */
937 void qemu_del_timer(QEMUTimer
*ts
)
941 /* NOTE: this code must be signal safe because
942 qemu_timer_expired() can be called from a signal. */
943 pt
= &active_timers
[ts
->clock
->type
];
956 /* modify the current timer so that it will be fired when current_time
957 >= expire_time. The corresponding callback will be called. */
958 void qemu_mod_timer(QEMUTimer
*ts
, int64_t expire_time
)
964 /* add the timer in the sorted list */
965 /* NOTE: this code must be signal safe because
966 qemu_timer_expired() can be called from a signal. */
967 pt
= &active_timers
[ts
->clock
->type
];
972 if (t
->expire_time
> expire_time
)
976 ts
->expire_time
= expire_time
;
980 /* Rearm if necessary */
981 if (pt
== &active_timers
[ts
->clock
->type
]) {
982 if ((alarm_timer
->flags
& ALARM_FLAG_EXPIRED
) == 0) {
983 qemu_rearm_alarm_timer(alarm_timer
);
985 /* Interrupt execution to force deadline recalculation. */
991 int qemu_timer_pending(QEMUTimer
*ts
)
994 for(t
= active_timers
[ts
->clock
->type
]; t
!= NULL
; t
= t
->next
) {
1001 static inline int qemu_timer_expired(QEMUTimer
*timer_head
, int64_t current_time
)
1005 return (timer_head
->expire_time
<= current_time
);
1008 static void qemu_run_timers(QEMUTimer
**ptimer_head
, int64_t current_time
)
1014 if (!ts
|| ts
->expire_time
> current_time
)
1016 /* remove timer from the list before calling the callback */
1017 *ptimer_head
= ts
->next
;
1020 /* run the callback (the timer list can be modified) */
1025 int64_t qemu_get_clock(QEMUClock
*clock
)
1027 switch(clock
->type
) {
1028 case QEMU_TIMER_REALTIME
:
1029 return get_clock() / 1000000;
1031 case QEMU_TIMER_VIRTUAL
:
1033 return cpu_get_icount();
1035 return cpu_get_clock();
1040 static void init_timers(void)
1043 ticks_per_sec
= QEMU_TIMER_BASE
;
1044 rt_clock
= qemu_new_clock(QEMU_TIMER_REALTIME
);
1045 vm_clock
= qemu_new_clock(QEMU_TIMER_VIRTUAL
);
1049 void qemu_put_timer(QEMUFile
*f
, QEMUTimer
*ts
)
1051 uint64_t expire_time
;
1053 if (qemu_timer_pending(ts
)) {
1054 expire_time
= ts
->expire_time
;
1058 qemu_put_be64(f
, expire_time
);
1061 void qemu_get_timer(QEMUFile
*f
, QEMUTimer
*ts
)
1063 uint64_t expire_time
;
1065 expire_time
= qemu_get_be64(f
);
1066 if (expire_time
!= -1) {
1067 qemu_mod_timer(ts
, expire_time
);
1073 static void timer_save(QEMUFile
*f
, void *opaque
)
1075 if (cpu_ticks_enabled
) {
1076 hw_error("cannot save state if virtual timers are running");
1078 qemu_put_be64(f
, cpu_ticks_offset
);
1079 qemu_put_be64(f
, ticks_per_sec
);
1080 qemu_put_be64(f
, cpu_clock_offset
);
1083 static int timer_load(QEMUFile
*f
, void *opaque
, int version_id
)
1085 if (version_id
!= 1 && version_id
!= 2)
1087 if (cpu_ticks_enabled
) {
1090 cpu_ticks_offset
=qemu_get_be64(f
);
1091 ticks_per_sec
=qemu_get_be64(f
);
1092 if (version_id
== 2) {
1093 cpu_clock_offset
=qemu_get_be64(f
);
1098 static void qemu_event_increment(void);
1101 static void CALLBACK
host_alarm_handler(UINT uTimerID
, UINT uMsg
,
1102 DWORD_PTR dwUser
, DWORD_PTR dw1
,
1105 static void host_alarm_handler(int host_signum
)
1109 #define DISP_FREQ 1000
1111 static int64_t delta_min
= INT64_MAX
;
1112 static int64_t delta_max
, delta_cum
, last_clock
, delta
, ti
;
1114 ti
= qemu_get_clock(vm_clock
);
1115 if (last_clock
!= 0) {
1116 delta
= ti
- last_clock
;
1117 if (delta
< delta_min
)
1119 if (delta
> delta_max
)
1122 if (++count
== DISP_FREQ
) {
1123 printf("timer: min=%" PRId64
" us max=%" PRId64
" us avg=%" PRId64
" us avg_freq=%0.3f Hz\n",
1124 muldiv64(delta_min
, 1000000, ticks_per_sec
),
1125 muldiv64(delta_max
, 1000000, ticks_per_sec
),
1126 muldiv64(delta_cum
, 1000000 / DISP_FREQ
, ticks_per_sec
),
1127 (double)ticks_per_sec
/ ((double)delta_cum
/ DISP_FREQ
));
1129 delta_min
= INT64_MAX
;
1137 if (alarm_has_dynticks(alarm_timer
) ||
1139 qemu_timer_expired(active_timers
[QEMU_TIMER_VIRTUAL
],
1140 qemu_get_clock(vm_clock
))) ||
1141 qemu_timer_expired(active_timers
[QEMU_TIMER_REALTIME
],
1142 qemu_get_clock(rt_clock
))) {
1143 qemu_event_increment();
1144 if (alarm_timer
) alarm_timer
->flags
|= ALARM_FLAG_EXPIRED
;
1146 #ifndef CONFIG_IOTHREAD
1148 /* stop the currently executing cpu because a timer occured */
1151 if (next_cpu
->kqemu_enabled
) {
1152 kqemu_cpu_interrupt(next_cpu
);
1157 timer_alarm_pending
= 1;
1158 qemu_notify_event();
1162 static int64_t qemu_next_deadline(void)
1166 if (active_timers
[QEMU_TIMER_VIRTUAL
]) {
1167 delta
= active_timers
[QEMU_TIMER_VIRTUAL
]->expire_time
-
1168 qemu_get_clock(vm_clock
);
1170 /* To avoid problems with overflow limit this to 2^32. */
1180 #if defined(__linux__) || defined(_WIN32)
1181 static uint64_t qemu_next_deadline_dyntick(void)
1189 delta
= (qemu_next_deadline() + 999) / 1000;
1191 if (active_timers
[QEMU_TIMER_REALTIME
]) {
1192 rtdelta
= (active_timers
[QEMU_TIMER_REALTIME
]->expire_time
-
1193 qemu_get_clock(rt_clock
))*1000;
1194 if (rtdelta
< delta
)
1198 if (delta
< MIN_TIMER_REARM_US
)
1199 delta
= MIN_TIMER_REARM_US
;
1207 /* Sets a specific flag */
1208 static int fcntl_setfl(int fd
, int flag
)
1212 flags
= fcntl(fd
, F_GETFL
);
1216 if (fcntl(fd
, F_SETFL
, flags
| flag
) == -1)
1222 #if defined(__linux__)
1224 #define RTC_FREQ 1024
1226 static void enable_sigio_timer(int fd
)
1228 struct sigaction act
;
1231 sigfillset(&act
.sa_mask
);
1233 act
.sa_handler
= host_alarm_handler
;
1235 sigaction(SIGIO
, &act
, NULL
);
1236 fcntl_setfl(fd
, O_ASYNC
);
1237 fcntl(fd
, F_SETOWN
, getpid());
1240 static int hpet_start_timer(struct qemu_alarm_timer
*t
)
1242 struct hpet_info info
;
1245 fd
= open("/dev/hpet", O_RDONLY
);
1250 r
= ioctl(fd
, HPET_IRQFREQ
, RTC_FREQ
);
1252 fprintf(stderr
, "Could not configure '/dev/hpet' to have a 1024Hz timer. This is not a fatal\n"
1253 "error, but for better emulation accuracy type:\n"
1254 "'echo 1024 > /proc/sys/dev/hpet/max-user-freq' as root.\n");
1258 /* Check capabilities */
1259 r
= ioctl(fd
, HPET_INFO
, &info
);
1263 /* Enable periodic mode */
1264 r
= ioctl(fd
, HPET_EPI
, 0);
1265 if (info
.hi_flags
&& (r
< 0))
1268 /* Enable interrupt */
1269 r
= ioctl(fd
, HPET_IE_ON
, 0);
1273 enable_sigio_timer(fd
);
1274 t
->priv
= (void *)(long)fd
;
1282 static void hpet_stop_timer(struct qemu_alarm_timer
*t
)
1284 int fd
= (long)t
->priv
;
1289 static int rtc_start_timer(struct qemu_alarm_timer
*t
)
1292 unsigned long current_rtc_freq
= 0;
1294 TFR(rtc_fd
= open("/dev/rtc", O_RDONLY
));
1297 ioctl(rtc_fd
, RTC_IRQP_READ
, ¤t_rtc_freq
);
1298 if (current_rtc_freq
!= RTC_FREQ
&&
1299 ioctl(rtc_fd
, RTC_IRQP_SET
, RTC_FREQ
) < 0) {
1300 fprintf(stderr
, "Could not configure '/dev/rtc' to have a 1024 Hz timer. This is not a fatal\n"
1301 "error, but for better emulation accuracy either use a 2.6 host Linux kernel or\n"
1302 "type 'echo 1024 > /proc/sys/dev/rtc/max-user-freq' as root.\n");
1305 if (ioctl(rtc_fd
, RTC_PIE_ON
, 0) < 0) {
1311 enable_sigio_timer(rtc_fd
);
1313 t
->priv
= (void *)(long)rtc_fd
;
1318 static void rtc_stop_timer(struct qemu_alarm_timer
*t
)
1320 int rtc_fd
= (long)t
->priv
;
1325 static int dynticks_start_timer(struct qemu_alarm_timer
*t
)
1329 struct sigaction act
;
1331 sigfillset(&act
.sa_mask
);
1333 act
.sa_handler
= host_alarm_handler
;
1335 sigaction(SIGALRM
, &act
, NULL
);
1338 * Initialize ev struct to 0 to avoid valgrind complaining
1339 * about uninitialized data in timer_create call
1341 memset(&ev
, 0, sizeof(ev
));
1342 ev
.sigev_value
.sival_int
= 0;
1343 ev
.sigev_notify
= SIGEV_SIGNAL
;
1344 ev
.sigev_signo
= SIGALRM
;
1346 if (timer_create(CLOCK_REALTIME
, &ev
, &host_timer
)) {
1347 perror("timer_create");
1349 /* disable dynticks */
1350 fprintf(stderr
, "Dynamic Ticks disabled\n");
1355 t
->priv
= (void *)(long)host_timer
;
1360 static void dynticks_stop_timer(struct qemu_alarm_timer
*t
)
1362 timer_t host_timer
= (timer_t
)(long)t
->priv
;
1364 timer_delete(host_timer
);
1367 static void dynticks_rearm_timer(struct qemu_alarm_timer
*t
)
1369 timer_t host_timer
= (timer_t
)(long)t
->priv
;
1370 struct itimerspec timeout
;
1371 int64_t nearest_delta_us
= INT64_MAX
;
1374 if (!active_timers
[QEMU_TIMER_REALTIME
] &&
1375 !active_timers
[QEMU_TIMER_VIRTUAL
])
1378 nearest_delta_us
= qemu_next_deadline_dyntick();
1380 /* check whether a timer is already running */
1381 if (timer_gettime(host_timer
, &timeout
)) {
1383 fprintf(stderr
, "Internal timer error: aborting\n");
1386 current_us
= timeout
.it_value
.tv_sec
* 1000000 + timeout
.it_value
.tv_nsec
/1000;
1387 if (current_us
&& current_us
<= nearest_delta_us
)
1390 timeout
.it_interval
.tv_sec
= 0;
1391 timeout
.it_interval
.tv_nsec
= 0; /* 0 for one-shot timer */
1392 timeout
.it_value
.tv_sec
= nearest_delta_us
/ 1000000;
1393 timeout
.it_value
.tv_nsec
= (nearest_delta_us
% 1000000) * 1000;
1394 if (timer_settime(host_timer
, 0 /* RELATIVE */, &timeout
, NULL
)) {
1396 fprintf(stderr
, "Internal timer error: aborting\n");
1401 #endif /* defined(__linux__) */
1403 static int unix_start_timer(struct qemu_alarm_timer
*t
)
1405 struct sigaction act
;
1406 struct itimerval itv
;
1410 sigfillset(&act
.sa_mask
);
1412 act
.sa_handler
= host_alarm_handler
;
1414 sigaction(SIGALRM
, &act
, NULL
);
1416 itv
.it_interval
.tv_sec
= 0;
1417 /* for i386 kernel 2.6 to get 1 ms */
1418 itv
.it_interval
.tv_usec
= 999;
1419 itv
.it_value
.tv_sec
= 0;
1420 itv
.it_value
.tv_usec
= 10 * 1000;
1422 err
= setitimer(ITIMER_REAL
, &itv
, NULL
);
1429 static void unix_stop_timer(struct qemu_alarm_timer
*t
)
1431 struct itimerval itv
;
1433 memset(&itv
, 0, sizeof(itv
));
1434 setitimer(ITIMER_REAL
, &itv
, NULL
);
1437 #endif /* !defined(_WIN32) */
1442 static int win32_start_timer(struct qemu_alarm_timer
*t
)
1445 struct qemu_alarm_win32
*data
= t
->priv
;
1448 memset(&tc
, 0, sizeof(tc
));
1449 timeGetDevCaps(&tc
, sizeof(tc
));
1451 if (data
->period
< tc
.wPeriodMin
)
1452 data
->period
= tc
.wPeriodMin
;
1454 timeBeginPeriod(data
->period
);
1456 flags
= TIME_CALLBACK_FUNCTION
;
1457 if (alarm_has_dynticks(t
))
1458 flags
|= TIME_ONESHOT
;
1460 flags
|= TIME_PERIODIC
;
1462 data
->timerId
= timeSetEvent(1, // interval (ms)
1463 data
->period
, // resolution
1464 host_alarm_handler
, // function
1465 (DWORD
)t
, // parameter
1468 if (!data
->timerId
) {
1469 perror("Failed to initialize win32 alarm timer");
1470 timeEndPeriod(data
->period
);
1477 static void win32_stop_timer(struct qemu_alarm_timer
*t
)
1479 struct qemu_alarm_win32
*data
= t
->priv
;
1481 timeKillEvent(data
->timerId
);
1482 timeEndPeriod(data
->period
);
1485 static void win32_rearm_timer(struct qemu_alarm_timer
*t
)
1487 struct qemu_alarm_win32
*data
= t
->priv
;
1488 uint64_t nearest_delta_us
;
1490 if (!active_timers
[QEMU_TIMER_REALTIME
] &&
1491 !active_timers
[QEMU_TIMER_VIRTUAL
])
1494 nearest_delta_us
= qemu_next_deadline_dyntick();
1495 nearest_delta_us
/= 1000;
1497 timeKillEvent(data
->timerId
);
1499 data
->timerId
= timeSetEvent(1,
1503 TIME_ONESHOT
| TIME_PERIODIC
);
1505 if (!data
->timerId
) {
1506 perror("Failed to re-arm win32 alarm timer");
1508 timeEndPeriod(data
->period
);
1515 static int init_timer_alarm(void)
1517 struct qemu_alarm_timer
*t
= NULL
;
1520 for (i
= 0; alarm_timers
[i
].name
; i
++) {
1521 t
= &alarm_timers
[i
];
1541 static void quit_timers(void)
1543 alarm_timer
->stop(alarm_timer
);
1547 /***********************************************************/
1548 /* host time/date access */
1549 void qemu_get_timedate(struct tm
*tm
, int offset
)
1556 if (rtc_date_offset
== -1) {
1560 ret
= localtime(&ti
);
1562 ti
-= rtc_date_offset
;
1566 memcpy(tm
, ret
, sizeof(struct tm
));
1569 int qemu_timedate_diff(struct tm
*tm
)
1573 if (rtc_date_offset
== -1)
1575 seconds
= mktimegm(tm
);
1577 seconds
= mktime(tm
);
1579 seconds
= mktimegm(tm
) + rtc_date_offset
;
1581 return seconds
- time(NULL
);
1585 static void socket_cleanup(void)
1590 static int socket_init(void)
1595 ret
= WSAStartup(MAKEWORD(2,2), &Data
);
1597 err
= WSAGetLastError();
1598 fprintf(stderr
, "WSAStartup: %d\n", err
);
1601 atexit(socket_cleanup
);
1606 int get_next_param_value(char *buf
, int buf_size
,
1607 const char *tag
, const char **pstr
)
1614 p
= get_opt_name(option
, sizeof(option
), p
, '=');
1618 if (!strcmp(tag
, option
)) {
1619 *pstr
= get_opt_value(buf
, buf_size
, p
);
1620 if (**pstr
== ',') {
1625 p
= get_opt_value(NULL
, 0, p
);
1634 int get_param_value(char *buf
, int buf_size
,
1635 const char *tag
, const char *str
)
1637 return get_next_param_value(buf
, buf_size
, tag
, &str
);
1640 int check_params(char *buf
, int buf_size
,
1641 const char * const *params
, const char *str
)
1647 while (*p
!= '\0') {
1648 p
= get_opt_name(buf
, buf_size
, p
, '=');
1653 for (i
= 0; params
[i
] != NULL
; i
++) {
1654 if (!strcmp(params
[i
], buf
)) {
1658 if (params
[i
] == NULL
) {
1661 p
= get_opt_value(NULL
, 0, p
);
1670 /***********************************************************/
1671 /* Bluetooth support */
1674 static struct HCIInfo
*hci_table
[MAX_NICS
];
1676 static struct bt_vlan_s
{
1677 struct bt_scatternet_s net
;
1679 struct bt_vlan_s
*next
;
1682 /* find or alloc a new bluetooth "VLAN" */
1683 static struct bt_scatternet_s
*qemu_find_bt_vlan(int id
)
1685 struct bt_vlan_s
**pvlan
, *vlan
;
1686 for (vlan
= first_bt_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
1690 vlan
= qemu_mallocz(sizeof(struct bt_vlan_s
));
1692 pvlan
= &first_bt_vlan
;
1693 while (*pvlan
!= NULL
)
1694 pvlan
= &(*pvlan
)->next
;
1699 static void null_hci_send(struct HCIInfo
*hci
, const uint8_t *data
, int len
)
1703 static int null_hci_addr_set(struct HCIInfo
*hci
, const uint8_t *bd_addr
)
1708 static struct HCIInfo null_hci
= {
1709 .cmd_send
= null_hci_send
,
1710 .sco_send
= null_hci_send
,
1711 .acl_send
= null_hci_send
,
1712 .bdaddr_set
= null_hci_addr_set
,
1715 struct HCIInfo
*qemu_next_hci(void)
1717 if (cur_hci
== nb_hcis
)
1720 return hci_table
[cur_hci
++];
1723 static struct HCIInfo
*hci_init(const char *str
)
1726 struct bt_scatternet_s
*vlan
= 0;
1728 if (!strcmp(str
, "null"))
1731 else if (!strncmp(str
, "host", 4) && (str
[4] == '\0' || str
[4] == ':'))
1733 return bt_host_hci(str
[4] ? str
+ 5 : "hci0");
1734 else if (!strncmp(str
, "hci", 3)) {
1737 if (!strncmp(str
+ 3, ",vlan=", 6)) {
1738 vlan
= qemu_find_bt_vlan(strtol(str
+ 9, &endp
, 0));
1743 vlan
= qemu_find_bt_vlan(0);
1745 return bt_new_hci(vlan
);
1748 fprintf(stderr
, "qemu: Unknown bluetooth HCI `%s'.\n", str
);
1753 static int bt_hci_parse(const char *str
)
1755 struct HCIInfo
*hci
;
1758 if (nb_hcis
>= MAX_NICS
) {
1759 fprintf(stderr
, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS
);
1763 hci
= hci_init(str
);
1772 bdaddr
.b
[5] = 0x56 + nb_hcis
;
1773 hci
->bdaddr_set(hci
, bdaddr
.b
);
1775 hci_table
[nb_hcis
++] = hci
;
1780 static void bt_vhci_add(int vlan_id
)
1782 struct bt_scatternet_s
*vlan
= qemu_find_bt_vlan(vlan_id
);
1785 fprintf(stderr
, "qemu: warning: adding a VHCI to "
1786 "an empty scatternet %i\n", vlan_id
);
1788 bt_vhci_init(bt_new_hci(vlan
));
1791 static struct bt_device_s
*bt_device_add(const char *opt
)
1793 struct bt_scatternet_s
*vlan
;
1795 char *endp
= strstr(opt
, ",vlan=");
1796 int len
= (endp
? endp
- opt
: strlen(opt
)) + 1;
1799 pstrcpy(devname
, MIN(sizeof(devname
), len
), opt
);
1802 vlan_id
= strtol(endp
+ 6, &endp
, 0);
1804 fprintf(stderr
, "qemu: unrecognised bluetooth vlan Id\n");
1809 vlan
= qemu_find_bt_vlan(vlan_id
);
1812 fprintf(stderr
, "qemu: warning: adding a slave device to "
1813 "an empty scatternet %i\n", vlan_id
);
1815 if (!strcmp(devname
, "keyboard"))
1816 return bt_keyboard_init(vlan
);
1818 fprintf(stderr
, "qemu: unsupported bluetooth device `%s'\n", devname
);
1822 static int bt_parse(const char *opt
)
1824 const char *endp
, *p
;
1827 if (strstart(opt
, "hci", &endp
)) {
1828 if (!*endp
|| *endp
== ',') {
1830 if (!strstart(endp
, ",vlan=", 0))
1833 return bt_hci_parse(opt
);
1835 } else if (strstart(opt
, "vhci", &endp
)) {
1836 if (!*endp
|| *endp
== ',') {
1838 if (strstart(endp
, ",vlan=", &p
)) {
1839 vlan
= strtol(p
, (char **) &endp
, 0);
1841 fprintf(stderr
, "qemu: bad scatternet '%s'\n", p
);
1845 fprintf(stderr
, "qemu: bad parameter '%s'\n", endp
+ 1);
1854 } else if (strstart(opt
, "device:", &endp
))
1855 return !bt_device_add(endp
);
1857 fprintf(stderr
, "qemu: bad bluetooth parameter '%s'\n", opt
);
1861 /***********************************************************/
1862 /* QEMU Block devices */
1864 #define HD_ALIAS "index=%d,media=disk"
1865 #define CDROM_ALIAS "index=2,media=cdrom"
1866 #define FD_ALIAS "index=%d,if=floppy"
1867 #define PFLASH_ALIAS "if=pflash"
1868 #define MTD_ALIAS "if=mtd"
1869 #define SD_ALIAS "index=0,if=sd"
1871 static int drive_opt_get_free_idx(void)
1875 for (index
= 0; index
< MAX_DRIVES
; index
++)
1876 if (!drives_opt
[index
].used
) {
1877 drives_opt
[index
].used
= 1;
1884 static int drive_get_free_idx(void)
1888 for (index
= 0; index
< MAX_DRIVES
; index
++)
1889 if (!drives_table
[index
].used
) {
1890 drives_table
[index
].used
= 1;
1897 int drive_add(const char *file
, const char *fmt
, ...)
1900 int index
= drive_opt_get_free_idx();
1902 if (nb_drives_opt
>= MAX_DRIVES
|| index
== -1) {
1903 fprintf(stderr
, "qemu: too many drives\n");
1907 drives_opt
[index
].file
= file
;
1909 vsnprintf(drives_opt
[index
].opt
,
1910 sizeof(drives_opt
[0].opt
), fmt
, ap
);
1917 void drive_remove(int index
)
1919 drives_opt
[index
].used
= 0;
1923 int drive_get_index(BlockInterfaceType type
, int bus
, int unit
)
1927 /* seek interface, bus and unit */
1929 for (index
= 0; index
< MAX_DRIVES
; index
++)
1930 if (drives_table
[index
].type
== type
&&
1931 drives_table
[index
].bus
== bus
&&
1932 drives_table
[index
].unit
== unit
&&
1933 drives_table
[index
].used
)
1939 int drive_get_max_bus(BlockInterfaceType type
)
1945 for (index
= 0; index
< nb_drives
; index
++) {
1946 if(drives_table
[index
].type
== type
&&
1947 drives_table
[index
].bus
> max_bus
)
1948 max_bus
= drives_table
[index
].bus
;
1953 const char *drive_get_serial(BlockDriverState
*bdrv
)
1957 for (index
= 0; index
< nb_drives
; index
++)
1958 if (drives_table
[index
].bdrv
== bdrv
)
1959 return drives_table
[index
].serial
;
1964 BlockInterfaceErrorAction
drive_get_onerror(BlockDriverState
*bdrv
)
1968 for (index
= 0; index
< nb_drives
; index
++)
1969 if (drives_table
[index
].bdrv
== bdrv
)
1970 return drives_table
[index
].onerror
;
1972 return BLOCK_ERR_STOP_ENOSPC
;
1975 static void bdrv_format_print(void *opaque
, const char *name
)
1977 fprintf(stderr
, " %s", name
);
1980 void drive_uninit(BlockDriverState
*bdrv
)
1984 for (i
= 0; i
< MAX_DRIVES
; i
++)
1985 if (drives_table
[i
].bdrv
== bdrv
) {
1986 drives_table
[i
].bdrv
= NULL
;
1987 drives_table
[i
].used
= 0;
1988 drive_remove(drives_table
[i
].drive_opt_idx
);
1994 int drive_init(struct drive_opt
*arg
, int snapshot
, void *opaque
)
2000 const char *mediastr
= "";
2001 BlockInterfaceType type
;
2002 enum { MEDIA_DISK
, MEDIA_CDROM
} media
;
2003 int bus_id
, unit_id
;
2004 int cyls
, heads
, secs
, translation
;
2005 BlockDriverState
*bdrv
;
2006 BlockDriver
*drv
= NULL
;
2007 QEMUMachine
*machine
= opaque
;
2011 int bdrv_flags
, onerror
;
2012 const char *devaddr
;
2013 int drives_table_idx
;
2014 char *str
= arg
->opt
;
2015 static const char * const params
[] = { "bus", "unit", "if", "index",
2016 "cyls", "heads", "secs", "trans",
2017 "media", "snapshot", "file",
2018 "cache", "format", "serial",
2022 if (check_params(buf
, sizeof(buf
), params
, str
) < 0) {
2023 fprintf(stderr
, "qemu: unknown parameter '%s' in '%s'\n",
2029 cyls
= heads
= secs
= 0;
2032 translation
= BIOS_ATA_TRANSLATION_AUTO
;
2036 if (machine
->use_scsi
) {
2038 max_devs
= MAX_SCSI_DEVS
;
2039 pstrcpy(devname
, sizeof(devname
), "scsi");
2042 max_devs
= MAX_IDE_DEVS
;
2043 pstrcpy(devname
, sizeof(devname
), "ide");
2047 /* extract parameters */
2049 if (get_param_value(buf
, sizeof(buf
), "bus", str
)) {
2050 bus_id
= strtol(buf
, NULL
, 0);
2052 fprintf(stderr
, "qemu: '%s' invalid bus id\n", str
);
2057 if (get_param_value(buf
, sizeof(buf
), "unit", str
)) {
2058 unit_id
= strtol(buf
, NULL
, 0);
2060 fprintf(stderr
, "qemu: '%s' invalid unit id\n", str
);
2065 if (get_param_value(buf
, sizeof(buf
), "if", str
)) {
2066 pstrcpy(devname
, sizeof(devname
), buf
);
2067 if (!strcmp(buf
, "ide")) {
2069 max_devs
= MAX_IDE_DEVS
;
2070 } else if (!strcmp(buf
, "scsi")) {
2072 max_devs
= MAX_SCSI_DEVS
;
2073 } else if (!strcmp(buf
, "floppy")) {
2076 } else if (!strcmp(buf
, "pflash")) {
2079 } else if (!strcmp(buf
, "mtd")) {
2082 } else if (!strcmp(buf
, "sd")) {
2085 } else if (!strcmp(buf
, "virtio")) {
2088 } else if (!strcmp(buf
, "xen")) {
2092 fprintf(stderr
, "qemu: '%s' unsupported bus type '%s'\n", str
, buf
);
2097 if (get_param_value(buf
, sizeof(buf
), "index", str
)) {
2098 index
= strtol(buf
, NULL
, 0);
2100 fprintf(stderr
, "qemu: '%s' invalid index\n", str
);
2105 if (get_param_value(buf
, sizeof(buf
), "cyls", str
)) {
2106 cyls
= strtol(buf
, NULL
, 0);
2109 if (get_param_value(buf
, sizeof(buf
), "heads", str
)) {
2110 heads
= strtol(buf
, NULL
, 0);
2113 if (get_param_value(buf
, sizeof(buf
), "secs", str
)) {
2114 secs
= strtol(buf
, NULL
, 0);
2117 if (cyls
|| heads
|| secs
) {
2118 if (cyls
< 1 || cyls
> 16383) {
2119 fprintf(stderr
, "qemu: '%s' invalid physical cyls number\n", str
);
2122 if (heads
< 1 || heads
> 16) {
2123 fprintf(stderr
, "qemu: '%s' invalid physical heads number\n", str
);
2126 if (secs
< 1 || secs
> 63) {
2127 fprintf(stderr
, "qemu: '%s' invalid physical secs number\n", str
);
2132 if (get_param_value(buf
, sizeof(buf
), "trans", str
)) {
2135 "qemu: '%s' trans must be used with cyls,heads and secs\n",
2139 if (!strcmp(buf
, "none"))
2140 translation
= BIOS_ATA_TRANSLATION_NONE
;
2141 else if (!strcmp(buf
, "lba"))
2142 translation
= BIOS_ATA_TRANSLATION_LBA
;
2143 else if (!strcmp(buf
, "auto"))
2144 translation
= BIOS_ATA_TRANSLATION_AUTO
;
2146 fprintf(stderr
, "qemu: '%s' invalid translation type\n", str
);
2151 if (get_param_value(buf
, sizeof(buf
), "media", str
)) {
2152 if (!strcmp(buf
, "disk")) {
2154 } else if (!strcmp(buf
, "cdrom")) {
2155 if (cyls
|| secs
|| heads
) {
2157 "qemu: '%s' invalid physical CHS format\n", str
);
2160 media
= MEDIA_CDROM
;
2162 fprintf(stderr
, "qemu: '%s' invalid media\n", str
);
2167 if (get_param_value(buf
, sizeof(buf
), "snapshot", str
)) {
2168 if (!strcmp(buf
, "on"))
2170 else if (!strcmp(buf
, "off"))
2173 fprintf(stderr
, "qemu: '%s' invalid snapshot option\n", str
);
2178 if (get_param_value(buf
, sizeof(buf
), "cache", str
)) {
2179 if (!strcmp(buf
, "off") || !strcmp(buf
, "none"))
2181 else if (!strcmp(buf
, "writethrough"))
2183 else if (!strcmp(buf
, "writeback"))
2186 fprintf(stderr
, "qemu: invalid cache option\n");
2191 if (get_param_value(buf
, sizeof(buf
), "format", str
)) {
2192 if (strcmp(buf
, "?") == 0) {
2193 fprintf(stderr
, "qemu: Supported formats:");
2194 bdrv_iterate_format(bdrv_format_print
, NULL
);
2195 fprintf(stderr
, "\n");
2198 drv
= bdrv_find_format(buf
);
2200 fprintf(stderr
, "qemu: '%s' invalid format\n", buf
);
2205 if (arg
->file
== NULL
)
2206 get_param_value(file
, sizeof(file
), "file", str
);
2208 pstrcpy(file
, sizeof(file
), arg
->file
);
2210 if (!get_param_value(serial
, sizeof(serial
), "serial", str
))
2211 memset(serial
, 0, sizeof(serial
));
2213 onerror
= BLOCK_ERR_STOP_ENOSPC
;
2214 if (get_param_value(buf
, sizeof(serial
), "werror", str
)) {
2215 if (type
!= IF_IDE
&& type
!= IF_SCSI
&& type
!= IF_VIRTIO
) {
2216 fprintf(stderr
, "werror is no supported by this format\n");
2219 if (!strcmp(buf
, "ignore"))
2220 onerror
= BLOCK_ERR_IGNORE
;
2221 else if (!strcmp(buf
, "enospc"))
2222 onerror
= BLOCK_ERR_STOP_ENOSPC
;
2223 else if (!strcmp(buf
, "stop"))
2224 onerror
= BLOCK_ERR_STOP_ANY
;
2225 else if (!strcmp(buf
, "report"))
2226 onerror
= BLOCK_ERR_REPORT
;
2228 fprintf(stderr
, "qemu: '%s' invalid write error action\n", buf
);
2234 if (get_param_value(buf
, sizeof(buf
), "addr", str
)) {
2235 if (type
!= IF_VIRTIO
) {
2236 fprintf(stderr
, "addr is not supported by in '%s'\n", str
);
2239 devaddr
= strdup(buf
);
2242 /* compute bus and unit according index */
2245 if (bus_id
!= 0 || unit_id
!= -1) {
2247 "qemu: '%s' index cannot be used with bus and unit\n", str
);
2255 unit_id
= index
% max_devs
;
2256 bus_id
= index
/ max_devs
;
2260 /* if user doesn't specify a unit_id,
2261 * try to find the first free
2264 if (unit_id
== -1) {
2266 while (drive_get_index(type
, bus_id
, unit_id
) != -1) {
2268 if (max_devs
&& unit_id
>= max_devs
) {
2269 unit_id
-= max_devs
;
2277 if (max_devs
&& unit_id
>= max_devs
) {
2278 fprintf(stderr
, "qemu: '%s' unit %d too big (max is %d)\n",
2279 str
, unit_id
, max_devs
- 1);
2284 * ignore multiple definitions
2287 if (drive_get_index(type
, bus_id
, unit_id
) != -1)
2292 if (type
== IF_IDE
|| type
== IF_SCSI
)
2293 mediastr
= (media
== MEDIA_CDROM
) ? "-cd" : "-hd";
2295 snprintf(buf
, sizeof(buf
), "%s%i%s%i",
2296 devname
, bus_id
, mediastr
, unit_id
);
2298 snprintf(buf
, sizeof(buf
), "%s%s%i",
2299 devname
, mediastr
, unit_id
);
2300 bdrv
= bdrv_new(buf
);
2301 drives_table_idx
= drive_get_free_idx();
2302 drives_table
[drives_table_idx
].bdrv
= bdrv
;
2303 drives_table
[drives_table_idx
].devaddr
= devaddr
;
2304 drives_table
[drives_table_idx
].type
= type
;
2305 drives_table
[drives_table_idx
].bus
= bus_id
;
2306 drives_table
[drives_table_idx
].unit
= unit_id
;
2307 drives_table
[drives_table_idx
].onerror
= onerror
;
2308 drives_table
[drives_table_idx
].drive_opt_idx
= arg
- drives_opt
;
2309 strncpy(drives_table
[drives_table_idx
].serial
, serial
, sizeof(serial
));
2319 bdrv_set_geometry_hint(bdrv
, cyls
, heads
, secs
);
2320 bdrv_set_translation_hint(bdrv
, translation
);
2324 bdrv_set_type_hint(bdrv
, BDRV_TYPE_CDROM
);
2329 /* FIXME: This isn't really a floppy, but it's a reasonable
2332 bdrv_set_type_hint(bdrv
, BDRV_TYPE_FLOPPY
);
2345 bdrv_flags
|= BDRV_O_SNAPSHOT
;
2346 cache
= 2; /* always use write-back with snapshot */
2348 if (cache
== 0) /* no caching */
2349 bdrv_flags
|= BDRV_O_NOCACHE
;
2350 else if (cache
== 2) /* write-back */
2351 bdrv_flags
|= BDRV_O_CACHE_WB
;
2352 if (bdrv_open2(bdrv
, file
, bdrv_flags
, drv
) < 0) {
2353 fprintf(stderr
, "qemu: could not open disk image %s\n",
2357 if (bdrv_key_required(bdrv
))
2359 return drives_table_idx
;
2362 void qemu_register_boot_set(QEMUBootSetHandler
*func
, void *opaque
)
2364 boot_set_handler
= func
;
2365 boot_set_opaque
= opaque
;
2368 int qemu_boot_set(const char *boot_devices
)
2370 if (!boot_set_handler
) {
2373 return boot_set_handler(boot_set_opaque
, boot_devices
);
2376 static int parse_bootdevices(char *devices
)
2378 /* We just do some generic consistency checks */
2382 for (p
= devices
; *p
!= '\0'; p
++) {
2383 /* Allowed boot devices are:
2384 * a-b: floppy disk drives
2385 * c-f: IDE disk drives
2386 * g-m: machine implementation dependant drives
2387 * n-p: network devices
2388 * It's up to each machine implementation to check if the given boot
2389 * devices match the actual hardware implementation and firmware
2392 if (*p
< 'a' || *p
> 'p') {
2393 fprintf(stderr
, "Invalid boot device '%c'\n", *p
);
2396 if (bitmap
& (1 << (*p
- 'a'))) {
2397 fprintf(stderr
, "Boot device '%c' was given twice\n", *p
);
2400 bitmap
|= 1 << (*p
- 'a');
2405 static void restore_boot_devices(void *opaque
)
2407 char *standard_boot_devices
= opaque
;
2409 qemu_boot_set(standard_boot_devices
);
2411 qemu_unregister_reset(restore_boot_devices
, standard_boot_devices
);
2412 qemu_free(standard_boot_devices
);
2415 static void numa_add(const char *optarg
)
2419 unsigned long long value
, endvalue
;
2422 optarg
= get_opt_name(option
, 128, optarg
, ',') + 1;
2423 if (!strcmp(option
, "node")) {
2424 if (get_param_value(option
, 128, "nodeid", optarg
) == 0) {
2425 nodenr
= nb_numa_nodes
;
2427 nodenr
= strtoull(option
, NULL
, 10);
2430 if (get_param_value(option
, 128, "mem", optarg
) == 0) {
2431 node_mem
[nodenr
] = 0;
2433 value
= strtoull(option
, &endptr
, 0);
2435 case 0: case 'M': case 'm':
2442 node_mem
[nodenr
] = value
;
2444 if (get_param_value(option
, 128, "cpus", optarg
) == 0) {
2445 node_cpumask
[nodenr
] = 0;
2447 value
= strtoull(option
, &endptr
, 10);
2450 fprintf(stderr
, "only 64 CPUs in NUMA mode supported.\n");
2452 if (*endptr
== '-') {
2453 endvalue
= strtoull(endptr
+1, &endptr
, 10);
2454 if (endvalue
>= 63) {
2457 "only 63 CPUs in NUMA mode supported.\n");
2459 value
= (1 << (endvalue
+ 1)) - (1 << value
);
2464 node_cpumask
[nodenr
] = value
;
2471 /***********************************************************/
2474 static USBPort
*used_usb_ports
;
2475 static USBPort
*free_usb_ports
;
2477 /* ??? Maybe change this to register a hub to keep track of the topology. */
2478 void qemu_register_usb_port(USBPort
*port
, void *opaque
, int index
,
2479 usb_attachfn attach
)
2481 port
->opaque
= opaque
;
2482 port
->index
= index
;
2483 port
->attach
= attach
;
2484 port
->next
= free_usb_ports
;
2485 free_usb_ports
= port
;
2488 int usb_device_add_dev(USBDevice
*dev
)
2492 /* Find a USB port to add the device to. */
2493 port
= free_usb_ports
;
2497 /* Create a new hub and chain it on. */
2498 free_usb_ports
= NULL
;
2499 port
->next
= used_usb_ports
;
2500 used_usb_ports
= port
;
2502 hub
= usb_hub_init(VM_USB_HUB_SIZE
);
2503 usb_attach(port
, hub
);
2504 port
= free_usb_ports
;
2507 free_usb_ports
= port
->next
;
2508 port
->next
= used_usb_ports
;
2509 used_usb_ports
= port
;
2510 usb_attach(port
, dev
);
2514 static void usb_msd_password_cb(void *opaque
, int err
)
2516 USBDevice
*dev
= opaque
;
2519 usb_device_add_dev(dev
);
2521 dev
->handle_destroy(dev
);
2524 static int usb_device_add(const char *devname
, int is_hotplug
)
2529 if (!free_usb_ports
)
2532 if (strstart(devname
, "host:", &p
)) {
2533 dev
= usb_host_device_open(p
);
2534 } else if (!strcmp(devname
, "mouse")) {
2535 dev
= usb_mouse_init();
2536 } else if (!strcmp(devname
, "tablet")) {
2537 dev
= usb_tablet_init();
2538 } else if (!strcmp(devname
, "keyboard")) {
2539 dev
= usb_keyboard_init();
2540 } else if (strstart(devname
, "disk:", &p
)) {
2541 BlockDriverState
*bs
;
2543 dev
= usb_msd_init(p
);
2546 bs
= usb_msd_get_bdrv(dev
);
2547 if (bdrv_key_required(bs
)) {
2550 monitor_read_bdrv_key_start(cur_mon
, bs
, usb_msd_password_cb
,
2555 } else if (!strcmp(devname
, "wacom-tablet")) {
2556 dev
= usb_wacom_init();
2557 } else if (strstart(devname
, "serial:", &p
)) {
2558 dev
= usb_serial_init(p
);
2559 #ifdef CONFIG_BRLAPI
2560 } else if (!strcmp(devname
, "braille")) {
2561 dev
= usb_baum_init();
2563 } else if (strstart(devname
, "net:", &p
)) {
2566 if (net_client_init(NULL
, "nic", p
) < 0)
2568 nd_table
[nic
].model
= "usb";
2569 dev
= usb_net_init(&nd_table
[nic
]);
2570 } else if (!strcmp(devname
, "bt") || strstart(devname
, "bt:", &p
)) {
2571 dev
= usb_bt_init(devname
[2] ? hci_init(p
) :
2572 bt_new_hci(qemu_find_bt_vlan(0)));
2579 return usb_device_add_dev(dev
);
2582 int usb_device_del_addr(int bus_num
, int addr
)
2588 if (!used_usb_ports
)
2594 lastp
= &used_usb_ports
;
2595 port
= used_usb_ports
;
2596 while (port
&& port
->dev
->addr
!= addr
) {
2597 lastp
= &port
->next
;
2605 *lastp
= port
->next
;
2606 usb_attach(port
, NULL
);
2607 dev
->handle_destroy(dev
);
2608 port
->next
= free_usb_ports
;
2609 free_usb_ports
= port
;
2613 static int usb_device_del(const char *devname
)
2618 if (strstart(devname
, "host:", &p
))
2619 return usb_host_device_close(p
);
2621 if (!used_usb_ports
)
2624 p
= strchr(devname
, '.');
2627 bus_num
= strtoul(devname
, NULL
, 0);
2628 addr
= strtoul(p
+ 1, NULL
, 0);
2630 return usb_device_del_addr(bus_num
, addr
);
2633 void do_usb_add(Monitor
*mon
, const char *devname
)
2635 usb_device_add(devname
, 1);
2638 void do_usb_del(Monitor
*mon
, const char *devname
)
2640 usb_device_del(devname
);
2643 void usb_info(Monitor
*mon
)
2647 const char *speed_str
;
2650 monitor_printf(mon
, "USB support not enabled\n");
2654 for (port
= used_usb_ports
; port
; port
= port
->next
) {
2658 switch(dev
->speed
) {
2662 case USB_SPEED_FULL
:
2665 case USB_SPEED_HIGH
:
2672 monitor_printf(mon
, " Device %d.%d, Speed %s Mb/s, Product %s\n",
2673 0, dev
->addr
, speed_str
, dev
->devname
);
2677 /***********************************************************/
2678 /* PCMCIA/Cardbus */
2680 static struct pcmcia_socket_entry_s
{
2681 PCMCIASocket
*socket
;
2682 struct pcmcia_socket_entry_s
*next
;
2683 } *pcmcia_sockets
= 0;
2685 void pcmcia_socket_register(PCMCIASocket
*socket
)
2687 struct pcmcia_socket_entry_s
*entry
;
2689 entry
= qemu_malloc(sizeof(struct pcmcia_socket_entry_s
));
2690 entry
->socket
= socket
;
2691 entry
->next
= pcmcia_sockets
;
2692 pcmcia_sockets
= entry
;
2695 void pcmcia_socket_unregister(PCMCIASocket
*socket
)
2697 struct pcmcia_socket_entry_s
*entry
, **ptr
;
2699 ptr
= &pcmcia_sockets
;
2700 for (entry
= *ptr
; entry
; ptr
= &entry
->next
, entry
= *ptr
)
2701 if (entry
->socket
== socket
) {
2707 void pcmcia_info(Monitor
*mon
)
2709 struct pcmcia_socket_entry_s
*iter
;
2711 if (!pcmcia_sockets
)
2712 monitor_printf(mon
, "No PCMCIA sockets\n");
2714 for (iter
= pcmcia_sockets
; iter
; iter
= iter
->next
)
2715 monitor_printf(mon
, "%s: %s\n", iter
->socket
->slot_string
,
2716 iter
->socket
->attached
? iter
->socket
->card_string
:
2720 /***********************************************************/
2721 /* register display */
2723 struct DisplayAllocator default_allocator
= {
2724 defaultallocator_create_displaysurface
,
2725 defaultallocator_resize_displaysurface
,
2726 defaultallocator_free_displaysurface
2729 void register_displaystate(DisplayState
*ds
)
2739 DisplayState
*get_displaystate(void)
2741 return display_state
;
2744 DisplayAllocator
*register_displayallocator(DisplayState
*ds
, DisplayAllocator
*da
)
2746 if(ds
->allocator
== &default_allocator
) ds
->allocator
= da
;
2747 return ds
->allocator
;
2752 static void dumb_display_init(void)
2754 DisplayState
*ds
= qemu_mallocz(sizeof(DisplayState
));
2755 ds
->allocator
= &default_allocator
;
2756 ds
->surface
= qemu_create_displaysurface(ds
, 640, 480);
2757 register_displaystate(ds
);
2760 /***********************************************************/
2763 typedef struct IOHandlerRecord
{
2765 IOCanRWHandler
*fd_read_poll
;
2767 IOHandler
*fd_write
;
2770 /* temporary data */
2772 struct IOHandlerRecord
*next
;
2775 static IOHandlerRecord
*first_io_handler
;
2777 /* XXX: fd_read_poll should be suppressed, but an API change is
2778 necessary in the character devices to suppress fd_can_read(). */
2779 int qemu_set_fd_handler2(int fd
,
2780 IOCanRWHandler
*fd_read_poll
,
2782 IOHandler
*fd_write
,
2785 IOHandlerRecord
**pioh
, *ioh
;
2787 if (!fd_read
&& !fd_write
) {
2788 pioh
= &first_io_handler
;
2793 if (ioh
->fd
== fd
) {
2800 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
2804 ioh
= qemu_mallocz(sizeof(IOHandlerRecord
));
2805 ioh
->next
= first_io_handler
;
2806 first_io_handler
= ioh
;
2809 ioh
->fd_read_poll
= fd_read_poll
;
2810 ioh
->fd_read
= fd_read
;
2811 ioh
->fd_write
= fd_write
;
2812 ioh
->opaque
= opaque
;
2818 int qemu_set_fd_handler(int fd
,
2820 IOHandler
*fd_write
,
2823 return qemu_set_fd_handler2(fd
, NULL
, fd_read
, fd_write
, opaque
);
2827 /***********************************************************/
2828 /* Polling handling */
2830 typedef struct PollingEntry
{
2833 struct PollingEntry
*next
;
2836 static PollingEntry
*first_polling_entry
;
2838 int qemu_add_polling_cb(PollingFunc
*func
, void *opaque
)
2840 PollingEntry
**ppe
, *pe
;
2841 pe
= qemu_mallocz(sizeof(PollingEntry
));
2843 pe
->opaque
= opaque
;
2844 for(ppe
= &first_polling_entry
; *ppe
!= NULL
; ppe
= &(*ppe
)->next
);
2849 void qemu_del_polling_cb(PollingFunc
*func
, void *opaque
)
2851 PollingEntry
**ppe
, *pe
;
2852 for(ppe
= &first_polling_entry
; *ppe
!= NULL
; ppe
= &(*ppe
)->next
) {
2854 if (pe
->func
== func
&& pe
->opaque
== opaque
) {
2862 /***********************************************************/
2863 /* Wait objects support */
2864 typedef struct WaitObjects
{
2866 HANDLE events
[MAXIMUM_WAIT_OBJECTS
+ 1];
2867 WaitObjectFunc
*func
[MAXIMUM_WAIT_OBJECTS
+ 1];
2868 void *opaque
[MAXIMUM_WAIT_OBJECTS
+ 1];
2871 static WaitObjects wait_objects
= {0};
2873 int qemu_add_wait_object(HANDLE handle
, WaitObjectFunc
*func
, void *opaque
)
2875 WaitObjects
*w
= &wait_objects
;
2877 if (w
->num
>= MAXIMUM_WAIT_OBJECTS
)
2879 w
->events
[w
->num
] = handle
;
2880 w
->func
[w
->num
] = func
;
2881 w
->opaque
[w
->num
] = opaque
;
2886 void qemu_del_wait_object(HANDLE handle
, WaitObjectFunc
*func
, void *opaque
)
2889 WaitObjects
*w
= &wait_objects
;
2892 for (i
= 0; i
< w
->num
; i
++) {
2893 if (w
->events
[i
] == handle
)
2896 w
->events
[i
] = w
->events
[i
+ 1];
2897 w
->func
[i
] = w
->func
[i
+ 1];
2898 w
->opaque
[i
] = w
->opaque
[i
+ 1];
2906 /***********************************************************/
2907 /* ram save/restore */
2909 static int ram_get_page(QEMUFile
*f
, uint8_t *buf
, int len
)
2913 v
= qemu_get_byte(f
);
2916 if (qemu_get_buffer(f
, buf
, len
) != len
)
2920 v
= qemu_get_byte(f
);
2921 memset(buf
, v
, len
);
2927 if (qemu_file_has_error(f
))
2933 static int ram_load_v1(QEMUFile
*f
, void *opaque
)
2938 if (qemu_get_be32(f
) != last_ram_offset
)
2940 for(i
= 0; i
< last_ram_offset
; i
+= TARGET_PAGE_SIZE
) {
2941 ret
= ram_get_page(f
, qemu_get_ram_ptr(i
), TARGET_PAGE_SIZE
);
2948 #define BDRV_HASH_BLOCK_SIZE 1024
2949 #define IOBUF_SIZE 4096
2950 #define RAM_CBLOCK_MAGIC 0xfabe
2952 typedef struct RamDecompressState
{
2955 uint8_t buf
[IOBUF_SIZE
];
2956 } RamDecompressState
;
2958 static int ram_decompress_open(RamDecompressState
*s
, QEMUFile
*f
)
2961 memset(s
, 0, sizeof(*s
));
2963 ret
= inflateInit(&s
->zstream
);
2969 static int ram_decompress_buf(RamDecompressState
*s
, uint8_t *buf
, int len
)
2973 s
->zstream
.avail_out
= len
;
2974 s
->zstream
.next_out
= buf
;
2975 while (s
->zstream
.avail_out
> 0) {
2976 if (s
->zstream
.avail_in
== 0) {
2977 if (qemu_get_be16(s
->f
) != RAM_CBLOCK_MAGIC
)
2979 clen
= qemu_get_be16(s
->f
);
2980 if (clen
> IOBUF_SIZE
)
2982 qemu_get_buffer(s
->f
, s
->buf
, clen
);
2983 s
->zstream
.avail_in
= clen
;
2984 s
->zstream
.next_in
= s
->buf
;
2986 ret
= inflate(&s
->zstream
, Z_PARTIAL_FLUSH
);
2987 if (ret
!= Z_OK
&& ret
!= Z_STREAM_END
) {
2994 static void ram_decompress_close(RamDecompressState
*s
)
2996 inflateEnd(&s
->zstream
);
2999 #define RAM_SAVE_FLAG_FULL 0x01
3000 #define RAM_SAVE_FLAG_COMPRESS 0x02
3001 #define RAM_SAVE_FLAG_MEM_SIZE 0x04
3002 #define RAM_SAVE_FLAG_PAGE 0x08
3003 #define RAM_SAVE_FLAG_EOS 0x10
3005 static int is_dup_page(uint8_t *page
, uint8_t ch
)
3007 uint32_t val
= ch
<< 24 | ch
<< 16 | ch
<< 8 | ch
;
3008 uint32_t *array
= (uint32_t *)page
;
3011 for (i
= 0; i
< (TARGET_PAGE_SIZE
/ 4); i
++) {
3012 if (array
[i
] != val
)
3019 static int ram_save_block(QEMUFile
*f
)
3021 static ram_addr_t current_addr
= 0;
3022 ram_addr_t saved_addr
= current_addr
;
3023 ram_addr_t addr
= 0;
3026 while (addr
< last_ram_offset
) {
3027 if (cpu_physical_memory_get_dirty(current_addr
, MIGRATION_DIRTY_FLAG
)) {
3030 cpu_physical_memory_reset_dirty(current_addr
,
3031 current_addr
+ TARGET_PAGE_SIZE
,
3032 MIGRATION_DIRTY_FLAG
);
3034 p
= qemu_get_ram_ptr(current_addr
);
3036 if (is_dup_page(p
, *p
)) {
3037 qemu_put_be64(f
, current_addr
| RAM_SAVE_FLAG_COMPRESS
);
3038 qemu_put_byte(f
, *p
);
3040 qemu_put_be64(f
, current_addr
| RAM_SAVE_FLAG_PAGE
);
3041 qemu_put_buffer(f
, p
, TARGET_PAGE_SIZE
);
3047 addr
+= TARGET_PAGE_SIZE
;
3048 current_addr
= (saved_addr
+ addr
) % last_ram_offset
;
3054 static uint64_t bytes_transferred
= 0;
3056 static ram_addr_t
ram_save_remaining(void)
3059 ram_addr_t count
= 0;
3061 for (addr
= 0; addr
< last_ram_offset
; addr
+= TARGET_PAGE_SIZE
) {
3062 if (cpu_physical_memory_get_dirty(addr
, MIGRATION_DIRTY_FLAG
))
3069 uint64_t ram_bytes_remaining(void)
3071 return ram_save_remaining() * TARGET_PAGE_SIZE
;
3074 uint64_t ram_bytes_transferred(void)
3076 return bytes_transferred
;
3079 uint64_t ram_bytes_total(void)
3081 return last_ram_offset
;
3084 static int ram_save_live(QEMUFile
*f
, int stage
, void *opaque
)
3087 uint64_t bytes_transferred_last
;
3089 uint64_t expected_time
= 0;
3091 if (cpu_physical_sync_dirty_bitmap(0, TARGET_PHYS_ADDR_MAX
) != 0) {
3092 qemu_file_set_error(f
);
3097 /* Make sure all dirty bits are set */
3098 for (addr
= 0; addr
< last_ram_offset
; addr
+= TARGET_PAGE_SIZE
) {
3099 if (!cpu_physical_memory_get_dirty(addr
, MIGRATION_DIRTY_FLAG
))
3100 cpu_physical_memory_set_dirty(addr
);
3103 /* Enable dirty memory tracking */
3104 cpu_physical_memory_set_dirty_tracking(1);
3106 qemu_put_be64(f
, last_ram_offset
| RAM_SAVE_FLAG_MEM_SIZE
);
3109 bytes_transferred_last
= bytes_transferred
;
3110 bwidth
= get_clock();
3112 while (!qemu_file_rate_limit(f
)) {
3115 ret
= ram_save_block(f
);
3116 bytes_transferred
+= ret
* TARGET_PAGE_SIZE
;
3117 if (ret
== 0) /* no more blocks */
3121 bwidth
= get_clock() - bwidth
;
3122 bwidth
= (bytes_transferred
- bytes_transferred_last
) / bwidth
;
3124 /* if we haven't transferred anything this round, force expected_time to a
3125 * a very high value, but without crashing */
3129 /* try transferring iterative blocks of memory */
3133 /* flush all remaining blocks regardless of rate limiting */
3134 while (ram_save_block(f
) != 0) {
3135 bytes_transferred
+= TARGET_PAGE_SIZE
;
3137 cpu_physical_memory_set_dirty_tracking(0);
3140 qemu_put_be64(f
, RAM_SAVE_FLAG_EOS
);
3142 expected_time
= ram_save_remaining() * TARGET_PAGE_SIZE
/ bwidth
;
3144 return (stage
== 2) && (expected_time
<= migrate_max_downtime());
3147 static int ram_load_dead(QEMUFile
*f
, void *opaque
)
3149 RamDecompressState s1
, *s
= &s1
;
3153 if (ram_decompress_open(s
, f
) < 0)
3155 for(i
= 0; i
< last_ram_offset
; i
+= BDRV_HASH_BLOCK_SIZE
) {
3156 if (ram_decompress_buf(s
, buf
, 1) < 0) {
3157 fprintf(stderr
, "Error while reading ram block header\n");
3161 if (ram_decompress_buf(s
, qemu_get_ram_ptr(i
),
3162 BDRV_HASH_BLOCK_SIZE
) < 0) {
3163 fprintf(stderr
, "Error while reading ram block address=0x%08" PRIx64
, (uint64_t)i
);
3168 printf("Error block header\n");
3172 ram_decompress_close(s
);
3177 static int ram_load(QEMUFile
*f
, void *opaque
, int version_id
)
3182 if (version_id
== 1)
3183 return ram_load_v1(f
, opaque
);
3185 if (version_id
== 2) {
3186 if (qemu_get_be32(f
) != last_ram_offset
)
3188 return ram_load_dead(f
, opaque
);
3191 if (version_id
!= 3)
3195 addr
= qemu_get_be64(f
);
3197 flags
= addr
& ~TARGET_PAGE_MASK
;
3198 addr
&= TARGET_PAGE_MASK
;
3200 if (flags
& RAM_SAVE_FLAG_MEM_SIZE
) {
3201 if (addr
!= last_ram_offset
)
3205 if (flags
& RAM_SAVE_FLAG_FULL
) {
3206 if (ram_load_dead(f
, opaque
) < 0)
3210 if (flags
& RAM_SAVE_FLAG_COMPRESS
) {
3211 uint8_t ch
= qemu_get_byte(f
);
3212 memset(qemu_get_ram_ptr(addr
), ch
, TARGET_PAGE_SIZE
);
3215 (!kvm_enabled() || kvm_has_sync_mmu())) {
3216 madvise(qemu_get_ram_ptr(addr
), TARGET_PAGE_SIZE
, MADV_DONTNEED
);
3219 } else if (flags
& RAM_SAVE_FLAG_PAGE
)
3220 qemu_get_buffer(f
, qemu_get_ram_ptr(addr
), TARGET_PAGE_SIZE
);
3221 } while (!(flags
& RAM_SAVE_FLAG_EOS
));
3226 void qemu_service_io(void)
3228 qemu_notify_event();
3231 /***********************************************************/
3232 /* bottom halves (can be seen as timers which expire ASAP) */
3243 static QEMUBH
*first_bh
= NULL
;
3245 QEMUBH
*qemu_bh_new(QEMUBHFunc
*cb
, void *opaque
)
3248 bh
= qemu_mallocz(sizeof(QEMUBH
));
3250 bh
->opaque
= opaque
;
3251 bh
->next
= first_bh
;
3256 int qemu_bh_poll(void)
3262 for (bh
= first_bh
; bh
; bh
= bh
->next
) {
3263 if (!bh
->deleted
&& bh
->scheduled
) {
3272 /* remove deleted bhs */
3286 void qemu_bh_schedule_idle(QEMUBH
*bh
)
3294 void qemu_bh_schedule(QEMUBH
*bh
)
3300 /* stop the currently executing CPU to execute the BH ASAP */
3301 qemu_notify_event();
3304 void qemu_bh_cancel(QEMUBH
*bh
)
3309 void qemu_bh_delete(QEMUBH
*bh
)
3315 static void qemu_bh_update_timeout(int *timeout
)
3319 for (bh
= first_bh
; bh
; bh
= bh
->next
) {
3320 if (!bh
->deleted
&& bh
->scheduled
) {
3322 /* idle bottom halves will be polled at least
3324 *timeout
= MIN(10, *timeout
);
3326 /* non-idle bottom halves will be executed
3335 /***********************************************************/
3336 /* machine registration */
3338 static QEMUMachine
*first_machine
= NULL
;
3339 QEMUMachine
*current_machine
= NULL
;
3341 int qemu_register_machine(QEMUMachine
*m
)
3344 pm
= &first_machine
;
3352 static QEMUMachine
*find_machine(const char *name
)
3356 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
3357 if (!strcmp(m
->name
, name
))
3363 static QEMUMachine
*find_default_machine(void)
3367 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
3368 if (m
->is_default
) {
3375 /***********************************************************/
3376 /* main execution loop */
3378 static void gui_update(void *opaque
)
3380 uint64_t interval
= GUI_REFRESH_INTERVAL
;
3381 DisplayState
*ds
= opaque
;
3382 DisplayChangeListener
*dcl
= ds
->listeners
;
3386 while (dcl
!= NULL
) {
3387 if (dcl
->gui_timer_interval
&&
3388 dcl
->gui_timer_interval
< interval
)
3389 interval
= dcl
->gui_timer_interval
;
3392 qemu_mod_timer(ds
->gui_timer
, interval
+ qemu_get_clock(rt_clock
));
3395 static void nographic_update(void *opaque
)
3397 uint64_t interval
= GUI_REFRESH_INTERVAL
;
3399 qemu_mod_timer(nographic_timer
, interval
+ qemu_get_clock(rt_clock
));
3402 struct vm_change_state_entry
{
3403 VMChangeStateHandler
*cb
;
3405 LIST_ENTRY (vm_change_state_entry
) entries
;
3408 static LIST_HEAD(vm_change_state_head
, vm_change_state_entry
) vm_change_state_head
;
3410 VMChangeStateEntry
*qemu_add_vm_change_state_handler(VMChangeStateHandler
*cb
,
3413 VMChangeStateEntry
*e
;
3415 e
= qemu_mallocz(sizeof (*e
));
3419 LIST_INSERT_HEAD(&vm_change_state_head
, e
, entries
);
3423 void qemu_del_vm_change_state_handler(VMChangeStateEntry
*e
)
3425 LIST_REMOVE (e
, entries
);
3429 static void vm_state_notify(int running
, int reason
)
3431 VMChangeStateEntry
*e
;
3433 for (e
= vm_change_state_head
.lh_first
; e
; e
= e
->entries
.le_next
) {
3434 e
->cb(e
->opaque
, running
, reason
);
3438 static void resume_all_vcpus(void);
3439 static void pause_all_vcpus(void);
3446 vm_state_notify(1, 0);
3447 qemu_rearm_alarm_timer(alarm_timer
);
3452 /* reset/shutdown handler */
3454 typedef struct QEMUResetEntry
{
3455 TAILQ_ENTRY(QEMUResetEntry
) entry
;
3456 QEMUResetHandler
*func
;
3460 static TAILQ_HEAD(reset_handlers
, QEMUResetEntry
) reset_handlers
=
3461 TAILQ_HEAD_INITIALIZER(reset_handlers
);
3462 static int reset_requested
;
3463 static int shutdown_requested
;
3464 static int powerdown_requested
;
3465 static int debug_requested
;
3466 static int vmstop_requested
;
3468 int qemu_shutdown_requested(void)
3470 int r
= shutdown_requested
;
3471 shutdown_requested
= 0;
3475 int qemu_reset_requested(void)
3477 int r
= reset_requested
;
3478 reset_requested
= 0;
3482 int qemu_powerdown_requested(void)
3484 int r
= powerdown_requested
;
3485 powerdown_requested
= 0;
3489 static int qemu_debug_requested(void)
3491 int r
= debug_requested
;
3492 debug_requested
= 0;
3496 static int qemu_vmstop_requested(void)
3498 int r
= vmstop_requested
;
3499 vmstop_requested
= 0;
3503 static void do_vm_stop(int reason
)
3506 cpu_disable_ticks();
3509 vm_state_notify(0, reason
);
3513 void qemu_register_reset(QEMUResetHandler
*func
, void *opaque
)
3515 QEMUResetEntry
*re
= qemu_mallocz(sizeof(QEMUResetEntry
));
3518 re
->opaque
= opaque
;
3519 TAILQ_INSERT_TAIL(&reset_handlers
, re
, entry
);
3522 void qemu_unregister_reset(QEMUResetHandler
*func
, void *opaque
)
3526 TAILQ_FOREACH(re
, &reset_handlers
, entry
) {
3527 if (re
->func
== func
&& re
->opaque
== opaque
) {
3528 TAILQ_REMOVE(&reset_handlers
, re
, entry
);
3535 void qemu_system_reset(void)
3537 QEMUResetEntry
*re
, *nre
;
3539 /* reset all devices */
3540 TAILQ_FOREACH_SAFE(re
, &reset_handlers
, entry
, nre
) {
3541 re
->func(re
->opaque
);
3545 void qemu_system_reset_request(void)
3548 shutdown_requested
= 1;
3550 reset_requested
= 1;
3552 qemu_notify_event();
3555 void qemu_system_shutdown_request(void)
3557 shutdown_requested
= 1;
3558 qemu_notify_event();
3561 void qemu_system_powerdown_request(void)
3563 powerdown_requested
= 1;
3564 qemu_notify_event();
3567 #ifdef CONFIG_IOTHREAD
3568 static void qemu_system_vmstop_request(int reason
)
3570 vmstop_requested
= reason
;
3571 qemu_notify_event();
3576 static int io_thread_fd
= -1;
3578 static void qemu_event_increment(void)
3580 static const char byte
= 0;
3582 if (io_thread_fd
== -1)
3585 write(io_thread_fd
, &byte
, sizeof(byte
));
3588 static void qemu_event_read(void *opaque
)
3590 int fd
= (unsigned long)opaque
;
3593 /* Drain the notify pipe */
3596 len
= read(fd
, buffer
, sizeof(buffer
));
3597 } while ((len
== -1 && errno
== EINTR
) || len
> 0);
3600 static int qemu_event_init(void)
3609 err
= fcntl_setfl(fds
[0], O_NONBLOCK
);
3613 err
= fcntl_setfl(fds
[1], O_NONBLOCK
);
3617 qemu_set_fd_handler2(fds
[0], NULL
, qemu_event_read
, NULL
,
3618 (void *)(unsigned long)fds
[0]);
3620 io_thread_fd
= fds
[1];
3629 HANDLE qemu_event_handle
;
3631 static void dummy_event_handler(void *opaque
)
3635 static int qemu_event_init(void)
3637 qemu_event_handle
= CreateEvent(NULL
, FALSE
, FALSE
, NULL
);
3638 if (!qemu_event_handle
) {
3639 perror("Failed CreateEvent");
3642 qemu_add_wait_object(qemu_event_handle
, dummy_event_handler
, NULL
);
3646 static void qemu_event_increment(void)
3648 SetEvent(qemu_event_handle
);
3652 static int cpu_can_run(CPUState
*env
)
3661 #ifndef CONFIG_IOTHREAD
3662 static int qemu_init_main_loop(void)
3664 return qemu_event_init();
3667 void qemu_init_vcpu(void *_env
)
3669 CPUState
*env
= _env
;
3676 int qemu_cpu_self(void *env
)
3681 static void resume_all_vcpus(void)
3685 static void pause_all_vcpus(void)
3689 void qemu_cpu_kick(void *env
)
3694 void qemu_notify_event(void)
3696 CPUState
*env
= cpu_single_env
;
3701 if (env
->kqemu_enabled
)
3702 kqemu_cpu_interrupt(env
);
3707 #define qemu_mutex_lock_iothread() do { } while (0)
3708 #define qemu_mutex_unlock_iothread() do { } while (0)
3710 void vm_stop(int reason
)
3715 #else /* CONFIG_IOTHREAD */
3717 #include "qemu-thread.h"
3719 QemuMutex qemu_global_mutex
;
3720 static QemuMutex qemu_fair_mutex
;
3722 static QemuThread io_thread
;
3724 static QemuThread
*tcg_cpu_thread
;
3725 static QemuCond
*tcg_halt_cond
;
3727 static int qemu_system_ready
;
3729 static QemuCond qemu_cpu_cond
;
3731 static QemuCond qemu_system_cond
;
3732 static QemuCond qemu_pause_cond
;
3734 static void block_io_signals(void);
3735 static void unblock_io_signals(void);
3736 static int tcg_has_work(void);
3738 static int qemu_init_main_loop(void)
3742 ret
= qemu_event_init();
3746 qemu_cond_init(&qemu_pause_cond
);
3747 qemu_mutex_init(&qemu_fair_mutex
);
3748 qemu_mutex_init(&qemu_global_mutex
);
3749 qemu_mutex_lock(&qemu_global_mutex
);
3751 unblock_io_signals();
3752 qemu_thread_self(&io_thread
);
3757 static void qemu_wait_io_event(CPUState
*env
)
3759 while (!tcg_has_work())
3760 qemu_cond_timedwait(env
->halt_cond
, &qemu_global_mutex
, 1000);
3762 qemu_mutex_unlock(&qemu_global_mutex
);
3765 * Users of qemu_global_mutex can be starved, having no chance
3766 * to acquire it since this path will get to it first.
3767 * So use another lock to provide fairness.
3769 qemu_mutex_lock(&qemu_fair_mutex
);
3770 qemu_mutex_unlock(&qemu_fair_mutex
);
3772 qemu_mutex_lock(&qemu_global_mutex
);
3776 qemu_cond_signal(&qemu_pause_cond
);
3780 static int qemu_cpu_exec(CPUState
*env
);
3782 static void *kvm_cpu_thread_fn(void *arg
)
3784 CPUState
*env
= arg
;
3787 qemu_thread_self(env
->thread
);
3789 /* signal CPU creation */
3790 qemu_mutex_lock(&qemu_global_mutex
);
3792 qemu_cond_signal(&qemu_cpu_cond
);
3794 /* and wait for machine initialization */
3795 while (!qemu_system_ready
)
3796 qemu_cond_timedwait(&qemu_system_cond
, &qemu_global_mutex
, 100);
3799 if (cpu_can_run(env
))
3801 qemu_wait_io_event(env
);
3807 static void tcg_cpu_exec(void);
3809 static void *tcg_cpu_thread_fn(void *arg
)
3811 CPUState
*env
= arg
;
3814 qemu_thread_self(env
->thread
);
3816 /* signal CPU creation */
3817 qemu_mutex_lock(&qemu_global_mutex
);
3818 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
)
3820 qemu_cond_signal(&qemu_cpu_cond
);
3822 /* and wait for machine initialization */
3823 while (!qemu_system_ready
)
3824 qemu_cond_timedwait(&qemu_system_cond
, &qemu_global_mutex
, 100);
3828 qemu_wait_io_event(cur_cpu
);
3834 void qemu_cpu_kick(void *_env
)
3836 CPUState
*env
= _env
;
3837 qemu_cond_broadcast(env
->halt_cond
);
3839 qemu_thread_signal(env
->thread
, SIGUSR1
);
3842 int qemu_cpu_self(void *env
)
3844 return (cpu_single_env
!= NULL
);
3847 static void cpu_signal(int sig
)
3850 cpu_exit(cpu_single_env
);
3853 static void block_io_signals(void)
3856 struct sigaction sigact
;
3859 sigaddset(&set
, SIGUSR2
);
3860 sigaddset(&set
, SIGIO
);
3861 sigaddset(&set
, SIGALRM
);
3862 pthread_sigmask(SIG_BLOCK
, &set
, NULL
);
3865 sigaddset(&set
, SIGUSR1
);
3866 pthread_sigmask(SIG_UNBLOCK
, &set
, NULL
);
3868 memset(&sigact
, 0, sizeof(sigact
));
3869 sigact
.sa_handler
= cpu_signal
;
3870 sigaction(SIGUSR1
, &sigact
, NULL
);
3873 static void unblock_io_signals(void)
3878 sigaddset(&set
, SIGUSR2
);
3879 sigaddset(&set
, SIGIO
);
3880 sigaddset(&set
, SIGALRM
);
3881 pthread_sigmask(SIG_UNBLOCK
, &set
, NULL
);
3884 sigaddset(&set
, SIGUSR1
);
3885 pthread_sigmask(SIG_BLOCK
, &set
, NULL
);
3888 static void qemu_signal_lock(unsigned int msecs
)
3890 qemu_mutex_lock(&qemu_fair_mutex
);
3892 while (qemu_mutex_trylock(&qemu_global_mutex
)) {
3893 qemu_thread_signal(tcg_cpu_thread
, SIGUSR1
);
3894 if (!qemu_mutex_timedlock(&qemu_global_mutex
, msecs
))
3897 qemu_mutex_unlock(&qemu_fair_mutex
);
3900 static void qemu_mutex_lock_iothread(void)
3902 if (kvm_enabled()) {
3903 qemu_mutex_lock(&qemu_fair_mutex
);
3904 qemu_mutex_lock(&qemu_global_mutex
);
3905 qemu_mutex_unlock(&qemu_fair_mutex
);
3907 qemu_signal_lock(100);
3910 static void qemu_mutex_unlock_iothread(void)
3912 qemu_mutex_unlock(&qemu_global_mutex
);
3915 static int all_vcpus_paused(void)
3917 CPUState
*penv
= first_cpu
;
3922 penv
= (CPUState
*)penv
->next_cpu
;
3928 static void pause_all_vcpus(void)
3930 CPUState
*penv
= first_cpu
;
3934 qemu_thread_signal(penv
->thread
, SIGUSR1
);
3935 qemu_cpu_kick(penv
);
3936 penv
= (CPUState
*)penv
->next_cpu
;
3939 while (!all_vcpus_paused()) {
3940 qemu_cond_timedwait(&qemu_pause_cond
, &qemu_global_mutex
, 100);
3943 qemu_thread_signal(penv
->thread
, SIGUSR1
);
3944 penv
= (CPUState
*)penv
->next_cpu
;
3949 static void resume_all_vcpus(void)
3951 CPUState
*penv
= first_cpu
;
3956 qemu_thread_signal(penv
->thread
, SIGUSR1
);
3957 qemu_cpu_kick(penv
);
3958 penv
= (CPUState
*)penv
->next_cpu
;
3962 static void tcg_init_vcpu(void *_env
)
3964 CPUState
*env
= _env
;
3965 /* share a single thread for all cpus with TCG */
3966 if (!tcg_cpu_thread
) {
3967 env
->thread
= qemu_mallocz(sizeof(QemuThread
));
3968 env
->halt_cond
= qemu_mallocz(sizeof(QemuCond
));
3969 qemu_cond_init(env
->halt_cond
);
3970 qemu_thread_create(env
->thread
, tcg_cpu_thread_fn
, env
);
3971 while (env
->created
== 0)
3972 qemu_cond_timedwait(&qemu_cpu_cond
, &qemu_global_mutex
, 100);
3973 tcg_cpu_thread
= env
->thread
;
3974 tcg_halt_cond
= env
->halt_cond
;
3976 env
->thread
= tcg_cpu_thread
;
3977 env
->halt_cond
= tcg_halt_cond
;
3981 static void kvm_start_vcpu(CPUState
*env
)
3984 env
->thread
= qemu_mallocz(sizeof(QemuThread
));
3985 env
->halt_cond
= qemu_mallocz(sizeof(QemuCond
));
3986 qemu_cond_init(env
->halt_cond
);
3987 qemu_thread_create(env
->thread
, kvm_cpu_thread_fn
, env
);
3988 while (env
->created
== 0)
3989 qemu_cond_timedwait(&qemu_cpu_cond
, &qemu_global_mutex
, 100);
3992 void qemu_init_vcpu(void *_env
)
3994 CPUState
*env
= _env
;
3997 kvm_start_vcpu(env
);
4002 void qemu_notify_event(void)
4004 qemu_event_increment();
4007 void vm_stop(int reason
)
4010 qemu_thread_self(&me
);
4012 if (!qemu_thread_equal(&me
, &io_thread
)) {
4013 qemu_system_vmstop_request(reason
);
4015 * FIXME: should not return to device code in case
4016 * vm_stop() has been requested.
4018 if (cpu_single_env
) {
4019 cpu_exit(cpu_single_env
);
4020 cpu_single_env
->stop
= 1;
4031 static void host_main_loop_wait(int *timeout
)
4037 /* XXX: need to suppress polling by better using win32 events */
4039 for(pe
= first_polling_entry
; pe
!= NULL
; pe
= pe
->next
) {
4040 ret
|= pe
->func(pe
->opaque
);
4044 WaitObjects
*w
= &wait_objects
;
4046 ret
= WaitForMultipleObjects(w
->num
, w
->events
, FALSE
, *timeout
);
4047 if (WAIT_OBJECT_0
+ 0 <= ret
&& ret
<= WAIT_OBJECT_0
+ w
->num
- 1) {
4048 if (w
->func
[ret
- WAIT_OBJECT_0
])
4049 w
->func
[ret
- WAIT_OBJECT_0
](w
->opaque
[ret
- WAIT_OBJECT_0
]);
4051 /* Check for additional signaled events */
4052 for(i
= (ret
- WAIT_OBJECT_0
+ 1); i
< w
->num
; i
++) {
4054 /* Check if event is signaled */
4055 ret2
= WaitForSingleObject(w
->events
[i
], 0);
4056 if(ret2
== WAIT_OBJECT_0
) {
4058 w
->func
[i
](w
->opaque
[i
]);
4059 } else if (ret2
== WAIT_TIMEOUT
) {
4061 err
= GetLastError();
4062 fprintf(stderr
, "WaitForSingleObject error %d %d\n", i
, err
);
4065 } else if (ret
== WAIT_TIMEOUT
) {
4067 err
= GetLastError();
4068 fprintf(stderr
, "WaitForMultipleObjects error %d %d\n", ret
, err
);
4075 static void host_main_loop_wait(int *timeout
)
4080 void main_loop_wait(int timeout
)
4082 IOHandlerRecord
*ioh
;
4083 fd_set rfds
, wfds
, xfds
;
4087 qemu_bh_update_timeout(&timeout
);
4089 host_main_loop_wait(&timeout
);
4091 /* poll any events */
4092 /* XXX: separate device handlers from system ones */
4097 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
4101 (!ioh
->fd_read_poll
||
4102 ioh
->fd_read_poll(ioh
->opaque
) != 0)) {
4103 FD_SET(ioh
->fd
, &rfds
);
4107 if (ioh
->fd_write
) {
4108 FD_SET(ioh
->fd
, &wfds
);
4114 tv
.tv_sec
= timeout
/ 1000;
4115 tv
.tv_usec
= (timeout
% 1000) * 1000;
4117 slirp_select_fill(&nfds
, &rfds
, &wfds
, &xfds
);
4119 qemu_mutex_unlock_iothread();
4120 ret
= select(nfds
+ 1, &rfds
, &wfds
, &xfds
, &tv
);
4121 qemu_mutex_lock_iothread();
4123 IOHandlerRecord
**pioh
;
4125 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
4126 if (!ioh
->deleted
&& ioh
->fd_read
&& FD_ISSET(ioh
->fd
, &rfds
)) {
4127 ioh
->fd_read(ioh
->opaque
);
4129 if (!ioh
->deleted
&& ioh
->fd_write
&& FD_ISSET(ioh
->fd
, &wfds
)) {
4130 ioh
->fd_write(ioh
->opaque
);
4134 /* remove deleted IO handlers */
4135 pioh
= &first_io_handler
;
4146 slirp_select_poll(&rfds
, &wfds
, &xfds
, (ret
< 0));
4148 /* rearm timer, if not periodic */
4149 if (alarm_timer
->flags
& ALARM_FLAG_EXPIRED
) {
4150 alarm_timer
->flags
&= ~ALARM_FLAG_EXPIRED
;
4151 qemu_rearm_alarm_timer(alarm_timer
);
4154 /* vm time timers */
4156 if (!cur_cpu
|| likely(!(cur_cpu
->singlestep_enabled
& SSTEP_NOTIMER
)))
4157 qemu_run_timers(&active_timers
[QEMU_TIMER_VIRTUAL
],
4158 qemu_get_clock(vm_clock
));
4161 /* real time timers */
4162 qemu_run_timers(&active_timers
[QEMU_TIMER_REALTIME
],
4163 qemu_get_clock(rt_clock
));
4165 /* Check bottom-halves last in case any of the earlier events triggered
4171 static int qemu_cpu_exec(CPUState
*env
)
4174 #ifdef CONFIG_PROFILER
4178 #ifdef CONFIG_PROFILER
4179 ti
= profile_getclock();
4184 qemu_icount
-= (env
->icount_decr
.u16
.low
+ env
->icount_extra
);
4185 env
->icount_decr
.u16
.low
= 0;
4186 env
->icount_extra
= 0;
4187 count
= qemu_next_deadline();
4188 count
= (count
+ (1 << icount_time_shift
) - 1)
4189 >> icount_time_shift
;
4190 qemu_icount
+= count
;
4191 decr
= (count
> 0xffff) ? 0xffff : count
;
4193 env
->icount_decr
.u16
.low
= decr
;
4194 env
->icount_extra
= count
;
4196 ret
= cpu_exec(env
);
4197 #ifdef CONFIG_PROFILER
4198 qemu_time
+= profile_getclock() - ti
;
4201 /* Fold pending instructions back into the
4202 instruction counter, and clear the interrupt flag. */
4203 qemu_icount
-= (env
->icount_decr
.u16
.low
4204 + env
->icount_extra
);
4205 env
->icount_decr
.u32
= 0;
4206 env
->icount_extra
= 0;
4211 static void tcg_cpu_exec(void)
4215 if (next_cpu
== NULL
)
4216 next_cpu
= first_cpu
;
4217 for (; next_cpu
!= NULL
; next_cpu
= next_cpu
->next_cpu
) {
4218 CPUState
*env
= cur_cpu
= next_cpu
;
4222 if (timer_alarm_pending
) {
4223 timer_alarm_pending
= 0;
4226 if (cpu_can_run(env
))
4227 ret
= qemu_cpu_exec(env
);
4228 if (ret
== EXCP_DEBUG
) {
4229 gdb_set_stop_cpu(env
);
4230 debug_requested
= 1;
4236 static int cpu_has_work(CPUState
*env
)
4244 if (qemu_cpu_has_work(env
))
4249 static int tcg_has_work(void)
4253 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
)
4254 if (cpu_has_work(env
))
4259 static int qemu_calculate_timeout(void)
4261 #ifndef CONFIG_IOTHREAD
4266 else if (tcg_has_work())
4268 else if (!use_icount
)
4271 /* XXX: use timeout computed from timers */
4274 /* Advance virtual time to the next event. */
4275 if (use_icount
== 1) {
4276 /* When not using an adaptive execution frequency
4277 we tend to get badly out of sync with real time,
4278 so just delay for a reasonable amount of time. */
4281 delta
= cpu_get_icount() - cpu_get_clock();
4284 /* If virtual time is ahead of real time then just
4286 timeout
= (delta
/ 1000000) + 1;
4288 /* Wait for either IO to occur or the next
4290 add
= qemu_next_deadline();
4291 /* We advance the timer before checking for IO.
4292 Limit the amount we advance so that early IO
4293 activity won't get the guest too far ahead. */
4297 add
= (add
+ (1 << icount_time_shift
) - 1)
4298 >> icount_time_shift
;
4300 timeout
= delta
/ 1000000;
4307 #else /* CONFIG_IOTHREAD */
4312 static int vm_can_run(void)
4314 if (powerdown_requested
)
4316 if (reset_requested
)
4318 if (shutdown_requested
)
4320 if (debug_requested
)
4325 static void main_loop(void)
4329 #ifdef CONFIG_IOTHREAD
4330 qemu_system_ready
= 1;
4331 qemu_cond_broadcast(&qemu_system_cond
);
4336 #ifdef CONFIG_PROFILER
4339 #ifndef CONFIG_IOTHREAD
4342 #ifdef CONFIG_PROFILER
4343 ti
= profile_getclock();
4345 main_loop_wait(qemu_calculate_timeout());
4346 #ifdef CONFIG_PROFILER
4347 dev_time
+= profile_getclock() - ti
;
4349 } while (vm_can_run());
4351 if (qemu_debug_requested())
4352 vm_stop(EXCP_DEBUG
);
4353 if (qemu_shutdown_requested()) {
4360 if (qemu_reset_requested()) {
4362 qemu_system_reset();
4365 if (qemu_powerdown_requested())
4366 qemu_system_powerdown();
4367 if ((r
= qemu_vmstop_requested()))
4373 static void version(void)
4375 printf("QEMU PC emulator version " QEMU_VERSION QEMU_PKGVERSION
", Copyright (c) 2003-2008 Fabrice Bellard\n");
4378 static void help(int exitcode
)
4381 printf("usage: %s [options] [disk_image]\n"
4383 "'disk_image' is a raw hard image image for IDE hard disk 0\n"
4385 #define DEF(option, opt_arg, opt_enum, opt_help) \
4387 #define DEFHEADING(text) stringify(text) "\n"
4388 #include "qemu-options.h"
4393 "During emulation, the following keys are useful:\n"
4394 "ctrl-alt-f toggle full screen\n"
4395 "ctrl-alt-n switch to virtual console 'n'\n"
4396 "ctrl-alt toggle mouse and keyboard grab\n"
4398 "When using -nographic, press 'ctrl-a h' to get some help.\n"
4403 DEFAULT_NETWORK_SCRIPT
,
4404 DEFAULT_NETWORK_DOWN_SCRIPT
,
4406 DEFAULT_GDBSTUB_PORT
,
4411 #define HAS_ARG 0x0001
4414 #define DEF(option, opt_arg, opt_enum, opt_help) \
4416 #define DEFHEADING(text)
4417 #include "qemu-options.h"
4423 typedef struct QEMUOption
{
4429 static const QEMUOption qemu_options
[] = {
4430 { "h", 0, QEMU_OPTION_h
},
4431 #define DEF(option, opt_arg, opt_enum, opt_help) \
4432 { option, opt_arg, opt_enum },
4433 #define DEFHEADING(text)
4434 #include "qemu-options.h"
4442 struct soundhw soundhw
[] = {
4443 #ifdef HAS_AUDIO_CHOICE
4444 #if defined(TARGET_I386) || defined(TARGET_MIPS)
4450 { .init_isa
= pcspk_audio_init
}
4457 "Creative Sound Blaster 16",
4460 { .init_isa
= SB16_init
}
4464 #ifdef CONFIG_CS4231A
4470 { .init_isa
= cs4231a_init
}
4478 "Yamaha YMF262 (OPL3)",
4480 "Yamaha YM3812 (OPL2)",
4484 { .init_isa
= Adlib_init
}
4491 "Gravis Ultrasound GF1",
4494 { .init_isa
= GUS_init
}
4501 "Intel 82801AA AC97 Audio",
4504 { .init_pci
= ac97_init
}
4508 #ifdef CONFIG_ES1370
4511 "ENSONIQ AudioPCI ES1370",
4514 { .init_pci
= es1370_init
}
4518 #endif /* HAS_AUDIO_CHOICE */
4520 { NULL
, NULL
, 0, 0, { NULL
} }
4523 static void select_soundhw (const char *optarg
)
4527 if (*optarg
== '?') {
4530 printf ("Valid sound card names (comma separated):\n");
4531 for (c
= soundhw
; c
->name
; ++c
) {
4532 printf ("%-11s %s\n", c
->name
, c
->descr
);
4534 printf ("\n-soundhw all will enable all of the above\n");
4535 exit (*optarg
!= '?');
4543 if (!strcmp (optarg
, "all")) {
4544 for (c
= soundhw
; c
->name
; ++c
) {
4552 e
= strchr (p
, ',');
4553 l
= !e
? strlen (p
) : (size_t) (e
- p
);
4555 for (c
= soundhw
; c
->name
; ++c
) {
4556 if (!strncmp (c
->name
, p
, l
)) {
4565 "Unknown sound card name (too big to show)\n");
4568 fprintf (stderr
, "Unknown sound card name `%.*s'\n",
4573 p
+= l
+ (e
!= NULL
);
4577 goto show_valid_cards
;
4582 static void select_vgahw (const char *p
)
4586 cirrus_vga_enabled
= 0;
4587 std_vga_enabled
= 0;
4590 if (strstart(p
, "std", &opts
)) {
4591 std_vga_enabled
= 1;
4592 } else if (strstart(p
, "cirrus", &opts
)) {
4593 cirrus_vga_enabled
= 1;
4594 } else if (strstart(p
, "vmware", &opts
)) {
4596 } else if (strstart(p
, "xenfb", &opts
)) {
4598 } else if (!strstart(p
, "none", &opts
)) {
4600 fprintf(stderr
, "Unknown vga type: %s\n", p
);
4604 const char *nextopt
;
4606 if (strstart(opts
, ",retrace=", &nextopt
)) {
4608 if (strstart(opts
, "dumb", &nextopt
))
4609 vga_retrace_method
= VGA_RETRACE_DUMB
;
4610 else if (strstart(opts
, "precise", &nextopt
))
4611 vga_retrace_method
= VGA_RETRACE_PRECISE
;
4612 else goto invalid_vga
;
4613 } else goto invalid_vga
;
4619 static int balloon_parse(const char *arg
)
4624 if (!strcmp(arg
, "none")) {
4626 } else if (!strncmp(arg
, "virtio", 6)) {
4628 if (arg
[6] == ',') {
4630 if (get_param_value(buf
, sizeof(buf
), "addr", p
)) {
4631 virtio_balloon_devaddr
= strdup(buf
);
4642 static BOOL WINAPI
qemu_ctrl_handler(DWORD type
)
4644 exit(STATUS_CONTROL_C_EXIT
);
4649 int qemu_uuid_parse(const char *str
, uint8_t *uuid
)
4653 if(strlen(str
) != 36)
4656 ret
= sscanf(str
, UUID_FMT
, &uuid
[0], &uuid
[1], &uuid
[2], &uuid
[3],
4657 &uuid
[4], &uuid
[5], &uuid
[6], &uuid
[7], &uuid
[8], &uuid
[9],
4658 &uuid
[10], &uuid
[11], &uuid
[12], &uuid
[13], &uuid
[14], &uuid
[15]);
4664 smbios_add_field(1, offsetof(struct smbios_type_1
, uuid
), 16, uuid
);
4670 #define MAX_NET_CLIENTS 32
4674 static void termsig_handler(int signal
)
4676 qemu_system_shutdown_request();
4679 static void sigchld_handler(int signal
)
4681 waitpid(-1, NULL
, WNOHANG
);
4684 static void sighandler_setup(void)
4686 struct sigaction act
;
4688 memset(&act
, 0, sizeof(act
));
4689 act
.sa_handler
= termsig_handler
;
4690 sigaction(SIGINT
, &act
, NULL
);
4691 sigaction(SIGHUP
, &act
, NULL
);
4692 sigaction(SIGTERM
, &act
, NULL
);
4694 act
.sa_handler
= sigchld_handler
;
4695 act
.sa_flags
= SA_NOCLDSTOP
;
4696 sigaction(SIGCHLD
, &act
, NULL
);
4702 /* Look for support files in the same directory as the executable. */
4703 static char *find_datadir(const char *argv0
)
4709 len
= GetModuleFileName(NULL
, buf
, sizeof(buf
) - 1);
4716 while (p
!= buf
&& *p
!= '\\')
4719 if (access(buf
, R_OK
) == 0) {
4720 return qemu_strdup(buf
);
4726 /* Find a likely location for support files using the location of the binary.
4727 For installed binaries this will be "$bindir/../share/qemu". When
4728 running from the build tree this will be "$bindir/../pc-bios". */
4729 #define SHARE_SUFFIX "/share/qemu"
4730 #define BUILD_SUFFIX "/pc-bios"
4731 static char *find_datadir(const char *argv0
)
4741 #if defined(__linux__)
4744 len
= readlink("/proc/self/exe", buf
, sizeof(buf
) - 1);
4750 #elif defined(__FreeBSD__)
4753 len
= readlink("/proc/curproc/file", buf
, sizeof(buf
) - 1);
4760 /* If we don't have any way of figuring out the actual executable
4761 location then try argv[0]. */
4766 p
= realpath(argv0
, p
);
4774 max_len
= strlen(dir
) +
4775 MAX(strlen(SHARE_SUFFIX
), strlen(BUILD_SUFFIX
)) + 1;
4776 res
= qemu_mallocz(max_len
);
4777 snprintf(res
, max_len
, "%s%s", dir
, SHARE_SUFFIX
);
4778 if (access(res
, R_OK
)) {
4779 snprintf(res
, max_len
, "%s%s", dir
, BUILD_SUFFIX
);
4780 if (access(res
, R_OK
)) {
4794 char *qemu_find_file(int type
, const char *name
)
4800 /* If name contains path separators then try it as a straight path. */
4801 if ((strchr(name
, '/') || strchr(name
, '\\'))
4802 && access(name
, R_OK
) == 0) {
4803 return strdup(name
);
4806 case QEMU_FILE_TYPE_BIOS
:
4809 case QEMU_FILE_TYPE_KEYMAP
:
4810 subdir
= "keymaps/";
4815 len
= strlen(data_dir
) + strlen(name
) + strlen(subdir
) + 2;
4816 buf
= qemu_mallocz(len
);
4817 snprintf(buf
, len
, "%s/%s%s", data_dir
, subdir
, name
);
4818 if (access(buf
, R_OK
)) {
4825 int main(int argc
, char **argv
, char **envp
)
4827 const char *gdbstub_dev
= NULL
;
4828 uint32_t boot_devices_bitmap
= 0;
4830 int snapshot
, linux_boot
, net_boot
;
4831 const char *initrd_filename
;
4832 const char *kernel_filename
, *kernel_cmdline
;
4833 char boot_devices
[33] = "cad"; /* default to HD->floppy->CD-ROM */
4835 DisplayChangeListener
*dcl
;
4836 int cyls
, heads
, secs
, translation
;
4837 const char *net_clients
[MAX_NET_CLIENTS
];
4839 const char *bt_opts
[MAX_BT_CMDLINE
];
4843 const char *r
, *optarg
;
4844 CharDriverState
*monitor_hd
= NULL
;
4845 const char *monitor_device
;
4846 const char *serial_devices
[MAX_SERIAL_PORTS
];
4847 int serial_device_index
;
4848 const char *parallel_devices
[MAX_PARALLEL_PORTS
];
4849 int parallel_device_index
;
4850 const char *virtio_consoles
[MAX_VIRTIO_CONSOLES
];
4851 int virtio_console_index
;
4852 const char *loadvm
= NULL
;
4853 QEMUMachine
*machine
;
4854 const char *cpu_model
;
4855 const char *usb_devices
[MAX_USB_CMDLINE
];
4856 int usb_devices_index
;
4861 const char *pid_file
= NULL
;
4862 const char *incoming
= NULL
;
4865 struct passwd
*pwd
= NULL
;
4866 const char *chroot_dir
= NULL
;
4867 const char *run_as
= NULL
;
4870 int show_vnc_port
= 0;
4872 qemu_cache_utils_init(envp
);
4874 LIST_INIT (&vm_change_state_head
);
4877 struct sigaction act
;
4878 sigfillset(&act
.sa_mask
);
4880 act
.sa_handler
= SIG_IGN
;
4881 sigaction(SIGPIPE
, &act
, NULL
);
4884 SetConsoleCtrlHandler(qemu_ctrl_handler
, TRUE
);
4885 /* Note: cpu_interrupt() is currently not SMP safe, so we force
4886 QEMU to run on a single CPU */
4891 h
= GetCurrentProcess();
4892 if (GetProcessAffinityMask(h
, &mask
, &smask
)) {
4893 for(i
= 0; i
< 32; i
++) {
4894 if (mask
& (1 << i
))
4899 SetProcessAffinityMask(h
, mask
);
4905 module_call_init(MODULE_INIT_MACHINE
);
4906 machine
= find_default_machine();
4908 initrd_filename
= NULL
;
4911 kernel_filename
= NULL
;
4912 kernel_cmdline
= "";
4913 cyls
= heads
= secs
= 0;
4914 translation
= BIOS_ATA_TRANSLATION_AUTO
;
4915 monitor_device
= "vc:80Cx24C";
4917 serial_devices
[0] = "vc:80Cx24C";
4918 for(i
= 1; i
< MAX_SERIAL_PORTS
; i
++)
4919 serial_devices
[i
] = NULL
;
4920 serial_device_index
= 0;
4922 parallel_devices
[0] = "vc:80Cx24C";
4923 for(i
= 1; i
< MAX_PARALLEL_PORTS
; i
++)
4924 parallel_devices
[i
] = NULL
;
4925 parallel_device_index
= 0;
4927 for(i
= 0; i
< MAX_VIRTIO_CONSOLES
; i
++)
4928 virtio_consoles
[i
] = NULL
;
4929 virtio_console_index
= 0;
4931 for (i
= 0; i
< MAX_NODES
; i
++) {
4933 node_cpumask
[i
] = 0;
4936 usb_devices_index
= 0;
4950 register_watchdogs();
4958 hda_index
= drive_add(argv
[optind
++], HD_ALIAS
, 0);
4960 const QEMUOption
*popt
;
4963 /* Treat --foo the same as -foo. */
4966 popt
= qemu_options
;
4969 fprintf(stderr
, "%s: invalid option -- '%s'\n",
4973 if (!strcmp(popt
->name
, r
+ 1))
4977 if (popt
->flags
& HAS_ARG
) {
4978 if (optind
>= argc
) {
4979 fprintf(stderr
, "%s: option '%s' requires an argument\n",
4983 optarg
= argv
[optind
++];
4988 switch(popt
->index
) {
4990 machine
= find_machine(optarg
);
4993 printf("Supported machines are:\n");
4994 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
4995 printf("%-10s %s%s\n",
4997 m
->is_default
? " (default)" : "");
4999 exit(*optarg
!= '?');
5002 case QEMU_OPTION_cpu
:
5003 /* hw initialization will check this */
5004 if (*optarg
== '?') {
5005 /* XXX: implement xxx_cpu_list for targets that still miss it */
5006 #if defined(cpu_list)
5007 cpu_list(stdout
, &fprintf
);
5014 case QEMU_OPTION_initrd
:
5015 initrd_filename
= optarg
;
5017 case QEMU_OPTION_hda
:
5019 hda_index
= drive_add(optarg
, HD_ALIAS
, 0);
5021 hda_index
= drive_add(optarg
, HD_ALIAS
5022 ",cyls=%d,heads=%d,secs=%d%s",
5023 0, cyls
, heads
, secs
,
5024 translation
== BIOS_ATA_TRANSLATION_LBA
?
5026 translation
== BIOS_ATA_TRANSLATION_NONE
?
5027 ",trans=none" : "");
5029 case QEMU_OPTION_hdb
:
5030 case QEMU_OPTION_hdc
:
5031 case QEMU_OPTION_hdd
:
5032 drive_add(optarg
, HD_ALIAS
, popt
->index
- QEMU_OPTION_hda
);
5034 case QEMU_OPTION_drive
:
5035 drive_add(NULL
, "%s", optarg
);
5037 case QEMU_OPTION_mtdblock
:
5038 drive_add(optarg
, MTD_ALIAS
);
5040 case QEMU_OPTION_sd
:
5041 drive_add(optarg
, SD_ALIAS
);
5043 case QEMU_OPTION_pflash
:
5044 drive_add(optarg
, PFLASH_ALIAS
);
5046 case QEMU_OPTION_snapshot
:
5049 case QEMU_OPTION_hdachs
:
5053 cyls
= strtol(p
, (char **)&p
, 0);
5054 if (cyls
< 1 || cyls
> 16383)
5059 heads
= strtol(p
, (char **)&p
, 0);
5060 if (heads
< 1 || heads
> 16)
5065 secs
= strtol(p
, (char **)&p
, 0);
5066 if (secs
< 1 || secs
> 63)
5070 if (!strcmp(p
, "none"))
5071 translation
= BIOS_ATA_TRANSLATION_NONE
;
5072 else if (!strcmp(p
, "lba"))
5073 translation
= BIOS_ATA_TRANSLATION_LBA
;
5074 else if (!strcmp(p
, "auto"))
5075 translation
= BIOS_ATA_TRANSLATION_AUTO
;
5078 } else if (*p
!= '\0') {
5080 fprintf(stderr
, "qemu: invalid physical CHS format\n");
5083 if (hda_index
!= -1)
5084 snprintf(drives_opt
[hda_index
].opt
,
5085 sizeof(drives_opt
[hda_index
].opt
),
5086 HD_ALIAS
",cyls=%d,heads=%d,secs=%d%s",
5087 0, cyls
, heads
, secs
,
5088 translation
== BIOS_ATA_TRANSLATION_LBA
?
5090 translation
== BIOS_ATA_TRANSLATION_NONE
?
5091 ",trans=none" : "");
5094 case QEMU_OPTION_numa
:
5095 if (nb_numa_nodes
>= MAX_NODES
) {
5096 fprintf(stderr
, "qemu: too many NUMA nodes\n");
5101 case QEMU_OPTION_nographic
:
5102 display_type
= DT_NOGRAPHIC
;
5104 #ifdef CONFIG_CURSES
5105 case QEMU_OPTION_curses
:
5106 display_type
= DT_CURSES
;
5109 case QEMU_OPTION_portrait
:
5112 case QEMU_OPTION_kernel
:
5113 kernel_filename
= optarg
;
5115 case QEMU_OPTION_append
:
5116 kernel_cmdline
= optarg
;
5118 case QEMU_OPTION_cdrom
:
5119 drive_add(optarg
, CDROM_ALIAS
);
5121 case QEMU_OPTION_boot
:
5123 static const char * const params
[] = {
5124 "order", "once", NULL
5126 char buf
[sizeof(boot_devices
)];
5127 char *standard_boot_devices
;
5130 if (!strchr(optarg
, '=')) {
5132 pstrcpy(buf
, sizeof(buf
), optarg
);
5133 } else if (check_params(buf
, sizeof(buf
), params
, optarg
) < 0) {
5135 "qemu: unknown boot parameter '%s' in '%s'\n",
5141 get_param_value(buf
, sizeof(buf
), "order", optarg
)) {
5142 boot_devices_bitmap
= parse_bootdevices(buf
);
5143 pstrcpy(boot_devices
, sizeof(boot_devices
), buf
);
5146 if (get_param_value(buf
, sizeof(buf
),
5148 boot_devices_bitmap
|= parse_bootdevices(buf
);
5149 standard_boot_devices
= qemu_strdup(boot_devices
);
5150 pstrcpy(boot_devices
, sizeof(boot_devices
), buf
);
5151 qemu_register_reset(restore_boot_devices
,
5152 standard_boot_devices
);
5157 case QEMU_OPTION_fda
:
5158 case QEMU_OPTION_fdb
:
5159 drive_add(optarg
, FD_ALIAS
, popt
->index
- QEMU_OPTION_fda
);
5162 case QEMU_OPTION_no_fd_bootchk
:
5166 case QEMU_OPTION_net
:
5167 if (nb_net_clients
>= MAX_NET_CLIENTS
) {
5168 fprintf(stderr
, "qemu: too many network clients\n");
5171 net_clients
[nb_net_clients
] = optarg
;
5175 case QEMU_OPTION_tftp
:
5176 legacy_tftp_prefix
= optarg
;
5178 case QEMU_OPTION_bootp
:
5179 legacy_bootp_filename
= optarg
;
5182 case QEMU_OPTION_smb
:
5183 net_slirp_smb(optarg
);
5186 case QEMU_OPTION_redir
:
5187 net_slirp_redir(optarg
);
5190 case QEMU_OPTION_bt
:
5191 if (nb_bt_opts
>= MAX_BT_CMDLINE
) {
5192 fprintf(stderr
, "qemu: too many bluetooth options\n");
5195 bt_opts
[nb_bt_opts
++] = optarg
;
5198 case QEMU_OPTION_audio_help
:
5202 case QEMU_OPTION_soundhw
:
5203 select_soundhw (optarg
);
5209 case QEMU_OPTION_version
:
5213 case QEMU_OPTION_m
: {
5217 value
= strtoul(optarg
, &ptr
, 10);
5219 case 0: case 'M': case 'm':
5226 fprintf(stderr
, "qemu: invalid ram size: %s\n", optarg
);
5230 /* On 32-bit hosts, QEMU is limited by virtual address space */
5231 if (value
> (2047 << 20)
5232 #ifndef CONFIG_KQEMU
5233 && HOST_LONG_BITS
== 32
5236 fprintf(stderr
, "qemu: at most 2047 MB RAM can be simulated\n");
5239 if (value
!= (uint64_t)(ram_addr_t
)value
) {
5240 fprintf(stderr
, "qemu: ram size too large\n");
5249 const CPULogItem
*item
;
5251 mask
= cpu_str_to_log_mask(optarg
);
5253 printf("Log items (comma separated):\n");
5254 for(item
= cpu_log_items
; item
->mask
!= 0; item
++) {
5255 printf("%-10s %s\n", item
->name
, item
->help
);
5263 gdbstub_dev
= "tcp::" DEFAULT_GDBSTUB_PORT
;
5265 case QEMU_OPTION_gdb
:
5266 gdbstub_dev
= optarg
;
5271 case QEMU_OPTION_bios
:
5274 case QEMU_OPTION_singlestep
:
5282 keyboard_layout
= optarg
;
5285 case QEMU_OPTION_localtime
:
5288 case QEMU_OPTION_vga
:
5289 select_vgahw (optarg
);
5291 #if defined(TARGET_PPC) || defined(TARGET_SPARC)
5297 w
= strtol(p
, (char **)&p
, 10);
5300 fprintf(stderr
, "qemu: invalid resolution or depth\n");
5306 h
= strtol(p
, (char **)&p
, 10);
5311 depth
= strtol(p
, (char **)&p
, 10);
5312 if (depth
!= 8 && depth
!= 15 && depth
!= 16 &&
5313 depth
!= 24 && depth
!= 32)
5315 } else if (*p
== '\0') {
5316 depth
= graphic_depth
;
5323 graphic_depth
= depth
;
5327 case QEMU_OPTION_echr
:
5330 term_escape_char
= strtol(optarg
, &r
, 0);
5332 printf("Bad argument to echr\n");
5335 case QEMU_OPTION_monitor
:
5336 monitor_device
= optarg
;
5338 case QEMU_OPTION_serial
:
5339 if (serial_device_index
>= MAX_SERIAL_PORTS
) {
5340 fprintf(stderr
, "qemu: too many serial ports\n");
5343 serial_devices
[serial_device_index
] = optarg
;
5344 serial_device_index
++;
5346 case QEMU_OPTION_watchdog
:
5347 i
= select_watchdog(optarg
);
5349 exit (i
== 1 ? 1 : 0);
5351 case QEMU_OPTION_watchdog_action
:
5352 if (select_watchdog_action(optarg
) == -1) {
5353 fprintf(stderr
, "Unknown -watchdog-action parameter\n");
5357 case QEMU_OPTION_virtiocon
:
5358 if (virtio_console_index
>= MAX_VIRTIO_CONSOLES
) {
5359 fprintf(stderr
, "qemu: too many virtio consoles\n");
5362 virtio_consoles
[virtio_console_index
] = optarg
;
5363 virtio_console_index
++;
5365 case QEMU_OPTION_parallel
:
5366 if (parallel_device_index
>= MAX_PARALLEL_PORTS
) {
5367 fprintf(stderr
, "qemu: too many parallel ports\n");
5370 parallel_devices
[parallel_device_index
] = optarg
;
5371 parallel_device_index
++;
5373 case QEMU_OPTION_loadvm
:
5376 case QEMU_OPTION_full_screen
:
5380 case QEMU_OPTION_no_frame
:
5383 case QEMU_OPTION_alt_grab
:
5386 case QEMU_OPTION_no_quit
:
5389 case QEMU_OPTION_sdl
:
5390 display_type
= DT_SDL
;
5393 case QEMU_OPTION_pidfile
:
5397 case QEMU_OPTION_win2k_hack
:
5398 win2k_install_hack
= 1;
5400 case QEMU_OPTION_rtc_td_hack
:
5403 case QEMU_OPTION_acpitable
:
5404 if(acpi_table_add(optarg
) < 0) {
5405 fprintf(stderr
, "Wrong acpi table provided\n");
5409 case QEMU_OPTION_smbios
:
5410 if(smbios_entry_add(optarg
) < 0) {
5411 fprintf(stderr
, "Wrong smbios provided\n");
5417 case QEMU_OPTION_enable_kqemu
:
5420 case QEMU_OPTION_kernel_kqemu
:
5425 case QEMU_OPTION_enable_kvm
:
5432 case QEMU_OPTION_usb
:
5435 case QEMU_OPTION_usbdevice
:
5437 if (usb_devices_index
>= MAX_USB_CMDLINE
) {
5438 fprintf(stderr
, "Too many USB devices\n");
5441 usb_devices
[usb_devices_index
] = optarg
;
5442 usb_devices_index
++;
5444 case QEMU_OPTION_smp
:
5445 smp_cpus
= atoi(optarg
);
5447 fprintf(stderr
, "Invalid number of CPUs\n");
5451 case QEMU_OPTION_vnc
:
5452 display_type
= DT_VNC
;
5453 vnc_display
= optarg
;
5456 case QEMU_OPTION_no_acpi
:
5459 case QEMU_OPTION_no_hpet
:
5462 case QEMU_OPTION_balloon
:
5463 if (balloon_parse(optarg
) < 0) {
5464 fprintf(stderr
, "Unknown -balloon argument %s\n", optarg
);
5469 case QEMU_OPTION_no_reboot
:
5472 case QEMU_OPTION_no_shutdown
:
5475 case QEMU_OPTION_show_cursor
:
5478 case QEMU_OPTION_uuid
:
5479 if(qemu_uuid_parse(optarg
, qemu_uuid
) < 0) {
5480 fprintf(stderr
, "Fail to parse UUID string."
5481 " Wrong format.\n");
5486 case QEMU_OPTION_daemonize
:
5490 case QEMU_OPTION_option_rom
:
5491 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
5492 fprintf(stderr
, "Too many option ROMs\n");
5495 option_rom
[nb_option_roms
] = optarg
;
5498 #if defined(TARGET_ARM) || defined(TARGET_M68K)
5499 case QEMU_OPTION_semihosting
:
5500 semihosting_enabled
= 1;
5503 case QEMU_OPTION_name
:
5504 qemu_name
= qemu_strdup(optarg
);
5506 char *p
= strchr(qemu_name
, ',');
5509 if (strncmp(p
, "process=", 8)) {
5510 fprintf(stderr
, "Unknown subargument %s to -name", p
);
5518 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
5519 case QEMU_OPTION_prom_env
:
5520 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
5521 fprintf(stderr
, "Too many prom variables\n");
5524 prom_envs
[nb_prom_envs
] = optarg
;
5529 case QEMU_OPTION_old_param
:
5533 case QEMU_OPTION_clock
:
5534 configure_alarms(optarg
);
5536 case QEMU_OPTION_startdate
:
5539 time_t rtc_start_date
;
5540 if (!strcmp(optarg
, "now")) {
5541 rtc_date_offset
= -1;
5543 if (sscanf(optarg
, "%d-%d-%dT%d:%d:%d",
5551 } else if (sscanf(optarg
, "%d-%d-%d",
5554 &tm
.tm_mday
) == 3) {
5563 rtc_start_date
= mktimegm(&tm
);
5564 if (rtc_start_date
== -1) {
5566 fprintf(stderr
, "Invalid date format. Valid format are:\n"
5567 "'now' or '2006-06-17T16:01:21' or '2006-06-17'\n");
5570 rtc_date_offset
= time(NULL
) - rtc_start_date
;
5574 case QEMU_OPTION_tb_size
:
5575 tb_size
= strtol(optarg
, NULL
, 0);
5579 case QEMU_OPTION_icount
:
5581 if (strcmp(optarg
, "auto") == 0) {
5582 icount_time_shift
= -1;
5584 icount_time_shift
= strtol(optarg
, NULL
, 0);
5587 case QEMU_OPTION_incoming
:
5591 case QEMU_OPTION_chroot
:
5592 chroot_dir
= optarg
;
5594 case QEMU_OPTION_runas
:
5599 case QEMU_OPTION_xen_domid
:
5600 xen_domid
= atoi(optarg
);
5602 case QEMU_OPTION_xen_create
:
5603 xen_mode
= XEN_CREATE
;
5605 case QEMU_OPTION_xen_attach
:
5606 xen_mode
= XEN_ATTACH
;
5613 /* If no data_dir is specified then try to find it relative to the
5616 data_dir
= find_datadir(argv
[0]);
5618 /* If all else fails use the install patch specified when building. */
5620 data_dir
= CONFIG_QEMU_SHAREDIR
;
5623 #if defined(CONFIG_KVM) && defined(CONFIG_KQEMU)
5624 if (kvm_allowed
&& kqemu_allowed
) {
5626 "You can not enable both KVM and kqemu at the same time\n");
5631 machine
->max_cpus
= machine
->max_cpus
?: 1; /* Default to UP */
5632 if (smp_cpus
> machine
->max_cpus
) {
5633 fprintf(stderr
, "Number of SMP cpus requested (%d), exceeds max cpus "
5634 "supported by machine `%s' (%d)\n", smp_cpus
, machine
->name
,
5639 if (display_type
== DT_NOGRAPHIC
) {
5640 if (serial_device_index
== 0)
5641 serial_devices
[0] = "stdio";
5642 if (parallel_device_index
== 0)
5643 parallel_devices
[0] = "null";
5644 if (strncmp(monitor_device
, "vc", 2) == 0)
5645 monitor_device
= "stdio";
5652 if (pipe(fds
) == -1)
5663 len
= read(fds
[0], &status
, 1);
5664 if (len
== -1 && (errno
== EINTR
))
5669 else if (status
== 1) {
5670 fprintf(stderr
, "Could not acquire pidfile\n");
5687 signal(SIGTSTP
, SIG_IGN
);
5688 signal(SIGTTOU
, SIG_IGN
);
5689 signal(SIGTTIN
, SIG_IGN
);
5692 if (pid_file
&& qemu_create_pidfile(pid_file
) != 0) {
5695 write(fds
[1], &status
, 1);
5697 fprintf(stderr
, "Could not acquire pid file\n");
5706 if (qemu_init_main_loop()) {
5707 fprintf(stderr
, "qemu_init_main_loop failed\n");
5710 linux_boot
= (kernel_filename
!= NULL
);
5712 if (!linux_boot
&& *kernel_cmdline
!= '\0') {
5713 fprintf(stderr
, "-append only allowed with -kernel option\n");
5717 if (!linux_boot
&& initrd_filename
!= NULL
) {
5718 fprintf(stderr
, "-initrd only allowed with -kernel option\n");
5722 setvbuf(stdout
, NULL
, _IOLBF
, 0);
5725 if (init_timer_alarm() < 0) {
5726 fprintf(stderr
, "could not initialize alarm timer\n");
5729 if (use_icount
&& icount_time_shift
< 0) {
5731 /* 125MIPS seems a reasonable initial guess at the guest speed.
5732 It will be corrected fairly quickly anyway. */
5733 icount_time_shift
= 3;
5734 init_icount_adjust();
5741 /* init network clients */
5742 if (nb_net_clients
== 0) {
5743 /* if no clients, we use a default config */
5744 net_clients
[nb_net_clients
++] = "nic";
5746 net_clients
[nb_net_clients
++] = "user";
5750 for(i
= 0;i
< nb_net_clients
; i
++) {
5751 if (net_client_parse(net_clients
[i
]) < 0)
5755 net_boot
= (boot_devices_bitmap
>> ('n' - 'a')) & 0xF;
5756 net_set_boot_mask(net_boot
);
5760 /* init the bluetooth world */
5761 for (i
= 0; i
< nb_bt_opts
; i
++)
5762 if (bt_parse(bt_opts
[i
]))
5765 /* init the memory */
5767 ram_size
= DEFAULT_RAM_SIZE
* 1024 * 1024;
5770 /* FIXME: This is a nasty hack because kqemu can't cope with dynamic
5771 guest ram allocation. It needs to go away. */
5772 if (kqemu_allowed
) {
5773 kqemu_phys_ram_size
= ram_size
+ 8 * 1024 * 1024 + 4 * 1024 * 1024;
5774 kqemu_phys_ram_base
= qemu_vmalloc(kqemu_phys_ram_size
);
5775 if (!kqemu_phys_ram_base
) {
5776 fprintf(stderr
, "Could not allocate physical memory\n");
5782 /* init the dynamic translator */
5783 cpu_exec_init_all(tb_size
* 1024 * 1024);
5787 /* we always create the cdrom drive, even if no disk is there */
5789 if (nb_drives_opt
< MAX_DRIVES
)
5790 drive_add(NULL
, CDROM_ALIAS
);
5792 /* we always create at least one floppy */
5794 if (nb_drives_opt
< MAX_DRIVES
)
5795 drive_add(NULL
, FD_ALIAS
, 0);
5797 /* we always create one sd slot, even if no card is in it */
5799 if (nb_drives_opt
< MAX_DRIVES
)
5800 drive_add(NULL
, SD_ALIAS
);
5802 /* open the virtual block devices */
5804 for(i
= 0; i
< nb_drives_opt
; i
++)
5805 if (drive_init(&drives_opt
[i
], snapshot
, machine
) == -1)
5808 register_savevm("timer", 0, 2, timer_save
, timer_load
, NULL
);
5809 register_savevm_live("ram", 0, 3, ram_save_live
, NULL
, ram_load
, NULL
);
5812 /* must be after terminal init, SDL library changes signal handlers */
5816 /* Maintain compatibility with multiple stdio monitors */
5817 if (!strcmp(monitor_device
,"stdio")) {
5818 for (i
= 0; i
< MAX_SERIAL_PORTS
; i
++) {
5819 const char *devname
= serial_devices
[i
];
5820 if (devname
&& !strcmp(devname
,"mon:stdio")) {
5821 monitor_device
= NULL
;
5823 } else if (devname
&& !strcmp(devname
,"stdio")) {
5824 monitor_device
= NULL
;
5825 serial_devices
[i
] = "mon:stdio";
5831 if (nb_numa_nodes
> 0) {
5834 if (nb_numa_nodes
> smp_cpus
) {
5835 nb_numa_nodes
= smp_cpus
;
5838 /* If no memory size if given for any node, assume the default case
5839 * and distribute the available memory equally across all nodes
5841 for (i
= 0; i
< nb_numa_nodes
; i
++) {
5842 if (node_mem
[i
] != 0)
5845 if (i
== nb_numa_nodes
) {
5846 uint64_t usedmem
= 0;
5848 /* On Linux, the each node's border has to be 8MB aligned,
5849 * the final node gets the rest.
5851 for (i
= 0; i
< nb_numa_nodes
- 1; i
++) {
5852 node_mem
[i
] = (ram_size
/ nb_numa_nodes
) & ~((1 << 23UL) - 1);
5853 usedmem
+= node_mem
[i
];
5855 node_mem
[i
] = ram_size
- usedmem
;
5858 for (i
= 0; i
< nb_numa_nodes
; i
++) {
5859 if (node_cpumask
[i
] != 0)
5862 /* assigning the VCPUs round-robin is easier to implement, guest OSes
5863 * must cope with this anyway, because there are BIOSes out there in
5864 * real machines which also use this scheme.
5866 if (i
== nb_numa_nodes
) {
5867 for (i
= 0; i
< smp_cpus
; i
++) {
5868 node_cpumask
[i
% nb_numa_nodes
] |= 1 << i
;
5873 if (kvm_enabled()) {
5876 ret
= kvm_init(smp_cpus
);
5878 fprintf(stderr
, "failed to initialize KVM\n");
5883 if (monitor_device
) {
5884 monitor_hd
= qemu_chr_open("monitor", monitor_device
, NULL
);
5886 fprintf(stderr
, "qemu: could not open monitor device '%s'\n", monitor_device
);
5891 for(i
= 0; i
< MAX_SERIAL_PORTS
; i
++) {
5892 const char *devname
= serial_devices
[i
];
5893 if (devname
&& strcmp(devname
, "none")) {
5895 snprintf(label
, sizeof(label
), "serial%d", i
);
5896 serial_hds
[i
] = qemu_chr_open(label
, devname
, NULL
);
5897 if (!serial_hds
[i
]) {
5898 fprintf(stderr
, "qemu: could not open serial device '%s'\n",
5905 for(i
= 0; i
< MAX_PARALLEL_PORTS
; i
++) {
5906 const char *devname
= parallel_devices
[i
];
5907 if (devname
&& strcmp(devname
, "none")) {
5909 snprintf(label
, sizeof(label
), "parallel%d", i
);
5910 parallel_hds
[i
] = qemu_chr_open(label
, devname
, NULL
);
5911 if (!parallel_hds
[i
]) {
5912 fprintf(stderr
, "qemu: could not open parallel device '%s'\n",
5919 for(i
= 0; i
< MAX_VIRTIO_CONSOLES
; i
++) {
5920 const char *devname
= virtio_consoles
[i
];
5921 if (devname
&& strcmp(devname
, "none")) {
5923 snprintf(label
, sizeof(label
), "virtcon%d", i
);
5924 virtcon_hds
[i
] = qemu_chr_open(label
, devname
, NULL
);
5925 if (!virtcon_hds
[i
]) {
5926 fprintf(stderr
, "qemu: could not open virtio console '%s'\n",
5933 module_call_init(MODULE_INIT_DEVICE
);
5935 machine
->init(ram_size
, boot_devices
,
5936 kernel_filename
, kernel_cmdline
, initrd_filename
, cpu_model
);
5939 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
5940 for (i
= 0; i
< nb_numa_nodes
; i
++) {
5941 if (node_cpumask
[i
] & (1 << env
->cpu_index
)) {
5947 current_machine
= machine
;
5949 /* init USB devices */
5951 for(i
= 0; i
< usb_devices_index
; i
++) {
5952 if (usb_device_add(usb_devices
[i
], 0) < 0) {
5953 fprintf(stderr
, "Warning: could not add USB device %s\n",
5960 dumb_display_init();
5961 /* just use the first displaystate for the moment */
5964 if (display_type
== DT_DEFAULT
) {
5965 #if defined(CONFIG_SDL) || defined(CONFIG_COCOA)
5966 display_type
= DT_SDL
;
5968 display_type
= DT_VNC
;
5969 vnc_display
= "localhost:0,to=99";
5975 switch (display_type
) {
5978 #if defined(CONFIG_CURSES)
5980 curses_display_init(ds
, full_screen
);
5983 #if defined(CONFIG_SDL)
5985 sdl_display_init(ds
, full_screen
, no_frame
);
5987 #elif defined(CONFIG_COCOA)
5989 cocoa_display_init(ds
, full_screen
);
5993 vnc_display_init(ds
);
5994 if (vnc_display_open(ds
, vnc_display
) < 0)
5997 if (show_vnc_port
) {
5998 printf("VNC server running on `%s'\n", vnc_display_local_addr(ds
));
6006 dcl
= ds
->listeners
;
6007 while (dcl
!= NULL
) {
6008 if (dcl
->dpy_refresh
!= NULL
) {
6009 ds
->gui_timer
= qemu_new_timer(rt_clock
, gui_update
, ds
);
6010 qemu_mod_timer(ds
->gui_timer
, qemu_get_clock(rt_clock
));
6015 if (display_type
== DT_NOGRAPHIC
|| display_type
== DT_VNC
) {
6016 nographic_timer
= qemu_new_timer(rt_clock
, nographic_update
, NULL
);
6017 qemu_mod_timer(nographic_timer
, qemu_get_clock(rt_clock
));
6020 text_consoles_set_display(display_state
);
6021 qemu_chr_initial_reset();
6023 if (monitor_device
&& monitor_hd
)
6024 monitor_init(monitor_hd
, MONITOR_USE_READLINE
| MONITOR_IS_DEFAULT
);
6026 for(i
= 0; i
< MAX_SERIAL_PORTS
; i
++) {
6027 const char *devname
= serial_devices
[i
];
6028 if (devname
&& strcmp(devname
, "none")) {
6029 if (strstart(devname
, "vc", 0))
6030 qemu_chr_printf(serial_hds
[i
], "serial%d console\r\n", i
);
6034 for(i
= 0; i
< MAX_PARALLEL_PORTS
; i
++) {
6035 const char *devname
= parallel_devices
[i
];
6036 if (devname
&& strcmp(devname
, "none")) {
6037 if (strstart(devname
, "vc", 0))
6038 qemu_chr_printf(parallel_hds
[i
], "parallel%d console\r\n", i
);
6042 for(i
= 0; i
< MAX_VIRTIO_CONSOLES
; i
++) {
6043 const char *devname
= virtio_consoles
[i
];
6044 if (virtcon_hds
[i
] && devname
) {
6045 if (strstart(devname
, "vc", 0))
6046 qemu_chr_printf(virtcon_hds
[i
], "virtio console%d\r\n", i
);
6050 if (gdbstub_dev
&& gdbserver_start(gdbstub_dev
) < 0) {
6051 fprintf(stderr
, "qemu: could not open gdbserver on device '%s'\n",
6057 do_loadvm(cur_mon
, loadvm
);
6060 autostart
= 0; /* fixme how to deal with -daemonize */
6061 qemu_start_incoming_migration(incoming
);
6073 len
= write(fds
[1], &status
, 1);
6074 if (len
== -1 && (errno
== EINTR
))
6081 TFR(fd
= open("/dev/null", O_RDWR
));
6087 pwd
= getpwnam(run_as
);
6089 fprintf(stderr
, "User \"%s\" doesn't exist\n", run_as
);
6095 if (chroot(chroot_dir
) < 0) {
6096 fprintf(stderr
, "chroot failed\n");
6103 if (setgid(pwd
->pw_gid
) < 0) {
6104 fprintf(stderr
, "Failed to setgid(%d)\n", pwd
->pw_gid
);
6107 if (setuid(pwd
->pw_uid
) < 0) {
6108 fprintf(stderr
, "Failed to setuid(%d)\n", pwd
->pw_uid
);
6111 if (setuid(0) != -1) {
6112 fprintf(stderr
, "Dropping privileges failed\n");