]> git.proxmox.com Git - qemu.git/blame - vl.c
ram migration: Properly reset statistics
[qemu.git] / vl.c
CommitLineData
0824d6fc 1/*
80cabfad 2 * QEMU System Emulator
5fafdf24 3 *
68d0f70e 4 * Copyright (c) 2003-2008 Fabrice Bellard
5fafdf24 5 *
1df912cf
FB
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:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
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.
0824d6fc 23 */
0824d6fc 24#include <unistd.h>
0824d6fc
FB
25#include <fcntl.h>
26#include <signal.h>
27#include <time.h>
0824d6fc 28#include <errno.h>
67b915a5 29#include <sys/time.h>
c88676f8 30#include <zlib.h>
67b915a5 31
71e72a19 32/* Needed early for CONFIG_BSD etc. */
d40cdb10
BS
33#include "config-host.h"
34
67b915a5 35#ifndef _WIN32
5cea8590 36#include <libgen.h>
0858532e 37#include <pwd.h>
67b915a5 38#include <sys/times.h>
f1510b2c 39#include <sys/wait.h>
67b915a5 40#include <termios.h>
67b915a5 41#include <sys/mman.h>
f1510b2c 42#include <sys/ioctl.h>
24646c7e 43#include <sys/resource.h>
f1510b2c 44#include <sys/socket.h>
c94c8d64 45#include <netinet/in.h>
24646c7e 46#include <net/if.h>
24646c7e 47#include <arpa/inet.h>
9d728e8c 48#include <dirent.h>
7c9d8e07 49#include <netdb.h>
cb4b976b 50#include <sys/select.h>
71e72a19 51#ifdef CONFIG_BSD
7d3505c5 52#include <sys/stat.h>
a167ba50 53#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
7d3505c5 54#include <libutil.h>
24646c7e
BS
55#else
56#include <util.h>
128ab2ff 57#endif
bbe813a2 58#else
223f0d72 59#ifdef __linux__
7d3505c5
FB
60#include <pty.h>
61#include <malloc.h>
fd872598 62#include <linux/rtc.h>
1889465a 63#include <sys/prctl.h>
bd494f4c
TS
64
65/* For the benefit of older linux systems which don't supply it,
66 we use a local copy of hpet.h. */
67/* #include <linux/hpet.h> */
68#include "hpet.h"
69
e57a8c0e 70#include <linux/ppdev.h>
5867c88a 71#include <linux/parport.h>
223f0d72
BS
72#endif
73#ifdef __sun__
d5d10bc3
TS
74#include <sys/stat.h>
75#include <sys/ethernet.h>
76#include <sys/sockio.h>
d5d10bc3
TS
77#include <netinet/arp.h>
78#include <netinet/in.h>
79#include <netinet/in_systm.h>
80#include <netinet/ip.h>
81#include <netinet/ip_icmp.h> // must come after ip.h
82#include <netinet/udp.h>
83#include <netinet/tcp.h>
84#include <net/if.h>
85#include <syslog.h>
86#include <stropts.h>
8d32cf0e
BS
87/* See MySQL bug #7156 (http://bugs.mysql.com/bug.php?id=7156) for
88 discussion about Solaris header problems */
89extern int madvise(caddr_t, size_t, int);
67b915a5 90#endif
7d3505c5 91#endif
ec530c81 92#endif
67b915a5 93
9892fbfb
BS
94#if defined(__OpenBSD__)
95#include <util.h>
96#endif
97
8a16d273
TS
98#if defined(CONFIG_VDE)
99#include <libvdeplug.h>
100#endif
101
67b915a5 102#ifdef _WIN32
49dc768d 103#include <windows.h>
4fddf62a 104#include <mmsystem.h>
67b915a5
FB
105#endif
106
73332e5c 107#ifdef CONFIG_SDL
59a36a2f 108#if defined(__APPLE__) || defined(main)
6693665a 109#include <SDL.h>
880fec5d 110int qemu_main(int argc, char **argv, char **envp);
111int main(int argc, char **argv)
112{
59a36a2f 113 return qemu_main(argc, argv, NULL);
880fec5d 114}
115#undef main
116#define main qemu_main
96bcd4f8 117#endif
73332e5c 118#endif /* CONFIG_SDL */
0824d6fc 119
5b0753e0
FB
120#ifdef CONFIG_COCOA
121#undef main
122#define main qemu_main
123#endif /* CONFIG_COCOA */
124
511d2b14
BS
125#include "hw/hw.h"
126#include "hw/boards.h"
127#include "hw/usb.h"
128#include "hw/pcmcia.h"
129#include "hw/pc.h"
130#include "hw/audiodev.h"
131#include "hw/isa.h"
132#include "hw/baum.h"
133#include "hw/bt.h"
9dd986cc 134#include "hw/watchdog.h"
b6f6e3d3 135#include "hw/smbios.h"
e37630ca 136#include "hw/xen.h"
bd3c948d 137#include "hw/qdev.h"
45a50b16 138#include "hw/loader.h"
5ef4efa4 139#include "bt-host.h"
511d2b14 140#include "net.h"
68ac40d2 141#include "net/slirp.h"
511d2b14
BS
142#include "monitor.h"
143#include "console.h"
144#include "sysemu.h"
145#include "gdbstub.h"
146#include "qemu-timer.h"
147#include "qemu-char.h"
148#include "cache-utils.h"
149#include "block.h"
c163b5ca 150#include "block_int.h"
151#include "block-migration.h"
a718acec 152#include "dma.h"
511d2b14
BS
153#include "audio/audio.h"
154#include "migration.h"
155#include "kvm.h"
156#include "balloon.h"
d3f24367 157#include "qemu-option.h"
7282a033 158#include "qemu-config.h"
511d2b14 159
0824d6fc 160#include "disas.h"
fc01f7e7 161
8a7ddc38 162#include "exec-all.h"
0824d6fc 163
511d2b14
BS
164#include "qemu_socket.h"
165
d918f23e 166#include "slirp/libslirp.h"
511d2b14 167
72cf2d4f
BS
168#include "qemu-queue.h"
169
9dc63a1e
BS
170//#define DEBUG_NET
171//#define DEBUG_SLIRP
330d0414 172
1bfe856e 173#define DEFAULT_RAM_SIZE 128
313aa567 174
ddd9bbd9
JK
175/* Maximum number of monitor devices */
176#define MAX_MONITOR_DEVICES 10
177
5cea8590 178static const char *data_dir;
1192dad8 179const char *bios_name = NULL;
e4bcb14c 180/* Note: drives_table[MAX_DRIVES] is a dummy block driver if none available
faea38e7 181 to store the VM snapshots */
72cf2d4f
BS
182struct drivelist drives = QTAILQ_HEAD_INITIALIZER(drives);
183struct driveoptlist driveopts = QTAILQ_HEAD_INITIALIZER(driveopts);
cb5a7aa8 184enum vga_retrace_method vga_retrace_method = VGA_RETRACE_DUMB;
3023f332 185static DisplayState *display_state;
993fbfdb 186DisplayType display_type = DT_DEFAULT;
3d11d0eb 187const char* keyboard_layout = NULL;
c227f099 188ram_addr_t ram_size;
c4b1fcc0 189int nb_nics;
7c9d8e07 190NICInfo nd_table[MAX_NICS];
8a7ddc38 191int vm_running;
d399f677 192int autostart;
f6503059
AZ
193static int rtc_utc = 1;
194static int rtc_date_offset = -1; /* -1 means no change */
6875204c 195QEMUClock *rtc_clock;
86176759 196int vga_interface_type = VGA_CIRRUS;
d827220b
FB
197#ifdef TARGET_SPARC
198int graphic_width = 1024;
199int graphic_height = 768;
eee0b836 200int graphic_depth = 8;
d827220b 201#else
1bfe856e
FB
202int graphic_width = 800;
203int graphic_height = 600;
e9b137c2 204int graphic_depth = 15;
eee0b836 205#endif
dbed7e40 206static int full_screen = 0;
634a21f6 207#ifdef CONFIG_SDL
dbed7e40 208static int no_frame = 0;
634a21f6 209#endif
667accab 210int no_quit = 0;
8d11df9e 211CharDriverState *serial_hds[MAX_SERIAL_PORTS];
6508fe59 212CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
9ede2fde 213CharDriverState *virtcon_hds[MAX_VIRTIO_CONSOLES];
a09db21f
FB
214#ifdef TARGET_I386
215int win2k_install_hack = 0;
73822ec8 216int rtc_td_hack = 0;
a09db21f 217#endif
bb36d470 218int usb_enabled = 0;
1b530a6d 219int singlestep = 0;
6a00d601 220int smp_cpus = 1;
6be68d7e 221int max_cpus = 0;
dc6b1c09
AP
222int smp_cores = 1;
223int smp_threads = 1;
73fc9742 224const char *vnc_display;
6515b203 225int acpi_enabled = 1;
16b29ae1 226int no_hpet = 0;
52ca8d6a 227int fd_bootchk = 1;
d1beab82 228int no_reboot = 0;
b2f76161 229int no_shutdown = 0;
9467cd46 230int cursor_hide = 1;
a171fe39 231int graphic_rotate = 0;
6b35e7bf 232uint8_t irq0override = 1;
b9e82a59 233#ifndef _WIN32
71e3ceb8 234int daemonize = 0;
b9e82a59 235#endif
09aaa160 236const char *watchdog;
9ae02555
TS
237const char *option_rom[MAX_OPTION_ROMS];
238int nb_option_roms;
8e71621f 239int semihosting_enabled = 0;
2b8f2d41
AZ
240#ifdef TARGET_ARM
241int old_param = 0;
242#endif
c35734b2 243const char *qemu_name;
3780e197 244int alt_grab = 0;
0ca9f8a4 245int ctrl_grab = 0;
95efd11c 246#if defined(TARGET_SPARC) || defined(TARGET_PPC)
66508601
BS
247unsigned int nb_prom_envs = 0;
248const char *prom_envs[MAX_PROM_ENVS];
249#endif
95387491 250int boot_menu;
0824d6fc 251
268a362c
AL
252int nb_numa_nodes;
253uint64_t node_mem[MAX_NODES];
254uint64_t node_cpumask[MAX_NODES];
255
ee5605e5
AZ
256static CPUState *cur_cpu;
257static CPUState *next_cpu;
43b96858 258static int timer_alarm_pending = 1;
bf20dc07 259/* Conversion factor from emulated instructions to virtual clock ticks. */
2e70f6ef 260static int icount_time_shift;
bf20dc07 261/* Arbitrarily pick 1MIPS as the minimum allowable speed. */
2e70f6ef
PB
262#define MAX_ICOUNT_SHIFT 10
263/* Compensate for varying guest execution speed. */
264static int64_t qemu_icount_bias;
dbed7e40
BS
265static QEMUTimer *icount_rt_timer;
266static QEMUTimer *icount_vm_timer;
9043b62d 267static QEMUTimer *nographic_timer;
ee5605e5 268
8fcb1b90
BS
269uint8_t qemu_uuid[16];
270
76e30d0f
JK
271static QEMUBootSetHandler *boot_set_handler;
272static void *boot_set_opaque;
273
0824d6fc 274/***********************************************************/
26aa7d72
FB
275/* x86 ISA bus support */
276
c227f099 277target_phys_addr_t isa_mem_base = 0;
3de388f6 278PicState2 *isa_pic;
0824d6fc 279
0824d6fc 280/***********************************************************/
0824d6fc
FB
281void hw_error(const char *fmt, ...)
282{
283 va_list ap;
6a00d601 284 CPUState *env;
0824d6fc
FB
285
286 va_start(ap, fmt);
287 fprintf(stderr, "qemu: hardware error: ");
288 vfprintf(stderr, fmt, ap);
289 fprintf(stderr, "\n");
6a00d601
FB
290 for(env = first_cpu; env != NULL; env = env->next_cpu) {
291 fprintf(stderr, "CPU #%d:\n", env->cpu_index);
0824d6fc 292#ifdef TARGET_I386
6a00d601 293 cpu_dump_state(env, stderr, fprintf, X86_DUMP_FPU);
c45886db 294#else
6a00d601 295 cpu_dump_state(env, stderr, fprintf, 0);
0824d6fc 296#endif
6a00d601 297 }
0824d6fc
FB
298 va_end(ap);
299 abort();
300}
1889465a
AK
301
302static void set_proc_name(const char *s)
303{
6ca8d0fd 304#if defined(__linux__) && defined(PR_SET_NAME)
1889465a
AK
305 char name[16];
306 if (!s)
307 return;
308 name[sizeof(name) - 1] = 0;
309 strncpy(name, s, sizeof(name));
310 /* Could rewrite argv[0] too, but that's a bit more complicated.
311 This simple way is enough for `top'. */
312 prctl(PR_SET_NAME, name);
313#endif
314}
df751fa8
AL
315
316/***************/
317/* ballooning */
318
319static QEMUBalloonEvent *qemu_balloon_event;
320void *qemu_balloon_event_opaque;
321
322void qemu_add_balloon_handler(QEMUBalloonEvent *func, void *opaque)
323{
324 qemu_balloon_event = func;
325 qemu_balloon_event_opaque = opaque;
326}
327
c227f099 328void qemu_balloon(ram_addr_t target)
df751fa8
AL
329{
330 if (qemu_balloon_event)
331 qemu_balloon_event(qemu_balloon_event_opaque, target);
332}
333
c227f099 334ram_addr_t qemu_balloon_status(void)
df751fa8
AL
335{
336 if (qemu_balloon_event)
337 return qemu_balloon_event(qemu_balloon_event_opaque, 0);
338 return 0;
339}
0824d6fc 340
63066f4f
FB
341/***********************************************************/
342/* keyboard/mouse */
343
344static QEMUPutKBDEvent *qemu_put_kbd_event;
345static void *qemu_put_kbd_event_opaque;
455204eb
TS
346static QEMUPutMouseEntry *qemu_put_mouse_event_head;
347static QEMUPutMouseEntry *qemu_put_mouse_event_current;
63066f4f
FB
348
349void qemu_add_kbd_event_handler(QEMUPutKBDEvent *func, void *opaque)
350{
351 qemu_put_kbd_event_opaque = opaque;
352 qemu_put_kbd_event = func;
353}
354
455204eb
TS
355QEMUPutMouseEntry *qemu_add_mouse_event_handler(QEMUPutMouseEvent *func,
356 void *opaque, int absolute,
357 const char *name)
63066f4f 358{
455204eb
TS
359 QEMUPutMouseEntry *s, *cursor;
360
361 s = qemu_mallocz(sizeof(QEMUPutMouseEntry));
455204eb
TS
362
363 s->qemu_put_mouse_event = func;
364 s->qemu_put_mouse_event_opaque = opaque;
365 s->qemu_put_mouse_event_absolute = absolute;
366 s->qemu_put_mouse_event_name = qemu_strdup(name);
367 s->next = NULL;
368
369 if (!qemu_put_mouse_event_head) {
370 qemu_put_mouse_event_head = qemu_put_mouse_event_current = s;
371 return s;
372 }
373
374 cursor = qemu_put_mouse_event_head;
375 while (cursor->next != NULL)
376 cursor = cursor->next;
377
378 cursor->next = s;
379 qemu_put_mouse_event_current = s;
380
381 return s;
382}
383
384void qemu_remove_mouse_event_handler(QEMUPutMouseEntry *entry)
385{
386 QEMUPutMouseEntry *prev = NULL, *cursor;
387
388 if (!qemu_put_mouse_event_head || entry == NULL)
389 return;
390
391 cursor = qemu_put_mouse_event_head;
392 while (cursor != NULL && cursor != entry) {
393 prev = cursor;
394 cursor = cursor->next;
395 }
396
397 if (cursor == NULL) // does not exist or list empty
398 return;
399 else if (prev == NULL) { // entry is head
400 qemu_put_mouse_event_head = cursor->next;
401 if (qemu_put_mouse_event_current == entry)
402 qemu_put_mouse_event_current = cursor->next;
403 qemu_free(entry->qemu_put_mouse_event_name);
404 qemu_free(entry);
405 return;
406 }
407
408 prev->next = entry->next;
409
410 if (qemu_put_mouse_event_current == entry)
411 qemu_put_mouse_event_current = prev;
412
413 qemu_free(entry->qemu_put_mouse_event_name);
414 qemu_free(entry);
63066f4f
FB
415}
416
417void kbd_put_keycode(int keycode)
418{
419 if (qemu_put_kbd_event) {
420 qemu_put_kbd_event(qemu_put_kbd_event_opaque, keycode);
421 }
422}
423
424void kbd_mouse_event(int dx, int dy, int dz, int buttons_state)
425{
455204eb
TS
426 QEMUPutMouseEvent *mouse_event;
427 void *mouse_event_opaque;
a171fe39 428 int width;
455204eb
TS
429
430 if (!qemu_put_mouse_event_current) {
431 return;
432 }
433
434 mouse_event =
435 qemu_put_mouse_event_current->qemu_put_mouse_event;
436 mouse_event_opaque =
437 qemu_put_mouse_event_current->qemu_put_mouse_event_opaque;
438
439 if (mouse_event) {
a171fe39
AZ
440 if (graphic_rotate) {
441 if (qemu_put_mouse_event_current->qemu_put_mouse_event_absolute)
442 width = 0x7fff;
443 else
b94ed577 444 width = graphic_width - 1;
a171fe39
AZ
445 mouse_event(mouse_event_opaque,
446 width - dy, dx, dz, buttons_state);
447 } else
448 mouse_event(mouse_event_opaque,
449 dx, dy, dz, buttons_state);
63066f4f
FB
450 }
451}
452
09b26c5e
FB
453int kbd_mouse_is_absolute(void)
454{
455204eb
TS
455 if (!qemu_put_mouse_event_current)
456 return 0;
457
458 return qemu_put_mouse_event_current->qemu_put_mouse_event_absolute;
459}
460
376253ec 461void do_info_mice(Monitor *mon)
455204eb
TS
462{
463 QEMUPutMouseEntry *cursor;
464 int index = 0;
465
466 if (!qemu_put_mouse_event_head) {
376253ec 467 monitor_printf(mon, "No mouse devices connected\n");
455204eb
TS
468 return;
469 }
470
376253ec 471 monitor_printf(mon, "Mouse devices available:\n");
455204eb
TS
472 cursor = qemu_put_mouse_event_head;
473 while (cursor != NULL) {
376253ec
AL
474 monitor_printf(mon, "%c Mouse #%d: %s\n",
475 (cursor == qemu_put_mouse_event_current ? '*' : ' '),
476 index, cursor->qemu_put_mouse_event_name);
455204eb
TS
477 index++;
478 cursor = cursor->next;
479 }
480}
481
d54908a5 482void do_mouse_set(Monitor *mon, const QDict *qdict)
455204eb
TS
483{
484 QEMUPutMouseEntry *cursor;
485 int i = 0;
d54908a5 486 int index = qdict_get_int(qdict, "index");
455204eb
TS
487
488 if (!qemu_put_mouse_event_head) {
376253ec 489 monitor_printf(mon, "No mouse devices connected\n");
455204eb
TS
490 return;
491 }
492
493 cursor = qemu_put_mouse_event_head;
494 while (cursor != NULL && index != i) {
495 i++;
496 cursor = cursor->next;
497 }
498
499 if (cursor != NULL)
500 qemu_put_mouse_event_current = cursor;
501 else
376253ec 502 monitor_printf(mon, "Mouse at given index not found\n");
09b26c5e
FB
503}
504
1dce7c3c
FB
505/* compute with 96 bit intermediate result: (a*b)/c */
506uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c)
0824d6fc 507{
1dce7c3c
FB
508 union {
509 uint64_t ll;
510 struct {
e2542fe2 511#ifdef HOST_WORDS_BIGENDIAN
1dce7c3c
FB
512 uint32_t high, low;
513#else
514 uint32_t low, high;
3b46e624 515#endif
1dce7c3c
FB
516 } l;
517 } u, res;
518 uint64_t rl, rh;
0824d6fc 519
1dce7c3c
FB
520 u.ll = a;
521 rl = (uint64_t)u.l.low * (uint64_t)b;
522 rh = (uint64_t)u.l.high * (uint64_t)b;
523 rh += (rl >> 32);
524 res.l.high = rh / c;
525 res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c;
526 return res.ll;
34865134
FB
527}
528
1dce7c3c
FB
529/***********************************************************/
530/* real time host monotonic timer */
34865134 531
21d5d12b
JK
532static int64_t get_clock_realtime(void)
533{
534 struct timeval tv;
535
536 gettimeofday(&tv, NULL);
537 return tv.tv_sec * 1000000000LL + (tv.tv_usec * 1000);
538}
539
1dce7c3c 540#ifdef WIN32
0824d6fc 541
1dce7c3c 542static int64_t clock_freq;
1115dde7 543
1dce7c3c 544static void init_get_clock(void)
1115dde7 545{
a8e5ac33
FB
546 LARGE_INTEGER freq;
547 int ret;
1dce7c3c
FB
548 ret = QueryPerformanceFrequency(&freq);
549 if (ret == 0) {
550 fprintf(stderr, "Could not calibrate ticks\n");
551 exit(1);
552 }
553 clock_freq = freq.QuadPart;
1115dde7
FB
554}
555
1dce7c3c 556static int64_t get_clock(void)
b8076a74 557{
1dce7c3c
FB
558 LARGE_INTEGER ti;
559 QueryPerformanceCounter(&ti);
274dfed8 560 return muldiv64(ti.QuadPart, get_ticks_per_sec(), clock_freq);
b8076a74
FB
561}
562
1dce7c3c 563#else
90cb9493 564
1dce7c3c
FB
565static int use_rt_clock;
566
567static void init_get_clock(void)
90cb9493 568{
1dce7c3c 569 use_rt_clock = 0;
c5e97233 570#if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD_version >= 500000) \
a167ba50 571 || defined(__DragonFly__) || defined(__FreeBSD_kernel__)
1dce7c3c
FB
572 {
573 struct timespec ts;
574 if (clock_gettime(CLOCK_MONOTONIC, &ts) == 0) {
575 use_rt_clock = 1;
576 }
577 }
578#endif
90cb9493
FB
579}
580
1dce7c3c 581static int64_t get_clock(void)
fdbb4691 582{
c5e97233 583#if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD_version >= 500000) \
a167ba50 584 || defined(__DragonFly__) || defined(__FreeBSD_kernel__)
1dce7c3c
FB
585 if (use_rt_clock) {
586 struct timespec ts;
587 clock_gettime(CLOCK_MONOTONIC, &ts);
588 return ts.tv_sec * 1000000000LL + ts.tv_nsec;
5fafdf24 589 } else
fdbb4691 590#endif
1dce7c3c
FB
591 {
592 /* XXX: using gettimeofday leads to problems if the date
593 changes, so it should be avoided. */
21d5d12b 594 return get_clock_realtime();
1dce7c3c 595 }
fdbb4691 596}
34865134
FB
597#endif
598
2e70f6ef
PB
599/* Return the virtual CPU time, based on the instruction counter. */
600static int64_t cpu_get_icount(void)
601{
602 int64_t icount;
603 CPUState *env = cpu_single_env;;
604 icount = qemu_icount;
605 if (env) {
606 if (!can_do_io(env))
607 fprintf(stderr, "Bad clock read\n");
608 icount -= (env->icount_decr.u16.low + env->icount_extra);
609 }
610 return qemu_icount_bias + (icount << icount_time_shift);
611}
612
1dce7c3c
FB
613/***********************************************************/
614/* guest cycle counter */
615
6f68e33e
JQ
616typedef struct TimersState {
617 int64_t cpu_ticks_prev;
618 int64_t cpu_ticks_offset;
619 int64_t cpu_clock_offset;
620 int32_t cpu_ticks_enabled;
274dfed8 621 int64_t dummy;
6f68e33e
JQ
622} TimersState;
623
624TimersState timers_state;
34865134 625
1dce7c3c
FB
626/* return the host CPU cycle counter and handle stop/restart */
627int64_t cpu_get_ticks(void)
34865134 628{
2e70f6ef
PB
629 if (use_icount) {
630 return cpu_get_icount();
631 }
6f68e33e
JQ
632 if (!timers_state.cpu_ticks_enabled) {
633 return timers_state.cpu_ticks_offset;
8a7ddc38 634 } else {
eade0f19
FB
635 int64_t ticks;
636 ticks = cpu_get_real_ticks();
6f68e33e 637 if (timers_state.cpu_ticks_prev > ticks) {
eade0f19
FB
638 /* Note: non increasing ticks may happen if the host uses
639 software suspend */
6f68e33e 640 timers_state.cpu_ticks_offset += timers_state.cpu_ticks_prev - ticks;
eade0f19 641 }
6f68e33e
JQ
642 timers_state.cpu_ticks_prev = ticks;
643 return ticks + timers_state.cpu_ticks_offset;
8a7ddc38 644 }
34865134
FB
645}
646
1dce7c3c
FB
647/* return the host CPU monotonic timer and handle stop/restart */
648static int64_t cpu_get_clock(void)
649{
650 int64_t ti;
6f68e33e
JQ
651 if (!timers_state.cpu_ticks_enabled) {
652 return timers_state.cpu_clock_offset;
1dce7c3c
FB
653 } else {
654 ti = get_clock();
6f68e33e 655 return ti + timers_state.cpu_clock_offset;
1dce7c3c
FB
656 }
657}
658
34865134
FB
659/* enable cpu_get_ticks() */
660void cpu_enable_ticks(void)
661{
6f68e33e
JQ
662 if (!timers_state.cpu_ticks_enabled) {
663 timers_state.cpu_ticks_offset -= cpu_get_real_ticks();
664 timers_state.cpu_clock_offset -= get_clock();
665 timers_state.cpu_ticks_enabled = 1;
8a7ddc38 666 }
34865134
FB
667}
668
669/* disable cpu_get_ticks() : the clock is stopped. You must not call
670 cpu_get_ticks() after that. */
671void cpu_disable_ticks(void)
672{
6f68e33e
JQ
673 if (timers_state.cpu_ticks_enabled) {
674 timers_state.cpu_ticks_offset = cpu_get_ticks();
675 timers_state.cpu_clock_offset = cpu_get_clock();
676 timers_state.cpu_ticks_enabled = 0;
8a7ddc38 677 }
34865134
FB
678}
679
1dce7c3c
FB
680/***********************************************************/
681/* timers */
5fafdf24 682
0fdddf80
JK
683#define QEMU_CLOCK_REALTIME 0
684#define QEMU_CLOCK_VIRTUAL 1
21d5d12b 685#define QEMU_CLOCK_HOST 2
8a7ddc38
FB
686
687struct QEMUClock {
688 int type;
689 /* XXX: add frequency */
690};
691
692struct QEMUTimer {
693 QEMUClock *clock;
694 int64_t expire_time;
695 QEMUTimerCB *cb;
696 void *opaque;
697 struct QEMUTimer *next;
698};
699
c8994013
TS
700struct qemu_alarm_timer {
701 char const *name;
efe75411 702 unsigned int flags;
c8994013
TS
703
704 int (*start)(struct qemu_alarm_timer *t);
705 void (*stop)(struct qemu_alarm_timer *t);
efe75411 706 void (*rearm)(struct qemu_alarm_timer *t);
c8994013
TS
707 void *priv;
708};
709
efe75411 710#define ALARM_FLAG_DYNTICKS 0x1
d5d08334 711#define ALARM_FLAG_EXPIRED 0x2
efe75411
TS
712
713static inline int alarm_has_dynticks(struct qemu_alarm_timer *t)
714{
e332340a 715 return t && (t->flags & ALARM_FLAG_DYNTICKS);
efe75411
TS
716}
717
718static void qemu_rearm_alarm_timer(struct qemu_alarm_timer *t)
719{
720 if (!alarm_has_dynticks(t))
721 return;
722
723 t->rearm(t);
724}
725
726/* TODO: MIN_TIMER_REARM_US should be optimized */
727#define MIN_TIMER_REARM_US 250
728
c8994013 729static struct qemu_alarm_timer *alarm_timer;
8a7ddc38 730
40c3bac3 731#ifdef _WIN32
c8994013
TS
732
733struct qemu_alarm_win32 {
734 MMRESULT timerId;
c8994013 735 unsigned int period;
ef28c4b0 736} alarm_win32_data = {0, -1};
c8994013
TS
737
738static int win32_start_timer(struct qemu_alarm_timer *t);
739static void win32_stop_timer(struct qemu_alarm_timer *t);
efe75411 740static void win32_rearm_timer(struct qemu_alarm_timer *t);
c8994013 741
40c3bac3 742#else
c8994013
TS
743
744static int unix_start_timer(struct qemu_alarm_timer *t);
745static void unix_stop_timer(struct qemu_alarm_timer *t);
746
231c6586
TS
747#ifdef __linux__
748
efe75411
TS
749static int dynticks_start_timer(struct qemu_alarm_timer *t);
750static void dynticks_stop_timer(struct qemu_alarm_timer *t);
751static void dynticks_rearm_timer(struct qemu_alarm_timer *t);
752
c40ec5a9
TS
753static int hpet_start_timer(struct qemu_alarm_timer *t);
754static void hpet_stop_timer(struct qemu_alarm_timer *t);
755
c8994013
TS
756static int rtc_start_timer(struct qemu_alarm_timer *t);
757static void rtc_stop_timer(struct qemu_alarm_timer *t);
758
efe75411 759#endif /* __linux__ */
8a7ddc38 760
c8994013
TS
761#endif /* _WIN32 */
762
2e70f6ef 763/* Correlation between real and virtual time is always going to be
bf20dc07 764 fairly approximate, so ignore small variation.
2e70f6ef
PB
765 When the guest is idle real and virtual time will be aligned in
766 the IO wait loop. */
274dfed8 767#define ICOUNT_WOBBLE (get_ticks_per_sec() / 10)
2e70f6ef
PB
768
769static void icount_adjust(void)
770{
771 int64_t cur_time;
772 int64_t cur_icount;
773 int64_t delta;
774 static int64_t last_delta;
775 /* If the VM is not running, then do nothing. */
776 if (!vm_running)
777 return;
778
779 cur_time = cpu_get_clock();
780 cur_icount = qemu_get_clock(vm_clock);
781 delta = cur_icount - cur_time;
782 /* FIXME: This is a very crude algorithm, somewhat prone to oscillation. */
783 if (delta > 0
784 && last_delta + ICOUNT_WOBBLE < delta * 2
785 && icount_time_shift > 0) {
786 /* The guest is getting too far ahead. Slow time down. */
787 icount_time_shift--;
788 }
789 if (delta < 0
790 && last_delta - ICOUNT_WOBBLE > delta * 2
791 && icount_time_shift < MAX_ICOUNT_SHIFT) {
792 /* The guest is getting too far behind. Speed time up. */
793 icount_time_shift++;
794 }
795 last_delta = delta;
796 qemu_icount_bias = cur_icount - (qemu_icount << icount_time_shift);
797}
798
799static void icount_adjust_rt(void * opaque)
800{
801 qemu_mod_timer(icount_rt_timer,
802 qemu_get_clock(rt_clock) + 1000);
803 icount_adjust();
804}
805
806static void icount_adjust_vm(void * opaque)
807{
808 qemu_mod_timer(icount_vm_timer,
274dfed8 809 qemu_get_clock(vm_clock) + get_ticks_per_sec() / 10);
2e70f6ef
PB
810 icount_adjust();
811}
812
813static void init_icount_adjust(void)
814{
815 /* Have both realtime and virtual time triggers for speed adjustment.
816 The realtime trigger catches emulated time passing too slowly,
817 the virtual time trigger catches emulated time passing too fast.
818 Realtime triggers occur even when idle, so use them less frequently
819 than VM triggers. */
820 icount_rt_timer = qemu_new_timer(rt_clock, icount_adjust_rt, NULL);
821 qemu_mod_timer(icount_rt_timer,
822 qemu_get_clock(rt_clock) + 1000);
823 icount_vm_timer = qemu_new_timer(vm_clock, icount_adjust_vm, NULL);
824 qemu_mod_timer(icount_vm_timer,
274dfed8 825 qemu_get_clock(vm_clock) + get_ticks_per_sec() / 10);
2e70f6ef
PB
826}
827
c8994013 828static struct qemu_alarm_timer alarm_timers[] = {
efe75411 829#ifndef _WIN32
231c6586 830#ifdef __linux__
efe75411
TS
831 {"dynticks", ALARM_FLAG_DYNTICKS, dynticks_start_timer,
832 dynticks_stop_timer, dynticks_rearm_timer, NULL},
c40ec5a9 833 /* HPET - if available - is preferred */
efe75411 834 {"hpet", 0, hpet_start_timer, hpet_stop_timer, NULL, NULL},
c40ec5a9 835 /* ...otherwise try RTC */
efe75411 836 {"rtc", 0, rtc_start_timer, rtc_stop_timer, NULL, NULL},
c8994013 837#endif
efe75411 838 {"unix", 0, unix_start_timer, unix_stop_timer, NULL, NULL},
c8994013 839#else
efe75411
TS
840 {"dynticks", ALARM_FLAG_DYNTICKS, win32_start_timer,
841 win32_stop_timer, win32_rearm_timer, &alarm_win32_data},
842 {"win32", 0, win32_start_timer,
843 win32_stop_timer, NULL, &alarm_win32_data},
c8994013
TS
844#endif
845 {NULL, }
846};
847
3f47aa8c 848static void show_available_alarms(void)
f3dcfada
TS
849{
850 int i;
851
852 printf("Available alarm timers, in order of precedence:\n");
853 for (i = 0; alarm_timers[i].name; i++)
854 printf("%s\n", alarm_timers[i].name);
855}
856
857static void configure_alarms(char const *opt)
858{
859 int i;
860 int cur = 0;
b1503cda 861 int count = ARRAY_SIZE(alarm_timers) - 1;
f3dcfada
TS
862 char *arg;
863 char *name;
2e70f6ef 864 struct qemu_alarm_timer tmp;
f3dcfada 865
3adda04c 866 if (!strcmp(opt, "?")) {
f3dcfada
TS
867 show_available_alarms();
868 exit(0);
869 }
870
73ffc805 871 arg = qemu_strdup(opt);
f3dcfada
TS
872
873 /* Reorder the array */
874 name = strtok(arg, ",");
875 while (name) {
e2b577e5 876 for (i = 0; i < count && alarm_timers[i].name; i++) {
f3dcfada
TS
877 if (!strcmp(alarm_timers[i].name, name))
878 break;
879 }
880
881 if (i == count) {
882 fprintf(stderr, "Unknown clock %s\n", name);
883 goto next;
884 }
885
886 if (i < cur)
887 /* Ignore */
888 goto next;
889
890 /* Swap */
891 tmp = alarm_timers[i];
892 alarm_timers[i] = alarm_timers[cur];
893 alarm_timers[cur] = tmp;
894
895 cur++;
896next:
897 name = strtok(NULL, ",");
898 }
899
73ffc805 900 qemu_free(arg);
f3dcfada
TS
901
902 if (cur) {
2e70f6ef 903 /* Disable remaining timers */
f3dcfada
TS
904 for (i = cur; i < count; i++)
905 alarm_timers[i].name = NULL;
3adda04c
AJ
906 } else {
907 show_available_alarms();
908 exit(1);
f3dcfada 909 }
f3dcfada
TS
910}
911
21d5d12b
JK
912#define QEMU_NUM_CLOCKS 3
913
c8994013
TS
914QEMUClock *rt_clock;
915QEMUClock *vm_clock;
21d5d12b 916QEMUClock *host_clock;
c8994013 917
21d5d12b 918static QEMUTimer *active_timers[QEMU_NUM_CLOCKS];
c8994013 919
9596ebb7 920static QEMUClock *qemu_new_clock(int type)
8a7ddc38
FB
921{
922 QEMUClock *clock;
923 clock = qemu_mallocz(sizeof(QEMUClock));
8a7ddc38
FB
924 clock->type = type;
925 return clock;
926}
927
928QEMUTimer *qemu_new_timer(QEMUClock *clock, QEMUTimerCB *cb, void *opaque)
929{
930 QEMUTimer *ts;
931
932 ts = qemu_mallocz(sizeof(QEMUTimer));
933 ts->clock = clock;
934 ts->cb = cb;
935 ts->opaque = opaque;
936 return ts;
937}
938
939void qemu_free_timer(QEMUTimer *ts)
940{
941 qemu_free(ts);
942}
943
944/* stop a timer, but do not dealloc it */
945void qemu_del_timer(QEMUTimer *ts)
946{
947 QEMUTimer **pt, *t;
948
949 /* NOTE: this code must be signal safe because
950 qemu_timer_expired() can be called from a signal. */
951 pt = &active_timers[ts->clock->type];
952 for(;;) {
953 t = *pt;
954 if (!t)
955 break;
956 if (t == ts) {
957 *pt = t->next;
958 break;
959 }
960 pt = &t->next;
961 }
962}
963
964/* modify the current timer so that it will be fired when current_time
965 >= expire_time. The corresponding callback will be called. */
966void qemu_mod_timer(QEMUTimer *ts, int64_t expire_time)
967{
968 QEMUTimer **pt, *t;
969
970 qemu_del_timer(ts);
971
972 /* add the timer in the sorted list */
973 /* NOTE: this code must be signal safe because
974 qemu_timer_expired() can be called from a signal. */
975 pt = &active_timers[ts->clock->type];
976 for(;;) {
977 t = *pt;
978 if (!t)
979 break;
5fafdf24 980 if (t->expire_time > expire_time)
8a7ddc38
FB
981 break;
982 pt = &t->next;
983 }
984 ts->expire_time = expire_time;
985 ts->next = *pt;
986 *pt = ts;
d5d08334
AZ
987
988 /* Rearm if necessary */
2e70f6ef
PB
989 if (pt == &active_timers[ts->clock->type]) {
990 if ((alarm_timer->flags & ALARM_FLAG_EXPIRED) == 0) {
991 qemu_rearm_alarm_timer(alarm_timer);
992 }
993 /* Interrupt execution to force deadline recalculation. */
d9f75a4e
AL
994 if (use_icount)
995 qemu_notify_event();
2e70f6ef 996 }
8a7ddc38
FB
997}
998
999int qemu_timer_pending(QEMUTimer *ts)
1000{
1001 QEMUTimer *t;
1002 for(t = active_timers[ts->clock->type]; t != NULL; t = t->next) {
1003 if (t == ts)
1004 return 1;
1005 }
1006 return 0;
1007}
1008
2430ffe4 1009int qemu_timer_expired(QEMUTimer *timer_head, int64_t current_time)
8a7ddc38
FB
1010{
1011 if (!timer_head)
1012 return 0;
1013 return (timer_head->expire_time <= current_time);
1014}
1015
1016static void qemu_run_timers(QEMUTimer **ptimer_head, int64_t current_time)
1017{
1018 QEMUTimer *ts;
3b46e624 1019
8a7ddc38
FB
1020 for(;;) {
1021 ts = *ptimer_head;
e95c8d51 1022 if (!ts || ts->expire_time > current_time)
8a7ddc38
FB
1023 break;
1024 /* remove timer from the list before calling the callback */
1025 *ptimer_head = ts->next;
1026 ts->next = NULL;
3b46e624 1027
8a7ddc38
FB
1028 /* run the callback (the timer list can be modified) */
1029 ts->cb(ts->opaque);
1030 }
1031}
1032
1033int64_t qemu_get_clock(QEMUClock *clock)
1034{
1035 switch(clock->type) {
0fdddf80 1036 case QEMU_CLOCK_REALTIME:
1dce7c3c 1037 return get_clock() / 1000000;
8a7ddc38 1038 default:
0fdddf80 1039 case QEMU_CLOCK_VIRTUAL:
2e70f6ef
PB
1040 if (use_icount) {
1041 return cpu_get_icount();
1042 } else {
1043 return cpu_get_clock();
1044 }
21d5d12b
JK
1045 case QEMU_CLOCK_HOST:
1046 return get_clock_realtime();
8a7ddc38
FB
1047 }
1048}
1049
0fdddf80 1050static void init_clocks(void)
1dce7c3c
FB
1051{
1052 init_get_clock();
0fdddf80
JK
1053 rt_clock = qemu_new_clock(QEMU_CLOCK_REALTIME);
1054 vm_clock = qemu_new_clock(QEMU_CLOCK_VIRTUAL);
21d5d12b 1055 host_clock = qemu_new_clock(QEMU_CLOCK_HOST);
6875204c
JK
1056
1057 rtc_clock = host_clock;
1dce7c3c
FB
1058}
1059
8a7ddc38
FB
1060/* save a timer */
1061void qemu_put_timer(QEMUFile *f, QEMUTimer *ts)
1062{
1063 uint64_t expire_time;
1064
1065 if (qemu_timer_pending(ts)) {
1066 expire_time = ts->expire_time;
1067 } else {
1068 expire_time = -1;
1069 }
1070 qemu_put_be64(f, expire_time);
1071}
1072
1073void qemu_get_timer(QEMUFile *f, QEMUTimer *ts)
1074{
1075 uint64_t expire_time;
1076
1077 expire_time = qemu_get_be64(f);
1078 if (expire_time != -1) {
1079 qemu_mod_timer(ts, expire_time);
1080 } else {
1081 qemu_del_timer(ts);
1082 }
1083}
1084
2faf58cd
JQ
1085static const VMStateDescription vmstate_timers = {
1086 .name = "timer",
1087 .version_id = 2,
1088 .minimum_version_id = 1,
1089 .minimum_version_id_old = 1,
1090 .fields = (VMStateField []) {
1091 VMSTATE_INT64(cpu_ticks_offset, TimersState),
274dfed8 1092 VMSTATE_INT64(dummy, TimersState),
2faf58cd
JQ
1093 VMSTATE_INT64_V(cpu_clock_offset, TimersState, 2),
1094 VMSTATE_END_OF_LIST()
c88676f8 1095 }
2faf58cd 1096};
8a7ddc38 1097
50317c7f
AL
1098static void qemu_event_increment(void);
1099
67b915a5 1100#ifdef _WIN32
b9e82a59
BS
1101static void CALLBACK host_alarm_handler(UINT uTimerID, UINT uMsg,
1102 DWORD_PTR dwUser, DWORD_PTR dw1,
1103 DWORD_PTR dw2)
67b915a5 1104#else
8a7ddc38 1105static void host_alarm_handler(int host_signum)
67b915a5 1106#endif
8a7ddc38 1107{
02ba45c5
FB
1108#if 0
1109#define DISP_FREQ 1000
1110 {
1111 static int64_t delta_min = INT64_MAX;
1112 static int64_t delta_max, delta_cum, last_clock, delta, ti;
1113 static int count;
1114 ti = qemu_get_clock(vm_clock);
1115 if (last_clock != 0) {
1116 delta = ti - last_clock;
1117 if (delta < delta_min)
1118 delta_min = delta;
1119 if (delta > delta_max)
1120 delta_max = delta;
1121 delta_cum += delta;
1122 if (++count == DISP_FREQ) {
26a76461 1123 printf("timer: min=%" PRId64 " us max=%" PRId64 " us avg=%" PRId64 " us avg_freq=%0.3f Hz\n",
6ee093c9
JQ
1124 muldiv64(delta_min, 1000000, get_ticks_per_sec()),
1125 muldiv64(delta_max, 1000000, get_ticks_per_sec()),
1126 muldiv64(delta_cum, 1000000 / DISP_FREQ, get_ticks_per_sec()),
1127 (double)get_ticks_per_sec() / ((double)delta_cum / DISP_FREQ));
02ba45c5
FB
1128 count = 0;
1129 delta_min = INT64_MAX;
1130 delta_max = 0;
1131 delta_cum = 0;
1132 }
1133 }
1134 last_clock = ti;
1135 }
1136#endif
efe75411 1137 if (alarm_has_dynticks(alarm_timer) ||
2e70f6ef 1138 (!use_icount &&
0fdddf80 1139 qemu_timer_expired(active_timers[QEMU_CLOCK_VIRTUAL],
2e70f6ef 1140 qemu_get_clock(vm_clock))) ||
0fdddf80 1141 qemu_timer_expired(active_timers[QEMU_CLOCK_REALTIME],
21d5d12b
JK
1142 qemu_get_clock(rt_clock)) ||
1143 qemu_timer_expired(active_timers[QEMU_CLOCK_HOST],
1144 qemu_get_clock(host_clock))) {
50317c7f 1145 qemu_event_increment();
e332340a 1146 if (alarm_timer) alarm_timer->flags |= ALARM_FLAG_EXPIRED;
d5d08334 1147
d6dc3d42
AL
1148#ifndef CONFIG_IOTHREAD
1149 if (next_cpu) {
4f8eb8da 1150 /* stop the currently executing cpu because a timer occured */
d6dc3d42 1151 cpu_exit(next_cpu);
4f8eb8da 1152 }
d6dc3d42 1153#endif
43b96858 1154 timer_alarm_pending = 1;
d9f75a4e 1155 qemu_notify_event();
8a7ddc38
FB
1156 }
1157}
1158
2e70f6ef 1159static int64_t qemu_next_deadline(void)
efe75411 1160{
21d5d12b
JK
1161 /* To avoid problems with overflow limit this to 2^32. */
1162 int64_t delta = INT32_MAX;
efe75411 1163
0fdddf80
JK
1164 if (active_timers[QEMU_CLOCK_VIRTUAL]) {
1165 delta = active_timers[QEMU_CLOCK_VIRTUAL]->expire_time -
2e70f6ef 1166 qemu_get_clock(vm_clock);
21d5d12b
JK
1167 }
1168 if (active_timers[QEMU_CLOCK_HOST]) {
1169 int64_t hdelta = active_timers[QEMU_CLOCK_HOST]->expire_time -
1170 qemu_get_clock(host_clock);
1171 if (hdelta < delta)
1172 delta = hdelta;
efe75411
TS
1173 }
1174
2e70f6ef
PB
1175 if (delta < 0)
1176 delta = 0;
efe75411 1177
2e70f6ef
PB
1178 return delta;
1179}
1180
f64382ba 1181#if defined(__linux__)
2e70f6ef
PB
1182static uint64_t qemu_next_deadline_dyntick(void)
1183{
1184 int64_t delta;
1185 int64_t rtdelta;
1186
1187 if (use_icount)
1188 delta = INT32_MAX;
1189 else
1190 delta = (qemu_next_deadline() + 999) / 1000;
1191
0fdddf80
JK
1192 if (active_timers[QEMU_CLOCK_REALTIME]) {
1193 rtdelta = (active_timers[QEMU_CLOCK_REALTIME]->expire_time -
2e70f6ef
PB
1194 qemu_get_clock(rt_clock))*1000;
1195 if (rtdelta < delta)
1196 delta = rtdelta;
1197 }
1198
1199 if (delta < MIN_TIMER_REARM_US)
1200 delta = MIN_TIMER_REARM_US;
1201
1202 return delta;
efe75411 1203}
8632fb9a 1204#endif
efe75411 1205
fd872598
FB
1206#ifndef _WIN32
1207
7183b4b4
AL
1208/* Sets a specific flag */
1209static int fcntl_setfl(int fd, int flag)
1210{
1211 int flags;
1212
1213 flags = fcntl(fd, F_GETFL);
1214 if (flags == -1)
1215 return -errno;
1216
1217 if (fcntl(fd, F_SETFL, flags | flag) == -1)
1218 return -errno;
1219
1220 return 0;
1221}
1222
829309c7
FB
1223#if defined(__linux__)
1224
fd872598
FB
1225#define RTC_FREQ 1024
1226
de9a95f0 1227static void enable_sigio_timer(int fd)
c8994013
TS
1228{
1229 struct sigaction act;
1230
1231 /* timer signal */
1232 sigfillset(&act.sa_mask);
1233 act.sa_flags = 0;
c8994013
TS
1234 act.sa_handler = host_alarm_handler;
1235
1236 sigaction(SIGIO, &act, NULL);
7183b4b4 1237 fcntl_setfl(fd, O_ASYNC);
c8994013
TS
1238 fcntl(fd, F_SETOWN, getpid());
1239}
829309c7 1240
c40ec5a9
TS
1241static int hpet_start_timer(struct qemu_alarm_timer *t)
1242{
1243 struct hpet_info info;
1244 int r, fd;
1245
1246 fd = open("/dev/hpet", O_RDONLY);
1247 if (fd < 0)
1248 return -1;
1249
1250 /* Set frequency */
1251 r = ioctl(fd, HPET_IRQFREQ, RTC_FREQ);
1252 if (r < 0) {
1253 fprintf(stderr, "Could not configure '/dev/hpet' to have a 1024Hz timer. This is not a fatal\n"
1254 "error, but for better emulation accuracy type:\n"
1255 "'echo 1024 > /proc/sys/dev/hpet/max-user-freq' as root.\n");
1256 goto fail;
1257 }
1258
1259 /* Check capabilities */
1260 r = ioctl(fd, HPET_INFO, &info);
1261 if (r < 0)
1262 goto fail;
1263
1264 /* Enable periodic mode */
1265 r = ioctl(fd, HPET_EPI, 0);
1266 if (info.hi_flags && (r < 0))
1267 goto fail;
1268
1269 /* Enable interrupt */
1270 r = ioctl(fd, HPET_IE_ON, 0);
1271 if (r < 0)
1272 goto fail;
1273
1274 enable_sigio_timer(fd);
fcdc2129 1275 t->priv = (void *)(long)fd;
c40ec5a9
TS
1276
1277 return 0;
1278fail:
1279 close(fd);
1280 return -1;
1281}
1282
1283static void hpet_stop_timer(struct qemu_alarm_timer *t)
1284{
fcdc2129 1285 int fd = (long)t->priv;
c40ec5a9
TS
1286
1287 close(fd);
1288}
1289
c8994013 1290static int rtc_start_timer(struct qemu_alarm_timer *t)
fd872598 1291{
c8994013 1292 int rtc_fd;
b5a23ad4 1293 unsigned long current_rtc_freq = 0;
c8994013 1294
aeb30be6 1295 TFR(rtc_fd = open("/dev/rtc", O_RDONLY));
fd872598
FB
1296 if (rtc_fd < 0)
1297 return -1;
b5a23ad4
AZ
1298 ioctl(rtc_fd, RTC_IRQP_READ, &current_rtc_freq);
1299 if (current_rtc_freq != RTC_FREQ &&
1300 ioctl(rtc_fd, RTC_IRQP_SET, RTC_FREQ) < 0) {
fd872598
FB
1301 fprintf(stderr, "Could not configure '/dev/rtc' to have a 1024 Hz timer. This is not a fatal\n"
1302 "error, but for better emulation accuracy either use a 2.6 host Linux kernel or\n"
1303 "type 'echo 1024 > /proc/sys/dev/rtc/max-user-freq' as root.\n");
1304 goto fail;
1305 }
1306 if (ioctl(rtc_fd, RTC_PIE_ON, 0) < 0) {
1307 fail:
1308 close(rtc_fd);
1309 return -1;
1310 }
c8994013
TS
1311
1312 enable_sigio_timer(rtc_fd);
1313
fcdc2129 1314 t->priv = (void *)(long)rtc_fd;
c8994013 1315
fd872598
FB
1316 return 0;
1317}
1318
c8994013 1319static void rtc_stop_timer(struct qemu_alarm_timer *t)
829309c7 1320{
fcdc2129 1321 int rtc_fd = (long)t->priv;
c8994013
TS
1322
1323 close(rtc_fd);
829309c7
FB
1324}
1325
efe75411
TS
1326static int dynticks_start_timer(struct qemu_alarm_timer *t)
1327{
1328 struct sigevent ev;
1329 timer_t host_timer;
1330 struct sigaction act;
1331
1332 sigfillset(&act.sa_mask);
1333 act.sa_flags = 0;
efe75411
TS
1334 act.sa_handler = host_alarm_handler;
1335
1336 sigaction(SIGALRM, &act, NULL);
1337
9ed415b2
JCD
1338 /*
1339 * Initialize ev struct to 0 to avoid valgrind complaining
1340 * about uninitialized data in timer_create call
1341 */
1342 memset(&ev, 0, sizeof(ev));
efe75411
TS
1343 ev.sigev_value.sival_int = 0;
1344 ev.sigev_notify = SIGEV_SIGNAL;
1345 ev.sigev_signo = SIGALRM;
1346
1347 if (timer_create(CLOCK_REALTIME, &ev, &host_timer)) {
1348 perror("timer_create");
1349
1350 /* disable dynticks */
1351 fprintf(stderr, "Dynamic Ticks disabled\n");
1352
1353 return -1;
1354 }
1355
0399bfe0 1356 t->priv = (void *)(long)host_timer;
efe75411
TS
1357
1358 return 0;
1359}
1360
1361static void dynticks_stop_timer(struct qemu_alarm_timer *t)
1362{
0399bfe0 1363 timer_t host_timer = (timer_t)(long)t->priv;
efe75411
TS
1364
1365 timer_delete(host_timer);
1366}
1367
1368static void dynticks_rearm_timer(struct qemu_alarm_timer *t)
1369{
0399bfe0 1370 timer_t host_timer = (timer_t)(long)t->priv;
efe75411
TS
1371 struct itimerspec timeout;
1372 int64_t nearest_delta_us = INT64_MAX;
1373 int64_t current_us;
1374
0fdddf80 1375 if (!active_timers[QEMU_CLOCK_REALTIME] &&
21d5d12b
JK
1376 !active_timers[QEMU_CLOCK_VIRTUAL] &&
1377 !active_timers[QEMU_CLOCK_HOST])
d5d08334 1378 return;
efe75411 1379
2e70f6ef 1380 nearest_delta_us = qemu_next_deadline_dyntick();
efe75411
TS
1381
1382 /* check whether a timer is already running */
1383 if (timer_gettime(host_timer, &timeout)) {
1384 perror("gettime");
1385 fprintf(stderr, "Internal timer error: aborting\n");
1386 exit(1);
1387 }
1388 current_us = timeout.it_value.tv_sec * 1000000 + timeout.it_value.tv_nsec/1000;
1389 if (current_us && current_us <= nearest_delta_us)
1390 return;
1391
1392 timeout.it_interval.tv_sec = 0;
1393 timeout.it_interval.tv_nsec = 0; /* 0 for one-shot timer */
1394 timeout.it_value.tv_sec = nearest_delta_us / 1000000;
1395 timeout.it_value.tv_nsec = (nearest_delta_us % 1000000) * 1000;
1396 if (timer_settime(host_timer, 0 /* RELATIVE */, &timeout, NULL)) {
1397 perror("settime");
1398 fprintf(stderr, "Internal timer error: aborting\n");
1399 exit(1);
1400 }
1401}
1402
70744b3a 1403#endif /* defined(__linux__) */
231c6586 1404
c8994013
TS
1405static int unix_start_timer(struct qemu_alarm_timer *t)
1406{
1407 struct sigaction act;
1408 struct itimerval itv;
1409 int err;
1410
1411 /* timer signal */
1412 sigfillset(&act.sa_mask);
1413 act.sa_flags = 0;
c8994013
TS
1414 act.sa_handler = host_alarm_handler;
1415
1416 sigaction(SIGALRM, &act, NULL);
1417
1418 itv.it_interval.tv_sec = 0;
1419 /* for i386 kernel 2.6 to get 1 ms */
1420 itv.it_interval.tv_usec = 999;
1421 itv.it_value.tv_sec = 0;
1422 itv.it_value.tv_usec = 10 * 1000;
1423
1424 err = setitimer(ITIMER_REAL, &itv, NULL);
1425 if (err)
1426 return -1;
1427
1428 return 0;
1429}
1430
1431static void unix_stop_timer(struct qemu_alarm_timer *t)
1432{
1433 struct itimerval itv;
1434
1435 memset(&itv, 0, sizeof(itv));
1436 setitimer(ITIMER_REAL, &itv, NULL);
1437}
1438
829309c7 1439#endif /* !defined(_WIN32) */
fd872598 1440
f49e58dc 1441
c8994013
TS
1442#ifdef _WIN32
1443
1444static int win32_start_timer(struct qemu_alarm_timer *t)
1445{
1446 TIMECAPS tc;
1447 struct qemu_alarm_win32 *data = t->priv;
efe75411 1448 UINT flags;
c8994013 1449
c8994013
TS
1450 memset(&tc, 0, sizeof(tc));
1451 timeGetDevCaps(&tc, sizeof(tc));
1452
1453 if (data->period < tc.wPeriodMin)
1454 data->period = tc.wPeriodMin;
1455
1456 timeBeginPeriod(data->period);
1457
efe75411
TS
1458 flags = TIME_CALLBACK_FUNCTION;
1459 if (alarm_has_dynticks(t))
1460 flags |= TIME_ONESHOT;
1461 else
1462 flags |= TIME_PERIODIC;
1463
c8994013
TS
1464 data->timerId = timeSetEvent(1, // interval (ms)
1465 data->period, // resolution
1466 host_alarm_handler, // function
1467 (DWORD)t, // parameter
efe75411 1468 flags);
c8994013
TS
1469
1470 if (!data->timerId) {
20889d4e 1471 fprintf(stderr, "Failed to initialize win32 alarm timer: %ld\n",
705e83f6 1472 GetLastError());
c8994013 1473 timeEndPeriod(data->period);
c8994013
TS
1474 return -1;
1475 }
1476
c8994013
TS
1477 return 0;
1478}
1479
1480static void win32_stop_timer(struct qemu_alarm_timer *t)
1481{
1482 struct qemu_alarm_win32 *data = t->priv;
1483
1484 timeKillEvent(data->timerId);
1485 timeEndPeriod(data->period);
c8994013
TS
1486}
1487
efe75411
TS
1488static void win32_rearm_timer(struct qemu_alarm_timer *t)
1489{
1490 struct qemu_alarm_win32 *data = t->priv;
efe75411 1491
0fdddf80 1492 if (!active_timers[QEMU_CLOCK_REALTIME] &&
21d5d12b
JK
1493 !active_timers[QEMU_CLOCK_VIRTUAL] &&
1494 !active_timers[QEMU_CLOCK_HOST])
d5d08334 1495 return;
efe75411 1496
efe75411
TS
1497 timeKillEvent(data->timerId);
1498
1499 data->timerId = timeSetEvent(1,
1500 data->period,
1501 host_alarm_handler,
1502 (DWORD)t,
1503 TIME_ONESHOT | TIME_PERIODIC);
1504
1505 if (!data->timerId) {
20889d4e 1506 fprintf(stderr, "Failed to re-arm win32 alarm timer %ld\n",
705e83f6 1507 GetLastError());
efe75411
TS
1508
1509 timeEndPeriod(data->period);
efe75411
TS
1510 exit(1);
1511 }
1512}
1513
c8994013
TS
1514#endif /* _WIN32 */
1515
7183b4b4 1516static int init_timer_alarm(void)
8a7ddc38 1517{
223f0d72 1518 struct qemu_alarm_timer *t = NULL;
c8994013 1519 int i, err = -1;
f49e58dc 1520
c8994013
TS
1521 for (i = 0; alarm_timers[i].name; i++) {
1522 t = &alarm_timers[i];
1523
c8994013
TS
1524 err = t->start(t);
1525 if (!err)
1526 break;
67b915a5 1527 }
fd872598 1528
c8994013 1529 if (err) {
7183b4b4
AL
1530 err = -ENOENT;
1531 goto fail;
67b915a5 1532 }
c8994013
TS
1533
1534 alarm_timer = t;
7183b4b4 1535
6abfbd79 1536 return 0;
7183b4b4
AL
1537
1538fail:
7183b4b4 1539 return err;
8a7ddc38
FB
1540}
1541
9596ebb7 1542static void quit_timers(void)
40c3bac3 1543{
c8994013
TS
1544 alarm_timer->stop(alarm_timer);
1545 alarm_timer = NULL;
40c3bac3
FB
1546}
1547
f6503059
AZ
1548/***********************************************************/
1549/* host time/date access */
1550void qemu_get_timedate(struct tm *tm, int offset)
1551{
1552 time_t ti;
1553 struct tm *ret;
1554
1555 time(&ti);
1556 ti += offset;
1557 if (rtc_date_offset == -1) {
1558 if (rtc_utc)
1559 ret = gmtime(&ti);
1560 else
1561 ret = localtime(&ti);
1562 } else {
1563 ti -= rtc_date_offset;
1564 ret = gmtime(&ti);
1565 }
1566
1567 memcpy(tm, ret, sizeof(struct tm));
1568}
1569
1570int qemu_timedate_diff(struct tm *tm)
1571{
1572 time_t seconds;
1573
1574 if (rtc_date_offset == -1)
1575 if (rtc_utc)
1576 seconds = mktimegm(tm);
1577 else
1578 seconds = mktime(tm);
1579 else
1580 seconds = mktimegm(tm) + rtc_date_offset;
1581
1582 return seconds - time(NULL);
1583}
1584
1ed2fc1f
JK
1585static void configure_rtc_date_offset(const char *startdate, int legacy)
1586{
1587 time_t rtc_start_date;
1588 struct tm tm;
1589
1590 if (!strcmp(startdate, "now") && legacy) {
1591 rtc_date_offset = -1;
1592 } else {
1593 if (sscanf(startdate, "%d-%d-%dT%d:%d:%d",
1594 &tm.tm_year,
1595 &tm.tm_mon,
1596 &tm.tm_mday,
1597 &tm.tm_hour,
1598 &tm.tm_min,
1599 &tm.tm_sec) == 6) {
1600 /* OK */
1601 } else if (sscanf(startdate, "%d-%d-%d",
1602 &tm.tm_year,
1603 &tm.tm_mon,
1604 &tm.tm_mday) == 3) {
1605 tm.tm_hour = 0;
1606 tm.tm_min = 0;
1607 tm.tm_sec = 0;
1608 } else {
1609 goto date_fail;
1610 }
1611 tm.tm_year -= 1900;
1612 tm.tm_mon--;
1613 rtc_start_date = mktimegm(&tm);
1614 if (rtc_start_date == -1) {
1615 date_fail:
1616 fprintf(stderr, "Invalid date format. Valid formats are:\n"
1617 "'2006-06-17T16:01:21' or '2006-06-17'\n");
1618 exit(1);
1619 }
1620 rtc_date_offset = time(NULL) - rtc_start_date;
1621 }
1622}
1623
1624static void configure_rtc(QemuOpts *opts)
1625{
1626 const char *value;
1627
1628 value = qemu_opt_get(opts, "base");
1629 if (value) {
1630 if (!strcmp(value, "utc")) {
1631 rtc_utc = 1;
1632 } else if (!strcmp(value, "localtime")) {
1633 rtc_utc = 0;
1634 } else {
1635 configure_rtc_date_offset(value, 0);
1636 }
1637 }
6875204c
JK
1638 value = qemu_opt_get(opts, "clock");
1639 if (value) {
1640 if (!strcmp(value, "host")) {
1641 rtc_clock = host_clock;
1642 } else if (!strcmp(value, "vm")) {
1643 rtc_clock = vm_clock;
1644 } else {
1645 fprintf(stderr, "qemu: invalid option value '%s'\n", value);
1646 exit(1);
1647 }
1648 }
1ed2fc1f
JK
1649#ifdef CONFIG_TARGET_I386
1650 value = qemu_opt_get(opts, "driftfix");
1651 if (value) {
1652 if (!strcmp(buf, "slew")) {
1653 rtc_td_hack = 1;
1654 } else if (!strcmp(buf, "none")) {
1655 rtc_td_hack = 0;
1656 } else {
1657 fprintf(stderr, "qemu: invalid option value '%s'\n", value);
1658 exit(1);
1659 }
1660 }
1661#endif
1662}
1663
fd1dff4b 1664#ifdef _WIN32
fd1dff4b
FB
1665static void socket_cleanup(void)
1666{
1667 WSACleanup();
1668}
82c643ff 1669
fd1dff4b
FB
1670static int socket_init(void)
1671{
1672 WSADATA Data;
1673 int ret, err;
1674
1675 ret = WSAStartup(MAKEWORD(2,2), &Data);
1676 if (ret != 0) {
1677 err = WSAGetLastError();
1678 fprintf(stderr, "WSAStartup: %d\n", err);
1679 return -1;
1680 }
1681 atexit(socket_cleanup);
1682 return 0;
1683}
64b7b733
AJ
1684#endif
1685
1ae26a18
AZ
1686/***********************************************************/
1687/* Bluetooth support */
1688static int nb_hcis;
1689static int cur_hci;
1690static struct HCIInfo *hci_table[MAX_NICS];
dc72ac14 1691
1ae26a18
AZ
1692static struct bt_vlan_s {
1693 struct bt_scatternet_s net;
1694 int id;
1695 struct bt_vlan_s *next;
1696} *first_bt_vlan;
1697
1698/* find or alloc a new bluetooth "VLAN" */
674bb261 1699static struct bt_scatternet_s *qemu_find_bt_vlan(int id)
1ae26a18
AZ
1700{
1701 struct bt_vlan_s **pvlan, *vlan;
1702 for (vlan = first_bt_vlan; vlan != NULL; vlan = vlan->next) {
1703 if (vlan->id == id)
1704 return &vlan->net;
1705 }
1706 vlan = qemu_mallocz(sizeof(struct bt_vlan_s));
1707 vlan->id = id;
1708 pvlan = &first_bt_vlan;
1709 while (*pvlan != NULL)
1710 pvlan = &(*pvlan)->next;
1711 *pvlan = vlan;
1712 return &vlan->net;
1713}
1714
1715static void null_hci_send(struct HCIInfo *hci, const uint8_t *data, int len)
1716{
1717}
1718
1719static int null_hci_addr_set(struct HCIInfo *hci, const uint8_t *bd_addr)
1720{
1721 return -ENOTSUP;
1722}
1723
1724static struct HCIInfo null_hci = {
1725 .cmd_send = null_hci_send,
1726 .sco_send = null_hci_send,
1727 .acl_send = null_hci_send,
1728 .bdaddr_set = null_hci_addr_set,
1729};
1730
1731struct HCIInfo *qemu_next_hci(void)
1732{
1733 if (cur_hci == nb_hcis)
1734 return &null_hci;
1735
1736 return hci_table[cur_hci++];
1737}
1738
dc72ac14
AZ
1739static struct HCIInfo *hci_init(const char *str)
1740{
1741 char *endp;
1742 struct bt_scatternet_s *vlan = 0;
1743
1744 if (!strcmp(str, "null"))
1745 /* null */
1746 return &null_hci;
1747 else if (!strncmp(str, "host", 4) && (str[4] == '\0' || str[4] == ':'))
1748 /* host[:hciN] */
1749 return bt_host_hci(str[4] ? str + 5 : "hci0");
1750 else if (!strncmp(str, "hci", 3)) {
1751 /* hci[,vlan=n] */
1752 if (str[3]) {
1753 if (!strncmp(str + 3, ",vlan=", 6)) {
1754 vlan = qemu_find_bt_vlan(strtol(str + 9, &endp, 0));
1755 if (*endp)
1756 vlan = 0;
1757 }
1758 } else
1759 vlan = qemu_find_bt_vlan(0);
1760 if (vlan)
1761 return bt_new_hci(vlan);
1762 }
1763
1764 fprintf(stderr, "qemu: Unknown bluetooth HCI `%s'.\n", str);
1765
1766 return 0;
1767}
1768
1769static int bt_hci_parse(const char *str)
1770{
1771 struct HCIInfo *hci;
c227f099 1772 bdaddr_t bdaddr;
dc72ac14
AZ
1773
1774 if (nb_hcis >= MAX_NICS) {
1775 fprintf(stderr, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS);
1776 return -1;
1777 }
1778
1779 hci = hci_init(str);
1780 if (!hci)
1781 return -1;
1782
1783 bdaddr.b[0] = 0x52;
1784 bdaddr.b[1] = 0x54;
1785 bdaddr.b[2] = 0x00;
1786 bdaddr.b[3] = 0x12;
1787 bdaddr.b[4] = 0x34;
1788 bdaddr.b[5] = 0x56 + nb_hcis;
1789 hci->bdaddr_set(hci, bdaddr.b);
1790
1791 hci_table[nb_hcis++] = hci;
1792
1793 return 0;
1794}
1795
1796static void bt_vhci_add(int vlan_id)
1797{
1798 struct bt_scatternet_s *vlan = qemu_find_bt_vlan(vlan_id);
1799
1800 if (!vlan->slave)
1801 fprintf(stderr, "qemu: warning: adding a VHCI to "
1802 "an empty scatternet %i\n", vlan_id);
1803
1804 bt_vhci_init(bt_new_hci(vlan));
1805}
1806
1807static struct bt_device_s *bt_device_add(const char *opt)
1808{
1809 struct bt_scatternet_s *vlan;
1810 int vlan_id = 0;
1811 char *endp = strstr(opt, ",vlan=");
1812 int len = (endp ? endp - opt : strlen(opt)) + 1;
1813 char devname[10];
1814
1815 pstrcpy(devname, MIN(sizeof(devname), len), opt);
1816
1817 if (endp) {
1818 vlan_id = strtol(endp + 6, &endp, 0);
1819 if (*endp) {
1820 fprintf(stderr, "qemu: unrecognised bluetooth vlan Id\n");
1821 return 0;
1822 }
1823 }
1824
1825 vlan = qemu_find_bt_vlan(vlan_id);
1826
1827 if (!vlan->slave)
1828 fprintf(stderr, "qemu: warning: adding a slave device to "
1829 "an empty scatternet %i\n", vlan_id);
1830
1831 if (!strcmp(devname, "keyboard"))
1832 return bt_keyboard_init(vlan);
1833
1834 fprintf(stderr, "qemu: unsupported bluetooth device `%s'\n", devname);
1835 return 0;
1836}
1837
1838static int bt_parse(const char *opt)
1839{
1840 const char *endp, *p;
1841 int vlan;
1842
1843 if (strstart(opt, "hci", &endp)) {
1844 if (!*endp || *endp == ',') {
1845 if (*endp)
1846 if (!strstart(endp, ",vlan=", 0))
1847 opt = endp + 1;
1848
1849 return bt_hci_parse(opt);
1850 }
1851 } else if (strstart(opt, "vhci", &endp)) {
1852 if (!*endp || *endp == ',') {
1853 if (*endp) {
1854 if (strstart(endp, ",vlan=", &p)) {
1855 vlan = strtol(p, (char **) &endp, 0);
1856 if (*endp) {
1857 fprintf(stderr, "qemu: bad scatternet '%s'\n", p);
1858 return 1;
1859 }
1860 } else {
1861 fprintf(stderr, "qemu: bad parameter '%s'\n", endp + 1);
1862 return 1;
1863 }
1864 } else
1865 vlan = 0;
1866
1867 bt_vhci_add(vlan);
1868 return 0;
1869 }
1870 } else if (strstart(opt, "device:", &endp))
1871 return !bt_device_add(endp);
1872
1873 fprintf(stderr, "qemu: bad bluetooth parameter '%s'\n", opt);
1874 return 1;
1875}
1876
1ae26a18
AZ
1877/***********************************************************/
1878/* QEMU Block devices */
1879
609497ab 1880#define HD_ALIAS "index=%d,media=disk"
e4bcb14c 1881#define CDROM_ALIAS "index=2,media=cdrom"
e4bcb14c 1882#define FD_ALIAS "index=%d,if=floppy"
609497ab
AZ
1883#define PFLASH_ALIAS "if=pflash"
1884#define MTD_ALIAS "if=mtd"
9d413d1d 1885#define SD_ALIAS "index=0,if=sd"
e4bcb14c 1886
9dfd7c7a 1887QemuOpts *drive_add(const char *file, const char *fmt, ...)
e4bcb14c
TS
1888{
1889 va_list ap;
9dfd7c7a
GH
1890 char optstr[1024];
1891 QemuOpts *opts;
e4bcb14c 1892
e4bcb14c 1893 va_start(ap, fmt);
9dfd7c7a 1894 vsnprintf(optstr, sizeof(optstr), fmt, ap);
e4bcb14c
TS
1895 va_end(ap);
1896
7282a033 1897 opts = qemu_opts_parse(&qemu_drive_opts, optstr, NULL);
9dfd7c7a
GH
1898 if (!opts) {
1899 fprintf(stderr, "%s: huh? duplicate? (%s)\n",
1900 __FUNCTION__, optstr);
1901 return NULL;
1902 }
1903 if (file)
1904 qemu_opt_set(opts, "file", file);
1905 return opts;
b01b1111
AL
1906}
1907
751c6a17 1908DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit)
e4bcb14c 1909{
751c6a17 1910 DriveInfo *dinfo;
e4bcb14c
TS
1911
1912 /* seek interface, bus and unit */
1913
72cf2d4f 1914 QTAILQ_FOREACH(dinfo, &drives, next) {
751c6a17
GH
1915 if (dinfo->type == type &&
1916 dinfo->bus == bus &&
1917 dinfo->unit == unit)
1918 return dinfo;
1919 }
e4bcb14c 1920
751c6a17 1921 return NULL;
e4bcb14c
TS
1922}
1923
2e810b36 1924DriveInfo *drive_get_by_id(const char *id)
1dae12e6
GH
1925{
1926 DriveInfo *dinfo;
1927
72cf2d4f 1928 QTAILQ_FOREACH(dinfo, &drives, next) {
1dae12e6
GH
1929 if (strcmp(id, dinfo->id))
1930 continue;
1931 return dinfo;
1932 }
1933 return NULL;
1934}
1935
f60d39bc 1936int drive_get_max_bus(BlockInterfaceType type)
e4bcb14c
TS
1937{
1938 int max_bus;
751c6a17 1939 DriveInfo *dinfo;
e4bcb14c
TS
1940
1941 max_bus = -1;
72cf2d4f 1942 QTAILQ_FOREACH(dinfo, &drives, next) {
751c6a17
GH
1943 if(dinfo->type == type &&
1944 dinfo->bus > max_bus)
1945 max_bus = dinfo->bus;
e4bcb14c
TS
1946 }
1947 return max_bus;
1948}
1949
fa879c64
AL
1950const char *drive_get_serial(BlockDriverState *bdrv)
1951{
751c6a17 1952 DriveInfo *dinfo;
fa879c64 1953
72cf2d4f 1954 QTAILQ_FOREACH(dinfo, &drives, next) {
751c6a17
GH
1955 if (dinfo->bdrv == bdrv)
1956 return dinfo->serial;
1957 }
fa879c64
AL
1958
1959 return "\0";
1960}
1961
428c5705
AL
1962BlockInterfaceErrorAction drive_get_onerror(BlockDriverState *bdrv)
1963{
751c6a17 1964 DriveInfo *dinfo;
428c5705 1965
72cf2d4f 1966 QTAILQ_FOREACH(dinfo, &drives, next) {
751c6a17
GH
1967 if (dinfo->bdrv == bdrv)
1968 return dinfo->onerror;
1969 }
428c5705 1970
cdad4bd8 1971 return BLOCK_ERR_STOP_ENOSPC;
428c5705
AL
1972}
1973
a1620fac
AJ
1974static void bdrv_format_print(void *opaque, const char *name)
1975{
1976 fprintf(stderr, " %s", name);
1977}
1978
56a14938 1979void drive_uninit(DriveInfo *dinfo)
b01b1111 1980{
56a14938
GH
1981 qemu_opts_del(dinfo->opts);
1982 bdrv_delete(dinfo->bdrv);
1983 QTAILQ_REMOVE(&drives, dinfo, next);
1984 qemu_free(dinfo);
b01b1111
AL
1985}
1986
9dfd7c7a 1987DriveInfo *drive_init(QemuOpts *opts, void *opaque,
751c6a17 1988 int *fatal_error)
e4bcb14c 1989{
9dfd7c7a
GH
1990 const char *buf;
1991 const char *file = NULL;
c8522bdf 1992 char devname[128];
9dfd7c7a 1993 const char *serial;
c8522bdf 1994 const char *mediastr = "";
f60d39bc 1995 BlockInterfaceType type;
e4bcb14c
TS
1996 enum { MEDIA_DISK, MEDIA_CDROM } media;
1997 int bus_id, unit_id;
1998 int cyls, heads, secs, translation;
1e72d3b7 1999 BlockDriver *drv = NULL;
4d73cd3b 2000 QEMUMachine *machine = opaque;
e4bcb14c
TS
2001 int max_devs;
2002 int index;
33f00271 2003 int cache;
5c6c3a6c 2004 int aio = 0;
59f2689d 2005 int ro = 0;
428c5705 2006 int bdrv_flags, onerror;
c2cc47a4 2007 const char *devaddr;
751c6a17 2008 DriveInfo *dinfo;
9dfd7c7a 2009 int snapshot = 0;
e4bcb14c 2010
9dfd7c7a 2011 *fatal_error = 1;
e4bcb14c 2012
e4bcb14c 2013 translation = BIOS_ATA_TRANSLATION_AUTO;
0aa217e4 2014 cache = 1;
e4bcb14c 2015
4d007814 2016 if (machine && machine->use_scsi) {
f60d39bc 2017 type = IF_SCSI;
e4bcb14c 2018 max_devs = MAX_SCSI_DEVS;
363a37d5 2019 pstrcpy(devname, sizeof(devname), "scsi");
e4bcb14c 2020 } else {
f60d39bc 2021 type = IF_IDE;
e4bcb14c 2022 max_devs = MAX_IDE_DEVS;
363a37d5 2023 pstrcpy(devname, sizeof(devname), "ide");
e4bcb14c
TS
2024 }
2025 media = MEDIA_DISK;
2026
2027 /* extract parameters */
9dfd7c7a
GH
2028 bus_id = qemu_opt_get_number(opts, "bus", 0);
2029 unit_id = qemu_opt_get_number(opts, "unit", -1);
2030 index = qemu_opt_get_number(opts, "index", -1);
e4bcb14c 2031
9dfd7c7a
GH
2032 cyls = qemu_opt_get_number(opts, "cyls", 0);
2033 heads = qemu_opt_get_number(opts, "heads", 0);
2034 secs = qemu_opt_get_number(opts, "secs", 0);
e4bcb14c 2035
9dfd7c7a 2036 snapshot = qemu_opt_get_bool(opts, "snapshot", 0);
59f2689d 2037 ro = qemu_opt_get_bool(opts, "readonly", 0);
e4bcb14c 2038
9dfd7c7a
GH
2039 file = qemu_opt_get(opts, "file");
2040 serial = qemu_opt_get(opts, "serial");
2041
2042 if ((buf = qemu_opt_get(opts, "if")) != NULL) {
ae45d369 2043 pstrcpy(devname, sizeof(devname), buf);
e4bcb14c 2044 if (!strcmp(buf, "ide")) {
f60d39bc 2045 type = IF_IDE;
e4bcb14c
TS
2046 max_devs = MAX_IDE_DEVS;
2047 } else if (!strcmp(buf, "scsi")) {
f60d39bc 2048 type = IF_SCSI;
e4bcb14c
TS
2049 max_devs = MAX_SCSI_DEVS;
2050 } else if (!strcmp(buf, "floppy")) {
f60d39bc 2051 type = IF_FLOPPY;
e4bcb14c
TS
2052 max_devs = 0;
2053 } else if (!strcmp(buf, "pflash")) {
f60d39bc 2054 type = IF_PFLASH;
e4bcb14c
TS
2055 max_devs = 0;
2056 } else if (!strcmp(buf, "mtd")) {
f60d39bc 2057 type = IF_MTD;
e4bcb14c
TS
2058 max_devs = 0;
2059 } else if (!strcmp(buf, "sd")) {
f60d39bc 2060 type = IF_SD;
e4bcb14c 2061 max_devs = 0;
6e02c38d
AL
2062 } else if (!strcmp(buf, "virtio")) {
2063 type = IF_VIRTIO;
2064 max_devs = 0;
62d23efa
AL
2065 } else if (!strcmp(buf, "xen")) {
2066 type = IF_XEN;
2067 max_devs = 0;
a8659e90
GH
2068 } else if (!strcmp(buf, "none")) {
2069 type = IF_NONE;
2070 max_devs = 0;
62d23efa 2071 } else {
9dfd7c7a 2072 fprintf(stderr, "qemu: unsupported bus type '%s'\n", buf);
751c6a17 2073 return NULL;
e4bcb14c
TS
2074 }
2075 }
2076
e4bcb14c 2077 if (cyls || heads || secs) {
5afe3f04 2078 if (cyls < 1 || (type == IF_IDE && cyls > 16383)) {
9dfd7c7a 2079 fprintf(stderr, "qemu: '%s' invalid physical cyls number\n", buf);
751c6a17 2080 return NULL;
e4bcb14c 2081 }
5afe3f04 2082 if (heads < 1 || (type == IF_IDE && heads > 16)) {
9dfd7c7a 2083 fprintf(stderr, "qemu: '%s' invalid physical heads number\n", buf);
751c6a17 2084 return NULL;
e4bcb14c 2085 }
5afe3f04 2086 if (secs < 1 || (type == IF_IDE && secs > 63)) {
9dfd7c7a 2087 fprintf(stderr, "qemu: '%s' invalid physical secs number\n", buf);
751c6a17 2088 return NULL;
e4bcb14c
TS
2089 }
2090 }
2091
9dfd7c7a 2092 if ((buf = qemu_opt_get(opts, "trans")) != NULL) {
e4bcb14c
TS
2093 if (!cyls) {
2094 fprintf(stderr,
2095 "qemu: '%s' trans must be used with cyls,heads and secs\n",
9dfd7c7a 2096 buf);
751c6a17 2097 return NULL;
e4bcb14c
TS
2098 }
2099 if (!strcmp(buf, "none"))
2100 translation = BIOS_ATA_TRANSLATION_NONE;
2101 else if (!strcmp(buf, "lba"))
2102 translation = BIOS_ATA_TRANSLATION_LBA;
2103 else if (!strcmp(buf, "auto"))
2104 translation = BIOS_ATA_TRANSLATION_AUTO;
2105 else {
9dfd7c7a 2106 fprintf(stderr, "qemu: '%s' invalid translation type\n", buf);
751c6a17 2107 return NULL;
e4bcb14c
TS
2108 }
2109 }
2110
9dfd7c7a 2111 if ((buf = qemu_opt_get(opts, "media")) != NULL) {
e4bcb14c
TS
2112 if (!strcmp(buf, "disk")) {
2113 media = MEDIA_DISK;
2114 } else if (!strcmp(buf, "cdrom")) {
2115 if (cyls || secs || heads) {
2116 fprintf(stderr,
9dfd7c7a 2117 "qemu: '%s' invalid physical CHS format\n", buf);
751c6a17 2118 return NULL;
e4bcb14c
TS
2119 }
2120 media = MEDIA_CDROM;
2121 } else {
9dfd7c7a 2122 fprintf(stderr, "qemu: '%s' invalid media\n", buf);
751c6a17 2123 return NULL;
e4bcb14c
TS
2124 }
2125 }
2126
9dfd7c7a 2127 if ((buf = qemu_opt_get(opts, "cache")) != NULL) {
9f7965c7 2128 if (!strcmp(buf, "off") || !strcmp(buf, "none"))
33f00271 2129 cache = 0;
9f7965c7 2130 else if (!strcmp(buf, "writethrough"))
33f00271 2131 cache = 1;
9f7965c7
AL
2132 else if (!strcmp(buf, "writeback"))
2133 cache = 2;
33f00271
AZ
2134 else {
2135 fprintf(stderr, "qemu: invalid cache option\n");
751c6a17 2136 return NULL;
33f00271
AZ
2137 }
2138 }
2139
5c6c3a6c
CH
2140#ifdef CONFIG_LINUX_AIO
2141 if ((buf = qemu_opt_get(opts, "aio")) != NULL) {
2142 if (!strcmp(buf, "threads"))
2143 aio = 0;
2144 else if (!strcmp(buf, "native"))
2145 aio = 1;
2146 else {
2147 fprintf(stderr, "qemu: invalid aio option\n");
2148 return NULL;
2149 }
2150 }
2151#endif
2152
9dfd7c7a 2153 if ((buf = qemu_opt_get(opts, "format")) != NULL) {
a1620fac
AJ
2154 if (strcmp(buf, "?") == 0) {
2155 fprintf(stderr, "qemu: Supported formats:");
2156 bdrv_iterate_format(bdrv_format_print, NULL);
2157 fprintf(stderr, "\n");
751c6a17 2158 return NULL;
a1620fac 2159 }
eb852011 2160 drv = bdrv_find_whitelisted_format(buf);
1e72d3b7
AJ
2161 if (!drv) {
2162 fprintf(stderr, "qemu: '%s' invalid format\n", buf);
751c6a17 2163 return NULL;
1e72d3b7
AJ
2164 }
2165 }
2166
cdad4bd8 2167 onerror = BLOCK_ERR_STOP_ENOSPC;
9dfd7c7a 2168 if ((buf = qemu_opt_get(opts, "werror")) != NULL) {
869a5c6d 2169 if (type != IF_IDE && type != IF_SCSI && type != IF_VIRTIO) {
ea8a5d7f 2170 fprintf(stderr, "werror is no supported by this format\n");
751c6a17 2171 return NULL;
428c5705
AL
2172 }
2173 if (!strcmp(buf, "ignore"))
2174 onerror = BLOCK_ERR_IGNORE;
2175 else if (!strcmp(buf, "enospc"))
2176 onerror = BLOCK_ERR_STOP_ENOSPC;
2177 else if (!strcmp(buf, "stop"))
2178 onerror = BLOCK_ERR_STOP_ANY;
2179 else if (!strcmp(buf, "report"))
2180 onerror = BLOCK_ERR_REPORT;
2181 else {
2182 fprintf(stderr, "qemu: '%s' invalid write error action\n", buf);
751c6a17 2183 return NULL;
428c5705
AL
2184 }
2185 }
2186
9dfd7c7a 2187 if ((devaddr = qemu_opt_get(opts, "addr")) != NULL) {
c2cc47a4 2188 if (type != IF_VIRTIO) {
9dfd7c7a 2189 fprintf(stderr, "addr is not supported\n");
751c6a17 2190 return NULL;
c2cc47a4 2191 }
c2cc47a4
MA
2192 }
2193
e4bcb14c
TS
2194 /* compute bus and unit according index */
2195
2196 if (index != -1) {
2197 if (bus_id != 0 || unit_id != -1) {
2198 fprintf(stderr,
9dfd7c7a 2199 "qemu: index cannot be used with bus and unit\n");
751c6a17 2200 return NULL;
e4bcb14c
TS
2201 }
2202 if (max_devs == 0)
2203 {
2204 unit_id = index;
2205 bus_id = 0;
2206 } else {
2207 unit_id = index % max_devs;
2208 bus_id = index / max_devs;
2209 }
2210 }
2211
2212 /* if user doesn't specify a unit_id,
2213 * try to find the first free
2214 */
2215
2216 if (unit_id == -1) {
2217 unit_id = 0;
751c6a17 2218 while (drive_get(type, bus_id, unit_id) != NULL) {
e4bcb14c
TS
2219 unit_id++;
2220 if (max_devs && unit_id >= max_devs) {
2221 unit_id -= max_devs;
2222 bus_id++;
2223 }
2224 }
2225 }
2226
2227 /* check unit id */
2228
2229 if (max_devs && unit_id >= max_devs) {
9dfd7c7a
GH
2230 fprintf(stderr, "qemu: unit %d too big (max is %d)\n",
2231 unit_id, max_devs - 1);
751c6a17 2232 return NULL;
e4bcb14c
TS
2233 }
2234
2235 /*
2236 * ignore multiple definitions
2237 */
2238
751c6a17
GH
2239 if (drive_get(type, bus_id, unit_id) != NULL) {
2240 *fatal_error = 0;
2241 return NULL;
2242 }
e4bcb14c
TS
2243
2244 /* init */
2245
751c6a17 2246 dinfo = qemu_mallocz(sizeof(*dinfo));
e23d9c4d 2247 if ((buf = qemu_opts_id(opts)) != NULL) {
9dfd7c7a
GH
2248 dinfo->id = qemu_strdup(buf);
2249 } else {
1dae12e6 2250 /* no id supplied -> create one */
9dfd7c7a 2251 dinfo->id = qemu_mallocz(32);
1dae12e6
GH
2252 if (type == IF_IDE || type == IF_SCSI)
2253 mediastr = (media == MEDIA_CDROM) ? "-cd" : "-hd";
2254 if (max_devs)
9dfd7c7a 2255 snprintf(dinfo->id, 32, "%s%i%s%i",
1dae12e6
GH
2256 devname, bus_id, mediastr, unit_id);
2257 else
9dfd7c7a 2258 snprintf(dinfo->id, 32, "%s%s%i",
1dae12e6
GH
2259 devname, mediastr, unit_id);
2260 }
1dae12e6 2261 dinfo->bdrv = bdrv_new(dinfo->id);
751c6a17
GH
2262 dinfo->devaddr = devaddr;
2263 dinfo->type = type;
2264 dinfo->bus = bus_id;
2265 dinfo->unit = unit_id;
2266 dinfo->onerror = onerror;
9dfd7c7a
GH
2267 dinfo->opts = opts;
2268 if (serial)
2269 strncpy(dinfo->serial, serial, sizeof(serial));
72cf2d4f 2270 QTAILQ_INSERT_TAIL(&drives, dinfo, next);
e4bcb14c 2271
f60d39bc 2272 switch(type) {
e4bcb14c
TS
2273 case IF_IDE:
2274 case IF_SCSI:
62d23efa 2275 case IF_XEN:
c219331e 2276 case IF_NONE:
e4bcb14c
TS
2277 switch(media) {
2278 case MEDIA_DISK:
2279 if (cyls != 0) {
1dae12e6
GH
2280 bdrv_set_geometry_hint(dinfo->bdrv, cyls, heads, secs);
2281 bdrv_set_translation_hint(dinfo->bdrv, translation);
e4bcb14c
TS
2282 }
2283 break;
2284 case MEDIA_CDROM:
1dae12e6 2285 bdrv_set_type_hint(dinfo->bdrv, BDRV_TYPE_CDROM);
e4bcb14c
TS
2286 break;
2287 }
2288 break;
2289 case IF_SD:
2290 /* FIXME: This isn't really a floppy, but it's a reasonable
2291 approximation. */
2292 case IF_FLOPPY:
1dae12e6 2293 bdrv_set_type_hint(dinfo->bdrv, BDRV_TYPE_FLOPPY);
e4bcb14c
TS
2294 break;
2295 case IF_PFLASH:
2296 case IF_MTD:
2297 break;
d176c495
GH
2298 case IF_VIRTIO:
2299 /* add virtio block device */
2300 opts = qemu_opts_create(&qemu_device_opts, NULL, 0);
2301 qemu_opt_set(opts, "driver", "virtio-blk-pci");
2302 qemu_opt_set(opts, "drive", dinfo->id);
2303 if (devaddr)
2304 qemu_opt_set(opts, "addr", devaddr);
2305 break;
aae9460e
PB
2306 case IF_COUNT:
2307 abort();
e4bcb14c 2308 }
9dfd7c7a 2309 if (!file) {
751c6a17
GH
2310 *fatal_error = 0;
2311 return NULL;
2312 }
33f00271 2313 bdrv_flags = 0;
9f7965c7 2314 if (snapshot) {
33f00271 2315 bdrv_flags |= BDRV_O_SNAPSHOT;
9f7965c7
AL
2316 cache = 2; /* always use write-back with snapshot */
2317 }
2318 if (cache == 0) /* no caching */
2319 bdrv_flags |= BDRV_O_NOCACHE;
2320 else if (cache == 2) /* write-back */
2321 bdrv_flags |= BDRV_O_CACHE_WB;
5c6c3a6c
CH
2322
2323 if (aio == 1) {
2324 bdrv_flags |= BDRV_O_NATIVE_AIO;
2325 } else {
2326 bdrv_flags &= ~BDRV_O_NATIVE_AIO;
2327 }
2328
59f2689d
NS
2329 if (ro == 1) {
2330 if (type == IF_IDE) {
2331 fprintf(stderr, "qemu: readonly flag not supported for drive with ide interface\n");
2332 return NULL;
2333 }
2334 (void)bdrv_set_read_only(dinfo->bdrv, 1);
2335 }
2336
1dae12e6 2337 if (bdrv_open2(dinfo->bdrv, file, bdrv_flags, drv) < 0) {
850810d0
JF
2338 fprintf(stderr, "qemu: could not open disk image %s: %s\n",
2339 file, strerror(errno));
751c6a17 2340 return NULL;
e4bcb14c 2341 }
5c6c3a6c 2342
1dae12e6 2343 if (bdrv_key_required(dinfo->bdrv))
c0f4ce77 2344 autostart = 0;
751c6a17
GH
2345 *fatal_error = 0;
2346 return dinfo;
e4bcb14c
TS
2347}
2348
9dfd7c7a
GH
2349static int drive_init_func(QemuOpts *opts, void *opaque)
2350{
2351 QEMUMachine *machine = opaque;
2352 int fatal_error = 0;
2353
2354 if (drive_init(opts, machine, &fatal_error) == NULL) {
2355 if (fatal_error)
2356 return 1;
2357 }
2358 return 0;
2359}
2360
2361static int drive_enable_snapshot(QemuOpts *opts, void *opaque)
2362{
2363 if (NULL == qemu_opt_get(opts, "snapshot")) {
2364 qemu_opt_set(opts, "snapshot", "on");
2365 }
2366 return 0;
2367}
2368
76e30d0f
JK
2369void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque)
2370{
2371 boot_set_handler = func;
2372 boot_set_opaque = opaque;
2373}
2374
2375int qemu_boot_set(const char *boot_devices)
2376{
2377 if (!boot_set_handler) {
2378 return -EINVAL;
2379 }
2380 return boot_set_handler(boot_set_opaque, boot_devices);
2381}
2382
ef3adf68
JK
2383static int parse_bootdevices(char *devices)
2384{
2385 /* We just do some generic consistency checks */
2386 const char *p;
2387 int bitmap = 0;
2388
2389 for (p = devices; *p != '\0'; p++) {
2390 /* Allowed boot devices are:
2391 * a-b: floppy disk drives
2392 * c-f: IDE disk drives
2393 * g-m: machine implementation dependant drives
2394 * n-p: network devices
2395 * It's up to each machine implementation to check if the given boot
2396 * devices match the actual hardware implementation and firmware
2397 * features.
2398 */
2399 if (*p < 'a' || *p > 'p') {
2400 fprintf(stderr, "Invalid boot device '%c'\n", *p);
2401 exit(1);
2402 }
2403 if (bitmap & (1 << (*p - 'a'))) {
2404 fprintf(stderr, "Boot device '%c' was given twice\n", *p);
2405 exit(1);
2406 }
2407 bitmap |= 1 << (*p - 'a');
2408 }
2409 return bitmap;
2410}
2411
e0f084bf
JK
2412static void restore_boot_devices(void *opaque)
2413{
2414 char *standard_boot_devices = opaque;
2415
2416 qemu_boot_set(standard_boot_devices);
2417
2418 qemu_unregister_reset(restore_boot_devices, standard_boot_devices);
2419 qemu_free(standard_boot_devices);
2420}
2421
268a362c
AL
2422static void numa_add(const char *optarg)
2423{
2424 char option[128];
2425 char *endptr;
2426 unsigned long long value, endvalue;
2427 int nodenr;
2428
2429 optarg = get_opt_name(option, 128, optarg, ',') + 1;
2430 if (!strcmp(option, "node")) {
2431 if (get_param_value(option, 128, "nodeid", optarg) == 0) {
2432 nodenr = nb_numa_nodes;
2433 } else {
2434 nodenr = strtoull(option, NULL, 10);
2435 }
2436
2437 if (get_param_value(option, 128, "mem", optarg) == 0) {
2438 node_mem[nodenr] = 0;
2439 } else {
2440 value = strtoull(option, &endptr, 0);
2441 switch (*endptr) {
2442 case 0: case 'M': case 'm':
2443 value <<= 20;
2444 break;
2445 case 'G': case 'g':
2446 value <<= 30;
2447 break;
2448 }
2449 node_mem[nodenr] = value;
2450 }
2451 if (get_param_value(option, 128, "cpus", optarg) == 0) {
2452 node_cpumask[nodenr] = 0;
2453 } else {
2454 value = strtoull(option, &endptr, 10);
2455 if (value >= 64) {
2456 value = 63;
2457 fprintf(stderr, "only 64 CPUs in NUMA mode supported.\n");
2458 } else {
2459 if (*endptr == '-') {
2460 endvalue = strtoull(endptr+1, &endptr, 10);
2461 if (endvalue >= 63) {
2462 endvalue = 62;
2463 fprintf(stderr,
2464 "only 63 CPUs in NUMA mode supported.\n");
2465 }
2466 value = (1 << (endvalue + 1)) - (1 << value);
2467 } else {
2468 value = 1 << value;
2469 }
2470 }
2471 node_cpumask[nodenr] = value;
2472 }
2473 nb_numa_nodes++;
2474 }
2475 return;
2476}
2477
dc6b1c09
AP
2478static void smp_parse(const char *optarg)
2479{
2480 int smp, sockets = 0, threads = 0, cores = 0;
2481 char *endptr;
2482 char option[128];
2483
2484 smp = strtoul(optarg, &endptr, 10);
2485 if (endptr != optarg) {
2486 if (*endptr == ',') {
2487 endptr++;
2488 }
2489 }
2490 if (get_param_value(option, 128, "sockets", endptr) != 0)
2491 sockets = strtoull(option, NULL, 10);
2492 if (get_param_value(option, 128, "cores", endptr) != 0)
2493 cores = strtoull(option, NULL, 10);
2494 if (get_param_value(option, 128, "threads", endptr) != 0)
2495 threads = strtoull(option, NULL, 10);
2496 if (get_param_value(option, 128, "maxcpus", endptr) != 0)
2497 max_cpus = strtoull(option, NULL, 10);
2498
2499 /* compute missing values, prefer sockets over cores over threads */
2500 if (smp == 0 || sockets == 0) {
2501 sockets = sockets > 0 ? sockets : 1;
2502 cores = cores > 0 ? cores : 1;
2503 threads = threads > 0 ? threads : 1;
2504 if (smp == 0) {
2505 smp = cores * threads * sockets;
2506 } else {
2507 sockets = smp / (cores * threads);
2508 }
2509 } else {
2510 if (cores == 0) {
2511 threads = threads > 0 ? threads : 1;
2512 cores = smp / (sockets * threads);
2513 } else {
2514 if (sockets == 0) {
2515 sockets = smp / (cores * threads);
2516 } else {
2517 threads = smp / (cores * sockets);
2518 }
2519 }
2520 }
2521 smp_cpus = smp;
2522 smp_cores = cores > 0 ? cores : 1;
2523 smp_threads = threads > 0 ? threads : 1;
2524 if (max_cpus == 0)
2525 max_cpus = smp_cpus;
2526}
2527
a594cfbf
FB
2528/***********************************************************/
2529/* USB devices */
2530
c0f4ce77 2531static int usb_device_add(const char *devname, int is_hotplug)
a594cfbf
FB
2532{
2533 const char *p;
a5d2f727 2534 USBDevice *dev = NULL;
a594cfbf 2535
a5d2f727 2536 if (!usb_enabled)
a594cfbf
FB
2537 return -1;
2538
0958b4cc
GH
2539 /* drivers with .usbdevice_name entry in USBDeviceInfo */
2540 dev = usbdevice_create(devname);
2541 if (dev)
2542 goto done;
2543
a5d2f727 2544 /* the other ones */
a594cfbf
FB
2545 if (strstart(devname, "host:", &p)) {
2546 dev = usb_host_device_open(p);
6c9f886c 2547 } else if (strstart(devname, "net:", &p)) {
13cf8f21
MM
2548 QemuOpts *opts;
2549 int idx;
6c9f886c 2550
13cf8f21
MM
2551 opts = qemu_opts_parse(&qemu_net_opts, p, NULL);
2552 if (!opts) {
6c9f886c 2553 return -1;
13cf8f21
MM
2554 }
2555
2556 qemu_opt_set(opts, "type", "nic");
2557 qemu_opt_set(opts, "model", "usb");
2558
f6b134ac 2559 idx = net_client_init(NULL, opts, 0);
13cf8f21
MM
2560 if (idx == -1) {
2561 return -1;
2562 }
2563
2564 dev = usb_net_init(&nd_table[idx]);
dc72ac14
AZ
2565 } else if (!strcmp(devname, "bt") || strstart(devname, "bt:", &p)) {
2566 dev = usb_bt_init(devname[2] ? hci_init(p) :
2567 bt_new_hci(qemu_find_bt_vlan(0)));
a594cfbf
FB
2568 } else {
2569 return -1;
2570 }
0d92ed30
PB
2571 if (!dev)
2572 return -1;
2573
a5d2f727 2574done:
a594cfbf
FB
2575 return 0;
2576}
2577
1f3870ab
AL
2578static int usb_device_del(const char *devname)
2579{
2580 int bus_num, addr;
2581 const char *p;
2582
5d0c5750
AL
2583 if (strstart(devname, "host:", &p))
2584 return usb_host_device_close(p);
2585
a5d2f727 2586 if (!usb_enabled)
1f3870ab
AL
2587 return -1;
2588
2589 p = strchr(devname, '.');
2590 if (!p)
2591 return -1;
2592 bus_num = strtoul(devname, NULL, 0);
2593 addr = strtoul(p + 1, NULL, 0);
2594
a5d2f727 2595 return usb_device_delete_addr(bus_num, addr);
1f3870ab
AL
2596}
2597
bd3c948d
GH
2598static int usb_parse(const char *cmdline)
2599{
2600 return usb_device_add(cmdline, 0);
2601}
2602
d54908a5 2603void do_usb_add(Monitor *mon, const QDict *qdict)
a594cfbf 2604{
d54908a5 2605 usb_device_add(qdict_get_str(qdict, "devname"), 1);
a594cfbf
FB
2606}
2607
d54908a5 2608void do_usb_del(Monitor *mon, const QDict *qdict)
a594cfbf 2609{
d54908a5 2610 usb_device_del(qdict_get_str(qdict, "devname"));
a594cfbf
FB
2611}
2612
201a51fc
AZ
2613/***********************************************************/
2614/* PCMCIA/Cardbus */
2615
2616static struct pcmcia_socket_entry_s {
bc24a225 2617 PCMCIASocket *socket;
201a51fc
AZ
2618 struct pcmcia_socket_entry_s *next;
2619} *pcmcia_sockets = 0;
2620
bc24a225 2621void pcmcia_socket_register(PCMCIASocket *socket)
201a51fc
AZ
2622{
2623 struct pcmcia_socket_entry_s *entry;
2624
2625 entry = qemu_malloc(sizeof(struct pcmcia_socket_entry_s));
2626 entry->socket = socket;
2627 entry->next = pcmcia_sockets;
2628 pcmcia_sockets = entry;
2629}
2630
bc24a225 2631void pcmcia_socket_unregister(PCMCIASocket *socket)
201a51fc
AZ
2632{
2633 struct pcmcia_socket_entry_s *entry, **ptr;
2634
2635 ptr = &pcmcia_sockets;
2636 for (entry = *ptr; entry; ptr = &entry->next, entry = *ptr)
2637 if (entry->socket == socket) {
2638 *ptr = entry->next;
2639 qemu_free(entry);
2640 }
2641}
2642
376253ec 2643void pcmcia_info(Monitor *mon)
201a51fc
AZ
2644{
2645 struct pcmcia_socket_entry_s *iter;
376253ec 2646
201a51fc 2647 if (!pcmcia_sockets)
376253ec 2648 monitor_printf(mon, "No PCMCIA sockets\n");
201a51fc
AZ
2649
2650 for (iter = pcmcia_sockets; iter; iter = iter->next)
376253ec
AL
2651 monitor_printf(mon, "%s: %s\n", iter->socket->slot_string,
2652 iter->socket->attached ? iter->socket->card_string :
2653 "Empty");
201a51fc
AZ
2654}
2655
2ff89790 2656/***********************************************************/
3023f332
AL
2657/* register display */
2658
7b5d76da
AL
2659struct DisplayAllocator default_allocator = {
2660 defaultallocator_create_displaysurface,
2661 defaultallocator_resize_displaysurface,
2662 defaultallocator_free_displaysurface
2663};
2664
3023f332
AL
2665void register_displaystate(DisplayState *ds)
2666{
2667 DisplayState **s;
2668 s = &display_state;
2669 while (*s != NULL)
2670 s = &(*s)->next;
2671 ds->next = NULL;
2672 *s = ds;
2673}
2674
2675DisplayState *get_displaystate(void)
2676{
2677 return display_state;
2678}
2679
7b5d76da
AL
2680DisplayAllocator *register_displayallocator(DisplayState *ds, DisplayAllocator *da)
2681{
2682 if(ds->allocator == &default_allocator) ds->allocator = da;
2683 return ds->allocator;
2684}
2685
2ff89790
TS
2686/* dumb display */
2687
8f391ab4 2688static void dumb_display_init(void)
2ff89790 2689{
8f391ab4 2690 DisplayState *ds = qemu_mallocz(sizeof(DisplayState));
7b5d76da
AL
2691 ds->allocator = &default_allocator;
2692 ds->surface = qemu_create_displaysurface(ds, 640, 480);
8f391ab4 2693 register_displaystate(ds);
2ff89790
TS
2694}
2695
8a7ddc38
FB
2696/***********************************************************/
2697/* I/O handling */
0824d6fc 2698
c4b1fcc0
FB
2699typedef struct IOHandlerRecord {
2700 int fd;
7c9d8e07
FB
2701 IOCanRWHandler *fd_read_poll;
2702 IOHandler *fd_read;
2703 IOHandler *fd_write;
cafffd40 2704 int deleted;
c4b1fcc0
FB
2705 void *opaque;
2706 /* temporary data */
2707 struct pollfd *ufd;
8a7ddc38 2708 struct IOHandlerRecord *next;
c4b1fcc0
FB
2709} IOHandlerRecord;
2710
8a7ddc38 2711static IOHandlerRecord *first_io_handler;
c4b1fcc0 2712
7c9d8e07
FB
2713/* XXX: fd_read_poll should be suppressed, but an API change is
2714 necessary in the character devices to suppress fd_can_read(). */
5fafdf24
TS
2715int qemu_set_fd_handler2(int fd,
2716 IOCanRWHandler *fd_read_poll,
2717 IOHandler *fd_read,
2718 IOHandler *fd_write,
7c9d8e07 2719 void *opaque)
c4b1fcc0 2720{
7c9d8e07 2721 IOHandlerRecord **pioh, *ioh;
c4b1fcc0 2722
7c9d8e07
FB
2723 if (!fd_read && !fd_write) {
2724 pioh = &first_io_handler;
2725 for(;;) {
2726 ioh = *pioh;
2727 if (ioh == NULL)
2728 break;
2729 if (ioh->fd == fd) {
cafffd40 2730 ioh->deleted = 1;
7c9d8e07
FB
2731 break;
2732 }
2733 pioh = &ioh->next;
2734 }
2735 } else {
2736 for(ioh = first_io_handler; ioh != NULL; ioh = ioh->next) {
2737 if (ioh->fd == fd)
2738 goto found;
2739 }
2740 ioh = qemu_mallocz(sizeof(IOHandlerRecord));
7c9d8e07
FB
2741 ioh->next = first_io_handler;
2742 first_io_handler = ioh;
2743 found:
2744 ioh->fd = fd;
2745 ioh->fd_read_poll = fd_read_poll;
2746 ioh->fd_read = fd_read;
2747 ioh->fd_write = fd_write;
2748 ioh->opaque = opaque;
cafffd40 2749 ioh->deleted = 0;
7c9d8e07 2750 }
c4b1fcc0
FB
2751 return 0;
2752}
2753
5fafdf24
TS
2754int qemu_set_fd_handler(int fd,
2755 IOHandler *fd_read,
2756 IOHandler *fd_write,
7c9d8e07 2757 void *opaque)
8a7ddc38 2758{
7c9d8e07 2759 return qemu_set_fd_handler2(fd, NULL, fd_read, fd_write, opaque);
8a7ddc38
FB
2760}
2761
56f3a5d0 2762#ifdef _WIN32
f331110f
FB
2763/***********************************************************/
2764/* Polling handling */
2765
2766typedef struct PollingEntry {
2767 PollingFunc *func;
2768 void *opaque;
2769 struct PollingEntry *next;
2770} PollingEntry;
2771
2772static PollingEntry *first_polling_entry;
2773
2774int qemu_add_polling_cb(PollingFunc *func, void *opaque)
2775{
2776 PollingEntry **ppe, *pe;
2777 pe = qemu_mallocz(sizeof(PollingEntry));
f331110f
FB
2778 pe->func = func;
2779 pe->opaque = opaque;
2780 for(ppe = &first_polling_entry; *ppe != NULL; ppe = &(*ppe)->next);
2781 *ppe = pe;
2782 return 0;
2783}
2784
2785void qemu_del_polling_cb(PollingFunc *func, void *opaque)
2786{
2787 PollingEntry **ppe, *pe;
2788 for(ppe = &first_polling_entry; *ppe != NULL; ppe = &(*ppe)->next) {
2789 pe = *ppe;
2790 if (pe->func == func && pe->opaque == opaque) {
2791 *ppe = pe->next;
2792 qemu_free(pe);
2793 break;
2794 }
2795 }
2796}
2797
a18e524a
FB
2798/***********************************************************/
2799/* Wait objects support */
2800typedef struct WaitObjects {
2801 int num;
2802 HANDLE events[MAXIMUM_WAIT_OBJECTS + 1];
2803 WaitObjectFunc *func[MAXIMUM_WAIT_OBJECTS + 1];
2804 void *opaque[MAXIMUM_WAIT_OBJECTS + 1];
2805} WaitObjects;
2806
2807static WaitObjects wait_objects = {0};
3b46e624 2808
a18e524a
FB
2809int qemu_add_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
2810{
2811 WaitObjects *w = &wait_objects;
2812
2813 if (w->num >= MAXIMUM_WAIT_OBJECTS)
2814 return -1;
2815 w->events[w->num] = handle;
2816 w->func[w->num] = func;
2817 w->opaque[w->num] = opaque;
2818 w->num++;
2819 return 0;
2820}
2821
2822void qemu_del_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
2823{
2824 int i, found;
2825 WaitObjects *w = &wait_objects;
2826
2827 found = 0;
2828 for (i = 0; i < w->num; i++) {
2829 if (w->events[i] == handle)
2830 found = 1;
2831 if (found) {
2832 w->events[i] = w->events[i + 1];
2833 w->func[i] = w->func[i + 1];
2834 w->opaque[i] = w->opaque[i + 1];
3b46e624 2835 }
a18e524a
FB
2836 }
2837 if (found)
2838 w->num--;
2839}
2840#endif
2841
8a7ddc38
FB
2842/***********************************************************/
2843/* ram save/restore */
2844
94fb0909 2845#define RAM_SAVE_FLAG_FULL 0x01 /* Obsolete, not used anymore */
475e4277
AL
2846#define RAM_SAVE_FLAG_COMPRESS 0x02
2847#define RAM_SAVE_FLAG_MEM_SIZE 0x04
2848#define RAM_SAVE_FLAG_PAGE 0x08
2849#define RAM_SAVE_FLAG_EOS 0x10
2850
2851static int is_dup_page(uint8_t *page, uint8_t ch)
8a7ddc38 2852{
475e4277
AL
2853 uint32_t val = ch << 24 | ch << 16 | ch << 8 | ch;
2854 uint32_t *array = (uint32_t *)page;
2855 int i;
3b46e624 2856
475e4277
AL
2857 for (i = 0; i < (TARGET_PAGE_SIZE / 4); i++) {
2858 if (array[i] != val)
2859 return 0;
2860 }
2861
2862 return 1;
2863}
2864
2865static int ram_save_block(QEMUFile *f)
2866{
c227f099
AL
2867 static ram_addr_t current_addr = 0;
2868 ram_addr_t saved_addr = current_addr;
2869 ram_addr_t addr = 0;
475e4277
AL
2870 int found = 0;
2871
94a6b54f 2872 while (addr < last_ram_offset) {
475e4277 2873 if (cpu_physical_memory_get_dirty(current_addr, MIGRATION_DIRTY_FLAG)) {
5579c7f3 2874 uint8_t *p;
475e4277
AL
2875
2876 cpu_physical_memory_reset_dirty(current_addr,
2877 current_addr + TARGET_PAGE_SIZE,
2878 MIGRATION_DIRTY_FLAG);
2879
5579c7f3 2880 p = qemu_get_ram_ptr(current_addr);
475e4277 2881
5579c7f3 2882 if (is_dup_page(p, *p)) {
475e4277 2883 qemu_put_be64(f, current_addr | RAM_SAVE_FLAG_COMPRESS);
5579c7f3 2884 qemu_put_byte(f, *p);
475e4277
AL
2885 } else {
2886 qemu_put_be64(f, current_addr | RAM_SAVE_FLAG_PAGE);
5579c7f3 2887 qemu_put_buffer(f, p, TARGET_PAGE_SIZE);
c88676f8 2888 }
475e4277
AL
2889
2890 found = 1;
2891 break;
c88676f8 2892 }
475e4277 2893 addr += TARGET_PAGE_SIZE;
94a6b54f 2894 current_addr = (saved_addr + addr) % last_ram_offset;
8a7ddc38 2895 }
475e4277
AL
2896
2897 return found;
8a7ddc38
FB
2898}
2899
84307938 2900static uint64_t bytes_transferred;
475e4277 2901
c227f099 2902static ram_addr_t ram_save_remaining(void)
475e4277 2903{
c227f099
AL
2904 ram_addr_t addr;
2905 ram_addr_t count = 0;
475e4277 2906
94a6b54f 2907 for (addr = 0; addr < last_ram_offset; addr += TARGET_PAGE_SIZE) {
475e4277
AL
2908 if (cpu_physical_memory_get_dirty(addr, MIGRATION_DIRTY_FLAG))
2909 count++;
2910 }
2911
2912 return count;
2913}
2914
9f9e28cd
GC
2915uint64_t ram_bytes_remaining(void)
2916{
2917 return ram_save_remaining() * TARGET_PAGE_SIZE;
2918}
2919
2920uint64_t ram_bytes_transferred(void)
2921{
2922 return bytes_transferred;
2923}
2924
2925uint64_t ram_bytes_total(void)
2926{
2927 return last_ram_offset;
2928}
2929
f327aa0c 2930static int ram_save_live(Monitor *mon, QEMUFile *f, int stage, void *opaque)
475e4277 2931{
c227f099 2932 ram_addr_t addr;
a0a3fd60
GC
2933 uint64_t bytes_transferred_last;
2934 double bwidth = 0;
2935 uint64_t expected_time = 0;
475e4277 2936
4ec7fcc7
JK
2937 if (stage < 0) {
2938 cpu_physical_memory_set_dirty_tracking(0);
2939 return 0;
2940 }
2941
9fa06385 2942 if (cpu_physical_sync_dirty_bitmap(0, TARGET_PHYS_ADDR_MAX) != 0) {
b0a46a33
JK
2943 qemu_file_set_error(f);
2944 return 0;
2945 }
2946
475e4277 2947 if (stage == 1) {
84307938
JK
2948 bytes_transferred = 0;
2949
475e4277 2950 /* Make sure all dirty bits are set */
94a6b54f 2951 for (addr = 0; addr < last_ram_offset; addr += TARGET_PAGE_SIZE) {
475e4277
AL
2952 if (!cpu_physical_memory_get_dirty(addr, MIGRATION_DIRTY_FLAG))
2953 cpu_physical_memory_set_dirty(addr);
2954 }
b0a46a33 2955
475e4277
AL
2956 /* Enable dirty memory tracking */
2957 cpu_physical_memory_set_dirty_tracking(1);
2958
94a6b54f 2959 qemu_put_be64(f, last_ram_offset | RAM_SAVE_FLAG_MEM_SIZE);
475e4277
AL
2960 }
2961
a0a3fd60
GC
2962 bytes_transferred_last = bytes_transferred;
2963 bwidth = get_clock();
2964
475e4277
AL
2965 while (!qemu_file_rate_limit(f)) {
2966 int ret;
2967
2968 ret = ram_save_block(f);
9f9e28cd 2969 bytes_transferred += ret * TARGET_PAGE_SIZE;
475e4277
AL
2970 if (ret == 0) /* no more blocks */
2971 break;
2972 }
2973
a0a3fd60
GC
2974 bwidth = get_clock() - bwidth;
2975 bwidth = (bytes_transferred - bytes_transferred_last) / bwidth;
2976
2977 /* if we haven't transferred anything this round, force expected_time to a
2978 * a very high value, but without crashing */
2979 if (bwidth == 0)
2980 bwidth = 0.000001;
2981
475e4277 2982 /* try transferring iterative blocks of memory */
475e4277 2983 if (stage == 3) {
475e4277 2984 /* flush all remaining blocks regardless of rate limiting */
9f9e28cd
GC
2985 while (ram_save_block(f) != 0) {
2986 bytes_transferred += TARGET_PAGE_SIZE;
2987 }
8215e914 2988 cpu_physical_memory_set_dirty_tracking(0);
475e4277
AL
2989 }
2990
2991 qemu_put_be64(f, RAM_SAVE_FLAG_EOS);
2992
a0a3fd60
GC
2993 expected_time = ram_save_remaining() * TARGET_PAGE_SIZE / bwidth;
2994
2995 return (stage == 2) && (expected_time <= migrate_max_downtime());
475e4277
AL
2996}
2997
475e4277
AL
2998static int ram_load(QEMUFile *f, void *opaque, int version_id)
2999{
c227f099 3000 ram_addr_t addr;
475e4277
AL
3001 int flags;
3002
475e4277
AL
3003 if (version_id != 3)
3004 return -EINVAL;
3005
3006 do {
3007 addr = qemu_get_be64(f);
3008
3009 flags = addr & ~TARGET_PAGE_MASK;
3010 addr &= TARGET_PAGE_MASK;
3011
3012 if (flags & RAM_SAVE_FLAG_MEM_SIZE) {
94a6b54f 3013 if (addr != last_ram_offset)
475e4277
AL
3014 return -EINVAL;
3015 }
3016
475e4277
AL
3017 if (flags & RAM_SAVE_FLAG_COMPRESS) {
3018 uint8_t ch = qemu_get_byte(f);
779c6bef
AL
3019 memset(qemu_get_ram_ptr(addr), ch, TARGET_PAGE_SIZE);
3020#ifndef _WIN32
30868442
AL
3021 if (ch == 0 &&
3022 (!kvm_enabled() || kvm_has_sync_mmu())) {
3023 madvise(qemu_get_ram_ptr(addr), TARGET_PAGE_SIZE, MADV_DONTNEED);
779c6bef 3024 }
30868442 3025#endif
9a743e5b 3026 } else if (flags & RAM_SAVE_FLAG_PAGE) {
5579c7f3 3027 qemu_get_buffer(f, qemu_get_ram_ptr(addr), TARGET_PAGE_SIZE);
9a743e5b
JK
3028 }
3029 if (qemu_file_has_error(f)) {
3030 return -EIO;
3031 }
475e4277
AL
3032 } while (!(flags & RAM_SAVE_FLAG_EOS));
3033
8a7ddc38
FB
3034 return 0;
3035}
3036
9e472e10
AL
3037void qemu_service_io(void)
3038{
d9f75a4e 3039 qemu_notify_event();
9e472e10
AL
3040}
3041
cc1daa40
FB
3042/***********************************************************/
3043/* machine registration */
3044
bdaf78e0 3045static QEMUMachine *first_machine = NULL;
6f338c34 3046QEMUMachine *current_machine = NULL;
cc1daa40
FB
3047
3048int qemu_register_machine(QEMUMachine *m)
3049{
3050 QEMUMachine **pm;
3051 pm = &first_machine;
3052 while (*pm != NULL)
3053 pm = &(*pm)->next;
3054 m->next = NULL;
3055 *pm = m;
3056 return 0;
3057}
3058
9596ebb7 3059static QEMUMachine *find_machine(const char *name)
cc1daa40
FB
3060{
3061 QEMUMachine *m;
3062
3063 for(m = first_machine; m != NULL; m = m->next) {
3064 if (!strcmp(m->name, name))
3065 return m;
3f6599e6
MM
3066 if (m->alias && !strcmp(m->alias, name))
3067 return m;
cc1daa40
FB
3068 }
3069 return NULL;
3070}
3071
0c257437
AL
3072static QEMUMachine *find_default_machine(void)
3073{
3074 QEMUMachine *m;
3075
3076 for(m = first_machine; m != NULL; m = m->next) {
3077 if (m->is_default) {
3078 return m;
3079 }
3080 }
3081 return NULL;
3082}
3083
8a7ddc38
FB
3084/***********************************************************/
3085/* main execution loop */
3086
9596ebb7 3087static void gui_update(void *opaque)
8a7ddc38 3088{
7d957bd8 3089 uint64_t interval = GUI_REFRESH_INTERVAL;
740733bb 3090 DisplayState *ds = opaque;
7d957bd8
AL
3091 DisplayChangeListener *dcl = ds->listeners;
3092
3093 dpy_refresh(ds);
3094
3095 while (dcl != NULL) {
3096 if (dcl->gui_timer_interval &&
3097 dcl->gui_timer_interval < interval)
3098 interval = dcl->gui_timer_interval;
3099 dcl = dcl->next;
3100 }
3101 qemu_mod_timer(ds->gui_timer, interval + qemu_get_clock(rt_clock));
8a7ddc38
FB
3102}
3103
9043b62d
BS
3104static void nographic_update(void *opaque)
3105{
3106 uint64_t interval = GUI_REFRESH_INTERVAL;
3107
3108 qemu_mod_timer(nographic_timer, interval + qemu_get_clock(rt_clock));
3109}
3110
0bd48850
FB
3111struct vm_change_state_entry {
3112 VMChangeStateHandler *cb;
3113 void *opaque;
72cf2d4f 3114 QLIST_ENTRY (vm_change_state_entry) entries;
0bd48850
FB
3115};
3116
72cf2d4f 3117static QLIST_HEAD(vm_change_state_head, vm_change_state_entry) vm_change_state_head;
0bd48850
FB
3118
3119VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
3120 void *opaque)
3121{
3122 VMChangeStateEntry *e;
3123
3124 e = qemu_mallocz(sizeof (*e));
0bd48850
FB
3125
3126 e->cb = cb;
3127 e->opaque = opaque;
72cf2d4f 3128 QLIST_INSERT_HEAD(&vm_change_state_head, e, entries);
0bd48850
FB
3129 return e;
3130}
3131
3132void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
3133{
72cf2d4f 3134 QLIST_REMOVE (e, entries);
0bd48850
FB
3135 qemu_free (e);
3136}
3137
9781e040 3138static void vm_state_notify(int running, int reason)
0bd48850
FB
3139{
3140 VMChangeStateEntry *e;
3141
3142 for (e = vm_change_state_head.lh_first; e; e = e->entries.le_next) {
9781e040 3143 e->cb(e->opaque, running, reason);
0bd48850
FB
3144 }
3145}
3146
d6dc3d42
AL
3147static void resume_all_vcpus(void);
3148static void pause_all_vcpus(void);
3149
8a7ddc38
FB
3150void vm_start(void)
3151{
3152 if (!vm_running) {
3153 cpu_enable_ticks();
3154 vm_running = 1;
9781e040 3155 vm_state_notify(1, 0);
efe75411 3156 qemu_rearm_alarm_timer(alarm_timer);
d6dc3d42 3157 resume_all_vcpus();
8a7ddc38
FB
3158 }
3159}
3160
bb0c6722
FB
3161/* reset/shutdown handler */
3162
3163typedef struct QEMUResetEntry {
72cf2d4f 3164 QTAILQ_ENTRY(QEMUResetEntry) entry;
bb0c6722
FB
3165 QEMUResetHandler *func;
3166 void *opaque;
bb0c6722
FB
3167} QEMUResetEntry;
3168
72cf2d4f
BS
3169static QTAILQ_HEAD(reset_handlers, QEMUResetEntry) reset_handlers =
3170 QTAILQ_HEAD_INITIALIZER(reset_handlers);
bb0c6722
FB
3171static int reset_requested;
3172static int shutdown_requested;
3475187d 3173static int powerdown_requested;
e568902a 3174static int debug_requested;
6e29f5da 3175static int vmstop_requested;
bb0c6722 3176
cf7a2fe2
AJ
3177int qemu_shutdown_requested(void)
3178{
3179 int r = shutdown_requested;
3180 shutdown_requested = 0;
3181 return r;
3182}
3183
3184int qemu_reset_requested(void)
3185{
3186 int r = reset_requested;
3187 reset_requested = 0;
3188 return r;
3189}
3190
3191int qemu_powerdown_requested(void)
3192{
3193 int r = powerdown_requested;
3194 powerdown_requested = 0;
3195 return r;
3196}
3197
e568902a
AL
3198static int qemu_debug_requested(void)
3199{
3200 int r = debug_requested;
3201 debug_requested = 0;
3202 return r;
3203}
3204
6e29f5da
AL
3205static int qemu_vmstop_requested(void)
3206{
3207 int r = vmstop_requested;
3208 vmstop_requested = 0;
3209 return r;
3210}
3211
3212static void do_vm_stop(int reason)
3213{
3214 if (vm_running) {
3215 cpu_disable_ticks();
3216 vm_running = 0;
d6dc3d42 3217 pause_all_vcpus();
6e29f5da
AL
3218 vm_state_notify(0, reason);
3219 }
3220}
3221
a08d4367 3222void qemu_register_reset(QEMUResetHandler *func, void *opaque)
bb0c6722 3223{
55ddfe8e 3224 QEMUResetEntry *re = qemu_mallocz(sizeof(QEMUResetEntry));
bb0c6722 3225
bb0c6722
FB
3226 re->func = func;
3227 re->opaque = opaque;
72cf2d4f 3228 QTAILQ_INSERT_TAIL(&reset_handlers, re, entry);
bb0c6722
FB
3229}
3230
dda9b29f 3231void qemu_unregister_reset(QEMUResetHandler *func, void *opaque)
bb0c6722
FB
3232{
3233 QEMUResetEntry *re;
3234
72cf2d4f 3235 QTAILQ_FOREACH(re, &reset_handlers, entry) {
dda9b29f 3236 if (re->func == func && re->opaque == opaque) {
72cf2d4f 3237 QTAILQ_REMOVE(&reset_handlers, re, entry);
dda9b29f
JK
3238 qemu_free(re);
3239 return;
3240 }
3241 }
3242}
3243
3244void qemu_system_reset(void)
3245{
3246 QEMUResetEntry *re, *nre;
3247
3248 /* reset all devices */
72cf2d4f 3249 QTAILQ_FOREACH_SAFE(re, &reset_handlers, entry, nre) {
bb0c6722
FB
3250 re->func(re->opaque);
3251 }
3252}
3253
3254void qemu_system_reset_request(void)
3255{
d1beab82
FB
3256 if (no_reboot) {
3257 shutdown_requested = 1;
3258 } else {
3259 reset_requested = 1;
3260 }
d9f75a4e 3261 qemu_notify_event();
bb0c6722
FB
3262}
3263
3264void qemu_system_shutdown_request(void)
3265{
3266 shutdown_requested = 1;
d9f75a4e 3267 qemu_notify_event();
bb0c6722
FB
3268}
3269
3475187d
FB
3270void qemu_system_powerdown_request(void)
3271{
3272 powerdown_requested = 1;
d9f75a4e
AL
3273 qemu_notify_event();
3274}
3275
d6dc3d42
AL
3276#ifdef CONFIG_IOTHREAD
3277static void qemu_system_vmstop_request(int reason)
d9f75a4e 3278{
d6dc3d42
AL
3279 vmstop_requested = reason;
3280 qemu_notify_event();
bb0c6722 3281}
d6dc3d42 3282#endif
bb0c6722 3283
50317c7f
AL
3284#ifndef _WIN32
3285static int io_thread_fd = -1;
3286
3287static void qemu_event_increment(void)
3fcf7b6b 3288{
50317c7f
AL
3289 static const char byte = 0;
3290
3291 if (io_thread_fd == -1)
3292 return;
3293
3294 write(io_thread_fd, &byte, sizeof(byte));
3295}
3296
3297static void qemu_event_read(void *opaque)
3298{
3299 int fd = (unsigned long)opaque;
3300 ssize_t len;
3301
3302 /* Drain the notify pipe */
3303 do {
3304 char buffer[512];
3305 len = read(fd, buffer, sizeof(buffer));
3306 } while ((len == -1 && errno == EINTR) || len > 0);
3307}
3308
3309static int qemu_event_init(void)
3310{
3311 int err;
3312 int fds[2];
3313
3314 err = pipe(fds);
3315 if (err == -1)
3316 return -errno;
3317
3318 err = fcntl_setfl(fds[0], O_NONBLOCK);
3319 if (err < 0)
3320 goto fail;
3321
3322 err = fcntl_setfl(fds[1], O_NONBLOCK);
3323 if (err < 0)
3324 goto fail;
3325
3326 qemu_set_fd_handler2(fds[0], NULL, qemu_event_read, NULL,
3327 (void *)(unsigned long)fds[0]);
3328
3329 io_thread_fd = fds[1];
a7e21219
JK
3330 return 0;
3331
50317c7f
AL
3332fail:
3333 close(fds[0]);
3334 close(fds[1]);
3335 return err;
3336}
3337#else
3338HANDLE qemu_event_handle;
3339
3340static void dummy_event_handler(void *opaque)
3341{
3342}
3343
3344static int qemu_event_init(void)
3345{
3346 qemu_event_handle = CreateEvent(NULL, FALSE, FALSE, NULL);
3347 if (!qemu_event_handle) {
20889d4e 3348 fprintf(stderr, "Failed CreateEvent: %ld\n", GetLastError());
50317c7f
AL
3349 return -1;
3350 }
3351 qemu_add_wait_object(qemu_event_handle, dummy_event_handler, NULL);
3fcf7b6b
AL
3352 return 0;
3353}
3354
50317c7f
AL
3355static void qemu_event_increment(void)
3356{
de1c90cf 3357 if (!SetEvent(qemu_event_handle)) {
20889d4e 3358 fprintf(stderr, "qemu_event_increment: SetEvent failed: %ld\n",
de1c90cf 3359 GetLastError());
3360 exit (1);
3361 }
50317c7f
AL
3362}
3363#endif
3364
d6dc3d42
AL
3365static int cpu_can_run(CPUState *env)
3366{
3367 if (env->stop)
3368 return 0;
3369 if (env->stopped)
3370 return 0;
3371 return 1;
3372}
3373
3374#ifndef CONFIG_IOTHREAD
50317c7f
AL
3375static int qemu_init_main_loop(void)
3376{
3377 return qemu_event_init();
3378}
3379
0bf46a40
AL
3380void qemu_init_vcpu(void *_env)
3381{
3382 CPUState *env = _env;
3383
3384 if (kvm_enabled())
3385 kvm_init_vcpu(env);
dc6b1c09
AP
3386 env->nr_cores = smp_cores;
3387 env->nr_threads = smp_threads;
0bf46a40
AL
3388 return;
3389}
3390
8edac960
AL
3391int qemu_cpu_self(void *env)
3392{
3393 return 1;
3394}
3395
d6dc3d42
AL
3396static void resume_all_vcpus(void)
3397{
3398}
3399
3400static void pause_all_vcpus(void)
3401{
3402}
3403
8edac960
AL
3404void qemu_cpu_kick(void *env)
3405{
3406 return;
3407}
3408
d6dc3d42
AL
3409void qemu_notify_event(void)
3410{
3411 CPUState *env = cpu_single_env;
3412
3413 if (env) {
3414 cpu_exit(env);
4a1418e0 3415 }
d6dc3d42
AL
3416}
3417
d549db5a
GC
3418void qemu_mutex_lock_iothread(void) {}
3419void qemu_mutex_unlock_iothread(void) {}
4870852c 3420
6e29f5da
AL
3421void vm_stop(int reason)
3422{
3423 do_vm_stop(reason);
3424}
3425
d6dc3d42
AL
3426#else /* CONFIG_IOTHREAD */
3427
3428#include "qemu-thread.h"
3429
3430QemuMutex qemu_global_mutex;
3431static QemuMutex qemu_fair_mutex;
3432
3433static QemuThread io_thread;
3434
3435static QemuThread *tcg_cpu_thread;
3436static QemuCond *tcg_halt_cond;
3437
3438static int qemu_system_ready;
3439/* cpu creation */
3440static QemuCond qemu_cpu_cond;
3441/* system init */
3442static QemuCond qemu_system_cond;
3443static QemuCond qemu_pause_cond;
3444
3445static void block_io_signals(void);
3446static void unblock_io_signals(void);
3447static int tcg_has_work(void);
3448
3449static int qemu_init_main_loop(void)
3450{
3451 int ret;
3452
3453 ret = qemu_event_init();
3454 if (ret)
3455 return ret;
3456
3457 qemu_cond_init(&qemu_pause_cond);
3458 qemu_mutex_init(&qemu_fair_mutex);
3459 qemu_mutex_init(&qemu_global_mutex);
3460 qemu_mutex_lock(&qemu_global_mutex);
3461
3462 unblock_io_signals();
3463 qemu_thread_self(&io_thread);
3464
3465 return 0;
3466}
3467
3468static void qemu_wait_io_event(CPUState *env)
3469{
3470 while (!tcg_has_work())
3471 qemu_cond_timedwait(env->halt_cond, &qemu_global_mutex, 1000);
3472
3473 qemu_mutex_unlock(&qemu_global_mutex);
3474
3475 /*
3476 * Users of qemu_global_mutex can be starved, having no chance
3477 * to acquire it since this path will get to it first.
3478 * So use another lock to provide fairness.
3479 */
3480 qemu_mutex_lock(&qemu_fair_mutex);
3481 qemu_mutex_unlock(&qemu_fair_mutex);
3482
3483 qemu_mutex_lock(&qemu_global_mutex);
3484 if (env->stop) {
3485 env->stop = 0;
3486 env->stopped = 1;
3487 qemu_cond_signal(&qemu_pause_cond);
3488 }
3489}
3490
3491static int qemu_cpu_exec(CPUState *env);
3492
3493static void *kvm_cpu_thread_fn(void *arg)
3494{
3495 CPUState *env = arg;
3496
3497 block_io_signals();
3498 qemu_thread_self(env->thread);
321c1cb1
JCD
3499 if (kvm_enabled())
3500 kvm_init_vcpu(env);
d6dc3d42
AL
3501
3502 /* signal CPU creation */
3503 qemu_mutex_lock(&qemu_global_mutex);
3504 env->created = 1;
3505 qemu_cond_signal(&qemu_cpu_cond);
3506
3507 /* and wait for machine initialization */
3508 while (!qemu_system_ready)
3509 qemu_cond_timedwait(&qemu_system_cond, &qemu_global_mutex, 100);
3510
3511 while (1) {
3512 if (cpu_can_run(env))
3513 qemu_cpu_exec(env);
1c3173b9 3514 qemu_wait_io_event(env);
d6dc3d42
AL
3515 }
3516
3517 return NULL;
3518}
3519
3520static void tcg_cpu_exec(void);
3521
3522static void *tcg_cpu_thread_fn(void *arg)
3523{
3524 CPUState *env = arg;
3525
3526 block_io_signals();
3527 qemu_thread_self(env->thread);
3528
3529 /* signal CPU creation */
3530 qemu_mutex_lock(&qemu_global_mutex);
3531 for (env = first_cpu; env != NULL; env = env->next_cpu)
3532 env->created = 1;
3533 qemu_cond_signal(&qemu_cpu_cond);
3534
3535 /* and wait for machine initialization */
3536 while (!qemu_system_ready)
3537 qemu_cond_timedwait(&qemu_system_cond, &qemu_global_mutex, 100);
3538
3539 while (1) {
3540 tcg_cpu_exec();
3541 qemu_wait_io_event(cur_cpu);
3542 }
3543
3544 return NULL;
3545}
3546
3547void qemu_cpu_kick(void *_env)
3548{
3549 CPUState *env = _env;
3550 qemu_cond_broadcast(env->halt_cond);
3551 if (kvm_enabled())
3552 qemu_thread_signal(env->thread, SIGUSR1);
3553}
3554
e5bc201d 3555int qemu_cpu_self(void *_env)
d6dc3d42 3556{
e5bc201d
GC
3557 CPUState *env = _env;
3558 QemuThread this;
3559
3560 qemu_thread_self(&this);
3561
3562 return qemu_thread_equal(&this, env->thread);
d6dc3d42
AL
3563}
3564
3565static void cpu_signal(int sig)
3566{
3567 if (cpu_single_env)
3568 cpu_exit(cpu_single_env);
3569}
3570
3571static void block_io_signals(void)
3572{
3573 sigset_t set;
3574 struct sigaction sigact;
3575
3576 sigemptyset(&set);
3577 sigaddset(&set, SIGUSR2);
3578 sigaddset(&set, SIGIO);
3579 sigaddset(&set, SIGALRM);
3580 pthread_sigmask(SIG_BLOCK, &set, NULL);
3581
3582 sigemptyset(&set);
3583 sigaddset(&set, SIGUSR1);
3584 pthread_sigmask(SIG_UNBLOCK, &set, NULL);
3585
3586 memset(&sigact, 0, sizeof(sigact));
3587 sigact.sa_handler = cpu_signal;
3588 sigaction(SIGUSR1, &sigact, NULL);
3589}
3590
3591static void unblock_io_signals(void)
3592{
3593 sigset_t set;
3594
3595 sigemptyset(&set);
3596 sigaddset(&set, SIGUSR2);
3597 sigaddset(&set, SIGIO);
3598 sigaddset(&set, SIGALRM);
3599 pthread_sigmask(SIG_UNBLOCK, &set, NULL);
3600
3601 sigemptyset(&set);
3602 sigaddset(&set, SIGUSR1);
3603 pthread_sigmask(SIG_BLOCK, &set, NULL);
3604}
3605
3606static void qemu_signal_lock(unsigned int msecs)
3607{
3608 qemu_mutex_lock(&qemu_fair_mutex);
3609
3610 while (qemu_mutex_trylock(&qemu_global_mutex)) {
3611 qemu_thread_signal(tcg_cpu_thread, SIGUSR1);
3612 if (!qemu_mutex_timedlock(&qemu_global_mutex, msecs))
3613 break;
3614 }
3615 qemu_mutex_unlock(&qemu_fair_mutex);
3616}
3617
d549db5a 3618void qemu_mutex_lock_iothread(void)
d6dc3d42
AL
3619{
3620 if (kvm_enabled()) {
3621 qemu_mutex_lock(&qemu_fair_mutex);
3622 qemu_mutex_lock(&qemu_global_mutex);
3623 qemu_mutex_unlock(&qemu_fair_mutex);
3624 } else
3625 qemu_signal_lock(100);
3626}
3627
d549db5a 3628void qemu_mutex_unlock_iothread(void)
d6dc3d42
AL
3629{
3630 qemu_mutex_unlock(&qemu_global_mutex);
3631}
3632
3633static int all_vcpus_paused(void)
3634{
3635 CPUState *penv = first_cpu;
3636
3637 while (penv) {
3638 if (!penv->stopped)
3639 return 0;
3640 penv = (CPUState *)penv->next_cpu;
3641 }
3642
3643 return 1;
3644}
3645
3646static void pause_all_vcpus(void)
3647{
3648 CPUState *penv = first_cpu;
3649
3650 while (penv) {
3651 penv->stop = 1;
3652 qemu_thread_signal(penv->thread, SIGUSR1);
3653 qemu_cpu_kick(penv);
3654 penv = (CPUState *)penv->next_cpu;
3655 }
3656
3657 while (!all_vcpus_paused()) {
3658 qemu_cond_timedwait(&qemu_pause_cond, &qemu_global_mutex, 100);
3659 penv = first_cpu;
3660 while (penv) {
3661 qemu_thread_signal(penv->thread, SIGUSR1);
3662 penv = (CPUState *)penv->next_cpu;
3663 }
3664 }
3665}
3666
3667static void resume_all_vcpus(void)
3668{
3669 CPUState *penv = first_cpu;
3670
3671 while (penv) {
3672 penv->stop = 0;
3673 penv->stopped = 0;
3674 qemu_thread_signal(penv->thread, SIGUSR1);
3675 qemu_cpu_kick(penv);
3676 penv = (CPUState *)penv->next_cpu;
3677 }
3678}
3679
3680static void tcg_init_vcpu(void *_env)
3681{
3682 CPUState *env = _env;
3683 /* share a single thread for all cpus with TCG */
3684 if (!tcg_cpu_thread) {
3685 env->thread = qemu_mallocz(sizeof(QemuThread));
3686 env->halt_cond = qemu_mallocz(sizeof(QemuCond));
3687 qemu_cond_init(env->halt_cond);
3688 qemu_thread_create(env->thread, tcg_cpu_thread_fn, env);
3689 while (env->created == 0)
3690 qemu_cond_timedwait(&qemu_cpu_cond, &qemu_global_mutex, 100);
3691 tcg_cpu_thread = env->thread;
3692 tcg_halt_cond = env->halt_cond;
3693 } else {
3694 env->thread = tcg_cpu_thread;
3695 env->halt_cond = tcg_halt_cond;
3696 }
3697}
3698
3699static void kvm_start_vcpu(CPUState *env)
3700{
d6dc3d42
AL
3701 env->thread = qemu_mallocz(sizeof(QemuThread));
3702 env->halt_cond = qemu_mallocz(sizeof(QemuCond));
3703 qemu_cond_init(env->halt_cond);
3704 qemu_thread_create(env->thread, kvm_cpu_thread_fn, env);
3705 while (env->created == 0)
3706 qemu_cond_timedwait(&qemu_cpu_cond, &qemu_global_mutex, 100);
3707}
3708
3709void qemu_init_vcpu(void *_env)
3710{
3711 CPUState *env = _env;
3712
3713 if (kvm_enabled())
3714 kvm_start_vcpu(env);
3715 else
3716 tcg_init_vcpu(env);
dc6b1c09
AP
3717 env->nr_cores = smp_cores;
3718 env->nr_threads = smp_threads;
d6dc3d42
AL
3719}
3720
3721void qemu_notify_event(void)
3722{
3723 qemu_event_increment();
3724}
3725
3726void vm_stop(int reason)
3727{
3728 QemuThread me;
3729 qemu_thread_self(&me);
3730
3731 if (!qemu_thread_equal(&me, &io_thread)) {
3732 qemu_system_vmstop_request(reason);
3733 /*
3734 * FIXME: should not return to device code in case
3735 * vm_stop() has been requested.
3736 */
3737 if (cpu_single_env) {
3738 cpu_exit(cpu_single_env);
3739 cpu_single_env->stop = 1;
3740 }
3741 return;
3742 }
3743 do_vm_stop(reason);
3744}
3745
3746#endif
3747
3748
877cf882 3749#ifdef _WIN32
69d6451c 3750static void host_main_loop_wait(int *timeout)
56f3a5d0
AL
3751{
3752 int ret, ret2, i;
f331110f
FB
3753 PollingEntry *pe;
3754
c4b1fcc0 3755
f331110f
FB
3756 /* XXX: need to suppress polling by better using win32 events */
3757 ret = 0;
3758 for(pe = first_polling_entry; pe != NULL; pe = pe->next) {
3759 ret |= pe->func(pe->opaque);
3760 }
e6b1e558 3761 if (ret == 0) {
a18e524a
FB
3762 int err;
3763 WaitObjects *w = &wait_objects;
3b46e624 3764
56f3a5d0 3765 ret = WaitForMultipleObjects(w->num, w->events, FALSE, *timeout);
a18e524a
FB
3766 if (WAIT_OBJECT_0 + 0 <= ret && ret <= WAIT_OBJECT_0 + w->num - 1) {
3767 if (w->func[ret - WAIT_OBJECT_0])
3768 w->func[ret - WAIT_OBJECT_0](w->opaque[ret - WAIT_OBJECT_0]);
3b46e624 3769
5fafdf24 3770 /* Check for additional signaled events */
e6b1e558 3771 for(i = (ret - WAIT_OBJECT_0 + 1); i < w->num; i++) {
3b46e624 3772
e6b1e558
TS
3773 /* Check if event is signaled */
3774 ret2 = WaitForSingleObject(w->events[i], 0);
3775 if(ret2 == WAIT_OBJECT_0) {
3776 if (w->func[i])
3777 w->func[i](w->opaque[i]);
3778 } else if (ret2 == WAIT_TIMEOUT) {
3779 } else {
3780 err = GetLastError();
3781 fprintf(stderr, "WaitForSingleObject error %d %d\n", i, err);
3b46e624
TS
3782 }
3783 }
a18e524a
FB
3784 } else if (ret == WAIT_TIMEOUT) {
3785 } else {
3786 err = GetLastError();
e6b1e558 3787 fprintf(stderr, "WaitForMultipleObjects error %d %d\n", ret, err);
a18e524a 3788 }
f331110f 3789 }
56f3a5d0
AL
3790
3791 *timeout = 0;
3792}
3793#else
69d6451c 3794static void host_main_loop_wait(int *timeout)
56f3a5d0
AL
3795{
3796}
fd1dff4b 3797#endif
56f3a5d0
AL
3798
3799void main_loop_wait(int timeout)
3800{
3801 IOHandlerRecord *ioh;
3802 fd_set rfds, wfds, xfds;
3803 int ret, nfds;
3804 struct timeval tv;
3805
3806 qemu_bh_update_timeout(&timeout);
3807
3808 host_main_loop_wait(&timeout);
3809
fd1dff4b
FB
3810 /* poll any events */
3811 /* XXX: separate device handlers from system ones */
6abfbd79 3812 nfds = -1;
fd1dff4b
FB
3813 FD_ZERO(&rfds);
3814 FD_ZERO(&wfds);
e035649e 3815 FD_ZERO(&xfds);
fd1dff4b 3816 for(ioh = first_io_handler; ioh != NULL; ioh = ioh->next) {
cafffd40
TS
3817 if (ioh->deleted)
3818 continue;
fd1dff4b
FB
3819 if (ioh->fd_read &&
3820 (!ioh->fd_read_poll ||
3821 ioh->fd_read_poll(ioh->opaque) != 0)) {
3822 FD_SET(ioh->fd, &rfds);
3823 if (ioh->fd > nfds)
3824 nfds = ioh->fd;
3825 }
3826 if (ioh->fd_write) {
3827 FD_SET(ioh->fd, &wfds);
3828 if (ioh->fd > nfds)
3829 nfds = ioh->fd;
3830 }
3831 }
3b46e624 3832
56f3a5d0
AL
3833 tv.tv_sec = timeout / 1000;
3834 tv.tv_usec = (timeout % 1000) * 1000;
3835
d918f23e
JK
3836 slirp_select_fill(&nfds, &rfds, &wfds, &xfds);
3837
4870852c 3838 qemu_mutex_unlock_iothread();
e035649e 3839 ret = select(nfds + 1, &rfds, &wfds, &xfds, &tv);
4870852c 3840 qemu_mutex_lock_iothread();
fd1dff4b 3841 if (ret > 0) {
cafffd40
TS
3842 IOHandlerRecord **pioh;
3843
3844 for(ioh = first_io_handler; ioh != NULL; ioh = ioh->next) {
6ab43fdc 3845 if (!ioh->deleted && ioh->fd_read && FD_ISSET(ioh->fd, &rfds)) {
fd1dff4b 3846 ioh->fd_read(ioh->opaque);
7c9d8e07 3847 }
6ab43fdc 3848 if (!ioh->deleted && ioh->fd_write && FD_ISSET(ioh->fd, &wfds)) {
fd1dff4b 3849 ioh->fd_write(ioh->opaque);
c4b1fcc0 3850 }
b4608c04 3851 }
cafffd40
TS
3852
3853 /* remove deleted IO handlers */
3854 pioh = &first_io_handler;
3855 while (*pioh) {
3856 ioh = *pioh;
3857 if (ioh->deleted) {
3858 *pioh = ioh->next;
3859 qemu_free(ioh);
5fafdf24 3860 } else
cafffd40
TS
3861 pioh = &ioh->next;
3862 }
fd1dff4b 3863 }
d918f23e
JK
3864
3865 slirp_select_poll(&rfds, &wfds, &xfds, (ret < 0));
b4608c04 3866
50317c7f
AL
3867 /* rearm timer, if not periodic */
3868 if (alarm_timer->flags & ALARM_FLAG_EXPIRED) {
3869 alarm_timer->flags &= ~ALARM_FLAG_EXPIRED;
3870 qemu_rearm_alarm_timer(alarm_timer);
3871 }
3872
357c692c 3873 /* vm time timers */
d6dc3d42
AL
3874 if (vm_running) {
3875 if (!cur_cpu || likely(!(cur_cpu->singlestep_enabled & SSTEP_NOTIMER)))
0fdddf80
JK
3876 qemu_run_timers(&active_timers[QEMU_CLOCK_VIRTUAL],
3877 qemu_get_clock(vm_clock));
d6dc3d42 3878 }
357c692c
AL
3879
3880 /* real time timers */
0fdddf80 3881 qemu_run_timers(&active_timers[QEMU_CLOCK_REALTIME],
357c692c
AL
3882 qemu_get_clock(rt_clock));
3883
21d5d12b
JK
3884 qemu_run_timers(&active_timers[QEMU_CLOCK_HOST],
3885 qemu_get_clock(host_clock));
3886
423f0742
PB
3887 /* Check bottom-halves last in case any of the earlier events triggered
3888 them. */
3889 qemu_bh_poll();
3b46e624 3890
5905b2e5
FB
3891}
3892
43b96858 3893static int qemu_cpu_exec(CPUState *env)
5905b2e5 3894{
43b96858 3895 int ret;
89bfc105
FB
3896#ifdef CONFIG_PROFILER
3897 int64_t ti;
3898#endif
5905b2e5 3899
89bfc105 3900#ifdef CONFIG_PROFILER
43b96858 3901 ti = profile_getclock();
89bfc105 3902#endif
43b96858
AL
3903 if (use_icount) {
3904 int64_t count;
3905 int decr;
3906 qemu_icount -= (env->icount_decr.u16.low + env->icount_extra);
3907 env->icount_decr.u16.low = 0;
3908 env->icount_extra = 0;
3909 count = qemu_next_deadline();
3910 count = (count + (1 << icount_time_shift) - 1)
3911 >> icount_time_shift;
3912 qemu_icount += count;
3913 decr = (count > 0xffff) ? 0xffff : count;
3914 count -= decr;
3915 env->icount_decr.u16.low = decr;
3916 env->icount_extra = count;
3917 }
3918 ret = cpu_exec(env);
89bfc105 3919#ifdef CONFIG_PROFILER
43b96858 3920 qemu_time += profile_getclock() - ti;
89bfc105 3921#endif
43b96858
AL
3922 if (use_icount) {
3923 /* Fold pending instructions back into the
3924 instruction counter, and clear the interrupt flag. */
3925 qemu_icount -= (env->icount_decr.u16.low
3926 + env->icount_extra);
3927 env->icount_decr.u32 = 0;
3928 env->icount_extra = 0;
3929 }
3930 return ret;
3931}
3932
e6e35b1e
AL
3933static void tcg_cpu_exec(void)
3934{
d6dc3d42 3935 int ret = 0;
e6e35b1e
AL
3936
3937 if (next_cpu == NULL)
3938 next_cpu = first_cpu;
3939 for (; next_cpu != NULL; next_cpu = next_cpu->next_cpu) {
3940 CPUState *env = cur_cpu = next_cpu;
3941
3942 if (!vm_running)
3943 break;
3944 if (timer_alarm_pending) {
3945 timer_alarm_pending = 0;
3946 break;
3947 }
d6dc3d42
AL
3948 if (cpu_can_run(env))
3949 ret = qemu_cpu_exec(env);
e6e35b1e
AL
3950 if (ret == EXCP_DEBUG) {
3951 gdb_set_stop_cpu(env);
3952 debug_requested = 1;
3953 break;
3954 }
3955 }
3956}
3957
43b96858
AL
3958static int cpu_has_work(CPUState *env)
3959{
d6dc3d42
AL
3960 if (env->stop)
3961 return 1;
3962 if (env->stopped)
3963 return 0;
43b96858
AL
3964 if (!env->halted)
3965 return 1;
3966 if (qemu_cpu_has_work(env))
3967 return 1;
3968 return 0;
3969}
3970
3971static int tcg_has_work(void)
3972{
3973 CPUState *env;
3974
3975 for (env = first_cpu; env != NULL; env = env->next_cpu)
3976 if (cpu_has_work(env))
3977 return 1;
3978 return 0;
3979}
3980
3981static int qemu_calculate_timeout(void)
3982{
b319820d 3983#ifndef CONFIG_IOTHREAD
43b96858
AL
3984 int timeout;
3985
3986 if (!vm_running)
3987 timeout = 5000;
3988 else if (tcg_has_work())
3989 timeout = 0;
3990 else if (!use_icount)
3991 timeout = 5000;
3992 else {
3993 /* XXX: use timeout computed from timers */
3994 int64_t add;
3995 int64_t delta;
3996 /* Advance virtual time to the next event. */
3997 if (use_icount == 1) {
3998 /* When not using an adaptive execution frequency
3999 we tend to get badly out of sync with real time,
4000 so just delay for a reasonable amount of time. */
4001 delta = 0;
4002 } else {
4003 delta = cpu_get_icount() - cpu_get_clock();
4004 }
4005 if (delta > 0) {
4006 /* If virtual time is ahead of real time then just
4007 wait for IO. */
4008 timeout = (delta / 1000000) + 1;
4009 } else {
4010 /* Wait for either IO to occur or the next
4011 timer event. */
4012 add = qemu_next_deadline();
4013 /* We advance the timer before checking for IO.
4014 Limit the amount we advance so that early IO
4015 activity won't get the guest too far ahead. */
4016 if (add > 10000000)
4017 add = 10000000;
4018 delta += add;
4019 add = (add + (1 << icount_time_shift) - 1)
4020 >> icount_time_shift;
4021 qemu_icount += add;
4022 timeout = delta / 1000000;
4023 if (timeout < 0)
4024 timeout = 0;
4025 }
4026 }
4027
4028 return timeout;
b319820d
LC
4029#else /* CONFIG_IOTHREAD */
4030 return 1000;
4031#endif
43b96858
AL
4032}
4033
4034static int vm_can_run(void)
4035{
4036 if (powerdown_requested)
4037 return 0;
4038 if (reset_requested)
4039 return 0;
4040 if (shutdown_requested)
4041 return 0;
e568902a
AL
4042 if (debug_requested)
4043 return 0;
43b96858
AL
4044 return 1;
4045}
4046
d9c32310
BS
4047qemu_irq qemu_system_powerdown;
4048
43b96858
AL
4049static void main_loop(void)
4050{
6e29f5da 4051 int r;
e6e35b1e 4052
d6dc3d42
AL
4053#ifdef CONFIG_IOTHREAD
4054 qemu_system_ready = 1;
4055 qemu_cond_broadcast(&qemu_system_cond);
4056#endif
4057
6e29f5da 4058 for (;;) {
43b96858 4059 do {
e6e35b1e
AL
4060#ifdef CONFIG_PROFILER
4061 int64_t ti;
4062#endif
d6dc3d42 4063#ifndef CONFIG_IOTHREAD
e6e35b1e 4064 tcg_cpu_exec();
d6dc3d42 4065#endif
89bfc105 4066#ifdef CONFIG_PROFILER
43b96858 4067 ti = profile_getclock();
89bfc105 4068#endif
43b96858 4069 main_loop_wait(qemu_calculate_timeout());
89bfc105 4070#ifdef CONFIG_PROFILER
43b96858 4071 dev_time += profile_getclock() - ti;
89bfc105 4072#endif
e568902a 4073 } while (vm_can_run());
43b96858 4074
b1a15e7e
LC
4075 if (qemu_debug_requested()) {
4076 monitor_protocol_event(EVENT_DEBUG, NULL);
e568902a 4077 vm_stop(EXCP_DEBUG);
b1a15e7e 4078 }
43b96858 4079 if (qemu_shutdown_requested()) {
b1a15e7e 4080 monitor_protocol_event(EVENT_SHUTDOWN, NULL);
43b96858
AL
4081 if (no_shutdown) {
4082 vm_stop(0);
4083 no_shutdown = 0;
4084 } else
4085 break;
4086 }
d6dc3d42 4087 if (qemu_reset_requested()) {
b1a15e7e 4088 monitor_protocol_event(EVENT_RESET, NULL);
d6dc3d42 4089 pause_all_vcpus();
43b96858 4090 qemu_system_reset();
d6dc3d42
AL
4091 resume_all_vcpus();
4092 }
d9c32310 4093 if (qemu_powerdown_requested()) {
b1a15e7e 4094 monitor_protocol_event(EVENT_POWERDOWN, NULL);
d9c32310
BS
4095 qemu_irq_raise(qemu_system_powerdown);
4096 }
b1a15e7e
LC
4097 if ((r = qemu_vmstop_requested())) {
4098 monitor_protocol_event(EVENT_STOP, NULL);
6e29f5da 4099 vm_stop(r);
b1a15e7e 4100 }
b4608c04 4101 }
d6dc3d42 4102 pause_all_vcpus();
b4608c04
FB
4103}
4104
9bd7e6d9
PB
4105static void version(void)
4106{
4a19f1ec 4107 printf("QEMU PC emulator version " QEMU_VERSION QEMU_PKGVERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n");
9bd7e6d9
PB
4108}
4109
15f82208 4110static void help(int exitcode)
0824d6fc 4111{
9bd7e6d9
PB
4112 version();
4113 printf("usage: %s [options] [disk_image]\n"
0824d6fc 4114 "\n"
a20dd508 4115 "'disk_image' is a raw hard image image for IDE hard disk 0\n"
fc01f7e7 4116 "\n"
5824d651
BS
4117#define DEF(option, opt_arg, opt_enum, opt_help) \
4118 opt_help
4119#define DEFHEADING(text) stringify(text) "\n"
4120#include "qemu-options.h"
4121#undef DEF
4122#undef DEFHEADING
4123#undef GEN_DOCS
0824d6fc 4124 "\n"
82c643ff 4125 "During emulation, the following keys are useful:\n"
032a8c9e
FB
4126 "ctrl-alt-f toggle full screen\n"
4127 "ctrl-alt-n switch to virtual console 'n'\n"
4128 "ctrl-alt toggle mouse and keyboard grab\n"
82c643ff
FB
4129 "\n"
4130 "When using -nographic, press 'ctrl-a h' to get some help.\n"
4131 ,
0db63474 4132 "qemu",
a00bad7e 4133 DEFAULT_RAM_SIZE,
7c9d8e07 4134#ifndef _WIN32
a00bad7e 4135 DEFAULT_NETWORK_SCRIPT,
b46a8906 4136 DEFAULT_NETWORK_DOWN_SCRIPT,
7c9d8e07 4137#endif
6e44ba7f 4138 DEFAULT_GDBSTUB_PORT,
bce61846 4139 "/tmp/qemu.log");
15f82208 4140 exit(exitcode);
0824d6fc
FB
4141}
4142
cd6f1169
FB
4143#define HAS_ARG 0x0001
4144
4145enum {
5824d651
BS
4146#define DEF(option, opt_arg, opt_enum, opt_help) \
4147 opt_enum,
4148#define DEFHEADING(text)
4149#include "qemu-options.h"
4150#undef DEF
4151#undef DEFHEADING
4152#undef GEN_DOCS
cd6f1169
FB
4153};
4154
4155typedef struct QEMUOption {
4156 const char *name;
4157 int flags;
4158 int index;
4159} QEMUOption;
4160
dbed7e40 4161static const QEMUOption qemu_options[] = {
cd6f1169 4162 { "h", 0, QEMU_OPTION_h },
5824d651
BS
4163#define DEF(option, opt_arg, opt_enum, opt_help) \
4164 { option, opt_arg, opt_enum },
4165#define DEFHEADING(text)
4166#include "qemu-options.h"
4167#undef DEF
4168#undef DEFHEADING
4169#undef GEN_DOCS
cd6f1169 4170 { NULL },
fc01f7e7
FB
4171};
4172
1d14ffa9 4173#ifdef HAS_AUDIO
6a36d84e 4174struct soundhw soundhw[] = {
b00052e4 4175#ifdef HAS_AUDIO_CHOICE
4ce7ff6e 4176#if defined(TARGET_I386) || defined(TARGET_MIPS)
fd06c375
FB
4177 {
4178 "pcspk",
4179 "PC speaker",
4180 0,
4181 1,
4182 { .init_isa = pcspk_audio_init }
4183 },
4184#endif
4c9b53e3 4185
4186#ifdef CONFIG_SB16
6a36d84e
FB
4187 {
4188 "sb16",
4189 "Creative Sound Blaster 16",
4190 0,
4191 1,
4192 { .init_isa = SB16_init }
4193 },
4c9b53e3 4194#endif
6a36d84e 4195
cc53d26d 4196#ifdef CONFIG_CS4231A
4197 {
4198 "cs4231a",
4199 "CS4231A",
4200 0,
4201 1,
4202 { .init_isa = cs4231a_init }
4203 },
4204#endif
4205
1d14ffa9 4206#ifdef CONFIG_ADLIB
6a36d84e
FB
4207 {
4208 "adlib",
1d14ffa9 4209#ifdef HAS_YMF262
6a36d84e 4210 "Yamaha YMF262 (OPL3)",
1d14ffa9 4211#else
6a36d84e 4212 "Yamaha YM3812 (OPL2)",
1d14ffa9 4213#endif
6a36d84e
FB
4214 0,
4215 1,
4216 { .init_isa = Adlib_init }
4217 },
1d14ffa9 4218#endif
6a36d84e 4219
1d14ffa9 4220#ifdef CONFIG_GUS
6a36d84e
FB
4221 {
4222 "gus",
4223 "Gravis Ultrasound GF1",
4224 0,
4225 1,
4226 { .init_isa = GUS_init }
4227 },
1d14ffa9 4228#endif
6a36d84e 4229
4c9b53e3 4230#ifdef CONFIG_AC97
e5c9a13e
AZ
4231 {
4232 "ac97",
4233 "Intel 82801AA AC97 Audio",
4234 0,
4235 0,
4236 { .init_pci = ac97_init }
4237 },
4c9b53e3 4238#endif
e5c9a13e 4239
4c9b53e3 4240#ifdef CONFIG_ES1370
6a36d84e
FB
4241 {
4242 "es1370",
4243 "ENSONIQ AudioPCI ES1370",
4244 0,
4245 0,
4246 { .init_pci = es1370_init }
4247 },
b00052e4 4248#endif
6a36d84e 4249
4c9b53e3 4250#endif /* HAS_AUDIO_CHOICE */
4251
6a36d84e
FB
4252 { NULL, NULL, 0, 0, { NULL } }
4253};
4254
4255static void select_soundhw (const char *optarg)
4256{
4257 struct soundhw *c;
4258
4259 if (*optarg == '?') {
4260 show_valid_cards:
4261
4262 printf ("Valid sound card names (comma separated):\n");
4263 for (c = soundhw; c->name; ++c) {
4264 printf ("%-11s %s\n", c->name, c->descr);
4265 }
4266 printf ("\n-soundhw all will enable all of the above\n");
1d14ffa9
FB
4267 exit (*optarg != '?');
4268 }
4269 else {
6a36d84e 4270 size_t l;
1d14ffa9
FB
4271 const char *p;
4272 char *e;
4273 int bad_card = 0;
4274
6a36d84e
FB
4275 if (!strcmp (optarg, "all")) {
4276 for (c = soundhw; c->name; ++c) {
4277 c->enabled = 1;
4278 }
4279 return;
4280 }
1d14ffa9 4281
6a36d84e 4282 p = optarg;
1d14ffa9
FB
4283 while (*p) {
4284 e = strchr (p, ',');
4285 l = !e ? strlen (p) : (size_t) (e - p);
6a36d84e
FB
4286
4287 for (c = soundhw; c->name; ++c) {
b3d6fb4a 4288 if (!strncmp (c->name, p, l) && !c->name[l]) {
6a36d84e 4289 c->enabled = 1;
1d14ffa9
FB
4290 break;
4291 }
4292 }
6a36d84e
FB
4293
4294 if (!c->name) {
1d14ffa9
FB
4295 if (l > 80) {
4296 fprintf (stderr,
4297 "Unknown sound card name (too big to show)\n");
4298 }
4299 else {
4300 fprintf (stderr, "Unknown sound card name `%.*s'\n",
4301 (int) l, p);
4302 }
4303 bad_card = 1;
4304 }
4305 p += l + (e != NULL);
4306 }
4307
4308 if (bad_card)
4309 goto show_valid_cards;
4310 }
4311}
4312#endif
4313
3893c124 4314static void select_vgahw (const char *p)
4315{
4316 const char *opts;
4317
86176759 4318 vga_interface_type = VGA_NONE;
3893c124 4319 if (strstart(p, "std", &opts)) {
86176759 4320 vga_interface_type = VGA_STD;
3893c124 4321 } else if (strstart(p, "cirrus", &opts)) {
86176759 4322 vga_interface_type = VGA_CIRRUS;
3893c124 4323 } else if (strstart(p, "vmware", &opts)) {
86176759 4324 vga_interface_type = VGA_VMWARE;
94909d9f 4325 } else if (strstart(p, "xenfb", &opts)) {
86176759 4326 vga_interface_type = VGA_XENFB;
28b85ed8 4327 } else if (!strstart(p, "none", &opts)) {
3893c124 4328 invalid_vga:
4329 fprintf(stderr, "Unknown vga type: %s\n", p);
4330 exit(1);
4331 }
cb5a7aa8 4332 while (*opts) {
4333 const char *nextopt;
4334
4335 if (strstart(opts, ",retrace=", &nextopt)) {
4336 opts = nextopt;
4337 if (strstart(opts, "dumb", &nextopt))
4338 vga_retrace_method = VGA_RETRACE_DUMB;
4339 else if (strstart(opts, "precise", &nextopt))
4340 vga_retrace_method = VGA_RETRACE_PRECISE;
4341 else goto invalid_vga;
4342 } else goto invalid_vga;
4343 opts = nextopt;
4344 }
3893c124 4345}
4346
7d4c3d53
MA
4347#ifdef TARGET_I386
4348static int balloon_parse(const char *arg)
4349{
382f0743 4350 QemuOpts *opts;
7d4c3d53 4351
382f0743
GH
4352 if (strcmp(arg, "none") == 0) {
4353 return 0;
4354 }
4355
4356 if (!strncmp(arg, "virtio", 6)) {
4357 if (arg[6] == ',') {
4358 /* have params -> parse them */
4359 opts = qemu_opts_parse(&qemu_device_opts, arg+7, NULL);
4360 if (!opts)
4361 return -1;
4362 } else {
4363 /* create empty opts */
4364 opts = qemu_opts_create(&qemu_device_opts, NULL, 0);
7d4c3d53 4365 }
382f0743
GH
4366 qemu_opt_set(opts, "driver", "virtio-balloon-pci");
4367 return 0;
7d4c3d53 4368 }
382f0743
GH
4369
4370 return -1;
7d4c3d53
MA
4371}
4372#endif
4373
3587d7e6
FB
4374#ifdef _WIN32
4375static BOOL WINAPI qemu_ctrl_handler(DWORD type)
4376{
4377 exit(STATUS_CONTROL_C_EXIT);
4378 return TRUE;
4379}
4380#endif
4381
c4be29ff 4382int qemu_uuid_parse(const char *str, uint8_t *uuid)
8fcb1b90
BS
4383{
4384 int ret;
4385
4386 if(strlen(str) != 36)
4387 return -1;
4388
4389 ret = sscanf(str, UUID_FMT, &uuid[0], &uuid[1], &uuid[2], &uuid[3],
4390 &uuid[4], &uuid[5], &uuid[6], &uuid[7], &uuid[8], &uuid[9],
4391 &uuid[10], &uuid[11], &uuid[12], &uuid[13], &uuid[14], &uuid[15]);
4392
4393 if(ret != 16)
4394 return -1;
4395
b6f6e3d3
AL
4396#ifdef TARGET_I386
4397 smbios_add_field(1, offsetof(struct smbios_type_1, uuid), 16, uuid);
4398#endif
4399
8fcb1b90
BS
4400 return 0;
4401}
4402
5b08fc10
AL
4403#ifndef _WIN32
4404
4405static void termsig_handler(int signal)
4406{
4407 qemu_system_shutdown_request();
4408}
4409
7c3370d4
JK
4410static void sigchld_handler(int signal)
4411{
4412 waitpid(-1, NULL, WNOHANG);
4413}
4414
4415static void sighandler_setup(void)
5b08fc10
AL
4416{
4417 struct sigaction act;
4418
4419 memset(&act, 0, sizeof(act));
4420 act.sa_handler = termsig_handler;
4421 sigaction(SIGINT, &act, NULL);
4422 sigaction(SIGHUP, &act, NULL);
4423 sigaction(SIGTERM, &act, NULL);
7c3370d4
JK
4424
4425 act.sa_handler = sigchld_handler;
4426 act.sa_flags = SA_NOCLDSTOP;
4427 sigaction(SIGCHLD, &act, NULL);
5b08fc10
AL
4428}
4429
4430#endif
4431
5cea8590
PB
4432#ifdef _WIN32
4433/* Look for support files in the same directory as the executable. */
4434static char *find_datadir(const char *argv0)
4435{
4436 char *p;
4437 char buf[MAX_PATH];
4438 DWORD len;
4439
4440 len = GetModuleFileName(NULL, buf, sizeof(buf) - 1);
4441 if (len == 0) {
c5947808 4442 return NULL;
5cea8590
PB
4443 }
4444
4445 buf[len] = 0;
4446 p = buf + len - 1;
4447 while (p != buf && *p != '\\')
4448 p--;
4449 *p = 0;
4450 if (access(buf, R_OK) == 0) {
4451 return qemu_strdup(buf);
4452 }
4453 return NULL;
4454}
4455#else /* !_WIN32 */
4456
4457/* Find a likely location for support files using the location of the binary.
4458 For installed binaries this will be "$bindir/../share/qemu". When
4459 running from the build tree this will be "$bindir/../pc-bios". */
4460#define SHARE_SUFFIX "/share/qemu"
4461#define BUILD_SUFFIX "/pc-bios"
4462static char *find_datadir(const char *argv0)
4463{
4464 char *dir;
4465 char *p = NULL;
4466 char *res;
5cea8590 4467 char buf[PATH_MAX];
3a41759d 4468 size_t max_len;
5cea8590
PB
4469
4470#if defined(__linux__)
4471 {
4472 int len;
4473 len = readlink("/proc/self/exe", buf, sizeof(buf) - 1);
4474 if (len > 0) {
4475 buf[len] = 0;
4476 p = buf;
4477 }
4478 }
4479#elif defined(__FreeBSD__)
4480 {
4481 int len;
4482 len = readlink("/proc/curproc/file", buf, sizeof(buf) - 1);
4483 if (len > 0) {
4484 buf[len] = 0;
4485 p = buf;
4486 }
4487 }
4488#endif
4489 /* If we don't have any way of figuring out the actual executable
4490 location then try argv[0]. */
4491 if (!p) {
4d224196 4492 p = realpath(argv0, buf);
5cea8590
PB
4493 if (!p) {
4494 return NULL;
4495 }
4496 }
4497 dir = dirname(p);
4498 dir = dirname(dir);
4499
3a41759d
BS
4500 max_len = strlen(dir) +
4501 MAX(strlen(SHARE_SUFFIX), strlen(BUILD_SUFFIX)) + 1;
4502 res = qemu_mallocz(max_len);
4503 snprintf(res, max_len, "%s%s", dir, SHARE_SUFFIX);
5cea8590 4504 if (access(res, R_OK)) {
3a41759d 4505 snprintf(res, max_len, "%s%s", dir, BUILD_SUFFIX);
5cea8590
PB
4506 if (access(res, R_OK)) {
4507 qemu_free(res);
4508 res = NULL;
4509 }
4510 }
4d224196 4511
5cea8590
PB
4512 return res;
4513}
4514#undef SHARE_SUFFIX
4515#undef BUILD_SUFFIX
4516#endif
4517
4518char *qemu_find_file(int type, const char *name)
4519{
4520 int len;
4521 const char *subdir;
4522 char *buf;
4523
4524 /* If name contains path separators then try it as a straight path. */
4525 if ((strchr(name, '/') || strchr(name, '\\'))
4526 && access(name, R_OK) == 0) {
73ffc805 4527 return qemu_strdup(name);
5cea8590
PB
4528 }
4529 switch (type) {
4530 case QEMU_FILE_TYPE_BIOS:
4531 subdir = "";
4532 break;
4533 case QEMU_FILE_TYPE_KEYMAP:
4534 subdir = "keymaps/";
4535 break;
4536 default:
4537 abort();
4538 }
4539 len = strlen(data_dir) + strlen(name) + strlen(subdir) + 2;
4540 buf = qemu_mallocz(len);
3a41759d 4541 snprintf(buf, len, "%s/%s%s", data_dir, subdir, name);
5cea8590
PB
4542 if (access(buf, R_OK)) {
4543 qemu_free(buf);
4544 return NULL;
4545 }
4546 return buf;
4547}
4548
f31d07d1
GH
4549static int device_init_func(QemuOpts *opts, void *opaque)
4550{
4551 DeviceState *dev;
4552
4553 dev = qdev_device_add(opts);
4554 if (!dev)
4555 return -1;
4556 return 0;
4557}
4558
bd3c948d
GH
4559struct device_config {
4560 enum {
bd3c948d
GH
4561 DEV_USB, /* -usbdevice */
4562 DEV_BT, /* -bt */
4563 } type;
4564 const char *cmdline;
72cf2d4f 4565 QTAILQ_ENTRY(device_config) next;
bd3c948d 4566};
72cf2d4f 4567QTAILQ_HEAD(, device_config) device_configs = QTAILQ_HEAD_INITIALIZER(device_configs);
bd3c948d
GH
4568
4569static void add_device_config(int type, const char *cmdline)
4570{
4571 struct device_config *conf;
4572
4573 conf = qemu_mallocz(sizeof(*conf));
4574 conf->type = type;
4575 conf->cmdline = cmdline;
72cf2d4f 4576 QTAILQ_INSERT_TAIL(&device_configs, conf, next);
bd3c948d
GH
4577}
4578
4579static int foreach_device_config(int type, int (*func)(const char *cmdline))
4580{
4581 struct device_config *conf;
4582 int rc;
4583
72cf2d4f 4584 QTAILQ_FOREACH(conf, &device_configs, next) {
bd3c948d
GH
4585 if (conf->type != type)
4586 continue;
4587 rc = func(conf->cmdline);
4588 if (0 != rc)
4589 return rc;
4590 }
4591 return 0;
4592}
4593
902b3d5c 4594int main(int argc, char **argv, char **envp)
0824d6fc 4595{
59030a8c 4596 const char *gdbstub_dev = NULL;
28c5af54 4597 uint32_t boot_devices_bitmap = 0;
e4bcb14c 4598 int i;
28c5af54 4599 int snapshot, linux_boot, net_boot;
7f7f9873 4600 const char *initrd_filename;
a20dd508 4601 const char *kernel_filename, *kernel_cmdline;
195325a4 4602 char boot_devices[33] = "cad"; /* default to HD->floppy->CD-ROM */
3023f332 4603 DisplayState *ds;
7d957bd8 4604 DisplayChangeListener *dcl;
46d4767d 4605 int cyls, heads, secs, translation;
f31d07d1 4606 QemuOpts *hda_opts = NULL, *opts;
cd6f1169
FB
4607 int optind;
4608 const char *r, *optarg;
ddd9bbd9
JK
4609 CharDriverState *monitor_hds[MAX_MONITOR_DEVICES];
4610 const char *monitor_devices[MAX_MONITOR_DEVICES];
adcb181a 4611 int monitor_flags[MAX_MONITOR_DEVICES];
ddd9bbd9 4612 int monitor_device_index;
fd5f393a 4613 const char *serial_devices[MAX_SERIAL_PORTS];
8d11df9e 4614 int serial_device_index;
fd5f393a 4615 const char *parallel_devices[MAX_PARALLEL_PORTS];
6508fe59 4616 int parallel_device_index;
9ede2fde
AL
4617 const char *virtio_consoles[MAX_VIRTIO_CONSOLES];
4618 int virtio_console_index;
d63d307f 4619 const char *loadvm = NULL;
cc1daa40 4620 QEMUMachine *machine;
94fc95cd 4621 const char *cpu_model;
b9e82a59 4622#ifndef _WIN32
71e3ceb8 4623 int fds[2];
b9e82a59 4624#endif
26a5f13b 4625 int tb_size;
93815bc2 4626 const char *pid_file = NULL;
5bb7910a 4627 const char *incoming = NULL;
b9e82a59 4628#ifndef _WIN32
54042bcf
AL
4629 int fd = 0;
4630 struct passwd *pwd = NULL;
0858532e
AL
4631 const char *chroot_dir = NULL;
4632 const char *run_as = NULL;
b9e82a59 4633#endif
268a362c 4634 CPUState *env;
993fbfdb 4635 int show_vnc_port = 0;
0bd48850 4636
6875204c
JK
4637 init_clocks();
4638
ac7531ec 4639 qemu_errors_to_file(stderr);
902b3d5c 4640 qemu_cache_utils_init(envp);
4641
72cf2d4f 4642 QLIST_INIT (&vm_change_state_head);
be995c27
FB
4643#ifndef _WIN32
4644 {
4645 struct sigaction act;
4646 sigfillset(&act.sa_mask);
4647 act.sa_flags = 0;
4648 act.sa_handler = SIG_IGN;
4649 sigaction(SIGPIPE, &act, NULL);
4650 }
3587d7e6
FB
4651#else
4652 SetConsoleCtrlHandler(qemu_ctrl_handler, TRUE);
a8e5ac33
FB
4653 /* Note: cpu_interrupt() is currently not SMP safe, so we force
4654 QEMU to run on a single CPU */
4655 {
4656 HANDLE h;
4657 DWORD mask, smask;
4658 int i;
4659 h = GetCurrentProcess();
4660 if (GetProcessAffinityMask(h, &mask, &smask)) {
4661 for(i = 0; i < 32; i++) {
4662 if (mask & (1 << i))
4663 break;
4664 }
4665 if (i != 32) {
4666 mask = 1 << i;
4667 SetProcessAffinityMask(h, mask);
4668 }
4669 }
4670 }
67b915a5 4671#endif
be995c27 4672
f80f9ec9 4673 module_call_init(MODULE_INIT_MACHINE);
0c257437 4674 machine = find_default_machine();
94fc95cd 4675 cpu_model = NULL;
fc01f7e7 4676 initrd_filename = NULL;
4fc5d071 4677 ram_size = 0;
33e3963e 4678 snapshot = 0;
a20dd508
FB
4679 kernel_filename = NULL;
4680 kernel_cmdline = "";
c4b1fcc0 4681 cyls = heads = secs = 0;
46d4767d 4682 translation = BIOS_ATA_TRANSLATION_AUTO;
c4b1fcc0 4683
c75a823c 4684 serial_devices[0] = "vc:80Cx24C";
8d11df9e 4685 for(i = 1; i < MAX_SERIAL_PORTS; i++)
fd5f393a 4686 serial_devices[i] = NULL;
8d11df9e 4687 serial_device_index = 0;
3b46e624 4688
8290edda 4689 parallel_devices[0] = "vc:80Cx24C";
6508fe59 4690 for(i = 1; i < MAX_PARALLEL_PORTS; i++)
fd5f393a 4691 parallel_devices[i] = NULL;
6508fe59 4692 parallel_device_index = 0;
3b46e624 4693
1b8fc811 4694 for(i = 0; i < MAX_VIRTIO_CONSOLES; i++)
9ede2fde
AL
4695 virtio_consoles[i] = NULL;
4696 virtio_console_index = 0;
4697
ddd9bbd9 4698 monitor_devices[0] = "vc:80Cx24C";
adcb181a 4699 monitor_flags[0] = MONITOR_IS_DEFAULT | MONITOR_USE_READLINE;
ddd9bbd9
JK
4700 for (i = 1; i < MAX_MONITOR_DEVICES; i++) {
4701 monitor_devices[i] = NULL;
adcb181a 4702 monitor_flags[i] = MONITOR_USE_READLINE;
ddd9bbd9
JK
4703 }
4704 monitor_device_index = 0;
4705
268a362c
AL
4706 for (i = 0; i < MAX_NODES; i++) {
4707 node_mem[i] = 0;
4708 node_cpumask[i] = 0;
4709 }
4710
268a362c 4711 nb_numa_nodes = 0;
7c9d8e07 4712 nb_nics = 0;
3b46e624 4713
26a5f13b 4714 tb_size = 0;
41bd639b
BS
4715 autostart= 1;
4716
cd6f1169 4717 optind = 1;
0824d6fc 4718 for(;;) {
cd6f1169 4719 if (optind >= argc)
0824d6fc 4720 break;
cd6f1169
FB
4721 r = argv[optind];
4722 if (r[0] != '-') {
9dfd7c7a 4723 hda_opts = drive_add(argv[optind++], HD_ALIAS, 0);
cd6f1169
FB
4724 } else {
4725 const QEMUOption *popt;
4726
4727 optind++;
dff5efc8
PB
4728 /* Treat --foo the same as -foo. */
4729 if (r[1] == '-')
4730 r++;
cd6f1169
FB
4731 popt = qemu_options;
4732 for(;;) {
4733 if (!popt->name) {
5fafdf24 4734 fprintf(stderr, "%s: invalid option -- '%s'\n",
cd6f1169
FB
4735 argv[0], r);
4736 exit(1);
4737 }
4738 if (!strcmp(popt->name, r + 1))
4739 break;
4740 popt++;
4741 }
4742 if (popt->flags & HAS_ARG) {
4743 if (optind >= argc) {
4744 fprintf(stderr, "%s: option '%s' requires an argument\n",
4745 argv[0], r);
4746 exit(1);
4747 }
4748 optarg = argv[optind++];
4749 } else {
4750 optarg = NULL;
4751 }
4752
4753 switch(popt->index) {
cc1daa40
FB
4754 case QEMU_OPTION_M:
4755 machine = find_machine(optarg);
4756 if (!machine) {
4757 QEMUMachine *m;
4758 printf("Supported machines are:\n");
4759 for(m = first_machine; m != NULL; m = m->next) {
3f6599e6
MM
4760 if (m->alias)
4761 printf("%-10s %s (alias of %s)\n",
4762 m->alias, m->desc, m->name);
cc1daa40 4763 printf("%-10s %s%s\n",
5fafdf24 4764 m->name, m->desc,
0c257437 4765 m->is_default ? " (default)" : "");
cc1daa40 4766 }
15f82208 4767 exit(*optarg != '?');
cc1daa40
FB
4768 }
4769 break;
94fc95cd
JM
4770 case QEMU_OPTION_cpu:
4771 /* hw initialization will check this */
15f82208 4772 if (*optarg == '?') {
c732abe2
JM
4773/* XXX: implement xxx_cpu_list for targets that still miss it */
4774#if defined(cpu_list)
4775 cpu_list(stdout, &fprintf);
94fc95cd 4776#endif
15f82208 4777 exit(0);
94fc95cd
JM
4778 } else {
4779 cpu_model = optarg;
4780 }
4781 break;
cd6f1169 4782 case QEMU_OPTION_initrd:
fc01f7e7
FB
4783 initrd_filename = optarg;
4784 break;
cd6f1169 4785 case QEMU_OPTION_hda:
e4bcb14c 4786 if (cyls == 0)
9dfd7c7a 4787 hda_opts = drive_add(optarg, HD_ALIAS, 0);
e4bcb14c 4788 else
9dfd7c7a 4789 hda_opts = drive_add(optarg, HD_ALIAS
e4bcb14c 4790 ",cyls=%d,heads=%d,secs=%d%s",
609497ab 4791 0, cyls, heads, secs,
e4bcb14c
TS
4792 translation == BIOS_ATA_TRANSLATION_LBA ?
4793 ",trans=lba" :
4794 translation == BIOS_ATA_TRANSLATION_NONE ?
4795 ",trans=none" : "");
4796 break;
cd6f1169 4797 case QEMU_OPTION_hdb:
cc1daa40
FB
4798 case QEMU_OPTION_hdc:
4799 case QEMU_OPTION_hdd:
609497ab 4800 drive_add(optarg, HD_ALIAS, popt->index - QEMU_OPTION_hda);
fc01f7e7 4801 break;
e4bcb14c 4802 case QEMU_OPTION_drive:
609497ab 4803 drive_add(NULL, "%s", optarg);
e4bcb14c 4804 break;
d058fe03
GH
4805 case QEMU_OPTION_set:
4806 if (qemu_set_option(optarg) != 0)
4807 exit(1);
4808 break;
3e3d5815 4809 case QEMU_OPTION_mtdblock:
609497ab 4810 drive_add(optarg, MTD_ALIAS);
3e3d5815 4811 break;
a1bb27b1 4812 case QEMU_OPTION_sd:
609497ab 4813 drive_add(optarg, SD_ALIAS);
a1bb27b1 4814 break;
86f55663 4815 case QEMU_OPTION_pflash:
609497ab 4816 drive_add(optarg, PFLASH_ALIAS);
86f55663 4817 break;
cd6f1169 4818 case QEMU_OPTION_snapshot:
33e3963e
FB
4819 snapshot = 1;
4820 break;
cd6f1169 4821 case QEMU_OPTION_hdachs:
330d0414 4822 {
330d0414
FB
4823 const char *p;
4824 p = optarg;
4825 cyls = strtol(p, (char **)&p, 0);
46d4767d
FB
4826 if (cyls < 1 || cyls > 16383)
4827 goto chs_fail;
330d0414
FB
4828 if (*p != ',')
4829 goto chs_fail;
4830 p++;
4831 heads = strtol(p, (char **)&p, 0);
46d4767d
FB
4832 if (heads < 1 || heads > 16)
4833 goto chs_fail;
330d0414
FB
4834 if (*p != ',')
4835 goto chs_fail;
4836 p++;
4837 secs = strtol(p, (char **)&p, 0);
46d4767d
FB
4838 if (secs < 1 || secs > 63)
4839 goto chs_fail;
4840 if (*p == ',') {
4841 p++;
4842 if (!strcmp(p, "none"))
4843 translation = BIOS_ATA_TRANSLATION_NONE;
4844 else if (!strcmp(p, "lba"))
4845 translation = BIOS_ATA_TRANSLATION_LBA;
4846 else if (!strcmp(p, "auto"))
4847 translation = BIOS_ATA_TRANSLATION_AUTO;
4848 else
4849 goto chs_fail;
4850 } else if (*p != '\0') {
c4b1fcc0 4851 chs_fail:
46d4767d
FB
4852 fprintf(stderr, "qemu: invalid physical CHS format\n");
4853 exit(1);
c4b1fcc0 4854 }
9dfd7c7a
GH
4855 if (hda_opts != NULL) {
4856 char num[16];
4857 snprintf(num, sizeof(num), "%d", cyls);
4858 qemu_opt_set(hda_opts, "cyls", num);
4859 snprintf(num, sizeof(num), "%d", heads);
4860 qemu_opt_set(hda_opts, "heads", num);
4861 snprintf(num, sizeof(num), "%d", secs);
4862 qemu_opt_set(hda_opts, "secs", num);
4863 if (translation == BIOS_ATA_TRANSLATION_LBA)
4864 qemu_opt_set(hda_opts, "trans", "lba");
4865 if (translation == BIOS_ATA_TRANSLATION_NONE)
4866 qemu_opt_set(hda_opts, "trans", "none");
4867 }
330d0414
FB
4868 }
4869 break;
268a362c
AL
4870 case QEMU_OPTION_numa:
4871 if (nb_numa_nodes >= MAX_NODES) {
4872 fprintf(stderr, "qemu: too many NUMA nodes\n");
4873 exit(1);
4874 }
4875 numa_add(optarg);
4876 break;
cd6f1169 4877 case QEMU_OPTION_nographic:
993fbfdb 4878 display_type = DT_NOGRAPHIC;
a20dd508 4879 break;
4d3b6f6e
AZ
4880#ifdef CONFIG_CURSES
4881 case QEMU_OPTION_curses:
993fbfdb 4882 display_type = DT_CURSES;
4d3b6f6e
AZ
4883 break;
4884#endif
a171fe39
AZ
4885 case QEMU_OPTION_portrait:
4886 graphic_rotate = 1;
4887 break;
cd6f1169 4888 case QEMU_OPTION_kernel:
a20dd508
FB
4889 kernel_filename = optarg;
4890 break;
cd6f1169 4891 case QEMU_OPTION_append:
a20dd508 4892 kernel_cmdline = optarg;
313aa567 4893 break;
cd6f1169 4894 case QEMU_OPTION_cdrom:
609497ab 4895 drive_add(optarg, CDROM_ALIAS);
36b486bb 4896 break;
cd6f1169 4897 case QEMU_OPTION_boot:
28c5af54 4898 {
ef3adf68 4899 static const char * const params[] = {
95387491 4900 "order", "once", "menu", NULL
ef3adf68
JK
4901 };
4902 char buf[sizeof(boot_devices)];
e0f084bf 4903 char *standard_boot_devices;
ef3adf68
JK
4904 int legacy = 0;
4905
4906 if (!strchr(optarg, '=')) {
4907 legacy = 1;
4908 pstrcpy(buf, sizeof(buf), optarg);
4909 } else if (check_params(buf, sizeof(buf), params, optarg) < 0) {
4910 fprintf(stderr,
4911 "qemu: unknown boot parameter '%s' in '%s'\n",
4912 buf, optarg);
4913 exit(1);
4914 }
4915
4916 if (legacy ||
4917 get_param_value(buf, sizeof(buf), "order", optarg)) {
4918 boot_devices_bitmap = parse_bootdevices(buf);
4919 pstrcpy(boot_devices, sizeof(boot_devices), buf);
28c5af54 4920 }
e0f084bf
JK
4921 if (!legacy) {
4922 if (get_param_value(buf, sizeof(buf),
4923 "once", optarg)) {
4924 boot_devices_bitmap |= parse_bootdevices(buf);
4925 standard_boot_devices = qemu_strdup(boot_devices);
4926 pstrcpy(boot_devices, sizeof(boot_devices), buf);
4927 qemu_register_reset(restore_boot_devices,
4928 standard_boot_devices);
4929 }
95387491
JK
4930 if (get_param_value(buf, sizeof(buf),
4931 "menu", optarg)) {
4932 if (!strcmp(buf, "on")) {
4933 boot_menu = 1;
4934 } else if (!strcmp(buf, "off")) {
4935 boot_menu = 0;
4936 } else {
4937 fprintf(stderr,
4938 "qemu: invalid option value '%s'\n",
4939 buf);
4940 exit(1);
4941 }
4942 }
e0f084bf 4943 }
36b486bb
FB
4944 }
4945 break;
cd6f1169 4946 case QEMU_OPTION_fda:
cd6f1169 4947 case QEMU_OPTION_fdb:
609497ab 4948 drive_add(optarg, FD_ALIAS, popt->index - QEMU_OPTION_fda);
c45886db 4949 break;
52ca8d6a
FB
4950#ifdef TARGET_I386
4951 case QEMU_OPTION_no_fd_bootchk:
4952 fd_bootchk = 0;
4953 break;
4954#endif
a1ea458f
MM
4955 case QEMU_OPTION_netdev:
4956 if (net_client_parse(&qemu_netdev_opts, optarg) == -1) {
4957 exit(1);
4958 }
4959 break;
7c9d8e07 4960 case QEMU_OPTION_net:
7f161aae 4961 if (net_client_parse(&qemu_net_opts, optarg) == -1) {
c4b1fcc0
FB
4962 exit(1);
4963 }
702c651c 4964 break;
c7f74643
FB
4965#ifdef CONFIG_SLIRP
4966 case QEMU_OPTION_tftp:
ad196a9d 4967 legacy_tftp_prefix = optarg;
9bf05444 4968 break;
47d5d01a 4969 case QEMU_OPTION_bootp:
ad196a9d 4970 legacy_bootp_filename = optarg;
47d5d01a 4971 break;
c94c8d64 4972#ifndef _WIN32
9d728e8c 4973 case QEMU_OPTION_smb:
0752706d
MA
4974 if (net_slirp_smb(optarg) < 0)
4975 exit(1);
9d728e8c 4976 break;
c94c8d64 4977#endif
9bf05444 4978 case QEMU_OPTION_redir:
0752706d
MA
4979 if (net_slirp_redir(optarg) < 0)
4980 exit(1);
9bf05444 4981 break;
c7f74643 4982#endif
dc72ac14 4983 case QEMU_OPTION_bt:
bd3c948d 4984 add_device_config(DEV_BT, optarg);
dc72ac14 4985 break;
1d14ffa9 4986#ifdef HAS_AUDIO
1d14ffa9
FB
4987 case QEMU_OPTION_audio_help:
4988 AUD_help ();
4989 exit (0);
4990 break;
4991 case QEMU_OPTION_soundhw:
4992 select_soundhw (optarg);
4993 break;
4994#endif
cd6f1169 4995 case QEMU_OPTION_h:
15f82208 4996 help(0);
cd6f1169 4997 break;
9bd7e6d9
PB
4998 case QEMU_OPTION_version:
4999 version();
5000 exit(0);
5001 break;
00f82b8a
AJ
5002 case QEMU_OPTION_m: {
5003 uint64_t value;
5004 char *ptr;
5005
5006 value = strtoul(optarg, &ptr, 10);
5007 switch (*ptr) {
5008 case 0: case 'M': case 'm':
5009 value <<= 20;
5010 break;
5011 case 'G': case 'g':
5012 value <<= 30;
5013 break;
5014 default:
5015 fprintf(stderr, "qemu: invalid ram size: %s\n", optarg);
cd6f1169
FB
5016 exit(1);
5017 }
00f82b8a
AJ
5018
5019 /* On 32-bit hosts, QEMU is limited by virtual address space */
4a1418e0 5020 if (value > (2047 << 20) && HOST_LONG_BITS == 32) {
00f82b8a
AJ
5021 fprintf(stderr, "qemu: at most 2047 MB RAM can be simulated\n");
5022 exit(1);
5023 }
c227f099 5024 if (value != (uint64_t)(ram_addr_t)value) {
00f82b8a
AJ
5025 fprintf(stderr, "qemu: ram size too large\n");
5026 exit(1);
5027 }
5028 ram_size = value;
cd6f1169 5029 break;
00f82b8a 5030 }
cd6f1169
FB
5031 case QEMU_OPTION_d:
5032 {
5033 int mask;
c7cd6a37 5034 const CPULogItem *item;
3b46e624 5035
cd6f1169
FB
5036 mask = cpu_str_to_log_mask(optarg);
5037 if (!mask) {
5038 printf("Log items (comma separated):\n");
f193c797
FB
5039 for(item = cpu_log_items; item->mask != 0; item++) {
5040 printf("%-10s %s\n", item->name, item->help);
5041 }
5042 exit(1);
cd6f1169
FB
5043 }
5044 cpu_set_log(mask);
f193c797 5045 }
cd6f1169 5046 break;
cd6f1169 5047 case QEMU_OPTION_s:
59030a8c 5048 gdbstub_dev = "tcp::" DEFAULT_GDBSTUB_PORT;
cd6f1169 5049 break;
59030a8c
AL
5050 case QEMU_OPTION_gdb:
5051 gdbstub_dev = optarg;
cd6f1169 5052 break;
cd6f1169 5053 case QEMU_OPTION_L:
5cea8590 5054 data_dir = optarg;
cd6f1169 5055 break;
1192dad8
JM
5056 case QEMU_OPTION_bios:
5057 bios_name = optarg;
5058 break;
1b530a6d
AJ
5059 case QEMU_OPTION_singlestep:
5060 singlestep = 1;
5061 break;
cd6f1169 5062 case QEMU_OPTION_S:
3c07f8e8 5063 autostart = 0;
cd6f1169 5064 break;
3d11d0eb
FB
5065 case QEMU_OPTION_k:
5066 keyboard_layout = optarg;
5067 break;
ee22c2f7
FB
5068 case QEMU_OPTION_localtime:
5069 rtc_utc = 0;
5070 break;
3893c124 5071 case QEMU_OPTION_vga:
5072 select_vgahw (optarg);
1bfe856e 5073 break;
5824d651 5074#if defined(TARGET_PPC) || defined(TARGET_SPARC)
e9b137c2
FB
5075 case QEMU_OPTION_g:
5076 {
5077 const char *p;
5078 int w, h, depth;
5079 p = optarg;
5080 w = strtol(p, (char **)&p, 10);
5081 if (w <= 0) {
5082 graphic_error:
5083 fprintf(stderr, "qemu: invalid resolution or depth\n");
5084 exit(1);
5085 }
5086 if (*p != 'x')
5087 goto graphic_error;
5088 p++;
5089 h = strtol(p, (char **)&p, 10);
5090 if (h <= 0)
5091 goto graphic_error;
5092 if (*p == 'x') {
5093 p++;
5094 depth = strtol(p, (char **)&p, 10);
5fafdf24 5095 if (depth != 8 && depth != 15 && depth != 16 &&
e9b137c2
FB
5096 depth != 24 && depth != 32)
5097 goto graphic_error;
5098 } else if (*p == '\0') {
5099 depth = graphic_depth;
5100 } else {
5101 goto graphic_error;
5102 }
3b46e624 5103
e9b137c2
FB
5104 graphic_width = w;
5105 graphic_height = h;
5106 graphic_depth = depth;
5107 }
5108 break;
5824d651 5109#endif
20d8a3ed
TS
5110 case QEMU_OPTION_echr:
5111 {
5112 char *r;
5113 term_escape_char = strtol(optarg, &r, 0);
5114 if (r == optarg)
5115 printf("Bad argument to echr\n");
5116 break;
5117 }
82c643ff 5118 case QEMU_OPTION_monitor:
ddd9bbd9
JK
5119 if (monitor_device_index >= MAX_MONITOR_DEVICES) {
5120 fprintf(stderr, "qemu: too many monitor devices\n");
5121 exit(1);
5122 }
adcb181a
LC
5123 monitor_devices[monitor_device_index] =
5124 monitor_cmdline_parse(optarg,
5125 &monitor_flags[monitor_device_index]);
ddd9bbd9 5126 monitor_device_index++;
82c643ff 5127 break;
191bc01b
GH
5128 case QEMU_OPTION_chardev:
5129 opts = qemu_opts_parse(&qemu_chardev_opts, optarg, "backend");
5130 if (!opts) {
5131 fprintf(stderr, "parse error: %s\n", optarg);
5132 exit(1);
5133 }
3df04ac3 5134 if (qemu_chr_open_opts(opts, NULL) == NULL) {
191bc01b
GH
5135 exit(1);
5136 }
5137 break;
82c643ff 5138 case QEMU_OPTION_serial:
8d11df9e
FB
5139 if (serial_device_index >= MAX_SERIAL_PORTS) {
5140 fprintf(stderr, "qemu: too many serial ports\n");
5141 exit(1);
5142 }
fd5f393a 5143 serial_devices[serial_device_index] = optarg;
8d11df9e 5144 serial_device_index++;
82c643ff 5145 break;
9dd986cc 5146 case QEMU_OPTION_watchdog:
09aaa160
MA
5147 if (watchdog) {
5148 fprintf(stderr,
5149 "qemu: only one watchdog option may be given\n");
5150 return 1;
5151 }
5152 watchdog = optarg;
9dd986cc
RJ
5153 break;
5154 case QEMU_OPTION_watchdog_action:
5155 if (select_watchdog_action(optarg) == -1) {
5156 fprintf(stderr, "Unknown -watchdog-action parameter\n");
5157 exit(1);
5158 }
5159 break;
51ecf136
AL
5160 case QEMU_OPTION_virtiocon:
5161 if (virtio_console_index >= MAX_VIRTIO_CONSOLES) {
5162 fprintf(stderr, "qemu: too many virtio consoles\n");
5163 exit(1);
5164 }
5165 virtio_consoles[virtio_console_index] = optarg;
5166 virtio_console_index++;
5167 break;
6508fe59
FB
5168 case QEMU_OPTION_parallel:
5169 if (parallel_device_index >= MAX_PARALLEL_PORTS) {
5170 fprintf(stderr, "qemu: too many parallel ports\n");
5171 exit(1);
5172 }
fd5f393a 5173 parallel_devices[parallel_device_index] = optarg;
6508fe59
FB
5174 parallel_device_index++;
5175 break;
d63d307f
FB
5176 case QEMU_OPTION_loadvm:
5177 loadvm = optarg;
5178 break;
5179 case QEMU_OPTION_full_screen:
5180 full_screen = 1;
5181 break;
667accab 5182#ifdef CONFIG_SDL
43523e93
TS
5183 case QEMU_OPTION_no_frame:
5184 no_frame = 1;
5185 break;
3780e197
TS
5186 case QEMU_OPTION_alt_grab:
5187 alt_grab = 1;
5188 break;
0ca9f8a4
DK
5189 case QEMU_OPTION_ctrl_grab:
5190 ctrl_grab = 1;
5191 break;
667accab
TS
5192 case QEMU_OPTION_no_quit:
5193 no_quit = 1;
5194 break;
7d957bd8 5195 case QEMU_OPTION_sdl:
993fbfdb 5196 display_type = DT_SDL;
7d957bd8 5197 break;
667accab 5198#endif
f7cce898 5199 case QEMU_OPTION_pidfile:
93815bc2 5200 pid_file = optarg;
f7cce898 5201 break;
a09db21f
FB
5202#ifdef TARGET_I386
5203 case QEMU_OPTION_win2k_hack:
5204 win2k_install_hack = 1;
5205 break;
73822ec8
AL
5206 case QEMU_OPTION_rtc_td_hack:
5207 rtc_td_hack = 1;
5208 break;
8a92ea2f
AL
5209 case QEMU_OPTION_acpitable:
5210 if(acpi_table_add(optarg) < 0) {
5211 fprintf(stderr, "Wrong acpi table provided\n");
5212 exit(1);
5213 }
5214 break;
b6f6e3d3
AL
5215 case QEMU_OPTION_smbios:
5216 if(smbios_entry_add(optarg) < 0) {
5217 fprintf(stderr, "Wrong smbios provided\n");
5218 exit(1);
5219 }
5220 break;
a09db21f 5221#endif
7ba1e619
AL
5222#ifdef CONFIG_KVM
5223 case QEMU_OPTION_enable_kvm:
5224 kvm_allowed = 1;
7ba1e619 5225 break;
d993e026 5226#endif
bb36d470
FB
5227 case QEMU_OPTION_usb:
5228 usb_enabled = 1;
5229 break;
a594cfbf
FB
5230 case QEMU_OPTION_usbdevice:
5231 usb_enabled = 1;
bd3c948d
GH
5232 add_device_config(DEV_USB, optarg);
5233 break;
5234 case QEMU_OPTION_device:
b386becf 5235 if (!qemu_opts_parse(&qemu_device_opts, optarg, "driver")) {
f31d07d1
GH
5236 exit(1);
5237 }
a594cfbf 5238 break;
6a00d601 5239 case QEMU_OPTION_smp:
dc6b1c09 5240 smp_parse(optarg);
b2097003 5241 if (smp_cpus < 1) {
6a00d601
FB
5242 fprintf(stderr, "Invalid number of CPUs\n");
5243 exit(1);
5244 }
6be68d7e
JS
5245 if (max_cpus < smp_cpus) {
5246 fprintf(stderr, "maxcpus must be equal to or greater than "
5247 "smp\n");
5248 exit(1);
5249 }
5250 if (max_cpus > 255) {
5251 fprintf(stderr, "Unsupported number of maxcpus\n");
5252 exit(1);
5253 }
6a00d601 5254 break;
24236869 5255 case QEMU_OPTION_vnc:
993fbfdb 5256 display_type = DT_VNC;
73fc9742 5257 vnc_display = optarg;
24236869 5258 break;
5824d651 5259#ifdef TARGET_I386
6515b203
FB
5260 case QEMU_OPTION_no_acpi:
5261 acpi_enabled = 0;
5262 break;
16b29ae1
AL
5263 case QEMU_OPTION_no_hpet:
5264 no_hpet = 1;
5265 break;
7d4c3d53
MA
5266 case QEMU_OPTION_balloon:
5267 if (balloon_parse(optarg) < 0) {
5268 fprintf(stderr, "Unknown -balloon argument %s\n", optarg);
5269 exit(1);
5270 }
df97b920 5271 break;
5824d651 5272#endif
d1beab82
FB
5273 case QEMU_OPTION_no_reboot:
5274 no_reboot = 1;
5275 break;
b2f76161
AJ
5276 case QEMU_OPTION_no_shutdown:
5277 no_shutdown = 1;
5278 break;
9467cd46
AZ
5279 case QEMU_OPTION_show_cursor:
5280 cursor_hide = 0;
5281 break;
8fcb1b90
BS
5282 case QEMU_OPTION_uuid:
5283 if(qemu_uuid_parse(optarg, qemu_uuid) < 0) {
5284 fprintf(stderr, "Fail to parse UUID string."
5285 " Wrong format.\n");
5286 exit(1);
5287 }
5288 break;
5824d651 5289#ifndef _WIN32
71e3ceb8
TS
5290 case QEMU_OPTION_daemonize:
5291 daemonize = 1;
5292 break;
5824d651 5293#endif
9ae02555
TS
5294 case QEMU_OPTION_option_rom:
5295 if (nb_option_roms >= MAX_OPTION_ROMS) {
5296 fprintf(stderr, "Too many option ROMs\n");
5297 exit(1);
5298 }
5299 option_rom[nb_option_roms] = optarg;
5300 nb_option_roms++;
5301 break;
5824d651 5302#if defined(TARGET_ARM) || defined(TARGET_M68K)
8e71621f
PB
5303 case QEMU_OPTION_semihosting:
5304 semihosting_enabled = 1;
5305 break;
5824d651 5306#endif
c35734b2 5307 case QEMU_OPTION_name:
1889465a
AK
5308 qemu_name = qemu_strdup(optarg);
5309 {
5310 char *p = strchr(qemu_name, ',');
5311 if (p != NULL) {
5312 *p++ = 0;
5313 if (strncmp(p, "process=", 8)) {
5314 fprintf(stderr, "Unknown subargument %s to -name", p);
5315 exit(1);
5316 }
5317 p += 8;
5318 set_proc_name(p);
5319 }
5320 }
c35734b2 5321 break;
95efd11c 5322#if defined(TARGET_SPARC) || defined(TARGET_PPC)
66508601
BS
5323 case QEMU_OPTION_prom_env:
5324 if (nb_prom_envs >= MAX_PROM_ENVS) {
5325 fprintf(stderr, "Too many prom variables\n");
5326 exit(1);
5327 }
5328 prom_envs[nb_prom_envs] = optarg;
5329 nb_prom_envs++;
5330 break;
2b8f2d41
AZ
5331#endif
5332#ifdef TARGET_ARM
5333 case QEMU_OPTION_old_param:
5334 old_param = 1;
05ebd537 5335 break;
66508601 5336#endif
f3dcfada
TS
5337 case QEMU_OPTION_clock:
5338 configure_alarms(optarg);
5339 break;
7e0af5d0 5340 case QEMU_OPTION_startdate:
1ed2fc1f
JK
5341 configure_rtc_date_offset(optarg, 1);
5342 break;
5343 case QEMU_OPTION_rtc:
5344 opts = qemu_opts_parse(&qemu_rtc_opts, optarg, NULL);
5345 if (!opts) {
5346 fprintf(stderr, "parse error: %s\n", optarg);
5347 exit(1);
7e0af5d0 5348 }
1ed2fc1f 5349 configure_rtc(opts);
7e0af5d0 5350 break;
26a5f13b
FB
5351 case QEMU_OPTION_tb_size:
5352 tb_size = strtol(optarg, NULL, 0);
5353 if (tb_size < 0)
5354 tb_size = 0;
5355 break;
2e70f6ef
PB
5356 case QEMU_OPTION_icount:
5357 use_icount = 1;
5358 if (strcmp(optarg, "auto") == 0) {
5359 icount_time_shift = -1;
5360 } else {
5361 icount_time_shift = strtol(optarg, NULL, 0);
5362 }
5363 break;
5bb7910a
AL
5364 case QEMU_OPTION_incoming:
5365 incoming = optarg;
5366 break;
5824d651 5367#ifndef _WIN32
0858532e
AL
5368 case QEMU_OPTION_chroot:
5369 chroot_dir = optarg;
5370 break;
5371 case QEMU_OPTION_runas:
5372 run_as = optarg;
5373 break;
e37630ca
AL
5374#endif
5375#ifdef CONFIG_XEN
5376 case QEMU_OPTION_xen_domid:
5377 xen_domid = atoi(optarg);
5378 break;
5379 case QEMU_OPTION_xen_create:
5380 xen_mode = XEN_CREATE;
5381 break;
5382 case QEMU_OPTION_xen_attach:
5383 xen_mode = XEN_ATTACH;
5384 break;
5824d651 5385#endif
715a664a
GH
5386 case QEMU_OPTION_readconfig:
5387 {
5388 FILE *fp;
5389 fp = fopen(optarg, "r");
5390 if (fp == NULL) {
5391 fprintf(stderr, "open %s: %s\n", optarg, strerror(errno));
5392 exit(1);
5393 }
5394 if (qemu_config_parse(fp) != 0) {
5395 exit(1);
5396 }
5397 fclose(fp);
5398 break;
5399 }
5400 case QEMU_OPTION_writeconfig:
5401 {
5402 FILE *fp;
5403 if (strcmp(optarg, "-") == 0) {
5404 fp = stdout;
5405 } else {
5406 fp = fopen(optarg, "w");
5407 if (fp == NULL) {
5408 fprintf(stderr, "open %s: %s\n", optarg, strerror(errno));
5409 exit(1);
5410 }
5411 }
5412 qemu_config_write(fp);
5413 fclose(fp);
5414 break;
5415 }
cd6f1169 5416 }
0824d6fc
FB
5417 }
5418 }
330d0414 5419
5cea8590
PB
5420 /* If no data_dir is specified then try to find it relative to the
5421 executable path. */
5422 if (!data_dir) {
5423 data_dir = find_datadir(argv[0]);
5424 }
5425 /* If all else fails use the install patch specified when building. */
5426 if (!data_dir) {
5427 data_dir = CONFIG_QEMU_SHAREDIR;
5428 }
5429
6be68d7e
JS
5430 /*
5431 * Default to max_cpus = smp_cpus, in case the user doesn't
5432 * specify a max_cpus value.
5433 */
5434 if (!max_cpus)
5435 max_cpus = smp_cpus;
5436
3d878caa 5437 machine->max_cpus = machine->max_cpus ?: 1; /* Default to UP */
b2097003
AL
5438 if (smp_cpus > machine->max_cpus) {
5439 fprintf(stderr, "Number of SMP cpus requested (%d), exceeds max cpus "
5440 "supported by machine `%s' (%d)\n", smp_cpus, machine->name,
5441 machine->max_cpus);
5442 exit(1);
5443 }
5444
993fbfdb 5445 if (display_type == DT_NOGRAPHIC) {
bc0129d9
AL
5446 if (serial_device_index == 0)
5447 serial_devices[0] = "stdio";
5448 if (parallel_device_index == 0)
5449 parallel_devices[0] = "null";
ddd9bbd9
JK
5450 if (strncmp(monitor_devices[0], "vc", 2) == 0) {
5451 monitor_devices[0] = "stdio";
5452 }
bc0129d9
AL
5453 }
5454
71e3ceb8 5455#ifndef _WIN32
71e3ceb8
TS
5456 if (daemonize) {
5457 pid_t pid;
5458
5459 if (pipe(fds) == -1)
5460 exit(1);
5461
5462 pid = fork();
5463 if (pid > 0) {
5464 uint8_t status;
5465 ssize_t len;
5466
5467 close(fds[1]);
5468
5469 again:
93815bc2
TS
5470 len = read(fds[0], &status, 1);
5471 if (len == -1 && (errno == EINTR))
5472 goto again;
5473
5474 if (len != 1)
5475 exit(1);
5476 else if (status == 1) {
850810d0 5477 fprintf(stderr, "Could not acquire pidfile: %s\n", strerror(errno));
93815bc2
TS
5478 exit(1);
5479 } else
5480 exit(0);
71e3ceb8 5481 } else if (pid < 0)
93815bc2 5482 exit(1);
71e3ceb8
TS
5483
5484 setsid();
5485
5486 pid = fork();
5487 if (pid > 0)
5488 exit(0);
5489 else if (pid < 0)
5490 exit(1);
5491
5492 umask(027);
71e3ceb8
TS
5493
5494 signal(SIGTSTP, SIG_IGN);
5495 signal(SIGTTOU, SIG_IGN);
5496 signal(SIGTTIN, SIG_IGN);
5497 }
71e3ceb8 5498
aa26bb2d 5499 if (pid_file && qemu_create_pidfile(pid_file) != 0) {
93815bc2
TS
5500 if (daemonize) {
5501 uint8_t status = 1;
5502 write(fds[1], &status, 1);
5503 } else
850810d0 5504 fprintf(stderr, "Could not acquire pid file: %s\n", strerror(errno));
93815bc2
TS
5505 exit(1);
5506 }
b9e82a59 5507#endif
93815bc2 5508
214910a7
MT
5509 if (kvm_enabled()) {
5510 int ret;
5511
5512 ret = kvm_init(smp_cpus);
5513 if (ret < 0) {
5514 fprintf(stderr, "failed to initialize KVM\n");
5515 exit(1);
5516 }
5517 }
5518
3fcf7b6b
AL
5519 if (qemu_init_main_loop()) {
5520 fprintf(stderr, "qemu_init_main_loop failed\n");
5521 exit(1);
5522 }
a20dd508 5523 linux_boot = (kernel_filename != NULL);
6c41b272 5524
f8d39c01
TS
5525 if (!linux_boot && *kernel_cmdline != '\0') {
5526 fprintf(stderr, "-append only allowed with -kernel option\n");
5527 exit(1);
5528 }
5529
5530 if (!linux_boot && initrd_filename != NULL) {
5531 fprintf(stderr, "-initrd only allowed with -kernel option\n");
5532 exit(1);
5533 }
5534
bf65f53f
FN
5535#ifndef _WIN32
5536 /* Win32 doesn't support line-buffering and requires size >= 2 */
b118d61e 5537 setvbuf(stdout, NULL, _IOLBF, 0);
bf65f53f 5538#endif
3b46e624 5539
7183b4b4
AL
5540 if (init_timer_alarm() < 0) {
5541 fprintf(stderr, "could not initialize alarm timer\n");
5542 exit(1);
5543 }
2e70f6ef
PB
5544 if (use_icount && icount_time_shift < 0) {
5545 use_icount = 2;
5546 /* 125MIPS seems a reasonable initial guess at the guest speed.
5547 It will be corrected fairly quickly anyway. */
5548 icount_time_shift = 3;
5549 init_icount_adjust();
5550 }
634fce96 5551
fd1dff4b
FB
5552#ifdef _WIN32
5553 socket_init();
5554#endif
5555
dc1c9fe8
MM
5556 if (net_init_clients() < 0) {
5557 exit(1);
702c651c 5558 }
f1510b2c 5559
406c8df3
GC
5560 net_boot = (boot_devices_bitmap >> ('n' - 'a')) & 0xF;
5561 net_set_boot_mask(net_boot);
5562
dc72ac14 5563 /* init the bluetooth world */
bd3c948d
GH
5564 if (foreach_device_config(DEV_BT, bt_parse))
5565 exit(1);
dc72ac14 5566
0824d6fc 5567 /* init the memory */
94a6b54f
PB
5568 if (ram_size == 0)
5569 ram_size = DEFAULT_RAM_SIZE * 1024 * 1024;
9ae02555 5570
26a5f13b
FB
5571 /* init the dynamic translator */
5572 cpu_exec_init_all(tb_size * 1024 * 1024);
5573
eb852011 5574 bdrv_init_with_whitelist();
c4b1fcc0 5575
c163b5ca 5576 blk_mig_init();
5577
e4bcb14c 5578 /* we always create the cdrom drive, even if no disk is there */
3b0ba927 5579 drive_add(NULL, CDROM_ALIAS);
c4b1fcc0 5580
9d413d1d 5581 /* we always create at least one floppy */
3b0ba927 5582 drive_add(NULL, FD_ALIAS, 0);
86f55663 5583
9d413d1d 5584 /* we always create one sd slot, even if no card is in it */
3b0ba927 5585 drive_add(NULL, SD_ALIAS);
9d413d1d 5586
e4bcb14c 5587 /* open the virtual block devices */
9dfd7c7a 5588 if (snapshot)
7282a033
GH
5589 qemu_opts_foreach(&qemu_drive_opts, drive_enable_snapshot, NULL, 0);
5590 if (qemu_opts_foreach(&qemu_drive_opts, drive_init_func, machine, 1) != 0)
9dfd7c7a 5591 exit(1);
3e3d5815 5592
2faf58cd 5593 vmstate_register(0, &vmstate_timers ,&timers_state);
c163b5ca 5594 register_savevm_live("ram", 0, 3, NULL, ram_save_live, NULL,
5595 ram_load, NULL);
8a7ddc38 5596
3023f332 5597 /* Maintain compatibility with multiple stdio monitors */
ddd9bbd9 5598 if (!strcmp(monitor_devices[0],"stdio")) {
3023f332
AL
5599 for (i = 0; i < MAX_SERIAL_PORTS; i++) {
5600 const char *devname = serial_devices[i];
5601 if (devname && !strcmp(devname,"mon:stdio")) {
ddd9bbd9 5602 monitor_devices[0] = NULL;
3023f332
AL
5603 break;
5604 } else if (devname && !strcmp(devname,"stdio")) {
ddd9bbd9 5605 monitor_devices[0] = NULL;
3023f332
AL
5606 serial_devices[i] = "mon:stdio";
5607 break;
5608 }
5609 }
5610 }
5611
268a362c
AL
5612 if (nb_numa_nodes > 0) {
5613 int i;
5614
5615 if (nb_numa_nodes > smp_cpus) {
5616 nb_numa_nodes = smp_cpus;
5617 }
5618
5619 /* If no memory size if given for any node, assume the default case
5620 * and distribute the available memory equally across all nodes
5621 */
5622 for (i = 0; i < nb_numa_nodes; i++) {
5623 if (node_mem[i] != 0)
5624 break;
5625 }
5626 if (i == nb_numa_nodes) {
5627 uint64_t usedmem = 0;
5628
5629 /* On Linux, the each node's border has to be 8MB aligned,
5630 * the final node gets the rest.
5631 */
5632 for (i = 0; i < nb_numa_nodes - 1; i++) {
5633 node_mem[i] = (ram_size / nb_numa_nodes) & ~((1 << 23UL) - 1);
5634 usedmem += node_mem[i];
5635 }
5636 node_mem[i] = ram_size - usedmem;
5637 }
5638
5639 for (i = 0; i < nb_numa_nodes; i++) {
5640 if (node_cpumask[i] != 0)
5641 break;
5642 }
5643 /* assigning the VCPUs round-robin is easier to implement, guest OSes
5644 * must cope with this anyway, because there are BIOSes out there in
5645 * real machines which also use this scheme.
5646 */
5647 if (i == nb_numa_nodes) {
5648 for (i = 0; i < smp_cpus; i++) {
5649 node_cpumask[i % nb_numa_nodes] |= 1 << i;
5650 }
5651 }
5652 }
5653
ddd9bbd9
JK
5654 for (i = 0; i < MAX_MONITOR_DEVICES; i++) {
5655 const char *devname = monitor_devices[i];
5656 if (devname && strcmp(devname, "none")) {
5657 char label[32];
5658 if (i == 0) {
5659 snprintf(label, sizeof(label), "monitor");
5660 } else {
5661 snprintf(label, sizeof(label), "monitor%d", i);
5662 }
5663 monitor_hds[i] = qemu_chr_open(label, devname, NULL);
5664 if (!monitor_hds[i]) {
5665 fprintf(stderr, "qemu: could not open monitor device '%s'\n",
5666 devname);
5667 exit(1);
5668 }
4c621805
AL
5669 }
5670 }
5671
2796dae0
AL
5672 for(i = 0; i < MAX_SERIAL_PORTS; i++) {
5673 const char *devname = serial_devices[i];
5674 if (devname && strcmp(devname, "none")) {
324a8021
AJ
5675 char label[32];
5676 snprintf(label, sizeof(label), "serial%d", i);
ceecf1d1 5677 serial_hds[i] = qemu_chr_open(label, devname, NULL);
324a8021 5678 if (!serial_hds[i]) {
850810d0
JF
5679 fprintf(stderr, "qemu: could not open serial device '%s': %s\n",
5680 devname, strerror(errno));
324a8021
AJ
5681 exit(1);
5682 }
2796dae0
AL
5683 }
5684 }
5685
5686 for(i = 0; i < MAX_PARALLEL_PORTS; i++) {
5687 const char *devname = parallel_devices[i];
5688 if (devname && strcmp(devname, "none")) {
5689 char label[32];
5690 snprintf(label, sizeof(label), "parallel%d", i);
ceecf1d1 5691 parallel_hds[i] = qemu_chr_open(label, devname, NULL);
2796dae0 5692 if (!parallel_hds[i]) {
850810d0
JF
5693 fprintf(stderr, "qemu: could not open parallel device '%s': %s\n",
5694 devname, strerror(errno));
2796dae0
AL
5695 exit(1);
5696 }
5697 }
5698 }
5699
5700 for(i = 0; i < MAX_VIRTIO_CONSOLES; i++) {
5701 const char *devname = virtio_consoles[i];
5702 if (devname && strcmp(devname, "none")) {
5703 char label[32];
5704 snprintf(label, sizeof(label), "virtcon%d", i);
ceecf1d1 5705 virtcon_hds[i] = qemu_chr_open(label, devname, NULL);
2796dae0 5706 if (!virtcon_hds[i]) {
850810d0
JF
5707 fprintf(stderr, "qemu: could not open virtio console '%s': %s\n",
5708 devname, strerror(errno));
2796dae0
AL
5709 exit(1);
5710 }
5711 }
5712 }
5713
aae9460e
PB
5714 module_call_init(MODULE_INIT_DEVICE);
5715
09aaa160
MA
5716 if (watchdog) {
5717 i = select_watchdog(watchdog);
5718 if (i > 0)
5719 exit (i == 1 ? 1 : 0);
5720 }
5721
b6b61144
GH
5722 if (machine->compat_props) {
5723 qdev_prop_register_compat(machine->compat_props);
5724 }
fbe1b595 5725 machine->init(ram_size, boot_devices,
3023f332
AL
5726 kernel_filename, kernel_cmdline, initrd_filename, cpu_model);
5727
268a362c 5728
67b3b71d
JQ
5729#ifndef _WIN32
5730 /* must be after terminal init, SDL library changes signal handlers */
5731 sighandler_setup();
5732#endif
5733
268a362c
AL
5734 for (env = first_cpu; env != NULL; env = env->next_cpu) {
5735 for (i = 0; i < nb_numa_nodes; i++) {
5736 if (node_cpumask[i] & (1 << env->cpu_index)) {
5737 env->numa_node = i;
5738 }
5739 }
5740 }
5741
6f338c34
AL
5742 current_machine = machine;
5743
3023f332
AL
5744 /* init USB devices */
5745 if (usb_enabled) {
0752706d
MA
5746 if (foreach_device_config(DEV_USB, usb_parse) < 0)
5747 exit(1);
3023f332
AL
5748 }
5749
bd3c948d 5750 /* init generic devices */
f31d07d1 5751 if (qemu_opts_foreach(&qemu_device_opts, device_init_func, NULL, 1) != 0)
bd3c948d
GH
5752 exit(1);
5753
8f391ab4
AL
5754 if (!display_state)
5755 dumb_display_init();
3023f332
AL
5756 /* just use the first displaystate for the moment */
5757 ds = display_state;
993fbfdb
AL
5758
5759 if (display_type == DT_DEFAULT) {
5760#if defined(CONFIG_SDL) || defined(CONFIG_COCOA)
5761 display_type = DT_SDL;
5762#else
5763 display_type = DT_VNC;
5764 vnc_display = "localhost:0,to=99";
5765 show_vnc_port = 1;
5766#endif
5767 }
5768
5769
5770 switch (display_type) {
5771 case DT_NOGRAPHIC:
5772 break;
4d3b6f6e 5773#if defined(CONFIG_CURSES)
993fbfdb
AL
5774 case DT_CURSES:
5775 curses_display_init(ds, full_screen);
5776 break;
4d3b6f6e 5777#endif
5b0753e0 5778#if defined(CONFIG_SDL)
993fbfdb
AL
5779 case DT_SDL:
5780 sdl_display_init(ds, full_screen, no_frame);
5781 break;
5b0753e0 5782#elif defined(CONFIG_COCOA)
993fbfdb
AL
5783 case DT_SDL:
5784 cocoa_display_init(ds, full_screen);
5785 break;
313aa567 5786#endif
993fbfdb
AL
5787 case DT_VNC:
5788 vnc_display_init(ds);
5789 if (vnc_display_open(ds, vnc_display) < 0)
5790 exit(1);
f92f8afe 5791
993fbfdb
AL
5792 if (show_vnc_port) {
5793 printf("VNC server running on `%s'\n", vnc_display_local_addr(ds));
f92f8afe 5794 }
993fbfdb
AL
5795 break;
5796 default:
5797 break;
313aa567 5798 }
7d957bd8 5799 dpy_resize(ds);
5b08fc10 5800
3023f332
AL
5801 dcl = ds->listeners;
5802 while (dcl != NULL) {
5803 if (dcl->dpy_refresh != NULL) {
5804 ds->gui_timer = qemu_new_timer(rt_clock, gui_update, ds);
5805 qemu_mod_timer(ds->gui_timer, qemu_get_clock(rt_clock));
20d8a3ed 5806 }
3023f332 5807 dcl = dcl->next;
20d8a3ed 5808 }
3023f332 5809
993fbfdb 5810 if (display_type == DT_NOGRAPHIC || display_type == DT_VNC) {
9043b62d
BS
5811 nographic_timer = qemu_new_timer(rt_clock, nographic_update, NULL);
5812 qemu_mod_timer(nographic_timer, qemu_get_clock(rt_clock));
5813 }
5814
2796dae0
AL
5815 text_consoles_set_display(display_state);
5816
ddd9bbd9
JK
5817 for (i = 0; i < MAX_MONITOR_DEVICES; i++) {
5818 if (monitor_devices[i] && monitor_hds[i]) {
adcb181a 5819 monitor_init(monitor_hds[i], monitor_flags[i]);
ddd9bbd9
JK
5820 }
5821 }
82c643ff 5822
8d11df9e 5823 for(i = 0; i < MAX_SERIAL_PORTS; i++) {
c03b0f0f 5824 const char *devname = serial_devices[i];
fd5f393a 5825 if (devname && strcmp(devname, "none")) {
af3a9031 5826 if (strstart(devname, "vc", 0))
7ba1260a 5827 qemu_chr_printf(serial_hds[i], "serial%d console\r\n", i);
8d11df9e 5828 }
82c643ff 5829 }
82c643ff 5830
6508fe59 5831 for(i = 0; i < MAX_PARALLEL_PORTS; i++) {
c03b0f0f 5832 const char *devname = parallel_devices[i];
fd5f393a 5833 if (devname && strcmp(devname, "none")) {
af3a9031 5834 if (strstart(devname, "vc", 0))
7ba1260a 5835 qemu_chr_printf(parallel_hds[i], "parallel%d console\r\n", i);
6508fe59
FB
5836 }
5837 }
5838
9ede2fde
AL
5839 for(i = 0; i < MAX_VIRTIO_CONSOLES; i++) {
5840 const char *devname = virtio_consoles[i];
2796dae0 5841 if (virtcon_hds[i] && devname) {
9ede2fde
AL
5842 if (strstart(devname, "vc", 0))
5843 qemu_chr_printf(virtcon_hds[i], "virtio console%d\r\n", i);
5844 }
5845 }
5846
59030a8c
AL
5847 if (gdbstub_dev && gdbserver_start(gdbstub_dev) < 0) {
5848 fprintf(stderr, "qemu: could not open gdbserver on device '%s'\n",
5849 gdbstub_dev);
5850 exit(1);
45669e00 5851 }
45669e00 5852
3418bd25
GH
5853 qdev_machine_creation_done();
5854
45a50b16
GH
5855 rom_load_all();
5856
504c2948 5857 qemu_system_reset();
05f2401e
JQ
5858 if (loadvm) {
5859 if (load_vmstate(cur_mon, loadvm) < 0) {
5860 autostart = 0;
5861 }
5862 }
d63d307f 5863
2bb8c10c 5864 if (incoming) {
5bb7910a 5865 qemu_start_incoming_migration(incoming);
6b99dadc 5866 } else if (autostart) {
c0f4ce77 5867 vm_start();
6b99dadc 5868 }
ffd843bc 5869
b9e82a59 5870#ifndef _WIN32
71e3ceb8
TS
5871 if (daemonize) {
5872 uint8_t status = 0;
5873 ssize_t len;
71e3ceb8
TS
5874
5875 again1:
5876 len = write(fds[1], &status, 1);
5877 if (len == -1 && (errno == EINTR))
5878 goto again1;
5879
5880 if (len != 1)
5881 exit(1);
5882
bd54b863 5883 chdir("/");
aeb30be6 5884 TFR(fd = open("/dev/null", O_RDWR));
71e3ceb8
TS
5885 if (fd == -1)
5886 exit(1);
0858532e 5887 }
71e3ceb8 5888
0858532e
AL
5889 if (run_as) {
5890 pwd = getpwnam(run_as);
5891 if (!pwd) {
5892 fprintf(stderr, "User \"%s\" doesn't exist\n", run_as);
5893 exit(1);
5894 }
5895 }
5896
5897 if (chroot_dir) {
5898 if (chroot(chroot_dir) < 0) {
5899 fprintf(stderr, "chroot failed\n");
5900 exit(1);
5901 }
5902 chdir("/");
5903 }
5904
5905 if (run_as) {
5906 if (setgid(pwd->pw_gid) < 0) {
5907 fprintf(stderr, "Failed to setgid(%d)\n", pwd->pw_gid);
5908 exit(1);
5909 }
5910 if (setuid(pwd->pw_uid) < 0) {
5911 fprintf(stderr, "Failed to setuid(%d)\n", pwd->pw_uid);
5912 exit(1);
5913 }
5914 if (setuid(0) != -1) {
5915 fprintf(stderr, "Dropping privileges failed\n");
5916 exit(1);
5917 }
5918 }
0858532e
AL
5919
5920 if (daemonize) {
5921 dup2(fd, 0);
5922 dup2(fd, 1);
5923 dup2(fd, 2);
71e3ceb8 5924
0858532e 5925 close(fd);
71e3ceb8 5926 }
b9e82a59 5927#endif
71e3ceb8 5928
8a7ddc38 5929 main_loop();
40c3bac3 5930 quit_timers();
63a01ef8 5931 net_cleanup();
b46a8906 5932
0824d6fc
FB
5933 return 0;
5934}