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