lsi: Properly initialize controller state on reset
[qemu-kvm/amd-iommu.git] / vl.c
blob53ea69888d981fa769cc1fc169e08aa73b96c7c9
1 /*
2 * QEMU System Emulator
4 * Copyright (c) 2003-2008 Fabrice Bellard
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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.
24 #include <unistd.h>
25 #include <fcntl.h>
26 #include <signal.h>
27 #include <time.h>
28 #include <errno.h>
29 #include <sys/time.h>
30 #include <zlib.h>
32 /* Needed early for CONFIG_BSD etc. */
33 #include "config-host.h"
35 #ifndef _WIN32
36 #include <libgen.h>
37 #include <pwd.h>
38 #include <sys/times.h>
39 #include <sys/wait.h>
40 #include <termios.h>
41 #include <sys/mman.h>
42 #include <sys/ioctl.h>
43 #include <sys/resource.h>
44 #include <sys/socket.h>
45 #include <netinet/in.h>
46 #include <net/if.h>
47 #include <arpa/inet.h>
48 #include <dirent.h>
49 #include <netdb.h>
50 #include <sys/select.h>
51 #ifdef CONFIG_BSD
52 #include <sys/stat.h>
53 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
54 #include <libutil.h>
55 #include <sys/sysctl.h>
56 #else
57 #include <util.h>
58 #endif
59 #else
60 #ifdef __linux__
61 #include <pty.h>
62 #include <malloc.h>
63 #include <sys/prctl.h>
65 #include <linux/ppdev.h>
66 #include <linux/parport.h>
67 #endif
68 #ifdef __sun__
69 #include <sys/stat.h>
70 #include <sys/ethernet.h>
71 #include <sys/sockio.h>
72 #include <netinet/arp.h>
73 #include <netinet/in.h>
74 #include <netinet/in_systm.h>
75 #include <netinet/ip.h>
76 #include <netinet/ip_icmp.h> // must come after ip.h
77 #include <netinet/udp.h>
78 #include <netinet/tcp.h>
79 #include <net/if.h>
80 #include <syslog.h>
81 #include <stropts.h>
82 /* See MySQL bug #7156 (http://bugs.mysql.com/bug.php?id=7156) for
83 discussion about Solaris header problems */
84 extern int madvise(caddr_t, size_t, int);
85 #endif
86 #endif
87 #endif
89 #if defined(__OpenBSD__)
90 #include <util.h>
91 #endif
93 #if defined(CONFIG_VDE)
94 #include <libvdeplug.h>
95 #endif
97 #ifdef _WIN32
98 #include <windows.h>
99 #endif
101 #ifdef CONFIG_SDL
102 #if defined(__APPLE__) || defined(main)
103 #include <SDL.h>
104 int qemu_main(int argc, char **argv, char **envp);
105 int main(int argc, char **argv)
107 return qemu_main(argc, argv, NULL);
109 #undef main
110 #define main qemu_main
111 #endif
112 #endif /* CONFIG_SDL */
114 #ifdef CONFIG_COCOA
115 #undef main
116 #define main qemu_main
117 #endif /* CONFIG_COCOA */
119 #include "hw/hw.h"
120 #include "hw/boards.h"
121 #include "hw/usb.h"
122 #include "hw/pcmcia.h"
123 #include "hw/pc.h"
124 #include "hw/isa.h"
125 #include "hw/baum.h"
126 #include "hw/bt.h"
127 #include "hw/watchdog.h"
128 #include "hw/smbios.h"
129 #include "hw/xen.h"
130 #include "hw/qdev.h"
131 #include "hw/loader.h"
132 #include "bt-host.h"
133 #include "net.h"
134 #include "net/slirp.h"
135 #include "monitor.h"
136 #include "console.h"
137 #include "sysemu.h"
138 #include "gdbstub.h"
139 #include "qemu-timer.h"
140 #include "qemu-char.h"
141 #include "cache-utils.h"
142 #include "block.h"
143 #include "block_int.h"
144 #include "block-migration.h"
145 #include "dma.h"
146 #include "audio/audio.h"
147 #include "migration.h"
148 #include "kvm.h"
149 #include "qemu-option.h"
150 #include "qemu-config.h"
151 #include "qemu-objects.h"
153 #include "disas.h"
155 #include "qemu_socket.h"
157 #include "slirp/libslirp.h"
159 #include "qemu-queue.h"
160 #include "cpus.h"
161 #include "arch_init.h"
163 //#define DEBUG_NET
164 //#define DEBUG_SLIRP
166 #define DEFAULT_RAM_SIZE 128
168 #define MAX_VIRTIO_CONSOLES 1
170 static const char *data_dir;
171 const char *bios_name = NULL;
172 /* Note: drives_table[MAX_DRIVES] is a dummy block driver if none available
173 to store the VM snapshots */
174 struct drivelist drives = QTAILQ_HEAD_INITIALIZER(drives);
175 struct driveoptlist driveopts = QTAILQ_HEAD_INITIALIZER(driveopts);
176 enum vga_retrace_method vga_retrace_method = VGA_RETRACE_DUMB;
177 DisplayType display_type = DT_DEFAULT;
178 const char* keyboard_layout = NULL;
179 ram_addr_t ram_size;
180 const char *mem_path = NULL;
181 #ifdef MAP_POPULATE
182 int mem_prealloc = 0; /* force preallocation of physical target memory */
183 #endif
184 int nb_nics;
185 NICInfo nd_table[MAX_NICS];
186 int vm_running;
187 int autostart;
188 static int rtc_utc = 1;
189 static int rtc_date_offset = -1; /* -1 means no change */
190 QEMUClock *rtc_clock;
191 int vga_interface_type = VGA_NONE;
192 static int full_screen = 0;
193 #ifdef CONFIG_SDL
194 static int no_frame = 0;
195 #endif
196 int no_quit = 0;
197 CharDriverState *serial_hds[MAX_SERIAL_PORTS];
198 CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
199 CharDriverState *virtcon_hds[MAX_VIRTIO_CONSOLES];
200 int win2k_install_hack = 0;
201 int rtc_td_hack = 0;
202 int usb_enabled = 0;
203 int singlestep = 0;
204 int smp_cpus = 1;
205 int max_cpus = 0;
206 int smp_cores = 1;
207 int smp_threads = 1;
208 const char *vnc_display;
209 int acpi_enabled = 1;
210 int no_hpet = 0;
211 int fd_bootchk = 1;
212 int no_reboot = 0;
213 int no_shutdown = 0;
214 int cursor_hide = 1;
215 int graphic_rotate = 0;
216 uint8_t irq0override = 1;
217 #ifndef _WIN32
218 int daemonize = 0;
219 #endif
220 const char *watchdog;
221 const char *option_rom[MAX_OPTION_ROMS];
222 int nb_option_roms;
223 int semihosting_enabled = 0;
224 int old_param = 0;
225 const char *qemu_name;
226 int alt_grab = 0;
227 int ctrl_grab = 0;
228 unsigned int nb_prom_envs = 0;
229 const char *prom_envs[MAX_PROM_ENVS];
230 int boot_menu;
232 int nb_numa_nodes;
233 uint64_t node_mem[MAX_NODES];
234 uint64_t node_cpumask[MAX_NODES];
236 static QEMUTimer *nographic_timer;
238 uint8_t qemu_uuid[16];
240 static QEMUBootSetHandler *boot_set_handler;
241 static void *boot_set_opaque;
243 int kvm_allowed = 0;
244 uint32_t xen_domid;
245 enum xen_mode xen_mode = XEN_EMULATE;
247 static int default_serial = 1;
248 static int default_parallel = 1;
249 static int default_virtcon = 1;
250 static int default_monitor = 1;
251 static int default_vga = 1;
252 static int default_floppy = 1;
253 static int default_cdrom = 1;
254 static int default_sdcard = 1;
256 static struct {
257 const char *driver;
258 int *flag;
259 } default_list[] = {
260 { .driver = "isa-serial", .flag = &default_serial },
261 { .driver = "isa-parallel", .flag = &default_parallel },
262 { .driver = "isa-fdc", .flag = &default_floppy },
263 { .driver = "ide-drive", .flag = &default_cdrom },
264 { .driver = "virtio-serial-pci", .flag = &default_virtcon },
265 { .driver = "virtio-serial-s390", .flag = &default_virtcon },
266 { .driver = "virtio-serial", .flag = &default_virtcon },
267 { .driver = "VGA", .flag = &default_vga },
268 { .driver = "cirrus-vga", .flag = &default_vga },
269 { .driver = "vmware-svga", .flag = &default_vga },
272 static int default_driver_check(QemuOpts *opts, void *opaque)
274 const char *driver = qemu_opt_get(opts, "driver");
275 int i;
277 if (!driver)
278 return 0;
279 for (i = 0; i < ARRAY_SIZE(default_list); i++) {
280 if (strcmp(default_list[i].driver, driver) != 0)
281 continue;
282 *(default_list[i].flag) = 0;
284 return 0;
287 /***********************************************************/
289 static void set_proc_name(const char *s)
291 #if defined(__linux__) && defined(PR_SET_NAME)
292 char name[16];
293 if (!s)
294 return;
295 name[sizeof(name) - 1] = 0;
296 strncpy(name, s, sizeof(name));
297 /* Could rewrite argv[0] too, but that's a bit more complicated.
298 This simple way is enough for `top'. */
299 prctl(PR_SET_NAME, name);
300 #endif
303 /***********************************************************/
304 /* real time host monotonic timer */
306 /* compute with 96 bit intermediate result: (a*b)/c */
307 uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c)
309 union {
310 uint64_t ll;
311 struct {
312 #ifdef HOST_WORDS_BIGENDIAN
313 uint32_t high, low;
314 #else
315 uint32_t low, high;
316 #endif
317 } l;
318 } u, res;
319 uint64_t rl, rh;
321 u.ll = a;
322 rl = (uint64_t)u.l.low * (uint64_t)b;
323 rh = (uint64_t)u.l.high * (uint64_t)b;
324 rh += (rl >> 32);
325 res.l.high = rh / c;
326 res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c;
327 return res.ll;
330 /***********************************************************/
331 /* host time/date access */
332 void qemu_get_timedate(struct tm *tm, int offset)
334 time_t ti;
335 struct tm *ret;
337 time(&ti);
338 ti += offset;
339 if (rtc_date_offset == -1) {
340 if (rtc_utc)
341 ret = gmtime(&ti);
342 else
343 ret = localtime(&ti);
344 } else {
345 ti -= rtc_date_offset;
346 ret = gmtime(&ti);
349 memcpy(tm, ret, sizeof(struct tm));
352 int qemu_timedate_diff(struct tm *tm)
354 time_t seconds;
356 if (rtc_date_offset == -1)
357 if (rtc_utc)
358 seconds = mktimegm(tm);
359 else
360 seconds = mktime(tm);
361 else
362 seconds = mktimegm(tm) + rtc_date_offset;
364 return seconds - time(NULL);
367 void rtc_change_mon_event(struct tm *tm)
369 QObject *data;
371 data = qobject_from_jsonf("{ 'offset': %d }", qemu_timedate_diff(tm));
372 monitor_protocol_event(QEVENT_RTC_CHANGE, data);
373 qobject_decref(data);
376 static void configure_rtc_date_offset(const char *startdate, int legacy)
378 time_t rtc_start_date;
379 struct tm tm;
381 if (!strcmp(startdate, "now") && legacy) {
382 rtc_date_offset = -1;
383 } else {
384 if (sscanf(startdate, "%d-%d-%dT%d:%d:%d",
385 &tm.tm_year,
386 &tm.tm_mon,
387 &tm.tm_mday,
388 &tm.tm_hour,
389 &tm.tm_min,
390 &tm.tm_sec) == 6) {
391 /* OK */
392 } else if (sscanf(startdate, "%d-%d-%d",
393 &tm.tm_year,
394 &tm.tm_mon,
395 &tm.tm_mday) == 3) {
396 tm.tm_hour = 0;
397 tm.tm_min = 0;
398 tm.tm_sec = 0;
399 } else {
400 goto date_fail;
402 tm.tm_year -= 1900;
403 tm.tm_mon--;
404 rtc_start_date = mktimegm(&tm);
405 if (rtc_start_date == -1) {
406 date_fail:
407 fprintf(stderr, "Invalid date format. Valid formats are:\n"
408 "'2006-06-17T16:01:21' or '2006-06-17'\n");
409 exit(1);
411 rtc_date_offset = time(NULL) - rtc_start_date;
415 static void configure_rtc(QemuOpts *opts)
417 const char *value;
419 value = qemu_opt_get(opts, "base");
420 if (value) {
421 if (!strcmp(value, "utc")) {
422 rtc_utc = 1;
423 } else if (!strcmp(value, "localtime")) {
424 rtc_utc = 0;
425 } else {
426 configure_rtc_date_offset(value, 0);
429 value = qemu_opt_get(opts, "clock");
430 if (value) {
431 if (!strcmp(value, "host")) {
432 rtc_clock = host_clock;
433 } else if (!strcmp(value, "vm")) {
434 rtc_clock = vm_clock;
435 } else {
436 fprintf(stderr, "qemu: invalid option value '%s'\n", value);
437 exit(1);
440 value = qemu_opt_get(opts, "driftfix");
441 if (value) {
442 if (!strcmp(value, "slew")) {
443 rtc_td_hack = 1;
444 } else if (!strcmp(value, "none")) {
445 rtc_td_hack = 0;
446 } else {
447 fprintf(stderr, "qemu: invalid option value '%s'\n", value);
448 exit(1);
453 /***********************************************************/
454 /* Bluetooth support */
455 static int nb_hcis;
456 static int cur_hci;
457 static struct HCIInfo *hci_table[MAX_NICS];
459 static struct bt_vlan_s {
460 struct bt_scatternet_s net;
461 int id;
462 struct bt_vlan_s *next;
463 } *first_bt_vlan;
465 /* find or alloc a new bluetooth "VLAN" */
466 static struct bt_scatternet_s *qemu_find_bt_vlan(int id)
468 struct bt_vlan_s **pvlan, *vlan;
469 for (vlan = first_bt_vlan; vlan != NULL; vlan = vlan->next) {
470 if (vlan->id == id)
471 return &vlan->net;
473 vlan = qemu_mallocz(sizeof(struct bt_vlan_s));
474 vlan->id = id;
475 pvlan = &first_bt_vlan;
476 while (*pvlan != NULL)
477 pvlan = &(*pvlan)->next;
478 *pvlan = vlan;
479 return &vlan->net;
482 static void null_hci_send(struct HCIInfo *hci, const uint8_t *data, int len)
486 static int null_hci_addr_set(struct HCIInfo *hci, const uint8_t *bd_addr)
488 return -ENOTSUP;
491 static struct HCIInfo null_hci = {
492 .cmd_send = null_hci_send,
493 .sco_send = null_hci_send,
494 .acl_send = null_hci_send,
495 .bdaddr_set = null_hci_addr_set,
498 struct HCIInfo *qemu_next_hci(void)
500 if (cur_hci == nb_hcis)
501 return &null_hci;
503 return hci_table[cur_hci++];
506 static struct HCIInfo *hci_init(const char *str)
508 char *endp;
509 struct bt_scatternet_s *vlan = 0;
511 if (!strcmp(str, "null"))
512 /* null */
513 return &null_hci;
514 else if (!strncmp(str, "host", 4) && (str[4] == '\0' || str[4] == ':'))
515 /* host[:hciN] */
516 return bt_host_hci(str[4] ? str + 5 : "hci0");
517 else if (!strncmp(str, "hci", 3)) {
518 /* hci[,vlan=n] */
519 if (str[3]) {
520 if (!strncmp(str + 3, ",vlan=", 6)) {
521 vlan = qemu_find_bt_vlan(strtol(str + 9, &endp, 0));
522 if (*endp)
523 vlan = 0;
525 } else
526 vlan = qemu_find_bt_vlan(0);
527 if (vlan)
528 return bt_new_hci(vlan);
531 fprintf(stderr, "qemu: Unknown bluetooth HCI `%s'.\n", str);
533 return 0;
536 static int bt_hci_parse(const char *str)
538 struct HCIInfo *hci;
539 bdaddr_t bdaddr;
541 if (nb_hcis >= MAX_NICS) {
542 fprintf(stderr, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS);
543 return -1;
546 hci = hci_init(str);
547 if (!hci)
548 return -1;
550 bdaddr.b[0] = 0x52;
551 bdaddr.b[1] = 0x54;
552 bdaddr.b[2] = 0x00;
553 bdaddr.b[3] = 0x12;
554 bdaddr.b[4] = 0x34;
555 bdaddr.b[5] = 0x56 + nb_hcis;
556 hci->bdaddr_set(hci, bdaddr.b);
558 hci_table[nb_hcis++] = hci;
560 return 0;
563 static void bt_vhci_add(int vlan_id)
565 struct bt_scatternet_s *vlan = qemu_find_bt_vlan(vlan_id);
567 if (!vlan->slave)
568 fprintf(stderr, "qemu: warning: adding a VHCI to "
569 "an empty scatternet %i\n", vlan_id);
571 bt_vhci_init(bt_new_hci(vlan));
574 static struct bt_device_s *bt_device_add(const char *opt)
576 struct bt_scatternet_s *vlan;
577 int vlan_id = 0;
578 char *endp = strstr(opt, ",vlan=");
579 int len = (endp ? endp - opt : strlen(opt)) + 1;
580 char devname[10];
582 pstrcpy(devname, MIN(sizeof(devname), len), opt);
584 if (endp) {
585 vlan_id = strtol(endp + 6, &endp, 0);
586 if (*endp) {
587 fprintf(stderr, "qemu: unrecognised bluetooth vlan Id\n");
588 return 0;
592 vlan = qemu_find_bt_vlan(vlan_id);
594 if (!vlan->slave)
595 fprintf(stderr, "qemu: warning: adding a slave device to "
596 "an empty scatternet %i\n", vlan_id);
598 if (!strcmp(devname, "keyboard"))
599 return bt_keyboard_init(vlan);
601 fprintf(stderr, "qemu: unsupported bluetooth device `%s'\n", devname);
602 return 0;
605 static int bt_parse(const char *opt)
607 const char *endp, *p;
608 int vlan;
610 if (strstart(opt, "hci", &endp)) {
611 if (!*endp || *endp == ',') {
612 if (*endp)
613 if (!strstart(endp, ",vlan=", 0))
614 opt = endp + 1;
616 return bt_hci_parse(opt);
618 } else if (strstart(opt, "vhci", &endp)) {
619 if (!*endp || *endp == ',') {
620 if (*endp) {
621 if (strstart(endp, ",vlan=", &p)) {
622 vlan = strtol(p, (char **) &endp, 0);
623 if (*endp) {
624 fprintf(stderr, "qemu: bad scatternet '%s'\n", p);
625 return 1;
627 } else {
628 fprintf(stderr, "qemu: bad parameter '%s'\n", endp + 1);
629 return 1;
631 } else
632 vlan = 0;
634 bt_vhci_add(vlan);
635 return 0;
637 } else if (strstart(opt, "device:", &endp))
638 return !bt_device_add(endp);
640 fprintf(stderr, "qemu: bad bluetooth parameter '%s'\n", opt);
641 return 1;
644 /***********************************************************/
645 /* QEMU Block devices */
647 #define HD_ALIAS "index=%d,media=disk"
648 #define CDROM_ALIAS "index=2,media=cdrom"
649 #define FD_ALIAS "index=%d,if=floppy"
650 #define PFLASH_ALIAS "if=pflash"
651 #define MTD_ALIAS "if=mtd"
652 #define SD_ALIAS "index=0,if=sd"
654 QemuOpts *drive_add(const char *file, const char *fmt, ...)
656 va_list ap;
657 char optstr[1024];
658 QemuOpts *opts;
660 va_start(ap, fmt);
661 vsnprintf(optstr, sizeof(optstr), fmt, ap);
662 va_end(ap);
664 opts = qemu_opts_parse(&qemu_drive_opts, optstr, 0);
665 if (!opts) {
666 return NULL;
668 if (file)
669 qemu_opt_set(opts, "file", file);
670 return opts;
673 DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit)
675 DriveInfo *dinfo;
677 /* seek interface, bus and unit */
679 QTAILQ_FOREACH(dinfo, &drives, next) {
680 if (dinfo->type == type &&
681 dinfo->bus == bus &&
682 dinfo->unit == unit)
683 return dinfo;
686 return NULL;
689 DriveInfo *drive_get_by_id(const char *id)
691 DriveInfo *dinfo;
693 QTAILQ_FOREACH(dinfo, &drives, next) {
694 if (strcmp(id, dinfo->id))
695 continue;
696 return dinfo;
698 return NULL;
701 int drive_get_max_bus(BlockInterfaceType type)
703 int max_bus;
704 DriveInfo *dinfo;
706 max_bus = -1;
707 QTAILQ_FOREACH(dinfo, &drives, next) {
708 if(dinfo->type == type &&
709 dinfo->bus > max_bus)
710 max_bus = dinfo->bus;
712 return max_bus;
715 const char *drive_get_serial(BlockDriverState *bdrv)
717 DriveInfo *dinfo;
719 QTAILQ_FOREACH(dinfo, &drives, next) {
720 if (dinfo->bdrv == bdrv)
721 return dinfo->serial;
724 return "\0";
727 BlockInterfaceErrorAction drive_get_on_error(
728 BlockDriverState *bdrv, int is_read)
730 DriveInfo *dinfo;
732 QTAILQ_FOREACH(dinfo, &drives, next) {
733 if (dinfo->bdrv == bdrv)
734 return is_read ? dinfo->on_read_error : dinfo->on_write_error;
737 return is_read ? BLOCK_ERR_REPORT : BLOCK_ERR_STOP_ENOSPC;
740 static void bdrv_format_print(void *opaque, const char *name)
742 fprintf(stderr, " %s", name);
745 void drive_uninit(DriveInfo *dinfo)
747 qemu_opts_del(dinfo->opts);
748 bdrv_delete(dinfo->bdrv);
749 QTAILQ_REMOVE(&drives, dinfo, next);
750 qemu_free(dinfo);
753 static int parse_block_error_action(const char *buf, int is_read)
755 if (!strcmp(buf, "ignore")) {
756 return BLOCK_ERR_IGNORE;
757 } else if (!is_read && !strcmp(buf, "enospc")) {
758 return BLOCK_ERR_STOP_ENOSPC;
759 } else if (!strcmp(buf, "stop")) {
760 return BLOCK_ERR_STOP_ANY;
761 } else if (!strcmp(buf, "report")) {
762 return BLOCK_ERR_REPORT;
763 } else {
764 fprintf(stderr, "qemu: '%s' invalid %s error action\n",
765 buf, is_read ? "read" : "write");
766 return -1;
770 DriveInfo *drive_init(QemuOpts *opts, void *opaque,
771 int *fatal_error)
773 const char *buf;
774 const char *file = NULL;
775 char devname[128];
776 const char *serial;
777 const char *mediastr = "";
778 BlockInterfaceType type;
779 enum { MEDIA_DISK, MEDIA_CDROM } media;
780 int bus_id, unit_id;
781 int cyls, heads, secs, translation;
782 BlockDriver *drv = NULL;
783 QEMUMachine *machine = opaque;
784 int max_devs;
785 int index;
786 int ro = 0;
787 int bdrv_flags = 0;
788 int on_read_error, on_write_error;
789 const char *devaddr;
790 DriveInfo *dinfo;
791 int snapshot = 0;
793 *fatal_error = 1;
795 translation = BIOS_ATA_TRANSLATION_AUTO;
797 if (machine && machine->use_scsi) {
798 type = IF_SCSI;
799 max_devs = MAX_SCSI_DEVS;
800 pstrcpy(devname, sizeof(devname), "scsi");
801 } else {
802 type = IF_IDE;
803 max_devs = MAX_IDE_DEVS;
804 pstrcpy(devname, sizeof(devname), "ide");
806 media = MEDIA_DISK;
808 /* extract parameters */
809 bus_id = qemu_opt_get_number(opts, "bus", 0);
810 unit_id = qemu_opt_get_number(opts, "unit", -1);
811 index = qemu_opt_get_number(opts, "index", -1);
813 cyls = qemu_opt_get_number(opts, "cyls", 0);
814 heads = qemu_opt_get_number(opts, "heads", 0);
815 secs = qemu_opt_get_number(opts, "secs", 0);
817 snapshot = qemu_opt_get_bool(opts, "snapshot", 0);
818 ro = qemu_opt_get_bool(opts, "readonly", 0);
820 file = qemu_opt_get(opts, "file");
821 serial = qemu_opt_get(opts, "serial");
823 if ((buf = qemu_opt_get(opts, "if")) != NULL) {
824 pstrcpy(devname, sizeof(devname), buf);
825 if (!strcmp(buf, "ide")) {
826 type = IF_IDE;
827 max_devs = MAX_IDE_DEVS;
828 } else if (!strcmp(buf, "scsi")) {
829 type = IF_SCSI;
830 max_devs = MAX_SCSI_DEVS;
831 } else if (!strcmp(buf, "floppy")) {
832 type = IF_FLOPPY;
833 max_devs = 0;
834 } else if (!strcmp(buf, "pflash")) {
835 type = IF_PFLASH;
836 max_devs = 0;
837 } else if (!strcmp(buf, "mtd")) {
838 type = IF_MTD;
839 max_devs = 0;
840 } else if (!strcmp(buf, "sd")) {
841 type = IF_SD;
842 max_devs = 0;
843 } else if (!strcmp(buf, "virtio")) {
844 type = IF_VIRTIO;
845 max_devs = 0;
846 } else if (!strcmp(buf, "xen")) {
847 type = IF_XEN;
848 max_devs = 0;
849 } else if (!strcmp(buf, "none")) {
850 type = IF_NONE;
851 max_devs = 0;
852 } else {
853 fprintf(stderr, "qemu: unsupported bus type '%s'\n", buf);
854 return NULL;
858 if (cyls || heads || secs) {
859 if (cyls < 1 || (type == IF_IDE && cyls > 16383)) {
860 fprintf(stderr, "qemu: '%s' invalid physical cyls number\n", buf);
861 return NULL;
863 if (heads < 1 || (type == IF_IDE && heads > 16)) {
864 fprintf(stderr, "qemu: '%s' invalid physical heads number\n", buf);
865 return NULL;
867 if (secs < 1 || (type == IF_IDE && secs > 63)) {
868 fprintf(stderr, "qemu: '%s' invalid physical secs number\n", buf);
869 return NULL;
873 if ((buf = qemu_opt_get(opts, "trans")) != NULL) {
874 if (!cyls) {
875 fprintf(stderr,
876 "qemu: '%s' trans must be used with cyls,heads and secs\n",
877 buf);
878 return NULL;
880 if (!strcmp(buf, "none"))
881 translation = BIOS_ATA_TRANSLATION_NONE;
882 else if (!strcmp(buf, "lba"))
883 translation = BIOS_ATA_TRANSLATION_LBA;
884 else if (!strcmp(buf, "auto"))
885 translation = BIOS_ATA_TRANSLATION_AUTO;
886 else {
887 fprintf(stderr, "qemu: '%s' invalid translation type\n", buf);
888 return NULL;
892 if ((buf = qemu_opt_get(opts, "media")) != NULL) {
893 if (!strcmp(buf, "disk")) {
894 media = MEDIA_DISK;
895 } else if (!strcmp(buf, "cdrom")) {
896 if (cyls || secs || heads) {
897 fprintf(stderr,
898 "qemu: '%s' invalid physical CHS format\n", buf);
899 return NULL;
901 media = MEDIA_CDROM;
902 } else {
903 fprintf(stderr, "qemu: '%s' invalid media\n", buf);
904 return NULL;
908 if ((buf = qemu_opt_get(opts, "cache")) != NULL) {
909 if (!strcmp(buf, "off") || !strcmp(buf, "none")) {
910 bdrv_flags |= BDRV_O_NOCACHE;
911 } else if (!strcmp(buf, "writeback")) {
912 bdrv_flags |= BDRV_O_CACHE_WB;
913 } else if (!strcmp(buf, "writethrough")) {
914 /* this is the default */
915 } else {
916 fprintf(stderr, "qemu: invalid cache option\n");
917 return NULL;
921 #ifdef CONFIG_LINUX_AIO
922 if ((buf = qemu_opt_get(opts, "aio")) != NULL) {
923 if (!strcmp(buf, "native")) {
924 bdrv_flags |= BDRV_O_NATIVE_AIO;
925 } else if (!strcmp(buf, "threads")) {
926 /* this is the default */
927 } else {
928 fprintf(stderr, "qemu: invalid aio option\n");
929 return NULL;
932 #endif
934 if ((buf = qemu_opt_get(opts, "format")) != NULL) {
935 if (strcmp(buf, "?") == 0) {
936 fprintf(stderr, "qemu: Supported formats:");
937 bdrv_iterate_format(bdrv_format_print, NULL);
938 fprintf(stderr, "\n");
939 return NULL;
941 drv = bdrv_find_whitelisted_format(buf);
942 if (!drv) {
943 fprintf(stderr, "qemu: '%s' invalid format\n", buf);
944 return NULL;
948 on_write_error = BLOCK_ERR_STOP_ENOSPC;
949 if ((buf = qemu_opt_get(opts, "werror")) != NULL) {
950 if (type != IF_IDE && type != IF_SCSI && type != IF_VIRTIO) {
951 fprintf(stderr, "werror is no supported by this format\n");
952 return NULL;
955 on_write_error = parse_block_error_action(buf, 0);
956 if (on_write_error < 0) {
957 return NULL;
961 on_read_error = BLOCK_ERR_REPORT;
962 if ((buf = qemu_opt_get(opts, "rerror")) != NULL) {
963 if (type != IF_IDE && type != IF_VIRTIO) {
964 fprintf(stderr, "rerror is no supported by this format\n");
965 return NULL;
968 on_read_error = parse_block_error_action(buf, 1);
969 if (on_read_error < 0) {
970 return NULL;
974 if ((devaddr = qemu_opt_get(opts, "addr")) != NULL) {
975 if (type != IF_VIRTIO) {
976 fprintf(stderr, "addr is not supported\n");
977 return NULL;
981 /* compute bus and unit according index */
983 if (index != -1) {
984 if (bus_id != 0 || unit_id != -1) {
985 fprintf(stderr,
986 "qemu: index cannot be used with bus and unit\n");
987 return NULL;
989 if (max_devs == 0)
991 unit_id = index;
992 bus_id = 0;
993 } else {
994 unit_id = index % max_devs;
995 bus_id = index / max_devs;
999 /* if user doesn't specify a unit_id,
1000 * try to find the first free
1003 if (unit_id == -1) {
1004 unit_id = 0;
1005 while (drive_get(type, bus_id, unit_id) != NULL) {
1006 unit_id++;
1007 if (max_devs && unit_id >= max_devs) {
1008 unit_id -= max_devs;
1009 bus_id++;
1014 /* check unit id */
1016 if (max_devs && unit_id >= max_devs) {
1017 fprintf(stderr, "qemu: unit %d too big (max is %d)\n",
1018 unit_id, max_devs - 1);
1019 return NULL;
1023 * ignore multiple definitions
1026 if (drive_get(type, bus_id, unit_id) != NULL) {
1027 *fatal_error = 0;
1028 return NULL;
1031 /* init */
1033 dinfo = qemu_mallocz(sizeof(*dinfo));
1034 if ((buf = qemu_opts_id(opts)) != NULL) {
1035 dinfo->id = qemu_strdup(buf);
1036 } else {
1037 /* no id supplied -> create one */
1038 dinfo->id = qemu_mallocz(32);
1039 if (type == IF_IDE || type == IF_SCSI)
1040 mediastr = (media == MEDIA_CDROM) ? "-cd" : "-hd";
1041 if (max_devs)
1042 snprintf(dinfo->id, 32, "%s%i%s%i",
1043 devname, bus_id, mediastr, unit_id);
1044 else
1045 snprintf(dinfo->id, 32, "%s%s%i",
1046 devname, mediastr, unit_id);
1048 dinfo->bdrv = bdrv_new(dinfo->id);
1049 dinfo->devaddr = devaddr;
1050 dinfo->type = type;
1051 dinfo->bus = bus_id;
1052 dinfo->unit = unit_id;
1053 dinfo->on_read_error = on_read_error;
1054 dinfo->on_write_error = on_write_error;
1055 dinfo->opts = opts;
1056 if (serial)
1057 strncpy(dinfo->serial, serial, sizeof(serial));
1058 QTAILQ_INSERT_TAIL(&drives, dinfo, next);
1060 switch(type) {
1061 case IF_IDE:
1062 case IF_SCSI:
1063 case IF_XEN:
1064 case IF_NONE:
1065 switch(media) {
1066 case MEDIA_DISK:
1067 if (cyls != 0) {
1068 bdrv_set_geometry_hint(dinfo->bdrv, cyls, heads, secs);
1069 bdrv_set_translation_hint(dinfo->bdrv, translation);
1071 break;
1072 case MEDIA_CDROM:
1073 bdrv_set_type_hint(dinfo->bdrv, BDRV_TYPE_CDROM);
1074 break;
1076 break;
1077 case IF_SD:
1078 /* FIXME: This isn't really a floppy, but it's a reasonable
1079 approximation. */
1080 case IF_FLOPPY:
1081 bdrv_set_type_hint(dinfo->bdrv, BDRV_TYPE_FLOPPY);
1082 break;
1083 case IF_PFLASH:
1084 case IF_MTD:
1085 break;
1086 case IF_VIRTIO:
1087 /* add virtio block device */
1088 opts = qemu_opts_create(&qemu_device_opts, NULL, 0);
1089 qemu_opt_set(opts, "driver", "virtio-blk-pci");
1090 qemu_opt_set(opts, "drive", dinfo->id);
1091 if (devaddr)
1092 qemu_opt_set(opts, "addr", devaddr);
1093 break;
1094 case IF_COUNT:
1095 abort();
1097 if (!file) {
1098 *fatal_error = 0;
1099 return NULL;
1101 if (snapshot) {
1102 /* always use write-back with snapshot */
1103 bdrv_flags &= ~BDRV_O_CACHE_MASK;
1104 bdrv_flags |= (BDRV_O_SNAPSHOT|BDRV_O_CACHE_WB);
1107 if (media == MEDIA_CDROM) {
1108 /* CDROM is fine for any interface, don't check. */
1109 ro = 1;
1110 } else if (ro == 1) {
1111 if (type != IF_SCSI && type != IF_VIRTIO && type != IF_FLOPPY) {
1112 fprintf(stderr, "qemu: readonly flag not supported for drive with this interface\n");
1113 return NULL;
1117 bdrv_flags |= ro ? 0 : BDRV_O_RDWR;
1119 if (bdrv_open(dinfo->bdrv, file, bdrv_flags, drv) < 0) {
1120 fprintf(stderr, "qemu: could not open disk image %s: %s\n",
1121 file, strerror(errno));
1122 return NULL;
1125 if (bdrv_key_required(dinfo->bdrv))
1126 autostart = 0;
1127 *fatal_error = 0;
1128 return dinfo;
1131 static int drive_init_func(QemuOpts *opts, void *opaque)
1133 QEMUMachine *machine = opaque;
1134 int fatal_error = 0;
1136 if (drive_init(opts, machine, &fatal_error) == NULL) {
1137 if (fatal_error)
1138 return 1;
1140 return 0;
1143 static int drive_enable_snapshot(QemuOpts *opts, void *opaque)
1145 if (NULL == qemu_opt_get(opts, "snapshot")) {
1146 qemu_opt_set(opts, "snapshot", "on");
1148 return 0;
1151 void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque)
1153 boot_set_handler = func;
1154 boot_set_opaque = opaque;
1157 int qemu_boot_set(const char *boot_devices)
1159 if (!boot_set_handler) {
1160 return -EINVAL;
1162 return boot_set_handler(boot_set_opaque, boot_devices);
1165 static void validate_bootdevices(char *devices)
1167 /* We just do some generic consistency checks */
1168 const char *p;
1169 int bitmap = 0;
1171 for (p = devices; *p != '\0'; p++) {
1172 /* Allowed boot devices are:
1173 * a-b: floppy disk drives
1174 * c-f: IDE disk drives
1175 * g-m: machine implementation dependant drives
1176 * n-p: network devices
1177 * It's up to each machine implementation to check if the given boot
1178 * devices match the actual hardware implementation and firmware
1179 * features.
1181 if (*p < 'a' || *p > 'p') {
1182 fprintf(stderr, "Invalid boot device '%c'\n", *p);
1183 exit(1);
1185 if (bitmap & (1 << (*p - 'a'))) {
1186 fprintf(stderr, "Boot device '%c' was given twice\n", *p);
1187 exit(1);
1189 bitmap |= 1 << (*p - 'a');
1193 static void restore_boot_devices(void *opaque)
1195 char *standard_boot_devices = opaque;
1196 static int first = 1;
1198 /* Restore boot order and remove ourselves after the first boot */
1199 if (first) {
1200 first = 0;
1201 return;
1204 qemu_boot_set(standard_boot_devices);
1206 qemu_unregister_reset(restore_boot_devices, standard_boot_devices);
1207 qemu_free(standard_boot_devices);
1210 static void numa_add(const char *optarg)
1212 char option[128];
1213 char *endptr;
1214 unsigned long long value, endvalue;
1215 int nodenr;
1217 optarg = get_opt_name(option, 128, optarg, ',') + 1;
1218 if (!strcmp(option, "node")) {
1219 if (get_param_value(option, 128, "nodeid", optarg) == 0) {
1220 nodenr = nb_numa_nodes;
1221 } else {
1222 nodenr = strtoull(option, NULL, 10);
1225 if (get_param_value(option, 128, "mem", optarg) == 0) {
1226 node_mem[nodenr] = 0;
1227 } else {
1228 value = strtoull(option, &endptr, 0);
1229 switch (*endptr) {
1230 case 0: case 'M': case 'm':
1231 value <<= 20;
1232 break;
1233 case 'G': case 'g':
1234 value <<= 30;
1235 break;
1237 node_mem[nodenr] = value;
1239 if (get_param_value(option, 128, "cpus", optarg) == 0) {
1240 node_cpumask[nodenr] = 0;
1241 } else {
1242 value = strtoull(option, &endptr, 10);
1243 if (value >= 64) {
1244 value = 63;
1245 fprintf(stderr, "only 64 CPUs in NUMA mode supported.\n");
1246 } else {
1247 if (*endptr == '-') {
1248 endvalue = strtoull(endptr+1, &endptr, 10);
1249 if (endvalue >= 63) {
1250 endvalue = 62;
1251 fprintf(stderr,
1252 "only 63 CPUs in NUMA mode supported.\n");
1254 value = (2ULL << endvalue) - (1ULL << value);
1255 } else {
1256 value = 1ULL << value;
1259 node_cpumask[nodenr] = value;
1261 nb_numa_nodes++;
1263 return;
1266 static void smp_parse(const char *optarg)
1268 int smp, sockets = 0, threads = 0, cores = 0;
1269 char *endptr;
1270 char option[128];
1272 smp = strtoul(optarg, &endptr, 10);
1273 if (endptr != optarg) {
1274 if (*endptr == ',') {
1275 endptr++;
1278 if (get_param_value(option, 128, "sockets", endptr) != 0)
1279 sockets = strtoull(option, NULL, 10);
1280 if (get_param_value(option, 128, "cores", endptr) != 0)
1281 cores = strtoull(option, NULL, 10);
1282 if (get_param_value(option, 128, "threads", endptr) != 0)
1283 threads = strtoull(option, NULL, 10);
1284 if (get_param_value(option, 128, "maxcpus", endptr) != 0)
1285 max_cpus = strtoull(option, NULL, 10);
1287 /* compute missing values, prefer sockets over cores over threads */
1288 if (smp == 0 || sockets == 0) {
1289 sockets = sockets > 0 ? sockets : 1;
1290 cores = cores > 0 ? cores : 1;
1291 threads = threads > 0 ? threads : 1;
1292 if (smp == 0) {
1293 smp = cores * threads * sockets;
1295 } else {
1296 if (cores == 0) {
1297 threads = threads > 0 ? threads : 1;
1298 cores = smp / (sockets * threads);
1299 } else {
1300 if (sockets) {
1301 threads = smp / (cores * sockets);
1305 smp_cpus = smp;
1306 smp_cores = cores > 0 ? cores : 1;
1307 smp_threads = threads > 0 ? threads : 1;
1308 if (max_cpus == 0)
1309 max_cpus = smp_cpus;
1312 /***********************************************************/
1313 /* USB devices */
1315 static int usb_device_add(const char *devname, int is_hotplug)
1317 const char *p;
1318 USBDevice *dev = NULL;
1320 if (!usb_enabled)
1321 return -1;
1323 /* drivers with .usbdevice_name entry in USBDeviceInfo */
1324 dev = usbdevice_create(devname);
1325 if (dev)
1326 goto done;
1328 /* the other ones */
1329 if (strstart(devname, "host:", &p)) {
1330 dev = usb_host_device_open(p);
1331 } else if (!strcmp(devname, "bt") || strstart(devname, "bt:", &p)) {
1332 dev = usb_bt_init(devname[2] ? hci_init(p) :
1333 bt_new_hci(qemu_find_bt_vlan(0)));
1334 } else {
1335 return -1;
1337 if (!dev)
1338 return -1;
1340 done:
1341 return 0;
1344 static int usb_device_del(const char *devname)
1346 int bus_num, addr;
1347 const char *p;
1349 if (strstart(devname, "host:", &p))
1350 return usb_host_device_close(p);
1352 if (!usb_enabled)
1353 return -1;
1355 p = strchr(devname, '.');
1356 if (!p)
1357 return -1;
1358 bus_num = strtoul(devname, NULL, 0);
1359 addr = strtoul(p + 1, NULL, 0);
1361 return usb_device_delete_addr(bus_num, addr);
1364 static int usb_parse(const char *cmdline)
1366 int r;
1367 r = usb_device_add(cmdline, 0);
1368 if (r < 0) {
1369 fprintf(stderr, "qemu: could not add USB device '%s'\n", cmdline);
1371 return r;
1374 void do_usb_add(Monitor *mon, const QDict *qdict)
1376 const char *devname = qdict_get_str(qdict, "devname");
1377 if (usb_device_add(devname, 1) < 0) {
1378 error_report("could not add USB device '%s'", devname);
1382 void do_usb_del(Monitor *mon, const QDict *qdict)
1384 const char *devname = qdict_get_str(qdict, "devname");
1385 if (usb_device_del(devname) < 0) {
1386 error_report("could not delete USB device '%s'", devname);
1390 /***********************************************************/
1391 /* PCMCIA/Cardbus */
1393 static struct pcmcia_socket_entry_s {
1394 PCMCIASocket *socket;
1395 struct pcmcia_socket_entry_s *next;
1396 } *pcmcia_sockets = 0;
1398 void pcmcia_socket_register(PCMCIASocket *socket)
1400 struct pcmcia_socket_entry_s *entry;
1402 entry = qemu_malloc(sizeof(struct pcmcia_socket_entry_s));
1403 entry->socket = socket;
1404 entry->next = pcmcia_sockets;
1405 pcmcia_sockets = entry;
1408 void pcmcia_socket_unregister(PCMCIASocket *socket)
1410 struct pcmcia_socket_entry_s *entry, **ptr;
1412 ptr = &pcmcia_sockets;
1413 for (entry = *ptr; entry; ptr = &entry->next, entry = *ptr)
1414 if (entry->socket == socket) {
1415 *ptr = entry->next;
1416 qemu_free(entry);
1420 void pcmcia_info(Monitor *mon)
1422 struct pcmcia_socket_entry_s *iter;
1424 if (!pcmcia_sockets)
1425 monitor_printf(mon, "No PCMCIA sockets\n");
1427 for (iter = pcmcia_sockets; iter; iter = iter->next)
1428 monitor_printf(mon, "%s: %s\n", iter->socket->slot_string,
1429 iter->socket->attached ? iter->socket->card_string :
1430 "Empty");
1433 /***********************************************************/
1434 /* I/O handling */
1436 typedef struct IOHandlerRecord {
1437 int fd;
1438 IOCanReadHandler *fd_read_poll;
1439 IOHandler *fd_read;
1440 IOHandler *fd_write;
1441 int deleted;
1442 void *opaque;
1443 /* temporary data */
1444 struct pollfd *ufd;
1445 QLIST_ENTRY(IOHandlerRecord) next;
1446 } IOHandlerRecord;
1448 static QLIST_HEAD(, IOHandlerRecord) io_handlers =
1449 QLIST_HEAD_INITIALIZER(io_handlers);
1452 /* XXX: fd_read_poll should be suppressed, but an API change is
1453 necessary in the character devices to suppress fd_can_read(). */
1454 int qemu_set_fd_handler2(int fd,
1455 IOCanReadHandler *fd_read_poll,
1456 IOHandler *fd_read,
1457 IOHandler *fd_write,
1458 void *opaque)
1460 IOHandlerRecord *ioh;
1462 if (!fd_read && !fd_write) {
1463 QLIST_FOREACH(ioh, &io_handlers, next) {
1464 if (ioh->fd == fd) {
1465 ioh->deleted = 1;
1466 break;
1469 } else {
1470 QLIST_FOREACH(ioh, &io_handlers, next) {
1471 if (ioh->fd == fd)
1472 goto found;
1474 ioh = qemu_mallocz(sizeof(IOHandlerRecord));
1475 QLIST_INSERT_HEAD(&io_handlers, ioh, next);
1476 found:
1477 ioh->fd = fd;
1478 ioh->fd_read_poll = fd_read_poll;
1479 ioh->fd_read = fd_read;
1480 ioh->fd_write = fd_write;
1481 ioh->opaque = opaque;
1482 ioh->deleted = 0;
1484 return 0;
1487 int qemu_set_fd_handler(int fd,
1488 IOHandler *fd_read,
1489 IOHandler *fd_write,
1490 void *opaque)
1492 return qemu_set_fd_handler2(fd, NULL, fd_read, fd_write, opaque);
1495 #ifdef _WIN32
1496 /***********************************************************/
1497 /* Polling handling */
1499 typedef struct PollingEntry {
1500 PollingFunc *func;
1501 void *opaque;
1502 struct PollingEntry *next;
1503 } PollingEntry;
1505 static PollingEntry *first_polling_entry;
1507 int qemu_add_polling_cb(PollingFunc *func, void *opaque)
1509 PollingEntry **ppe, *pe;
1510 pe = qemu_mallocz(sizeof(PollingEntry));
1511 pe->func = func;
1512 pe->opaque = opaque;
1513 for(ppe = &first_polling_entry; *ppe != NULL; ppe = &(*ppe)->next);
1514 *ppe = pe;
1515 return 0;
1518 void qemu_del_polling_cb(PollingFunc *func, void *opaque)
1520 PollingEntry **ppe, *pe;
1521 for(ppe = &first_polling_entry; *ppe != NULL; ppe = &(*ppe)->next) {
1522 pe = *ppe;
1523 if (pe->func == func && pe->opaque == opaque) {
1524 *ppe = pe->next;
1525 qemu_free(pe);
1526 break;
1531 /***********************************************************/
1532 /* Wait objects support */
1533 typedef struct WaitObjects {
1534 int num;
1535 HANDLE events[MAXIMUM_WAIT_OBJECTS + 1];
1536 WaitObjectFunc *func[MAXIMUM_WAIT_OBJECTS + 1];
1537 void *opaque[MAXIMUM_WAIT_OBJECTS + 1];
1538 } WaitObjects;
1540 static WaitObjects wait_objects = {0};
1542 int qemu_add_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
1544 WaitObjects *w = &wait_objects;
1546 if (w->num >= MAXIMUM_WAIT_OBJECTS)
1547 return -1;
1548 w->events[w->num] = handle;
1549 w->func[w->num] = func;
1550 w->opaque[w->num] = opaque;
1551 w->num++;
1552 return 0;
1555 void qemu_del_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
1557 int i, found;
1558 WaitObjects *w = &wait_objects;
1560 found = 0;
1561 for (i = 0; i < w->num; i++) {
1562 if (w->events[i] == handle)
1563 found = 1;
1564 if (found) {
1565 w->events[i] = w->events[i + 1];
1566 w->func[i] = w->func[i + 1];
1567 w->opaque[i] = w->opaque[i + 1];
1570 if (found)
1571 w->num--;
1573 #endif
1575 /***********************************************************/
1576 /* machine registration */
1578 static QEMUMachine *first_machine = NULL;
1579 QEMUMachine *current_machine = NULL;
1581 int qemu_register_machine(QEMUMachine *m)
1583 QEMUMachine **pm;
1584 pm = &first_machine;
1585 while (*pm != NULL)
1586 pm = &(*pm)->next;
1587 m->next = NULL;
1588 *pm = m;
1589 return 0;
1592 static QEMUMachine *find_machine(const char *name)
1594 QEMUMachine *m;
1596 for(m = first_machine; m != NULL; m = m->next) {
1597 if (!strcmp(m->name, name))
1598 return m;
1599 if (m->alias && !strcmp(m->alias, name))
1600 return m;
1602 return NULL;
1605 static QEMUMachine *find_default_machine(void)
1607 QEMUMachine *m;
1609 for(m = first_machine; m != NULL; m = m->next) {
1610 if (m->is_default) {
1611 return m;
1614 return NULL;
1617 /***********************************************************/
1618 /* main execution loop */
1620 static void gui_update(void *opaque)
1622 uint64_t interval = GUI_REFRESH_INTERVAL;
1623 DisplayState *ds = opaque;
1624 DisplayChangeListener *dcl = ds->listeners;
1626 qemu_flush_coalesced_mmio_buffer();
1627 dpy_refresh(ds);
1629 while (dcl != NULL) {
1630 if (dcl->gui_timer_interval &&
1631 dcl->gui_timer_interval < interval)
1632 interval = dcl->gui_timer_interval;
1633 dcl = dcl->next;
1635 qemu_mod_timer(ds->gui_timer, interval + qemu_get_clock(rt_clock));
1638 static void nographic_update(void *opaque)
1640 uint64_t interval = GUI_REFRESH_INTERVAL;
1642 qemu_flush_coalesced_mmio_buffer();
1643 qemu_mod_timer(nographic_timer, interval + qemu_get_clock(rt_clock));
1646 struct vm_change_state_entry {
1647 VMChangeStateHandler *cb;
1648 void *opaque;
1649 QLIST_ENTRY (vm_change_state_entry) entries;
1652 static QLIST_HEAD(vm_change_state_head, vm_change_state_entry) vm_change_state_head;
1654 VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
1655 void *opaque)
1657 VMChangeStateEntry *e;
1659 e = qemu_mallocz(sizeof (*e));
1661 e->cb = cb;
1662 e->opaque = opaque;
1663 QLIST_INSERT_HEAD(&vm_change_state_head, e, entries);
1664 return e;
1667 void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
1669 QLIST_REMOVE (e, entries);
1670 qemu_free (e);
1673 void vm_state_notify(int running, int reason)
1675 VMChangeStateEntry *e;
1677 for (e = vm_change_state_head.lh_first; e; e = e->entries.le_next) {
1678 e->cb(e->opaque, running, reason);
1682 void vm_start(void)
1684 if (!vm_running) {
1685 cpu_enable_ticks();
1686 vm_running = 1;
1687 vm_state_notify(1, 0);
1688 resume_all_vcpus();
1692 /* reset/shutdown handler */
1694 typedef struct QEMUResetEntry {
1695 QTAILQ_ENTRY(QEMUResetEntry) entry;
1696 QEMUResetHandler *func;
1697 void *opaque;
1698 } QEMUResetEntry;
1700 static QTAILQ_HEAD(reset_handlers, QEMUResetEntry) reset_handlers =
1701 QTAILQ_HEAD_INITIALIZER(reset_handlers);
1702 static int reset_requested;
1703 static int shutdown_requested;
1704 static int powerdown_requested;
1705 int debug_requested;
1706 int vmstop_requested;
1707 static int exit_requested;
1709 int qemu_shutdown_requested(void)
1711 int r = shutdown_requested;
1712 shutdown_requested = 0;
1713 return r;
1716 int qemu_reset_requested(void)
1718 int r = reset_requested;
1719 reset_requested = 0;
1720 return r;
1723 int qemu_powerdown_requested(void)
1725 int r = powerdown_requested;
1726 powerdown_requested = 0;
1727 return r;
1730 int qemu_exit_requested(void)
1732 /* just return it, we'll exit() anyway */
1733 return exit_requested;
1736 static int qemu_debug_requested(void)
1738 int r = debug_requested;
1739 debug_requested = 0;
1740 return r;
1743 static int qemu_vmstop_requested(void)
1745 int r = vmstop_requested;
1746 vmstop_requested = 0;
1747 return r;
1750 void qemu_register_reset(QEMUResetHandler *func, void *opaque)
1752 QEMUResetEntry *re = qemu_mallocz(sizeof(QEMUResetEntry));
1754 re->func = func;
1755 re->opaque = opaque;
1756 QTAILQ_INSERT_TAIL(&reset_handlers, re, entry);
1759 void qemu_unregister_reset(QEMUResetHandler *func, void *opaque)
1761 QEMUResetEntry *re;
1763 QTAILQ_FOREACH(re, &reset_handlers, entry) {
1764 if (re->func == func && re->opaque == opaque) {
1765 QTAILQ_REMOVE(&reset_handlers, re, entry);
1766 qemu_free(re);
1767 return;
1772 void qemu_system_reset(void)
1774 QEMUResetEntry *re, *nre;
1776 /* reset all devices */
1777 QTAILQ_FOREACH_SAFE(re, &reset_handlers, entry, nre) {
1778 re->func(re->opaque);
1780 monitor_protocol_event(QEVENT_RESET, NULL);
1781 cpu_synchronize_all_post_reset();
1784 void qemu_system_reset_request(void)
1786 if (no_reboot) {
1787 shutdown_requested = 1;
1788 } else {
1789 reset_requested = 1;
1791 qemu_notify_event();
1794 void qemu_system_shutdown_request(void)
1796 shutdown_requested = 1;
1797 qemu_notify_event();
1800 void qemu_system_powerdown_request(void)
1802 powerdown_requested = 1;
1803 qemu_notify_event();
1806 void qemu_system_exit_request(void)
1808 exit_requested = 1;
1809 qemu_notify_event();
1812 #ifdef _WIN32
1813 static void host_main_loop_wait(int *timeout)
1815 int ret, ret2, i;
1816 PollingEntry *pe;
1819 /* XXX: need to suppress polling by better using win32 events */
1820 ret = 0;
1821 for(pe = first_polling_entry; pe != NULL; pe = pe->next) {
1822 ret |= pe->func(pe->opaque);
1824 if (ret == 0) {
1825 int err;
1826 WaitObjects *w = &wait_objects;
1828 ret = WaitForMultipleObjects(w->num, w->events, FALSE, *timeout);
1829 if (WAIT_OBJECT_0 + 0 <= ret && ret <= WAIT_OBJECT_0 + w->num - 1) {
1830 if (w->func[ret - WAIT_OBJECT_0])
1831 w->func[ret - WAIT_OBJECT_0](w->opaque[ret - WAIT_OBJECT_0]);
1833 /* Check for additional signaled events */
1834 for(i = (ret - WAIT_OBJECT_0 + 1); i < w->num; i++) {
1836 /* Check if event is signaled */
1837 ret2 = WaitForSingleObject(w->events[i], 0);
1838 if(ret2 == WAIT_OBJECT_0) {
1839 if (w->func[i])
1840 w->func[i](w->opaque[i]);
1841 } else if (ret2 == WAIT_TIMEOUT) {
1842 } else {
1843 err = GetLastError();
1844 fprintf(stderr, "WaitForSingleObject error %d %d\n", i, err);
1847 } else if (ret == WAIT_TIMEOUT) {
1848 } else {
1849 err = GetLastError();
1850 fprintf(stderr, "WaitForMultipleObjects error %d %d\n", ret, err);
1854 *timeout = 0;
1856 #else
1857 static void host_main_loop_wait(int *timeout)
1860 #endif
1862 void main_loop_wait(int nonblocking)
1864 IOHandlerRecord *ioh;
1865 fd_set rfds, wfds, xfds;
1866 int ret, nfds;
1867 struct timeval tv;
1868 int timeout;
1870 if (nonblocking)
1871 timeout = 0;
1872 else {
1873 timeout = qemu_calculate_timeout();
1874 qemu_bh_update_timeout(&timeout);
1877 host_main_loop_wait(&timeout);
1879 /* poll any events */
1880 /* XXX: separate device handlers from system ones */
1881 nfds = -1;
1882 FD_ZERO(&rfds);
1883 FD_ZERO(&wfds);
1884 FD_ZERO(&xfds);
1885 QLIST_FOREACH(ioh, &io_handlers, next) {
1886 if (ioh->deleted)
1887 continue;
1888 if (ioh->fd_read &&
1889 (!ioh->fd_read_poll ||
1890 ioh->fd_read_poll(ioh->opaque) != 0)) {
1891 FD_SET(ioh->fd, &rfds);
1892 if (ioh->fd > nfds)
1893 nfds = ioh->fd;
1895 if (ioh->fd_write) {
1896 FD_SET(ioh->fd, &wfds);
1897 if (ioh->fd > nfds)
1898 nfds = ioh->fd;
1902 tv.tv_sec = timeout / 1000;
1903 tv.tv_usec = (timeout % 1000) * 1000;
1905 slirp_select_fill(&nfds, &rfds, &wfds, &xfds);
1907 qemu_mutex_unlock_iothread();
1908 ret = select(nfds + 1, &rfds, &wfds, &xfds, &tv);
1909 qemu_mutex_lock_iothread();
1910 if (ret > 0) {
1911 IOHandlerRecord *pioh;
1913 QLIST_FOREACH_SAFE(ioh, &io_handlers, next, pioh) {
1914 if (ioh->deleted) {
1915 QLIST_REMOVE(ioh, next);
1916 qemu_free(ioh);
1917 continue;
1919 if (ioh->fd_read && FD_ISSET(ioh->fd, &rfds)) {
1920 ioh->fd_read(ioh->opaque);
1922 if (ioh->fd_write && FD_ISSET(ioh->fd, &wfds)) {
1923 ioh->fd_write(ioh->opaque);
1928 slirp_select_poll(&rfds, &wfds, &xfds, (ret < 0));
1930 qemu_run_all_timers();
1932 /* Check bottom-halves last in case any of the earlier events triggered
1933 them. */
1934 qemu_bh_poll();
1938 static int vm_can_run(void)
1940 if (powerdown_requested)
1941 return 0;
1942 if (reset_requested)
1943 return 0;
1944 if (shutdown_requested)
1945 return 0;
1946 if (debug_requested)
1947 return 0;
1948 if (exit_requested)
1949 return 0;
1950 return 1;
1953 qemu_irq qemu_system_powerdown;
1955 static void main_loop(void)
1957 int r;
1959 qemu_main_loop_start();
1961 for (;;) {
1962 do {
1963 bool nonblocking = false;
1964 #ifdef CONFIG_PROFILER
1965 int64_t ti;
1966 #endif
1967 #ifndef CONFIG_IOTHREAD
1968 nonblocking = tcg_cpu_exec();
1969 #endif
1970 #ifdef CONFIG_PROFILER
1971 ti = profile_getclock();
1972 #endif
1973 main_loop_wait(nonblocking);
1974 #ifdef CONFIG_PROFILER
1975 dev_time += profile_getclock() - ti;
1976 #endif
1977 } while (vm_can_run());
1979 if ((r = qemu_debug_requested())) {
1980 vm_stop(r);
1982 if (qemu_shutdown_requested()) {
1983 monitor_protocol_event(QEVENT_SHUTDOWN, NULL);
1984 if (no_shutdown) {
1985 vm_stop(0);
1986 no_shutdown = 0;
1987 } else
1988 break;
1990 if (qemu_reset_requested()) {
1991 pause_all_vcpus();
1992 qemu_system_reset();
1993 resume_all_vcpus();
1995 if (qemu_powerdown_requested()) {
1996 monitor_protocol_event(QEVENT_POWERDOWN, NULL);
1997 qemu_irq_raise(qemu_system_powerdown);
1999 if ((r = qemu_vmstop_requested())) {
2000 vm_stop(r);
2002 if (qemu_exit_requested()) {
2003 exit(0);
2006 pause_all_vcpus();
2009 static void version(void)
2011 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n");
2014 static void help(int exitcode)
2016 const char *options_help =
2017 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
2018 opt_help
2019 #define DEFHEADING(text) stringify(text) "\n"
2020 #include "qemu-options.h"
2021 #undef DEF
2022 #undef DEFHEADING
2023 #undef GEN_DOCS
2025 version();
2026 printf("usage: %s [options] [disk_image]\n"
2027 "\n"
2028 "'disk_image' is a raw hard disk image for IDE hard disk 0\n"
2029 "\n"
2030 "%s\n"
2031 "During emulation, the following keys are useful:\n"
2032 "ctrl-alt-f toggle full screen\n"
2033 "ctrl-alt-n switch to virtual console 'n'\n"
2034 "ctrl-alt toggle mouse and keyboard grab\n"
2035 "\n"
2036 "When using -nographic, press 'ctrl-a h' to get some help.\n",
2037 "qemu",
2038 options_help);
2039 exit(exitcode);
2042 #define HAS_ARG 0x0001
2044 enum {
2045 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
2046 opt_enum,
2047 #define DEFHEADING(text)
2048 #include "qemu-options.h"
2049 #undef DEF
2050 #undef DEFHEADING
2051 #undef GEN_DOCS
2054 typedef struct QEMUOption {
2055 const char *name;
2056 int flags;
2057 int index;
2058 uint32_t arch_mask;
2059 } QEMUOption;
2061 static const QEMUOption qemu_options[] = {
2062 { "h", 0, QEMU_OPTION_h, QEMU_ARCH_ALL },
2063 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
2064 { option, opt_arg, opt_enum, arch_mask },
2065 #define DEFHEADING(text)
2066 #include "qemu-options.h"
2067 #undef DEF
2068 #undef DEFHEADING
2069 #undef GEN_DOCS
2070 { NULL },
2072 static void select_vgahw (const char *p)
2074 const char *opts;
2076 default_vga = 0;
2077 vga_interface_type = VGA_NONE;
2078 if (strstart(p, "std", &opts)) {
2079 vga_interface_type = VGA_STD;
2080 } else if (strstart(p, "cirrus", &opts)) {
2081 vga_interface_type = VGA_CIRRUS;
2082 } else if (strstart(p, "vmware", &opts)) {
2083 vga_interface_type = VGA_VMWARE;
2084 } else if (strstart(p, "xenfb", &opts)) {
2085 vga_interface_type = VGA_XENFB;
2086 } else if (!strstart(p, "none", &opts)) {
2087 invalid_vga:
2088 fprintf(stderr, "Unknown vga type: %s\n", p);
2089 exit(1);
2091 while (*opts) {
2092 const char *nextopt;
2094 if (strstart(opts, ",retrace=", &nextopt)) {
2095 opts = nextopt;
2096 if (strstart(opts, "dumb", &nextopt))
2097 vga_retrace_method = VGA_RETRACE_DUMB;
2098 else if (strstart(opts, "precise", &nextopt))
2099 vga_retrace_method = VGA_RETRACE_PRECISE;
2100 else goto invalid_vga;
2101 } else goto invalid_vga;
2102 opts = nextopt;
2106 static int balloon_parse(const char *arg)
2108 QemuOpts *opts;
2110 if (strcmp(arg, "none") == 0) {
2111 return 0;
2114 if (!strncmp(arg, "virtio", 6)) {
2115 if (arg[6] == ',') {
2116 /* have params -> parse them */
2117 opts = qemu_opts_parse(&qemu_device_opts, arg+7, 0);
2118 if (!opts)
2119 return -1;
2120 } else {
2121 /* create empty opts */
2122 opts = qemu_opts_create(&qemu_device_opts, NULL, 0);
2124 qemu_opt_set(opts, "driver", "virtio-balloon-pci");
2125 return 0;
2128 return -1;
2131 #ifdef _WIN32
2132 static BOOL WINAPI qemu_ctrl_handler(DWORD type)
2134 exit(STATUS_CONTROL_C_EXIT);
2135 return TRUE;
2137 #endif
2139 #ifndef _WIN32
2141 static void termsig_handler(int signal)
2143 qemu_system_shutdown_request();
2146 static void sigchld_handler(int signal)
2148 waitpid(-1, NULL, WNOHANG);
2151 static void sighandler_setup(void)
2153 struct sigaction act;
2155 memset(&act, 0, sizeof(act));
2156 act.sa_handler = termsig_handler;
2157 sigaction(SIGINT, &act, NULL);
2158 sigaction(SIGHUP, &act, NULL);
2159 sigaction(SIGTERM, &act, NULL);
2161 act.sa_handler = sigchld_handler;
2162 act.sa_flags = SA_NOCLDSTOP;
2163 sigaction(SIGCHLD, &act, NULL);
2166 #endif
2168 #ifdef _WIN32
2169 /* Look for support files in the same directory as the executable. */
2170 static char *find_datadir(const char *argv0)
2172 char *p;
2173 char buf[MAX_PATH];
2174 DWORD len;
2176 len = GetModuleFileName(NULL, buf, sizeof(buf) - 1);
2177 if (len == 0) {
2178 return NULL;
2181 buf[len] = 0;
2182 p = buf + len - 1;
2183 while (p != buf && *p != '\\')
2184 p--;
2185 *p = 0;
2186 if (access(buf, R_OK) == 0) {
2187 return qemu_strdup(buf);
2189 return NULL;
2191 #else /* !_WIN32 */
2193 /* Find a likely location for support files using the location of the binary.
2194 For installed binaries this will be "$bindir/../share/qemu". When
2195 running from the build tree this will be "$bindir/../pc-bios". */
2196 #define SHARE_SUFFIX "/share/qemu"
2197 #define BUILD_SUFFIX "/pc-bios"
2198 static char *find_datadir(const char *argv0)
2200 char *dir;
2201 char *p = NULL;
2202 char *res;
2203 char buf[PATH_MAX];
2204 size_t max_len;
2206 #if defined(__linux__)
2208 int len;
2209 len = readlink("/proc/self/exe", buf, sizeof(buf) - 1);
2210 if (len > 0) {
2211 buf[len] = 0;
2212 p = buf;
2215 #elif defined(__FreeBSD__)
2217 static int mib[4] = {CTL_KERN, KERN_PROC, KERN_PROC_PATHNAME, -1};
2218 size_t len = sizeof(buf) - 1;
2220 *buf = '\0';
2221 if (!sysctl(mib, sizeof(mib)/sizeof(*mib), buf, &len, NULL, 0) &&
2222 *buf) {
2223 buf[sizeof(buf) - 1] = '\0';
2224 p = buf;
2227 #endif
2228 /* If we don't have any way of figuring out the actual executable
2229 location then try argv[0]. */
2230 if (!p) {
2231 p = realpath(argv0, buf);
2232 if (!p) {
2233 return NULL;
2236 dir = dirname(p);
2237 dir = dirname(dir);
2239 max_len = strlen(dir) +
2240 MAX(strlen(SHARE_SUFFIX), strlen(BUILD_SUFFIX)) + 1;
2241 res = qemu_mallocz(max_len);
2242 snprintf(res, max_len, "%s%s", dir, SHARE_SUFFIX);
2243 if (access(res, R_OK)) {
2244 snprintf(res, max_len, "%s%s", dir, BUILD_SUFFIX);
2245 if (access(res, R_OK)) {
2246 qemu_free(res);
2247 res = NULL;
2251 return res;
2253 #undef SHARE_SUFFIX
2254 #undef BUILD_SUFFIX
2255 #endif
2257 char *qemu_find_file(int type, const char *name)
2259 int len;
2260 const char *subdir;
2261 char *buf;
2263 /* If name contains path separators then try it as a straight path. */
2264 if ((strchr(name, '/') || strchr(name, '\\'))
2265 && access(name, R_OK) == 0) {
2266 return qemu_strdup(name);
2268 switch (type) {
2269 case QEMU_FILE_TYPE_BIOS:
2270 subdir = "";
2271 break;
2272 case QEMU_FILE_TYPE_KEYMAP:
2273 subdir = "keymaps/";
2274 break;
2275 default:
2276 abort();
2278 len = strlen(data_dir) + strlen(name) + strlen(subdir) + 2;
2279 buf = qemu_mallocz(len);
2280 snprintf(buf, len, "%s/%s%s", data_dir, subdir, name);
2281 if (access(buf, R_OK)) {
2282 qemu_free(buf);
2283 return NULL;
2285 return buf;
2288 static int device_help_func(QemuOpts *opts, void *opaque)
2290 return qdev_device_help(opts);
2293 static int device_init_func(QemuOpts *opts, void *opaque)
2295 DeviceState *dev;
2297 dev = qdev_device_add(opts);
2298 if (!dev)
2299 return -1;
2300 return 0;
2303 static int chardev_init_func(QemuOpts *opts, void *opaque)
2305 CharDriverState *chr;
2307 chr = qemu_chr_open_opts(opts, NULL);
2308 if (!chr)
2309 return -1;
2310 return 0;
2313 static int mon_init_func(QemuOpts *opts, void *opaque)
2315 CharDriverState *chr;
2316 const char *chardev;
2317 const char *mode;
2318 int flags;
2320 mode = qemu_opt_get(opts, "mode");
2321 if (mode == NULL) {
2322 mode = "readline";
2324 if (strcmp(mode, "readline") == 0) {
2325 flags = MONITOR_USE_READLINE;
2326 } else if (strcmp(mode, "control") == 0) {
2327 flags = MONITOR_USE_CONTROL;
2328 } else {
2329 fprintf(stderr, "unknown monitor mode \"%s\"\n", mode);
2330 exit(1);
2333 if (qemu_opt_get_bool(opts, "default", 0))
2334 flags |= MONITOR_IS_DEFAULT;
2336 chardev = qemu_opt_get(opts, "chardev");
2337 chr = qemu_chr_find(chardev);
2338 if (chr == NULL) {
2339 fprintf(stderr, "chardev \"%s\" not found\n", chardev);
2340 exit(1);
2343 monitor_init(chr, flags);
2344 return 0;
2347 static void monitor_parse(const char *optarg, const char *mode)
2349 static int monitor_device_index = 0;
2350 QemuOpts *opts;
2351 const char *p;
2352 char label[32];
2353 int def = 0;
2355 if (strstart(optarg, "chardev:", &p)) {
2356 snprintf(label, sizeof(label), "%s", p);
2357 } else {
2358 snprintf(label, sizeof(label), "compat_monitor%d",
2359 monitor_device_index);
2360 if (monitor_device_index == 0) {
2361 def = 1;
2363 opts = qemu_chr_parse_compat(label, optarg);
2364 if (!opts) {
2365 fprintf(stderr, "parse error: %s\n", optarg);
2366 exit(1);
2370 opts = qemu_opts_create(&qemu_mon_opts, label, 1);
2371 if (!opts) {
2372 fprintf(stderr, "duplicate chardev: %s\n", label);
2373 exit(1);
2375 qemu_opt_set(opts, "mode", mode);
2376 qemu_opt_set(opts, "chardev", label);
2377 if (def)
2378 qemu_opt_set(opts, "default", "on");
2379 monitor_device_index++;
2382 struct device_config {
2383 enum {
2384 DEV_USB, /* -usbdevice */
2385 DEV_BT, /* -bt */
2386 DEV_SERIAL, /* -serial */
2387 DEV_PARALLEL, /* -parallel */
2388 DEV_VIRTCON, /* -virtioconsole */
2389 DEV_DEBUGCON, /* -debugcon */
2390 } type;
2391 const char *cmdline;
2392 QTAILQ_ENTRY(device_config) next;
2394 QTAILQ_HEAD(, device_config) device_configs = QTAILQ_HEAD_INITIALIZER(device_configs);
2396 static void add_device_config(int type, const char *cmdline)
2398 struct device_config *conf;
2400 conf = qemu_mallocz(sizeof(*conf));
2401 conf->type = type;
2402 conf->cmdline = cmdline;
2403 QTAILQ_INSERT_TAIL(&device_configs, conf, next);
2406 static int foreach_device_config(int type, int (*func)(const char *cmdline))
2408 struct device_config *conf;
2409 int rc;
2411 QTAILQ_FOREACH(conf, &device_configs, next) {
2412 if (conf->type != type)
2413 continue;
2414 rc = func(conf->cmdline);
2415 if (0 != rc)
2416 return rc;
2418 return 0;
2421 static int serial_parse(const char *devname)
2423 static int index = 0;
2424 char label[32];
2426 if (strcmp(devname, "none") == 0)
2427 return 0;
2428 if (index == MAX_SERIAL_PORTS) {
2429 fprintf(stderr, "qemu: too many serial ports\n");
2430 exit(1);
2432 snprintf(label, sizeof(label), "serial%d", index);
2433 serial_hds[index] = qemu_chr_open(label, devname, NULL);
2434 if (!serial_hds[index]) {
2435 fprintf(stderr, "qemu: could not open serial device '%s': %s\n",
2436 devname, strerror(errno));
2437 return -1;
2439 index++;
2440 return 0;
2443 static int parallel_parse(const char *devname)
2445 static int index = 0;
2446 char label[32];
2448 if (strcmp(devname, "none") == 0)
2449 return 0;
2450 if (index == MAX_PARALLEL_PORTS) {
2451 fprintf(stderr, "qemu: too many parallel ports\n");
2452 exit(1);
2454 snprintf(label, sizeof(label), "parallel%d", index);
2455 parallel_hds[index] = qemu_chr_open(label, devname, NULL);
2456 if (!parallel_hds[index]) {
2457 fprintf(stderr, "qemu: could not open parallel device '%s': %s\n",
2458 devname, strerror(errno));
2459 return -1;
2461 index++;
2462 return 0;
2465 static int virtcon_parse(const char *devname)
2467 static int index = 0;
2468 char label[32];
2469 QemuOpts *bus_opts, *dev_opts;
2471 if (strcmp(devname, "none") == 0)
2472 return 0;
2473 if (index == MAX_VIRTIO_CONSOLES) {
2474 fprintf(stderr, "qemu: too many virtio consoles\n");
2475 exit(1);
2478 bus_opts = qemu_opts_create(&qemu_device_opts, NULL, 0);
2479 qemu_opt_set(bus_opts, "driver", "virtio-serial");
2481 dev_opts = qemu_opts_create(&qemu_device_opts, NULL, 0);
2482 qemu_opt_set(dev_opts, "driver", "virtconsole");
2484 snprintf(label, sizeof(label), "virtcon%d", index);
2485 virtcon_hds[index] = qemu_chr_open(label, devname, NULL);
2486 if (!virtcon_hds[index]) {
2487 fprintf(stderr, "qemu: could not open virtio console '%s': %s\n",
2488 devname, strerror(errno));
2489 return -1;
2491 qemu_opt_set(dev_opts, "chardev", label);
2493 index++;
2494 return 0;
2497 static int debugcon_parse(const char *devname)
2499 QemuOpts *opts;
2501 if (!qemu_chr_open("debugcon", devname, NULL)) {
2502 exit(1);
2504 opts = qemu_opts_create(&qemu_device_opts, "debugcon", 1);
2505 if (!opts) {
2506 fprintf(stderr, "qemu: already have a debugcon device\n");
2507 exit(1);
2509 qemu_opt_set(opts, "driver", "isa-debugcon");
2510 qemu_opt_set(opts, "chardev", "debugcon");
2511 return 0;
2514 static const QEMUOption *lookup_opt(int argc, char **argv,
2515 const char **poptarg, int *poptind)
2517 const QEMUOption *popt;
2518 int optind = *poptind;
2519 char *r = argv[optind];
2520 const char *optarg;
2522 loc_set_cmdline(argv, optind, 1);
2523 optind++;
2524 /* Treat --foo the same as -foo. */
2525 if (r[1] == '-')
2526 r++;
2527 popt = qemu_options;
2528 for(;;) {
2529 if (!popt->name) {
2530 error_report("invalid option");
2531 exit(1);
2533 if (!strcmp(popt->name, r + 1))
2534 break;
2535 popt++;
2537 if (popt->flags & HAS_ARG) {
2538 if (optind >= argc) {
2539 error_report("requires an argument");
2540 exit(1);
2542 optarg = argv[optind++];
2543 loc_set_cmdline(argv, optind - 2, 2);
2544 } else {
2545 optarg = NULL;
2548 *poptarg = optarg;
2549 *poptind = optind;
2551 return popt;
2554 int main(int argc, char **argv, char **envp)
2556 const char *gdbstub_dev = NULL;
2557 int i;
2558 int snapshot, linux_boot;
2559 const char *icount_option = NULL;
2560 const char *initrd_filename;
2561 const char *kernel_filename, *kernel_cmdline;
2562 char boot_devices[33] = "cad"; /* default to HD->floppy->CD-ROM */
2563 DisplayState *ds;
2564 DisplayChangeListener *dcl;
2565 int cyls, heads, secs, translation;
2566 QemuOpts *hda_opts = NULL, *opts;
2567 int optind;
2568 const char *optarg;
2569 const char *loadvm = NULL;
2570 QEMUMachine *machine;
2571 const char *cpu_model;
2572 #ifndef _WIN32
2573 int fds[2];
2574 #endif
2575 int tb_size;
2576 const char *pid_file = NULL;
2577 const char *incoming = NULL;
2578 #ifndef _WIN32
2579 int fd = 0;
2580 struct passwd *pwd = NULL;
2581 const char *chroot_dir = NULL;
2582 const char *run_as = NULL;
2583 #endif
2584 int show_vnc_port = 0;
2585 int defconfig = 1;
2587 error_set_progname(argv[0]);
2589 init_clocks();
2591 qemu_cache_utils_init(envp);
2593 QLIST_INIT (&vm_change_state_head);
2594 #ifndef _WIN32
2596 struct sigaction act;
2597 sigfillset(&act.sa_mask);
2598 act.sa_flags = 0;
2599 act.sa_handler = SIG_IGN;
2600 sigaction(SIGPIPE, &act, NULL);
2602 #else
2603 SetConsoleCtrlHandler(qemu_ctrl_handler, TRUE);
2604 /* Note: cpu_interrupt() is currently not SMP safe, so we force
2605 QEMU to run on a single CPU */
2607 HANDLE h;
2608 DWORD mask, smask;
2609 int i;
2610 h = GetCurrentProcess();
2611 if (GetProcessAffinityMask(h, &mask, &smask)) {
2612 for(i = 0; i < 32; i++) {
2613 if (mask & (1 << i))
2614 break;
2616 if (i != 32) {
2617 mask = 1 << i;
2618 SetProcessAffinityMask(h, mask);
2622 #endif
2624 module_call_init(MODULE_INIT_MACHINE);
2625 machine = find_default_machine();
2626 cpu_model = NULL;
2627 initrd_filename = NULL;
2628 ram_size = 0;
2629 snapshot = 0;
2630 kernel_filename = NULL;
2631 kernel_cmdline = "";
2632 cyls = heads = secs = 0;
2633 translation = BIOS_ATA_TRANSLATION_AUTO;
2635 for (i = 0; i < MAX_NODES; i++) {
2636 node_mem[i] = 0;
2637 node_cpumask[i] = 0;
2640 nb_numa_nodes = 0;
2641 nb_nics = 0;
2643 tb_size = 0;
2644 autostart= 1;
2646 /* first pass of option parsing */
2647 optind = 1;
2648 while (optind < argc) {
2649 if (argv[optind][0] != '-') {
2650 /* disk image */
2651 optind++;
2652 continue;
2653 } else {
2654 const QEMUOption *popt;
2656 popt = lookup_opt(argc, argv, &optarg, &optind);
2657 switch (popt->index) {
2658 case QEMU_OPTION_nodefconfig:
2659 defconfig=0;
2660 break;
2665 if (defconfig) {
2666 int ret;
2668 ret = qemu_read_config_file(CONFIG_QEMU_CONFDIR "/qemu.conf");
2669 if (ret == -EINVAL) {
2670 exit(1);
2673 ret = qemu_read_config_file(arch_config_name);
2674 if (ret == -EINVAL) {
2675 exit(1);
2678 cpudef_init();
2680 /* second pass of option parsing */
2681 optind = 1;
2682 for(;;) {
2683 if (optind >= argc)
2684 break;
2685 if (argv[optind][0] != '-') {
2686 hda_opts = drive_add(argv[optind++], HD_ALIAS, 0);
2687 } else {
2688 const QEMUOption *popt;
2690 popt = lookup_opt(argc, argv, &optarg, &optind);
2691 if (!(popt->arch_mask & arch_type)) {
2692 printf("Option %s not supported for this target\n", popt->name);
2693 exit(1);
2695 switch(popt->index) {
2696 case QEMU_OPTION_M:
2697 machine = find_machine(optarg);
2698 if (!machine) {
2699 QEMUMachine *m;
2700 printf("Supported machines are:\n");
2701 for(m = first_machine; m != NULL; m = m->next) {
2702 if (m->alias)
2703 printf("%-10s %s (alias of %s)\n",
2704 m->alias, m->desc, m->name);
2705 printf("%-10s %s%s\n",
2706 m->name, m->desc,
2707 m->is_default ? " (default)" : "");
2709 exit(*optarg != '?');
2711 break;
2712 case QEMU_OPTION_cpu:
2713 /* hw initialization will check this */
2714 if (*optarg == '?') {
2715 /* XXX: implement xxx_cpu_list for targets that still miss it */
2716 #if defined(cpu_list_id)
2717 cpu_list_id(stdout, &fprintf, optarg);
2718 #elif defined(cpu_list)
2719 cpu_list(stdout, &fprintf); /* deprecated */
2720 #endif
2721 exit(0);
2722 } else {
2723 cpu_model = optarg;
2725 break;
2726 case QEMU_OPTION_initrd:
2727 initrd_filename = optarg;
2728 break;
2729 case QEMU_OPTION_hda:
2730 if (cyls == 0)
2731 hda_opts = drive_add(optarg, HD_ALIAS, 0);
2732 else
2733 hda_opts = drive_add(optarg, HD_ALIAS
2734 ",cyls=%d,heads=%d,secs=%d%s",
2735 0, cyls, heads, secs,
2736 translation == BIOS_ATA_TRANSLATION_LBA ?
2737 ",trans=lba" :
2738 translation == BIOS_ATA_TRANSLATION_NONE ?
2739 ",trans=none" : "");
2740 break;
2741 case QEMU_OPTION_hdb:
2742 case QEMU_OPTION_hdc:
2743 case QEMU_OPTION_hdd:
2744 drive_add(optarg, HD_ALIAS, popt->index - QEMU_OPTION_hda);
2745 break;
2746 case QEMU_OPTION_drive:
2747 drive_add(NULL, "%s", optarg);
2748 break;
2749 case QEMU_OPTION_set:
2750 if (qemu_set_option(optarg) != 0)
2751 exit(1);
2752 break;
2753 case QEMU_OPTION_global:
2754 if (qemu_global_option(optarg) != 0)
2755 exit(1);
2756 break;
2757 case QEMU_OPTION_mtdblock:
2758 drive_add(optarg, MTD_ALIAS);
2759 break;
2760 case QEMU_OPTION_sd:
2761 drive_add(optarg, SD_ALIAS);
2762 break;
2763 case QEMU_OPTION_pflash:
2764 drive_add(optarg, PFLASH_ALIAS);
2765 break;
2766 case QEMU_OPTION_snapshot:
2767 snapshot = 1;
2768 break;
2769 case QEMU_OPTION_hdachs:
2771 const char *p;
2772 p = optarg;
2773 cyls = strtol(p, (char **)&p, 0);
2774 if (cyls < 1 || cyls > 16383)
2775 goto chs_fail;
2776 if (*p != ',')
2777 goto chs_fail;
2778 p++;
2779 heads = strtol(p, (char **)&p, 0);
2780 if (heads < 1 || heads > 16)
2781 goto chs_fail;
2782 if (*p != ',')
2783 goto chs_fail;
2784 p++;
2785 secs = strtol(p, (char **)&p, 0);
2786 if (secs < 1 || secs > 63)
2787 goto chs_fail;
2788 if (*p == ',') {
2789 p++;
2790 if (!strcmp(p, "none"))
2791 translation = BIOS_ATA_TRANSLATION_NONE;
2792 else if (!strcmp(p, "lba"))
2793 translation = BIOS_ATA_TRANSLATION_LBA;
2794 else if (!strcmp(p, "auto"))
2795 translation = BIOS_ATA_TRANSLATION_AUTO;
2796 else
2797 goto chs_fail;
2798 } else if (*p != '\0') {
2799 chs_fail:
2800 fprintf(stderr, "qemu: invalid physical CHS format\n");
2801 exit(1);
2803 if (hda_opts != NULL) {
2804 char num[16];
2805 snprintf(num, sizeof(num), "%d", cyls);
2806 qemu_opt_set(hda_opts, "cyls", num);
2807 snprintf(num, sizeof(num), "%d", heads);
2808 qemu_opt_set(hda_opts, "heads", num);
2809 snprintf(num, sizeof(num), "%d", secs);
2810 qemu_opt_set(hda_opts, "secs", num);
2811 if (translation == BIOS_ATA_TRANSLATION_LBA)
2812 qemu_opt_set(hda_opts, "trans", "lba");
2813 if (translation == BIOS_ATA_TRANSLATION_NONE)
2814 qemu_opt_set(hda_opts, "trans", "none");
2817 break;
2818 case QEMU_OPTION_numa:
2819 if (nb_numa_nodes >= MAX_NODES) {
2820 fprintf(stderr, "qemu: too many NUMA nodes\n");
2821 exit(1);
2823 numa_add(optarg);
2824 break;
2825 case QEMU_OPTION_nographic:
2826 display_type = DT_NOGRAPHIC;
2827 break;
2828 #ifdef CONFIG_CURSES
2829 case QEMU_OPTION_curses:
2830 display_type = DT_CURSES;
2831 break;
2832 #endif
2833 case QEMU_OPTION_portrait:
2834 graphic_rotate = 1;
2835 break;
2836 case QEMU_OPTION_kernel:
2837 kernel_filename = optarg;
2838 break;
2839 case QEMU_OPTION_append:
2840 kernel_cmdline = optarg;
2841 break;
2842 case QEMU_OPTION_cdrom:
2843 drive_add(optarg, CDROM_ALIAS);
2844 break;
2845 case QEMU_OPTION_boot:
2847 static const char * const params[] = {
2848 "order", "once", "menu", NULL
2850 char buf[sizeof(boot_devices)];
2851 char *standard_boot_devices;
2852 int legacy = 0;
2854 if (!strchr(optarg, '=')) {
2855 legacy = 1;
2856 pstrcpy(buf, sizeof(buf), optarg);
2857 } else if (check_params(buf, sizeof(buf), params, optarg) < 0) {
2858 fprintf(stderr,
2859 "qemu: unknown boot parameter '%s' in '%s'\n",
2860 buf, optarg);
2861 exit(1);
2864 if (legacy ||
2865 get_param_value(buf, sizeof(buf), "order", optarg)) {
2866 validate_bootdevices(buf);
2867 pstrcpy(boot_devices, sizeof(boot_devices), buf);
2869 if (!legacy) {
2870 if (get_param_value(buf, sizeof(buf),
2871 "once", optarg)) {
2872 validate_bootdevices(buf);
2873 standard_boot_devices = qemu_strdup(boot_devices);
2874 pstrcpy(boot_devices, sizeof(boot_devices), buf);
2875 qemu_register_reset(restore_boot_devices,
2876 standard_boot_devices);
2878 if (get_param_value(buf, sizeof(buf),
2879 "menu", optarg)) {
2880 if (!strcmp(buf, "on")) {
2881 boot_menu = 1;
2882 } else if (!strcmp(buf, "off")) {
2883 boot_menu = 0;
2884 } else {
2885 fprintf(stderr,
2886 "qemu: invalid option value '%s'\n",
2887 buf);
2888 exit(1);
2893 break;
2894 case QEMU_OPTION_fda:
2895 case QEMU_OPTION_fdb:
2896 drive_add(optarg, FD_ALIAS, popt->index - QEMU_OPTION_fda);
2897 break;
2898 case QEMU_OPTION_no_fd_bootchk:
2899 fd_bootchk = 0;
2900 break;
2901 case QEMU_OPTION_netdev:
2902 if (net_client_parse(&qemu_netdev_opts, optarg) == -1) {
2903 exit(1);
2905 break;
2906 case QEMU_OPTION_net:
2907 if (net_client_parse(&qemu_net_opts, optarg) == -1) {
2908 exit(1);
2910 break;
2911 #ifdef CONFIG_SLIRP
2912 case QEMU_OPTION_tftp:
2913 legacy_tftp_prefix = optarg;
2914 break;
2915 case QEMU_OPTION_bootp:
2916 legacy_bootp_filename = optarg;
2917 break;
2918 #ifndef _WIN32
2919 case QEMU_OPTION_smb:
2920 if (net_slirp_smb(optarg) < 0)
2921 exit(1);
2922 break;
2923 #endif
2924 case QEMU_OPTION_redir:
2925 if (net_slirp_redir(optarg) < 0)
2926 exit(1);
2927 break;
2928 #endif
2929 case QEMU_OPTION_bt:
2930 add_device_config(DEV_BT, optarg);
2931 break;
2932 case QEMU_OPTION_audio_help:
2933 if (!(audio_available())) {
2934 printf("Option %s not supported for this target\n", popt->name);
2935 exit(1);
2937 AUD_help ();
2938 exit (0);
2939 break;
2940 case QEMU_OPTION_soundhw:
2941 if (!(audio_available())) {
2942 printf("Option %s not supported for this target\n", popt->name);
2943 exit(1);
2945 select_soundhw (optarg);
2946 break;
2947 case QEMU_OPTION_h:
2948 help(0);
2949 break;
2950 case QEMU_OPTION_version:
2951 version();
2952 exit(0);
2953 break;
2954 case QEMU_OPTION_m: {
2955 uint64_t value;
2956 char *ptr;
2958 value = strtoul(optarg, &ptr, 10);
2959 switch (*ptr) {
2960 case 0: case 'M': case 'm':
2961 value <<= 20;
2962 break;
2963 case 'G': case 'g':
2964 value <<= 30;
2965 break;
2966 default:
2967 fprintf(stderr, "qemu: invalid ram size: %s\n", optarg);
2968 exit(1);
2971 /* On 32-bit hosts, QEMU is limited by virtual address space */
2972 if (value > (2047 << 20) && HOST_LONG_BITS == 32) {
2973 fprintf(stderr, "qemu: at most 2047 MB RAM can be simulated\n");
2974 exit(1);
2976 if (value != (uint64_t)(ram_addr_t)value) {
2977 fprintf(stderr, "qemu: ram size too large\n");
2978 exit(1);
2980 ram_size = value;
2981 break;
2983 case QEMU_OPTION_mempath:
2984 mem_path = optarg;
2985 break;
2986 #ifdef MAP_POPULATE
2987 case QEMU_OPTION_mem_prealloc:
2988 mem_prealloc = 1;
2989 break;
2990 #endif
2991 case QEMU_OPTION_d:
2992 set_cpu_log(optarg);
2993 break;
2994 case QEMU_OPTION_s:
2995 gdbstub_dev = "tcp::" DEFAULT_GDBSTUB_PORT;
2996 break;
2997 case QEMU_OPTION_gdb:
2998 gdbstub_dev = optarg;
2999 break;
3000 case QEMU_OPTION_L:
3001 data_dir = optarg;
3002 break;
3003 case QEMU_OPTION_bios:
3004 bios_name = optarg;
3005 break;
3006 case QEMU_OPTION_singlestep:
3007 singlestep = 1;
3008 break;
3009 case QEMU_OPTION_S:
3010 autostart = 0;
3011 break;
3012 case QEMU_OPTION_k:
3013 keyboard_layout = optarg;
3014 break;
3015 case QEMU_OPTION_localtime:
3016 rtc_utc = 0;
3017 break;
3018 case QEMU_OPTION_vga:
3019 select_vgahw (optarg);
3020 break;
3021 case QEMU_OPTION_g:
3023 const char *p;
3024 int w, h, depth;
3025 p = optarg;
3026 w = strtol(p, (char **)&p, 10);
3027 if (w <= 0) {
3028 graphic_error:
3029 fprintf(stderr, "qemu: invalid resolution or depth\n");
3030 exit(1);
3032 if (*p != 'x')
3033 goto graphic_error;
3034 p++;
3035 h = strtol(p, (char **)&p, 10);
3036 if (h <= 0)
3037 goto graphic_error;
3038 if (*p == 'x') {
3039 p++;
3040 depth = strtol(p, (char **)&p, 10);
3041 if (depth != 8 && depth != 15 && depth != 16 &&
3042 depth != 24 && depth != 32)
3043 goto graphic_error;
3044 } else if (*p == '\0') {
3045 depth = graphic_depth;
3046 } else {
3047 goto graphic_error;
3050 graphic_width = w;
3051 graphic_height = h;
3052 graphic_depth = depth;
3054 break;
3055 case QEMU_OPTION_echr:
3057 char *r;
3058 term_escape_char = strtol(optarg, &r, 0);
3059 if (r == optarg)
3060 printf("Bad argument to echr\n");
3061 break;
3063 case QEMU_OPTION_monitor:
3064 monitor_parse(optarg, "readline");
3065 default_monitor = 0;
3066 break;
3067 case QEMU_OPTION_qmp:
3068 monitor_parse(optarg, "control");
3069 default_monitor = 0;
3070 break;
3071 case QEMU_OPTION_mon:
3072 opts = qemu_opts_parse(&qemu_mon_opts, optarg, 1);
3073 if (!opts) {
3074 exit(1);
3076 default_monitor = 0;
3077 break;
3078 case QEMU_OPTION_chardev:
3079 opts = qemu_opts_parse(&qemu_chardev_opts, optarg, 1);
3080 if (!opts) {
3081 exit(1);
3083 break;
3084 case QEMU_OPTION_serial:
3085 add_device_config(DEV_SERIAL, optarg);
3086 default_serial = 0;
3087 if (strncmp(optarg, "mon:", 4) == 0) {
3088 default_monitor = 0;
3090 break;
3091 case QEMU_OPTION_watchdog:
3092 if (watchdog) {
3093 fprintf(stderr,
3094 "qemu: only one watchdog option may be given\n");
3095 return 1;
3097 watchdog = optarg;
3098 break;
3099 case QEMU_OPTION_watchdog_action:
3100 if (select_watchdog_action(optarg) == -1) {
3101 fprintf(stderr, "Unknown -watchdog-action parameter\n");
3102 exit(1);
3104 break;
3105 case QEMU_OPTION_virtiocon:
3106 add_device_config(DEV_VIRTCON, optarg);
3107 default_virtcon = 0;
3108 if (strncmp(optarg, "mon:", 4) == 0) {
3109 default_monitor = 0;
3111 break;
3112 case QEMU_OPTION_parallel:
3113 add_device_config(DEV_PARALLEL, optarg);
3114 default_parallel = 0;
3115 if (strncmp(optarg, "mon:", 4) == 0) {
3116 default_monitor = 0;
3118 break;
3119 case QEMU_OPTION_debugcon:
3120 add_device_config(DEV_DEBUGCON, optarg);
3121 break;
3122 case QEMU_OPTION_loadvm:
3123 loadvm = optarg;
3124 break;
3125 case QEMU_OPTION_full_screen:
3126 full_screen = 1;
3127 break;
3128 #ifdef CONFIG_SDL
3129 case QEMU_OPTION_no_frame:
3130 no_frame = 1;
3131 break;
3132 case QEMU_OPTION_alt_grab:
3133 alt_grab = 1;
3134 break;
3135 case QEMU_OPTION_ctrl_grab:
3136 ctrl_grab = 1;
3137 break;
3138 case QEMU_OPTION_no_quit:
3139 no_quit = 1;
3140 break;
3141 case QEMU_OPTION_sdl:
3142 display_type = DT_SDL;
3143 break;
3144 #endif
3145 case QEMU_OPTION_pidfile:
3146 pid_file = optarg;
3147 break;
3148 case QEMU_OPTION_win2k_hack:
3149 win2k_install_hack = 1;
3150 break;
3151 case QEMU_OPTION_rtc_td_hack:
3152 rtc_td_hack = 1;
3153 break;
3154 case QEMU_OPTION_acpitable:
3155 do_acpitable_option(optarg);
3156 break;
3157 case QEMU_OPTION_smbios:
3158 do_smbios_option(optarg);
3159 break;
3160 case QEMU_OPTION_enable_kvm:
3161 kvm_allowed = 1;
3162 break;
3163 case QEMU_OPTION_usb:
3164 usb_enabled = 1;
3165 break;
3166 case QEMU_OPTION_usbdevice:
3167 usb_enabled = 1;
3168 add_device_config(DEV_USB, optarg);
3169 break;
3170 case QEMU_OPTION_device:
3171 if (!qemu_opts_parse(&qemu_device_opts, optarg, 1)) {
3172 exit(1);
3174 break;
3175 case QEMU_OPTION_smp:
3176 smp_parse(optarg);
3177 if (smp_cpus < 1) {
3178 fprintf(stderr, "Invalid number of CPUs\n");
3179 exit(1);
3181 if (max_cpus < smp_cpus) {
3182 fprintf(stderr, "maxcpus must be equal to or greater than "
3183 "smp\n");
3184 exit(1);
3186 if (max_cpus > 255) {
3187 fprintf(stderr, "Unsupported number of maxcpus\n");
3188 exit(1);
3190 break;
3191 case QEMU_OPTION_vnc:
3192 display_type = DT_VNC;
3193 vnc_display = optarg;
3194 break;
3195 case QEMU_OPTION_no_acpi:
3196 acpi_enabled = 0;
3197 break;
3198 case QEMU_OPTION_no_hpet:
3199 no_hpet = 1;
3200 break;
3201 case QEMU_OPTION_balloon:
3202 if (balloon_parse(optarg) < 0) {
3203 fprintf(stderr, "Unknown -balloon argument %s\n", optarg);
3204 exit(1);
3206 break;
3207 case QEMU_OPTION_no_reboot:
3208 no_reboot = 1;
3209 break;
3210 case QEMU_OPTION_no_shutdown:
3211 no_shutdown = 1;
3212 break;
3213 case QEMU_OPTION_show_cursor:
3214 cursor_hide = 0;
3215 break;
3216 case QEMU_OPTION_uuid:
3217 if(qemu_uuid_parse(optarg, qemu_uuid) < 0) {
3218 fprintf(stderr, "Fail to parse UUID string."
3219 " Wrong format.\n");
3220 exit(1);
3222 break;
3223 #ifndef _WIN32
3224 case QEMU_OPTION_daemonize:
3225 daemonize = 1;
3226 break;
3227 #endif
3228 case QEMU_OPTION_option_rom:
3229 if (nb_option_roms >= MAX_OPTION_ROMS) {
3230 fprintf(stderr, "Too many option ROMs\n");
3231 exit(1);
3233 option_rom[nb_option_roms] = optarg;
3234 nb_option_roms++;
3235 break;
3236 case QEMU_OPTION_semihosting:
3237 semihosting_enabled = 1;
3238 break;
3239 case QEMU_OPTION_name:
3240 qemu_name = qemu_strdup(optarg);
3242 char *p = strchr(qemu_name, ',');
3243 if (p != NULL) {
3244 *p++ = 0;
3245 if (strncmp(p, "process=", 8)) {
3246 fprintf(stderr, "Unknown subargument %s to -name", p);
3247 exit(1);
3249 p += 8;
3250 set_proc_name(p);
3253 break;
3254 case QEMU_OPTION_prom_env:
3255 if (nb_prom_envs >= MAX_PROM_ENVS) {
3256 fprintf(stderr, "Too many prom variables\n");
3257 exit(1);
3259 prom_envs[nb_prom_envs] = optarg;
3260 nb_prom_envs++;
3261 break;
3262 case QEMU_OPTION_old_param:
3263 old_param = 1;
3264 break;
3265 case QEMU_OPTION_clock:
3266 configure_alarms(optarg);
3267 break;
3268 case QEMU_OPTION_startdate:
3269 configure_rtc_date_offset(optarg, 1);
3270 break;
3271 case QEMU_OPTION_rtc:
3272 opts = qemu_opts_parse(&qemu_rtc_opts, optarg, 0);
3273 if (!opts) {
3274 exit(1);
3276 configure_rtc(opts);
3277 break;
3278 case QEMU_OPTION_tb_size:
3279 tb_size = strtol(optarg, NULL, 0);
3280 if (tb_size < 0)
3281 tb_size = 0;
3282 break;
3283 case QEMU_OPTION_icount:
3284 icount_option = optarg;
3285 break;
3286 case QEMU_OPTION_incoming:
3287 incoming = optarg;
3288 break;
3289 case QEMU_OPTION_nodefaults:
3290 default_serial = 0;
3291 default_parallel = 0;
3292 default_virtcon = 0;
3293 default_monitor = 0;
3294 default_vga = 0;
3295 default_net = 0;
3296 default_floppy = 0;
3297 default_cdrom = 0;
3298 default_sdcard = 0;
3299 break;
3300 #ifndef _WIN32
3301 case QEMU_OPTION_chroot:
3302 chroot_dir = optarg;
3303 break;
3304 case QEMU_OPTION_runas:
3305 run_as = optarg;
3306 break;
3307 #endif
3308 case QEMU_OPTION_xen_domid:
3309 if (!(xen_available())) {
3310 printf("Option %s not supported for this target\n", popt->name);
3311 exit(1);
3313 xen_domid = atoi(optarg);
3314 break;
3315 case QEMU_OPTION_xen_create:
3316 if (!(xen_available())) {
3317 printf("Option %s not supported for this target\n", popt->name);
3318 exit(1);
3320 xen_mode = XEN_CREATE;
3321 break;
3322 case QEMU_OPTION_xen_attach:
3323 if (!(xen_available())) {
3324 printf("Option %s not supported for this target\n", popt->name);
3325 exit(1);
3327 xen_mode = XEN_ATTACH;
3328 break;
3329 case QEMU_OPTION_readconfig:
3331 int ret = qemu_read_config_file(optarg);
3332 if (ret < 0) {
3333 fprintf(stderr, "read config %s: %s\n", optarg,
3334 strerror(-ret));
3335 exit(1);
3337 break;
3339 case QEMU_OPTION_writeconfig:
3341 FILE *fp;
3342 if (strcmp(optarg, "-") == 0) {
3343 fp = stdout;
3344 } else {
3345 fp = fopen(optarg, "w");
3346 if (fp == NULL) {
3347 fprintf(stderr, "open %s: %s\n", optarg, strerror(errno));
3348 exit(1);
3351 qemu_config_write(fp);
3352 fclose(fp);
3353 break;
3358 loc_set_none();
3360 /* If no data_dir is specified then try to find it relative to the
3361 executable path. */
3362 if (!data_dir) {
3363 data_dir = find_datadir(argv[0]);
3365 /* If all else fails use the install patch specified when building. */
3366 if (!data_dir) {
3367 data_dir = CONFIG_QEMU_SHAREDIR;
3371 * Default to max_cpus = smp_cpus, in case the user doesn't
3372 * specify a max_cpus value.
3374 if (!max_cpus)
3375 max_cpus = smp_cpus;
3377 machine->max_cpus = machine->max_cpus ?: 1; /* Default to UP */
3378 if (smp_cpus > machine->max_cpus) {
3379 fprintf(stderr, "Number of SMP cpus requested (%d), exceeds max cpus "
3380 "supported by machine `%s' (%d)\n", smp_cpus, machine->name,
3381 machine->max_cpus);
3382 exit(1);
3385 qemu_opts_foreach(&qemu_device_opts, default_driver_check, NULL, 0);
3386 qemu_opts_foreach(&qemu_global_opts, default_driver_check, NULL, 0);
3388 if (machine->no_serial) {
3389 default_serial = 0;
3391 if (machine->no_parallel) {
3392 default_parallel = 0;
3394 if (!machine->use_virtcon) {
3395 default_virtcon = 0;
3397 if (machine->no_vga) {
3398 default_vga = 0;
3400 if (machine->no_floppy) {
3401 default_floppy = 0;
3403 if (machine->no_cdrom) {
3404 default_cdrom = 0;
3406 if (machine->no_sdcard) {
3407 default_sdcard = 0;
3410 if (display_type == DT_NOGRAPHIC) {
3411 if (default_parallel)
3412 add_device_config(DEV_PARALLEL, "null");
3413 if (default_serial && default_monitor) {
3414 add_device_config(DEV_SERIAL, "mon:stdio");
3415 } else if (default_virtcon && default_monitor) {
3416 add_device_config(DEV_VIRTCON, "mon:stdio");
3417 } else {
3418 if (default_serial)
3419 add_device_config(DEV_SERIAL, "stdio");
3420 if (default_virtcon)
3421 add_device_config(DEV_VIRTCON, "stdio");
3422 if (default_monitor)
3423 monitor_parse("stdio", "readline");
3425 } else {
3426 if (default_serial)
3427 add_device_config(DEV_SERIAL, "vc:80Cx24C");
3428 if (default_parallel)
3429 add_device_config(DEV_PARALLEL, "vc:80Cx24C");
3430 if (default_monitor)
3431 monitor_parse("vc:80Cx24C", "readline");
3432 if (default_virtcon)
3433 add_device_config(DEV_VIRTCON, "vc:80Cx24C");
3435 if (default_vga)
3436 vga_interface_type = VGA_CIRRUS;
3438 if (qemu_opts_foreach(&qemu_chardev_opts, chardev_init_func, NULL, 1) != 0)
3439 exit(1);
3441 #ifndef _WIN32
3442 if (daemonize) {
3443 pid_t pid;
3445 if (pipe(fds) == -1)
3446 exit(1);
3448 pid = fork();
3449 if (pid > 0) {
3450 uint8_t status;
3451 ssize_t len;
3453 close(fds[1]);
3455 again:
3456 len = read(fds[0], &status, 1);
3457 if (len == -1 && (errno == EINTR))
3458 goto again;
3460 if (len != 1)
3461 exit(1);
3462 else if (status == 1) {
3463 fprintf(stderr, "Could not acquire pidfile: %s\n", strerror(errno));
3464 exit(1);
3465 } else
3466 exit(0);
3467 } else if (pid < 0)
3468 exit(1);
3470 close(fds[0]);
3471 qemu_set_cloexec(fds[1]);
3473 setsid();
3475 pid = fork();
3476 if (pid > 0)
3477 exit(0);
3478 else if (pid < 0)
3479 exit(1);
3481 umask(027);
3483 signal(SIGTSTP, SIG_IGN);
3484 signal(SIGTTOU, SIG_IGN);
3485 signal(SIGTTIN, SIG_IGN);
3487 #endif
3489 if (pid_file && qemu_create_pidfile(pid_file) != 0) {
3490 #ifndef _WIN32
3491 if (daemonize) {
3492 uint8_t status = 1;
3493 if (write(fds[1], &status, 1) != 1) {
3494 perror("daemonize. Writing to pipe\n");
3496 } else
3497 #endif
3498 fprintf(stderr, "Could not acquire pid file: %s\n", strerror(errno));
3499 exit(1);
3502 if (kvm_allowed) {
3503 int ret = kvm_init(smp_cpus);
3504 if (ret < 0) {
3505 if (!kvm_available()) {
3506 printf("KVM not supported for this target\n");
3507 } else {
3508 fprintf(stderr, "failed to initialize KVM: %s\n", strerror(-ret));
3510 exit(1);
3514 if (qemu_init_main_loop()) {
3515 fprintf(stderr, "qemu_init_main_loop failed\n");
3516 exit(1);
3518 linux_boot = (kernel_filename != NULL);
3520 if (!linux_boot && *kernel_cmdline != '\0') {
3521 fprintf(stderr, "-append only allowed with -kernel option\n");
3522 exit(1);
3525 if (!linux_boot && initrd_filename != NULL) {
3526 fprintf(stderr, "-initrd only allowed with -kernel option\n");
3527 exit(1);
3530 #ifndef _WIN32
3531 /* Win32 doesn't support line-buffering and requires size >= 2 */
3532 setvbuf(stdout, NULL, _IOLBF, 0);
3533 #endif
3535 if (init_timer_alarm() < 0) {
3536 fprintf(stderr, "could not initialize alarm timer\n");
3537 exit(1);
3539 configure_icount(icount_option);
3541 socket_init();
3543 if (net_init_clients() < 0) {
3544 exit(1);
3547 /* init the bluetooth world */
3548 if (foreach_device_config(DEV_BT, bt_parse))
3549 exit(1);
3551 /* init the memory */
3552 if (ram_size == 0)
3553 ram_size = DEFAULT_RAM_SIZE * 1024 * 1024;
3555 /* init the dynamic translator */
3556 cpu_exec_init_all(tb_size * 1024 * 1024);
3558 bdrv_init_with_whitelist();
3560 blk_mig_init();
3562 if (default_cdrom) {
3563 /* we always create the cdrom drive, even if no disk is there */
3564 drive_add(NULL, CDROM_ALIAS);
3567 if (default_floppy) {
3568 /* we always create at least one floppy */
3569 drive_add(NULL, FD_ALIAS, 0);
3572 if (default_sdcard) {
3573 /* we always create one sd slot, even if no card is in it */
3574 drive_add(NULL, SD_ALIAS);
3577 /* open the virtual block devices */
3578 if (snapshot)
3579 qemu_opts_foreach(&qemu_drive_opts, drive_enable_snapshot, NULL, 0);
3580 if (qemu_opts_foreach(&qemu_drive_opts, drive_init_func, machine, 1) != 0)
3581 exit(1);
3583 register_savevm_live("ram", 0, 3, NULL, ram_save_live, NULL,
3584 ram_load, NULL);
3586 if (nb_numa_nodes > 0) {
3587 int i;
3589 if (nb_numa_nodes > smp_cpus) {
3590 nb_numa_nodes = smp_cpus;
3593 /* If no memory size if given for any node, assume the default case
3594 * and distribute the available memory equally across all nodes
3596 for (i = 0; i < nb_numa_nodes; i++) {
3597 if (node_mem[i] != 0)
3598 break;
3600 if (i == nb_numa_nodes) {
3601 uint64_t usedmem = 0;
3603 /* On Linux, the each node's border has to be 8MB aligned,
3604 * the final node gets the rest.
3606 for (i = 0; i < nb_numa_nodes - 1; i++) {
3607 node_mem[i] = (ram_size / nb_numa_nodes) & ~((1 << 23UL) - 1);
3608 usedmem += node_mem[i];
3610 node_mem[i] = ram_size - usedmem;
3613 for (i = 0; i < nb_numa_nodes; i++) {
3614 if (node_cpumask[i] != 0)
3615 break;
3617 /* assigning the VCPUs round-robin is easier to implement, guest OSes
3618 * must cope with this anyway, because there are BIOSes out there in
3619 * real machines which also use this scheme.
3621 if (i == nb_numa_nodes) {
3622 for (i = 0; i < smp_cpus; i++) {
3623 node_cpumask[i % nb_numa_nodes] |= 1 << i;
3628 if (qemu_opts_foreach(&qemu_mon_opts, mon_init_func, NULL, 1) != 0) {
3629 exit(1);
3632 if (foreach_device_config(DEV_SERIAL, serial_parse) < 0)
3633 exit(1);
3634 if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0)
3635 exit(1);
3636 if (foreach_device_config(DEV_VIRTCON, virtcon_parse) < 0)
3637 exit(1);
3638 if (foreach_device_config(DEV_DEBUGCON, debugcon_parse) < 0)
3639 exit(1);
3641 module_call_init(MODULE_INIT_DEVICE);
3643 if (qemu_opts_foreach(&qemu_device_opts, device_help_func, NULL, 0) != 0)
3644 exit(0);
3646 if (watchdog) {
3647 i = select_watchdog(watchdog);
3648 if (i > 0)
3649 exit (i == 1 ? 1 : 0);
3652 if (machine->compat_props) {
3653 qdev_prop_register_global_list(machine->compat_props);
3655 qemu_add_globals();
3657 machine->init(ram_size, boot_devices,
3658 kernel_filename, kernel_cmdline, initrd_filename, cpu_model);
3660 cpu_synchronize_all_post_init();
3662 #ifndef _WIN32
3663 /* must be after terminal init, SDL library changes signal handlers */
3664 sighandler_setup();
3665 #endif
3667 set_numa_modes();
3669 current_machine = machine;
3671 /* init USB devices */
3672 if (usb_enabled) {
3673 if (foreach_device_config(DEV_USB, usb_parse) < 0)
3674 exit(1);
3677 /* init generic devices */
3678 if (qemu_opts_foreach(&qemu_device_opts, device_init_func, NULL, 1) != 0)
3679 exit(1);
3681 net_check_clients();
3683 /* just use the first displaystate for the moment */
3684 ds = get_displaystate();
3686 if (display_type == DT_DEFAULT) {
3687 #if defined(CONFIG_SDL) || defined(CONFIG_COCOA)
3688 display_type = DT_SDL;
3689 #else
3690 display_type = DT_VNC;
3691 vnc_display = "localhost:0,to=99";
3692 show_vnc_port = 1;
3693 #endif
3697 switch (display_type) {
3698 case DT_NOGRAPHIC:
3699 break;
3700 #if defined(CONFIG_CURSES)
3701 case DT_CURSES:
3702 curses_display_init(ds, full_screen);
3703 break;
3704 #endif
3705 #if defined(CONFIG_SDL)
3706 case DT_SDL:
3707 sdl_display_init(ds, full_screen, no_frame);
3708 break;
3709 #elif defined(CONFIG_COCOA)
3710 case DT_SDL:
3711 cocoa_display_init(ds, full_screen);
3712 break;
3713 #endif
3714 case DT_VNC:
3715 vnc_display_init(ds);
3716 if (vnc_display_open(ds, vnc_display) < 0)
3717 exit(1);
3719 if (show_vnc_port) {
3720 printf("VNC server running on `%s'\n", vnc_display_local_addr(ds));
3722 break;
3723 default:
3724 break;
3726 dpy_resize(ds);
3728 dcl = ds->listeners;
3729 while (dcl != NULL) {
3730 if (dcl->dpy_refresh != NULL) {
3731 ds->gui_timer = qemu_new_timer(rt_clock, gui_update, ds);
3732 qemu_mod_timer(ds->gui_timer, qemu_get_clock(rt_clock));
3734 dcl = dcl->next;
3737 if (display_type == DT_NOGRAPHIC || display_type == DT_VNC) {
3738 nographic_timer = qemu_new_timer(rt_clock, nographic_update, NULL);
3739 qemu_mod_timer(nographic_timer, qemu_get_clock(rt_clock));
3742 text_consoles_set_display(ds);
3744 if (gdbstub_dev && gdbserver_start(gdbstub_dev) < 0) {
3745 fprintf(stderr, "qemu: could not open gdbserver on device '%s'\n",
3746 gdbstub_dev);
3747 exit(1);
3750 qdev_machine_creation_done();
3752 if (rom_load_all() != 0) {
3753 fprintf(stderr, "rom loading failed\n");
3754 exit(1);
3757 qemu_system_reset();
3758 if (loadvm) {
3759 if (load_vmstate(loadvm) < 0) {
3760 autostart = 0;
3764 if (incoming) {
3765 qemu_start_incoming_migration(incoming);
3766 } else if (autostart) {
3767 vm_start();
3770 #ifndef _WIN32
3771 if (daemonize) {
3772 uint8_t status = 0;
3773 ssize_t len;
3775 again1:
3776 len = write(fds[1], &status, 1);
3777 if (len == -1 && (errno == EINTR))
3778 goto again1;
3780 if (len != 1)
3781 exit(1);
3783 if (chdir("/")) {
3784 perror("not able to chdir to /");
3785 exit(1);
3787 TFR(fd = qemu_open("/dev/null", O_RDWR));
3788 if (fd == -1)
3789 exit(1);
3792 if (run_as) {
3793 pwd = getpwnam(run_as);
3794 if (!pwd) {
3795 fprintf(stderr, "User \"%s\" doesn't exist\n", run_as);
3796 exit(1);
3800 if (chroot_dir) {
3801 if (chroot(chroot_dir) < 0) {
3802 fprintf(stderr, "chroot failed\n");
3803 exit(1);
3805 if (chdir("/")) {
3806 perror("not able to chdir to /");
3807 exit(1);
3811 if (run_as) {
3812 if (setgid(pwd->pw_gid) < 0) {
3813 fprintf(stderr, "Failed to setgid(%d)\n", pwd->pw_gid);
3814 exit(1);
3816 if (setuid(pwd->pw_uid) < 0) {
3817 fprintf(stderr, "Failed to setuid(%d)\n", pwd->pw_uid);
3818 exit(1);
3820 if (setuid(0) != -1) {
3821 fprintf(stderr, "Dropping privileges failed\n");
3822 exit(1);
3826 if (daemonize) {
3827 dup2(fd, 0);
3828 dup2(fd, 1);
3829 dup2(fd, 2);
3831 close(fd);
3833 #endif
3835 main_loop();
3836 quit_timers();
3837 net_cleanup();
3839 return 0;