]> git.proxmox.com Git - qemu.git/blame - vl.c
block: Assume raw for drives without media
[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>
92c0e657 55#include <sys/sysctl.h>
24646c7e
BS
56#else
57#include <util.h>
128ab2ff 58#endif
bbe813a2 59#else
223f0d72 60#ifdef __linux__
7d3505c5
FB
61#include <pty.h>
62#include <malloc.h>
1889465a 63#include <sys/prctl.h>
bd494f4c 64
e57a8c0e 65#include <linux/ppdev.h>
5867c88a 66#include <linux/parport.h>
223f0d72
BS
67#endif
68#ifdef __sun__
d5d10bc3
TS
69#include <sys/stat.h>
70#include <sys/ethernet.h>
71#include <sys/sockio.h>
d5d10bc3
TS
72#include <netinet/arp.h>
73#include <netinet/in.h>
74#include <netinet/in_systm.h>
75#include <netinet/ip.h>
76#include <netinet/ip_icmp.h> // must come after ip.h
77#include <netinet/udp.h>
78#include <netinet/tcp.h>
79#include <net/if.h>
80#include <syslog.h>
81#include <stropts.h>
8d32cf0e
BS
82/* See MySQL bug #7156 (http://bugs.mysql.com/bug.php?id=7156) for
83 discussion about Solaris header problems */
84extern int madvise(caddr_t, size_t, int);
67b915a5 85#endif
7d3505c5 86#endif
ec530c81 87#endif
67b915a5 88
9892fbfb
BS
89#if defined(__OpenBSD__)
90#include <util.h>
91#endif
92
8a16d273
TS
93#if defined(CONFIG_VDE)
94#include <libvdeplug.h>
95#endif
96
67b915a5 97#ifdef _WIN32
49dc768d 98#include <windows.h>
67b915a5
FB
99#endif
100
73332e5c 101#ifdef CONFIG_SDL
59a36a2f 102#if defined(__APPLE__) || defined(main)
6693665a 103#include <SDL.h>
880fec5d 104int qemu_main(int argc, char **argv, char **envp);
105int main(int argc, char **argv)
106{
59a36a2f 107 return qemu_main(argc, argv, NULL);
880fec5d 108}
109#undef main
110#define main qemu_main
96bcd4f8 111#endif
73332e5c 112#endif /* CONFIG_SDL */
0824d6fc 113
5b0753e0
FB
114#ifdef CONFIG_COCOA
115#undef main
116#define main qemu_main
117#endif /* CONFIG_COCOA */
118
511d2b14
BS
119#include "hw/hw.h"
120#include "hw/boards.h"
121#include "hw/usb.h"
122#include "hw/pcmcia.h"
123#include "hw/pc.h"
511d2b14
BS
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"
d3f24367 149#include "qemu-option.h"
7282a033 150#include "qemu-config.h"
e78c48ec 151#include "qemu-objects.h"
74db920c
GS
152#ifdef CONFIG_LINUX
153#include "fsdev/qemu-fsdev.h"
154#endif
511d2b14 155
0824d6fc 156#include "disas.h"
fc01f7e7 157
511d2b14
BS
158#include "qemu_socket.h"
159
d918f23e 160#include "slirp/libslirp.h"
511d2b14 161
72cf2d4f 162#include "qemu-queue.h"
296af7c9 163#include "cpus.h"
ad96090a 164#include "arch_init.h"
72cf2d4f 165
9dc63a1e
BS
166//#define DEBUG_NET
167//#define DEBUG_SLIRP
330d0414 168
1bfe856e 169#define DEFAULT_RAM_SIZE 128
313aa567 170
98b19252
AS
171#define MAX_VIRTIO_CONSOLES 1
172
5cea8590 173static const char *data_dir;
1192dad8 174const char *bios_name = NULL;
72cf2d4f 175struct drivelist drives = QTAILQ_HEAD_INITIALIZER(drives);
cb5a7aa8 176enum vga_retrace_method vga_retrace_method = VGA_RETRACE_DUMB;
993fbfdb 177DisplayType display_type = DT_DEFAULT;
3d11d0eb 178const char* keyboard_layout = NULL;
c227f099 179ram_addr_t ram_size;
c902760f
MT
180const char *mem_path = NULL;
181#ifdef MAP_POPULATE
182int mem_prealloc = 0; /* force preallocation of physical target memory */
183#endif
c4b1fcc0 184int nb_nics;
7c9d8e07 185NICInfo nd_table[MAX_NICS];
8a7ddc38 186int vm_running;
d399f677 187int autostart;
f6503059
AZ
188static int rtc_utc = 1;
189static int rtc_date_offset = -1; /* -1 means no change */
6875204c 190QEMUClock *rtc_clock;
64465297 191int vga_interface_type = VGA_NONE;
dbed7e40 192static int full_screen = 0;
634a21f6 193#ifdef CONFIG_SDL
dbed7e40 194static int no_frame = 0;
634a21f6 195#endif
667accab 196int no_quit = 0;
8d11df9e 197CharDriverState *serial_hds[MAX_SERIAL_PORTS];
6508fe59 198CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
9ede2fde 199CharDriverState *virtcon_hds[MAX_VIRTIO_CONSOLES];
a09db21f 200int win2k_install_hack = 0;
73822ec8 201int rtc_td_hack = 0;
bb36d470 202int usb_enabled = 0;
1b530a6d 203int singlestep = 0;
6a00d601 204int smp_cpus = 1;
6be68d7e 205int max_cpus = 0;
dc6b1c09
AP
206int smp_cores = 1;
207int smp_threads = 1;
73fc9742 208const char *vnc_display;
6515b203 209int acpi_enabled = 1;
16b29ae1 210int no_hpet = 0;
52ca8d6a 211int fd_bootchk = 1;
d1beab82 212int no_reboot = 0;
b2f76161 213int no_shutdown = 0;
9467cd46 214int cursor_hide = 1;
a171fe39 215int graphic_rotate = 0;
6b35e7bf 216uint8_t irq0override = 1;
b9e82a59 217#ifndef _WIN32
71e3ceb8 218int daemonize = 0;
b9e82a59 219#endif
09aaa160 220const char *watchdog;
9ae02555
TS
221const char *option_rom[MAX_OPTION_ROMS];
222int nb_option_roms;
8e71621f 223int semihosting_enabled = 0;
2b8f2d41 224int old_param = 0;
c35734b2 225const char *qemu_name;
3780e197 226int alt_grab = 0;
0ca9f8a4 227int ctrl_grab = 0;
66508601
BS
228unsigned int nb_prom_envs = 0;
229const char *prom_envs[MAX_PROM_ENVS];
95387491 230int boot_menu;
0824d6fc 231
268a362c
AL
232int nb_numa_nodes;
233uint64_t node_mem[MAX_NODES];
234uint64_t node_cpumask[MAX_NODES];
235
9043b62d 236static QEMUTimer *nographic_timer;
ee5605e5 237
8fcb1b90
BS
238uint8_t qemu_uuid[16];
239
76e30d0f
JK
240static QEMUBootSetHandler *boot_set_handler;
241static void *boot_set_opaque;
242
d745bef8
BS
243int kvm_allowed = 0;
244uint32_t xen_domid;
245enum xen_mode xen_mode = XEN_EMULATE;
246
998bbd74 247static int default_serial = 1;
6a5e8b0e 248static int default_parallel = 1;
986c5f78 249static int default_virtcon = 1;
abdeed06 250static int default_monitor = 1;
64465297 251static int default_vga = 1;
ac33f8fa
GH
252static int default_floppy = 1;
253static int default_cdrom = 1;
254static int default_sdcard = 1;
998bbd74
GH
255
256static struct {
257 const char *driver;
258 int *flag;
259} default_list[] = {
6a5e8b0e
GH
260 { .driver = "isa-serial", .flag = &default_serial },
261 { .driver = "isa-parallel", .flag = &default_parallel },
d8bcbabf
GH
262 { .driver = "isa-fdc", .flag = &default_floppy },
263 { .driver = "ide-drive", .flag = &default_cdrom },
392ecf54
AS
264 { .driver = "virtio-serial-pci", .flag = &default_virtcon },
265 { .driver = "virtio-serial-s390", .flag = &default_virtcon },
266 { .driver = "virtio-serial", .flag = &default_virtcon },
64465297 267 { .driver = "VGA", .flag = &default_vga },
69fd02ee
GH
268 { .driver = "cirrus-vga", .flag = &default_vga },
269 { .driver = "vmware-svga", .flag = &default_vga },
998bbd74
GH
270};
271
272static int default_driver_check(QemuOpts *opts, void *opaque)
273{
274 const char *driver = qemu_opt_get(opts, "driver");
275 int i;
276
277 if (!driver)
278 return 0;
279 for (i = 0; i < ARRAY_SIZE(default_list); i++) {
280 if (strcmp(default_list[i].driver, driver) != 0)
281 continue;
282 *(default_list[i].flag) = 0;
283 }
284 return 0;
285}
286
0824d6fc 287/***********************************************************/
0824d6fc 288
1889465a
AK
289static void set_proc_name(const char *s)
290{
6ca8d0fd 291#if defined(__linux__) && defined(PR_SET_NAME)
1889465a
AK
292 char name[16];
293 if (!s)
294 return;
295 name[sizeof(name) - 1] = 0;
296 strncpy(name, s, sizeof(name));
297 /* Could rewrite argv[0] too, but that's a bit more complicated.
298 This simple way is enough for `top'. */
299 prctl(PR_SET_NAME, name);
300#endif
301}
df751fa8 302
8f0056b7
PB
303/***********************************************************/
304/* real time host monotonic timer */
09b26c5e 305
1dce7c3c
FB
306/* compute with 96 bit intermediate result: (a*b)/c */
307uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c)
0824d6fc 308{
1dce7c3c
FB
309 union {
310 uint64_t ll;
311 struct {
e2542fe2 312#ifdef HOST_WORDS_BIGENDIAN
1dce7c3c
FB
313 uint32_t high, low;
314#else
315 uint32_t low, high;
3b46e624 316#endif
1dce7c3c
FB
317 } l;
318 } u, res;
319 uint64_t rl, rh;
0824d6fc 320
1dce7c3c
FB
321 u.ll = a;
322 rl = (uint64_t)u.l.low * (uint64_t)b;
323 rh = (uint64_t)u.l.high * (uint64_t)b;
324 rh += (rl >> 32);
325 res.l.high = rh / c;
326 res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c;
327 return res.ll;
34865134
FB
328}
329
f6503059
AZ
330/***********************************************************/
331/* host time/date access */
332void qemu_get_timedate(struct tm *tm, int offset)
333{
334 time_t ti;
335 struct tm *ret;
336
337 time(&ti);
338 ti += offset;
339 if (rtc_date_offset == -1) {
340 if (rtc_utc)
341 ret = gmtime(&ti);
342 else
343 ret = localtime(&ti);
344 } else {
345 ti -= rtc_date_offset;
346 ret = gmtime(&ti);
347 }
348
349 memcpy(tm, ret, sizeof(struct tm));
350}
351
352int qemu_timedate_diff(struct tm *tm)
353{
354 time_t seconds;
355
356 if (rtc_date_offset == -1)
357 if (rtc_utc)
358 seconds = mktimegm(tm);
359 else
360 seconds = mktime(tm);
361 else
362 seconds = mktimegm(tm) + rtc_date_offset;
363
364 return seconds - time(NULL);
365}
366
80cd3478
LC
367void rtc_change_mon_event(struct tm *tm)
368{
369 QObject *data;
370
371 data = qobject_from_jsonf("{ 'offset': %d }", qemu_timedate_diff(tm));
372 monitor_protocol_event(QEVENT_RTC_CHANGE, data);
373 qobject_decref(data);
374}
375
1ed2fc1f
JK
376static void configure_rtc_date_offset(const char *startdate, int legacy)
377{
378 time_t rtc_start_date;
379 struct tm tm;
380
381 if (!strcmp(startdate, "now") && legacy) {
382 rtc_date_offset = -1;
383 } else {
384 if (sscanf(startdate, "%d-%d-%dT%d:%d:%d",
385 &tm.tm_year,
386 &tm.tm_mon,
387 &tm.tm_mday,
388 &tm.tm_hour,
389 &tm.tm_min,
390 &tm.tm_sec) == 6) {
391 /* OK */
392 } else if (sscanf(startdate, "%d-%d-%d",
393 &tm.tm_year,
394 &tm.tm_mon,
395 &tm.tm_mday) == 3) {
396 tm.tm_hour = 0;
397 tm.tm_min = 0;
398 tm.tm_sec = 0;
399 } else {
400 goto date_fail;
401 }
402 tm.tm_year -= 1900;
403 tm.tm_mon--;
404 rtc_start_date = mktimegm(&tm);
405 if (rtc_start_date == -1) {
406 date_fail:
407 fprintf(stderr, "Invalid date format. Valid formats are:\n"
408 "'2006-06-17T16:01:21' or '2006-06-17'\n");
409 exit(1);
410 }
411 rtc_date_offset = time(NULL) - rtc_start_date;
412 }
413}
414
415static void configure_rtc(QemuOpts *opts)
416{
417 const char *value;
418
419 value = qemu_opt_get(opts, "base");
420 if (value) {
421 if (!strcmp(value, "utc")) {
422 rtc_utc = 1;
423 } else if (!strcmp(value, "localtime")) {
424 rtc_utc = 0;
425 } else {
426 configure_rtc_date_offset(value, 0);
427 }
428 }
6875204c
JK
429 value = qemu_opt_get(opts, "clock");
430 if (value) {
431 if (!strcmp(value, "host")) {
432 rtc_clock = host_clock;
433 } else if (!strcmp(value, "vm")) {
434 rtc_clock = vm_clock;
435 } else {
436 fprintf(stderr, "qemu: invalid option value '%s'\n", value);
437 exit(1);
438 }
439 }
1ed2fc1f
JK
440 value = qemu_opt_get(opts, "driftfix");
441 if (value) {
7e4c0336 442 if (!strcmp(value, "slew")) {
1ed2fc1f 443 rtc_td_hack = 1;
7e4c0336 444 } else if (!strcmp(value, "none")) {
1ed2fc1f
JK
445 rtc_td_hack = 0;
446 } else {
447 fprintf(stderr, "qemu: invalid option value '%s'\n", value);
448 exit(1);
449 }
450 }
1ed2fc1f
JK
451}
452
1ae26a18
AZ
453/***********************************************************/
454/* Bluetooth support */
455static int nb_hcis;
456static int cur_hci;
457static struct HCIInfo *hci_table[MAX_NICS];
dc72ac14 458
1ae26a18
AZ
459static struct bt_vlan_s {
460 struct bt_scatternet_s net;
461 int id;
462 struct bt_vlan_s *next;
463} *first_bt_vlan;
464
465/* find or alloc a new bluetooth "VLAN" */
674bb261 466static struct bt_scatternet_s *qemu_find_bt_vlan(int id)
1ae26a18
AZ
467{
468 struct bt_vlan_s **pvlan, *vlan;
469 for (vlan = first_bt_vlan; vlan != NULL; vlan = vlan->next) {
470 if (vlan->id == id)
471 return &vlan->net;
472 }
473 vlan = qemu_mallocz(sizeof(struct bt_vlan_s));
474 vlan->id = id;
475 pvlan = &first_bt_vlan;
476 while (*pvlan != NULL)
477 pvlan = &(*pvlan)->next;
478 *pvlan = vlan;
479 return &vlan->net;
480}
481
482static void null_hci_send(struct HCIInfo *hci, const uint8_t *data, int len)
483{
484}
485
486static int null_hci_addr_set(struct HCIInfo *hci, const uint8_t *bd_addr)
487{
488 return -ENOTSUP;
489}
490
491static struct HCIInfo null_hci = {
492 .cmd_send = null_hci_send,
493 .sco_send = null_hci_send,
494 .acl_send = null_hci_send,
495 .bdaddr_set = null_hci_addr_set,
496};
497
498struct HCIInfo *qemu_next_hci(void)
499{
500 if (cur_hci == nb_hcis)
501 return &null_hci;
502
503 return hci_table[cur_hci++];
504}
505
dc72ac14
AZ
506static struct HCIInfo *hci_init(const char *str)
507{
508 char *endp;
509 struct bt_scatternet_s *vlan = 0;
510
511 if (!strcmp(str, "null"))
512 /* null */
513 return &null_hci;
514 else if (!strncmp(str, "host", 4) && (str[4] == '\0' || str[4] == ':'))
515 /* host[:hciN] */
516 return bt_host_hci(str[4] ? str + 5 : "hci0");
517 else if (!strncmp(str, "hci", 3)) {
518 /* hci[,vlan=n] */
519 if (str[3]) {
520 if (!strncmp(str + 3, ",vlan=", 6)) {
521 vlan = qemu_find_bt_vlan(strtol(str + 9, &endp, 0));
522 if (*endp)
523 vlan = 0;
524 }
525 } else
526 vlan = qemu_find_bt_vlan(0);
527 if (vlan)
528 return bt_new_hci(vlan);
529 }
530
531 fprintf(stderr, "qemu: Unknown bluetooth HCI `%s'.\n", str);
532
533 return 0;
534}
535
536static int bt_hci_parse(const char *str)
537{
538 struct HCIInfo *hci;
c227f099 539 bdaddr_t bdaddr;
dc72ac14
AZ
540
541 if (nb_hcis >= MAX_NICS) {
542 fprintf(stderr, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS);
543 return -1;
544 }
545
546 hci = hci_init(str);
547 if (!hci)
548 return -1;
549
550 bdaddr.b[0] = 0x52;
551 bdaddr.b[1] = 0x54;
552 bdaddr.b[2] = 0x00;
553 bdaddr.b[3] = 0x12;
554 bdaddr.b[4] = 0x34;
555 bdaddr.b[5] = 0x56 + nb_hcis;
556 hci->bdaddr_set(hci, bdaddr.b);
557
558 hci_table[nb_hcis++] = hci;
559
560 return 0;
561}
562
563static void bt_vhci_add(int vlan_id)
564{
565 struct bt_scatternet_s *vlan = qemu_find_bt_vlan(vlan_id);
566
567 if (!vlan->slave)
568 fprintf(stderr, "qemu: warning: adding a VHCI to "
569 "an empty scatternet %i\n", vlan_id);
570
571 bt_vhci_init(bt_new_hci(vlan));
572}
573
574static struct bt_device_s *bt_device_add(const char *opt)
575{
576 struct bt_scatternet_s *vlan;
577 int vlan_id = 0;
578 char *endp = strstr(opt, ",vlan=");
579 int len = (endp ? endp - opt : strlen(opt)) + 1;
580 char devname[10];
581
582 pstrcpy(devname, MIN(sizeof(devname), len), opt);
583
584 if (endp) {
585 vlan_id = strtol(endp + 6, &endp, 0);
586 if (*endp) {
587 fprintf(stderr, "qemu: unrecognised bluetooth vlan Id\n");
588 return 0;
589 }
590 }
591
592 vlan = qemu_find_bt_vlan(vlan_id);
593
594 if (!vlan->slave)
595 fprintf(stderr, "qemu: warning: adding a slave device to "
596 "an empty scatternet %i\n", vlan_id);
597
598 if (!strcmp(devname, "keyboard"))
599 return bt_keyboard_init(vlan);
600
601 fprintf(stderr, "qemu: unsupported bluetooth device `%s'\n", devname);
602 return 0;
603}
604
605static int bt_parse(const char *opt)
606{
607 const char *endp, *p;
608 int vlan;
609
610 if (strstart(opt, "hci", &endp)) {
611 if (!*endp || *endp == ',') {
612 if (*endp)
613 if (!strstart(endp, ",vlan=", 0))
614 opt = endp + 1;
615
616 return bt_hci_parse(opt);
617 }
618 } else if (strstart(opt, "vhci", &endp)) {
619 if (!*endp || *endp == ',') {
620 if (*endp) {
621 if (strstart(endp, ",vlan=", &p)) {
622 vlan = strtol(p, (char **) &endp, 0);
623 if (*endp) {
624 fprintf(stderr, "qemu: bad scatternet '%s'\n", p);
625 return 1;
626 }
627 } else {
628 fprintf(stderr, "qemu: bad parameter '%s'\n", endp + 1);
629 return 1;
630 }
631 } else
632 vlan = 0;
633
634 bt_vhci_add(vlan);
635 return 0;
636 }
637 } else if (strstart(opt, "device:", &endp))
638 return !bt_device_add(endp);
639
640 fprintf(stderr, "qemu: bad bluetooth parameter '%s'\n", opt);
641 return 1;
642}
643
1ae26a18
AZ
644/***********************************************************/
645/* QEMU Block devices */
646
609497ab 647#define HD_ALIAS "index=%d,media=disk"
e4bcb14c 648#define CDROM_ALIAS "index=2,media=cdrom"
e4bcb14c 649#define FD_ALIAS "index=%d,if=floppy"
609497ab
AZ
650#define PFLASH_ALIAS "if=pflash"
651#define MTD_ALIAS "if=mtd"
9d413d1d 652#define SD_ALIAS "index=0,if=sd"
e4bcb14c 653
9dfd7c7a 654QemuOpts *drive_add(const char *file, const char *fmt, ...)
e4bcb14c
TS
655{
656 va_list ap;
9dfd7c7a
GH
657 char optstr[1024];
658 QemuOpts *opts;
e4bcb14c 659
e4bcb14c 660 va_start(ap, fmt);
9dfd7c7a 661 vsnprintf(optstr, sizeof(optstr), fmt, ap);
e4bcb14c
TS
662 va_end(ap);
663
8212c64f 664 opts = qemu_opts_parse(&qemu_drive_opts, optstr, 0);
9dfd7c7a 665 if (!opts) {
9dfd7c7a
GH
666 return NULL;
667 }
668 if (file)
669 qemu_opt_set(opts, "file", file);
670 return opts;
b01b1111
AL
671}
672
751c6a17 673DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit)
e4bcb14c 674{
751c6a17 675 DriveInfo *dinfo;
e4bcb14c
TS
676
677 /* seek interface, bus and unit */
678
72cf2d4f 679 QTAILQ_FOREACH(dinfo, &drives, next) {
751c6a17
GH
680 if (dinfo->type == type &&
681 dinfo->bus == bus &&
682 dinfo->unit == unit)
683 return dinfo;
684 }
e4bcb14c 685
751c6a17 686 return NULL;
e4bcb14c
TS
687}
688
2e810b36 689DriveInfo *drive_get_by_id(const char *id)
1dae12e6
GH
690{
691 DriveInfo *dinfo;
692
72cf2d4f 693 QTAILQ_FOREACH(dinfo, &drives, next) {
1dae12e6
GH
694 if (strcmp(id, dinfo->id))
695 continue;
696 return dinfo;
697 }
698 return NULL;
699}
700
f60d39bc 701int drive_get_max_bus(BlockInterfaceType type)
e4bcb14c
TS
702{
703 int max_bus;
751c6a17 704 DriveInfo *dinfo;
e4bcb14c
TS
705
706 max_bus = -1;
72cf2d4f 707 QTAILQ_FOREACH(dinfo, &drives, next) {
751c6a17
GH
708 if(dinfo->type == type &&
709 dinfo->bus > max_bus)
710 max_bus = dinfo->bus;
e4bcb14c
TS
711 }
712 return max_bus;
713}
714
fa879c64
AL
715const char *drive_get_serial(BlockDriverState *bdrv)
716{
751c6a17 717 DriveInfo *dinfo;
fa879c64 718
72cf2d4f 719 QTAILQ_FOREACH(dinfo, &drives, next) {
751c6a17
GH
720 if (dinfo->bdrv == bdrv)
721 return dinfo->serial;
722 }
fa879c64
AL
723
724 return "\0";
725}
726
f7850099
KW
727BlockInterfaceErrorAction drive_get_on_error(
728 BlockDriverState *bdrv, int is_read)
428c5705 729{
751c6a17 730 DriveInfo *dinfo;
428c5705 731
72cf2d4f 732 QTAILQ_FOREACH(dinfo, &drives, next) {
751c6a17 733 if (dinfo->bdrv == bdrv)
e9b2e818 734 return is_read ? dinfo->on_read_error : dinfo->on_write_error;
751c6a17 735 }
428c5705 736
e9b2e818 737 return is_read ? BLOCK_ERR_REPORT : BLOCK_ERR_STOP_ENOSPC;
428c5705
AL
738}
739
a1620fac
AJ
740static void bdrv_format_print(void *opaque, const char *name)
741{
742 fprintf(stderr, " %s", name);
743}
744
56a14938 745void drive_uninit(DriveInfo *dinfo)
b01b1111 746{
56a14938
GH
747 qemu_opts_del(dinfo->opts);
748 bdrv_delete(dinfo->bdrv);
749 QTAILQ_REMOVE(&drives, dinfo, next);
750 qemu_free(dinfo);
b01b1111
AL
751}
752
e9b2e818
KW
753static int parse_block_error_action(const char *buf, int is_read)
754{
755 if (!strcmp(buf, "ignore")) {
756 return BLOCK_ERR_IGNORE;
757 } else if (!is_read && !strcmp(buf, "enospc")) {
758 return BLOCK_ERR_STOP_ENOSPC;
759 } else if (!strcmp(buf, "stop")) {
760 return BLOCK_ERR_STOP_ANY;
761 } else if (!strcmp(buf, "report")) {
762 return BLOCK_ERR_REPORT;
763 } else {
764 fprintf(stderr, "qemu: '%s' invalid %s error action\n",
765 buf, is_read ? "read" : "write");
766 return -1;
767 }
768}
769
9dfd7c7a 770DriveInfo *drive_init(QemuOpts *opts, void *opaque,
751c6a17 771 int *fatal_error)
e4bcb14c 772{
9dfd7c7a
GH
773 const char *buf;
774 const char *file = NULL;
c8522bdf 775 char devname[128];
9dfd7c7a 776 const char *serial;
c8522bdf 777 const char *mediastr = "";
f60d39bc 778 BlockInterfaceType type;
e4bcb14c
TS
779 enum { MEDIA_DISK, MEDIA_CDROM } media;
780 int bus_id, unit_id;
781 int cyls, heads, secs, translation;
1e72d3b7 782 BlockDriver *drv = NULL;
4d73cd3b 783 QEMUMachine *machine = opaque;
e4bcb14c
TS
784 int max_devs;
785 int index;
59f2689d 786 int ro = 0;
763b6084 787 int bdrv_flags = 0;
e9b2e818 788 int on_read_error, on_write_error;
c2cc47a4 789 const char *devaddr;
751c6a17 790 DriveInfo *dinfo;
9dfd7c7a 791 int snapshot = 0;
236f1f67 792 int ret;
e4bcb14c 793
9dfd7c7a 794 *fatal_error = 1;
e4bcb14c 795
e4bcb14c 796 translation = BIOS_ATA_TRANSLATION_AUTO;
e4bcb14c 797
4d007814 798 if (machine && machine->use_scsi) {
f60d39bc 799 type = IF_SCSI;
e4bcb14c 800 max_devs = MAX_SCSI_DEVS;
363a37d5 801 pstrcpy(devname, sizeof(devname), "scsi");
e4bcb14c 802 } else {
f60d39bc 803 type = IF_IDE;
e4bcb14c 804 max_devs = MAX_IDE_DEVS;
363a37d5 805 pstrcpy(devname, sizeof(devname), "ide");
e4bcb14c
TS
806 }
807 media = MEDIA_DISK;
808
809 /* extract parameters */
9dfd7c7a
GH
810 bus_id = qemu_opt_get_number(opts, "bus", 0);
811 unit_id = qemu_opt_get_number(opts, "unit", -1);
812 index = qemu_opt_get_number(opts, "index", -1);
e4bcb14c 813
9dfd7c7a
GH
814 cyls = qemu_opt_get_number(opts, "cyls", 0);
815 heads = qemu_opt_get_number(opts, "heads", 0);
816 secs = qemu_opt_get_number(opts, "secs", 0);
e4bcb14c 817
9dfd7c7a 818 snapshot = qemu_opt_get_bool(opts, "snapshot", 0);
59f2689d 819 ro = qemu_opt_get_bool(opts, "readonly", 0);
e4bcb14c 820
9dfd7c7a
GH
821 file = qemu_opt_get(opts, "file");
822 serial = qemu_opt_get(opts, "serial");
823
824 if ((buf = qemu_opt_get(opts, "if")) != NULL) {
ae45d369 825 pstrcpy(devname, sizeof(devname), buf);
e4bcb14c 826 if (!strcmp(buf, "ide")) {
f60d39bc 827 type = IF_IDE;
e4bcb14c
TS
828 max_devs = MAX_IDE_DEVS;
829 } else if (!strcmp(buf, "scsi")) {
f60d39bc 830 type = IF_SCSI;
e4bcb14c
TS
831 max_devs = MAX_SCSI_DEVS;
832 } else if (!strcmp(buf, "floppy")) {
f60d39bc 833 type = IF_FLOPPY;
e4bcb14c
TS
834 max_devs = 0;
835 } else if (!strcmp(buf, "pflash")) {
f60d39bc 836 type = IF_PFLASH;
e4bcb14c
TS
837 max_devs = 0;
838 } else if (!strcmp(buf, "mtd")) {
f60d39bc 839 type = IF_MTD;
e4bcb14c
TS
840 max_devs = 0;
841 } else if (!strcmp(buf, "sd")) {
f60d39bc 842 type = IF_SD;
e4bcb14c 843 max_devs = 0;
6e02c38d
AL
844 } else if (!strcmp(buf, "virtio")) {
845 type = IF_VIRTIO;
846 max_devs = 0;
62d23efa
AL
847 } else if (!strcmp(buf, "xen")) {
848 type = IF_XEN;
849 max_devs = 0;
a8659e90
GH
850 } else if (!strcmp(buf, "none")) {
851 type = IF_NONE;
852 max_devs = 0;
62d23efa 853 } else {
9dfd7c7a 854 fprintf(stderr, "qemu: unsupported bus type '%s'\n", buf);
751c6a17 855 return NULL;
e4bcb14c
TS
856 }
857 }
858
e4bcb14c 859 if (cyls || heads || secs) {
5afe3f04 860 if (cyls < 1 || (type == IF_IDE && cyls > 16383)) {
9dfd7c7a 861 fprintf(stderr, "qemu: '%s' invalid physical cyls number\n", buf);
751c6a17 862 return NULL;
e4bcb14c 863 }
5afe3f04 864 if (heads < 1 || (type == IF_IDE && heads > 16)) {
9dfd7c7a 865 fprintf(stderr, "qemu: '%s' invalid physical heads number\n", buf);
751c6a17 866 return NULL;
e4bcb14c 867 }
5afe3f04 868 if (secs < 1 || (type == IF_IDE && secs > 63)) {
9dfd7c7a 869 fprintf(stderr, "qemu: '%s' invalid physical secs number\n", buf);
751c6a17 870 return NULL;
e4bcb14c
TS
871 }
872 }
873
9dfd7c7a 874 if ((buf = qemu_opt_get(opts, "trans")) != NULL) {
e4bcb14c
TS
875 if (!cyls) {
876 fprintf(stderr,
877 "qemu: '%s' trans must be used with cyls,heads and secs\n",
9dfd7c7a 878 buf);
751c6a17 879 return NULL;
e4bcb14c
TS
880 }
881 if (!strcmp(buf, "none"))
882 translation = BIOS_ATA_TRANSLATION_NONE;
883 else if (!strcmp(buf, "lba"))
884 translation = BIOS_ATA_TRANSLATION_LBA;
885 else if (!strcmp(buf, "auto"))
886 translation = BIOS_ATA_TRANSLATION_AUTO;
887 else {
9dfd7c7a 888 fprintf(stderr, "qemu: '%s' invalid translation type\n", buf);
751c6a17 889 return NULL;
e4bcb14c
TS
890 }
891 }
892
9dfd7c7a 893 if ((buf = qemu_opt_get(opts, "media")) != NULL) {
e4bcb14c
TS
894 if (!strcmp(buf, "disk")) {
895 media = MEDIA_DISK;
896 } else if (!strcmp(buf, "cdrom")) {
897 if (cyls || secs || heads) {
898 fprintf(stderr,
9dfd7c7a 899 "qemu: '%s' invalid physical CHS format\n", buf);
751c6a17 900 return NULL;
e4bcb14c
TS
901 }
902 media = MEDIA_CDROM;
903 } else {
9dfd7c7a 904 fprintf(stderr, "qemu: '%s' invalid media\n", buf);
751c6a17 905 return NULL;
e4bcb14c
TS
906 }
907 }
908
9dfd7c7a 909 if ((buf = qemu_opt_get(opts, "cache")) != NULL) {
763b6084
CH
910 if (!strcmp(buf, "off") || !strcmp(buf, "none")) {
911 bdrv_flags |= BDRV_O_NOCACHE;
912 } else if (!strcmp(buf, "writeback")) {
913 bdrv_flags |= BDRV_O_CACHE_WB;
016f5cf6
AG
914 } else if (!strcmp(buf, "unsafe")) {
915 bdrv_flags |= BDRV_O_CACHE_WB;
916 bdrv_flags |= BDRV_O_NO_FLUSH;
763b6084
CH
917 } else if (!strcmp(buf, "writethrough")) {
918 /* this is the default */
919 } else {
33f00271 920 fprintf(stderr, "qemu: invalid cache option\n");
751c6a17 921 return NULL;
33f00271
AZ
922 }
923 }
924
5c6c3a6c
CH
925#ifdef CONFIG_LINUX_AIO
926 if ((buf = qemu_opt_get(opts, "aio")) != NULL) {
763b6084
CH
927 if (!strcmp(buf, "native")) {
928 bdrv_flags |= BDRV_O_NATIVE_AIO;
929 } else if (!strcmp(buf, "threads")) {
930 /* this is the default */
931 } else {
5c6c3a6c
CH
932 fprintf(stderr, "qemu: invalid aio option\n");
933 return NULL;
934 }
935 }
936#endif
937
9dfd7c7a 938 if ((buf = qemu_opt_get(opts, "format")) != NULL) {
a1620fac
AJ
939 if (strcmp(buf, "?") == 0) {
940 fprintf(stderr, "qemu: Supported formats:");
941 bdrv_iterate_format(bdrv_format_print, NULL);
942 fprintf(stderr, "\n");
751c6a17 943 return NULL;
a1620fac 944 }
eb852011 945 drv = bdrv_find_whitelisted_format(buf);
1e72d3b7
AJ
946 if (!drv) {
947 fprintf(stderr, "qemu: '%s' invalid format\n", buf);
751c6a17 948 return NULL;
1e72d3b7
AJ
949 }
950 }
951
e9b2e818 952 on_write_error = BLOCK_ERR_STOP_ENOSPC;
9dfd7c7a 953 if ((buf = qemu_opt_get(opts, "werror")) != NULL) {
dc33bb34 954 if (type != IF_IDE && type != IF_SCSI && type != IF_VIRTIO && type != IF_NONE) {
ea8a5d7f 955 fprintf(stderr, "werror is no supported by this format\n");
751c6a17 956 return NULL;
428c5705 957 }
e9b2e818
KW
958
959 on_write_error = parse_block_error_action(buf, 0);
960 if (on_write_error < 0) {
961 return NULL;
962 }
963 }
964
965 on_read_error = BLOCK_ERR_REPORT;
966 if ((buf = qemu_opt_get(opts, "rerror")) != NULL) {
dc33bb34 967 if (type != IF_IDE && type != IF_VIRTIO && type != IF_NONE) {
e9b2e818
KW
968 fprintf(stderr, "rerror is no supported by this format\n");
969 return NULL;
970 }
971
972 on_read_error = parse_block_error_action(buf, 1);
973 if (on_read_error < 0) {
751c6a17 974 return NULL;
428c5705
AL
975 }
976 }
977
9dfd7c7a 978 if ((devaddr = qemu_opt_get(opts, "addr")) != NULL) {
c2cc47a4 979 if (type != IF_VIRTIO) {
9dfd7c7a 980 fprintf(stderr, "addr is not supported\n");
751c6a17 981 return NULL;
c2cc47a4 982 }
c2cc47a4
MA
983 }
984
e4bcb14c
TS
985 /* compute bus and unit according index */
986
987 if (index != -1) {
988 if (bus_id != 0 || unit_id != -1) {
989 fprintf(stderr,
9dfd7c7a 990 "qemu: index cannot be used with bus and unit\n");
751c6a17 991 return NULL;
e4bcb14c
TS
992 }
993 if (max_devs == 0)
994 {
995 unit_id = index;
996 bus_id = 0;
997 } else {
998 unit_id = index % max_devs;
999 bus_id = index / max_devs;
1000 }
1001 }
1002
1003 /* if user doesn't specify a unit_id,
1004 * try to find the first free
1005 */
1006
1007 if (unit_id == -1) {
1008 unit_id = 0;
751c6a17 1009 while (drive_get(type, bus_id, unit_id) != NULL) {
e4bcb14c
TS
1010 unit_id++;
1011 if (max_devs && unit_id >= max_devs) {
1012 unit_id -= max_devs;
1013 bus_id++;
1014 }
1015 }
1016 }
1017
1018 /* check unit id */
1019
1020 if (max_devs && unit_id >= max_devs) {
9dfd7c7a
GH
1021 fprintf(stderr, "qemu: unit %d too big (max is %d)\n",
1022 unit_id, max_devs - 1);
751c6a17 1023 return NULL;
e4bcb14c
TS
1024 }
1025
1026 /*
1027 * ignore multiple definitions
1028 */
1029
751c6a17
GH
1030 if (drive_get(type, bus_id, unit_id) != NULL) {
1031 *fatal_error = 0;
1032 return NULL;
1033 }
e4bcb14c
TS
1034
1035 /* init */
1036
751c6a17 1037 dinfo = qemu_mallocz(sizeof(*dinfo));
e23d9c4d 1038 if ((buf = qemu_opts_id(opts)) != NULL) {
9dfd7c7a
GH
1039 dinfo->id = qemu_strdup(buf);
1040 } else {
1dae12e6 1041 /* no id supplied -> create one */
9dfd7c7a 1042 dinfo->id = qemu_mallocz(32);
1dae12e6
GH
1043 if (type == IF_IDE || type == IF_SCSI)
1044 mediastr = (media == MEDIA_CDROM) ? "-cd" : "-hd";
1045 if (max_devs)
9dfd7c7a 1046 snprintf(dinfo->id, 32, "%s%i%s%i",
1dae12e6
GH
1047 devname, bus_id, mediastr, unit_id);
1048 else
9dfd7c7a 1049 snprintf(dinfo->id, 32, "%s%s%i",
1dae12e6
GH
1050 devname, mediastr, unit_id);
1051 }
1dae12e6 1052 dinfo->bdrv = bdrv_new(dinfo->id);
751c6a17
GH
1053 dinfo->devaddr = devaddr;
1054 dinfo->type = type;
1055 dinfo->bus = bus_id;
1056 dinfo->unit = unit_id;
e9b2e818
KW
1057 dinfo->on_read_error = on_read_error;
1058 dinfo->on_write_error = on_write_error;
9dfd7c7a
GH
1059 dinfo->opts = opts;
1060 if (serial)
1061 strncpy(dinfo->serial, serial, sizeof(serial));
72cf2d4f 1062 QTAILQ_INSERT_TAIL(&drives, dinfo, next);
e4bcb14c 1063
f60d39bc 1064 switch(type) {
e4bcb14c
TS
1065 case IF_IDE:
1066 case IF_SCSI:
62d23efa 1067 case IF_XEN:
c219331e 1068 case IF_NONE:
e4bcb14c
TS
1069 switch(media) {
1070 case MEDIA_DISK:
1071 if (cyls != 0) {
1dae12e6
GH
1072 bdrv_set_geometry_hint(dinfo->bdrv, cyls, heads, secs);
1073 bdrv_set_translation_hint(dinfo->bdrv, translation);
e4bcb14c
TS
1074 }
1075 break;
1076 case MEDIA_CDROM:
1dae12e6 1077 bdrv_set_type_hint(dinfo->bdrv, BDRV_TYPE_CDROM);
e4bcb14c
TS
1078 break;
1079 }
1080 break;
1081 case IF_SD:
1082 /* FIXME: This isn't really a floppy, but it's a reasonable
1083 approximation. */
1084 case IF_FLOPPY:
1dae12e6 1085 bdrv_set_type_hint(dinfo->bdrv, BDRV_TYPE_FLOPPY);
e4bcb14c
TS
1086 break;
1087 case IF_PFLASH:
1088 case IF_MTD:
1089 break;
d176c495
GH
1090 case IF_VIRTIO:
1091 /* add virtio block device */
1092 opts = qemu_opts_create(&qemu_device_opts, NULL, 0);
1093 qemu_opt_set(opts, "driver", "virtio-blk-pci");
1094 qemu_opt_set(opts, "drive", dinfo->id);
1095 if (devaddr)
1096 qemu_opt_set(opts, "addr", devaddr);
1097 break;
aae9460e
PB
1098 case IF_COUNT:
1099 abort();
e4bcb14c 1100 }
9dfd7c7a 1101 if (!file) {
751c6a17
GH
1102 *fatal_error = 0;
1103 return NULL;
1104 }
9f7965c7 1105 if (snapshot) {
c3177288 1106 /* always use cache=unsafe with snapshot */
763b6084 1107 bdrv_flags &= ~BDRV_O_CACHE_MASK;
c3177288 1108 bdrv_flags |= (BDRV_O_SNAPSHOT|BDRV_O_CACHE_WB|BDRV_O_NO_FLUSH);
5c6c3a6c
CH
1109 }
1110
2db7ad59
NS
1111 if (media == MEDIA_CDROM) {
1112 /* CDROM is fine for any interface, don't check. */
1113 ro = 1;
1114 } else if (ro == 1) {
dc33bb34 1115 if (type != IF_SCSI && type != IF_VIRTIO && type != IF_FLOPPY && type != IF_NONE) {
f5edb014 1116 fprintf(stderr, "qemu: readonly flag not supported for drive with this interface\n");
59f2689d
NS
1117 return NULL;
1118 }
b196b153 1119 }
2db7ad59 1120
f5edb014 1121 bdrv_flags |= ro ? 0 : BDRV_O_RDWR;
59f2689d 1122
236f1f67
KW
1123 ret = bdrv_open(dinfo->bdrv, file, bdrv_flags, drv);
1124 if (ret < 0) {
850810d0 1125 fprintf(stderr, "qemu: could not open disk image %s: %s\n",
236f1f67 1126 file, strerror(-ret));
751c6a17 1127 return NULL;
e4bcb14c 1128 }
5c6c3a6c 1129
1dae12e6 1130 if (bdrv_key_required(dinfo->bdrv))
c0f4ce77 1131 autostart = 0;
751c6a17
GH
1132 *fatal_error = 0;
1133 return dinfo;
e4bcb14c
TS
1134}
1135
9dfd7c7a
GH
1136static int drive_init_func(QemuOpts *opts, void *opaque)
1137{
1138 QEMUMachine *machine = opaque;
1139 int fatal_error = 0;
1140
1141 if (drive_init(opts, machine, &fatal_error) == NULL) {
1142 if (fatal_error)
1143 return 1;
1144 }
1145 return 0;
1146}
1147
1148static int drive_enable_snapshot(QemuOpts *opts, void *opaque)
1149{
1150 if (NULL == qemu_opt_get(opts, "snapshot")) {
1151 qemu_opt_set(opts, "snapshot", "on");
1152 }
1153 return 0;
1154}
1155
76e30d0f
JK
1156void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque)
1157{
1158 boot_set_handler = func;
1159 boot_set_opaque = opaque;
1160}
1161
1162int qemu_boot_set(const char *boot_devices)
1163{
1164 if (!boot_set_handler) {
1165 return -EINVAL;
1166 }
1167 return boot_set_handler(boot_set_opaque, boot_devices);
1168}
1169
4e9e9d6e 1170static void validate_bootdevices(char *devices)
ef3adf68
JK
1171{
1172 /* We just do some generic consistency checks */
1173 const char *p;
1174 int bitmap = 0;
1175
1176 for (p = devices; *p != '\0'; p++) {
1177 /* Allowed boot devices are:
1178 * a-b: floppy disk drives
1179 * c-f: IDE disk drives
1180 * g-m: machine implementation dependant drives
1181 * n-p: network devices
1182 * It's up to each machine implementation to check if the given boot
1183 * devices match the actual hardware implementation and firmware
1184 * features.
1185 */
1186 if (*p < 'a' || *p > 'p') {
1187 fprintf(stderr, "Invalid boot device '%c'\n", *p);
1188 exit(1);
1189 }
1190 if (bitmap & (1 << (*p - 'a'))) {
1191 fprintf(stderr, "Boot device '%c' was given twice\n", *p);
1192 exit(1);
1193 }
1194 bitmap |= 1 << (*p - 'a');
1195 }
ef3adf68
JK
1196}
1197
e0f084bf
JK
1198static void restore_boot_devices(void *opaque)
1199{
1200 char *standard_boot_devices = opaque;
37905d6a
AW
1201 static int first = 1;
1202
1203 /* Restore boot order and remove ourselves after the first boot */
1204 if (first) {
1205 first = 0;
1206 return;
1207 }
e0f084bf
JK
1208
1209 qemu_boot_set(standard_boot_devices);
1210
1211 qemu_unregister_reset(restore_boot_devices, standard_boot_devices);
1212 qemu_free(standard_boot_devices);
1213}
1214
268a362c
AL
1215static void numa_add(const char *optarg)
1216{
1217 char option[128];
1218 char *endptr;
1219 unsigned long long value, endvalue;
1220 int nodenr;
1221
1222 optarg = get_opt_name(option, 128, optarg, ',') + 1;
1223 if (!strcmp(option, "node")) {
1224 if (get_param_value(option, 128, "nodeid", optarg) == 0) {
1225 nodenr = nb_numa_nodes;
1226 } else {
1227 nodenr = strtoull(option, NULL, 10);
1228 }
1229
1230 if (get_param_value(option, 128, "mem", optarg) == 0) {
1231 node_mem[nodenr] = 0;
1232 } else {
1233 value = strtoull(option, &endptr, 0);
1234 switch (*endptr) {
1235 case 0: case 'M': case 'm':
1236 value <<= 20;
1237 break;
1238 case 'G': case 'g':
1239 value <<= 30;
1240 break;
1241 }
1242 node_mem[nodenr] = value;
1243 }
1244 if (get_param_value(option, 128, "cpus", optarg) == 0) {
1245 node_cpumask[nodenr] = 0;
1246 } else {
1247 value = strtoull(option, &endptr, 10);
1248 if (value >= 64) {
1249 value = 63;
1250 fprintf(stderr, "only 64 CPUs in NUMA mode supported.\n");
1251 } else {
1252 if (*endptr == '-') {
1253 endvalue = strtoull(endptr+1, &endptr, 10);
1254 if (endvalue >= 63) {
1255 endvalue = 62;
1256 fprintf(stderr,
1257 "only 63 CPUs in NUMA mode supported.\n");
1258 }
0dfbd514 1259 value = (2ULL << endvalue) - (1ULL << value);
268a362c 1260 } else {
0dfbd514 1261 value = 1ULL << value;
268a362c
AL
1262 }
1263 }
1264 node_cpumask[nodenr] = value;
1265 }
1266 nb_numa_nodes++;
1267 }
1268 return;
1269}
1270
dc6b1c09
AP
1271static void smp_parse(const char *optarg)
1272{
1273 int smp, sockets = 0, threads = 0, cores = 0;
1274 char *endptr;
1275 char option[128];
1276
1277 smp = strtoul(optarg, &endptr, 10);
1278 if (endptr != optarg) {
1279 if (*endptr == ',') {
1280 endptr++;
1281 }
1282 }
1283 if (get_param_value(option, 128, "sockets", endptr) != 0)
1284 sockets = strtoull(option, NULL, 10);
1285 if (get_param_value(option, 128, "cores", endptr) != 0)
1286 cores = strtoull(option, NULL, 10);
1287 if (get_param_value(option, 128, "threads", endptr) != 0)
1288 threads = strtoull(option, NULL, 10);
1289 if (get_param_value(option, 128, "maxcpus", endptr) != 0)
1290 max_cpus = strtoull(option, NULL, 10);
1291
1292 /* compute missing values, prefer sockets over cores over threads */
1293 if (smp == 0 || sockets == 0) {
1294 sockets = sockets > 0 ? sockets : 1;
1295 cores = cores > 0 ? cores : 1;
1296 threads = threads > 0 ? threads : 1;
1297 if (smp == 0) {
1298 smp = cores * threads * sockets;
dc6b1c09
AP
1299 }
1300 } else {
1301 if (cores == 0) {
1302 threads = threads > 0 ? threads : 1;
1303 cores = smp / (sockets * threads);
1304 } else {
5cdc9b76 1305 if (sockets) {
dc6b1c09
AP
1306 threads = smp / (cores * sockets);
1307 }
1308 }
1309 }
1310 smp_cpus = smp;
1311 smp_cores = cores > 0 ? cores : 1;
1312 smp_threads = threads > 0 ? threads : 1;
1313 if (max_cpus == 0)
1314 max_cpus = smp_cpus;
1315}
1316
a594cfbf
FB
1317/***********************************************************/
1318/* USB devices */
1319
fb08000c 1320static int usb_device_add(const char *devname)
a594cfbf
FB
1321{
1322 const char *p;
a5d2f727 1323 USBDevice *dev = NULL;
a594cfbf 1324
a5d2f727 1325 if (!usb_enabled)
a594cfbf
FB
1326 return -1;
1327
0958b4cc
GH
1328 /* drivers with .usbdevice_name entry in USBDeviceInfo */
1329 dev = usbdevice_create(devname);
1330 if (dev)
1331 goto done;
1332
a5d2f727 1333 /* the other ones */
a594cfbf
FB
1334 if (strstart(devname, "host:", &p)) {
1335 dev = usb_host_device_open(p);
dc72ac14
AZ
1336 } else if (!strcmp(devname, "bt") || strstart(devname, "bt:", &p)) {
1337 dev = usb_bt_init(devname[2] ? hci_init(p) :
1338 bt_new_hci(qemu_find_bt_vlan(0)));
a594cfbf
FB
1339 } else {
1340 return -1;
1341 }
0d92ed30
PB
1342 if (!dev)
1343 return -1;
1344
a5d2f727 1345done:
a594cfbf
FB
1346 return 0;
1347}
1348
1f3870ab
AL
1349static int usb_device_del(const char *devname)
1350{
1351 int bus_num, addr;
1352 const char *p;
1353
5d0c5750
AL
1354 if (strstart(devname, "host:", &p))
1355 return usb_host_device_close(p);
1356
a5d2f727 1357 if (!usb_enabled)
1f3870ab
AL
1358 return -1;
1359
1360 p = strchr(devname, '.');
1361 if (!p)
1362 return -1;
1363 bus_num = strtoul(devname, NULL, 0);
1364 addr = strtoul(p + 1, NULL, 0);
1365
a5d2f727 1366 return usb_device_delete_addr(bus_num, addr);
1f3870ab
AL
1367}
1368
bd3c948d
GH
1369static int usb_parse(const char *cmdline)
1370{
59d1c1c2 1371 int r;
fb08000c 1372 r = usb_device_add(cmdline);
59d1c1c2
ST
1373 if (r < 0) {
1374 fprintf(stderr, "qemu: could not add USB device '%s'\n", cmdline);
1375 }
1376 return r;
bd3c948d
GH
1377}
1378
d54908a5 1379void do_usb_add(Monitor *mon, const QDict *qdict)
a594cfbf 1380{
59d1c1c2 1381 const char *devname = qdict_get_str(qdict, "devname");
fb08000c 1382 if (usb_device_add(devname) < 0) {
1ecda02b 1383 error_report("could not add USB device '%s'", devname);
59d1c1c2 1384 }
a594cfbf
FB
1385}
1386
d54908a5 1387void do_usb_del(Monitor *mon, const QDict *qdict)
a594cfbf 1388{
59d1c1c2
ST
1389 const char *devname = qdict_get_str(qdict, "devname");
1390 if (usb_device_del(devname) < 0) {
1ecda02b 1391 error_report("could not delete USB device '%s'", devname);
59d1c1c2 1392 }
a594cfbf
FB
1393}
1394
201a51fc
AZ
1395/***********************************************************/
1396/* PCMCIA/Cardbus */
1397
1398static struct pcmcia_socket_entry_s {
bc24a225 1399 PCMCIASocket *socket;
201a51fc
AZ
1400 struct pcmcia_socket_entry_s *next;
1401} *pcmcia_sockets = 0;
1402
bc24a225 1403void pcmcia_socket_register(PCMCIASocket *socket)
201a51fc
AZ
1404{
1405 struct pcmcia_socket_entry_s *entry;
1406
1407 entry = qemu_malloc(sizeof(struct pcmcia_socket_entry_s));
1408 entry->socket = socket;
1409 entry->next = pcmcia_sockets;
1410 pcmcia_sockets = entry;
1411}
1412
bc24a225 1413void pcmcia_socket_unregister(PCMCIASocket *socket)
201a51fc
AZ
1414{
1415 struct pcmcia_socket_entry_s *entry, **ptr;
1416
1417 ptr = &pcmcia_sockets;
1418 for (entry = *ptr; entry; ptr = &entry->next, entry = *ptr)
1419 if (entry->socket == socket) {
1420 *ptr = entry->next;
1421 qemu_free(entry);
1422 }
1423}
1424
376253ec 1425void pcmcia_info(Monitor *mon)
201a51fc
AZ
1426{
1427 struct pcmcia_socket_entry_s *iter;
376253ec 1428
201a51fc 1429 if (!pcmcia_sockets)
376253ec 1430 monitor_printf(mon, "No PCMCIA sockets\n");
201a51fc
AZ
1431
1432 for (iter = pcmcia_sockets; iter; iter = iter->next)
376253ec
AL
1433 monitor_printf(mon, "%s: %s\n", iter->socket->slot_string,
1434 iter->socket->attached ? iter->socket->card_string :
1435 "Empty");
201a51fc
AZ
1436}
1437
2ff89790 1438/***********************************************************/
8a7ddc38 1439/* I/O handling */
0824d6fc 1440
c4b1fcc0
FB
1441typedef struct IOHandlerRecord {
1442 int fd;
7b27a769 1443 IOCanReadHandler *fd_read_poll;
7c9d8e07
FB
1444 IOHandler *fd_read;
1445 IOHandler *fd_write;
cafffd40 1446 int deleted;
c4b1fcc0
FB
1447 void *opaque;
1448 /* temporary data */
1449 struct pollfd *ufd;
31d4ee6c 1450 QLIST_ENTRY(IOHandlerRecord) next;
c4b1fcc0
FB
1451} IOHandlerRecord;
1452
31d4ee6c
JQ
1453static QLIST_HEAD(, IOHandlerRecord) io_handlers =
1454 QLIST_HEAD_INITIALIZER(io_handlers);
1455
c4b1fcc0 1456
7c9d8e07
FB
1457/* XXX: fd_read_poll should be suppressed, but an API change is
1458 necessary in the character devices to suppress fd_can_read(). */
5fafdf24 1459int qemu_set_fd_handler2(int fd,
7b27a769 1460 IOCanReadHandler *fd_read_poll,
5fafdf24
TS
1461 IOHandler *fd_read,
1462 IOHandler *fd_write,
7c9d8e07 1463 void *opaque)
c4b1fcc0 1464{
31d4ee6c 1465 IOHandlerRecord *ioh;
c4b1fcc0 1466
7c9d8e07 1467 if (!fd_read && !fd_write) {
31d4ee6c 1468 QLIST_FOREACH(ioh, &io_handlers, next) {
7c9d8e07 1469 if (ioh->fd == fd) {
cafffd40 1470 ioh->deleted = 1;
7c9d8e07
FB
1471 break;
1472 }
7c9d8e07
FB
1473 }
1474 } else {
31d4ee6c 1475 QLIST_FOREACH(ioh, &io_handlers, next) {
7c9d8e07
FB
1476 if (ioh->fd == fd)
1477 goto found;
1478 }
1479 ioh = qemu_mallocz(sizeof(IOHandlerRecord));
31d4ee6c 1480 QLIST_INSERT_HEAD(&io_handlers, ioh, next);
7c9d8e07
FB
1481 found:
1482 ioh->fd = fd;
1483 ioh->fd_read_poll = fd_read_poll;
1484 ioh->fd_read = fd_read;
1485 ioh->fd_write = fd_write;
1486 ioh->opaque = opaque;
cafffd40 1487 ioh->deleted = 0;
7c9d8e07 1488 }
c4b1fcc0
FB
1489 return 0;
1490}
1491
5fafdf24
TS
1492int qemu_set_fd_handler(int fd,
1493 IOHandler *fd_read,
1494 IOHandler *fd_write,
7c9d8e07 1495 void *opaque)
8a7ddc38 1496{
7c9d8e07 1497 return qemu_set_fd_handler2(fd, NULL, fd_read, fd_write, opaque);
8a7ddc38
FB
1498}
1499
56f3a5d0 1500#ifdef _WIN32
f331110f
FB
1501/***********************************************************/
1502/* Polling handling */
1503
1504typedef struct PollingEntry {
1505 PollingFunc *func;
1506 void *opaque;
1507 struct PollingEntry *next;
1508} PollingEntry;
1509
1510static PollingEntry *first_polling_entry;
1511
1512int qemu_add_polling_cb(PollingFunc *func, void *opaque)
1513{
1514 PollingEntry **ppe, *pe;
1515 pe = qemu_mallocz(sizeof(PollingEntry));
f331110f
FB
1516 pe->func = func;
1517 pe->opaque = opaque;
1518 for(ppe = &first_polling_entry; *ppe != NULL; ppe = &(*ppe)->next);
1519 *ppe = pe;
1520 return 0;
1521}
1522
1523void qemu_del_polling_cb(PollingFunc *func, void *opaque)
1524{
1525 PollingEntry **ppe, *pe;
1526 for(ppe = &first_polling_entry; *ppe != NULL; ppe = &(*ppe)->next) {
1527 pe = *ppe;
1528 if (pe->func == func && pe->opaque == opaque) {
1529 *ppe = pe->next;
1530 qemu_free(pe);
1531 break;
1532 }
1533 }
1534}
1535
a18e524a
FB
1536/***********************************************************/
1537/* Wait objects support */
1538typedef struct WaitObjects {
1539 int num;
1540 HANDLE events[MAXIMUM_WAIT_OBJECTS + 1];
1541 WaitObjectFunc *func[MAXIMUM_WAIT_OBJECTS + 1];
1542 void *opaque[MAXIMUM_WAIT_OBJECTS + 1];
1543} WaitObjects;
1544
1545static WaitObjects wait_objects = {0};
3b46e624 1546
a18e524a
FB
1547int qemu_add_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
1548{
1549 WaitObjects *w = &wait_objects;
1550
1551 if (w->num >= MAXIMUM_WAIT_OBJECTS)
1552 return -1;
1553 w->events[w->num] = handle;
1554 w->func[w->num] = func;
1555 w->opaque[w->num] = opaque;
1556 w->num++;
1557 return 0;
1558}
1559
1560void qemu_del_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
1561{
1562 int i, found;
1563 WaitObjects *w = &wait_objects;
1564
1565 found = 0;
1566 for (i = 0; i < w->num; i++) {
1567 if (w->events[i] == handle)
1568 found = 1;
1569 if (found) {
1570 w->events[i] = w->events[i + 1];
1571 w->func[i] = w->func[i + 1];
1572 w->opaque[i] = w->opaque[i + 1];
3b46e624 1573 }
a18e524a
FB
1574 }
1575 if (found)
1576 w->num--;
1577}
1578#endif
1579
cc1daa40
FB
1580/***********************************************************/
1581/* machine registration */
1582
bdaf78e0 1583static QEMUMachine *first_machine = NULL;
6f338c34 1584QEMUMachine *current_machine = NULL;
cc1daa40
FB
1585
1586int qemu_register_machine(QEMUMachine *m)
1587{
1588 QEMUMachine **pm;
1589 pm = &first_machine;
1590 while (*pm != NULL)
1591 pm = &(*pm)->next;
1592 m->next = NULL;
1593 *pm = m;
1594 return 0;
1595}
1596
9596ebb7 1597static QEMUMachine *find_machine(const char *name)
cc1daa40
FB
1598{
1599 QEMUMachine *m;
1600
1601 for(m = first_machine; m != NULL; m = m->next) {
1602 if (!strcmp(m->name, name))
1603 return m;
3f6599e6
MM
1604 if (m->alias && !strcmp(m->alias, name))
1605 return m;
cc1daa40
FB
1606 }
1607 return NULL;
1608}
1609
0c257437
AL
1610static QEMUMachine *find_default_machine(void)
1611{
1612 QEMUMachine *m;
1613
1614 for(m = first_machine; m != NULL; m = m->next) {
1615 if (m->is_default) {
1616 return m;
1617 }
1618 }
1619 return NULL;
1620}
1621
8a7ddc38
FB
1622/***********************************************************/
1623/* main execution loop */
1624
9596ebb7 1625static void gui_update(void *opaque)
8a7ddc38 1626{
7d957bd8 1627 uint64_t interval = GUI_REFRESH_INTERVAL;
740733bb 1628 DisplayState *ds = opaque;
7d957bd8
AL
1629 DisplayChangeListener *dcl = ds->listeners;
1630
62a2744c 1631 qemu_flush_coalesced_mmio_buffer();
7d957bd8
AL
1632 dpy_refresh(ds);
1633
1634 while (dcl != NULL) {
1635 if (dcl->gui_timer_interval &&
1636 dcl->gui_timer_interval < interval)
1637 interval = dcl->gui_timer_interval;
1638 dcl = dcl->next;
1639 }
1640 qemu_mod_timer(ds->gui_timer, interval + qemu_get_clock(rt_clock));
8a7ddc38
FB
1641}
1642
9043b62d
BS
1643static void nographic_update(void *opaque)
1644{
1645 uint64_t interval = GUI_REFRESH_INTERVAL;
1646
62a2744c 1647 qemu_flush_coalesced_mmio_buffer();
9043b62d
BS
1648 qemu_mod_timer(nographic_timer, interval + qemu_get_clock(rt_clock));
1649}
1650
0bd48850
FB
1651struct vm_change_state_entry {
1652 VMChangeStateHandler *cb;
1653 void *opaque;
72cf2d4f 1654 QLIST_ENTRY (vm_change_state_entry) entries;
0bd48850
FB
1655};
1656
72cf2d4f 1657static QLIST_HEAD(vm_change_state_head, vm_change_state_entry) vm_change_state_head;
0bd48850
FB
1658
1659VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
1660 void *opaque)
1661{
1662 VMChangeStateEntry *e;
1663
1664 e = qemu_mallocz(sizeof (*e));
0bd48850
FB
1665
1666 e->cb = cb;
1667 e->opaque = opaque;
72cf2d4f 1668 QLIST_INSERT_HEAD(&vm_change_state_head, e, entries);
0bd48850
FB
1669 return e;
1670}
1671
1672void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
1673{
72cf2d4f 1674 QLIST_REMOVE (e, entries);
0bd48850
FB
1675 qemu_free (e);
1676}
1677
296af7c9 1678void vm_state_notify(int running, int reason)
0bd48850
FB
1679{
1680 VMChangeStateEntry *e;
1681
1682 for (e = vm_change_state_head.lh_first; e; e = e->entries.le_next) {
9781e040 1683 e->cb(e->opaque, running, reason);
0bd48850
FB
1684 }
1685}
1686
8a7ddc38
FB
1687void vm_start(void)
1688{
1689 if (!vm_running) {
1690 cpu_enable_ticks();
1691 vm_running = 1;
9781e040 1692 vm_state_notify(1, 0);
d6dc3d42 1693 resume_all_vcpus();
6ed2c484 1694 monitor_protocol_event(QEVENT_RESUME, NULL);
8a7ddc38
FB
1695 }
1696}
1697
bb0c6722
FB
1698/* reset/shutdown handler */
1699
1700typedef struct QEMUResetEntry {
72cf2d4f 1701 QTAILQ_ENTRY(QEMUResetEntry) entry;
bb0c6722
FB
1702 QEMUResetHandler *func;
1703 void *opaque;
bb0c6722
FB
1704} QEMUResetEntry;
1705
72cf2d4f
BS
1706static QTAILQ_HEAD(reset_handlers, QEMUResetEntry) reset_handlers =
1707 QTAILQ_HEAD_INITIALIZER(reset_handlers);
bb0c6722
FB
1708static int reset_requested;
1709static int shutdown_requested;
3475187d 1710static int powerdown_requested;
296af7c9 1711int debug_requested;
7277e027 1712int vmstop_requested;
bb0c6722 1713
cf7a2fe2
AJ
1714int qemu_shutdown_requested(void)
1715{
1716 int r = shutdown_requested;
1717 shutdown_requested = 0;
1718 return r;
1719}
1720
1721int qemu_reset_requested(void)
1722{
1723 int r = reset_requested;
1724 reset_requested = 0;
1725 return r;
1726}
1727
1728int qemu_powerdown_requested(void)
1729{
1730 int r = powerdown_requested;
1731 powerdown_requested = 0;
1732 return r;
1733}
1734
e568902a
AL
1735static int qemu_debug_requested(void)
1736{
1737 int r = debug_requested;
1738 debug_requested = 0;
1739 return r;
1740}
1741
6e29f5da
AL
1742static int qemu_vmstop_requested(void)
1743{
1744 int r = vmstop_requested;
1745 vmstop_requested = 0;
1746 return r;
1747}
1748
a08d4367 1749void qemu_register_reset(QEMUResetHandler *func, void *opaque)
bb0c6722 1750{
55ddfe8e 1751 QEMUResetEntry *re = qemu_mallocz(sizeof(QEMUResetEntry));
bb0c6722 1752
bb0c6722
FB
1753 re->func = func;
1754 re->opaque = opaque;
72cf2d4f 1755 QTAILQ_INSERT_TAIL(&reset_handlers, re, entry);
bb0c6722
FB
1756}
1757
dda9b29f 1758void qemu_unregister_reset(QEMUResetHandler *func, void *opaque)
bb0c6722
FB
1759{
1760 QEMUResetEntry *re;
1761
72cf2d4f 1762 QTAILQ_FOREACH(re, &reset_handlers, entry) {
dda9b29f 1763 if (re->func == func && re->opaque == opaque) {
72cf2d4f 1764 QTAILQ_REMOVE(&reset_handlers, re, entry);
dda9b29f
JK
1765 qemu_free(re);
1766 return;
1767 }
1768 }
1769}
1770
1771void qemu_system_reset(void)
1772{
1773 QEMUResetEntry *re, *nre;
1774
1775 /* reset all devices */
72cf2d4f 1776 QTAILQ_FOREACH_SAFE(re, &reset_handlers, entry, nre) {
bb0c6722
FB
1777 re->func(re->opaque);
1778 }
81d9b784 1779 monitor_protocol_event(QEVENT_RESET, NULL);
ea375f9a 1780 cpu_synchronize_all_post_reset();
bb0c6722
FB
1781}
1782
1783void qemu_system_reset_request(void)
1784{
d1beab82
FB
1785 if (no_reboot) {
1786 shutdown_requested = 1;
1787 } else {
1788 reset_requested = 1;
1789 }
d9f75a4e 1790 qemu_notify_event();
bb0c6722
FB
1791}
1792
1793void qemu_system_shutdown_request(void)
1794{
1795 shutdown_requested = 1;
d9f75a4e 1796 qemu_notify_event();
bb0c6722
FB
1797}
1798
3475187d
FB
1799void qemu_system_powerdown_request(void)
1800{
1801 powerdown_requested = 1;
d9f75a4e
AL
1802 qemu_notify_event();
1803}
1804
877cf882 1805#ifdef _WIN32
69d6451c 1806static void host_main_loop_wait(int *timeout)
56f3a5d0
AL
1807{
1808 int ret, ret2, i;
f331110f
FB
1809 PollingEntry *pe;
1810
c4b1fcc0 1811
f331110f
FB
1812 /* XXX: need to suppress polling by better using win32 events */
1813 ret = 0;
1814 for(pe = first_polling_entry; pe != NULL; pe = pe->next) {
1815 ret |= pe->func(pe->opaque);
1816 }
e6b1e558 1817 if (ret == 0) {
a18e524a
FB
1818 int err;
1819 WaitObjects *w = &wait_objects;
3b46e624 1820
56f3a5d0 1821 ret = WaitForMultipleObjects(w->num, w->events, FALSE, *timeout);
a18e524a
FB
1822 if (WAIT_OBJECT_0 + 0 <= ret && ret <= WAIT_OBJECT_0 + w->num - 1) {
1823 if (w->func[ret - WAIT_OBJECT_0])
1824 w->func[ret - WAIT_OBJECT_0](w->opaque[ret - WAIT_OBJECT_0]);
3b46e624 1825
5fafdf24 1826 /* Check for additional signaled events */
e6b1e558 1827 for(i = (ret - WAIT_OBJECT_0 + 1); i < w->num; i++) {
3b46e624 1828
e6b1e558
TS
1829 /* Check if event is signaled */
1830 ret2 = WaitForSingleObject(w->events[i], 0);
1831 if(ret2 == WAIT_OBJECT_0) {
1832 if (w->func[i])
1833 w->func[i](w->opaque[i]);
1834 } else if (ret2 == WAIT_TIMEOUT) {
1835 } else {
1836 err = GetLastError();
1837 fprintf(stderr, "WaitForSingleObject error %d %d\n", i, err);
3b46e624
TS
1838 }
1839 }
a18e524a
FB
1840 } else if (ret == WAIT_TIMEOUT) {
1841 } else {
1842 err = GetLastError();
e6b1e558 1843 fprintf(stderr, "WaitForMultipleObjects error %d %d\n", ret, err);
a18e524a 1844 }
f331110f 1845 }
56f3a5d0
AL
1846
1847 *timeout = 0;
1848}
1849#else
69d6451c 1850static void host_main_loop_wait(int *timeout)
56f3a5d0
AL
1851{
1852}
fd1dff4b 1853#endif
56f3a5d0 1854
d6f4ade2 1855void main_loop_wait(int nonblocking)
56f3a5d0
AL
1856{
1857 IOHandlerRecord *ioh;
1858 fd_set rfds, wfds, xfds;
1859 int ret, nfds;
1860 struct timeval tv;
d6f4ade2 1861 int timeout;
56f3a5d0 1862
d6f4ade2
PB
1863 if (nonblocking)
1864 timeout = 0;
1865 else {
1866 timeout = qemu_calculate_timeout();
1867 qemu_bh_update_timeout(&timeout);
1868 }
56f3a5d0
AL
1869
1870 host_main_loop_wait(&timeout);
1871
fd1dff4b
FB
1872 /* poll any events */
1873 /* XXX: separate device handlers from system ones */
6abfbd79 1874 nfds = -1;
fd1dff4b
FB
1875 FD_ZERO(&rfds);
1876 FD_ZERO(&wfds);
e035649e 1877 FD_ZERO(&xfds);
31d4ee6c 1878 QLIST_FOREACH(ioh, &io_handlers, next) {
cafffd40
TS
1879 if (ioh->deleted)
1880 continue;
fd1dff4b
FB
1881 if (ioh->fd_read &&
1882 (!ioh->fd_read_poll ||
1883 ioh->fd_read_poll(ioh->opaque) != 0)) {
1884 FD_SET(ioh->fd, &rfds);
1885 if (ioh->fd > nfds)
1886 nfds = ioh->fd;
1887 }
1888 if (ioh->fd_write) {
1889 FD_SET(ioh->fd, &wfds);
1890 if (ioh->fd > nfds)
1891 nfds = ioh->fd;
1892 }
1893 }
3b46e624 1894
56f3a5d0
AL
1895 tv.tv_sec = timeout / 1000;
1896 tv.tv_usec = (timeout % 1000) * 1000;
1897
d918f23e
JK
1898 slirp_select_fill(&nfds, &rfds, &wfds, &xfds);
1899
4870852c 1900 qemu_mutex_unlock_iothread();
e035649e 1901 ret = select(nfds + 1, &rfds, &wfds, &xfds, &tv);
4870852c 1902 qemu_mutex_lock_iothread();
fd1dff4b 1903 if (ret > 0) {
31d4ee6c 1904 IOHandlerRecord *pioh;
cafffd40 1905
31d4ee6c 1906 QLIST_FOREACH_SAFE(ioh, &io_handlers, next, pioh) {
cafffd40 1907 if (ioh->deleted) {
31d4ee6c 1908 QLIST_REMOVE(ioh, next);
cafffd40 1909 qemu_free(ioh);
4bed9837
JQ
1910 continue;
1911 }
1912 if (ioh->fd_read && FD_ISSET(ioh->fd, &rfds)) {
1913 ioh->fd_read(ioh->opaque);
1914 }
1915 if (ioh->fd_write && FD_ISSET(ioh->fd, &wfds)) {
1916 ioh->fd_write(ioh->opaque);
31d4ee6c 1917 }
cafffd40 1918 }
fd1dff4b 1919 }
d918f23e
JK
1920
1921 slirp_select_poll(&rfds, &wfds, &xfds, (ret < 0));
b4608c04 1922
b6964827 1923 qemu_run_all_timers();
21d5d12b 1924
423f0742
PB
1925 /* Check bottom-halves last in case any of the earlier events triggered
1926 them. */
1927 qemu_bh_poll();
3b46e624 1928
5905b2e5
FB
1929}
1930
43b96858
AL
1931static int vm_can_run(void)
1932{
1933 if (powerdown_requested)
1934 return 0;
1935 if (reset_requested)
1936 return 0;
1937 if (shutdown_requested)
1938 return 0;
e568902a
AL
1939 if (debug_requested)
1940 return 0;
43b96858
AL
1941 return 1;
1942}
1943
d9c32310
BS
1944qemu_irq qemu_system_powerdown;
1945
43b96858
AL
1946static void main_loop(void)
1947{
6e29f5da 1948 int r;
e6e35b1e 1949
7277e027 1950 qemu_main_loop_start();
d6dc3d42 1951
6e29f5da 1952 for (;;) {
43b96858 1953 do {
d6f4ade2 1954 bool nonblocking = false;
e6e35b1e
AL
1955#ifdef CONFIG_PROFILER
1956 int64_t ti;
1957#endif
d6dc3d42 1958#ifndef CONFIG_IOTHREAD
d6f4ade2 1959 nonblocking = tcg_cpu_exec();
d6dc3d42 1960#endif
89bfc105 1961#ifdef CONFIG_PROFILER
43b96858 1962 ti = profile_getclock();
89bfc105 1963#endif
d6f4ade2 1964 main_loop_wait(nonblocking);
89bfc105 1965#ifdef CONFIG_PROFILER
43b96858 1966 dev_time += profile_getclock() - ti;
89bfc105 1967#endif
e568902a 1968 } while (vm_can_run());
43b96858 1969
54fc6ea9
BS
1970 if ((r = qemu_debug_requested())) {
1971 vm_stop(r);
b1a15e7e 1972 }
43b96858 1973 if (qemu_shutdown_requested()) {
242cd003 1974 monitor_protocol_event(QEVENT_SHUTDOWN, NULL);
43b96858
AL
1975 if (no_shutdown) {
1976 vm_stop(0);
1977 no_shutdown = 0;
1978 } else
1979 break;
1980 }
d6dc3d42
AL
1981 if (qemu_reset_requested()) {
1982 pause_all_vcpus();
43b96858 1983 qemu_system_reset();
d6dc3d42
AL
1984 resume_all_vcpus();
1985 }
d9c32310 1986 if (qemu_powerdown_requested()) {
242cd003 1987 monitor_protocol_event(QEVENT_POWERDOWN, NULL);
d9c32310
BS
1988 qemu_irq_raise(qemu_system_powerdown);
1989 }
b1a15e7e 1990 if ((r = qemu_vmstop_requested())) {
6e29f5da 1991 vm_stop(r);
b1a15e7e 1992 }
b4608c04 1993 }
d6dc3d42 1994 pause_all_vcpus();
b4608c04
FB
1995}
1996
9bd7e6d9
PB
1997static void version(void)
1998{
f75ca1ae 1999 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n");
9bd7e6d9
PB
2000}
2001
15f82208 2002static void help(int exitcode)
0824d6fc 2003{
e8105ebb 2004 const char *options_help =
ad96090a
BS
2005#define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
2006 opt_help
5824d651
BS
2007#define DEFHEADING(text) stringify(text) "\n"
2008#include "qemu-options.h"
2009#undef DEF
2010#undef DEFHEADING
2011#undef GEN_DOCS
e8105ebb
PB
2012 ;
2013 version();
2014 printf("usage: %s [options] [disk_image]\n"
2015 "\n"
f75ca1ae 2016 "'disk_image' is a raw hard disk image for IDE hard disk 0\n"
3f020d70 2017 "\n"
e8105ebb 2018 "%s\n"
3f020d70 2019 "During emulation, the following keys are useful:\n"
2020 "ctrl-alt-f toggle full screen\n"
2021 "ctrl-alt-n switch to virtual console 'n'\n"
2022 "ctrl-alt toggle mouse and keyboard grab\n"
2023 "\n"
e8105ebb
PB
2024 "When using -nographic, press 'ctrl-a h' to get some help.\n",
2025 "qemu",
2026 options_help);
15f82208 2027 exit(exitcode);
0824d6fc
FB
2028}
2029
cd6f1169
FB
2030#define HAS_ARG 0x0001
2031
2032enum {
ad96090a 2033#define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
5824d651
BS
2034 opt_enum,
2035#define DEFHEADING(text)
2036#include "qemu-options.h"
2037#undef DEF
2038#undef DEFHEADING
2039#undef GEN_DOCS
cd6f1169
FB
2040};
2041
2042typedef struct QEMUOption {
2043 const char *name;
2044 int flags;
2045 int index;
ad96090a 2046 uint32_t arch_mask;
cd6f1169
FB
2047} QEMUOption;
2048
dbed7e40 2049static const QEMUOption qemu_options[] = {
ad96090a
BS
2050 { "h", 0, QEMU_OPTION_h, QEMU_ARCH_ALL },
2051#define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
2052 { option, opt_arg, opt_enum, arch_mask },
5824d651
BS
2053#define DEFHEADING(text)
2054#include "qemu-options.h"
2055#undef DEF
2056#undef DEFHEADING
2057#undef GEN_DOCS
cd6f1169 2058 { NULL },
fc01f7e7 2059};
3893c124 2060static void select_vgahw (const char *p)
2061{
2062 const char *opts;
2063
64465297 2064 default_vga = 0;
86176759 2065 vga_interface_type = VGA_NONE;
3893c124 2066 if (strstart(p, "std", &opts)) {
86176759 2067 vga_interface_type = VGA_STD;
3893c124 2068 } else if (strstart(p, "cirrus", &opts)) {
86176759 2069 vga_interface_type = VGA_CIRRUS;
3893c124 2070 } else if (strstart(p, "vmware", &opts)) {
86176759 2071 vga_interface_type = VGA_VMWARE;
94909d9f 2072 } else if (strstart(p, "xenfb", &opts)) {
86176759 2073 vga_interface_type = VGA_XENFB;
28b85ed8 2074 } else if (!strstart(p, "none", &opts)) {
3893c124 2075 invalid_vga:
2076 fprintf(stderr, "Unknown vga type: %s\n", p);
2077 exit(1);
2078 }
cb5a7aa8 2079 while (*opts) {
2080 const char *nextopt;
2081
2082 if (strstart(opts, ",retrace=", &nextopt)) {
2083 opts = nextopt;
2084 if (strstart(opts, "dumb", &nextopt))
2085 vga_retrace_method = VGA_RETRACE_DUMB;
2086 else if (strstart(opts, "precise", &nextopt))
2087 vga_retrace_method = VGA_RETRACE_PRECISE;
2088 else goto invalid_vga;
2089 } else goto invalid_vga;
2090 opts = nextopt;
2091 }
3893c124 2092}
2093
7d4c3d53
MA
2094static int balloon_parse(const char *arg)
2095{
382f0743 2096 QemuOpts *opts;
7d4c3d53 2097
382f0743
GH
2098 if (strcmp(arg, "none") == 0) {
2099 return 0;
2100 }
2101
2102 if (!strncmp(arg, "virtio", 6)) {
2103 if (arg[6] == ',') {
2104 /* have params -> parse them */
8212c64f 2105 opts = qemu_opts_parse(&qemu_device_opts, arg+7, 0);
382f0743
GH
2106 if (!opts)
2107 return -1;
2108 } else {
2109 /* create empty opts */
2110 opts = qemu_opts_create(&qemu_device_opts, NULL, 0);
7d4c3d53 2111 }
382f0743
GH
2112 qemu_opt_set(opts, "driver", "virtio-balloon-pci");
2113 return 0;
7d4c3d53 2114 }
382f0743
GH
2115
2116 return -1;
7d4c3d53 2117}
7d4c3d53 2118
3587d7e6
FB
2119#ifdef _WIN32
2120static BOOL WINAPI qemu_ctrl_handler(DWORD type)
2121{
2122 exit(STATUS_CONTROL_C_EXIT);
2123 return TRUE;
2124}
2125#endif
2126
5b08fc10
AL
2127#ifndef _WIN32
2128
2129static void termsig_handler(int signal)
2130{
2131 qemu_system_shutdown_request();
2132}
2133
7c3370d4
JK
2134static void sigchld_handler(int signal)
2135{
2136 waitpid(-1, NULL, WNOHANG);
2137}
2138
2139static void sighandler_setup(void)
5b08fc10
AL
2140{
2141 struct sigaction act;
2142
2143 memset(&act, 0, sizeof(act));
2144 act.sa_handler = termsig_handler;
2145 sigaction(SIGINT, &act, NULL);
2146 sigaction(SIGHUP, &act, NULL);
2147 sigaction(SIGTERM, &act, NULL);
7c3370d4
JK
2148
2149 act.sa_handler = sigchld_handler;
2150 act.sa_flags = SA_NOCLDSTOP;
2151 sigaction(SIGCHLD, &act, NULL);
5b08fc10
AL
2152}
2153
2154#endif
2155
5cea8590
PB
2156#ifdef _WIN32
2157/* Look for support files in the same directory as the executable. */
2158static char *find_datadir(const char *argv0)
2159{
2160 char *p;
2161 char buf[MAX_PATH];
2162 DWORD len;
2163
2164 len = GetModuleFileName(NULL, buf, sizeof(buf) - 1);
2165 if (len == 0) {
c5947808 2166 return NULL;
5cea8590
PB
2167 }
2168
2169 buf[len] = 0;
2170 p = buf + len - 1;
2171 while (p != buf && *p != '\\')
2172 p--;
2173 *p = 0;
2174 if (access(buf, R_OK) == 0) {
2175 return qemu_strdup(buf);
2176 }
2177 return NULL;
2178}
2179#else /* !_WIN32 */
2180
2181/* Find a likely location for support files using the location of the binary.
2182 For installed binaries this will be "$bindir/../share/qemu". When
2183 running from the build tree this will be "$bindir/../pc-bios". */
2184#define SHARE_SUFFIX "/share/qemu"
2185#define BUILD_SUFFIX "/pc-bios"
2186static char *find_datadir(const char *argv0)
2187{
2188 char *dir;
2189 char *p = NULL;
2190 char *res;
5cea8590 2191 char buf[PATH_MAX];
3a41759d 2192 size_t max_len;
5cea8590
PB
2193
2194#if defined(__linux__)
2195 {
2196 int len;
2197 len = readlink("/proc/self/exe", buf, sizeof(buf) - 1);
2198 if (len > 0) {
2199 buf[len] = 0;
2200 p = buf;
2201 }
2202 }
2203#elif defined(__FreeBSD__)
2204 {
92c0e657
JL
2205 static int mib[4] = {CTL_KERN, KERN_PROC, KERN_PROC_PATHNAME, -1};
2206 size_t len = sizeof(buf) - 1;
2207
2208 *buf = '\0';
2209 if (!sysctl(mib, sizeof(mib)/sizeof(*mib), buf, &len, NULL, 0) &&
2210 *buf) {
2211 buf[sizeof(buf) - 1] = '\0';
5cea8590
PB
2212 p = buf;
2213 }
2214 }
2215#endif
2216 /* If we don't have any way of figuring out the actual executable
2217 location then try argv[0]. */
2218 if (!p) {
4d224196 2219 p = realpath(argv0, buf);
5cea8590
PB
2220 if (!p) {
2221 return NULL;
2222 }
2223 }
2224 dir = dirname(p);
2225 dir = dirname(dir);
2226
3a41759d
BS
2227 max_len = strlen(dir) +
2228 MAX(strlen(SHARE_SUFFIX), strlen(BUILD_SUFFIX)) + 1;
2229 res = qemu_mallocz(max_len);
2230 snprintf(res, max_len, "%s%s", dir, SHARE_SUFFIX);
5cea8590 2231 if (access(res, R_OK)) {
3a41759d 2232 snprintf(res, max_len, "%s%s", dir, BUILD_SUFFIX);
5cea8590
PB
2233 if (access(res, R_OK)) {
2234 qemu_free(res);
2235 res = NULL;
2236 }
2237 }
4d224196 2238
5cea8590
PB
2239 return res;
2240}
2241#undef SHARE_SUFFIX
2242#undef BUILD_SUFFIX
2243#endif
2244
2245char *qemu_find_file(int type, const char *name)
2246{
2247 int len;
2248 const char *subdir;
2249 char *buf;
2250
2251 /* If name contains path separators then try it as a straight path. */
2252 if ((strchr(name, '/') || strchr(name, '\\'))
2253 && access(name, R_OK) == 0) {
73ffc805 2254 return qemu_strdup(name);
5cea8590
PB
2255 }
2256 switch (type) {
2257 case QEMU_FILE_TYPE_BIOS:
2258 subdir = "";
2259 break;
2260 case QEMU_FILE_TYPE_KEYMAP:
2261 subdir = "keymaps/";
2262 break;
2263 default:
2264 abort();
2265 }
2266 len = strlen(data_dir) + strlen(name) + strlen(subdir) + 2;
2267 buf = qemu_mallocz(len);
3a41759d 2268 snprintf(buf, len, "%s/%s%s", data_dir, subdir, name);
5cea8590
PB
2269 if (access(buf, R_OK)) {
2270 qemu_free(buf);
2271 return NULL;
2272 }
2273 return buf;
2274}
2275
ff952ba2
MA
2276static int device_help_func(QemuOpts *opts, void *opaque)
2277{
2278 return qdev_device_help(opts);
2279}
2280
f31d07d1
GH
2281static int device_init_func(QemuOpts *opts, void *opaque)
2282{
2283 DeviceState *dev;
2284
2285 dev = qdev_device_add(opts);
2286 if (!dev)
2287 return -1;
2288 return 0;
2289}
2290
1a688d3b
GH
2291static int chardev_init_func(QemuOpts *opts, void *opaque)
2292{
2293 CharDriverState *chr;
2294
2295 chr = qemu_chr_open_opts(opts, NULL);
2296 if (!chr)
2297 return -1;
2298 return 0;
2299}
2300
74db920c
GS
2301#ifdef CONFIG_LINUX
2302static int fsdev_init_func(QemuOpts *opts, void *opaque)
2303{
2304 int ret;
2305 ret = qemu_fsdev_add(opts);
2306
2307 return ret;
2308}
2309#endif
2310
88589343
GH
2311static int mon_init_func(QemuOpts *opts, void *opaque)
2312{
2313 CharDriverState *chr;
2314 const char *chardev;
2315 const char *mode;
2316 int flags;
2317
2318 mode = qemu_opt_get(opts, "mode");
2319 if (mode == NULL) {
2320 mode = "readline";
2321 }
2322 if (strcmp(mode, "readline") == 0) {
2323 flags = MONITOR_USE_READLINE;
2324 } else if (strcmp(mode, "control") == 0) {
2325 flags = MONITOR_USE_CONTROL;
2326 } else {
2327 fprintf(stderr, "unknown monitor mode \"%s\"\n", mode);
2328 exit(1);
2329 }
2330
2331 if (qemu_opt_get_bool(opts, "default", 0))
2332 flags |= MONITOR_IS_DEFAULT;
2333
2334 chardev = qemu_opt_get(opts, "chardev");
2335 chr = qemu_chr_find(chardev);
2336 if (chr == NULL) {
2337 fprintf(stderr, "chardev \"%s\" not found\n", chardev);
2338 exit(1);
2339 }
2340
2341 monitor_init(chr, flags);
2342 return 0;
2343}
2344
6ca5582d 2345static void monitor_parse(const char *optarg, const char *mode)
88589343
GH
2346{
2347 static int monitor_device_index = 0;
2348 QemuOpts *opts;
2349 const char *p;
2350 char label[32];
2351 int def = 0;
2352
2353 if (strstart(optarg, "chardev:", &p)) {
2354 snprintf(label, sizeof(label), "%s", p);
2355 } else {
140e065d
JK
2356 snprintf(label, sizeof(label), "compat_monitor%d",
2357 monitor_device_index);
2358 if (monitor_device_index == 0) {
88589343
GH
2359 def = 1;
2360 }
2361 opts = qemu_chr_parse_compat(label, optarg);
2362 if (!opts) {
2363 fprintf(stderr, "parse error: %s\n", optarg);
2364 exit(1);
2365 }
2366 }
2367
2368 opts = qemu_opts_create(&qemu_mon_opts, label, 1);
2369 if (!opts) {
2370 fprintf(stderr, "duplicate chardev: %s\n", label);
2371 exit(1);
2372 }
6ca5582d 2373 qemu_opt_set(opts, "mode", mode);
88589343
GH
2374 qemu_opt_set(opts, "chardev", label);
2375 if (def)
2376 qemu_opt_set(opts, "default", "on");
2377 monitor_device_index++;
2378}
2379
bd3c948d
GH
2380struct device_config {
2381 enum {
aee1b935
GH
2382 DEV_USB, /* -usbdevice */
2383 DEV_BT, /* -bt */
2384 DEV_SERIAL, /* -serial */
2385 DEV_PARALLEL, /* -parallel */
2386 DEV_VIRTCON, /* -virtioconsole */
c9f398e5 2387 DEV_DEBUGCON, /* -debugcon */
bd3c948d
GH
2388 } type;
2389 const char *cmdline;
72cf2d4f 2390 QTAILQ_ENTRY(device_config) next;
bd3c948d 2391};
72cf2d4f 2392QTAILQ_HEAD(, device_config) device_configs = QTAILQ_HEAD_INITIALIZER(device_configs);
bd3c948d
GH
2393
2394static void add_device_config(int type, const char *cmdline)
2395{
2396 struct device_config *conf;
2397
2398 conf = qemu_mallocz(sizeof(*conf));
2399 conf->type = type;
2400 conf->cmdline = cmdline;
72cf2d4f 2401 QTAILQ_INSERT_TAIL(&device_configs, conf, next);
bd3c948d
GH
2402}
2403
2404static int foreach_device_config(int type, int (*func)(const char *cmdline))
2405{
2406 struct device_config *conf;
2407 int rc;
2408
72cf2d4f 2409 QTAILQ_FOREACH(conf, &device_configs, next) {
bd3c948d
GH
2410 if (conf->type != type)
2411 continue;
2412 rc = func(conf->cmdline);
2413 if (0 != rc)
2414 return rc;
2415 }
2416 return 0;
2417}
2418
998bbd74
GH
2419static int serial_parse(const char *devname)
2420{
2421 static int index = 0;
2422 char label[32];
2423
2424 if (strcmp(devname, "none") == 0)
2425 return 0;
2426 if (index == MAX_SERIAL_PORTS) {
2427 fprintf(stderr, "qemu: too many serial ports\n");
2428 exit(1);
2429 }
2430 snprintf(label, sizeof(label), "serial%d", index);
2431 serial_hds[index] = qemu_chr_open(label, devname, NULL);
2432 if (!serial_hds[index]) {
2433 fprintf(stderr, "qemu: could not open serial device '%s': %s\n",
2434 devname, strerror(errno));
2435 return -1;
2436 }
2437 index++;
2438 return 0;
2439}
2440
6a5e8b0e
GH
2441static int parallel_parse(const char *devname)
2442{
2443 static int index = 0;
2444 char label[32];
2445
2446 if (strcmp(devname, "none") == 0)
2447 return 0;
2448 if (index == MAX_PARALLEL_PORTS) {
2449 fprintf(stderr, "qemu: too many parallel ports\n");
2450 exit(1);
2451 }
2452 snprintf(label, sizeof(label), "parallel%d", index);
2453 parallel_hds[index] = qemu_chr_open(label, devname, NULL);
2454 if (!parallel_hds[index]) {
2455 fprintf(stderr, "qemu: could not open parallel device '%s': %s\n",
2456 devname, strerror(errno));
2457 return -1;
2458 }
2459 index++;
2460 return 0;
2461}
2462
aee1b935
GH
2463static int virtcon_parse(const char *devname)
2464{
2465 static int index = 0;
2466 char label[32];
392ecf54 2467 QemuOpts *bus_opts, *dev_opts;
aee1b935
GH
2468
2469 if (strcmp(devname, "none") == 0)
2470 return 0;
2471 if (index == MAX_VIRTIO_CONSOLES) {
2472 fprintf(stderr, "qemu: too many virtio consoles\n");
2473 exit(1);
2474 }
392ecf54
AS
2475
2476 bus_opts = qemu_opts_create(&qemu_device_opts, NULL, 0);
2477 qemu_opt_set(bus_opts, "driver", "virtio-serial");
2478
2479 dev_opts = qemu_opts_create(&qemu_device_opts, NULL, 0);
2480 qemu_opt_set(dev_opts, "driver", "virtconsole");
2481
aee1b935
GH
2482 snprintf(label, sizeof(label), "virtcon%d", index);
2483 virtcon_hds[index] = qemu_chr_open(label, devname, NULL);
2484 if (!virtcon_hds[index]) {
2485 fprintf(stderr, "qemu: could not open virtio console '%s': %s\n",
2486 devname, strerror(errno));
2487 return -1;
2488 }
392ecf54
AS
2489 qemu_opt_set(dev_opts, "chardev", label);
2490
aee1b935
GH
2491 index++;
2492 return 0;
2493}
2494
c9f398e5
PA
2495static int debugcon_parse(const char *devname)
2496{
2497 QemuOpts *opts;
2498
2499 if (!qemu_chr_open("debugcon", devname, NULL)) {
2500 exit(1);
2501 }
2502 opts = qemu_opts_create(&qemu_device_opts, "debugcon", 1);
2503 if (!opts) {
2504 fprintf(stderr, "qemu: already have a debugcon device\n");
2505 exit(1);
2506 }
2507 qemu_opt_set(opts, "driver", "isa-debugcon");
2508 qemu_opt_set(opts, "chardev", "debugcon");
2509 return 0;
2510}
2511
6530a97b
AL
2512static const QEMUOption *lookup_opt(int argc, char **argv,
2513 const char **poptarg, int *poptind)
2514{
2515 const QEMUOption *popt;
2516 int optind = *poptind;
2517 char *r = argv[optind];
2518 const char *optarg;
2519
0f0bc3f1 2520 loc_set_cmdline(argv, optind, 1);
6530a97b
AL
2521 optind++;
2522 /* Treat --foo the same as -foo. */
2523 if (r[1] == '-')
2524 r++;
2525 popt = qemu_options;
2526 for(;;) {
2527 if (!popt->name) {
0f0bc3f1 2528 error_report("invalid option");
6530a97b
AL
2529 exit(1);
2530 }
2531 if (!strcmp(popt->name, r + 1))
2532 break;
2533 popt++;
2534 }
2535 if (popt->flags & HAS_ARG) {
2536 if (optind >= argc) {
0f0bc3f1 2537 error_report("requires an argument");
6530a97b
AL
2538 exit(1);
2539 }
2540 optarg = argv[optind++];
0f0bc3f1 2541 loc_set_cmdline(argv, optind - 2, 2);
6530a97b
AL
2542 } else {
2543 optarg = NULL;
2544 }
2545
2546 *poptarg = optarg;
2547 *poptind = optind;
2548
2549 return popt;
2550}
2551
902b3d5c 2552int main(int argc, char **argv, char **envp)
0824d6fc 2553{
59030a8c 2554 const char *gdbstub_dev = NULL;
e4bcb14c 2555 int i;
da1fcfda 2556 int snapshot, linux_boot;
4e3de9e9 2557 const char *icount_option = NULL;
7f7f9873 2558 const char *initrd_filename;
a20dd508 2559 const char *kernel_filename, *kernel_cmdline;
195325a4 2560 char boot_devices[33] = "cad"; /* default to HD->floppy->CD-ROM */
3023f332 2561 DisplayState *ds;
7d957bd8 2562 DisplayChangeListener *dcl;
46d4767d 2563 int cyls, heads, secs, translation;
f31d07d1 2564 QemuOpts *hda_opts = NULL, *opts;
cd6f1169 2565 int optind;
6530a97b 2566 const char *optarg;
d63d307f 2567 const char *loadvm = NULL;
cc1daa40 2568 QEMUMachine *machine;
94fc95cd 2569 const char *cpu_model;
b9e82a59 2570#ifndef _WIN32
71e3ceb8 2571 int fds[2];
b9e82a59 2572#endif
26a5f13b 2573 int tb_size;
93815bc2 2574 const char *pid_file = NULL;
5bb7910a 2575 const char *incoming = NULL;
b9e82a59 2576#ifndef _WIN32
54042bcf
AL
2577 int fd = 0;
2578 struct passwd *pwd = NULL;
0858532e
AL
2579 const char *chroot_dir = NULL;
2580 const char *run_as = NULL;
b9e82a59 2581#endif
993fbfdb 2582 int show_vnc_port = 0;
292444cb 2583 int defconfig = 1;
0bd48850 2584
65abca0a
MA
2585 error_set_progname(argv[0]);
2586
6875204c
JK
2587 init_clocks();
2588
902b3d5c 2589 qemu_cache_utils_init(envp);
2590
72cf2d4f 2591 QLIST_INIT (&vm_change_state_head);
be995c27
FB
2592#ifndef _WIN32
2593 {
2594 struct sigaction act;
2595 sigfillset(&act.sa_mask);
2596 act.sa_flags = 0;
2597 act.sa_handler = SIG_IGN;
2598 sigaction(SIGPIPE, &act, NULL);
2599 }
3587d7e6
FB
2600#else
2601 SetConsoleCtrlHandler(qemu_ctrl_handler, TRUE);
a8e5ac33
FB
2602 /* Note: cpu_interrupt() is currently not SMP safe, so we force
2603 QEMU to run on a single CPU */
2604 {
2605 HANDLE h;
2606 DWORD mask, smask;
2607 int i;
2608 h = GetCurrentProcess();
2609 if (GetProcessAffinityMask(h, &mask, &smask)) {
2610 for(i = 0; i < 32; i++) {
2611 if (mask & (1 << i))
2612 break;
2613 }
2614 if (i != 32) {
2615 mask = 1 << i;
2616 SetProcessAffinityMask(h, mask);
2617 }
2618 }
2619 }
67b915a5 2620#endif
be995c27 2621
f80f9ec9 2622 module_call_init(MODULE_INIT_MACHINE);
0c257437 2623 machine = find_default_machine();
94fc95cd 2624 cpu_model = NULL;
fc01f7e7 2625 initrd_filename = NULL;
4fc5d071 2626 ram_size = 0;
33e3963e 2627 snapshot = 0;
a20dd508
FB
2628 kernel_filename = NULL;
2629 kernel_cmdline = "";
c4b1fcc0 2630 cyls = heads = secs = 0;
46d4767d 2631 translation = BIOS_ATA_TRANSLATION_AUTO;
c4b1fcc0 2632
268a362c
AL
2633 for (i = 0; i < MAX_NODES; i++) {
2634 node_mem[i] = 0;
2635 node_cpumask[i] = 0;
2636 }
2637
268a362c 2638 nb_numa_nodes = 0;
7c9d8e07 2639 nb_nics = 0;
3b46e624 2640
26a5f13b 2641 tb_size = 0;
41bd639b
BS
2642 autostart= 1;
2643
292444cb
AL
2644 /* first pass of option parsing */
2645 optind = 1;
2646 while (optind < argc) {
2647 if (argv[optind][0] != '-') {
2648 /* disk image */
28e68d68 2649 optind++;
292444cb
AL
2650 continue;
2651 } else {
2652 const QEMUOption *popt;
2653
2654 popt = lookup_opt(argc, argv, &optarg, &optind);
2655 switch (popt->index) {
2656 case QEMU_OPTION_nodefconfig:
2657 defconfig=0;
2658 break;
2659 }
2660 }
2661 }
2662
2663 if (defconfig) {
dcfb0939 2664 int ret;
cf5a65aa 2665
dcfb0939 2666 ret = qemu_read_config_file(CONFIG_QEMU_CONFDIR "/qemu.conf");
019e78ba 2667 if (ret < 0 && ret != -ENOENT) {
dcfb0939 2668 exit(1);
292444cb
AL
2669 }
2670
dcfb0939 2671 ret = qemu_read_config_file(arch_config_name);
019e78ba 2672 if (ret < 0 && ret != -ENOENT) {
dcfb0939 2673 exit(1);
292444cb
AL
2674 }
2675 }
de06f8d1 2676 cpudef_init();
292444cb
AL
2677
2678 /* second pass of option parsing */
cd6f1169 2679 optind = 1;
0824d6fc 2680 for(;;) {
cd6f1169 2681 if (optind >= argc)
0824d6fc 2682 break;
6530a97b 2683 if (argv[optind][0] != '-') {
9dfd7c7a 2684 hda_opts = drive_add(argv[optind++], HD_ALIAS, 0);
cd6f1169
FB
2685 } else {
2686 const QEMUOption *popt;
2687
6530a97b 2688 popt = lookup_opt(argc, argv, &optarg, &optind);
ad96090a
BS
2689 if (!(popt->arch_mask & arch_type)) {
2690 printf("Option %s not supported for this target\n", popt->name);
2691 exit(1);
2692 }
cd6f1169 2693 switch(popt->index) {
cc1daa40
FB
2694 case QEMU_OPTION_M:
2695 machine = find_machine(optarg);
2696 if (!machine) {
2697 QEMUMachine *m;
2698 printf("Supported machines are:\n");
2699 for(m = first_machine; m != NULL; m = m->next) {
3f6599e6
MM
2700 if (m->alias)
2701 printf("%-10s %s (alias of %s)\n",
2702 m->alias, m->desc, m->name);
cc1daa40 2703 printf("%-10s %s%s\n",
5fafdf24 2704 m->name, m->desc,
0c257437 2705 m->is_default ? " (default)" : "");
cc1daa40 2706 }
15f82208 2707 exit(*optarg != '?');
cc1daa40
FB
2708 }
2709 break;
94fc95cd
JM
2710 case QEMU_OPTION_cpu:
2711 /* hw initialization will check this */
15f82208 2712 if (*optarg == '?') {
262353cb 2713 list_cpus(stdout, &fprintf, optarg);
15f82208 2714 exit(0);
94fc95cd
JM
2715 } else {
2716 cpu_model = optarg;
2717 }
2718 break;
cd6f1169 2719 case QEMU_OPTION_initrd:
fc01f7e7
FB
2720 initrd_filename = optarg;
2721 break;
cd6f1169 2722 case QEMU_OPTION_hda:
e4bcb14c 2723 if (cyls == 0)
9dfd7c7a 2724 hda_opts = drive_add(optarg, HD_ALIAS, 0);
e4bcb14c 2725 else
9dfd7c7a 2726 hda_opts = drive_add(optarg, HD_ALIAS
e4bcb14c 2727 ",cyls=%d,heads=%d,secs=%d%s",
609497ab 2728 0, cyls, heads, secs,
e4bcb14c
TS
2729 translation == BIOS_ATA_TRANSLATION_LBA ?
2730 ",trans=lba" :
2731 translation == BIOS_ATA_TRANSLATION_NONE ?
2732 ",trans=none" : "");
2733 break;
cd6f1169 2734 case QEMU_OPTION_hdb:
cc1daa40
FB
2735 case QEMU_OPTION_hdc:
2736 case QEMU_OPTION_hdd:
609497ab 2737 drive_add(optarg, HD_ALIAS, popt->index - QEMU_OPTION_hda);
fc01f7e7 2738 break;
e4bcb14c 2739 case QEMU_OPTION_drive:
609497ab 2740 drive_add(NULL, "%s", optarg);
e4bcb14c 2741 break;
d058fe03
GH
2742 case QEMU_OPTION_set:
2743 if (qemu_set_option(optarg) != 0)
2744 exit(1);
2745 break;
d0fef6fb
GH
2746 case QEMU_OPTION_global:
2747 if (qemu_global_option(optarg) != 0)
2748 exit(1);
2749 break;
3e3d5815 2750 case QEMU_OPTION_mtdblock:
609497ab 2751 drive_add(optarg, MTD_ALIAS);
3e3d5815 2752 break;
a1bb27b1 2753 case QEMU_OPTION_sd:
609497ab 2754 drive_add(optarg, SD_ALIAS);
a1bb27b1 2755 break;
86f55663 2756 case QEMU_OPTION_pflash:
609497ab 2757 drive_add(optarg, PFLASH_ALIAS);
86f55663 2758 break;
cd6f1169 2759 case QEMU_OPTION_snapshot:
33e3963e
FB
2760 snapshot = 1;
2761 break;
cd6f1169 2762 case QEMU_OPTION_hdachs:
330d0414 2763 {
330d0414
FB
2764 const char *p;
2765 p = optarg;
2766 cyls = strtol(p, (char **)&p, 0);
46d4767d
FB
2767 if (cyls < 1 || cyls > 16383)
2768 goto chs_fail;
330d0414
FB
2769 if (*p != ',')
2770 goto chs_fail;
2771 p++;
2772 heads = strtol(p, (char **)&p, 0);
46d4767d
FB
2773 if (heads < 1 || heads > 16)
2774 goto chs_fail;
330d0414
FB
2775 if (*p != ',')
2776 goto chs_fail;
2777 p++;
2778 secs = strtol(p, (char **)&p, 0);
46d4767d
FB
2779 if (secs < 1 || secs > 63)
2780 goto chs_fail;
2781 if (*p == ',') {
2782 p++;
2783 if (!strcmp(p, "none"))
2784 translation = BIOS_ATA_TRANSLATION_NONE;
2785 else if (!strcmp(p, "lba"))
2786 translation = BIOS_ATA_TRANSLATION_LBA;
2787 else if (!strcmp(p, "auto"))
2788 translation = BIOS_ATA_TRANSLATION_AUTO;
2789 else
2790 goto chs_fail;
2791 } else if (*p != '\0') {
c4b1fcc0 2792 chs_fail:
46d4767d
FB
2793 fprintf(stderr, "qemu: invalid physical CHS format\n");
2794 exit(1);
c4b1fcc0 2795 }
9dfd7c7a
GH
2796 if (hda_opts != NULL) {
2797 char num[16];
2798 snprintf(num, sizeof(num), "%d", cyls);
2799 qemu_opt_set(hda_opts, "cyls", num);
2800 snprintf(num, sizeof(num), "%d", heads);
2801 qemu_opt_set(hda_opts, "heads", num);
2802 snprintf(num, sizeof(num), "%d", secs);
2803 qemu_opt_set(hda_opts, "secs", num);
2804 if (translation == BIOS_ATA_TRANSLATION_LBA)
2805 qemu_opt_set(hda_opts, "trans", "lba");
2806 if (translation == BIOS_ATA_TRANSLATION_NONE)
2807 qemu_opt_set(hda_opts, "trans", "none");
2808 }
330d0414
FB
2809 }
2810 break;
268a362c
AL
2811 case QEMU_OPTION_numa:
2812 if (nb_numa_nodes >= MAX_NODES) {
2813 fprintf(stderr, "qemu: too many NUMA nodes\n");
2814 exit(1);
2815 }
2816 numa_add(optarg);
2817 break;
cd6f1169 2818 case QEMU_OPTION_nographic:
993fbfdb 2819 display_type = DT_NOGRAPHIC;
a20dd508 2820 break;
4d3b6f6e
AZ
2821#ifdef CONFIG_CURSES
2822 case QEMU_OPTION_curses:
993fbfdb 2823 display_type = DT_CURSES;
4d3b6f6e
AZ
2824 break;
2825#endif
a171fe39
AZ
2826 case QEMU_OPTION_portrait:
2827 graphic_rotate = 1;
2828 break;
cd6f1169 2829 case QEMU_OPTION_kernel:
a20dd508
FB
2830 kernel_filename = optarg;
2831 break;
cd6f1169 2832 case QEMU_OPTION_append:
a20dd508 2833 kernel_cmdline = optarg;
313aa567 2834 break;
cd6f1169 2835 case QEMU_OPTION_cdrom:
609497ab 2836 drive_add(optarg, CDROM_ALIAS);
36b486bb 2837 break;
cd6f1169 2838 case QEMU_OPTION_boot:
28c5af54 2839 {
ef3adf68 2840 static const char * const params[] = {
95387491 2841 "order", "once", "menu", NULL
ef3adf68
JK
2842 };
2843 char buf[sizeof(boot_devices)];
e0f084bf 2844 char *standard_boot_devices;
ef3adf68
JK
2845 int legacy = 0;
2846
2847 if (!strchr(optarg, '=')) {
2848 legacy = 1;
2849 pstrcpy(buf, sizeof(buf), optarg);
2850 } else if (check_params(buf, sizeof(buf), params, optarg) < 0) {
2851 fprintf(stderr,
2852 "qemu: unknown boot parameter '%s' in '%s'\n",
2853 buf, optarg);
2854 exit(1);
2855 }
2856
2857 if (legacy ||
2858 get_param_value(buf, sizeof(buf), "order", optarg)) {
4e9e9d6e 2859 validate_bootdevices(buf);
ef3adf68 2860 pstrcpy(boot_devices, sizeof(boot_devices), buf);
28c5af54 2861 }
e0f084bf
JK
2862 if (!legacy) {
2863 if (get_param_value(buf, sizeof(buf),
2864 "once", optarg)) {
4e9e9d6e 2865 validate_bootdevices(buf);
e0f084bf
JK
2866 standard_boot_devices = qemu_strdup(boot_devices);
2867 pstrcpy(boot_devices, sizeof(boot_devices), buf);
2868 qemu_register_reset(restore_boot_devices,
2869 standard_boot_devices);
2870 }
95387491
JK
2871 if (get_param_value(buf, sizeof(buf),
2872 "menu", optarg)) {
2873 if (!strcmp(buf, "on")) {
2874 boot_menu = 1;
2875 } else if (!strcmp(buf, "off")) {
2876 boot_menu = 0;
2877 } else {
2878 fprintf(stderr,
2879 "qemu: invalid option value '%s'\n",
2880 buf);
2881 exit(1);
2882 }
2883 }
e0f084bf 2884 }
36b486bb
FB
2885 }
2886 break;
cd6f1169 2887 case QEMU_OPTION_fda:
cd6f1169 2888 case QEMU_OPTION_fdb:
609497ab 2889 drive_add(optarg, FD_ALIAS, popt->index - QEMU_OPTION_fda);
c45886db 2890 break;
52ca8d6a
FB
2891 case QEMU_OPTION_no_fd_bootchk:
2892 fd_bootchk = 0;
2893 break;
a1ea458f
MM
2894 case QEMU_OPTION_netdev:
2895 if (net_client_parse(&qemu_netdev_opts, optarg) == -1) {
2896 exit(1);
2897 }
2898 break;
7c9d8e07 2899 case QEMU_OPTION_net:
7f161aae 2900 if (net_client_parse(&qemu_net_opts, optarg) == -1) {
c4b1fcc0
FB
2901 exit(1);
2902 }
702c651c 2903 break;
c7f74643
FB
2904#ifdef CONFIG_SLIRP
2905 case QEMU_OPTION_tftp:
ad196a9d 2906 legacy_tftp_prefix = optarg;
9bf05444 2907 break;
47d5d01a 2908 case QEMU_OPTION_bootp:
ad196a9d 2909 legacy_bootp_filename = optarg;
47d5d01a 2910 break;
c94c8d64 2911#ifndef _WIN32
9d728e8c 2912 case QEMU_OPTION_smb:
0752706d
MA
2913 if (net_slirp_smb(optarg) < 0)
2914 exit(1);
9d728e8c 2915 break;
c94c8d64 2916#endif
9bf05444 2917 case QEMU_OPTION_redir:
0752706d
MA
2918 if (net_slirp_redir(optarg) < 0)
2919 exit(1);
9bf05444 2920 break;
c7f74643 2921#endif
dc72ac14 2922 case QEMU_OPTION_bt:
bd3c948d 2923 add_device_config(DEV_BT, optarg);
dc72ac14 2924 break;
1d14ffa9 2925 case QEMU_OPTION_audio_help:
ad96090a
BS
2926 if (!(audio_available())) {
2927 printf("Option %s not supported for this target\n", popt->name);
2928 exit(1);
2929 }
1d14ffa9
FB
2930 AUD_help ();
2931 exit (0);
2932 break;
2933 case QEMU_OPTION_soundhw:
ad96090a
BS
2934 if (!(audio_available())) {
2935 printf("Option %s not supported for this target\n", popt->name);
2936 exit(1);
2937 }
1d14ffa9
FB
2938 select_soundhw (optarg);
2939 break;
cd6f1169 2940 case QEMU_OPTION_h:
15f82208 2941 help(0);
cd6f1169 2942 break;
9bd7e6d9
PB
2943 case QEMU_OPTION_version:
2944 version();
2945 exit(0);
2946 break;
00f82b8a
AJ
2947 case QEMU_OPTION_m: {
2948 uint64_t value;
2949 char *ptr;
2950
2951 value = strtoul(optarg, &ptr, 10);
2952 switch (*ptr) {
2953 case 0: case 'M': case 'm':
2954 value <<= 20;
2955 break;
2956 case 'G': case 'g':
2957 value <<= 30;
2958 break;
2959 default:
2960 fprintf(stderr, "qemu: invalid ram size: %s\n", optarg);
cd6f1169
FB
2961 exit(1);
2962 }
00f82b8a
AJ
2963
2964 /* On 32-bit hosts, QEMU is limited by virtual address space */
4a1418e0 2965 if (value > (2047 << 20) && HOST_LONG_BITS == 32) {
00f82b8a
AJ
2966 fprintf(stderr, "qemu: at most 2047 MB RAM can be simulated\n");
2967 exit(1);
2968 }
c227f099 2969 if (value != (uint64_t)(ram_addr_t)value) {
00f82b8a
AJ
2970 fprintf(stderr, "qemu: ram size too large\n");
2971 exit(1);
2972 }
2973 ram_size = value;
cd6f1169 2974 break;
00f82b8a 2975 }
c902760f
MT
2976 case QEMU_OPTION_mempath:
2977 mem_path = optarg;
2978 break;
2979#ifdef MAP_POPULATE
2980 case QEMU_OPTION_mem_prealloc:
2981 mem_prealloc = 1;
2982 break;
2983#endif
cd6f1169 2984 case QEMU_OPTION_d:
de06f8d1 2985 set_cpu_log(optarg);
cd6f1169 2986 break;
cd6f1169 2987 case QEMU_OPTION_s:
59030a8c 2988 gdbstub_dev = "tcp::" DEFAULT_GDBSTUB_PORT;
cd6f1169 2989 break;
59030a8c
AL
2990 case QEMU_OPTION_gdb:
2991 gdbstub_dev = optarg;
cd6f1169 2992 break;
cd6f1169 2993 case QEMU_OPTION_L:
5cea8590 2994 data_dir = optarg;
cd6f1169 2995 break;
1192dad8
JM
2996 case QEMU_OPTION_bios:
2997 bios_name = optarg;
2998 break;
1b530a6d
AJ
2999 case QEMU_OPTION_singlestep:
3000 singlestep = 1;
3001 break;
cd6f1169 3002 case QEMU_OPTION_S:
3c07f8e8 3003 autostart = 0;
cd6f1169 3004 break;
3d11d0eb
FB
3005 case QEMU_OPTION_k:
3006 keyboard_layout = optarg;
3007 break;
ee22c2f7
FB
3008 case QEMU_OPTION_localtime:
3009 rtc_utc = 0;
3010 break;
3893c124 3011 case QEMU_OPTION_vga:
3012 select_vgahw (optarg);
1bfe856e 3013 break;
e9b137c2
FB
3014 case QEMU_OPTION_g:
3015 {
3016 const char *p;
3017 int w, h, depth;
3018 p = optarg;
3019 w = strtol(p, (char **)&p, 10);
3020 if (w <= 0) {
3021 graphic_error:
3022 fprintf(stderr, "qemu: invalid resolution or depth\n");
3023 exit(1);
3024 }
3025 if (*p != 'x')
3026 goto graphic_error;
3027 p++;
3028 h = strtol(p, (char **)&p, 10);
3029 if (h <= 0)
3030 goto graphic_error;
3031 if (*p == 'x') {
3032 p++;
3033 depth = strtol(p, (char **)&p, 10);
5fafdf24 3034 if (depth != 8 && depth != 15 && depth != 16 &&
e9b137c2
FB
3035 depth != 24 && depth != 32)
3036 goto graphic_error;
3037 } else if (*p == '\0') {
3038 depth = graphic_depth;
3039 } else {
3040 goto graphic_error;
3041 }
3b46e624 3042
e9b137c2
FB
3043 graphic_width = w;
3044 graphic_height = h;
3045 graphic_depth = depth;
3046 }
3047 break;
20d8a3ed
TS
3048 case QEMU_OPTION_echr:
3049 {
3050 char *r;
3051 term_escape_char = strtol(optarg, &r, 0);
3052 if (r == optarg)
3053 printf("Bad argument to echr\n");
3054 break;
3055 }
82c643ff 3056 case QEMU_OPTION_monitor:
6ca5582d
GH
3057 monitor_parse(optarg, "readline");
3058 default_monitor = 0;
3059 break;
3060 case QEMU_OPTION_qmp:
3061 monitor_parse(optarg, "control");
2d114dc1 3062 default_monitor = 0;
82c643ff 3063 break;
22a0e04b 3064 case QEMU_OPTION_mon:
8212c64f 3065 opts = qemu_opts_parse(&qemu_mon_opts, optarg, 1);
22a0e04b 3066 if (!opts) {
22a0e04b
GH
3067 exit(1);
3068 }
2d114dc1 3069 default_monitor = 0;
22a0e04b 3070 break;
191bc01b 3071 case QEMU_OPTION_chardev:
8212c64f 3072 opts = qemu_opts_parse(&qemu_chardev_opts, optarg, 1);
191bc01b 3073 if (!opts) {
191bc01b
GH
3074 exit(1);
3075 }
191bc01b 3076 break;
74db920c
GS
3077#ifdef CONFIG_LINUX
3078 case QEMU_OPTION_fsdev:
3079 opts = qemu_opts_parse(&qemu_fsdev_opts, optarg, 1);
3080 if (!opts) {
3081 fprintf(stderr, "parse error: %s\n", optarg);
3082 exit(1);
3083 }
3084 break;
3d54abc7
GS
3085 case QEMU_OPTION_virtfs: {
3086 char *arg_fsdev = NULL;
3087 char *arg_9p = NULL;
3088 int len = 0;
3089
3090 opts = qemu_opts_parse(&qemu_virtfs_opts, optarg, 1);
3091 if (!opts) {
3092 fprintf(stderr, "parse error: %s\n", optarg);
3093 exit(1);
3094 }
3095
3096 len = strlen(",id=,path=");
3097 len += strlen(qemu_opt_get(opts, "fstype"));
3098 len += strlen(qemu_opt_get(opts, "mount_tag"));
3099 len += strlen(qemu_opt_get(opts, "path"));
3100 arg_fsdev = qemu_malloc((len + 1) * sizeof(*arg_fsdev));
3101
3102 if (!arg_fsdev) {
3103 fprintf(stderr, "No memory to parse -fsdev for %s\n",
3104 optarg);
3105 exit(1);
3106 }
3107
3108 sprintf(arg_fsdev, "%s,id=%s,path=%s",
3109 qemu_opt_get(opts, "fstype"),
3110 qemu_opt_get(opts, "mount_tag"),
3111 qemu_opt_get(opts, "path"));
3112
3113 len = strlen("virtio-9p-pci,fsdev=,mount_tag=");
3114 len += 2*strlen(qemu_opt_get(opts, "mount_tag"));
3115 arg_9p = qemu_malloc((len + 1) * sizeof(*arg_9p));
3116
3117 if (!arg_9p) {
3118 fprintf(stderr, "No memory to parse -device for %s\n",
3119 optarg);
3120 exit(1);
3121 }
3122
3123 sprintf(arg_9p, "virtio-9p-pci,fsdev=%s,mount_tag=%s",
3124 qemu_opt_get(opts, "mount_tag"),
3125 qemu_opt_get(opts, "mount_tag"));
3126
3127 if (!qemu_opts_parse(&qemu_fsdev_opts, arg_fsdev, 1)) {
3128 fprintf(stderr, "parse error [fsdev]: %s\n", optarg);
3129 exit(1);
3130 }
3131
3132 if (!qemu_opts_parse(&qemu_device_opts, arg_9p, 1)) {
3133 fprintf(stderr, "parse error [device]: %s\n", optarg);
3134 exit(1);
3135 }
3136
3137 qemu_free(arg_fsdev);
3138 qemu_free(arg_9p);
3139 break;
3140 }
74db920c 3141#endif
82c643ff 3142 case QEMU_OPTION_serial:
998bbd74
GH
3143 add_device_config(DEV_SERIAL, optarg);
3144 default_serial = 0;
18141ed6
JK
3145 if (strncmp(optarg, "mon:", 4) == 0) {
3146 default_monitor = 0;
3147 }
82c643ff 3148 break;
9dd986cc 3149 case QEMU_OPTION_watchdog:
09aaa160
MA
3150 if (watchdog) {
3151 fprintf(stderr,
3152 "qemu: only one watchdog option may be given\n");
3153 return 1;
3154 }
3155 watchdog = optarg;
9dd986cc
RJ
3156 break;
3157 case QEMU_OPTION_watchdog_action:
3158 if (select_watchdog_action(optarg) == -1) {
3159 fprintf(stderr, "Unknown -watchdog-action parameter\n");
3160 exit(1);
3161 }
3162 break;
51ecf136 3163 case QEMU_OPTION_virtiocon:
aee1b935
GH
3164 add_device_config(DEV_VIRTCON, optarg);
3165 default_virtcon = 0;
18141ed6
JK
3166 if (strncmp(optarg, "mon:", 4) == 0) {
3167 default_monitor = 0;
3168 }
51ecf136 3169 break;
6508fe59 3170 case QEMU_OPTION_parallel:
6a5e8b0e
GH
3171 add_device_config(DEV_PARALLEL, optarg);
3172 default_parallel = 0;
18141ed6
JK
3173 if (strncmp(optarg, "mon:", 4) == 0) {
3174 default_monitor = 0;
3175 }
6508fe59 3176 break;
c9f398e5
PA
3177 case QEMU_OPTION_debugcon:
3178 add_device_config(DEV_DEBUGCON, optarg);
3179 break;
d63d307f
FB
3180 case QEMU_OPTION_loadvm:
3181 loadvm = optarg;
3182 break;
3183 case QEMU_OPTION_full_screen:
3184 full_screen = 1;
3185 break;
667accab 3186#ifdef CONFIG_SDL
43523e93
TS
3187 case QEMU_OPTION_no_frame:
3188 no_frame = 1;
3189 break;
3780e197
TS
3190 case QEMU_OPTION_alt_grab:
3191 alt_grab = 1;
3192 break;
0ca9f8a4
DK
3193 case QEMU_OPTION_ctrl_grab:
3194 ctrl_grab = 1;
3195 break;
667accab
TS
3196 case QEMU_OPTION_no_quit:
3197 no_quit = 1;
3198 break;
7d957bd8 3199 case QEMU_OPTION_sdl:
993fbfdb 3200 display_type = DT_SDL;
7d957bd8 3201 break;
667accab 3202#endif
f7cce898 3203 case QEMU_OPTION_pidfile:
93815bc2 3204 pid_file = optarg;
f7cce898 3205 break;
a09db21f
FB
3206 case QEMU_OPTION_win2k_hack:
3207 win2k_install_hack = 1;
3208 break;
73822ec8
AL
3209 case QEMU_OPTION_rtc_td_hack:
3210 rtc_td_hack = 1;
3211 break;
8a92ea2f 3212 case QEMU_OPTION_acpitable:
de06f8d1 3213 do_acpitable_option(optarg);
8a92ea2f 3214 break;
b6f6e3d3 3215 case QEMU_OPTION_smbios:
de06f8d1 3216 do_smbios_option(optarg);
b6f6e3d3 3217 break;
7ba1e619
AL
3218 case QEMU_OPTION_enable_kvm:
3219 kvm_allowed = 1;
7ba1e619 3220 break;
bb36d470
FB
3221 case QEMU_OPTION_usb:
3222 usb_enabled = 1;
3223 break;
a594cfbf
FB
3224 case QEMU_OPTION_usbdevice:
3225 usb_enabled = 1;
bd3c948d
GH
3226 add_device_config(DEV_USB, optarg);
3227 break;
3228 case QEMU_OPTION_device:
8212c64f 3229 if (!qemu_opts_parse(&qemu_device_opts, optarg, 1)) {
f31d07d1
GH
3230 exit(1);
3231 }
a594cfbf 3232 break;
6a00d601 3233 case QEMU_OPTION_smp:
dc6b1c09 3234 smp_parse(optarg);
b2097003 3235 if (smp_cpus < 1) {
6a00d601
FB
3236 fprintf(stderr, "Invalid number of CPUs\n");
3237 exit(1);
3238 }
6be68d7e
JS
3239 if (max_cpus < smp_cpus) {
3240 fprintf(stderr, "maxcpus must be equal to or greater than "
3241 "smp\n");
3242 exit(1);
3243 }
3244 if (max_cpus > 255) {
3245 fprintf(stderr, "Unsupported number of maxcpus\n");
3246 exit(1);
3247 }
6a00d601 3248 break;
24236869 3249 case QEMU_OPTION_vnc:
993fbfdb 3250 display_type = DT_VNC;
73fc9742 3251 vnc_display = optarg;
24236869 3252 break;
6515b203
FB
3253 case QEMU_OPTION_no_acpi:
3254 acpi_enabled = 0;
3255 break;
16b29ae1
AL
3256 case QEMU_OPTION_no_hpet:
3257 no_hpet = 1;
3258 break;
7d4c3d53
MA
3259 case QEMU_OPTION_balloon:
3260 if (balloon_parse(optarg) < 0) {
3261 fprintf(stderr, "Unknown -balloon argument %s\n", optarg);
3262 exit(1);
3263 }
df97b920 3264 break;
d1beab82
FB
3265 case QEMU_OPTION_no_reboot:
3266 no_reboot = 1;
3267 break;
b2f76161
AJ
3268 case QEMU_OPTION_no_shutdown:
3269 no_shutdown = 1;
3270 break;
9467cd46
AZ
3271 case QEMU_OPTION_show_cursor:
3272 cursor_hide = 0;
3273 break;
8fcb1b90
BS
3274 case QEMU_OPTION_uuid:
3275 if(qemu_uuid_parse(optarg, qemu_uuid) < 0) {
3276 fprintf(stderr, "Fail to parse UUID string."
3277 " Wrong format.\n");
3278 exit(1);
3279 }
3280 break;
5824d651 3281#ifndef _WIN32
71e3ceb8
TS
3282 case QEMU_OPTION_daemonize:
3283 daemonize = 1;
3284 break;
5824d651 3285#endif
9ae02555
TS
3286 case QEMU_OPTION_option_rom:
3287 if (nb_option_roms >= MAX_OPTION_ROMS) {
3288 fprintf(stderr, "Too many option ROMs\n");
3289 exit(1);
3290 }
3291 option_rom[nb_option_roms] = optarg;
3292 nb_option_roms++;
3293 break;
8e71621f
PB
3294 case QEMU_OPTION_semihosting:
3295 semihosting_enabled = 1;
3296 break;
c35734b2 3297 case QEMU_OPTION_name:
1889465a
AK
3298 qemu_name = qemu_strdup(optarg);
3299 {
3300 char *p = strchr(qemu_name, ',');
3301 if (p != NULL) {
3302 *p++ = 0;
3303 if (strncmp(p, "process=", 8)) {
3304 fprintf(stderr, "Unknown subargument %s to -name", p);
3305 exit(1);
3306 }
3307 p += 8;
3308 set_proc_name(p);
3309 }
3310 }
c35734b2 3311 break;
66508601
BS
3312 case QEMU_OPTION_prom_env:
3313 if (nb_prom_envs >= MAX_PROM_ENVS) {
3314 fprintf(stderr, "Too many prom variables\n");
3315 exit(1);
3316 }
3317 prom_envs[nb_prom_envs] = optarg;
3318 nb_prom_envs++;
3319 break;
2b8f2d41
AZ
3320 case QEMU_OPTION_old_param:
3321 old_param = 1;
05ebd537 3322 break;
f3dcfada
TS
3323 case QEMU_OPTION_clock:
3324 configure_alarms(optarg);
3325 break;
7e0af5d0 3326 case QEMU_OPTION_startdate:
1ed2fc1f
JK
3327 configure_rtc_date_offset(optarg, 1);
3328 break;
3329 case QEMU_OPTION_rtc:
8212c64f 3330 opts = qemu_opts_parse(&qemu_rtc_opts, optarg, 0);
1ed2fc1f 3331 if (!opts) {
1ed2fc1f 3332 exit(1);
7e0af5d0 3333 }
1ed2fc1f 3334 configure_rtc(opts);
7e0af5d0 3335 break;
26a5f13b
FB
3336 case QEMU_OPTION_tb_size:
3337 tb_size = strtol(optarg, NULL, 0);
3338 if (tb_size < 0)
3339 tb_size = 0;
3340 break;
2e70f6ef 3341 case QEMU_OPTION_icount:
4e3de9e9 3342 icount_option = optarg;
2e70f6ef 3343 break;
5bb7910a
AL
3344 case QEMU_OPTION_incoming:
3345 incoming = optarg;
3346 break;
d8c208dd
GH
3347 case QEMU_OPTION_nodefaults:
3348 default_serial = 0;
3349 default_parallel = 0;
aee1b935 3350 default_virtcon = 0;
d8c208dd
GH
3351 default_monitor = 0;
3352 default_vga = 0;
cb4522cc 3353 default_net = 0;
ac33f8fa
GH
3354 default_floppy = 0;
3355 default_cdrom = 0;
3356 default_sdcard = 0;
d8c208dd 3357 break;
5824d651 3358#ifndef _WIN32
0858532e
AL
3359 case QEMU_OPTION_chroot:
3360 chroot_dir = optarg;
3361 break;
3362 case QEMU_OPTION_runas:
3363 run_as = optarg;
3364 break;
e37630ca 3365#endif
e37630ca 3366 case QEMU_OPTION_xen_domid:
ad96090a
BS
3367 if (!(xen_available())) {
3368 printf("Option %s not supported for this target\n", popt->name);
3369 exit(1);
3370 }
e37630ca
AL
3371 xen_domid = atoi(optarg);
3372 break;
3373 case QEMU_OPTION_xen_create:
ad96090a
BS
3374 if (!(xen_available())) {
3375 printf("Option %s not supported for this target\n", popt->name);
3376 exit(1);
3377 }
e37630ca
AL
3378 xen_mode = XEN_CREATE;
3379 break;
3380 case QEMU_OPTION_xen_attach:
ad96090a
BS
3381 if (!(xen_available())) {
3382 printf("Option %s not supported for this target\n", popt->name);
3383 exit(1);
3384 }
e37630ca
AL
3385 xen_mode = XEN_ATTACH;
3386 break;
715a664a
GH
3387 case QEMU_OPTION_readconfig:
3388 {
dcfb0939
KW
3389 int ret = qemu_read_config_file(optarg);
3390 if (ret < 0) {
3391 fprintf(stderr, "read config %s: %s\n", optarg,
3392 strerror(-ret));
715a664a
GH
3393 exit(1);
3394 }
715a664a
GH
3395 break;
3396 }
3397 case QEMU_OPTION_writeconfig:
3398 {
3399 FILE *fp;
3400 if (strcmp(optarg, "-") == 0) {
3401 fp = stdout;
3402 } else {
3403 fp = fopen(optarg, "w");
3404 if (fp == NULL) {
3405 fprintf(stderr, "open %s: %s\n", optarg, strerror(errno));
3406 exit(1);
3407 }
3408 }
3409 qemu_config_write(fp);
3410 fclose(fp);
3411 break;
3412 }
cd6f1169 3413 }
0824d6fc
FB
3414 }
3415 }
0f0bc3f1 3416 loc_set_none();
330d0414 3417
5cea8590
PB
3418 /* If no data_dir is specified then try to find it relative to the
3419 executable path. */
3420 if (!data_dir) {
3421 data_dir = find_datadir(argv[0]);
3422 }
3423 /* If all else fails use the install patch specified when building. */
3424 if (!data_dir) {
3425 data_dir = CONFIG_QEMU_SHAREDIR;
3426 }
3427
6be68d7e
JS
3428 /*
3429 * Default to max_cpus = smp_cpus, in case the user doesn't
3430 * specify a max_cpus value.
3431 */
3432 if (!max_cpus)
3433 max_cpus = smp_cpus;
3434
3d878caa 3435 machine->max_cpus = machine->max_cpus ?: 1; /* Default to UP */
b2097003
AL
3436 if (smp_cpus > machine->max_cpus) {
3437 fprintf(stderr, "Number of SMP cpus requested (%d), exceeds max cpus "
3438 "supported by machine `%s' (%d)\n", smp_cpus, machine->name,
3439 machine->max_cpus);
3440 exit(1);
3441 }
3442
998bbd74 3443 qemu_opts_foreach(&qemu_device_opts, default_driver_check, NULL, 0);
d8bcbabf 3444 qemu_opts_foreach(&qemu_global_opts, default_driver_check, NULL, 0);
998bbd74 3445
986c5f78
GH
3446 if (machine->no_serial) {
3447 default_serial = 0;
3448 }
3449 if (machine->no_parallel) {
3450 default_parallel = 0;
3451 }
3452 if (!machine->use_virtcon) {
3453 default_virtcon = 0;
3454 }
3455 if (machine->no_vga) {
3456 default_vga = 0;
3457 }
ac33f8fa
GH
3458 if (machine->no_floppy) {
3459 default_floppy = 0;
3460 }
3461 if (machine->no_cdrom) {
3462 default_cdrom = 0;
3463 }
3464 if (machine->no_sdcard) {
3465 default_sdcard = 0;
3466 }
986c5f78 3467
993fbfdb 3468 if (display_type == DT_NOGRAPHIC) {
6a5e8b0e
GH
3469 if (default_parallel)
3470 add_device_config(DEV_PARALLEL, "null");
e1c09175
GH
3471 if (default_serial && default_monitor) {
3472 add_device_config(DEV_SERIAL, "mon:stdio");
986c5f78
GH
3473 } else if (default_virtcon && default_monitor) {
3474 add_device_config(DEV_VIRTCON, "mon:stdio");
e1c09175
GH
3475 } else {
3476 if (default_serial)
3477 add_device_config(DEV_SERIAL, "stdio");
986c5f78
GH
3478 if (default_virtcon)
3479 add_device_config(DEV_VIRTCON, "stdio");
e1c09175 3480 if (default_monitor)
6ca5582d 3481 monitor_parse("stdio", "readline");
e1c09175 3482 }
998bbd74
GH
3483 } else {
3484 if (default_serial)
3485 add_device_config(DEV_SERIAL, "vc:80Cx24C");
6a5e8b0e
GH
3486 if (default_parallel)
3487 add_device_config(DEV_PARALLEL, "vc:80Cx24C");
abdeed06 3488 if (default_monitor)
6ca5582d 3489 monitor_parse("vc:80Cx24C", "readline");
38536da1
AG
3490 if (default_virtcon)
3491 add_device_config(DEV_VIRTCON, "vc:80Cx24C");
bc0129d9 3492 }
64465297
GH
3493 if (default_vga)
3494 vga_interface_type = VGA_CIRRUS;
bc0129d9 3495
a5829fd9
T
3496 socket_init();
3497
1a688d3b
GH
3498 if (qemu_opts_foreach(&qemu_chardev_opts, chardev_init_func, NULL, 1) != 0)
3499 exit(1);
74db920c
GS
3500#ifdef CONFIG_LINUX
3501 if (qemu_opts_foreach(&qemu_fsdev_opts, fsdev_init_func, NULL, 1) != 0) {
3502 exit(1);
3503 }
3504#endif
1a688d3b 3505
71e3ceb8 3506#ifndef _WIN32
71e3ceb8
TS
3507 if (daemonize) {
3508 pid_t pid;
3509
3510 if (pipe(fds) == -1)
3511 exit(1);
3512
3513 pid = fork();
3514 if (pid > 0) {
3515 uint8_t status;
3516 ssize_t len;
3517
3518 close(fds[1]);
3519
3520 again:
93815bc2
TS
3521 len = read(fds[0], &status, 1);
3522 if (len == -1 && (errno == EINTR))
3523 goto again;
3524
3525 if (len != 1)
3526 exit(1);
3527 else if (status == 1) {
850810d0 3528 fprintf(stderr, "Could not acquire pidfile: %s\n", strerror(errno));
93815bc2
TS
3529 exit(1);
3530 } else
3531 exit(0);
71e3ceb8 3532 } else if (pid < 0)
93815bc2 3533 exit(1);
71e3ceb8 3534
40ff6d7e
KW
3535 close(fds[0]);
3536 qemu_set_cloexec(fds[1]);
3537
71e3ceb8
TS
3538 setsid();
3539
3540 pid = fork();
3541 if (pid > 0)
3542 exit(0);
3543 else if (pid < 0)
3544 exit(1);
3545
3546 umask(027);
71e3ceb8
TS
3547
3548 signal(SIGTSTP, SIG_IGN);
3549 signal(SIGTTOU, SIG_IGN);
3550 signal(SIGTTIN, SIG_IGN);
3551 }
099fe236 3552#endif
71e3ceb8 3553
aa26bb2d 3554 if (pid_file && qemu_create_pidfile(pid_file) != 0) {
099fe236 3555#ifndef _WIN32
93815bc2
TS
3556 if (daemonize) {
3557 uint8_t status = 1;
dc330e28
KS
3558 if (write(fds[1], &status, 1) != 1) {
3559 perror("daemonize. Writing to pipe\n");
3560 }
93815bc2 3561 } else
099fe236 3562#endif
850810d0 3563 fprintf(stderr, "Could not acquire pid file: %s\n", strerror(errno));
93815bc2
TS
3564 exit(1);
3565 }
3566
98c8573e
PB
3567 if (kvm_allowed) {
3568 int ret = kvm_init(smp_cpus);
214910a7 3569 if (ret < 0) {
98c8573e
PB
3570 if (!kvm_available()) {
3571 printf("KVM not supported for this target\n");
3572 } else {
3573 fprintf(stderr, "failed to initialize KVM: %s\n", strerror(-ret));
3574 }
214910a7
MT
3575 exit(1);
3576 }
3577 }
3578
3fcf7b6b
AL
3579 if (qemu_init_main_loop()) {
3580 fprintf(stderr, "qemu_init_main_loop failed\n");
3581 exit(1);
3582 }
a20dd508 3583 linux_boot = (kernel_filename != NULL);
6c41b272 3584
f8d39c01
TS
3585 if (!linux_boot && *kernel_cmdline != '\0') {
3586 fprintf(stderr, "-append only allowed with -kernel option\n");
3587 exit(1);
3588 }
3589
3590 if (!linux_boot && initrd_filename != NULL) {
3591 fprintf(stderr, "-initrd only allowed with -kernel option\n");
3592 exit(1);
3593 }
3594
bf65f53f
FN
3595#ifndef _WIN32
3596 /* Win32 doesn't support line-buffering and requires size >= 2 */
b118d61e 3597 setvbuf(stdout, NULL, _IOLBF, 0);
bf65f53f 3598#endif
3b46e624 3599
7183b4b4
AL
3600 if (init_timer_alarm() < 0) {
3601 fprintf(stderr, "could not initialize alarm timer\n");
3602 exit(1);
3603 }
4e3de9e9 3604 configure_icount(icount_option);
634fce96 3605
dc1c9fe8
MM
3606 if (net_init_clients() < 0) {
3607 exit(1);
702c651c 3608 }
f1510b2c 3609
dc72ac14 3610 /* init the bluetooth world */
bd3c948d
GH
3611 if (foreach_device_config(DEV_BT, bt_parse))
3612 exit(1);
dc72ac14 3613
0824d6fc 3614 /* init the memory */
94a6b54f
PB
3615 if (ram_size == 0)
3616 ram_size = DEFAULT_RAM_SIZE * 1024 * 1024;
9ae02555 3617
26a5f13b
FB
3618 /* init the dynamic translator */
3619 cpu_exec_init_all(tb_size * 1024 * 1024);
3620
eb852011 3621 bdrv_init_with_whitelist();
c4b1fcc0 3622
c163b5ca 3623 blk_mig_init();
3624
ac33f8fa 3625 if (default_cdrom) {
aa40fc9c
GH
3626 /* we always create the cdrom drive, even if no disk is there */
3627 drive_add(NULL, CDROM_ALIAS);
ac33f8fa 3628 }
c4b1fcc0 3629
ac33f8fa 3630 if (default_floppy) {
aa40fc9c
GH
3631 /* we always create at least one floppy */
3632 drive_add(NULL, FD_ALIAS, 0);
ac33f8fa 3633 }
86f55663 3634
ac33f8fa 3635 if (default_sdcard) {
aa40fc9c
GH
3636 /* we always create one sd slot, even if no card is in it */
3637 drive_add(NULL, SD_ALIAS);
3638 }
9d413d1d 3639
e4bcb14c 3640 /* open the virtual block devices */
9dfd7c7a 3641 if (snapshot)
7282a033
GH
3642 qemu_opts_foreach(&qemu_drive_opts, drive_enable_snapshot, NULL, 0);
3643 if (qemu_opts_foreach(&qemu_drive_opts, drive_init_func, machine, 1) != 0)
9dfd7c7a 3644 exit(1);
3e3d5815 3645
c163b5ca 3646 register_savevm_live("ram", 0, 3, NULL, ram_save_live, NULL,
3647 ram_load, NULL);
8a7ddc38 3648
268a362c
AL
3649 if (nb_numa_nodes > 0) {
3650 int i;
3651
3652 if (nb_numa_nodes > smp_cpus) {
3653 nb_numa_nodes = smp_cpus;
3654 }
3655
3656 /* If no memory size if given for any node, assume the default case
3657 * and distribute the available memory equally across all nodes
3658 */
3659 for (i = 0; i < nb_numa_nodes; i++) {
3660 if (node_mem[i] != 0)
3661 break;
3662 }
3663 if (i == nb_numa_nodes) {
3664 uint64_t usedmem = 0;
3665
3666 /* On Linux, the each node's border has to be 8MB aligned,
3667 * the final node gets the rest.
3668 */
3669 for (i = 0; i < nb_numa_nodes - 1; i++) {
3670 node_mem[i] = (ram_size / nb_numa_nodes) & ~((1 << 23UL) - 1);
3671 usedmem += node_mem[i];
3672 }
3673 node_mem[i] = ram_size - usedmem;
3674 }
3675
3676 for (i = 0; i < nb_numa_nodes; i++) {
3677 if (node_cpumask[i] != 0)
3678 break;
3679 }
3680 /* assigning the VCPUs round-robin is easier to implement, guest OSes
3681 * must cope with this anyway, because there are BIOSes out there in
3682 * real machines which also use this scheme.
3683 */
3684 if (i == nb_numa_nodes) {
3685 for (i = 0; i < smp_cpus; i++) {
3686 node_cpumask[i % nb_numa_nodes] |= 1 << i;
3687 }
3688 }
3689 }
3690
157b9319
JK
3691 if (qemu_opts_foreach(&qemu_mon_opts, mon_init_func, NULL, 1) != 0) {
3692 exit(1);
3693 }
3694
998bbd74
GH
3695 if (foreach_device_config(DEV_SERIAL, serial_parse) < 0)
3696 exit(1);
6a5e8b0e
GH
3697 if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0)
3698 exit(1);
aee1b935
GH
3699 if (foreach_device_config(DEV_VIRTCON, virtcon_parse) < 0)
3700 exit(1);
c9f398e5
PA
3701 if (foreach_device_config(DEV_DEBUGCON, debugcon_parse) < 0)
3702 exit(1);
2796dae0 3703
aae9460e
PB
3704 module_call_init(MODULE_INIT_DEVICE);
3705
ff952ba2
MA
3706 if (qemu_opts_foreach(&qemu_device_opts, device_help_func, NULL, 0) != 0)
3707 exit(0);
3708
09aaa160
MA
3709 if (watchdog) {
3710 i = select_watchdog(watchdog);
3711 if (i > 0)
3712 exit (i == 1 ? 1 : 0);
3713 }
3714
b6b61144 3715 if (machine->compat_props) {
458fb679 3716 qdev_prop_register_global_list(machine->compat_props);
b6b61144 3717 }
d0fef6fb
GH
3718 qemu_add_globals();
3719
fbe1b595 3720 machine->init(ram_size, boot_devices,
3023f332
AL
3721 kernel_filename, kernel_cmdline, initrd_filename, cpu_model);
3722
ea375f9a 3723 cpu_synchronize_all_post_init();
268a362c 3724
67b3b71d
JQ
3725#ifndef _WIN32
3726 /* must be after terminal init, SDL library changes signal handlers */
3727 sighandler_setup();
3728#endif
3729
87d0a28e 3730 set_numa_modes();
268a362c 3731
6f338c34
AL
3732 current_machine = machine;
3733
3023f332
AL
3734 /* init USB devices */
3735 if (usb_enabled) {
0752706d
MA
3736 if (foreach_device_config(DEV_USB, usb_parse) < 0)
3737 exit(1);
3023f332
AL
3738 }
3739
bd3c948d 3740 /* init generic devices */
f31d07d1 3741 if (qemu_opts_foreach(&qemu_device_opts, device_init_func, NULL, 1) != 0)
bd3c948d
GH
3742 exit(1);
3743
668680f7
MA
3744 net_check_clients();
3745
3023f332 3746 /* just use the first displaystate for the moment */
b473df6e 3747 ds = get_displaystate();
993fbfdb
AL
3748
3749 if (display_type == DT_DEFAULT) {
3750#if defined(CONFIG_SDL) || defined(CONFIG_COCOA)
3751 display_type = DT_SDL;
3752#else
3753 display_type = DT_VNC;
3754 vnc_display = "localhost:0,to=99";
3755 show_vnc_port = 1;
3756#endif
3757 }
3758
3759
3760 switch (display_type) {
3761 case DT_NOGRAPHIC:
3762 break;
4d3b6f6e 3763#if defined(CONFIG_CURSES)
993fbfdb
AL
3764 case DT_CURSES:
3765 curses_display_init(ds, full_screen);
3766 break;
4d3b6f6e 3767#endif
5b0753e0 3768#if defined(CONFIG_SDL)
993fbfdb
AL
3769 case DT_SDL:
3770 sdl_display_init(ds, full_screen, no_frame);
3771 break;
5b0753e0 3772#elif defined(CONFIG_COCOA)
993fbfdb
AL
3773 case DT_SDL:
3774 cocoa_display_init(ds, full_screen);
3775 break;
313aa567 3776#endif
993fbfdb
AL
3777 case DT_VNC:
3778 vnc_display_init(ds);
3779 if (vnc_display_open(ds, vnc_display) < 0)
3780 exit(1);
f92f8afe 3781
993fbfdb
AL
3782 if (show_vnc_port) {
3783 printf("VNC server running on `%s'\n", vnc_display_local_addr(ds));
f92f8afe 3784 }
993fbfdb
AL
3785 break;
3786 default:
3787 break;
313aa567 3788 }
7d957bd8 3789 dpy_resize(ds);
5b08fc10 3790
3023f332
AL
3791 dcl = ds->listeners;
3792 while (dcl != NULL) {
3793 if (dcl->dpy_refresh != NULL) {
3794 ds->gui_timer = qemu_new_timer(rt_clock, gui_update, ds);
3795 qemu_mod_timer(ds->gui_timer, qemu_get_clock(rt_clock));
20d8a3ed 3796 }
3023f332 3797 dcl = dcl->next;
20d8a3ed 3798 }
3023f332 3799
993fbfdb 3800 if (display_type == DT_NOGRAPHIC || display_type == DT_VNC) {
9043b62d
BS
3801 nographic_timer = qemu_new_timer(rt_clock, nographic_update, NULL);
3802 qemu_mod_timer(nographic_timer, qemu_get_clock(rt_clock));
3803 }
3804
b473df6e 3805 text_consoles_set_display(ds);
2796dae0 3806
59030a8c
AL
3807 if (gdbstub_dev && gdbserver_start(gdbstub_dev) < 0) {
3808 fprintf(stderr, "qemu: could not open gdbserver on device '%s'\n",
3809 gdbstub_dev);
3810 exit(1);
45669e00 3811 }
45669e00 3812
3418bd25
GH
3813 qdev_machine_creation_done();
3814
15ff7705
GH
3815 if (rom_load_all() != 0) {
3816 fprintf(stderr, "rom loading failed\n");
3817 exit(1);
3818 }
45a50b16 3819
504c2948 3820 qemu_system_reset();
05f2401e 3821 if (loadvm) {
03cd4655 3822 if (load_vmstate(loadvm) < 0) {
05f2401e
JQ
3823 autostart = 0;
3824 }
3825 }
d63d307f 3826
2bb8c10c 3827 if (incoming) {
5bb7910a 3828 qemu_start_incoming_migration(incoming);
6b99dadc 3829 } else if (autostart) {
c0f4ce77 3830 vm_start();
6b99dadc 3831 }
ffd843bc 3832
b9e82a59 3833#ifndef _WIN32
71e3ceb8
TS
3834 if (daemonize) {
3835 uint8_t status = 0;
3836 ssize_t len;
71e3ceb8
TS
3837
3838 again1:
3839 len = write(fds[1], &status, 1);
3840 if (len == -1 && (errno == EINTR))
3841 goto again1;
3842
3843 if (len != 1)
3844 exit(1);
3845
dc330e28
KS
3846 if (chdir("/")) {
3847 perror("not able to chdir to /");
3848 exit(1);
3849 }
40ff6d7e 3850 TFR(fd = qemu_open("/dev/null", O_RDWR));
71e3ceb8
TS
3851 if (fd == -1)
3852 exit(1);
0858532e 3853 }
71e3ceb8 3854
0858532e
AL
3855 if (run_as) {
3856 pwd = getpwnam(run_as);
3857 if (!pwd) {
3858 fprintf(stderr, "User \"%s\" doesn't exist\n", run_as);
3859 exit(1);
3860 }
3861 }
3862
3863 if (chroot_dir) {
3864 if (chroot(chroot_dir) < 0) {
3865 fprintf(stderr, "chroot failed\n");
3866 exit(1);
3867 }
dc330e28
KS
3868 if (chdir("/")) {
3869 perror("not able to chdir to /");
3870 exit(1);
3871 }
0858532e
AL
3872 }
3873
3874 if (run_as) {
3875 if (setgid(pwd->pw_gid) < 0) {
3876 fprintf(stderr, "Failed to setgid(%d)\n", pwd->pw_gid);
3877 exit(1);
3878 }
3879 if (setuid(pwd->pw_uid) < 0) {
3880 fprintf(stderr, "Failed to setuid(%d)\n", pwd->pw_uid);
3881 exit(1);
3882 }
3883 if (setuid(0) != -1) {
3884 fprintf(stderr, "Dropping privileges failed\n");
3885 exit(1);
3886 }
3887 }
0858532e
AL
3888
3889 if (daemonize) {
3890 dup2(fd, 0);
3891 dup2(fd, 1);
3892 dup2(fd, 2);
71e3ceb8 3893
0858532e 3894 close(fd);
71e3ceb8 3895 }
b9e82a59 3896#endif
71e3ceb8 3897
8a7ddc38 3898 main_loop();
40c3bac3 3899 quit_timers();
63a01ef8 3900 net_cleanup();
b46a8906 3901
0824d6fc
FB
3902 return 0;
3903}