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 #define MAX_VIRTIO_CONSOLES 1
178 static const char *data_dir
;
179 const char *bios_name
= NULL
;
180 /* Note: drives_table[MAX_DRIVES] is a dummy block driver if none available
181 to store the VM snapshots */
182 struct drivelist drives
= QTAILQ_HEAD_INITIALIZER(drives
);
183 struct driveoptlist driveopts
= QTAILQ_HEAD_INITIALIZER(driveopts
);
184 enum vga_retrace_method vga_retrace_method
= VGA_RETRACE_DUMB
;
185 DisplayType display_type
= DT_DEFAULT
;
186 const char* keyboard_layout
= NULL
;
188 const char *mem_path
= NULL
;
190 int mem_prealloc
= 0; /* force preallocation of physical target memory */
193 NICInfo nd_table
[MAX_NICS
];
196 static int rtc_utc
= 1;
197 static int rtc_date_offset
= -1; /* -1 means no change */
198 QEMUClock
*rtc_clock
;
199 int vga_interface_type
= VGA_NONE
;
201 int graphic_width
= 1024;
202 int graphic_height
= 768;
203 int graphic_depth
= 8;
205 int graphic_width
= 800;
206 int graphic_height
= 600;
207 int graphic_depth
= 15;
209 static int full_screen
= 0;
211 static int no_frame
= 0;
214 CharDriverState
*serial_hds
[MAX_SERIAL_PORTS
];
215 CharDriverState
*parallel_hds
[MAX_PARALLEL_PORTS
];
216 CharDriverState
*virtcon_hds
[MAX_VIRTIO_CONSOLES
];
218 int win2k_install_hack
= 0;
227 const char *vnc_display
;
228 int acpi_enabled
= 1;
234 int graphic_rotate
= 0;
235 uint8_t irq0override
= 1;
239 const char *watchdog
;
240 const char *option_rom
[MAX_OPTION_ROMS
];
242 int semihosting_enabled
= 0;
246 const char *qemu_name
;
249 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
250 unsigned int nb_prom_envs
= 0;
251 const char *prom_envs
[MAX_PROM_ENVS
];
256 uint64_t node_mem
[MAX_NODES
];
257 uint64_t node_cpumask
[MAX_NODES
];
259 static CPUState
*cur_cpu
;
260 static CPUState
*next_cpu
;
261 static int timer_alarm_pending
= 1;
262 /* Conversion factor from emulated instructions to virtual clock ticks. */
263 static int icount_time_shift
;
264 /* Arbitrarily pick 1MIPS as the minimum allowable speed. */
265 #define MAX_ICOUNT_SHIFT 10
266 /* Compensate for varying guest execution speed. */
267 static int64_t qemu_icount_bias
;
268 static QEMUTimer
*icount_rt_timer
;
269 static QEMUTimer
*icount_vm_timer
;
270 static QEMUTimer
*nographic_timer
;
272 uint8_t qemu_uuid
[16];
274 static QEMUBootSetHandler
*boot_set_handler
;
275 static void *boot_set_opaque
;
278 #define SIG_IPI (SIGRTMIN+4)
280 #define SIG_IPI SIGUSR1
283 static int default_serial
= 1;
284 static int default_parallel
= 1;
285 static int default_virtcon
= 1;
286 static int default_monitor
= 1;
287 static int default_vga
= 1;
288 static int default_floppy
= 1;
289 static int default_cdrom
= 1;
290 static int default_sdcard
= 1;
296 { .driver
= "isa-serial", .flag
= &default_serial
},
297 { .driver
= "isa-parallel", .flag
= &default_parallel
},
298 { .driver
= "isa-fdc", .flag
= &default_floppy
},
299 { .driver
= "ide-drive", .flag
= &default_cdrom
},
300 { .driver
= "virtio-serial-pci", .flag
= &default_virtcon
},
301 { .driver
= "virtio-serial-s390", .flag
= &default_virtcon
},
302 { .driver
= "virtio-serial", .flag
= &default_virtcon
},
303 { .driver
= "VGA", .flag
= &default_vga
},
304 { .driver
= "cirrus-vga", .flag
= &default_vga
},
305 { .driver
= "vmware-svga", .flag
= &default_vga
},
308 static int default_driver_check(QemuOpts
*opts
, void *opaque
)
310 const char *driver
= qemu_opt_get(opts
, "driver");
315 for (i
= 0; i
< ARRAY_SIZE(default_list
); i
++) {
316 if (strcmp(default_list
[i
].driver
, driver
) != 0)
318 *(default_list
[i
].flag
) = 0;
323 /***********************************************************/
324 /* x86 ISA bus support */
326 target_phys_addr_t isa_mem_base
= 0;
329 /***********************************************************/
330 void hw_error(const char *fmt
, ...)
336 fprintf(stderr
, "qemu: hardware error: ");
337 vfprintf(stderr
, fmt
, ap
);
338 fprintf(stderr
, "\n");
339 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
340 fprintf(stderr
, "CPU #%d:\n", env
->cpu_index
);
342 cpu_dump_state(env
, stderr
, fprintf
, X86_DUMP_FPU
);
344 cpu_dump_state(env
, stderr
, fprintf
, 0);
351 static void set_proc_name(const char *s
)
353 #if defined(__linux__) && defined(PR_SET_NAME)
357 name
[sizeof(name
) - 1] = 0;
358 strncpy(name
, s
, sizeof(name
));
359 /* Could rewrite argv[0] too, but that's a bit more complicated.
360 This simple way is enough for `top'. */
361 prctl(PR_SET_NAME
, name
);
368 static QEMUBalloonEvent
*qemu_balloon_event
;
369 void *qemu_balloon_event_opaque
;
371 void qemu_add_balloon_handler(QEMUBalloonEvent
*func
, void *opaque
)
373 qemu_balloon_event
= func
;
374 qemu_balloon_event_opaque
= opaque
;
377 int qemu_balloon(ram_addr_t target
, MonitorCompletion cb
, void *opaque
)
379 if (qemu_balloon_event
) {
380 qemu_balloon_event(qemu_balloon_event_opaque
, target
, cb
, opaque
);
387 int qemu_balloon_status(MonitorCompletion cb
, void *opaque
)
389 if (qemu_balloon_event
) {
390 qemu_balloon_event(qemu_balloon_event_opaque
, 0, cb
, opaque
);
398 /***********************************************************/
399 /* real time host monotonic timer */
401 /* compute with 96 bit intermediate result: (a*b)/c */
402 uint64_t muldiv64(uint64_t a
, uint32_t b
, uint32_t c
)
407 #ifdef HOST_WORDS_BIGENDIAN
417 rl
= (uint64_t)u
.l
.low
* (uint64_t)b
;
418 rh
= (uint64_t)u
.l
.high
* (uint64_t)b
;
421 res
.l
.low
= (((rh
% c
) << 32) + (rl
& 0xffffffff)) / c
;
425 static int64_t get_clock_realtime(void)
429 gettimeofday(&tv
, NULL
);
430 return tv
.tv_sec
* 1000000000LL + (tv
.tv_usec
* 1000);
435 static int64_t clock_freq
;
437 static void init_get_clock(void)
441 ret
= QueryPerformanceFrequency(&freq
);
443 fprintf(stderr
, "Could not calibrate ticks\n");
446 clock_freq
= freq
.QuadPart
;
449 static int64_t get_clock(void)
452 QueryPerformanceCounter(&ti
);
453 return muldiv64(ti
.QuadPart
, get_ticks_per_sec(), clock_freq
);
458 static int use_rt_clock
;
460 static void init_get_clock(void)
463 #if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD_version >= 500000) \
464 || defined(__DragonFly__) || defined(__FreeBSD_kernel__)
467 if (clock_gettime(CLOCK_MONOTONIC
, &ts
) == 0) {
474 static int64_t get_clock(void)
476 #if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD_version >= 500000) \
477 || defined(__DragonFly__) || defined(__FreeBSD_kernel__)
480 clock_gettime(CLOCK_MONOTONIC
, &ts
);
481 return ts
.tv_sec
* 1000000000LL + ts
.tv_nsec
;
485 /* XXX: using gettimeofday leads to problems if the date
486 changes, so it should be avoided. */
487 return get_clock_realtime();
492 /* Return the virtual CPU time, based on the instruction counter. */
493 static int64_t cpu_get_icount(void)
496 CPUState
*env
= cpu_single_env
;;
497 icount
= qemu_icount
;
500 fprintf(stderr
, "Bad clock read\n");
501 icount
-= (env
->icount_decr
.u16
.low
+ env
->icount_extra
);
503 return qemu_icount_bias
+ (icount
<< icount_time_shift
);
506 /***********************************************************/
507 /* guest cycle counter */
509 typedef struct TimersState
{
510 int64_t cpu_ticks_prev
;
511 int64_t cpu_ticks_offset
;
512 int64_t cpu_clock_offset
;
513 int32_t cpu_ticks_enabled
;
517 TimersState timers_state
;
519 /* return the host CPU cycle counter and handle stop/restart */
520 int64_t cpu_get_ticks(void)
523 return cpu_get_icount();
525 if (!timers_state
.cpu_ticks_enabled
) {
526 return timers_state
.cpu_ticks_offset
;
529 ticks
= cpu_get_real_ticks();
530 if (timers_state
.cpu_ticks_prev
> ticks
) {
531 /* Note: non increasing ticks may happen if the host uses
533 timers_state
.cpu_ticks_offset
+= timers_state
.cpu_ticks_prev
- ticks
;
535 timers_state
.cpu_ticks_prev
= ticks
;
536 return ticks
+ timers_state
.cpu_ticks_offset
;
540 /* return the host CPU monotonic timer and handle stop/restart */
541 static int64_t cpu_get_clock(void)
544 if (!timers_state
.cpu_ticks_enabled
) {
545 return timers_state
.cpu_clock_offset
;
548 return ti
+ timers_state
.cpu_clock_offset
;
552 /* enable cpu_get_ticks() */
553 void cpu_enable_ticks(void)
555 if (!timers_state
.cpu_ticks_enabled
) {
556 timers_state
.cpu_ticks_offset
-= cpu_get_real_ticks();
557 timers_state
.cpu_clock_offset
-= get_clock();
558 timers_state
.cpu_ticks_enabled
= 1;
562 /* disable cpu_get_ticks() : the clock is stopped. You must not call
563 cpu_get_ticks() after that. */
564 void cpu_disable_ticks(void)
566 if (timers_state
.cpu_ticks_enabled
) {
567 timers_state
.cpu_ticks_offset
= cpu_get_ticks();
568 timers_state
.cpu_clock_offset
= cpu_get_clock();
569 timers_state
.cpu_ticks_enabled
= 0;
573 /***********************************************************/
576 #define QEMU_CLOCK_REALTIME 0
577 #define QEMU_CLOCK_VIRTUAL 1
578 #define QEMU_CLOCK_HOST 2
582 /* XXX: add frequency */
590 struct QEMUTimer
*next
;
593 struct qemu_alarm_timer
{
597 int (*start
)(struct qemu_alarm_timer
*t
);
598 void (*stop
)(struct qemu_alarm_timer
*t
);
599 void (*rearm
)(struct qemu_alarm_timer
*t
);
603 #define ALARM_FLAG_DYNTICKS 0x1
604 #define ALARM_FLAG_EXPIRED 0x2
606 static inline int alarm_has_dynticks(struct qemu_alarm_timer
*t
)
608 return t
&& (t
->flags
& ALARM_FLAG_DYNTICKS
);
611 static void qemu_rearm_alarm_timer(struct qemu_alarm_timer
*t
)
613 if (!alarm_has_dynticks(t
))
619 /* TODO: MIN_TIMER_REARM_US should be optimized */
620 #define MIN_TIMER_REARM_US 250
622 static struct qemu_alarm_timer
*alarm_timer
;
626 struct qemu_alarm_win32
{
629 } alarm_win32_data
= {0, -1};
631 static int win32_start_timer(struct qemu_alarm_timer
*t
);
632 static void win32_stop_timer(struct qemu_alarm_timer
*t
);
633 static void win32_rearm_timer(struct qemu_alarm_timer
*t
);
637 static int unix_start_timer(struct qemu_alarm_timer
*t
);
638 static void unix_stop_timer(struct qemu_alarm_timer
*t
);
642 static int dynticks_start_timer(struct qemu_alarm_timer
*t
);
643 static void dynticks_stop_timer(struct qemu_alarm_timer
*t
);
644 static void dynticks_rearm_timer(struct qemu_alarm_timer
*t
);
646 static int hpet_start_timer(struct qemu_alarm_timer
*t
);
647 static void hpet_stop_timer(struct qemu_alarm_timer
*t
);
649 static int rtc_start_timer(struct qemu_alarm_timer
*t
);
650 static void rtc_stop_timer(struct qemu_alarm_timer
*t
);
652 #endif /* __linux__ */
656 /* Correlation between real and virtual time is always going to be
657 fairly approximate, so ignore small variation.
658 When the guest is idle real and virtual time will be aligned in
660 #define ICOUNT_WOBBLE (get_ticks_per_sec() / 10)
662 static void icount_adjust(void)
667 static int64_t last_delta
;
668 /* If the VM is not running, then do nothing. */
672 cur_time
= cpu_get_clock();
673 cur_icount
= qemu_get_clock(vm_clock
);
674 delta
= cur_icount
- cur_time
;
675 /* FIXME: This is a very crude algorithm, somewhat prone to oscillation. */
677 && last_delta
+ ICOUNT_WOBBLE
< delta
* 2
678 && icount_time_shift
> 0) {
679 /* The guest is getting too far ahead. Slow time down. */
683 && last_delta
- ICOUNT_WOBBLE
> delta
* 2
684 && icount_time_shift
< MAX_ICOUNT_SHIFT
) {
685 /* The guest is getting too far behind. Speed time up. */
689 qemu_icount_bias
= cur_icount
- (qemu_icount
<< icount_time_shift
);
692 static void icount_adjust_rt(void * opaque
)
694 qemu_mod_timer(icount_rt_timer
,
695 qemu_get_clock(rt_clock
) + 1000);
699 static void icount_adjust_vm(void * opaque
)
701 qemu_mod_timer(icount_vm_timer
,
702 qemu_get_clock(vm_clock
) + get_ticks_per_sec() / 10);
706 static void init_icount_adjust(void)
708 /* Have both realtime and virtual time triggers for speed adjustment.
709 The realtime trigger catches emulated time passing too slowly,
710 the virtual time trigger catches emulated time passing too fast.
711 Realtime triggers occur even when idle, so use them less frequently
713 icount_rt_timer
= qemu_new_timer(rt_clock
, icount_adjust_rt
, NULL
);
714 qemu_mod_timer(icount_rt_timer
,
715 qemu_get_clock(rt_clock
) + 1000);
716 icount_vm_timer
= qemu_new_timer(vm_clock
, icount_adjust_vm
, NULL
);
717 qemu_mod_timer(icount_vm_timer
,
718 qemu_get_clock(vm_clock
) + get_ticks_per_sec() / 10);
721 static struct qemu_alarm_timer alarm_timers
[] = {
724 {"dynticks", ALARM_FLAG_DYNTICKS
, dynticks_start_timer
,
725 dynticks_stop_timer
, dynticks_rearm_timer
, NULL
},
726 /* HPET - if available - is preferred */
727 {"hpet", 0, hpet_start_timer
, hpet_stop_timer
, NULL
, NULL
},
728 /* ...otherwise try RTC */
729 {"rtc", 0, rtc_start_timer
, rtc_stop_timer
, NULL
, NULL
},
731 {"unix", 0, unix_start_timer
, unix_stop_timer
, NULL
, NULL
},
733 {"dynticks", ALARM_FLAG_DYNTICKS
, win32_start_timer
,
734 win32_stop_timer
, win32_rearm_timer
, &alarm_win32_data
},
735 {"win32", 0, win32_start_timer
,
736 win32_stop_timer
, NULL
, &alarm_win32_data
},
741 static void show_available_alarms(void)
745 printf("Available alarm timers, in order of precedence:\n");
746 for (i
= 0; alarm_timers
[i
].name
; i
++)
747 printf("%s\n", alarm_timers
[i
].name
);
750 static void configure_alarms(char const *opt
)
754 int count
= ARRAY_SIZE(alarm_timers
) - 1;
757 struct qemu_alarm_timer tmp
;
759 if (!strcmp(opt
, "?")) {
760 show_available_alarms();
764 arg
= qemu_strdup(opt
);
766 /* Reorder the array */
767 name
= strtok(arg
, ",");
769 for (i
= 0; i
< count
&& alarm_timers
[i
].name
; i
++) {
770 if (!strcmp(alarm_timers
[i
].name
, name
))
775 fprintf(stderr
, "Unknown clock %s\n", name
);
784 tmp
= alarm_timers
[i
];
785 alarm_timers
[i
] = alarm_timers
[cur
];
786 alarm_timers
[cur
] = tmp
;
790 name
= strtok(NULL
, ",");
796 /* Disable remaining timers */
797 for (i
= cur
; i
< count
; i
++)
798 alarm_timers
[i
].name
= NULL
;
800 show_available_alarms();
805 #define QEMU_NUM_CLOCKS 3
809 QEMUClock
*host_clock
;
811 static QEMUTimer
*active_timers
[QEMU_NUM_CLOCKS
];
813 static QEMUClock
*qemu_new_clock(int type
)
816 clock
= qemu_mallocz(sizeof(QEMUClock
));
821 QEMUTimer
*qemu_new_timer(QEMUClock
*clock
, QEMUTimerCB
*cb
, void *opaque
)
825 ts
= qemu_mallocz(sizeof(QEMUTimer
));
832 void qemu_free_timer(QEMUTimer
*ts
)
837 /* stop a timer, but do not dealloc it */
838 void qemu_del_timer(QEMUTimer
*ts
)
842 /* NOTE: this code must be signal safe because
843 qemu_timer_expired() can be called from a signal. */
844 pt
= &active_timers
[ts
->clock
->type
];
857 /* modify the current timer so that it will be fired when current_time
858 >= expire_time. The corresponding callback will be called. */
859 void qemu_mod_timer(QEMUTimer
*ts
, int64_t expire_time
)
865 /* add the timer in the sorted list */
866 /* NOTE: this code must be signal safe because
867 qemu_timer_expired() can be called from a signal. */
868 pt
= &active_timers
[ts
->clock
->type
];
873 if (t
->expire_time
> expire_time
)
877 ts
->expire_time
= expire_time
;
881 /* Rearm if necessary */
882 if (pt
== &active_timers
[ts
->clock
->type
]) {
883 if ((alarm_timer
->flags
& ALARM_FLAG_EXPIRED
) == 0) {
884 qemu_rearm_alarm_timer(alarm_timer
);
886 /* Interrupt execution to force deadline recalculation. */
892 int qemu_timer_pending(QEMUTimer
*ts
)
895 for(t
= active_timers
[ts
->clock
->type
]; t
!= NULL
; t
= t
->next
) {
902 int qemu_timer_expired(QEMUTimer
*timer_head
, int64_t current_time
)
906 return (timer_head
->expire_time
<= current_time
);
909 static void qemu_run_timers(QEMUTimer
**ptimer_head
, int64_t current_time
)
915 if (!ts
|| ts
->expire_time
> current_time
)
917 /* remove timer from the list before calling the callback */
918 *ptimer_head
= ts
->next
;
921 /* run the callback (the timer list can be modified) */
926 int64_t qemu_get_clock(QEMUClock
*clock
)
928 switch(clock
->type
) {
929 case QEMU_CLOCK_REALTIME
:
930 return get_clock() / 1000000;
932 case QEMU_CLOCK_VIRTUAL
:
934 return cpu_get_icount();
936 return cpu_get_clock();
938 case QEMU_CLOCK_HOST
:
939 return get_clock_realtime();
943 int64_t qemu_get_clock_ns(QEMUClock
*clock
)
945 switch(clock
->type
) {
946 case QEMU_CLOCK_REALTIME
:
949 case QEMU_CLOCK_VIRTUAL
:
951 return cpu_get_icount();
953 return cpu_get_clock();
955 case QEMU_CLOCK_HOST
:
956 return get_clock_realtime();
960 static void init_clocks(void)
963 rt_clock
= qemu_new_clock(QEMU_CLOCK_REALTIME
);
964 vm_clock
= qemu_new_clock(QEMU_CLOCK_VIRTUAL
);
965 host_clock
= qemu_new_clock(QEMU_CLOCK_HOST
);
967 rtc_clock
= host_clock
;
971 void qemu_put_timer(QEMUFile
*f
, QEMUTimer
*ts
)
973 uint64_t expire_time
;
975 if (qemu_timer_pending(ts
)) {
976 expire_time
= ts
->expire_time
;
980 qemu_put_be64(f
, expire_time
);
983 void qemu_get_timer(QEMUFile
*f
, QEMUTimer
*ts
)
985 uint64_t expire_time
;
987 expire_time
= qemu_get_be64(f
);
988 if (expire_time
!= -1) {
989 qemu_mod_timer(ts
, expire_time
);
995 static const VMStateDescription vmstate_timers
= {
998 .minimum_version_id
= 1,
999 .minimum_version_id_old
= 1,
1000 .fields
= (VMStateField
[]) {
1001 VMSTATE_INT64(cpu_ticks_offset
, TimersState
),
1002 VMSTATE_INT64(dummy
, TimersState
),
1003 VMSTATE_INT64_V(cpu_clock_offset
, TimersState
, 2),
1004 VMSTATE_END_OF_LIST()
1008 static void qemu_event_increment(void);
1011 static void CALLBACK
host_alarm_handler(UINT uTimerID
, UINT uMsg
,
1012 DWORD_PTR dwUser
, DWORD_PTR dw1
,
1015 static void host_alarm_handler(int host_signum
)
1019 #define DISP_FREQ 1000
1021 static int64_t delta_min
= INT64_MAX
;
1022 static int64_t delta_max
, delta_cum
, last_clock
, delta
, ti
;
1024 ti
= qemu_get_clock(vm_clock
);
1025 if (last_clock
!= 0) {
1026 delta
= ti
- last_clock
;
1027 if (delta
< delta_min
)
1029 if (delta
> delta_max
)
1032 if (++count
== DISP_FREQ
) {
1033 printf("timer: min=%" PRId64
" us max=%" PRId64
" us avg=%" PRId64
" us avg_freq=%0.3f Hz\n",
1034 muldiv64(delta_min
, 1000000, get_ticks_per_sec()),
1035 muldiv64(delta_max
, 1000000, get_ticks_per_sec()),
1036 muldiv64(delta_cum
, 1000000 / DISP_FREQ
, get_ticks_per_sec()),
1037 (double)get_ticks_per_sec() / ((double)delta_cum
/ DISP_FREQ
));
1039 delta_min
= INT64_MAX
;
1047 if (alarm_has_dynticks(alarm_timer
) ||
1049 qemu_timer_expired(active_timers
[QEMU_CLOCK_VIRTUAL
],
1050 qemu_get_clock(vm_clock
))) ||
1051 qemu_timer_expired(active_timers
[QEMU_CLOCK_REALTIME
],
1052 qemu_get_clock(rt_clock
)) ||
1053 qemu_timer_expired(active_timers
[QEMU_CLOCK_HOST
],
1054 qemu_get_clock(host_clock
))) {
1055 qemu_event_increment();
1056 if (alarm_timer
) alarm_timer
->flags
|= ALARM_FLAG_EXPIRED
;
1058 #ifndef CONFIG_IOTHREAD
1060 /* stop the currently executing cpu because a timer occured */
1064 timer_alarm_pending
= 1;
1065 qemu_notify_event();
1069 static int64_t qemu_next_deadline(void)
1071 /* To avoid problems with overflow limit this to 2^32. */
1072 int64_t delta
= INT32_MAX
;
1074 if (active_timers
[QEMU_CLOCK_VIRTUAL
]) {
1075 delta
= active_timers
[QEMU_CLOCK_VIRTUAL
]->expire_time
-
1076 qemu_get_clock(vm_clock
);
1078 if (active_timers
[QEMU_CLOCK_HOST
]) {
1079 int64_t hdelta
= active_timers
[QEMU_CLOCK_HOST
]->expire_time
-
1080 qemu_get_clock(host_clock
);
1091 #if defined(__linux__)
1092 static uint64_t qemu_next_deadline_dyntick(void)
1100 delta
= (qemu_next_deadline() + 999) / 1000;
1102 if (active_timers
[QEMU_CLOCK_REALTIME
]) {
1103 rtdelta
= (active_timers
[QEMU_CLOCK_REALTIME
]->expire_time
-
1104 qemu_get_clock(rt_clock
))*1000;
1105 if (rtdelta
< delta
)
1109 if (delta
< MIN_TIMER_REARM_US
)
1110 delta
= MIN_TIMER_REARM_US
;
1118 /* Sets a specific flag */
1119 static int fcntl_setfl(int fd
, int flag
)
1123 flags
= fcntl(fd
, F_GETFL
);
1127 if (fcntl(fd
, F_SETFL
, flags
| flag
) == -1)
1133 #if defined(__linux__)
1135 #define RTC_FREQ 1024
1137 static void enable_sigio_timer(int fd
)
1139 struct sigaction act
;
1142 sigfillset(&act
.sa_mask
);
1144 act
.sa_handler
= host_alarm_handler
;
1146 sigaction(SIGIO
, &act
, NULL
);
1147 fcntl_setfl(fd
, O_ASYNC
);
1148 fcntl(fd
, F_SETOWN
, getpid());
1151 static int hpet_start_timer(struct qemu_alarm_timer
*t
)
1153 struct hpet_info info
;
1156 fd
= qemu_open("/dev/hpet", O_RDONLY
);
1161 r
= ioctl(fd
, HPET_IRQFREQ
, RTC_FREQ
);
1163 fprintf(stderr
, "Could not configure '/dev/hpet' to have a 1024Hz timer. This is not a fatal\n"
1164 "error, but for better emulation accuracy type:\n"
1165 "'echo 1024 > /proc/sys/dev/hpet/max-user-freq' as root.\n");
1169 /* Check capabilities */
1170 r
= ioctl(fd
, HPET_INFO
, &info
);
1174 /* Enable periodic mode */
1175 r
= ioctl(fd
, HPET_EPI
, 0);
1176 if (info
.hi_flags
&& (r
< 0))
1179 /* Enable interrupt */
1180 r
= ioctl(fd
, HPET_IE_ON
, 0);
1184 enable_sigio_timer(fd
);
1185 t
->priv
= (void *)(long)fd
;
1193 static void hpet_stop_timer(struct qemu_alarm_timer
*t
)
1195 int fd
= (long)t
->priv
;
1200 static int rtc_start_timer(struct qemu_alarm_timer
*t
)
1203 unsigned long current_rtc_freq
= 0;
1205 TFR(rtc_fd
= qemu_open("/dev/rtc", O_RDONLY
));
1208 ioctl(rtc_fd
, RTC_IRQP_READ
, ¤t_rtc_freq
);
1209 if (current_rtc_freq
!= RTC_FREQ
&&
1210 ioctl(rtc_fd
, RTC_IRQP_SET
, RTC_FREQ
) < 0) {
1211 fprintf(stderr
, "Could not configure '/dev/rtc' to have a 1024 Hz timer. This is not a fatal\n"
1212 "error, but for better emulation accuracy either use a 2.6 host Linux kernel or\n"
1213 "type 'echo 1024 > /proc/sys/dev/rtc/max-user-freq' as root.\n");
1216 if (ioctl(rtc_fd
, RTC_PIE_ON
, 0) < 0) {
1222 enable_sigio_timer(rtc_fd
);
1224 t
->priv
= (void *)(long)rtc_fd
;
1229 static void rtc_stop_timer(struct qemu_alarm_timer
*t
)
1231 int rtc_fd
= (long)t
->priv
;
1236 static int dynticks_start_timer(struct qemu_alarm_timer
*t
)
1240 struct sigaction act
;
1242 sigfillset(&act
.sa_mask
);
1244 act
.sa_handler
= host_alarm_handler
;
1246 sigaction(SIGALRM
, &act
, NULL
);
1249 * Initialize ev struct to 0 to avoid valgrind complaining
1250 * about uninitialized data in timer_create call
1252 memset(&ev
, 0, sizeof(ev
));
1253 ev
.sigev_value
.sival_int
= 0;
1254 ev
.sigev_notify
= SIGEV_SIGNAL
;
1255 ev
.sigev_signo
= SIGALRM
;
1257 if (timer_create(CLOCK_REALTIME
, &ev
, &host_timer
)) {
1258 perror("timer_create");
1260 /* disable dynticks */
1261 fprintf(stderr
, "Dynamic Ticks disabled\n");
1266 t
->priv
= (void *)(long)host_timer
;
1271 static void dynticks_stop_timer(struct qemu_alarm_timer
*t
)
1273 timer_t host_timer
= (timer_t
)(long)t
->priv
;
1275 timer_delete(host_timer
);
1278 static void dynticks_rearm_timer(struct qemu_alarm_timer
*t
)
1280 timer_t host_timer
= (timer_t
)(long)t
->priv
;
1281 struct itimerspec timeout
;
1282 int64_t nearest_delta_us
= INT64_MAX
;
1285 if (!active_timers
[QEMU_CLOCK_REALTIME
] &&
1286 !active_timers
[QEMU_CLOCK_VIRTUAL
] &&
1287 !active_timers
[QEMU_CLOCK_HOST
])
1290 nearest_delta_us
= qemu_next_deadline_dyntick();
1292 /* check whether a timer is already running */
1293 if (timer_gettime(host_timer
, &timeout
)) {
1295 fprintf(stderr
, "Internal timer error: aborting\n");
1298 current_us
= timeout
.it_value
.tv_sec
* 1000000 + timeout
.it_value
.tv_nsec
/1000;
1299 if (current_us
&& current_us
<= nearest_delta_us
)
1302 timeout
.it_interval
.tv_sec
= 0;
1303 timeout
.it_interval
.tv_nsec
= 0; /* 0 for one-shot timer */
1304 timeout
.it_value
.tv_sec
= nearest_delta_us
/ 1000000;
1305 timeout
.it_value
.tv_nsec
= (nearest_delta_us
% 1000000) * 1000;
1306 if (timer_settime(host_timer
, 0 /* RELATIVE */, &timeout
, NULL
)) {
1308 fprintf(stderr
, "Internal timer error: aborting\n");
1313 #endif /* defined(__linux__) */
1315 static int unix_start_timer(struct qemu_alarm_timer
*t
)
1317 struct sigaction act
;
1318 struct itimerval itv
;
1322 sigfillset(&act
.sa_mask
);
1324 act
.sa_handler
= host_alarm_handler
;
1326 sigaction(SIGALRM
, &act
, NULL
);
1328 itv
.it_interval
.tv_sec
= 0;
1329 /* for i386 kernel 2.6 to get 1 ms */
1330 itv
.it_interval
.tv_usec
= 999;
1331 itv
.it_value
.tv_sec
= 0;
1332 itv
.it_value
.tv_usec
= 10 * 1000;
1334 err
= setitimer(ITIMER_REAL
, &itv
, NULL
);
1341 static void unix_stop_timer(struct qemu_alarm_timer
*t
)
1343 struct itimerval itv
;
1345 memset(&itv
, 0, sizeof(itv
));
1346 setitimer(ITIMER_REAL
, &itv
, NULL
);
1349 #endif /* !defined(_WIN32) */
1354 static int win32_start_timer(struct qemu_alarm_timer
*t
)
1357 struct qemu_alarm_win32
*data
= t
->priv
;
1360 memset(&tc
, 0, sizeof(tc
));
1361 timeGetDevCaps(&tc
, sizeof(tc
));
1363 if (data
->period
< tc
.wPeriodMin
)
1364 data
->period
= tc
.wPeriodMin
;
1366 timeBeginPeriod(data
->period
);
1368 flags
= TIME_CALLBACK_FUNCTION
;
1369 if (alarm_has_dynticks(t
))
1370 flags
|= TIME_ONESHOT
;
1372 flags
|= TIME_PERIODIC
;
1374 data
->timerId
= timeSetEvent(1, // interval (ms)
1375 data
->period
, // resolution
1376 host_alarm_handler
, // function
1377 (DWORD
)t
, // parameter
1380 if (!data
->timerId
) {
1381 fprintf(stderr
, "Failed to initialize win32 alarm timer: %ld\n",
1383 timeEndPeriod(data
->period
);
1390 static void win32_stop_timer(struct qemu_alarm_timer
*t
)
1392 struct qemu_alarm_win32
*data
= t
->priv
;
1394 timeKillEvent(data
->timerId
);
1395 timeEndPeriod(data
->period
);
1398 static void win32_rearm_timer(struct qemu_alarm_timer
*t
)
1400 struct qemu_alarm_win32
*data
= t
->priv
;
1402 if (!active_timers
[QEMU_CLOCK_REALTIME
] &&
1403 !active_timers
[QEMU_CLOCK_VIRTUAL
] &&
1404 !active_timers
[QEMU_CLOCK_HOST
])
1407 timeKillEvent(data
->timerId
);
1409 data
->timerId
= timeSetEvent(1,
1413 TIME_ONESHOT
| TIME_PERIODIC
);
1415 if (!data
->timerId
) {
1416 fprintf(stderr
, "Failed to re-arm win32 alarm timer %ld\n",
1419 timeEndPeriod(data
->period
);
1426 static int init_timer_alarm(void)
1428 struct qemu_alarm_timer
*t
= NULL
;
1431 for (i
= 0; alarm_timers
[i
].name
; i
++) {
1432 t
= &alarm_timers
[i
];
1452 static void quit_timers(void)
1454 alarm_timer
->stop(alarm_timer
);
1458 /***********************************************************/
1459 /* host time/date access */
1460 void qemu_get_timedate(struct tm
*tm
, int offset
)
1467 if (rtc_date_offset
== -1) {
1471 ret
= localtime(&ti
);
1473 ti
-= rtc_date_offset
;
1477 memcpy(tm
, ret
, sizeof(struct tm
));
1480 int qemu_timedate_diff(struct tm
*tm
)
1484 if (rtc_date_offset
== -1)
1486 seconds
= mktimegm(tm
);
1488 seconds
= mktime(tm
);
1490 seconds
= mktimegm(tm
) + rtc_date_offset
;
1492 return seconds
- time(NULL
);
1495 void rtc_change_mon_event(struct tm
*tm
)
1499 data
= qobject_from_jsonf("{ 'offset': %d }", qemu_timedate_diff(tm
));
1500 monitor_protocol_event(QEVENT_RTC_CHANGE
, data
);
1501 qobject_decref(data
);
1504 static void configure_rtc_date_offset(const char *startdate
, int legacy
)
1506 time_t rtc_start_date
;
1509 if (!strcmp(startdate
, "now") && legacy
) {
1510 rtc_date_offset
= -1;
1512 if (sscanf(startdate
, "%d-%d-%dT%d:%d:%d",
1520 } else if (sscanf(startdate
, "%d-%d-%d",
1523 &tm
.tm_mday
) == 3) {
1532 rtc_start_date
= mktimegm(&tm
);
1533 if (rtc_start_date
== -1) {
1535 fprintf(stderr
, "Invalid date format. Valid formats are:\n"
1536 "'2006-06-17T16:01:21' or '2006-06-17'\n");
1539 rtc_date_offset
= time(NULL
) - rtc_start_date
;
1543 static void configure_rtc(QemuOpts
*opts
)
1547 value
= qemu_opt_get(opts
, "base");
1549 if (!strcmp(value
, "utc")) {
1551 } else if (!strcmp(value
, "localtime")) {
1554 configure_rtc_date_offset(value
, 0);
1557 value
= qemu_opt_get(opts
, "clock");
1559 if (!strcmp(value
, "host")) {
1560 rtc_clock
= host_clock
;
1561 } else if (!strcmp(value
, "vm")) {
1562 rtc_clock
= vm_clock
;
1564 fprintf(stderr
, "qemu: invalid option value '%s'\n", value
);
1568 #ifdef CONFIG_TARGET_I386
1569 value
= qemu_opt_get(opts
, "driftfix");
1571 if (!strcmp(buf
, "slew")) {
1573 } else if (!strcmp(buf
, "none")) {
1576 fprintf(stderr
, "qemu: invalid option value '%s'\n", value
);
1584 static void socket_cleanup(void)
1589 static int socket_init(void)
1594 ret
= WSAStartup(MAKEWORD(2,2), &Data
);
1596 err
= WSAGetLastError();
1597 fprintf(stderr
, "WSAStartup: %d\n", err
);
1600 atexit(socket_cleanup
);
1605 /***********************************************************/
1606 /* Bluetooth support */
1609 static struct HCIInfo
*hci_table
[MAX_NICS
];
1611 static struct bt_vlan_s
{
1612 struct bt_scatternet_s net
;
1614 struct bt_vlan_s
*next
;
1617 /* find or alloc a new bluetooth "VLAN" */
1618 static struct bt_scatternet_s
*qemu_find_bt_vlan(int id
)
1620 struct bt_vlan_s
**pvlan
, *vlan
;
1621 for (vlan
= first_bt_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
1625 vlan
= qemu_mallocz(sizeof(struct bt_vlan_s
));
1627 pvlan
= &first_bt_vlan
;
1628 while (*pvlan
!= NULL
)
1629 pvlan
= &(*pvlan
)->next
;
1634 static void null_hci_send(struct HCIInfo
*hci
, const uint8_t *data
, int len
)
1638 static int null_hci_addr_set(struct HCIInfo
*hci
, const uint8_t *bd_addr
)
1643 static struct HCIInfo null_hci
= {
1644 .cmd_send
= null_hci_send
,
1645 .sco_send
= null_hci_send
,
1646 .acl_send
= null_hci_send
,
1647 .bdaddr_set
= null_hci_addr_set
,
1650 struct HCIInfo
*qemu_next_hci(void)
1652 if (cur_hci
== nb_hcis
)
1655 return hci_table
[cur_hci
++];
1658 static struct HCIInfo
*hci_init(const char *str
)
1661 struct bt_scatternet_s
*vlan
= 0;
1663 if (!strcmp(str
, "null"))
1666 else if (!strncmp(str
, "host", 4) && (str
[4] == '\0' || str
[4] == ':'))
1668 return bt_host_hci(str
[4] ? str
+ 5 : "hci0");
1669 else if (!strncmp(str
, "hci", 3)) {
1672 if (!strncmp(str
+ 3, ",vlan=", 6)) {
1673 vlan
= qemu_find_bt_vlan(strtol(str
+ 9, &endp
, 0));
1678 vlan
= qemu_find_bt_vlan(0);
1680 return bt_new_hci(vlan
);
1683 fprintf(stderr
, "qemu: Unknown bluetooth HCI `%s'.\n", str
);
1688 static int bt_hci_parse(const char *str
)
1690 struct HCIInfo
*hci
;
1693 if (nb_hcis
>= MAX_NICS
) {
1694 fprintf(stderr
, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS
);
1698 hci
= hci_init(str
);
1707 bdaddr
.b
[5] = 0x56 + nb_hcis
;
1708 hci
->bdaddr_set(hci
, bdaddr
.b
);
1710 hci_table
[nb_hcis
++] = hci
;
1715 static void bt_vhci_add(int vlan_id
)
1717 struct bt_scatternet_s
*vlan
= qemu_find_bt_vlan(vlan_id
);
1720 fprintf(stderr
, "qemu: warning: adding a VHCI to "
1721 "an empty scatternet %i\n", vlan_id
);
1723 bt_vhci_init(bt_new_hci(vlan
));
1726 static struct bt_device_s
*bt_device_add(const char *opt
)
1728 struct bt_scatternet_s
*vlan
;
1730 char *endp
= strstr(opt
, ",vlan=");
1731 int len
= (endp
? endp
- opt
: strlen(opt
)) + 1;
1734 pstrcpy(devname
, MIN(sizeof(devname
), len
), opt
);
1737 vlan_id
= strtol(endp
+ 6, &endp
, 0);
1739 fprintf(stderr
, "qemu: unrecognised bluetooth vlan Id\n");
1744 vlan
= qemu_find_bt_vlan(vlan_id
);
1747 fprintf(stderr
, "qemu: warning: adding a slave device to "
1748 "an empty scatternet %i\n", vlan_id
);
1750 if (!strcmp(devname
, "keyboard"))
1751 return bt_keyboard_init(vlan
);
1753 fprintf(stderr
, "qemu: unsupported bluetooth device `%s'\n", devname
);
1757 static int bt_parse(const char *opt
)
1759 const char *endp
, *p
;
1762 if (strstart(opt
, "hci", &endp
)) {
1763 if (!*endp
|| *endp
== ',') {
1765 if (!strstart(endp
, ",vlan=", 0))
1768 return bt_hci_parse(opt
);
1770 } else if (strstart(opt
, "vhci", &endp
)) {
1771 if (!*endp
|| *endp
== ',') {
1773 if (strstart(endp
, ",vlan=", &p
)) {
1774 vlan
= strtol(p
, (char **) &endp
, 0);
1776 fprintf(stderr
, "qemu: bad scatternet '%s'\n", p
);
1780 fprintf(stderr
, "qemu: bad parameter '%s'\n", endp
+ 1);
1789 } else if (strstart(opt
, "device:", &endp
))
1790 return !bt_device_add(endp
);
1792 fprintf(stderr
, "qemu: bad bluetooth parameter '%s'\n", opt
);
1796 /***********************************************************/
1797 /* QEMU Block devices */
1799 #define HD_ALIAS "index=%d,media=disk"
1800 #define CDROM_ALIAS "index=2,media=cdrom"
1801 #define FD_ALIAS "index=%d,if=floppy"
1802 #define PFLASH_ALIAS "if=pflash"
1803 #define MTD_ALIAS "if=mtd"
1804 #define SD_ALIAS "index=0,if=sd"
1806 QemuOpts
*drive_add(const char *file
, const char *fmt
, ...)
1813 vsnprintf(optstr
, sizeof(optstr
), fmt
, ap
);
1816 opts
= qemu_opts_parse(&qemu_drive_opts
, optstr
, NULL
);
1818 fprintf(stderr
, "%s: huh? duplicate? (%s)\n",
1819 __FUNCTION__
, optstr
);
1823 qemu_opt_set(opts
, "file", file
);
1827 DriveInfo
*drive_get(BlockInterfaceType type
, int bus
, int unit
)
1831 /* seek interface, bus and unit */
1833 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
1834 if (dinfo
->type
== type
&&
1835 dinfo
->bus
== bus
&&
1836 dinfo
->unit
== unit
)
1843 DriveInfo
*drive_get_by_id(const char *id
)
1847 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
1848 if (strcmp(id
, dinfo
->id
))
1855 int drive_get_max_bus(BlockInterfaceType type
)
1861 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
1862 if(dinfo
->type
== type
&&
1863 dinfo
->bus
> max_bus
)
1864 max_bus
= dinfo
->bus
;
1869 const char *drive_get_serial(BlockDriverState
*bdrv
)
1873 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
1874 if (dinfo
->bdrv
== bdrv
)
1875 return dinfo
->serial
;
1881 BlockInterfaceErrorAction
drive_get_on_error(
1882 BlockDriverState
*bdrv
, int is_read
)
1886 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
1887 if (dinfo
->bdrv
== bdrv
)
1888 return is_read
? dinfo
->on_read_error
: dinfo
->on_write_error
;
1891 return is_read
? BLOCK_ERR_REPORT
: BLOCK_ERR_STOP_ENOSPC
;
1894 static void bdrv_format_print(void *opaque
, const char *name
)
1896 fprintf(stderr
, " %s", name
);
1899 void drive_uninit(DriveInfo
*dinfo
)
1901 qemu_opts_del(dinfo
->opts
);
1902 bdrv_delete(dinfo
->bdrv
);
1903 QTAILQ_REMOVE(&drives
, dinfo
, next
);
1907 static int parse_block_error_action(const char *buf
, int is_read
)
1909 if (!strcmp(buf
, "ignore")) {
1910 return BLOCK_ERR_IGNORE
;
1911 } else if (!is_read
&& !strcmp(buf
, "enospc")) {
1912 return BLOCK_ERR_STOP_ENOSPC
;
1913 } else if (!strcmp(buf
, "stop")) {
1914 return BLOCK_ERR_STOP_ANY
;
1915 } else if (!strcmp(buf
, "report")) {
1916 return BLOCK_ERR_REPORT
;
1918 fprintf(stderr
, "qemu: '%s' invalid %s error action\n",
1919 buf
, is_read
? "read" : "write");
1924 DriveInfo
*drive_init(QemuOpts
*opts
, void *opaque
,
1928 const char *file
= NULL
;
1931 const char *mediastr
= "";
1932 BlockInterfaceType type
;
1933 enum { MEDIA_DISK
, MEDIA_CDROM
} media
;
1934 int bus_id
, unit_id
;
1935 int cyls
, heads
, secs
, translation
;
1936 BlockDriver
*drv
= NULL
;
1937 QEMUMachine
*machine
= opaque
;
1944 int on_read_error
, on_write_error
;
1945 const char *devaddr
;
1951 translation
= BIOS_ATA_TRANSLATION_AUTO
;
1954 if (machine
&& machine
->use_scsi
) {
1956 max_devs
= MAX_SCSI_DEVS
;
1957 pstrcpy(devname
, sizeof(devname
), "scsi");
1960 max_devs
= MAX_IDE_DEVS
;
1961 pstrcpy(devname
, sizeof(devname
), "ide");
1965 /* extract parameters */
1966 bus_id
= qemu_opt_get_number(opts
, "bus", 0);
1967 unit_id
= qemu_opt_get_number(opts
, "unit", -1);
1968 index
= qemu_opt_get_number(opts
, "index", -1);
1970 cyls
= qemu_opt_get_number(opts
, "cyls", 0);
1971 heads
= qemu_opt_get_number(opts
, "heads", 0);
1972 secs
= qemu_opt_get_number(opts
, "secs", 0);
1974 snapshot
= qemu_opt_get_bool(opts
, "snapshot", 0);
1975 ro
= qemu_opt_get_bool(opts
, "readonly", 0);
1977 file
= qemu_opt_get(opts
, "file");
1978 serial
= qemu_opt_get(opts
, "serial");
1980 if ((buf
= qemu_opt_get(opts
, "if")) != NULL
) {
1981 pstrcpy(devname
, sizeof(devname
), buf
);
1982 if (!strcmp(buf
, "ide")) {
1984 max_devs
= MAX_IDE_DEVS
;
1985 } else if (!strcmp(buf
, "scsi")) {
1987 max_devs
= MAX_SCSI_DEVS
;
1988 } else if (!strcmp(buf
, "floppy")) {
1991 } else if (!strcmp(buf
, "pflash")) {
1994 } else if (!strcmp(buf
, "mtd")) {
1997 } else if (!strcmp(buf
, "sd")) {
2000 } else if (!strcmp(buf
, "virtio")) {
2003 } else if (!strcmp(buf
, "xen")) {
2006 } else if (!strcmp(buf
, "none")) {
2010 fprintf(stderr
, "qemu: unsupported bus type '%s'\n", buf
);
2015 if (cyls
|| heads
|| secs
) {
2016 if (cyls
< 1 || (type
== IF_IDE
&& cyls
> 16383)) {
2017 fprintf(stderr
, "qemu: '%s' invalid physical cyls number\n", buf
);
2020 if (heads
< 1 || (type
== IF_IDE
&& heads
> 16)) {
2021 fprintf(stderr
, "qemu: '%s' invalid physical heads number\n", buf
);
2024 if (secs
< 1 || (type
== IF_IDE
&& secs
> 63)) {
2025 fprintf(stderr
, "qemu: '%s' invalid physical secs number\n", buf
);
2030 if ((buf
= qemu_opt_get(opts
, "trans")) != NULL
) {
2033 "qemu: '%s' trans must be used with cyls,heads and secs\n",
2037 if (!strcmp(buf
, "none"))
2038 translation
= BIOS_ATA_TRANSLATION_NONE
;
2039 else if (!strcmp(buf
, "lba"))
2040 translation
= BIOS_ATA_TRANSLATION_LBA
;
2041 else if (!strcmp(buf
, "auto"))
2042 translation
= BIOS_ATA_TRANSLATION_AUTO
;
2044 fprintf(stderr
, "qemu: '%s' invalid translation type\n", buf
);
2049 if ((buf
= qemu_opt_get(opts
, "media")) != NULL
) {
2050 if (!strcmp(buf
, "disk")) {
2052 } else if (!strcmp(buf
, "cdrom")) {
2053 if (cyls
|| secs
|| heads
) {
2055 "qemu: '%s' invalid physical CHS format\n", buf
);
2058 media
= MEDIA_CDROM
;
2060 fprintf(stderr
, "qemu: '%s' invalid media\n", buf
);
2065 if ((buf
= qemu_opt_get(opts
, "cache")) != NULL
) {
2066 if (!strcmp(buf
, "off") || !strcmp(buf
, "none"))
2068 else if (!strcmp(buf
, "writethrough"))
2070 else if (!strcmp(buf
, "writeback"))
2073 fprintf(stderr
, "qemu: invalid cache option\n");
2078 #ifdef CONFIG_LINUX_AIO
2079 if ((buf
= qemu_opt_get(opts
, "aio")) != NULL
) {
2080 if (!strcmp(buf
, "threads"))
2082 else if (!strcmp(buf
, "native"))
2085 fprintf(stderr
, "qemu: invalid aio option\n");
2091 if ((buf
= qemu_opt_get(opts
, "format")) != NULL
) {
2092 if (strcmp(buf
, "?") == 0) {
2093 fprintf(stderr
, "qemu: Supported formats:");
2094 bdrv_iterate_format(bdrv_format_print
, NULL
);
2095 fprintf(stderr
, "\n");
2098 drv
= bdrv_find_whitelisted_format(buf
);
2100 fprintf(stderr
, "qemu: '%s' invalid format\n", buf
);
2105 on_write_error
= BLOCK_ERR_STOP_ENOSPC
;
2106 if ((buf
= qemu_opt_get(opts
, "werror")) != NULL
) {
2107 if (type
!= IF_IDE
&& type
!= IF_SCSI
&& type
!= IF_VIRTIO
) {
2108 fprintf(stderr
, "werror is no supported by this format\n");
2112 on_write_error
= parse_block_error_action(buf
, 0);
2113 if (on_write_error
< 0) {
2118 on_read_error
= BLOCK_ERR_REPORT
;
2119 if ((buf
= qemu_opt_get(opts
, "rerror")) != NULL
) {
2120 if (type
!= IF_IDE
&& type
!= IF_VIRTIO
) {
2121 fprintf(stderr
, "rerror is no supported by this format\n");
2125 on_read_error
= parse_block_error_action(buf
, 1);
2126 if (on_read_error
< 0) {
2131 if ((devaddr
= qemu_opt_get(opts
, "addr")) != NULL
) {
2132 if (type
!= IF_VIRTIO
) {
2133 fprintf(stderr
, "addr is not supported\n");
2138 /* compute bus and unit according index */
2141 if (bus_id
!= 0 || unit_id
!= -1) {
2143 "qemu: index cannot be used with bus and unit\n");
2151 unit_id
= index
% max_devs
;
2152 bus_id
= index
/ max_devs
;
2156 /* if user doesn't specify a unit_id,
2157 * try to find the first free
2160 if (unit_id
== -1) {
2162 while (drive_get(type
, bus_id
, unit_id
) != NULL
) {
2164 if (max_devs
&& unit_id
>= max_devs
) {
2165 unit_id
-= max_devs
;
2173 if (max_devs
&& unit_id
>= max_devs
) {
2174 fprintf(stderr
, "qemu: unit %d too big (max is %d)\n",
2175 unit_id
, max_devs
- 1);
2180 * ignore multiple definitions
2183 if (drive_get(type
, bus_id
, unit_id
) != NULL
) {
2190 dinfo
= qemu_mallocz(sizeof(*dinfo
));
2191 if ((buf
= qemu_opts_id(opts
)) != NULL
) {
2192 dinfo
->id
= qemu_strdup(buf
);
2194 /* no id supplied -> create one */
2195 dinfo
->id
= qemu_mallocz(32);
2196 if (type
== IF_IDE
|| type
== IF_SCSI
)
2197 mediastr
= (media
== MEDIA_CDROM
) ? "-cd" : "-hd";
2199 snprintf(dinfo
->id
, 32, "%s%i%s%i",
2200 devname
, bus_id
, mediastr
, unit_id
);
2202 snprintf(dinfo
->id
, 32, "%s%s%i",
2203 devname
, mediastr
, unit_id
);
2205 dinfo
->bdrv
= bdrv_new(dinfo
->id
);
2206 dinfo
->devaddr
= devaddr
;
2208 dinfo
->bus
= bus_id
;
2209 dinfo
->unit
= unit_id
;
2210 dinfo
->on_read_error
= on_read_error
;
2211 dinfo
->on_write_error
= on_write_error
;
2214 strncpy(dinfo
->serial
, serial
, sizeof(serial
));
2215 QTAILQ_INSERT_TAIL(&drives
, dinfo
, next
);
2225 bdrv_set_geometry_hint(dinfo
->bdrv
, cyls
, heads
, secs
);
2226 bdrv_set_translation_hint(dinfo
->bdrv
, translation
);
2230 bdrv_set_type_hint(dinfo
->bdrv
, BDRV_TYPE_CDROM
);
2235 /* FIXME: This isn't really a floppy, but it's a reasonable
2238 bdrv_set_type_hint(dinfo
->bdrv
, BDRV_TYPE_FLOPPY
);
2244 /* add virtio block device */
2245 opts
= qemu_opts_create(&qemu_device_opts
, NULL
, 0);
2246 qemu_opt_set(opts
, "driver", "virtio-blk-pci");
2247 qemu_opt_set(opts
, "drive", dinfo
->id
);
2249 qemu_opt_set(opts
, "addr", devaddr
);
2260 bdrv_flags
|= BDRV_O_SNAPSHOT
;
2261 cache
= 2; /* always use write-back with snapshot */
2263 if (cache
== 0) /* no caching */
2264 bdrv_flags
|= BDRV_O_NOCACHE
;
2265 else if (cache
== 2) /* write-back */
2266 bdrv_flags
|= BDRV_O_CACHE_WB
;
2269 bdrv_flags
|= BDRV_O_NATIVE_AIO
;
2271 bdrv_flags
&= ~BDRV_O_NATIVE_AIO
;
2275 if (type
!= IF_SCSI
&& type
!= IF_VIRTIO
&& type
!= IF_FLOPPY
) {
2276 fprintf(stderr
, "qemu: readonly flag not supported for drive with this interface\n");
2281 * cdrom is read-only. Set it now, after above interface checking
2282 * since readonly attribute not explicitly required, so no error.
2284 if (media
== MEDIA_CDROM
) {
2287 bdrv_flags
|= ro
? 0 : BDRV_O_RDWR
;
2289 if (bdrv_open2(dinfo
->bdrv
, file
, bdrv_flags
, drv
) < 0) {
2290 fprintf(stderr
, "qemu: could not open disk image %s: %s\n",
2291 file
, strerror(errno
));
2295 if (bdrv_key_required(dinfo
->bdrv
))
2301 static int drive_init_func(QemuOpts
*opts
, void *opaque
)
2303 QEMUMachine
*machine
= opaque
;
2304 int fatal_error
= 0;
2306 if (drive_init(opts
, machine
, &fatal_error
) == NULL
) {
2313 static int drive_enable_snapshot(QemuOpts
*opts
, void *opaque
)
2315 if (NULL
== qemu_opt_get(opts
, "snapshot")) {
2316 qemu_opt_set(opts
, "snapshot", "on");
2321 void qemu_register_boot_set(QEMUBootSetHandler
*func
, void *opaque
)
2323 boot_set_handler
= func
;
2324 boot_set_opaque
= opaque
;
2327 int qemu_boot_set(const char *boot_devices
)
2329 if (!boot_set_handler
) {
2332 return boot_set_handler(boot_set_opaque
, boot_devices
);
2335 static int parse_bootdevices(char *devices
)
2337 /* We just do some generic consistency checks */
2341 for (p
= devices
; *p
!= '\0'; p
++) {
2342 /* Allowed boot devices are:
2343 * a-b: floppy disk drives
2344 * c-f: IDE disk drives
2345 * g-m: machine implementation dependant drives
2346 * n-p: network devices
2347 * It's up to each machine implementation to check if the given boot
2348 * devices match the actual hardware implementation and firmware
2351 if (*p
< 'a' || *p
> 'p') {
2352 fprintf(stderr
, "Invalid boot device '%c'\n", *p
);
2355 if (bitmap
& (1 << (*p
- 'a'))) {
2356 fprintf(stderr
, "Boot device '%c' was given twice\n", *p
);
2359 bitmap
|= 1 << (*p
- 'a');
2364 static void restore_boot_devices(void *opaque
)
2366 char *standard_boot_devices
= opaque
;
2368 qemu_boot_set(standard_boot_devices
);
2370 qemu_unregister_reset(restore_boot_devices
, standard_boot_devices
);
2371 qemu_free(standard_boot_devices
);
2374 static void numa_add(const char *optarg
)
2378 unsigned long long value
, endvalue
;
2381 optarg
= get_opt_name(option
, 128, optarg
, ',') + 1;
2382 if (!strcmp(option
, "node")) {
2383 if (get_param_value(option
, 128, "nodeid", optarg
) == 0) {
2384 nodenr
= nb_numa_nodes
;
2386 nodenr
= strtoull(option
, NULL
, 10);
2389 if (get_param_value(option
, 128, "mem", optarg
) == 0) {
2390 node_mem
[nodenr
] = 0;
2392 value
= strtoull(option
, &endptr
, 0);
2394 case 0: case 'M': case 'm':
2401 node_mem
[nodenr
] = value
;
2403 if (get_param_value(option
, 128, "cpus", optarg
) == 0) {
2404 node_cpumask
[nodenr
] = 0;
2406 value
= strtoull(option
, &endptr
, 10);
2409 fprintf(stderr
, "only 64 CPUs in NUMA mode supported.\n");
2411 if (*endptr
== '-') {
2412 endvalue
= strtoull(endptr
+1, &endptr
, 10);
2413 if (endvalue
>= 63) {
2416 "only 63 CPUs in NUMA mode supported.\n");
2418 value
= (2ULL << endvalue
) - (1ULL << value
);
2420 value
= 1ULL << value
;
2423 node_cpumask
[nodenr
] = value
;
2430 static void smp_parse(const char *optarg
)
2432 int smp
, sockets
= 0, threads
= 0, cores
= 0;
2436 smp
= strtoul(optarg
, &endptr
, 10);
2437 if (endptr
!= optarg
) {
2438 if (*endptr
== ',') {
2442 if (get_param_value(option
, 128, "sockets", endptr
) != 0)
2443 sockets
= strtoull(option
, NULL
, 10);
2444 if (get_param_value(option
, 128, "cores", endptr
) != 0)
2445 cores
= strtoull(option
, NULL
, 10);
2446 if (get_param_value(option
, 128, "threads", endptr
) != 0)
2447 threads
= strtoull(option
, NULL
, 10);
2448 if (get_param_value(option
, 128, "maxcpus", endptr
) != 0)
2449 max_cpus
= strtoull(option
, NULL
, 10);
2451 /* compute missing values, prefer sockets over cores over threads */
2452 if (smp
== 0 || sockets
== 0) {
2453 sockets
= sockets
> 0 ? sockets
: 1;
2454 cores
= cores
> 0 ? cores
: 1;
2455 threads
= threads
> 0 ? threads
: 1;
2457 smp
= cores
* threads
* sockets
;
2461 threads
= threads
> 0 ? threads
: 1;
2462 cores
= smp
/ (sockets
* threads
);
2465 threads
= smp
/ (cores
* sockets
);
2470 smp_cores
= cores
> 0 ? cores
: 1;
2471 smp_threads
= threads
> 0 ? threads
: 1;
2473 max_cpus
= smp_cpus
;
2476 /***********************************************************/
2479 static int usb_device_add(const char *devname
, int is_hotplug
)
2482 USBDevice
*dev
= NULL
;
2487 /* drivers with .usbdevice_name entry in USBDeviceInfo */
2488 dev
= usbdevice_create(devname
);
2492 /* the other ones */
2493 if (strstart(devname
, "host:", &p
)) {
2494 dev
= usb_host_device_open(p
);
2495 } else if (!strcmp(devname
, "bt") || strstart(devname
, "bt:", &p
)) {
2496 dev
= usb_bt_init(devname
[2] ? hci_init(p
) :
2497 bt_new_hci(qemu_find_bt_vlan(0)));
2508 static int usb_device_del(const char *devname
)
2513 if (strstart(devname
, "host:", &p
))
2514 return usb_host_device_close(p
);
2519 p
= strchr(devname
, '.');
2522 bus_num
= strtoul(devname
, NULL
, 0);
2523 addr
= strtoul(p
+ 1, NULL
, 0);
2525 return usb_device_delete_addr(bus_num
, addr
);
2528 static int usb_parse(const char *cmdline
)
2531 r
= usb_device_add(cmdline
, 0);
2533 fprintf(stderr
, "qemu: could not add USB device '%s'\n", cmdline
);
2538 void do_usb_add(Monitor
*mon
, const QDict
*qdict
)
2540 const char *devname
= qdict_get_str(qdict
, "devname");
2541 if (usb_device_add(devname
, 1) < 0) {
2542 qemu_error("could not add USB device '%s'\n", devname
);
2546 void do_usb_del(Monitor
*mon
, const QDict
*qdict
)
2548 const char *devname
= qdict_get_str(qdict
, "devname");
2549 if (usb_device_del(devname
) < 0) {
2550 qemu_error("could not delete USB device '%s'\n", devname
);
2554 /***********************************************************/
2555 /* PCMCIA/Cardbus */
2557 static struct pcmcia_socket_entry_s
{
2558 PCMCIASocket
*socket
;
2559 struct pcmcia_socket_entry_s
*next
;
2560 } *pcmcia_sockets
= 0;
2562 void pcmcia_socket_register(PCMCIASocket
*socket
)
2564 struct pcmcia_socket_entry_s
*entry
;
2566 entry
= qemu_malloc(sizeof(struct pcmcia_socket_entry_s
));
2567 entry
->socket
= socket
;
2568 entry
->next
= pcmcia_sockets
;
2569 pcmcia_sockets
= entry
;
2572 void pcmcia_socket_unregister(PCMCIASocket
*socket
)
2574 struct pcmcia_socket_entry_s
*entry
, **ptr
;
2576 ptr
= &pcmcia_sockets
;
2577 for (entry
= *ptr
; entry
; ptr
= &entry
->next
, entry
= *ptr
)
2578 if (entry
->socket
== socket
) {
2584 void pcmcia_info(Monitor
*mon
)
2586 struct pcmcia_socket_entry_s
*iter
;
2588 if (!pcmcia_sockets
)
2589 monitor_printf(mon
, "No PCMCIA sockets\n");
2591 for (iter
= pcmcia_sockets
; iter
; iter
= iter
->next
)
2592 monitor_printf(mon
, "%s: %s\n", iter
->socket
->slot_string
,
2593 iter
->socket
->attached
? iter
->socket
->card_string
:
2597 /***********************************************************/
2600 typedef struct IOHandlerRecord
{
2602 IOCanRWHandler
*fd_read_poll
;
2604 IOHandler
*fd_write
;
2607 /* temporary data */
2609 struct IOHandlerRecord
*next
;
2612 static IOHandlerRecord
*first_io_handler
;
2614 /* XXX: fd_read_poll should be suppressed, but an API change is
2615 necessary in the character devices to suppress fd_can_read(). */
2616 int qemu_set_fd_handler2(int fd
,
2617 IOCanRWHandler
*fd_read_poll
,
2619 IOHandler
*fd_write
,
2622 IOHandlerRecord
**pioh
, *ioh
;
2624 if (!fd_read
&& !fd_write
) {
2625 pioh
= &first_io_handler
;
2630 if (ioh
->fd
== fd
) {
2637 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
2641 ioh
= qemu_mallocz(sizeof(IOHandlerRecord
));
2642 ioh
->next
= first_io_handler
;
2643 first_io_handler
= ioh
;
2646 ioh
->fd_read_poll
= fd_read_poll
;
2647 ioh
->fd_read
= fd_read
;
2648 ioh
->fd_write
= fd_write
;
2649 ioh
->opaque
= opaque
;
2655 int qemu_set_fd_handler(int fd
,
2657 IOHandler
*fd_write
,
2660 return qemu_set_fd_handler2(fd
, NULL
, fd_read
, fd_write
, opaque
);
2664 /***********************************************************/
2665 /* Polling handling */
2667 typedef struct PollingEntry
{
2670 struct PollingEntry
*next
;
2673 static PollingEntry
*first_polling_entry
;
2675 int qemu_add_polling_cb(PollingFunc
*func
, void *opaque
)
2677 PollingEntry
**ppe
, *pe
;
2678 pe
= qemu_mallocz(sizeof(PollingEntry
));
2680 pe
->opaque
= opaque
;
2681 for(ppe
= &first_polling_entry
; *ppe
!= NULL
; ppe
= &(*ppe
)->next
);
2686 void qemu_del_polling_cb(PollingFunc
*func
, void *opaque
)
2688 PollingEntry
**ppe
, *pe
;
2689 for(ppe
= &first_polling_entry
; *ppe
!= NULL
; ppe
= &(*ppe
)->next
) {
2691 if (pe
->func
== func
&& pe
->opaque
== opaque
) {
2699 /***********************************************************/
2700 /* Wait objects support */
2701 typedef struct WaitObjects
{
2703 HANDLE events
[MAXIMUM_WAIT_OBJECTS
+ 1];
2704 WaitObjectFunc
*func
[MAXIMUM_WAIT_OBJECTS
+ 1];
2705 void *opaque
[MAXIMUM_WAIT_OBJECTS
+ 1];
2708 static WaitObjects wait_objects
= {0};
2710 int qemu_add_wait_object(HANDLE handle
, WaitObjectFunc
*func
, void *opaque
)
2712 WaitObjects
*w
= &wait_objects
;
2714 if (w
->num
>= MAXIMUM_WAIT_OBJECTS
)
2716 w
->events
[w
->num
] = handle
;
2717 w
->func
[w
->num
] = func
;
2718 w
->opaque
[w
->num
] = opaque
;
2723 void qemu_del_wait_object(HANDLE handle
, WaitObjectFunc
*func
, void *opaque
)
2726 WaitObjects
*w
= &wait_objects
;
2729 for (i
= 0; i
< w
->num
; i
++) {
2730 if (w
->events
[i
] == handle
)
2733 w
->events
[i
] = w
->events
[i
+ 1];
2734 w
->func
[i
] = w
->func
[i
+ 1];
2735 w
->opaque
[i
] = w
->opaque
[i
+ 1];
2743 /***********************************************************/
2744 /* ram save/restore */
2746 #define RAM_SAVE_FLAG_FULL 0x01 /* Obsolete, not used anymore */
2747 #define RAM_SAVE_FLAG_COMPRESS 0x02
2748 #define RAM_SAVE_FLAG_MEM_SIZE 0x04
2749 #define RAM_SAVE_FLAG_PAGE 0x08
2750 #define RAM_SAVE_FLAG_EOS 0x10
2752 static int is_dup_page(uint8_t *page
, uint8_t ch
)
2754 uint32_t val
= ch
<< 24 | ch
<< 16 | ch
<< 8 | ch
;
2755 uint32_t *array
= (uint32_t *)page
;
2758 for (i
= 0; i
< (TARGET_PAGE_SIZE
/ 4); i
++) {
2759 if (array
[i
] != val
)
2766 static int ram_save_block(QEMUFile
*f
)
2768 static ram_addr_t current_addr
= 0;
2769 ram_addr_t saved_addr
= current_addr
;
2770 ram_addr_t addr
= 0;
2773 while (addr
< last_ram_offset
) {
2774 if (cpu_physical_memory_get_dirty(current_addr
, MIGRATION_DIRTY_FLAG
)) {
2777 cpu_physical_memory_reset_dirty(current_addr
,
2778 current_addr
+ TARGET_PAGE_SIZE
,
2779 MIGRATION_DIRTY_FLAG
);
2781 p
= qemu_get_ram_ptr(current_addr
);
2783 if (is_dup_page(p
, *p
)) {
2784 qemu_put_be64(f
, current_addr
| RAM_SAVE_FLAG_COMPRESS
);
2785 qemu_put_byte(f
, *p
);
2787 qemu_put_be64(f
, current_addr
| RAM_SAVE_FLAG_PAGE
);
2788 qemu_put_buffer(f
, p
, TARGET_PAGE_SIZE
);
2794 addr
+= TARGET_PAGE_SIZE
;
2795 current_addr
= (saved_addr
+ addr
) % last_ram_offset
;
2801 static uint64_t bytes_transferred
;
2803 static ram_addr_t
ram_save_remaining(void)
2806 ram_addr_t count
= 0;
2808 for (addr
= 0; addr
< last_ram_offset
; addr
+= TARGET_PAGE_SIZE
) {
2809 if (cpu_physical_memory_get_dirty(addr
, MIGRATION_DIRTY_FLAG
))
2816 uint64_t ram_bytes_remaining(void)
2818 return ram_save_remaining() * TARGET_PAGE_SIZE
;
2821 uint64_t ram_bytes_transferred(void)
2823 return bytes_transferred
;
2826 uint64_t ram_bytes_total(void)
2828 return last_ram_offset
;
2831 static int ram_save_live(Monitor
*mon
, QEMUFile
*f
, int stage
, void *opaque
)
2834 uint64_t bytes_transferred_last
;
2836 uint64_t expected_time
= 0;
2839 cpu_physical_memory_set_dirty_tracking(0);
2843 if (cpu_physical_sync_dirty_bitmap(0, TARGET_PHYS_ADDR_MAX
) != 0) {
2844 qemu_file_set_error(f
);
2849 bytes_transferred
= 0;
2851 /* Make sure all dirty bits are set */
2852 for (addr
= 0; addr
< last_ram_offset
; addr
+= TARGET_PAGE_SIZE
) {
2853 if (!cpu_physical_memory_get_dirty(addr
, MIGRATION_DIRTY_FLAG
))
2854 cpu_physical_memory_set_dirty(addr
);
2857 /* Enable dirty memory tracking */
2858 cpu_physical_memory_set_dirty_tracking(1);
2860 qemu_put_be64(f
, last_ram_offset
| RAM_SAVE_FLAG_MEM_SIZE
);
2863 bytes_transferred_last
= bytes_transferred
;
2864 bwidth
= qemu_get_clock_ns(rt_clock
);
2866 while (!qemu_file_rate_limit(f
)) {
2869 ret
= ram_save_block(f
);
2870 bytes_transferred
+= ret
* TARGET_PAGE_SIZE
;
2871 if (ret
== 0) /* no more blocks */
2875 bwidth
= qemu_get_clock_ns(rt_clock
) - bwidth
;
2876 bwidth
= (bytes_transferred
- bytes_transferred_last
) / bwidth
;
2878 /* if we haven't transferred anything this round, force expected_time to a
2879 * a very high value, but without crashing */
2883 /* try transferring iterative blocks of memory */
2885 /* flush all remaining blocks regardless of rate limiting */
2886 while (ram_save_block(f
) != 0) {
2887 bytes_transferred
+= TARGET_PAGE_SIZE
;
2889 cpu_physical_memory_set_dirty_tracking(0);
2892 qemu_put_be64(f
, RAM_SAVE_FLAG_EOS
);
2894 expected_time
= ram_save_remaining() * TARGET_PAGE_SIZE
/ bwidth
;
2896 return (stage
== 2) && (expected_time
<= migrate_max_downtime());
2899 static int ram_load(QEMUFile
*f
, void *opaque
, int version_id
)
2904 if (version_id
!= 3)
2908 addr
= qemu_get_be64(f
);
2910 flags
= addr
& ~TARGET_PAGE_MASK
;
2911 addr
&= TARGET_PAGE_MASK
;
2913 if (flags
& RAM_SAVE_FLAG_MEM_SIZE
) {
2914 if (addr
!= last_ram_offset
)
2918 if (flags
& RAM_SAVE_FLAG_COMPRESS
) {
2919 uint8_t ch
= qemu_get_byte(f
);
2920 memset(qemu_get_ram_ptr(addr
), ch
, TARGET_PAGE_SIZE
);
2923 (!kvm_enabled() || kvm_has_sync_mmu())) {
2924 madvise(qemu_get_ram_ptr(addr
), TARGET_PAGE_SIZE
, MADV_DONTNEED
);
2927 } else if (flags
& RAM_SAVE_FLAG_PAGE
) {
2928 qemu_get_buffer(f
, qemu_get_ram_ptr(addr
), TARGET_PAGE_SIZE
);
2930 if (qemu_file_has_error(f
)) {
2933 } while (!(flags
& RAM_SAVE_FLAG_EOS
));
2938 void qemu_service_io(void)
2940 qemu_notify_event();
2943 /***********************************************************/
2944 /* machine registration */
2946 static QEMUMachine
*first_machine
= NULL
;
2947 QEMUMachine
*current_machine
= NULL
;
2949 int qemu_register_machine(QEMUMachine
*m
)
2952 pm
= &first_machine
;
2960 static QEMUMachine
*find_machine(const char *name
)
2964 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
2965 if (!strcmp(m
->name
, name
))
2967 if (m
->alias
&& !strcmp(m
->alias
, name
))
2973 static QEMUMachine
*find_default_machine(void)
2977 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
2978 if (m
->is_default
) {
2985 /***********************************************************/
2986 /* main execution loop */
2988 static void gui_update(void *opaque
)
2990 uint64_t interval
= GUI_REFRESH_INTERVAL
;
2991 DisplayState
*ds
= opaque
;
2992 DisplayChangeListener
*dcl
= ds
->listeners
;
2994 qemu_flush_coalesced_mmio_buffer();
2997 while (dcl
!= NULL
) {
2998 if (dcl
->gui_timer_interval
&&
2999 dcl
->gui_timer_interval
< interval
)
3000 interval
= dcl
->gui_timer_interval
;
3003 qemu_mod_timer(ds
->gui_timer
, interval
+ qemu_get_clock(rt_clock
));
3006 static void nographic_update(void *opaque
)
3008 uint64_t interval
= GUI_REFRESH_INTERVAL
;
3010 qemu_flush_coalesced_mmio_buffer();
3011 qemu_mod_timer(nographic_timer
, interval
+ qemu_get_clock(rt_clock
));
3014 void cpu_synchronize_all_states(void)
3018 for (cpu
= first_cpu
; cpu
; cpu
= cpu
->next_cpu
) {
3019 cpu_synchronize_state(cpu
);
3023 void cpu_synchronize_all_post_reset(void)
3027 for (cpu
= first_cpu
; cpu
; cpu
= cpu
->next_cpu
) {
3028 cpu_synchronize_post_reset(cpu
);
3032 void cpu_synchronize_all_post_init(void)
3036 for (cpu
= first_cpu
; cpu
; cpu
= cpu
->next_cpu
) {
3037 cpu_synchronize_post_init(cpu
);
3041 struct vm_change_state_entry
{
3042 VMChangeStateHandler
*cb
;
3044 QLIST_ENTRY (vm_change_state_entry
) entries
;
3047 static QLIST_HEAD(vm_change_state_head
, vm_change_state_entry
) vm_change_state_head
;
3049 VMChangeStateEntry
*qemu_add_vm_change_state_handler(VMChangeStateHandler
*cb
,
3052 VMChangeStateEntry
*e
;
3054 e
= qemu_mallocz(sizeof (*e
));
3058 QLIST_INSERT_HEAD(&vm_change_state_head
, e
, entries
);
3062 void qemu_del_vm_change_state_handler(VMChangeStateEntry
*e
)
3064 QLIST_REMOVE (e
, entries
);
3068 static void vm_state_notify(int running
, int reason
)
3070 VMChangeStateEntry
*e
;
3072 for (e
= vm_change_state_head
.lh_first
; e
; e
= e
->entries
.le_next
) {
3073 e
->cb(e
->opaque
, running
, reason
);
3077 static void resume_all_vcpus(void);
3078 static void pause_all_vcpus(void);
3085 vm_state_notify(1, 0);
3086 qemu_rearm_alarm_timer(alarm_timer
);
3091 /* reset/shutdown handler */
3093 typedef struct QEMUResetEntry
{
3094 QTAILQ_ENTRY(QEMUResetEntry
) entry
;
3095 QEMUResetHandler
*func
;
3099 static QTAILQ_HEAD(reset_handlers
, QEMUResetEntry
) reset_handlers
=
3100 QTAILQ_HEAD_INITIALIZER(reset_handlers
);
3101 static int reset_requested
;
3102 static int shutdown_requested
;
3103 static int powerdown_requested
;
3104 static int debug_requested
;
3105 static int vmstop_requested
;
3107 int qemu_shutdown_requested(void)
3109 int r
= shutdown_requested
;
3110 shutdown_requested
= 0;
3114 int qemu_reset_requested(void)
3116 int r
= reset_requested
;
3117 reset_requested
= 0;
3121 int qemu_powerdown_requested(void)
3123 int r
= powerdown_requested
;
3124 powerdown_requested
= 0;
3128 static int qemu_debug_requested(void)
3130 int r
= debug_requested
;
3131 debug_requested
= 0;
3135 static int qemu_vmstop_requested(void)
3137 int r
= vmstop_requested
;
3138 vmstop_requested
= 0;
3142 static void do_vm_stop(int reason
)
3145 cpu_disable_ticks();
3148 vm_state_notify(0, reason
);
3149 monitor_protocol_event(QEVENT_STOP
, NULL
);
3152 monitor_protocol_event(QEVENT_RESET
, NULL
);
3155 void qemu_register_reset(QEMUResetHandler
*func
, void *opaque
)
3157 QEMUResetEntry
*re
= qemu_mallocz(sizeof(QEMUResetEntry
));
3160 re
->opaque
= opaque
;
3161 QTAILQ_INSERT_TAIL(&reset_handlers
, re
, entry
);
3164 void qemu_unregister_reset(QEMUResetHandler
*func
, void *opaque
)
3168 QTAILQ_FOREACH(re
, &reset_handlers
, entry
) {
3169 if (re
->func
== func
&& re
->opaque
== opaque
) {
3170 QTAILQ_REMOVE(&reset_handlers
, re
, entry
);
3177 void qemu_system_reset(void)
3179 QEMUResetEntry
*re
, *nre
;
3181 /* reset all devices */
3182 QTAILQ_FOREACH_SAFE(re
, &reset_handlers
, entry
, nre
) {
3183 re
->func(re
->opaque
);
3185 cpu_synchronize_all_post_reset();
3188 void qemu_system_reset_request(void)
3191 shutdown_requested
= 1;
3193 reset_requested
= 1;
3195 qemu_notify_event();
3198 void qemu_system_shutdown_request(void)
3200 shutdown_requested
= 1;
3201 qemu_notify_event();
3204 void qemu_system_powerdown_request(void)
3206 powerdown_requested
= 1;
3207 qemu_notify_event();
3210 #ifdef CONFIG_IOTHREAD
3211 static void qemu_system_vmstop_request(int reason
)
3213 vmstop_requested
= reason
;
3214 qemu_notify_event();
3219 static int io_thread_fd
= -1;
3221 static void qemu_event_increment(void)
3223 /* Write 8 bytes to be compatible with eventfd. */
3224 static uint64_t val
= 1;
3227 if (io_thread_fd
== -1)
3231 ret
= write(io_thread_fd
, &val
, sizeof(val
));
3232 } while (ret
< 0 && errno
== EINTR
);
3234 /* EAGAIN is fine, a read must be pending. */
3235 if (ret
< 0 && errno
!= EAGAIN
) {
3236 fprintf(stderr
, "qemu_event_increment: write() filed: %s\n",
3242 static void qemu_event_read(void *opaque
)
3244 int fd
= (unsigned long)opaque
;
3248 /* Drain the notify pipe. For eventfd, only 8 bytes will be read. */
3250 len
= read(fd
, buffer
, sizeof(buffer
));
3251 } while ((len
== -1 && errno
== EINTR
) || len
== sizeof(buffer
));
3254 static int qemu_event_init(void)
3259 err
= qemu_eventfd(fds
);
3263 err
= fcntl_setfl(fds
[0], O_NONBLOCK
);
3267 err
= fcntl_setfl(fds
[1], O_NONBLOCK
);
3271 qemu_set_fd_handler2(fds
[0], NULL
, qemu_event_read
, NULL
,
3272 (void *)(unsigned long)fds
[0]);
3274 io_thread_fd
= fds
[1];
3283 HANDLE qemu_event_handle
;
3285 static void dummy_event_handler(void *opaque
)
3289 static int qemu_event_init(void)
3291 qemu_event_handle
= CreateEvent(NULL
, FALSE
, FALSE
, NULL
);
3292 if (!qemu_event_handle
) {
3293 fprintf(stderr
, "Failed CreateEvent: %ld\n", GetLastError());
3296 qemu_add_wait_object(qemu_event_handle
, dummy_event_handler
, NULL
);
3300 static void qemu_event_increment(void)
3302 if (!SetEvent(qemu_event_handle
)) {
3303 fprintf(stderr
, "qemu_event_increment: SetEvent failed: %ld\n",
3310 static int cpu_can_run(CPUState
*env
)
3321 #ifndef CONFIG_IOTHREAD
3322 static int qemu_init_main_loop(void)
3324 return qemu_event_init();
3327 void qemu_init_vcpu(void *_env
)
3329 CPUState
*env
= _env
;
3331 env
->nr_cores
= smp_cores
;
3332 env
->nr_threads
= smp_threads
;
3338 int qemu_cpu_self(void *env
)
3343 static void resume_all_vcpus(void)
3347 static void pause_all_vcpus(void)
3351 void qemu_cpu_kick(void *env
)
3356 void qemu_notify_event(void)
3358 CPUState
*env
= cpu_single_env
;
3365 void qemu_mutex_lock_iothread(void) {}
3366 void qemu_mutex_unlock_iothread(void) {}
3368 void vm_stop(int reason
)
3373 #else /* CONFIG_IOTHREAD */
3375 #include "qemu-thread.h"
3377 QemuMutex qemu_global_mutex
;
3378 static QemuMutex qemu_fair_mutex
;
3380 static QemuThread io_thread
;
3382 static QemuThread
*tcg_cpu_thread
;
3383 static QemuCond
*tcg_halt_cond
;
3385 static int qemu_system_ready
;
3387 static QemuCond qemu_cpu_cond
;
3389 static QemuCond qemu_system_cond
;
3390 static QemuCond qemu_pause_cond
;
3392 static void tcg_block_io_signals(void);
3393 static void kvm_block_io_signals(CPUState
*env
);
3394 static void unblock_io_signals(void);
3395 static int tcg_has_work(void);
3396 static int cpu_has_work(CPUState
*env
);
3398 static int qemu_init_main_loop(void)
3402 ret
= qemu_event_init();
3406 qemu_cond_init(&qemu_pause_cond
);
3407 qemu_mutex_init(&qemu_fair_mutex
);
3408 qemu_mutex_init(&qemu_global_mutex
);
3409 qemu_mutex_lock(&qemu_global_mutex
);
3411 unblock_io_signals();
3412 qemu_thread_self(&io_thread
);
3417 static void qemu_wait_io_event_common(CPUState
*env
)
3422 qemu_cond_signal(&qemu_pause_cond
);
3426 static void qemu_wait_io_event(CPUState
*env
)
3428 while (!tcg_has_work())
3429 qemu_cond_timedwait(env
->halt_cond
, &qemu_global_mutex
, 1000);
3431 qemu_mutex_unlock(&qemu_global_mutex
);
3434 * Users of qemu_global_mutex can be starved, having no chance
3435 * to acquire it since this path will get to it first.
3436 * So use another lock to provide fairness.
3438 qemu_mutex_lock(&qemu_fair_mutex
);
3439 qemu_mutex_unlock(&qemu_fair_mutex
);
3441 qemu_mutex_lock(&qemu_global_mutex
);
3442 qemu_wait_io_event_common(env
);
3445 static void qemu_kvm_eat_signal(CPUState
*env
, int timeout
)
3452 ts
.tv_sec
= timeout
/ 1000;
3453 ts
.tv_nsec
= (timeout
% 1000) * 1000000;
3455 sigemptyset(&waitset
);
3456 sigaddset(&waitset
, SIG_IPI
);
3458 qemu_mutex_unlock(&qemu_global_mutex
);
3459 r
= sigtimedwait(&waitset
, &siginfo
, &ts
);
3461 qemu_mutex_lock(&qemu_global_mutex
);
3463 if (r
== -1 && !(e
== EAGAIN
|| e
== EINTR
)) {
3464 fprintf(stderr
, "sigtimedwait: %s\n", strerror(e
));
3469 static void qemu_kvm_wait_io_event(CPUState
*env
)
3471 while (!cpu_has_work(env
))
3472 qemu_cond_timedwait(env
->halt_cond
, &qemu_global_mutex
, 1000);
3474 qemu_kvm_eat_signal(env
, 0);
3475 qemu_wait_io_event_common(env
);
3478 static int qemu_cpu_exec(CPUState
*env
);
3480 static void *kvm_cpu_thread_fn(void *arg
)
3482 CPUState
*env
= arg
;
3484 qemu_thread_self(env
->thread
);
3488 kvm_block_io_signals(env
);
3490 /* signal CPU creation */
3491 qemu_mutex_lock(&qemu_global_mutex
);
3493 qemu_cond_signal(&qemu_cpu_cond
);
3495 /* and wait for machine initialization */
3496 while (!qemu_system_ready
)
3497 qemu_cond_timedwait(&qemu_system_cond
, &qemu_global_mutex
, 100);
3500 if (cpu_can_run(env
))
3502 qemu_kvm_wait_io_event(env
);
3508 static void tcg_cpu_exec(void);
3510 static void *tcg_cpu_thread_fn(void *arg
)
3512 CPUState
*env
= arg
;
3514 tcg_block_io_signals();
3515 qemu_thread_self(env
->thread
);
3517 /* signal CPU creation */
3518 qemu_mutex_lock(&qemu_global_mutex
);
3519 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
)
3521 qemu_cond_signal(&qemu_cpu_cond
);
3523 /* and wait for machine initialization */
3524 while (!qemu_system_ready
)
3525 qemu_cond_timedwait(&qemu_system_cond
, &qemu_global_mutex
, 100);
3529 qemu_wait_io_event(cur_cpu
);
3535 void qemu_cpu_kick(void *_env
)
3537 CPUState
*env
= _env
;
3538 qemu_cond_broadcast(env
->halt_cond
);
3540 qemu_thread_signal(env
->thread
, SIG_IPI
);
3543 int qemu_cpu_self(void *_env
)
3545 CPUState
*env
= _env
;
3548 qemu_thread_self(&this);
3550 return qemu_thread_equal(&this, env
->thread
);
3553 static void cpu_signal(int sig
)
3556 cpu_exit(cpu_single_env
);
3559 static void tcg_block_io_signals(void)
3562 struct sigaction sigact
;
3565 sigaddset(&set
, SIGUSR2
);
3566 sigaddset(&set
, SIGIO
);
3567 sigaddset(&set
, SIGALRM
);
3568 sigaddset(&set
, SIGCHLD
);
3569 pthread_sigmask(SIG_BLOCK
, &set
, NULL
);
3572 sigaddset(&set
, SIG_IPI
);
3573 pthread_sigmask(SIG_UNBLOCK
, &set
, NULL
);
3575 memset(&sigact
, 0, sizeof(sigact
));
3576 sigact
.sa_handler
= cpu_signal
;
3577 sigaction(SIG_IPI
, &sigact
, NULL
);
3580 static void dummy_signal(int sig
)
3584 static void kvm_block_io_signals(CPUState
*env
)
3588 struct sigaction sigact
;
3591 sigaddset(&set
, SIGUSR2
);
3592 sigaddset(&set
, SIGIO
);
3593 sigaddset(&set
, SIGALRM
);
3594 sigaddset(&set
, SIGCHLD
);
3595 sigaddset(&set
, SIG_IPI
);
3596 pthread_sigmask(SIG_BLOCK
, &set
, NULL
);
3598 pthread_sigmask(SIG_BLOCK
, NULL
, &set
);
3599 sigdelset(&set
, SIG_IPI
);
3601 memset(&sigact
, 0, sizeof(sigact
));
3602 sigact
.sa_handler
= dummy_signal
;
3603 sigaction(SIG_IPI
, &sigact
, NULL
);
3605 r
= kvm_set_signal_mask(env
, &set
);
3607 fprintf(stderr
, "kvm_set_signal_mask: %s\n", strerror(r
));
3612 static void unblock_io_signals(void)
3617 sigaddset(&set
, SIGUSR2
);
3618 sigaddset(&set
, SIGIO
);
3619 sigaddset(&set
, SIGALRM
);
3620 pthread_sigmask(SIG_UNBLOCK
, &set
, NULL
);
3623 sigaddset(&set
, SIG_IPI
);
3624 pthread_sigmask(SIG_BLOCK
, &set
, NULL
);
3627 static void qemu_signal_lock(unsigned int msecs
)
3629 qemu_mutex_lock(&qemu_fair_mutex
);
3631 while (qemu_mutex_trylock(&qemu_global_mutex
)) {
3632 qemu_thread_signal(tcg_cpu_thread
, SIG_IPI
);
3633 if (!qemu_mutex_timedlock(&qemu_global_mutex
, msecs
))
3636 qemu_mutex_unlock(&qemu_fair_mutex
);
3639 void qemu_mutex_lock_iothread(void)
3641 if (kvm_enabled()) {
3642 qemu_mutex_lock(&qemu_fair_mutex
);
3643 qemu_mutex_lock(&qemu_global_mutex
);
3644 qemu_mutex_unlock(&qemu_fair_mutex
);
3646 qemu_signal_lock(100);
3649 void qemu_mutex_unlock_iothread(void)
3651 qemu_mutex_unlock(&qemu_global_mutex
);
3654 static int all_vcpus_paused(void)
3656 CPUState
*penv
= first_cpu
;
3661 penv
= (CPUState
*)penv
->next_cpu
;
3667 static void pause_all_vcpus(void)
3669 CPUState
*penv
= first_cpu
;
3673 qemu_thread_signal(penv
->thread
, SIG_IPI
);
3674 qemu_cpu_kick(penv
);
3675 penv
= (CPUState
*)penv
->next_cpu
;
3678 while (!all_vcpus_paused()) {
3679 qemu_cond_timedwait(&qemu_pause_cond
, &qemu_global_mutex
, 100);
3682 qemu_thread_signal(penv
->thread
, SIG_IPI
);
3683 penv
= (CPUState
*)penv
->next_cpu
;
3688 static void resume_all_vcpus(void)
3690 CPUState
*penv
= first_cpu
;
3695 qemu_thread_signal(penv
->thread
, SIG_IPI
);
3696 qemu_cpu_kick(penv
);
3697 penv
= (CPUState
*)penv
->next_cpu
;
3701 static void tcg_init_vcpu(void *_env
)
3703 CPUState
*env
= _env
;
3704 /* share a single thread for all cpus with TCG */
3705 if (!tcg_cpu_thread
) {
3706 env
->thread
= qemu_mallocz(sizeof(QemuThread
));
3707 env
->halt_cond
= qemu_mallocz(sizeof(QemuCond
));
3708 qemu_cond_init(env
->halt_cond
);
3709 qemu_thread_create(env
->thread
, tcg_cpu_thread_fn
, env
);
3710 while (env
->created
== 0)
3711 qemu_cond_timedwait(&qemu_cpu_cond
, &qemu_global_mutex
, 100);
3712 tcg_cpu_thread
= env
->thread
;
3713 tcg_halt_cond
= env
->halt_cond
;
3715 env
->thread
= tcg_cpu_thread
;
3716 env
->halt_cond
= tcg_halt_cond
;
3720 static void kvm_start_vcpu(CPUState
*env
)
3722 env
->thread
= qemu_mallocz(sizeof(QemuThread
));
3723 env
->halt_cond
= qemu_mallocz(sizeof(QemuCond
));
3724 qemu_cond_init(env
->halt_cond
);
3725 qemu_thread_create(env
->thread
, kvm_cpu_thread_fn
, env
);
3726 while (env
->created
== 0)
3727 qemu_cond_timedwait(&qemu_cpu_cond
, &qemu_global_mutex
, 100);
3730 void qemu_init_vcpu(void *_env
)
3732 CPUState
*env
= _env
;
3734 env
->nr_cores
= smp_cores
;
3735 env
->nr_threads
= smp_threads
;
3737 kvm_start_vcpu(env
);
3742 void qemu_notify_event(void)
3744 qemu_event_increment();
3747 void vm_stop(int reason
)
3750 qemu_thread_self(&me
);
3752 if (!qemu_thread_equal(&me
, &io_thread
)) {
3753 qemu_system_vmstop_request(reason
);
3755 * FIXME: should not return to device code in case
3756 * vm_stop() has been requested.
3758 if (cpu_single_env
) {
3759 cpu_exit(cpu_single_env
);
3760 cpu_single_env
->stop
= 1;
3771 static void host_main_loop_wait(int *timeout
)
3777 /* XXX: need to suppress polling by better using win32 events */
3779 for(pe
= first_polling_entry
; pe
!= NULL
; pe
= pe
->next
) {
3780 ret
|= pe
->func(pe
->opaque
);
3784 WaitObjects
*w
= &wait_objects
;
3786 ret
= WaitForMultipleObjects(w
->num
, w
->events
, FALSE
, *timeout
);
3787 if (WAIT_OBJECT_0
+ 0 <= ret
&& ret
<= WAIT_OBJECT_0
+ w
->num
- 1) {
3788 if (w
->func
[ret
- WAIT_OBJECT_0
])
3789 w
->func
[ret
- WAIT_OBJECT_0
](w
->opaque
[ret
- WAIT_OBJECT_0
]);
3791 /* Check for additional signaled events */
3792 for(i
= (ret
- WAIT_OBJECT_0
+ 1); i
< w
->num
; i
++) {
3794 /* Check if event is signaled */
3795 ret2
= WaitForSingleObject(w
->events
[i
], 0);
3796 if(ret2
== WAIT_OBJECT_0
) {
3798 w
->func
[i
](w
->opaque
[i
]);
3799 } else if (ret2
== WAIT_TIMEOUT
) {
3801 err
= GetLastError();
3802 fprintf(stderr
, "WaitForSingleObject error %d %d\n", i
, err
);
3805 } else if (ret
== WAIT_TIMEOUT
) {
3807 err
= GetLastError();
3808 fprintf(stderr
, "WaitForMultipleObjects error %d %d\n", ret
, err
);
3815 static void host_main_loop_wait(int *timeout
)
3820 void main_loop_wait(int timeout
)
3822 IOHandlerRecord
*ioh
;
3823 fd_set rfds
, wfds
, xfds
;
3827 qemu_bh_update_timeout(&timeout
);
3829 host_main_loop_wait(&timeout
);
3831 /* poll any events */
3832 /* XXX: separate device handlers from system ones */
3837 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
3841 (!ioh
->fd_read_poll
||
3842 ioh
->fd_read_poll(ioh
->opaque
) != 0)) {
3843 FD_SET(ioh
->fd
, &rfds
);
3847 if (ioh
->fd_write
) {
3848 FD_SET(ioh
->fd
, &wfds
);
3854 tv
.tv_sec
= timeout
/ 1000;
3855 tv
.tv_usec
= (timeout
% 1000) * 1000;
3857 slirp_select_fill(&nfds
, &rfds
, &wfds
, &xfds
);
3859 qemu_mutex_unlock_iothread();
3860 ret
= select(nfds
+ 1, &rfds
, &wfds
, &xfds
, &tv
);
3861 qemu_mutex_lock_iothread();
3863 IOHandlerRecord
**pioh
;
3865 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
3866 if (!ioh
->deleted
&& ioh
->fd_read
&& FD_ISSET(ioh
->fd
, &rfds
)) {
3867 ioh
->fd_read(ioh
->opaque
);
3869 if (!ioh
->deleted
&& ioh
->fd_write
&& FD_ISSET(ioh
->fd
, &wfds
)) {
3870 ioh
->fd_write(ioh
->opaque
);
3874 /* remove deleted IO handlers */
3875 pioh
= &first_io_handler
;
3886 slirp_select_poll(&rfds
, &wfds
, &xfds
, (ret
< 0));
3888 /* rearm timer, if not periodic */
3889 if (alarm_timer
->flags
& ALARM_FLAG_EXPIRED
) {
3890 alarm_timer
->flags
&= ~ALARM_FLAG_EXPIRED
;
3891 qemu_rearm_alarm_timer(alarm_timer
);
3894 /* vm time timers */
3896 if (!cur_cpu
|| likely(!(cur_cpu
->singlestep_enabled
& SSTEP_NOTIMER
)))
3897 qemu_run_timers(&active_timers
[QEMU_CLOCK_VIRTUAL
],
3898 qemu_get_clock(vm_clock
));
3901 /* real time timers */
3902 qemu_run_timers(&active_timers
[QEMU_CLOCK_REALTIME
],
3903 qemu_get_clock(rt_clock
));
3905 qemu_run_timers(&active_timers
[QEMU_CLOCK_HOST
],
3906 qemu_get_clock(host_clock
));
3908 /* Check bottom-halves last in case any of the earlier events triggered
3914 static int qemu_cpu_exec(CPUState
*env
)
3917 #ifdef CONFIG_PROFILER
3921 #ifdef CONFIG_PROFILER
3922 ti
= profile_getclock();
3927 qemu_icount
-= (env
->icount_decr
.u16
.low
+ env
->icount_extra
);
3928 env
->icount_decr
.u16
.low
= 0;
3929 env
->icount_extra
= 0;
3930 count
= qemu_next_deadline();
3931 count
= (count
+ (1 << icount_time_shift
) - 1)
3932 >> icount_time_shift
;
3933 qemu_icount
+= count
;
3934 decr
= (count
> 0xffff) ? 0xffff : count
;
3936 env
->icount_decr
.u16
.low
= decr
;
3937 env
->icount_extra
= count
;
3939 ret
= cpu_exec(env
);
3940 #ifdef CONFIG_PROFILER
3941 qemu_time
+= profile_getclock() - ti
;
3944 /* Fold pending instructions back into the
3945 instruction counter, and clear the interrupt flag. */
3946 qemu_icount
-= (env
->icount_decr
.u16
.low
3947 + env
->icount_extra
);
3948 env
->icount_decr
.u32
= 0;
3949 env
->icount_extra
= 0;
3954 static void tcg_cpu_exec(void)
3958 if (next_cpu
== NULL
)
3959 next_cpu
= first_cpu
;
3960 for (; next_cpu
!= NULL
; next_cpu
= next_cpu
->next_cpu
) {
3961 CPUState
*env
= cur_cpu
= next_cpu
;
3963 if (timer_alarm_pending
) {
3964 timer_alarm_pending
= 0;
3967 if (cpu_can_run(env
))
3968 ret
= qemu_cpu_exec(env
);
3972 if (ret
== EXCP_DEBUG
) {
3973 gdb_set_stop_cpu(env
);
3974 debug_requested
= 1;
3980 static int cpu_has_work(CPUState
*env
)
3988 if (qemu_cpu_has_work(env
))
3993 static int tcg_has_work(void)
3997 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
)
3998 if (cpu_has_work(env
))
4003 static int qemu_calculate_timeout(void)
4005 #ifndef CONFIG_IOTHREAD
4010 else if (tcg_has_work())
4012 else if (!use_icount
)
4015 /* XXX: use timeout computed from timers */
4018 /* Advance virtual time to the next event. */
4019 if (use_icount
== 1) {
4020 /* When not using an adaptive execution frequency
4021 we tend to get badly out of sync with real time,
4022 so just delay for a reasonable amount of time. */
4025 delta
= cpu_get_icount() - cpu_get_clock();
4028 /* If virtual time is ahead of real time then just
4030 timeout
= (delta
/ 1000000) + 1;
4032 /* Wait for either IO to occur or the next
4034 add
= qemu_next_deadline();
4035 /* We advance the timer before checking for IO.
4036 Limit the amount we advance so that early IO
4037 activity won't get the guest too far ahead. */
4041 add
= (add
+ (1 << icount_time_shift
) - 1)
4042 >> icount_time_shift
;
4044 timeout
= delta
/ 1000000;
4051 #else /* CONFIG_IOTHREAD */
4056 static int vm_can_run(void)
4058 if (powerdown_requested
)
4060 if (reset_requested
)
4062 if (shutdown_requested
)
4064 if (debug_requested
)
4069 qemu_irq qemu_system_powerdown
;
4071 static void main_loop(void)
4075 #ifdef CONFIG_IOTHREAD
4076 qemu_system_ready
= 1;
4077 qemu_cond_broadcast(&qemu_system_cond
);
4082 #ifdef CONFIG_PROFILER
4085 #ifndef CONFIG_IOTHREAD
4088 #ifdef CONFIG_PROFILER
4089 ti
= profile_getclock();
4091 main_loop_wait(qemu_calculate_timeout());
4092 #ifdef CONFIG_PROFILER
4093 dev_time
+= profile_getclock() - ti
;
4095 } while (vm_can_run());
4097 if (qemu_debug_requested()) {
4098 vm_stop(EXCP_DEBUG
);
4100 if (qemu_shutdown_requested()) {
4101 monitor_protocol_event(QEVENT_SHUTDOWN
, NULL
);
4108 if (qemu_reset_requested()) {
4110 qemu_system_reset();
4113 if (qemu_powerdown_requested()) {
4114 monitor_protocol_event(QEVENT_POWERDOWN
, NULL
);
4115 qemu_irq_raise(qemu_system_powerdown
);
4117 if ((r
= qemu_vmstop_requested())) {
4124 static void version(void)
4126 printf("QEMU PC emulator version " QEMU_VERSION QEMU_PKGVERSION
", Copyright (c) 2003-2008 Fabrice Bellard\n");
4129 static void help(int exitcode
)
4131 const char *options_help
=
4132 #define DEF(option, opt_arg, opt_enum, opt_help) \
4134 #define DEFHEADING(text) stringify(text) "\n"
4135 #include "qemu-options.h"
4141 printf("usage: %s [options] [disk_image]\n"
4143 "'disk_image' is a raw hard image image for IDE hard disk 0\n"
4146 "During emulation, the following keys are useful:\n"
4147 "ctrl-alt-f toggle full screen\n"
4148 "ctrl-alt-n switch to virtual console 'n'\n"
4149 "ctrl-alt toggle mouse and keyboard grab\n"
4151 "When using -nographic, press 'ctrl-a h' to get some help.\n",
4157 #define HAS_ARG 0x0001
4160 #define DEF(option, opt_arg, opt_enum, opt_help) \
4162 #define DEFHEADING(text)
4163 #include "qemu-options.h"
4169 typedef struct QEMUOption
{
4175 static const QEMUOption qemu_options
[] = {
4176 { "h", 0, QEMU_OPTION_h
},
4177 #define DEF(option, opt_arg, opt_enum, opt_help) \
4178 { option, opt_arg, opt_enum },
4179 #define DEFHEADING(text)
4180 #include "qemu-options.h"
4188 struct soundhw soundhw
[] = {
4189 #ifdef HAS_AUDIO_CHOICE
4190 #if defined(TARGET_I386) || defined(TARGET_MIPS)
4196 { .init_isa
= pcspk_audio_init
}
4203 "Creative Sound Blaster 16",
4206 { .init_isa
= SB16_init
}
4210 #ifdef CONFIG_CS4231A
4216 { .init_isa
= cs4231a_init
}
4224 "Yamaha YMF262 (OPL3)",
4226 "Yamaha YM3812 (OPL2)",
4230 { .init_isa
= Adlib_init
}
4237 "Gravis Ultrasound GF1",
4240 { .init_isa
= GUS_init
}
4247 "Intel 82801AA AC97 Audio",
4250 { .init_pci
= ac97_init
}
4254 #ifdef CONFIG_ES1370
4257 "ENSONIQ AudioPCI ES1370",
4260 { .init_pci
= es1370_init
}
4264 #endif /* HAS_AUDIO_CHOICE */
4266 { NULL
, NULL
, 0, 0, { NULL
} }
4269 static void select_soundhw (const char *optarg
)
4273 if (*optarg
== '?') {
4276 printf ("Valid sound card names (comma separated):\n");
4277 for (c
= soundhw
; c
->name
; ++c
) {
4278 printf ("%-11s %s\n", c
->name
, c
->descr
);
4280 printf ("\n-soundhw all will enable all of the above\n");
4281 exit (*optarg
!= '?');
4289 if (!strcmp (optarg
, "all")) {
4290 for (c
= soundhw
; c
->name
; ++c
) {
4298 e
= strchr (p
, ',');
4299 l
= !e
? strlen (p
) : (size_t) (e
- p
);
4301 for (c
= soundhw
; c
->name
; ++c
) {
4302 if (!strncmp (c
->name
, p
, l
) && !c
->name
[l
]) {
4311 "Unknown sound card name (too big to show)\n");
4314 fprintf (stderr
, "Unknown sound card name `%.*s'\n",
4319 p
+= l
+ (e
!= NULL
);
4323 goto show_valid_cards
;
4328 static void select_vgahw (const char *p
)
4333 vga_interface_type
= VGA_NONE
;
4334 if (strstart(p
, "std", &opts
)) {
4335 vga_interface_type
= VGA_STD
;
4336 } else if (strstart(p
, "cirrus", &opts
)) {
4337 vga_interface_type
= VGA_CIRRUS
;
4338 } else if (strstart(p
, "vmware", &opts
)) {
4339 vga_interface_type
= VGA_VMWARE
;
4340 } else if (strstart(p
, "xenfb", &opts
)) {
4341 vga_interface_type
= VGA_XENFB
;
4342 } else if (!strstart(p
, "none", &opts
)) {
4344 fprintf(stderr
, "Unknown vga type: %s\n", p
);
4348 const char *nextopt
;
4350 if (strstart(opts
, ",retrace=", &nextopt
)) {
4352 if (strstart(opts
, "dumb", &nextopt
))
4353 vga_retrace_method
= VGA_RETRACE_DUMB
;
4354 else if (strstart(opts
, "precise", &nextopt
))
4355 vga_retrace_method
= VGA_RETRACE_PRECISE
;
4356 else goto invalid_vga
;
4357 } else goto invalid_vga
;
4363 static int balloon_parse(const char *arg
)
4367 if (strcmp(arg
, "none") == 0) {
4371 if (!strncmp(arg
, "virtio", 6)) {
4372 if (arg
[6] == ',') {
4373 /* have params -> parse them */
4374 opts
= qemu_opts_parse(&qemu_device_opts
, arg
+7, NULL
);
4378 /* create empty opts */
4379 opts
= qemu_opts_create(&qemu_device_opts
, NULL
, 0);
4381 qemu_opt_set(opts
, "driver", "virtio-balloon-pci");
4390 static BOOL WINAPI
qemu_ctrl_handler(DWORD type
)
4392 exit(STATUS_CONTROL_C_EXIT
);
4397 int qemu_uuid_parse(const char *str
, uint8_t *uuid
)
4401 if(strlen(str
) != 36)
4404 ret
= sscanf(str
, UUID_FMT
, &uuid
[0], &uuid
[1], &uuid
[2], &uuid
[3],
4405 &uuid
[4], &uuid
[5], &uuid
[6], &uuid
[7], &uuid
[8], &uuid
[9],
4406 &uuid
[10], &uuid
[11], &uuid
[12], &uuid
[13], &uuid
[14], &uuid
[15]);
4412 smbios_add_field(1, offsetof(struct smbios_type_1
, uuid
), 16, uuid
);
4420 static void termsig_handler(int signal
)
4422 qemu_system_shutdown_request();
4425 static void sigchld_handler(int signal
)
4427 waitpid(-1, NULL
, WNOHANG
);
4430 static void sighandler_setup(void)
4432 struct sigaction act
;
4434 memset(&act
, 0, sizeof(act
));
4435 act
.sa_handler
= termsig_handler
;
4436 sigaction(SIGINT
, &act
, NULL
);
4437 sigaction(SIGHUP
, &act
, NULL
);
4438 sigaction(SIGTERM
, &act
, NULL
);
4440 act
.sa_handler
= sigchld_handler
;
4441 act
.sa_flags
= SA_NOCLDSTOP
;
4442 sigaction(SIGCHLD
, &act
, NULL
);
4448 /* Look for support files in the same directory as the executable. */
4449 static char *find_datadir(const char *argv0
)
4455 len
= GetModuleFileName(NULL
, buf
, sizeof(buf
) - 1);
4462 while (p
!= buf
&& *p
!= '\\')
4465 if (access(buf
, R_OK
) == 0) {
4466 return qemu_strdup(buf
);
4472 /* Find a likely location for support files using the location of the binary.
4473 For installed binaries this will be "$bindir/../share/qemu". When
4474 running from the build tree this will be "$bindir/../pc-bios". */
4475 #define SHARE_SUFFIX "/share/qemu"
4476 #define BUILD_SUFFIX "/pc-bios"
4477 static char *find_datadir(const char *argv0
)
4485 #if defined(__linux__)
4488 len
= readlink("/proc/self/exe", buf
, sizeof(buf
) - 1);
4494 #elif defined(__FreeBSD__)
4497 len
= readlink("/proc/curproc/file", buf
, sizeof(buf
) - 1);
4504 /* If we don't have any way of figuring out the actual executable
4505 location then try argv[0]. */
4507 p
= realpath(argv0
, buf
);
4515 max_len
= strlen(dir
) +
4516 MAX(strlen(SHARE_SUFFIX
), strlen(BUILD_SUFFIX
)) + 1;
4517 res
= qemu_mallocz(max_len
);
4518 snprintf(res
, max_len
, "%s%s", dir
, SHARE_SUFFIX
);
4519 if (access(res
, R_OK
)) {
4520 snprintf(res
, max_len
, "%s%s", dir
, BUILD_SUFFIX
);
4521 if (access(res
, R_OK
)) {
4533 char *qemu_find_file(int type
, const char *name
)
4539 /* If name contains path separators then try it as a straight path. */
4540 if ((strchr(name
, '/') || strchr(name
, '\\'))
4541 && access(name
, R_OK
) == 0) {
4542 return qemu_strdup(name
);
4545 case QEMU_FILE_TYPE_BIOS
:
4548 case QEMU_FILE_TYPE_KEYMAP
:
4549 subdir
= "keymaps/";
4554 len
= strlen(data_dir
) + strlen(name
) + strlen(subdir
) + 2;
4555 buf
= qemu_mallocz(len
);
4556 snprintf(buf
, len
, "%s/%s%s", data_dir
, subdir
, name
);
4557 if (access(buf
, R_OK
)) {
4564 static int device_help_func(QemuOpts
*opts
, void *opaque
)
4566 return qdev_device_help(opts
);
4569 static int device_init_func(QemuOpts
*opts
, void *opaque
)
4573 dev
= qdev_device_add(opts
);
4579 static int chardev_init_func(QemuOpts
*opts
, void *opaque
)
4581 CharDriverState
*chr
;
4583 chr
= qemu_chr_open_opts(opts
, NULL
);
4589 static int mon_init_func(QemuOpts
*opts
, void *opaque
)
4591 CharDriverState
*chr
;
4592 const char *chardev
;
4596 mode
= qemu_opt_get(opts
, "mode");
4600 if (strcmp(mode
, "readline") == 0) {
4601 flags
= MONITOR_USE_READLINE
;
4602 } else if (strcmp(mode
, "control") == 0) {
4603 flags
= MONITOR_USE_CONTROL
;
4605 fprintf(stderr
, "unknown monitor mode \"%s\"\n", mode
);
4609 if (qemu_opt_get_bool(opts
, "default", 0))
4610 flags
|= MONITOR_IS_DEFAULT
;
4612 chardev
= qemu_opt_get(opts
, "chardev");
4613 chr
= qemu_chr_find(chardev
);
4615 fprintf(stderr
, "chardev \"%s\" not found\n", chardev
);
4619 monitor_init(chr
, flags
);
4623 static void monitor_parse(const char *optarg
, const char *mode
)
4625 static int monitor_device_index
= 0;
4631 if (strstart(optarg
, "chardev:", &p
)) {
4632 snprintf(label
, sizeof(label
), "%s", p
);
4634 if (monitor_device_index
) {
4635 snprintf(label
, sizeof(label
), "monitor%d",
4636 monitor_device_index
);
4638 snprintf(label
, sizeof(label
), "monitor");
4641 opts
= qemu_chr_parse_compat(label
, optarg
);
4643 fprintf(stderr
, "parse error: %s\n", optarg
);
4648 opts
= qemu_opts_create(&qemu_mon_opts
, label
, 1);
4650 fprintf(stderr
, "duplicate chardev: %s\n", label
);
4653 qemu_opt_set(opts
, "mode", mode
);
4654 qemu_opt_set(opts
, "chardev", label
);
4656 qemu_opt_set(opts
, "default", "on");
4657 monitor_device_index
++;
4660 struct device_config
{
4662 DEV_USB
, /* -usbdevice */
4664 DEV_SERIAL
, /* -serial */
4665 DEV_PARALLEL
, /* -parallel */
4666 DEV_VIRTCON
, /* -virtioconsole */
4667 DEV_DEBUGCON
, /* -debugcon */
4669 const char *cmdline
;
4670 QTAILQ_ENTRY(device_config
) next
;
4672 QTAILQ_HEAD(, device_config
) device_configs
= QTAILQ_HEAD_INITIALIZER(device_configs
);
4674 static void add_device_config(int type
, const char *cmdline
)
4676 struct device_config
*conf
;
4678 conf
= qemu_mallocz(sizeof(*conf
));
4680 conf
->cmdline
= cmdline
;
4681 QTAILQ_INSERT_TAIL(&device_configs
, conf
, next
);
4684 static int foreach_device_config(int type
, int (*func
)(const char *cmdline
))
4686 struct device_config
*conf
;
4689 QTAILQ_FOREACH(conf
, &device_configs
, next
) {
4690 if (conf
->type
!= type
)
4692 rc
= func(conf
->cmdline
);
4699 static int serial_parse(const char *devname
)
4701 static int index
= 0;
4704 if (strcmp(devname
, "none") == 0)
4706 if (index
== MAX_SERIAL_PORTS
) {
4707 fprintf(stderr
, "qemu: too many serial ports\n");
4710 snprintf(label
, sizeof(label
), "serial%d", index
);
4711 serial_hds
[index
] = qemu_chr_open(label
, devname
, NULL
);
4712 if (!serial_hds
[index
]) {
4713 fprintf(stderr
, "qemu: could not open serial device '%s': %s\n",
4714 devname
, strerror(errno
));
4721 static int parallel_parse(const char *devname
)
4723 static int index
= 0;
4726 if (strcmp(devname
, "none") == 0)
4728 if (index
== MAX_PARALLEL_PORTS
) {
4729 fprintf(stderr
, "qemu: too many parallel ports\n");
4732 snprintf(label
, sizeof(label
), "parallel%d", index
);
4733 parallel_hds
[index
] = qemu_chr_open(label
, devname
, NULL
);
4734 if (!parallel_hds
[index
]) {
4735 fprintf(stderr
, "qemu: could not open parallel device '%s': %s\n",
4736 devname
, strerror(errno
));
4743 static int virtcon_parse(const char *devname
)
4745 static int index
= 0;
4747 QemuOpts
*bus_opts
, *dev_opts
;
4749 if (strcmp(devname
, "none") == 0)
4751 if (index
== MAX_VIRTIO_CONSOLES
) {
4752 fprintf(stderr
, "qemu: too many virtio consoles\n");
4756 bus_opts
= qemu_opts_create(&qemu_device_opts
, NULL
, 0);
4757 qemu_opt_set(bus_opts
, "driver", "virtio-serial");
4759 dev_opts
= qemu_opts_create(&qemu_device_opts
, NULL
, 0);
4760 qemu_opt_set(dev_opts
, "driver", "virtconsole");
4762 snprintf(label
, sizeof(label
), "virtcon%d", index
);
4763 virtcon_hds
[index
] = qemu_chr_open(label
, devname
, NULL
);
4764 if (!virtcon_hds
[index
]) {
4765 fprintf(stderr
, "qemu: could not open virtio console '%s': %s\n",
4766 devname
, strerror(errno
));
4769 qemu_opt_set(dev_opts
, "chardev", label
);
4775 static int debugcon_parse(const char *devname
)
4779 if (!qemu_chr_open("debugcon", devname
, NULL
)) {
4782 opts
= qemu_opts_create(&qemu_device_opts
, "debugcon", 1);
4784 fprintf(stderr
, "qemu: already have a debugcon device\n");
4787 qemu_opt_set(opts
, "driver", "isa-debugcon");
4788 qemu_opt_set(opts
, "chardev", "debugcon");
4792 static const QEMUOption
*lookup_opt(int argc
, char **argv
,
4793 const char **poptarg
, int *poptind
)
4795 const QEMUOption
*popt
;
4796 int optind
= *poptind
;
4797 char *r
= argv
[optind
];
4801 /* Treat --foo the same as -foo. */
4804 popt
= qemu_options
;
4807 fprintf(stderr
, "%s: invalid option -- '%s'\n",
4811 if (!strcmp(popt
->name
, r
+ 1))
4815 if (popt
->flags
& HAS_ARG
) {
4816 if (optind
>= argc
) {
4817 fprintf(stderr
, "%s: option '%s' requires an argument\n",
4821 optarg
= argv
[optind
++];
4832 int main(int argc
, char **argv
, char **envp
)
4834 const char *gdbstub_dev
= NULL
;
4835 uint32_t boot_devices_bitmap
= 0;
4837 int snapshot
, linux_boot
, net_boot
;
4838 const char *initrd_filename
;
4839 const char *kernel_filename
, *kernel_cmdline
;
4840 char boot_devices
[33] = "cad"; /* default to HD->floppy->CD-ROM */
4842 DisplayChangeListener
*dcl
;
4843 int cyls
, heads
, secs
, translation
;
4844 QemuOpts
*hda_opts
= NULL
, *opts
;
4847 const char *loadvm
= NULL
;
4848 QEMUMachine
*machine
;
4849 const char *cpu_model
;
4854 const char *pid_file
= NULL
;
4855 const char *incoming
= NULL
;
4858 struct passwd
*pwd
= NULL
;
4859 const char *chroot_dir
= NULL
;
4860 const char *run_as
= NULL
;
4863 int show_vnc_port
= 0;
4868 qemu_errors_to_file(stderr
);
4869 qemu_cache_utils_init(envp
);
4871 QLIST_INIT (&vm_change_state_head
);
4874 struct sigaction act
;
4875 sigfillset(&act
.sa_mask
);
4877 act
.sa_handler
= SIG_IGN
;
4878 sigaction(SIGPIPE
, &act
, NULL
);
4881 SetConsoleCtrlHandler(qemu_ctrl_handler
, TRUE
);
4882 /* Note: cpu_interrupt() is currently not SMP safe, so we force
4883 QEMU to run on a single CPU */
4888 h
= GetCurrentProcess();
4889 if (GetProcessAffinityMask(h
, &mask
, &smask
)) {
4890 for(i
= 0; i
< 32; i
++) {
4891 if (mask
& (1 << i
))
4896 SetProcessAffinityMask(h
, mask
);
4902 module_call_init(MODULE_INIT_MACHINE
);
4903 machine
= find_default_machine();
4905 initrd_filename
= NULL
;
4908 kernel_filename
= NULL
;
4909 kernel_cmdline
= "";
4910 cyls
= heads
= secs
= 0;
4911 translation
= BIOS_ATA_TRANSLATION_AUTO
;
4913 for (i
= 0; i
< MAX_NODES
; i
++) {
4915 node_cpumask
[i
] = 0;
4924 /* first pass of option parsing */
4926 while (optind
< argc
) {
4927 if (argv
[optind
][0] != '-') {
4932 const QEMUOption
*popt
;
4934 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
4935 switch (popt
->index
) {
4936 case QEMU_OPTION_nodefconfig
:
4945 fp
= fopen(CONFIG_QEMU_CONFDIR
"/qemu.conf", "r");
4947 if (qemu_config_parse(fp
) != 0) {
4953 fp
= fopen(CONFIG_QEMU_CONFDIR
"/target-" TARGET_ARCH
".conf", "r");
4955 if (qemu_config_parse(fp
) != 0) {
4961 #if defined(cpudef_setup)
4962 cpudef_setup(); /* parse cpu definitions in target config file */
4965 /* second pass of option parsing */
4970 if (argv
[optind
][0] != '-') {
4971 hda_opts
= drive_add(argv
[optind
++], HD_ALIAS
, 0);
4973 const QEMUOption
*popt
;
4975 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
4976 switch(popt
->index
) {
4978 machine
= find_machine(optarg
);
4981 printf("Supported machines are:\n");
4982 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
4984 printf("%-10s %s (alias of %s)\n",
4985 m
->alias
, m
->desc
, m
->name
);
4986 printf("%-10s %s%s\n",
4988 m
->is_default
? " (default)" : "");
4990 exit(*optarg
!= '?');
4993 case QEMU_OPTION_cpu
:
4994 /* hw initialization will check this */
4995 if (*optarg
== '?') {
4996 /* XXX: implement xxx_cpu_list for targets that still miss it */
4997 #if defined(cpu_list_id)
4998 cpu_list_id(stdout
, &fprintf
, optarg
);
4999 #elif defined(cpu_list)
5000 cpu_list(stdout
, &fprintf
); /* deprecated */
5007 case QEMU_OPTION_initrd
:
5008 initrd_filename
= optarg
;
5010 case QEMU_OPTION_hda
:
5012 hda_opts
= drive_add(optarg
, HD_ALIAS
, 0);
5014 hda_opts
= drive_add(optarg
, HD_ALIAS
5015 ",cyls=%d,heads=%d,secs=%d%s",
5016 0, cyls
, heads
, secs
,
5017 translation
== BIOS_ATA_TRANSLATION_LBA
?
5019 translation
== BIOS_ATA_TRANSLATION_NONE
?
5020 ",trans=none" : "");
5022 case QEMU_OPTION_hdb
:
5023 case QEMU_OPTION_hdc
:
5024 case QEMU_OPTION_hdd
:
5025 drive_add(optarg
, HD_ALIAS
, popt
->index
- QEMU_OPTION_hda
);
5027 case QEMU_OPTION_drive
:
5028 drive_add(NULL
, "%s", optarg
);
5030 case QEMU_OPTION_set
:
5031 if (qemu_set_option(optarg
) != 0)
5034 case QEMU_OPTION_global
:
5035 if (qemu_global_option(optarg
) != 0)
5038 case QEMU_OPTION_mtdblock
:
5039 drive_add(optarg
, MTD_ALIAS
);
5041 case QEMU_OPTION_sd
:
5042 drive_add(optarg
, SD_ALIAS
);
5044 case QEMU_OPTION_pflash
:
5045 drive_add(optarg
, PFLASH_ALIAS
);
5047 case QEMU_OPTION_snapshot
:
5050 case QEMU_OPTION_hdachs
:
5054 cyls
= strtol(p
, (char **)&p
, 0);
5055 if (cyls
< 1 || cyls
> 16383)
5060 heads
= strtol(p
, (char **)&p
, 0);
5061 if (heads
< 1 || heads
> 16)
5066 secs
= strtol(p
, (char **)&p
, 0);
5067 if (secs
< 1 || secs
> 63)
5071 if (!strcmp(p
, "none"))
5072 translation
= BIOS_ATA_TRANSLATION_NONE
;
5073 else if (!strcmp(p
, "lba"))
5074 translation
= BIOS_ATA_TRANSLATION_LBA
;
5075 else if (!strcmp(p
, "auto"))
5076 translation
= BIOS_ATA_TRANSLATION_AUTO
;
5079 } else if (*p
!= '\0') {
5081 fprintf(stderr
, "qemu: invalid physical CHS format\n");
5084 if (hda_opts
!= NULL
) {
5086 snprintf(num
, sizeof(num
), "%d", cyls
);
5087 qemu_opt_set(hda_opts
, "cyls", num
);
5088 snprintf(num
, sizeof(num
), "%d", heads
);
5089 qemu_opt_set(hda_opts
, "heads", num
);
5090 snprintf(num
, sizeof(num
), "%d", secs
);
5091 qemu_opt_set(hda_opts
, "secs", num
);
5092 if (translation
== BIOS_ATA_TRANSLATION_LBA
)
5093 qemu_opt_set(hda_opts
, "trans", "lba");
5094 if (translation
== BIOS_ATA_TRANSLATION_NONE
)
5095 qemu_opt_set(hda_opts
, "trans", "none");
5099 case QEMU_OPTION_numa
:
5100 if (nb_numa_nodes
>= MAX_NODES
) {
5101 fprintf(stderr
, "qemu: too many NUMA nodes\n");
5106 case QEMU_OPTION_nographic
:
5107 display_type
= DT_NOGRAPHIC
;
5109 #ifdef CONFIG_CURSES
5110 case QEMU_OPTION_curses
:
5111 display_type
= DT_CURSES
;
5114 case QEMU_OPTION_portrait
:
5117 case QEMU_OPTION_kernel
:
5118 kernel_filename
= optarg
;
5120 case QEMU_OPTION_append
:
5121 kernel_cmdline
= optarg
;
5123 case QEMU_OPTION_cdrom
:
5124 drive_add(optarg
, CDROM_ALIAS
);
5126 case QEMU_OPTION_boot
:
5128 static const char * const params
[] = {
5129 "order", "once", "menu", NULL
5131 char buf
[sizeof(boot_devices
)];
5132 char *standard_boot_devices
;
5135 if (!strchr(optarg
, '=')) {
5137 pstrcpy(buf
, sizeof(buf
), optarg
);
5138 } else if (check_params(buf
, sizeof(buf
), params
, optarg
) < 0) {
5140 "qemu: unknown boot parameter '%s' in '%s'\n",
5146 get_param_value(buf
, sizeof(buf
), "order", optarg
)) {
5147 boot_devices_bitmap
= parse_bootdevices(buf
);
5148 pstrcpy(boot_devices
, sizeof(boot_devices
), buf
);
5151 if (get_param_value(buf
, sizeof(buf
),
5153 boot_devices_bitmap
|= parse_bootdevices(buf
);
5154 standard_boot_devices
= qemu_strdup(boot_devices
);
5155 pstrcpy(boot_devices
, sizeof(boot_devices
), buf
);
5156 qemu_register_reset(restore_boot_devices
,
5157 standard_boot_devices
);
5159 if (get_param_value(buf
, sizeof(buf
),
5161 if (!strcmp(buf
, "on")) {
5163 } else if (!strcmp(buf
, "off")) {
5167 "qemu: invalid option value '%s'\n",
5175 case QEMU_OPTION_fda
:
5176 case QEMU_OPTION_fdb
:
5177 drive_add(optarg
, FD_ALIAS
, popt
->index
- QEMU_OPTION_fda
);
5180 case QEMU_OPTION_no_fd_bootchk
:
5184 case QEMU_OPTION_netdev
:
5185 if (net_client_parse(&qemu_netdev_opts
, optarg
) == -1) {
5189 case QEMU_OPTION_net
:
5190 if (net_client_parse(&qemu_net_opts
, optarg
) == -1) {
5195 case QEMU_OPTION_tftp
:
5196 legacy_tftp_prefix
= optarg
;
5198 case QEMU_OPTION_bootp
:
5199 legacy_bootp_filename
= optarg
;
5202 case QEMU_OPTION_smb
:
5203 if (net_slirp_smb(optarg
) < 0)
5207 case QEMU_OPTION_redir
:
5208 if (net_slirp_redir(optarg
) < 0)
5212 case QEMU_OPTION_bt
:
5213 add_device_config(DEV_BT
, optarg
);
5216 case QEMU_OPTION_audio_help
:
5220 case QEMU_OPTION_soundhw
:
5221 select_soundhw (optarg
);
5227 case QEMU_OPTION_version
:
5231 case QEMU_OPTION_m
: {
5235 value
= strtoul(optarg
, &ptr
, 10);
5237 case 0: case 'M': case 'm':
5244 fprintf(stderr
, "qemu: invalid ram size: %s\n", optarg
);
5248 /* On 32-bit hosts, QEMU is limited by virtual address space */
5249 if (value
> (2047 << 20) && HOST_LONG_BITS
== 32) {
5250 fprintf(stderr
, "qemu: at most 2047 MB RAM can be simulated\n");
5253 if (value
!= (uint64_t)(ram_addr_t
)value
) {
5254 fprintf(stderr
, "qemu: ram size too large\n");
5260 case QEMU_OPTION_mempath
:
5264 case QEMU_OPTION_mem_prealloc
:
5271 const CPULogItem
*item
;
5273 mask
= cpu_str_to_log_mask(optarg
);
5275 printf("Log items (comma separated):\n");
5276 for(item
= cpu_log_items
; item
->mask
!= 0; item
++) {
5277 printf("%-10s %s\n", item
->name
, item
->help
);
5285 gdbstub_dev
= "tcp::" DEFAULT_GDBSTUB_PORT
;
5287 case QEMU_OPTION_gdb
:
5288 gdbstub_dev
= optarg
;
5293 case QEMU_OPTION_bios
:
5296 case QEMU_OPTION_singlestep
:
5303 keyboard_layout
= optarg
;
5305 case QEMU_OPTION_localtime
:
5308 case QEMU_OPTION_vga
:
5309 select_vgahw (optarg
);
5311 #if defined(TARGET_PPC) || defined(TARGET_SPARC)
5317 w
= strtol(p
, (char **)&p
, 10);
5320 fprintf(stderr
, "qemu: invalid resolution or depth\n");
5326 h
= strtol(p
, (char **)&p
, 10);
5331 depth
= strtol(p
, (char **)&p
, 10);
5332 if (depth
!= 8 && depth
!= 15 && depth
!= 16 &&
5333 depth
!= 24 && depth
!= 32)
5335 } else if (*p
== '\0') {
5336 depth
= graphic_depth
;
5343 graphic_depth
= depth
;
5347 case QEMU_OPTION_echr
:
5350 term_escape_char
= strtol(optarg
, &r
, 0);
5352 printf("Bad argument to echr\n");
5355 case QEMU_OPTION_monitor
:
5356 monitor_parse(optarg
, "readline");
5357 default_monitor
= 0;
5359 case QEMU_OPTION_qmp
:
5360 monitor_parse(optarg
, "control");
5361 default_monitor
= 0;
5363 case QEMU_OPTION_mon
:
5364 opts
= qemu_opts_parse(&qemu_mon_opts
, optarg
, "chardev");
5366 fprintf(stderr
, "parse error: %s\n", optarg
);
5369 default_monitor
= 0;
5371 case QEMU_OPTION_chardev
:
5372 opts
= qemu_opts_parse(&qemu_chardev_opts
, optarg
, "backend");
5374 fprintf(stderr
, "parse error: %s\n", optarg
);
5378 case QEMU_OPTION_serial
:
5379 add_device_config(DEV_SERIAL
, optarg
);
5382 case QEMU_OPTION_watchdog
:
5385 "qemu: only one watchdog option may be given\n");
5390 case QEMU_OPTION_watchdog_action
:
5391 if (select_watchdog_action(optarg
) == -1) {
5392 fprintf(stderr
, "Unknown -watchdog-action parameter\n");
5396 case QEMU_OPTION_virtiocon
:
5397 add_device_config(DEV_VIRTCON
, optarg
);
5398 default_virtcon
= 0;
5400 case QEMU_OPTION_parallel
:
5401 add_device_config(DEV_PARALLEL
, optarg
);
5402 default_parallel
= 0;
5404 case QEMU_OPTION_debugcon
:
5405 add_device_config(DEV_DEBUGCON
, optarg
);
5407 case QEMU_OPTION_loadvm
:
5410 case QEMU_OPTION_full_screen
:
5414 case QEMU_OPTION_no_frame
:
5417 case QEMU_OPTION_alt_grab
:
5420 case QEMU_OPTION_ctrl_grab
:
5423 case QEMU_OPTION_no_quit
:
5426 case QEMU_OPTION_sdl
:
5427 display_type
= DT_SDL
;
5430 case QEMU_OPTION_pidfile
:
5434 case QEMU_OPTION_win2k_hack
:
5435 win2k_install_hack
= 1;
5437 case QEMU_OPTION_rtc_td_hack
:
5440 case QEMU_OPTION_acpitable
:
5441 if(acpi_table_add(optarg
) < 0) {
5442 fprintf(stderr
, "Wrong acpi table provided\n");
5446 case QEMU_OPTION_smbios
:
5447 if(smbios_entry_add(optarg
) < 0) {
5448 fprintf(stderr
, "Wrong smbios provided\n");
5454 case QEMU_OPTION_enable_kvm
:
5458 case QEMU_OPTION_usb
:
5461 case QEMU_OPTION_usbdevice
:
5463 add_device_config(DEV_USB
, optarg
);
5465 case QEMU_OPTION_device
:
5466 if (!qemu_opts_parse(&qemu_device_opts
, optarg
, "driver")) {
5470 case QEMU_OPTION_smp
:
5473 fprintf(stderr
, "Invalid number of CPUs\n");
5476 if (max_cpus
< smp_cpus
) {
5477 fprintf(stderr
, "maxcpus must be equal to or greater than "
5481 if (max_cpus
> 255) {
5482 fprintf(stderr
, "Unsupported number of maxcpus\n");
5486 case QEMU_OPTION_vnc
:
5487 display_type
= DT_VNC
;
5488 vnc_display
= optarg
;
5491 case QEMU_OPTION_no_acpi
:
5494 case QEMU_OPTION_no_hpet
:
5497 case QEMU_OPTION_balloon
:
5498 if (balloon_parse(optarg
) < 0) {
5499 fprintf(stderr
, "Unknown -balloon argument %s\n", optarg
);
5504 case QEMU_OPTION_no_reboot
:
5507 case QEMU_OPTION_no_shutdown
:
5510 case QEMU_OPTION_show_cursor
:
5513 case QEMU_OPTION_uuid
:
5514 if(qemu_uuid_parse(optarg
, qemu_uuid
) < 0) {
5515 fprintf(stderr
, "Fail to parse UUID string."
5516 " Wrong format.\n");
5521 case QEMU_OPTION_daemonize
:
5525 case QEMU_OPTION_option_rom
:
5526 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
5527 fprintf(stderr
, "Too many option ROMs\n");
5530 option_rom
[nb_option_roms
] = optarg
;
5533 #if defined(TARGET_ARM) || defined(TARGET_M68K)
5534 case QEMU_OPTION_semihosting
:
5535 semihosting_enabled
= 1;
5538 case QEMU_OPTION_name
:
5539 qemu_name
= qemu_strdup(optarg
);
5541 char *p
= strchr(qemu_name
, ',');
5544 if (strncmp(p
, "process=", 8)) {
5545 fprintf(stderr
, "Unknown subargument %s to -name", p
);
5553 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
5554 case QEMU_OPTION_prom_env
:
5555 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
5556 fprintf(stderr
, "Too many prom variables\n");
5559 prom_envs
[nb_prom_envs
] = optarg
;
5564 case QEMU_OPTION_old_param
:
5568 case QEMU_OPTION_clock
:
5569 configure_alarms(optarg
);
5571 case QEMU_OPTION_startdate
:
5572 configure_rtc_date_offset(optarg
, 1);
5574 case QEMU_OPTION_rtc
:
5575 opts
= qemu_opts_parse(&qemu_rtc_opts
, optarg
, NULL
);
5577 fprintf(stderr
, "parse error: %s\n", optarg
);
5580 configure_rtc(opts
);
5582 case QEMU_OPTION_tb_size
:
5583 tb_size
= strtol(optarg
, NULL
, 0);
5587 case QEMU_OPTION_icount
:
5589 if (strcmp(optarg
, "auto") == 0) {
5590 icount_time_shift
= -1;
5592 icount_time_shift
= strtol(optarg
, NULL
, 0);
5595 case QEMU_OPTION_incoming
:
5598 case QEMU_OPTION_nodefaults
:
5600 default_parallel
= 0;
5601 default_virtcon
= 0;
5602 default_monitor
= 0;
5610 case QEMU_OPTION_chroot
:
5611 chroot_dir
= optarg
;
5613 case QEMU_OPTION_runas
:
5618 case QEMU_OPTION_xen_domid
:
5619 xen_domid
= atoi(optarg
);
5621 case QEMU_OPTION_xen_create
:
5622 xen_mode
= XEN_CREATE
;
5624 case QEMU_OPTION_xen_attach
:
5625 xen_mode
= XEN_ATTACH
;
5628 case QEMU_OPTION_readconfig
:
5631 fp
= fopen(optarg
, "r");
5633 fprintf(stderr
, "open %s: %s\n", optarg
, strerror(errno
));
5636 if (qemu_config_parse(fp
) != 0) {
5642 case QEMU_OPTION_writeconfig
:
5645 if (strcmp(optarg
, "-") == 0) {
5648 fp
= fopen(optarg
, "w");
5650 fprintf(stderr
, "open %s: %s\n", optarg
, strerror(errno
));
5654 qemu_config_write(fp
);
5662 /* If no data_dir is specified then try to find it relative to the
5665 data_dir
= find_datadir(argv
[0]);
5667 /* If all else fails use the install patch specified when building. */
5669 data_dir
= CONFIG_QEMU_SHAREDIR
;
5673 * Default to max_cpus = smp_cpus, in case the user doesn't
5674 * specify a max_cpus value.
5677 max_cpus
= smp_cpus
;
5679 machine
->max_cpus
= machine
->max_cpus
?: 1; /* Default to UP */
5680 if (smp_cpus
> machine
->max_cpus
) {
5681 fprintf(stderr
, "Number of SMP cpus requested (%d), exceeds max cpus "
5682 "supported by machine `%s' (%d)\n", smp_cpus
, machine
->name
,
5687 qemu_opts_foreach(&qemu_device_opts
, default_driver_check
, NULL
, 0);
5688 qemu_opts_foreach(&qemu_global_opts
, default_driver_check
, NULL
, 0);
5690 if (machine
->no_serial
) {
5693 if (machine
->no_parallel
) {
5694 default_parallel
= 0;
5696 if (!machine
->use_virtcon
) {
5697 default_virtcon
= 0;
5699 if (machine
->no_vga
) {
5702 if (machine
->no_floppy
) {
5705 if (machine
->no_cdrom
) {
5708 if (machine
->no_sdcard
) {
5712 if (display_type
== DT_NOGRAPHIC
) {
5713 if (default_parallel
)
5714 add_device_config(DEV_PARALLEL
, "null");
5715 if (default_serial
&& default_monitor
) {
5716 add_device_config(DEV_SERIAL
, "mon:stdio");
5717 } else if (default_virtcon
&& default_monitor
) {
5718 add_device_config(DEV_VIRTCON
, "mon:stdio");
5721 add_device_config(DEV_SERIAL
, "stdio");
5722 if (default_virtcon
)
5723 add_device_config(DEV_VIRTCON
, "stdio");
5724 if (default_monitor
)
5725 monitor_parse("stdio", "readline");
5729 add_device_config(DEV_SERIAL
, "vc:80Cx24C");
5730 if (default_parallel
)
5731 add_device_config(DEV_PARALLEL
, "vc:80Cx24C");
5732 if (default_monitor
)
5733 monitor_parse("vc:80Cx24C", "readline");
5734 if (default_virtcon
)
5735 add_device_config(DEV_VIRTCON
, "vc:80Cx24C");
5738 vga_interface_type
= VGA_CIRRUS
;
5740 if (qemu_opts_foreach(&qemu_chardev_opts
, chardev_init_func
, NULL
, 1) != 0)
5747 if (pipe(fds
) == -1)
5758 len
= read(fds
[0], &status
, 1);
5759 if (len
== -1 && (errno
== EINTR
))
5764 else if (status
== 1) {
5765 fprintf(stderr
, "Could not acquire pidfile: %s\n", strerror(errno
));
5773 qemu_set_cloexec(fds
[1]);
5785 signal(SIGTSTP
, SIG_IGN
);
5786 signal(SIGTTOU
, SIG_IGN
);
5787 signal(SIGTTIN
, SIG_IGN
);
5791 if (pid_file
&& qemu_create_pidfile(pid_file
) != 0) {
5795 if (write(fds
[1], &status
, 1) != 1) {
5796 perror("daemonize. Writing to pipe\n");
5800 fprintf(stderr
, "Could not acquire pid file: %s\n", strerror(errno
));
5804 if (kvm_enabled()) {
5807 ret
= kvm_init(smp_cpus
);
5809 fprintf(stderr
, "failed to initialize KVM\n");
5814 if (qemu_init_main_loop()) {
5815 fprintf(stderr
, "qemu_init_main_loop failed\n");
5818 linux_boot
= (kernel_filename
!= NULL
);
5820 if (!linux_boot
&& *kernel_cmdline
!= '\0') {
5821 fprintf(stderr
, "-append only allowed with -kernel option\n");
5825 if (!linux_boot
&& initrd_filename
!= NULL
) {
5826 fprintf(stderr
, "-initrd only allowed with -kernel option\n");
5831 /* Win32 doesn't support line-buffering and requires size >= 2 */
5832 setvbuf(stdout
, NULL
, _IOLBF
, 0);
5835 if (init_timer_alarm() < 0) {
5836 fprintf(stderr
, "could not initialize alarm timer\n");
5839 if (use_icount
&& icount_time_shift
< 0) {
5841 /* 125MIPS seems a reasonable initial guess at the guest speed.
5842 It will be corrected fairly quickly anyway. */
5843 icount_time_shift
= 3;
5844 init_icount_adjust();
5851 if (net_init_clients() < 0) {
5855 net_boot
= (boot_devices_bitmap
>> ('n' - 'a')) & 0xF;
5856 net_set_boot_mask(net_boot
);
5858 /* init the bluetooth world */
5859 if (foreach_device_config(DEV_BT
, bt_parse
))
5862 /* init the memory */
5864 ram_size
= DEFAULT_RAM_SIZE
* 1024 * 1024;
5866 /* init the dynamic translator */
5867 cpu_exec_init_all(tb_size
* 1024 * 1024);
5869 bdrv_init_with_whitelist();
5873 if (default_cdrom
) {
5874 /* we always create the cdrom drive, even if no disk is there */
5875 drive_add(NULL
, CDROM_ALIAS
);
5878 if (default_floppy
) {
5879 /* we always create at least one floppy */
5880 drive_add(NULL
, FD_ALIAS
, 0);
5883 if (default_sdcard
) {
5884 /* we always create one sd slot, even if no card is in it */
5885 drive_add(NULL
, SD_ALIAS
);
5888 /* open the virtual block devices */
5890 qemu_opts_foreach(&qemu_drive_opts
, drive_enable_snapshot
, NULL
, 0);
5891 if (qemu_opts_foreach(&qemu_drive_opts
, drive_init_func
, machine
, 1) != 0)
5894 vmstate_register(0, &vmstate_timers
,&timers_state
);
5895 register_savevm_live("ram", 0, 3, NULL
, ram_save_live
, NULL
,
5898 if (nb_numa_nodes
> 0) {
5901 if (nb_numa_nodes
> smp_cpus
) {
5902 nb_numa_nodes
= smp_cpus
;
5905 /* If no memory size if given for any node, assume the default case
5906 * and distribute the available memory equally across all nodes
5908 for (i
= 0; i
< nb_numa_nodes
; i
++) {
5909 if (node_mem
[i
] != 0)
5912 if (i
== nb_numa_nodes
) {
5913 uint64_t usedmem
= 0;
5915 /* On Linux, the each node's border has to be 8MB aligned,
5916 * the final node gets the rest.
5918 for (i
= 0; i
< nb_numa_nodes
- 1; i
++) {
5919 node_mem
[i
] = (ram_size
/ nb_numa_nodes
) & ~((1 << 23UL) - 1);
5920 usedmem
+= node_mem
[i
];
5922 node_mem
[i
] = ram_size
- usedmem
;
5925 for (i
= 0; i
< nb_numa_nodes
; i
++) {
5926 if (node_cpumask
[i
] != 0)
5929 /* assigning the VCPUs round-robin is easier to implement, guest OSes
5930 * must cope with this anyway, because there are BIOSes out there in
5931 * real machines which also use this scheme.
5933 if (i
== nb_numa_nodes
) {
5934 for (i
= 0; i
< smp_cpus
; i
++) {
5935 node_cpumask
[i
% nb_numa_nodes
] |= 1 << i
;
5940 if (foreach_device_config(DEV_SERIAL
, serial_parse
) < 0)
5942 if (foreach_device_config(DEV_PARALLEL
, parallel_parse
) < 0)
5944 if (foreach_device_config(DEV_VIRTCON
, virtcon_parse
) < 0)
5946 if (foreach_device_config(DEV_DEBUGCON
, debugcon_parse
) < 0)
5949 module_call_init(MODULE_INIT_DEVICE
);
5951 if (qemu_opts_foreach(&qemu_device_opts
, device_help_func
, NULL
, 0) != 0)
5955 i
= select_watchdog(watchdog
);
5957 exit (i
== 1 ? 1 : 0);
5960 if (machine
->compat_props
) {
5961 qdev_prop_register_global_list(machine
->compat_props
);
5965 machine
->init(ram_size
, boot_devices
,
5966 kernel_filename
, kernel_cmdline
, initrd_filename
, cpu_model
);
5968 cpu_synchronize_all_post_init();
5971 /* must be after terminal init, SDL library changes signal handlers */
5975 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
5976 for (i
= 0; i
< nb_numa_nodes
; i
++) {
5977 if (node_cpumask
[i
] & (1 << env
->cpu_index
)) {
5983 current_machine
= machine
;
5985 /* init USB devices */
5987 if (foreach_device_config(DEV_USB
, usb_parse
) < 0)
5991 /* init generic devices */
5992 if (qemu_opts_foreach(&qemu_device_opts
, device_init_func
, NULL
, 1) != 0)
5995 net_check_clients();
5997 /* just use the first displaystate for the moment */
5998 ds
= get_displaystate();
6000 if (display_type
== DT_DEFAULT
) {
6001 #if defined(CONFIG_SDL) || defined(CONFIG_COCOA)
6002 display_type
= DT_SDL
;
6004 display_type
= DT_VNC
;
6005 vnc_display
= "localhost:0,to=99";
6011 switch (display_type
) {
6014 #if defined(CONFIG_CURSES)
6016 curses_display_init(ds
, full_screen
);
6019 #if defined(CONFIG_SDL)
6021 sdl_display_init(ds
, full_screen
, no_frame
);
6023 #elif defined(CONFIG_COCOA)
6025 cocoa_display_init(ds
, full_screen
);
6029 vnc_display_init(ds
);
6030 if (vnc_display_open(ds
, vnc_display
) < 0)
6033 if (show_vnc_port
) {
6034 printf("VNC server running on `%s'\n", vnc_display_local_addr(ds
));
6042 dcl
= ds
->listeners
;
6043 while (dcl
!= NULL
) {
6044 if (dcl
->dpy_refresh
!= NULL
) {
6045 ds
->gui_timer
= qemu_new_timer(rt_clock
, gui_update
, ds
);
6046 qemu_mod_timer(ds
->gui_timer
, qemu_get_clock(rt_clock
));
6051 if (display_type
== DT_NOGRAPHIC
|| display_type
== DT_VNC
) {
6052 nographic_timer
= qemu_new_timer(rt_clock
, nographic_update
, NULL
);
6053 qemu_mod_timer(nographic_timer
, qemu_get_clock(rt_clock
));
6056 text_consoles_set_display(ds
);
6058 if (qemu_opts_foreach(&qemu_mon_opts
, mon_init_func
, NULL
, 1) != 0)
6061 if (gdbstub_dev
&& gdbserver_start(gdbstub_dev
) < 0) {
6062 fprintf(stderr
, "qemu: could not open gdbserver on device '%s'\n",
6067 qdev_machine_creation_done();
6069 if (rom_load_all() != 0) {
6070 fprintf(stderr
, "rom loading failed\n");
6074 qemu_system_reset();
6076 if (load_vmstate(cur_mon
, loadvm
) < 0) {
6082 qemu_start_incoming_migration(incoming
);
6083 } else if (autostart
) {
6093 len
= write(fds
[1], &status
, 1);
6094 if (len
== -1 && (errno
== EINTR
))
6101 perror("not able to chdir to /");
6104 TFR(fd
= qemu_open("/dev/null", O_RDWR
));
6110 pwd
= getpwnam(run_as
);
6112 fprintf(stderr
, "User \"%s\" doesn't exist\n", run_as
);
6118 if (chroot(chroot_dir
) < 0) {
6119 fprintf(stderr
, "chroot failed\n");
6123 perror("not able to chdir to /");
6129 if (setgid(pwd
->pw_gid
) < 0) {
6130 fprintf(stderr
, "Failed to setgid(%d)\n", pwd
->pw_gid
);
6133 if (setuid(pwd
->pw_uid
) < 0) {
6134 fprintf(stderr
, "Failed to setuid(%d)\n", pwd
->pw_uid
);
6137 if (setuid(0) != -1) {
6138 fprintf(stderr
, "Dropping privileges failed\n");