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