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 /* Conversion factor from emulated instructions to virtual clock ticks. */
262 static int icount_time_shift
;
263 /* Arbitrarily pick 1MIPS as the minimum allowable speed. */
264 #define MAX_ICOUNT_SHIFT 10
265 /* Compensate for varying guest execution speed. */
266 static int64_t qemu_icount_bias
;
267 static QEMUTimer
*icount_rt_timer
;
268 static QEMUTimer
*icount_vm_timer
;
269 static QEMUTimer
*nographic_timer
;
271 uint8_t qemu_uuid
[16];
273 static QEMUBootSetHandler
*boot_set_handler
;
274 static void *boot_set_opaque
;
277 #define SIG_IPI (SIGRTMIN+4)
279 #define SIG_IPI SIGUSR1
282 static int default_serial
= 1;
283 static int default_parallel
= 1;
284 static int default_virtcon
= 1;
285 static int default_monitor
= 1;
286 static int default_vga
= 1;
287 static int default_floppy
= 1;
288 static int default_cdrom
= 1;
289 static int default_sdcard
= 1;
295 { .driver
= "isa-serial", .flag
= &default_serial
},
296 { .driver
= "isa-parallel", .flag
= &default_parallel
},
297 { .driver
= "isa-fdc", .flag
= &default_floppy
},
298 { .driver
= "ide-drive", .flag
= &default_cdrom
},
299 { .driver
= "virtio-serial-pci", .flag
= &default_virtcon
},
300 { .driver
= "virtio-serial-s390", .flag
= &default_virtcon
},
301 { .driver
= "virtio-serial", .flag
= &default_virtcon
},
302 { .driver
= "VGA", .flag
= &default_vga
},
303 { .driver
= "cirrus-vga", .flag
= &default_vga
},
304 { .driver
= "vmware-svga", .flag
= &default_vga
},
307 static int default_driver_check(QemuOpts
*opts
, void *opaque
)
309 const char *driver
= qemu_opt_get(opts
, "driver");
314 for (i
= 0; i
< ARRAY_SIZE(default_list
); i
++) {
315 if (strcmp(default_list
[i
].driver
, driver
) != 0)
317 *(default_list
[i
].flag
) = 0;
322 /***********************************************************/
323 /* x86 ISA bus support */
325 target_phys_addr_t isa_mem_base
= 0;
328 /***********************************************************/
329 void hw_error(const char *fmt
, ...)
335 fprintf(stderr
, "qemu: hardware error: ");
336 vfprintf(stderr
, fmt
, ap
);
337 fprintf(stderr
, "\n");
338 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
339 fprintf(stderr
, "CPU #%d:\n", env
->cpu_index
);
341 cpu_dump_state(env
, stderr
, fprintf
, X86_DUMP_FPU
);
343 cpu_dump_state(env
, stderr
, fprintf
, 0);
350 static void set_proc_name(const char *s
)
352 #if defined(__linux__) && defined(PR_SET_NAME)
356 name
[sizeof(name
) - 1] = 0;
357 strncpy(name
, s
, sizeof(name
));
358 /* Could rewrite argv[0] too, but that's a bit more complicated.
359 This simple way is enough for `top'. */
360 prctl(PR_SET_NAME
, name
);
367 static QEMUBalloonEvent
*qemu_balloon_event
;
368 void *qemu_balloon_event_opaque
;
370 void qemu_add_balloon_handler(QEMUBalloonEvent
*func
, void *opaque
)
372 qemu_balloon_event
= func
;
373 qemu_balloon_event_opaque
= opaque
;
376 int qemu_balloon(ram_addr_t target
, MonitorCompletion cb
, void *opaque
)
378 if (qemu_balloon_event
) {
379 qemu_balloon_event(qemu_balloon_event_opaque
, target
, cb
, opaque
);
386 int qemu_balloon_status(MonitorCompletion cb
, void *opaque
)
388 if (qemu_balloon_event
) {
389 qemu_balloon_event(qemu_balloon_event_opaque
, 0, cb
, opaque
);
397 /***********************************************************/
398 /* real time host monotonic timer */
400 /* compute with 96 bit intermediate result: (a*b)/c */
401 uint64_t muldiv64(uint64_t a
, uint32_t b
, uint32_t c
)
406 #ifdef HOST_WORDS_BIGENDIAN
416 rl
= (uint64_t)u
.l
.low
* (uint64_t)b
;
417 rh
= (uint64_t)u
.l
.high
* (uint64_t)b
;
420 res
.l
.low
= (((rh
% c
) << 32) + (rl
& 0xffffffff)) / c
;
424 static int64_t get_clock_realtime(void)
428 gettimeofday(&tv
, NULL
);
429 return tv
.tv_sec
* 1000000000LL + (tv
.tv_usec
* 1000);
434 static int64_t clock_freq
;
436 static void init_get_clock(void)
440 ret
= QueryPerformanceFrequency(&freq
);
442 fprintf(stderr
, "Could not calibrate ticks\n");
445 clock_freq
= freq
.QuadPart
;
448 static int64_t get_clock(void)
451 QueryPerformanceCounter(&ti
);
452 return muldiv64(ti
.QuadPart
, get_ticks_per_sec(), clock_freq
);
457 static int use_rt_clock
;
459 static void init_get_clock(void)
462 #if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD_version >= 500000) \
463 || defined(__DragonFly__) || defined(__FreeBSD_kernel__)
466 if (clock_gettime(CLOCK_MONOTONIC
, &ts
) == 0) {
473 static int64_t get_clock(void)
475 #if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD_version >= 500000) \
476 || defined(__DragonFly__) || defined(__FreeBSD_kernel__)
479 clock_gettime(CLOCK_MONOTONIC
, &ts
);
480 return ts
.tv_sec
* 1000000000LL + ts
.tv_nsec
;
484 /* XXX: using gettimeofday leads to problems if the date
485 changes, so it should be avoided. */
486 return get_clock_realtime();
491 /* Return the virtual CPU time, based on the instruction counter. */
492 static int64_t cpu_get_icount(void)
495 CPUState
*env
= cpu_single_env
;;
496 icount
= qemu_icount
;
499 fprintf(stderr
, "Bad clock read\n");
500 icount
-= (env
->icount_decr
.u16
.low
+ env
->icount_extra
);
502 return qemu_icount_bias
+ (icount
<< icount_time_shift
);
505 /***********************************************************/
506 /* guest cycle counter */
508 typedef struct TimersState
{
509 int64_t cpu_ticks_prev
;
510 int64_t cpu_ticks_offset
;
511 int64_t cpu_clock_offset
;
512 int32_t cpu_ticks_enabled
;
516 TimersState timers_state
;
518 /* return the host CPU cycle counter and handle stop/restart */
519 int64_t cpu_get_ticks(void)
522 return cpu_get_icount();
524 if (!timers_state
.cpu_ticks_enabled
) {
525 return timers_state
.cpu_ticks_offset
;
528 ticks
= cpu_get_real_ticks();
529 if (timers_state
.cpu_ticks_prev
> ticks
) {
530 /* Note: non increasing ticks may happen if the host uses
532 timers_state
.cpu_ticks_offset
+= timers_state
.cpu_ticks_prev
- ticks
;
534 timers_state
.cpu_ticks_prev
= ticks
;
535 return ticks
+ timers_state
.cpu_ticks_offset
;
539 /* return the host CPU monotonic timer and handle stop/restart */
540 static int64_t cpu_get_clock(void)
543 if (!timers_state
.cpu_ticks_enabled
) {
544 return timers_state
.cpu_clock_offset
;
547 return ti
+ timers_state
.cpu_clock_offset
;
551 /* enable cpu_get_ticks() */
552 void cpu_enable_ticks(void)
554 if (!timers_state
.cpu_ticks_enabled
) {
555 timers_state
.cpu_ticks_offset
-= cpu_get_real_ticks();
556 timers_state
.cpu_clock_offset
-= get_clock();
557 timers_state
.cpu_ticks_enabled
= 1;
561 /* disable cpu_get_ticks() : the clock is stopped. You must not call
562 cpu_get_ticks() after that. */
563 void cpu_disable_ticks(void)
565 if (timers_state
.cpu_ticks_enabled
) {
566 timers_state
.cpu_ticks_offset
= cpu_get_ticks();
567 timers_state
.cpu_clock_offset
= cpu_get_clock();
568 timers_state
.cpu_ticks_enabled
= 0;
572 /***********************************************************/
575 #define QEMU_CLOCK_REALTIME 0
576 #define QEMU_CLOCK_VIRTUAL 1
577 #define QEMU_CLOCK_HOST 2
581 /* XXX: add frequency */
589 struct QEMUTimer
*next
;
592 struct qemu_alarm_timer
{
594 int (*start
)(struct qemu_alarm_timer
*t
);
595 void (*stop
)(struct qemu_alarm_timer
*t
);
596 void (*rearm
)(struct qemu_alarm_timer
*t
);
603 static inline int alarm_has_dynticks(struct qemu_alarm_timer
*t
)
608 static void qemu_rearm_alarm_timer(struct qemu_alarm_timer
*t
)
610 if (!alarm_has_dynticks(t
))
616 /* TODO: MIN_TIMER_REARM_US should be optimized */
617 #define MIN_TIMER_REARM_US 250
619 static struct qemu_alarm_timer
*alarm_timer
;
623 struct qemu_alarm_win32
{
626 } alarm_win32_data
= {0, 0};
628 static int win32_start_timer(struct qemu_alarm_timer
*t
);
629 static void win32_stop_timer(struct qemu_alarm_timer
*t
);
630 static void win32_rearm_timer(struct qemu_alarm_timer
*t
);
634 static int unix_start_timer(struct qemu_alarm_timer
*t
);
635 static void unix_stop_timer(struct qemu_alarm_timer
*t
);
639 static int dynticks_start_timer(struct qemu_alarm_timer
*t
);
640 static void dynticks_stop_timer(struct qemu_alarm_timer
*t
);
641 static void dynticks_rearm_timer(struct qemu_alarm_timer
*t
);
643 static int hpet_start_timer(struct qemu_alarm_timer
*t
);
644 static void hpet_stop_timer(struct qemu_alarm_timer
*t
);
646 static int rtc_start_timer(struct qemu_alarm_timer
*t
);
647 static void rtc_stop_timer(struct qemu_alarm_timer
*t
);
649 #endif /* __linux__ */
653 /* Correlation between real and virtual time is always going to be
654 fairly approximate, so ignore small variation.
655 When the guest is idle real and virtual time will be aligned in
657 #define ICOUNT_WOBBLE (get_ticks_per_sec() / 10)
659 static void icount_adjust(void)
664 static int64_t last_delta
;
665 /* If the VM is not running, then do nothing. */
669 cur_time
= cpu_get_clock();
670 cur_icount
= qemu_get_clock(vm_clock
);
671 delta
= cur_icount
- cur_time
;
672 /* FIXME: This is a very crude algorithm, somewhat prone to oscillation. */
674 && last_delta
+ ICOUNT_WOBBLE
< delta
* 2
675 && icount_time_shift
> 0) {
676 /* The guest is getting too far ahead. Slow time down. */
680 && last_delta
- ICOUNT_WOBBLE
> delta
* 2
681 && icount_time_shift
< MAX_ICOUNT_SHIFT
) {
682 /* The guest is getting too far behind. Speed time up. */
686 qemu_icount_bias
= cur_icount
- (qemu_icount
<< icount_time_shift
);
689 static void icount_adjust_rt(void * opaque
)
691 qemu_mod_timer(icount_rt_timer
,
692 qemu_get_clock(rt_clock
) + 1000);
696 static void icount_adjust_vm(void * opaque
)
698 qemu_mod_timer(icount_vm_timer
,
699 qemu_get_clock(vm_clock
) + get_ticks_per_sec() / 10);
703 static void init_icount_adjust(void)
705 /* Have both realtime and virtual time triggers for speed adjustment.
706 The realtime trigger catches emulated time passing too slowly,
707 the virtual time trigger catches emulated time passing too fast.
708 Realtime triggers occur even when idle, so use them less frequently
710 icount_rt_timer
= qemu_new_timer(rt_clock
, icount_adjust_rt
, NULL
);
711 qemu_mod_timer(icount_rt_timer
,
712 qemu_get_clock(rt_clock
) + 1000);
713 icount_vm_timer
= qemu_new_timer(vm_clock
, icount_adjust_vm
, NULL
);
714 qemu_mod_timer(icount_vm_timer
,
715 qemu_get_clock(vm_clock
) + get_ticks_per_sec() / 10);
718 static struct qemu_alarm_timer alarm_timers
[] = {
721 {"dynticks", dynticks_start_timer
,
722 dynticks_stop_timer
, dynticks_rearm_timer
, NULL
},
723 /* HPET - if available - is preferred */
724 {"hpet", hpet_start_timer
, hpet_stop_timer
, NULL
, NULL
},
725 /* ...otherwise try RTC */
726 {"rtc", rtc_start_timer
, rtc_stop_timer
, NULL
, NULL
},
728 {"unix", unix_start_timer
, unix_stop_timer
, NULL
, NULL
},
730 {"dynticks", win32_start_timer
,
731 win32_stop_timer
, win32_rearm_timer
, &alarm_win32_data
},
732 {"win32", win32_start_timer
,
733 win32_stop_timer
, NULL
, &alarm_win32_data
},
738 static void show_available_alarms(void)
742 printf("Available alarm timers, in order of precedence:\n");
743 for (i
= 0; alarm_timers
[i
].name
; i
++)
744 printf("%s\n", alarm_timers
[i
].name
);
747 static void configure_alarms(char const *opt
)
751 int count
= ARRAY_SIZE(alarm_timers
) - 1;
754 struct qemu_alarm_timer tmp
;
756 if (!strcmp(opt
, "?")) {
757 show_available_alarms();
761 arg
= qemu_strdup(opt
);
763 /* Reorder the array */
764 name
= strtok(arg
, ",");
766 for (i
= 0; i
< count
&& alarm_timers
[i
].name
; i
++) {
767 if (!strcmp(alarm_timers
[i
].name
, name
))
772 fprintf(stderr
, "Unknown clock %s\n", name
);
781 tmp
= alarm_timers
[i
];
782 alarm_timers
[i
] = alarm_timers
[cur
];
783 alarm_timers
[cur
] = tmp
;
787 name
= strtok(NULL
, ",");
793 /* Disable remaining timers */
794 for (i
= cur
; i
< count
; i
++)
795 alarm_timers
[i
].name
= NULL
;
797 show_available_alarms();
802 #define QEMU_NUM_CLOCKS 3
806 QEMUClock
*host_clock
;
808 static QEMUTimer
*active_timers
[QEMU_NUM_CLOCKS
];
810 static QEMUClock
*qemu_new_clock(int type
)
813 clock
= qemu_mallocz(sizeof(QEMUClock
));
818 QEMUTimer
*qemu_new_timer(QEMUClock
*clock
, QEMUTimerCB
*cb
, void *opaque
)
822 ts
= qemu_mallocz(sizeof(QEMUTimer
));
829 void qemu_free_timer(QEMUTimer
*ts
)
834 /* stop a timer, but do not dealloc it */
835 void qemu_del_timer(QEMUTimer
*ts
)
839 /* NOTE: this code must be signal safe because
840 qemu_timer_expired() can be called from a signal. */
841 pt
= &active_timers
[ts
->clock
->type
];
854 /* modify the current timer so that it will be fired when current_time
855 >= expire_time. The corresponding callback will be called. */
856 void qemu_mod_timer(QEMUTimer
*ts
, int64_t expire_time
)
862 /* add the timer in the sorted list */
863 /* NOTE: this code must be signal safe because
864 qemu_timer_expired() can be called from a signal. */
865 pt
= &active_timers
[ts
->clock
->type
];
870 if (t
->expire_time
> expire_time
)
874 ts
->expire_time
= expire_time
;
878 /* Rearm if necessary */
879 if (pt
== &active_timers
[ts
->clock
->type
]) {
880 if (!alarm_timer
->pending
) {
881 qemu_rearm_alarm_timer(alarm_timer
);
883 /* Interrupt execution to force deadline recalculation. */
889 int qemu_timer_pending(QEMUTimer
*ts
)
892 for(t
= active_timers
[ts
->clock
->type
]; t
!= NULL
; t
= t
->next
) {
899 int qemu_timer_expired(QEMUTimer
*timer_head
, int64_t current_time
)
903 return (timer_head
->expire_time
<= current_time
);
906 static void qemu_run_timers(QEMUTimer
**ptimer_head
, int64_t current_time
)
912 if (!ts
|| ts
->expire_time
> current_time
)
914 /* remove timer from the list before calling the callback */
915 *ptimer_head
= ts
->next
;
918 /* run the callback (the timer list can be modified) */
923 int64_t qemu_get_clock(QEMUClock
*clock
)
925 switch(clock
->type
) {
926 case QEMU_CLOCK_REALTIME
:
927 return get_clock() / 1000000;
929 case QEMU_CLOCK_VIRTUAL
:
931 return cpu_get_icount();
933 return cpu_get_clock();
935 case QEMU_CLOCK_HOST
:
936 return get_clock_realtime();
940 int64_t qemu_get_clock_ns(QEMUClock
*clock
)
942 switch(clock
->type
) {
943 case QEMU_CLOCK_REALTIME
:
946 case QEMU_CLOCK_VIRTUAL
:
948 return cpu_get_icount();
950 return cpu_get_clock();
952 case QEMU_CLOCK_HOST
:
953 return get_clock_realtime();
957 static void init_clocks(void)
960 rt_clock
= qemu_new_clock(QEMU_CLOCK_REALTIME
);
961 vm_clock
= qemu_new_clock(QEMU_CLOCK_VIRTUAL
);
962 host_clock
= qemu_new_clock(QEMU_CLOCK_HOST
);
964 rtc_clock
= host_clock
;
968 void qemu_put_timer(QEMUFile
*f
, QEMUTimer
*ts
)
970 uint64_t expire_time
;
972 if (qemu_timer_pending(ts
)) {
973 expire_time
= ts
->expire_time
;
977 qemu_put_be64(f
, expire_time
);
980 void qemu_get_timer(QEMUFile
*f
, QEMUTimer
*ts
)
982 uint64_t expire_time
;
984 expire_time
= qemu_get_be64(f
);
985 if (expire_time
!= -1) {
986 qemu_mod_timer(ts
, expire_time
);
992 static const VMStateDescription vmstate_timers
= {
995 .minimum_version_id
= 1,
996 .minimum_version_id_old
= 1,
997 .fields
= (VMStateField
[]) {
998 VMSTATE_INT64(cpu_ticks_offset
, TimersState
),
999 VMSTATE_INT64(dummy
, TimersState
),
1000 VMSTATE_INT64_V(cpu_clock_offset
, TimersState
, 2),
1001 VMSTATE_END_OF_LIST()
1005 static void qemu_event_increment(void);
1008 static void CALLBACK
host_alarm_handler(UINT uTimerID
, UINT uMsg
,
1009 DWORD_PTR dwUser
, DWORD_PTR dw1
,
1012 static void host_alarm_handler(int host_signum
)
1015 struct qemu_alarm_timer
*t
= alarm_timer
;
1020 #define DISP_FREQ 1000
1022 static int64_t delta_min
= INT64_MAX
;
1023 static int64_t delta_max
, delta_cum
, last_clock
, delta
, ti
;
1025 ti
= qemu_get_clock(vm_clock
);
1026 if (last_clock
!= 0) {
1027 delta
= ti
- last_clock
;
1028 if (delta
< delta_min
)
1030 if (delta
> delta_max
)
1033 if (++count
== DISP_FREQ
) {
1034 printf("timer: min=%" PRId64
" us max=%" PRId64
" us avg=%" PRId64
" us avg_freq=%0.3f Hz\n",
1035 muldiv64(delta_min
, 1000000, get_ticks_per_sec()),
1036 muldiv64(delta_max
, 1000000, get_ticks_per_sec()),
1037 muldiv64(delta_cum
, 1000000 / DISP_FREQ
, get_ticks_per_sec()),
1038 (double)get_ticks_per_sec() / ((double)delta_cum
/ DISP_FREQ
));
1040 delta_min
= INT64_MAX
;
1048 if (alarm_has_dynticks(t
) ||
1050 qemu_timer_expired(active_timers
[QEMU_CLOCK_VIRTUAL
],
1051 qemu_get_clock(vm_clock
))) ||
1052 qemu_timer_expired(active_timers
[QEMU_CLOCK_REALTIME
],
1053 qemu_get_clock(rt_clock
)) ||
1054 qemu_timer_expired(active_timers
[QEMU_CLOCK_HOST
],
1055 qemu_get_clock(host_clock
))) {
1056 qemu_event_increment();
1057 t
->expired
= alarm_has_dynticks(t
);
1059 #ifndef CONFIG_IOTHREAD
1061 /* stop the currently executing cpu because a timer occured */
1066 qemu_notify_event();
1070 static int64_t qemu_next_deadline(void)
1072 /* To avoid problems with overflow limit this to 2^32. */
1073 int64_t delta
= INT32_MAX
;
1075 if (active_timers
[QEMU_CLOCK_VIRTUAL
]) {
1076 delta
= active_timers
[QEMU_CLOCK_VIRTUAL
]->expire_time
-
1077 qemu_get_clock(vm_clock
);
1079 if (active_timers
[QEMU_CLOCK_HOST
]) {
1080 int64_t hdelta
= active_timers
[QEMU_CLOCK_HOST
]->expire_time
-
1081 qemu_get_clock(host_clock
);
1092 #if defined(__linux__)
1093 static uint64_t qemu_next_deadline_dyntick(void)
1101 delta
= (qemu_next_deadline() + 999) / 1000;
1103 if (active_timers
[QEMU_CLOCK_REALTIME
]) {
1104 rtdelta
= (active_timers
[QEMU_CLOCK_REALTIME
]->expire_time
-
1105 qemu_get_clock(rt_clock
))*1000;
1106 if (rtdelta
< delta
)
1110 if (delta
< MIN_TIMER_REARM_US
)
1111 delta
= MIN_TIMER_REARM_US
;
1119 /* Sets a specific flag */
1120 static int fcntl_setfl(int fd
, int flag
)
1124 flags
= fcntl(fd
, F_GETFL
);
1128 if (fcntl(fd
, F_SETFL
, flags
| flag
) == -1)
1134 #if defined(__linux__)
1136 #define RTC_FREQ 1024
1138 static void enable_sigio_timer(int fd
)
1140 struct sigaction act
;
1143 sigfillset(&act
.sa_mask
);
1145 act
.sa_handler
= host_alarm_handler
;
1147 sigaction(SIGIO
, &act
, NULL
);
1148 fcntl_setfl(fd
, O_ASYNC
);
1149 fcntl(fd
, F_SETOWN
, getpid());
1152 static int hpet_start_timer(struct qemu_alarm_timer
*t
)
1154 struct hpet_info info
;
1157 fd
= qemu_open("/dev/hpet", O_RDONLY
);
1162 r
= ioctl(fd
, HPET_IRQFREQ
, RTC_FREQ
);
1164 fprintf(stderr
, "Could not configure '/dev/hpet' to have a 1024Hz timer. This is not a fatal\n"
1165 "error, but for better emulation accuracy type:\n"
1166 "'echo 1024 > /proc/sys/dev/hpet/max-user-freq' as root.\n");
1170 /* Check capabilities */
1171 r
= ioctl(fd
, HPET_INFO
, &info
);
1175 /* Enable periodic mode */
1176 r
= ioctl(fd
, HPET_EPI
, 0);
1177 if (info
.hi_flags
&& (r
< 0))
1180 /* Enable interrupt */
1181 r
= ioctl(fd
, HPET_IE_ON
, 0);
1185 enable_sigio_timer(fd
);
1186 t
->priv
= (void *)(long)fd
;
1194 static void hpet_stop_timer(struct qemu_alarm_timer
*t
)
1196 int fd
= (long)t
->priv
;
1201 static int rtc_start_timer(struct qemu_alarm_timer
*t
)
1204 unsigned long current_rtc_freq
= 0;
1206 TFR(rtc_fd
= qemu_open("/dev/rtc", O_RDONLY
));
1209 ioctl(rtc_fd
, RTC_IRQP_READ
, ¤t_rtc_freq
);
1210 if (current_rtc_freq
!= RTC_FREQ
&&
1211 ioctl(rtc_fd
, RTC_IRQP_SET
, RTC_FREQ
) < 0) {
1212 fprintf(stderr
, "Could not configure '/dev/rtc' to have a 1024 Hz timer. This is not a fatal\n"
1213 "error, but for better emulation accuracy either use a 2.6 host Linux kernel or\n"
1214 "type 'echo 1024 > /proc/sys/dev/rtc/max-user-freq' as root.\n");
1217 if (ioctl(rtc_fd
, RTC_PIE_ON
, 0) < 0) {
1223 enable_sigio_timer(rtc_fd
);
1225 t
->priv
= (void *)(long)rtc_fd
;
1230 static void rtc_stop_timer(struct qemu_alarm_timer
*t
)
1232 int rtc_fd
= (long)t
->priv
;
1237 static int dynticks_start_timer(struct qemu_alarm_timer
*t
)
1241 struct sigaction act
;
1243 sigfillset(&act
.sa_mask
);
1245 act
.sa_handler
= host_alarm_handler
;
1247 sigaction(SIGALRM
, &act
, NULL
);
1250 * Initialize ev struct to 0 to avoid valgrind complaining
1251 * about uninitialized data in timer_create call
1253 memset(&ev
, 0, sizeof(ev
));
1254 ev
.sigev_value
.sival_int
= 0;
1255 ev
.sigev_notify
= SIGEV_SIGNAL
;
1256 ev
.sigev_signo
= SIGALRM
;
1258 if (timer_create(CLOCK_REALTIME
, &ev
, &host_timer
)) {
1259 perror("timer_create");
1261 /* disable dynticks */
1262 fprintf(stderr
, "Dynamic Ticks disabled\n");
1267 t
->priv
= (void *)(long)host_timer
;
1272 static void dynticks_stop_timer(struct qemu_alarm_timer
*t
)
1274 timer_t host_timer
= (timer_t
)(long)t
->priv
;
1276 timer_delete(host_timer
);
1279 static void dynticks_rearm_timer(struct qemu_alarm_timer
*t
)
1281 timer_t host_timer
= (timer_t
)(long)t
->priv
;
1282 struct itimerspec timeout
;
1283 int64_t nearest_delta_us
= INT64_MAX
;
1286 assert(alarm_has_dynticks(t
));
1287 if (!active_timers
[QEMU_CLOCK_REALTIME
] &&
1288 !active_timers
[QEMU_CLOCK_VIRTUAL
] &&
1289 !active_timers
[QEMU_CLOCK_HOST
])
1292 nearest_delta_us
= qemu_next_deadline_dyntick();
1294 /* check whether a timer is already running */
1295 if (timer_gettime(host_timer
, &timeout
)) {
1297 fprintf(stderr
, "Internal timer error: aborting\n");
1300 current_us
= timeout
.it_value
.tv_sec
* 1000000 + timeout
.it_value
.tv_nsec
/1000;
1301 if (current_us
&& current_us
<= nearest_delta_us
)
1304 timeout
.it_interval
.tv_sec
= 0;
1305 timeout
.it_interval
.tv_nsec
= 0; /* 0 for one-shot timer */
1306 timeout
.it_value
.tv_sec
= nearest_delta_us
/ 1000000;
1307 timeout
.it_value
.tv_nsec
= (nearest_delta_us
% 1000000) * 1000;
1308 if (timer_settime(host_timer
, 0 /* RELATIVE */, &timeout
, NULL
)) {
1310 fprintf(stderr
, "Internal timer error: aborting\n");
1315 #endif /* defined(__linux__) */
1317 static int unix_start_timer(struct qemu_alarm_timer
*t
)
1319 struct sigaction act
;
1320 struct itimerval itv
;
1324 sigfillset(&act
.sa_mask
);
1326 act
.sa_handler
= host_alarm_handler
;
1328 sigaction(SIGALRM
, &act
, NULL
);
1330 itv
.it_interval
.tv_sec
= 0;
1331 /* for i386 kernel 2.6 to get 1 ms */
1332 itv
.it_interval
.tv_usec
= 999;
1333 itv
.it_value
.tv_sec
= 0;
1334 itv
.it_value
.tv_usec
= 10 * 1000;
1336 err
= setitimer(ITIMER_REAL
, &itv
, NULL
);
1343 static void unix_stop_timer(struct qemu_alarm_timer
*t
)
1345 struct itimerval itv
;
1347 memset(&itv
, 0, sizeof(itv
));
1348 setitimer(ITIMER_REAL
, &itv
, NULL
);
1351 #endif /* !defined(_WIN32) */
1356 static int win32_start_timer(struct qemu_alarm_timer
*t
)
1359 struct qemu_alarm_win32
*data
= t
->priv
;
1362 memset(&tc
, 0, sizeof(tc
));
1363 timeGetDevCaps(&tc
, sizeof(tc
));
1365 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 assert(alarm_has_dynticks(t
));
1403 if (!active_timers
[QEMU_CLOCK_REALTIME
] &&
1404 !active_timers
[QEMU_CLOCK_VIRTUAL
] &&
1405 !active_timers
[QEMU_CLOCK_HOST
])
1408 timeKillEvent(data
->timerId
);
1410 data
->timerId
= timeSetEvent(1,
1414 TIME_ONESHOT
| TIME_CALLBACK_FUNCTION
);
1416 if (!data
->timerId
) {
1417 fprintf(stderr
, "Failed to re-arm win32 alarm timer %ld\n",
1420 timeEndPeriod(data
->period
);
1427 static int init_timer_alarm(void)
1429 struct qemu_alarm_timer
*t
= NULL
;
1432 for (i
= 0; alarm_timers
[i
].name
; i
++) {
1433 t
= &alarm_timers
[i
];
1445 /* first event is at time 0 */
1455 static void quit_timers(void)
1457 struct qemu_alarm_timer
*t
= alarm_timer
;
1462 /***********************************************************/
1463 /* host time/date access */
1464 void qemu_get_timedate(struct tm
*tm
, int offset
)
1471 if (rtc_date_offset
== -1) {
1475 ret
= localtime(&ti
);
1477 ti
-= rtc_date_offset
;
1481 memcpy(tm
, ret
, sizeof(struct tm
));
1484 int qemu_timedate_diff(struct tm
*tm
)
1488 if (rtc_date_offset
== -1)
1490 seconds
= mktimegm(tm
);
1492 seconds
= mktime(tm
);
1494 seconds
= mktimegm(tm
) + rtc_date_offset
;
1496 return seconds
- time(NULL
);
1499 void rtc_change_mon_event(struct tm
*tm
)
1503 data
= qobject_from_jsonf("{ 'offset': %d }", qemu_timedate_diff(tm
));
1504 monitor_protocol_event(QEVENT_RTC_CHANGE
, data
);
1505 qobject_decref(data
);
1508 static void configure_rtc_date_offset(const char *startdate
, int legacy
)
1510 time_t rtc_start_date
;
1513 if (!strcmp(startdate
, "now") && legacy
) {
1514 rtc_date_offset
= -1;
1516 if (sscanf(startdate
, "%d-%d-%dT%d:%d:%d",
1524 } else if (sscanf(startdate
, "%d-%d-%d",
1527 &tm
.tm_mday
) == 3) {
1536 rtc_start_date
= mktimegm(&tm
);
1537 if (rtc_start_date
== -1) {
1539 fprintf(stderr
, "Invalid date format. Valid formats are:\n"
1540 "'2006-06-17T16:01:21' or '2006-06-17'\n");
1543 rtc_date_offset
= time(NULL
) - rtc_start_date
;
1547 static void configure_rtc(QemuOpts
*opts
)
1551 value
= qemu_opt_get(opts
, "base");
1553 if (!strcmp(value
, "utc")) {
1555 } else if (!strcmp(value
, "localtime")) {
1558 configure_rtc_date_offset(value
, 0);
1561 value
= qemu_opt_get(opts
, "clock");
1563 if (!strcmp(value
, "host")) {
1564 rtc_clock
= host_clock
;
1565 } else if (!strcmp(value
, "vm")) {
1566 rtc_clock
= vm_clock
;
1568 fprintf(stderr
, "qemu: invalid option value '%s'\n", value
);
1572 #ifdef CONFIG_TARGET_I386
1573 value
= qemu_opt_get(opts
, "driftfix");
1575 if (!strcmp(buf
, "slew")) {
1577 } else if (!strcmp(buf
, "none")) {
1580 fprintf(stderr
, "qemu: invalid option value '%s'\n", value
);
1588 static void socket_cleanup(void)
1593 static int socket_init(void)
1598 ret
= WSAStartup(MAKEWORD(2,2), &Data
);
1600 err
= WSAGetLastError();
1601 fprintf(stderr
, "WSAStartup: %d\n", err
);
1604 atexit(socket_cleanup
);
1609 /***********************************************************/
1610 /* Bluetooth support */
1613 static struct HCIInfo
*hci_table
[MAX_NICS
];
1615 static struct bt_vlan_s
{
1616 struct bt_scatternet_s net
;
1618 struct bt_vlan_s
*next
;
1621 /* find or alloc a new bluetooth "VLAN" */
1622 static struct bt_scatternet_s
*qemu_find_bt_vlan(int id
)
1624 struct bt_vlan_s
**pvlan
, *vlan
;
1625 for (vlan
= first_bt_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
1629 vlan
= qemu_mallocz(sizeof(struct bt_vlan_s
));
1631 pvlan
= &first_bt_vlan
;
1632 while (*pvlan
!= NULL
)
1633 pvlan
= &(*pvlan
)->next
;
1638 static void null_hci_send(struct HCIInfo
*hci
, const uint8_t *data
, int len
)
1642 static int null_hci_addr_set(struct HCIInfo
*hci
, const uint8_t *bd_addr
)
1647 static struct HCIInfo null_hci
= {
1648 .cmd_send
= null_hci_send
,
1649 .sco_send
= null_hci_send
,
1650 .acl_send
= null_hci_send
,
1651 .bdaddr_set
= null_hci_addr_set
,
1654 struct HCIInfo
*qemu_next_hci(void)
1656 if (cur_hci
== nb_hcis
)
1659 return hci_table
[cur_hci
++];
1662 static struct HCIInfo
*hci_init(const char *str
)
1665 struct bt_scatternet_s
*vlan
= 0;
1667 if (!strcmp(str
, "null"))
1670 else if (!strncmp(str
, "host", 4) && (str
[4] == '\0' || str
[4] == ':'))
1672 return bt_host_hci(str
[4] ? str
+ 5 : "hci0");
1673 else if (!strncmp(str
, "hci", 3)) {
1676 if (!strncmp(str
+ 3, ",vlan=", 6)) {
1677 vlan
= qemu_find_bt_vlan(strtol(str
+ 9, &endp
, 0));
1682 vlan
= qemu_find_bt_vlan(0);
1684 return bt_new_hci(vlan
);
1687 fprintf(stderr
, "qemu: Unknown bluetooth HCI `%s'.\n", str
);
1692 static int bt_hci_parse(const char *str
)
1694 struct HCIInfo
*hci
;
1697 if (nb_hcis
>= MAX_NICS
) {
1698 fprintf(stderr
, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS
);
1702 hci
= hci_init(str
);
1711 bdaddr
.b
[5] = 0x56 + nb_hcis
;
1712 hci
->bdaddr_set(hci
, bdaddr
.b
);
1714 hci_table
[nb_hcis
++] = hci
;
1719 static void bt_vhci_add(int vlan_id
)
1721 struct bt_scatternet_s
*vlan
= qemu_find_bt_vlan(vlan_id
);
1724 fprintf(stderr
, "qemu: warning: adding a VHCI to "
1725 "an empty scatternet %i\n", vlan_id
);
1727 bt_vhci_init(bt_new_hci(vlan
));
1730 static struct bt_device_s
*bt_device_add(const char *opt
)
1732 struct bt_scatternet_s
*vlan
;
1734 char *endp
= strstr(opt
, ",vlan=");
1735 int len
= (endp
? endp
- opt
: strlen(opt
)) + 1;
1738 pstrcpy(devname
, MIN(sizeof(devname
), len
), opt
);
1741 vlan_id
= strtol(endp
+ 6, &endp
, 0);
1743 fprintf(stderr
, "qemu: unrecognised bluetooth vlan Id\n");
1748 vlan
= qemu_find_bt_vlan(vlan_id
);
1751 fprintf(stderr
, "qemu: warning: adding a slave device to "
1752 "an empty scatternet %i\n", vlan_id
);
1754 if (!strcmp(devname
, "keyboard"))
1755 return bt_keyboard_init(vlan
);
1757 fprintf(stderr
, "qemu: unsupported bluetooth device `%s'\n", devname
);
1761 static int bt_parse(const char *opt
)
1763 const char *endp
, *p
;
1766 if (strstart(opt
, "hci", &endp
)) {
1767 if (!*endp
|| *endp
== ',') {
1769 if (!strstart(endp
, ",vlan=", 0))
1772 return bt_hci_parse(opt
);
1774 } else if (strstart(opt
, "vhci", &endp
)) {
1775 if (!*endp
|| *endp
== ',') {
1777 if (strstart(endp
, ",vlan=", &p
)) {
1778 vlan
= strtol(p
, (char **) &endp
, 0);
1780 fprintf(stderr
, "qemu: bad scatternet '%s'\n", p
);
1784 fprintf(stderr
, "qemu: bad parameter '%s'\n", endp
+ 1);
1793 } else if (strstart(opt
, "device:", &endp
))
1794 return !bt_device_add(endp
);
1796 fprintf(stderr
, "qemu: bad bluetooth parameter '%s'\n", opt
);
1800 /***********************************************************/
1801 /* QEMU Block devices */
1803 #define HD_ALIAS "index=%d,media=disk"
1804 #define CDROM_ALIAS "index=2,media=cdrom"
1805 #define FD_ALIAS "index=%d,if=floppy"
1806 #define PFLASH_ALIAS "if=pflash"
1807 #define MTD_ALIAS "if=mtd"
1808 #define SD_ALIAS "index=0,if=sd"
1810 QemuOpts
*drive_add(const char *file
, const char *fmt
, ...)
1817 vsnprintf(optstr
, sizeof(optstr
), fmt
, ap
);
1820 opts
= qemu_opts_parse(&qemu_drive_opts
, optstr
, 0);
1822 fprintf(stderr
, "%s: huh? duplicate? (%s)\n",
1823 __FUNCTION__
, optstr
);
1827 qemu_opt_set(opts
, "file", file
);
1831 DriveInfo
*drive_get(BlockInterfaceType type
, int bus
, int unit
)
1835 /* seek interface, bus and unit */
1837 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
1838 if (dinfo
->type
== type
&&
1839 dinfo
->bus
== bus
&&
1840 dinfo
->unit
== unit
)
1847 DriveInfo
*drive_get_by_id(const char *id
)
1851 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
1852 if (strcmp(id
, dinfo
->id
))
1859 int drive_get_max_bus(BlockInterfaceType type
)
1865 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
1866 if(dinfo
->type
== type
&&
1867 dinfo
->bus
> max_bus
)
1868 max_bus
= dinfo
->bus
;
1873 const char *drive_get_serial(BlockDriverState
*bdrv
)
1877 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
1878 if (dinfo
->bdrv
== bdrv
)
1879 return dinfo
->serial
;
1885 BlockInterfaceErrorAction
drive_get_on_error(
1886 BlockDriverState
*bdrv
, int is_read
)
1890 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
1891 if (dinfo
->bdrv
== bdrv
)
1892 return is_read
? dinfo
->on_read_error
: dinfo
->on_write_error
;
1895 return is_read
? BLOCK_ERR_REPORT
: BLOCK_ERR_STOP_ENOSPC
;
1898 static void bdrv_format_print(void *opaque
, const char *name
)
1900 fprintf(stderr
, " %s", name
);
1903 void drive_uninit(DriveInfo
*dinfo
)
1905 qemu_opts_del(dinfo
->opts
);
1906 bdrv_delete(dinfo
->bdrv
);
1907 QTAILQ_REMOVE(&drives
, dinfo
, next
);
1911 static int parse_block_error_action(const char *buf
, int is_read
)
1913 if (!strcmp(buf
, "ignore")) {
1914 return BLOCK_ERR_IGNORE
;
1915 } else if (!is_read
&& !strcmp(buf
, "enospc")) {
1916 return BLOCK_ERR_STOP_ENOSPC
;
1917 } else if (!strcmp(buf
, "stop")) {
1918 return BLOCK_ERR_STOP_ANY
;
1919 } else if (!strcmp(buf
, "report")) {
1920 return BLOCK_ERR_REPORT
;
1922 fprintf(stderr
, "qemu: '%s' invalid %s error action\n",
1923 buf
, is_read
? "read" : "write");
1928 DriveInfo
*drive_init(QemuOpts
*opts
, void *opaque
,
1932 const char *file
= NULL
;
1935 const char *mediastr
= "";
1936 BlockInterfaceType type
;
1937 enum { MEDIA_DISK
, MEDIA_CDROM
} media
;
1938 int bus_id
, unit_id
;
1939 int cyls
, heads
, secs
, translation
;
1940 BlockDriver
*drv
= NULL
;
1941 QEMUMachine
*machine
= opaque
;
1948 int on_read_error
, on_write_error
;
1949 const char *devaddr
;
1955 translation
= BIOS_ATA_TRANSLATION_AUTO
;
1958 if (machine
&& machine
->use_scsi
) {
1960 max_devs
= MAX_SCSI_DEVS
;
1961 pstrcpy(devname
, sizeof(devname
), "scsi");
1964 max_devs
= MAX_IDE_DEVS
;
1965 pstrcpy(devname
, sizeof(devname
), "ide");
1969 /* extract parameters */
1970 bus_id
= qemu_opt_get_number(opts
, "bus", 0);
1971 unit_id
= qemu_opt_get_number(opts
, "unit", -1);
1972 index
= qemu_opt_get_number(opts
, "index", -1);
1974 cyls
= qemu_opt_get_number(opts
, "cyls", 0);
1975 heads
= qemu_opt_get_number(opts
, "heads", 0);
1976 secs
= qemu_opt_get_number(opts
, "secs", 0);
1978 snapshot
= qemu_opt_get_bool(opts
, "snapshot", 0);
1979 ro
= qemu_opt_get_bool(opts
, "readonly", 0);
1981 file
= qemu_opt_get(opts
, "file");
1982 serial
= qemu_opt_get(opts
, "serial");
1984 if ((buf
= qemu_opt_get(opts
, "if")) != NULL
) {
1985 pstrcpy(devname
, sizeof(devname
), buf
);
1986 if (!strcmp(buf
, "ide")) {
1988 max_devs
= MAX_IDE_DEVS
;
1989 } else if (!strcmp(buf
, "scsi")) {
1991 max_devs
= MAX_SCSI_DEVS
;
1992 } else if (!strcmp(buf
, "floppy")) {
1995 } else if (!strcmp(buf
, "pflash")) {
1998 } else if (!strcmp(buf
, "mtd")) {
2001 } else if (!strcmp(buf
, "sd")) {
2004 } else if (!strcmp(buf
, "virtio")) {
2007 } else if (!strcmp(buf
, "xen")) {
2010 } else if (!strcmp(buf
, "none")) {
2014 fprintf(stderr
, "qemu: unsupported bus type '%s'\n", buf
);
2019 if (cyls
|| heads
|| secs
) {
2020 if (cyls
< 1 || (type
== IF_IDE
&& cyls
> 16383)) {
2021 fprintf(stderr
, "qemu: '%s' invalid physical cyls number\n", buf
);
2024 if (heads
< 1 || (type
== IF_IDE
&& heads
> 16)) {
2025 fprintf(stderr
, "qemu: '%s' invalid physical heads number\n", buf
);
2028 if (secs
< 1 || (type
== IF_IDE
&& secs
> 63)) {
2029 fprintf(stderr
, "qemu: '%s' invalid physical secs number\n", buf
);
2034 if ((buf
= qemu_opt_get(opts
, "trans")) != NULL
) {
2037 "qemu: '%s' trans must be used with cyls,heads and secs\n",
2041 if (!strcmp(buf
, "none"))
2042 translation
= BIOS_ATA_TRANSLATION_NONE
;
2043 else if (!strcmp(buf
, "lba"))
2044 translation
= BIOS_ATA_TRANSLATION_LBA
;
2045 else if (!strcmp(buf
, "auto"))
2046 translation
= BIOS_ATA_TRANSLATION_AUTO
;
2048 fprintf(stderr
, "qemu: '%s' invalid translation type\n", buf
);
2053 if ((buf
= qemu_opt_get(opts
, "media")) != NULL
) {
2054 if (!strcmp(buf
, "disk")) {
2056 } else if (!strcmp(buf
, "cdrom")) {
2057 if (cyls
|| secs
|| heads
) {
2059 "qemu: '%s' invalid physical CHS format\n", buf
);
2062 media
= MEDIA_CDROM
;
2064 fprintf(stderr
, "qemu: '%s' invalid media\n", buf
);
2069 if ((buf
= qemu_opt_get(opts
, "cache")) != NULL
) {
2070 if (!strcmp(buf
, "off") || !strcmp(buf
, "none"))
2072 else if (!strcmp(buf
, "writethrough"))
2074 else if (!strcmp(buf
, "writeback"))
2077 fprintf(stderr
, "qemu: invalid cache option\n");
2082 #ifdef CONFIG_LINUX_AIO
2083 if ((buf
= qemu_opt_get(opts
, "aio")) != NULL
) {
2084 if (!strcmp(buf
, "threads"))
2086 else if (!strcmp(buf
, "native"))
2089 fprintf(stderr
, "qemu: invalid aio option\n");
2095 if ((buf
= qemu_opt_get(opts
, "format")) != NULL
) {
2096 if (strcmp(buf
, "?") == 0) {
2097 fprintf(stderr
, "qemu: Supported formats:");
2098 bdrv_iterate_format(bdrv_format_print
, NULL
);
2099 fprintf(stderr
, "\n");
2102 drv
= bdrv_find_whitelisted_format(buf
);
2104 fprintf(stderr
, "qemu: '%s' invalid format\n", buf
);
2109 on_write_error
= BLOCK_ERR_STOP_ENOSPC
;
2110 if ((buf
= qemu_opt_get(opts
, "werror")) != NULL
) {
2111 if (type
!= IF_IDE
&& type
!= IF_SCSI
&& type
!= IF_VIRTIO
) {
2112 fprintf(stderr
, "werror is no supported by this format\n");
2116 on_write_error
= parse_block_error_action(buf
, 0);
2117 if (on_write_error
< 0) {
2122 on_read_error
= BLOCK_ERR_REPORT
;
2123 if ((buf
= qemu_opt_get(opts
, "rerror")) != NULL
) {
2124 if (type
!= IF_IDE
&& type
!= IF_VIRTIO
) {
2125 fprintf(stderr
, "rerror is no supported by this format\n");
2129 on_read_error
= parse_block_error_action(buf
, 1);
2130 if (on_read_error
< 0) {
2135 if ((devaddr
= qemu_opt_get(opts
, "addr")) != NULL
) {
2136 if (type
!= IF_VIRTIO
) {
2137 fprintf(stderr
, "addr is not supported\n");
2142 /* compute bus and unit according index */
2145 if (bus_id
!= 0 || unit_id
!= -1) {
2147 "qemu: index cannot be used with bus and unit\n");
2155 unit_id
= index
% max_devs
;
2156 bus_id
= index
/ max_devs
;
2160 /* if user doesn't specify a unit_id,
2161 * try to find the first free
2164 if (unit_id
== -1) {
2166 while (drive_get(type
, bus_id
, unit_id
) != NULL
) {
2168 if (max_devs
&& unit_id
>= max_devs
) {
2169 unit_id
-= max_devs
;
2177 if (max_devs
&& unit_id
>= max_devs
) {
2178 fprintf(stderr
, "qemu: unit %d too big (max is %d)\n",
2179 unit_id
, max_devs
- 1);
2184 * ignore multiple definitions
2187 if (drive_get(type
, bus_id
, unit_id
) != NULL
) {
2194 dinfo
= qemu_mallocz(sizeof(*dinfo
));
2195 if ((buf
= qemu_opts_id(opts
)) != NULL
) {
2196 dinfo
->id
= qemu_strdup(buf
);
2198 /* no id supplied -> create one */
2199 dinfo
->id
= qemu_mallocz(32);
2200 if (type
== IF_IDE
|| type
== IF_SCSI
)
2201 mediastr
= (media
== MEDIA_CDROM
) ? "-cd" : "-hd";
2203 snprintf(dinfo
->id
, 32, "%s%i%s%i",
2204 devname
, bus_id
, mediastr
, unit_id
);
2206 snprintf(dinfo
->id
, 32, "%s%s%i",
2207 devname
, mediastr
, unit_id
);
2209 dinfo
->bdrv
= bdrv_new(dinfo
->id
);
2210 dinfo
->devaddr
= devaddr
;
2212 dinfo
->bus
= bus_id
;
2213 dinfo
->unit
= unit_id
;
2214 dinfo
->on_read_error
= on_read_error
;
2215 dinfo
->on_write_error
= on_write_error
;
2218 strncpy(dinfo
->serial
, serial
, sizeof(serial
));
2219 QTAILQ_INSERT_TAIL(&drives
, dinfo
, next
);
2229 bdrv_set_geometry_hint(dinfo
->bdrv
, cyls
, heads
, secs
);
2230 bdrv_set_translation_hint(dinfo
->bdrv
, translation
);
2234 bdrv_set_type_hint(dinfo
->bdrv
, BDRV_TYPE_CDROM
);
2239 /* FIXME: This isn't really a floppy, but it's a reasonable
2242 bdrv_set_type_hint(dinfo
->bdrv
, BDRV_TYPE_FLOPPY
);
2248 /* add virtio block device */
2249 opts
= qemu_opts_create(&qemu_device_opts
, NULL
, 0);
2250 qemu_opt_set(opts
, "driver", "virtio-blk-pci");
2251 qemu_opt_set(opts
, "drive", dinfo
->id
);
2253 qemu_opt_set(opts
, "addr", devaddr
);
2264 bdrv_flags
|= BDRV_O_SNAPSHOT
;
2265 cache
= 2; /* always use write-back with snapshot */
2267 if (cache
== 0) /* no caching */
2268 bdrv_flags
|= BDRV_O_NOCACHE
;
2269 else if (cache
== 2) /* write-back */
2270 bdrv_flags
|= BDRV_O_CACHE_WB
;
2273 bdrv_flags
|= BDRV_O_NATIVE_AIO
;
2275 bdrv_flags
&= ~BDRV_O_NATIVE_AIO
;
2279 if (type
!= IF_SCSI
&& type
!= IF_VIRTIO
&& type
!= IF_FLOPPY
) {
2280 fprintf(stderr
, "qemu: readonly flag not supported for drive with this interface\n");
2285 * cdrom is read-only. Set it now, after above interface checking
2286 * since readonly attribute not explicitly required, so no error.
2288 if (media
== MEDIA_CDROM
) {
2291 bdrv_flags
|= ro
? 0 : BDRV_O_RDWR
;
2293 if (bdrv_open2(dinfo
->bdrv
, file
, bdrv_flags
, drv
) < 0) {
2294 fprintf(stderr
, "qemu: could not open disk image %s: %s\n",
2295 file
, strerror(errno
));
2299 if (bdrv_key_required(dinfo
->bdrv
))
2305 static int drive_init_func(QemuOpts
*opts
, void *opaque
)
2307 QEMUMachine
*machine
= opaque
;
2308 int fatal_error
= 0;
2310 if (drive_init(opts
, machine
, &fatal_error
) == NULL
) {
2317 static int drive_enable_snapshot(QemuOpts
*opts
, void *opaque
)
2319 if (NULL
== qemu_opt_get(opts
, "snapshot")) {
2320 qemu_opt_set(opts
, "snapshot", "on");
2325 void qemu_register_boot_set(QEMUBootSetHandler
*func
, void *opaque
)
2327 boot_set_handler
= func
;
2328 boot_set_opaque
= opaque
;
2331 int qemu_boot_set(const char *boot_devices
)
2333 if (!boot_set_handler
) {
2336 return boot_set_handler(boot_set_opaque
, boot_devices
);
2339 static int parse_bootdevices(char *devices
)
2341 /* We just do some generic consistency checks */
2345 for (p
= devices
; *p
!= '\0'; p
++) {
2346 /* Allowed boot devices are:
2347 * a-b: floppy disk drives
2348 * c-f: IDE disk drives
2349 * g-m: machine implementation dependant drives
2350 * n-p: network devices
2351 * It's up to each machine implementation to check if the given boot
2352 * devices match the actual hardware implementation and firmware
2355 if (*p
< 'a' || *p
> 'p') {
2356 fprintf(stderr
, "Invalid boot device '%c'\n", *p
);
2359 if (bitmap
& (1 << (*p
- 'a'))) {
2360 fprintf(stderr
, "Boot device '%c' was given twice\n", *p
);
2363 bitmap
|= 1 << (*p
- 'a');
2368 static void restore_boot_devices(void *opaque
)
2370 char *standard_boot_devices
= opaque
;
2372 qemu_boot_set(standard_boot_devices
);
2374 qemu_unregister_reset(restore_boot_devices
, standard_boot_devices
);
2375 qemu_free(standard_boot_devices
);
2378 static void numa_add(const char *optarg
)
2382 unsigned long long value
, endvalue
;
2385 optarg
= get_opt_name(option
, 128, optarg
, ',') + 1;
2386 if (!strcmp(option
, "node")) {
2387 if (get_param_value(option
, 128, "nodeid", optarg
) == 0) {
2388 nodenr
= nb_numa_nodes
;
2390 nodenr
= strtoull(option
, NULL
, 10);
2393 if (get_param_value(option
, 128, "mem", optarg
) == 0) {
2394 node_mem
[nodenr
] = 0;
2396 value
= strtoull(option
, &endptr
, 0);
2398 case 0: case 'M': case 'm':
2405 node_mem
[nodenr
] = value
;
2407 if (get_param_value(option
, 128, "cpus", optarg
) == 0) {
2408 node_cpumask
[nodenr
] = 0;
2410 value
= strtoull(option
, &endptr
, 10);
2413 fprintf(stderr
, "only 64 CPUs in NUMA mode supported.\n");
2415 if (*endptr
== '-') {
2416 endvalue
= strtoull(endptr
+1, &endptr
, 10);
2417 if (endvalue
>= 63) {
2420 "only 63 CPUs in NUMA mode supported.\n");
2422 value
= (2ULL << endvalue
) - (1ULL << value
);
2424 value
= 1ULL << value
;
2427 node_cpumask
[nodenr
] = value
;
2434 static void smp_parse(const char *optarg
)
2436 int smp
, sockets
= 0, threads
= 0, cores
= 0;
2440 smp
= strtoul(optarg
, &endptr
, 10);
2441 if (endptr
!= optarg
) {
2442 if (*endptr
== ',') {
2446 if (get_param_value(option
, 128, "sockets", endptr
) != 0)
2447 sockets
= strtoull(option
, NULL
, 10);
2448 if (get_param_value(option
, 128, "cores", endptr
) != 0)
2449 cores
= strtoull(option
, NULL
, 10);
2450 if (get_param_value(option
, 128, "threads", endptr
) != 0)
2451 threads
= strtoull(option
, NULL
, 10);
2452 if (get_param_value(option
, 128, "maxcpus", endptr
) != 0)
2453 max_cpus
= strtoull(option
, NULL
, 10);
2455 /* compute missing values, prefer sockets over cores over threads */
2456 if (smp
== 0 || sockets
== 0) {
2457 sockets
= sockets
> 0 ? sockets
: 1;
2458 cores
= cores
> 0 ? cores
: 1;
2459 threads
= threads
> 0 ? threads
: 1;
2461 smp
= cores
* threads
* sockets
;
2465 threads
= threads
> 0 ? threads
: 1;
2466 cores
= smp
/ (sockets
* threads
);
2469 threads
= smp
/ (cores
* sockets
);
2474 smp_cores
= cores
> 0 ? cores
: 1;
2475 smp_threads
= threads
> 0 ? threads
: 1;
2477 max_cpus
= smp_cpus
;
2480 /***********************************************************/
2483 static int usb_device_add(const char *devname
, int is_hotplug
)
2486 USBDevice
*dev
= NULL
;
2491 /* drivers with .usbdevice_name entry in USBDeviceInfo */
2492 dev
= usbdevice_create(devname
);
2496 /* the other ones */
2497 if (strstart(devname
, "host:", &p
)) {
2498 dev
= usb_host_device_open(p
);
2499 } else if (!strcmp(devname
, "bt") || strstart(devname
, "bt:", &p
)) {
2500 dev
= usb_bt_init(devname
[2] ? hci_init(p
) :
2501 bt_new_hci(qemu_find_bt_vlan(0)));
2512 static int usb_device_del(const char *devname
)
2517 if (strstart(devname
, "host:", &p
))
2518 return usb_host_device_close(p
);
2523 p
= strchr(devname
, '.');
2526 bus_num
= strtoul(devname
, NULL
, 0);
2527 addr
= strtoul(p
+ 1, NULL
, 0);
2529 return usb_device_delete_addr(bus_num
, addr
);
2532 static int usb_parse(const char *cmdline
)
2535 r
= usb_device_add(cmdline
, 0);
2537 fprintf(stderr
, "qemu: could not add USB device '%s'\n", cmdline
);
2542 void do_usb_add(Monitor
*mon
, const QDict
*qdict
)
2544 const char *devname
= qdict_get_str(qdict
, "devname");
2545 if (usb_device_add(devname
, 1) < 0) {
2546 error_report("could not add USB device '%s'", devname
);
2550 void do_usb_del(Monitor
*mon
, const QDict
*qdict
)
2552 const char *devname
= qdict_get_str(qdict
, "devname");
2553 if (usb_device_del(devname
) < 0) {
2554 error_report("could not delete USB device '%s'", devname
);
2558 /***********************************************************/
2559 /* PCMCIA/Cardbus */
2561 static struct pcmcia_socket_entry_s
{
2562 PCMCIASocket
*socket
;
2563 struct pcmcia_socket_entry_s
*next
;
2564 } *pcmcia_sockets
= 0;
2566 void pcmcia_socket_register(PCMCIASocket
*socket
)
2568 struct pcmcia_socket_entry_s
*entry
;
2570 entry
= qemu_malloc(sizeof(struct pcmcia_socket_entry_s
));
2571 entry
->socket
= socket
;
2572 entry
->next
= pcmcia_sockets
;
2573 pcmcia_sockets
= entry
;
2576 void pcmcia_socket_unregister(PCMCIASocket
*socket
)
2578 struct pcmcia_socket_entry_s
*entry
, **ptr
;
2580 ptr
= &pcmcia_sockets
;
2581 for (entry
= *ptr
; entry
; ptr
= &entry
->next
, entry
= *ptr
)
2582 if (entry
->socket
== socket
) {
2588 void pcmcia_info(Monitor
*mon
)
2590 struct pcmcia_socket_entry_s
*iter
;
2592 if (!pcmcia_sockets
)
2593 monitor_printf(mon
, "No PCMCIA sockets\n");
2595 for (iter
= pcmcia_sockets
; iter
; iter
= iter
->next
)
2596 monitor_printf(mon
, "%s: %s\n", iter
->socket
->slot_string
,
2597 iter
->socket
->attached
? iter
->socket
->card_string
:
2601 /***********************************************************/
2604 typedef struct IOHandlerRecord
{
2606 IOCanRWHandler
*fd_read_poll
;
2608 IOHandler
*fd_write
;
2611 /* temporary data */
2613 struct IOHandlerRecord
*next
;
2616 static IOHandlerRecord
*first_io_handler
;
2618 /* XXX: fd_read_poll should be suppressed, but an API change is
2619 necessary in the character devices to suppress fd_can_read(). */
2620 int qemu_set_fd_handler2(int fd
,
2621 IOCanRWHandler
*fd_read_poll
,
2623 IOHandler
*fd_write
,
2626 IOHandlerRecord
**pioh
, *ioh
;
2628 if (!fd_read
&& !fd_write
) {
2629 pioh
= &first_io_handler
;
2634 if (ioh
->fd
== fd
) {
2641 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
2645 ioh
= qemu_mallocz(sizeof(IOHandlerRecord
));
2646 ioh
->next
= first_io_handler
;
2647 first_io_handler
= ioh
;
2650 ioh
->fd_read_poll
= fd_read_poll
;
2651 ioh
->fd_read
= fd_read
;
2652 ioh
->fd_write
= fd_write
;
2653 ioh
->opaque
= opaque
;
2659 int qemu_set_fd_handler(int fd
,
2661 IOHandler
*fd_write
,
2664 return qemu_set_fd_handler2(fd
, NULL
, fd_read
, fd_write
, opaque
);
2668 /***********************************************************/
2669 /* Polling handling */
2671 typedef struct PollingEntry
{
2674 struct PollingEntry
*next
;
2677 static PollingEntry
*first_polling_entry
;
2679 int qemu_add_polling_cb(PollingFunc
*func
, void *opaque
)
2681 PollingEntry
**ppe
, *pe
;
2682 pe
= qemu_mallocz(sizeof(PollingEntry
));
2684 pe
->opaque
= opaque
;
2685 for(ppe
= &first_polling_entry
; *ppe
!= NULL
; ppe
= &(*ppe
)->next
);
2690 void qemu_del_polling_cb(PollingFunc
*func
, void *opaque
)
2692 PollingEntry
**ppe
, *pe
;
2693 for(ppe
= &first_polling_entry
; *ppe
!= NULL
; ppe
= &(*ppe
)->next
) {
2695 if (pe
->func
== func
&& pe
->opaque
== opaque
) {
2703 /***********************************************************/
2704 /* Wait objects support */
2705 typedef struct WaitObjects
{
2707 HANDLE events
[MAXIMUM_WAIT_OBJECTS
+ 1];
2708 WaitObjectFunc
*func
[MAXIMUM_WAIT_OBJECTS
+ 1];
2709 void *opaque
[MAXIMUM_WAIT_OBJECTS
+ 1];
2712 static WaitObjects wait_objects
= {0};
2714 int qemu_add_wait_object(HANDLE handle
, WaitObjectFunc
*func
, void *opaque
)
2716 WaitObjects
*w
= &wait_objects
;
2718 if (w
->num
>= MAXIMUM_WAIT_OBJECTS
)
2720 w
->events
[w
->num
] = handle
;
2721 w
->func
[w
->num
] = func
;
2722 w
->opaque
[w
->num
] = opaque
;
2727 void qemu_del_wait_object(HANDLE handle
, WaitObjectFunc
*func
, void *opaque
)
2730 WaitObjects
*w
= &wait_objects
;
2733 for (i
= 0; i
< w
->num
; i
++) {
2734 if (w
->events
[i
] == handle
)
2737 w
->events
[i
] = w
->events
[i
+ 1];
2738 w
->func
[i
] = w
->func
[i
+ 1];
2739 w
->opaque
[i
] = w
->opaque
[i
+ 1];
2747 /***********************************************************/
2748 /* ram save/restore */
2750 #define RAM_SAVE_FLAG_FULL 0x01 /* Obsolete, not used anymore */
2751 #define RAM_SAVE_FLAG_COMPRESS 0x02
2752 #define RAM_SAVE_FLAG_MEM_SIZE 0x04
2753 #define RAM_SAVE_FLAG_PAGE 0x08
2754 #define RAM_SAVE_FLAG_EOS 0x10
2756 static int is_dup_page(uint8_t *page
, uint8_t ch
)
2758 uint32_t val
= ch
<< 24 | ch
<< 16 | ch
<< 8 | ch
;
2759 uint32_t *array
= (uint32_t *)page
;
2762 for (i
= 0; i
< (TARGET_PAGE_SIZE
/ 4); i
++) {
2763 if (array
[i
] != val
)
2770 static int ram_save_block(QEMUFile
*f
)
2772 static ram_addr_t current_addr
= 0;
2773 ram_addr_t saved_addr
= current_addr
;
2774 ram_addr_t addr
= 0;
2777 while (addr
< last_ram_offset
) {
2778 if (cpu_physical_memory_get_dirty(current_addr
, MIGRATION_DIRTY_FLAG
)) {
2781 cpu_physical_memory_reset_dirty(current_addr
,
2782 current_addr
+ TARGET_PAGE_SIZE
,
2783 MIGRATION_DIRTY_FLAG
);
2785 p
= qemu_get_ram_ptr(current_addr
);
2787 if (is_dup_page(p
, *p
)) {
2788 qemu_put_be64(f
, current_addr
| RAM_SAVE_FLAG_COMPRESS
);
2789 qemu_put_byte(f
, *p
);
2791 qemu_put_be64(f
, current_addr
| RAM_SAVE_FLAG_PAGE
);
2792 qemu_put_buffer(f
, p
, TARGET_PAGE_SIZE
);
2798 addr
+= TARGET_PAGE_SIZE
;
2799 current_addr
= (saved_addr
+ addr
) % last_ram_offset
;
2805 static uint64_t bytes_transferred
;
2807 static ram_addr_t
ram_save_remaining(void)
2810 ram_addr_t count
= 0;
2812 for (addr
= 0; addr
< last_ram_offset
; addr
+= TARGET_PAGE_SIZE
) {
2813 if (cpu_physical_memory_get_dirty(addr
, MIGRATION_DIRTY_FLAG
))
2820 uint64_t ram_bytes_remaining(void)
2822 return ram_save_remaining() * TARGET_PAGE_SIZE
;
2825 uint64_t ram_bytes_transferred(void)
2827 return bytes_transferred
;
2830 uint64_t ram_bytes_total(void)
2832 return last_ram_offset
;
2835 static int ram_save_live(Monitor
*mon
, QEMUFile
*f
, int stage
, void *opaque
)
2838 uint64_t bytes_transferred_last
;
2840 uint64_t expected_time
= 0;
2843 cpu_physical_memory_set_dirty_tracking(0);
2847 if (cpu_physical_sync_dirty_bitmap(0, TARGET_PHYS_ADDR_MAX
) != 0) {
2848 qemu_file_set_error(f
);
2853 bytes_transferred
= 0;
2855 /* Make sure all dirty bits are set */
2856 for (addr
= 0; addr
< last_ram_offset
; addr
+= TARGET_PAGE_SIZE
) {
2857 if (!cpu_physical_memory_get_dirty(addr
, MIGRATION_DIRTY_FLAG
))
2858 cpu_physical_memory_set_dirty(addr
);
2861 /* Enable dirty memory tracking */
2862 cpu_physical_memory_set_dirty_tracking(1);
2864 qemu_put_be64(f
, last_ram_offset
| RAM_SAVE_FLAG_MEM_SIZE
);
2867 bytes_transferred_last
= bytes_transferred
;
2868 bwidth
= qemu_get_clock_ns(rt_clock
);
2870 while (!qemu_file_rate_limit(f
)) {
2873 ret
= ram_save_block(f
);
2874 bytes_transferred
+= ret
* TARGET_PAGE_SIZE
;
2875 if (ret
== 0) /* no more blocks */
2879 bwidth
= qemu_get_clock_ns(rt_clock
) - bwidth
;
2880 bwidth
= (bytes_transferred
- bytes_transferred_last
) / bwidth
;
2882 /* if we haven't transferred anything this round, force expected_time to a
2883 * a very high value, but without crashing */
2887 /* try transferring iterative blocks of memory */
2889 /* flush all remaining blocks regardless of rate limiting */
2890 while (ram_save_block(f
) != 0) {
2891 bytes_transferred
+= TARGET_PAGE_SIZE
;
2893 cpu_physical_memory_set_dirty_tracking(0);
2896 qemu_put_be64(f
, RAM_SAVE_FLAG_EOS
);
2898 expected_time
= ram_save_remaining() * TARGET_PAGE_SIZE
/ bwidth
;
2900 return (stage
== 2) && (expected_time
<= migrate_max_downtime());
2903 static int ram_load(QEMUFile
*f
, void *opaque
, int version_id
)
2908 if (version_id
!= 3)
2912 addr
= qemu_get_be64(f
);
2914 flags
= addr
& ~TARGET_PAGE_MASK
;
2915 addr
&= TARGET_PAGE_MASK
;
2917 if (flags
& RAM_SAVE_FLAG_MEM_SIZE
) {
2918 if (addr
!= last_ram_offset
)
2922 if (flags
& RAM_SAVE_FLAG_COMPRESS
) {
2923 uint8_t ch
= qemu_get_byte(f
);
2924 memset(qemu_get_ram_ptr(addr
), ch
, TARGET_PAGE_SIZE
);
2927 (!kvm_enabled() || kvm_has_sync_mmu())) {
2928 madvise(qemu_get_ram_ptr(addr
), TARGET_PAGE_SIZE
, MADV_DONTNEED
);
2931 } else if (flags
& RAM_SAVE_FLAG_PAGE
) {
2932 qemu_get_buffer(f
, qemu_get_ram_ptr(addr
), TARGET_PAGE_SIZE
);
2934 if (qemu_file_has_error(f
)) {
2937 } while (!(flags
& RAM_SAVE_FLAG_EOS
));
2942 void qemu_service_io(void)
2944 qemu_notify_event();
2947 /***********************************************************/
2948 /* machine registration */
2950 static QEMUMachine
*first_machine
= NULL
;
2951 QEMUMachine
*current_machine
= NULL
;
2953 int qemu_register_machine(QEMUMachine
*m
)
2956 pm
= &first_machine
;
2964 static QEMUMachine
*find_machine(const char *name
)
2968 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
2969 if (!strcmp(m
->name
, name
))
2971 if (m
->alias
&& !strcmp(m
->alias
, name
))
2977 static QEMUMachine
*find_default_machine(void)
2981 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
2982 if (m
->is_default
) {
2989 /***********************************************************/
2990 /* main execution loop */
2992 static void gui_update(void *opaque
)
2994 uint64_t interval
= GUI_REFRESH_INTERVAL
;
2995 DisplayState
*ds
= opaque
;
2996 DisplayChangeListener
*dcl
= ds
->listeners
;
2998 qemu_flush_coalesced_mmio_buffer();
3001 while (dcl
!= NULL
) {
3002 if (dcl
->gui_timer_interval
&&
3003 dcl
->gui_timer_interval
< interval
)
3004 interval
= dcl
->gui_timer_interval
;
3007 qemu_mod_timer(ds
->gui_timer
, interval
+ qemu_get_clock(rt_clock
));
3010 static void nographic_update(void *opaque
)
3012 uint64_t interval
= GUI_REFRESH_INTERVAL
;
3014 qemu_flush_coalesced_mmio_buffer();
3015 qemu_mod_timer(nographic_timer
, interval
+ qemu_get_clock(rt_clock
));
3018 void cpu_synchronize_all_states(void)
3022 for (cpu
= first_cpu
; cpu
; cpu
= cpu
->next_cpu
) {
3023 cpu_synchronize_state(cpu
);
3027 void cpu_synchronize_all_post_reset(void)
3031 for (cpu
= first_cpu
; cpu
; cpu
= cpu
->next_cpu
) {
3032 cpu_synchronize_post_reset(cpu
);
3036 void cpu_synchronize_all_post_init(void)
3040 for (cpu
= first_cpu
; cpu
; cpu
= cpu
->next_cpu
) {
3041 cpu_synchronize_post_init(cpu
);
3045 struct vm_change_state_entry
{
3046 VMChangeStateHandler
*cb
;
3048 QLIST_ENTRY (vm_change_state_entry
) entries
;
3051 static QLIST_HEAD(vm_change_state_head
, vm_change_state_entry
) vm_change_state_head
;
3053 VMChangeStateEntry
*qemu_add_vm_change_state_handler(VMChangeStateHandler
*cb
,
3056 VMChangeStateEntry
*e
;
3058 e
= qemu_mallocz(sizeof (*e
));
3062 QLIST_INSERT_HEAD(&vm_change_state_head
, e
, entries
);
3066 void qemu_del_vm_change_state_handler(VMChangeStateEntry
*e
)
3068 QLIST_REMOVE (e
, entries
);
3072 static void vm_state_notify(int running
, int reason
)
3074 VMChangeStateEntry
*e
;
3076 for (e
= vm_change_state_head
.lh_first
; e
; e
= e
->entries
.le_next
) {
3077 e
->cb(e
->opaque
, running
, reason
);
3081 static void resume_all_vcpus(void);
3082 static void pause_all_vcpus(void);
3089 vm_state_notify(1, 0);
3090 qemu_rearm_alarm_timer(alarm_timer
);
3095 /* reset/shutdown handler */
3097 typedef struct QEMUResetEntry
{
3098 QTAILQ_ENTRY(QEMUResetEntry
) entry
;
3099 QEMUResetHandler
*func
;
3103 static QTAILQ_HEAD(reset_handlers
, QEMUResetEntry
) reset_handlers
=
3104 QTAILQ_HEAD_INITIALIZER(reset_handlers
);
3105 static int reset_requested
;
3106 static int shutdown_requested
;
3107 static int powerdown_requested
;
3108 static int debug_requested
;
3109 static int vmstop_requested
;
3111 int qemu_shutdown_requested(void)
3113 int r
= shutdown_requested
;
3114 shutdown_requested
= 0;
3118 int qemu_reset_requested(void)
3120 int r
= reset_requested
;
3121 reset_requested
= 0;
3125 int qemu_powerdown_requested(void)
3127 int r
= powerdown_requested
;
3128 powerdown_requested
= 0;
3132 static int qemu_debug_requested(void)
3134 int r
= debug_requested
;
3135 debug_requested
= 0;
3139 static int qemu_vmstop_requested(void)
3141 int r
= vmstop_requested
;
3142 vmstop_requested
= 0;
3146 static void do_vm_stop(int reason
)
3149 cpu_disable_ticks();
3152 vm_state_notify(0, reason
);
3153 monitor_protocol_event(QEVENT_STOP
, NULL
);
3157 void qemu_register_reset(QEMUResetHandler
*func
, void *opaque
)
3159 QEMUResetEntry
*re
= qemu_mallocz(sizeof(QEMUResetEntry
));
3162 re
->opaque
= opaque
;
3163 QTAILQ_INSERT_TAIL(&reset_handlers
, re
, entry
);
3166 void qemu_unregister_reset(QEMUResetHandler
*func
, void *opaque
)
3170 QTAILQ_FOREACH(re
, &reset_handlers
, entry
) {
3171 if (re
->func
== func
&& re
->opaque
== opaque
) {
3172 QTAILQ_REMOVE(&reset_handlers
, re
, entry
);
3179 void qemu_system_reset(void)
3181 QEMUResetEntry
*re
, *nre
;
3183 /* reset all devices */
3184 QTAILQ_FOREACH_SAFE(re
, &reset_handlers
, entry
, nre
) {
3185 re
->func(re
->opaque
);
3187 monitor_protocol_event(QEVENT_RESET
, NULL
);
3188 cpu_synchronize_all_post_reset();
3191 void qemu_system_reset_request(void)
3194 shutdown_requested
= 1;
3196 reset_requested
= 1;
3198 qemu_notify_event();
3201 void qemu_system_shutdown_request(void)
3203 shutdown_requested
= 1;
3204 qemu_notify_event();
3207 void qemu_system_powerdown_request(void)
3209 powerdown_requested
= 1;
3210 qemu_notify_event();
3213 #ifdef CONFIG_IOTHREAD
3214 static void qemu_system_vmstop_request(int reason
)
3216 vmstop_requested
= reason
;
3217 qemu_notify_event();
3222 static int io_thread_fd
= -1;
3224 static void qemu_event_increment(void)
3226 /* Write 8 bytes to be compatible with eventfd. */
3227 static uint64_t val
= 1;
3230 if (io_thread_fd
== -1)
3234 ret
= write(io_thread_fd
, &val
, sizeof(val
));
3235 } while (ret
< 0 && errno
== EINTR
);
3237 /* EAGAIN is fine, a read must be pending. */
3238 if (ret
< 0 && errno
!= EAGAIN
) {
3239 fprintf(stderr
, "qemu_event_increment: write() filed: %s\n",
3245 static void qemu_event_read(void *opaque
)
3247 int fd
= (unsigned long)opaque
;
3251 /* Drain the notify pipe. For eventfd, only 8 bytes will be read. */
3253 len
= read(fd
, buffer
, sizeof(buffer
));
3254 } while ((len
== -1 && errno
== EINTR
) || len
== sizeof(buffer
));
3257 static int qemu_event_init(void)
3262 err
= qemu_eventfd(fds
);
3266 err
= fcntl_setfl(fds
[0], O_NONBLOCK
);
3270 err
= fcntl_setfl(fds
[1], O_NONBLOCK
);
3274 qemu_set_fd_handler2(fds
[0], NULL
, qemu_event_read
, NULL
,
3275 (void *)(unsigned long)fds
[0]);
3277 io_thread_fd
= fds
[1];
3286 HANDLE qemu_event_handle
;
3288 static void dummy_event_handler(void *opaque
)
3292 static int qemu_event_init(void)
3294 qemu_event_handle
= CreateEvent(NULL
, FALSE
, FALSE
, NULL
);
3295 if (!qemu_event_handle
) {
3296 fprintf(stderr
, "Failed CreateEvent: %ld\n", GetLastError());
3299 qemu_add_wait_object(qemu_event_handle
, dummy_event_handler
, NULL
);
3303 static void qemu_event_increment(void)
3305 if (!SetEvent(qemu_event_handle
)) {
3306 fprintf(stderr
, "qemu_event_increment: SetEvent failed: %ld\n",
3313 static int cpu_can_run(CPUState
*env
)
3324 #ifndef CONFIG_IOTHREAD
3325 static int qemu_init_main_loop(void)
3327 return qemu_event_init();
3330 void qemu_init_vcpu(void *_env
)
3332 CPUState
*env
= _env
;
3334 env
->nr_cores
= smp_cores
;
3335 env
->nr_threads
= smp_threads
;
3341 int qemu_cpu_self(void *env
)
3346 static void resume_all_vcpus(void)
3350 static void pause_all_vcpus(void)
3354 void qemu_cpu_kick(void *env
)
3359 void qemu_notify_event(void)
3361 CPUState
*env
= cpu_single_env
;
3368 void qemu_mutex_lock_iothread(void) {}
3369 void qemu_mutex_unlock_iothread(void) {}
3371 void vm_stop(int reason
)
3376 #else /* CONFIG_IOTHREAD */
3378 #include "qemu-thread.h"
3380 QemuMutex qemu_global_mutex
;
3381 static QemuMutex qemu_fair_mutex
;
3383 static QemuThread io_thread
;
3385 static QemuThread
*tcg_cpu_thread
;
3386 static QemuCond
*tcg_halt_cond
;
3388 static int qemu_system_ready
;
3390 static QemuCond qemu_cpu_cond
;
3392 static QemuCond qemu_system_cond
;
3393 static QemuCond qemu_pause_cond
;
3395 static void tcg_block_io_signals(void);
3396 static void kvm_block_io_signals(CPUState
*env
);
3397 static void unblock_io_signals(void);
3398 static int tcg_has_work(void);
3399 static int cpu_has_work(CPUState
*env
);
3401 static int qemu_init_main_loop(void)
3405 ret
= qemu_event_init();
3409 qemu_cond_init(&qemu_pause_cond
);
3410 qemu_mutex_init(&qemu_fair_mutex
);
3411 qemu_mutex_init(&qemu_global_mutex
);
3412 qemu_mutex_lock(&qemu_global_mutex
);
3414 unblock_io_signals();
3415 qemu_thread_self(&io_thread
);
3420 static void qemu_wait_io_event_common(CPUState
*env
)
3425 qemu_cond_signal(&qemu_pause_cond
);
3429 static void qemu_wait_io_event(CPUState
*env
)
3431 while (!tcg_has_work())
3432 qemu_cond_timedwait(env
->halt_cond
, &qemu_global_mutex
, 1000);
3434 qemu_mutex_unlock(&qemu_global_mutex
);
3437 * Users of qemu_global_mutex can be starved, having no chance
3438 * to acquire it since this path will get to it first.
3439 * So use another lock to provide fairness.
3441 qemu_mutex_lock(&qemu_fair_mutex
);
3442 qemu_mutex_unlock(&qemu_fair_mutex
);
3444 qemu_mutex_lock(&qemu_global_mutex
);
3445 qemu_wait_io_event_common(env
);
3448 static void qemu_kvm_eat_signal(CPUState
*env
, int timeout
)
3455 ts
.tv_sec
= timeout
/ 1000;
3456 ts
.tv_nsec
= (timeout
% 1000) * 1000000;
3458 sigemptyset(&waitset
);
3459 sigaddset(&waitset
, SIG_IPI
);
3461 qemu_mutex_unlock(&qemu_global_mutex
);
3462 r
= sigtimedwait(&waitset
, &siginfo
, &ts
);
3464 qemu_mutex_lock(&qemu_global_mutex
);
3466 if (r
== -1 && !(e
== EAGAIN
|| e
== EINTR
)) {
3467 fprintf(stderr
, "sigtimedwait: %s\n", strerror(e
));
3472 static void qemu_kvm_wait_io_event(CPUState
*env
)
3474 while (!cpu_has_work(env
))
3475 qemu_cond_timedwait(env
->halt_cond
, &qemu_global_mutex
, 1000);
3477 qemu_kvm_eat_signal(env
, 0);
3478 qemu_wait_io_event_common(env
);
3481 static int qemu_cpu_exec(CPUState
*env
);
3483 static void *kvm_cpu_thread_fn(void *arg
)
3485 CPUState
*env
= arg
;
3487 qemu_thread_self(env
->thread
);
3491 kvm_block_io_signals(env
);
3493 /* signal CPU creation */
3494 qemu_mutex_lock(&qemu_global_mutex
);
3496 qemu_cond_signal(&qemu_cpu_cond
);
3498 /* and wait for machine initialization */
3499 while (!qemu_system_ready
)
3500 qemu_cond_timedwait(&qemu_system_cond
, &qemu_global_mutex
, 100);
3503 if (cpu_can_run(env
))
3505 qemu_kvm_wait_io_event(env
);
3511 static void tcg_cpu_exec(void);
3513 static void *tcg_cpu_thread_fn(void *arg
)
3515 CPUState
*env
= arg
;
3517 tcg_block_io_signals();
3518 qemu_thread_self(env
->thread
);
3520 /* signal CPU creation */
3521 qemu_mutex_lock(&qemu_global_mutex
);
3522 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
)
3524 qemu_cond_signal(&qemu_cpu_cond
);
3526 /* and wait for machine initialization */
3527 while (!qemu_system_ready
)
3528 qemu_cond_timedwait(&qemu_system_cond
, &qemu_global_mutex
, 100);
3532 qemu_wait_io_event(cur_cpu
);
3538 void qemu_cpu_kick(void *_env
)
3540 CPUState
*env
= _env
;
3541 qemu_cond_broadcast(env
->halt_cond
);
3543 qemu_thread_signal(env
->thread
, SIG_IPI
);
3546 int qemu_cpu_self(void *_env
)
3548 CPUState
*env
= _env
;
3551 qemu_thread_self(&this);
3553 return qemu_thread_equal(&this, env
->thread
);
3556 static void cpu_signal(int sig
)
3559 cpu_exit(cpu_single_env
);
3562 static void tcg_block_io_signals(void)
3565 struct sigaction sigact
;
3568 sigaddset(&set
, SIGUSR2
);
3569 sigaddset(&set
, SIGIO
);
3570 sigaddset(&set
, SIGALRM
);
3571 sigaddset(&set
, SIGCHLD
);
3572 pthread_sigmask(SIG_BLOCK
, &set
, NULL
);
3575 sigaddset(&set
, SIG_IPI
);
3576 pthread_sigmask(SIG_UNBLOCK
, &set
, NULL
);
3578 memset(&sigact
, 0, sizeof(sigact
));
3579 sigact
.sa_handler
= cpu_signal
;
3580 sigaction(SIG_IPI
, &sigact
, NULL
);
3583 static void dummy_signal(int sig
)
3587 static void kvm_block_io_signals(CPUState
*env
)
3591 struct sigaction sigact
;
3594 sigaddset(&set
, SIGUSR2
);
3595 sigaddset(&set
, SIGIO
);
3596 sigaddset(&set
, SIGALRM
);
3597 sigaddset(&set
, SIGCHLD
);
3598 sigaddset(&set
, SIG_IPI
);
3599 pthread_sigmask(SIG_BLOCK
, &set
, NULL
);
3601 pthread_sigmask(SIG_BLOCK
, NULL
, &set
);
3602 sigdelset(&set
, SIG_IPI
);
3604 memset(&sigact
, 0, sizeof(sigact
));
3605 sigact
.sa_handler
= dummy_signal
;
3606 sigaction(SIG_IPI
, &sigact
, NULL
);
3608 r
= kvm_set_signal_mask(env
, &set
);
3610 fprintf(stderr
, "kvm_set_signal_mask: %s\n", strerror(r
));
3615 static void unblock_io_signals(void)
3620 sigaddset(&set
, SIGUSR2
);
3621 sigaddset(&set
, SIGIO
);
3622 sigaddset(&set
, SIGALRM
);
3623 pthread_sigmask(SIG_UNBLOCK
, &set
, NULL
);
3626 sigaddset(&set
, SIG_IPI
);
3627 pthread_sigmask(SIG_BLOCK
, &set
, NULL
);
3630 static void qemu_signal_lock(unsigned int msecs
)
3632 qemu_mutex_lock(&qemu_fair_mutex
);
3634 while (qemu_mutex_trylock(&qemu_global_mutex
)) {
3635 qemu_thread_signal(tcg_cpu_thread
, SIG_IPI
);
3636 if (!qemu_mutex_timedlock(&qemu_global_mutex
, msecs
))
3639 qemu_mutex_unlock(&qemu_fair_mutex
);
3642 void qemu_mutex_lock_iothread(void)
3644 if (kvm_enabled()) {
3645 qemu_mutex_lock(&qemu_fair_mutex
);
3646 qemu_mutex_lock(&qemu_global_mutex
);
3647 qemu_mutex_unlock(&qemu_fair_mutex
);
3649 qemu_signal_lock(100);
3652 void qemu_mutex_unlock_iothread(void)
3654 qemu_mutex_unlock(&qemu_global_mutex
);
3657 static int all_vcpus_paused(void)
3659 CPUState
*penv
= first_cpu
;
3664 penv
= (CPUState
*)penv
->next_cpu
;
3670 static void pause_all_vcpus(void)
3672 CPUState
*penv
= first_cpu
;
3676 qemu_thread_signal(penv
->thread
, SIG_IPI
);
3677 qemu_cpu_kick(penv
);
3678 penv
= (CPUState
*)penv
->next_cpu
;
3681 while (!all_vcpus_paused()) {
3682 qemu_cond_timedwait(&qemu_pause_cond
, &qemu_global_mutex
, 100);
3685 qemu_thread_signal(penv
->thread
, SIG_IPI
);
3686 penv
= (CPUState
*)penv
->next_cpu
;
3691 static void resume_all_vcpus(void)
3693 CPUState
*penv
= first_cpu
;
3698 qemu_thread_signal(penv
->thread
, SIG_IPI
);
3699 qemu_cpu_kick(penv
);
3700 penv
= (CPUState
*)penv
->next_cpu
;
3704 static void tcg_init_vcpu(void *_env
)
3706 CPUState
*env
= _env
;
3707 /* share a single thread for all cpus with TCG */
3708 if (!tcg_cpu_thread
) {
3709 env
->thread
= qemu_mallocz(sizeof(QemuThread
));
3710 env
->halt_cond
= qemu_mallocz(sizeof(QemuCond
));
3711 qemu_cond_init(env
->halt_cond
);
3712 qemu_thread_create(env
->thread
, tcg_cpu_thread_fn
, env
);
3713 while (env
->created
== 0)
3714 qemu_cond_timedwait(&qemu_cpu_cond
, &qemu_global_mutex
, 100);
3715 tcg_cpu_thread
= env
->thread
;
3716 tcg_halt_cond
= env
->halt_cond
;
3718 env
->thread
= tcg_cpu_thread
;
3719 env
->halt_cond
= tcg_halt_cond
;
3723 static void kvm_start_vcpu(CPUState
*env
)
3725 env
->thread
= qemu_mallocz(sizeof(QemuThread
));
3726 env
->halt_cond
= qemu_mallocz(sizeof(QemuCond
));
3727 qemu_cond_init(env
->halt_cond
);
3728 qemu_thread_create(env
->thread
, kvm_cpu_thread_fn
, env
);
3729 while (env
->created
== 0)
3730 qemu_cond_timedwait(&qemu_cpu_cond
, &qemu_global_mutex
, 100);
3733 void qemu_init_vcpu(void *_env
)
3735 CPUState
*env
= _env
;
3737 env
->nr_cores
= smp_cores
;
3738 env
->nr_threads
= smp_threads
;
3740 kvm_start_vcpu(env
);
3745 void qemu_notify_event(void)
3747 qemu_event_increment();
3750 void vm_stop(int reason
)
3753 qemu_thread_self(&me
);
3755 if (!qemu_thread_equal(&me
, &io_thread
)) {
3756 qemu_system_vmstop_request(reason
);
3758 * FIXME: should not return to device code in case
3759 * vm_stop() has been requested.
3761 if (cpu_single_env
) {
3762 cpu_exit(cpu_single_env
);
3763 cpu_single_env
->stop
= 1;
3774 static void host_main_loop_wait(int *timeout
)
3780 /* XXX: need to suppress polling by better using win32 events */
3782 for(pe
= first_polling_entry
; pe
!= NULL
; pe
= pe
->next
) {
3783 ret
|= pe
->func(pe
->opaque
);
3787 WaitObjects
*w
= &wait_objects
;
3789 ret
= WaitForMultipleObjects(w
->num
, w
->events
, FALSE
, *timeout
);
3790 if (WAIT_OBJECT_0
+ 0 <= ret
&& ret
<= WAIT_OBJECT_0
+ w
->num
- 1) {
3791 if (w
->func
[ret
- WAIT_OBJECT_0
])
3792 w
->func
[ret
- WAIT_OBJECT_0
](w
->opaque
[ret
- WAIT_OBJECT_0
]);
3794 /* Check for additional signaled events */
3795 for(i
= (ret
- WAIT_OBJECT_0
+ 1); i
< w
->num
; i
++) {
3797 /* Check if event is signaled */
3798 ret2
= WaitForSingleObject(w
->events
[i
], 0);
3799 if(ret2
== WAIT_OBJECT_0
) {
3801 w
->func
[i
](w
->opaque
[i
]);
3802 } else if (ret2
== WAIT_TIMEOUT
) {
3804 err
= GetLastError();
3805 fprintf(stderr
, "WaitForSingleObject error %d %d\n", i
, err
);
3808 } else if (ret
== WAIT_TIMEOUT
) {
3810 err
= GetLastError();
3811 fprintf(stderr
, "WaitForMultipleObjects error %d %d\n", ret
, err
);
3818 static void host_main_loop_wait(int *timeout
)
3823 void main_loop_wait(int timeout
)
3825 IOHandlerRecord
*ioh
;
3826 fd_set rfds
, wfds
, xfds
;
3830 qemu_bh_update_timeout(&timeout
);
3832 host_main_loop_wait(&timeout
);
3834 /* poll any events */
3835 /* XXX: separate device handlers from system ones */
3840 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
3844 (!ioh
->fd_read_poll
||
3845 ioh
->fd_read_poll(ioh
->opaque
) != 0)) {
3846 FD_SET(ioh
->fd
, &rfds
);
3850 if (ioh
->fd_write
) {
3851 FD_SET(ioh
->fd
, &wfds
);
3857 tv
.tv_sec
= timeout
/ 1000;
3858 tv
.tv_usec
= (timeout
% 1000) * 1000;
3860 slirp_select_fill(&nfds
, &rfds
, &wfds
, &xfds
);
3862 qemu_mutex_unlock_iothread();
3863 ret
= select(nfds
+ 1, &rfds
, &wfds
, &xfds
, &tv
);
3864 qemu_mutex_lock_iothread();
3866 IOHandlerRecord
**pioh
;
3868 for(ioh
= first_io_handler
; ioh
!= NULL
; ioh
= ioh
->next
) {
3869 if (!ioh
->deleted
&& ioh
->fd_read
&& FD_ISSET(ioh
->fd
, &rfds
)) {
3870 ioh
->fd_read(ioh
->opaque
);
3872 if (!ioh
->deleted
&& ioh
->fd_write
&& FD_ISSET(ioh
->fd
, &wfds
)) {
3873 ioh
->fd_write(ioh
->opaque
);
3877 /* remove deleted IO handlers */
3878 pioh
= &first_io_handler
;
3889 slirp_select_poll(&rfds
, &wfds
, &xfds
, (ret
< 0));
3891 /* rearm timer, if not periodic */
3892 if (alarm_timer
->expired
) {
3893 alarm_timer
->expired
= 0;
3894 qemu_rearm_alarm_timer(alarm_timer
);
3897 alarm_timer
->pending
= 0;
3899 /* vm time timers */
3901 if (!cur_cpu
|| likely(!(cur_cpu
->singlestep_enabled
& SSTEP_NOTIMER
)))
3902 qemu_run_timers(&active_timers
[QEMU_CLOCK_VIRTUAL
],
3903 qemu_get_clock(vm_clock
));
3906 /* real time timers */
3907 qemu_run_timers(&active_timers
[QEMU_CLOCK_REALTIME
],
3908 qemu_get_clock(rt_clock
));
3910 qemu_run_timers(&active_timers
[QEMU_CLOCK_HOST
],
3911 qemu_get_clock(host_clock
));
3913 /* Check bottom-halves last in case any of the earlier events triggered
3919 static int qemu_cpu_exec(CPUState
*env
)
3922 #ifdef CONFIG_PROFILER
3926 #ifdef CONFIG_PROFILER
3927 ti
= profile_getclock();
3932 qemu_icount
-= (env
->icount_decr
.u16
.low
+ env
->icount_extra
);
3933 env
->icount_decr
.u16
.low
= 0;
3934 env
->icount_extra
= 0;
3935 count
= qemu_next_deadline();
3936 count
= (count
+ (1 << icount_time_shift
) - 1)
3937 >> icount_time_shift
;
3938 qemu_icount
+= count
;
3939 decr
= (count
> 0xffff) ? 0xffff : count
;
3941 env
->icount_decr
.u16
.low
= decr
;
3942 env
->icount_extra
= count
;
3944 ret
= cpu_exec(env
);
3945 #ifdef CONFIG_PROFILER
3946 qemu_time
+= profile_getclock() - ti
;
3949 /* Fold pending instructions back into the
3950 instruction counter, and clear the interrupt flag. */
3951 qemu_icount
-= (env
->icount_decr
.u16
.low
3952 + env
->icount_extra
);
3953 env
->icount_decr
.u32
= 0;
3954 env
->icount_extra
= 0;
3959 static void tcg_cpu_exec(void)
3963 if (next_cpu
== NULL
)
3964 next_cpu
= first_cpu
;
3965 for (; next_cpu
!= NULL
; next_cpu
= next_cpu
->next_cpu
) {
3966 CPUState
*env
= cur_cpu
= next_cpu
;
3968 if (alarm_timer
->pending
)
3970 if (cpu_can_run(env
))
3971 ret
= qemu_cpu_exec(env
);
3975 if (ret
== EXCP_DEBUG
) {
3976 gdb_set_stop_cpu(env
);
3977 debug_requested
= 1;
3983 static int cpu_has_work(CPUState
*env
)
3991 if (qemu_cpu_has_work(env
))
3996 static int tcg_has_work(void)
4000 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
)
4001 if (cpu_has_work(env
))
4006 static int qemu_calculate_timeout(void)
4008 #ifndef CONFIG_IOTHREAD
4013 else if (tcg_has_work())
4015 else if (!use_icount
)
4018 /* XXX: use timeout computed from timers */
4021 /* Advance virtual time to the next event. */
4022 if (use_icount
== 1) {
4023 /* When not using an adaptive execution frequency
4024 we tend to get badly out of sync with real time,
4025 so just delay for a reasonable amount of time. */
4028 delta
= cpu_get_icount() - cpu_get_clock();
4031 /* If virtual time is ahead of real time then just
4033 timeout
= (delta
/ 1000000) + 1;
4035 /* Wait for either IO to occur or the next
4037 add
= qemu_next_deadline();
4038 /* We advance the timer before checking for IO.
4039 Limit the amount we advance so that early IO
4040 activity won't get the guest too far ahead. */
4044 add
= (add
+ (1 << icount_time_shift
) - 1)
4045 >> icount_time_shift
;
4047 timeout
= delta
/ 1000000;
4054 #else /* CONFIG_IOTHREAD */
4059 static int vm_can_run(void)
4061 if (powerdown_requested
)
4063 if (reset_requested
)
4065 if (shutdown_requested
)
4067 if (debug_requested
)
4072 qemu_irq qemu_system_powerdown
;
4074 static void main_loop(void)
4078 #ifdef CONFIG_IOTHREAD
4079 qemu_system_ready
= 1;
4080 qemu_cond_broadcast(&qemu_system_cond
);
4085 #ifdef CONFIG_PROFILER
4088 #ifndef CONFIG_IOTHREAD
4091 #ifdef CONFIG_PROFILER
4092 ti
= profile_getclock();
4094 main_loop_wait(qemu_calculate_timeout());
4095 #ifdef CONFIG_PROFILER
4096 dev_time
+= profile_getclock() - ti
;
4098 } while (vm_can_run());
4100 if (qemu_debug_requested()) {
4101 vm_stop(EXCP_DEBUG
);
4103 if (qemu_shutdown_requested()) {
4104 monitor_protocol_event(QEVENT_SHUTDOWN
, NULL
);
4111 if (qemu_reset_requested()) {
4113 qemu_system_reset();
4116 if (qemu_powerdown_requested()) {
4117 monitor_protocol_event(QEVENT_POWERDOWN
, NULL
);
4118 qemu_irq_raise(qemu_system_powerdown
);
4120 if ((r
= qemu_vmstop_requested())) {
4127 static void version(void)
4129 printf("QEMU PC emulator version " QEMU_VERSION QEMU_PKGVERSION
", Copyright (c) 2003-2008 Fabrice Bellard\n");
4132 static void help(int exitcode
)
4134 const char *options_help
=
4135 #define DEF(option, opt_arg, opt_enum, opt_help) \
4137 #define DEFHEADING(text) stringify(text) "\n"
4138 #include "qemu-options.h"
4144 printf("usage: %s [options] [disk_image]\n"
4146 "'disk_image' is a raw hard image image for IDE hard disk 0\n"
4149 "During emulation, the following keys are useful:\n"
4150 "ctrl-alt-f toggle full screen\n"
4151 "ctrl-alt-n switch to virtual console 'n'\n"
4152 "ctrl-alt toggle mouse and keyboard grab\n"
4154 "When using -nographic, press 'ctrl-a h' to get some help.\n",
4160 #define HAS_ARG 0x0001
4163 #define DEF(option, opt_arg, opt_enum, opt_help) \
4165 #define DEFHEADING(text)
4166 #include "qemu-options.h"
4172 typedef struct QEMUOption
{
4178 static const QEMUOption qemu_options
[] = {
4179 { "h", 0, QEMU_OPTION_h
},
4180 #define DEF(option, opt_arg, opt_enum, opt_help) \
4181 { option, opt_arg, opt_enum },
4182 #define DEFHEADING(text)
4183 #include "qemu-options.h"
4191 struct soundhw soundhw
[] = {
4192 #ifdef HAS_AUDIO_CHOICE
4193 #if defined(TARGET_I386) || defined(TARGET_MIPS)
4199 { .init_isa
= pcspk_audio_init
}
4206 "Creative Sound Blaster 16",
4209 { .init_isa
= SB16_init
}
4213 #ifdef CONFIG_CS4231A
4219 { .init_isa
= cs4231a_init
}
4227 "Yamaha YMF262 (OPL3)",
4229 "Yamaha YM3812 (OPL2)",
4233 { .init_isa
= Adlib_init
}
4240 "Gravis Ultrasound GF1",
4243 { .init_isa
= GUS_init
}
4250 "Intel 82801AA AC97 Audio",
4253 { .init_pci
= ac97_init
}
4257 #ifdef CONFIG_ES1370
4260 "ENSONIQ AudioPCI ES1370",
4263 { .init_pci
= es1370_init
}
4267 #endif /* HAS_AUDIO_CHOICE */
4269 { NULL
, NULL
, 0, 0, { NULL
} }
4272 static void select_soundhw (const char *optarg
)
4276 if (*optarg
== '?') {
4279 printf ("Valid sound card names (comma separated):\n");
4280 for (c
= soundhw
; c
->name
; ++c
) {
4281 printf ("%-11s %s\n", c
->name
, c
->descr
);
4283 printf ("\n-soundhw all will enable all of the above\n");
4284 exit (*optarg
!= '?');
4292 if (!strcmp (optarg
, "all")) {
4293 for (c
= soundhw
; c
->name
; ++c
) {
4301 e
= strchr (p
, ',');
4302 l
= !e
? strlen (p
) : (size_t) (e
- p
);
4304 for (c
= soundhw
; c
->name
; ++c
) {
4305 if (!strncmp (c
->name
, p
, l
) && !c
->name
[l
]) {
4314 "Unknown sound card name (too big to show)\n");
4317 fprintf (stderr
, "Unknown sound card name `%.*s'\n",
4322 p
+= l
+ (e
!= NULL
);
4326 goto show_valid_cards
;
4331 static void select_vgahw (const char *p
)
4336 vga_interface_type
= VGA_NONE
;
4337 if (strstart(p
, "std", &opts
)) {
4338 vga_interface_type
= VGA_STD
;
4339 } else if (strstart(p
, "cirrus", &opts
)) {
4340 vga_interface_type
= VGA_CIRRUS
;
4341 } else if (strstart(p
, "vmware", &opts
)) {
4342 vga_interface_type
= VGA_VMWARE
;
4343 } else if (strstart(p
, "xenfb", &opts
)) {
4344 vga_interface_type
= VGA_XENFB
;
4345 } else if (!strstart(p
, "none", &opts
)) {
4347 fprintf(stderr
, "Unknown vga type: %s\n", p
);
4351 const char *nextopt
;
4353 if (strstart(opts
, ",retrace=", &nextopt
)) {
4355 if (strstart(opts
, "dumb", &nextopt
))
4356 vga_retrace_method
= VGA_RETRACE_DUMB
;
4357 else if (strstart(opts
, "precise", &nextopt
))
4358 vga_retrace_method
= VGA_RETRACE_PRECISE
;
4359 else goto invalid_vga
;
4360 } else goto invalid_vga
;
4366 static int balloon_parse(const char *arg
)
4370 if (strcmp(arg
, "none") == 0) {
4374 if (!strncmp(arg
, "virtio", 6)) {
4375 if (arg
[6] == ',') {
4376 /* have params -> parse them */
4377 opts
= qemu_opts_parse(&qemu_device_opts
, arg
+7, 0);
4381 /* create empty opts */
4382 opts
= qemu_opts_create(&qemu_device_opts
, NULL
, 0);
4384 qemu_opt_set(opts
, "driver", "virtio-balloon-pci");
4393 static BOOL WINAPI
qemu_ctrl_handler(DWORD type
)
4395 exit(STATUS_CONTROL_C_EXIT
);
4400 int qemu_uuid_parse(const char *str
, uint8_t *uuid
)
4404 if(strlen(str
) != 36)
4407 ret
= sscanf(str
, UUID_FMT
, &uuid
[0], &uuid
[1], &uuid
[2], &uuid
[3],
4408 &uuid
[4], &uuid
[5], &uuid
[6], &uuid
[7], &uuid
[8], &uuid
[9],
4409 &uuid
[10], &uuid
[11], &uuid
[12], &uuid
[13], &uuid
[14], &uuid
[15]);
4415 smbios_add_field(1, offsetof(struct smbios_type_1
, uuid
), 16, uuid
);
4423 static void termsig_handler(int signal
)
4425 qemu_system_shutdown_request();
4428 static void sigchld_handler(int signal
)
4430 waitpid(-1, NULL
, WNOHANG
);
4433 static void sighandler_setup(void)
4435 struct sigaction act
;
4437 memset(&act
, 0, sizeof(act
));
4438 act
.sa_handler
= termsig_handler
;
4439 sigaction(SIGINT
, &act
, NULL
);
4440 sigaction(SIGHUP
, &act
, NULL
);
4441 sigaction(SIGTERM
, &act
, NULL
);
4443 act
.sa_handler
= sigchld_handler
;
4444 act
.sa_flags
= SA_NOCLDSTOP
;
4445 sigaction(SIGCHLD
, &act
, NULL
);
4451 /* Look for support files in the same directory as the executable. */
4452 static char *find_datadir(const char *argv0
)
4458 len
= GetModuleFileName(NULL
, buf
, sizeof(buf
) - 1);
4465 while (p
!= buf
&& *p
!= '\\')
4468 if (access(buf
, R_OK
) == 0) {
4469 return qemu_strdup(buf
);
4475 /* Find a likely location for support files using the location of the binary.
4476 For installed binaries this will be "$bindir/../share/qemu". When
4477 running from the build tree this will be "$bindir/../pc-bios". */
4478 #define SHARE_SUFFIX "/share/qemu"
4479 #define BUILD_SUFFIX "/pc-bios"
4480 static char *find_datadir(const char *argv0
)
4488 #if defined(__linux__)
4491 len
= readlink("/proc/self/exe", buf
, sizeof(buf
) - 1);
4497 #elif defined(__FreeBSD__)
4500 len
= readlink("/proc/curproc/file", buf
, sizeof(buf
) - 1);
4507 /* If we don't have any way of figuring out the actual executable
4508 location then try argv[0]. */
4510 p
= realpath(argv0
, buf
);
4518 max_len
= strlen(dir
) +
4519 MAX(strlen(SHARE_SUFFIX
), strlen(BUILD_SUFFIX
)) + 1;
4520 res
= qemu_mallocz(max_len
);
4521 snprintf(res
, max_len
, "%s%s", dir
, SHARE_SUFFIX
);
4522 if (access(res
, R_OK
)) {
4523 snprintf(res
, max_len
, "%s%s", dir
, BUILD_SUFFIX
);
4524 if (access(res
, R_OK
)) {
4536 char *qemu_find_file(int type
, const char *name
)
4542 /* If name contains path separators then try it as a straight path. */
4543 if ((strchr(name
, '/') || strchr(name
, '\\'))
4544 && access(name
, R_OK
) == 0) {
4545 return qemu_strdup(name
);
4548 case QEMU_FILE_TYPE_BIOS
:
4551 case QEMU_FILE_TYPE_KEYMAP
:
4552 subdir
= "keymaps/";
4557 len
= strlen(data_dir
) + strlen(name
) + strlen(subdir
) + 2;
4558 buf
= qemu_mallocz(len
);
4559 snprintf(buf
, len
, "%s/%s%s", data_dir
, subdir
, name
);
4560 if (access(buf
, R_OK
)) {
4567 static int device_help_func(QemuOpts
*opts
, void *opaque
)
4569 return qdev_device_help(opts
);
4572 static int device_init_func(QemuOpts
*opts
, void *opaque
)
4576 dev
= qdev_device_add(opts
);
4582 static int chardev_init_func(QemuOpts
*opts
, void *opaque
)
4584 CharDriverState
*chr
;
4586 chr
= qemu_chr_open_opts(opts
, NULL
);
4592 static int mon_init_func(QemuOpts
*opts
, void *opaque
)
4594 CharDriverState
*chr
;
4595 const char *chardev
;
4599 mode
= qemu_opt_get(opts
, "mode");
4603 if (strcmp(mode
, "readline") == 0) {
4604 flags
= MONITOR_USE_READLINE
;
4605 } else if (strcmp(mode
, "control") == 0) {
4606 flags
= MONITOR_USE_CONTROL
;
4608 fprintf(stderr
, "unknown monitor mode \"%s\"\n", mode
);
4612 if (qemu_opt_get_bool(opts
, "default", 0))
4613 flags
|= MONITOR_IS_DEFAULT
;
4615 chardev
= qemu_opt_get(opts
, "chardev");
4616 chr
= qemu_chr_find(chardev
);
4618 fprintf(stderr
, "chardev \"%s\" not found\n", chardev
);
4622 monitor_init(chr
, flags
);
4626 static void monitor_parse(const char *optarg
, const char *mode
)
4628 static int monitor_device_index
= 0;
4634 if (strstart(optarg
, "chardev:", &p
)) {
4635 snprintf(label
, sizeof(label
), "%s", p
);
4637 if (monitor_device_index
) {
4638 snprintf(label
, sizeof(label
), "monitor%d",
4639 monitor_device_index
);
4641 snprintf(label
, sizeof(label
), "monitor");
4644 opts
= qemu_chr_parse_compat(label
, optarg
);
4646 fprintf(stderr
, "parse error: %s\n", optarg
);
4651 opts
= qemu_opts_create(&qemu_mon_opts
, label
, 1);
4653 fprintf(stderr
, "duplicate chardev: %s\n", label
);
4656 qemu_opt_set(opts
, "mode", mode
);
4657 qemu_opt_set(opts
, "chardev", label
);
4659 qemu_opt_set(opts
, "default", "on");
4660 monitor_device_index
++;
4663 struct device_config
{
4665 DEV_USB
, /* -usbdevice */
4667 DEV_SERIAL
, /* -serial */
4668 DEV_PARALLEL
, /* -parallel */
4669 DEV_VIRTCON
, /* -virtioconsole */
4670 DEV_DEBUGCON
, /* -debugcon */
4672 const char *cmdline
;
4673 QTAILQ_ENTRY(device_config
) next
;
4675 QTAILQ_HEAD(, device_config
) device_configs
= QTAILQ_HEAD_INITIALIZER(device_configs
);
4677 static void add_device_config(int type
, const char *cmdline
)
4679 struct device_config
*conf
;
4681 conf
= qemu_mallocz(sizeof(*conf
));
4683 conf
->cmdline
= cmdline
;
4684 QTAILQ_INSERT_TAIL(&device_configs
, conf
, next
);
4687 static int foreach_device_config(int type
, int (*func
)(const char *cmdline
))
4689 struct device_config
*conf
;
4692 QTAILQ_FOREACH(conf
, &device_configs
, next
) {
4693 if (conf
->type
!= type
)
4695 rc
= func(conf
->cmdline
);
4702 static int serial_parse(const char *devname
)
4704 static int index
= 0;
4707 if (strcmp(devname
, "none") == 0)
4709 if (index
== MAX_SERIAL_PORTS
) {
4710 fprintf(stderr
, "qemu: too many serial ports\n");
4713 snprintf(label
, sizeof(label
), "serial%d", index
);
4714 serial_hds
[index
] = qemu_chr_open(label
, devname
, NULL
);
4715 if (!serial_hds
[index
]) {
4716 fprintf(stderr
, "qemu: could not open serial device '%s': %s\n",
4717 devname
, strerror(errno
));
4724 static int parallel_parse(const char *devname
)
4726 static int index
= 0;
4729 if (strcmp(devname
, "none") == 0)
4731 if (index
== MAX_PARALLEL_PORTS
) {
4732 fprintf(stderr
, "qemu: too many parallel ports\n");
4735 snprintf(label
, sizeof(label
), "parallel%d", index
);
4736 parallel_hds
[index
] = qemu_chr_open(label
, devname
, NULL
);
4737 if (!parallel_hds
[index
]) {
4738 fprintf(stderr
, "qemu: could not open parallel device '%s': %s\n",
4739 devname
, strerror(errno
));
4746 static int virtcon_parse(const char *devname
)
4748 static int index
= 0;
4750 QemuOpts
*bus_opts
, *dev_opts
;
4752 if (strcmp(devname
, "none") == 0)
4754 if (index
== MAX_VIRTIO_CONSOLES
) {
4755 fprintf(stderr
, "qemu: too many virtio consoles\n");
4759 bus_opts
= qemu_opts_create(&qemu_device_opts
, NULL
, 0);
4760 qemu_opt_set(bus_opts
, "driver", "virtio-serial");
4762 dev_opts
= qemu_opts_create(&qemu_device_opts
, NULL
, 0);
4763 qemu_opt_set(dev_opts
, "driver", "virtconsole");
4765 snprintf(label
, sizeof(label
), "virtcon%d", index
);
4766 virtcon_hds
[index
] = qemu_chr_open(label
, devname
, NULL
);
4767 if (!virtcon_hds
[index
]) {
4768 fprintf(stderr
, "qemu: could not open virtio console '%s': %s\n",
4769 devname
, strerror(errno
));
4772 qemu_opt_set(dev_opts
, "chardev", label
);
4778 static int debugcon_parse(const char *devname
)
4782 if (!qemu_chr_open("debugcon", devname
, NULL
)) {
4785 opts
= qemu_opts_create(&qemu_device_opts
, "debugcon", 1);
4787 fprintf(stderr
, "qemu: already have a debugcon device\n");
4790 qemu_opt_set(opts
, "driver", "isa-debugcon");
4791 qemu_opt_set(opts
, "chardev", "debugcon");
4795 static const QEMUOption
*lookup_opt(int argc
, char **argv
,
4796 const char **poptarg
, int *poptind
)
4798 const QEMUOption
*popt
;
4799 int optind
= *poptind
;
4800 char *r
= argv
[optind
];
4803 loc_set_cmdline(argv
, optind
, 1);
4805 /* Treat --foo the same as -foo. */
4808 popt
= qemu_options
;
4811 error_report("invalid option");
4814 if (!strcmp(popt
->name
, r
+ 1))
4818 if (popt
->flags
& HAS_ARG
) {
4819 if (optind
>= argc
) {
4820 error_report("requires an argument");
4823 optarg
= argv
[optind
++];
4824 loc_set_cmdline(argv
, optind
- 2, 2);
4835 int main(int argc
, char **argv
, char **envp
)
4837 const char *gdbstub_dev
= NULL
;
4838 uint32_t boot_devices_bitmap
= 0;
4840 int snapshot
, linux_boot
, net_boot
;
4841 const char *initrd_filename
;
4842 const char *kernel_filename
, *kernel_cmdline
;
4843 char boot_devices
[33] = "cad"; /* default to HD->floppy->CD-ROM */
4845 DisplayChangeListener
*dcl
;
4846 int cyls
, heads
, secs
, translation
;
4847 QemuOpts
*hda_opts
= NULL
, *opts
;
4850 const char *loadvm
= NULL
;
4851 QEMUMachine
*machine
;
4852 const char *cpu_model
;
4857 const char *pid_file
= NULL
;
4858 const char *incoming
= NULL
;
4861 struct passwd
*pwd
= NULL
;
4862 const char *chroot_dir
= NULL
;
4863 const char *run_as
= NULL
;
4866 int show_vnc_port
= 0;
4869 error_set_progname(argv
[0]);
4873 qemu_cache_utils_init(envp
);
4875 QLIST_INIT (&vm_change_state_head
);
4878 struct sigaction act
;
4879 sigfillset(&act
.sa_mask
);
4881 act
.sa_handler
= SIG_IGN
;
4882 sigaction(SIGPIPE
, &act
, NULL
);
4885 SetConsoleCtrlHandler(qemu_ctrl_handler
, TRUE
);
4886 /* Note: cpu_interrupt() is currently not SMP safe, so we force
4887 QEMU to run on a single CPU */
4892 h
= GetCurrentProcess();
4893 if (GetProcessAffinityMask(h
, &mask
, &smask
)) {
4894 for(i
= 0; i
< 32; i
++) {
4895 if (mask
& (1 << i
))
4900 SetProcessAffinityMask(h
, mask
);
4906 module_call_init(MODULE_INIT_MACHINE
);
4907 machine
= find_default_machine();
4909 initrd_filename
= NULL
;
4912 kernel_filename
= NULL
;
4913 kernel_cmdline
= "";
4914 cyls
= heads
= secs
= 0;
4915 translation
= BIOS_ATA_TRANSLATION_AUTO
;
4917 for (i
= 0; i
< MAX_NODES
; i
++) {
4919 node_cpumask
[i
] = 0;
4928 /* first pass of option parsing */
4930 while (optind
< argc
) {
4931 if (argv
[optind
][0] != '-') {
4936 const QEMUOption
*popt
;
4938 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
4939 switch (popt
->index
) {
4940 case QEMU_OPTION_nodefconfig
:
4951 fname
= CONFIG_QEMU_CONFDIR
"/qemu.conf";
4952 fp
= fopen(fname
, "r");
4954 if (qemu_config_parse(fp
, fname
) != 0) {
4960 fname
= CONFIG_QEMU_CONFDIR
"/target-" TARGET_ARCH
".conf";
4961 fp
= fopen(fname
, "r");
4963 if (qemu_config_parse(fp
, fname
) != 0) {
4969 #if defined(cpudef_setup)
4970 cpudef_setup(); /* parse cpu definitions in target config file */
4973 /* second pass of option parsing */
4978 if (argv
[optind
][0] != '-') {
4979 hda_opts
= drive_add(argv
[optind
++], HD_ALIAS
, 0);
4981 const QEMUOption
*popt
;
4983 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
4984 switch(popt
->index
) {
4986 machine
= find_machine(optarg
);
4989 printf("Supported machines are:\n");
4990 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
4992 printf("%-10s %s (alias of %s)\n",
4993 m
->alias
, m
->desc
, m
->name
);
4994 printf("%-10s %s%s\n",
4996 m
->is_default
? " (default)" : "");
4998 exit(*optarg
!= '?');
5001 case QEMU_OPTION_cpu
:
5002 /* hw initialization will check this */
5003 if (*optarg
== '?') {
5004 /* XXX: implement xxx_cpu_list for targets that still miss it */
5005 #if defined(cpu_list_id)
5006 cpu_list_id(stdout
, &fprintf
, optarg
);
5007 #elif defined(cpu_list)
5008 cpu_list(stdout
, &fprintf
); /* deprecated */
5015 case QEMU_OPTION_initrd
:
5016 initrd_filename
= optarg
;
5018 case QEMU_OPTION_hda
:
5020 hda_opts
= drive_add(optarg
, HD_ALIAS
, 0);
5022 hda_opts
= drive_add(optarg
, HD_ALIAS
5023 ",cyls=%d,heads=%d,secs=%d%s",
5024 0, cyls
, heads
, secs
,
5025 translation
== BIOS_ATA_TRANSLATION_LBA
?
5027 translation
== BIOS_ATA_TRANSLATION_NONE
?
5028 ",trans=none" : "");
5030 case QEMU_OPTION_hdb
:
5031 case QEMU_OPTION_hdc
:
5032 case QEMU_OPTION_hdd
:
5033 drive_add(optarg
, HD_ALIAS
, popt
->index
- QEMU_OPTION_hda
);
5035 case QEMU_OPTION_drive
:
5036 drive_add(NULL
, "%s", optarg
);
5038 case QEMU_OPTION_set
:
5039 if (qemu_set_option(optarg
) != 0)
5042 case QEMU_OPTION_global
:
5043 if (qemu_global_option(optarg
) != 0)
5046 case QEMU_OPTION_mtdblock
:
5047 drive_add(optarg
, MTD_ALIAS
);
5049 case QEMU_OPTION_sd
:
5050 drive_add(optarg
, SD_ALIAS
);
5052 case QEMU_OPTION_pflash
:
5053 drive_add(optarg
, PFLASH_ALIAS
);
5055 case QEMU_OPTION_snapshot
:
5058 case QEMU_OPTION_hdachs
:
5062 cyls
= strtol(p
, (char **)&p
, 0);
5063 if (cyls
< 1 || cyls
> 16383)
5068 heads
= strtol(p
, (char **)&p
, 0);
5069 if (heads
< 1 || heads
> 16)
5074 secs
= strtol(p
, (char **)&p
, 0);
5075 if (secs
< 1 || secs
> 63)
5079 if (!strcmp(p
, "none"))
5080 translation
= BIOS_ATA_TRANSLATION_NONE
;
5081 else if (!strcmp(p
, "lba"))
5082 translation
= BIOS_ATA_TRANSLATION_LBA
;
5083 else if (!strcmp(p
, "auto"))
5084 translation
= BIOS_ATA_TRANSLATION_AUTO
;
5087 } else if (*p
!= '\0') {
5089 fprintf(stderr
, "qemu: invalid physical CHS format\n");
5092 if (hda_opts
!= NULL
) {
5094 snprintf(num
, sizeof(num
), "%d", cyls
);
5095 qemu_opt_set(hda_opts
, "cyls", num
);
5096 snprintf(num
, sizeof(num
), "%d", heads
);
5097 qemu_opt_set(hda_opts
, "heads", num
);
5098 snprintf(num
, sizeof(num
), "%d", secs
);
5099 qemu_opt_set(hda_opts
, "secs", num
);
5100 if (translation
== BIOS_ATA_TRANSLATION_LBA
)
5101 qemu_opt_set(hda_opts
, "trans", "lba");
5102 if (translation
== BIOS_ATA_TRANSLATION_NONE
)
5103 qemu_opt_set(hda_opts
, "trans", "none");
5107 case QEMU_OPTION_numa
:
5108 if (nb_numa_nodes
>= MAX_NODES
) {
5109 fprintf(stderr
, "qemu: too many NUMA nodes\n");
5114 case QEMU_OPTION_nographic
:
5115 display_type
= DT_NOGRAPHIC
;
5117 #ifdef CONFIG_CURSES
5118 case QEMU_OPTION_curses
:
5119 display_type
= DT_CURSES
;
5122 case QEMU_OPTION_portrait
:
5125 case QEMU_OPTION_kernel
:
5126 kernel_filename
= optarg
;
5128 case QEMU_OPTION_append
:
5129 kernel_cmdline
= optarg
;
5131 case QEMU_OPTION_cdrom
:
5132 drive_add(optarg
, CDROM_ALIAS
);
5134 case QEMU_OPTION_boot
:
5136 static const char * const params
[] = {
5137 "order", "once", "menu", NULL
5139 char buf
[sizeof(boot_devices
)];
5140 char *standard_boot_devices
;
5143 if (!strchr(optarg
, '=')) {
5145 pstrcpy(buf
, sizeof(buf
), optarg
);
5146 } else if (check_params(buf
, sizeof(buf
), params
, optarg
) < 0) {
5148 "qemu: unknown boot parameter '%s' in '%s'\n",
5154 get_param_value(buf
, sizeof(buf
), "order", optarg
)) {
5155 boot_devices_bitmap
= parse_bootdevices(buf
);
5156 pstrcpy(boot_devices
, sizeof(boot_devices
), buf
);
5159 if (get_param_value(buf
, sizeof(buf
),
5161 boot_devices_bitmap
|= parse_bootdevices(buf
);
5162 standard_boot_devices
= qemu_strdup(boot_devices
);
5163 pstrcpy(boot_devices
, sizeof(boot_devices
), buf
);
5164 qemu_register_reset(restore_boot_devices
,
5165 standard_boot_devices
);
5167 if (get_param_value(buf
, sizeof(buf
),
5169 if (!strcmp(buf
, "on")) {
5171 } else if (!strcmp(buf
, "off")) {
5175 "qemu: invalid option value '%s'\n",
5183 case QEMU_OPTION_fda
:
5184 case QEMU_OPTION_fdb
:
5185 drive_add(optarg
, FD_ALIAS
, popt
->index
- QEMU_OPTION_fda
);
5188 case QEMU_OPTION_no_fd_bootchk
:
5192 case QEMU_OPTION_netdev
:
5193 if (net_client_parse(&qemu_netdev_opts
, optarg
) == -1) {
5197 case QEMU_OPTION_net
:
5198 if (net_client_parse(&qemu_net_opts
, optarg
) == -1) {
5203 case QEMU_OPTION_tftp
:
5204 legacy_tftp_prefix
= optarg
;
5206 case QEMU_OPTION_bootp
:
5207 legacy_bootp_filename
= optarg
;
5210 case QEMU_OPTION_smb
:
5211 if (net_slirp_smb(optarg
) < 0)
5215 case QEMU_OPTION_redir
:
5216 if (net_slirp_redir(optarg
) < 0)
5220 case QEMU_OPTION_bt
:
5221 add_device_config(DEV_BT
, optarg
);
5224 case QEMU_OPTION_audio_help
:
5228 case QEMU_OPTION_soundhw
:
5229 select_soundhw (optarg
);
5235 case QEMU_OPTION_version
:
5239 case QEMU_OPTION_m
: {
5243 value
= strtoul(optarg
, &ptr
, 10);
5245 case 0: case 'M': case 'm':
5252 fprintf(stderr
, "qemu: invalid ram size: %s\n", optarg
);
5256 /* On 32-bit hosts, QEMU is limited by virtual address space */
5257 if (value
> (2047 << 20) && HOST_LONG_BITS
== 32) {
5258 fprintf(stderr
, "qemu: at most 2047 MB RAM can be simulated\n");
5261 if (value
!= (uint64_t)(ram_addr_t
)value
) {
5262 fprintf(stderr
, "qemu: ram size too large\n");
5268 case QEMU_OPTION_mempath
:
5272 case QEMU_OPTION_mem_prealloc
:
5279 const CPULogItem
*item
;
5281 mask
= cpu_str_to_log_mask(optarg
);
5283 printf("Log items (comma separated):\n");
5284 for(item
= cpu_log_items
; item
->mask
!= 0; item
++) {
5285 printf("%-10s %s\n", item
->name
, item
->help
);
5293 gdbstub_dev
= "tcp::" DEFAULT_GDBSTUB_PORT
;
5295 case QEMU_OPTION_gdb
:
5296 gdbstub_dev
= optarg
;
5301 case QEMU_OPTION_bios
:
5304 case QEMU_OPTION_singlestep
:
5311 keyboard_layout
= optarg
;
5313 case QEMU_OPTION_localtime
:
5316 case QEMU_OPTION_vga
:
5317 select_vgahw (optarg
);
5319 #if defined(TARGET_PPC) || defined(TARGET_SPARC)
5325 w
= strtol(p
, (char **)&p
, 10);
5328 fprintf(stderr
, "qemu: invalid resolution or depth\n");
5334 h
= strtol(p
, (char **)&p
, 10);
5339 depth
= strtol(p
, (char **)&p
, 10);
5340 if (depth
!= 8 && depth
!= 15 && depth
!= 16 &&
5341 depth
!= 24 && depth
!= 32)
5343 } else if (*p
== '\0') {
5344 depth
= graphic_depth
;
5351 graphic_depth
= depth
;
5355 case QEMU_OPTION_echr
:
5358 term_escape_char
= strtol(optarg
, &r
, 0);
5360 printf("Bad argument to echr\n");
5363 case QEMU_OPTION_monitor
:
5364 monitor_parse(optarg
, "readline");
5365 default_monitor
= 0;
5367 case QEMU_OPTION_qmp
:
5368 monitor_parse(optarg
, "control");
5369 default_monitor
= 0;
5371 case QEMU_OPTION_mon
:
5372 opts
= qemu_opts_parse(&qemu_mon_opts
, optarg
, 1);
5374 fprintf(stderr
, "parse error: %s\n", optarg
);
5377 default_monitor
= 0;
5379 case QEMU_OPTION_chardev
:
5380 opts
= qemu_opts_parse(&qemu_chardev_opts
, optarg
, 1);
5382 fprintf(stderr
, "parse error: %s\n", optarg
);
5386 case QEMU_OPTION_serial
:
5387 add_device_config(DEV_SERIAL
, optarg
);
5389 if (strncmp(optarg
, "mon:", 4) == 0) {
5390 default_monitor
= 0;
5393 case QEMU_OPTION_watchdog
:
5396 "qemu: only one watchdog option may be given\n");
5401 case QEMU_OPTION_watchdog_action
:
5402 if (select_watchdog_action(optarg
) == -1) {
5403 fprintf(stderr
, "Unknown -watchdog-action parameter\n");
5407 case QEMU_OPTION_virtiocon
:
5408 add_device_config(DEV_VIRTCON
, optarg
);
5409 default_virtcon
= 0;
5410 if (strncmp(optarg
, "mon:", 4) == 0) {
5411 default_monitor
= 0;
5414 case QEMU_OPTION_parallel
:
5415 add_device_config(DEV_PARALLEL
, optarg
);
5416 default_parallel
= 0;
5417 if (strncmp(optarg
, "mon:", 4) == 0) {
5418 default_monitor
= 0;
5421 case QEMU_OPTION_debugcon
:
5422 add_device_config(DEV_DEBUGCON
, optarg
);
5424 case QEMU_OPTION_loadvm
:
5427 case QEMU_OPTION_full_screen
:
5431 case QEMU_OPTION_no_frame
:
5434 case QEMU_OPTION_alt_grab
:
5437 case QEMU_OPTION_ctrl_grab
:
5440 case QEMU_OPTION_no_quit
:
5443 case QEMU_OPTION_sdl
:
5444 display_type
= DT_SDL
;
5447 case QEMU_OPTION_pidfile
:
5451 case QEMU_OPTION_win2k_hack
:
5452 win2k_install_hack
= 1;
5454 case QEMU_OPTION_rtc_td_hack
:
5457 case QEMU_OPTION_acpitable
:
5458 if(acpi_table_add(optarg
) < 0) {
5459 fprintf(stderr
, "Wrong acpi table provided\n");
5463 case QEMU_OPTION_smbios
:
5464 if(smbios_entry_add(optarg
) < 0) {
5465 fprintf(stderr
, "Wrong smbios provided\n");
5471 case QEMU_OPTION_enable_kvm
:
5475 case QEMU_OPTION_usb
:
5478 case QEMU_OPTION_usbdevice
:
5480 add_device_config(DEV_USB
, optarg
);
5482 case QEMU_OPTION_device
:
5483 if (!qemu_opts_parse(&qemu_device_opts
, optarg
, 1)) {
5487 case QEMU_OPTION_smp
:
5490 fprintf(stderr
, "Invalid number of CPUs\n");
5493 if (max_cpus
< smp_cpus
) {
5494 fprintf(stderr
, "maxcpus must be equal to or greater than "
5498 if (max_cpus
> 255) {
5499 fprintf(stderr
, "Unsupported number of maxcpus\n");
5503 case QEMU_OPTION_vnc
:
5504 display_type
= DT_VNC
;
5505 vnc_display
= optarg
;
5508 case QEMU_OPTION_no_acpi
:
5511 case QEMU_OPTION_no_hpet
:
5514 case QEMU_OPTION_balloon
:
5515 if (balloon_parse(optarg
) < 0) {
5516 fprintf(stderr
, "Unknown -balloon argument %s\n", optarg
);
5521 case QEMU_OPTION_no_reboot
:
5524 case QEMU_OPTION_no_shutdown
:
5527 case QEMU_OPTION_show_cursor
:
5530 case QEMU_OPTION_uuid
:
5531 if(qemu_uuid_parse(optarg
, qemu_uuid
) < 0) {
5532 fprintf(stderr
, "Fail to parse UUID string."
5533 " Wrong format.\n");
5538 case QEMU_OPTION_daemonize
:
5542 case QEMU_OPTION_option_rom
:
5543 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
5544 fprintf(stderr
, "Too many option ROMs\n");
5547 option_rom
[nb_option_roms
] = optarg
;
5550 #if defined(TARGET_ARM) || defined(TARGET_M68K)
5551 case QEMU_OPTION_semihosting
:
5552 semihosting_enabled
= 1;
5555 case QEMU_OPTION_name
:
5556 qemu_name
= qemu_strdup(optarg
);
5558 char *p
= strchr(qemu_name
, ',');
5561 if (strncmp(p
, "process=", 8)) {
5562 fprintf(stderr
, "Unknown subargument %s to -name", p
);
5570 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
5571 case QEMU_OPTION_prom_env
:
5572 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
5573 fprintf(stderr
, "Too many prom variables\n");
5576 prom_envs
[nb_prom_envs
] = optarg
;
5581 case QEMU_OPTION_old_param
:
5585 case QEMU_OPTION_clock
:
5586 configure_alarms(optarg
);
5588 case QEMU_OPTION_startdate
:
5589 configure_rtc_date_offset(optarg
, 1);
5591 case QEMU_OPTION_rtc
:
5592 opts
= qemu_opts_parse(&qemu_rtc_opts
, optarg
, 0);
5594 fprintf(stderr
, "parse error: %s\n", optarg
);
5597 configure_rtc(opts
);
5599 case QEMU_OPTION_tb_size
:
5600 tb_size
= strtol(optarg
, NULL
, 0);
5604 case QEMU_OPTION_icount
:
5606 if (strcmp(optarg
, "auto") == 0) {
5607 icount_time_shift
= -1;
5609 icount_time_shift
= strtol(optarg
, NULL
, 0);
5612 case QEMU_OPTION_incoming
:
5615 case QEMU_OPTION_nodefaults
:
5617 default_parallel
= 0;
5618 default_virtcon
= 0;
5619 default_monitor
= 0;
5627 case QEMU_OPTION_chroot
:
5628 chroot_dir
= optarg
;
5630 case QEMU_OPTION_runas
:
5635 case QEMU_OPTION_xen_domid
:
5636 xen_domid
= atoi(optarg
);
5638 case QEMU_OPTION_xen_create
:
5639 xen_mode
= XEN_CREATE
;
5641 case QEMU_OPTION_xen_attach
:
5642 xen_mode
= XEN_ATTACH
;
5645 case QEMU_OPTION_readconfig
:
5648 fp
= fopen(optarg
, "r");
5650 fprintf(stderr
, "open %s: %s\n", optarg
, strerror(errno
));
5653 if (qemu_config_parse(fp
, optarg
) != 0) {
5659 case QEMU_OPTION_writeconfig
:
5662 if (strcmp(optarg
, "-") == 0) {
5665 fp
= fopen(optarg
, "w");
5667 fprintf(stderr
, "open %s: %s\n", optarg
, strerror(errno
));
5671 qemu_config_write(fp
);
5680 /* If no data_dir is specified then try to find it relative to the
5683 data_dir
= find_datadir(argv
[0]);
5685 /* If all else fails use the install patch specified when building. */
5687 data_dir
= CONFIG_QEMU_SHAREDIR
;
5691 * Default to max_cpus = smp_cpus, in case the user doesn't
5692 * specify a max_cpus value.
5695 max_cpus
= smp_cpus
;
5697 machine
->max_cpus
= machine
->max_cpus
?: 1; /* Default to UP */
5698 if (smp_cpus
> machine
->max_cpus
) {
5699 fprintf(stderr
, "Number of SMP cpus requested (%d), exceeds max cpus "
5700 "supported by machine `%s' (%d)\n", smp_cpus
, machine
->name
,
5705 qemu_opts_foreach(&qemu_device_opts
, default_driver_check
, NULL
, 0);
5706 qemu_opts_foreach(&qemu_global_opts
, default_driver_check
, NULL
, 0);
5708 if (machine
->no_serial
) {
5711 if (machine
->no_parallel
) {
5712 default_parallel
= 0;
5714 if (!machine
->use_virtcon
) {
5715 default_virtcon
= 0;
5717 if (machine
->no_vga
) {
5720 if (machine
->no_floppy
) {
5723 if (machine
->no_cdrom
) {
5726 if (machine
->no_sdcard
) {
5730 if (display_type
== DT_NOGRAPHIC
) {
5731 if (default_parallel
)
5732 add_device_config(DEV_PARALLEL
, "null");
5733 if (default_serial
&& default_monitor
) {
5734 add_device_config(DEV_SERIAL
, "mon:stdio");
5735 } else if (default_virtcon
&& default_monitor
) {
5736 add_device_config(DEV_VIRTCON
, "mon:stdio");
5739 add_device_config(DEV_SERIAL
, "stdio");
5740 if (default_virtcon
)
5741 add_device_config(DEV_VIRTCON
, "stdio");
5742 if (default_monitor
)
5743 monitor_parse("stdio", "readline");
5747 add_device_config(DEV_SERIAL
, "vc:80Cx24C");
5748 if (default_parallel
)
5749 add_device_config(DEV_PARALLEL
, "vc:80Cx24C");
5750 if (default_monitor
)
5751 monitor_parse("vc:80Cx24C", "readline");
5752 if (default_virtcon
)
5753 add_device_config(DEV_VIRTCON
, "vc:80Cx24C");
5756 vga_interface_type
= VGA_CIRRUS
;
5758 if (qemu_opts_foreach(&qemu_chardev_opts
, chardev_init_func
, NULL
, 1) != 0)
5765 if (pipe(fds
) == -1)
5776 len
= read(fds
[0], &status
, 1);
5777 if (len
== -1 && (errno
== EINTR
))
5782 else if (status
== 1) {
5783 fprintf(stderr
, "Could not acquire pidfile: %s\n", strerror(errno
));
5791 qemu_set_cloexec(fds
[1]);
5803 signal(SIGTSTP
, SIG_IGN
);
5804 signal(SIGTTOU
, SIG_IGN
);
5805 signal(SIGTTIN
, SIG_IGN
);
5809 if (pid_file
&& qemu_create_pidfile(pid_file
) != 0) {
5813 if (write(fds
[1], &status
, 1) != 1) {
5814 perror("daemonize. Writing to pipe\n");
5818 fprintf(stderr
, "Could not acquire pid file: %s\n", strerror(errno
));
5822 if (kvm_enabled()) {
5825 ret
= kvm_init(smp_cpus
);
5827 fprintf(stderr
, "failed to initialize KVM\n");
5832 if (qemu_init_main_loop()) {
5833 fprintf(stderr
, "qemu_init_main_loop failed\n");
5836 linux_boot
= (kernel_filename
!= NULL
);
5838 if (!linux_boot
&& *kernel_cmdline
!= '\0') {
5839 fprintf(stderr
, "-append only allowed with -kernel option\n");
5843 if (!linux_boot
&& initrd_filename
!= NULL
) {
5844 fprintf(stderr
, "-initrd only allowed with -kernel option\n");
5849 /* Win32 doesn't support line-buffering and requires size >= 2 */
5850 setvbuf(stdout
, NULL
, _IOLBF
, 0);
5853 if (init_timer_alarm() < 0) {
5854 fprintf(stderr
, "could not initialize alarm timer\n");
5857 if (use_icount
&& icount_time_shift
< 0) {
5859 /* 125MIPS seems a reasonable initial guess at the guest speed.
5860 It will be corrected fairly quickly anyway. */
5861 icount_time_shift
= 3;
5862 init_icount_adjust();
5869 if (net_init_clients() < 0) {
5873 net_boot
= (boot_devices_bitmap
>> ('n' - 'a')) & 0xF;
5874 net_set_boot_mask(net_boot
);
5876 /* init the bluetooth world */
5877 if (foreach_device_config(DEV_BT
, bt_parse
))
5880 /* init the memory */
5882 ram_size
= DEFAULT_RAM_SIZE
* 1024 * 1024;
5884 /* init the dynamic translator */
5885 cpu_exec_init_all(tb_size
* 1024 * 1024);
5887 bdrv_init_with_whitelist();
5891 if (default_cdrom
) {
5892 /* we always create the cdrom drive, even if no disk is there */
5893 drive_add(NULL
, CDROM_ALIAS
);
5896 if (default_floppy
) {
5897 /* we always create at least one floppy */
5898 drive_add(NULL
, FD_ALIAS
, 0);
5901 if (default_sdcard
) {
5902 /* we always create one sd slot, even if no card is in it */
5903 drive_add(NULL
, SD_ALIAS
);
5906 /* open the virtual block devices */
5908 qemu_opts_foreach(&qemu_drive_opts
, drive_enable_snapshot
, NULL
, 0);
5909 if (qemu_opts_foreach(&qemu_drive_opts
, drive_init_func
, machine
, 1) != 0)
5912 vmstate_register(0, &vmstate_timers
,&timers_state
);
5913 register_savevm_live("ram", 0, 3, NULL
, ram_save_live
, NULL
,
5916 if (nb_numa_nodes
> 0) {
5919 if (nb_numa_nodes
> smp_cpus
) {
5920 nb_numa_nodes
= smp_cpus
;
5923 /* If no memory size if given for any node, assume the default case
5924 * and distribute the available memory equally across all nodes
5926 for (i
= 0; i
< nb_numa_nodes
; i
++) {
5927 if (node_mem
[i
] != 0)
5930 if (i
== nb_numa_nodes
) {
5931 uint64_t usedmem
= 0;
5933 /* On Linux, the each node's border has to be 8MB aligned,
5934 * the final node gets the rest.
5936 for (i
= 0; i
< nb_numa_nodes
- 1; i
++) {
5937 node_mem
[i
] = (ram_size
/ nb_numa_nodes
) & ~((1 << 23UL) - 1);
5938 usedmem
+= node_mem
[i
];
5940 node_mem
[i
] = ram_size
- usedmem
;
5943 for (i
= 0; i
< nb_numa_nodes
; i
++) {
5944 if (node_cpumask
[i
] != 0)
5947 /* assigning the VCPUs round-robin is easier to implement, guest OSes
5948 * must cope with this anyway, because there are BIOSes out there in
5949 * real machines which also use this scheme.
5951 if (i
== nb_numa_nodes
) {
5952 for (i
= 0; i
< smp_cpus
; i
++) {
5953 node_cpumask
[i
% nb_numa_nodes
] |= 1 << i
;
5958 if (foreach_device_config(DEV_SERIAL
, serial_parse
) < 0)
5960 if (foreach_device_config(DEV_PARALLEL
, parallel_parse
) < 0)
5962 if (foreach_device_config(DEV_VIRTCON
, virtcon_parse
) < 0)
5964 if (foreach_device_config(DEV_DEBUGCON
, debugcon_parse
) < 0)
5967 module_call_init(MODULE_INIT_DEVICE
);
5969 if (qemu_opts_foreach(&qemu_device_opts
, device_help_func
, NULL
, 0) != 0)
5973 i
= select_watchdog(watchdog
);
5975 exit (i
== 1 ? 1 : 0);
5978 if (machine
->compat_props
) {
5979 qdev_prop_register_global_list(machine
->compat_props
);
5983 machine
->init(ram_size
, boot_devices
,
5984 kernel_filename
, kernel_cmdline
, initrd_filename
, cpu_model
);
5986 cpu_synchronize_all_post_init();
5989 /* must be after terminal init, SDL library changes signal handlers */
5993 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
5994 for (i
= 0; i
< nb_numa_nodes
; i
++) {
5995 if (node_cpumask
[i
] & (1 << env
->cpu_index
)) {
6001 current_machine
= machine
;
6003 /* init USB devices */
6005 if (foreach_device_config(DEV_USB
, usb_parse
) < 0)
6009 /* init generic devices */
6010 if (qemu_opts_foreach(&qemu_device_opts
, device_init_func
, NULL
, 1) != 0)
6013 net_check_clients();
6015 /* just use the first displaystate for the moment */
6016 ds
= get_displaystate();
6018 if (display_type
== DT_DEFAULT
) {
6019 #if defined(CONFIG_SDL) || defined(CONFIG_COCOA)
6020 display_type
= DT_SDL
;
6022 display_type
= DT_VNC
;
6023 vnc_display
= "localhost:0,to=99";
6029 switch (display_type
) {
6032 #if defined(CONFIG_CURSES)
6034 curses_display_init(ds
, full_screen
);
6037 #if defined(CONFIG_SDL)
6039 sdl_display_init(ds
, full_screen
, no_frame
);
6041 #elif defined(CONFIG_COCOA)
6043 cocoa_display_init(ds
, full_screen
);
6047 vnc_display_init(ds
);
6048 if (vnc_display_open(ds
, vnc_display
) < 0)
6051 if (show_vnc_port
) {
6052 printf("VNC server running on `%s'\n", vnc_display_local_addr(ds
));
6060 dcl
= ds
->listeners
;
6061 while (dcl
!= NULL
) {
6062 if (dcl
->dpy_refresh
!= NULL
) {
6063 ds
->gui_timer
= qemu_new_timer(rt_clock
, gui_update
, ds
);
6064 qemu_mod_timer(ds
->gui_timer
, qemu_get_clock(rt_clock
));
6069 if (display_type
== DT_NOGRAPHIC
|| display_type
== DT_VNC
) {
6070 nographic_timer
= qemu_new_timer(rt_clock
, nographic_update
, NULL
);
6071 qemu_mod_timer(nographic_timer
, qemu_get_clock(rt_clock
));
6074 text_consoles_set_display(ds
);
6076 if (qemu_opts_foreach(&qemu_mon_opts
, mon_init_func
, NULL
, 1) != 0)
6079 if (gdbstub_dev
&& gdbserver_start(gdbstub_dev
) < 0) {
6080 fprintf(stderr
, "qemu: could not open gdbserver on device '%s'\n",
6085 qdev_machine_creation_done();
6087 if (rom_load_all() != 0) {
6088 fprintf(stderr
, "rom loading failed\n");
6092 qemu_system_reset();
6094 if (load_vmstate(loadvm
) < 0) {
6100 qemu_start_incoming_migration(incoming
);
6101 } else if (autostart
) {
6111 len
= write(fds
[1], &status
, 1);
6112 if (len
== -1 && (errno
== EINTR
))
6119 perror("not able to chdir to /");
6122 TFR(fd
= qemu_open("/dev/null", O_RDWR
));
6128 pwd
= getpwnam(run_as
);
6130 fprintf(stderr
, "User \"%s\" doesn't exist\n", run_as
);
6136 if (chroot(chroot_dir
) < 0) {
6137 fprintf(stderr
, "chroot failed\n");
6141 perror("not able to chdir to /");
6147 if (setgid(pwd
->pw_gid
) < 0) {
6148 fprintf(stderr
, "Failed to setgid(%d)\n", pwd
->pw_gid
);
6151 if (setuid(pwd
->pw_uid
) < 0) {
6152 fprintf(stderr
, "Failed to setuid(%d)\n", pwd
->pw_uid
);
6155 if (setuid(0) != -1) {
6156 fprintf(stderr
, "Dropping privileges failed\n");