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