kvm: testsuite: compile fix - avoid raw string literal
[qemu-kvm/fedora.git] / vl.c
blob1f4a420de92800fcf534ca9036bca910fa9dbc1c
1 /*
2 * QEMU System Emulator
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
22 * THE SOFTWARE.
24 #include "hw/hw.h"
25 #include "hw/boards.h"
26 #include "hw/usb.h"
27 #include "hw/pcmcia.h"
28 #include "hw/pc.h"
29 #include "hw/audiodev.h"
30 #include "hw/isa.h"
31 #include "hw/baum.h"
32 #include "hw/bt.h"
33 #include "net.h"
34 #include "console.h"
35 #include "sysemu.h"
36 #include "gdbstub.h"
37 #include "qemu-timer.h"
38 #include "qemu-char.h"
39 #include "cache-utils.h"
40 #include "block.h"
41 #include "audio/audio.h"
42 #include "hw/device-assignment.h"
43 #include "migration.h"
44 #include "kvm.h"
45 #include "balloon.h"
46 #include "qemu-kvm.h"
48 #include <unistd.h>
49 #include <fcntl.h>
50 #include <signal.h>
51 #include <time.h>
52 #include <errno.h>
53 #include <sys/time.h>
54 #include <zlib.h>
56 #ifndef _WIN32
57 #include <pwd.h>
58 #include <sys/times.h>
59 #include <sys/wait.h>
60 #include <termios.h>
61 #include <sys/mman.h>
62 #include <sys/ioctl.h>
63 #include <sys/resource.h>
64 #include <sys/socket.h>
65 #include <netinet/in.h>
66 #include <net/if.h>
67 #if defined(__NetBSD__)
68 #include <net/if_tap.h>
69 #endif
70 #ifdef __linux__
71 #include <linux/if_tun.h>
72 #endif
73 #include <arpa/inet.h>
74 #include <dirent.h>
75 #include <netdb.h>
76 #include <sys/select.h>
77 #ifdef _BSD
78 #include <sys/stat.h>
79 #ifdef __FreeBSD__
80 #include <libutil.h>
81 #else
82 #include <util.h>
83 #endif
84 #elif defined (__GLIBC__) && defined (__FreeBSD_kernel__)
85 #include <freebsd/stdlib.h>
86 #else
87 #ifdef __linux__
88 #include <pty.h>
89 #include <malloc.h>
90 #include <linux/rtc.h>
92 /* For the benefit of older linux systems which don't supply it,
93 we use a local copy of hpet.h. */
94 /* #include <linux/hpet.h> */
95 #include "hpet.h"
97 #include <linux/ppdev.h>
98 #include <linux/parport.h>
99 #endif
100 #ifdef __sun__
101 #include <sys/stat.h>
102 #include <sys/ethernet.h>
103 #include <sys/sockio.h>
104 #include <netinet/arp.h>
105 #include <netinet/in.h>
106 #include <netinet/in_systm.h>
107 #include <netinet/ip.h>
108 #include <netinet/ip_icmp.h> // must come after ip.h
109 #include <netinet/udp.h>
110 #include <netinet/tcp.h>
111 #include <net/if.h>
112 #include <syslog.h>
113 #include <stropts.h>
114 #endif
115 #endif
116 #endif
118 #include "qemu_socket.h"
120 #if defined(CONFIG_SLIRP)
121 #include "libslirp.h"
122 #endif
124 #if defined(__OpenBSD__)
125 #include <util.h>
126 #endif
128 #if defined(CONFIG_VDE)
129 #include <libvdeplug.h>
130 #endif
132 #ifdef _WIN32
133 #include <malloc.h>
134 #include <sys/timeb.h>
135 #include <mmsystem.h>
136 #define getopt_long_only getopt_long
137 #define memalign(align, size) malloc(size)
138 #endif
140 #ifdef CONFIG_SDL
141 #ifdef __APPLE__
142 #include <SDL/SDL.h>
143 int qemu_main(int argc, char **argv, char **envp);
144 int main(int argc, char **argv)
146 qemu_main(argc, argv, NULL);
148 #undef main
149 #define main qemu_main
150 #endif
151 #endif /* CONFIG_SDL */
153 #ifdef CONFIG_COCOA
154 #undef main
155 #define main qemu_main
156 #endif /* CONFIG_COCOA */
158 #include "disas.h"
160 #include "exec-all.h"
162 #include "qemu-kvm.h"
164 //#define DEBUG_UNUSED_IOPORT
165 //#define DEBUG_IOPORT
166 //#define DEBUG_NET
167 //#define DEBUG_SLIRP
170 #ifdef DEBUG_IOPORT
171 # define LOG_IOPORT(...) qemu_log_mask(CPU_LOG_IOPORT, ## __VA_ARGS__)
172 #else
173 # define LOG_IOPORT(...) do { } while (0)
174 #endif
176 #define DEFAULT_RAM_SIZE 128
178 /* Max number of USB devices that can be specified on the commandline. */
179 #define MAX_USB_CMDLINE 8
181 /* Max number of bluetooth switches on the commandline. */
182 #define MAX_BT_CMDLINE 10
184 /* XXX: use a two level table to limit memory usage */
185 #define MAX_IOPORTS 65536
187 const char *bios_dir = CONFIG_QEMU_SHAREDIR;
188 const char *bios_name = NULL;
189 static void *ioport_opaque[MAX_IOPORTS];
190 static IOPortReadFunc *ioport_read_table[3][MAX_IOPORTS];
191 static IOPortWriteFunc *ioport_write_table[3][MAX_IOPORTS];
192 /* Note: drives_table[MAX_DRIVES] is a dummy block driver if none available
193 to store the VM snapshots */
194 DriveInfo drives_table[MAX_DRIVES+1];
195 int nb_drives;
196 int extboot_drive = -1;
197 static int vga_ram_size;
198 enum vga_retrace_method vga_retrace_method = VGA_RETRACE_DUMB;
199 static DisplayState *display_state;
200 int nographic;
201 static int curses;
202 static int sdl;
203 const char* keyboard_layout = NULL;
204 int64_t ticks_per_sec;
205 ram_addr_t ram_size;
206 int nb_nics;
207 NICInfo nd_table[MAX_NICS];
208 int vm_running;
209 static int autostart;
210 static int rtc_utc = 1;
211 static int rtc_date_offset = -1; /* -1 means no change */
212 int cirrus_vga_enabled = 1;
213 int std_vga_enabled = 0;
214 int vmsvga_enabled = 0;
215 #ifdef TARGET_SPARC
216 int graphic_width = 1024;
217 int graphic_height = 768;
218 int graphic_depth = 8;
219 #else
220 int graphic_width = 800;
221 int graphic_height = 600;
222 int graphic_depth = 15;
223 #endif
224 static int full_screen = 0;
225 #ifdef CONFIG_SDL
226 static int no_frame = 0;
227 #endif
228 int no_quit = 0;
229 CharDriverState *serial_hds[MAX_SERIAL_PORTS];
230 CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
231 CharDriverState *virtcon_hds[MAX_VIRTIO_CONSOLES];
232 #ifdef TARGET_I386
233 int win2k_install_hack = 0;
234 int rtc_td_hack = 0;
235 #endif
236 int usb_enabled = 0;
237 const char *assigned_devices[MAX_DEV_ASSIGN_CMDLINE];
238 int assigned_devices_index;
239 int smp_cpus = 1;
240 const char *vnc_display;
241 int acpi_enabled = 1;
242 int no_hpet = 0;
243 int fd_bootchk = 1;
244 int no_reboot = 0;
245 int no_shutdown = 0;
246 int cursor_hide = 1;
247 int graphic_rotate = 0;
248 int daemonize = 0;
249 const char *incoming;
250 const char *option_rom[MAX_OPTION_ROMS];
251 int nb_option_roms;
252 int semihosting_enabled = 0;
253 int time_drift_fix = 0;
254 unsigned int kvm_shadow_memory = 0;
255 const char *mem_path = NULL;
256 #ifdef MAP_POPULATE
257 int mem_prealloc = 1; /* force preallocation of physical target memory */
258 #endif
259 int hpagesize = 0;
260 const char *cpu_vendor_string;
261 #ifdef TARGET_ARM
262 int old_param = 0;
263 #endif
264 const char *qemu_name;
265 int alt_grab = 0;
266 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
267 unsigned int nb_prom_envs = 0;
268 const char *prom_envs[MAX_PROM_ENVS];
269 #endif
270 int nb_drives_opt;
271 const char *nvram = NULL;
272 struct drive_opt drives_opt[MAX_DRIVES];
274 static CPUState *cur_cpu;
275 static CPUState *next_cpu;
276 static int event_pending = 1;
277 /* Conversion factor from emulated instructions to virtual clock ticks. */
278 static int icount_time_shift;
279 /* Arbitrarily pick 1MIPS as the minimum allowable speed. */
280 #define MAX_ICOUNT_SHIFT 10
281 /* Compensate for varying guest execution speed. */
282 static int64_t qemu_icount_bias;
283 static QEMUTimer *icount_rt_timer;
284 static QEMUTimer *icount_vm_timer;
285 static QEMUTimer *nographic_timer;
287 uint8_t qemu_uuid[16];
289 /* KVM runs the main loop in a separate thread. If we update one of the lists
290 * that are polled before or after select(), we need to make sure to break out
291 * of the select() to ensure the new item is serviced.
293 static void main_loop_break(void)
295 if (kvm_enabled())
296 qemu_kvm_notify_work();
299 /***********************************************************/
300 /* x86 ISA bus support */
302 target_phys_addr_t isa_mem_base = 0;
303 PicState2 *isa_pic;
305 static IOPortReadFunc default_ioport_readb, default_ioport_readw, default_ioport_readl;
306 static IOPortWriteFunc default_ioport_writeb, default_ioport_writew, default_ioport_writel;
308 static uint32_t ioport_read(int index, uint32_t address)
310 static IOPortReadFunc *default_func[3] = {
311 default_ioport_readb,
312 default_ioport_readw,
313 default_ioport_readl
315 IOPortReadFunc *func = ioport_read_table[index][address];
316 if (!func)
317 func = default_func[index];
318 return func(ioport_opaque[address], address);
321 static void ioport_write(int index, uint32_t address, uint32_t data)
323 static IOPortWriteFunc *default_func[3] = {
324 default_ioport_writeb,
325 default_ioport_writew,
326 default_ioport_writel
328 IOPortWriteFunc *func = ioport_write_table[index][address];
329 if (!func)
330 func = default_func[index];
331 func(ioport_opaque[address], address, data);
334 static uint32_t default_ioport_readb(void *opaque, uint32_t address)
336 #ifdef DEBUG_UNUSED_IOPORT
337 fprintf(stderr, "unused inb: port=0x%04x\n", address);
338 #endif
339 return 0xff;
342 static void default_ioport_writeb(void *opaque, uint32_t address, uint32_t data)
344 #ifdef DEBUG_UNUSED_IOPORT
345 fprintf(stderr, "unused outb: port=0x%04x data=0x%02x\n", address, data);
346 #endif
349 /* default is to make two byte accesses */
350 static uint32_t default_ioport_readw(void *opaque, uint32_t address)
352 uint32_t data;
353 data = ioport_read(0, address);
354 address = (address + 1) & (MAX_IOPORTS - 1);
355 data |= ioport_read(0, address) << 8;
356 return data;
359 static void default_ioport_writew(void *opaque, uint32_t address, uint32_t data)
361 ioport_write(0, address, data & 0xff);
362 address = (address + 1) & (MAX_IOPORTS - 1);
363 ioport_write(0, address, (data >> 8) & 0xff);
366 static uint32_t default_ioport_readl(void *opaque, uint32_t address)
368 #ifdef DEBUG_UNUSED_IOPORT
369 fprintf(stderr, "unused inl: port=0x%04x\n", address);
370 #endif
371 return 0xffffffff;
374 static void default_ioport_writel(void *opaque, uint32_t address, uint32_t data)
376 #ifdef DEBUG_UNUSED_IOPORT
377 fprintf(stderr, "unused outl: port=0x%04x data=0x%02x\n", address, data);
378 #endif
381 /* size is the word size in byte */
382 int register_ioport_read(int start, int length, int size,
383 IOPortReadFunc *func, void *opaque)
385 int i, bsize;
387 if (size == 1) {
388 bsize = 0;
389 } else if (size == 2) {
390 bsize = 1;
391 } else if (size == 4) {
392 bsize = 2;
393 } else {
394 hw_error("register_ioport_read: invalid size");
395 return -1;
397 for(i = start; i < start + length; i += size) {
398 ioport_read_table[bsize][i] = func;
399 if (ioport_opaque[i] != NULL && ioport_opaque[i] != opaque)
400 hw_error("register_ioport_read: invalid opaque");
401 ioport_opaque[i] = opaque;
403 return 0;
406 /* size is the word size in byte */
407 int register_ioport_write(int start, int length, int size,
408 IOPortWriteFunc *func, void *opaque)
410 int i, bsize;
412 if (size == 1) {
413 bsize = 0;
414 } else if (size == 2) {
415 bsize = 1;
416 } else if (size == 4) {
417 bsize = 2;
418 } else {
419 hw_error("register_ioport_write: invalid size");
420 return -1;
422 for(i = start; i < start + length; i += size) {
423 ioport_write_table[bsize][i] = func;
424 if (ioport_opaque[i] != NULL && ioport_opaque[i] != opaque)
425 hw_error("register_ioport_write: invalid opaque");
426 ioport_opaque[i] = opaque;
428 return 0;
431 void isa_unassign_ioport(int start, int length)
433 int i;
435 for(i = start; i < start + length; i++) {
436 ioport_read_table[0][i] = default_ioport_readb;
437 ioport_read_table[1][i] = default_ioport_readw;
438 ioport_read_table[2][i] = default_ioport_readl;
440 ioport_write_table[0][i] = default_ioport_writeb;
441 ioport_write_table[1][i] = default_ioport_writew;
442 ioport_write_table[2][i] = default_ioport_writel;
444 ioport_opaque[i] = NULL;
448 /***********************************************************/
450 void cpu_outb(CPUState *env, int addr, int val)
452 LOG_IOPORT("outb: %04x %02x\n", addr, val);
453 ioport_write(0, addr, val);
454 #ifdef USE_KQEMU
455 if (env)
456 env->last_io_time = cpu_get_time_fast();
457 #endif
460 void cpu_outw(CPUState *env, int addr, int val)
462 LOG_IOPORT("outw: %04x %04x\n", addr, val);
463 ioport_write(1, addr, val);
464 #ifdef USE_KQEMU
465 if (env)
466 env->last_io_time = cpu_get_time_fast();
467 #endif
470 void cpu_outl(CPUState *env, int addr, int val)
472 LOG_IOPORT("outl: %04x %08x\n", addr, val);
473 ioport_write(2, addr, val);
474 #ifdef USE_KQEMU
475 if (env)
476 env->last_io_time = cpu_get_time_fast();
477 #endif
480 int cpu_inb(CPUState *env, int addr)
482 int val;
483 val = ioport_read(0, addr);
484 LOG_IOPORT("inb : %04x %02x\n", addr, val);
485 #ifdef USE_KQEMU
486 if (env)
487 env->last_io_time = cpu_get_time_fast();
488 #endif
489 return val;
492 int cpu_inw(CPUState *env, int addr)
494 int val;
495 val = ioport_read(1, addr);
496 LOG_IOPORT("inw : %04x %04x\n", addr, val);
497 #ifdef USE_KQEMU
498 if (env)
499 env->last_io_time = cpu_get_time_fast();
500 #endif
501 return val;
504 int cpu_inl(CPUState *env, int addr)
506 int val;
507 val = ioport_read(2, addr);
508 LOG_IOPORT("inl : %04x %08x\n", addr, val);
509 #ifdef USE_KQEMU
510 if (env)
511 env->last_io_time = cpu_get_time_fast();
512 #endif
513 return val;
516 /***********************************************************/
517 void hw_error(const char *fmt, ...)
519 va_list ap;
520 CPUState *env;
522 va_start(ap, fmt);
523 fprintf(stderr, "qemu: hardware error: ");
524 vfprintf(stderr, fmt, ap);
525 fprintf(stderr, "\n");
526 for(env = first_cpu; env != NULL; env = env->next_cpu) {
527 fprintf(stderr, "CPU #%d:\n", env->cpu_index);
528 #ifdef TARGET_I386
529 cpu_dump_state(env, stderr, fprintf, X86_DUMP_FPU);
530 #else
531 cpu_dump_state(env, stderr, fprintf, 0);
532 #endif
534 va_end(ap);
535 abort();
538 /***************/
539 /* ballooning */
541 static QEMUBalloonEvent *qemu_balloon_event;
542 void *qemu_balloon_event_opaque;
544 void qemu_add_balloon_handler(QEMUBalloonEvent *func, void *opaque)
546 qemu_balloon_event = func;
547 qemu_balloon_event_opaque = opaque;
550 void qemu_balloon(ram_addr_t target)
552 if (qemu_balloon_event)
553 qemu_balloon_event(qemu_balloon_event_opaque, target);
556 ram_addr_t qemu_balloon_status(void)
558 if (qemu_balloon_event)
559 return qemu_balloon_event(qemu_balloon_event_opaque, 0);
560 return 0;
563 /***********************************************************/
564 /* keyboard/mouse */
566 static QEMUPutKBDEvent *qemu_put_kbd_event;
567 static void *qemu_put_kbd_event_opaque;
568 static QEMUPutMouseEntry *qemu_put_mouse_event_head;
569 static QEMUPutMouseEntry *qemu_put_mouse_event_current;
571 void qemu_add_kbd_event_handler(QEMUPutKBDEvent *func, void *opaque)
573 qemu_put_kbd_event_opaque = opaque;
574 qemu_put_kbd_event = func;
577 QEMUPutMouseEntry *qemu_add_mouse_event_handler(QEMUPutMouseEvent *func,
578 void *opaque, int absolute,
579 const char *name)
581 QEMUPutMouseEntry *s, *cursor;
583 s = qemu_mallocz(sizeof(QEMUPutMouseEntry));
585 s->qemu_put_mouse_event = func;
586 s->qemu_put_mouse_event_opaque = opaque;
587 s->qemu_put_mouse_event_absolute = absolute;
588 s->qemu_put_mouse_event_name = qemu_strdup(name);
589 s->next = NULL;
591 if (!qemu_put_mouse_event_head) {
592 qemu_put_mouse_event_head = qemu_put_mouse_event_current = s;
593 return s;
596 cursor = qemu_put_mouse_event_head;
597 while (cursor->next != NULL)
598 cursor = cursor->next;
600 cursor->next = s;
601 qemu_put_mouse_event_current = s;
603 return s;
606 void qemu_remove_mouse_event_handler(QEMUPutMouseEntry *entry)
608 QEMUPutMouseEntry *prev = NULL, *cursor;
610 if (!qemu_put_mouse_event_head || entry == NULL)
611 return;
613 cursor = qemu_put_mouse_event_head;
614 while (cursor != NULL && cursor != entry) {
615 prev = cursor;
616 cursor = cursor->next;
619 if (cursor == NULL) // does not exist or list empty
620 return;
621 else if (prev == NULL) { // entry is head
622 qemu_put_mouse_event_head = cursor->next;
623 if (qemu_put_mouse_event_current == entry)
624 qemu_put_mouse_event_current = cursor->next;
625 qemu_free(entry->qemu_put_mouse_event_name);
626 qemu_free(entry);
627 return;
630 prev->next = entry->next;
632 if (qemu_put_mouse_event_current == entry)
633 qemu_put_mouse_event_current = prev;
635 qemu_free(entry->qemu_put_mouse_event_name);
636 qemu_free(entry);
639 void kbd_put_keycode(int keycode)
641 if (qemu_put_kbd_event) {
642 qemu_put_kbd_event(qemu_put_kbd_event_opaque, keycode);
646 void kbd_mouse_event(int dx, int dy, int dz, int buttons_state)
648 QEMUPutMouseEvent *mouse_event;
649 void *mouse_event_opaque;
650 int width;
652 if (!qemu_put_mouse_event_current) {
653 return;
656 mouse_event =
657 qemu_put_mouse_event_current->qemu_put_mouse_event;
658 mouse_event_opaque =
659 qemu_put_mouse_event_current->qemu_put_mouse_event_opaque;
661 if (mouse_event) {
662 if (graphic_rotate) {
663 if (qemu_put_mouse_event_current->qemu_put_mouse_event_absolute)
664 width = 0x7fff;
665 else
666 width = graphic_width - 1;
667 mouse_event(mouse_event_opaque,
668 width - dy, dx, dz, buttons_state);
669 } else
670 mouse_event(mouse_event_opaque,
671 dx, dy, dz, buttons_state);
675 int kbd_mouse_is_absolute(void)
677 if (!qemu_put_mouse_event_current)
678 return 0;
680 return qemu_put_mouse_event_current->qemu_put_mouse_event_absolute;
683 void do_info_mice(void)
685 QEMUPutMouseEntry *cursor;
686 int index = 0;
688 if (!qemu_put_mouse_event_head) {
689 term_printf("No mouse devices connected\n");
690 return;
693 term_printf("Mouse devices available:\n");
694 cursor = qemu_put_mouse_event_head;
695 while (cursor != NULL) {
696 term_printf("%c Mouse #%d: %s\n",
697 (cursor == qemu_put_mouse_event_current ? '*' : ' '),
698 index, cursor->qemu_put_mouse_event_name);
699 index++;
700 cursor = cursor->next;
704 void do_mouse_set(int index)
706 QEMUPutMouseEntry *cursor;
707 int i = 0;
709 if (!qemu_put_mouse_event_head) {
710 term_printf("No mouse devices connected\n");
711 return;
714 cursor = qemu_put_mouse_event_head;
715 while (cursor != NULL && index != i) {
716 i++;
717 cursor = cursor->next;
720 if (cursor != NULL)
721 qemu_put_mouse_event_current = cursor;
722 else
723 term_printf("Mouse at given index not found\n");
726 /* compute with 96 bit intermediate result: (a*b)/c */
727 uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c)
729 union {
730 uint64_t ll;
731 struct {
732 #ifdef WORDS_BIGENDIAN
733 uint32_t high, low;
734 #else
735 uint32_t low, high;
736 #endif
737 } l;
738 } u, res;
739 uint64_t rl, rh;
741 u.ll = a;
742 rl = (uint64_t)u.l.low * (uint64_t)b;
743 rh = (uint64_t)u.l.high * (uint64_t)b;
744 rh += (rl >> 32);
745 res.l.high = rh / c;
746 res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c;
747 return res.ll;
750 /***********************************************************/
751 /* real time host monotonic timer */
753 #define QEMU_TIMER_BASE 1000000000LL
755 #ifdef WIN32
757 static int64_t clock_freq;
759 static void init_get_clock(void)
761 LARGE_INTEGER freq;
762 int ret;
763 ret = QueryPerformanceFrequency(&freq);
764 if (ret == 0) {
765 fprintf(stderr, "Could not calibrate ticks\n");
766 exit(1);
768 clock_freq = freq.QuadPart;
771 static int64_t get_clock(void)
773 LARGE_INTEGER ti;
774 QueryPerformanceCounter(&ti);
775 return muldiv64(ti.QuadPart, QEMU_TIMER_BASE, clock_freq);
778 #else
780 static int use_rt_clock;
782 static void init_get_clock(void)
784 use_rt_clock = 0;
785 #if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD_version >= 500000)
787 struct timespec ts;
788 if (clock_gettime(CLOCK_MONOTONIC, &ts) == 0) {
789 use_rt_clock = 1;
792 #endif
795 static int64_t get_clock(void)
797 #if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD_version >= 500000)
798 if (use_rt_clock) {
799 struct timespec ts;
800 clock_gettime(CLOCK_MONOTONIC, &ts);
801 return ts.tv_sec * 1000000000LL + ts.tv_nsec;
802 } else
803 #endif
805 /* XXX: using gettimeofday leads to problems if the date
806 changes, so it should be avoided. */
807 struct timeval tv;
808 gettimeofday(&tv, NULL);
809 return tv.tv_sec * 1000000000LL + (tv.tv_usec * 1000);
812 #endif
814 /* Return the virtual CPU time, based on the instruction counter. */
815 static int64_t cpu_get_icount(void)
817 int64_t icount;
818 CPUState *env = cpu_single_env;;
819 icount = qemu_icount;
820 if (env) {
821 if (!can_do_io(env))
822 fprintf(stderr, "Bad clock read\n");
823 icount -= (env->icount_decr.u16.low + env->icount_extra);
825 return qemu_icount_bias + (icount << icount_time_shift);
828 /***********************************************************/
829 /* guest cycle counter */
831 static int64_t cpu_ticks_prev;
832 static int64_t cpu_ticks_offset;
833 static int64_t cpu_clock_offset;
834 static int cpu_ticks_enabled;
836 /* return the host CPU cycle counter and handle stop/restart */
837 int64_t cpu_get_ticks(void)
839 if (use_icount) {
840 return cpu_get_icount();
842 if (!cpu_ticks_enabled) {
843 return cpu_ticks_offset;
844 } else {
845 int64_t ticks;
846 ticks = cpu_get_real_ticks();
847 if (cpu_ticks_prev > ticks) {
848 /* Note: non increasing ticks may happen if the host uses
849 software suspend */
850 cpu_ticks_offset += cpu_ticks_prev - ticks;
852 cpu_ticks_prev = ticks;
853 return ticks + cpu_ticks_offset;
857 /* return the host CPU monotonic timer and handle stop/restart */
858 static int64_t cpu_get_clock(void)
860 int64_t ti;
861 if (!cpu_ticks_enabled) {
862 return cpu_clock_offset;
863 } else {
864 ti = get_clock();
865 return ti + cpu_clock_offset;
869 /* enable cpu_get_ticks() */
870 void cpu_enable_ticks(void)
872 if (!cpu_ticks_enabled) {
873 cpu_ticks_offset -= cpu_get_real_ticks();
874 cpu_clock_offset -= get_clock();
875 cpu_ticks_enabled = 1;
879 /* disable cpu_get_ticks() : the clock is stopped. You must not call
880 cpu_get_ticks() after that. */
881 void cpu_disable_ticks(void)
883 if (cpu_ticks_enabled) {
884 cpu_ticks_offset = cpu_get_ticks();
885 cpu_clock_offset = cpu_get_clock();
886 cpu_ticks_enabled = 0;
890 /***********************************************************/
891 /* timers */
893 #define QEMU_TIMER_REALTIME 0
894 #define QEMU_TIMER_VIRTUAL 1
896 struct QEMUClock {
897 int type;
898 /* XXX: add frequency */
901 struct QEMUTimer {
902 QEMUClock *clock;
903 int64_t expire_time;
904 QEMUTimerCB *cb;
905 void *opaque;
906 struct QEMUTimer *next;
909 struct qemu_alarm_timer {
910 char const *name;
911 unsigned int flags;
913 int (*start)(struct qemu_alarm_timer *t);
914 void (*stop)(struct qemu_alarm_timer *t);
915 void (*rearm)(struct qemu_alarm_timer *t);
916 void *priv;
919 #define ALARM_FLAG_DYNTICKS 0x1
920 #define ALARM_FLAG_EXPIRED 0x2
922 static inline int alarm_has_dynticks(struct qemu_alarm_timer *t)
924 return t && (t->flags & ALARM_FLAG_DYNTICKS);
927 static void qemu_rearm_alarm_timer(struct qemu_alarm_timer *t)
929 if (!alarm_has_dynticks(t))
930 return;
932 t->rearm(t);
935 /* TODO: MIN_TIMER_REARM_US should be optimized */
936 #define MIN_TIMER_REARM_US 250
938 static struct qemu_alarm_timer *alarm_timer;
939 #ifndef _WIN32
940 static int alarm_timer_rfd, alarm_timer_wfd;
941 #endif
943 #ifdef _WIN32
945 struct qemu_alarm_win32 {
946 MMRESULT timerId;
947 HANDLE host_alarm;
948 unsigned int period;
949 } alarm_win32_data = {0, NULL, -1};
951 static int win32_start_timer(struct qemu_alarm_timer *t);
952 static void win32_stop_timer(struct qemu_alarm_timer *t);
953 static void win32_rearm_timer(struct qemu_alarm_timer *t);
955 #else
957 static int unix_start_timer(struct qemu_alarm_timer *t);
958 static void unix_stop_timer(struct qemu_alarm_timer *t);
960 #ifdef __linux__
962 static int dynticks_start_timer(struct qemu_alarm_timer *t);
963 static void dynticks_stop_timer(struct qemu_alarm_timer *t);
964 static void dynticks_rearm_timer(struct qemu_alarm_timer *t);
966 static int hpet_start_timer(struct qemu_alarm_timer *t);
967 static void hpet_stop_timer(struct qemu_alarm_timer *t);
969 static int rtc_start_timer(struct qemu_alarm_timer *t);
970 static void rtc_stop_timer(struct qemu_alarm_timer *t);
972 #endif /* __linux__ */
974 #endif /* _WIN32 */
976 /* Correlation between real and virtual time is always going to be
977 fairly approximate, so ignore small variation.
978 When the guest is idle real and virtual time will be aligned in
979 the IO wait loop. */
980 #define ICOUNT_WOBBLE (QEMU_TIMER_BASE / 10)
982 static void icount_adjust(void)
984 int64_t cur_time;
985 int64_t cur_icount;
986 int64_t delta;
987 static int64_t last_delta;
988 /* If the VM is not running, then do nothing. */
989 if (!vm_running)
990 return;
992 cur_time = cpu_get_clock();
993 cur_icount = qemu_get_clock(vm_clock);
994 delta = cur_icount - cur_time;
995 /* FIXME: This is a very crude algorithm, somewhat prone to oscillation. */
996 if (delta > 0
997 && last_delta + ICOUNT_WOBBLE < delta * 2
998 && icount_time_shift > 0) {
999 /* The guest is getting too far ahead. Slow time down. */
1000 icount_time_shift--;
1002 if (delta < 0
1003 && last_delta - ICOUNT_WOBBLE > delta * 2
1004 && icount_time_shift < MAX_ICOUNT_SHIFT) {
1005 /* The guest is getting too far behind. Speed time up. */
1006 icount_time_shift++;
1008 last_delta = delta;
1009 qemu_icount_bias = cur_icount - (qemu_icount << icount_time_shift);
1012 static void icount_adjust_rt(void * opaque)
1014 qemu_mod_timer(icount_rt_timer,
1015 qemu_get_clock(rt_clock) + 1000);
1016 icount_adjust();
1019 static void icount_adjust_vm(void * opaque)
1021 qemu_mod_timer(icount_vm_timer,
1022 qemu_get_clock(vm_clock) + QEMU_TIMER_BASE / 10);
1023 icount_adjust();
1026 static void init_icount_adjust(void)
1028 /* Have both realtime and virtual time triggers for speed adjustment.
1029 The realtime trigger catches emulated time passing too slowly,
1030 the virtual time trigger catches emulated time passing too fast.
1031 Realtime triggers occur even when idle, so use them less frequently
1032 than VM triggers. */
1033 icount_rt_timer = qemu_new_timer(rt_clock, icount_adjust_rt, NULL);
1034 qemu_mod_timer(icount_rt_timer,
1035 qemu_get_clock(rt_clock) + 1000);
1036 icount_vm_timer = qemu_new_timer(vm_clock, icount_adjust_vm, NULL);
1037 qemu_mod_timer(icount_vm_timer,
1038 qemu_get_clock(vm_clock) + QEMU_TIMER_BASE / 10);
1041 static struct qemu_alarm_timer alarm_timers[] = {
1042 #ifndef _WIN32
1043 #ifdef __linux__
1044 {"dynticks", ALARM_FLAG_DYNTICKS, dynticks_start_timer,
1045 dynticks_stop_timer, dynticks_rearm_timer, NULL},
1046 /* HPET - if available - is preferred */
1047 {"hpet", 0, hpet_start_timer, hpet_stop_timer, NULL, NULL},
1048 /* ...otherwise try RTC */
1049 {"rtc", 0, rtc_start_timer, rtc_stop_timer, NULL, NULL},
1050 #endif
1051 {"unix", 0, unix_start_timer, unix_stop_timer, NULL, NULL},
1052 #else
1053 {"dynticks", ALARM_FLAG_DYNTICKS, win32_start_timer,
1054 win32_stop_timer, win32_rearm_timer, &alarm_win32_data},
1055 {"win32", 0, win32_start_timer,
1056 win32_stop_timer, NULL, &alarm_win32_data},
1057 #endif
1058 {NULL, }
1061 static void show_available_alarms(void)
1063 int i;
1065 printf("Available alarm timers, in order of precedence:\n");
1066 for (i = 0; alarm_timers[i].name; i++)
1067 printf("%s\n", alarm_timers[i].name);
1070 static void configure_alarms(char const *opt)
1072 int i;
1073 int cur = 0;
1074 int count = ARRAY_SIZE(alarm_timers) - 1;
1075 char *arg;
1076 char *name;
1077 struct qemu_alarm_timer tmp;
1079 if (!strcmp(opt, "?")) {
1080 show_available_alarms();
1081 exit(0);
1084 arg = strdup(opt);
1086 /* Reorder the array */
1087 name = strtok(arg, ",");
1088 while (name) {
1089 for (i = 0; i < count && alarm_timers[i].name; i++) {
1090 if (!strcmp(alarm_timers[i].name, name))
1091 break;
1094 if (i == count) {
1095 fprintf(stderr, "Unknown clock %s\n", name);
1096 goto next;
1099 if (i < cur)
1100 /* Ignore */
1101 goto next;
1103 /* Swap */
1104 tmp = alarm_timers[i];
1105 alarm_timers[i] = alarm_timers[cur];
1106 alarm_timers[cur] = tmp;
1108 cur++;
1109 next:
1110 name = strtok(NULL, ",");
1113 free(arg);
1115 if (cur) {
1116 /* Disable remaining timers */
1117 for (i = cur; i < count; i++)
1118 alarm_timers[i].name = NULL;
1119 } else {
1120 show_available_alarms();
1121 exit(1);
1125 QEMUClock *rt_clock;
1126 QEMUClock *vm_clock;
1128 static QEMUTimer *active_timers[2];
1130 static QEMUClock *qemu_new_clock(int type)
1132 QEMUClock *clock;
1133 clock = qemu_mallocz(sizeof(QEMUClock));
1134 clock->type = type;
1135 return clock;
1138 QEMUTimer *qemu_new_timer(QEMUClock *clock, QEMUTimerCB *cb, void *opaque)
1140 QEMUTimer *ts;
1142 ts = qemu_mallocz(sizeof(QEMUTimer));
1143 ts->clock = clock;
1144 ts->cb = cb;
1145 ts->opaque = opaque;
1146 return ts;
1149 void qemu_free_timer(QEMUTimer *ts)
1151 qemu_free(ts);
1154 /* stop a timer, but do not dealloc it */
1155 void qemu_del_timer(QEMUTimer *ts)
1157 QEMUTimer **pt, *t;
1159 /* NOTE: this code must be signal safe because
1160 qemu_timer_expired() can be called from a signal. */
1161 pt = &active_timers[ts->clock->type];
1162 for(;;) {
1163 t = *pt;
1164 if (!t)
1165 break;
1166 if (t == ts) {
1167 *pt = t->next;
1168 break;
1170 pt = &t->next;
1174 /* modify the current timer so that it will be fired when current_time
1175 >= expire_time. The corresponding callback will be called. */
1176 void qemu_mod_timer(QEMUTimer *ts, int64_t expire_time)
1178 QEMUTimer **pt, *t;
1180 qemu_del_timer(ts);
1182 /* add the timer in the sorted list */
1183 /* NOTE: this code must be signal safe because
1184 qemu_timer_expired() can be called from a signal. */
1185 pt = &active_timers[ts->clock->type];
1186 for(;;) {
1187 t = *pt;
1188 if (!t)
1189 break;
1190 if (t->expire_time > expire_time)
1191 break;
1192 pt = &t->next;
1194 ts->expire_time = expire_time;
1195 ts->next = *pt;
1196 *pt = ts;
1198 /* Rearm if necessary */
1199 if (pt == &active_timers[ts->clock->type]) {
1200 if ((alarm_timer->flags & ALARM_FLAG_EXPIRED) == 0) {
1201 qemu_rearm_alarm_timer(alarm_timer);
1203 /* Interrupt execution to force deadline recalculation. */
1204 if (use_icount && cpu_single_env) {
1205 cpu_interrupt(cpu_single_env, CPU_INTERRUPT_EXIT);
1210 int qemu_timer_pending(QEMUTimer *ts)
1212 QEMUTimer *t;
1213 for(t = active_timers[ts->clock->type]; t != NULL; t = t->next) {
1214 if (t == ts)
1215 return 1;
1217 return 0;
1220 static inline int qemu_timer_expired(QEMUTimer *timer_head, int64_t current_time)
1222 if (!timer_head)
1223 return 0;
1224 return (timer_head->expire_time <= current_time);
1227 static void qemu_run_timers(QEMUTimer **ptimer_head, int64_t current_time)
1229 QEMUTimer *ts;
1231 for(;;) {
1232 ts = *ptimer_head;
1233 if (!ts || ts->expire_time > current_time)
1234 break;
1235 /* remove timer from the list before calling the callback */
1236 *ptimer_head = ts->next;
1237 ts->next = NULL;
1239 /* run the callback (the timer list can be modified) */
1240 ts->cb(ts->opaque);
1244 int64_t qemu_get_clock(QEMUClock *clock)
1246 switch(clock->type) {
1247 case QEMU_TIMER_REALTIME:
1248 return get_clock() / 1000000;
1249 default:
1250 case QEMU_TIMER_VIRTUAL:
1251 if (use_icount) {
1252 return cpu_get_icount();
1253 } else {
1254 return cpu_get_clock();
1259 static void init_timers(void)
1261 init_get_clock();
1262 ticks_per_sec = QEMU_TIMER_BASE;
1263 rt_clock = qemu_new_clock(QEMU_TIMER_REALTIME);
1264 vm_clock = qemu_new_clock(QEMU_TIMER_VIRTUAL);
1267 /* save a timer */
1268 void qemu_put_timer(QEMUFile *f, QEMUTimer *ts)
1270 uint64_t expire_time;
1272 if (qemu_timer_pending(ts)) {
1273 expire_time = ts->expire_time;
1274 } else {
1275 expire_time = -1;
1277 qemu_put_be64(f, expire_time);
1280 void qemu_get_timer(QEMUFile *f, QEMUTimer *ts)
1282 uint64_t expire_time;
1284 expire_time = qemu_get_be64(f);
1285 if (expire_time != -1) {
1286 qemu_mod_timer(ts, expire_time);
1287 } else {
1288 qemu_del_timer(ts);
1292 static void timer_save(QEMUFile *f, void *opaque)
1294 if (cpu_ticks_enabled) {
1295 hw_error("cannot save state if virtual timers are running");
1297 qemu_put_be64(f, cpu_ticks_offset);
1298 qemu_put_be64(f, ticks_per_sec);
1299 qemu_put_be64(f, cpu_clock_offset);
1302 static int timer_load(QEMUFile *f, void *opaque, int version_id)
1304 if (version_id != 1 && version_id != 2)
1305 return -EINVAL;
1306 if (cpu_ticks_enabled) {
1307 return -EINVAL;
1309 cpu_ticks_offset=qemu_get_be64(f);
1310 ticks_per_sec=qemu_get_be64(f);
1311 if (version_id == 2) {
1312 cpu_clock_offset=qemu_get_be64(f);
1314 return 0;
1317 #ifdef _WIN32
1318 void CALLBACK host_alarm_handler(UINT uTimerID, UINT uMsg,
1319 DWORD_PTR dwUser, DWORD_PTR dw1, DWORD_PTR dw2)
1320 #else
1321 static void host_alarm_handler(int host_signum)
1322 #endif
1324 #if 0
1325 #define DISP_FREQ 1000
1327 static int64_t delta_min = INT64_MAX;
1328 static int64_t delta_max, delta_cum, last_clock, delta, ti;
1329 static int count;
1330 ti = qemu_get_clock(vm_clock);
1331 if (last_clock != 0) {
1332 delta = ti - last_clock;
1333 if (delta < delta_min)
1334 delta_min = delta;
1335 if (delta > delta_max)
1336 delta_max = delta;
1337 delta_cum += delta;
1338 if (++count == DISP_FREQ) {
1339 printf("timer: min=%" PRId64 " us max=%" PRId64 " us avg=%" PRId64 " us avg_freq=%0.3f Hz\n",
1340 muldiv64(delta_min, 1000000, ticks_per_sec),
1341 muldiv64(delta_max, 1000000, ticks_per_sec),
1342 muldiv64(delta_cum, 1000000 / DISP_FREQ, ticks_per_sec),
1343 (double)ticks_per_sec / ((double)delta_cum / DISP_FREQ));
1344 count = 0;
1345 delta_min = INT64_MAX;
1346 delta_max = 0;
1347 delta_cum = 0;
1350 last_clock = ti;
1352 #endif
1353 if (1 ||
1354 alarm_has_dynticks(alarm_timer) ||
1355 (!use_icount &&
1356 qemu_timer_expired(active_timers[QEMU_TIMER_VIRTUAL],
1357 qemu_get_clock(vm_clock))) ||
1358 qemu_timer_expired(active_timers[QEMU_TIMER_REALTIME],
1359 qemu_get_clock(rt_clock))) {
1360 CPUState *env = next_cpu;
1362 #ifdef _WIN32
1363 struct qemu_alarm_win32 *data = ((struct qemu_alarm_timer*)dwUser)->priv;
1364 SetEvent(data->host_alarm);
1365 #else
1366 static const char byte = 0;
1367 write(alarm_timer_wfd, &byte, sizeof(byte));
1368 #endif
1369 if (alarm_timer) alarm_timer->flags |= ALARM_FLAG_EXPIRED;
1371 if (env) {
1372 /* stop the currently executing cpu because a timer occured */
1373 cpu_interrupt(env, CPU_INTERRUPT_EXIT);
1374 #ifdef USE_KQEMU
1375 if (env->kqemu_enabled) {
1376 kqemu_cpu_interrupt(env);
1378 #endif
1380 event_pending = 1;
1384 static int64_t qemu_next_deadline(void)
1386 int64_t delta;
1388 if (active_timers[QEMU_TIMER_VIRTUAL]) {
1389 delta = active_timers[QEMU_TIMER_VIRTUAL]->expire_time -
1390 qemu_get_clock(vm_clock);
1391 } else {
1392 /* To avoid problems with overflow limit this to 2^32. */
1393 delta = INT32_MAX;
1396 if (delta < 0)
1397 delta = 0;
1399 return delta;
1402 #if defined(__linux__) || defined(_WIN32)
1403 static uint64_t qemu_next_deadline_dyntick(void)
1405 int64_t delta;
1406 int64_t rtdelta;
1408 if (use_icount)
1409 delta = INT32_MAX;
1410 else
1411 delta = (qemu_next_deadline() + 999) / 1000;
1413 if (active_timers[QEMU_TIMER_REALTIME]) {
1414 rtdelta = (active_timers[QEMU_TIMER_REALTIME]->expire_time -
1415 qemu_get_clock(rt_clock))*1000;
1416 if (rtdelta < delta)
1417 delta = rtdelta;
1420 if (delta < MIN_TIMER_REARM_US)
1421 delta = MIN_TIMER_REARM_US;
1423 return delta;
1425 #endif
1427 #ifndef _WIN32
1429 /* Sets a specific flag */
1430 static int fcntl_setfl(int fd, int flag)
1432 int flags;
1434 flags = fcntl(fd, F_GETFL);
1435 if (flags == -1)
1436 return -errno;
1438 if (fcntl(fd, F_SETFL, flags | flag) == -1)
1439 return -errno;
1441 return 0;
1444 #if defined(__linux__)
1446 #define RTC_FREQ 1024
1448 static void enable_sigio_timer(int fd)
1450 struct sigaction act;
1452 /* timer signal */
1453 sigfillset(&act.sa_mask);
1454 act.sa_flags = 0;
1455 act.sa_handler = host_alarm_handler;
1457 sigaction(SIGIO, &act, NULL);
1458 fcntl_setfl(fd, O_ASYNC);
1459 fcntl(fd, F_SETOWN, getpid());
1462 static int hpet_start_timer(struct qemu_alarm_timer *t)
1464 struct hpet_info info;
1465 int r, fd;
1467 fd = open("/dev/hpet", O_RDONLY);
1468 if (fd < 0)
1469 return -1;
1471 /* Set frequency */
1472 r = ioctl(fd, HPET_IRQFREQ, RTC_FREQ);
1473 if (r < 0) {
1474 fprintf(stderr, "Could not configure '/dev/hpet' to have a 1024Hz timer. This is not a fatal\n"
1475 "error, but for better emulation accuracy type:\n"
1476 "'echo 1024 > /proc/sys/dev/hpet/max-user-freq' as root.\n");
1477 goto fail;
1480 /* Check capabilities */
1481 r = ioctl(fd, HPET_INFO, &info);
1482 if (r < 0)
1483 goto fail;
1485 /* Enable periodic mode */
1486 r = ioctl(fd, HPET_EPI, 0);
1487 if (info.hi_flags && (r < 0))
1488 goto fail;
1490 /* Enable interrupt */
1491 r = ioctl(fd, HPET_IE_ON, 0);
1492 if (r < 0)
1493 goto fail;
1495 enable_sigio_timer(fd);
1496 t->priv = (void *)(long)fd;
1498 return 0;
1499 fail:
1500 close(fd);
1501 return -1;
1504 static void hpet_stop_timer(struct qemu_alarm_timer *t)
1506 int fd = (long)t->priv;
1508 close(fd);
1511 static int rtc_start_timer(struct qemu_alarm_timer *t)
1513 int rtc_fd;
1514 unsigned long current_rtc_freq = 0;
1516 TFR(rtc_fd = open("/dev/rtc", O_RDONLY));
1517 if (rtc_fd < 0)
1518 return -1;
1519 ioctl(rtc_fd, RTC_IRQP_READ, &current_rtc_freq);
1520 if (current_rtc_freq != RTC_FREQ &&
1521 ioctl(rtc_fd, RTC_IRQP_SET, RTC_FREQ) < 0) {
1522 fprintf(stderr, "Could not configure '/dev/rtc' to have a 1024 Hz timer. This is not a fatal\n"
1523 "error, but for better emulation accuracy either use a 2.6 host Linux kernel or\n"
1524 "type 'echo 1024 > /proc/sys/dev/rtc/max-user-freq' as root.\n");
1525 goto fail;
1527 if (ioctl(rtc_fd, RTC_PIE_ON, 0) < 0) {
1528 fail:
1529 close(rtc_fd);
1530 return -1;
1533 enable_sigio_timer(rtc_fd);
1535 t->priv = (void *)(long)rtc_fd;
1537 return 0;
1540 static void rtc_stop_timer(struct qemu_alarm_timer *t)
1542 int rtc_fd = (long)t->priv;
1544 close(rtc_fd);
1547 static int dynticks_start_timer(struct qemu_alarm_timer *t)
1549 struct sigevent ev;
1550 timer_t host_timer;
1551 struct sigaction act;
1553 sigfillset(&act.sa_mask);
1554 act.sa_flags = 0;
1555 act.sa_handler = host_alarm_handler;
1557 sigaction(SIGALRM, &act, NULL);
1560 * Initialize ev struct to 0 to avoid valgrind complaining
1561 * about uninitialized data in timer_create call
1563 memset(&ev, 0, sizeof(ev));
1564 ev.sigev_value.sival_int = 0;
1565 ev.sigev_notify = SIGEV_SIGNAL;
1566 ev.sigev_signo = SIGALRM;
1568 if (timer_create(CLOCK_REALTIME, &ev, &host_timer)) {
1569 perror("timer_create");
1571 /* disable dynticks */
1572 fprintf(stderr, "Dynamic Ticks disabled\n");
1574 return -1;
1577 t->priv = (void *)(long)host_timer;
1579 return 0;
1582 static void dynticks_stop_timer(struct qemu_alarm_timer *t)
1584 timer_t host_timer = (timer_t)(long)t->priv;
1586 timer_delete(host_timer);
1589 static void dynticks_rearm_timer(struct qemu_alarm_timer *t)
1591 timer_t host_timer = (timer_t)(long)t->priv;
1592 struct itimerspec timeout;
1593 int64_t nearest_delta_us = INT64_MAX;
1594 int64_t current_us;
1596 if (!active_timers[QEMU_TIMER_REALTIME] &&
1597 !active_timers[QEMU_TIMER_VIRTUAL])
1598 return;
1600 nearest_delta_us = qemu_next_deadline_dyntick();
1602 /* check whether a timer is already running */
1603 if (timer_gettime(host_timer, &timeout)) {
1604 perror("gettime");
1605 fprintf(stderr, "Internal timer error: aborting\n");
1606 exit(1);
1608 current_us = timeout.it_value.tv_sec * 1000000 + timeout.it_value.tv_nsec/1000;
1609 if (current_us && current_us <= nearest_delta_us)
1610 return;
1612 timeout.it_interval.tv_sec = 0;
1613 timeout.it_interval.tv_nsec = 0; /* 0 for one-shot timer */
1614 timeout.it_value.tv_sec = nearest_delta_us / 1000000;
1615 timeout.it_value.tv_nsec = (nearest_delta_us % 1000000) * 1000;
1616 if (timer_settime(host_timer, 0 /* RELATIVE */, &timeout, NULL)) {
1617 perror("settime");
1618 fprintf(stderr, "Internal timer error: aborting\n");
1619 exit(1);
1623 #endif /* defined(__linux__) */
1625 static int unix_start_timer(struct qemu_alarm_timer *t)
1627 struct sigaction act;
1628 struct itimerval itv;
1629 int err;
1631 /* timer signal */
1632 sigfillset(&act.sa_mask);
1633 act.sa_flags = 0;
1634 act.sa_handler = host_alarm_handler;
1636 sigaction(SIGALRM, &act, NULL);
1638 itv.it_interval.tv_sec = 0;
1639 /* for i386 kernel 2.6 to get 1 ms */
1640 itv.it_interval.tv_usec = 999;
1641 itv.it_value.tv_sec = 0;
1642 itv.it_value.tv_usec = 10 * 1000;
1644 err = setitimer(ITIMER_REAL, &itv, NULL);
1645 if (err)
1646 return -1;
1648 return 0;
1651 static void unix_stop_timer(struct qemu_alarm_timer *t)
1653 struct itimerval itv;
1655 memset(&itv, 0, sizeof(itv));
1656 setitimer(ITIMER_REAL, &itv, NULL);
1659 #endif /* !defined(_WIN32) */
1661 static void try_to_rearm_timer(void *opaque)
1663 struct qemu_alarm_timer *t = opaque;
1664 #ifndef _WIN32
1665 ssize_t len;
1667 /* Drain the notify pipe */
1668 do {
1669 char buffer[512];
1670 len = read(alarm_timer_rfd, buffer, sizeof(buffer));
1671 } while ((len == -1 && errno == EINTR) || len > 0);
1672 #endif
1674 if (t->flags & ALARM_FLAG_EXPIRED) {
1675 alarm_timer->flags &= ~ALARM_FLAG_EXPIRED;
1676 qemu_rearm_alarm_timer(alarm_timer);
1680 #ifdef _WIN32
1682 static int win32_start_timer(struct qemu_alarm_timer *t)
1684 TIMECAPS tc;
1685 struct qemu_alarm_win32 *data = t->priv;
1686 UINT flags;
1688 data->host_alarm = CreateEvent(NULL, FALSE, FALSE, NULL);
1689 if (!data->host_alarm) {
1690 perror("Failed CreateEvent");
1691 return -1;
1694 memset(&tc, 0, sizeof(tc));
1695 timeGetDevCaps(&tc, sizeof(tc));
1697 if (data->period < tc.wPeriodMin)
1698 data->period = tc.wPeriodMin;
1700 timeBeginPeriod(data->period);
1702 flags = TIME_CALLBACK_FUNCTION;
1703 if (alarm_has_dynticks(t))
1704 flags |= TIME_ONESHOT;
1705 else
1706 flags |= TIME_PERIODIC;
1708 data->timerId = timeSetEvent(1, // interval (ms)
1709 data->period, // resolution
1710 host_alarm_handler, // function
1711 (DWORD)t, // parameter
1712 flags);
1714 if (!data->timerId) {
1715 perror("Failed to initialize win32 alarm timer");
1717 timeEndPeriod(data->period);
1718 CloseHandle(data->host_alarm);
1719 return -1;
1722 qemu_add_wait_object(data->host_alarm, try_to_rearm_timer, t);
1724 return 0;
1727 static void win32_stop_timer(struct qemu_alarm_timer *t)
1729 struct qemu_alarm_win32 *data = t->priv;
1731 timeKillEvent(data->timerId);
1732 timeEndPeriod(data->period);
1734 CloseHandle(data->host_alarm);
1737 static void win32_rearm_timer(struct qemu_alarm_timer *t)
1739 struct qemu_alarm_win32 *data = t->priv;
1740 uint64_t nearest_delta_us;
1742 if (!active_timers[QEMU_TIMER_REALTIME] &&
1743 !active_timers[QEMU_TIMER_VIRTUAL])
1744 return;
1746 nearest_delta_us = qemu_next_deadline_dyntick();
1747 nearest_delta_us /= 1000;
1749 timeKillEvent(data->timerId);
1751 data->timerId = timeSetEvent(1,
1752 data->period,
1753 host_alarm_handler,
1754 (DWORD)t,
1755 TIME_ONESHOT | TIME_PERIODIC);
1757 if (!data->timerId) {
1758 perror("Failed to re-arm win32 alarm timer");
1760 timeEndPeriod(data->period);
1761 CloseHandle(data->host_alarm);
1762 exit(1);
1766 #endif /* _WIN32 */
1768 static int init_timer_alarm(void)
1770 struct qemu_alarm_timer *t = NULL;
1771 int i, err = -1;
1773 #ifndef _WIN32
1774 int fds[2];
1776 err = pipe(fds);
1777 if (err == -1)
1778 return -errno;
1780 err = fcntl_setfl(fds[0], O_NONBLOCK);
1781 if (err < 0)
1782 goto fail;
1784 err = fcntl_setfl(fds[1], O_NONBLOCK);
1785 if (err < 0)
1786 goto fail;
1788 alarm_timer_rfd = fds[0];
1789 alarm_timer_wfd = fds[1];
1790 #endif
1792 for (i = 0; alarm_timers[i].name; i++) {
1793 t = &alarm_timers[i];
1795 err = t->start(t);
1796 if (!err)
1797 break;
1800 if (err) {
1801 err = -ENOENT;
1802 goto fail;
1805 #ifndef _WIN32
1806 qemu_set_fd_handler2(alarm_timer_rfd, NULL,
1807 try_to_rearm_timer, NULL, t);
1808 #endif
1810 alarm_timer = t;
1812 return 0;
1814 fail:
1815 #ifndef _WIN32
1816 close(fds[0]);
1817 close(fds[1]);
1818 #endif
1819 return err;
1822 static void quit_timers(void)
1824 alarm_timer->stop(alarm_timer);
1825 alarm_timer = NULL;
1828 /***********************************************************/
1829 /* host time/date access */
1830 void qemu_get_timedate(struct tm *tm, int offset)
1832 time_t ti;
1833 struct tm *ret;
1835 time(&ti);
1836 ti += offset;
1837 if (rtc_date_offset == -1) {
1838 if (rtc_utc)
1839 ret = gmtime(&ti);
1840 else
1841 ret = localtime(&ti);
1842 } else {
1843 ti -= rtc_date_offset;
1844 ret = gmtime(&ti);
1847 memcpy(tm, ret, sizeof(struct tm));
1850 int qemu_timedate_diff(struct tm *tm)
1852 time_t seconds;
1854 if (rtc_date_offset == -1)
1855 if (rtc_utc)
1856 seconds = mktimegm(tm);
1857 else
1858 seconds = mktime(tm);
1859 else
1860 seconds = mktimegm(tm) + rtc_date_offset;
1862 return seconds - time(NULL);
1865 #ifdef _WIN32
1866 static void socket_cleanup(void)
1868 WSACleanup();
1871 static int socket_init(void)
1873 WSADATA Data;
1874 int ret, err;
1876 ret = WSAStartup(MAKEWORD(2,2), &Data);
1877 if (ret != 0) {
1878 err = WSAGetLastError();
1879 fprintf(stderr, "WSAStartup: %d\n", err);
1880 return -1;
1882 atexit(socket_cleanup);
1883 return 0;
1885 #endif
1887 const char *get_opt_name(char *buf, int buf_size, const char *p)
1889 char *q;
1891 q = buf;
1892 while (*p != '\0' && *p != '=') {
1893 if (q && (q - buf) < buf_size - 1)
1894 *q++ = *p;
1895 p++;
1897 if (q)
1898 *q = '\0';
1900 return p;
1903 const char *get_opt_value(char *buf, int buf_size, const char *p)
1905 char *q;
1907 q = buf;
1908 while (*p != '\0') {
1909 if (*p == ',') {
1910 if (*(p + 1) != ',')
1911 break;
1912 p++;
1914 if (q && (q - buf) < buf_size - 1)
1915 *q++ = *p;
1916 p++;
1918 if (q)
1919 *q = '\0';
1921 return p;
1924 int get_param_value(char *buf, int buf_size,
1925 const char *tag, const char *str)
1927 const char *p;
1928 char option[128];
1930 p = str;
1931 for(;;) {
1932 p = get_opt_name(option, sizeof(option), p);
1933 if (*p != '=')
1934 break;
1935 p++;
1936 if (!strcmp(tag, option)) {
1937 (void)get_opt_value(buf, buf_size, p);
1938 return strlen(buf);
1939 } else {
1940 p = get_opt_value(NULL, 0, p);
1942 if (*p != ',')
1943 break;
1944 p++;
1946 return 0;
1949 int check_params(char *buf, int buf_size,
1950 const char * const *params, const char *str)
1952 const char *p;
1953 int i;
1955 p = str;
1956 for(;;) {
1957 p = get_opt_name(buf, buf_size, p);
1958 if (*p != '=')
1959 return -1;
1960 p++;
1961 for(i = 0; params[i] != NULL; i++)
1962 if (!strcmp(params[i], buf))
1963 break;
1964 if (params[i] == NULL)
1965 return -1;
1966 p = get_opt_value(NULL, 0, p);
1967 if (*p != ',')
1968 break;
1969 p++;
1971 return 0;
1974 /***********************************************************/
1975 /* Bluetooth support */
1976 static int nb_hcis;
1977 static int cur_hci;
1978 static struct HCIInfo *hci_table[MAX_NICS];
1980 static struct bt_vlan_s {
1981 struct bt_scatternet_s net;
1982 int id;
1983 struct bt_vlan_s *next;
1984 } *first_bt_vlan;
1986 /* find or alloc a new bluetooth "VLAN" */
1987 static struct bt_scatternet_s *qemu_find_bt_vlan(int id)
1989 struct bt_vlan_s **pvlan, *vlan;
1990 for (vlan = first_bt_vlan; vlan != NULL; vlan = vlan->next) {
1991 if (vlan->id == id)
1992 return &vlan->net;
1994 vlan = qemu_mallocz(sizeof(struct bt_vlan_s));
1995 vlan->id = id;
1996 pvlan = &first_bt_vlan;
1997 while (*pvlan != NULL)
1998 pvlan = &(*pvlan)->next;
1999 *pvlan = vlan;
2000 return &vlan->net;
2003 static void null_hci_send(struct HCIInfo *hci, const uint8_t *data, int len)
2007 static int null_hci_addr_set(struct HCIInfo *hci, const uint8_t *bd_addr)
2009 return -ENOTSUP;
2012 static struct HCIInfo null_hci = {
2013 .cmd_send = null_hci_send,
2014 .sco_send = null_hci_send,
2015 .acl_send = null_hci_send,
2016 .bdaddr_set = null_hci_addr_set,
2019 struct HCIInfo *qemu_next_hci(void)
2021 if (cur_hci == nb_hcis)
2022 return &null_hci;
2024 return hci_table[cur_hci++];
2027 static struct HCIInfo *hci_init(const char *str)
2029 char *endp;
2030 struct bt_scatternet_s *vlan = 0;
2032 if (!strcmp(str, "null"))
2033 /* null */
2034 return &null_hci;
2035 else if (!strncmp(str, "host", 4) && (str[4] == '\0' || str[4] == ':'))
2036 /* host[:hciN] */
2037 return bt_host_hci(str[4] ? str + 5 : "hci0");
2038 else if (!strncmp(str, "hci", 3)) {
2039 /* hci[,vlan=n] */
2040 if (str[3]) {
2041 if (!strncmp(str + 3, ",vlan=", 6)) {
2042 vlan = qemu_find_bt_vlan(strtol(str + 9, &endp, 0));
2043 if (*endp)
2044 vlan = 0;
2046 } else
2047 vlan = qemu_find_bt_vlan(0);
2048 if (vlan)
2049 return bt_new_hci(vlan);
2052 fprintf(stderr, "qemu: Unknown bluetooth HCI `%s'.\n", str);
2054 return 0;
2057 static int bt_hci_parse(const char *str)
2059 struct HCIInfo *hci;
2060 bdaddr_t bdaddr;
2062 if (nb_hcis >= MAX_NICS) {
2063 fprintf(stderr, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS);
2064 return -1;
2067 hci = hci_init(str);
2068 if (!hci)
2069 return -1;
2071 bdaddr.b[0] = 0x52;
2072 bdaddr.b[1] = 0x54;
2073 bdaddr.b[2] = 0x00;
2074 bdaddr.b[3] = 0x12;
2075 bdaddr.b[4] = 0x34;
2076 bdaddr.b[5] = 0x56 + nb_hcis;
2077 hci->bdaddr_set(hci, bdaddr.b);
2079 hci_table[nb_hcis++] = hci;
2081 return 0;
2084 static void bt_vhci_add(int vlan_id)
2086 struct bt_scatternet_s *vlan = qemu_find_bt_vlan(vlan_id);
2088 if (!vlan->slave)
2089 fprintf(stderr, "qemu: warning: adding a VHCI to "
2090 "an empty scatternet %i\n", vlan_id);
2092 bt_vhci_init(bt_new_hci(vlan));
2095 static struct bt_device_s *bt_device_add(const char *opt)
2097 struct bt_scatternet_s *vlan;
2098 int vlan_id = 0;
2099 char *endp = strstr(opt, ",vlan=");
2100 int len = (endp ? endp - opt : strlen(opt)) + 1;
2101 char devname[10];
2103 pstrcpy(devname, MIN(sizeof(devname), len), opt);
2105 if (endp) {
2106 vlan_id = strtol(endp + 6, &endp, 0);
2107 if (*endp) {
2108 fprintf(stderr, "qemu: unrecognised bluetooth vlan Id\n");
2109 return 0;
2113 vlan = qemu_find_bt_vlan(vlan_id);
2115 if (!vlan->slave)
2116 fprintf(stderr, "qemu: warning: adding a slave device to "
2117 "an empty scatternet %i\n", vlan_id);
2119 if (!strcmp(devname, "keyboard"))
2120 return bt_keyboard_init(vlan);
2122 fprintf(stderr, "qemu: unsupported bluetooth device `%s'\n", devname);
2123 return 0;
2126 static int bt_parse(const char *opt)
2128 const char *endp, *p;
2129 int vlan;
2131 if (strstart(opt, "hci", &endp)) {
2132 if (!*endp || *endp == ',') {
2133 if (*endp)
2134 if (!strstart(endp, ",vlan=", 0))
2135 opt = endp + 1;
2137 return bt_hci_parse(opt);
2139 } else if (strstart(opt, "vhci", &endp)) {
2140 if (!*endp || *endp == ',') {
2141 if (*endp) {
2142 if (strstart(endp, ",vlan=", &p)) {
2143 vlan = strtol(p, (char **) &endp, 0);
2144 if (*endp) {
2145 fprintf(stderr, "qemu: bad scatternet '%s'\n", p);
2146 return 1;
2148 } else {
2149 fprintf(stderr, "qemu: bad parameter '%s'\n", endp + 1);
2150 return 1;
2152 } else
2153 vlan = 0;
2155 bt_vhci_add(vlan);
2156 return 0;
2158 } else if (strstart(opt, "device:", &endp))
2159 return !bt_device_add(endp);
2161 fprintf(stderr, "qemu: bad bluetooth parameter '%s'\n", opt);
2162 return 1;
2165 /***********************************************************/
2166 /* QEMU Block devices */
2168 #define HD_ALIAS "index=%d,media=disk"
2169 #ifdef TARGET_PPC
2170 #define CDROM_ALIAS "index=1,media=cdrom"
2171 #else
2172 #define CDROM_ALIAS "index=2,media=cdrom"
2173 #endif
2174 #define FD_ALIAS "index=%d,if=floppy"
2175 #define PFLASH_ALIAS "if=pflash"
2176 #define MTD_ALIAS "if=mtd"
2177 #define SD_ALIAS "index=0,if=sd"
2179 static int drive_opt_get_free_idx(void)
2181 int index;
2183 for (index = 0; index < MAX_DRIVES; index++)
2184 if (!drives_opt[index].used) {
2185 drives_opt[index].used = 1;
2186 return index;
2189 return -1;
2192 static int drive_get_free_idx(void)
2194 int index;
2196 for (index = 0; index < MAX_DRIVES; index++)
2197 if (!drives_table[index].used) {
2198 drives_table[index].used = 1;
2199 return index;
2202 return -1;
2205 int drive_add(const char *file, const char *fmt, ...)
2207 va_list ap;
2208 int index = drive_opt_get_free_idx();
2210 if (nb_drives_opt >= MAX_DRIVES || index == -1) {
2211 fprintf(stderr, "qemu: too many drives\n");
2212 return -1;
2215 drives_opt[index].file = file;
2216 va_start(ap, fmt);
2217 vsnprintf(drives_opt[index].opt,
2218 sizeof(drives_opt[0].opt), fmt, ap);
2219 va_end(ap);
2221 nb_drives_opt++;
2222 return index;
2225 void drive_remove(int index)
2227 drives_opt[index].used = 0;
2228 nb_drives_opt--;
2231 int drive_get_index(BlockInterfaceType type, int bus, int unit)
2233 int index;
2235 /* seek interface, bus and unit */
2237 for (index = 0; index < MAX_DRIVES; index++)
2238 if (drives_table[index].type == type &&
2239 drives_table[index].bus == bus &&
2240 drives_table[index].unit == unit &&
2241 drives_table[index].used)
2242 return index;
2244 return -1;
2247 int drive_get_max_bus(BlockInterfaceType type)
2249 int max_bus;
2250 int index;
2252 max_bus = -1;
2253 for (index = 0; index < nb_drives; index++) {
2254 if(drives_table[index].type == type &&
2255 drives_table[index].bus > max_bus)
2256 max_bus = drives_table[index].bus;
2258 return max_bus;
2261 const char *drive_get_serial(BlockDriverState *bdrv)
2263 int index;
2265 for (index = 0; index < nb_drives; index++)
2266 if (drives_table[index].bdrv == bdrv)
2267 return drives_table[index].serial;
2269 return "\0";
2272 BlockInterfaceErrorAction drive_get_onerror(BlockDriverState *bdrv)
2274 int index;
2276 for (index = 0; index < nb_drives; index++)
2277 if (drives_table[index].bdrv == bdrv)
2278 return drives_table[index].onerror;
2280 return BLOCK_ERR_STOP_ENOSPC;
2283 static void bdrv_format_print(void *opaque, const char *name)
2285 fprintf(stderr, " %s", name);
2288 void drive_uninit(BlockDriverState *bdrv)
2290 int i;
2292 for (i = 0; i < MAX_DRIVES; i++)
2293 if (drives_table[i].bdrv == bdrv) {
2294 drives_table[i].bdrv = NULL;
2295 drives_table[i].used = 0;
2296 drive_remove(drives_table[i].drive_opt_idx);
2297 nb_drives--;
2298 break;
2302 int drive_init(struct drive_opt *arg, int snapshot, void *opaque)
2304 char buf[128];
2305 char file[1024];
2306 char devname[128];
2307 char serial[21];
2308 const char *mediastr = "";
2309 BlockInterfaceType type;
2310 enum { MEDIA_DISK, MEDIA_CDROM } media;
2311 int bus_id, unit_id;
2312 int cyls, heads, secs, translation;
2313 BlockDriverState *bdrv;
2314 BlockDriver *drv = NULL;
2315 QEMUMachine *machine = opaque;
2316 int max_devs;
2317 int index;
2318 int cache;
2319 int bdrv_flags, onerror;
2320 int drives_table_idx;
2321 char *str = arg->opt;
2322 static const char * const params[] = { "bus", "unit", "if", "index",
2323 "cyls", "heads", "secs", "trans",
2324 "media", "snapshot", "file",
2325 "cache", "format", "serial", "werror",
2326 "boot", NULL };
2328 if (check_params(buf, sizeof(buf), params, str) < 0) {
2329 fprintf(stderr, "qemu: unknown parameter '%s' in '%s'\n",
2330 buf, str);
2331 return -1;
2334 file[0] = 0;
2335 cyls = heads = secs = 0;
2336 bus_id = 0;
2337 unit_id = -1;
2338 translation = BIOS_ATA_TRANSLATION_AUTO;
2339 index = -1;
2340 cache = 3;
2342 if (machine->use_scsi) {
2343 type = IF_SCSI;
2344 max_devs = MAX_SCSI_DEVS;
2345 pstrcpy(devname, sizeof(devname), "scsi");
2346 } else {
2347 type = IF_IDE;
2348 max_devs = MAX_IDE_DEVS;
2349 pstrcpy(devname, sizeof(devname), "ide");
2351 media = MEDIA_DISK;
2353 /* extract parameters */
2355 if (get_param_value(buf, sizeof(buf), "bus", str)) {
2356 bus_id = strtol(buf, NULL, 0);
2357 if (bus_id < 0) {
2358 fprintf(stderr, "qemu: '%s' invalid bus id\n", str);
2359 return -1;
2363 if (get_param_value(buf, sizeof(buf), "unit", str)) {
2364 unit_id = strtol(buf, NULL, 0);
2365 if (unit_id < 0) {
2366 fprintf(stderr, "qemu: '%s' invalid unit id\n", str);
2367 return -1;
2371 if (get_param_value(buf, sizeof(buf), "if", str)) {
2372 pstrcpy(devname, sizeof(devname), buf);
2373 if (!strcmp(buf, "ide")) {
2374 type = IF_IDE;
2375 max_devs = MAX_IDE_DEVS;
2376 } else if (!strcmp(buf, "scsi")) {
2377 type = IF_SCSI;
2378 max_devs = MAX_SCSI_DEVS;
2379 } else if (!strcmp(buf, "floppy")) {
2380 type = IF_FLOPPY;
2381 max_devs = 0;
2382 } else if (!strcmp(buf, "pflash")) {
2383 type = IF_PFLASH;
2384 max_devs = 0;
2385 } else if (!strcmp(buf, "mtd")) {
2386 type = IF_MTD;
2387 max_devs = 0;
2388 } else if (!strcmp(buf, "sd")) {
2389 type = IF_SD;
2390 max_devs = 0;
2391 } else if (!strcmp(buf, "virtio")) {
2392 type = IF_VIRTIO;
2393 max_devs = 0;
2394 } else {
2395 fprintf(stderr, "qemu: '%s' unsupported bus type '%s'\n", str, buf);
2396 return -1;
2400 if (get_param_value(buf, sizeof(buf), "index", str)) {
2401 index = strtol(buf, NULL, 0);
2402 if (index < 0) {
2403 fprintf(stderr, "qemu: '%s' invalid index\n", str);
2404 return -1;
2408 if (get_param_value(buf, sizeof(buf), "cyls", str)) {
2409 cyls = strtol(buf, NULL, 0);
2412 if (get_param_value(buf, sizeof(buf), "heads", str)) {
2413 heads = strtol(buf, NULL, 0);
2416 if (get_param_value(buf, sizeof(buf), "secs", str)) {
2417 secs = strtol(buf, NULL, 0);
2420 if (cyls || heads || secs) {
2421 if (cyls < 1 || cyls > 16383) {
2422 fprintf(stderr, "qemu: '%s' invalid physical cyls number\n", str);
2423 return -1;
2425 if (heads < 1 || heads > 16) {
2426 fprintf(stderr, "qemu: '%s' invalid physical heads number\n", str);
2427 return -1;
2429 if (secs < 1 || secs > 63) {
2430 fprintf(stderr, "qemu: '%s' invalid physical secs number\n", str);
2431 return -1;
2435 if (get_param_value(buf, sizeof(buf), "trans", str)) {
2436 if (!cyls) {
2437 fprintf(stderr,
2438 "qemu: '%s' trans must be used with cyls,heads and secs\n",
2439 str);
2440 return -1;
2442 if (!strcmp(buf, "none"))
2443 translation = BIOS_ATA_TRANSLATION_NONE;
2444 else if (!strcmp(buf, "lba"))
2445 translation = BIOS_ATA_TRANSLATION_LBA;
2446 else if (!strcmp(buf, "auto"))
2447 translation = BIOS_ATA_TRANSLATION_AUTO;
2448 else {
2449 fprintf(stderr, "qemu: '%s' invalid translation type\n", str);
2450 return -1;
2454 if (get_param_value(buf, sizeof(buf), "media", str)) {
2455 if (!strcmp(buf, "disk")) {
2456 media = MEDIA_DISK;
2457 } else if (!strcmp(buf, "cdrom")) {
2458 if (cyls || secs || heads) {
2459 fprintf(stderr,
2460 "qemu: '%s' invalid physical CHS format\n", str);
2461 return -1;
2463 media = MEDIA_CDROM;
2464 } else {
2465 fprintf(stderr, "qemu: '%s' invalid media\n", str);
2466 return -1;
2470 if (get_param_value(buf, sizeof(buf), "snapshot", str)) {
2471 if (!strcmp(buf, "on"))
2472 snapshot = 1;
2473 else if (!strcmp(buf, "off"))
2474 snapshot = 0;
2475 else {
2476 fprintf(stderr, "qemu: '%s' invalid snapshot option\n", str);
2477 return -1;
2481 if (get_param_value(buf, sizeof(buf), "cache", str)) {
2482 if (!strcmp(buf, "off") || !strcmp(buf, "none"))
2483 cache = 0;
2484 else if (!strcmp(buf, "writethrough"))
2485 cache = 1;
2486 else if (!strcmp(buf, "writeback"))
2487 cache = 2;
2488 else {
2489 fprintf(stderr, "qemu: invalid cache option\n");
2490 return -1;
2494 if (get_param_value(buf, sizeof(buf), "format", str)) {
2495 if (strcmp(buf, "?") == 0) {
2496 fprintf(stderr, "qemu: Supported formats:");
2497 bdrv_iterate_format(bdrv_format_print, NULL);
2498 fprintf(stderr, "\n");
2499 return -1;
2501 drv = bdrv_find_format(buf);
2502 if (!drv) {
2503 fprintf(stderr, "qemu: '%s' invalid format\n", buf);
2504 return -1;
2508 if (get_param_value(buf, sizeof(buf), "boot", str)) {
2509 if (!strcmp(buf, "on")) {
2510 if (extboot_drive != -1) {
2511 fprintf(stderr, "qemu: two bootable drives specified\n");
2512 return -1;
2514 extboot_drive = nb_drives;
2515 } else if (strcmp(buf, "off")) {
2516 fprintf(stderr, "qemu: '%s' invalid boot option\n", str);
2517 return -1;
2521 if (arg->file == NULL)
2522 get_param_value(file, sizeof(file), "file", str);
2523 else
2524 pstrcpy(file, sizeof(file), arg->file);
2526 if (!get_param_value(serial, sizeof(serial), "serial", str))
2527 memset(serial, 0, sizeof(serial));
2529 onerror = BLOCK_ERR_STOP_ENOSPC;
2530 if (get_param_value(buf, sizeof(serial), "werror", str)) {
2531 if (type != IF_IDE && type != IF_SCSI && type != IF_VIRTIO) {
2532 fprintf(stderr, "werror is no supported by this format\n");
2533 return -1;
2535 if (!strcmp(buf, "ignore"))
2536 onerror = BLOCK_ERR_IGNORE;
2537 else if (!strcmp(buf, "enospc"))
2538 onerror = BLOCK_ERR_STOP_ENOSPC;
2539 else if (!strcmp(buf, "stop"))
2540 onerror = BLOCK_ERR_STOP_ANY;
2541 else if (!strcmp(buf, "report"))
2542 onerror = BLOCK_ERR_REPORT;
2543 else {
2544 fprintf(stderr, "qemu: '%s' invalid write error action\n", buf);
2545 return -1;
2549 /* compute bus and unit according index */
2551 if (index != -1) {
2552 if (bus_id != 0 || unit_id != -1) {
2553 fprintf(stderr,
2554 "qemu: '%s' index cannot be used with bus and unit\n", str);
2555 return -1;
2557 if (max_devs == 0)
2559 unit_id = index;
2560 bus_id = 0;
2561 } else {
2562 unit_id = index % max_devs;
2563 bus_id = index / max_devs;
2567 /* if user doesn't specify a unit_id,
2568 * try to find the first free
2571 if (unit_id == -1) {
2572 unit_id = 0;
2573 while (drive_get_index(type, bus_id, unit_id) != -1) {
2574 unit_id++;
2575 if (max_devs && unit_id >= max_devs) {
2576 unit_id -= max_devs;
2577 bus_id++;
2582 /* check unit id */
2584 if (max_devs && unit_id >= max_devs) {
2585 fprintf(stderr, "qemu: '%s' unit %d too big (max is %d)\n",
2586 str, unit_id, max_devs - 1);
2587 return -1;
2591 * ignore multiple definitions
2594 if (drive_get_index(type, bus_id, unit_id) != -1)
2595 return -2;
2597 /* init */
2599 if (type == IF_IDE || type == IF_SCSI)
2600 mediastr = (media == MEDIA_CDROM) ? "-cd" : "-hd";
2601 if (max_devs)
2602 snprintf(buf, sizeof(buf), "%s%i%s%i",
2603 devname, bus_id, mediastr, unit_id);
2604 else
2605 snprintf(buf, sizeof(buf), "%s%s%i",
2606 devname, mediastr, unit_id);
2607 bdrv = bdrv_new(buf);
2608 drives_table_idx = drive_get_free_idx();
2609 drives_table[drives_table_idx].bdrv = bdrv;
2610 drives_table[drives_table_idx].type = type;
2611 drives_table[drives_table_idx].bus = bus_id;
2612 drives_table[drives_table_idx].unit = unit_id;
2613 drives_table[drives_table_idx].onerror = onerror;
2614 drives_table[drives_table_idx].drive_opt_idx = arg - drives_opt;
2615 strncpy(drives_table[drives_table_idx].serial, serial, sizeof(serial));
2616 nb_drives++;
2618 switch(type) {
2619 case IF_IDE:
2620 case IF_SCSI:
2621 switch(media) {
2622 case MEDIA_DISK:
2623 if (cyls != 0) {
2624 bdrv_set_geometry_hint(bdrv, cyls, heads, secs);
2625 bdrv_set_translation_hint(bdrv, translation);
2627 break;
2628 case MEDIA_CDROM:
2629 bdrv_set_type_hint(bdrv, BDRV_TYPE_CDROM);
2630 break;
2632 break;
2633 case IF_SD:
2634 /* FIXME: This isn't really a floppy, but it's a reasonable
2635 approximation. */
2636 case IF_FLOPPY:
2637 bdrv_set_type_hint(bdrv, BDRV_TYPE_FLOPPY);
2638 break;
2639 case IF_PFLASH:
2640 case IF_MTD:
2641 case IF_VIRTIO:
2642 break;
2644 if (!file[0])
2645 return -2;
2646 bdrv_flags = 0;
2647 if (snapshot) {
2648 bdrv_flags |= BDRV_O_SNAPSHOT;
2649 cache = 2; /* always use write-back with snapshot */
2651 if (cache == 0) /* no caching */
2652 bdrv_flags |= BDRV_O_NOCACHE;
2653 else if (cache == 2) /* write-back */
2654 bdrv_flags |= BDRV_O_CACHE_WB;
2655 else if (cache == 3) /* not specified */
2656 bdrv_flags |= BDRV_O_CACHE_DEF;
2657 if (bdrv_open2(bdrv, file, bdrv_flags, drv) < 0) {
2658 fprintf(stderr, "qemu: could not open disk image %s\n",
2659 file);
2660 return -1;
2662 if (bdrv_key_required(bdrv))
2663 autostart = 0;
2664 return drives_table_idx;
2667 /***********************************************************/
2668 /* USB devices */
2670 static USBPort *used_usb_ports;
2671 static USBPort *free_usb_ports;
2673 /* ??? Maybe change this to register a hub to keep track of the topology. */
2674 void qemu_register_usb_port(USBPort *port, void *opaque, int index,
2675 usb_attachfn attach)
2677 port->opaque = opaque;
2678 port->index = index;
2679 port->attach = attach;
2680 port->next = free_usb_ports;
2681 free_usb_ports = port;
2684 int usb_device_add_dev(USBDevice *dev)
2686 USBPort *port;
2688 /* Find a USB port to add the device to. */
2689 port = free_usb_ports;
2690 if (!port->next) {
2691 USBDevice *hub;
2693 /* Create a new hub and chain it on. */
2694 free_usb_ports = NULL;
2695 port->next = used_usb_ports;
2696 used_usb_ports = port;
2698 hub = usb_hub_init(VM_USB_HUB_SIZE);
2699 usb_attach(port, hub);
2700 port = free_usb_ports;
2703 free_usb_ports = port->next;
2704 port->next = used_usb_ports;
2705 used_usb_ports = port;
2706 usb_attach(port, dev);
2707 return 0;
2710 static int usb_device_add(const char *devname, int is_hotplug)
2712 const char *p;
2713 USBDevice *dev;
2715 if (!free_usb_ports)
2716 return -1;
2718 if (strstart(devname, "host:", &p)) {
2719 dev = usb_host_device_open(p);
2720 } else if (!strcmp(devname, "mouse")) {
2721 dev = usb_mouse_init();
2722 } else if (!strcmp(devname, "tablet")) {
2723 dev = usb_tablet_init();
2724 } else if (!strcmp(devname, "keyboard")) {
2725 dev = usb_keyboard_init();
2726 } else if (strstart(devname, "disk:", &p)) {
2727 BlockDriverState *bs;
2729 dev = usb_msd_init(p, &bs);
2730 if (!dev)
2731 return -1;
2732 if (bdrv_key_required(bs)) {
2733 autostart = 0;
2734 if (is_hotplug && monitor_read_bdrv_key(bs) < 0) {
2735 dev->handle_destroy(dev);
2736 return -1;
2739 } else if (!strcmp(devname, "wacom-tablet")) {
2740 dev = usb_wacom_init();
2741 } else if (strstart(devname, "serial:", &p)) {
2742 dev = usb_serial_init(p);
2743 #ifdef CONFIG_BRLAPI
2744 } else if (!strcmp(devname, "braille")) {
2745 dev = usb_baum_init();
2746 #endif
2747 } else if (strstart(devname, "net:", &p)) {
2748 int nic = nb_nics;
2750 if (net_client_init("nic", p) < 0)
2751 return -1;
2752 nd_table[nic].model = "usb";
2753 dev = usb_net_init(&nd_table[nic]);
2754 } else if (!strcmp(devname, "bt") || strstart(devname, "bt:", &p)) {
2755 dev = usb_bt_init(devname[2] ? hci_init(p) :
2756 bt_new_hci(qemu_find_bt_vlan(0)));
2757 } else {
2758 return -1;
2760 if (!dev)
2761 return -1;
2763 return usb_device_add_dev(dev);
2766 int usb_device_del_addr(int bus_num, int addr)
2768 USBPort *port;
2769 USBPort **lastp;
2770 USBDevice *dev;
2772 if (!used_usb_ports)
2773 return -1;
2775 if (bus_num != 0)
2776 return -1;
2778 lastp = &used_usb_ports;
2779 port = used_usb_ports;
2780 while (port && port->dev->addr != addr) {
2781 lastp = &port->next;
2782 port = port->next;
2785 if (!port)
2786 return -1;
2788 dev = port->dev;
2789 *lastp = port->next;
2790 usb_attach(port, NULL);
2791 dev->handle_destroy(dev);
2792 port->next = free_usb_ports;
2793 free_usb_ports = port;
2794 return 0;
2797 static int usb_device_del(const char *devname)
2799 int bus_num, addr;
2800 const char *p;
2802 if (strstart(devname, "host:", &p))
2803 return usb_host_device_close(p);
2805 if (!used_usb_ports)
2806 return -1;
2808 p = strchr(devname, '.');
2809 if (!p)
2810 return -1;
2811 bus_num = strtoul(devname, NULL, 0);
2812 addr = strtoul(p + 1, NULL, 0);
2814 return usb_device_del_addr(bus_num, addr);
2817 void do_usb_add(const char *devname)
2819 usb_device_add(devname, 1);
2822 void do_usb_del(const char *devname)
2824 usb_device_del(devname);
2827 void usb_info(void)
2829 USBDevice *dev;
2830 USBPort *port;
2831 const char *speed_str;
2833 if (!usb_enabled) {
2834 term_printf("USB support not enabled\n");
2835 return;
2838 for (port = used_usb_ports; port; port = port->next) {
2839 dev = port->dev;
2840 if (!dev)
2841 continue;
2842 switch(dev->speed) {
2843 case USB_SPEED_LOW:
2844 speed_str = "1.5";
2845 break;
2846 case USB_SPEED_FULL:
2847 speed_str = "12";
2848 break;
2849 case USB_SPEED_HIGH:
2850 speed_str = "480";
2851 break;
2852 default:
2853 speed_str = "?";
2854 break;
2856 term_printf(" Device %d.%d, Speed %s Mb/s, Product %s\n",
2857 0, dev->addr, speed_str, dev->devname);
2861 /***********************************************************/
2862 /* PCMCIA/Cardbus */
2864 static struct pcmcia_socket_entry_s {
2865 struct pcmcia_socket_s *socket;
2866 struct pcmcia_socket_entry_s *next;
2867 } *pcmcia_sockets = 0;
2869 void pcmcia_socket_register(struct pcmcia_socket_s *socket)
2871 struct pcmcia_socket_entry_s *entry;
2873 entry = qemu_malloc(sizeof(struct pcmcia_socket_entry_s));
2874 entry->socket = socket;
2875 entry->next = pcmcia_sockets;
2876 pcmcia_sockets = entry;
2879 void pcmcia_socket_unregister(struct pcmcia_socket_s *socket)
2881 struct pcmcia_socket_entry_s *entry, **ptr;
2883 ptr = &pcmcia_sockets;
2884 for (entry = *ptr; entry; ptr = &entry->next, entry = *ptr)
2885 if (entry->socket == socket) {
2886 *ptr = entry->next;
2887 qemu_free(entry);
2891 void pcmcia_info(void)
2893 struct pcmcia_socket_entry_s *iter;
2894 if (!pcmcia_sockets)
2895 term_printf("No PCMCIA sockets\n");
2897 for (iter = pcmcia_sockets; iter; iter = iter->next)
2898 term_printf("%s: %s\n", iter->socket->slot_string,
2899 iter->socket->attached ? iter->socket->card_string :
2900 "Empty");
2903 /***********************************************************/
2904 /* register display */
2906 void register_displaystate(DisplayState *ds)
2908 DisplayState **s;
2909 s = &display_state;
2910 while (*s != NULL)
2911 s = &(*s)->next;
2912 ds->next = NULL;
2913 *s = ds;
2916 DisplayState *get_displaystate(void)
2918 return display_state;
2921 /* dumb display */
2923 static void dumb_display_init(void)
2925 DisplayState *ds = qemu_mallocz(sizeof(DisplayState));
2926 ds->surface = qemu_create_displaysurface(640, 480, 32, 640 * 4);
2927 register_displaystate(ds);
2930 /***********************************************************/
2931 /* I/O handling */
2933 #define MAX_IO_HANDLERS 64
2935 typedef struct IOHandlerRecord {
2936 int fd;
2937 IOCanRWHandler *fd_read_poll;
2938 IOHandler *fd_read;
2939 IOHandler *fd_write;
2940 int deleted;
2941 void *opaque;
2942 /* temporary data */
2943 struct pollfd *ufd;
2944 struct IOHandlerRecord *next;
2945 } IOHandlerRecord;
2947 static IOHandlerRecord *first_io_handler;
2949 /* XXX: fd_read_poll should be suppressed, but an API change is
2950 necessary in the character devices to suppress fd_can_read(). */
2951 int qemu_set_fd_handler2(int fd,
2952 IOCanRWHandler *fd_read_poll,
2953 IOHandler *fd_read,
2954 IOHandler *fd_write,
2955 void *opaque)
2957 IOHandlerRecord **pioh, *ioh;
2959 if (!fd_read && !fd_write) {
2960 pioh = &first_io_handler;
2961 for(;;) {
2962 ioh = *pioh;
2963 if (ioh == NULL)
2964 break;
2965 if (ioh->fd == fd) {
2966 ioh->deleted = 1;
2967 break;
2969 pioh = &ioh->next;
2971 } else {
2972 for(ioh = first_io_handler; ioh != NULL; ioh = ioh->next) {
2973 if (ioh->fd == fd)
2974 goto found;
2976 ioh = qemu_mallocz(sizeof(IOHandlerRecord));
2977 ioh->next = first_io_handler;
2978 first_io_handler = ioh;
2979 found:
2980 ioh->fd = fd;
2981 ioh->fd_read_poll = fd_read_poll;
2982 ioh->fd_read = fd_read;
2983 ioh->fd_write = fd_write;
2984 ioh->opaque = opaque;
2985 ioh->deleted = 0;
2987 main_loop_break();
2988 return 0;
2991 int qemu_set_fd_handler(int fd,
2992 IOHandler *fd_read,
2993 IOHandler *fd_write,
2994 void *opaque)
2996 return qemu_set_fd_handler2(fd, NULL, fd_read, fd_write, opaque);
2999 #ifdef _WIN32
3000 /***********************************************************/
3001 /* Polling handling */
3003 typedef struct PollingEntry {
3004 PollingFunc *func;
3005 void *opaque;
3006 struct PollingEntry *next;
3007 } PollingEntry;
3009 static PollingEntry *first_polling_entry;
3011 int qemu_add_polling_cb(PollingFunc *func, void *opaque)
3013 PollingEntry **ppe, *pe;
3014 pe = qemu_mallocz(sizeof(PollingEntry));
3015 pe->func = func;
3016 pe->opaque = opaque;
3017 for(ppe = &first_polling_entry; *ppe != NULL; ppe = &(*ppe)->next);
3018 *ppe = pe;
3019 return 0;
3022 void qemu_del_polling_cb(PollingFunc *func, void *opaque)
3024 PollingEntry **ppe, *pe;
3025 for(ppe = &first_polling_entry; *ppe != NULL; ppe = &(*ppe)->next) {
3026 pe = *ppe;
3027 if (pe->func == func && pe->opaque == opaque) {
3028 *ppe = pe->next;
3029 qemu_free(pe);
3030 break;
3035 /***********************************************************/
3036 /* Wait objects support */
3037 typedef struct WaitObjects {
3038 int num;
3039 HANDLE events[MAXIMUM_WAIT_OBJECTS + 1];
3040 WaitObjectFunc *func[MAXIMUM_WAIT_OBJECTS + 1];
3041 void *opaque[MAXIMUM_WAIT_OBJECTS + 1];
3042 } WaitObjects;
3044 static WaitObjects wait_objects = {0};
3046 int qemu_add_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
3048 WaitObjects *w = &wait_objects;
3050 if (w->num >= MAXIMUM_WAIT_OBJECTS)
3051 return -1;
3052 w->events[w->num] = handle;
3053 w->func[w->num] = func;
3054 w->opaque[w->num] = opaque;
3055 w->num++;
3056 return 0;
3059 void qemu_del_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
3061 int i, found;
3062 WaitObjects *w = &wait_objects;
3064 found = 0;
3065 for (i = 0; i < w->num; i++) {
3066 if (w->events[i] == handle)
3067 found = 1;
3068 if (found) {
3069 w->events[i] = w->events[i + 1];
3070 w->func[i] = w->func[i + 1];
3071 w->opaque[i] = w->opaque[i + 1];
3074 if (found)
3075 w->num--;
3077 #endif
3079 /***********************************************************/
3080 /* ram save/restore */
3082 static int ram_get_page(QEMUFile *f, uint8_t *buf, int len)
3084 int v;
3086 v = qemu_get_byte(f);
3087 switch(v) {
3088 case 0:
3089 if (qemu_get_buffer(f, buf, len) != len)
3090 return -EIO;
3091 break;
3092 case 1:
3093 v = qemu_get_byte(f);
3094 memset(buf, v, len);
3095 break;
3096 default:
3097 return -EINVAL;
3100 if (qemu_file_has_error(f))
3101 return -EIO;
3103 return 0;
3106 static int ram_load_v1(QEMUFile *f, void *opaque)
3108 int ret;
3109 ram_addr_t i;
3111 if (qemu_get_be32(f) != phys_ram_size)
3112 return -EINVAL;
3113 for(i = 0; i < phys_ram_size; i+= TARGET_PAGE_SIZE) {
3114 if (kvm_enabled() && (i>=0xa0000) && (i<0xc0000)) /* do not access video-addresses */
3115 continue;
3116 ret = ram_get_page(f, phys_ram_base + i, TARGET_PAGE_SIZE);
3117 if (ret)
3118 return ret;
3120 return 0;
3123 #define BDRV_HASH_BLOCK_SIZE 1024
3124 #define IOBUF_SIZE 4096
3125 #define RAM_CBLOCK_MAGIC 0xfabe
3127 typedef struct RamDecompressState {
3128 z_stream zstream;
3129 QEMUFile *f;
3130 uint8_t buf[IOBUF_SIZE];
3131 } RamDecompressState;
3133 static int ram_decompress_open(RamDecompressState *s, QEMUFile *f)
3135 int ret;
3136 memset(s, 0, sizeof(*s));
3137 s->f = f;
3138 ret = inflateInit(&s->zstream);
3139 if (ret != Z_OK)
3140 return -1;
3141 return 0;
3144 static int ram_decompress_buf(RamDecompressState *s, uint8_t *buf, int len)
3146 int ret, clen;
3148 s->zstream.avail_out = len;
3149 s->zstream.next_out = buf;
3150 while (s->zstream.avail_out > 0) {
3151 if (s->zstream.avail_in == 0) {
3152 if (qemu_get_be16(s->f) != RAM_CBLOCK_MAGIC)
3153 return -1;
3154 clen = qemu_get_be16(s->f);
3155 if (clen > IOBUF_SIZE)
3156 return -1;
3157 qemu_get_buffer(s->f, s->buf, clen);
3158 s->zstream.avail_in = clen;
3159 s->zstream.next_in = s->buf;
3161 ret = inflate(&s->zstream, Z_PARTIAL_FLUSH);
3162 if (ret != Z_OK && ret != Z_STREAM_END) {
3163 return -1;
3166 return 0;
3169 static void ram_decompress_close(RamDecompressState *s)
3171 inflateEnd(&s->zstream);
3174 #define RAM_SAVE_FLAG_FULL 0x01
3175 #define RAM_SAVE_FLAG_COMPRESS 0x02
3176 #define RAM_SAVE_FLAG_MEM_SIZE 0x04
3177 #define RAM_SAVE_FLAG_PAGE 0x08
3178 #define RAM_SAVE_FLAG_EOS 0x10
3180 static int is_dup_page(uint8_t *page, uint8_t ch)
3182 uint32_t val = ch << 24 | ch << 16 | ch << 8 | ch;
3183 uint32_t *array = (uint32_t *)page;
3184 int i;
3186 for (i = 0; i < (TARGET_PAGE_SIZE / 4); i++) {
3187 if (array[i] != val)
3188 return 0;
3191 return 1;
3194 static int ram_save_block(QEMUFile *f)
3196 static ram_addr_t current_addr = 0;
3197 ram_addr_t saved_addr = current_addr;
3198 ram_addr_t addr = 0;
3199 int found = 0;
3201 while (addr < phys_ram_size) {
3202 if (kvm_enabled() && current_addr == 0)
3203 kvm_update_dirty_pages_log(); /* FIXME: propagate errors */
3204 if (cpu_physical_memory_get_dirty(current_addr, MIGRATION_DIRTY_FLAG)) {
3205 uint8_t ch;
3207 cpu_physical_memory_reset_dirty(current_addr,
3208 current_addr + TARGET_PAGE_SIZE,
3209 MIGRATION_DIRTY_FLAG);
3211 ch = *(phys_ram_base + current_addr);
3213 if (is_dup_page(phys_ram_base + current_addr, ch)) {
3214 qemu_put_be64(f, current_addr | RAM_SAVE_FLAG_COMPRESS);
3215 qemu_put_byte(f, ch);
3216 } else {
3217 qemu_put_be64(f, current_addr | RAM_SAVE_FLAG_PAGE);
3218 qemu_put_buffer(f, phys_ram_base + current_addr, TARGET_PAGE_SIZE);
3221 found = 1;
3222 break;
3224 addr += TARGET_PAGE_SIZE;
3225 current_addr = (saved_addr + addr) % phys_ram_size;
3228 return found;
3231 static ram_addr_t ram_save_threshold = 10;
3233 static ram_addr_t ram_save_remaining(void)
3235 ram_addr_t addr;
3236 ram_addr_t count = 0;
3238 for (addr = 0; addr < phys_ram_size; addr += TARGET_PAGE_SIZE) {
3239 if (cpu_physical_memory_get_dirty(addr, MIGRATION_DIRTY_FLAG))
3240 count++;
3243 return count;
3246 static int ram_save_live(QEMUFile *f, int stage, void *opaque)
3248 ram_addr_t addr;
3250 if (stage == 1) {
3251 /* Make sure all dirty bits are set */
3252 for (addr = 0; addr < phys_ram_size; addr += TARGET_PAGE_SIZE) {
3253 if (!cpu_physical_memory_get_dirty(addr, MIGRATION_DIRTY_FLAG))
3254 cpu_physical_memory_set_dirty(addr);
3257 /* Enable dirty memory tracking */
3258 cpu_physical_memory_set_dirty_tracking(1);
3260 qemu_put_be64(f, phys_ram_size | RAM_SAVE_FLAG_MEM_SIZE);
3263 while (!qemu_file_rate_limit(f)) {
3264 int ret;
3266 ret = ram_save_block(f);
3267 if (ret == 0) /* no more blocks */
3268 break;
3271 /* try transferring iterative blocks of memory */
3273 if (stage == 3) {
3275 /* flush all remaining blocks regardless of rate limiting */
3276 while (ram_save_block(f) != 0);
3277 cpu_physical_memory_set_dirty_tracking(0);
3280 qemu_put_be64(f, RAM_SAVE_FLAG_EOS);
3282 return (stage == 2) && (ram_save_remaining() < ram_save_threshold);
3285 static int ram_load_dead(QEMUFile *f, void *opaque)
3287 RamDecompressState s1, *s = &s1;
3288 uint8_t buf[10];
3289 ram_addr_t i;
3291 if (ram_decompress_open(s, f) < 0)
3292 return -EINVAL;
3293 for(i = 0; i < phys_ram_size; i+= BDRV_HASH_BLOCK_SIZE) {
3294 if (kvm_enabled() && (i>=0xa0000) && (i<0xc0000)) /* do not access video-addresses */
3295 continue;
3296 if (ram_decompress_buf(s, buf, 1) < 0) {
3297 fprintf(stderr, "Error while reading ram block header\n");
3298 goto error;
3300 if (buf[0] == 0) {
3301 if (ram_decompress_buf(s, phys_ram_base + i, BDRV_HASH_BLOCK_SIZE) < 0) {
3302 fprintf(stderr, "Error while reading ram block address=0x%08" PRIx64, (uint64_t)i);
3303 goto error;
3305 } else {
3306 error:
3307 printf("Error block header\n");
3308 return -EINVAL;
3311 ram_decompress_close(s);
3313 return 0;
3316 static int ram_load(QEMUFile *f, void *opaque, int version_id)
3318 ram_addr_t addr;
3319 int flags;
3321 if (version_id == 1)
3322 return ram_load_v1(f, opaque);
3324 if (version_id == 2) {
3325 if (qemu_get_be32(f) != phys_ram_size)
3326 return -EINVAL;
3327 return ram_load_dead(f, opaque);
3330 if (version_id != 3)
3331 return -EINVAL;
3333 do {
3334 addr = qemu_get_be64(f);
3336 flags = addr & ~TARGET_PAGE_MASK;
3337 addr &= TARGET_PAGE_MASK;
3339 if (flags & RAM_SAVE_FLAG_MEM_SIZE) {
3340 if (addr != phys_ram_size)
3341 return -EINVAL;
3344 if (flags & RAM_SAVE_FLAG_FULL) {
3345 if (ram_load_dead(f, opaque) < 0)
3346 return -EINVAL;
3349 if (flags & RAM_SAVE_FLAG_COMPRESS) {
3350 uint8_t ch = qemu_get_byte(f);
3351 memset(phys_ram_base + addr, ch, TARGET_PAGE_SIZE);
3352 } else if (flags & RAM_SAVE_FLAG_PAGE)
3353 qemu_get_buffer(f, phys_ram_base + addr, TARGET_PAGE_SIZE);
3354 } while (!(flags & RAM_SAVE_FLAG_EOS));
3356 return 0;
3359 /***********************************************************/
3360 /* bottom halves (can be seen as timers which expire ASAP) */
3362 struct QEMUBH {
3363 QEMUBHFunc *cb;
3364 void *opaque;
3365 int scheduled;
3366 int idle;
3367 int deleted;
3368 QEMUBH *next;
3371 static QEMUBH *first_bh = NULL;
3373 QEMUBH *qemu_bh_new(QEMUBHFunc *cb, void *opaque)
3375 QEMUBH *bh;
3376 bh = qemu_mallocz(sizeof(QEMUBH));
3377 bh->cb = cb;
3378 bh->opaque = opaque;
3379 bh->next = first_bh;
3380 first_bh = bh;
3381 return bh;
3384 int qemu_bh_poll(void)
3386 QEMUBH *bh, **bhp;
3387 int ret;
3389 ret = 0;
3390 for (bh = first_bh; bh; bh = bh->next) {
3391 if (!bh->deleted && bh->scheduled) {
3392 bh->scheduled = 0;
3393 if (!bh->idle)
3394 ret = 1;
3395 bh->idle = 0;
3396 bh->cb(bh->opaque);
3400 /* remove deleted bhs */
3401 bhp = &first_bh;
3402 while (*bhp) {
3403 bh = *bhp;
3404 if (bh->deleted) {
3405 *bhp = bh->next;
3406 qemu_free(bh);
3407 } else
3408 bhp = &bh->next;
3411 return ret;
3414 void qemu_bh_schedule_idle(QEMUBH *bh)
3416 if (bh->scheduled)
3417 return;
3418 bh->scheduled = 1;
3419 bh->idle = 1;
3422 void qemu_bh_schedule(QEMUBH *bh)
3424 CPUState *env = cpu_single_env;
3425 if (bh->scheduled)
3426 return;
3427 bh->scheduled = 1;
3428 bh->idle = 0;
3429 /* stop the currently executing CPU to execute the BH ASAP */
3430 if (env) {
3431 cpu_interrupt(env, CPU_INTERRUPT_EXIT);
3433 main_loop_break();
3436 void qemu_bh_cancel(QEMUBH *bh)
3438 bh->scheduled = 0;
3441 void qemu_bh_delete(QEMUBH *bh)
3443 bh->scheduled = 0;
3444 bh->deleted = 1;
3447 static void qemu_bh_update_timeout(int *timeout)
3449 QEMUBH *bh;
3451 for (bh = first_bh; bh; bh = bh->next) {
3452 if (!bh->deleted && bh->scheduled) {
3453 if (bh->idle) {
3454 /* idle bottom halves will be polled at least
3455 * every 10ms */
3456 *timeout = MIN(10, *timeout);
3457 } else {
3458 /* non-idle bottom halves will be executed
3459 * immediately */
3460 *timeout = 0;
3461 break;
3467 /***********************************************************/
3468 /* machine registration */
3470 static QEMUMachine *first_machine = NULL;
3471 QEMUMachine *current_machine = NULL;
3473 int qemu_register_machine(QEMUMachine *m)
3475 QEMUMachine **pm;
3476 pm = &first_machine;
3477 while (*pm != NULL)
3478 pm = &(*pm)->next;
3479 m->next = NULL;
3480 *pm = m;
3481 return 0;
3484 static QEMUMachine *find_machine(const char *name)
3486 QEMUMachine *m;
3488 for(m = first_machine; m != NULL; m = m->next) {
3489 if (!strcmp(m->name, name))
3490 return m;
3492 return NULL;
3495 /***********************************************************/
3496 /* main execution loop */
3498 static void gui_update(void *opaque)
3500 uint64_t interval = GUI_REFRESH_INTERVAL;
3501 DisplayState *ds = opaque;
3502 DisplayChangeListener *dcl = ds->listeners;
3504 dpy_refresh(ds);
3506 while (dcl != NULL) {
3507 if (dcl->gui_timer_interval &&
3508 dcl->gui_timer_interval < interval)
3509 interval = dcl->gui_timer_interval;
3510 dcl = dcl->next;
3512 qemu_mod_timer(ds->gui_timer, interval + qemu_get_clock(rt_clock));
3515 static void nographic_update(void *opaque)
3517 uint64_t interval = GUI_REFRESH_INTERVAL;
3519 qemu_mod_timer(nographic_timer, interval + qemu_get_clock(rt_clock));
3522 struct vm_change_state_entry {
3523 VMChangeStateHandler *cb;
3524 void *opaque;
3525 LIST_ENTRY (vm_change_state_entry) entries;
3528 static LIST_HEAD(vm_change_state_head, vm_change_state_entry) vm_change_state_head;
3530 VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
3531 void *opaque)
3533 VMChangeStateEntry *e;
3535 e = qemu_mallocz(sizeof (*e));
3537 e->cb = cb;
3538 e->opaque = opaque;
3539 LIST_INSERT_HEAD(&vm_change_state_head, e, entries);
3540 return e;
3543 void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
3545 LIST_REMOVE (e, entries);
3546 qemu_free (e);
3549 static void vm_state_notify(int running, int reason)
3551 VMChangeStateEntry *e;
3553 for (e = vm_change_state_head.lh_first; e; e = e->entries.le_next) {
3554 e->cb(e->opaque, running, reason);
3558 void vm_start(void)
3560 if (!vm_running) {
3561 cpu_enable_ticks();
3562 vm_running = 1;
3563 vm_state_notify(1, 0);
3564 qemu_rearm_alarm_timer(alarm_timer);
3568 void vm_stop(int reason)
3570 if (vm_running) {
3571 cpu_disable_ticks();
3572 vm_running = 0;
3573 vm_state_notify(0, reason);
3577 /* reset/shutdown handler */
3579 typedef struct QEMUResetEntry {
3580 QEMUResetHandler *func;
3581 void *opaque;
3582 struct QEMUResetEntry *next;
3583 } QEMUResetEntry;
3585 static QEMUResetEntry *first_reset_entry;
3586 static int reset_requested;
3587 static int shutdown_requested;
3588 static int powerdown_requested;
3590 int qemu_no_shutdown(void)
3592 int r = no_shutdown;
3593 no_shutdown = 0;
3594 return r;
3597 int qemu_shutdown_requested(void)
3599 int r = shutdown_requested;
3600 shutdown_requested = 0;
3601 return r;
3604 int qemu_reset_requested(void)
3606 int r = reset_requested;
3607 reset_requested = 0;
3608 return r;
3611 int qemu_powerdown_requested(void)
3613 int r = powerdown_requested;
3614 powerdown_requested = 0;
3615 return r;
3618 void qemu_register_reset(QEMUResetHandler *func, void *opaque)
3620 QEMUResetEntry **pre, *re;
3622 pre = &first_reset_entry;
3623 while (*pre != NULL)
3624 pre = &(*pre)->next;
3625 re = qemu_mallocz(sizeof(QEMUResetEntry));
3626 re->func = func;
3627 re->opaque = opaque;
3628 re->next = NULL;
3629 *pre = re;
3632 void qemu_system_reset(void)
3634 QEMUResetEntry *re;
3636 /* reset all devices */
3637 for(re = first_reset_entry; re != NULL; re = re->next) {
3638 re->func(re->opaque);
3642 void qemu_system_reset_request(void)
3644 if (no_reboot) {
3645 shutdown_requested = 1;
3646 } else {
3647 reset_requested = 1;
3650 if (cpu_single_env) {
3651 qemu_kvm_cpu_stop(cpu_single_env);
3652 cpu_interrupt(cpu_single_env, CPU_INTERRUPT_EXIT);
3654 main_loop_break();
3657 void qemu_system_shutdown_request(void)
3659 shutdown_requested = 1;
3660 if (cpu_single_env)
3661 cpu_interrupt(cpu_single_env, CPU_INTERRUPT_EXIT);
3664 void qemu_system_powerdown_request(void)
3666 powerdown_requested = 1;
3667 if (cpu_single_env)
3668 cpu_interrupt(cpu_single_env, CPU_INTERRUPT_EXIT);
3671 static int qemu_select(int max_fd, fd_set *rfds, fd_set *wfds, fd_set *xfds,
3672 struct timeval *tv)
3674 int ret;
3676 /* KVM holds a mutex while QEMU code is running, we need hooks to
3677 release the mutex whenever QEMU code sleeps. */
3679 kvm_sleep_begin();
3681 ret = select(max_fd, rfds, wfds, xfds, tv);
3683 kvm_sleep_end();
3685 return ret;
3688 #ifdef _WIN32
3689 static void host_main_loop_wait(int *timeout)
3691 int ret, ret2, i;
3692 PollingEntry *pe;
3695 /* XXX: need to suppress polling by better using win32 events */
3696 ret = 0;
3697 for(pe = first_polling_entry; pe != NULL; pe = pe->next) {
3698 ret |= pe->func(pe->opaque);
3700 if (ret == 0) {
3701 int err;
3702 WaitObjects *w = &wait_objects;
3704 ret = WaitForMultipleObjects(w->num, w->events, FALSE, *timeout);
3705 if (WAIT_OBJECT_0 + 0 <= ret && ret <= WAIT_OBJECT_0 + w->num - 1) {
3706 if (w->func[ret - WAIT_OBJECT_0])
3707 w->func[ret - WAIT_OBJECT_0](w->opaque[ret - WAIT_OBJECT_0]);
3709 /* Check for additional signaled events */
3710 for(i = (ret - WAIT_OBJECT_0 + 1); i < w->num; i++) {
3712 /* Check if event is signaled */
3713 ret2 = WaitForSingleObject(w->events[i], 0);
3714 if(ret2 == WAIT_OBJECT_0) {
3715 if (w->func[i])
3716 w->func[i](w->opaque[i]);
3717 } else if (ret2 == WAIT_TIMEOUT) {
3718 } else {
3719 err = GetLastError();
3720 fprintf(stderr, "WaitForSingleObject error %d %d\n", i, err);
3723 } else if (ret == WAIT_TIMEOUT) {
3724 } else {
3725 err = GetLastError();
3726 fprintf(stderr, "WaitForMultipleObjects error %d %d\n", ret, err);
3730 *timeout = 0;
3732 #else
3733 static void host_main_loop_wait(int *timeout)
3736 #endif
3738 void main_loop_wait(int timeout)
3740 IOHandlerRecord *ioh;
3741 fd_set rfds, wfds, xfds;
3742 int ret, nfds;
3743 struct timeval tv;
3745 qemu_bh_update_timeout(&timeout);
3747 host_main_loop_wait(&timeout);
3749 /* poll any events */
3750 /* XXX: separate device handlers from system ones */
3751 nfds = -1;
3752 FD_ZERO(&rfds);
3753 FD_ZERO(&wfds);
3754 FD_ZERO(&xfds);
3755 for(ioh = first_io_handler; ioh != NULL; ioh = ioh->next) {
3756 if (ioh->deleted)
3757 continue;
3758 if (ioh->fd_read &&
3759 (!ioh->fd_read_poll ||
3760 ioh->fd_read_poll(ioh->opaque) != 0)) {
3761 FD_SET(ioh->fd, &rfds);
3762 if (ioh->fd > nfds)
3763 nfds = ioh->fd;
3765 if (ioh->fd_write) {
3766 FD_SET(ioh->fd, &wfds);
3767 if (ioh->fd > nfds)
3768 nfds = ioh->fd;
3772 tv.tv_sec = timeout / 1000;
3773 tv.tv_usec = (timeout % 1000) * 1000;
3775 #if defined(CONFIG_SLIRP)
3776 if (slirp_is_inited()) {
3777 slirp_select_fill(&nfds, &rfds, &wfds, &xfds);
3779 #endif
3780 ret = qemu_select(nfds + 1, &rfds, &wfds, &xfds, &tv);
3781 if (ret > 0) {
3782 IOHandlerRecord **pioh;
3784 for(ioh = first_io_handler; ioh != NULL; ioh = ioh->next) {
3785 if (!ioh->deleted && ioh->fd_read && FD_ISSET(ioh->fd, &rfds)) {
3786 ioh->fd_read(ioh->opaque);
3787 if (!(ioh->fd_read_poll && ioh->fd_read_poll(ioh->opaque)))
3788 FD_CLR(ioh->fd, &rfds);
3790 if (!ioh->deleted && ioh->fd_write && FD_ISSET(ioh->fd, &wfds)) {
3791 ioh->fd_write(ioh->opaque);
3795 /* remove deleted IO handlers */
3796 pioh = &first_io_handler;
3797 while (*pioh) {
3798 ioh = *pioh;
3799 if (ioh->deleted) {
3800 *pioh = ioh->next;
3801 qemu_free(ioh);
3802 } else
3803 pioh = &ioh->next;
3806 #if defined(CONFIG_SLIRP)
3807 if (slirp_is_inited()) {
3808 if (ret < 0) {
3809 FD_ZERO(&rfds);
3810 FD_ZERO(&wfds);
3811 FD_ZERO(&xfds);
3813 slirp_select_poll(&rfds, &wfds, &xfds);
3815 #endif
3817 /* vm time timers */
3818 if (vm_running && (!cur_cpu
3819 || likely(!(cur_cpu->singlestep_enabled & SSTEP_NOTIMER))))
3820 qemu_run_timers(&active_timers[QEMU_TIMER_VIRTUAL],
3821 qemu_get_clock(vm_clock));
3823 /* real time timers */
3824 qemu_run_timers(&active_timers[QEMU_TIMER_REALTIME],
3825 qemu_get_clock(rt_clock));
3827 /* Check bottom-halves last in case any of the earlier events triggered
3828 them. */
3829 qemu_bh_poll();
3833 static int main_loop(void)
3835 int ret, timeout;
3836 #ifdef CONFIG_PROFILER
3837 int64_t ti;
3838 #endif
3839 CPUState *env;
3842 if (kvm_enabled()) {
3843 kvm_main_loop();
3844 cpu_disable_ticks();
3845 return 0;
3848 cur_cpu = first_cpu;
3849 next_cpu = cur_cpu->next_cpu ?: first_cpu;
3850 for(;;) {
3851 if (vm_running) {
3853 for(;;) {
3854 /* get next cpu */
3855 env = next_cpu;
3856 #ifdef CONFIG_PROFILER
3857 ti = profile_getclock();
3858 #endif
3859 if (use_icount) {
3860 int64_t count;
3861 int decr;
3862 qemu_icount -= (env->icount_decr.u16.low + env->icount_extra);
3863 env->icount_decr.u16.low = 0;
3864 env->icount_extra = 0;
3865 count = qemu_next_deadline();
3866 count = (count + (1 << icount_time_shift) - 1)
3867 >> icount_time_shift;
3868 qemu_icount += count;
3869 decr = (count > 0xffff) ? 0xffff : count;
3870 count -= decr;
3871 env->icount_decr.u16.low = decr;
3872 env->icount_extra = count;
3874 ret = cpu_exec(env);
3875 #ifdef CONFIG_PROFILER
3876 qemu_time += profile_getclock() - ti;
3877 #endif
3878 if (use_icount) {
3879 /* Fold pending instructions back into the
3880 instruction counter, and clear the interrupt flag. */
3881 qemu_icount -= (env->icount_decr.u16.low
3882 + env->icount_extra);
3883 env->icount_decr.u32 = 0;
3884 env->icount_extra = 0;
3886 next_cpu = env->next_cpu ?: first_cpu;
3887 if (event_pending && likely(ret != EXCP_DEBUG)) {
3888 ret = EXCP_INTERRUPT;
3889 event_pending = 0;
3890 break;
3892 if (ret == EXCP_HLT) {
3893 /* Give the next CPU a chance to run. */
3894 cur_cpu = env;
3895 continue;
3897 if (ret != EXCP_HALTED)
3898 break;
3899 /* all CPUs are halted ? */
3900 if (env == cur_cpu)
3901 break;
3903 cur_cpu = env;
3905 if (shutdown_requested) {
3906 ret = EXCP_INTERRUPT;
3907 if (no_shutdown) {
3908 vm_stop(0);
3909 no_shutdown = 0;
3911 else
3912 break;
3914 if (reset_requested) {
3915 reset_requested = 0;
3916 qemu_system_reset();
3917 if (kvm_enabled())
3918 kvm_load_registers(env);
3919 ret = EXCP_INTERRUPT;
3921 if (powerdown_requested) {
3922 powerdown_requested = 0;
3923 qemu_system_powerdown();
3924 ret = EXCP_INTERRUPT;
3926 #ifdef CONFIG_GDBSTUB
3927 if (unlikely(ret == EXCP_DEBUG)) {
3928 gdb_set_stop_cpu(cur_cpu);
3929 vm_stop(EXCP_DEBUG);
3931 #endif
3932 /* If all cpus are halted then wait until the next IRQ */
3933 /* XXX: use timeout computed from timers */
3934 if (ret == EXCP_HALTED) {
3935 if (use_icount) {
3936 int64_t add;
3937 int64_t delta;
3938 /* Advance virtual time to the next event. */
3939 if (use_icount == 1) {
3940 /* When not using an adaptive execution frequency
3941 we tend to get badly out of sync with real time,
3942 so just delay for a reasonable amount of time. */
3943 delta = 0;
3944 } else {
3945 delta = cpu_get_icount() - cpu_get_clock();
3947 if (delta > 0) {
3948 /* If virtual time is ahead of real time then just
3949 wait for IO. */
3950 timeout = (delta / 1000000) + 1;
3951 } else {
3952 /* Wait for either IO to occur or the next
3953 timer event. */
3954 add = qemu_next_deadline();
3955 /* We advance the timer before checking for IO.
3956 Limit the amount we advance so that early IO
3957 activity won't get the guest too far ahead. */
3958 if (add > 10000000)
3959 add = 10000000;
3960 delta += add;
3961 add = (add + (1 << icount_time_shift) - 1)
3962 >> icount_time_shift;
3963 qemu_icount += add;
3964 timeout = delta / 1000000;
3965 if (timeout < 0)
3966 timeout = 0;
3968 } else {
3969 timeout = 5000;
3971 } else {
3972 timeout = 0;
3974 } else {
3975 if (shutdown_requested) {
3976 ret = EXCP_INTERRUPT;
3977 break;
3979 timeout = 5000;
3981 #ifdef CONFIG_PROFILER
3982 ti = profile_getclock();
3983 #endif
3984 main_loop_wait(timeout);
3985 #ifdef CONFIG_PROFILER
3986 dev_time += profile_getclock() - ti;
3987 #endif
3989 cpu_disable_ticks();
3990 return ret;
3993 static void help(int exitcode)
3995 /* Please keep in synch with QEMU_OPTION_ enums, qemu_options[]
3996 and qemu-doc.texi */
3997 printf("QEMU PC emulator version " QEMU_VERSION " (" KVM_VERSION ")"
3998 ", Copyright (c) 2003-2008 Fabrice Bellard\n"
3999 "usage: %s [options] [disk_image]\n"
4000 "\n"
4001 "'disk_image' is a raw hard image image for IDE hard disk 0\n"
4002 "\n"
4003 "Standard options:\n"
4004 "-h or -help display this help and exit\n"
4005 "-M machine select emulated machine (-M ? for list)\n"
4006 "-cpu cpu select CPU (-cpu ? for list)\n"
4007 "-smp n set the number of CPUs to 'n' [default=1]\n"
4008 "-fda/-fdb file use 'file' as floppy disk 0/1 image\n"
4009 "-hda/-hdb file use 'file' as IDE hard disk 0/1 image\n"
4010 "-hdc/-hdd file use 'file' as IDE hard disk 2/3 image\n"
4011 "-cdrom file use 'file' as IDE cdrom image (cdrom is ide1 master)\n"
4012 "-drive [file=file][,if=type][,bus=n][,unit=m][,media=d][,index=i]\n"
4013 " [,cyls=c,heads=h,secs=s[,trans=t]][,snapshot=on|off]\n"
4014 " [,cache=writethrough|writeback|none][,format=f][,serial=s]\n"
4015 " [,boot=on|off]\n"
4016 " use 'file' as a drive image\n"
4017 "-mtdblock file use 'file' as on-board Flash memory image\n"
4018 "-sd file use 'file' as SecureDigital card image\n"
4019 "-pflash file use 'file' as a parallel flash image\n"
4020 "-boot [a|c|d|n] boot on floppy (a), hard disk (c), CD-ROM (d), or network (n)\n"
4021 "-snapshot write to temporary files instead of disk image files\n"
4022 "-m megs set virtual RAM size to megs MB [default=%d]\n"
4023 #ifndef _WIN32
4024 "-k language use keyboard layout (for example \"fr\" for French)\n"
4025 #endif
4026 #ifdef HAS_AUDIO
4027 "-audio-help print list of audio drivers and their options\n"
4028 "-soundhw c1,... enable audio support\n"
4029 " and only specified sound cards (comma separated list)\n"
4030 " use -soundhw ? to get the list of supported cards\n"
4031 " use -soundhw all to enable all of them\n"
4032 #endif
4033 "-usb enable the USB driver (will be the default soon)\n"
4034 "-usbdevice name add the host or guest USB device 'name'\n"
4035 "-name string set the name of the guest\n"
4036 "-uuid %%08x-%%04x-%%04x-%%04x-%%012x\n"
4037 " specify machine UUID\n"
4038 "\n"
4039 "Display options:\n"
4040 "-nographic disable graphical output and redirect serial I/Os to console\n"
4041 #ifdef CONFIG_CURSES
4042 "-curses use a curses/ncurses interface instead of SDL\n"
4043 #endif
4044 #ifdef CONFIG_SDL
4045 "-no-frame open SDL window without a frame and window decorations\n"
4046 "-alt-grab use Ctrl-Alt-Shift to grab mouse (instead of Ctrl-Alt)\n"
4047 "-no-quit disable SDL window close capability\n"
4048 "-sdl enable SDL\n"
4049 #endif
4050 "-portrait rotate graphical output 90 deg left (only PXA LCD)\n"
4051 "-vga [std|cirrus|vmware|none]\n"
4052 " select video card type\n"
4053 "-full-screen start in full screen\n"
4054 #if defined(TARGET_PPC) || defined(TARGET_SPARC)
4055 "-g WxH[xDEPTH] Set the initial graphical resolution and depth\n"
4056 #endif
4057 "-vnc display start a VNC server on display\n"
4058 #ifdef TARGET_IA64
4059 "-nvram file use 'file' to save or load nvram image\n"
4060 #endif
4061 "-name string set the name of the guest\n"
4062 "-uuid %%08x-%%04x-%%04x-%%04x-%%012x specify machine UUID\n"
4063 "\n"
4064 "Network options:\n"
4065 "-net nic[,vlan=n][,macaddr=addr][,model=type][,name=str]\n"
4066 " create a new Network Interface Card and connect it to VLAN 'n'\n"
4067 #ifdef CONFIG_SLIRP
4068 "-net user[,vlan=n][,name=str][,hostname=host]\n"
4069 " connect the user mode network stack to VLAN 'n' and send\n"
4070 " hostname 'host' to DHCP clients\n"
4071 #endif
4072 #ifdef _WIN32
4073 "-net tap[,vlan=n][,name=str],ifname=name\n"
4074 " connect the host TAP network interface to VLAN 'n'\n"
4075 #else
4076 "-net tap[,vlan=n][,name=str][,fd=h][,ifname=name][,script=file][,downscript=dfile]\n"
4077 " connect the host TAP network interface to VLAN 'n' and use the\n"
4078 " network scripts 'file' (default=%s)\n"
4079 " and 'dfile' (default=%s);\n"
4080 " use '[down]script=no' to disable script execution;\n"
4081 " use 'fd=h' to connect to an already opened TAP interface\n"
4082 #endif
4083 "-net socket[,vlan=n][,name=str][,fd=h][,listen=[host]:port][,connect=host:port]\n"
4084 " connect the vlan 'n' to another VLAN using a socket connection\n"
4085 "-net socket[,vlan=n][,name=str][,fd=h][,mcast=maddr:port]\n"
4086 " connect the vlan 'n' to multicast maddr and port\n"
4087 #ifdef CONFIG_VDE
4088 "-net vde[,vlan=n][,name=str][,sock=socketpath][,port=n][,group=groupname][,mode=octalmode]\n"
4089 " connect the vlan 'n' to port 'n' of a vde switch running\n"
4090 " on host and listening for incoming connections on 'socketpath'.\n"
4091 " Use group 'groupname' and mode 'octalmode' to change default\n"
4092 " ownership and permissions for communication port.\n"
4093 #endif
4094 "-net none use it alone to have zero network devices; if no -net option\n"
4095 " is provided, the default is '-net nic -net user'\n"
4096 #ifdef CONFIG_SLIRP
4097 "-tftp dir allow tftp access to files in dir [-net user]\n"
4098 "-bootp file advertise file in BOOTP replies\n"
4099 #ifndef _WIN32
4100 "-smb dir allow SMB access to files in 'dir' [-net user]\n"
4101 #endif
4102 "-redir [tcp|udp]:host-port:[guest-host]:guest-port\n"
4103 " redirect TCP or UDP connections from host to guest [-net user]\n"
4104 #endif
4105 "\n"
4106 "-bt hci,null dumb bluetooth HCI - doesn't respond to commands\n"
4107 "-bt hci,host[:id]\n"
4108 " use host's HCI with the given name\n"
4109 "-bt hci[,vlan=n]\n"
4110 " emulate a standard HCI in virtual scatternet 'n'\n"
4111 "-bt vhci[,vlan=n]\n"
4112 " add host computer to virtual scatternet 'n' using VHCI\n"
4113 "-bt device:dev[,vlan=n]\n"
4114 " emulate a bluetooth device 'dev' in scatternet 'n'\n"
4115 "\n"
4116 #ifdef TARGET_I386
4117 "\n"
4118 "i386 target only:\n"
4119 "-win2k-hack use it when installing Windows 2000 to avoid a disk full bug\n"
4120 "-rtc-td-hack use it to fix time drift in Windows ACPI HAL\n"
4121 "-no-fd-bootchk disable boot signature checking for floppy disks\n"
4122 "-no-acpi disable ACPI\n"
4123 "-no-hpet disable HPET\n"
4124 "-acpitable [sig=str][,rev=n][,oem_id=str][,oem_table_id=str][,oem_rev=n][,asl_compiler_id=str][,asl_compiler_rev=n][,data=file1[:file2]...]\n"
4125 " ACPI table description\n"
4126 #endif
4127 "Linux boot specific:\n"
4128 "-kernel bzImage use 'bzImage' as kernel image\n"
4129 "-append cmdline use 'cmdline' as kernel command line\n"
4130 "-initrd file use 'file' as initial ram disk\n"
4131 "\n"
4132 "Debug/Expert options:\n"
4133 "-serial dev redirect the serial port to char device 'dev'\n"
4134 "-parallel dev redirect the parallel port to char device 'dev'\n"
4135 "-monitor dev redirect the monitor to char device 'dev'\n"
4136 "-pidfile file write PID to 'file'\n"
4137 "-S freeze CPU at startup (use 'c' to start execution)\n"
4138 "-s wait gdb connection to port\n"
4139 "-p port set gdb connection port [default=%s]\n"
4140 "-d item1,... output log to %s (use -d ? for a list of log items)\n"
4141 "-hdachs c,h,s[,t]\n"
4142 " force hard disk 0 physical geometry and the optional BIOS\n"
4143 " translation (t=none or lba) (usually qemu can guess them)\n"
4144 "-L path set the directory for the BIOS, VGA BIOS and keymaps\n"
4145 "-bios file set the filename for the BIOS\n"
4146 #ifdef USE_KQEMU
4147 "-kernel-kqemu enable KQEMU full virtualization (default is user mode only)\n"
4148 "-no-kqemu disable KQEMU kernel module usage\n"
4149 #endif
4150 #ifdef CONFIG_KVM
4151 "-enable-kvm enable KVM full virtualization support\n"
4152 #endif
4153 #ifdef USE_KVM
4154 #ifndef NO_CPU_EMULATION
4155 "-no-kvm disable KVM hardware virtualization\n"
4156 #endif
4157 "-no-kvm-irqchip disable KVM kernel mode PIC/IOAPIC/LAPIC\n"
4158 "-no-kvm-pit disable KVM kernel mode PIT\n"
4159 "-no-kvm-pit-reinjection disable KVM kernel mode PIT interrupt reinjection\n"
4160 "-enable-nesting enable support for running a VM inside the VM (AMD only)\n"
4161 #if defined(TARGET_I386) || defined(TARGET_X86_64) || defined(TARGET_IA64) || defined(__linux__)
4162 "-pcidevice host=bus:dev.func[,dma=none][,name=string]\n"
4163 " expose a PCI device to the guest OS.\n"
4164 " dma=none: don't perform any dma translations (default is to use an iommu)\n"
4165 " 'string' is used in log output.\n"
4166 #endif
4167 #endif
4168 "-no-reboot exit instead of rebooting\n"
4169 "-no-shutdown stop before shutdown\n"
4170 "-loadvm [tag|id]\n"
4171 " start right away with a saved state (loadvm in monitor)\n"
4172 #ifndef _WIN32
4173 "-daemonize daemonize QEMU after initializing\n"
4174 #endif
4175 "-tdf inject timer interrupts that got lost\n"
4176 "-kvm-shadow-memory megs set the amount of shadow pages to be allocated\n"
4177 "-mem-path set the path to hugetlbfs/tmpfs mounted directory, also\n"
4178 " enables allocation of guest memory with huge pages\n"
4179 #ifdef MAP_POPULATE
4180 "-mem-prealloc toggles preallocation of -mem-path backed physical memory\n"
4181 " at startup. Default is enabled.\n"
4182 #endif
4183 "-option-rom rom load a file, rom, into the option ROM space\n"
4184 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
4185 "-prom-env variable=value\n"
4186 " set OpenBIOS nvram variables\n"
4187 #endif
4188 "-clock force the use of the given methods for timer alarm.\n"
4189 " To see what timers are available use -clock ?\n"
4190 "-localtime set the real time clock to local time [default=utc]\n"
4191 "-startdate select initial date of the clock\n"
4192 "-icount [N|auto]\n"
4193 " enable virtual instruction counter with 2^N clock ticks per instruction\n"
4194 "-echr chr set terminal escape character instead of ctrl-a\n"
4195 "-virtioconsole c\n"
4196 " set virtio console\n"
4197 "-show-cursor show cursor\n"
4198 #if defined(TARGET_ARM) || defined(TARGET_M68K)
4199 "-semihosting semihosting mode\n"
4200 #endif
4201 #if defined(TARGET_ARM)
4202 "-old-param old param mode\n"
4203 #endif
4204 "-tb-size n set TB size\n"
4205 "-incoming p prepare for incoming migration, listen on port p\n"
4206 #ifndef _WIN32
4207 "-chroot dir Chroot to dir just before starting the VM.\n"
4208 "-runas user Change to user id user just before starting the VM.\n"
4209 #endif
4210 "\n"
4211 "During emulation, the following keys are useful:\n"
4212 "ctrl-alt-f toggle full screen\n"
4213 "ctrl-alt-n switch to virtual console 'n'\n"
4214 "ctrl-alt toggle mouse and keyboard grab\n"
4215 "\n"
4216 "When using -nographic, press 'ctrl-a h' to get some help.\n"
4218 "qemu",
4219 DEFAULT_RAM_SIZE,
4220 #ifndef _WIN32
4221 DEFAULT_NETWORK_SCRIPT,
4222 DEFAULT_NETWORK_DOWN_SCRIPT,
4223 #endif
4224 DEFAULT_GDBSTUB_PORT,
4225 "/tmp/qemu.log");
4226 exit(exitcode);
4229 #define HAS_ARG 0x0001
4231 enum {
4232 /* Please keep in synch with help, qemu_options[] and
4233 qemu-doc.texi */
4234 /* Standard options: */
4235 QEMU_OPTION_h,
4236 QEMU_OPTION_M,
4237 QEMU_OPTION_cpu,
4238 QEMU_OPTION_smp,
4239 QEMU_OPTION_fda,
4240 QEMU_OPTION_fdb,
4241 QEMU_OPTION_hda,
4242 QEMU_OPTION_hdb,
4243 QEMU_OPTION_hdc,
4244 QEMU_OPTION_hdd,
4245 QEMU_OPTION_cdrom,
4246 QEMU_OPTION_drive,
4247 QEMU_OPTION_mtdblock,
4248 QEMU_OPTION_sd,
4249 QEMU_OPTION_pflash,
4250 QEMU_OPTION_boot,
4251 QEMU_OPTION_snapshot,
4252 QEMU_OPTION_m,
4253 QEMU_OPTION_k,
4254 QEMU_OPTION_audio_help,
4255 QEMU_OPTION_soundhw,
4256 QEMU_OPTION_usb,
4257 QEMU_OPTION_usbdevice,
4258 QEMU_OPTION_name,
4259 QEMU_OPTION_uuid,
4261 /* Display options: */
4262 QEMU_OPTION_nographic,
4263 QEMU_OPTION_curses,
4264 QEMU_OPTION_no_frame,
4265 QEMU_OPTION_alt_grab,
4266 QEMU_OPTION_no_quit,
4267 QEMU_OPTION_sdl,
4268 QEMU_OPTION_portrait,
4269 QEMU_OPTION_vga,
4270 QEMU_OPTION_full_screen,
4271 QEMU_OPTION_g,
4272 QEMU_OPTION_vnc,
4274 /* Network options: */
4275 QEMU_OPTION_net,
4276 QEMU_OPTION_tftp,
4277 QEMU_OPTION_bootp,
4278 QEMU_OPTION_smb,
4279 QEMU_OPTION_redir,
4280 QEMU_OPTION_bt,
4282 /* i386 target only: */
4283 QEMU_OPTION_win2k_hack,
4284 QEMU_OPTION_rtc_td_hack,
4285 QEMU_OPTION_no_fd_bootchk,
4286 QEMU_OPTION_no_acpi,
4287 QEMU_OPTION_no_hpet,
4288 QEMU_OPTION_acpitable,
4290 /* Linux boot specific: */
4291 QEMU_OPTION_kernel,
4292 QEMU_OPTION_append,
4293 QEMU_OPTION_initrd,
4295 /* Debug/Expert options: */
4296 QEMU_OPTION_serial,
4297 QEMU_OPTION_parallel,
4298 QEMU_OPTION_monitor,
4299 QEMU_OPTION_pidfile,
4300 QEMU_OPTION_S,
4301 QEMU_OPTION_s,
4302 QEMU_OPTION_p,
4303 QEMU_OPTION_d,
4304 QEMU_OPTION_hdachs,
4305 QEMU_OPTION_L,
4306 QEMU_OPTION_bios,
4307 QEMU_OPTION_kernel_kqemu,
4308 QEMU_OPTION_no_kqemu,
4309 QEMU_OPTION_enable_kvm,
4310 QEMU_OPTION_enable_nesting,
4311 QEMU_OPTION_no_kvm,
4312 QEMU_OPTION_no_kvm_irqchip,
4313 QEMU_OPTION_no_kvm_pit,
4314 QEMU_OPTION_no_kvm_pit_reinjection,
4315 #if defined(TARGET_I386) || defined(TARGET_X86_64) || defined(TARGET_IA64) || defined(__linux__)
4316 QEMU_OPTION_pcidevice,
4317 #endif
4318 QEMU_OPTION_no_reboot,
4319 QEMU_OPTION_no_shutdown,
4320 QEMU_OPTION_loadvm,
4321 QEMU_OPTION_daemonize,
4322 QEMU_OPTION_option_rom,
4323 QEMU_OPTION_cpu_vendor,
4324 QEMU_OPTION_nvram,
4325 QEMU_OPTION_prom_env,
4326 QEMU_OPTION_clock,
4327 QEMU_OPTION_localtime,
4328 QEMU_OPTION_startdate,
4329 QEMU_OPTION_icount,
4330 QEMU_OPTION_echr,
4331 QEMU_OPTION_virtiocon,
4332 QEMU_OPTION_show_cursor,
4333 QEMU_OPTION_semihosting,
4334 QEMU_OPTION_old_param,
4335 QEMU_OPTION_tb_size,
4336 QEMU_OPTION_incoming,
4337 QEMU_OPTION_chroot,
4338 QEMU_OPTION_runas,
4339 QEMU_OPTION_tdf,
4340 QEMU_OPTION_kvm_shadow_memory,
4341 QEMU_OPTION_mempath,
4342 #ifdef MAP_POPULATE
4343 QEMU_OPTION_mem_prealloc,
4344 #endif
4347 typedef struct QEMUOption {
4348 const char *name;
4349 int flags;
4350 int index;
4351 } QEMUOption;
4353 static const QEMUOption qemu_options[] = {
4354 /* Please keep in synch with help, QEMU_OPTION_ enums, and
4355 qemu-doc.texi */
4356 /* Standard options: */
4357 { "h", 0, QEMU_OPTION_h },
4358 { "help", 0, QEMU_OPTION_h },
4359 { "M", HAS_ARG, QEMU_OPTION_M },
4360 { "cpu", HAS_ARG, QEMU_OPTION_cpu },
4361 { "smp", HAS_ARG, QEMU_OPTION_smp },
4362 { "fda", HAS_ARG, QEMU_OPTION_fda },
4363 { "fdb", HAS_ARG, QEMU_OPTION_fdb },
4364 { "hda", HAS_ARG, QEMU_OPTION_hda },
4365 { "hdb", HAS_ARG, QEMU_OPTION_hdb },
4366 { "hdc", HAS_ARG, QEMU_OPTION_hdc },
4367 { "hdd", HAS_ARG, QEMU_OPTION_hdd },
4368 { "cdrom", HAS_ARG, QEMU_OPTION_cdrom },
4369 { "drive", HAS_ARG, QEMU_OPTION_drive },
4370 { "mtdblock", HAS_ARG, QEMU_OPTION_mtdblock },
4371 { "sd", HAS_ARG, QEMU_OPTION_sd },
4372 { "pflash", HAS_ARG, QEMU_OPTION_pflash },
4373 { "boot", HAS_ARG, QEMU_OPTION_boot },
4374 { "snapshot", 0, QEMU_OPTION_snapshot },
4375 { "m", HAS_ARG, QEMU_OPTION_m },
4376 { "k", HAS_ARG, QEMU_OPTION_k },
4377 #ifdef HAS_AUDIO
4378 { "audio-help", 0, QEMU_OPTION_audio_help },
4379 { "soundhw", HAS_ARG, QEMU_OPTION_soundhw },
4380 #endif
4381 { "usb", 0, QEMU_OPTION_usb },
4382 { "usbdevice", HAS_ARG, QEMU_OPTION_usbdevice },
4383 { "name", HAS_ARG, QEMU_OPTION_name },
4384 { "uuid", HAS_ARG, QEMU_OPTION_uuid },
4386 /* Display options: */
4387 { "nographic", 0, QEMU_OPTION_nographic },
4388 #ifdef CONFIG_CURSES
4389 { "curses", 0, QEMU_OPTION_curses },
4390 #endif
4391 #ifdef CONFIG_SDL
4392 { "no-frame", 0, QEMU_OPTION_no_frame },
4393 { "alt-grab", 0, QEMU_OPTION_alt_grab },
4394 { "no-quit", 0, QEMU_OPTION_no_quit },
4395 { "sdl", 0, QEMU_OPTION_sdl },
4396 #endif
4397 { "portrait", 0, QEMU_OPTION_portrait },
4398 { "vga", HAS_ARG, QEMU_OPTION_vga },
4399 { "full-screen", 0, QEMU_OPTION_full_screen },
4400 #if defined(TARGET_PPC) || defined(TARGET_SPARC)
4401 { "g", 1, QEMU_OPTION_g },
4402 #endif
4403 { "vnc", HAS_ARG, QEMU_OPTION_vnc },
4405 /* Network options: */
4406 { "net", HAS_ARG, QEMU_OPTION_net},
4407 #ifdef CONFIG_SLIRP
4408 { "tftp", HAS_ARG, QEMU_OPTION_tftp },
4409 { "bootp", HAS_ARG, QEMU_OPTION_bootp },
4410 #ifndef _WIN32
4411 { "smb", HAS_ARG, QEMU_OPTION_smb },
4412 #endif
4413 { "redir", HAS_ARG, QEMU_OPTION_redir },
4414 #endif
4415 { "bt", HAS_ARG, QEMU_OPTION_bt },
4416 #ifdef TARGET_I386
4417 /* i386 target only: */
4418 { "win2k-hack", 0, QEMU_OPTION_win2k_hack },
4419 { "rtc-td-hack", 0, QEMU_OPTION_rtc_td_hack },
4420 { "no-fd-bootchk", 0, QEMU_OPTION_no_fd_bootchk },
4421 { "no-acpi", 0, QEMU_OPTION_no_acpi },
4422 { "no-hpet", 0, QEMU_OPTION_no_hpet },
4423 { "acpitable", HAS_ARG, QEMU_OPTION_acpitable },
4424 #endif
4426 /* Linux boot specific: */
4427 { "kernel", HAS_ARG, QEMU_OPTION_kernel },
4428 { "append", HAS_ARG, QEMU_OPTION_append },
4429 { "initrd", HAS_ARG, QEMU_OPTION_initrd },
4431 /* Debug/Expert options: */
4432 { "serial", HAS_ARG, QEMU_OPTION_serial },
4433 { "parallel", HAS_ARG, QEMU_OPTION_parallel },
4434 { "monitor", HAS_ARG, QEMU_OPTION_monitor },
4435 { "pidfile", HAS_ARG, QEMU_OPTION_pidfile },
4436 { "S", 0, QEMU_OPTION_S },
4437 { "s", 0, QEMU_OPTION_s },
4438 { "p", HAS_ARG, QEMU_OPTION_p },
4439 { "d", HAS_ARG, QEMU_OPTION_d },
4440 { "hdachs", HAS_ARG, QEMU_OPTION_hdachs },
4441 { "L", HAS_ARG, QEMU_OPTION_L },
4442 { "bios", HAS_ARG, QEMU_OPTION_bios },
4443 #ifdef USE_KQEMU
4444 { "kernel-kqemu", 0, QEMU_OPTION_kernel_kqemu },
4445 { "no-kqemu", 0, QEMU_OPTION_no_kqemu },
4446 #endif
4447 #ifdef CONFIG_KVM
4448 { "enable-kvm", 0, QEMU_OPTION_enable_kvm },
4449 #endif
4450 #ifdef USE_KVM
4451 #ifndef NO_CPU_EMULATION
4452 { "no-kvm", 0, QEMU_OPTION_no_kvm },
4453 #endif
4454 { "no-kvm-irqchip", 0, QEMU_OPTION_no_kvm_irqchip },
4455 { "no-kvm-pit", 0, QEMU_OPTION_no_kvm_pit },
4456 { "no-kvm-pit-reinjection", 0, QEMU_OPTION_no_kvm_pit_reinjection },
4457 { "enable-nesting", 0, QEMU_OPTION_enable_nesting },
4458 #if defined(TARGET_I386) || defined(TARGET_X86_64) || defined(TARGET_IA64) || defined(__linux__)
4459 { "pcidevice", HAS_ARG, QEMU_OPTION_pcidevice },
4460 #endif
4461 #endif
4462 { "no-reboot", 0, QEMU_OPTION_no_reboot },
4463 { "no-shutdown", 0, QEMU_OPTION_no_shutdown },
4464 { "loadvm", HAS_ARG, QEMU_OPTION_loadvm },
4465 { "daemonize", 0, QEMU_OPTION_daemonize },
4466 { "option-rom", HAS_ARG, QEMU_OPTION_option_rom },
4467 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
4468 { "prom-env", HAS_ARG, QEMU_OPTION_prom_env },
4469 #endif
4470 { "clock", HAS_ARG, QEMU_OPTION_clock },
4471 { "localtime", 0, QEMU_OPTION_localtime },
4472 { "startdate", HAS_ARG, QEMU_OPTION_startdate },
4473 { "icount", HAS_ARG, QEMU_OPTION_icount },
4474 { "echr", HAS_ARG, QEMU_OPTION_echr },
4475 { "virtioconsole", HAS_ARG, QEMU_OPTION_virtiocon },
4476 { "show-cursor", 0, QEMU_OPTION_show_cursor },
4477 #if defined(TARGET_ARM) || defined(TARGET_M68K)
4478 { "semihosting", 0, QEMU_OPTION_semihosting },
4479 #endif
4480 { "tdf", 0, QEMU_OPTION_tdf }, /* enable time drift fix */
4481 { "kvm-shadow-memory", HAS_ARG, QEMU_OPTION_kvm_shadow_memory },
4482 { "nvram", HAS_ARG, QEMU_OPTION_nvram },
4483 { "cpu-vendor", HAS_ARG, QEMU_OPTION_cpu_vendor },
4484 #if defined(TARGET_ARM)
4485 { "old-param", 0, QEMU_OPTION_old_param },
4486 #endif
4487 { "tb-size", HAS_ARG, QEMU_OPTION_tb_size },
4488 { "incoming", HAS_ARG, QEMU_OPTION_incoming },
4489 { "chroot", HAS_ARG, QEMU_OPTION_chroot },
4490 { "runas", HAS_ARG, QEMU_OPTION_runas },
4491 { "mem-path", HAS_ARG, QEMU_OPTION_mempath },
4492 #ifdef MAP_POPULATE
4493 { "mem-prealloc", 0, QEMU_OPTION_mem_prealloc },
4494 #endif
4495 { NULL },
4498 #ifdef HAS_AUDIO
4499 struct soundhw soundhw[] = {
4500 #ifdef HAS_AUDIO_CHOICE
4501 #if defined(TARGET_I386) || defined(TARGET_MIPS)
4503 "pcspk",
4504 "PC speaker",
4507 { .init_isa = pcspk_audio_init }
4509 #endif
4511 #ifdef CONFIG_SB16
4513 "sb16",
4514 "Creative Sound Blaster 16",
4517 { .init_isa = SB16_init }
4519 #endif
4521 #ifdef CONFIG_CS4231A
4523 "cs4231a",
4524 "CS4231A",
4527 { .init_isa = cs4231a_init }
4529 #endif
4531 #ifdef CONFIG_ADLIB
4533 "adlib",
4534 #ifdef HAS_YMF262
4535 "Yamaha YMF262 (OPL3)",
4536 #else
4537 "Yamaha YM3812 (OPL2)",
4538 #endif
4541 { .init_isa = Adlib_init }
4543 #endif
4545 #ifdef CONFIG_GUS
4547 "gus",
4548 "Gravis Ultrasound GF1",
4551 { .init_isa = GUS_init }
4553 #endif
4555 #ifdef CONFIG_AC97
4557 "ac97",
4558 "Intel 82801AA AC97 Audio",
4561 { .init_pci = ac97_init }
4563 #endif
4565 #ifdef CONFIG_ES1370
4567 "es1370",
4568 "ENSONIQ AudioPCI ES1370",
4571 { .init_pci = es1370_init }
4573 #endif
4575 #endif /* HAS_AUDIO_CHOICE */
4577 { NULL, NULL, 0, 0, { NULL } }
4580 static void select_soundhw (const char *optarg)
4582 struct soundhw *c;
4584 if (*optarg == '?') {
4585 show_valid_cards:
4587 printf ("Valid sound card names (comma separated):\n");
4588 for (c = soundhw; c->name; ++c) {
4589 printf ("%-11s %s\n", c->name, c->descr);
4591 printf ("\n-soundhw all will enable all of the above\n");
4592 exit (*optarg != '?');
4594 else {
4595 size_t l;
4596 const char *p;
4597 char *e;
4598 int bad_card = 0;
4600 if (!strcmp (optarg, "all")) {
4601 for (c = soundhw; c->name; ++c) {
4602 c->enabled = 1;
4604 return;
4607 p = optarg;
4608 while (*p) {
4609 e = strchr (p, ',');
4610 l = !e ? strlen (p) : (size_t) (e - p);
4612 for (c = soundhw; c->name; ++c) {
4613 if (!strncmp (c->name, p, l)) {
4614 c->enabled = 1;
4615 break;
4619 if (!c->name) {
4620 if (l > 80) {
4621 fprintf (stderr,
4622 "Unknown sound card name (too big to show)\n");
4624 else {
4625 fprintf (stderr, "Unknown sound card name `%.*s'\n",
4626 (int) l, p);
4628 bad_card = 1;
4630 p += l + (e != NULL);
4633 if (bad_card)
4634 goto show_valid_cards;
4637 #endif
4639 static void select_vgahw (const char *p)
4641 const char *opts;
4643 if (strstart(p, "std", &opts)) {
4644 std_vga_enabled = 1;
4645 cirrus_vga_enabled = 0;
4646 vmsvga_enabled = 0;
4647 } else if (strstart(p, "cirrus", &opts)) {
4648 cirrus_vga_enabled = 1;
4649 std_vga_enabled = 0;
4650 vmsvga_enabled = 0;
4651 } else if (strstart(p, "vmware", &opts)) {
4652 cirrus_vga_enabled = 0;
4653 std_vga_enabled = 0;
4654 vmsvga_enabled = 1;
4655 } else if (strstart(p, "none", &opts)) {
4656 cirrus_vga_enabled = 0;
4657 std_vga_enabled = 0;
4658 vmsvga_enabled = 0;
4659 } else {
4660 invalid_vga:
4661 fprintf(stderr, "Unknown vga type: %s\n", p);
4662 exit(1);
4664 while (*opts) {
4665 const char *nextopt;
4667 if (strstart(opts, ",retrace=", &nextopt)) {
4668 opts = nextopt;
4669 if (strstart(opts, "dumb", &nextopt))
4670 vga_retrace_method = VGA_RETRACE_DUMB;
4671 else if (strstart(opts, "precise", &nextopt))
4672 vga_retrace_method = VGA_RETRACE_PRECISE;
4673 else goto invalid_vga;
4674 } else goto invalid_vga;
4675 opts = nextopt;
4679 #ifdef _WIN32
4680 static BOOL WINAPI qemu_ctrl_handler(DWORD type)
4682 exit(STATUS_CONTROL_C_EXIT);
4683 return TRUE;
4685 #endif
4687 static int qemu_uuid_parse(const char *str, uint8_t *uuid)
4689 int ret;
4691 if(strlen(str) != 36)
4692 return -1;
4694 ret = sscanf(str, UUID_FMT, &uuid[0], &uuid[1], &uuid[2], &uuid[3],
4695 &uuid[4], &uuid[5], &uuid[6], &uuid[7], &uuid[8], &uuid[9],
4696 &uuid[10], &uuid[11], &uuid[12], &uuid[13], &uuid[14], &uuid[15]);
4698 if(ret != 16)
4699 return -1;
4701 return 0;
4704 #define MAX_NET_CLIENTS 32
4706 static int saved_argc;
4707 static char **saved_argv;
4709 void qemu_get_launch_info(int *argc, char ***argv, int *opt_daemonize, const char **opt_incoming)
4711 *argc = saved_argc;
4712 *argv = saved_argv;
4713 *opt_daemonize = daemonize;
4714 *opt_incoming = incoming;
4717 #ifdef USE_KVM
4718 static int gethugepagesize(void)
4720 int ret, fd;
4721 char buf[4096];
4722 const char *needle = "Hugepagesize:";
4723 char *size;
4724 unsigned long hugepagesize;
4726 fd = open("/proc/meminfo", O_RDONLY);
4727 if (fd < 0) {
4728 perror("open");
4729 exit(0);
4732 ret = read(fd, buf, sizeof(buf));
4733 if (ret < 0) {
4734 perror("read");
4735 exit(0);
4738 size = strstr(buf, needle);
4739 if (!size)
4740 return 0;
4741 size += strlen(needle);
4742 hugepagesize = strtol(size, NULL, 0);
4743 return hugepagesize;
4746 static void *alloc_mem_area(size_t memory, unsigned long *len, const char *path)
4748 char *filename;
4749 void *area;
4750 int fd;
4751 #ifdef MAP_POPULATE
4752 int flags;
4753 #endif
4755 if (!kvm_has_sync_mmu()) {
4756 fprintf(stderr, "host lacks mmu notifiers, disabling --mem-path\n");
4757 return NULL;
4760 if (asprintf(&filename, "%s/kvm.XXXXXX", path) == -1)
4761 return NULL;
4763 hpagesize = gethugepagesize() * 1024;
4764 if (!hpagesize)
4765 return NULL;
4767 fd = mkstemp(filename);
4768 if (fd < 0) {
4769 perror("mkstemp");
4770 free(filename);
4771 return NULL;
4773 unlink(filename);
4774 free(filename);
4776 memory = (memory+hpagesize-1) & ~(hpagesize-1);
4779 * ftruncate is not supported by hugetlbfs in older
4780 * hosts, so don't bother checking for errors.
4781 * If anything goes wrong with it under other filesystems,
4782 * mmap will fail.
4784 ftruncate(fd, memory);
4786 #ifdef MAP_POPULATE
4787 /* NB: MAP_POPULATE won't exhaustively alloc all phys pages in the case
4788 * MAP_PRIVATE is requested. For mem_prealloc we mmap as MAP_SHARED
4789 * to sidestep this quirk.
4791 flags = mem_prealloc ? MAP_POPULATE|MAP_SHARED : MAP_PRIVATE;
4792 area = mmap(0, memory, PROT_READ|PROT_WRITE, flags, fd, 0);
4793 #else
4794 area = mmap(0, memory, PROT_READ|PROT_WRITE, MAP_PRIVATE, fd, 0);
4795 #endif
4796 if (area == MAP_FAILED) {
4797 perror("alloc_mem_area: can't mmap hugetlbfs pages");
4798 close(fd);
4799 return (NULL);
4801 *len = memory;
4802 return area;
4804 #endif
4806 static void *qemu_alloc_physram(unsigned long memory)
4808 void *area = NULL;
4809 #ifdef USE_KVM
4810 unsigned long map_len = memory;
4812 if (mem_path)
4813 area = alloc_mem_area(memory, &map_len, mem_path);
4814 #endif
4815 if (!area)
4816 area = qemu_vmalloc(memory);
4817 #ifdef USE_KVM
4818 if (kvm_setup_guest_memory(area, map_len))
4819 area = NULL;
4820 #endif
4821 return area;
4824 #ifndef _WIN32
4826 static void termsig_handler(int signal)
4828 qemu_system_shutdown_request();
4831 static void termsig_setup(void)
4833 struct sigaction act;
4835 memset(&act, 0, sizeof(act));
4836 act.sa_handler = termsig_handler;
4837 sigaction(SIGINT, &act, NULL);
4838 sigaction(SIGHUP, &act, NULL);
4839 sigaction(SIGTERM, &act, NULL);
4842 #endif
4844 int main(int argc, char **argv, char **envp)
4846 #ifdef CONFIG_GDBSTUB
4847 int use_gdbstub;
4848 const char *gdbstub_port;
4849 #endif
4850 uint32_t boot_devices_bitmap = 0;
4851 int i;
4852 int snapshot, linux_boot, net_boot;
4853 const char *initrd_filename;
4854 const char *kernel_filename, *kernel_cmdline;
4855 const char *boot_devices = "";
4856 DisplayState *ds;
4857 DisplayChangeListener *dcl;
4858 int cyls, heads, secs, translation;
4859 const char *net_clients[MAX_NET_CLIENTS];
4860 int nb_net_clients;
4861 const char *bt_opts[MAX_BT_CMDLINE];
4862 int nb_bt_opts;
4863 int hda_index;
4864 int optind;
4865 const char *r, *optarg;
4866 CharDriverState *monitor_hd = NULL;
4867 const char *monitor_device;
4868 const char *serial_devices[MAX_SERIAL_PORTS];
4869 int serial_device_index;
4870 const char *parallel_devices[MAX_PARALLEL_PORTS];
4871 int parallel_device_index;
4872 const char *virtio_consoles[MAX_VIRTIO_CONSOLES];
4873 int virtio_console_index;
4874 const char *loadvm = NULL;
4875 QEMUMachine *machine;
4876 const char *cpu_model;
4877 const char *usb_devices[MAX_USB_CMDLINE];
4878 int usb_devices_index;
4879 int fds[2];
4880 int tb_size;
4881 const char *pid_file = NULL;
4882 const char *incoming = NULL;
4883 int fd = 0;
4884 struct passwd *pwd = NULL;
4885 const char *chroot_dir = NULL;
4886 const char *run_as = NULL;
4888 qemu_cache_utils_init(envp);
4890 LIST_INIT (&vm_change_state_head);
4891 #ifndef _WIN32
4893 struct sigaction act;
4894 sigfillset(&act.sa_mask);
4895 act.sa_flags = 0;
4896 act.sa_handler = SIG_IGN;
4897 sigaction(SIGPIPE, &act, NULL);
4899 #else
4900 SetConsoleCtrlHandler(qemu_ctrl_handler, TRUE);
4901 /* Note: cpu_interrupt() is currently not SMP safe, so we force
4902 QEMU to run on a single CPU */
4904 HANDLE h;
4905 DWORD mask, smask;
4906 int i;
4907 h = GetCurrentProcess();
4908 if (GetProcessAffinityMask(h, &mask, &smask)) {
4909 for(i = 0; i < 32; i++) {
4910 if (mask & (1 << i))
4911 break;
4913 if (i != 32) {
4914 mask = 1 << i;
4915 SetProcessAffinityMask(h, mask);
4919 #endif
4921 register_machines();
4922 machine = first_machine;
4923 cpu_model = NULL;
4924 initrd_filename = NULL;
4925 ram_size = 0;
4926 vga_ram_size = VGA_RAM_SIZE;
4927 #ifdef CONFIG_GDBSTUB
4928 use_gdbstub = 0;
4929 gdbstub_port = DEFAULT_GDBSTUB_PORT;
4930 #endif
4931 snapshot = 0;
4932 nographic = 0;
4933 curses = 0;
4934 kernel_filename = NULL;
4935 kernel_cmdline = "";
4936 cyls = heads = secs = 0;
4937 translation = BIOS_ATA_TRANSLATION_AUTO;
4938 monitor_device = "vc:80Cx24C";
4940 serial_devices[0] = "vc:80Cx24C";
4941 for(i = 1; i < MAX_SERIAL_PORTS; i++)
4942 serial_devices[i] = NULL;
4943 serial_device_index = 0;
4945 parallel_devices[0] = "vc:80Cx24C";
4946 for(i = 1; i < MAX_PARALLEL_PORTS; i++)
4947 parallel_devices[i] = NULL;
4948 parallel_device_index = 0;
4950 for(i = 0; i < MAX_VIRTIO_CONSOLES; i++)
4951 virtio_consoles[i] = NULL;
4952 virtio_console_index = 0;
4954 usb_devices_index = 0;
4955 assigned_devices_index = 0;
4957 nb_net_clients = 0;
4958 nb_bt_opts = 0;
4959 nb_drives = 0;
4960 nb_drives_opt = 0;
4961 hda_index = -1;
4963 nb_nics = 0;
4965 tb_size = 0;
4966 autostart= 1;
4968 optind = 1;
4969 for(;;) {
4970 if (optind >= argc)
4971 break;
4972 r = argv[optind];
4973 if (r[0] != '-') {
4974 hda_index = drive_add(argv[optind++], HD_ALIAS, 0);
4975 } else {
4976 const QEMUOption *popt;
4978 optind++;
4979 /* Treat --foo the same as -foo. */
4980 if (r[1] == '-')
4981 r++;
4982 popt = qemu_options;
4983 for(;;) {
4984 if (!popt->name) {
4985 fprintf(stderr, "%s: invalid option -- '%s'\n",
4986 argv[0], r);
4987 exit(1);
4989 if (!strcmp(popt->name, r + 1))
4990 break;
4991 popt++;
4993 if (popt->flags & HAS_ARG) {
4994 if (optind >= argc) {
4995 fprintf(stderr, "%s: option '%s' requires an argument\n",
4996 argv[0], r);
4997 exit(1);
4999 optarg = argv[optind++];
5000 } else {
5001 optarg = NULL;
5004 switch(popt->index) {
5005 case QEMU_OPTION_M:
5006 machine = find_machine(optarg);
5007 if (!machine) {
5008 QEMUMachine *m;
5009 printf("Supported machines are:\n");
5010 for(m = first_machine; m != NULL; m = m->next) {
5011 printf("%-10s %s%s\n",
5012 m->name, m->desc,
5013 m == first_machine ? " (default)" : "");
5015 exit(*optarg != '?');
5017 break;
5018 case QEMU_OPTION_cpu:
5019 /* hw initialization will check this */
5020 if (*optarg == '?') {
5021 /* XXX: implement xxx_cpu_list for targets that still miss it */
5022 #if defined(cpu_list)
5023 cpu_list(stdout, &fprintf);
5024 #endif
5025 exit(0);
5026 } else {
5027 cpu_model = optarg;
5029 break;
5030 case QEMU_OPTION_initrd:
5031 initrd_filename = optarg;
5032 break;
5033 case QEMU_OPTION_hda:
5034 if (cyls == 0)
5035 hda_index = drive_add(optarg, HD_ALIAS, 0);
5036 else
5037 hda_index = drive_add(optarg, HD_ALIAS
5038 ",cyls=%d,heads=%d,secs=%d%s",
5039 0, cyls, heads, secs,
5040 translation == BIOS_ATA_TRANSLATION_LBA ?
5041 ",trans=lba" :
5042 translation == BIOS_ATA_TRANSLATION_NONE ?
5043 ",trans=none" : "");
5044 break;
5045 case QEMU_OPTION_hdb:
5046 case QEMU_OPTION_hdc:
5047 case QEMU_OPTION_hdd:
5048 drive_add(optarg, HD_ALIAS, popt->index - QEMU_OPTION_hda);
5049 break;
5050 case QEMU_OPTION_drive:
5051 drive_add(NULL, "%s", optarg);
5052 break;
5053 case QEMU_OPTION_mtdblock:
5054 drive_add(optarg, MTD_ALIAS);
5055 break;
5056 case QEMU_OPTION_sd:
5057 drive_add(optarg, SD_ALIAS);
5058 break;
5059 case QEMU_OPTION_pflash:
5060 drive_add(optarg, PFLASH_ALIAS);
5061 break;
5062 case QEMU_OPTION_snapshot:
5063 snapshot = 1;
5064 break;
5065 case QEMU_OPTION_hdachs:
5067 const char *p;
5068 p = optarg;
5069 cyls = strtol(p, (char **)&p, 0);
5070 if (cyls < 1 || cyls > 16383)
5071 goto chs_fail;
5072 if (*p != ',')
5073 goto chs_fail;
5074 p++;
5075 heads = strtol(p, (char **)&p, 0);
5076 if (heads < 1 || heads > 16)
5077 goto chs_fail;
5078 if (*p != ',')
5079 goto chs_fail;
5080 p++;
5081 secs = strtol(p, (char **)&p, 0);
5082 if (secs < 1 || secs > 63)
5083 goto chs_fail;
5084 if (*p == ',') {
5085 p++;
5086 if (!strcmp(p, "none"))
5087 translation = BIOS_ATA_TRANSLATION_NONE;
5088 else if (!strcmp(p, "lba"))
5089 translation = BIOS_ATA_TRANSLATION_LBA;
5090 else if (!strcmp(p, "auto"))
5091 translation = BIOS_ATA_TRANSLATION_AUTO;
5092 else
5093 goto chs_fail;
5094 } else if (*p != '\0') {
5095 chs_fail:
5096 fprintf(stderr, "qemu: invalid physical CHS format\n");
5097 exit(1);
5099 if (hda_index != -1)
5100 snprintf(drives_opt[hda_index].opt,
5101 sizeof(drives_opt[hda_index].opt),
5102 HD_ALIAS ",cyls=%d,heads=%d,secs=%d%s",
5103 0, cyls, heads, secs,
5104 translation == BIOS_ATA_TRANSLATION_LBA ?
5105 ",trans=lba" :
5106 translation == BIOS_ATA_TRANSLATION_NONE ?
5107 ",trans=none" : "");
5109 break;
5110 case QEMU_OPTION_nographic:
5111 nographic = 1;
5112 break;
5113 #ifdef CONFIG_CURSES
5114 case QEMU_OPTION_curses:
5115 curses = 1;
5116 break;
5117 #endif
5118 case QEMU_OPTION_portrait:
5119 graphic_rotate = 1;
5120 break;
5121 case QEMU_OPTION_kernel:
5122 kernel_filename = optarg;
5123 break;
5124 case QEMU_OPTION_append:
5125 kernel_cmdline = optarg;
5126 break;
5127 case QEMU_OPTION_cdrom:
5128 drive_add(optarg, CDROM_ALIAS);
5129 break;
5130 case QEMU_OPTION_boot:
5131 boot_devices = optarg;
5132 /* We just do some generic consistency checks */
5134 /* Could easily be extended to 64 devices if needed */
5135 const char *p;
5137 boot_devices_bitmap = 0;
5138 for (p = boot_devices; *p != '\0'; p++) {
5139 /* Allowed boot devices are:
5140 * a b : floppy disk drives
5141 * c ... f : IDE disk drives
5142 * g ... m : machine implementation dependant drives
5143 * n ... p : network devices
5144 * It's up to each machine implementation to check
5145 * if the given boot devices match the actual hardware
5146 * implementation and firmware features.
5148 if (*p < 'a' || *p > 'q') {
5149 fprintf(stderr, "Invalid boot device '%c'\n", *p);
5150 exit(1);
5152 if (boot_devices_bitmap & (1 << (*p - 'a'))) {
5153 fprintf(stderr,
5154 "Boot device '%c' was given twice\n",*p);
5155 exit(1);
5157 boot_devices_bitmap |= 1 << (*p - 'a');
5160 break;
5161 case QEMU_OPTION_fda:
5162 case QEMU_OPTION_fdb:
5163 drive_add(optarg, FD_ALIAS, popt->index - QEMU_OPTION_fda);
5164 break;
5165 #ifdef TARGET_I386
5166 case QEMU_OPTION_no_fd_bootchk:
5167 fd_bootchk = 0;
5168 break;
5169 #endif
5170 case QEMU_OPTION_net:
5171 if (nb_net_clients >= MAX_NET_CLIENTS) {
5172 fprintf(stderr, "qemu: too many network clients\n");
5173 exit(1);
5175 net_clients[nb_net_clients] = optarg;
5176 nb_net_clients++;
5177 break;
5178 #ifdef CONFIG_SLIRP
5179 case QEMU_OPTION_tftp:
5180 tftp_prefix = optarg;
5181 break;
5182 case QEMU_OPTION_bootp:
5183 bootp_filename = optarg;
5184 break;
5185 #ifndef _WIN32
5186 case QEMU_OPTION_smb:
5187 net_slirp_smb(optarg);
5188 break;
5189 #endif
5190 case QEMU_OPTION_redir:
5191 net_slirp_redir(optarg);
5192 break;
5193 #endif
5194 case QEMU_OPTION_bt:
5195 if (nb_bt_opts >= MAX_BT_CMDLINE) {
5196 fprintf(stderr, "qemu: too many bluetooth options\n");
5197 exit(1);
5199 bt_opts[nb_bt_opts++] = optarg;
5200 break;
5201 #ifdef HAS_AUDIO
5202 case QEMU_OPTION_audio_help:
5203 AUD_help ();
5204 exit (0);
5205 break;
5206 case QEMU_OPTION_soundhw:
5207 select_soundhw (optarg);
5208 break;
5209 #endif
5210 case QEMU_OPTION_h:
5211 help(0);
5212 break;
5213 case QEMU_OPTION_m: {
5214 uint64_t value;
5215 char *ptr;
5217 value = strtoul(optarg, &ptr, 10);
5218 switch (*ptr) {
5219 case 0: case 'M': case 'm':
5220 value <<= 20;
5221 break;
5222 case 'G': case 'g':
5223 value <<= 30;
5224 break;
5225 default:
5226 fprintf(stderr, "qemu: invalid ram size: %s\n", optarg);
5227 exit(1);
5230 /* On 32-bit hosts, QEMU is limited by virtual address space */
5231 if (value > (2047 << 20)
5232 #ifndef USE_KQEMU
5233 && HOST_LONG_BITS == 32
5234 #endif
5236 fprintf(stderr, "qemu: at most 2047 MB RAM can be simulated\n");
5237 exit(1);
5239 if (value != (uint64_t)(ram_addr_t)value) {
5240 fprintf(stderr, "qemu: ram size too large\n");
5241 exit(1);
5243 ram_size = value;
5244 break;
5246 case QEMU_OPTION_d:
5248 int mask;
5249 const CPULogItem *item;
5251 mask = cpu_str_to_log_mask(optarg);
5252 if (!mask) {
5253 printf("Log items (comma separated):\n");
5254 for(item = cpu_log_items; item->mask != 0; item++) {
5255 printf("%-10s %s\n", item->name, item->help);
5257 exit(1);
5259 cpu_set_log(mask);
5261 break;
5262 #ifdef CONFIG_GDBSTUB
5263 case QEMU_OPTION_s:
5264 use_gdbstub = 1;
5265 break;
5266 case QEMU_OPTION_p:
5267 gdbstub_port = optarg;
5268 break;
5269 #endif
5270 case QEMU_OPTION_L:
5271 bios_dir = optarg;
5272 break;
5273 case QEMU_OPTION_bios:
5274 bios_name = optarg;
5275 break;
5276 case QEMU_OPTION_S:
5277 autostart = 0;
5278 break;
5279 case QEMU_OPTION_k:
5280 keyboard_layout = optarg;
5281 break;
5282 case QEMU_OPTION_localtime:
5283 rtc_utc = 0;
5284 break;
5285 case QEMU_OPTION_vga:
5286 select_vgahw (optarg);
5287 break;
5288 case QEMU_OPTION_g:
5290 const char *p;
5291 int w, h, depth;
5292 p = optarg;
5293 w = strtol(p, (char **)&p, 10);
5294 if (w <= 0) {
5295 graphic_error:
5296 fprintf(stderr, "qemu: invalid resolution or depth\n");
5297 exit(1);
5299 if (*p != 'x')
5300 goto graphic_error;
5301 p++;
5302 h = strtol(p, (char **)&p, 10);
5303 if (h <= 0)
5304 goto graphic_error;
5305 if (*p == 'x') {
5306 p++;
5307 depth = strtol(p, (char **)&p, 10);
5308 if (depth != 8 && depth != 15 && depth != 16 &&
5309 depth != 24 && depth != 32)
5310 goto graphic_error;
5311 } else if (*p == '\0') {
5312 depth = graphic_depth;
5313 } else {
5314 goto graphic_error;
5317 graphic_width = w;
5318 graphic_height = h;
5319 graphic_depth = depth;
5321 break;
5322 case QEMU_OPTION_echr:
5324 char *r;
5325 term_escape_char = strtol(optarg, &r, 0);
5326 if (r == optarg)
5327 printf("Bad argument to echr\n");
5328 break;
5330 case QEMU_OPTION_monitor:
5331 monitor_device = optarg;
5332 break;
5333 case QEMU_OPTION_serial:
5334 if (serial_device_index >= MAX_SERIAL_PORTS) {
5335 fprintf(stderr, "qemu: too many serial ports\n");
5336 exit(1);
5338 serial_devices[serial_device_index] = optarg;
5339 serial_device_index++;
5340 break;
5341 case QEMU_OPTION_virtiocon:
5342 if (virtio_console_index >= MAX_VIRTIO_CONSOLES) {
5343 fprintf(stderr, "qemu: too many virtio consoles\n");
5344 exit(1);
5346 virtio_consoles[virtio_console_index] = optarg;
5347 virtio_console_index++;
5348 break;
5349 case QEMU_OPTION_parallel:
5350 if (parallel_device_index >= MAX_PARALLEL_PORTS) {
5351 fprintf(stderr, "qemu: too many parallel ports\n");
5352 exit(1);
5354 parallel_devices[parallel_device_index] = optarg;
5355 parallel_device_index++;
5356 break;
5357 case QEMU_OPTION_loadvm:
5358 loadvm = optarg;
5359 break;
5360 case QEMU_OPTION_full_screen:
5361 full_screen = 1;
5362 break;
5363 #ifdef CONFIG_SDL
5364 case QEMU_OPTION_no_frame:
5365 no_frame = 1;
5366 break;
5367 case QEMU_OPTION_alt_grab:
5368 alt_grab = 1;
5369 break;
5370 case QEMU_OPTION_no_quit:
5371 no_quit = 1;
5372 break;
5373 case QEMU_OPTION_sdl:
5374 sdl = 1;
5375 break;
5376 #endif
5377 case QEMU_OPTION_pidfile:
5378 pid_file = optarg;
5379 break;
5380 #ifdef TARGET_I386
5381 case QEMU_OPTION_win2k_hack:
5382 win2k_install_hack = 1;
5383 break;
5384 case QEMU_OPTION_rtc_td_hack:
5385 rtc_td_hack = 1;
5386 break;
5387 case QEMU_OPTION_acpitable:
5388 if(acpi_table_add(optarg) < 0) {
5389 fprintf(stderr, "Wrong acpi table provided\n");
5390 exit(1);
5392 break;
5393 #endif
5394 #ifdef USE_KQEMU
5395 case QEMU_OPTION_no_kqemu:
5396 kqemu_allowed = 0;
5397 break;
5398 case QEMU_OPTION_kernel_kqemu:
5399 kqemu_allowed = 2;
5400 break;
5401 #endif
5402 #ifdef CONFIG_KVM
5403 case QEMU_OPTION_enable_kvm:
5404 kvm_allowed = 1;
5405 #ifdef USE_KQEMU
5406 kqemu_allowed = 0;
5407 #endif
5408 break;
5409 #endif
5410 #ifdef USE_KVM
5411 case QEMU_OPTION_no_kvm:
5412 kvm_allowed = 0;
5413 break;
5414 case QEMU_OPTION_no_kvm_irqchip: {
5415 kvm_irqchip = 0;
5416 kvm_pit = 0;
5417 break;
5419 case QEMU_OPTION_no_kvm_pit: {
5420 kvm_pit = 0;
5421 break;
5423 case QEMU_OPTION_no_kvm_pit_reinjection: {
5424 kvm_pit_reinject = 0;
5425 break;
5427 case QEMU_OPTION_enable_nesting: {
5428 kvm_nested = 1;
5429 break;
5431 #if defined(TARGET_I386) || defined(TARGET_X86_64) || defined(TARGET_IA64) || defined(__linux__)
5432 case QEMU_OPTION_pcidevice:
5433 if (assigned_devices_index >= MAX_DEV_ASSIGN_CMDLINE) {
5434 fprintf(stderr, "Too many assigned devices\n");
5435 exit(1);
5437 assigned_devices[assigned_devices_index] = optarg;
5438 assigned_devices_index++;
5439 break;
5440 #endif
5441 #endif
5442 case QEMU_OPTION_usb:
5443 usb_enabled = 1;
5444 break;
5445 case QEMU_OPTION_usbdevice:
5446 usb_enabled = 1;
5447 if (usb_devices_index >= MAX_USB_CMDLINE) {
5448 fprintf(stderr, "Too many USB devices\n");
5449 exit(1);
5451 usb_devices[usb_devices_index] = optarg;
5452 usb_devices_index++;
5453 break;
5454 case QEMU_OPTION_smp:
5455 smp_cpus = atoi(optarg);
5456 if (smp_cpus < 1) {
5457 fprintf(stderr, "Invalid number of CPUs\n");
5458 exit(1);
5460 break;
5461 case QEMU_OPTION_vnc:
5462 vnc_display = optarg;
5463 break;
5464 case QEMU_OPTION_no_acpi:
5465 acpi_enabled = 0;
5466 break;
5467 case QEMU_OPTION_no_hpet:
5468 no_hpet = 1;
5469 break;
5470 case QEMU_OPTION_no_reboot:
5471 no_reboot = 1;
5472 break;
5473 case QEMU_OPTION_no_shutdown:
5474 no_shutdown = 1;
5475 break;
5476 case QEMU_OPTION_show_cursor:
5477 cursor_hide = 0;
5478 break;
5479 case QEMU_OPTION_uuid:
5480 if(qemu_uuid_parse(optarg, qemu_uuid) < 0) {
5481 fprintf(stderr, "Fail to parse UUID string."
5482 " Wrong format.\n");
5483 exit(1);
5485 break;
5486 case QEMU_OPTION_daemonize:
5487 daemonize = 1;
5488 break;
5489 case QEMU_OPTION_option_rom:
5490 if (nb_option_roms >= MAX_OPTION_ROMS) {
5491 fprintf(stderr, "Too many option ROMs\n");
5492 exit(1);
5494 option_rom[nb_option_roms] = optarg;
5495 nb_option_roms++;
5496 break;
5497 case QEMU_OPTION_semihosting:
5498 semihosting_enabled = 1;
5499 break;
5500 case QEMU_OPTION_tdf:
5501 time_drift_fix = 1;
5502 break;
5503 case QEMU_OPTION_kvm_shadow_memory:
5504 kvm_shadow_memory = (int64_t)atoi(optarg) * 1024 * 1024 / 4096;
5505 break;
5506 case QEMU_OPTION_mempath:
5507 mem_path = optarg;
5508 break;
5509 #ifdef MAP_POPULATE
5510 case QEMU_OPTION_mem_prealloc:
5511 mem_prealloc = !mem_prealloc;
5512 break;
5513 #endif
5514 case QEMU_OPTION_name:
5515 qemu_name = optarg;
5516 break;
5517 #if defined(TARGET_SPARC) || defined(TARGET_PPC)
5518 case QEMU_OPTION_prom_env:
5519 if (nb_prom_envs >= MAX_PROM_ENVS) {
5520 fprintf(stderr, "Too many prom variables\n");
5521 exit(1);
5523 prom_envs[nb_prom_envs] = optarg;
5524 nb_prom_envs++;
5525 break;
5526 #endif
5527 case QEMU_OPTION_cpu_vendor:
5528 cpu_vendor_string = optarg;
5529 break;
5530 #ifdef TARGET_ARM
5531 case QEMU_OPTION_old_param:
5532 old_param = 1;
5533 break;
5534 #endif
5535 case QEMU_OPTION_clock:
5536 configure_alarms(optarg);
5537 break;
5538 case QEMU_OPTION_startdate:
5540 struct tm tm;
5541 time_t rtc_start_date;
5542 if (!strcmp(optarg, "now")) {
5543 rtc_date_offset = -1;
5544 } else {
5545 if (sscanf(optarg, "%d-%d-%dT%d:%d:%d",
5546 &tm.tm_year,
5547 &tm.tm_mon,
5548 &tm.tm_mday,
5549 &tm.tm_hour,
5550 &tm.tm_min,
5551 &tm.tm_sec) == 6) {
5552 /* OK */
5553 } else if (sscanf(optarg, "%d-%d-%d",
5554 &tm.tm_year,
5555 &tm.tm_mon,
5556 &tm.tm_mday) == 3) {
5557 tm.tm_hour = 0;
5558 tm.tm_min = 0;
5559 tm.tm_sec = 0;
5560 } else {
5561 goto date_fail;
5563 tm.tm_year -= 1900;
5564 tm.tm_mon--;
5565 rtc_start_date = mktimegm(&tm);
5566 if (rtc_start_date == -1) {
5567 date_fail:
5568 fprintf(stderr, "Invalid date format. Valid format are:\n"
5569 "'now' or '2006-06-17T16:01:21' or '2006-06-17'\n");
5570 exit(1);
5572 rtc_date_offset = time(NULL) - rtc_start_date;
5575 break;
5576 case QEMU_OPTION_tb_size:
5577 tb_size = strtol(optarg, NULL, 0);
5578 if (tb_size < 0)
5579 tb_size = 0;
5580 break;
5581 case QEMU_OPTION_icount:
5582 use_icount = 1;
5583 if (strcmp(optarg, "auto") == 0) {
5584 icount_time_shift = -1;
5585 } else {
5586 icount_time_shift = strtol(optarg, NULL, 0);
5588 break;
5589 case QEMU_OPTION_incoming:
5590 incoming = optarg;
5591 break;
5592 case QEMU_OPTION_chroot:
5593 chroot_dir = optarg;
5594 break;
5595 case QEMU_OPTION_runas:
5596 run_as = optarg;
5597 case QEMU_OPTION_nvram:
5598 nvram = optarg;
5599 break;
5604 #if defined(CONFIG_KVM) && defined(USE_KQEMU)
5605 if (kvm_allowed && kqemu_allowed) {
5606 fprintf(stderr,
5607 "You can not enable both KVM and kqemu at the same time\n");
5608 exit(1);
5610 #endif
5612 machine->max_cpus = machine->max_cpus ?: 1; /* Default to UP */
5613 if (smp_cpus > machine->max_cpus) {
5614 fprintf(stderr, "Number of SMP cpus requested (%d), exceeds max cpus "
5615 "supported by machine `%s' (%d)\n", smp_cpus, machine->name,
5616 machine->max_cpus);
5617 exit(1);
5620 if (nographic) {
5621 if (serial_device_index == 0)
5622 serial_devices[0] = "stdio";
5623 if (parallel_device_index == 0)
5624 parallel_devices[0] = "null";
5625 if (strncmp(monitor_device, "vc", 2) == 0)
5626 monitor_device = "stdio";
5629 #ifndef _WIN32
5630 if (daemonize) {
5631 pid_t pid;
5633 if (pipe(fds) == -1)
5634 exit(1);
5636 pid = fork();
5637 if (pid > 0) {
5638 uint8_t status;
5639 ssize_t len;
5641 close(fds[1]);
5643 again:
5644 len = read(fds[0], &status, 1);
5645 if (len == -1 && (errno == EINTR))
5646 goto again;
5648 if (len != 1)
5649 exit(1);
5650 else if (status == 1) {
5651 fprintf(stderr, "Could not acquire pidfile\n");
5652 exit(1);
5653 } else
5654 exit(0);
5655 } else if (pid < 0)
5656 exit(1);
5658 setsid();
5660 pid = fork();
5661 if (pid > 0)
5662 exit(0);
5663 else if (pid < 0)
5664 exit(1);
5666 umask(027);
5668 signal(SIGTSTP, SIG_IGN);
5669 signal(SIGTTOU, SIG_IGN);
5670 signal(SIGTTIN, SIG_IGN);
5672 #endif
5674 #ifdef USE_KVM
5675 if (kvm_enabled()) {
5676 if (kvm_qemu_init() < 0) {
5677 fprintf(stderr, "Could not initialize KVM, will disable KVM support\n");
5678 #ifdef NO_CPU_EMULATION
5679 fprintf(stderr, "Compiled with --disable-cpu-emulation, exiting.\n");
5680 exit(1);
5681 #endif
5682 kvm_allowed = 0;
5685 #endif
5687 if (pid_file && qemu_create_pidfile(pid_file) != 0) {
5688 if (daemonize) {
5689 uint8_t status = 1;
5690 write(fds[1], &status, 1);
5691 } else
5692 fprintf(stderr, "Could not acquire pid file\n");
5693 exit(1);
5696 #ifdef USE_KQEMU
5697 if (smp_cpus > 1)
5698 kqemu_allowed = 0;
5699 #endif
5700 linux_boot = (kernel_filename != NULL);
5701 net_boot = (boot_devices_bitmap >> ('n' - 'a')) & 0xF;
5703 if (!linux_boot && net_boot == 0 &&
5704 !machine->nodisk_ok && nb_drives_opt == 0)
5705 help(1);
5707 if (!linux_boot && *kernel_cmdline != '\0') {
5708 fprintf(stderr, "-append only allowed with -kernel option\n");
5709 exit(1);
5712 if (!linux_boot && initrd_filename != NULL) {
5713 fprintf(stderr, "-initrd only allowed with -kernel option\n");
5714 exit(1);
5717 /* boot to floppy or the default cd if no hard disk defined yet */
5718 if (!boot_devices[0]) {
5719 boot_devices = "cad";
5721 setvbuf(stdout, NULL, _IOLBF, 0);
5723 init_timers();
5724 if (init_timer_alarm() < 0) {
5725 fprintf(stderr, "could not initialize alarm timer\n");
5726 exit(1);
5728 if (use_icount && icount_time_shift < 0) {
5729 use_icount = 2;
5730 /* 125MIPS seems a reasonable initial guess at the guest speed.
5731 It will be corrected fairly quickly anyway. */
5732 icount_time_shift = 3;
5733 init_icount_adjust();
5736 #ifdef _WIN32
5737 socket_init();
5738 #endif
5740 /* init network clients */
5741 if (nb_net_clients == 0) {
5742 /* if no clients, we use a default config */
5743 net_clients[nb_net_clients++] = "nic";
5744 #ifdef CONFIG_SLIRP
5745 net_clients[nb_net_clients++] = "user";
5746 #endif
5749 for(i = 0;i < nb_net_clients; i++) {
5750 if (net_client_parse(net_clients[i]) < 0)
5751 exit(1);
5753 net_client_check();
5755 #ifdef TARGET_I386
5756 /* XXX: this should be moved in the PC machine instantiation code */
5757 if (net_boot != 0) {
5758 int netroms = 0;
5759 for (i = 0; i < nb_nics && i < 4; i++) {
5760 const char *model = nd_table[i].model;
5761 char buf[1024];
5762 if (net_boot & (1 << i)) {
5763 if (model == NULL)
5764 model = "rtl8139";
5765 snprintf(buf, sizeof(buf), "%s/pxe-%s.bin", bios_dir, model);
5766 if (get_image_size(buf) > 0) {
5767 if (nb_option_roms >= MAX_OPTION_ROMS) {
5768 fprintf(stderr, "Too many option ROMs\n");
5769 exit(1);
5771 option_rom[nb_option_roms] = strdup(buf);
5772 nb_option_roms++;
5773 netroms++;
5777 if (netroms == 0) {
5778 fprintf(stderr, "No valid PXE rom found for network device\n");
5779 exit(1);
5782 #endif
5784 /* init the bluetooth world */
5785 for (i = 0; i < nb_bt_opts; i++)
5786 if (bt_parse(bt_opts[i]))
5787 exit(1);
5789 /* init the memory */
5790 phys_ram_size = machine->ram_require & ~RAMSIZE_FIXED;
5792 if (machine->ram_require & RAMSIZE_FIXED) {
5793 if (ram_size > 0) {
5794 if (ram_size < phys_ram_size) {
5795 fprintf(stderr, "Machine `%s' requires %llu bytes of memory\n",
5796 machine->name, (unsigned long long) phys_ram_size);
5797 exit(-1);
5800 phys_ram_size = ram_size;
5801 } else
5802 ram_size = phys_ram_size;
5803 } else {
5804 if (ram_size == 0)
5805 ram_size = DEFAULT_RAM_SIZE * 1024 * 1024;
5807 phys_ram_size += ram_size;
5810 /* Initialize kvm */
5811 #if defined(TARGET_I386) || defined(TARGET_X86_64)
5812 #define KVM_EXTRA_PAGES 3
5813 #else
5814 #define KVM_EXTRA_PAGES 0
5815 #endif
5816 if (kvm_enabled()) {
5817 phys_ram_size += KVM_EXTRA_PAGES * TARGET_PAGE_SIZE;
5818 if (kvm_qemu_create_context() < 0) {
5819 fprintf(stderr, "Could not create KVM context\n");
5820 exit(1);
5824 phys_ram_base = qemu_alloc_physram(phys_ram_size);
5825 if (!phys_ram_base) {
5826 fprintf(stderr, "Could not allocate physical memory\n");
5827 exit(1);
5830 /* init the dynamic translator */
5831 cpu_exec_init_all(tb_size * 1024 * 1024);
5833 bdrv_init();
5834 dma_helper_init();
5836 /* we always create the cdrom drive, even if no disk is there */
5838 if (nb_drives_opt < MAX_DRIVES)
5839 drive_add(NULL, CDROM_ALIAS);
5841 /* we always create at least one floppy */
5843 if (nb_drives_opt < MAX_DRIVES)
5844 drive_add(NULL, FD_ALIAS, 0);
5846 /* we always create one sd slot, even if no card is in it */
5848 if (nb_drives_opt < MAX_DRIVES)
5849 drive_add(NULL, SD_ALIAS);
5851 /* open the virtual block devices
5852 * note that migration with device
5853 * hot add/remove is broken.
5855 for(i = 0; i < nb_drives_opt; i++)
5856 if (drive_init(&drives_opt[i], snapshot, machine) == -1)
5857 exit(1);
5859 register_savevm("timer", 0, 2, timer_save, timer_load, NULL);
5860 register_savevm_live("ram", 0, 3, ram_save_live, NULL, ram_load, NULL);
5862 #ifndef _WIN32
5863 /* must be after terminal init, SDL library changes signal handlers */
5864 termsig_setup();
5865 #endif
5867 /* Maintain compatibility with multiple stdio monitors */
5868 if (!strcmp(monitor_device,"stdio")) {
5869 for (i = 0; i < MAX_SERIAL_PORTS; i++) {
5870 const char *devname = serial_devices[i];
5871 if (devname && !strcmp(devname,"mon:stdio")) {
5872 monitor_device = NULL;
5873 break;
5874 } else if (devname && !strcmp(devname,"stdio")) {
5875 monitor_device = NULL;
5876 serial_devices[i] = "mon:stdio";
5877 break;
5882 #ifdef KVM_UPSTREAM
5883 if (kvm_enabled()) {
5884 int ret;
5886 ret = kvm_init(smp_cpus);
5887 if (ret < 0) {
5888 fprintf(stderr, "failed to initialize KVM\n");
5889 exit(1);
5892 #endif
5894 if (monitor_device) {
5895 monitor_hd = qemu_chr_open("monitor", monitor_device, NULL);
5896 if (!monitor_hd) {
5897 fprintf(stderr, "qemu: could not open monitor device '%s'\n", monitor_device);
5898 exit(1);
5902 for(i = 0; i < MAX_SERIAL_PORTS; i++) {
5903 const char *devname = serial_devices[i];
5904 if (devname && strcmp(devname, "none")) {
5905 char label[32];
5906 snprintf(label, sizeof(label), "serial%d", i);
5907 serial_hds[i] = qemu_chr_open(label, devname, NULL);
5908 if (!serial_hds[i]) {
5909 fprintf(stderr, "qemu: could not open serial device '%s'\n",
5910 devname);
5911 exit(1);
5916 for(i = 0; i < MAX_PARALLEL_PORTS; i++) {
5917 const char *devname = parallel_devices[i];
5918 if (devname && strcmp(devname, "none")) {
5919 char label[32];
5920 snprintf(label, sizeof(label), "parallel%d", i);
5921 parallel_hds[i] = qemu_chr_open(label, devname, NULL);
5922 if (!parallel_hds[i]) {
5923 fprintf(stderr, "qemu: could not open parallel device '%s'\n",
5924 devname);
5925 exit(1);
5930 for(i = 0; i < MAX_VIRTIO_CONSOLES; i++) {
5931 const char *devname = virtio_consoles[i];
5932 if (devname && strcmp(devname, "none")) {
5933 char label[32];
5934 snprintf(label, sizeof(label), "virtcon%d", i);
5935 virtcon_hds[i] = qemu_chr_open(label, devname, NULL);
5936 if (!virtcon_hds[i]) {
5937 fprintf(stderr, "qemu: could not open virtio console '%s'\n",
5938 devname);
5939 exit(1);
5944 if (kvm_enabled())
5945 kvm_init_ap();
5947 machine->init(ram_size, vga_ram_size, boot_devices,
5948 kernel_filename, kernel_cmdline, initrd_filename, cpu_model);
5950 current_machine = machine;
5952 /* Set KVM's vcpu state to qemu's initial CPUState. */
5953 if (kvm_enabled()) {
5954 int ret;
5956 ret = kvm_sync_vcpus();
5957 if (ret < 0) {
5958 fprintf(stderr, "failed to initialize vcpus\n");
5959 exit(1);
5963 /* init USB devices */
5964 if (usb_enabled) {
5965 for(i = 0; i < usb_devices_index; i++) {
5966 if (usb_device_add(usb_devices[i], 0) < 0) {
5967 fprintf(stderr, "Warning: could not add USB device %s\n",
5968 usb_devices[i]);
5973 if (!display_state)
5974 dumb_display_init();
5975 /* just use the first displaystate for the moment */
5976 ds = display_state;
5977 /* terminal init */
5978 if (nographic) {
5979 if (curses) {
5980 fprintf(stderr, "fatal: -nographic can't be used with -curses\n");
5981 exit(1);
5983 } else {
5984 #if defined(CONFIG_CURSES)
5985 if (curses) {
5986 /* At the moment curses cannot be used with other displays */
5987 curses_display_init(ds, full_screen);
5988 } else
5989 #endif
5991 if (vnc_display != NULL) {
5992 vnc_display_init(ds);
5993 if (vnc_display_open(ds, vnc_display) < 0)
5994 exit(1);
5996 #if defined(CONFIG_SDL)
5997 if (sdl || !vnc_display)
5998 sdl_display_init(ds, full_screen, no_frame);
5999 #elif defined(CONFIG_COCOA)
6000 if (sdl || !vnc_display)
6001 cocoa_display_init(ds, full_screen);
6002 #endif
6005 dpy_resize(ds);
6007 dcl = ds->listeners;
6008 while (dcl != NULL) {
6009 if (dcl->dpy_refresh != NULL) {
6010 ds->gui_timer = qemu_new_timer(rt_clock, gui_update, ds);
6011 qemu_mod_timer(ds->gui_timer, qemu_get_clock(rt_clock));
6013 dcl = dcl->next;
6016 if (nographic || (vnc_display && !sdl)) {
6017 nographic_timer = qemu_new_timer(rt_clock, nographic_update, NULL);
6018 qemu_mod_timer(nographic_timer, qemu_get_clock(rt_clock));
6021 text_consoles_set_display(display_state);
6022 qemu_chr_initial_reset();
6024 if (monitor_device && monitor_hd)
6025 monitor_init(monitor_hd, !nographic);
6027 for(i = 0; i < MAX_SERIAL_PORTS; i++) {
6028 const char *devname = serial_devices[i];
6029 if (devname && strcmp(devname, "none")) {
6030 char label[32];
6031 snprintf(label, sizeof(label), "serial%d", i);
6032 if (strstart(devname, "vc", 0))
6033 qemu_chr_printf(serial_hds[i], "serial%d console\r\n", i);
6037 for(i = 0; i < MAX_PARALLEL_PORTS; i++) {
6038 const char *devname = parallel_devices[i];
6039 if (devname && strcmp(devname, "none")) {
6040 char label[32];
6041 snprintf(label, sizeof(label), "parallel%d", i);
6042 if (strstart(devname, "vc", 0))
6043 qemu_chr_printf(parallel_hds[i], "parallel%d console\r\n", i);
6047 for(i = 0; i < MAX_VIRTIO_CONSOLES; i++) {
6048 const char *devname = virtio_consoles[i];
6049 if (virtcon_hds[i] && devname) {
6050 char label[32];
6051 snprintf(label, sizeof(label), "virtcon%d", i);
6052 if (strstart(devname, "vc", 0))
6053 qemu_chr_printf(virtcon_hds[i], "virtio console%d\r\n", i);
6057 #ifdef CONFIG_GDBSTUB
6058 if (use_gdbstub) {
6059 /* XXX: use standard host:port notation and modify options
6060 accordingly. */
6061 if (gdbserver_start(gdbstub_port) < 0) {
6062 fprintf(stderr, "qemu: could not open gdbstub device on port '%s'\n",
6063 gdbstub_port);
6064 exit(1);
6067 #endif
6069 if (loadvm)
6070 do_loadvm(loadvm);
6072 if (incoming) {
6073 autostart = 0; /* fixme how to deal with -daemonize */
6074 qemu_start_incoming_migration(incoming);
6077 if (autostart)
6078 vm_start();
6080 if (daemonize) {
6081 uint8_t status = 0;
6082 ssize_t len;
6084 again1:
6085 len = write(fds[1], &status, 1);
6086 if (len == -1 && (errno == EINTR))
6087 goto again1;
6089 if (len != 1)
6090 exit(1);
6092 chdir("/");
6093 TFR(fd = open("/dev/null", O_RDWR));
6094 if (fd == -1)
6095 exit(1);
6098 #ifndef _WIN32
6099 if (run_as) {
6100 pwd = getpwnam(run_as);
6101 if (!pwd) {
6102 fprintf(stderr, "User \"%s\" doesn't exist\n", run_as);
6103 exit(1);
6107 if (chroot_dir) {
6108 if (chroot(chroot_dir) < 0) {
6109 fprintf(stderr, "chroot failed\n");
6110 exit(1);
6112 chdir("/");
6115 if (run_as) {
6116 if (setgid(pwd->pw_gid) < 0) {
6117 fprintf(stderr, "Failed to setgid(%d)\n", pwd->pw_gid);
6118 exit(1);
6120 if (setuid(pwd->pw_uid) < 0) {
6121 fprintf(stderr, "Failed to setuid(%d)\n", pwd->pw_uid);
6122 exit(1);
6124 if (setuid(0) != -1) {
6125 fprintf(stderr, "Dropping privileges failed\n");
6126 exit(1);
6129 #endif
6131 if (daemonize) {
6132 dup2(fd, 0);
6133 dup2(fd, 1);
6134 dup2(fd, 2);
6136 close(fd);
6139 main_loop();
6140 quit_timers();
6141 net_cleanup();
6143 return 0;