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(__FreeBSD_kernel__) || defined(__DragonFly__)
62 #include <linux/rtc.h>
63 #include <sys/prctl.h>
65 /* For the benefit of older linux systems which don't supply it,
66 we use a local copy of hpet.h. */
67 /* #include <linux/hpet.h> */
70 #include <linux/ppdev.h>
71 #include <linux/parport.h>
75 #include <sys/ethernet.h>
76 #include <sys/sockio.h>
77 #include <netinet/arp.h>
78 #include <netinet/in.h>
79 #include <netinet/in_systm.h>
80 #include <netinet/ip.h>
81 #include <netinet/ip_icmp.h> // must come after ip.h
82 #include <netinet/udp.h>
83 #include <netinet/tcp.h>
87 /* See MySQL bug #7156 (http://bugs.mysql.com/bug.php?id=7156) for
88 discussion about Solaris header problems */
89 extern int madvise(caddr_t
, size_t, int);
94 #if defined(__OpenBSD__)
98 #if defined(CONFIG_VDE)
99 #include <libvdeplug.h>
104 #include <mmsystem.h>
108 #if defined(__APPLE__) || defined(main)
110 int qemu_main(int argc
, char **argv
, char **envp
);
111 int main(int argc
, char **argv
)
113 return qemu_main(argc
, argv
, NULL
);
116 #define main qemu_main
118 #endif /* CONFIG_SDL */
122 #define main qemu_main
123 #endif /* CONFIG_COCOA */
126 #include "hw/boards.h"
128 #include "hw/pcmcia.h"
130 #include "hw/audiodev.h"
134 #include "hw/watchdog.h"
135 #include "hw/smbios.h"
138 #include "hw/loader.h"
141 #include "net/slirp.h"
146 #include "qemu-timer.h"
147 #include "qemu-char.h"
148 #include "cache-utils.h"
150 #include "block_int.h"
151 #include "block-migration.h"
153 #include "audio/audio.h"
154 #include "migration.h"
157 #include "qemu-option.h"
158 #include "qemu-config.h"
159 #include "qemu-objects.h"
163 #include "exec-all.h"
165 #include "qemu_socket.h"
167 #include "slirp/libslirp.h"
169 #include "qemu-queue.h"
172 //#define DEBUG_SLIRP
174 #define DEFAULT_RAM_SIZE 128
176 static const char *data_dir
;
177 const char *bios_name
= NULL
;
178 /* Note: drives_table[MAX_DRIVES] is a dummy block driver if none available
179 to store the VM snapshots */
180 struct drivelist drives
= QTAILQ_HEAD_INITIALIZER(drives
);
181 struct driveoptlist driveopts
= QTAILQ_HEAD_INITIALIZER(driveopts
);
182 enum vga_retrace_method vga_retrace_method
= VGA_RETRACE_DUMB
;
183 static DisplayState
*display_state
;
184 DisplayType display_type
= DT_DEFAULT
;
185 const char* keyboard_layout
= NULL
;
188 NICInfo nd_table
[MAX_NICS
];
191 static int rtc_utc
= 1;
192 static int rtc_date_offset
= -1; /* -1 means no change */
193 QEMUClock
*rtc_clock
;
194 int vga_interface_type
= VGA_NONE
;
196 int graphic_width
= 1024;
197 int graphic_height
= 768;
198 int graphic_depth
= 8;
200 int graphic_width
= 800;
201 int graphic_height
= 600;
202 int graphic_depth
= 15;
204 static int full_screen
= 0;
206 static int no_frame
= 0;
209 CharDriverState
*serial_hds
[MAX_SERIAL_PORTS
];
210 CharDriverState
*parallel_hds
[MAX_PARALLEL_PORTS
];
211 CharDriverState
*virtcon_hds
[MAX_VIRTIO_CONSOLES
];
213 int win2k_install_hack
= 0;
222 const char *vnc_display
;
223 int acpi_enabled
= 1;
229 int graphic_rotate
= 0;
230 uint8_t irq0override
= 1;
234 const char *watchdog
;
235 const char *option_rom
[MAX_OPTION_ROMS
];
237 int semihosting_enabled
= 0;
241 const char *qemu_name
;
244 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
245 unsigned int nb_prom_envs
= 0;
246 const char *prom_envs
[MAX_PROM_ENVS
];
251 uint64_t node_mem
[MAX_NODES
];
252 uint64_t node_cpumask
[MAX_NODES
];
254 static CPUState
*cur_cpu
;
255 static CPUState
*next_cpu
;
256 static int timer_alarm_pending
= 1;
257 /* Conversion factor from emulated instructions to virtual clock ticks. */
258 static int icount_time_shift
;
259 /* Arbitrarily pick 1MIPS as the minimum allowable speed. */
260 #define MAX_ICOUNT_SHIFT 10
261 /* Compensate for varying guest execution speed. */
262 static int64_t qemu_icount_bias
;
263 static QEMUTimer
*icount_rt_timer
;
264 static QEMUTimer
*icount_vm_timer
;
265 static QEMUTimer
*nographic_timer
;
267 uint8_t qemu_uuid
[16];
269 static QEMUBootSetHandler
*boot_set_handler
;
270 static void *boot_set_opaque
;
272 static int default_serial
= 1;
273 static int default_parallel
= 1;
274 static int default_virtcon
= 1;
275 static int default_monitor
= 1;
276 static int default_vga
= 1;
277 static int default_drive
= 1;
283 { .driver
= "isa-serial", .flag
= &default_serial
},
284 { .driver
= "isa-parallel", .flag
= &default_parallel
},
285 { .driver
= "virtio-console-pci", .flag
= &default_virtcon
},
286 { .driver
= "virtio-console-s390", .flag
= &default_virtcon
},
287 { .driver
= "VGA", .flag
= &default_vga
},
288 { .driver
= "Cirrus VGA", .flag
= &default_vga
},
289 { .driver
= "QEMUware SVGA", .flag
= &default_vga
},
292 static int default_driver_check(QemuOpts
*opts
, void *opaque
)
294 const char *driver
= qemu_opt_get(opts
, "driver");
299 for (i
= 0; i
< ARRAY_SIZE(default_list
); i
++) {
300 if (strcmp(default_list
[i
].driver
, driver
) != 0)
302 *(default_list
[i
].flag
) = 0;
307 /***********************************************************/
308 /* x86 ISA bus support */
310 target_phys_addr_t isa_mem_base
= 0;
313 /***********************************************************/
314 void hw_error(const char *fmt
, ...)
320 fprintf(stderr
, "qemu: hardware error: ");
321 vfprintf(stderr
, fmt
, ap
);
322 fprintf(stderr
, "\n");
323 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
324 fprintf(stderr
, "CPU #%d:\n", env
->cpu_index
);
326 cpu_dump_state(env
, stderr
, fprintf
, X86_DUMP_FPU
);
328 cpu_dump_state(env
, stderr
, fprintf
, 0);
335 static void set_proc_name(const char *s
)
337 #if defined(__linux__) && defined(PR_SET_NAME)
341 name
[sizeof(name
) - 1] = 0;
342 strncpy(name
, s
, sizeof(name
));
343 /* Could rewrite argv[0] too, but that's a bit more complicated.
344 This simple way is enough for `top'. */
345 prctl(PR_SET_NAME
, name
);
352 static QEMUBalloonEvent
*qemu_balloon_event
;
353 void *qemu_balloon_event_opaque
;
355 void qemu_add_balloon_handler(QEMUBalloonEvent
*func
, void *opaque
)
357 qemu_balloon_event
= func
;
358 qemu_balloon_event_opaque
= opaque
;
361 void qemu_balloon(ram_addr_t target
)
363 if (qemu_balloon_event
)
364 qemu_balloon_event(qemu_balloon_event_opaque
, target
);
367 ram_addr_t
qemu_balloon_status(void)
369 if (qemu_balloon_event
)
370 return qemu_balloon_event(qemu_balloon_event_opaque
, 0);
374 /***********************************************************/
377 static QEMUPutKBDEvent
*qemu_put_kbd_event
;
378 static void *qemu_put_kbd_event_opaque
;
379 static QEMUPutMouseEntry
*qemu_put_mouse_event_head
;
380 static QEMUPutMouseEntry
*qemu_put_mouse_event_current
;
382 void qemu_add_kbd_event_handler(QEMUPutKBDEvent
*func
, void *opaque
)
384 qemu_put_kbd_event_opaque
= opaque
;
385 qemu_put_kbd_event
= func
;
388 QEMUPutMouseEntry
*qemu_add_mouse_event_handler(QEMUPutMouseEvent
*func
,
389 void *opaque
, int absolute
,
392 QEMUPutMouseEntry
*s
, *cursor
;
394 s
= qemu_mallocz(sizeof(QEMUPutMouseEntry
));
396 s
->qemu_put_mouse_event
= func
;
397 s
->qemu_put_mouse_event_opaque
= opaque
;
398 s
->qemu_put_mouse_event_absolute
= absolute
;
399 s
->qemu_put_mouse_event_name
= qemu_strdup(name
);
402 if (!qemu_put_mouse_event_head
) {
403 qemu_put_mouse_event_head
= qemu_put_mouse_event_current
= s
;
407 cursor
= qemu_put_mouse_event_head
;
408 while (cursor
->next
!= NULL
)
409 cursor
= cursor
->next
;
412 qemu_put_mouse_event_current
= s
;
417 void qemu_remove_mouse_event_handler(QEMUPutMouseEntry
*entry
)
419 QEMUPutMouseEntry
*prev
= NULL
, *cursor
;
421 if (!qemu_put_mouse_event_head
|| entry
== NULL
)
424 cursor
= qemu_put_mouse_event_head
;
425 while (cursor
!= NULL
&& cursor
!= entry
) {
427 cursor
= cursor
->next
;
430 if (cursor
== NULL
) // does not exist or list empty
432 else if (prev
== NULL
) { // entry is head
433 qemu_put_mouse_event_head
= cursor
->next
;
434 if (qemu_put_mouse_event_current
== entry
)
435 qemu_put_mouse_event_current
= cursor
->next
;
436 qemu_free(entry
->qemu_put_mouse_event_name
);
441 prev
->next
= entry
->next
;
443 if (qemu_put_mouse_event_current
== entry
)
444 qemu_put_mouse_event_current
= prev
;
446 qemu_free(entry
->qemu_put_mouse_event_name
);
450 void kbd_put_keycode(int keycode
)
452 if (qemu_put_kbd_event
) {
453 qemu_put_kbd_event(qemu_put_kbd_event_opaque
, keycode
);
457 void kbd_mouse_event(int dx
, int dy
, int dz
, int buttons_state
)
459 QEMUPutMouseEvent
*mouse_event
;
460 void *mouse_event_opaque
;
463 if (!qemu_put_mouse_event_current
) {
468 qemu_put_mouse_event_current
->qemu_put_mouse_event
;
470 qemu_put_mouse_event_current
->qemu_put_mouse_event_opaque
;
473 if (graphic_rotate
) {
474 if (qemu_put_mouse_event_current
->qemu_put_mouse_event_absolute
)
477 width
= graphic_width
- 1;
478 mouse_event(mouse_event_opaque
,
479 width
- dy
, dx
, dz
, buttons_state
);
481 mouse_event(mouse_event_opaque
,
482 dx
, dy
, dz
, buttons_state
);
486 int kbd_mouse_is_absolute(void)
488 if (!qemu_put_mouse_event_current
)
491 return qemu_put_mouse_event_current
->qemu_put_mouse_event_absolute
;
494 static void info_mice_iter(QObject
*data
, void *opaque
)
497 Monitor
*mon
= opaque
;
499 mouse
= qobject_to_qdict(data
);
500 monitor_printf(mon
, "%c Mouse #%" PRId64
": %s\n",
501 (qdict_get_bool(mouse
, "current") ? '*' : ' '),
502 qdict_get_int(mouse
, "index"), qdict_get_str(mouse
, "name"));
505 void do_info_mice_print(Monitor
*mon
, const QObject
*data
)
509 mice_list
= qobject_to_qlist(data
);
510 if (qlist_empty(mice_list
)) {
511 monitor_printf(mon
, "No mouse devices connected\n");
515 qlist_iter(mice_list
, info_mice_iter
, mon
);
519 * do_info_mice(): Show VM mice information
521 * Each mouse is represented by a QDict, the returned QObject is a QList of
524 * The mouse QDict contains the following:
526 * - "name": mouse's name
527 * - "index": mouse's index
528 * - "current": true if this mouse is receiving events, false otherwise
532 * [ { "name": "QEMU Microsoft Mouse", "index": 0, "current": false },
533 * { "name": "QEMU PS/2 Mouse", "index": 1, "current": true } ]
535 void do_info_mice(Monitor
*mon
, QObject
**ret_data
)
537 QEMUPutMouseEntry
*cursor
;
541 mice_list
= qlist_new();
543 if (!qemu_put_mouse_event_head
) {
547 cursor
= qemu_put_mouse_event_head
;
548 while (cursor
!= NULL
) {
550 obj
= qobject_from_jsonf("{ 'name': %s, 'index': %d, 'current': %i }",
551 cursor
->qemu_put_mouse_event_name
,
552 index
, cursor
== qemu_put_mouse_event_current
);
553 qlist_append_obj(mice_list
, obj
);
555 cursor
= cursor
->next
;
559 *ret_data
= QOBJECT(mice_list
);
562 void do_mouse_set(Monitor
*mon
, const QDict
*qdict
)
564 QEMUPutMouseEntry
*cursor
;
566 int index
= qdict_get_int(qdict
, "index");
568 if (!qemu_put_mouse_event_head
) {
569 monitor_printf(mon
, "No mouse devices connected\n");
573 cursor
= qemu_put_mouse_event_head
;
574 while (cursor
!= NULL
&& index
!= i
) {
576 cursor
= cursor
->next
;
580 qemu_put_mouse_event_current
= cursor
;
582 monitor_printf(mon
, "Mouse at given index not found\n");
585 /* compute with 96 bit intermediate result: (a*b)/c */
586 uint64_t muldiv64(uint64_t a
, uint32_t b
, uint32_t c
)
591 #ifdef HOST_WORDS_BIGENDIAN
601 rl
= (uint64_t)u
.l
.low
* (uint64_t)b
;
602 rh
= (uint64_t)u
.l
.high
* (uint64_t)b
;
605 res
.l
.low
= (((rh
% c
) << 32) + (rl
& 0xffffffff)) / c
;
609 /***********************************************************/
610 /* real time host monotonic timer */
612 static int64_t get_clock_realtime(void)
616 gettimeofday(&tv
, NULL
);
617 return tv
.tv_sec
* 1000000000LL + (tv
.tv_usec
* 1000);
622 static int64_t clock_freq
;
624 static void init_get_clock(void)
628 ret
= QueryPerformanceFrequency(&freq
);
630 fprintf(stderr
, "Could not calibrate ticks\n");
633 clock_freq
= freq
.QuadPart
;
636 static int64_t get_clock(void)
639 QueryPerformanceCounter(&ti
);
640 return muldiv64(ti
.QuadPart
, get_ticks_per_sec(), clock_freq
);
645 static int use_rt_clock
;
647 static void init_get_clock(void)
650 #if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD_version >= 500000) \
651 || defined(__DragonFly__) || defined(__FreeBSD_kernel__)
654 if (clock_gettime(CLOCK_MONOTONIC
, &ts
) == 0) {
661 static int64_t get_clock(void)
663 #if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD_version >= 500000) \
664 || defined(__DragonFly__) || defined(__FreeBSD_kernel__)
667 clock_gettime(CLOCK_MONOTONIC
, &ts
);
668 return ts
.tv_sec
* 1000000000LL + ts
.tv_nsec
;
672 /* XXX: using gettimeofday leads to problems if the date
673 changes, so it should be avoided. */
674 return get_clock_realtime();
679 /* Return the virtual CPU time, based on the instruction counter. */
680 static int64_t cpu_get_icount(void)
683 CPUState
*env
= cpu_single_env
;;
684 icount
= qemu_icount
;
687 fprintf(stderr
, "Bad clock read\n");
688 icount
-= (env
->icount_decr
.u16
.low
+ env
->icount_extra
);
690 return qemu_icount_bias
+ (icount
<< icount_time_shift
);
693 /***********************************************************/
694 /* guest cycle counter */
696 typedef struct TimersState
{
697 int64_t cpu_ticks_prev
;
698 int64_t cpu_ticks_offset
;
699 int64_t cpu_clock_offset
;
700 int32_t cpu_ticks_enabled
;
704 TimersState timers_state
;
706 /* return the host CPU cycle counter and handle stop/restart */
707 int64_t cpu_get_ticks(void)
710 return cpu_get_icount();
712 if (!timers_state
.cpu_ticks_enabled
) {
713 return timers_state
.cpu_ticks_offset
;
716 ticks
= cpu_get_real_ticks();
717 if (timers_state
.cpu_ticks_prev
> ticks
) {
718 /* Note: non increasing ticks may happen if the host uses
720 timers_state
.cpu_ticks_offset
+= timers_state
.cpu_ticks_prev
- ticks
;
722 timers_state
.cpu_ticks_prev
= ticks
;
723 return ticks
+ timers_state
.cpu_ticks_offset
;
727 /* return the host CPU monotonic timer and handle stop/restart */
728 static int64_t cpu_get_clock(void)
731 if (!timers_state
.cpu_ticks_enabled
) {
732 return timers_state
.cpu_clock_offset
;
735 return ti
+ timers_state
.cpu_clock_offset
;
739 /* enable cpu_get_ticks() */
740 void cpu_enable_ticks(void)
742 if (!timers_state
.cpu_ticks_enabled
) {
743 timers_state
.cpu_ticks_offset
-= cpu_get_real_ticks();
744 timers_state
.cpu_clock_offset
-= get_clock();
745 timers_state
.cpu_ticks_enabled
= 1;
749 /* disable cpu_get_ticks() : the clock is stopped. You must not call
750 cpu_get_ticks() after that. */
751 void cpu_disable_ticks(void)
753 if (timers_state
.cpu_ticks_enabled
) {
754 timers_state
.cpu_ticks_offset
= cpu_get_ticks();
755 timers_state
.cpu_clock_offset
= cpu_get_clock();
756 timers_state
.cpu_ticks_enabled
= 0;
760 /***********************************************************/
763 #define QEMU_CLOCK_REALTIME 0
764 #define QEMU_CLOCK_VIRTUAL 1
765 #define QEMU_CLOCK_HOST 2
769 /* XXX: add frequency */
777 struct QEMUTimer
*next
;
780 struct qemu_alarm_timer
{
784 int (*start
)(struct qemu_alarm_timer
*t
);
785 void (*stop
)(struct qemu_alarm_timer
*t
);
786 void (*rearm
)(struct qemu_alarm_timer
*t
);
790 #define ALARM_FLAG_DYNTICKS 0x1
791 #define ALARM_FLAG_EXPIRED 0x2
793 static inline int alarm_has_dynticks(struct qemu_alarm_timer
*t
)
795 return t
&& (t
->flags
& ALARM_FLAG_DYNTICKS
);
798 static void qemu_rearm_alarm_timer(struct qemu_alarm_timer
*t
)
800 if (!alarm_has_dynticks(t
))
806 /* TODO: MIN_TIMER_REARM_US should be optimized */
807 #define MIN_TIMER_REARM_US 250
809 static struct qemu_alarm_timer
*alarm_timer
;
813 struct qemu_alarm_win32
{
816 } alarm_win32_data
= {0, -1};
818 static int win32_start_timer(struct qemu_alarm_timer
*t
);
819 static void win32_stop_timer(struct qemu_alarm_timer
*t
);
820 static void win32_rearm_timer(struct qemu_alarm_timer
*t
);
824 static int unix_start_timer(struct qemu_alarm_timer
*t
);
825 static void unix_stop_timer(struct qemu_alarm_timer
*t
);
829 static int dynticks_start_timer(struct qemu_alarm_timer
*t
);
830 static void dynticks_stop_timer(struct qemu_alarm_timer
*t
);
831 static void dynticks_rearm_timer(struct qemu_alarm_timer
*t
);
833 static int hpet_start_timer(struct qemu_alarm_timer
*t
);
834 static void hpet_stop_timer(struct qemu_alarm_timer
*t
);
836 static int rtc_start_timer(struct qemu_alarm_timer
*t
);
837 static void rtc_stop_timer(struct qemu_alarm_timer
*t
);
839 #endif /* __linux__ */
843 /* Correlation between real and virtual time is always going to be
844 fairly approximate, so ignore small variation.
845 When the guest is idle real and virtual time will be aligned in
847 #define ICOUNT_WOBBLE (get_ticks_per_sec() / 10)
849 static void icount_adjust(void)
854 static int64_t last_delta
;
855 /* If the VM is not running, then do nothing. */
859 cur_time
= cpu_get_clock();
860 cur_icount
= qemu_get_clock(vm_clock
);
861 delta
= cur_icount
- cur_time
;
862 /* FIXME: This is a very crude algorithm, somewhat prone to oscillation. */
864 && last_delta
+ ICOUNT_WOBBLE
< delta
* 2
865 && icount_time_shift
> 0) {
866 /* The guest is getting too far ahead. Slow time down. */
870 && last_delta
- ICOUNT_WOBBLE
> delta
* 2
871 && icount_time_shift
< MAX_ICOUNT_SHIFT
) {
872 /* The guest is getting too far behind. Speed time up. */
876 qemu_icount_bias
= cur_icount
- (qemu_icount
<< icount_time_shift
);
879 static void icount_adjust_rt(void * opaque
)
881 qemu_mod_timer(icount_rt_timer
,
882 qemu_get_clock(rt_clock
) + 1000);
886 static void icount_adjust_vm(void * opaque
)
888 qemu_mod_timer(icount_vm_timer
,
889 qemu_get_clock(vm_clock
) + get_ticks_per_sec() / 10);
893 static void init_icount_adjust(void)
895 /* Have both realtime and virtual time triggers for speed adjustment.
896 The realtime trigger catches emulated time passing too slowly,
897 the virtual time trigger catches emulated time passing too fast.
898 Realtime triggers occur even when idle, so use them less frequently
900 icount_rt_timer
= qemu_new_timer(rt_clock
, icount_adjust_rt
, NULL
);
901 qemu_mod_timer(icount_rt_timer
,
902 qemu_get_clock(rt_clock
) + 1000);
903 icount_vm_timer
= qemu_new_timer(vm_clock
, icount_adjust_vm
, NULL
);
904 qemu_mod_timer(icount_vm_timer
,
905 qemu_get_clock(vm_clock
) + get_ticks_per_sec() / 10);
908 static struct qemu_alarm_timer alarm_timers
[] = {
911 {"dynticks", ALARM_FLAG_DYNTICKS
, dynticks_start_timer
,
912 dynticks_stop_timer
, dynticks_rearm_timer
, NULL
},
913 /* HPET - if available - is preferred */
914 {"hpet", 0, hpet_start_timer
, hpet_stop_timer
, NULL
, NULL
},
915 /* ...otherwise try RTC */
916 {"rtc", 0, rtc_start_timer
, rtc_stop_timer
, NULL
, NULL
},
918 {"unix", 0, unix_start_timer
, unix_stop_timer
, NULL
, NULL
},
920 {"dynticks", ALARM_FLAG_DYNTICKS
, win32_start_timer
,
921 win32_stop_timer
, win32_rearm_timer
, &alarm_win32_data
},
922 {"win32", 0, win32_start_timer
,
923 win32_stop_timer
, NULL
, &alarm_win32_data
},
928 static void show_available_alarms(void)
932 printf("Available alarm timers, in order of precedence:\n");
933 for (i
= 0; alarm_timers
[i
].name
; i
++)
934 printf("%s\n", alarm_timers
[i
].name
);
937 static void configure_alarms(char const *opt
)
941 int count
= ARRAY_SIZE(alarm_timers
) - 1;
944 struct qemu_alarm_timer tmp
;
946 if (!strcmp(opt
, "?")) {
947 show_available_alarms();
951 arg
= qemu_strdup(opt
);
953 /* Reorder the array */
954 name
= strtok(arg
, ",");
956 for (i
= 0; i
< count
&& alarm_timers
[i
].name
; i
++) {
957 if (!strcmp(alarm_timers
[i
].name
, name
))
962 fprintf(stderr
, "Unknown clock %s\n", name
);
971 tmp
= alarm_timers
[i
];
972 alarm_timers
[i
] = alarm_timers
[cur
];
973 alarm_timers
[cur
] = tmp
;
977 name
= strtok(NULL
, ",");
983 /* Disable remaining timers */
984 for (i
= cur
; i
< count
; i
++)
985 alarm_timers
[i
].name
= NULL
;
987 show_available_alarms();
992 #define QEMU_NUM_CLOCKS 3
996 QEMUClock
*host_clock
;
998 static QEMUTimer
*active_timers
[QEMU_NUM_CLOCKS
];
1000 static QEMUClock
*qemu_new_clock(int type
)
1003 clock
= qemu_mallocz(sizeof(QEMUClock
));
1008 QEMUTimer
*qemu_new_timer(QEMUClock
*clock
, QEMUTimerCB
*cb
, void *opaque
)
1012 ts
= qemu_mallocz(sizeof(QEMUTimer
));
1015 ts
->opaque
= opaque
;
1019 void qemu_free_timer(QEMUTimer
*ts
)
1024 /* stop a timer, but do not dealloc it */
1025 void qemu_del_timer(QEMUTimer
*ts
)
1029 /* NOTE: this code must be signal safe because
1030 qemu_timer_expired() can be called from a signal. */
1031 pt
= &active_timers
[ts
->clock
->type
];
1044 /* modify the current timer so that it will be fired when current_time
1045 >= expire_time. The corresponding callback will be called. */
1046 void qemu_mod_timer(QEMUTimer
*ts
, int64_t expire_time
)
1052 /* add the timer in the sorted list */
1053 /* NOTE: this code must be signal safe because
1054 qemu_timer_expired() can be called from a signal. */
1055 pt
= &active_timers
[ts
->clock
->type
];
1060 if (t
->expire_time
> expire_time
)
1064 ts
->expire_time
= expire_time
;
1068 /* Rearm if necessary */
1069 if (pt
== &active_timers
[ts
->clock
->type
]) {
1070 if ((alarm_timer
->flags
& ALARM_FLAG_EXPIRED
) == 0) {
1071 qemu_rearm_alarm_timer(alarm_timer
);
1073 /* Interrupt execution to force deadline recalculation. */
1075 qemu_notify_event();
1079 int qemu_timer_pending(QEMUTimer
*ts
)
1082 for(t
= active_timers
[ts
->clock
->type
]; t
!= NULL
; t
= t
->next
) {
1089 int qemu_timer_expired(QEMUTimer
*timer_head
, int64_t current_time
)
1093 return (timer_head
->expire_time
<= current_time
);
1096 static void qemu_run_timers(QEMUTimer
**ptimer_head
, int64_t current_time
)
1102 if (!ts
|| ts
->expire_time
> current_time
)
1104 /* remove timer from the list before calling the callback */
1105 *ptimer_head
= ts
->next
;
1108 /* run the callback (the timer list can be modified) */
1113 int64_t qemu_get_clock(QEMUClock
*clock
)
1115 switch(clock
->type
) {
1116 case QEMU_CLOCK_REALTIME
:
1117 return get_clock() / 1000000;
1119 case QEMU_CLOCK_VIRTUAL
:
1121 return cpu_get_icount();
1123 return cpu_get_clock();
1125 case QEMU_CLOCK_HOST
:
1126 return get_clock_realtime();
1130 static void init_clocks(void)
1133 rt_clock
= qemu_new_clock(QEMU_CLOCK_REALTIME
);
1134 vm_clock
= qemu_new_clock(QEMU_CLOCK_VIRTUAL
);
1135 host_clock
= qemu_new_clock(QEMU_CLOCK_HOST
);
1137 rtc_clock
= host_clock
;
1141 void qemu_put_timer(QEMUFile
*f
, QEMUTimer
*ts
)
1143 uint64_t expire_time
;
1145 if (qemu_timer_pending(ts
)) {
1146 expire_time
= ts
->expire_time
;
1150 qemu_put_be64(f
, expire_time
);
1153 void qemu_get_timer(QEMUFile
*f
, QEMUTimer
*ts
)
1155 uint64_t expire_time
;
1157 expire_time
= qemu_get_be64(f
);
1158 if (expire_time
!= -1) {
1159 qemu_mod_timer(ts
, expire_time
);
1165 static const VMStateDescription vmstate_timers
= {
1168 .minimum_version_id
= 1,
1169 .minimum_version_id_old
= 1,
1170 .fields
= (VMStateField
[]) {
1171 VMSTATE_INT64(cpu_ticks_offset
, TimersState
),
1172 VMSTATE_INT64(dummy
, TimersState
),
1173 VMSTATE_INT64_V(cpu_clock_offset
, TimersState
, 2),
1174 VMSTATE_END_OF_LIST()
1178 static void qemu_event_increment(void);
1181 static void CALLBACK
host_alarm_handler(UINT uTimerID
, UINT uMsg
,
1182 DWORD_PTR dwUser
, DWORD_PTR dw1
,
1185 static void host_alarm_handler(int host_signum
)
1189 #define DISP_FREQ 1000
1191 static int64_t delta_min
= INT64_MAX
;
1192 static int64_t delta_max
, delta_cum
, last_clock
, delta
, ti
;
1194 ti
= qemu_get_clock(vm_clock
);
1195 if (last_clock
!= 0) {
1196 delta
= ti
- last_clock
;
1197 if (delta
< delta_min
)
1199 if (delta
> delta_max
)
1202 if (++count
== DISP_FREQ
) {
1203 printf("timer: min=%" PRId64
" us max=%" PRId64
" us avg=%" PRId64
" us avg_freq=%0.3f Hz\n",
1204 muldiv64(delta_min
, 1000000, get_ticks_per_sec()),
1205 muldiv64(delta_max
, 1000000, get_ticks_per_sec()),
1206 muldiv64(delta_cum
, 1000000 / DISP_FREQ
, get_ticks_per_sec()),
1207 (double)get_ticks_per_sec() / ((double)delta_cum
/ DISP_FREQ
));
1209 delta_min
= INT64_MAX
;
1217 if (alarm_has_dynticks(alarm_timer
) ||
1219 qemu_timer_expired(active_timers
[QEMU_CLOCK_VIRTUAL
],
1220 qemu_get_clock(vm_clock
))) ||
1221 qemu_timer_expired(active_timers
[QEMU_CLOCK_REALTIME
],
1222 qemu_get_clock(rt_clock
)) ||
1223 qemu_timer_expired(active_timers
[QEMU_CLOCK_HOST
],
1224 qemu_get_clock(host_clock
))) {
1225 qemu_event_increment();
1226 if (alarm_timer
) alarm_timer
->flags
|= ALARM_FLAG_EXPIRED
;
1228 #ifndef CONFIG_IOTHREAD
1230 /* stop the currently executing cpu because a timer occured */
1234 timer_alarm_pending
= 1;
1235 qemu_notify_event();
1239 static int64_t qemu_next_deadline(void)
1241 /* To avoid problems with overflow limit this to 2^32. */
1242 int64_t delta
= INT32_MAX
;
1244 if (active_timers
[QEMU_CLOCK_VIRTUAL
]) {
1245 delta
= active_timers
[QEMU_CLOCK_VIRTUAL
]->expire_time
-
1246 qemu_get_clock(vm_clock
);
1248 if (active_timers
[QEMU_CLOCK_HOST
]) {
1249 int64_t hdelta
= active_timers
[QEMU_CLOCK_HOST
]->expire_time
-
1250 qemu_get_clock(host_clock
);
1261 #if defined(__linux__)
1262 static uint64_t qemu_next_deadline_dyntick(void)
1270 delta
= (qemu_next_deadline() + 999) / 1000;
1272 if (active_timers
[QEMU_CLOCK_REALTIME
]) {
1273 rtdelta
= (active_timers
[QEMU_CLOCK_REALTIME
]->expire_time
-
1274 qemu_get_clock(rt_clock
))*1000;
1275 if (rtdelta
< delta
)
1279 if (delta
< MIN_TIMER_REARM_US
)
1280 delta
= MIN_TIMER_REARM_US
;
1288 /* Sets a specific flag */
1289 static int fcntl_setfl(int fd
, int flag
)
1293 flags
= fcntl(fd
, F_GETFL
);
1297 if (fcntl(fd
, F_SETFL
, flags
| flag
) == -1)
1303 #if defined(__linux__)
1305 #define RTC_FREQ 1024
1307 static void enable_sigio_timer(int fd
)
1309 struct sigaction act
;
1312 sigfillset(&act
.sa_mask
);
1314 act
.sa_handler
= host_alarm_handler
;
1316 sigaction(SIGIO
, &act
, NULL
);
1317 fcntl_setfl(fd
, O_ASYNC
);
1318 fcntl(fd
, F_SETOWN
, getpid());
1321 static int hpet_start_timer(struct qemu_alarm_timer
*t
)
1323 struct hpet_info info
;
1326 fd
= qemu_open("/dev/hpet", O_RDONLY
);
1331 r
= ioctl(fd
, HPET_IRQFREQ
, RTC_FREQ
);
1333 fprintf(stderr
, "Could not configure '/dev/hpet' to have a 1024Hz timer. This is not a fatal\n"
1334 "error, but for better emulation accuracy type:\n"
1335 "'echo 1024 > /proc/sys/dev/hpet/max-user-freq' as root.\n");
1339 /* Check capabilities */
1340 r
= ioctl(fd
, HPET_INFO
, &info
);
1344 /* Enable periodic mode */
1345 r
= ioctl(fd
, HPET_EPI
, 0);
1346 if (info
.hi_flags
&& (r
< 0))
1349 /* Enable interrupt */
1350 r
= ioctl(fd
, HPET_IE_ON
, 0);
1354 enable_sigio_timer(fd
);
1355 t
->priv
= (void *)(long)fd
;
1363 static void hpet_stop_timer(struct qemu_alarm_timer
*t
)
1365 int fd
= (long)t
->priv
;
1370 static int rtc_start_timer(struct qemu_alarm_timer
*t
)
1373 unsigned long current_rtc_freq
= 0;
1375 TFR(rtc_fd
= qemu_open("/dev/rtc", O_RDONLY
));
1378 ioctl(rtc_fd
, RTC_IRQP_READ
, ¤t_rtc_freq
);
1379 if (current_rtc_freq
!= RTC_FREQ
&&
1380 ioctl(rtc_fd
, RTC_IRQP_SET
, RTC_FREQ
) < 0) {
1381 fprintf(stderr
, "Could not configure '/dev/rtc' to have a 1024 Hz timer. This is not a fatal\n"
1382 "error, but for better emulation accuracy either use a 2.6 host Linux kernel or\n"
1383 "type 'echo 1024 > /proc/sys/dev/rtc/max-user-freq' as root.\n");
1386 if (ioctl(rtc_fd
, RTC_PIE_ON
, 0) < 0) {
1392 enable_sigio_timer(rtc_fd
);
1394 t
->priv
= (void *)(long)rtc_fd
;
1399 static void rtc_stop_timer(struct qemu_alarm_timer
*t
)
1401 int rtc_fd
= (long)t
->priv
;
1406 static int dynticks_start_timer(struct qemu_alarm_timer
*t
)
1410 struct sigaction act
;
1412 sigfillset(&act
.sa_mask
);
1414 act
.sa_handler
= host_alarm_handler
;
1416 sigaction(SIGALRM
, &act
, NULL
);
1419 * Initialize ev struct to 0 to avoid valgrind complaining
1420 * about uninitialized data in timer_create call
1422 memset(&ev
, 0, sizeof(ev
));
1423 ev
.sigev_value
.sival_int
= 0;
1424 ev
.sigev_notify
= SIGEV_SIGNAL
;
1425 ev
.sigev_signo
= SIGALRM
;
1427 if (timer_create(CLOCK_REALTIME
, &ev
, &host_timer
)) {
1428 perror("timer_create");
1430 /* disable dynticks */
1431 fprintf(stderr
, "Dynamic Ticks disabled\n");
1436 t
->priv
= (void *)(long)host_timer
;
1441 static void dynticks_stop_timer(struct qemu_alarm_timer
*t
)
1443 timer_t host_timer
= (timer_t
)(long)t
->priv
;
1445 timer_delete(host_timer
);
1448 static void dynticks_rearm_timer(struct qemu_alarm_timer
*t
)
1450 timer_t host_timer
= (timer_t
)(long)t
->priv
;
1451 struct itimerspec timeout
;
1452 int64_t nearest_delta_us
= INT64_MAX
;
1455 if (!active_timers
[QEMU_CLOCK_REALTIME
] &&
1456 !active_timers
[QEMU_CLOCK_VIRTUAL
] &&
1457 !active_timers
[QEMU_CLOCK_HOST
])
1460 nearest_delta_us
= qemu_next_deadline_dyntick();
1462 /* check whether a timer is already running */
1463 if (timer_gettime(host_timer
, &timeout
)) {
1465 fprintf(stderr
, "Internal timer error: aborting\n");
1468 current_us
= timeout
.it_value
.tv_sec
* 1000000 + timeout
.it_value
.tv_nsec
/1000;
1469 if (current_us
&& current_us
<= nearest_delta_us
)
1472 timeout
.it_interval
.tv_sec
= 0;
1473 timeout
.it_interval
.tv_nsec
= 0; /* 0 for one-shot timer */
1474 timeout
.it_value
.tv_sec
= nearest_delta_us
/ 1000000;
1475 timeout
.it_value
.tv_nsec
= (nearest_delta_us
% 1000000) * 1000;
1476 if (timer_settime(host_timer
, 0 /* RELATIVE */, &timeout
, NULL
)) {
1478 fprintf(stderr
, "Internal timer error: aborting\n");
1483 #endif /* defined(__linux__) */
1485 static int unix_start_timer(struct qemu_alarm_timer
*t
)
1487 struct sigaction act
;
1488 struct itimerval itv
;
1492 sigfillset(&act
.sa_mask
);
1494 act
.sa_handler
= host_alarm_handler
;
1496 sigaction(SIGALRM
, &act
, NULL
);
1498 itv
.it_interval
.tv_sec
= 0;
1499 /* for i386 kernel 2.6 to get 1 ms */
1500 itv
.it_interval
.tv_usec
= 999;
1501 itv
.it_value
.tv_sec
= 0;
1502 itv
.it_value
.tv_usec
= 10 * 1000;
1504 err
= setitimer(ITIMER_REAL
, &itv
, NULL
);
1511 static void unix_stop_timer(struct qemu_alarm_timer
*t
)
1513 struct itimerval itv
;
1515 memset(&itv
, 0, sizeof(itv
));
1516 setitimer(ITIMER_REAL
, &itv
, NULL
);
1519 #endif /* !defined(_WIN32) */
1524 static int win32_start_timer(struct qemu_alarm_timer
*t
)
1527 struct qemu_alarm_win32
*data
= t
->priv
;
1530 memset(&tc
, 0, sizeof(tc
));
1531 timeGetDevCaps(&tc
, sizeof(tc
));
1533 if (data
->period
< tc
.wPeriodMin
)
1534 data
->period
= tc
.wPeriodMin
;
1536 timeBeginPeriod(data
->period
);
1538 flags
= TIME_CALLBACK_FUNCTION
;
1539 if (alarm_has_dynticks(t
))
1540 flags
|= TIME_ONESHOT
;
1542 flags
|= TIME_PERIODIC
;
1544 data
->timerId
= timeSetEvent(1, // interval (ms)
1545 data
->period
, // resolution
1546 host_alarm_handler
, // function
1547 (DWORD
)t
, // parameter
1550 if (!data
->timerId
) {
1551 fprintf(stderr
, "Failed to initialize win32 alarm timer: %ld\n",
1553 timeEndPeriod(data
->period
);
1560 static void win32_stop_timer(struct qemu_alarm_timer
*t
)
1562 struct qemu_alarm_win32
*data
= t
->priv
;
1564 timeKillEvent(data
->timerId
);
1565 timeEndPeriod(data
->period
);
1568 static void win32_rearm_timer(struct qemu_alarm_timer
*t
)
1570 struct qemu_alarm_win32
*data
= t
->priv
;
1572 if (!active_timers
[QEMU_CLOCK_REALTIME
] &&
1573 !active_timers
[QEMU_CLOCK_VIRTUAL
] &&
1574 !active_timers
[QEMU_CLOCK_HOST
])
1577 timeKillEvent(data
->timerId
);
1579 data
->timerId
= timeSetEvent(1,
1583 TIME_ONESHOT
| TIME_PERIODIC
);
1585 if (!data
->timerId
) {
1586 fprintf(stderr
, "Failed to re-arm win32 alarm timer %ld\n",
1589 timeEndPeriod(data
->period
);
1596 static int init_timer_alarm(void)
1598 struct qemu_alarm_timer
*t
= NULL
;
1601 for (i
= 0; alarm_timers
[i
].name
; i
++) {
1602 t
= &alarm_timers
[i
];
1622 static void quit_timers(void)
1624 alarm_timer
->stop(alarm_timer
);
1628 /***********************************************************/
1629 /* host time/date access */
1630 void qemu_get_timedate(struct tm
*tm
, int offset
)
1637 if (rtc_date_offset
== -1) {
1641 ret
= localtime(&ti
);
1643 ti
-= rtc_date_offset
;
1647 memcpy(tm
, ret
, sizeof(struct tm
));
1650 int qemu_timedate_diff(struct tm
*tm
)
1654 if (rtc_date_offset
== -1)
1656 seconds
= mktimegm(tm
);
1658 seconds
= mktime(tm
);
1660 seconds
= mktimegm(tm
) + rtc_date_offset
;
1662 return seconds
- time(NULL
);
1665 static void configure_rtc_date_offset(const char *startdate
, int legacy
)
1667 time_t rtc_start_date
;
1670 if (!strcmp(startdate
, "now") && legacy
) {
1671 rtc_date_offset
= -1;
1673 if (sscanf(startdate
, "%d-%d-%dT%d:%d:%d",
1681 } else if (sscanf(startdate
, "%d-%d-%d",
1684 &tm
.tm_mday
) == 3) {
1693 rtc_start_date
= mktimegm(&tm
);
1694 if (rtc_start_date
== -1) {
1696 fprintf(stderr
, "Invalid date format. Valid formats are:\n"
1697 "'2006-06-17T16:01:21' or '2006-06-17'\n");
1700 rtc_date_offset
= time(NULL
) - rtc_start_date
;
1704 static void configure_rtc(QemuOpts
*opts
)
1708 value
= qemu_opt_get(opts
, "base");
1710 if (!strcmp(value
, "utc")) {
1712 } else if (!strcmp(value
, "localtime")) {
1715 configure_rtc_date_offset(value
, 0);
1718 value
= qemu_opt_get(opts
, "clock");
1720 if (!strcmp(value
, "host")) {
1721 rtc_clock
= host_clock
;
1722 } else if (!strcmp(value
, "vm")) {
1723 rtc_clock
= vm_clock
;
1725 fprintf(stderr
, "qemu: invalid option value '%s'\n", value
);
1729 #ifdef CONFIG_TARGET_I386
1730 value
= qemu_opt_get(opts
, "driftfix");
1732 if (!strcmp(buf
, "slew")) {
1734 } else if (!strcmp(buf
, "none")) {
1737 fprintf(stderr
, "qemu: invalid option value '%s'\n", value
);
1745 static void socket_cleanup(void)
1750 static int socket_init(void)
1755 ret
= WSAStartup(MAKEWORD(2,2), &Data
);
1757 err
= WSAGetLastError();
1758 fprintf(stderr
, "WSAStartup: %d\n", err
);
1761 atexit(socket_cleanup
);
1766 /***********************************************************/
1767 /* Bluetooth support */
1770 static struct HCIInfo
*hci_table
[MAX_NICS
];
1772 static struct bt_vlan_s
{
1773 struct bt_scatternet_s net
;
1775 struct bt_vlan_s
*next
;
1778 /* find or alloc a new bluetooth "VLAN" */
1779 static struct bt_scatternet_s
*qemu_find_bt_vlan(int id
)
1781 struct bt_vlan_s
**pvlan
, *vlan
;
1782 for (vlan
= first_bt_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
1786 vlan
= qemu_mallocz(sizeof(struct bt_vlan_s
));
1788 pvlan
= &first_bt_vlan
;
1789 while (*pvlan
!= NULL
)
1790 pvlan
= &(*pvlan
)->next
;
1795 static void null_hci_send(struct HCIInfo
*hci
, const uint8_t *data
, int len
)
1799 static int null_hci_addr_set(struct HCIInfo
*hci
, const uint8_t *bd_addr
)
1804 static struct HCIInfo null_hci
= {
1805 .cmd_send
= null_hci_send
,
1806 .sco_send
= null_hci_send
,
1807 .acl_send
= null_hci_send
,
1808 .bdaddr_set
= null_hci_addr_set
,
1811 struct HCIInfo
*qemu_next_hci(void)
1813 if (cur_hci
== nb_hcis
)
1816 return hci_table
[cur_hci
++];
1819 static struct HCIInfo
*hci_init(const char *str
)
1822 struct bt_scatternet_s
*vlan
= 0;
1824 if (!strcmp(str
, "null"))
1827 else if (!strncmp(str
, "host", 4) && (str
[4] == '\0' || str
[4] == ':'))
1829 return bt_host_hci(str
[4] ? str
+ 5 : "hci0");
1830 else if (!strncmp(str
, "hci", 3)) {
1833 if (!strncmp(str
+ 3, ",vlan=", 6)) {
1834 vlan
= qemu_find_bt_vlan(strtol(str
+ 9, &endp
, 0));
1839 vlan
= qemu_find_bt_vlan(0);
1841 return bt_new_hci(vlan
);
1844 fprintf(stderr
, "qemu: Unknown bluetooth HCI `%s'.\n", str
);
1849 static int bt_hci_parse(const char *str
)
1851 struct HCIInfo
*hci
;
1854 if (nb_hcis
>= MAX_NICS
) {
1855 fprintf(stderr
, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS
);
1859 hci
= hci_init(str
);
1868 bdaddr
.b
[5] = 0x56 + nb_hcis
;
1869 hci
->bdaddr_set(hci
, bdaddr
.b
);
1871 hci_table
[nb_hcis
++] = hci
;
1876 static void bt_vhci_add(int vlan_id
)
1878 struct bt_scatternet_s
*vlan
= qemu_find_bt_vlan(vlan_id
);
1881 fprintf(stderr
, "qemu: warning: adding a VHCI to "
1882 "an empty scatternet %i\n", vlan_id
);
1884 bt_vhci_init(bt_new_hci(vlan
));
1887 static struct bt_device_s
*bt_device_add(const char *opt
)
1889 struct bt_scatternet_s
*vlan
;
1891 char *endp
= strstr(opt
, ",vlan=");
1892 int len
= (endp
? endp
- opt
: strlen(opt
)) + 1;
1895 pstrcpy(devname
, MIN(sizeof(devname
), len
), opt
);
1898 vlan_id
= strtol(endp
+ 6, &endp
, 0);
1900 fprintf(stderr
, "qemu: unrecognised bluetooth vlan Id\n");
1905 vlan
= qemu_find_bt_vlan(vlan_id
);
1908 fprintf(stderr
, "qemu: warning: adding a slave device to "
1909 "an empty scatternet %i\n", vlan_id
);
1911 if (!strcmp(devname
, "keyboard"))
1912 return bt_keyboard_init(vlan
);
1914 fprintf(stderr
, "qemu: unsupported bluetooth device `%s'\n", devname
);
1918 static int bt_parse(const char *opt
)
1920 const char *endp
, *p
;
1923 if (strstart(opt
, "hci", &endp
)) {
1924 if (!*endp
|| *endp
== ',') {
1926 if (!strstart(endp
, ",vlan=", 0))
1929 return bt_hci_parse(opt
);
1931 } else if (strstart(opt
, "vhci", &endp
)) {
1932 if (!*endp
|| *endp
== ',') {
1934 if (strstart(endp
, ",vlan=", &p
)) {
1935 vlan
= strtol(p
, (char **) &endp
, 0);
1937 fprintf(stderr
, "qemu: bad scatternet '%s'\n", p
);
1941 fprintf(stderr
, "qemu: bad parameter '%s'\n", endp
+ 1);
1950 } else if (strstart(opt
, "device:", &endp
))
1951 return !bt_device_add(endp
);
1953 fprintf(stderr
, "qemu: bad bluetooth parameter '%s'\n", opt
);
1957 /***********************************************************/
1958 /* QEMU Block devices */
1960 #define HD_ALIAS "index=%d,media=disk"
1961 #define CDROM_ALIAS "index=2,media=cdrom"
1962 #define FD_ALIAS "index=%d,if=floppy"
1963 #define PFLASH_ALIAS "if=pflash"
1964 #define MTD_ALIAS "if=mtd"
1965 #define SD_ALIAS "index=0,if=sd"
1967 QemuOpts
*drive_add(const char *file
, const char *fmt
, ...)
1974 vsnprintf(optstr
, sizeof(optstr
), fmt
, ap
);
1977 opts
= qemu_opts_parse(&qemu_drive_opts
, optstr
, NULL
);
1979 fprintf(stderr
, "%s: huh? duplicate? (%s)\n",
1980 __FUNCTION__
, optstr
);
1984 qemu_opt_set(opts
, "file", file
);
1988 DriveInfo
*drive_get(BlockInterfaceType type
, int bus
, int unit
)
1992 /* seek interface, bus and unit */
1994 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
1995 if (dinfo
->type
== type
&&
1996 dinfo
->bus
== bus
&&
1997 dinfo
->unit
== unit
)
2004 DriveInfo
*drive_get_by_id(const char *id
)
2008 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
2009 if (strcmp(id
, dinfo
->id
))
2016 int drive_get_max_bus(BlockInterfaceType type
)
2022 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
2023 if(dinfo
->type
== type
&&
2024 dinfo
->bus
> max_bus
)
2025 max_bus
= dinfo
->bus
;
2030 const char *drive_get_serial(BlockDriverState
*bdrv
)
2034 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
2035 if (dinfo
->bdrv
== bdrv
)
2036 return dinfo
->serial
;
2042 BlockInterfaceErrorAction
drive_get_on_error(
2043 BlockDriverState
*bdrv
, int is_read
)
2048 return BLOCK_ERR_REPORT
;
2051 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
2052 if (dinfo
->bdrv
== bdrv
)
2053 return is_read
? dinfo
->on_read_error
: dinfo
->on_write_error
;
2056 return is_read
? BLOCK_ERR_REPORT
: BLOCK_ERR_STOP_ENOSPC
;
2059 static void bdrv_format_print(void *opaque
, const char *name
)
2061 fprintf(stderr
, " %s", name
);
2064 void drive_uninit(DriveInfo
*dinfo
)
2066 qemu_opts_del(dinfo
->opts
);
2067 bdrv_delete(dinfo
->bdrv
);
2068 QTAILQ_REMOVE(&drives
, dinfo
, next
);
2072 static int parse_block_error_action(const char *buf
, int is_read
)
2074 if (!strcmp(buf
, "ignore")) {
2075 return BLOCK_ERR_IGNORE
;
2076 } else if (!is_read
&& !strcmp(buf
, "enospc")) {
2077 return BLOCK_ERR_STOP_ENOSPC
;
2078 } else if (!strcmp(buf
, "stop")) {
2079 return BLOCK_ERR_STOP_ANY
;
2080 } else if (!strcmp(buf
, "report")) {
2081 return BLOCK_ERR_REPORT
;
2083 fprintf(stderr
, "qemu: '%s' invalid %s error action\n",
2084 buf
, is_read
? "read" : "write");
2089 DriveInfo
*drive_init(QemuOpts
*opts
, void *opaque
,
2093 const char *file
= NULL
;
2096 const char *mediastr
= "";
2097 BlockInterfaceType type
;
2098 enum { MEDIA_DISK
, MEDIA_CDROM
} media
;
2099 int bus_id
, unit_id
;
2100 int cyls
, heads
, secs
, translation
;
2101 BlockDriver
*drv
= NULL
;
2102 QEMUMachine
*machine
= opaque
;
2109 int on_read_error
, on_write_error
;
2110 const char *devaddr
;
2116 translation
= BIOS_ATA_TRANSLATION_AUTO
;
2119 if (machine
&& machine
->use_scsi
) {
2121 max_devs
= MAX_SCSI_DEVS
;
2122 pstrcpy(devname
, sizeof(devname
), "scsi");
2125 max_devs
= MAX_IDE_DEVS
;
2126 pstrcpy(devname
, sizeof(devname
), "ide");
2130 /* extract parameters */
2131 bus_id
= qemu_opt_get_number(opts
, "bus", 0);
2132 unit_id
= qemu_opt_get_number(opts
, "unit", -1);
2133 index
= qemu_opt_get_number(opts
, "index", -1);
2135 cyls
= qemu_opt_get_number(opts
, "cyls", 0);
2136 heads
= qemu_opt_get_number(opts
, "heads", 0);
2137 secs
= qemu_opt_get_number(opts
, "secs", 0);
2139 snapshot
= qemu_opt_get_bool(opts
, "snapshot", 0);
2140 ro
= qemu_opt_get_bool(opts
, "readonly", 0);
2142 file
= qemu_opt_get(opts
, "file");
2143 serial
= qemu_opt_get(opts
, "serial");
2145 if ((buf
= qemu_opt_get(opts
, "if")) != NULL
) {
2146 pstrcpy(devname
, sizeof(devname
), buf
);
2147 if (!strcmp(buf
, "ide")) {
2149 max_devs
= MAX_IDE_DEVS
;
2150 } else if (!strcmp(buf
, "scsi")) {
2152 max_devs
= MAX_SCSI_DEVS
;
2153 } else if (!strcmp(buf
, "floppy")) {
2156 } else if (!strcmp(buf
, "pflash")) {
2159 } else if (!strcmp(buf
, "mtd")) {
2162 } else if (!strcmp(buf
, "sd")) {
2165 } else if (!strcmp(buf
, "virtio")) {
2168 } else if (!strcmp(buf
, "xen")) {
2171 } else if (!strcmp(buf
, "none")) {
2175 fprintf(stderr
, "qemu: unsupported bus type '%s'\n", buf
);
2180 if (cyls
|| heads
|| secs
) {
2181 if (cyls
< 1 || (type
== IF_IDE
&& cyls
> 16383)) {
2182 fprintf(stderr
, "qemu: '%s' invalid physical cyls number\n", buf
);
2185 if (heads
< 1 || (type
== IF_IDE
&& heads
> 16)) {
2186 fprintf(stderr
, "qemu: '%s' invalid physical heads number\n", buf
);
2189 if (secs
< 1 || (type
== IF_IDE
&& secs
> 63)) {
2190 fprintf(stderr
, "qemu: '%s' invalid physical secs number\n", buf
);
2195 if ((buf
= qemu_opt_get(opts
, "trans")) != NULL
) {
2198 "qemu: '%s' trans must be used with cyls,heads and secs\n",
2202 if (!strcmp(buf
, "none"))
2203 translation
= BIOS_ATA_TRANSLATION_NONE
;
2204 else if (!strcmp(buf
, "lba"))
2205 translation
= BIOS_ATA_TRANSLATION_LBA
;
2206 else if (!strcmp(buf
, "auto"))
2207 translation
= BIOS_ATA_TRANSLATION_AUTO
;
2209 fprintf(stderr
, "qemu: '%s' invalid translation type\n", buf
);
2214 if ((buf
= qemu_opt_get(opts
, "media")) != NULL
) {
2215 if (!strcmp(buf
, "disk")) {
2217 } else if (!strcmp(buf
, "cdrom")) {
2218 if (cyls
|| secs
|| heads
) {
2220 "qemu: '%s' invalid physical CHS format\n", buf
);
2223 media
= MEDIA_CDROM
;
2225 fprintf(stderr
, "qemu: '%s' invalid media\n", buf
);
2230 if ((buf
= qemu_opt_get(opts
, "cache")) != NULL
) {
2231 if (!strcmp(buf
, "off") || !strcmp(buf
, "none"))
2233 else if (!strcmp(buf
, "writethrough"))
2235 else if (!strcmp(buf
, "writeback"))
2238 fprintf(stderr
, "qemu: invalid cache option\n");
2243 #ifdef CONFIG_LINUX_AIO
2244 if ((buf
= qemu_opt_get(opts
, "aio")) != NULL
) {
2245 if (!strcmp(buf
, "threads"))
2247 else if (!strcmp(buf
, "native"))
2250 fprintf(stderr
, "qemu: invalid aio option\n");
2256 if ((buf
= qemu_opt_get(opts
, "format")) != NULL
) {
2257 if (strcmp(buf
, "?") == 0) {
2258 fprintf(stderr
, "qemu: Supported formats:");
2259 bdrv_iterate_format(bdrv_format_print
, NULL
);
2260 fprintf(stderr
, "\n");
2263 drv
= bdrv_find_whitelisted_format(buf
);
2265 fprintf(stderr
, "qemu: '%s' invalid format\n", buf
);
2270 on_write_error
= BLOCK_ERR_STOP_ENOSPC
;
2271 if ((buf
= qemu_opt_get(opts
, "werror")) != NULL
) {
2272 if (type
!= IF_IDE
&& type
!= IF_SCSI
&& type
!= IF_VIRTIO
) {
2273 fprintf(stderr
, "werror is no supported by this format\n");
2277 on_write_error
= parse_block_error_action(buf
, 0);
2278 if (on_write_error
< 0) {
2283 on_read_error
= BLOCK_ERR_REPORT
;
2284 if ((buf
= qemu_opt_get(opts
, "rerror")) != NULL
) {
2285 if (type
!= IF_IDE
&& type
!= IF_VIRTIO
) {
2286 fprintf(stderr
, "rerror is no supported by this format\n");
2290 on_read_error
= parse_block_error_action(buf
, 1);
2291 if (on_read_error
< 0) {
2296 if ((devaddr
= qemu_opt_get(opts
, "addr")) != NULL
) {
2297 if (type
!= IF_VIRTIO
) {
2298 fprintf(stderr
, "addr is not supported\n");
2303 /* compute bus and unit according index */
2306 if (bus_id
!= 0 || unit_id
!= -1) {
2308 "qemu: index cannot be used with bus and unit\n");
2316 unit_id
= index
% max_devs
;
2317 bus_id
= index
/ max_devs
;
2321 /* if user doesn't specify a unit_id,
2322 * try to find the first free
2325 if (unit_id
== -1) {
2327 while (drive_get(type
, bus_id
, unit_id
) != NULL
) {
2329 if (max_devs
&& unit_id
>= max_devs
) {
2330 unit_id
-= max_devs
;
2338 if (max_devs
&& unit_id
>= max_devs
) {
2339 fprintf(stderr
, "qemu: unit %d too big (max is %d)\n",
2340 unit_id
, max_devs
- 1);
2345 * ignore multiple definitions
2348 if (drive_get(type
, bus_id
, unit_id
) != NULL
) {
2355 dinfo
= qemu_mallocz(sizeof(*dinfo
));
2356 if ((buf
= qemu_opts_id(opts
)) != NULL
) {
2357 dinfo
->id
= qemu_strdup(buf
);
2359 /* no id supplied -> create one */
2360 dinfo
->id
= qemu_mallocz(32);
2361 if (type
== IF_IDE
|| type
== IF_SCSI
)
2362 mediastr
= (media
== MEDIA_CDROM
) ? "-cd" : "-hd";
2364 snprintf(dinfo
->id
, 32, "%s%i%s%i",
2365 devname
, bus_id
, mediastr
, unit_id
);
2367 snprintf(dinfo
->id
, 32, "%s%s%i",
2368 devname
, mediastr
, unit_id
);
2370 dinfo
->bdrv
= bdrv_new(dinfo
->id
);
2371 dinfo
->devaddr
= devaddr
;
2373 dinfo
->bus
= bus_id
;
2374 dinfo
->unit
= unit_id
;
2375 dinfo
->on_read_error
= on_read_error
;
2376 dinfo
->on_write_error
= on_write_error
;
2379 strncpy(dinfo
->serial
, serial
, sizeof(serial
));
2380 QTAILQ_INSERT_TAIL(&drives
, dinfo
, next
);
2390 bdrv_set_geometry_hint(dinfo
->bdrv
, cyls
, heads
, secs
);
2391 bdrv_set_translation_hint(dinfo
->bdrv
, translation
);
2395 bdrv_set_type_hint(dinfo
->bdrv
, BDRV_TYPE_CDROM
);
2400 /* FIXME: This isn't really a floppy, but it's a reasonable
2403 bdrv_set_type_hint(dinfo
->bdrv
, BDRV_TYPE_FLOPPY
);
2409 /* add virtio block device */
2410 opts
= qemu_opts_create(&qemu_device_opts
, NULL
, 0);
2411 qemu_opt_set(opts
, "driver", "virtio-blk-pci");
2412 qemu_opt_set(opts
, "drive", dinfo
->id
);
2414 qemu_opt_set(opts
, "addr", devaddr
);
2425 bdrv_flags
|= BDRV_O_SNAPSHOT
;
2426 cache
= 2; /* always use write-back with snapshot */
2428 if (cache
== 0) /* no caching */
2429 bdrv_flags
|= BDRV_O_NOCACHE
;
2430 else if (cache
== 2) /* write-back */
2431 bdrv_flags
|= BDRV_O_CACHE_WB
;
2434 bdrv_flags
|= BDRV_O_NATIVE_AIO
;
2436 bdrv_flags
&= ~BDRV_O_NATIVE_AIO
;
2440 if (type
== IF_IDE
) {
2441 fprintf(stderr
, "qemu: readonly flag not supported for drive with ide interface\n");
2444 (void)bdrv_set_read_only(dinfo
->bdrv
, 1);
2447 if (bdrv_open2(dinfo
->bdrv
, file
, bdrv_flags
, drv
) < 0) {
2448 fprintf(stderr
, "qemu: could not open disk image %s: %s\n",
2449 file
, strerror(errno
));
2453 if (bdrv_key_required(dinfo
->bdrv
))
2459 static int drive_init_func(QemuOpts
*opts
, void *opaque
)
2461 QEMUMachine
*machine
= opaque
;
2462 int fatal_error
= 0;
2464 if (drive_init(opts
, machine
, &fatal_error
) == NULL
) {
2471 static int drive_enable_snapshot(QemuOpts
*opts
, void *opaque
)
2473 if (NULL
== qemu_opt_get(opts
, "snapshot")) {
2474 qemu_opt_set(opts
, "snapshot", "on");
2479 void qemu_register_boot_set(QEMUBootSetHandler
*func
, void *opaque
)
2481 boot_set_handler
= func
;
2482 boot_set_opaque
= opaque
;
2485 int qemu_boot_set(const char *boot_devices
)
2487 if (!boot_set_handler
) {
2490 return boot_set_handler(boot_set_opaque
, boot_devices
);
2493 static int parse_bootdevices(char *devices
)
2495 /* We just do some generic consistency checks */
2499 for (p
= devices
; *p
!= '\0'; p
++) {
2500 /* Allowed boot devices are:
2501 * a-b: floppy disk drives
2502 * c-f: IDE disk drives
2503 * g-m: machine implementation dependant drives
2504 * n-p: network devices
2505 * It's up to each machine implementation to check if the given boot
2506 * devices match the actual hardware implementation and firmware
2509 if (*p
< 'a' || *p
> 'p') {
2510 fprintf(stderr
, "Invalid boot device '%c'\n", *p
);
2513 if (bitmap
& (1 << (*p
- 'a'))) {
2514 fprintf(stderr
, "Boot device '%c' was given twice\n", *p
);
2517 bitmap
|= 1 << (*p
- 'a');
2522 static void restore_boot_devices(void *opaque
)
2524 char *standard_boot_devices
= opaque
;
2526 qemu_boot_set(standard_boot_devices
);
2528 qemu_unregister_reset(restore_boot_devices
, standard_boot_devices
);
2529 qemu_free(standard_boot_devices
);
2532 static void numa_add(const char *optarg
)
2536 unsigned long long value
, endvalue
;
2539 optarg
= get_opt_name(option
, 128, optarg
, ',') + 1;
2540 if (!strcmp(option
, "node")) {
2541 if (get_param_value(option
, 128, "nodeid", optarg
) == 0) {
2542 nodenr
= nb_numa_nodes
;
2544 nodenr
= strtoull(option
, NULL
, 10);
2547 if (get_param_value(option
, 128, "mem", optarg
) == 0) {
2548 node_mem
[nodenr
] = 0;
2550 value
= strtoull(option
, &endptr
, 0);
2552 case 0: case 'M': case 'm':
2559 node_mem
[nodenr
] = value
;
2561 if (get_param_value(option
, 128, "cpus", optarg
) == 0) {
2562 node_cpumask
[nodenr
] = 0;
2564 value
= strtoull(option
, &endptr
, 10);
2567 fprintf(stderr
, "only 64 CPUs in NUMA mode supported.\n");
2569 if (*endptr
== '-') {
2570 endvalue
= strtoull(endptr
+1, &endptr
, 10);
2571 if (endvalue
>= 63) {
2574 "only 63 CPUs in NUMA mode supported.\n");
2576 value
= (1 << (endvalue
+ 1)) - (1 << value
);
2581 node_cpumask
[nodenr
] = value
;
2588 static void smp_parse(const char *optarg
)
2590 int smp
, sockets
= 0, threads
= 0, cores
= 0;
2594 smp
= strtoul(optarg
, &endptr
, 10);
2595 if (endptr
!= optarg
) {
2596 if (*endptr
== ',') {
2600 if (get_param_value(option
, 128, "sockets", endptr
) != 0)
2601 sockets
= strtoull(option
, NULL
, 10);
2602 if (get_param_value(option
, 128, "cores", endptr
) != 0)
2603 cores
= strtoull(option
, NULL
, 10);
2604 if (get_param_value(option
, 128, "threads", endptr
) != 0)
2605 threads
= strtoull(option
, NULL
, 10);
2606 if (get_param_value(option
, 128, "maxcpus", endptr
) != 0)
2607 max_cpus
= strtoull(option
, NULL
, 10);
2609 /* compute missing values, prefer sockets over cores over threads */
2610 if (smp
== 0 || sockets
== 0) {
2611 sockets
= sockets
> 0 ? sockets
: 1;
2612 cores
= cores
> 0 ? cores
: 1;
2613 threads
= threads
> 0 ? threads
: 1;
2615 smp
= cores
* threads
* sockets
;
2617 sockets
= smp
/ (cores
* threads
);
2621 threads
= threads
> 0 ? threads
: 1;
2622 cores
= smp
/ (sockets
* threads
);
2625 sockets
= smp
/ (cores
* threads
);
2627 threads
= smp
/ (cores
* sockets
);
2632 smp_cores
= cores
> 0 ? cores
: 1;
2633 smp_threads
= threads
> 0 ? threads
: 1;
2635 max_cpus
= smp_cpus
;
2638 /***********************************************************/
2641 static int usb_device_add(const char *devname
, int is_hotplug
)
2644 USBDevice
*dev
= NULL
;
2649 /* drivers with .usbdevice_name entry in USBDeviceInfo */
2650 dev
= usbdevice_create(devname
);
2654 /* the other ones */
2655 if (strstart(devname
, "host:", &p
)) {
2656 dev
= usb_host_device_open(p
);
2657 } else if (strstart(devname
, "net:", &p
)) {
2661 opts
= qemu_opts_parse(&qemu_net_opts
, p
, NULL
);
2666 qemu_opt_set(opts
, "type", "nic");
2667 qemu_opt_set(opts
, "model", "usb");
2669 idx
= net_client_init(NULL
, opts
, 0);
2674 dev
= usb_net_init(&nd_table
[idx
]);
2675 } else if (!strcmp(devname
, "bt") || strstart(devname
, "bt:", &p
)) {
2676 dev
= usb_bt_init(devname
[2] ? hci_init(p
) :
2677 bt_new_hci(qemu_find_bt_vlan(0)));
2688 static int usb_device_del(const char *devname
)
2693 if (strstart(devname
, "host:", &p
))
2694 return usb_host_device_close(p
);
2699 p
= strchr(devname
, '.');
2702 bus_num
= strtoul(devname
, NULL
, 0);
2703 addr
= strtoul(p
+ 1, NULL
, 0);
2705 return usb_device_delete_addr(bus_num
, addr
);
2708 static int usb_parse(const char *cmdline
)
2710 return usb_device_add(cmdline
, 0);
2713 void do_usb_add(Monitor
*mon
, const QDict
*qdict
)
2715 usb_device_add(qdict_get_str(qdict
, "devname"), 1);
2718 void do_usb_del(Monitor
*mon
, const QDict
*qdict
)
2720 usb_device_del(qdict_get_str(qdict
, "devname"));
2723 /***********************************************************/
2724 /* PCMCIA/Cardbus */
2726 static struct pcmcia_socket_entry_s
{
2727 PCMCIASocket
*socket
;
2728 struct pcmcia_socket_entry_s
*next
;
2729 } *pcmcia_sockets
= 0;
2731 void pcmcia_socket_register(PCMCIASocket
*socket
)
2733 struct pcmcia_socket_entry_s
*entry
;
2735 entry
= qemu_malloc(sizeof(struct pcmcia_socket_entry_s
));
2736 entry
->socket
= socket
;
2737 entry
->next
= pcmcia_sockets
;
2738 pcmcia_sockets
= entry
;
2741 void pcmcia_socket_unregister(PCMCIASocket
*socket
)
2743 struct pcmcia_socket_entry_s
*entry
, **ptr
;
2745 ptr
= &pcmcia_sockets
;
2746 for (entry
= *ptr
; entry
; ptr
= &entry
->next
, entry
= *ptr
)
2747 if (entry
->socket
== socket
) {
2753 void pcmcia_info(Monitor
*mon
)
2755 struct pcmcia_socket_entry_s
*iter
;
2757 if (!pcmcia_sockets
)
2758 monitor_printf(mon
, "No PCMCIA sockets\n");
2760 for (iter
= pcmcia_sockets
; iter
; iter
= iter
->next
)
2761 monitor_printf(mon
, "%s: %s\n", iter
->socket
->slot_string
,
2762 iter
->socket
->attached
? iter
->socket
->card_string
:
2766 /***********************************************************/
2767 /* register display */
2769 struct DisplayAllocator default_allocator
= {
2770 defaultallocator_create_displaysurface
,
2771 defaultallocator_resize_displaysurface
,
2772 defaultallocator_free_displaysurface
2775 void register_displaystate(DisplayState
*ds
)
2785 DisplayState
*get_displaystate(void)
2787 return display_state
;
2790 DisplayAllocator
*register_displayallocator(DisplayState
*ds
, DisplayAllocator
*da
)
2792 if(ds
->allocator
== &default_allocator
) ds
->allocator
= da
;
2793 return ds
->allocator
;
2798 static void dumb_display_init(void)
2800 DisplayState
*ds
= qemu_mallocz(sizeof(DisplayState
));
2801 ds
->allocator
= &default_allocator
;
2802 ds
->surface
= qemu_create_displaysurface(ds
, 640, 480);
2803 register_displaystate(ds
);
2806 /***********************************************************/
2809 typedef struct IOHandlerRecord
{
2811 IOCanRWHandler
*fd_read_poll
;
2813 IOHandler
*fd_write
;
2816 /* temporary data */
2818 struct IOHandlerRecord
*next
;
2821 static IOHandlerRecord
*first_io_handler
;
2823 /* XXX: fd_read_poll should be suppressed, but an API change is
2824 necessary in the character devices to suppress fd_can_read(). */
2825 int qemu_set_fd_handler2(int fd
,
2826 IOCanRWHandler
*fd_read_poll
,
2828 IOHandler
*fd_write
,
2831 IOHandlerRecord
**pioh
, *ioh
;
2833 if (!fd_read
&& !fd_write
) {
2834 pioh
= &first_io_handler
;
2839 if (ioh
->fd
== fd
) {
2846 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
2850 ioh
= qemu_mallocz(sizeof(IOHandlerRecord
));
2851 ioh
->next
= first_io_handler
;
2852 first_io_handler
= ioh
;
2855 ioh
->fd_read_poll
= fd_read_poll
;
2856 ioh
->fd_read
= fd_read
;
2857 ioh
->fd_write
= fd_write
;
2858 ioh
->opaque
= opaque
;
2864 int qemu_set_fd_handler(int fd
,
2866 IOHandler
*fd_write
,
2869 return qemu_set_fd_handler2(fd
, NULL
, fd_read
, fd_write
, opaque
);
2873 /***********************************************************/
2874 /* Polling handling */
2876 typedef struct PollingEntry
{
2879 struct PollingEntry
*next
;
2882 static PollingEntry
*first_polling_entry
;
2884 int qemu_add_polling_cb(PollingFunc
*func
, void *opaque
)
2886 PollingEntry
**ppe
, *pe
;
2887 pe
= qemu_mallocz(sizeof(PollingEntry
));
2889 pe
->opaque
= opaque
;
2890 for(ppe
= &first_polling_entry
; *ppe
!= NULL
; ppe
= &(*ppe
)->next
);
2895 void qemu_del_polling_cb(PollingFunc
*func
, void *opaque
)
2897 PollingEntry
**ppe
, *pe
;
2898 for(ppe
= &first_polling_entry
; *ppe
!= NULL
; ppe
= &(*ppe
)->next
) {
2900 if (pe
->func
== func
&& pe
->opaque
== opaque
) {
2908 /***********************************************************/
2909 /* Wait objects support */
2910 typedef struct WaitObjects
{
2912 HANDLE events
[MAXIMUM_WAIT_OBJECTS
+ 1];
2913 WaitObjectFunc
*func
[MAXIMUM_WAIT_OBJECTS
+ 1];
2914 void *opaque
[MAXIMUM_WAIT_OBJECTS
+ 1];
2917 static WaitObjects wait_objects
= {0};
2919 int qemu_add_wait_object(HANDLE handle
, WaitObjectFunc
*func
, void *opaque
)
2921 WaitObjects
*w
= &wait_objects
;
2923 if (w
->num
>= MAXIMUM_WAIT_OBJECTS
)
2925 w
->events
[w
->num
] = handle
;
2926 w
->func
[w
->num
] = func
;
2927 w
->opaque
[w
->num
] = opaque
;
2932 void qemu_del_wait_object(HANDLE handle
, WaitObjectFunc
*func
, void *opaque
)
2935 WaitObjects
*w
= &wait_objects
;
2938 for (i
= 0; i
< w
->num
; i
++) {
2939 if (w
->events
[i
] == handle
)
2942 w
->events
[i
] = w
->events
[i
+ 1];
2943 w
->func
[i
] = w
->func
[i
+ 1];
2944 w
->opaque
[i
] = w
->opaque
[i
+ 1];
2952 /***********************************************************/
2953 /* ram save/restore */
2955 #define RAM_SAVE_FLAG_FULL 0x01 /* Obsolete, not used anymore */
2956 #define RAM_SAVE_FLAG_COMPRESS 0x02
2957 #define RAM_SAVE_FLAG_MEM_SIZE 0x04
2958 #define RAM_SAVE_FLAG_PAGE 0x08
2959 #define RAM_SAVE_FLAG_EOS 0x10
2961 static int is_dup_page(uint8_t *page
, uint8_t ch
)
2963 uint32_t val
= ch
<< 24 | ch
<< 16 | ch
<< 8 | ch
;
2964 uint32_t *array
= (uint32_t *)page
;
2967 for (i
= 0; i
< (TARGET_PAGE_SIZE
/ 4); i
++) {
2968 if (array
[i
] != val
)
2975 static int ram_save_block(QEMUFile
*f
)
2977 static ram_addr_t current_addr
= 0;
2978 ram_addr_t saved_addr
= current_addr
;
2979 ram_addr_t addr
= 0;
2982 while (addr
< last_ram_offset
) {
2983 if (cpu_physical_memory_get_dirty(current_addr
, MIGRATION_DIRTY_FLAG
)) {
2986 cpu_physical_memory_reset_dirty(current_addr
,
2987 current_addr
+ TARGET_PAGE_SIZE
,
2988 MIGRATION_DIRTY_FLAG
);
2990 p
= qemu_get_ram_ptr(current_addr
);
2992 if (is_dup_page(p
, *p
)) {
2993 qemu_put_be64(f
, current_addr
| RAM_SAVE_FLAG_COMPRESS
);
2994 qemu_put_byte(f
, *p
);
2996 qemu_put_be64(f
, current_addr
| RAM_SAVE_FLAG_PAGE
);
2997 qemu_put_buffer(f
, p
, TARGET_PAGE_SIZE
);
3003 addr
+= TARGET_PAGE_SIZE
;
3004 current_addr
= (saved_addr
+ addr
) % last_ram_offset
;
3010 static uint64_t bytes_transferred
;
3012 static ram_addr_t
ram_save_remaining(void)
3015 ram_addr_t count
= 0;
3017 for (addr
= 0; addr
< last_ram_offset
; addr
+= TARGET_PAGE_SIZE
) {
3018 if (cpu_physical_memory_get_dirty(addr
, MIGRATION_DIRTY_FLAG
))
3025 uint64_t ram_bytes_remaining(void)
3027 return ram_save_remaining() * TARGET_PAGE_SIZE
;
3030 uint64_t ram_bytes_transferred(void)
3032 return bytes_transferred
;
3035 uint64_t ram_bytes_total(void)
3037 return last_ram_offset
;
3040 static int ram_save_live(Monitor
*mon
, QEMUFile
*f
, int stage
, void *opaque
)
3043 uint64_t bytes_transferred_last
;
3045 uint64_t expected_time
= 0;
3048 cpu_physical_memory_set_dirty_tracking(0);
3052 if (cpu_physical_sync_dirty_bitmap(0, TARGET_PHYS_ADDR_MAX
) != 0) {
3053 qemu_file_set_error(f
);
3058 bytes_transferred
= 0;
3060 /* Make sure all dirty bits are set */
3061 for (addr
= 0; addr
< last_ram_offset
; addr
+= TARGET_PAGE_SIZE
) {
3062 if (!cpu_physical_memory_get_dirty(addr
, MIGRATION_DIRTY_FLAG
))
3063 cpu_physical_memory_set_dirty(addr
);
3066 /* Enable dirty memory tracking */
3067 cpu_physical_memory_set_dirty_tracking(1);
3069 qemu_put_be64(f
, last_ram_offset
| RAM_SAVE_FLAG_MEM_SIZE
);
3072 bytes_transferred_last
= bytes_transferred
;
3073 bwidth
= get_clock();
3075 while (!qemu_file_rate_limit(f
)) {
3078 ret
= ram_save_block(f
);
3079 bytes_transferred
+= ret
* TARGET_PAGE_SIZE
;
3080 if (ret
== 0) /* no more blocks */
3084 bwidth
= get_clock() - bwidth
;
3085 bwidth
= (bytes_transferred
- bytes_transferred_last
) / bwidth
;
3087 /* if we haven't transferred anything this round, force expected_time to a
3088 * a very high value, but without crashing */
3092 /* try transferring iterative blocks of memory */
3094 /* flush all remaining blocks regardless of rate limiting */
3095 while (ram_save_block(f
) != 0) {
3096 bytes_transferred
+= TARGET_PAGE_SIZE
;
3098 cpu_physical_memory_set_dirty_tracking(0);
3101 qemu_put_be64(f
, RAM_SAVE_FLAG_EOS
);
3103 expected_time
= ram_save_remaining() * TARGET_PAGE_SIZE
/ bwidth
;
3105 return (stage
== 2) && (expected_time
<= migrate_max_downtime());
3108 static int ram_load(QEMUFile
*f
, void *opaque
, int version_id
)
3113 if (version_id
!= 3)
3117 addr
= qemu_get_be64(f
);
3119 flags
= addr
& ~TARGET_PAGE_MASK
;
3120 addr
&= TARGET_PAGE_MASK
;
3122 if (flags
& RAM_SAVE_FLAG_MEM_SIZE
) {
3123 if (addr
!= last_ram_offset
)
3127 if (flags
& RAM_SAVE_FLAG_COMPRESS
) {
3128 uint8_t ch
= qemu_get_byte(f
);
3129 memset(qemu_get_ram_ptr(addr
), ch
, TARGET_PAGE_SIZE
);
3132 (!kvm_enabled() || kvm_has_sync_mmu())) {
3133 madvise(qemu_get_ram_ptr(addr
), TARGET_PAGE_SIZE
, MADV_DONTNEED
);
3136 } else if (flags
& RAM_SAVE_FLAG_PAGE
) {
3137 qemu_get_buffer(f
, qemu_get_ram_ptr(addr
), TARGET_PAGE_SIZE
);
3139 if (qemu_file_has_error(f
)) {
3142 } while (!(flags
& RAM_SAVE_FLAG_EOS
));
3147 void qemu_service_io(void)
3149 qemu_notify_event();
3152 /***********************************************************/
3153 /* machine registration */
3155 static QEMUMachine
*first_machine
= NULL
;
3156 QEMUMachine
*current_machine
= NULL
;
3158 int qemu_register_machine(QEMUMachine
*m
)
3161 pm
= &first_machine
;
3169 static QEMUMachine
*find_machine(const char *name
)
3173 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
3174 if (!strcmp(m
->name
, name
))
3176 if (m
->alias
&& !strcmp(m
->alias
, name
))
3182 static QEMUMachine
*find_default_machine(void)
3186 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
3187 if (m
->is_default
) {
3194 /***********************************************************/
3195 /* main execution loop */
3197 static void gui_update(void *opaque
)
3199 uint64_t interval
= GUI_REFRESH_INTERVAL
;
3200 DisplayState
*ds
= opaque
;
3201 DisplayChangeListener
*dcl
= ds
->listeners
;
3205 while (dcl
!= NULL
) {
3206 if (dcl
->gui_timer_interval
&&
3207 dcl
->gui_timer_interval
< interval
)
3208 interval
= dcl
->gui_timer_interval
;
3211 qemu_mod_timer(ds
->gui_timer
, interval
+ qemu_get_clock(rt_clock
));
3214 static void nographic_update(void *opaque
)
3216 uint64_t interval
= GUI_REFRESH_INTERVAL
;
3218 qemu_mod_timer(nographic_timer
, interval
+ qemu_get_clock(rt_clock
));
3221 struct vm_change_state_entry
{
3222 VMChangeStateHandler
*cb
;
3224 QLIST_ENTRY (vm_change_state_entry
) entries
;
3227 static QLIST_HEAD(vm_change_state_head
, vm_change_state_entry
) vm_change_state_head
;
3229 VMChangeStateEntry
*qemu_add_vm_change_state_handler(VMChangeStateHandler
*cb
,
3232 VMChangeStateEntry
*e
;
3234 e
= qemu_mallocz(sizeof (*e
));
3238 QLIST_INSERT_HEAD(&vm_change_state_head
, e
, entries
);
3242 void qemu_del_vm_change_state_handler(VMChangeStateEntry
*e
)
3244 QLIST_REMOVE (e
, entries
);
3248 static void vm_state_notify(int running
, int reason
)
3250 VMChangeStateEntry
*e
;
3252 for (e
= vm_change_state_head
.lh_first
; e
; e
= e
->entries
.le_next
) {
3253 e
->cb(e
->opaque
, running
, reason
);
3257 static void resume_all_vcpus(void);
3258 static void pause_all_vcpus(void);
3265 vm_state_notify(1, 0);
3266 qemu_rearm_alarm_timer(alarm_timer
);
3271 /* reset/shutdown handler */
3273 typedef struct QEMUResetEntry
{
3274 QTAILQ_ENTRY(QEMUResetEntry
) entry
;
3275 QEMUResetHandler
*func
;
3279 static QTAILQ_HEAD(reset_handlers
, QEMUResetEntry
) reset_handlers
=
3280 QTAILQ_HEAD_INITIALIZER(reset_handlers
);
3281 static int reset_requested
;
3282 static int shutdown_requested
;
3283 static int powerdown_requested
;
3284 static int debug_requested
;
3285 static int vmstop_requested
;
3287 int qemu_shutdown_requested(void)
3289 int r
= shutdown_requested
;
3290 shutdown_requested
= 0;
3294 int qemu_reset_requested(void)
3296 int r
= reset_requested
;
3297 reset_requested
= 0;
3301 int qemu_powerdown_requested(void)
3303 int r
= powerdown_requested
;
3304 powerdown_requested
= 0;
3308 static int qemu_debug_requested(void)
3310 int r
= debug_requested
;
3311 debug_requested
= 0;
3315 static int qemu_vmstop_requested(void)
3317 int r
= vmstop_requested
;
3318 vmstop_requested
= 0;
3322 static void do_vm_stop(int reason
)
3325 cpu_disable_ticks();
3328 vm_state_notify(0, reason
);
3332 void qemu_register_reset(QEMUResetHandler
*func
, void *opaque
)
3334 QEMUResetEntry
*re
= qemu_mallocz(sizeof(QEMUResetEntry
));
3337 re
->opaque
= opaque
;
3338 QTAILQ_INSERT_TAIL(&reset_handlers
, re
, entry
);
3341 void qemu_unregister_reset(QEMUResetHandler
*func
, void *opaque
)
3345 QTAILQ_FOREACH(re
, &reset_handlers
, entry
) {
3346 if (re
->func
== func
&& re
->opaque
== opaque
) {
3347 QTAILQ_REMOVE(&reset_handlers
, re
, entry
);
3354 void qemu_system_reset(void)
3356 QEMUResetEntry
*re
, *nre
;
3358 /* reset all devices */
3359 QTAILQ_FOREACH_SAFE(re
, &reset_handlers
, entry
, nre
) {
3360 re
->func(re
->opaque
);
3364 void qemu_system_reset_request(void)
3367 shutdown_requested
= 1;
3369 reset_requested
= 1;
3371 qemu_notify_event();
3374 void qemu_system_shutdown_request(void)
3376 shutdown_requested
= 1;
3377 qemu_notify_event();
3380 void qemu_system_powerdown_request(void)
3382 powerdown_requested
= 1;
3383 qemu_notify_event();
3386 #ifdef CONFIG_IOTHREAD
3387 static void qemu_system_vmstop_request(int reason
)
3389 vmstop_requested
= reason
;
3390 qemu_notify_event();
3395 static int io_thread_fd
= -1;
3397 static void qemu_event_increment(void)
3399 static const char byte
= 0;
3401 if (io_thread_fd
== -1)
3404 write(io_thread_fd
, &byte
, sizeof(byte
));
3407 static void qemu_event_read(void *opaque
)
3409 int fd
= (unsigned long)opaque
;
3412 /* Drain the notify pipe */
3415 len
= read(fd
, buffer
, sizeof(buffer
));
3416 } while ((len
== -1 && errno
== EINTR
) || len
> 0);
3419 static int qemu_event_init(void)
3424 err
= qemu_pipe(fds
);
3428 err
= fcntl_setfl(fds
[0], O_NONBLOCK
);
3432 err
= fcntl_setfl(fds
[1], O_NONBLOCK
);
3436 qemu_set_fd_handler2(fds
[0], NULL
, qemu_event_read
, NULL
,
3437 (void *)(unsigned long)fds
[0]);
3439 io_thread_fd
= fds
[1];
3448 HANDLE qemu_event_handle
;
3450 static void dummy_event_handler(void *opaque
)
3454 static int qemu_event_init(void)
3456 qemu_event_handle
= CreateEvent(NULL
, FALSE
, FALSE
, NULL
);
3457 if (!qemu_event_handle
) {
3458 fprintf(stderr
, "Failed CreateEvent: %ld\n", GetLastError());
3461 qemu_add_wait_object(qemu_event_handle
, dummy_event_handler
, NULL
);
3465 static void qemu_event_increment(void)
3467 if (!SetEvent(qemu_event_handle
)) {
3468 fprintf(stderr
, "qemu_event_increment: SetEvent failed: %ld\n",
3475 static int cpu_can_run(CPUState
*env
)
3484 #ifndef CONFIG_IOTHREAD
3485 static int qemu_init_main_loop(void)
3487 return qemu_event_init();
3490 void qemu_init_vcpu(void *_env
)
3492 CPUState
*env
= _env
;
3496 env
->nr_cores
= smp_cores
;
3497 env
->nr_threads
= smp_threads
;
3501 int qemu_cpu_self(void *env
)
3506 static void resume_all_vcpus(void)
3510 static void pause_all_vcpus(void)
3514 void qemu_cpu_kick(void *env
)
3519 void qemu_notify_event(void)
3521 CPUState
*env
= cpu_single_env
;
3528 void qemu_mutex_lock_iothread(void) {}
3529 void qemu_mutex_unlock_iothread(void) {}
3531 void vm_stop(int reason
)
3536 #else /* CONFIG_IOTHREAD */
3538 #include "qemu-thread.h"
3540 QemuMutex qemu_global_mutex
;
3541 static QemuMutex qemu_fair_mutex
;
3543 static QemuThread io_thread
;
3545 static QemuThread
*tcg_cpu_thread
;
3546 static QemuCond
*tcg_halt_cond
;
3548 static int qemu_system_ready
;
3550 static QemuCond qemu_cpu_cond
;
3552 static QemuCond qemu_system_cond
;
3553 static QemuCond qemu_pause_cond
;
3555 static void block_io_signals(void);
3556 static void unblock_io_signals(void);
3557 static int tcg_has_work(void);
3559 static int qemu_init_main_loop(void)
3563 ret
= qemu_event_init();
3567 qemu_cond_init(&qemu_pause_cond
);
3568 qemu_mutex_init(&qemu_fair_mutex
);
3569 qemu_mutex_init(&qemu_global_mutex
);
3570 qemu_mutex_lock(&qemu_global_mutex
);
3572 unblock_io_signals();
3573 qemu_thread_self(&io_thread
);
3578 static void qemu_wait_io_event(CPUState
*env
)
3580 while (!tcg_has_work())
3581 qemu_cond_timedwait(env
->halt_cond
, &qemu_global_mutex
, 1000);
3583 qemu_mutex_unlock(&qemu_global_mutex
);
3586 * Users of qemu_global_mutex can be starved, having no chance
3587 * to acquire it since this path will get to it first.
3588 * So use another lock to provide fairness.
3590 qemu_mutex_lock(&qemu_fair_mutex
);
3591 qemu_mutex_unlock(&qemu_fair_mutex
);
3593 qemu_mutex_lock(&qemu_global_mutex
);
3597 qemu_cond_signal(&qemu_pause_cond
);
3601 static int qemu_cpu_exec(CPUState
*env
);
3603 static void *kvm_cpu_thread_fn(void *arg
)
3605 CPUState
*env
= arg
;
3608 qemu_thread_self(env
->thread
);
3612 /* signal CPU creation */
3613 qemu_mutex_lock(&qemu_global_mutex
);
3615 qemu_cond_signal(&qemu_cpu_cond
);
3617 /* and wait for machine initialization */
3618 while (!qemu_system_ready
)
3619 qemu_cond_timedwait(&qemu_system_cond
, &qemu_global_mutex
, 100);
3622 if (cpu_can_run(env
))
3624 qemu_wait_io_event(env
);
3630 static void tcg_cpu_exec(void);
3632 static void *tcg_cpu_thread_fn(void *arg
)
3634 CPUState
*env
= arg
;
3637 qemu_thread_self(env
->thread
);
3639 /* signal CPU creation */
3640 qemu_mutex_lock(&qemu_global_mutex
);
3641 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
)
3643 qemu_cond_signal(&qemu_cpu_cond
);
3645 /* and wait for machine initialization */
3646 while (!qemu_system_ready
)
3647 qemu_cond_timedwait(&qemu_system_cond
, &qemu_global_mutex
, 100);
3651 qemu_wait_io_event(cur_cpu
);
3657 void qemu_cpu_kick(void *_env
)
3659 CPUState
*env
= _env
;
3660 qemu_cond_broadcast(env
->halt_cond
);
3662 qemu_thread_signal(env
->thread
, SIGUSR1
);
3665 int qemu_cpu_self(void *_env
)
3667 CPUState
*env
= _env
;
3670 qemu_thread_self(&this);
3672 return qemu_thread_equal(&this, env
->thread
);
3675 static void cpu_signal(int sig
)
3678 cpu_exit(cpu_single_env
);
3681 static void block_io_signals(void)
3684 struct sigaction sigact
;
3687 sigaddset(&set
, SIGUSR2
);
3688 sigaddset(&set
, SIGIO
);
3689 sigaddset(&set
, SIGALRM
);
3690 pthread_sigmask(SIG_BLOCK
, &set
, NULL
);
3693 sigaddset(&set
, SIGUSR1
);
3694 pthread_sigmask(SIG_UNBLOCK
, &set
, NULL
);
3696 memset(&sigact
, 0, sizeof(sigact
));
3697 sigact
.sa_handler
= cpu_signal
;
3698 sigaction(SIGUSR1
, &sigact
, NULL
);
3701 static void unblock_io_signals(void)
3706 sigaddset(&set
, SIGUSR2
);
3707 sigaddset(&set
, SIGIO
);
3708 sigaddset(&set
, SIGALRM
);
3709 pthread_sigmask(SIG_UNBLOCK
, &set
, NULL
);
3712 sigaddset(&set
, SIGUSR1
);
3713 pthread_sigmask(SIG_BLOCK
, &set
, NULL
);
3716 static void qemu_signal_lock(unsigned int msecs
)
3718 qemu_mutex_lock(&qemu_fair_mutex
);
3720 while (qemu_mutex_trylock(&qemu_global_mutex
)) {
3721 qemu_thread_signal(tcg_cpu_thread
, SIGUSR1
);
3722 if (!qemu_mutex_timedlock(&qemu_global_mutex
, msecs
))
3725 qemu_mutex_unlock(&qemu_fair_mutex
);
3728 void qemu_mutex_lock_iothread(void)
3730 if (kvm_enabled()) {
3731 qemu_mutex_lock(&qemu_fair_mutex
);
3732 qemu_mutex_lock(&qemu_global_mutex
);
3733 qemu_mutex_unlock(&qemu_fair_mutex
);
3735 qemu_signal_lock(100);
3738 void qemu_mutex_unlock_iothread(void)
3740 qemu_mutex_unlock(&qemu_global_mutex
);
3743 static int all_vcpus_paused(void)
3745 CPUState
*penv
= first_cpu
;
3750 penv
= (CPUState
*)penv
->next_cpu
;
3756 static void pause_all_vcpus(void)
3758 CPUState
*penv
= first_cpu
;
3762 qemu_thread_signal(penv
->thread
, SIGUSR1
);
3763 qemu_cpu_kick(penv
);
3764 penv
= (CPUState
*)penv
->next_cpu
;
3767 while (!all_vcpus_paused()) {
3768 qemu_cond_timedwait(&qemu_pause_cond
, &qemu_global_mutex
, 100);
3771 qemu_thread_signal(penv
->thread
, SIGUSR1
);
3772 penv
= (CPUState
*)penv
->next_cpu
;
3777 static void resume_all_vcpus(void)
3779 CPUState
*penv
= first_cpu
;
3784 qemu_thread_signal(penv
->thread
, SIGUSR1
);
3785 qemu_cpu_kick(penv
);
3786 penv
= (CPUState
*)penv
->next_cpu
;
3790 static void tcg_init_vcpu(void *_env
)
3792 CPUState
*env
= _env
;
3793 /* share a single thread for all cpus with TCG */
3794 if (!tcg_cpu_thread
) {
3795 env
->thread
= qemu_mallocz(sizeof(QemuThread
));
3796 env
->halt_cond
= qemu_mallocz(sizeof(QemuCond
));
3797 qemu_cond_init(env
->halt_cond
);
3798 qemu_thread_create(env
->thread
, tcg_cpu_thread_fn
, env
);
3799 while (env
->created
== 0)
3800 qemu_cond_timedwait(&qemu_cpu_cond
, &qemu_global_mutex
, 100);
3801 tcg_cpu_thread
= env
->thread
;
3802 tcg_halt_cond
= env
->halt_cond
;
3804 env
->thread
= tcg_cpu_thread
;
3805 env
->halt_cond
= tcg_halt_cond
;
3809 static void kvm_start_vcpu(CPUState
*env
)
3811 env
->thread
= qemu_mallocz(sizeof(QemuThread
));
3812 env
->halt_cond
= qemu_mallocz(sizeof(QemuCond
));
3813 qemu_cond_init(env
->halt_cond
);
3814 qemu_thread_create(env
->thread
, kvm_cpu_thread_fn
, env
);
3815 while (env
->created
== 0)
3816 qemu_cond_timedwait(&qemu_cpu_cond
, &qemu_global_mutex
, 100);
3819 void qemu_init_vcpu(void *_env
)
3821 CPUState
*env
= _env
;
3824 kvm_start_vcpu(env
);
3827 env
->nr_cores
= smp_cores
;
3828 env
->nr_threads
= smp_threads
;
3831 void qemu_notify_event(void)
3833 qemu_event_increment();
3836 void vm_stop(int reason
)
3839 qemu_thread_self(&me
);
3841 if (!qemu_thread_equal(&me
, &io_thread
)) {
3842 qemu_system_vmstop_request(reason
);
3844 * FIXME: should not return to device code in case
3845 * vm_stop() has been requested.
3847 if (cpu_single_env
) {
3848 cpu_exit(cpu_single_env
);
3849 cpu_single_env
->stop
= 1;
3860 static void host_main_loop_wait(int *timeout
)
3866 /* XXX: need to suppress polling by better using win32 events */
3868 for(pe
= first_polling_entry
; pe
!= NULL
; pe
= pe
->next
) {
3869 ret
|= pe
->func(pe
->opaque
);
3873 WaitObjects
*w
= &wait_objects
;
3875 ret
= WaitForMultipleObjects(w
->num
, w
->events
, FALSE
, *timeout
);
3876 if (WAIT_OBJECT_0
+ 0 <= ret
&& ret
<= WAIT_OBJECT_0
+ w
->num
- 1) {
3877 if (w
->func
[ret
- WAIT_OBJECT_0
])
3878 w
->func
[ret
- WAIT_OBJECT_0
](w
->opaque
[ret
- WAIT_OBJECT_0
]);
3880 /* Check for additional signaled events */
3881 for(i
= (ret
- WAIT_OBJECT_0
+ 1); i
< w
->num
; i
++) {
3883 /* Check if event is signaled */
3884 ret2
= WaitForSingleObject(w
->events
[i
], 0);
3885 if(ret2
== WAIT_OBJECT_0
) {
3887 w
->func
[i
](w
->opaque
[i
]);
3888 } else if (ret2
== WAIT_TIMEOUT
) {
3890 err
= GetLastError();
3891 fprintf(stderr
, "WaitForSingleObject error %d %d\n", i
, err
);
3894 } else if (ret
== WAIT_TIMEOUT
) {
3896 err
= GetLastError();
3897 fprintf(stderr
, "WaitForMultipleObjects error %d %d\n", ret
, err
);
3904 static void host_main_loop_wait(int *timeout
)
3909 void main_loop_wait(int timeout
)
3911 IOHandlerRecord
*ioh
;
3912 fd_set rfds
, wfds
, xfds
;
3916 qemu_bh_update_timeout(&timeout
);
3918 host_main_loop_wait(&timeout
);
3920 /* poll any events */
3921 /* XXX: separate device handlers from system ones */
3926 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
3930 (!ioh
->fd_read_poll
||
3931 ioh
->fd_read_poll(ioh
->opaque
) != 0)) {
3932 FD_SET(ioh
->fd
, &rfds
);
3936 if (ioh
->fd_write
) {
3937 FD_SET(ioh
->fd
, &wfds
);
3943 tv
.tv_sec
= timeout
/ 1000;
3944 tv
.tv_usec
= (timeout
% 1000) * 1000;
3946 slirp_select_fill(&nfds
, &rfds
, &wfds
, &xfds
);
3948 qemu_mutex_unlock_iothread();
3949 ret
= select(nfds
+ 1, &rfds
, &wfds
, &xfds
, &tv
);
3950 qemu_mutex_lock_iothread();
3952 IOHandlerRecord
**pioh
;
3954 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
3955 if (!ioh
->deleted
&& ioh
->fd_read
&& FD_ISSET(ioh
->fd
, &rfds
)) {
3956 ioh
->fd_read(ioh
->opaque
);
3958 if (!ioh
->deleted
&& ioh
->fd_write
&& FD_ISSET(ioh
->fd
, &wfds
)) {
3959 ioh
->fd_write(ioh
->opaque
);
3963 /* remove deleted IO handlers */
3964 pioh
= &first_io_handler
;
3975 slirp_select_poll(&rfds
, &wfds
, &xfds
, (ret
< 0));
3977 /* rearm timer, if not periodic */
3978 if (alarm_timer
->flags
& ALARM_FLAG_EXPIRED
) {
3979 alarm_timer
->flags
&= ~ALARM_FLAG_EXPIRED
;
3980 qemu_rearm_alarm_timer(alarm_timer
);
3983 /* vm time timers */
3985 if (!cur_cpu
|| likely(!(cur_cpu
->singlestep_enabled
& SSTEP_NOTIMER
)))
3986 qemu_run_timers(&active_timers
[QEMU_CLOCK_VIRTUAL
],
3987 qemu_get_clock(vm_clock
));
3990 /* real time timers */
3991 qemu_run_timers(&active_timers
[QEMU_CLOCK_REALTIME
],
3992 qemu_get_clock(rt_clock
));
3994 qemu_run_timers(&active_timers
[QEMU_CLOCK_HOST
],
3995 qemu_get_clock(host_clock
));
3997 /* Check bottom-halves last in case any of the earlier events triggered
4003 static int qemu_cpu_exec(CPUState
*env
)
4006 #ifdef CONFIG_PROFILER
4010 #ifdef CONFIG_PROFILER
4011 ti
= profile_getclock();
4016 qemu_icount
-= (env
->icount_decr
.u16
.low
+ env
->icount_extra
);
4017 env
->icount_decr
.u16
.low
= 0;
4018 env
->icount_extra
= 0;
4019 count
= qemu_next_deadline();
4020 count
= (count
+ (1 << icount_time_shift
) - 1)
4021 >> icount_time_shift
;
4022 qemu_icount
+= count
;
4023 decr
= (count
> 0xffff) ? 0xffff : count
;
4025 env
->icount_decr
.u16
.low
= decr
;
4026 env
->icount_extra
= count
;
4028 ret
= cpu_exec(env
);
4029 #ifdef CONFIG_PROFILER
4030 qemu_time
+= profile_getclock() - ti
;
4033 /* Fold pending instructions back into the
4034 instruction counter, and clear the interrupt flag. */
4035 qemu_icount
-= (env
->icount_decr
.u16
.low
4036 + env
->icount_extra
);
4037 env
->icount_decr
.u32
= 0;
4038 env
->icount_extra
= 0;
4043 static void tcg_cpu_exec(void)
4047 if (next_cpu
== NULL
)
4048 next_cpu
= first_cpu
;
4049 for (; next_cpu
!= NULL
; next_cpu
= next_cpu
->next_cpu
) {
4050 CPUState
*env
= cur_cpu
= next_cpu
;
4054 if (timer_alarm_pending
) {
4055 timer_alarm_pending
= 0;
4058 if (cpu_can_run(env
))
4059 ret
= qemu_cpu_exec(env
);
4060 if (ret
== EXCP_DEBUG
) {
4061 gdb_set_stop_cpu(env
);
4062 debug_requested
= 1;
4068 static int cpu_has_work(CPUState
*env
)
4076 if (qemu_cpu_has_work(env
))
4081 static int tcg_has_work(void)
4085 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
)
4086 if (cpu_has_work(env
))
4091 static int qemu_calculate_timeout(void)
4093 #ifndef CONFIG_IOTHREAD
4098 else if (tcg_has_work())
4100 else if (!use_icount
)
4103 /* XXX: use timeout computed from timers */
4106 /* Advance virtual time to the next event. */
4107 if (use_icount
== 1) {
4108 /* When not using an adaptive execution frequency
4109 we tend to get badly out of sync with real time,
4110 so just delay for a reasonable amount of time. */
4113 delta
= cpu_get_icount() - cpu_get_clock();
4116 /* If virtual time is ahead of real time then just
4118 timeout
= (delta
/ 1000000) + 1;
4120 /* Wait for either IO to occur or the next
4122 add
= qemu_next_deadline();
4123 /* We advance the timer before checking for IO.
4124 Limit the amount we advance so that early IO
4125 activity won't get the guest too far ahead. */
4129 add
= (add
+ (1 << icount_time_shift
) - 1)
4130 >> icount_time_shift
;
4132 timeout
= delta
/ 1000000;
4139 #else /* CONFIG_IOTHREAD */
4144 static int vm_can_run(void)
4146 if (powerdown_requested
)
4148 if (reset_requested
)
4150 if (shutdown_requested
)
4152 if (debug_requested
)
4157 qemu_irq qemu_system_powerdown
;
4159 static void main_loop(void)
4163 #ifdef CONFIG_IOTHREAD
4164 qemu_system_ready
= 1;
4165 qemu_cond_broadcast(&qemu_system_cond
);
4170 #ifdef CONFIG_PROFILER
4173 #ifndef CONFIG_IOTHREAD
4176 #ifdef CONFIG_PROFILER
4177 ti
= profile_getclock();
4179 main_loop_wait(qemu_calculate_timeout());
4180 #ifdef CONFIG_PROFILER
4181 dev_time
+= profile_getclock() - ti
;
4183 } while (vm_can_run());
4185 if (qemu_debug_requested()) {
4186 monitor_protocol_event(QEVENT_DEBUG
, NULL
);
4187 vm_stop(EXCP_DEBUG
);
4189 if (qemu_shutdown_requested()) {
4190 monitor_protocol_event(QEVENT_SHUTDOWN
, NULL
);
4197 if (qemu_reset_requested()) {
4198 monitor_protocol_event(QEVENT_RESET
, NULL
);
4200 qemu_system_reset();
4203 if (qemu_powerdown_requested()) {
4204 monitor_protocol_event(QEVENT_POWERDOWN
, NULL
);
4205 qemu_irq_raise(qemu_system_powerdown
);
4207 if ((r
= qemu_vmstop_requested())) {
4208 monitor_protocol_event(QEVENT_STOP
, NULL
);
4215 static void version(void)
4217 printf("QEMU PC emulator version " QEMU_VERSION QEMU_PKGVERSION
", Copyright (c) 2003-2008 Fabrice Bellard\n");
4220 static void help(int exitcode
)
4223 printf("usage: %s [options] [disk_image]\n"
4225 "'disk_image' is a raw hard image image for IDE hard disk 0\n"
4227 #define DEF(option, opt_arg, opt_enum, opt_help) \
4229 #define DEFHEADING(text) stringify(text) "\n"
4230 #include "qemu-options.h"
4235 "During emulation, the following keys are useful:\n"
4236 "ctrl-alt-f toggle full screen\n"
4237 "ctrl-alt-n switch to virtual console 'n'\n"
4238 "ctrl-alt toggle mouse and keyboard grab\n"
4240 "When using -nographic, press 'ctrl-a h' to get some help.\n"
4245 DEFAULT_NETWORK_SCRIPT
,
4246 DEFAULT_NETWORK_DOWN_SCRIPT
,
4248 DEFAULT_GDBSTUB_PORT
,
4253 #define HAS_ARG 0x0001
4256 #define DEF(option, opt_arg, opt_enum, opt_help) \
4258 #define DEFHEADING(text)
4259 #include "qemu-options.h"
4265 typedef struct QEMUOption
{
4271 static const QEMUOption qemu_options
[] = {
4272 { "h", 0, QEMU_OPTION_h
},
4273 #define DEF(option, opt_arg, opt_enum, opt_help) \
4274 { option, opt_arg, opt_enum },
4275 #define DEFHEADING(text)
4276 #include "qemu-options.h"
4284 struct soundhw soundhw
[] = {
4285 #ifdef HAS_AUDIO_CHOICE
4286 #if defined(TARGET_I386) || defined(TARGET_MIPS)
4292 { .init_isa
= pcspk_audio_init
}
4299 "Creative Sound Blaster 16",
4302 { .init_isa
= SB16_init
}
4306 #ifdef CONFIG_CS4231A
4312 { .init_isa
= cs4231a_init
}
4320 "Yamaha YMF262 (OPL3)",
4322 "Yamaha YM3812 (OPL2)",
4326 { .init_isa
= Adlib_init
}
4333 "Gravis Ultrasound GF1",
4336 { .init_isa
= GUS_init
}
4343 "Intel 82801AA AC97 Audio",
4346 { .init_pci
= ac97_init
}
4350 #ifdef CONFIG_ES1370
4353 "ENSONIQ AudioPCI ES1370",
4356 { .init_pci
= es1370_init
}
4360 #endif /* HAS_AUDIO_CHOICE */
4362 { NULL
, NULL
, 0, 0, { NULL
} }
4365 static void select_soundhw (const char *optarg
)
4369 if (*optarg
== '?') {
4372 printf ("Valid sound card names (comma separated):\n");
4373 for (c
= soundhw
; c
->name
; ++c
) {
4374 printf ("%-11s %s\n", c
->name
, c
->descr
);
4376 printf ("\n-soundhw all will enable all of the above\n");
4377 exit (*optarg
!= '?');
4385 if (!strcmp (optarg
, "all")) {
4386 for (c
= soundhw
; c
->name
; ++c
) {
4394 e
= strchr (p
, ',');
4395 l
= !e
? strlen (p
) : (size_t) (e
- p
);
4397 for (c
= soundhw
; c
->name
; ++c
) {
4398 if (!strncmp (c
->name
, p
, l
) && !c
->name
[l
]) {
4407 "Unknown sound card name (too big to show)\n");
4410 fprintf (stderr
, "Unknown sound card name `%.*s'\n",
4415 p
+= l
+ (e
!= NULL
);
4419 goto show_valid_cards
;
4424 static void select_vgahw (const char *p
)
4429 vga_interface_type
= VGA_NONE
;
4430 if (strstart(p
, "std", &opts
)) {
4431 vga_interface_type
= VGA_STD
;
4432 } else if (strstart(p
, "cirrus", &opts
)) {
4433 vga_interface_type
= VGA_CIRRUS
;
4434 } else if (strstart(p
, "vmware", &opts
)) {
4435 vga_interface_type
= VGA_VMWARE
;
4436 } else if (strstart(p
, "xenfb", &opts
)) {
4437 vga_interface_type
= VGA_XENFB
;
4438 } else if (!strstart(p
, "none", &opts
)) {
4440 fprintf(stderr
, "Unknown vga type: %s\n", p
);
4444 const char *nextopt
;
4446 if (strstart(opts
, ",retrace=", &nextopt
)) {
4448 if (strstart(opts
, "dumb", &nextopt
))
4449 vga_retrace_method
= VGA_RETRACE_DUMB
;
4450 else if (strstart(opts
, "precise", &nextopt
))
4451 vga_retrace_method
= VGA_RETRACE_PRECISE
;
4452 else goto invalid_vga
;
4453 } else goto invalid_vga
;
4459 static int balloon_parse(const char *arg
)
4463 if (strcmp(arg
, "none") == 0) {
4467 if (!strncmp(arg
, "virtio", 6)) {
4468 if (arg
[6] == ',') {
4469 /* have params -> parse them */
4470 opts
= qemu_opts_parse(&qemu_device_opts
, arg
+7, NULL
);
4474 /* create empty opts */
4475 opts
= qemu_opts_create(&qemu_device_opts
, NULL
, 0);
4477 qemu_opt_set(opts
, "driver", "virtio-balloon-pci");
4486 static BOOL WINAPI
qemu_ctrl_handler(DWORD type
)
4488 exit(STATUS_CONTROL_C_EXIT
);
4493 int qemu_uuid_parse(const char *str
, uint8_t *uuid
)
4497 if(strlen(str
) != 36)
4500 ret
= sscanf(str
, UUID_FMT
, &uuid
[0], &uuid
[1], &uuid
[2], &uuid
[3],
4501 &uuid
[4], &uuid
[5], &uuid
[6], &uuid
[7], &uuid
[8], &uuid
[9],
4502 &uuid
[10], &uuid
[11], &uuid
[12], &uuid
[13], &uuid
[14], &uuid
[15]);
4508 smbios_add_field(1, offsetof(struct smbios_type_1
, uuid
), 16, uuid
);
4516 static void termsig_handler(int signal
)
4518 qemu_system_shutdown_request();
4521 static void sigchld_handler(int signal
)
4523 waitpid(-1, NULL
, WNOHANG
);
4526 static void sighandler_setup(void)
4528 struct sigaction act
;
4530 memset(&act
, 0, sizeof(act
));
4531 act
.sa_handler
= termsig_handler
;
4532 sigaction(SIGINT
, &act
, NULL
);
4533 sigaction(SIGHUP
, &act
, NULL
);
4534 sigaction(SIGTERM
, &act
, NULL
);
4536 act
.sa_handler
= sigchld_handler
;
4537 act
.sa_flags
= SA_NOCLDSTOP
;
4538 sigaction(SIGCHLD
, &act
, NULL
);
4544 /* Look for support files in the same directory as the executable. */
4545 static char *find_datadir(const char *argv0
)
4551 len
= GetModuleFileName(NULL
, buf
, sizeof(buf
) - 1);
4558 while (p
!= buf
&& *p
!= '\\')
4561 if (access(buf
, R_OK
) == 0) {
4562 return qemu_strdup(buf
);
4568 /* Find a likely location for support files using the location of the binary.
4569 For installed binaries this will be "$bindir/../share/qemu". When
4570 running from the build tree this will be "$bindir/../pc-bios". */
4571 #define SHARE_SUFFIX "/share/qemu"
4572 #define BUILD_SUFFIX "/pc-bios"
4573 static char *find_datadir(const char *argv0
)
4581 #if defined(__linux__)
4584 len
= readlink("/proc/self/exe", buf
, sizeof(buf
) - 1);
4590 #elif defined(__FreeBSD__)
4593 len
= readlink("/proc/curproc/file", buf
, sizeof(buf
) - 1);
4600 /* If we don't have any way of figuring out the actual executable
4601 location then try argv[0]. */
4603 p
= realpath(argv0
, buf
);
4611 max_len
= strlen(dir
) +
4612 MAX(strlen(SHARE_SUFFIX
), strlen(BUILD_SUFFIX
)) + 1;
4613 res
= qemu_mallocz(max_len
);
4614 snprintf(res
, max_len
, "%s%s", dir
, SHARE_SUFFIX
);
4615 if (access(res
, R_OK
)) {
4616 snprintf(res
, max_len
, "%s%s", dir
, BUILD_SUFFIX
);
4617 if (access(res
, R_OK
)) {
4629 char *qemu_find_file(int type
, const char *name
)
4635 /* If name contains path separators then try it as a straight path. */
4636 if ((strchr(name
, '/') || strchr(name
, '\\'))
4637 && access(name
, R_OK
) == 0) {
4638 return qemu_strdup(name
);
4641 case QEMU_FILE_TYPE_BIOS
:
4644 case QEMU_FILE_TYPE_KEYMAP
:
4645 subdir
= "keymaps/";
4650 len
= strlen(data_dir
) + strlen(name
) + strlen(subdir
) + 2;
4651 buf
= qemu_mallocz(len
);
4652 snprintf(buf
, len
, "%s/%s%s", data_dir
, subdir
, name
);
4653 if (access(buf
, R_OK
)) {
4660 static int device_init_func(QemuOpts
*opts
, void *opaque
)
4664 dev
= qdev_device_add(opts
);
4670 static int chardev_init_func(QemuOpts
*opts
, void *opaque
)
4672 CharDriverState
*chr
;
4674 chr
= qemu_chr_open_opts(opts
, NULL
);
4680 static int mon_init_func(QemuOpts
*opts
, void *opaque
)
4682 CharDriverState
*chr
;
4683 const char *chardev
;
4687 mode
= qemu_opt_get(opts
, "mode");
4691 if (strcmp(mode
, "readline") == 0) {
4692 flags
= MONITOR_USE_READLINE
;
4693 } else if (strcmp(mode
, "control") == 0) {
4694 flags
= MONITOR_USE_CONTROL
;
4696 fprintf(stderr
, "unknown monitor mode \"%s\"\n", mode
);
4700 if (qemu_opt_get_bool(opts
, "default", 0))
4701 flags
|= MONITOR_IS_DEFAULT
;
4703 chardev
= qemu_opt_get(opts
, "chardev");
4704 chr
= qemu_chr_find(chardev
);
4706 fprintf(stderr
, "chardev \"%s\" not found\n", chardev
);
4710 monitor_init(chr
, flags
);
4714 static void monitor_parse(const char *optarg
, const char *mode
)
4716 static int monitor_device_index
= 0;
4722 if (strstart(optarg
, "chardev:", &p
)) {
4723 snprintf(label
, sizeof(label
), "%s", p
);
4725 if (monitor_device_index
) {
4726 snprintf(label
, sizeof(label
), "monitor%d",
4727 monitor_device_index
);
4729 snprintf(label
, sizeof(label
), "monitor");
4732 opts
= qemu_chr_parse_compat(label
, optarg
);
4734 fprintf(stderr
, "parse error: %s\n", optarg
);
4739 opts
= qemu_opts_create(&qemu_mon_opts
, label
, 1);
4741 fprintf(stderr
, "duplicate chardev: %s\n", label
);
4744 qemu_opt_set(opts
, "mode", mode
);
4745 qemu_opt_set(opts
, "chardev", label
);
4747 qemu_opt_set(opts
, "default", "on");
4748 monitor_device_index
++;
4751 struct device_config
{
4753 DEV_USB
, /* -usbdevice */
4755 DEV_SERIAL
, /* -serial */
4756 DEV_PARALLEL
, /* -parallel */
4757 DEV_VIRTCON
, /* -virtioconsole */
4759 const char *cmdline
;
4760 QTAILQ_ENTRY(device_config
) next
;
4762 QTAILQ_HEAD(, device_config
) device_configs
= QTAILQ_HEAD_INITIALIZER(device_configs
);
4764 static void add_device_config(int type
, const char *cmdline
)
4766 struct device_config
*conf
;
4768 conf
= qemu_mallocz(sizeof(*conf
));
4770 conf
->cmdline
= cmdline
;
4771 QTAILQ_INSERT_TAIL(&device_configs
, conf
, next
);
4774 static int foreach_device_config(int type
, int (*func
)(const char *cmdline
))
4776 struct device_config
*conf
;
4779 QTAILQ_FOREACH(conf
, &device_configs
, next
) {
4780 if (conf
->type
!= type
)
4782 rc
= func(conf
->cmdline
);
4789 static int serial_parse(const char *devname
)
4791 static int index
= 0;
4794 if (strcmp(devname
, "none") == 0)
4796 if (index
== MAX_SERIAL_PORTS
) {
4797 fprintf(stderr
, "qemu: too many serial ports\n");
4800 snprintf(label
, sizeof(label
), "serial%d", index
);
4801 serial_hds
[index
] = qemu_chr_open(label
, devname
, NULL
);
4802 if (!serial_hds
[index
]) {
4803 fprintf(stderr
, "qemu: could not open serial device '%s': %s\n",
4804 devname
, strerror(errno
));
4811 static int parallel_parse(const char *devname
)
4813 static int index
= 0;
4816 if (strcmp(devname
, "none") == 0)
4818 if (index
== MAX_PARALLEL_PORTS
) {
4819 fprintf(stderr
, "qemu: too many parallel ports\n");
4822 snprintf(label
, sizeof(label
), "parallel%d", index
);
4823 parallel_hds
[index
] = qemu_chr_open(label
, devname
, NULL
);
4824 if (!parallel_hds
[index
]) {
4825 fprintf(stderr
, "qemu: could not open parallel device '%s': %s\n",
4826 devname
, strerror(errno
));
4833 static int virtcon_parse(const char *devname
)
4835 static int index
= 0;
4838 if (strcmp(devname
, "none") == 0)
4840 if (index
== MAX_VIRTIO_CONSOLES
) {
4841 fprintf(stderr
, "qemu: too many virtio consoles\n");
4844 snprintf(label
, sizeof(label
), "virtcon%d", index
);
4845 virtcon_hds
[index
] = qemu_chr_open(label
, devname
, NULL
);
4846 if (!virtcon_hds
[index
]) {
4847 fprintf(stderr
, "qemu: could not open virtio console '%s': %s\n",
4848 devname
, strerror(errno
));
4855 int main(int argc
, char **argv
, char **envp
)
4857 const char *gdbstub_dev
= NULL
;
4858 uint32_t boot_devices_bitmap
= 0;
4860 int snapshot
, linux_boot
, net_boot
;
4861 const char *initrd_filename
;
4862 const char *kernel_filename
, *kernel_cmdline
;
4863 char boot_devices
[33] = "cad"; /* default to HD->floppy->CD-ROM */
4865 DisplayChangeListener
*dcl
;
4866 int cyls
, heads
, secs
, translation
;
4867 QemuOpts
*hda_opts
= NULL
, *opts
;
4869 const char *r
, *optarg
;
4870 const char *loadvm
= NULL
;
4871 QEMUMachine
*machine
;
4872 const char *cpu_model
;
4877 const char *pid_file
= NULL
;
4878 const char *incoming
= NULL
;
4881 struct passwd
*pwd
= NULL
;
4882 const char *chroot_dir
= NULL
;
4883 const char *run_as
= NULL
;
4886 int show_vnc_port
= 0;
4890 qemu_errors_to_file(stderr
);
4891 qemu_cache_utils_init(envp
);
4893 QLIST_INIT (&vm_change_state_head
);
4896 struct sigaction act
;
4897 sigfillset(&act
.sa_mask
);
4899 act
.sa_handler
= SIG_IGN
;
4900 sigaction(SIGPIPE
, &act
, NULL
);
4903 SetConsoleCtrlHandler(qemu_ctrl_handler
, TRUE
);
4904 /* Note: cpu_interrupt() is currently not SMP safe, so we force
4905 QEMU to run on a single CPU */
4910 h
= GetCurrentProcess();
4911 if (GetProcessAffinityMask(h
, &mask
, &smask
)) {
4912 for(i
= 0; i
< 32; i
++) {
4913 if (mask
& (1 << i
))
4918 SetProcessAffinityMask(h
, mask
);
4924 module_call_init(MODULE_INIT_MACHINE
);
4925 machine
= find_default_machine();
4927 initrd_filename
= NULL
;
4930 kernel_filename
= NULL
;
4931 kernel_cmdline
= "";
4932 cyls
= heads
= secs
= 0;
4933 translation
= BIOS_ATA_TRANSLATION_AUTO
;
4935 for (i
= 0; i
< MAX_NODES
; i
++) {
4937 node_cpumask
[i
] = 0;
4952 hda_opts
= drive_add(argv
[optind
++], HD_ALIAS
, 0);
4954 const QEMUOption
*popt
;
4957 /* Treat --foo the same as -foo. */
4960 popt
= qemu_options
;
4963 fprintf(stderr
, "%s: invalid option -- '%s'\n",
4967 if (!strcmp(popt
->name
, r
+ 1))
4971 if (popt
->flags
& HAS_ARG
) {
4972 if (optind
>= argc
) {
4973 fprintf(stderr
, "%s: option '%s' requires an argument\n",
4977 optarg
= argv
[optind
++];
4982 switch(popt
->index
) {
4984 machine
= find_machine(optarg
);
4987 printf("Supported machines are:\n");
4988 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
4990 printf("%-10s %s (alias of %s)\n",
4991 m
->alias
, m
->desc
, m
->name
);
4992 printf("%-10s %s%s\n",
4994 m
->is_default
? " (default)" : "");
4996 exit(*optarg
!= '?');
4999 case QEMU_OPTION_cpu
:
5000 /* hw initialization will check this */
5001 if (*optarg
== '?') {
5002 /* XXX: implement xxx_cpu_list for targets that still miss it */
5003 #if defined(cpu_list)
5004 cpu_list(stdout
, &fprintf
);
5011 case QEMU_OPTION_initrd
:
5012 initrd_filename
= optarg
;
5014 case QEMU_OPTION_hda
:
5016 hda_opts
= drive_add(optarg
, HD_ALIAS
, 0);
5018 hda_opts
= drive_add(optarg
, HD_ALIAS
5019 ",cyls=%d,heads=%d,secs=%d%s",
5020 0, cyls
, heads
, secs
,
5021 translation
== BIOS_ATA_TRANSLATION_LBA
?
5023 translation
== BIOS_ATA_TRANSLATION_NONE
?
5024 ",trans=none" : "");
5026 case QEMU_OPTION_hdb
:
5027 case QEMU_OPTION_hdc
:
5028 case QEMU_OPTION_hdd
:
5029 drive_add(optarg
, HD_ALIAS
, popt
->index
- QEMU_OPTION_hda
);
5031 case QEMU_OPTION_drive
:
5032 drive_add(NULL
, "%s", optarg
);
5034 case QEMU_OPTION_set
:
5035 if (qemu_set_option(optarg
) != 0)
5038 case QEMU_OPTION_global
:
5039 if (qemu_global_option(optarg
) != 0)
5042 case QEMU_OPTION_mtdblock
:
5043 drive_add(optarg
, MTD_ALIAS
);
5045 case QEMU_OPTION_sd
:
5046 drive_add(optarg
, SD_ALIAS
);
5048 case QEMU_OPTION_pflash
:
5049 drive_add(optarg
, PFLASH_ALIAS
);
5051 case QEMU_OPTION_snapshot
:
5054 case QEMU_OPTION_hdachs
:
5058 cyls
= strtol(p
, (char **)&p
, 0);
5059 if (cyls
< 1 || cyls
> 16383)
5064 heads
= strtol(p
, (char **)&p
, 0);
5065 if (heads
< 1 || heads
> 16)
5070 secs
= strtol(p
, (char **)&p
, 0);
5071 if (secs
< 1 || secs
> 63)
5075 if (!strcmp(p
, "none"))
5076 translation
= BIOS_ATA_TRANSLATION_NONE
;
5077 else if (!strcmp(p
, "lba"))
5078 translation
= BIOS_ATA_TRANSLATION_LBA
;
5079 else if (!strcmp(p
, "auto"))
5080 translation
= BIOS_ATA_TRANSLATION_AUTO
;
5083 } else if (*p
!= '\0') {
5085 fprintf(stderr
, "qemu: invalid physical CHS format\n");
5088 if (hda_opts
!= NULL
) {
5090 snprintf(num
, sizeof(num
), "%d", cyls
);
5091 qemu_opt_set(hda_opts
, "cyls", num
);
5092 snprintf(num
, sizeof(num
), "%d", heads
);
5093 qemu_opt_set(hda_opts
, "heads", num
);
5094 snprintf(num
, sizeof(num
), "%d", secs
);
5095 qemu_opt_set(hda_opts
, "secs", num
);
5096 if (translation
== BIOS_ATA_TRANSLATION_LBA
)
5097 qemu_opt_set(hda_opts
, "trans", "lba");
5098 if (translation
== BIOS_ATA_TRANSLATION_NONE
)
5099 qemu_opt_set(hda_opts
, "trans", "none");
5103 case QEMU_OPTION_numa
:
5104 if (nb_numa_nodes
>= MAX_NODES
) {
5105 fprintf(stderr
, "qemu: too many NUMA nodes\n");
5110 case QEMU_OPTION_nographic
:
5111 display_type
= DT_NOGRAPHIC
;
5113 #ifdef CONFIG_CURSES
5114 case QEMU_OPTION_curses
:
5115 display_type
= DT_CURSES
;
5118 case QEMU_OPTION_portrait
:
5121 case QEMU_OPTION_kernel
:
5122 kernel_filename
= optarg
;
5124 case QEMU_OPTION_append
:
5125 kernel_cmdline
= optarg
;
5127 case QEMU_OPTION_cdrom
:
5128 drive_add(optarg
, CDROM_ALIAS
);
5130 case QEMU_OPTION_boot
:
5132 static const char * const params
[] = {
5133 "order", "once", "menu", NULL
5135 char buf
[sizeof(boot_devices
)];
5136 char *standard_boot_devices
;
5139 if (!strchr(optarg
, '=')) {
5141 pstrcpy(buf
, sizeof(buf
), optarg
);
5142 } else if (check_params(buf
, sizeof(buf
), params
, optarg
) < 0) {
5144 "qemu: unknown boot parameter '%s' in '%s'\n",
5150 get_param_value(buf
, sizeof(buf
), "order", optarg
)) {
5151 boot_devices_bitmap
= parse_bootdevices(buf
);
5152 pstrcpy(boot_devices
, sizeof(boot_devices
), buf
);
5155 if (get_param_value(buf
, sizeof(buf
),
5157 boot_devices_bitmap
|= parse_bootdevices(buf
);
5158 standard_boot_devices
= qemu_strdup(boot_devices
);
5159 pstrcpy(boot_devices
, sizeof(boot_devices
), buf
);
5160 qemu_register_reset(restore_boot_devices
,
5161 standard_boot_devices
);
5163 if (get_param_value(buf
, sizeof(buf
),
5165 if (!strcmp(buf
, "on")) {
5167 } else if (!strcmp(buf
, "off")) {
5171 "qemu: invalid option value '%s'\n",
5179 case QEMU_OPTION_fda
:
5180 case QEMU_OPTION_fdb
:
5181 drive_add(optarg
, FD_ALIAS
, popt
->index
- QEMU_OPTION_fda
);
5184 case QEMU_OPTION_no_fd_bootchk
:
5188 case QEMU_OPTION_netdev
:
5189 if (net_client_parse(&qemu_netdev_opts
, optarg
) == -1) {
5193 case QEMU_OPTION_net
:
5194 if (net_client_parse(&qemu_net_opts
, optarg
) == -1) {
5199 case QEMU_OPTION_tftp
:
5200 legacy_tftp_prefix
= optarg
;
5202 case QEMU_OPTION_bootp
:
5203 legacy_bootp_filename
= optarg
;
5206 case QEMU_OPTION_smb
:
5207 if (net_slirp_smb(optarg
) < 0)
5211 case QEMU_OPTION_redir
:
5212 if (net_slirp_redir(optarg
) < 0)
5216 case QEMU_OPTION_bt
:
5217 add_device_config(DEV_BT
, optarg
);
5220 case QEMU_OPTION_audio_help
:
5224 case QEMU_OPTION_soundhw
:
5225 select_soundhw (optarg
);
5231 case QEMU_OPTION_version
:
5235 case QEMU_OPTION_m
: {
5239 value
= strtoul(optarg
, &ptr
, 10);
5241 case 0: case 'M': case 'm':
5248 fprintf(stderr
, "qemu: invalid ram size: %s\n", optarg
);
5252 /* On 32-bit hosts, QEMU is limited by virtual address space */
5253 if (value
> (2047 << 20) && HOST_LONG_BITS
== 32) {
5254 fprintf(stderr
, "qemu: at most 2047 MB RAM can be simulated\n");
5257 if (value
!= (uint64_t)(ram_addr_t
)value
) {
5258 fprintf(stderr
, "qemu: ram size too large\n");
5267 const CPULogItem
*item
;
5269 mask
= cpu_str_to_log_mask(optarg
);
5271 printf("Log items (comma separated):\n");
5272 for(item
= cpu_log_items
; item
->mask
!= 0; item
++) {
5273 printf("%-10s %s\n", item
->name
, item
->help
);
5281 gdbstub_dev
= "tcp::" DEFAULT_GDBSTUB_PORT
;
5283 case QEMU_OPTION_gdb
:
5284 gdbstub_dev
= optarg
;
5289 case QEMU_OPTION_bios
:
5292 case QEMU_OPTION_singlestep
:
5299 keyboard_layout
= optarg
;
5301 case QEMU_OPTION_localtime
:
5304 case QEMU_OPTION_vga
:
5305 select_vgahw (optarg
);
5307 #if defined(TARGET_PPC) || defined(TARGET_SPARC)
5313 w
= strtol(p
, (char **)&p
, 10);
5316 fprintf(stderr
, "qemu: invalid resolution or depth\n");
5322 h
= strtol(p
, (char **)&p
, 10);
5327 depth
= strtol(p
, (char **)&p
, 10);
5328 if (depth
!= 8 && depth
!= 15 && depth
!= 16 &&
5329 depth
!= 24 && depth
!= 32)
5331 } else if (*p
== '\0') {
5332 depth
= graphic_depth
;
5339 graphic_depth
= depth
;
5343 case QEMU_OPTION_echr
:
5346 term_escape_char
= strtol(optarg
, &r
, 0);
5348 printf("Bad argument to echr\n");
5351 case QEMU_OPTION_monitor
:
5352 monitor_parse(optarg
, "readline");
5353 default_monitor
= 0;
5355 case QEMU_OPTION_qmp
:
5356 monitor_parse(optarg
, "control");
5357 default_monitor
= 0;
5359 case QEMU_OPTION_mon
:
5360 opts
= qemu_opts_parse(&qemu_mon_opts
, optarg
, "chardev");
5362 fprintf(stderr
, "parse error: %s\n", optarg
);
5365 default_monitor
= 0;
5367 case QEMU_OPTION_chardev
:
5368 opts
= qemu_opts_parse(&qemu_chardev_opts
, optarg
, "backend");
5370 fprintf(stderr
, "parse error: %s\n", optarg
);
5374 case QEMU_OPTION_serial
:
5375 add_device_config(DEV_SERIAL
, optarg
);
5378 case QEMU_OPTION_watchdog
:
5381 "qemu: only one watchdog option may be given\n");
5386 case QEMU_OPTION_watchdog_action
:
5387 if (select_watchdog_action(optarg
) == -1) {
5388 fprintf(stderr
, "Unknown -watchdog-action parameter\n");
5392 case QEMU_OPTION_virtiocon
:
5393 add_device_config(DEV_VIRTCON
, optarg
);
5394 default_virtcon
= 0;
5396 case QEMU_OPTION_parallel
:
5397 add_device_config(DEV_PARALLEL
, optarg
);
5398 default_parallel
= 0;
5400 case QEMU_OPTION_loadvm
:
5403 case QEMU_OPTION_full_screen
:
5407 case QEMU_OPTION_no_frame
:
5410 case QEMU_OPTION_alt_grab
:
5413 case QEMU_OPTION_ctrl_grab
:
5416 case QEMU_OPTION_no_quit
:
5419 case QEMU_OPTION_sdl
:
5420 display_type
= DT_SDL
;
5423 case QEMU_OPTION_pidfile
:
5427 case QEMU_OPTION_win2k_hack
:
5428 win2k_install_hack
= 1;
5430 case QEMU_OPTION_rtc_td_hack
:
5433 case QEMU_OPTION_acpitable
:
5434 if(acpi_table_add(optarg
) < 0) {
5435 fprintf(stderr
, "Wrong acpi table provided\n");
5439 case QEMU_OPTION_smbios
:
5440 if(smbios_entry_add(optarg
) < 0) {
5441 fprintf(stderr
, "Wrong smbios provided\n");
5447 case QEMU_OPTION_enable_kvm
:
5451 case QEMU_OPTION_usb
:
5454 case QEMU_OPTION_usbdevice
:
5456 add_device_config(DEV_USB
, optarg
);
5458 case QEMU_OPTION_device
:
5459 if (!qemu_opts_parse(&qemu_device_opts
, optarg
, "driver")) {
5463 case QEMU_OPTION_smp
:
5466 fprintf(stderr
, "Invalid number of CPUs\n");
5469 if (max_cpus
< smp_cpus
) {
5470 fprintf(stderr
, "maxcpus must be equal to or greater than "
5474 if (max_cpus
> 255) {
5475 fprintf(stderr
, "Unsupported number of maxcpus\n");
5479 case QEMU_OPTION_vnc
:
5480 display_type
= DT_VNC
;
5481 vnc_display
= optarg
;
5484 case QEMU_OPTION_no_acpi
:
5487 case QEMU_OPTION_no_hpet
:
5490 case QEMU_OPTION_balloon
:
5491 if (balloon_parse(optarg
) < 0) {
5492 fprintf(stderr
, "Unknown -balloon argument %s\n", optarg
);
5497 case QEMU_OPTION_no_reboot
:
5500 case QEMU_OPTION_no_shutdown
:
5503 case QEMU_OPTION_show_cursor
:
5506 case QEMU_OPTION_uuid
:
5507 if(qemu_uuid_parse(optarg
, qemu_uuid
) < 0) {
5508 fprintf(stderr
, "Fail to parse UUID string."
5509 " Wrong format.\n");
5514 case QEMU_OPTION_daemonize
:
5518 case QEMU_OPTION_option_rom
:
5519 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
5520 fprintf(stderr
, "Too many option ROMs\n");
5523 option_rom
[nb_option_roms
] = optarg
;
5526 #if defined(TARGET_ARM) || defined(TARGET_M68K)
5527 case QEMU_OPTION_semihosting
:
5528 semihosting_enabled
= 1;
5531 case QEMU_OPTION_name
:
5532 qemu_name
= qemu_strdup(optarg
);
5534 char *p
= strchr(qemu_name
, ',');
5537 if (strncmp(p
, "process=", 8)) {
5538 fprintf(stderr
, "Unknown subargument %s to -name", p
);
5546 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
5547 case QEMU_OPTION_prom_env
:
5548 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
5549 fprintf(stderr
, "Too many prom variables\n");
5552 prom_envs
[nb_prom_envs
] = optarg
;
5557 case QEMU_OPTION_old_param
:
5561 case QEMU_OPTION_clock
:
5562 configure_alarms(optarg
);
5564 case QEMU_OPTION_startdate
:
5565 configure_rtc_date_offset(optarg
, 1);
5567 case QEMU_OPTION_rtc
:
5568 opts
= qemu_opts_parse(&qemu_rtc_opts
, optarg
, NULL
);
5570 fprintf(stderr
, "parse error: %s\n", optarg
);
5573 configure_rtc(opts
);
5575 case QEMU_OPTION_tb_size
:
5576 tb_size
= strtol(optarg
, NULL
, 0);
5580 case QEMU_OPTION_icount
:
5582 if (strcmp(optarg
, "auto") == 0) {
5583 icount_time_shift
= -1;
5585 icount_time_shift
= strtol(optarg
, NULL
, 0);
5588 case QEMU_OPTION_incoming
:
5591 case QEMU_OPTION_nodefaults
:
5593 default_parallel
= 0;
5594 default_virtcon
= 0;
5595 default_monitor
= 0;
5601 case QEMU_OPTION_chroot
:
5602 chroot_dir
= optarg
;
5604 case QEMU_OPTION_runas
:
5609 case QEMU_OPTION_xen_domid
:
5610 xen_domid
= atoi(optarg
);
5612 case QEMU_OPTION_xen_create
:
5613 xen_mode
= XEN_CREATE
;
5615 case QEMU_OPTION_xen_attach
:
5616 xen_mode
= XEN_ATTACH
;
5619 case QEMU_OPTION_readconfig
:
5622 fp
= fopen(optarg
, "r");
5624 fprintf(stderr
, "open %s: %s\n", optarg
, strerror(errno
));
5627 if (qemu_config_parse(fp
) != 0) {
5633 case QEMU_OPTION_writeconfig
:
5636 if (strcmp(optarg
, "-") == 0) {
5639 fp
= fopen(optarg
, "w");
5641 fprintf(stderr
, "open %s: %s\n", optarg
, strerror(errno
));
5645 qemu_config_write(fp
);
5653 /* If no data_dir is specified then try to find it relative to the
5656 data_dir
= find_datadir(argv
[0]);
5658 /* If all else fails use the install patch specified when building. */
5660 data_dir
= CONFIG_QEMU_SHAREDIR
;
5664 * Default to max_cpus = smp_cpus, in case the user doesn't
5665 * specify a max_cpus value.
5668 max_cpus
= smp_cpus
;
5670 machine
->max_cpus
= machine
->max_cpus
?: 1; /* Default to UP */
5671 if (smp_cpus
> machine
->max_cpus
) {
5672 fprintf(stderr
, "Number of SMP cpus requested (%d), exceeds max cpus "
5673 "supported by machine `%s' (%d)\n", smp_cpus
, machine
->name
,
5678 qemu_opts_foreach(&qemu_device_opts
, default_driver_check
, NULL
, 0);
5680 if (machine
->no_serial
) {
5683 if (machine
->no_parallel
) {
5684 default_parallel
= 0;
5686 if (!machine
->use_virtcon
) {
5687 default_virtcon
= 0;
5689 if (machine
->no_vga
) {
5693 if (display_type
== DT_NOGRAPHIC
) {
5694 if (default_parallel
)
5695 add_device_config(DEV_PARALLEL
, "null");
5696 if (default_serial
&& default_monitor
) {
5697 add_device_config(DEV_SERIAL
, "mon:stdio");
5698 } else if (default_virtcon
&& default_monitor
) {
5699 add_device_config(DEV_VIRTCON
, "mon:stdio");
5702 add_device_config(DEV_SERIAL
, "stdio");
5703 if (default_virtcon
)
5704 add_device_config(DEV_VIRTCON
, "stdio");
5705 if (default_monitor
)
5706 monitor_parse("stdio", "readline");
5710 add_device_config(DEV_SERIAL
, "vc:80Cx24C");
5711 if (default_parallel
)
5712 add_device_config(DEV_PARALLEL
, "vc:80Cx24C");
5713 if (default_monitor
)
5714 monitor_parse("vc:80Cx24C", "readline");
5717 vga_interface_type
= VGA_CIRRUS
;
5719 if (qemu_opts_foreach(&qemu_chardev_opts
, chardev_init_func
, NULL
, 1) != 0)
5726 if (pipe(fds
) == -1)
5737 len
= read(fds
[0], &status
, 1);
5738 if (len
== -1 && (errno
== EINTR
))
5743 else if (status
== 1) {
5744 fprintf(stderr
, "Could not acquire pidfile: %s\n", strerror(errno
));
5752 qemu_set_cloexec(fds
[1]);
5764 signal(SIGTSTP
, SIG_IGN
);
5765 signal(SIGTTOU
, SIG_IGN
);
5766 signal(SIGTTIN
, SIG_IGN
);
5769 if (pid_file
&& qemu_create_pidfile(pid_file
) != 0) {
5772 write(fds
[1], &status
, 1);
5774 fprintf(stderr
, "Could not acquire pid file: %s\n", strerror(errno
));
5779 if (kvm_enabled()) {
5782 ret
= kvm_init(smp_cpus
);
5784 fprintf(stderr
, "failed to initialize KVM\n");
5789 if (qemu_init_main_loop()) {
5790 fprintf(stderr
, "qemu_init_main_loop failed\n");
5793 linux_boot
= (kernel_filename
!= NULL
);
5795 if (!linux_boot
&& *kernel_cmdline
!= '\0') {
5796 fprintf(stderr
, "-append only allowed with -kernel option\n");
5800 if (!linux_boot
&& initrd_filename
!= NULL
) {
5801 fprintf(stderr
, "-initrd only allowed with -kernel option\n");
5806 /* Win32 doesn't support line-buffering and requires size >= 2 */
5807 setvbuf(stdout
, NULL
, _IOLBF
, 0);
5810 if (init_timer_alarm() < 0) {
5811 fprintf(stderr
, "could not initialize alarm timer\n");
5814 if (use_icount
&& icount_time_shift
< 0) {
5816 /* 125MIPS seems a reasonable initial guess at the guest speed.
5817 It will be corrected fairly quickly anyway. */
5818 icount_time_shift
= 3;
5819 init_icount_adjust();
5826 if (net_init_clients() < 0) {
5830 net_boot
= (boot_devices_bitmap
>> ('n' - 'a')) & 0xF;
5831 net_set_boot_mask(net_boot
);
5833 /* init the bluetooth world */
5834 if (foreach_device_config(DEV_BT
, bt_parse
))
5837 /* init the memory */
5839 ram_size
= DEFAULT_RAM_SIZE
* 1024 * 1024;
5841 /* init the dynamic translator */
5842 cpu_exec_init_all(tb_size
* 1024 * 1024);
5844 bdrv_init_with_whitelist();
5848 if (default_drive
) {
5849 /* we always create the cdrom drive, even if no disk is there */
5850 drive_add(NULL
, CDROM_ALIAS
);
5852 /* we always create at least one floppy */
5853 drive_add(NULL
, FD_ALIAS
, 0);
5855 /* we always create one sd slot, even if no card is in it */
5856 drive_add(NULL
, SD_ALIAS
);
5859 /* open the virtual block devices */
5861 qemu_opts_foreach(&qemu_drive_opts
, drive_enable_snapshot
, NULL
, 0);
5862 if (qemu_opts_foreach(&qemu_drive_opts
, drive_init_func
, machine
, 1) != 0)
5865 vmstate_register(0, &vmstate_timers
,&timers_state
);
5866 register_savevm_live("ram", 0, 3, NULL
, ram_save_live
, NULL
,
5869 if (nb_numa_nodes
> 0) {
5872 if (nb_numa_nodes
> smp_cpus
) {
5873 nb_numa_nodes
= smp_cpus
;
5876 /* If no memory size if given for any node, assume the default case
5877 * and distribute the available memory equally across all nodes
5879 for (i
= 0; i
< nb_numa_nodes
; i
++) {
5880 if (node_mem
[i
] != 0)
5883 if (i
== nb_numa_nodes
) {
5884 uint64_t usedmem
= 0;
5886 /* On Linux, the each node's border has to be 8MB aligned,
5887 * the final node gets the rest.
5889 for (i
= 0; i
< nb_numa_nodes
- 1; i
++) {
5890 node_mem
[i
] = (ram_size
/ nb_numa_nodes
) & ~((1 << 23UL) - 1);
5891 usedmem
+= node_mem
[i
];
5893 node_mem
[i
] = ram_size
- usedmem
;
5896 for (i
= 0; i
< nb_numa_nodes
; i
++) {
5897 if (node_cpumask
[i
] != 0)
5900 /* assigning the VCPUs round-robin is easier to implement, guest OSes
5901 * must cope with this anyway, because there are BIOSes out there in
5902 * real machines which also use this scheme.
5904 if (i
== nb_numa_nodes
) {
5905 for (i
= 0; i
< smp_cpus
; i
++) {
5906 node_cpumask
[i
% nb_numa_nodes
] |= 1 << i
;
5911 if (foreach_device_config(DEV_SERIAL
, serial_parse
) < 0)
5913 if (foreach_device_config(DEV_PARALLEL
, parallel_parse
) < 0)
5915 if (foreach_device_config(DEV_VIRTCON
, virtcon_parse
) < 0)
5918 module_call_init(MODULE_INIT_DEVICE
);
5921 i
= select_watchdog(watchdog
);
5923 exit (i
== 1 ? 1 : 0);
5926 if (machine
->compat_props
) {
5927 qdev_prop_register_global_list(machine
->compat_props
);
5931 machine
->init(ram_size
, boot_devices
,
5932 kernel_filename
, kernel_cmdline
, initrd_filename
, cpu_model
);
5936 /* must be after terminal init, SDL library changes signal handlers */
5940 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
5941 for (i
= 0; i
< nb_numa_nodes
; i
++) {
5942 if (node_cpumask
[i
] & (1 << env
->cpu_index
)) {
5948 current_machine
= machine
;
5950 /* init USB devices */
5952 if (foreach_device_config(DEV_USB
, usb_parse
) < 0)
5956 /* init generic devices */
5957 if (qemu_opts_foreach(&qemu_device_opts
, device_init_func
, NULL
, 1) != 0)
5961 dumb_display_init();
5962 /* just use the first displaystate for the moment */
5965 if (display_type
== DT_DEFAULT
) {
5966 #if defined(CONFIG_SDL) || defined(CONFIG_COCOA)
5967 display_type
= DT_SDL
;
5969 display_type
= DT_VNC
;
5970 vnc_display
= "localhost:0,to=99";
5976 switch (display_type
) {
5979 #if defined(CONFIG_CURSES)
5981 curses_display_init(ds
, full_screen
);
5984 #if defined(CONFIG_SDL)
5986 sdl_display_init(ds
, full_screen
, no_frame
);
5988 #elif defined(CONFIG_COCOA)
5990 cocoa_display_init(ds
, full_screen
);
5994 vnc_display_init(ds
);
5995 if (vnc_display_open(ds
, vnc_display
) < 0)
5998 if (show_vnc_port
) {
5999 printf("VNC server running on `%s'\n", vnc_display_local_addr(ds
));
6007 dcl
= ds
->listeners
;
6008 while (dcl
!= NULL
) {
6009 if (dcl
->dpy_refresh
!= NULL
) {
6010 ds
->gui_timer
= qemu_new_timer(rt_clock
, gui_update
, ds
);
6011 qemu_mod_timer(ds
->gui_timer
, qemu_get_clock(rt_clock
));
6016 if (display_type
== DT_NOGRAPHIC
|| display_type
== DT_VNC
) {
6017 nographic_timer
= qemu_new_timer(rt_clock
, nographic_update
, NULL
);
6018 qemu_mod_timer(nographic_timer
, qemu_get_clock(rt_clock
));
6021 text_consoles_set_display(display_state
);
6023 if (qemu_opts_foreach(&qemu_mon_opts
, mon_init_func
, NULL
, 1) != 0)
6026 if (gdbstub_dev
&& gdbserver_start(gdbstub_dev
) < 0) {
6027 fprintf(stderr
, "qemu: could not open gdbserver on device '%s'\n",
6032 qdev_machine_creation_done();
6036 qemu_system_reset();
6038 if (load_vmstate(cur_mon
, loadvm
) < 0) {
6044 qemu_start_incoming_migration(incoming
);
6045 } else if (autostart
) {
6055 len
= write(fds
[1], &status
, 1);
6056 if (len
== -1 && (errno
== EINTR
))
6063 TFR(fd
= qemu_open("/dev/null", O_RDWR
));
6069 pwd
= getpwnam(run_as
);
6071 fprintf(stderr
, "User \"%s\" doesn't exist\n", run_as
);
6077 if (chroot(chroot_dir
) < 0) {
6078 fprintf(stderr
, "chroot failed\n");
6085 if (setgid(pwd
->pw_gid
) < 0) {
6086 fprintf(stderr
, "Failed to setgid(%d)\n", pwd
->pw_gid
);
6089 if (setuid(pwd
->pw_uid
) < 0) {
6090 fprintf(stderr
, "Failed to setuid(%d)\n", pwd
->pw_uid
);
6093 if (setuid(0) != -1) {
6094 fprintf(stderr
, "Dropping privileges failed\n");