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 CONFIG_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 #include <arpa/inet.h>
50 #include <sys/select.h>
53 #if defined(__FreeBSD__) || defined(__DragonFly__)
58 #elif defined (__GLIBC__) && defined (__FreeBSD_kernel__)
59 #include <freebsd/stdlib.h>
64 #include <linux/rtc.h>
65 #include <sys/prctl.h>
67 /* For the benefit of older linux systems which don't supply it,
68 we use a local copy of hpet.h. */
69 /* #include <linux/hpet.h> */
72 #include <linux/ppdev.h>
73 #include <linux/parport.h>
77 #include <sys/ethernet.h>
78 #include <sys/sockio.h>
79 #include <netinet/arp.h>
80 #include <netinet/in.h>
81 #include <netinet/in_systm.h>
82 #include <netinet/ip.h>
83 #include <netinet/ip_icmp.h> // must come after ip.h
84 #include <netinet/udp.h>
85 #include <netinet/tcp.h>
89 /* See MySQL bug #7156 (http://bugs.mysql.com/bug.php?id=7156) for
90 discussion about Solaris header problems */
91 extern int madvise(caddr_t
, size_t, int);
96 #if defined(__OpenBSD__)
100 #if defined(CONFIG_VDE)
101 #include <libvdeplug.h>
106 #include <mmsystem.h>
110 #if defined(__APPLE__) || defined(main)
112 int qemu_main(int argc
, char **argv
, char **envp
);
113 int main(int argc
, char **argv
)
115 return qemu_main(argc
, argv
, NULL
);
118 #define main qemu_main
120 #endif /* CONFIG_SDL */
124 #define main qemu_main
125 #endif /* CONFIG_COCOA */
128 #include "hw/boards.h"
130 #include "hw/pcmcia.h"
132 #include "hw/audiodev.h"
136 #include "hw/watchdog.h"
137 #include "hw/smbios.h"
140 #include "hw/loader.h"
147 #include "qemu-timer.h"
148 #include "qemu-char.h"
149 #include "cache-utils.h"
152 #include "audio/audio.h"
153 #include "migration.h"
156 #include "qemu-option.h"
157 #include "qemu-config.h"
161 #include "exec-all.h"
163 #include "qemu_socket.h"
165 #include "slirp/libslirp.h"
167 #include "qemu-queue.h"
170 //#define DEBUG_SLIRP
172 #define DEFAULT_RAM_SIZE 128
174 /* Maximum number of monitor devices */
175 #define MAX_MONITOR_DEVICES 10
177 static const char *data_dir
;
178 const char *bios_name
= NULL
;
179 /* Note: drives_table[MAX_DRIVES] is a dummy block driver if none available
180 to store the VM snapshots */
181 struct drivelist drives
= QTAILQ_HEAD_INITIALIZER(drives
);
182 struct driveoptlist driveopts
= QTAILQ_HEAD_INITIALIZER(driveopts
);
183 enum vga_retrace_method vga_retrace_method
= VGA_RETRACE_DUMB
;
184 static DisplayState
*display_state
;
185 DisplayType display_type
= DT_DEFAULT
;
186 const char* keyboard_layout
= NULL
;
189 NICInfo nd_table
[MAX_NICS
];
192 static int rtc_utc
= 1;
193 static int rtc_date_offset
= -1; /* -1 means no change */
194 QEMUClock
*rtc_clock
;
195 int vga_interface_type
= VGA_CIRRUS
;
197 int graphic_width
= 1024;
198 int graphic_height
= 768;
199 int graphic_depth
= 8;
201 int graphic_width
= 800;
202 int graphic_height
= 600;
203 int graphic_depth
= 15;
205 static int full_screen
= 0;
207 static int no_frame
= 0;
210 CharDriverState
*serial_hds
[MAX_SERIAL_PORTS
];
211 CharDriverState
*parallel_hds
[MAX_PARALLEL_PORTS
];
212 CharDriverState
*virtcon_hds
[MAX_VIRTIO_CONSOLES
];
214 int win2k_install_hack
= 0;
223 const char *vnc_display
;
224 int acpi_enabled
= 1;
230 int graphic_rotate
= 0;
231 uint8_t irq0override
= 1;
235 const char *watchdog
;
236 const char *option_rom
[MAX_OPTION_ROMS
];
238 int semihosting_enabled
= 0;
242 const char *qemu_name
;
245 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
246 unsigned int nb_prom_envs
= 0;
247 const char *prom_envs
[MAX_PROM_ENVS
];
252 uint64_t node_mem
[MAX_NODES
];
253 uint64_t node_cpumask
[MAX_NODES
];
255 static CPUState
*cur_cpu
;
256 static CPUState
*next_cpu
;
257 static int timer_alarm_pending
= 1;
258 /* Conversion factor from emulated instructions to virtual clock ticks. */
259 static int icount_time_shift
;
260 /* Arbitrarily pick 1MIPS as the minimum allowable speed. */
261 #define MAX_ICOUNT_SHIFT 10
262 /* Compensate for varying guest execution speed. */
263 static int64_t qemu_icount_bias
;
264 static QEMUTimer
*icount_rt_timer
;
265 static QEMUTimer
*icount_vm_timer
;
266 static QEMUTimer
*nographic_timer
;
268 uint8_t qemu_uuid
[16];
270 static QEMUBootSetHandler
*boot_set_handler
;
271 static void *boot_set_opaque
;
273 /***********************************************************/
274 /* x86 ISA bus support */
276 target_phys_addr_t isa_mem_base
= 0;
279 /***********************************************************/
280 void hw_error(const char *fmt
, ...)
286 fprintf(stderr
, "qemu: hardware error: ");
287 vfprintf(stderr
, fmt
, ap
);
288 fprintf(stderr
, "\n");
289 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
290 fprintf(stderr
, "CPU #%d:\n", env
->cpu_index
);
292 cpu_dump_state(env
, stderr
, fprintf
, X86_DUMP_FPU
);
294 cpu_dump_state(env
, stderr
, fprintf
, 0);
301 static void set_proc_name(const char *s
)
303 #if defined(__linux__) && defined(PR_SET_NAME)
307 name
[sizeof(name
) - 1] = 0;
308 strncpy(name
, s
, sizeof(name
));
309 /* Could rewrite argv[0] too, but that's a bit more complicated.
310 This simple way is enough for `top'. */
311 prctl(PR_SET_NAME
, name
);
318 static QEMUBalloonEvent
*qemu_balloon_event
;
319 void *qemu_balloon_event_opaque
;
321 void qemu_add_balloon_handler(QEMUBalloonEvent
*func
, void *opaque
)
323 qemu_balloon_event
= func
;
324 qemu_balloon_event_opaque
= opaque
;
327 void qemu_balloon(ram_addr_t target
)
329 if (qemu_balloon_event
)
330 qemu_balloon_event(qemu_balloon_event_opaque
, target
);
333 ram_addr_t
qemu_balloon_status(void)
335 if (qemu_balloon_event
)
336 return qemu_balloon_event(qemu_balloon_event_opaque
, 0);
340 /***********************************************************/
343 static QEMUPutKBDEvent
*qemu_put_kbd_event
;
344 static void *qemu_put_kbd_event_opaque
;
345 static QEMUPutMouseEntry
*qemu_put_mouse_event_head
;
346 static QEMUPutMouseEntry
*qemu_put_mouse_event_current
;
348 void qemu_add_kbd_event_handler(QEMUPutKBDEvent
*func
, void *opaque
)
350 qemu_put_kbd_event_opaque
= opaque
;
351 qemu_put_kbd_event
= func
;
354 QEMUPutMouseEntry
*qemu_add_mouse_event_handler(QEMUPutMouseEvent
*func
,
355 void *opaque
, int absolute
,
358 QEMUPutMouseEntry
*s
, *cursor
;
360 s
= qemu_mallocz(sizeof(QEMUPutMouseEntry
));
362 s
->qemu_put_mouse_event
= func
;
363 s
->qemu_put_mouse_event_opaque
= opaque
;
364 s
->qemu_put_mouse_event_absolute
= absolute
;
365 s
->qemu_put_mouse_event_name
= qemu_strdup(name
);
368 if (!qemu_put_mouse_event_head
) {
369 qemu_put_mouse_event_head
= qemu_put_mouse_event_current
= s
;
373 cursor
= qemu_put_mouse_event_head
;
374 while (cursor
->next
!= NULL
)
375 cursor
= cursor
->next
;
378 qemu_put_mouse_event_current
= s
;
383 void qemu_remove_mouse_event_handler(QEMUPutMouseEntry
*entry
)
385 QEMUPutMouseEntry
*prev
= NULL
, *cursor
;
387 if (!qemu_put_mouse_event_head
|| entry
== NULL
)
390 cursor
= qemu_put_mouse_event_head
;
391 while (cursor
!= NULL
&& cursor
!= entry
) {
393 cursor
= cursor
->next
;
396 if (cursor
== NULL
) // does not exist or list empty
398 else if (prev
== NULL
) { // entry is head
399 qemu_put_mouse_event_head
= cursor
->next
;
400 if (qemu_put_mouse_event_current
== entry
)
401 qemu_put_mouse_event_current
= cursor
->next
;
402 qemu_free(entry
->qemu_put_mouse_event_name
);
407 prev
->next
= entry
->next
;
409 if (qemu_put_mouse_event_current
== entry
)
410 qemu_put_mouse_event_current
= prev
;
412 qemu_free(entry
->qemu_put_mouse_event_name
);
416 void kbd_put_keycode(int keycode
)
418 if (qemu_put_kbd_event
) {
419 qemu_put_kbd_event(qemu_put_kbd_event_opaque
, keycode
);
423 void kbd_mouse_event(int dx
, int dy
, int dz
, int buttons_state
)
425 QEMUPutMouseEvent
*mouse_event
;
426 void *mouse_event_opaque
;
429 if (!qemu_put_mouse_event_current
) {
434 qemu_put_mouse_event_current
->qemu_put_mouse_event
;
436 qemu_put_mouse_event_current
->qemu_put_mouse_event_opaque
;
439 if (graphic_rotate
) {
440 if (qemu_put_mouse_event_current
->qemu_put_mouse_event_absolute
)
443 width
= graphic_width
- 1;
444 mouse_event(mouse_event_opaque
,
445 width
- dy
, dx
, dz
, buttons_state
);
447 mouse_event(mouse_event_opaque
,
448 dx
, dy
, dz
, buttons_state
);
452 int kbd_mouse_is_absolute(void)
454 if (!qemu_put_mouse_event_current
)
457 return qemu_put_mouse_event_current
->qemu_put_mouse_event_absolute
;
460 void do_info_mice(Monitor
*mon
)
462 QEMUPutMouseEntry
*cursor
;
465 if (!qemu_put_mouse_event_head
) {
466 monitor_printf(mon
, "No mouse devices connected\n");
470 monitor_printf(mon
, "Mouse devices available:\n");
471 cursor
= qemu_put_mouse_event_head
;
472 while (cursor
!= NULL
) {
473 monitor_printf(mon
, "%c Mouse #%d: %s\n",
474 (cursor
== qemu_put_mouse_event_current
? '*' : ' '),
475 index
, cursor
->qemu_put_mouse_event_name
);
477 cursor
= cursor
->next
;
481 void do_mouse_set(Monitor
*mon
, const QDict
*qdict
)
483 QEMUPutMouseEntry
*cursor
;
485 int index
= qdict_get_int(qdict
, "index");
487 if (!qemu_put_mouse_event_head
) {
488 monitor_printf(mon
, "No mouse devices connected\n");
492 cursor
= qemu_put_mouse_event_head
;
493 while (cursor
!= NULL
&& index
!= i
) {
495 cursor
= cursor
->next
;
499 qemu_put_mouse_event_current
= cursor
;
501 monitor_printf(mon
, "Mouse at given index not found\n");
504 /* compute with 96 bit intermediate result: (a*b)/c */
505 uint64_t muldiv64(uint64_t a
, uint32_t b
, uint32_t c
)
510 #ifdef HOST_WORDS_BIGENDIAN
520 rl
= (uint64_t)u
.l
.low
* (uint64_t)b
;
521 rh
= (uint64_t)u
.l
.high
* (uint64_t)b
;
524 res
.l
.low
= (((rh
% c
) << 32) + (rl
& 0xffffffff)) / c
;
528 /***********************************************************/
529 /* real time host monotonic timer */
531 static int64_t get_clock_realtime(void)
535 gettimeofday(&tv
, NULL
);
536 return tv
.tv_sec
* 1000000000LL + (tv
.tv_usec
* 1000);
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
, get_ticks_per_sec(), 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. */
593 return get_clock_realtime();
598 /* Return the virtual CPU time, based on the instruction counter. */
599 static int64_t cpu_get_icount(void)
602 CPUState
*env
= cpu_single_env
;;
603 icount
= qemu_icount
;
606 fprintf(stderr
, "Bad clock read\n");
607 icount
-= (env
->icount_decr
.u16
.low
+ env
->icount_extra
);
609 return qemu_icount_bias
+ (icount
<< icount_time_shift
);
612 /***********************************************************/
613 /* guest cycle counter */
615 typedef struct TimersState
{
616 int64_t cpu_ticks_prev
;
617 int64_t cpu_ticks_offset
;
618 int64_t cpu_clock_offset
;
619 int32_t cpu_ticks_enabled
;
623 TimersState timers_state
;
625 /* return the host CPU cycle counter and handle stop/restart */
626 int64_t cpu_get_ticks(void)
629 return cpu_get_icount();
631 if (!timers_state
.cpu_ticks_enabled
) {
632 return timers_state
.cpu_ticks_offset
;
635 ticks
= cpu_get_real_ticks();
636 if (timers_state
.cpu_ticks_prev
> ticks
) {
637 /* Note: non increasing ticks may happen if the host uses
639 timers_state
.cpu_ticks_offset
+= timers_state
.cpu_ticks_prev
- ticks
;
641 timers_state
.cpu_ticks_prev
= ticks
;
642 return ticks
+ timers_state
.cpu_ticks_offset
;
646 /* return the host CPU monotonic timer and handle stop/restart */
647 static int64_t cpu_get_clock(void)
650 if (!timers_state
.cpu_ticks_enabled
) {
651 return timers_state
.cpu_clock_offset
;
654 return ti
+ timers_state
.cpu_clock_offset
;
658 /* enable cpu_get_ticks() */
659 void cpu_enable_ticks(void)
661 if (!timers_state
.cpu_ticks_enabled
) {
662 timers_state
.cpu_ticks_offset
-= cpu_get_real_ticks();
663 timers_state
.cpu_clock_offset
-= get_clock();
664 timers_state
.cpu_ticks_enabled
= 1;
668 /* disable cpu_get_ticks() : the clock is stopped. You must not call
669 cpu_get_ticks() after that. */
670 void cpu_disable_ticks(void)
672 if (timers_state
.cpu_ticks_enabled
) {
673 timers_state
.cpu_ticks_offset
= cpu_get_ticks();
674 timers_state
.cpu_clock_offset
= cpu_get_clock();
675 timers_state
.cpu_ticks_enabled
= 0;
679 /***********************************************************/
682 #define QEMU_CLOCK_REALTIME 0
683 #define QEMU_CLOCK_VIRTUAL 1
684 #define QEMU_CLOCK_HOST 2
688 /* XXX: add frequency */
696 struct QEMUTimer
*next
;
699 struct qemu_alarm_timer
{
703 int (*start
)(struct qemu_alarm_timer
*t
);
704 void (*stop
)(struct qemu_alarm_timer
*t
);
705 void (*rearm
)(struct qemu_alarm_timer
*t
);
709 #define ALARM_FLAG_DYNTICKS 0x1
710 #define ALARM_FLAG_EXPIRED 0x2
712 static inline int alarm_has_dynticks(struct qemu_alarm_timer
*t
)
714 return t
&& (t
->flags
& ALARM_FLAG_DYNTICKS
);
717 static void qemu_rearm_alarm_timer(struct qemu_alarm_timer
*t
)
719 if (!alarm_has_dynticks(t
))
725 /* TODO: MIN_TIMER_REARM_US should be optimized */
726 #define MIN_TIMER_REARM_US 250
728 static struct qemu_alarm_timer
*alarm_timer
;
732 struct qemu_alarm_win32
{
735 } alarm_win32_data
= {0, -1};
737 static int win32_start_timer(struct qemu_alarm_timer
*t
);
738 static void win32_stop_timer(struct qemu_alarm_timer
*t
);
739 static void win32_rearm_timer(struct qemu_alarm_timer
*t
);
743 static int unix_start_timer(struct qemu_alarm_timer
*t
);
744 static void unix_stop_timer(struct qemu_alarm_timer
*t
);
748 static int dynticks_start_timer(struct qemu_alarm_timer
*t
);
749 static void dynticks_stop_timer(struct qemu_alarm_timer
*t
);
750 static void dynticks_rearm_timer(struct qemu_alarm_timer
*t
);
752 static int hpet_start_timer(struct qemu_alarm_timer
*t
);
753 static void hpet_stop_timer(struct qemu_alarm_timer
*t
);
755 static int rtc_start_timer(struct qemu_alarm_timer
*t
);
756 static void rtc_stop_timer(struct qemu_alarm_timer
*t
);
758 #endif /* __linux__ */
762 /* Correlation between real and virtual time is always going to be
763 fairly approximate, so ignore small variation.
764 When the guest is idle real and virtual time will be aligned in
766 #define ICOUNT_WOBBLE (get_ticks_per_sec() / 10)
768 static void icount_adjust(void)
773 static int64_t last_delta
;
774 /* If the VM is not running, then do nothing. */
778 cur_time
= cpu_get_clock();
779 cur_icount
= qemu_get_clock(vm_clock
);
780 delta
= cur_icount
- cur_time
;
781 /* FIXME: This is a very crude algorithm, somewhat prone to oscillation. */
783 && last_delta
+ ICOUNT_WOBBLE
< delta
* 2
784 && icount_time_shift
> 0) {
785 /* The guest is getting too far ahead. Slow time down. */
789 && last_delta
- ICOUNT_WOBBLE
> delta
* 2
790 && icount_time_shift
< MAX_ICOUNT_SHIFT
) {
791 /* The guest is getting too far behind. Speed time up. */
795 qemu_icount_bias
= cur_icount
- (qemu_icount
<< icount_time_shift
);
798 static void icount_adjust_rt(void * opaque
)
800 qemu_mod_timer(icount_rt_timer
,
801 qemu_get_clock(rt_clock
) + 1000);
805 static void icount_adjust_vm(void * opaque
)
807 qemu_mod_timer(icount_vm_timer
,
808 qemu_get_clock(vm_clock
) + get_ticks_per_sec() / 10);
812 static void init_icount_adjust(void)
814 /* Have both realtime and virtual time triggers for speed adjustment.
815 The realtime trigger catches emulated time passing too slowly,
816 the virtual time trigger catches emulated time passing too fast.
817 Realtime triggers occur even when idle, so use them less frequently
819 icount_rt_timer
= qemu_new_timer(rt_clock
, icount_adjust_rt
, NULL
);
820 qemu_mod_timer(icount_rt_timer
,
821 qemu_get_clock(rt_clock
) + 1000);
822 icount_vm_timer
= qemu_new_timer(vm_clock
, icount_adjust_vm
, NULL
);
823 qemu_mod_timer(icount_vm_timer
,
824 qemu_get_clock(vm_clock
) + get_ticks_per_sec() / 10);
827 static struct qemu_alarm_timer alarm_timers
[] = {
830 {"dynticks", ALARM_FLAG_DYNTICKS
, dynticks_start_timer
,
831 dynticks_stop_timer
, dynticks_rearm_timer
, NULL
},
832 /* HPET - if available - is preferred */
833 {"hpet", 0, hpet_start_timer
, hpet_stop_timer
, NULL
, NULL
},
834 /* ...otherwise try RTC */
835 {"rtc", 0, rtc_start_timer
, rtc_stop_timer
, NULL
, NULL
},
837 {"unix", 0, unix_start_timer
, unix_stop_timer
, NULL
, NULL
},
839 {"dynticks", ALARM_FLAG_DYNTICKS
, win32_start_timer
,
840 win32_stop_timer
, win32_rearm_timer
, &alarm_win32_data
},
841 {"win32", 0, win32_start_timer
,
842 win32_stop_timer
, NULL
, &alarm_win32_data
},
847 static void show_available_alarms(void)
851 printf("Available alarm timers, in order of precedence:\n");
852 for (i
= 0; alarm_timers
[i
].name
; i
++)
853 printf("%s\n", alarm_timers
[i
].name
);
856 static void configure_alarms(char const *opt
)
860 int count
= ARRAY_SIZE(alarm_timers
) - 1;
863 struct qemu_alarm_timer tmp
;
865 if (!strcmp(opt
, "?")) {
866 show_available_alarms();
870 arg
= qemu_strdup(opt
);
872 /* Reorder the array */
873 name
= strtok(arg
, ",");
875 for (i
= 0; i
< count
&& alarm_timers
[i
].name
; i
++) {
876 if (!strcmp(alarm_timers
[i
].name
, name
))
881 fprintf(stderr
, "Unknown clock %s\n", name
);
890 tmp
= alarm_timers
[i
];
891 alarm_timers
[i
] = alarm_timers
[cur
];
892 alarm_timers
[cur
] = tmp
;
896 name
= strtok(NULL
, ",");
902 /* Disable remaining timers */
903 for (i
= cur
; i
< count
; i
++)
904 alarm_timers
[i
].name
= NULL
;
906 show_available_alarms();
911 #define QEMU_NUM_CLOCKS 3
915 QEMUClock
*host_clock
;
917 static QEMUTimer
*active_timers
[QEMU_NUM_CLOCKS
];
919 static QEMUClock
*qemu_new_clock(int type
)
922 clock
= qemu_mallocz(sizeof(QEMUClock
));
927 QEMUTimer
*qemu_new_timer(QEMUClock
*clock
, QEMUTimerCB
*cb
, void *opaque
)
931 ts
= qemu_mallocz(sizeof(QEMUTimer
));
938 void qemu_free_timer(QEMUTimer
*ts
)
943 /* stop a timer, but do not dealloc it */
944 void qemu_del_timer(QEMUTimer
*ts
)
948 /* NOTE: this code must be signal safe because
949 qemu_timer_expired() can be called from a signal. */
950 pt
= &active_timers
[ts
->clock
->type
];
963 /* modify the current timer so that it will be fired when current_time
964 >= expire_time. The corresponding callback will be called. */
965 void qemu_mod_timer(QEMUTimer
*ts
, int64_t expire_time
)
971 /* add the timer in the sorted list */
972 /* NOTE: this code must be signal safe because
973 qemu_timer_expired() can be called from a signal. */
974 pt
= &active_timers
[ts
->clock
->type
];
979 if (t
->expire_time
> expire_time
)
983 ts
->expire_time
= expire_time
;
987 /* Rearm if necessary */
988 if (pt
== &active_timers
[ts
->clock
->type
]) {
989 if ((alarm_timer
->flags
& ALARM_FLAG_EXPIRED
) == 0) {
990 qemu_rearm_alarm_timer(alarm_timer
);
992 /* Interrupt execution to force deadline recalculation. */
998 int qemu_timer_pending(QEMUTimer
*ts
)
1001 for(t
= active_timers
[ts
->clock
->type
]; t
!= NULL
; t
= t
->next
) {
1008 int qemu_timer_expired(QEMUTimer
*timer_head
, int64_t current_time
)
1012 return (timer_head
->expire_time
<= current_time
);
1015 static void qemu_run_timers(QEMUTimer
**ptimer_head
, int64_t current_time
)
1021 if (!ts
|| ts
->expire_time
> current_time
)
1023 /* remove timer from the list before calling the callback */
1024 *ptimer_head
= ts
->next
;
1027 /* run the callback (the timer list can be modified) */
1032 int64_t qemu_get_clock(QEMUClock
*clock
)
1034 switch(clock
->type
) {
1035 case QEMU_CLOCK_REALTIME
:
1036 return get_clock() / 1000000;
1038 case QEMU_CLOCK_VIRTUAL
:
1040 return cpu_get_icount();
1042 return cpu_get_clock();
1044 case QEMU_CLOCK_HOST
:
1045 return get_clock_realtime();
1049 static void init_clocks(void)
1052 rt_clock
= qemu_new_clock(QEMU_CLOCK_REALTIME
);
1053 vm_clock
= qemu_new_clock(QEMU_CLOCK_VIRTUAL
);
1054 host_clock
= qemu_new_clock(QEMU_CLOCK_HOST
);
1056 rtc_clock
= host_clock
;
1060 void qemu_put_timer(QEMUFile
*f
, QEMUTimer
*ts
)
1062 uint64_t expire_time
;
1064 if (qemu_timer_pending(ts
)) {
1065 expire_time
= ts
->expire_time
;
1069 qemu_put_be64(f
, expire_time
);
1072 void qemu_get_timer(QEMUFile
*f
, QEMUTimer
*ts
)
1074 uint64_t expire_time
;
1076 expire_time
= qemu_get_be64(f
);
1077 if (expire_time
!= -1) {
1078 qemu_mod_timer(ts
, expire_time
);
1084 static const VMStateDescription vmstate_timers
= {
1087 .minimum_version_id
= 1,
1088 .minimum_version_id_old
= 1,
1089 .fields
= (VMStateField
[]) {
1090 VMSTATE_INT64(cpu_ticks_offset
, TimersState
),
1091 VMSTATE_INT64(dummy
, TimersState
),
1092 VMSTATE_INT64_V(cpu_clock_offset
, TimersState
, 2),
1093 VMSTATE_END_OF_LIST()
1097 static void qemu_event_increment(void);
1100 static void CALLBACK
host_alarm_handler(UINT uTimerID
, UINT uMsg
,
1101 DWORD_PTR dwUser
, DWORD_PTR dw1
,
1104 static void host_alarm_handler(int host_signum
)
1108 #define DISP_FREQ 1000
1110 static int64_t delta_min
= INT64_MAX
;
1111 static int64_t delta_max
, delta_cum
, last_clock
, delta
, ti
;
1113 ti
= qemu_get_clock(vm_clock
);
1114 if (last_clock
!= 0) {
1115 delta
= ti
- last_clock
;
1116 if (delta
< delta_min
)
1118 if (delta
> delta_max
)
1121 if (++count
== DISP_FREQ
) {
1122 printf("timer: min=%" PRId64
" us max=%" PRId64
" us avg=%" PRId64
" us avg_freq=%0.3f Hz\n",
1123 muldiv64(delta_min
, 1000000, get_ticks_per_sec()),
1124 muldiv64(delta_max
, 1000000, get_ticks_per_sec()),
1125 muldiv64(delta_cum
, 1000000 / DISP_FREQ
, get_ticks_per_sec()),
1126 (double)get_ticks_per_sec() / ((double)delta_cum
/ DISP_FREQ
));
1128 delta_min
= INT64_MAX
;
1136 if (alarm_has_dynticks(alarm_timer
) ||
1138 qemu_timer_expired(active_timers
[QEMU_CLOCK_VIRTUAL
],
1139 qemu_get_clock(vm_clock
))) ||
1140 qemu_timer_expired(active_timers
[QEMU_CLOCK_REALTIME
],
1141 qemu_get_clock(rt_clock
)) ||
1142 qemu_timer_expired(active_timers
[QEMU_CLOCK_HOST
],
1143 qemu_get_clock(host_clock
))) {
1144 qemu_event_increment();
1145 if (alarm_timer
) alarm_timer
->flags
|= ALARM_FLAG_EXPIRED
;
1147 #ifndef CONFIG_IOTHREAD
1149 /* stop the currently executing cpu because a timer occured */
1153 timer_alarm_pending
= 1;
1154 qemu_notify_event();
1158 static int64_t qemu_next_deadline(void)
1160 /* To avoid problems with overflow limit this to 2^32. */
1161 int64_t delta
= INT32_MAX
;
1163 if (active_timers
[QEMU_CLOCK_VIRTUAL
]) {
1164 delta
= active_timers
[QEMU_CLOCK_VIRTUAL
]->expire_time
-
1165 qemu_get_clock(vm_clock
);
1167 if (active_timers
[QEMU_CLOCK_HOST
]) {
1168 int64_t hdelta
= active_timers
[QEMU_CLOCK_HOST
]->expire_time
-
1169 qemu_get_clock(host_clock
);
1180 #if defined(__linux__)
1181 static uint64_t qemu_next_deadline_dyntick(void)
1189 delta
= (qemu_next_deadline() + 999) / 1000;
1191 if (active_timers
[QEMU_CLOCK_REALTIME
]) {
1192 rtdelta
= (active_timers
[QEMU_CLOCK_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_CLOCK_REALTIME
] &&
1375 !active_timers
[QEMU_CLOCK_VIRTUAL
] &&
1376 !active_timers
[QEMU_CLOCK_HOST
])
1379 nearest_delta_us
= qemu_next_deadline_dyntick();
1381 /* check whether a timer is already running */
1382 if (timer_gettime(host_timer
, &timeout
)) {
1384 fprintf(stderr
, "Internal timer error: aborting\n");
1387 current_us
= timeout
.it_value
.tv_sec
* 1000000 + timeout
.it_value
.tv_nsec
/1000;
1388 if (current_us
&& current_us
<= nearest_delta_us
)
1391 timeout
.it_interval
.tv_sec
= 0;
1392 timeout
.it_interval
.tv_nsec
= 0; /* 0 for one-shot timer */
1393 timeout
.it_value
.tv_sec
= nearest_delta_us
/ 1000000;
1394 timeout
.it_value
.tv_nsec
= (nearest_delta_us
% 1000000) * 1000;
1395 if (timer_settime(host_timer
, 0 /* RELATIVE */, &timeout
, NULL
)) {
1397 fprintf(stderr
, "Internal timer error: aborting\n");
1402 #endif /* defined(__linux__) */
1404 static int unix_start_timer(struct qemu_alarm_timer
*t
)
1406 struct sigaction act
;
1407 struct itimerval itv
;
1411 sigfillset(&act
.sa_mask
);
1413 act
.sa_handler
= host_alarm_handler
;
1415 sigaction(SIGALRM
, &act
, NULL
);
1417 itv
.it_interval
.tv_sec
= 0;
1418 /* for i386 kernel 2.6 to get 1 ms */
1419 itv
.it_interval
.tv_usec
= 999;
1420 itv
.it_value
.tv_sec
= 0;
1421 itv
.it_value
.tv_usec
= 10 * 1000;
1423 err
= setitimer(ITIMER_REAL
, &itv
, NULL
);
1430 static void unix_stop_timer(struct qemu_alarm_timer
*t
)
1432 struct itimerval itv
;
1434 memset(&itv
, 0, sizeof(itv
));
1435 setitimer(ITIMER_REAL
, &itv
, NULL
);
1438 #endif /* !defined(_WIN32) */
1443 static int win32_start_timer(struct qemu_alarm_timer
*t
)
1446 struct qemu_alarm_win32
*data
= t
->priv
;
1449 memset(&tc
, 0, sizeof(tc
));
1450 timeGetDevCaps(&tc
, sizeof(tc
));
1452 if (data
->period
< tc
.wPeriodMin
)
1453 data
->period
= tc
.wPeriodMin
;
1455 timeBeginPeriod(data
->period
);
1457 flags
= TIME_CALLBACK_FUNCTION
;
1458 if (alarm_has_dynticks(t
))
1459 flags
|= TIME_ONESHOT
;
1461 flags
|= TIME_PERIODIC
;
1463 data
->timerId
= timeSetEvent(1, // interval (ms)
1464 data
->period
, // resolution
1465 host_alarm_handler
, // function
1466 (DWORD
)t
, // parameter
1469 if (!data
->timerId
) {
1470 fprintf(stderr
, "Failed to initialize win32 alarm timer: %ld\n",
1472 timeEndPeriod(data
->period
);
1479 static void win32_stop_timer(struct qemu_alarm_timer
*t
)
1481 struct qemu_alarm_win32
*data
= t
->priv
;
1483 timeKillEvent(data
->timerId
);
1484 timeEndPeriod(data
->period
);
1487 static void win32_rearm_timer(struct qemu_alarm_timer
*t
)
1489 struct qemu_alarm_win32
*data
= t
->priv
;
1491 if (!active_timers
[QEMU_CLOCK_REALTIME
] &&
1492 !active_timers
[QEMU_CLOCK_VIRTUAL
] &&
1493 !active_timers
[QEMU_CLOCK_HOST
])
1496 timeKillEvent(data
->timerId
);
1498 data
->timerId
= timeSetEvent(1,
1502 TIME_ONESHOT
| TIME_PERIODIC
);
1504 if (!data
->timerId
) {
1505 fprintf(stderr
, "Failed to re-arm win32 alarm timer %ld\n",
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
);
1584 static void configure_rtc_date_offset(const char *startdate
, int legacy
)
1586 time_t rtc_start_date
;
1589 if (!strcmp(startdate
, "now") && legacy
) {
1590 rtc_date_offset
= -1;
1592 if (sscanf(startdate
, "%d-%d-%dT%d:%d:%d",
1600 } else if (sscanf(startdate
, "%d-%d-%d",
1603 &tm
.tm_mday
) == 3) {
1612 rtc_start_date
= mktimegm(&tm
);
1613 if (rtc_start_date
== -1) {
1615 fprintf(stderr
, "Invalid date format. Valid formats are:\n"
1616 "'2006-06-17T16:01:21' or '2006-06-17'\n");
1619 rtc_date_offset
= time(NULL
) - rtc_start_date
;
1623 static void configure_rtc(QemuOpts
*opts
)
1627 value
= qemu_opt_get(opts
, "base");
1629 if (!strcmp(value
, "utc")) {
1631 } else if (!strcmp(value
, "localtime")) {
1634 configure_rtc_date_offset(value
, 0);
1637 value
= qemu_opt_get(opts
, "clock");
1639 if (!strcmp(value
, "host")) {
1640 rtc_clock
= host_clock
;
1641 } else if (!strcmp(value
, "vm")) {
1642 rtc_clock
= vm_clock
;
1644 fprintf(stderr
, "qemu: invalid option value '%s'\n", value
);
1648 #ifdef CONFIG_TARGET_I386
1649 value
= qemu_opt_get(opts
, "driftfix");
1651 if (!strcmp(buf
, "slew")) {
1653 } else if (!strcmp(buf
, "none")) {
1656 fprintf(stderr
, "qemu: invalid option value '%s'\n", value
);
1664 static void socket_cleanup(void)
1669 static int socket_init(void)
1674 ret
= WSAStartup(MAKEWORD(2,2), &Data
);
1676 err
= WSAGetLastError();
1677 fprintf(stderr
, "WSAStartup: %d\n", err
);
1680 atexit(socket_cleanup
);
1685 /***********************************************************/
1686 /* Bluetooth support */
1689 static struct HCIInfo
*hci_table
[MAX_NICS
];
1691 static struct bt_vlan_s
{
1692 struct bt_scatternet_s net
;
1694 struct bt_vlan_s
*next
;
1697 /* find or alloc a new bluetooth "VLAN" */
1698 static struct bt_scatternet_s
*qemu_find_bt_vlan(int id
)
1700 struct bt_vlan_s
**pvlan
, *vlan
;
1701 for (vlan
= first_bt_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
1705 vlan
= qemu_mallocz(sizeof(struct bt_vlan_s
));
1707 pvlan
= &first_bt_vlan
;
1708 while (*pvlan
!= NULL
)
1709 pvlan
= &(*pvlan
)->next
;
1714 static void null_hci_send(struct HCIInfo
*hci
, const uint8_t *data
, int len
)
1718 static int null_hci_addr_set(struct HCIInfo
*hci
, const uint8_t *bd_addr
)
1723 static struct HCIInfo null_hci
= {
1724 .cmd_send
= null_hci_send
,
1725 .sco_send
= null_hci_send
,
1726 .acl_send
= null_hci_send
,
1727 .bdaddr_set
= null_hci_addr_set
,
1730 struct HCIInfo
*qemu_next_hci(void)
1732 if (cur_hci
== nb_hcis
)
1735 return hci_table
[cur_hci
++];
1738 static struct HCIInfo
*hci_init(const char *str
)
1741 struct bt_scatternet_s
*vlan
= 0;
1743 if (!strcmp(str
, "null"))
1746 else if (!strncmp(str
, "host", 4) && (str
[4] == '\0' || str
[4] == ':'))
1748 return bt_host_hci(str
[4] ? str
+ 5 : "hci0");
1749 else if (!strncmp(str
, "hci", 3)) {
1752 if (!strncmp(str
+ 3, ",vlan=", 6)) {
1753 vlan
= qemu_find_bt_vlan(strtol(str
+ 9, &endp
, 0));
1758 vlan
= qemu_find_bt_vlan(0);
1760 return bt_new_hci(vlan
);
1763 fprintf(stderr
, "qemu: Unknown bluetooth HCI `%s'.\n", str
);
1768 static int bt_hci_parse(const char *str
)
1770 struct HCIInfo
*hci
;
1773 if (nb_hcis
>= MAX_NICS
) {
1774 fprintf(stderr
, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS
);
1778 hci
= hci_init(str
);
1787 bdaddr
.b
[5] = 0x56 + nb_hcis
;
1788 hci
->bdaddr_set(hci
, bdaddr
.b
);
1790 hci_table
[nb_hcis
++] = hci
;
1795 static void bt_vhci_add(int vlan_id
)
1797 struct bt_scatternet_s
*vlan
= qemu_find_bt_vlan(vlan_id
);
1800 fprintf(stderr
, "qemu: warning: adding a VHCI to "
1801 "an empty scatternet %i\n", vlan_id
);
1803 bt_vhci_init(bt_new_hci(vlan
));
1806 static struct bt_device_s
*bt_device_add(const char *opt
)
1808 struct bt_scatternet_s
*vlan
;
1810 char *endp
= strstr(opt
, ",vlan=");
1811 int len
= (endp
? endp
- opt
: strlen(opt
)) + 1;
1814 pstrcpy(devname
, MIN(sizeof(devname
), len
), opt
);
1817 vlan_id
= strtol(endp
+ 6, &endp
, 0);
1819 fprintf(stderr
, "qemu: unrecognised bluetooth vlan Id\n");
1824 vlan
= qemu_find_bt_vlan(vlan_id
);
1827 fprintf(stderr
, "qemu: warning: adding a slave device to "
1828 "an empty scatternet %i\n", vlan_id
);
1830 if (!strcmp(devname
, "keyboard"))
1831 return bt_keyboard_init(vlan
);
1833 fprintf(stderr
, "qemu: unsupported bluetooth device `%s'\n", devname
);
1837 static int bt_parse(const char *opt
)
1839 const char *endp
, *p
;
1842 if (strstart(opt
, "hci", &endp
)) {
1843 if (!*endp
|| *endp
== ',') {
1845 if (!strstart(endp
, ",vlan=", 0))
1848 return bt_hci_parse(opt
);
1850 } else if (strstart(opt
, "vhci", &endp
)) {
1851 if (!*endp
|| *endp
== ',') {
1853 if (strstart(endp
, ",vlan=", &p
)) {
1854 vlan
= strtol(p
, (char **) &endp
, 0);
1856 fprintf(stderr
, "qemu: bad scatternet '%s'\n", p
);
1860 fprintf(stderr
, "qemu: bad parameter '%s'\n", endp
+ 1);
1869 } else if (strstart(opt
, "device:", &endp
))
1870 return !bt_device_add(endp
);
1872 fprintf(stderr
, "qemu: bad bluetooth parameter '%s'\n", opt
);
1876 /***********************************************************/
1877 /* QEMU Block devices */
1879 #define HD_ALIAS "index=%d,media=disk"
1880 #define CDROM_ALIAS "index=2,media=cdrom"
1881 #define FD_ALIAS "index=%d,if=floppy"
1882 #define PFLASH_ALIAS "if=pflash"
1883 #define MTD_ALIAS "if=mtd"
1884 #define SD_ALIAS "index=0,if=sd"
1886 QemuOpts
*drive_add(const char *file
, const char *fmt
, ...)
1893 vsnprintf(optstr
, sizeof(optstr
), fmt
, ap
);
1896 opts
= qemu_opts_parse(&qemu_drive_opts
, optstr
, NULL
);
1898 fprintf(stderr
, "%s: huh? duplicate? (%s)\n",
1899 __FUNCTION__
, optstr
);
1903 qemu_opt_set(opts
, "file", file
);
1907 DriveInfo
*drive_get(BlockInterfaceType type
, int bus
, int unit
)
1911 /* seek interface, bus and unit */
1913 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
1914 if (dinfo
->type
== type
&&
1915 dinfo
->bus
== bus
&&
1916 dinfo
->unit
== unit
)
1923 DriveInfo
*drive_get_by_id(const char *id
)
1927 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
1928 if (strcmp(id
, dinfo
->id
))
1935 int drive_get_max_bus(BlockInterfaceType type
)
1941 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
1942 if(dinfo
->type
== type
&&
1943 dinfo
->bus
> max_bus
)
1944 max_bus
= dinfo
->bus
;
1949 const char *drive_get_serial(BlockDriverState
*bdrv
)
1953 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
1954 if (dinfo
->bdrv
== bdrv
)
1955 return dinfo
->serial
;
1961 BlockInterfaceErrorAction
drive_get_onerror(BlockDriverState
*bdrv
)
1965 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
1966 if (dinfo
->bdrv
== bdrv
)
1967 return dinfo
->onerror
;
1970 return BLOCK_ERR_STOP_ENOSPC
;
1973 static void bdrv_format_print(void *opaque
, const char *name
)
1975 fprintf(stderr
, " %s", name
);
1978 void drive_uninit(DriveInfo
*dinfo
)
1980 qemu_opts_del(dinfo
->opts
);
1981 bdrv_delete(dinfo
->bdrv
);
1982 QTAILQ_REMOVE(&drives
, dinfo
, next
);
1986 DriveInfo
*drive_init(QemuOpts
*opts
, void *opaque
,
1990 const char *file
= NULL
;
1993 const char *mediastr
= "";
1994 BlockInterfaceType type
;
1995 enum { MEDIA_DISK
, MEDIA_CDROM
} media
;
1996 int bus_id
, unit_id
;
1997 int cyls
, heads
, secs
, translation
;
1998 BlockDriver
*drv
= NULL
;
1999 QEMUMachine
*machine
= opaque
;
2004 int bdrv_flags
, onerror
;
2005 const char *devaddr
;
2011 translation
= BIOS_ATA_TRANSLATION_AUTO
;
2014 if (machine
&& machine
->use_scsi
) {
2016 max_devs
= MAX_SCSI_DEVS
;
2017 pstrcpy(devname
, sizeof(devname
), "scsi");
2020 max_devs
= MAX_IDE_DEVS
;
2021 pstrcpy(devname
, sizeof(devname
), "ide");
2025 /* extract parameters */
2026 bus_id
= qemu_opt_get_number(opts
, "bus", 0);
2027 unit_id
= qemu_opt_get_number(opts
, "unit", -1);
2028 index
= qemu_opt_get_number(opts
, "index", -1);
2030 cyls
= qemu_opt_get_number(opts
, "cyls", 0);
2031 heads
= qemu_opt_get_number(opts
, "heads", 0);
2032 secs
= qemu_opt_get_number(opts
, "secs", 0);
2034 snapshot
= qemu_opt_get_bool(opts
, "snapshot", 0);
2036 file
= qemu_opt_get(opts
, "file");
2037 serial
= qemu_opt_get(opts
, "serial");
2039 if ((buf
= qemu_opt_get(opts
, "if")) != NULL
) {
2040 pstrcpy(devname
, sizeof(devname
), buf
);
2041 if (!strcmp(buf
, "ide")) {
2043 max_devs
= MAX_IDE_DEVS
;
2044 } else if (!strcmp(buf
, "scsi")) {
2046 max_devs
= MAX_SCSI_DEVS
;
2047 } else if (!strcmp(buf
, "floppy")) {
2050 } else if (!strcmp(buf
, "pflash")) {
2053 } else if (!strcmp(buf
, "mtd")) {
2056 } else if (!strcmp(buf
, "sd")) {
2059 } else if (!strcmp(buf
, "virtio")) {
2062 } else if (!strcmp(buf
, "xen")) {
2065 } else if (!strcmp(buf
, "none")) {
2069 fprintf(stderr
, "qemu: unsupported bus type '%s'\n", buf
);
2074 if (cyls
|| heads
|| secs
) {
2075 if (cyls
< 1 || (type
== IF_IDE
&& cyls
> 16383)) {
2076 fprintf(stderr
, "qemu: '%s' invalid physical cyls number\n", buf
);
2079 if (heads
< 1 || (type
== IF_IDE
&& heads
> 16)) {
2080 fprintf(stderr
, "qemu: '%s' invalid physical heads number\n", buf
);
2083 if (secs
< 1 || (type
== IF_IDE
&& secs
> 63)) {
2084 fprintf(stderr
, "qemu: '%s' invalid physical secs number\n", buf
);
2089 if ((buf
= qemu_opt_get(opts
, "trans")) != NULL
) {
2092 "qemu: '%s' trans must be used with cyls,heads and secs\n",
2096 if (!strcmp(buf
, "none"))
2097 translation
= BIOS_ATA_TRANSLATION_NONE
;
2098 else if (!strcmp(buf
, "lba"))
2099 translation
= BIOS_ATA_TRANSLATION_LBA
;
2100 else if (!strcmp(buf
, "auto"))
2101 translation
= BIOS_ATA_TRANSLATION_AUTO
;
2103 fprintf(stderr
, "qemu: '%s' invalid translation type\n", buf
);
2108 if ((buf
= qemu_opt_get(opts
, "media")) != NULL
) {
2109 if (!strcmp(buf
, "disk")) {
2111 } else if (!strcmp(buf
, "cdrom")) {
2112 if (cyls
|| secs
|| heads
) {
2114 "qemu: '%s' invalid physical CHS format\n", buf
);
2117 media
= MEDIA_CDROM
;
2119 fprintf(stderr
, "qemu: '%s' invalid media\n", buf
);
2124 if ((buf
= qemu_opt_get(opts
, "cache")) != NULL
) {
2125 if (!strcmp(buf
, "off") || !strcmp(buf
, "none"))
2127 else if (!strcmp(buf
, "writethrough"))
2129 else if (!strcmp(buf
, "writeback"))
2132 fprintf(stderr
, "qemu: invalid cache option\n");
2137 #ifdef CONFIG_LINUX_AIO
2138 if ((buf
= qemu_opt_get(opts
, "aio")) != NULL
) {
2139 if (!strcmp(buf
, "threads"))
2141 else if (!strcmp(buf
, "native"))
2144 fprintf(stderr
, "qemu: invalid aio option\n");
2150 if ((buf
= qemu_opt_get(opts
, "format")) != NULL
) {
2151 if (strcmp(buf
, "?") == 0) {
2152 fprintf(stderr
, "qemu: Supported formats:");
2153 bdrv_iterate_format(bdrv_format_print
, NULL
);
2154 fprintf(stderr
, "\n");
2157 drv
= bdrv_find_format(buf
);
2159 fprintf(stderr
, "qemu: '%s' invalid format\n", buf
);
2164 onerror
= BLOCK_ERR_STOP_ENOSPC
;
2165 if ((buf
= qemu_opt_get(opts
, "werror")) != NULL
) {
2166 if (type
!= IF_IDE
&& type
!= IF_SCSI
&& type
!= IF_VIRTIO
) {
2167 fprintf(stderr
, "werror is no supported by this format\n");
2170 if (!strcmp(buf
, "ignore"))
2171 onerror
= BLOCK_ERR_IGNORE
;
2172 else if (!strcmp(buf
, "enospc"))
2173 onerror
= BLOCK_ERR_STOP_ENOSPC
;
2174 else if (!strcmp(buf
, "stop"))
2175 onerror
= BLOCK_ERR_STOP_ANY
;
2176 else if (!strcmp(buf
, "report"))
2177 onerror
= BLOCK_ERR_REPORT
;
2179 fprintf(stderr
, "qemu: '%s' invalid write error action\n", buf
);
2184 if ((devaddr
= qemu_opt_get(opts
, "addr")) != NULL
) {
2185 if (type
!= IF_VIRTIO
) {
2186 fprintf(stderr
, "addr is not supported\n");
2191 /* compute bus and unit according index */
2194 if (bus_id
!= 0 || unit_id
!= -1) {
2196 "qemu: index cannot be used with bus and unit\n");
2204 unit_id
= index
% max_devs
;
2205 bus_id
= index
/ max_devs
;
2209 /* if user doesn't specify a unit_id,
2210 * try to find the first free
2213 if (unit_id
== -1) {
2215 while (drive_get(type
, bus_id
, unit_id
) != NULL
) {
2217 if (max_devs
&& unit_id
>= max_devs
) {
2218 unit_id
-= max_devs
;
2226 if (max_devs
&& unit_id
>= max_devs
) {
2227 fprintf(stderr
, "qemu: unit %d too big (max is %d)\n",
2228 unit_id
, max_devs
- 1);
2233 * ignore multiple definitions
2236 if (drive_get(type
, bus_id
, unit_id
) != NULL
) {
2243 dinfo
= qemu_mallocz(sizeof(*dinfo
));
2244 if ((buf
= qemu_opts_id(opts
)) != NULL
) {
2245 dinfo
->id
= qemu_strdup(buf
);
2247 /* no id supplied -> create one */
2248 dinfo
->id
= qemu_mallocz(32);
2249 if (type
== IF_IDE
|| type
== IF_SCSI
)
2250 mediastr
= (media
== MEDIA_CDROM
) ? "-cd" : "-hd";
2252 snprintf(dinfo
->id
, 32, "%s%i%s%i",
2253 devname
, bus_id
, mediastr
, unit_id
);
2255 snprintf(dinfo
->id
, 32, "%s%s%i",
2256 devname
, mediastr
, unit_id
);
2258 dinfo
->bdrv
= bdrv_new(dinfo
->id
);
2259 dinfo
->devaddr
= devaddr
;
2261 dinfo
->bus
= bus_id
;
2262 dinfo
->unit
= unit_id
;
2263 dinfo
->onerror
= onerror
;
2266 strncpy(dinfo
->serial
, serial
, sizeof(serial
));
2267 QTAILQ_INSERT_TAIL(&drives
, dinfo
, next
);
2277 bdrv_set_geometry_hint(dinfo
->bdrv
, cyls
, heads
, secs
);
2278 bdrv_set_translation_hint(dinfo
->bdrv
, translation
);
2282 bdrv_set_type_hint(dinfo
->bdrv
, BDRV_TYPE_CDROM
);
2287 /* FIXME: This isn't really a floppy, but it's a reasonable
2290 bdrv_set_type_hint(dinfo
->bdrv
, BDRV_TYPE_FLOPPY
);
2296 /* add virtio block device */
2297 opts
= qemu_opts_create(&qemu_device_opts
, NULL
, 0);
2298 qemu_opt_set(opts
, "driver", "virtio-blk-pci");
2299 qemu_opt_set(opts
, "drive", dinfo
->id
);
2301 qemu_opt_set(opts
, "addr", devaddr
);
2312 bdrv_flags
|= BDRV_O_SNAPSHOT
;
2313 cache
= 2; /* always use write-back with snapshot */
2315 if (cache
== 0) /* no caching */
2316 bdrv_flags
|= BDRV_O_NOCACHE
;
2317 else if (cache
== 2) /* write-back */
2318 bdrv_flags
|= BDRV_O_CACHE_WB
;
2321 bdrv_flags
|= BDRV_O_NATIVE_AIO
;
2323 bdrv_flags
&= ~BDRV_O_NATIVE_AIO
;
2326 if (bdrv_open2(dinfo
->bdrv
, file
, bdrv_flags
, drv
) < 0) {
2327 fprintf(stderr
, "qemu: could not open disk image %s: %s\n",
2328 file
, strerror(errno
));
2332 if (bdrv_key_required(dinfo
->bdrv
))
2338 static int drive_init_func(QemuOpts
*opts
, void *opaque
)
2340 QEMUMachine
*machine
= opaque
;
2341 int fatal_error
= 0;
2343 if (drive_init(opts
, machine
, &fatal_error
) == NULL
) {
2350 static int drive_enable_snapshot(QemuOpts
*opts
, void *opaque
)
2352 if (NULL
== qemu_opt_get(opts
, "snapshot")) {
2353 qemu_opt_set(opts
, "snapshot", "on");
2358 void qemu_register_boot_set(QEMUBootSetHandler
*func
, void *opaque
)
2360 boot_set_handler
= func
;
2361 boot_set_opaque
= opaque
;
2364 int qemu_boot_set(const char *boot_devices
)
2366 if (!boot_set_handler
) {
2369 return boot_set_handler(boot_set_opaque
, boot_devices
);
2372 static int parse_bootdevices(char *devices
)
2374 /* We just do some generic consistency checks */
2378 for (p
= devices
; *p
!= '\0'; p
++) {
2379 /* Allowed boot devices are:
2380 * a-b: floppy disk drives
2381 * c-f: IDE disk drives
2382 * g-m: machine implementation dependant drives
2383 * n-p: network devices
2384 * It's up to each machine implementation to check if the given boot
2385 * devices match the actual hardware implementation and firmware
2388 if (*p
< 'a' || *p
> 'p') {
2389 fprintf(stderr
, "Invalid boot device '%c'\n", *p
);
2392 if (bitmap
& (1 << (*p
- 'a'))) {
2393 fprintf(stderr
, "Boot device '%c' was given twice\n", *p
);
2396 bitmap
|= 1 << (*p
- 'a');
2401 static void restore_boot_devices(void *opaque
)
2403 char *standard_boot_devices
= opaque
;
2405 qemu_boot_set(standard_boot_devices
);
2407 qemu_unregister_reset(restore_boot_devices
, standard_boot_devices
);
2408 qemu_free(standard_boot_devices
);
2411 static void numa_add(const char *optarg
)
2415 unsigned long long value
, endvalue
;
2418 optarg
= get_opt_name(option
, 128, optarg
, ',') + 1;
2419 if (!strcmp(option
, "node")) {
2420 if (get_param_value(option
, 128, "nodeid", optarg
) == 0) {
2421 nodenr
= nb_numa_nodes
;
2423 nodenr
= strtoull(option
, NULL
, 10);
2426 if (get_param_value(option
, 128, "mem", optarg
) == 0) {
2427 node_mem
[nodenr
] = 0;
2429 value
= strtoull(option
, &endptr
, 0);
2431 case 0: case 'M': case 'm':
2438 node_mem
[nodenr
] = value
;
2440 if (get_param_value(option
, 128, "cpus", optarg
) == 0) {
2441 node_cpumask
[nodenr
] = 0;
2443 value
= strtoull(option
, &endptr
, 10);
2446 fprintf(stderr
, "only 64 CPUs in NUMA mode supported.\n");
2448 if (*endptr
== '-') {
2449 endvalue
= strtoull(endptr
+1, &endptr
, 10);
2450 if (endvalue
>= 63) {
2453 "only 63 CPUs in NUMA mode supported.\n");
2455 value
= (1 << (endvalue
+ 1)) - (1 << value
);
2460 node_cpumask
[nodenr
] = value
;
2467 static void smp_parse(const char *optarg
)
2469 int smp
, sockets
= 0, threads
= 0, cores
= 0;
2473 smp
= strtoul(optarg
, &endptr
, 10);
2474 if (endptr
!= optarg
) {
2475 if (*endptr
== ',') {
2479 if (get_param_value(option
, 128, "sockets", endptr
) != 0)
2480 sockets
= strtoull(option
, NULL
, 10);
2481 if (get_param_value(option
, 128, "cores", endptr
) != 0)
2482 cores
= strtoull(option
, NULL
, 10);
2483 if (get_param_value(option
, 128, "threads", endptr
) != 0)
2484 threads
= strtoull(option
, NULL
, 10);
2485 if (get_param_value(option
, 128, "maxcpus", endptr
) != 0)
2486 max_cpus
= strtoull(option
, NULL
, 10);
2488 /* compute missing values, prefer sockets over cores over threads */
2489 if (smp
== 0 || sockets
== 0) {
2490 sockets
= sockets
> 0 ? sockets
: 1;
2491 cores
= cores
> 0 ? cores
: 1;
2492 threads
= threads
> 0 ? threads
: 1;
2494 smp
= cores
* threads
* sockets
;
2496 sockets
= smp
/ (cores
* threads
);
2500 threads
= threads
> 0 ? threads
: 1;
2501 cores
= smp
/ (sockets
* threads
);
2504 sockets
= smp
/ (cores
* threads
);
2506 threads
= smp
/ (cores
* sockets
);
2511 smp_cores
= cores
> 0 ? cores
: 1;
2512 smp_threads
= threads
> 0 ? threads
: 1;
2514 max_cpus
= smp_cpus
;
2517 /***********************************************************/
2520 static void usb_msd_password_cb(void *opaque
, int err
)
2522 USBDevice
*dev
= opaque
;
2525 usb_device_attach(dev
);
2527 dev
->info
->handle_destroy(dev
);
2536 .qdev
= "QEMU USB Mouse",
2539 .qdev
= "QEMU USB Tablet",
2542 .qdev
= "QEMU USB Keyboard",
2544 .name
= "wacom-tablet",
2545 .qdev
= "QEMU PenPartner Tablet",
2549 static int usb_device_add(const char *devname
, int is_hotplug
)
2552 USBBus
*bus
= usb_bus_find(-1 /* any */);
2553 USBDevice
*dev
= NULL
;
2559 /* simple devices which don't need extra care */
2560 for (i
= 0; i
< ARRAY_SIZE(usbdevs
); i
++) {
2561 if (strcmp(devname
, usbdevs
[i
].name
) != 0)
2563 dev
= usb_create_simple(bus
, usbdevs
[i
].qdev
);
2567 /* the other ones */
2568 if (strstart(devname
, "host:", &p
)) {
2569 dev
= usb_host_device_open(p
);
2570 } else if (strstart(devname
, "disk:", &p
)) {
2571 BlockDriverState
*bs
;
2573 dev
= usb_msd_init(p
);
2576 bs
= usb_msd_get_bdrv(dev
);
2577 if (bdrv_key_required(bs
)) {
2580 monitor_read_bdrv_key_start(cur_mon
, bs
, usb_msd_password_cb
,
2585 } else if (strstart(devname
, "serial:", &p
)) {
2586 dev
= usb_serial_init(p
);
2587 #ifdef CONFIG_BRLAPI
2588 } else if (!strcmp(devname
, "braille")) {
2589 dev
= usb_baum_init();
2591 } else if (strstart(devname
, "net:", &p
)) {
2595 opts
= qemu_opts_parse(&qemu_net_opts
, p
, NULL
);
2600 qemu_opt_set(opts
, "type", "nic");
2601 qemu_opt_set(opts
, "model", "usb");
2603 idx
= net_client_init(NULL
, opts
, 0);
2608 dev
= usb_net_init(&nd_table
[idx
]);
2609 } else if (!strcmp(devname
, "bt") || strstart(devname
, "bt:", &p
)) {
2610 dev
= usb_bt_init(devname
[2] ? hci_init(p
) :
2611 bt_new_hci(qemu_find_bt_vlan(0)));
2622 static int usb_device_del(const char *devname
)
2627 if (strstart(devname
, "host:", &p
))
2628 return usb_host_device_close(p
);
2633 p
= strchr(devname
, '.');
2636 bus_num
= strtoul(devname
, NULL
, 0);
2637 addr
= strtoul(p
+ 1, NULL
, 0);
2639 return usb_device_delete_addr(bus_num
, addr
);
2642 static int usb_parse(const char *cmdline
)
2644 return usb_device_add(cmdline
, 0);
2647 void do_usb_add(Monitor
*mon
, const QDict
*qdict
)
2649 usb_device_add(qdict_get_str(qdict
, "devname"), 1);
2652 void do_usb_del(Monitor
*mon
, const QDict
*qdict
)
2654 usb_device_del(qdict_get_str(qdict
, "devname"));
2657 /***********************************************************/
2658 /* PCMCIA/Cardbus */
2660 static struct pcmcia_socket_entry_s
{
2661 PCMCIASocket
*socket
;
2662 struct pcmcia_socket_entry_s
*next
;
2663 } *pcmcia_sockets
= 0;
2665 void pcmcia_socket_register(PCMCIASocket
*socket
)
2667 struct pcmcia_socket_entry_s
*entry
;
2669 entry
= qemu_malloc(sizeof(struct pcmcia_socket_entry_s
));
2670 entry
->socket
= socket
;
2671 entry
->next
= pcmcia_sockets
;
2672 pcmcia_sockets
= entry
;
2675 void pcmcia_socket_unregister(PCMCIASocket
*socket
)
2677 struct pcmcia_socket_entry_s
*entry
, **ptr
;
2679 ptr
= &pcmcia_sockets
;
2680 for (entry
= *ptr
; entry
; ptr
= &entry
->next
, entry
= *ptr
)
2681 if (entry
->socket
== socket
) {
2687 void pcmcia_info(Monitor
*mon
)
2689 struct pcmcia_socket_entry_s
*iter
;
2691 if (!pcmcia_sockets
)
2692 monitor_printf(mon
, "No PCMCIA sockets\n");
2694 for (iter
= pcmcia_sockets
; iter
; iter
= iter
->next
)
2695 monitor_printf(mon
, "%s: %s\n", iter
->socket
->slot_string
,
2696 iter
->socket
->attached
? iter
->socket
->card_string
:
2700 /***********************************************************/
2701 /* register display */
2703 struct DisplayAllocator default_allocator
= {
2704 defaultallocator_create_displaysurface
,
2705 defaultallocator_resize_displaysurface
,
2706 defaultallocator_free_displaysurface
2709 void register_displaystate(DisplayState
*ds
)
2719 DisplayState
*get_displaystate(void)
2721 return display_state
;
2724 DisplayAllocator
*register_displayallocator(DisplayState
*ds
, DisplayAllocator
*da
)
2726 if(ds
->allocator
== &default_allocator
) ds
->allocator
= da
;
2727 return ds
->allocator
;
2732 static void dumb_display_init(void)
2734 DisplayState
*ds
= qemu_mallocz(sizeof(DisplayState
));
2735 ds
->allocator
= &default_allocator
;
2736 ds
->surface
= qemu_create_displaysurface(ds
, 640, 480);
2737 register_displaystate(ds
);
2740 /***********************************************************/
2743 typedef struct IOHandlerRecord
{
2745 IOCanRWHandler
*fd_read_poll
;
2747 IOHandler
*fd_write
;
2750 /* temporary data */
2752 struct IOHandlerRecord
*next
;
2755 static IOHandlerRecord
*first_io_handler
;
2757 /* XXX: fd_read_poll should be suppressed, but an API change is
2758 necessary in the character devices to suppress fd_can_read(). */
2759 int qemu_set_fd_handler2(int fd
,
2760 IOCanRWHandler
*fd_read_poll
,
2762 IOHandler
*fd_write
,
2765 IOHandlerRecord
**pioh
, *ioh
;
2767 if (!fd_read
&& !fd_write
) {
2768 pioh
= &first_io_handler
;
2773 if (ioh
->fd
== fd
) {
2780 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
2784 ioh
= qemu_mallocz(sizeof(IOHandlerRecord
));
2785 ioh
->next
= first_io_handler
;
2786 first_io_handler
= ioh
;
2789 ioh
->fd_read_poll
= fd_read_poll
;
2790 ioh
->fd_read
= fd_read
;
2791 ioh
->fd_write
= fd_write
;
2792 ioh
->opaque
= opaque
;
2798 int qemu_set_fd_handler(int fd
,
2800 IOHandler
*fd_write
,
2803 return qemu_set_fd_handler2(fd
, NULL
, fd_read
, fd_write
, opaque
);
2807 /***********************************************************/
2808 /* Polling handling */
2810 typedef struct PollingEntry
{
2813 struct PollingEntry
*next
;
2816 static PollingEntry
*first_polling_entry
;
2818 int qemu_add_polling_cb(PollingFunc
*func
, void *opaque
)
2820 PollingEntry
**ppe
, *pe
;
2821 pe
= qemu_mallocz(sizeof(PollingEntry
));
2823 pe
->opaque
= opaque
;
2824 for(ppe
= &first_polling_entry
; *ppe
!= NULL
; ppe
= &(*ppe
)->next
);
2829 void qemu_del_polling_cb(PollingFunc
*func
, void *opaque
)
2831 PollingEntry
**ppe
, *pe
;
2832 for(ppe
= &first_polling_entry
; *ppe
!= NULL
; ppe
= &(*ppe
)->next
) {
2834 if (pe
->func
== func
&& pe
->opaque
== opaque
) {
2842 /***********************************************************/
2843 /* Wait objects support */
2844 typedef struct WaitObjects
{
2846 HANDLE events
[MAXIMUM_WAIT_OBJECTS
+ 1];
2847 WaitObjectFunc
*func
[MAXIMUM_WAIT_OBJECTS
+ 1];
2848 void *opaque
[MAXIMUM_WAIT_OBJECTS
+ 1];
2851 static WaitObjects wait_objects
= {0};
2853 int qemu_add_wait_object(HANDLE handle
, WaitObjectFunc
*func
, void *opaque
)
2855 WaitObjects
*w
= &wait_objects
;
2857 if (w
->num
>= MAXIMUM_WAIT_OBJECTS
)
2859 w
->events
[w
->num
] = handle
;
2860 w
->func
[w
->num
] = func
;
2861 w
->opaque
[w
->num
] = opaque
;
2866 void qemu_del_wait_object(HANDLE handle
, WaitObjectFunc
*func
, void *opaque
)
2869 WaitObjects
*w
= &wait_objects
;
2872 for (i
= 0; i
< w
->num
; i
++) {
2873 if (w
->events
[i
] == handle
)
2876 w
->events
[i
] = w
->events
[i
+ 1];
2877 w
->func
[i
] = w
->func
[i
+ 1];
2878 w
->opaque
[i
] = w
->opaque
[i
+ 1];
2886 /***********************************************************/
2887 /* ram save/restore */
2889 #define RAM_SAVE_FLAG_FULL 0x01 /* Obsolete, not used anymore */
2890 #define RAM_SAVE_FLAG_COMPRESS 0x02
2891 #define RAM_SAVE_FLAG_MEM_SIZE 0x04
2892 #define RAM_SAVE_FLAG_PAGE 0x08
2893 #define RAM_SAVE_FLAG_EOS 0x10
2895 static int is_dup_page(uint8_t *page
, uint8_t ch
)
2897 uint32_t val
= ch
<< 24 | ch
<< 16 | ch
<< 8 | ch
;
2898 uint32_t *array
= (uint32_t *)page
;
2901 for (i
= 0; i
< (TARGET_PAGE_SIZE
/ 4); i
++) {
2902 if (array
[i
] != val
)
2909 static int ram_save_block(QEMUFile
*f
)
2911 static ram_addr_t current_addr
= 0;
2912 ram_addr_t saved_addr
= current_addr
;
2913 ram_addr_t addr
= 0;
2916 while (addr
< last_ram_offset
) {
2917 if (cpu_physical_memory_get_dirty(current_addr
, MIGRATION_DIRTY_FLAG
)) {
2920 cpu_physical_memory_reset_dirty(current_addr
,
2921 current_addr
+ TARGET_PAGE_SIZE
,
2922 MIGRATION_DIRTY_FLAG
);
2924 p
= qemu_get_ram_ptr(current_addr
);
2926 if (is_dup_page(p
, *p
)) {
2927 qemu_put_be64(f
, current_addr
| RAM_SAVE_FLAG_COMPRESS
);
2928 qemu_put_byte(f
, *p
);
2930 qemu_put_be64(f
, current_addr
| RAM_SAVE_FLAG_PAGE
);
2931 qemu_put_buffer(f
, p
, TARGET_PAGE_SIZE
);
2937 addr
+= TARGET_PAGE_SIZE
;
2938 current_addr
= (saved_addr
+ addr
) % last_ram_offset
;
2944 static uint64_t bytes_transferred
= 0;
2946 static ram_addr_t
ram_save_remaining(void)
2949 ram_addr_t count
= 0;
2951 for (addr
= 0; addr
< last_ram_offset
; addr
+= TARGET_PAGE_SIZE
) {
2952 if (cpu_physical_memory_get_dirty(addr
, MIGRATION_DIRTY_FLAG
))
2959 uint64_t ram_bytes_remaining(void)
2961 return ram_save_remaining() * TARGET_PAGE_SIZE
;
2964 uint64_t ram_bytes_transferred(void)
2966 return bytes_transferred
;
2969 uint64_t ram_bytes_total(void)
2971 return last_ram_offset
;
2974 static int ram_save_live(QEMUFile
*f
, int stage
, void *opaque
)
2977 uint64_t bytes_transferred_last
;
2979 uint64_t expected_time
= 0;
2981 if (cpu_physical_sync_dirty_bitmap(0, TARGET_PHYS_ADDR_MAX
) != 0) {
2982 qemu_file_set_error(f
);
2987 /* Make sure all dirty bits are set */
2988 for (addr
= 0; addr
< last_ram_offset
; addr
+= TARGET_PAGE_SIZE
) {
2989 if (!cpu_physical_memory_get_dirty(addr
, MIGRATION_DIRTY_FLAG
))
2990 cpu_physical_memory_set_dirty(addr
);
2993 /* Enable dirty memory tracking */
2994 cpu_physical_memory_set_dirty_tracking(1);
2996 qemu_put_be64(f
, last_ram_offset
| RAM_SAVE_FLAG_MEM_SIZE
);
2999 bytes_transferred_last
= bytes_transferred
;
3000 bwidth
= get_clock();
3002 while (!qemu_file_rate_limit(f
)) {
3005 ret
= ram_save_block(f
);
3006 bytes_transferred
+= ret
* TARGET_PAGE_SIZE
;
3007 if (ret
== 0) /* no more blocks */
3011 bwidth
= get_clock() - bwidth
;
3012 bwidth
= (bytes_transferred
- bytes_transferred_last
) / bwidth
;
3014 /* if we haven't transferred anything this round, force expected_time to a
3015 * a very high value, but without crashing */
3019 /* try transferring iterative blocks of memory */
3023 /* flush all remaining blocks regardless of rate limiting */
3024 while (ram_save_block(f
) != 0) {
3025 bytes_transferred
+= TARGET_PAGE_SIZE
;
3027 cpu_physical_memory_set_dirty_tracking(0);
3030 qemu_put_be64(f
, RAM_SAVE_FLAG_EOS
);
3032 expected_time
= ram_save_remaining() * TARGET_PAGE_SIZE
/ bwidth
;
3034 return (stage
== 2) && (expected_time
<= migrate_max_downtime());
3037 static int ram_load(QEMUFile
*f
, void *opaque
, int version_id
)
3042 if (version_id
!= 3)
3046 addr
= qemu_get_be64(f
);
3048 flags
= addr
& ~TARGET_PAGE_MASK
;
3049 addr
&= TARGET_PAGE_MASK
;
3051 if (flags
& RAM_SAVE_FLAG_MEM_SIZE
) {
3052 if (addr
!= last_ram_offset
)
3056 if (flags
& RAM_SAVE_FLAG_COMPRESS
) {
3057 uint8_t ch
= qemu_get_byte(f
);
3058 memset(qemu_get_ram_ptr(addr
), ch
, TARGET_PAGE_SIZE
);
3061 (!kvm_enabled() || kvm_has_sync_mmu())) {
3062 madvise(qemu_get_ram_ptr(addr
), TARGET_PAGE_SIZE
, MADV_DONTNEED
);
3065 } else if (flags
& RAM_SAVE_FLAG_PAGE
)
3066 qemu_get_buffer(f
, qemu_get_ram_ptr(addr
), TARGET_PAGE_SIZE
);
3067 } while (!(flags
& RAM_SAVE_FLAG_EOS
));
3072 void qemu_service_io(void)
3074 qemu_notify_event();
3077 /***********************************************************/
3078 /* machine registration */
3080 static QEMUMachine
*first_machine
= NULL
;
3081 QEMUMachine
*current_machine
= NULL
;
3083 int qemu_register_machine(QEMUMachine
*m
)
3086 pm
= &first_machine
;
3094 static QEMUMachine
*find_machine(const char *name
)
3098 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
3099 if (!strcmp(m
->name
, name
))
3101 if (m
->alias
&& !strcmp(m
->alias
, name
))
3107 static QEMUMachine
*find_default_machine(void)
3111 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
3112 if (m
->is_default
) {
3119 /***********************************************************/
3120 /* main execution loop */
3122 static void gui_update(void *opaque
)
3124 uint64_t interval
= GUI_REFRESH_INTERVAL
;
3125 DisplayState
*ds
= opaque
;
3126 DisplayChangeListener
*dcl
= ds
->listeners
;
3130 while (dcl
!= NULL
) {
3131 if (dcl
->gui_timer_interval
&&
3132 dcl
->gui_timer_interval
< interval
)
3133 interval
= dcl
->gui_timer_interval
;
3136 qemu_mod_timer(ds
->gui_timer
, interval
+ qemu_get_clock(rt_clock
));
3139 static void nographic_update(void *opaque
)
3141 uint64_t interval
= GUI_REFRESH_INTERVAL
;
3143 qemu_mod_timer(nographic_timer
, interval
+ qemu_get_clock(rt_clock
));
3146 struct vm_change_state_entry
{
3147 VMChangeStateHandler
*cb
;
3149 QLIST_ENTRY (vm_change_state_entry
) entries
;
3152 static QLIST_HEAD(vm_change_state_head
, vm_change_state_entry
) vm_change_state_head
;
3154 VMChangeStateEntry
*qemu_add_vm_change_state_handler(VMChangeStateHandler
*cb
,
3157 VMChangeStateEntry
*e
;
3159 e
= qemu_mallocz(sizeof (*e
));
3163 QLIST_INSERT_HEAD(&vm_change_state_head
, e
, entries
);
3167 void qemu_del_vm_change_state_handler(VMChangeStateEntry
*e
)
3169 QLIST_REMOVE (e
, entries
);
3173 static void vm_state_notify(int running
, int reason
)
3175 VMChangeStateEntry
*e
;
3177 for (e
= vm_change_state_head
.lh_first
; e
; e
= e
->entries
.le_next
) {
3178 e
->cb(e
->opaque
, running
, reason
);
3182 static void resume_all_vcpus(void);
3183 static void pause_all_vcpus(void);
3190 vm_state_notify(1, 0);
3191 qemu_rearm_alarm_timer(alarm_timer
);
3196 /* reset/shutdown handler */
3198 typedef struct QEMUResetEntry
{
3199 QTAILQ_ENTRY(QEMUResetEntry
) entry
;
3200 QEMUResetHandler
*func
;
3204 static QTAILQ_HEAD(reset_handlers
, QEMUResetEntry
) reset_handlers
=
3205 QTAILQ_HEAD_INITIALIZER(reset_handlers
);
3206 static int reset_requested
;
3207 static int shutdown_requested
;
3208 static int powerdown_requested
;
3209 static int debug_requested
;
3210 static int vmstop_requested
;
3212 int qemu_shutdown_requested(void)
3214 int r
= shutdown_requested
;
3215 shutdown_requested
= 0;
3219 int qemu_reset_requested(void)
3221 int r
= reset_requested
;
3222 reset_requested
= 0;
3226 int qemu_powerdown_requested(void)
3228 int r
= powerdown_requested
;
3229 powerdown_requested
= 0;
3233 static int qemu_debug_requested(void)
3235 int r
= debug_requested
;
3236 debug_requested
= 0;
3240 static int qemu_vmstop_requested(void)
3242 int r
= vmstop_requested
;
3243 vmstop_requested
= 0;
3247 static void do_vm_stop(int reason
)
3250 cpu_disable_ticks();
3253 vm_state_notify(0, reason
);
3257 void qemu_register_reset(QEMUResetHandler
*func
, void *opaque
)
3259 QEMUResetEntry
*re
= qemu_mallocz(sizeof(QEMUResetEntry
));
3262 re
->opaque
= opaque
;
3263 QTAILQ_INSERT_TAIL(&reset_handlers
, re
, entry
);
3266 void qemu_unregister_reset(QEMUResetHandler
*func
, void *opaque
)
3270 QTAILQ_FOREACH(re
, &reset_handlers
, entry
) {
3271 if (re
->func
== func
&& re
->opaque
== opaque
) {
3272 QTAILQ_REMOVE(&reset_handlers
, re
, entry
);
3279 void qemu_system_reset(void)
3281 QEMUResetEntry
*re
, *nre
;
3283 /* reset all devices */
3284 QTAILQ_FOREACH_SAFE(re
, &reset_handlers
, entry
, nre
) {
3285 re
->func(re
->opaque
);
3289 void qemu_system_reset_request(void)
3292 shutdown_requested
= 1;
3294 reset_requested
= 1;
3296 qemu_notify_event();
3299 void qemu_system_shutdown_request(void)
3301 shutdown_requested
= 1;
3302 qemu_notify_event();
3305 void qemu_system_powerdown_request(void)
3307 powerdown_requested
= 1;
3308 qemu_notify_event();
3311 #ifdef CONFIG_IOTHREAD
3312 static void qemu_system_vmstop_request(int reason
)
3314 vmstop_requested
= reason
;
3315 qemu_notify_event();
3320 static int io_thread_fd
= -1;
3322 static void qemu_event_increment(void)
3324 static const char byte
= 0;
3326 if (io_thread_fd
== -1)
3329 write(io_thread_fd
, &byte
, sizeof(byte
));
3332 static void qemu_event_read(void *opaque
)
3334 int fd
= (unsigned long)opaque
;
3337 /* Drain the notify pipe */
3340 len
= read(fd
, buffer
, sizeof(buffer
));
3341 } while ((len
== -1 && errno
== EINTR
) || len
> 0);
3344 static int qemu_event_init(void)
3353 err
= fcntl_setfl(fds
[0], O_NONBLOCK
);
3357 err
= fcntl_setfl(fds
[1], O_NONBLOCK
);
3361 qemu_set_fd_handler2(fds
[0], NULL
, qemu_event_read
, NULL
,
3362 (void *)(unsigned long)fds
[0]);
3364 io_thread_fd
= fds
[1];
3373 HANDLE qemu_event_handle
;
3375 static void dummy_event_handler(void *opaque
)
3379 static int qemu_event_init(void)
3381 qemu_event_handle
= CreateEvent(NULL
, FALSE
, FALSE
, NULL
);
3382 if (!qemu_event_handle
) {
3383 fprintf(stderr
, "Failed CreateEvent: %ld\n", GetLastError());
3386 qemu_add_wait_object(qemu_event_handle
, dummy_event_handler
, NULL
);
3390 static void qemu_event_increment(void)
3392 if (!SetEvent(qemu_event_handle
)) {
3393 fprintf(stderr
, "qemu_event_increment: SetEvent failed: %ld\n",
3400 static int cpu_can_run(CPUState
*env
)
3409 #ifndef CONFIG_IOTHREAD
3410 static int qemu_init_main_loop(void)
3412 return qemu_event_init();
3415 void qemu_init_vcpu(void *_env
)
3417 CPUState
*env
= _env
;
3421 env
->nr_cores
= smp_cores
;
3422 env
->nr_threads
= smp_threads
;
3426 int qemu_cpu_self(void *env
)
3431 static void resume_all_vcpus(void)
3435 static void pause_all_vcpus(void)
3439 void qemu_cpu_kick(void *env
)
3444 void qemu_notify_event(void)
3446 CPUState
*env
= cpu_single_env
;
3453 void qemu_mutex_lock_iothread(void) {}
3454 void qemu_mutex_unlock_iothread(void) {}
3456 void vm_stop(int reason
)
3461 #else /* CONFIG_IOTHREAD */
3463 #include "qemu-thread.h"
3465 QemuMutex qemu_global_mutex
;
3466 static QemuMutex qemu_fair_mutex
;
3468 static QemuThread io_thread
;
3470 static QemuThread
*tcg_cpu_thread
;
3471 static QemuCond
*tcg_halt_cond
;
3473 static int qemu_system_ready
;
3475 static QemuCond qemu_cpu_cond
;
3477 static QemuCond qemu_system_cond
;
3478 static QemuCond qemu_pause_cond
;
3480 static void block_io_signals(void);
3481 static void unblock_io_signals(void);
3482 static int tcg_has_work(void);
3484 static int qemu_init_main_loop(void)
3488 ret
= qemu_event_init();
3492 qemu_cond_init(&qemu_pause_cond
);
3493 qemu_mutex_init(&qemu_fair_mutex
);
3494 qemu_mutex_init(&qemu_global_mutex
);
3495 qemu_mutex_lock(&qemu_global_mutex
);
3497 unblock_io_signals();
3498 qemu_thread_self(&io_thread
);
3503 static void qemu_wait_io_event(CPUState
*env
)
3505 while (!tcg_has_work())
3506 qemu_cond_timedwait(env
->halt_cond
, &qemu_global_mutex
, 1000);
3508 qemu_mutex_unlock(&qemu_global_mutex
);
3511 * Users of qemu_global_mutex can be starved, having no chance
3512 * to acquire it since this path will get to it first.
3513 * So use another lock to provide fairness.
3515 qemu_mutex_lock(&qemu_fair_mutex
);
3516 qemu_mutex_unlock(&qemu_fair_mutex
);
3518 qemu_mutex_lock(&qemu_global_mutex
);
3522 qemu_cond_signal(&qemu_pause_cond
);
3526 static int qemu_cpu_exec(CPUState
*env
);
3528 static void *kvm_cpu_thread_fn(void *arg
)
3530 CPUState
*env
= arg
;
3533 qemu_thread_self(env
->thread
);
3537 /* signal CPU creation */
3538 qemu_mutex_lock(&qemu_global_mutex
);
3540 qemu_cond_signal(&qemu_cpu_cond
);
3542 /* and wait for machine initialization */
3543 while (!qemu_system_ready
)
3544 qemu_cond_timedwait(&qemu_system_cond
, &qemu_global_mutex
, 100);
3547 if (cpu_can_run(env
))
3549 qemu_wait_io_event(env
);
3555 static void tcg_cpu_exec(void);
3557 static void *tcg_cpu_thread_fn(void *arg
)
3559 CPUState
*env
= arg
;
3562 qemu_thread_self(env
->thread
);
3564 /* signal CPU creation */
3565 qemu_mutex_lock(&qemu_global_mutex
);
3566 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
)
3568 qemu_cond_signal(&qemu_cpu_cond
);
3570 /* and wait for machine initialization */
3571 while (!qemu_system_ready
)
3572 qemu_cond_timedwait(&qemu_system_cond
, &qemu_global_mutex
, 100);
3576 qemu_wait_io_event(cur_cpu
);
3582 void qemu_cpu_kick(void *_env
)
3584 CPUState
*env
= _env
;
3585 qemu_cond_broadcast(env
->halt_cond
);
3587 qemu_thread_signal(env
->thread
, SIGUSR1
);
3590 int qemu_cpu_self(void *_env
)
3592 CPUState
*env
= _env
;
3595 qemu_thread_self(&this);
3597 return qemu_thread_equal(&this, env
->thread
);
3600 static void cpu_signal(int sig
)
3603 cpu_exit(cpu_single_env
);
3606 static void block_io_signals(void)
3609 struct sigaction sigact
;
3612 sigaddset(&set
, SIGUSR2
);
3613 sigaddset(&set
, SIGIO
);
3614 sigaddset(&set
, SIGALRM
);
3615 pthread_sigmask(SIG_BLOCK
, &set
, NULL
);
3618 sigaddset(&set
, SIGUSR1
);
3619 pthread_sigmask(SIG_UNBLOCK
, &set
, NULL
);
3621 memset(&sigact
, 0, sizeof(sigact
));
3622 sigact
.sa_handler
= cpu_signal
;
3623 sigaction(SIGUSR1
, &sigact
, NULL
);
3626 static void unblock_io_signals(void)
3631 sigaddset(&set
, SIGUSR2
);
3632 sigaddset(&set
, SIGIO
);
3633 sigaddset(&set
, SIGALRM
);
3634 pthread_sigmask(SIG_UNBLOCK
, &set
, NULL
);
3637 sigaddset(&set
, SIGUSR1
);
3638 pthread_sigmask(SIG_BLOCK
, &set
, NULL
);
3641 static void qemu_signal_lock(unsigned int msecs
)
3643 qemu_mutex_lock(&qemu_fair_mutex
);
3645 while (qemu_mutex_trylock(&qemu_global_mutex
)) {
3646 qemu_thread_signal(tcg_cpu_thread
, SIGUSR1
);
3647 if (!qemu_mutex_timedlock(&qemu_global_mutex
, msecs
))
3650 qemu_mutex_unlock(&qemu_fair_mutex
);
3653 void qemu_mutex_lock_iothread(void)
3655 if (kvm_enabled()) {
3656 qemu_mutex_lock(&qemu_fair_mutex
);
3657 qemu_mutex_lock(&qemu_global_mutex
);
3658 qemu_mutex_unlock(&qemu_fair_mutex
);
3660 qemu_signal_lock(100);
3663 void qemu_mutex_unlock_iothread(void)
3665 qemu_mutex_unlock(&qemu_global_mutex
);
3668 static int all_vcpus_paused(void)
3670 CPUState
*penv
= first_cpu
;
3675 penv
= (CPUState
*)penv
->next_cpu
;
3681 static void pause_all_vcpus(void)
3683 CPUState
*penv
= first_cpu
;
3687 qemu_thread_signal(penv
->thread
, SIGUSR1
);
3688 qemu_cpu_kick(penv
);
3689 penv
= (CPUState
*)penv
->next_cpu
;
3692 while (!all_vcpus_paused()) {
3693 qemu_cond_timedwait(&qemu_pause_cond
, &qemu_global_mutex
, 100);
3696 qemu_thread_signal(penv
->thread
, SIGUSR1
);
3697 penv
= (CPUState
*)penv
->next_cpu
;
3702 static void resume_all_vcpus(void)
3704 CPUState
*penv
= first_cpu
;
3709 qemu_thread_signal(penv
->thread
, SIGUSR1
);
3710 qemu_cpu_kick(penv
);
3711 penv
= (CPUState
*)penv
->next_cpu
;
3715 static void tcg_init_vcpu(void *_env
)
3717 CPUState
*env
= _env
;
3718 /* share a single thread for all cpus with TCG */
3719 if (!tcg_cpu_thread
) {
3720 env
->thread
= qemu_mallocz(sizeof(QemuThread
));
3721 env
->halt_cond
= qemu_mallocz(sizeof(QemuCond
));
3722 qemu_cond_init(env
->halt_cond
);
3723 qemu_thread_create(env
->thread
, tcg_cpu_thread_fn
, env
);
3724 while (env
->created
== 0)
3725 qemu_cond_timedwait(&qemu_cpu_cond
, &qemu_global_mutex
, 100);
3726 tcg_cpu_thread
= env
->thread
;
3727 tcg_halt_cond
= env
->halt_cond
;
3729 env
->thread
= tcg_cpu_thread
;
3730 env
->halt_cond
= tcg_halt_cond
;
3734 static void kvm_start_vcpu(CPUState
*env
)
3736 env
->thread
= qemu_mallocz(sizeof(QemuThread
));
3737 env
->halt_cond
= qemu_mallocz(sizeof(QemuCond
));
3738 qemu_cond_init(env
->halt_cond
);
3739 qemu_thread_create(env
->thread
, kvm_cpu_thread_fn
, env
);
3740 while (env
->created
== 0)
3741 qemu_cond_timedwait(&qemu_cpu_cond
, &qemu_global_mutex
, 100);
3744 void qemu_init_vcpu(void *_env
)
3746 CPUState
*env
= _env
;
3749 kvm_start_vcpu(env
);
3752 env
->nr_cores
= smp_cores
;
3753 env
->nr_threads
= smp_threads
;
3756 void qemu_notify_event(void)
3758 qemu_event_increment();
3761 void vm_stop(int reason
)
3764 qemu_thread_self(&me
);
3766 if (!qemu_thread_equal(&me
, &io_thread
)) {
3767 qemu_system_vmstop_request(reason
);
3769 * FIXME: should not return to device code in case
3770 * vm_stop() has been requested.
3772 if (cpu_single_env
) {
3773 cpu_exit(cpu_single_env
);
3774 cpu_single_env
->stop
= 1;
3785 static void host_main_loop_wait(int *timeout
)
3791 /* XXX: need to suppress polling by better using win32 events */
3793 for(pe
= first_polling_entry
; pe
!= NULL
; pe
= pe
->next
) {
3794 ret
|= pe
->func(pe
->opaque
);
3798 WaitObjects
*w
= &wait_objects
;
3800 ret
= WaitForMultipleObjects(w
->num
, w
->events
, FALSE
, *timeout
);
3801 if (WAIT_OBJECT_0
+ 0 <= ret
&& ret
<= WAIT_OBJECT_0
+ w
->num
- 1) {
3802 if (w
->func
[ret
- WAIT_OBJECT_0
])
3803 w
->func
[ret
- WAIT_OBJECT_0
](w
->opaque
[ret
- WAIT_OBJECT_0
]);
3805 /* Check for additional signaled events */
3806 for(i
= (ret
- WAIT_OBJECT_0
+ 1); i
< w
->num
; i
++) {
3808 /* Check if event is signaled */
3809 ret2
= WaitForSingleObject(w
->events
[i
], 0);
3810 if(ret2
== WAIT_OBJECT_0
) {
3812 w
->func
[i
](w
->opaque
[i
]);
3813 } else if (ret2
== WAIT_TIMEOUT
) {
3815 err
= GetLastError();
3816 fprintf(stderr
, "WaitForSingleObject error %d %d\n", i
, err
);
3819 } else if (ret
== WAIT_TIMEOUT
) {
3821 err
= GetLastError();
3822 fprintf(stderr
, "WaitForMultipleObjects error %d %d\n", ret
, err
);
3829 static void host_main_loop_wait(int *timeout
)
3834 void main_loop_wait(int timeout
)
3836 IOHandlerRecord
*ioh
;
3837 fd_set rfds
, wfds
, xfds
;
3841 qemu_bh_update_timeout(&timeout
);
3843 host_main_loop_wait(&timeout
);
3845 /* poll any events */
3846 /* XXX: separate device handlers from system ones */
3851 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
3855 (!ioh
->fd_read_poll
||
3856 ioh
->fd_read_poll(ioh
->opaque
) != 0)) {
3857 FD_SET(ioh
->fd
, &rfds
);
3861 if (ioh
->fd_write
) {
3862 FD_SET(ioh
->fd
, &wfds
);
3868 tv
.tv_sec
= timeout
/ 1000;
3869 tv
.tv_usec
= (timeout
% 1000) * 1000;
3871 slirp_select_fill(&nfds
, &rfds
, &wfds
, &xfds
);
3873 qemu_mutex_unlock_iothread();
3874 ret
= select(nfds
+ 1, &rfds
, &wfds
, &xfds
, &tv
);
3875 qemu_mutex_lock_iothread();
3877 IOHandlerRecord
**pioh
;
3879 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
3880 if (!ioh
->deleted
&& ioh
->fd_read
&& FD_ISSET(ioh
->fd
, &rfds
)) {
3881 ioh
->fd_read(ioh
->opaque
);
3883 if (!ioh
->deleted
&& ioh
->fd_write
&& FD_ISSET(ioh
->fd
, &wfds
)) {
3884 ioh
->fd_write(ioh
->opaque
);
3888 /* remove deleted IO handlers */
3889 pioh
= &first_io_handler
;
3900 slirp_select_poll(&rfds
, &wfds
, &xfds
, (ret
< 0));
3902 /* rearm timer, if not periodic */
3903 if (alarm_timer
->flags
& ALARM_FLAG_EXPIRED
) {
3904 alarm_timer
->flags
&= ~ALARM_FLAG_EXPIRED
;
3905 qemu_rearm_alarm_timer(alarm_timer
);
3908 /* vm time timers */
3910 if (!cur_cpu
|| likely(!(cur_cpu
->singlestep_enabled
& SSTEP_NOTIMER
)))
3911 qemu_run_timers(&active_timers
[QEMU_CLOCK_VIRTUAL
],
3912 qemu_get_clock(vm_clock
));
3915 /* real time timers */
3916 qemu_run_timers(&active_timers
[QEMU_CLOCK_REALTIME
],
3917 qemu_get_clock(rt_clock
));
3919 qemu_run_timers(&active_timers
[QEMU_CLOCK_HOST
],
3920 qemu_get_clock(host_clock
));
3922 /* Check bottom-halves last in case any of the earlier events triggered
3928 static int qemu_cpu_exec(CPUState
*env
)
3931 #ifdef CONFIG_PROFILER
3935 #ifdef CONFIG_PROFILER
3936 ti
= profile_getclock();
3941 qemu_icount
-= (env
->icount_decr
.u16
.low
+ env
->icount_extra
);
3942 env
->icount_decr
.u16
.low
= 0;
3943 env
->icount_extra
= 0;
3944 count
= qemu_next_deadline();
3945 count
= (count
+ (1 << icount_time_shift
) - 1)
3946 >> icount_time_shift
;
3947 qemu_icount
+= count
;
3948 decr
= (count
> 0xffff) ? 0xffff : count
;
3950 env
->icount_decr
.u16
.low
= decr
;
3951 env
->icount_extra
= count
;
3953 ret
= cpu_exec(env
);
3954 #ifdef CONFIG_PROFILER
3955 qemu_time
+= profile_getclock() - ti
;
3958 /* Fold pending instructions back into the
3959 instruction counter, and clear the interrupt flag. */
3960 qemu_icount
-= (env
->icount_decr
.u16
.low
3961 + env
->icount_extra
);
3962 env
->icount_decr
.u32
= 0;
3963 env
->icount_extra
= 0;
3968 static void tcg_cpu_exec(void)
3972 if (next_cpu
== NULL
)
3973 next_cpu
= first_cpu
;
3974 for (; next_cpu
!= NULL
; next_cpu
= next_cpu
->next_cpu
) {
3975 CPUState
*env
= cur_cpu
= next_cpu
;
3979 if (timer_alarm_pending
) {
3980 timer_alarm_pending
= 0;
3983 if (cpu_can_run(env
))
3984 ret
= qemu_cpu_exec(env
);
3985 if (ret
== EXCP_DEBUG
) {
3986 gdb_set_stop_cpu(env
);
3987 debug_requested
= 1;
3993 static int cpu_has_work(CPUState
*env
)
4001 if (qemu_cpu_has_work(env
))
4006 static int tcg_has_work(void)
4010 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
)
4011 if (cpu_has_work(env
))
4016 static int qemu_calculate_timeout(void)
4018 #ifndef CONFIG_IOTHREAD
4023 else if (tcg_has_work())
4025 else if (!use_icount
)
4028 /* XXX: use timeout computed from timers */
4031 /* Advance virtual time to the next event. */
4032 if (use_icount
== 1) {
4033 /* When not using an adaptive execution frequency
4034 we tend to get badly out of sync with real time,
4035 so just delay for a reasonable amount of time. */
4038 delta
= cpu_get_icount() - cpu_get_clock();
4041 /* If virtual time is ahead of real time then just
4043 timeout
= (delta
/ 1000000) + 1;
4045 /* Wait for either IO to occur or the next
4047 add
= qemu_next_deadline();
4048 /* We advance the timer before checking for IO.
4049 Limit the amount we advance so that early IO
4050 activity won't get the guest too far ahead. */
4054 add
= (add
+ (1 << icount_time_shift
) - 1)
4055 >> icount_time_shift
;
4057 timeout
= delta
/ 1000000;
4064 #else /* CONFIG_IOTHREAD */
4069 static int vm_can_run(void)
4071 if (powerdown_requested
)
4073 if (reset_requested
)
4075 if (shutdown_requested
)
4077 if (debug_requested
)
4082 qemu_irq qemu_system_powerdown
;
4084 static void main_loop(void)
4088 #ifdef CONFIG_IOTHREAD
4089 qemu_system_ready
= 1;
4090 qemu_cond_broadcast(&qemu_system_cond
);
4095 #ifdef CONFIG_PROFILER
4098 #ifndef CONFIG_IOTHREAD
4101 #ifdef CONFIG_PROFILER
4102 ti
= profile_getclock();
4104 main_loop_wait(qemu_calculate_timeout());
4105 #ifdef CONFIG_PROFILER
4106 dev_time
+= profile_getclock() - ti
;
4108 } while (vm_can_run());
4110 if (qemu_debug_requested())
4111 vm_stop(EXCP_DEBUG
);
4112 if (qemu_shutdown_requested()) {
4119 if (qemu_reset_requested()) {
4121 qemu_system_reset();
4124 if (qemu_powerdown_requested()) {
4125 qemu_irq_raise(qemu_system_powerdown
);
4127 if ((r
= qemu_vmstop_requested()))
4133 static void version(void)
4135 printf("QEMU PC emulator version " QEMU_VERSION QEMU_PKGVERSION
", Copyright (c) 2003-2008 Fabrice Bellard\n");
4138 static void help(int exitcode
)
4141 printf("usage: %s [options] [disk_image]\n"
4143 "'disk_image' is a raw hard image image for IDE hard disk 0\n"
4145 #define DEF(option, opt_arg, opt_enum, opt_help) \
4147 #define DEFHEADING(text) stringify(text) "\n"
4148 #include "qemu-options.h"
4153 "During emulation, the following keys are useful:\n"
4154 "ctrl-alt-f toggle full screen\n"
4155 "ctrl-alt-n switch to virtual console 'n'\n"
4156 "ctrl-alt toggle mouse and keyboard grab\n"
4158 "When using -nographic, press 'ctrl-a h' to get some help.\n"
4163 DEFAULT_NETWORK_SCRIPT
,
4164 DEFAULT_NETWORK_DOWN_SCRIPT
,
4166 DEFAULT_GDBSTUB_PORT
,
4171 #define HAS_ARG 0x0001
4174 #define DEF(option, opt_arg, opt_enum, opt_help) \
4176 #define DEFHEADING(text)
4177 #include "qemu-options.h"
4183 typedef struct QEMUOption
{
4189 static const QEMUOption qemu_options
[] = {
4190 { "h", 0, QEMU_OPTION_h
},
4191 #define DEF(option, opt_arg, opt_enum, opt_help) \
4192 { option, opt_arg, opt_enum },
4193 #define DEFHEADING(text)
4194 #include "qemu-options.h"
4202 struct soundhw soundhw
[] = {
4203 #ifdef HAS_AUDIO_CHOICE
4204 #if defined(TARGET_I386) || defined(TARGET_MIPS)
4210 { .init_isa
= pcspk_audio_init
}
4217 "Creative Sound Blaster 16",
4220 { .init_isa
= SB16_init
}
4224 #ifdef CONFIG_CS4231A
4230 { .init_isa
= cs4231a_init
}
4238 "Yamaha YMF262 (OPL3)",
4240 "Yamaha YM3812 (OPL2)",
4244 { .init_isa
= Adlib_init
}
4251 "Gravis Ultrasound GF1",
4254 { .init_isa
= GUS_init
}
4261 "Intel 82801AA AC97 Audio",
4264 { .init_pci
= ac97_init
}
4268 #ifdef CONFIG_ES1370
4271 "ENSONIQ AudioPCI ES1370",
4274 { .init_pci
= es1370_init
}
4278 #endif /* HAS_AUDIO_CHOICE */
4280 { NULL
, NULL
, 0, 0, { NULL
} }
4283 static void select_soundhw (const char *optarg
)
4287 if (*optarg
== '?') {
4290 printf ("Valid sound card names (comma separated):\n");
4291 for (c
= soundhw
; c
->name
; ++c
) {
4292 printf ("%-11s %s\n", c
->name
, c
->descr
);
4294 printf ("\n-soundhw all will enable all of the above\n");
4295 exit (*optarg
!= '?');
4303 if (!strcmp (optarg
, "all")) {
4304 for (c
= soundhw
; c
->name
; ++c
) {
4312 e
= strchr (p
, ',');
4313 l
= !e
? strlen (p
) : (size_t) (e
- p
);
4315 for (c
= soundhw
; c
->name
; ++c
) {
4316 if (!strncmp (c
->name
, p
, l
) && !c
->name
[l
]) {
4325 "Unknown sound card name (too big to show)\n");
4328 fprintf (stderr
, "Unknown sound card name `%.*s'\n",
4333 p
+= l
+ (e
!= NULL
);
4337 goto show_valid_cards
;
4342 static void select_vgahw (const char *p
)
4346 vga_interface_type
= VGA_NONE
;
4347 if (strstart(p
, "std", &opts
)) {
4348 vga_interface_type
= VGA_STD
;
4349 } else if (strstart(p
, "cirrus", &opts
)) {
4350 vga_interface_type
= VGA_CIRRUS
;
4351 } else if (strstart(p
, "vmware", &opts
)) {
4352 vga_interface_type
= VGA_VMWARE
;
4353 } else if (strstart(p
, "xenfb", &opts
)) {
4354 vga_interface_type
= VGA_XENFB
;
4355 } else if (!strstart(p
, "none", &opts
)) {
4357 fprintf(stderr
, "Unknown vga type: %s\n", p
);
4361 const char *nextopt
;
4363 if (strstart(opts
, ",retrace=", &nextopt
)) {
4365 if (strstart(opts
, "dumb", &nextopt
))
4366 vga_retrace_method
= VGA_RETRACE_DUMB
;
4367 else if (strstart(opts
, "precise", &nextopt
))
4368 vga_retrace_method
= VGA_RETRACE_PRECISE
;
4369 else goto invalid_vga
;
4370 } else goto invalid_vga
;
4376 static int balloon_parse(const char *arg
)
4380 if (strcmp(arg
, "none") == 0) {
4384 if (!strncmp(arg
, "virtio", 6)) {
4385 if (arg
[6] == ',') {
4386 /* have params -> parse them */
4387 opts
= qemu_opts_parse(&qemu_device_opts
, arg
+7, NULL
);
4391 /* create empty opts */
4392 opts
= qemu_opts_create(&qemu_device_opts
, NULL
, 0);
4394 qemu_opt_set(opts
, "driver", "virtio-balloon-pci");
4403 static BOOL WINAPI
qemu_ctrl_handler(DWORD type
)
4405 exit(STATUS_CONTROL_C_EXIT
);
4410 int qemu_uuid_parse(const char *str
, uint8_t *uuid
)
4414 if(strlen(str
) != 36)
4417 ret
= sscanf(str
, UUID_FMT
, &uuid
[0], &uuid
[1], &uuid
[2], &uuid
[3],
4418 &uuid
[4], &uuid
[5], &uuid
[6], &uuid
[7], &uuid
[8], &uuid
[9],
4419 &uuid
[10], &uuid
[11], &uuid
[12], &uuid
[13], &uuid
[14], &uuid
[15]);
4425 smbios_add_field(1, offsetof(struct smbios_type_1
, uuid
), 16, uuid
);
4433 static void termsig_handler(int signal
)
4435 qemu_system_shutdown_request();
4438 static void sigchld_handler(int signal
)
4440 waitpid(-1, NULL
, WNOHANG
);
4443 static void sighandler_setup(void)
4445 struct sigaction act
;
4447 memset(&act
, 0, sizeof(act
));
4448 act
.sa_handler
= termsig_handler
;
4449 sigaction(SIGINT
, &act
, NULL
);
4450 sigaction(SIGHUP
, &act
, NULL
);
4451 sigaction(SIGTERM
, &act
, NULL
);
4453 act
.sa_handler
= sigchld_handler
;
4454 act
.sa_flags
= SA_NOCLDSTOP
;
4455 sigaction(SIGCHLD
, &act
, NULL
);
4461 /* Look for support files in the same directory as the executable. */
4462 static char *find_datadir(const char *argv0
)
4468 len
= GetModuleFileName(NULL
, buf
, sizeof(buf
) - 1);
4475 while (p
!= buf
&& *p
!= '\\')
4478 if (access(buf
, R_OK
) == 0) {
4479 return qemu_strdup(buf
);
4485 /* Find a likely location for support files using the location of the binary.
4486 For installed binaries this will be "$bindir/../share/qemu". When
4487 running from the build tree this will be "$bindir/../pc-bios". */
4488 #define SHARE_SUFFIX "/share/qemu"
4489 #define BUILD_SUFFIX "/pc-bios"
4490 static char *find_datadir(const char *argv0
)
4498 #if defined(__linux__)
4501 len
= readlink("/proc/self/exe", buf
, sizeof(buf
) - 1);
4507 #elif defined(__FreeBSD__)
4510 len
= readlink("/proc/curproc/file", buf
, sizeof(buf
) - 1);
4517 /* If we don't have any way of figuring out the actual executable
4518 location then try argv[0]. */
4520 p
= realpath(argv0
, buf
);
4528 max_len
= strlen(dir
) +
4529 MAX(strlen(SHARE_SUFFIX
), strlen(BUILD_SUFFIX
)) + 1;
4530 res
= qemu_mallocz(max_len
);
4531 snprintf(res
, max_len
, "%s%s", dir
, SHARE_SUFFIX
);
4532 if (access(res
, R_OK
)) {
4533 snprintf(res
, max_len
, "%s%s", dir
, BUILD_SUFFIX
);
4534 if (access(res
, R_OK
)) {
4546 char *qemu_find_file(int type
, const char *name
)
4552 /* If name contains path separators then try it as a straight path. */
4553 if ((strchr(name
, '/') || strchr(name
, '\\'))
4554 && access(name
, R_OK
) == 0) {
4555 return qemu_strdup(name
);
4558 case QEMU_FILE_TYPE_BIOS
:
4561 case QEMU_FILE_TYPE_KEYMAP
:
4562 subdir
= "keymaps/";
4567 len
= strlen(data_dir
) + strlen(name
) + strlen(subdir
) + 2;
4568 buf
= qemu_mallocz(len
);
4569 snprintf(buf
, len
, "%s/%s%s", data_dir
, subdir
, name
);
4570 if (access(buf
, R_OK
)) {
4577 static int device_init_func(QemuOpts
*opts
, void *opaque
)
4581 dev
= qdev_device_add(opts
);
4587 struct device_config
{
4589 DEV_USB
, /* -usbdevice */
4592 const char *cmdline
;
4593 QTAILQ_ENTRY(device_config
) next
;
4595 QTAILQ_HEAD(, device_config
) device_configs
= QTAILQ_HEAD_INITIALIZER(device_configs
);
4597 static void add_device_config(int type
, const char *cmdline
)
4599 struct device_config
*conf
;
4601 conf
= qemu_mallocz(sizeof(*conf
));
4603 conf
->cmdline
= cmdline
;
4604 QTAILQ_INSERT_TAIL(&device_configs
, conf
, next
);
4607 static int foreach_device_config(int type
, int (*func
)(const char *cmdline
))
4609 struct device_config
*conf
;
4612 QTAILQ_FOREACH(conf
, &device_configs
, next
) {
4613 if (conf
->type
!= type
)
4615 rc
= func(conf
->cmdline
);
4622 int main(int argc
, char **argv
, char **envp
)
4624 const char *gdbstub_dev
= NULL
;
4625 uint32_t boot_devices_bitmap
= 0;
4627 int snapshot
, linux_boot
, net_boot
;
4628 const char *initrd_filename
;
4629 const char *kernel_filename
, *kernel_cmdline
;
4630 char boot_devices
[33] = "cad"; /* default to HD->floppy->CD-ROM */
4632 DisplayChangeListener
*dcl
;
4633 int cyls
, heads
, secs
, translation
;
4634 QemuOpts
*hda_opts
= NULL
, *opts
;
4636 const char *r
, *optarg
;
4637 CharDriverState
*monitor_hds
[MAX_MONITOR_DEVICES
];
4638 const char *monitor_devices
[MAX_MONITOR_DEVICES
];
4639 int monitor_device_index
;
4640 const char *serial_devices
[MAX_SERIAL_PORTS
];
4641 int serial_device_index
;
4642 const char *parallel_devices
[MAX_PARALLEL_PORTS
];
4643 int parallel_device_index
;
4644 const char *virtio_consoles
[MAX_VIRTIO_CONSOLES
];
4645 int virtio_console_index
;
4646 const char *loadvm
= NULL
;
4647 QEMUMachine
*machine
;
4648 const char *cpu_model
;
4653 const char *pid_file
= NULL
;
4654 const char *incoming
= NULL
;
4657 struct passwd
*pwd
= NULL
;
4658 const char *chroot_dir
= NULL
;
4659 const char *run_as
= NULL
;
4662 int show_vnc_port
= 0;
4666 qemu_errors_to_file(stderr
);
4667 qemu_cache_utils_init(envp
);
4669 QLIST_INIT (&vm_change_state_head
);
4672 struct sigaction act
;
4673 sigfillset(&act
.sa_mask
);
4675 act
.sa_handler
= SIG_IGN
;
4676 sigaction(SIGPIPE
, &act
, NULL
);
4679 SetConsoleCtrlHandler(qemu_ctrl_handler
, TRUE
);
4680 /* Note: cpu_interrupt() is currently not SMP safe, so we force
4681 QEMU to run on a single CPU */
4686 h
= GetCurrentProcess();
4687 if (GetProcessAffinityMask(h
, &mask
, &smask
)) {
4688 for(i
= 0; i
< 32; i
++) {
4689 if (mask
& (1 << i
))
4694 SetProcessAffinityMask(h
, mask
);
4700 module_call_init(MODULE_INIT_MACHINE
);
4701 machine
= find_default_machine();
4703 initrd_filename
= NULL
;
4706 kernel_filename
= NULL
;
4707 kernel_cmdline
= "";
4708 cyls
= heads
= secs
= 0;
4709 translation
= BIOS_ATA_TRANSLATION_AUTO
;
4711 serial_devices
[0] = "vc:80Cx24C";
4712 for(i
= 1; i
< MAX_SERIAL_PORTS
; i
++)
4713 serial_devices
[i
] = NULL
;
4714 serial_device_index
= 0;
4716 parallel_devices
[0] = "vc:80Cx24C";
4717 for(i
= 1; i
< MAX_PARALLEL_PORTS
; i
++)
4718 parallel_devices
[i
] = NULL
;
4719 parallel_device_index
= 0;
4721 for(i
= 0; i
< MAX_VIRTIO_CONSOLES
; i
++)
4722 virtio_consoles
[i
] = NULL
;
4723 virtio_console_index
= 0;
4725 monitor_devices
[0] = "vc:80Cx24C";
4726 for (i
= 1; i
< MAX_MONITOR_DEVICES
; i
++) {
4727 monitor_devices
[i
] = NULL
;
4729 monitor_device_index
= 0;
4731 for (i
= 0; i
< MAX_NODES
; i
++) {
4733 node_cpumask
[i
] = 0;
4748 hda_opts
= drive_add(argv
[optind
++], HD_ALIAS
, 0);
4750 const QEMUOption
*popt
;
4753 /* Treat --foo the same as -foo. */
4756 popt
= qemu_options
;
4759 fprintf(stderr
, "%s: invalid option -- '%s'\n",
4763 if (!strcmp(popt
->name
, r
+ 1))
4767 if (popt
->flags
& HAS_ARG
) {
4768 if (optind
>= argc
) {
4769 fprintf(stderr
, "%s: option '%s' requires an argument\n",
4773 optarg
= argv
[optind
++];
4778 switch(popt
->index
) {
4780 machine
= find_machine(optarg
);
4783 printf("Supported machines are:\n");
4784 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
4786 printf("%-10s %s (alias of %s)\n",
4787 m
->alias
, m
->desc
, m
->name
);
4788 printf("%-10s %s%s\n",
4790 m
->is_default
? " (default)" : "");
4792 exit(*optarg
!= '?');
4795 case QEMU_OPTION_cpu
:
4796 /* hw initialization will check this */
4797 if (*optarg
== '?') {
4798 /* XXX: implement xxx_cpu_list for targets that still miss it */
4799 #if defined(cpu_list)
4800 cpu_list(stdout
, &fprintf
);
4807 case QEMU_OPTION_initrd
:
4808 initrd_filename
= optarg
;
4810 case QEMU_OPTION_hda
:
4812 hda_opts
= drive_add(optarg
, HD_ALIAS
, 0);
4814 hda_opts
= drive_add(optarg
, HD_ALIAS
4815 ",cyls=%d,heads=%d,secs=%d%s",
4816 0, cyls
, heads
, secs
,
4817 translation
== BIOS_ATA_TRANSLATION_LBA
?
4819 translation
== BIOS_ATA_TRANSLATION_NONE
?
4820 ",trans=none" : "");
4822 case QEMU_OPTION_hdb
:
4823 case QEMU_OPTION_hdc
:
4824 case QEMU_OPTION_hdd
:
4825 drive_add(optarg
, HD_ALIAS
, popt
->index
- QEMU_OPTION_hda
);
4827 case QEMU_OPTION_drive
:
4828 drive_add(NULL
, "%s", optarg
);
4830 case QEMU_OPTION_set
:
4831 if (qemu_set_option(optarg
) != 0)
4834 case QEMU_OPTION_mtdblock
:
4835 drive_add(optarg
, MTD_ALIAS
);
4837 case QEMU_OPTION_sd
:
4838 drive_add(optarg
, SD_ALIAS
);
4840 case QEMU_OPTION_pflash
:
4841 drive_add(optarg
, PFLASH_ALIAS
);
4843 case QEMU_OPTION_snapshot
:
4846 case QEMU_OPTION_hdachs
:
4850 cyls
= strtol(p
, (char **)&p
, 0);
4851 if (cyls
< 1 || cyls
> 16383)
4856 heads
= strtol(p
, (char **)&p
, 0);
4857 if (heads
< 1 || heads
> 16)
4862 secs
= strtol(p
, (char **)&p
, 0);
4863 if (secs
< 1 || secs
> 63)
4867 if (!strcmp(p
, "none"))
4868 translation
= BIOS_ATA_TRANSLATION_NONE
;
4869 else if (!strcmp(p
, "lba"))
4870 translation
= BIOS_ATA_TRANSLATION_LBA
;
4871 else if (!strcmp(p
, "auto"))
4872 translation
= BIOS_ATA_TRANSLATION_AUTO
;
4875 } else if (*p
!= '\0') {
4877 fprintf(stderr
, "qemu: invalid physical CHS format\n");
4880 if (hda_opts
!= NULL
) {
4882 snprintf(num
, sizeof(num
), "%d", cyls
);
4883 qemu_opt_set(hda_opts
, "cyls", num
);
4884 snprintf(num
, sizeof(num
), "%d", heads
);
4885 qemu_opt_set(hda_opts
, "heads", num
);
4886 snprintf(num
, sizeof(num
), "%d", secs
);
4887 qemu_opt_set(hda_opts
, "secs", num
);
4888 if (translation
== BIOS_ATA_TRANSLATION_LBA
)
4889 qemu_opt_set(hda_opts
, "trans", "lba");
4890 if (translation
== BIOS_ATA_TRANSLATION_NONE
)
4891 qemu_opt_set(hda_opts
, "trans", "none");
4895 case QEMU_OPTION_numa
:
4896 if (nb_numa_nodes
>= MAX_NODES
) {
4897 fprintf(stderr
, "qemu: too many NUMA nodes\n");
4902 case QEMU_OPTION_nographic
:
4903 display_type
= DT_NOGRAPHIC
;
4905 #ifdef CONFIG_CURSES
4906 case QEMU_OPTION_curses
:
4907 display_type
= DT_CURSES
;
4910 case QEMU_OPTION_portrait
:
4913 case QEMU_OPTION_kernel
:
4914 kernel_filename
= optarg
;
4916 case QEMU_OPTION_append
:
4917 kernel_cmdline
= optarg
;
4919 case QEMU_OPTION_cdrom
:
4920 drive_add(optarg
, CDROM_ALIAS
);
4922 case QEMU_OPTION_boot
:
4924 static const char * const params
[] = {
4925 "order", "once", "menu", NULL
4927 char buf
[sizeof(boot_devices
)];
4928 char *standard_boot_devices
;
4931 if (!strchr(optarg
, '=')) {
4933 pstrcpy(buf
, sizeof(buf
), optarg
);
4934 } else if (check_params(buf
, sizeof(buf
), params
, optarg
) < 0) {
4936 "qemu: unknown boot parameter '%s' in '%s'\n",
4942 get_param_value(buf
, sizeof(buf
), "order", optarg
)) {
4943 boot_devices_bitmap
= parse_bootdevices(buf
);
4944 pstrcpy(boot_devices
, sizeof(boot_devices
), buf
);
4947 if (get_param_value(buf
, sizeof(buf
),
4949 boot_devices_bitmap
|= parse_bootdevices(buf
);
4950 standard_boot_devices
= qemu_strdup(boot_devices
);
4951 pstrcpy(boot_devices
, sizeof(boot_devices
), buf
);
4952 qemu_register_reset(restore_boot_devices
,
4953 standard_boot_devices
);
4955 if (get_param_value(buf
, sizeof(buf
),
4957 if (!strcmp(buf
, "on")) {
4959 } else if (!strcmp(buf
, "off")) {
4963 "qemu: invalid option value '%s'\n",
4971 case QEMU_OPTION_fda
:
4972 case QEMU_OPTION_fdb
:
4973 drive_add(optarg
, FD_ALIAS
, popt
->index
- QEMU_OPTION_fda
);
4976 case QEMU_OPTION_no_fd_bootchk
:
4980 case QEMU_OPTION_netdev
:
4981 if (net_client_parse(&qemu_netdev_opts
, optarg
) == -1) {
4985 case QEMU_OPTION_net
:
4986 if (net_client_parse(&qemu_net_opts
, optarg
) == -1) {
4991 case QEMU_OPTION_tftp
:
4992 legacy_tftp_prefix
= optarg
;
4994 case QEMU_OPTION_bootp
:
4995 legacy_bootp_filename
= optarg
;
4998 case QEMU_OPTION_smb
:
4999 if (net_slirp_smb(optarg
) < 0)
5003 case QEMU_OPTION_redir
:
5004 if (net_slirp_redir(optarg
) < 0)
5008 case QEMU_OPTION_bt
:
5009 add_device_config(DEV_BT
, optarg
);
5012 case QEMU_OPTION_audio_help
:
5016 case QEMU_OPTION_soundhw
:
5017 select_soundhw (optarg
);
5023 case QEMU_OPTION_version
:
5027 case QEMU_OPTION_m
: {
5031 value
= strtoul(optarg
, &ptr
, 10);
5033 case 0: case 'M': case 'm':
5040 fprintf(stderr
, "qemu: invalid ram size: %s\n", optarg
);
5044 /* On 32-bit hosts, QEMU is limited by virtual address space */
5045 if (value
> (2047 << 20) && HOST_LONG_BITS
== 32) {
5046 fprintf(stderr
, "qemu: at most 2047 MB RAM can be simulated\n");
5049 if (value
!= (uint64_t)(ram_addr_t
)value
) {
5050 fprintf(stderr
, "qemu: ram size too large\n");
5059 const CPULogItem
*item
;
5061 mask
= cpu_str_to_log_mask(optarg
);
5063 printf("Log items (comma separated):\n");
5064 for(item
= cpu_log_items
; item
->mask
!= 0; item
++) {
5065 printf("%-10s %s\n", item
->name
, item
->help
);
5073 gdbstub_dev
= "tcp::" DEFAULT_GDBSTUB_PORT
;
5075 case QEMU_OPTION_gdb
:
5076 gdbstub_dev
= optarg
;
5081 case QEMU_OPTION_bios
:
5084 case QEMU_OPTION_singlestep
:
5092 keyboard_layout
= optarg
;
5095 case QEMU_OPTION_localtime
:
5098 case QEMU_OPTION_vga
:
5099 select_vgahw (optarg
);
5101 #if defined(TARGET_PPC) || defined(TARGET_SPARC)
5107 w
= strtol(p
, (char **)&p
, 10);
5110 fprintf(stderr
, "qemu: invalid resolution or depth\n");
5116 h
= strtol(p
, (char **)&p
, 10);
5121 depth
= strtol(p
, (char **)&p
, 10);
5122 if (depth
!= 8 && depth
!= 15 && depth
!= 16 &&
5123 depth
!= 24 && depth
!= 32)
5125 } else if (*p
== '\0') {
5126 depth
= graphic_depth
;
5133 graphic_depth
= depth
;
5137 case QEMU_OPTION_echr
:
5140 term_escape_char
= strtol(optarg
, &r
, 0);
5142 printf("Bad argument to echr\n");
5145 case QEMU_OPTION_monitor
:
5146 if (monitor_device_index
>= MAX_MONITOR_DEVICES
) {
5147 fprintf(stderr
, "qemu: too many monitor devices\n");
5150 monitor_devices
[monitor_device_index
] = optarg
;
5151 monitor_device_index
++;
5153 case QEMU_OPTION_chardev
:
5154 opts
= qemu_opts_parse(&qemu_chardev_opts
, optarg
, "backend");
5156 fprintf(stderr
, "parse error: %s\n", optarg
);
5159 if (qemu_chr_open_opts(opts
, NULL
) == NULL
) {
5163 case QEMU_OPTION_serial
:
5164 if (serial_device_index
>= MAX_SERIAL_PORTS
) {
5165 fprintf(stderr
, "qemu: too many serial ports\n");
5168 serial_devices
[serial_device_index
] = optarg
;
5169 serial_device_index
++;
5171 case QEMU_OPTION_watchdog
:
5174 "qemu: only one watchdog option may be given\n");
5179 case QEMU_OPTION_watchdog_action
:
5180 if (select_watchdog_action(optarg
) == -1) {
5181 fprintf(stderr
, "Unknown -watchdog-action parameter\n");
5185 case QEMU_OPTION_virtiocon
:
5186 if (virtio_console_index
>= MAX_VIRTIO_CONSOLES
) {
5187 fprintf(stderr
, "qemu: too many virtio consoles\n");
5190 virtio_consoles
[virtio_console_index
] = optarg
;
5191 virtio_console_index
++;
5193 case QEMU_OPTION_parallel
:
5194 if (parallel_device_index
>= MAX_PARALLEL_PORTS
) {
5195 fprintf(stderr
, "qemu: too many parallel ports\n");
5198 parallel_devices
[parallel_device_index
] = optarg
;
5199 parallel_device_index
++;
5201 case QEMU_OPTION_loadvm
:
5204 case QEMU_OPTION_full_screen
:
5208 case QEMU_OPTION_no_frame
:
5211 case QEMU_OPTION_alt_grab
:
5214 case QEMU_OPTION_ctrl_grab
:
5217 case QEMU_OPTION_no_quit
:
5220 case QEMU_OPTION_sdl
:
5221 display_type
= DT_SDL
;
5224 case QEMU_OPTION_pidfile
:
5228 case QEMU_OPTION_win2k_hack
:
5229 win2k_install_hack
= 1;
5231 case QEMU_OPTION_rtc_td_hack
:
5234 case QEMU_OPTION_acpitable
:
5235 if(acpi_table_add(optarg
) < 0) {
5236 fprintf(stderr
, "Wrong acpi table provided\n");
5240 case QEMU_OPTION_smbios
:
5241 if(smbios_entry_add(optarg
) < 0) {
5242 fprintf(stderr
, "Wrong smbios provided\n");
5248 case QEMU_OPTION_enable_kvm
:
5252 case QEMU_OPTION_usb
:
5255 case QEMU_OPTION_usbdevice
:
5257 add_device_config(DEV_USB
, optarg
);
5259 case QEMU_OPTION_device
:
5260 if (!qemu_opts_parse(&qemu_device_opts
, optarg
, "driver")) {
5264 case QEMU_OPTION_smp
:
5267 fprintf(stderr
, "Invalid number of CPUs\n");
5270 if (max_cpus
< smp_cpus
) {
5271 fprintf(stderr
, "maxcpus must be equal to or greater than "
5275 if (max_cpus
> 255) {
5276 fprintf(stderr
, "Unsupported number of maxcpus\n");
5280 case QEMU_OPTION_vnc
:
5281 display_type
= DT_VNC
;
5282 vnc_display
= optarg
;
5285 case QEMU_OPTION_no_acpi
:
5288 case QEMU_OPTION_no_hpet
:
5291 case QEMU_OPTION_balloon
:
5292 if (balloon_parse(optarg
) < 0) {
5293 fprintf(stderr
, "Unknown -balloon argument %s\n", optarg
);
5298 case QEMU_OPTION_no_reboot
:
5301 case QEMU_OPTION_no_shutdown
:
5304 case QEMU_OPTION_show_cursor
:
5307 case QEMU_OPTION_uuid
:
5308 if(qemu_uuid_parse(optarg
, qemu_uuid
) < 0) {
5309 fprintf(stderr
, "Fail to parse UUID string."
5310 " Wrong format.\n");
5315 case QEMU_OPTION_daemonize
:
5319 case QEMU_OPTION_option_rom
:
5320 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
5321 fprintf(stderr
, "Too many option ROMs\n");
5324 option_rom
[nb_option_roms
] = optarg
;
5327 #if defined(TARGET_ARM) || defined(TARGET_M68K)
5328 case QEMU_OPTION_semihosting
:
5329 semihosting_enabled
= 1;
5332 case QEMU_OPTION_name
:
5333 qemu_name
= qemu_strdup(optarg
);
5335 char *p
= strchr(qemu_name
, ',');
5338 if (strncmp(p
, "process=", 8)) {
5339 fprintf(stderr
, "Unknown subargument %s to -name", p
);
5347 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
5348 case QEMU_OPTION_prom_env
:
5349 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
5350 fprintf(stderr
, "Too many prom variables\n");
5353 prom_envs
[nb_prom_envs
] = optarg
;
5358 case QEMU_OPTION_old_param
:
5362 case QEMU_OPTION_clock
:
5363 configure_alarms(optarg
);
5365 case QEMU_OPTION_startdate
:
5366 configure_rtc_date_offset(optarg
, 1);
5368 case QEMU_OPTION_rtc
:
5369 opts
= qemu_opts_parse(&qemu_rtc_opts
, optarg
, NULL
);
5371 fprintf(stderr
, "parse error: %s\n", optarg
);
5374 configure_rtc(opts
);
5376 case QEMU_OPTION_tb_size
:
5377 tb_size
= strtol(optarg
, NULL
, 0);
5381 case QEMU_OPTION_icount
:
5383 if (strcmp(optarg
, "auto") == 0) {
5384 icount_time_shift
= -1;
5386 icount_time_shift
= strtol(optarg
, NULL
, 0);
5389 case QEMU_OPTION_incoming
:
5393 case QEMU_OPTION_chroot
:
5394 chroot_dir
= optarg
;
5396 case QEMU_OPTION_runas
:
5401 case QEMU_OPTION_xen_domid
:
5402 xen_domid
= atoi(optarg
);
5404 case QEMU_OPTION_xen_create
:
5405 xen_mode
= XEN_CREATE
;
5407 case QEMU_OPTION_xen_attach
:
5408 xen_mode
= XEN_ATTACH
;
5415 /* If no data_dir is specified then try to find it relative to the
5418 data_dir
= find_datadir(argv
[0]);
5420 /* If all else fails use the install patch specified when building. */
5422 data_dir
= CONFIG_QEMU_SHAREDIR
;
5426 * Default to max_cpus = smp_cpus, in case the user doesn't
5427 * specify a max_cpus value.
5430 max_cpus
= smp_cpus
;
5432 machine
->max_cpus
= machine
->max_cpus
?: 1; /* Default to UP */
5433 if (smp_cpus
> machine
->max_cpus
) {
5434 fprintf(stderr
, "Number of SMP cpus requested (%d), exceeds max cpus "
5435 "supported by machine `%s' (%d)\n", smp_cpus
, machine
->name
,
5440 if (display_type
== DT_NOGRAPHIC
) {
5441 if (serial_device_index
== 0)
5442 serial_devices
[0] = "stdio";
5443 if (parallel_device_index
== 0)
5444 parallel_devices
[0] = "null";
5445 if (strncmp(monitor_devices
[0], "vc", 2) == 0) {
5446 monitor_devices
[0] = "stdio";
5454 if (pipe(fds
) == -1)
5465 len
= read(fds
[0], &status
, 1);
5466 if (len
== -1 && (errno
== EINTR
))
5471 else if (status
== 1) {
5472 fprintf(stderr
, "Could not acquire pidfile: %s\n", strerror(errno
));
5489 signal(SIGTSTP
, SIG_IGN
);
5490 signal(SIGTTOU
, SIG_IGN
);
5491 signal(SIGTTIN
, SIG_IGN
);
5494 if (pid_file
&& qemu_create_pidfile(pid_file
) != 0) {
5497 write(fds
[1], &status
, 1);
5499 fprintf(stderr
, "Could not acquire pid file: %s\n", strerror(errno
));
5504 if (kvm_enabled()) {
5507 ret
= kvm_init(smp_cpus
);
5509 fprintf(stderr
, "failed to initialize KVM\n");
5514 if (qemu_init_main_loop()) {
5515 fprintf(stderr
, "qemu_init_main_loop failed\n");
5518 linux_boot
= (kernel_filename
!= NULL
);
5520 if (!linux_boot
&& *kernel_cmdline
!= '\0') {
5521 fprintf(stderr
, "-append only allowed with -kernel option\n");
5525 if (!linux_boot
&& initrd_filename
!= NULL
) {
5526 fprintf(stderr
, "-initrd only allowed with -kernel option\n");
5531 /* Win32 doesn't support line-buffering and requires size >= 2 */
5532 setvbuf(stdout
, NULL
, _IOLBF
, 0);
5535 if (init_timer_alarm() < 0) {
5536 fprintf(stderr
, "could not initialize alarm timer\n");
5539 if (use_icount
&& icount_time_shift
< 0) {
5541 /* 125MIPS seems a reasonable initial guess at the guest speed.
5542 It will be corrected fairly quickly anyway. */
5543 icount_time_shift
= 3;
5544 init_icount_adjust();
5551 if (net_init_clients() < 0) {
5555 net_boot
= (boot_devices_bitmap
>> ('n' - 'a')) & 0xF;
5556 net_set_boot_mask(net_boot
);
5558 /* init the bluetooth world */
5559 if (foreach_device_config(DEV_BT
, bt_parse
))
5562 /* init the memory */
5564 ram_size
= DEFAULT_RAM_SIZE
* 1024 * 1024;
5566 /* init the dynamic translator */
5567 cpu_exec_init_all(tb_size
* 1024 * 1024);
5571 /* we always create the cdrom drive, even if no disk is there */
5572 drive_add(NULL
, CDROM_ALIAS
);
5574 /* we always create at least one floppy */
5575 drive_add(NULL
, FD_ALIAS
, 0);
5577 /* we always create one sd slot, even if no card is in it */
5578 drive_add(NULL
, SD_ALIAS
);
5580 /* open the virtual block devices */
5582 qemu_opts_foreach(&qemu_drive_opts
, drive_enable_snapshot
, NULL
, 0);
5583 if (qemu_opts_foreach(&qemu_drive_opts
, drive_init_func
, machine
, 1) != 0)
5586 vmstate_register(0, &vmstate_timers
,&timers_state
);
5587 register_savevm_live("ram", 0, 3, ram_save_live
, NULL
, ram_load
, NULL
);
5589 /* Maintain compatibility with multiple stdio monitors */
5590 if (!strcmp(monitor_devices
[0],"stdio")) {
5591 for (i
= 0; i
< MAX_SERIAL_PORTS
; i
++) {
5592 const char *devname
= serial_devices
[i
];
5593 if (devname
&& !strcmp(devname
,"mon:stdio")) {
5594 monitor_devices
[0] = NULL
;
5596 } else if (devname
&& !strcmp(devname
,"stdio")) {
5597 monitor_devices
[0] = NULL
;
5598 serial_devices
[i
] = "mon:stdio";
5604 if (nb_numa_nodes
> 0) {
5607 if (nb_numa_nodes
> smp_cpus
) {
5608 nb_numa_nodes
= smp_cpus
;
5611 /* If no memory size if given for any node, assume the default case
5612 * and distribute the available memory equally across all nodes
5614 for (i
= 0; i
< nb_numa_nodes
; i
++) {
5615 if (node_mem
[i
] != 0)
5618 if (i
== nb_numa_nodes
) {
5619 uint64_t usedmem
= 0;
5621 /* On Linux, the each node's border has to be 8MB aligned,
5622 * the final node gets the rest.
5624 for (i
= 0; i
< nb_numa_nodes
- 1; i
++) {
5625 node_mem
[i
] = (ram_size
/ nb_numa_nodes
) & ~((1 << 23UL) - 1);
5626 usedmem
+= node_mem
[i
];
5628 node_mem
[i
] = ram_size
- usedmem
;
5631 for (i
= 0; i
< nb_numa_nodes
; i
++) {
5632 if (node_cpumask
[i
] != 0)
5635 /* assigning the VCPUs round-robin is easier to implement, guest OSes
5636 * must cope with this anyway, because there are BIOSes out there in
5637 * real machines which also use this scheme.
5639 if (i
== nb_numa_nodes
) {
5640 for (i
= 0; i
< smp_cpus
; i
++) {
5641 node_cpumask
[i
% nb_numa_nodes
] |= 1 << i
;
5646 for (i
= 0; i
< MAX_MONITOR_DEVICES
; i
++) {
5647 const char *devname
= monitor_devices
[i
];
5648 if (devname
&& strcmp(devname
, "none")) {
5651 snprintf(label
, sizeof(label
), "monitor");
5653 snprintf(label
, sizeof(label
), "monitor%d", i
);
5655 monitor_hds
[i
] = qemu_chr_open(label
, devname
, NULL
);
5656 if (!monitor_hds
[i
]) {
5657 fprintf(stderr
, "qemu: could not open monitor device '%s'\n",
5664 for(i
= 0; i
< MAX_SERIAL_PORTS
; i
++) {
5665 const char *devname
= serial_devices
[i
];
5666 if (devname
&& strcmp(devname
, "none")) {
5668 snprintf(label
, sizeof(label
), "serial%d", i
);
5669 serial_hds
[i
] = qemu_chr_open(label
, devname
, NULL
);
5670 if (!serial_hds
[i
]) {
5671 fprintf(stderr
, "qemu: could not open serial device '%s': %s\n",
5672 devname
, strerror(errno
));
5678 for(i
= 0; i
< MAX_PARALLEL_PORTS
; i
++) {
5679 const char *devname
= parallel_devices
[i
];
5680 if (devname
&& strcmp(devname
, "none")) {
5682 snprintf(label
, sizeof(label
), "parallel%d", i
);
5683 parallel_hds
[i
] = qemu_chr_open(label
, devname
, NULL
);
5684 if (!parallel_hds
[i
]) {
5685 fprintf(stderr
, "qemu: could not open parallel device '%s': %s\n",
5686 devname
, strerror(errno
));
5692 for(i
= 0; i
< MAX_VIRTIO_CONSOLES
; i
++) {
5693 const char *devname
= virtio_consoles
[i
];
5694 if (devname
&& strcmp(devname
, "none")) {
5696 snprintf(label
, sizeof(label
), "virtcon%d", i
);
5697 virtcon_hds
[i
] = qemu_chr_open(label
, devname
, NULL
);
5698 if (!virtcon_hds
[i
]) {
5699 fprintf(stderr
, "qemu: could not open virtio console '%s': %s\n",
5700 devname
, strerror(errno
));
5706 module_call_init(MODULE_INIT_DEVICE
);
5709 i
= select_watchdog(watchdog
);
5711 exit (i
== 1 ? 1 : 0);
5714 if (machine
->compat_props
) {
5715 qdev_prop_register_compat(machine
->compat_props
);
5717 machine
->init(ram_size
, boot_devices
,
5718 kernel_filename
, kernel_cmdline
, initrd_filename
, cpu_model
);
5722 /* must be after terminal init, SDL library changes signal handlers */
5726 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
5727 for (i
= 0; i
< nb_numa_nodes
; i
++) {
5728 if (node_cpumask
[i
] & (1 << env
->cpu_index
)) {
5734 current_machine
= machine
;
5736 /* init USB devices */
5738 if (foreach_device_config(DEV_USB
, usb_parse
) < 0)
5742 /* init generic devices */
5743 if (qemu_opts_foreach(&qemu_device_opts
, device_init_func
, NULL
, 1) != 0)
5747 dumb_display_init();
5748 /* just use the first displaystate for the moment */
5751 if (display_type
== DT_DEFAULT
) {
5752 #if defined(CONFIG_SDL) || defined(CONFIG_COCOA)
5753 display_type
= DT_SDL
;
5755 display_type
= DT_VNC
;
5756 vnc_display
= "localhost:0,to=99";
5762 switch (display_type
) {
5765 #if defined(CONFIG_CURSES)
5767 curses_display_init(ds
, full_screen
);
5770 #if defined(CONFIG_SDL)
5772 sdl_display_init(ds
, full_screen
, no_frame
);
5774 #elif defined(CONFIG_COCOA)
5776 cocoa_display_init(ds
, full_screen
);
5780 vnc_display_init(ds
);
5781 if (vnc_display_open(ds
, vnc_display
) < 0)
5784 if (show_vnc_port
) {
5785 printf("VNC server running on `%s'\n", vnc_display_local_addr(ds
));
5793 dcl
= ds
->listeners
;
5794 while (dcl
!= NULL
) {
5795 if (dcl
->dpy_refresh
!= NULL
) {
5796 ds
->gui_timer
= qemu_new_timer(rt_clock
, gui_update
, ds
);
5797 qemu_mod_timer(ds
->gui_timer
, qemu_get_clock(rt_clock
));
5802 if (display_type
== DT_NOGRAPHIC
|| display_type
== DT_VNC
) {
5803 nographic_timer
= qemu_new_timer(rt_clock
, nographic_update
, NULL
);
5804 qemu_mod_timer(nographic_timer
, qemu_get_clock(rt_clock
));
5807 text_consoles_set_display(display_state
);
5808 qemu_chr_initial_reset();
5810 for (i
= 0; i
< MAX_MONITOR_DEVICES
; i
++) {
5811 if (monitor_devices
[i
] && monitor_hds
[i
]) {
5812 monitor_init(monitor_hds
[i
],
5813 MONITOR_USE_READLINE
|
5814 ((i
== 0) ? MONITOR_IS_DEFAULT
: 0));
5818 for(i
= 0; i
< MAX_SERIAL_PORTS
; i
++) {
5819 const char *devname
= serial_devices
[i
];
5820 if (devname
&& strcmp(devname
, "none")) {
5821 if (strstart(devname
, "vc", 0))
5822 qemu_chr_printf(serial_hds
[i
], "serial%d console\r\n", i
);
5826 for(i
= 0; i
< MAX_PARALLEL_PORTS
; i
++) {
5827 const char *devname
= parallel_devices
[i
];
5828 if (devname
&& strcmp(devname
, "none")) {
5829 if (strstart(devname
, "vc", 0))
5830 qemu_chr_printf(parallel_hds
[i
], "parallel%d console\r\n", i
);
5834 for(i
= 0; i
< MAX_VIRTIO_CONSOLES
; i
++) {
5835 const char *devname
= virtio_consoles
[i
];
5836 if (virtcon_hds
[i
] && devname
) {
5837 if (strstart(devname
, "vc", 0))
5838 qemu_chr_printf(virtcon_hds
[i
], "virtio console%d\r\n", i
);
5842 if (gdbstub_dev
&& gdbserver_start(gdbstub_dev
) < 0) {
5843 fprintf(stderr
, "qemu: could not open gdbserver on device '%s'\n",
5848 qdev_machine_creation_done();
5853 if (load_vmstate(cur_mon
, loadvm
) < 0) {
5859 qemu_start_incoming_migration(incoming
);
5860 } else if (autostart
) {
5870 len
= write(fds
[1], &status
, 1);
5871 if (len
== -1 && (errno
== EINTR
))
5878 TFR(fd
= open("/dev/null", O_RDWR
));
5884 pwd
= getpwnam(run_as
);
5886 fprintf(stderr
, "User \"%s\" doesn't exist\n", run_as
);
5892 if (chroot(chroot_dir
) < 0) {
5893 fprintf(stderr
, "chroot failed\n");
5900 if (setgid(pwd
->pw_gid
) < 0) {
5901 fprintf(stderr
, "Failed to setgid(%d)\n", pwd
->pw_gid
);
5904 if (setuid(pwd
->pw_uid
) < 0) {
5905 fprintf(stderr
, "Failed to setuid(%d)\n", pwd
->pw_uid
);
5908 if (setuid(0) != -1) {
5909 fprintf(stderr
, "Dropping privileges failed\n");