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
32 /* Needed early for CONFIG_BSD etc. */
33 #include "config-host.h"
38 #include <sys/times.h>
42 #include <sys/ioctl.h>
43 #include <sys/resource.h>
44 #include <sys/socket.h>
45 #include <netinet/in.h>
47 #include <arpa/inet.h>
50 #include <sys/select.h>
53 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
55 #include <sys/sysctl.h>
63 #include <sys/prctl.h>
65 #include <linux/ppdev.h>
66 #include <linux/parport.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>
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);
89 #if defined(__OpenBSD__)
93 #if defined(CONFIG_VDE)
94 #include <libvdeplug.h>
102 #if defined(__APPLE__) || defined(main)
104 int qemu_main(int argc, char **argv, char **envp);
105 int main(int argc, char **argv)
107 return qemu_main(argc, argv, NULL);
110 #define main qemu_main
112 #endif /* CONFIG_SDL */
116 #define main qemu_main
117 #endif /* CONFIG_COCOA */
120 #include "hw/boards.h"
122 #include "hw/pcmcia.h"
127 #include "hw/watchdog.h"
128 #include "hw/smbios.h"
131 #include "hw/loader.h"
134 #include "net/slirp.h"
139 #include "qemu-timer.h"
140 #include "qemu-char.h"
141 #include "cache-utils.h"
143 #include "block_int.h"
144 #include "block-migration.h"
146 #include "audio/audio.h"
147 #include "migration.h"
149 #include "qemu-option.h"
150 #include "qemu-config.h"
151 #include "qemu-objects.h"
153 #include "fsdev/qemu-fsdev.h"
158 #include "qemu_socket.h"
160 #include "slirp/libslirp.h"
162 #include "qemu-queue.h"
164 #include "arch_init.h"
167 //#define DEBUG_SLIRP
169 #define DEFAULT_RAM_SIZE 128
171 #define MAX_VIRTIO_CONSOLES 1
173 static const char *data_dir;
174 const char *bios_name = NULL;
175 /* Note: drives_table[MAX_DRIVES] is a dummy block driver if none available
176 to store the VM snapshots */
177 struct drivelist drives = QTAILQ_HEAD_INITIALIZER(drives);
178 struct driveoptlist driveopts = QTAILQ_HEAD_INITIALIZER(driveopts);
179 enum vga_retrace_method vga_retrace_method = VGA_RETRACE_DUMB;
180 DisplayType display_type = DT_DEFAULT;
181 const char* keyboard_layout = NULL;
183 const char *mem_path = NULL;
185 int mem_prealloc = 0; /* force preallocation of physical target memory */
188 NICInfo nd_table[MAX_NICS];
191 static int rtc_utc = 1;
192 static int rtc_date_offset = -1; /* -1 means no change */
193 QEMUClock *rtc_clock;
194 int vga_interface_type = VGA_NONE;
195 static int full_screen = 0;
197 static int no_frame = 0;
200 CharDriverState *serial_hds[MAX_SERIAL_PORTS];
201 CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
202 CharDriverState *virtcon_hds[MAX_VIRTIO_CONSOLES];
203 int win2k_install_hack = 0;
211 const char *vnc_display;
212 int acpi_enabled = 1;
218 int graphic_rotate = 0;
219 uint8_t irq0override = 1;
223 const char *watchdog;
224 const char *option_rom[MAX_OPTION_ROMS];
226 int semihosting_enabled = 0;
228 const char *qemu_name;
231 unsigned int nb_prom_envs = 0;
232 const char *prom_envs[MAX_PROM_ENVS];
236 uint64_t node_mem[MAX_NODES];
237 uint64_t node_cpumask[MAX_NODES];
239 static QEMUTimer *nographic_timer;
241 uint8_t qemu_uuid[16];
243 static QEMUBootSetHandler *boot_set_handler;
244 static void *boot_set_opaque;
248 enum xen_mode xen_mode = XEN_EMULATE;
250 static int default_serial = 1;
251 static int default_parallel = 1;
252 static int default_virtcon = 1;
253 static int default_monitor = 1;
254 static int default_vga = 1;
255 static int default_floppy = 1;
256 static int default_cdrom = 1;
257 static int default_sdcard = 1;
263 { .driver = "isa-serial", .flag = &default_serial },
264 { .driver = "isa-parallel", .flag = &default_parallel },
265 { .driver = "isa-fdc", .flag = &default_floppy },
266 { .driver = "ide-drive", .flag = &default_cdrom },
267 { .driver = "virtio-serial-pci", .flag = &default_virtcon },
268 { .driver = "virtio-serial-s390", .flag = &default_virtcon },
269 { .driver = "virtio-serial", .flag = &default_virtcon },
270 { .driver = "VGA", .flag = &default_vga },
271 { .driver = "cirrus-vga", .flag = &default_vga },
272 { .driver = "vmware-svga", .flag = &default_vga },
275 static int default_driver_check(QemuOpts *opts, void *opaque)
277 const char *driver = qemu_opt_get(opts, "driver");
282 for (i = 0; i < ARRAY_SIZE(default_list); i++) {
283 if (strcmp(default_list[i].driver, driver) != 0)
285 *(default_list[i].flag) = 0;
290 /***********************************************************/
292 static void set_proc_name(const char *s)
294 #if defined(__linux__) && defined(PR_SET_NAME)
298 name[sizeof(name) - 1] = 0;
299 strncpy(name, s, sizeof(name));
300 /* Could rewrite argv[0] too, but that's a bit more complicated.
301 This simple way is enough for `top'. */
302 prctl(PR_SET_NAME, name);
306 /***********************************************************/
307 /* real time host monotonic timer */
309 /* compute with 96 bit intermediate result: (a*b)/c */
310 uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c)
315 #ifdef HOST_WORDS_BIGENDIAN
325 rl = (uint64_t)u.l.low * (uint64_t)b;
326 rh = (uint64_t)u.l.high * (uint64_t)b;
329 res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c;
333 /***********************************************************/
334 /* host time/date access */
335 void qemu_get_timedate(struct tm *tm, int offset)
342 if (rtc_date_offset == -1) {
346 ret = localtime(&ti);
348 ti -= rtc_date_offset;
352 memcpy(tm, ret, sizeof(struct tm));
355 int qemu_timedate_diff(struct tm *tm)
359 if (rtc_date_offset == -1)
361 seconds = mktimegm(tm);
363 seconds = mktime(tm);
365 seconds = mktimegm(tm) + rtc_date_offset;
367 return seconds - time(NULL);
370 void rtc_change_mon_event(struct tm *tm)
374 data = qobject_from_jsonf("{ 'offset': %d }", qemu_timedate_diff(tm));
375 monitor_protocol_event(QEVENT_RTC_CHANGE, data);
376 qobject_decref(data);
379 static void configure_rtc_date_offset(const char *startdate, int legacy)
381 time_t rtc_start_date;
384 if (!strcmp(startdate, "now") && legacy) {
385 rtc_date_offset = -1;
387 if (sscanf(startdate, "%d-%d-%dT%d:%d:%d",
395 } else if (sscanf(startdate, "%d-%d-%d",
407 rtc_start_date = mktimegm(&tm);
408 if (rtc_start_date == -1) {
410 fprintf(stderr, "Invalid date format. Valid formats are:\n"
411 "'2006-06-17T16:01:21' or '2006-06-17'\n");
414 rtc_date_offset = time(NULL) - rtc_start_date;
418 static void configure_rtc(QemuOpts *opts)
422 value = qemu_opt_get(opts, "base");
424 if (!strcmp(value, "utc")) {
426 } else if (!strcmp(value, "localtime")) {
429 configure_rtc_date_offset(value, 0);
432 value = qemu_opt_get(opts, "clock");
434 if (!strcmp(value, "host")) {
435 rtc_clock = host_clock;
436 } else if (!strcmp(value, "vm")) {
437 rtc_clock = vm_clock;
439 fprintf(stderr, "qemu: invalid option value '%s'\n", value);
443 value = qemu_opt_get(opts, "driftfix");
445 if (!strcmp(value, "slew")) {
447 } else if (!strcmp(value, "none")) {
450 fprintf(stderr, "qemu: invalid option value '%s'\n", value);
456 /***********************************************************/
457 /* Bluetooth support */
460 static struct HCIInfo *hci_table[MAX_NICS];
462 static struct bt_vlan_s {
463 struct bt_scatternet_s net;
465 struct bt_vlan_s *next;
468 /* find or alloc a new bluetooth "VLAN" */
469 static struct bt_scatternet_s *qemu_find_bt_vlan(int id)
471 struct bt_vlan_s **pvlan, *vlan;
472 for (vlan = first_bt_vlan; vlan != NULL; vlan = vlan->next) {
476 vlan = qemu_mallocz(sizeof(struct bt_vlan_s));
478 pvlan = &first_bt_vlan;
479 while (*pvlan != NULL)
480 pvlan = &(*pvlan)->next;
485 static void null_hci_send(struct HCIInfo *hci, const uint8_t *data, int len)
489 static int null_hci_addr_set(struct HCIInfo *hci, const uint8_t *bd_addr)
494 static struct HCIInfo null_hci = {
495 .cmd_send = null_hci_send,
496 .sco_send = null_hci_send,
497 .acl_send = null_hci_send,
498 .bdaddr_set = null_hci_addr_set,
501 struct HCIInfo *qemu_next_hci(void)
503 if (cur_hci == nb_hcis)
506 return hci_table[cur_hci++];
509 static struct HCIInfo *hci_init(const char *str)
512 struct bt_scatternet_s *vlan = 0;
514 if (!strcmp(str, "null"))
517 else if (!strncmp(str, "host", 4) && (str[4] == '\0' || str[4] == ':'))
519 return bt_host_hci(str[4] ? str + 5 : "hci0");
520 else if (!strncmp(str, "hci", 3)) {
523 if (!strncmp(str + 3, ",vlan=", 6)) {
524 vlan = qemu_find_bt_vlan(strtol(str + 9, &endp, 0));
529 vlan = qemu_find_bt_vlan(0);
531 return bt_new_hci(vlan);
534 fprintf(stderr, "qemu: Unknown bluetooth HCI `%s'.\n", str);
539 static int bt_hci_parse(const char *str)
544 if (nb_hcis >= MAX_NICS) {
545 fprintf(stderr, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS);
558 bdaddr.b[5] = 0x56 + nb_hcis;
559 hci->bdaddr_set(hci, bdaddr.b);
561 hci_table[nb_hcis++] = hci;
566 static void bt_vhci_add(int vlan_id)
568 struct bt_scatternet_s *vlan = qemu_find_bt_vlan(vlan_id);
571 fprintf(stderr, "qemu: warning: adding a VHCI to "
572 "an empty scatternet %i\n", vlan_id);
574 bt_vhci_init(bt_new_hci(vlan));
577 static struct bt_device_s *bt_device_add(const char *opt)
579 struct bt_scatternet_s *vlan;
581 char *endp = strstr(opt, ",vlan=");
582 int len = (endp ? endp - opt : strlen(opt)) + 1;
585 pstrcpy(devname, MIN(sizeof(devname), len), opt);
588 vlan_id = strtol(endp + 6, &endp, 0);
590 fprintf(stderr, "qemu: unrecognised bluetooth vlan Id\n");
595 vlan = qemu_find_bt_vlan(vlan_id);
598 fprintf(stderr, "qemu: warning: adding a slave device to "
599 "an empty scatternet %i\n", vlan_id);
601 if (!strcmp(devname, "keyboard"))
602 return bt_keyboard_init(vlan);
604 fprintf(stderr, "qemu: unsupported bluetooth device `%s'\n", devname);
608 static int bt_parse(const char *opt)
610 const char *endp, *p;
613 if (strstart(opt, "hci", &endp)) {
614 if (!*endp || *endp == ',') {
616 if (!strstart(endp, ",vlan=", 0))
619 return bt_hci_parse(opt);
621 } else if (strstart(opt, "vhci", &endp)) {
622 if (!*endp || *endp == ',') {
624 if (strstart(endp, ",vlan=", &p)) {
625 vlan = strtol(p, (char **) &endp, 0);
627 fprintf(stderr, "qemu: bad scatternet '%s'\n", p);
631 fprintf(stderr, "qemu: bad parameter '%s'\n", endp + 1);
640 } else if (strstart(opt, "device:", &endp))
641 return !bt_device_add(endp);
643 fprintf(stderr, "qemu: bad bluetooth parameter '%s'\n", opt);
647 /***********************************************************/
648 /* QEMU Block devices */
650 #define HD_ALIAS "index=%d,media=disk"
651 #define CDROM_ALIAS "index=2,media=cdrom"
652 #define FD_ALIAS "index=%d,if=floppy"
653 #define PFLASH_ALIAS "if=pflash"
654 #define MTD_ALIAS "if=mtd"
655 #define SD_ALIAS "index=0,if=sd"
657 QemuOpts *drive_add(const char *file, const char *fmt, ...)
664 vsnprintf(optstr, sizeof(optstr), fmt, ap);
667 opts = qemu_opts_parse(&qemu_drive_opts, optstr, 0);
672 qemu_opt_set(opts, "file", file);
676 DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit)
680 /* seek interface, bus and unit */
682 QTAILQ_FOREACH(dinfo, &drives, next) {
683 if (dinfo->type == type &&
692 DriveInfo *drive_get_by_id(const char *id)
696 QTAILQ_FOREACH(dinfo, &drives, next) {
697 if (strcmp(id, dinfo->id))
704 int drive_get_max_bus(BlockInterfaceType type)
710 QTAILQ_FOREACH(dinfo, &drives, next) {
711 if(dinfo->type == type &&
712 dinfo->bus > max_bus)
713 max_bus = dinfo->bus;
718 const char *drive_get_serial(BlockDriverState *bdrv)
722 QTAILQ_FOREACH(dinfo, &drives, next) {
723 if (dinfo->bdrv == bdrv)
724 return dinfo->serial;
730 BlockInterfaceErrorAction drive_get_on_error(
731 BlockDriverState *bdrv, int is_read)
735 QTAILQ_FOREACH(dinfo, &drives, next) {
736 if (dinfo->bdrv == bdrv)
737 return is_read ? dinfo->on_read_error : dinfo->on_write_error;
740 return is_read ? BLOCK_ERR_REPORT : BLOCK_ERR_STOP_ENOSPC;
743 static void bdrv_format_print(void *opaque, const char *name)
745 fprintf(stderr, " %s", name);
748 void drive_uninit(DriveInfo *dinfo)
750 qemu_opts_del(dinfo->opts);
751 bdrv_delete(dinfo->bdrv);
752 QTAILQ_REMOVE(&drives, dinfo, next);
756 static int parse_block_error_action(const char *buf, int is_read)
758 if (!strcmp(buf, "ignore")) {
759 return BLOCK_ERR_IGNORE;
760 } else if (!is_read && !strcmp(buf, "enospc")) {
761 return BLOCK_ERR_STOP_ENOSPC;
762 } else if (!strcmp(buf, "stop")) {
763 return BLOCK_ERR_STOP_ANY;
764 } else if (!strcmp(buf, "report")) {
765 return BLOCK_ERR_REPORT;
767 fprintf(stderr, "qemu: '%s' invalid %s error action\n",
768 buf, is_read ? "read" : "write");
773 DriveInfo *drive_init(QemuOpts *opts, void *opaque,
777 const char *file = NULL;
780 const char *mediastr = "";
781 BlockInterfaceType type;
782 enum { MEDIA_DISK, MEDIA_CDROM } media;
784 int cyls, heads, secs, translation;
785 BlockDriver *drv = NULL;
786 QEMUMachine *machine = opaque;
791 int on_read_error, on_write_error;
798 translation = BIOS_ATA_TRANSLATION_AUTO;
800 if (machine && machine->use_scsi) {
802 max_devs = MAX_SCSI_DEVS;
803 pstrcpy(devname, sizeof(devname), "scsi");
806 max_devs = MAX_IDE_DEVS;
807 pstrcpy(devname, sizeof(devname), "ide");
811 /* extract parameters */
812 bus_id = qemu_opt_get_number(opts, "bus", 0);
813 unit_id = qemu_opt_get_number(opts, "unit", -1);
814 index = qemu_opt_get_number(opts, "index", -1);
816 cyls = qemu_opt_get_number(opts, "cyls", 0);
817 heads = qemu_opt_get_number(opts, "heads", 0);
818 secs = qemu_opt_get_number(opts, "secs", 0);
820 snapshot = qemu_opt_get_bool(opts, "snapshot", 0);
821 ro = qemu_opt_get_bool(opts, "readonly", 0);
823 file = qemu_opt_get(opts, "file");
824 serial = qemu_opt_get(opts, "serial");
826 if ((buf = qemu_opt_get(opts, "if")) != NULL) {
827 pstrcpy(devname, sizeof(devname), buf);
828 if (!strcmp(buf, "ide")) {
830 max_devs = MAX_IDE_DEVS;
831 } else if (!strcmp(buf, "scsi")) {
833 max_devs = MAX_SCSI_DEVS;
834 } else if (!strcmp(buf, "floppy")) {
837 } else if (!strcmp(buf, "pflash")) {
840 } else if (!strcmp(buf, "mtd")) {
843 } else if (!strcmp(buf, "sd")) {
846 } else if (!strcmp(buf, "virtio")) {
849 } else if (!strcmp(buf, "xen")) {
852 } else if (!strcmp(buf, "none")) {
856 fprintf(stderr, "qemu: unsupported bus type '%s'\n", buf);
861 if (cyls || heads || secs) {
862 if (cyls < 1 || (type == IF_IDE && cyls > 16383)) {
863 fprintf(stderr, "qemu: '%s' invalid physical cyls number\n", buf);
866 if (heads < 1 || (type == IF_IDE && heads > 16)) {
867 fprintf(stderr, "qemu: '%s' invalid physical heads number\n", buf);
870 if (secs < 1 || (type == IF_IDE && secs > 63)) {
871 fprintf(stderr, "qemu: '%s' invalid physical secs number\n", buf);
876 if ((buf = qemu_opt_get(opts, "trans")) != NULL) {
879 "qemu: '%s' trans must be used with cyls,heads and secs\n",
883 if (!strcmp(buf, "none"))
884 translation = BIOS_ATA_TRANSLATION_NONE;
885 else if (!strcmp(buf, "lba"))
886 translation = BIOS_ATA_TRANSLATION_LBA;
887 else if (!strcmp(buf, "auto"))
888 translation = BIOS_ATA_TRANSLATION_AUTO;
890 fprintf(stderr, "qemu: '%s' invalid translation type\n", buf);
895 if ((buf = qemu_opt_get(opts, "media")) != NULL) {
896 if (!strcmp(buf, "disk")) {
898 } else if (!strcmp(buf, "cdrom")) {
899 if (cyls || secs || heads) {
901 "qemu: '%s' invalid physical CHS format\n", buf);
906 fprintf(stderr, "qemu: '%s' invalid media\n", buf);
911 if ((buf = qemu_opt_get(opts, "cache")) != NULL) {
912 if (!strcmp(buf, "off") || !strcmp(buf, "none")) {
913 bdrv_flags |= BDRV_O_NOCACHE;
914 } else if (!strcmp(buf, "writeback")) {
915 bdrv_flags |= BDRV_O_CACHE_WB;
916 } else if (!strcmp(buf, "unsafe")) {
917 bdrv_flags |= BDRV_O_CACHE_WB;
918 bdrv_flags |= BDRV_O_NO_FLUSH;
919 } else if (!strcmp(buf, "writethrough")) {
920 /* this is the default */
922 fprintf(stderr, "qemu: invalid cache option\n");
927 #ifdef CONFIG_LINUX_AIO
928 if ((buf = qemu_opt_get(opts, "aio")) != NULL) {
929 if (!strcmp(buf, "native")) {
930 bdrv_flags |= BDRV_O_NATIVE_AIO;
931 } else if (!strcmp(buf, "threads")) {
932 /* this is the default */
934 fprintf(stderr, "qemu: invalid aio option\n");
940 if ((buf = qemu_opt_get(opts, "format")) != NULL) {
941 if (strcmp(buf, "?") == 0) {
942 fprintf(stderr, "qemu: Supported formats:");
943 bdrv_iterate_format(bdrv_format_print, NULL);
944 fprintf(stderr, "\n");
947 drv = bdrv_find_whitelisted_format(buf);
949 fprintf(stderr, "qemu: '%s' invalid format\n", buf);
954 on_write_error = BLOCK_ERR_STOP_ENOSPC;
955 if ((buf = qemu_opt_get(opts, "werror")) != NULL) {
956 if (type != IF_IDE && type != IF_SCSI && type != IF_VIRTIO && type != IF_NONE) {
957 fprintf(stderr, "werror is no supported by this format\n");
961 on_write_error = parse_block_error_action(buf, 0);
962 if (on_write_error < 0) {
967 on_read_error = BLOCK_ERR_REPORT;
968 if ((buf = qemu_opt_get(opts, "rerror")) != NULL) {
969 if (type != IF_IDE && type != IF_VIRTIO && type != IF_NONE) {
970 fprintf(stderr, "rerror is no supported by this format\n");
974 on_read_error = parse_block_error_action(buf, 1);
975 if (on_read_error < 0) {
980 if ((devaddr = qemu_opt_get(opts, "addr")) != NULL) {
981 if (type != IF_VIRTIO) {
982 fprintf(stderr, "addr is not supported\n");
987 /* compute bus and unit according index */
990 if (bus_id != 0 || unit_id != -1) {
992 "qemu: index cannot be used with bus and unit\n");
1000 unit_id = index % max_devs;
1001 bus_id = index / max_devs;
1005 /* if user doesn't specify a unit_id,
1006 * try to find the first free
1009 if (unit_id == -1) {
1011 while (drive_get(type, bus_id, unit_id) != NULL) {
1013 if (max_devs && unit_id >= max_devs) {
1014 unit_id -= max_devs;
1022 if (max_devs && unit_id >= max_devs) {
1023 fprintf(stderr, "qemu: unit %d too big (max is %d)\n",
1024 unit_id, max_devs - 1);
1029 * ignore multiple definitions
1032 if (drive_get(type, bus_id, unit_id) != NULL) {
1039 dinfo = qemu_mallocz(sizeof(*dinfo));
1040 if ((buf = qemu_opts_id(opts)) != NULL) {
1041 dinfo->id = qemu_strdup(buf);
1043 /* no id supplied -> create one */
1044 dinfo->id = qemu_mallocz(32);
1045 if (type == IF_IDE || type == IF_SCSI)
1046 mediastr = (media == MEDIA_CDROM) ? "-cd" : "-hd";
1048 snprintf(dinfo->id, 32, "%s%i%s%i",
1049 devname, bus_id, mediastr, unit_id);
1051 snprintf(dinfo->id, 32, "%s%s%i",
1052 devname, mediastr, unit_id);
1054 dinfo->bdrv = bdrv_new(dinfo->id);
1055 dinfo->devaddr = devaddr;
1057 dinfo->bus = bus_id;
1058 dinfo->unit = unit_id;
1059 dinfo->on_read_error = on_read_error;
1060 dinfo->on_write_error = on_write_error;
1063 strncpy(dinfo->serial, serial, sizeof(serial));
1064 QTAILQ_INSERT_TAIL(&drives, dinfo, next);
1074 bdrv_set_geometry_hint(dinfo->bdrv, cyls, heads, secs);
1075 bdrv_set_translation_hint(dinfo->bdrv, translation);
1079 bdrv_set_type_hint(dinfo->bdrv, BDRV_TYPE_CDROM);
1084 /* FIXME: This isn't really a floppy, but it's a reasonable
1087 bdrv_set_type_hint(dinfo->bdrv, BDRV_TYPE_FLOPPY);
1093 /* add virtio block device */
1094 opts = qemu_opts_create(&qemu_device_opts, NULL, 0);
1095 qemu_opt_set(opts, "driver", "virtio-blk-pci");
1096 qemu_opt_set(opts, "drive", dinfo->id);
1098 qemu_opt_set(opts, "addr", devaddr);
1108 /* always use cache=unsafe with snapshot */
1109 bdrv_flags &= ~BDRV_O_CACHE_MASK;
1110 bdrv_flags |= (BDRV_O_SNAPSHOT|BDRV_O_CACHE_WB|BDRV_O_NO_FLUSH);
1113 if (media == MEDIA_CDROM) {
1114 /* CDROM is fine for any interface, don't check. */
1116 } else if (ro == 1) {
1117 if (type != IF_SCSI && type != IF_VIRTIO && type != IF_FLOPPY && type != IF_NONE) {
1118 fprintf(stderr, "qemu: readonly flag not supported for drive with this interface\n");
1123 bdrv_flags |= ro ? 0 : BDRV_O_RDWR;
1125 if (bdrv_open(dinfo->bdrv, file, bdrv_flags, drv) < 0) {
1126 fprintf(stderr, "qemu: could not open disk image %s: %s\n",
1127 file, strerror(errno));
1131 if (bdrv_key_required(dinfo->bdrv))
1137 static int drive_init_func(QemuOpts *opts, void *opaque)
1139 QEMUMachine *machine = opaque;
1140 int fatal_error = 0;
1142 if (drive_init(opts, machine, &fatal_error) == NULL) {
1149 static int drive_enable_snapshot(QemuOpts *opts, void *opaque)
1151 if (NULL == qemu_opt_get(opts, "snapshot")) {
1152 qemu_opt_set(opts, "snapshot", "on");
1157 void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque)
1159 boot_set_handler = func;
1160 boot_set_opaque = opaque;
1163 int qemu_boot_set(const char *boot_devices)
1165 if (!boot_set_handler) {
1168 return boot_set_handler(boot_set_opaque, boot_devices);
1171 static void validate_bootdevices(char *devices)
1173 /* We just do some generic consistency checks */
1177 for (p = devices; *p != '\0'; p++) {
1178 /* Allowed boot devices are:
1179 * a-b: floppy disk drives
1180 * c-f: IDE disk drives
1181 * g-m: machine implementation dependant drives
1182 * n-p: network devices
1183 * It's up to each machine implementation to check if the given boot
1184 * devices match the actual hardware implementation and firmware
1187 if (*p < 'a' || *p > 'p') {
1188 fprintf(stderr, "Invalid boot device '%c'\n", *p);
1191 if (bitmap & (1 << (*p - 'a'))) {
1192 fprintf(stderr, "Boot device '%c' was given twice\n", *p);
1195 bitmap |= 1 << (*p - 'a');
1199 static void restore_boot_devices(void *opaque)
1201 char *standard_boot_devices = opaque;
1202 static int first = 1;
1204 /* Restore boot order and remove ourselves after the first boot */
1210 qemu_boot_set(standard_boot_devices);
1212 qemu_unregister_reset(restore_boot_devices, standard_boot_devices);
1213 qemu_free(standard_boot_devices);
1216 static void numa_add(const char *optarg)
1220 unsigned long long value, endvalue;
1223 optarg = get_opt_name(option, 128, optarg, ',') + 1;
1224 if (!strcmp(option, "node")) {
1225 if (get_param_value(option, 128, "nodeid", optarg) == 0) {
1226 nodenr = nb_numa_nodes;
1228 nodenr = strtoull(option, NULL, 10);
1231 if (get_param_value(option, 128, "mem", optarg) == 0) {
1232 node_mem[nodenr] = 0;
1234 value = strtoull(option, &endptr, 0);
1236 case 0: case 'M': case 'm':
1243 node_mem[nodenr] = value;
1245 if (get_param_value(option, 128, "cpus", optarg) == 0) {
1246 node_cpumask[nodenr] = 0;
1248 value = strtoull(option, &endptr, 10);
1251 fprintf(stderr, "only 64 CPUs in NUMA mode supported.\n");
1253 if (*endptr == '-') {
1254 endvalue = strtoull(endptr+1, &endptr, 10);
1255 if (endvalue >= 63) {
1258 "only 63 CPUs in NUMA mode supported.\n");
1260 value = (2ULL << endvalue) - (1ULL << value);
1262 value = 1ULL << value;
1265 node_cpumask[nodenr] = value;
1272 static void smp_parse(const char *optarg)
1274 int smp, sockets = 0, threads = 0, cores = 0;
1278 smp = strtoul(optarg, &endptr, 10);
1279 if (endptr != optarg) {
1280 if (*endptr == ',') {
1284 if (get_param_value(option, 128, "sockets", endptr) != 0)
1285 sockets = strtoull(option, NULL, 10);
1286 if (get_param_value(option, 128, "cores", endptr) != 0)
1287 cores = strtoull(option, NULL, 10);
1288 if (get_param_value(option, 128, "threads", endptr) != 0)
1289 threads = strtoull(option, NULL, 10);
1290 if (get_param_value(option, 128, "maxcpus", endptr) != 0)
1291 max_cpus = strtoull(option, NULL, 10);
1293 /* compute missing values, prefer sockets over cores over threads */
1294 if (smp == 0 || sockets == 0) {
1295 sockets = sockets > 0 ? sockets : 1;
1296 cores = cores > 0 ? cores : 1;
1297 threads = threads > 0 ? threads : 1;
1299 smp = cores * threads * sockets;
1303 threads = threads > 0 ? threads : 1;
1304 cores = smp / (sockets * threads);
1307 threads = smp / (cores * sockets);
1312 smp_cores = cores > 0 ? cores : 1;
1313 smp_threads = threads > 0 ? threads : 1;
1315 max_cpus = smp_cpus;
1318 /***********************************************************/
1321 static int usb_device_add(const char *devname, int is_hotplug)
1324 USBDevice *dev = NULL;
1329 /* drivers with .usbdevice_name entry in USBDeviceInfo */
1330 dev = usbdevice_create(devname);
1334 /* the other ones */
1335 if (strstart(devname, "host:", &p)) {
1336 dev = usb_host_device_open(p);
1337 } else if (!strcmp(devname, "bt") || strstart(devname, "bt:", &p)) {
1338 dev = usb_bt_init(devname[2] ? hci_init(p) :
1339 bt_new_hci(qemu_find_bt_vlan(0)));
1350 static int usb_device_del(const char *devname)
1355 if (strstart(devname, "host:", &p))
1356 return usb_host_device_close(p);
1361 p = strchr(devname, '.');
1364 bus_num = strtoul(devname, NULL, 0);
1365 addr = strtoul(p + 1, NULL, 0);
1367 return usb_device_delete_addr(bus_num, addr);
1370 static int usb_parse(const char *cmdline)
1373 r = usb_device_add(cmdline, 0);
1375 fprintf(stderr, "qemu: could not add USB device '%s'\n", cmdline);
1380 void do_usb_add(Monitor *mon, const QDict *qdict)
1382 const char *devname = qdict_get_str(qdict, "devname");
1383 if (usb_device_add(devname, 1) < 0) {
1384 error_report("could not add USB device '%s'", devname);
1388 void do_usb_del(Monitor *mon, const QDict *qdict)
1390 const char *devname = qdict_get_str(qdict, "devname");
1391 if (usb_device_del(devname) < 0) {
1392 error_report("could not delete USB device '%s'", devname);
1396 /***********************************************************/
1397 /* PCMCIA/Cardbus */
1399 static struct pcmcia_socket_entry_s {
1400 PCMCIASocket *socket;
1401 struct pcmcia_socket_entry_s *next;
1402 } *pcmcia_sockets = 0;
1404 void pcmcia_socket_register(PCMCIASocket *socket)
1406 struct pcmcia_socket_entry_s *entry;
1408 entry = qemu_malloc(sizeof(struct pcmcia_socket_entry_s));
1409 entry->socket = socket;
1410 entry->next = pcmcia_sockets;
1411 pcmcia_sockets = entry;
1414 void pcmcia_socket_unregister(PCMCIASocket *socket)
1416 struct pcmcia_socket_entry_s *entry, **ptr;
1418 ptr = &pcmcia_sockets;
1419 for (entry = *ptr; entry; ptr = &entry->next, entry = *ptr)
1420 if (entry->socket == socket) {
1426 void pcmcia_info(Monitor *mon)
1428 struct pcmcia_socket_entry_s *iter;
1430 if (!pcmcia_sockets)
1431 monitor_printf(mon, "No PCMCIA sockets\n");
1433 for (iter = pcmcia_sockets; iter; iter = iter->next)
1434 monitor_printf(mon, "%s: %s\n", iter->socket->slot_string,
1435 iter->socket->attached ? iter->socket->card_string :
1439 /***********************************************************/
1442 typedef struct IOHandlerRecord {
1444 IOCanReadHandler *fd_read_poll;
1446 IOHandler *fd_write;
1449 /* temporary data */
1451 QLIST_ENTRY(IOHandlerRecord) next;
1454 static QLIST_HEAD(, IOHandlerRecord) io_handlers =
1455 QLIST_HEAD_INITIALIZER(io_handlers);
1458 /* XXX: fd_read_poll should be suppressed, but an API change is
1459 necessary in the character devices to suppress fd_can_read(). */
1460 int qemu_set_fd_handler2(int fd,
1461 IOCanReadHandler *fd_read_poll,
1463 IOHandler *fd_write,
1466 IOHandlerRecord *ioh;
1468 if (!fd_read && !fd_write) {
1469 QLIST_FOREACH(ioh, &io_handlers, next) {
1470 if (ioh->fd == fd) {
1476 QLIST_FOREACH(ioh, &io_handlers, next) {
1480 ioh = qemu_mallocz(sizeof(IOHandlerRecord));
1481 QLIST_INSERT_HEAD(&io_handlers, ioh, next);
1484 ioh->fd_read_poll = fd_read_poll;
1485 ioh->fd_read = fd_read;
1486 ioh->fd_write = fd_write;
1487 ioh->opaque = opaque;
1493 int qemu_set_fd_handler(int fd,
1495 IOHandler *fd_write,
1498 return qemu_set_fd_handler2(fd, NULL, fd_read, fd_write, opaque);
1502 /***********************************************************/
1503 /* Polling handling */
1505 typedef struct PollingEntry {
1508 struct PollingEntry *next;
1511 static PollingEntry *first_polling_entry;
1513 int qemu_add_polling_cb(PollingFunc *func, void *opaque)
1515 PollingEntry **ppe, *pe;
1516 pe = qemu_mallocz(sizeof(PollingEntry));
1518 pe->opaque = opaque;
1519 for(ppe = &first_polling_entry; *ppe != NULL; ppe = &(*ppe)->next);
1524 void qemu_del_polling_cb(PollingFunc *func, void *opaque)
1526 PollingEntry **ppe, *pe;
1527 for(ppe = &first_polling_entry; *ppe != NULL; ppe = &(*ppe)->next) {
1529 if (pe->func == func && pe->opaque == opaque) {
1537 /***********************************************************/
1538 /* Wait objects support */
1539 typedef struct WaitObjects {
1541 HANDLE events[MAXIMUM_WAIT_OBJECTS + 1];
1542 WaitObjectFunc *func[MAXIMUM_WAIT_OBJECTS + 1];
1543 void *opaque[MAXIMUM_WAIT_OBJECTS + 1];
1546 static WaitObjects wait_objects = {0};
1548 int qemu_add_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
1550 WaitObjects *w = &wait_objects;
1552 if (w->num >= MAXIMUM_WAIT_OBJECTS)
1554 w->events[w->num] = handle;
1555 w->func[w->num] = func;
1556 w->opaque[w->num] = opaque;
1561 void qemu_del_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
1564 WaitObjects *w = &wait_objects;
1567 for (i = 0; i < w->num; i++) {
1568 if (w->events[i] == handle)
1571 w->events[i] = w->events[i + 1];
1572 w->func[i] = w->func[i + 1];
1573 w->opaque[i] = w->opaque[i + 1];
1581 /***********************************************************/
1582 /* machine registration */
1584 static QEMUMachine *first_machine = NULL;
1585 QEMUMachine *current_machine = NULL;
1587 int qemu_register_machine(QEMUMachine *m)
1590 pm = &first_machine;
1598 static QEMUMachine *find_machine(const char *name)
1602 for(m = first_machine; m != NULL; m = m->next) {
1603 if (!strcmp(m->name, name))
1605 if (m->alias && !strcmp(m->alias, name))
1611 static QEMUMachine *find_default_machine(void)
1615 for(m = first_machine; m != NULL; m = m->next) {
1616 if (m->is_default) {
1623 /***********************************************************/
1624 /* main execution loop */
1626 static void gui_update(void *opaque)
1628 uint64_t interval = GUI_REFRESH_INTERVAL;
1629 DisplayState *ds = opaque;
1630 DisplayChangeListener *dcl = ds->listeners;
1632 qemu_flush_coalesced_mmio_buffer();
1635 while (dcl != NULL) {
1636 if (dcl->gui_timer_interval &&
1637 dcl->gui_timer_interval < interval)
1638 interval = dcl->gui_timer_interval;
1641 qemu_mod_timer(ds->gui_timer, interval + qemu_get_clock(rt_clock));
1644 static void nographic_update(void *opaque)
1646 uint64_t interval = GUI_REFRESH_INTERVAL;
1648 qemu_flush_coalesced_mmio_buffer();
1649 qemu_mod_timer(nographic_timer, interval + qemu_get_clock(rt_clock));
1652 struct vm_change_state_entry {
1653 VMChangeStateHandler *cb;
1655 QLIST_ENTRY (vm_change_state_entry) entries;
1658 static QLIST_HEAD(vm_change_state_head, vm_change_state_entry) vm_change_state_head;
1660 VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
1663 VMChangeStateEntry *e;
1665 e = qemu_mallocz(sizeof (*e));
1669 QLIST_INSERT_HEAD(&vm_change_state_head, e, entries);
1673 void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
1675 QLIST_REMOVE (e, entries);
1679 void vm_state_notify(int running, int reason)
1681 VMChangeStateEntry *e;
1683 for (e = vm_change_state_head.lh_first; e; e = e->entries.le_next) {
1684 e->cb(e->opaque, running, reason);
1693 vm_state_notify(1, 0);
1695 monitor_protocol_event(QEVENT_RESUME, NULL);
1699 /* reset/shutdown handler */
1701 typedef struct QEMUResetEntry {
1702 QTAILQ_ENTRY(QEMUResetEntry) entry;
1703 QEMUResetHandler *func;
1707 static QTAILQ_HEAD(reset_handlers, QEMUResetEntry) reset_handlers =
1708 QTAILQ_HEAD_INITIALIZER(reset_handlers);
1709 static int reset_requested;
1710 static int shutdown_requested;
1711 static int powerdown_requested;
1712 int debug_requested;
1713 int vmstop_requested;
1715 int qemu_shutdown_requested(void)
1717 int r = shutdown_requested;
1718 shutdown_requested = 0;
1722 int qemu_reset_requested(void)
1724 int r = reset_requested;
1725 reset_requested = 0;
1729 int qemu_powerdown_requested(void)
1731 int r = powerdown_requested;
1732 powerdown_requested = 0;
1736 static int qemu_debug_requested(void)
1738 int r = debug_requested;
1739 debug_requested = 0;
1743 static int qemu_vmstop_requested(void)
1745 int r = vmstop_requested;
1746 vmstop_requested = 0;
1750 void qemu_register_reset(QEMUResetHandler *func, void *opaque)
1752 QEMUResetEntry *re = qemu_mallocz(sizeof(QEMUResetEntry));
1755 re->opaque = opaque;
1756 QTAILQ_INSERT_TAIL(&reset_handlers, re, entry);
1759 void qemu_unregister_reset(QEMUResetHandler *func, void *opaque)
1763 QTAILQ_FOREACH(re, &reset_handlers, entry) {
1764 if (re->func == func && re->opaque == opaque) {
1765 QTAILQ_REMOVE(&reset_handlers, re, entry);
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)
1787 shutdown_requested = 1;
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();
1807 static void host_main_loop_wait(int *timeout)
1813 /* XXX: need to suppress polling by better using win32 events */
1815 for(pe = first_polling_entry; pe != NULL; pe = pe->next) {
1816 ret |= pe->func(pe->opaque);
1820 WaitObjects *w = &wait_objects;
1822 ret = WaitForMultipleObjects(w->num, w->events, FALSE, *timeout);
1823 if (WAIT_OBJECT_0 + 0 <= ret && ret <= WAIT_OBJECT_0 + w->num - 1) {
1824 if (w->func[ret - WAIT_OBJECT_0])
1825 w->func[ret - WAIT_OBJECT_0](w->opaque[ret - WAIT_OBJECT_0]);
1827 /* Check for additional signaled events */
1828 for(i = (ret - WAIT_OBJECT_0 + 1); i < w->num; i++) {
1830 /* Check if event is signaled */
1831 ret2 = WaitForSingleObject(w->events[i], 0);
1832 if(ret2 == WAIT_OBJECT_0) {
1834 w->func[i](w->opaque[i]);
1835 } else if (ret2 == WAIT_TIMEOUT) {
1837 err = GetLastError();
1838 fprintf(stderr, "WaitForSingleObject error %d %d\n", i, err);
1841 } else if (ret == WAIT_TIMEOUT) {
1843 err = GetLastError();
1844 fprintf(stderr, "WaitForMultipleObjects error %d %d\n", ret, err);
1851 static void host_main_loop_wait(int *timeout)
1856 void main_loop_wait(int nonblocking)
1858 IOHandlerRecord *ioh;
1859 fd_set rfds, wfds, xfds;
1867 timeout = qemu_calculate_timeout();
1868 qemu_bh_update_timeout(&timeout);
1871 host_main_loop_wait(&timeout);
1873 /* poll any events */
1874 /* XXX: separate device handlers from system ones */
1879 QLIST_FOREACH(ioh, &io_handlers, next) {
1883 (!ioh->fd_read_poll ||
1884 ioh->fd_read_poll(ioh->opaque) != 0)) {
1885 FD_SET(ioh->fd, &rfds);
1889 if (ioh->fd_write) {
1890 FD_SET(ioh->fd, &wfds);
1896 tv.tv_sec = timeout / 1000;
1897 tv.tv_usec = (timeout % 1000) * 1000;
1899 slirp_select_fill(&nfds, &rfds, &wfds, &xfds);
1901 qemu_mutex_unlock_iothread();
1902 ret = select(nfds + 1, &rfds, &wfds, &xfds, &tv);
1903 qemu_mutex_lock_iothread();
1905 IOHandlerRecord *pioh;
1907 QLIST_FOREACH_SAFE(ioh, &io_handlers, next, pioh) {
1909 QLIST_REMOVE(ioh, next);
1913 if (ioh->fd_read && FD_ISSET(ioh->fd, &rfds)) {
1914 ioh->fd_read(ioh->opaque);
1916 if (ioh->fd_write && FD_ISSET(ioh->fd, &wfds)) {
1917 ioh->fd_write(ioh->opaque);
1922 slirp_select_poll(&rfds, &wfds, &xfds, (ret < 0));
1924 qemu_run_all_timers();
1926 /* Check bottom-halves last in case any of the earlier events triggered
1932 static int vm_can_run(void)
1934 if (powerdown_requested)
1936 if (reset_requested)
1938 if (shutdown_requested)
1940 if (debug_requested)
1945 qemu_irq qemu_system_powerdown;
1947 static void main_loop(void)
1951 qemu_main_loop_start();
1955 bool nonblocking = false;
1956 #ifdef CONFIG_PROFILER
1959 #ifndef CONFIG_IOTHREAD
1960 nonblocking = tcg_cpu_exec();
1962 #ifdef CONFIG_PROFILER
1963 ti = profile_getclock();
1965 main_loop_wait(nonblocking);
1966 #ifdef CONFIG_PROFILER
1967 dev_time += profile_getclock() - ti;
1969 } while (vm_can_run());
1971 if ((r = qemu_debug_requested())) {
1974 if (qemu_shutdown_requested()) {
1975 monitor_protocol_event(QEVENT_SHUTDOWN, NULL);
1982 if (qemu_reset_requested()) {
1984 qemu_system_reset();
1987 if (qemu_powerdown_requested()) {
1988 monitor_protocol_event(QEVENT_POWERDOWN, NULL);
1989 qemu_irq_raise(qemu_system_powerdown);
1991 if ((r = qemu_vmstop_requested())) {
1998 static void version(void)
2000 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n");
2003 static void help(int exitcode)
2005 const char *options_help =
2006 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
2008 #define DEFHEADING(text) stringify(text) "\n"
2009 #include "qemu-options.h"
2015 printf("usage: %s [options] [disk_image]\n"
2017 "'disk_image' is a raw hard disk image for IDE hard disk 0\n"
2020 "During emulation, the following keys are useful:\n"
2021 "ctrl-alt-f toggle full screen\n"
2022 "ctrl-alt-n switch to virtual console 'n'\n"
2023 "ctrl-alt toggle mouse and keyboard grab\n"
2025 "When using -nographic, press 'ctrl-a h' to get some help.\n",
2031 #define HAS_ARG 0x0001
2034 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
2036 #define DEFHEADING(text)
2037 #include "qemu-options.h"
2043 typedef struct QEMUOption {
2050 static const QEMUOption qemu_options[] = {
2051 { "h", 0, QEMU_OPTION_h, QEMU_ARCH_ALL },
2052 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
2053 { option, opt_arg, opt_enum, arch_mask },
2054 #define DEFHEADING(text)
2055 #include "qemu-options.h"
2061 static void select_vgahw (const char *p)
2066 vga_interface_type = VGA_NONE;
2067 if (strstart(p, "std", &opts)) {
2068 vga_interface_type = VGA_STD;
2069 } else if (strstart(p, "cirrus", &opts)) {
2070 vga_interface_type = VGA_CIRRUS;
2071 } else if (strstart(p, "vmware", &opts)) {
2072 vga_interface_type = VGA_VMWARE;
2073 } else if (strstart(p, "xenfb", &opts)) {
2074 vga_interface_type = VGA_XENFB;
2075 } else if (!strstart(p, "none", &opts)) {
2077 fprintf(stderr, "Unknown vga type: %s\n", p);
2081 const char *nextopt;
2083 if (strstart(opts, ",retrace=", &nextopt)) {
2085 if (strstart(opts, "dumb", &nextopt))
2086 vga_retrace_method = VGA_RETRACE_DUMB;
2087 else if (strstart(opts, "precise", &nextopt))
2088 vga_retrace_method = VGA_RETRACE_PRECISE;
2089 else goto invalid_vga;
2090 } else goto invalid_vga;
2095 static int balloon_parse(const char *arg)
2099 if (strcmp(arg, "none") == 0) {
2103 if (!strncmp(arg, "virtio", 6)) {
2104 if (arg[6] == ',') {
2105 /* have params -> parse them */
2106 opts = qemu_opts_parse(&qemu_device_opts, arg+7, 0);
2110 /* create empty opts */
2111 opts = qemu_opts_create(&qemu_device_opts, NULL, 0);
2113 qemu_opt_set(opts, "driver", "virtio-balloon-pci");
2121 static BOOL WINAPI qemu_ctrl_handler(DWORD type)
2123 exit(STATUS_CONTROL_C_EXIT);
2130 static void termsig_handler(int signal)
2132 qemu_system_shutdown_request();
2135 static void sigchld_handler(int signal)
2137 waitpid(-1, NULL, WNOHANG);
2140 static void sighandler_setup(void)
2142 struct sigaction act;
2144 memset(&act, 0, sizeof(act));
2145 act.sa_handler = termsig_handler;
2146 sigaction(SIGINT, &act, NULL);
2147 sigaction(SIGHUP, &act, NULL);
2148 sigaction(SIGTERM, &act, NULL);
2150 act.sa_handler = sigchld_handler;
2151 act.sa_flags = SA_NOCLDSTOP;
2152 sigaction(SIGCHLD, &act, NULL);
2158 /* Look for support files in the same directory as the executable. */
2159 static char *find_datadir(const char *argv0)
2165 len = GetModuleFileName(NULL, buf, sizeof(buf) - 1);
2172 while (p != buf && *p != '\\')
2175 if (access(buf, R_OK) == 0) {
2176 return qemu_strdup(buf);
2182 /* Find a likely location for support files using the location of the binary.
2183 For installed binaries this will be "$bindir/../share/qemu". When
2184 running from the build tree this will be "$bindir/../pc-bios". */
2185 #define SHARE_SUFFIX "/share/qemu"
2186 #define BUILD_SUFFIX "/pc-bios"
2187 static char *find_datadir(const char *argv0)
2195 #if defined(__linux__)
2198 len = readlink("/proc/self/exe", buf, sizeof(buf) - 1);
2204 #elif defined(__FreeBSD__)
2206 static int mib[4] = {CTL_KERN, KERN_PROC, KERN_PROC_PATHNAME, -1};
2207 size_t len = sizeof(buf) - 1;
2210 if (!sysctl(mib, sizeof(mib)/sizeof(*mib), buf, &len, NULL, 0) &&
2212 buf[sizeof(buf) - 1] = '\0';
2217 /* If we don't have any way of figuring out the actual executable
2218 location then try argv[0]. */
2220 p = realpath(argv0, buf);
2228 max_len = strlen(dir) +
2229 MAX(strlen(SHARE_SUFFIX), strlen(BUILD_SUFFIX)) + 1;
2230 res = qemu_mallocz(max_len);
2231 snprintf(res, max_len, "%s%s", dir, SHARE_SUFFIX);
2232 if (access(res, R_OK)) {
2233 snprintf(res, max_len, "%s%s", dir, BUILD_SUFFIX);
2234 if (access(res, R_OK)) {
2246 char *qemu_find_file(int type, const char *name)
2252 /* If name contains path separators then try it as a straight path. */
2253 if ((strchr(name, '/') || strchr(name, '\\'))
2254 && access(name, R_OK) == 0) {
2255 return qemu_strdup(name);
2258 case QEMU_FILE_TYPE_BIOS:
2261 case QEMU_FILE_TYPE_KEYMAP:
2262 subdir = "keymaps/";
2267 len = strlen(data_dir) + strlen(name) + strlen(subdir) + 2;
2268 buf = qemu_mallocz(len);
2269 snprintf(buf, len, "%s/%s%s", data_dir, subdir, name);
2270 if (access(buf, R_OK)) {
2277 static int device_help_func(QemuOpts *opts, void *opaque)
2279 return qdev_device_help(opts);
2282 static int device_init_func(QemuOpts *opts, void *opaque)
2286 dev = qdev_device_add(opts);
2292 static int chardev_init_func(QemuOpts *opts, void *opaque)
2294 CharDriverState *chr;
2296 chr = qemu_chr_open_opts(opts, NULL);
2303 static int fsdev_init_func(QemuOpts *opts, void *opaque)
2306 ret = qemu_fsdev_add(opts);
2312 static int mon_init_func(QemuOpts *opts, void *opaque)
2314 CharDriverState *chr;
2315 const char *chardev;
2319 mode = qemu_opt_get(opts, "mode");
2323 if (strcmp(mode, "readline") == 0) {
2324 flags = MONITOR_USE_READLINE;
2325 } else if (strcmp(mode, "control") == 0) {
2326 flags = MONITOR_USE_CONTROL;
2328 fprintf(stderr, "unknown monitor mode \"%s\"\n", mode);
2332 if (qemu_opt_get_bool(opts, "default", 0))
2333 flags |= MONITOR_IS_DEFAULT;
2335 chardev = qemu_opt_get(opts, "chardev");
2336 chr = qemu_chr_find(chardev);
2338 fprintf(stderr, "chardev \"%s\" not found\n", chardev);
2342 monitor_init(chr, flags);
2346 static void monitor_parse(const char *optarg, const char *mode)
2348 static int monitor_device_index = 0;
2354 if (strstart(optarg, "chardev:", &p)) {
2355 snprintf(label, sizeof(label), "%s", p);
2357 snprintf(label, sizeof(label), "compat_monitor%d",
2358 monitor_device_index);
2359 if (monitor_device_index == 0) {
2362 opts = qemu_chr_parse_compat(label, optarg);
2364 fprintf(stderr, "parse error: %s\n", optarg);
2369 opts = qemu_opts_create(&qemu_mon_opts, label, 1);
2371 fprintf(stderr, "duplicate chardev: %s\n", label);
2374 qemu_opt_set(opts, "mode", mode);
2375 qemu_opt_set(opts, "chardev", label);
2377 qemu_opt_set(opts, "default", "on");
2378 monitor_device_index++;
2381 struct device_config {
2383 DEV_USB, /* -usbdevice */
2385 DEV_SERIAL, /* -serial */
2386 DEV_PARALLEL, /* -parallel */
2387 DEV_VIRTCON, /* -virtioconsole */
2388 DEV_DEBUGCON, /* -debugcon */
2390 const char *cmdline;
2391 QTAILQ_ENTRY(device_config) next;
2393 QTAILQ_HEAD(, device_config) device_configs = QTAILQ_HEAD_INITIALIZER(device_configs);
2395 static void add_device_config(int type, const char *cmdline)
2397 struct device_config *conf;
2399 conf = qemu_mallocz(sizeof(*conf));
2401 conf->cmdline = cmdline;
2402 QTAILQ_INSERT_TAIL(&device_configs, conf, next);
2405 static int foreach_device_config(int type, int (*func)(const char *cmdline))
2407 struct device_config *conf;
2410 QTAILQ_FOREACH(conf, &device_configs, next) {
2411 if (conf->type != type)
2413 rc = func(conf->cmdline);
2420 static int serial_parse(const char *devname)
2422 static int index = 0;
2425 if (strcmp(devname, "none") == 0)
2427 if (index == MAX_SERIAL_PORTS) {
2428 fprintf(stderr, "qemu: too many serial ports\n");
2431 snprintf(label, sizeof(label), "serial%d", index);
2432 serial_hds[index] = qemu_chr_open(label, devname, NULL);
2433 if (!serial_hds[index]) {
2434 fprintf(stderr, "qemu: could not open serial device '%s': %s\n",
2435 devname, strerror(errno));
2442 static int parallel_parse(const char *devname)
2444 static int index = 0;
2447 if (strcmp(devname, "none") == 0)
2449 if (index == MAX_PARALLEL_PORTS) {
2450 fprintf(stderr, "qemu: too many parallel ports\n");
2453 snprintf(label, sizeof(label), "parallel%d", index);
2454 parallel_hds[index] = qemu_chr_open(label, devname, NULL);
2455 if (!parallel_hds[index]) {
2456 fprintf(stderr, "qemu: could not open parallel device '%s': %s\n",
2457 devname, strerror(errno));
2464 static int virtcon_parse(const char *devname)
2466 static int index = 0;
2468 QemuOpts *bus_opts, *dev_opts;
2470 if (strcmp(devname, "none") == 0)
2472 if (index == MAX_VIRTIO_CONSOLES) {
2473 fprintf(stderr, "qemu: too many virtio consoles\n");
2477 bus_opts = qemu_opts_create(&qemu_device_opts, NULL, 0);
2478 qemu_opt_set(bus_opts, "driver", "virtio-serial");
2480 dev_opts = qemu_opts_create(&qemu_device_opts, NULL, 0);
2481 qemu_opt_set(dev_opts, "driver", "virtconsole");
2483 snprintf(label, sizeof(label), "virtcon%d", index);
2484 virtcon_hds[index] = qemu_chr_open(label, devname, NULL);
2485 if (!virtcon_hds[index]) {
2486 fprintf(stderr, "qemu: could not open virtio console '%s': %s\n",
2487 devname, strerror(errno));
2490 qemu_opt_set(dev_opts, "chardev", label);
2496 static int debugcon_parse(const char *devname)
2500 if (!qemu_chr_open("debugcon", devname, NULL)) {
2503 opts = qemu_opts_create(&qemu_device_opts, "debugcon", 1);
2505 fprintf(stderr, "qemu: already have a debugcon device\n");
2508 qemu_opt_set(opts, "driver", "isa-debugcon");
2509 qemu_opt_set(opts, "chardev", "debugcon");
2513 static const QEMUOption *lookup_opt(int argc, char **argv,
2514 const char **poptarg, int *poptind)
2516 const QEMUOption *popt;
2517 int optind = *poptind;
2518 char *r = argv[optind];
2521 loc_set_cmdline(argv, optind, 1);
2523 /* Treat --foo the same as -foo. */
2526 popt = qemu_options;
2529 error_report("invalid option");
2532 if (!strcmp(popt->name, r + 1))
2536 if (popt->flags & HAS_ARG) {
2537 if (optind >= argc) {
2538 error_report("requires an argument");
2541 optarg = argv[optind++];
2542 loc_set_cmdline(argv, optind - 2, 2);
2553 int main(int argc, char **argv, char **envp)
2555 const char *gdbstub_dev = NULL;
2557 int snapshot, linux_boot;
2558 const char *icount_option = NULL;
2559 const char *initrd_filename;
2560 const char *kernel_filename, *kernel_cmdline;
2561 char boot_devices[33] = "cad"; /* default to HD->floppy->CD-ROM */
2563 DisplayChangeListener *dcl;
2564 int cyls, heads, secs, translation;
2565 QemuOpts *hda_opts = NULL, *opts;
2568 const char *loadvm = NULL;
2569 QEMUMachine *machine;
2570 const char *cpu_model;
2575 const char *pid_file = NULL;
2576 const char *incoming = NULL;
2579 struct passwd *pwd = NULL;
2580 const char *chroot_dir = NULL;
2581 const char *run_as = NULL;
2583 int show_vnc_port = 0;
2586 error_set_progname(argv[0]);
2590 qemu_cache_utils_init(envp);
2592 QLIST_INIT (&vm_change_state_head);
2595 struct sigaction act;
2596 sigfillset(&act.sa_mask);
2598 act.sa_handler = SIG_IGN;
2599 sigaction(SIGPIPE, &act, NULL);
2602 SetConsoleCtrlHandler(qemu_ctrl_handler, TRUE);
2603 /* Note: cpu_interrupt() is currently not SMP safe, so we force
2604 QEMU to run on a single CPU */
2609 h = GetCurrentProcess();
2610 if (GetProcessAffinityMask(h, &mask, &smask)) {
2611 for(i = 0; i < 32; i++) {
2612 if (mask & (1 << i))
2617 SetProcessAffinityMask(h, mask);
2623 module_call_init(MODULE_INIT_MACHINE);
2624 machine = find_default_machine();
2626 initrd_filename = NULL;
2629 kernel_filename = NULL;
2630 kernel_cmdline = "";
2631 cyls = heads = secs = 0;
2632 translation = BIOS_ATA_TRANSLATION_AUTO;
2634 for (i = 0; i < MAX_NODES; i++) {
2636 node_cpumask[i] = 0;
2645 /* first pass of option parsing */
2647 while (optind < argc) {
2648 if (argv[optind][0] != '-') {
2653 const QEMUOption *popt;
2655 popt = lookup_opt(argc, argv, &optarg, &optind);
2656 switch (popt->index) {
2657 case QEMU_OPTION_nodefconfig:
2667 ret = qemu_read_config_file(CONFIG_QEMU_CONFDIR "/qemu.conf");
2668 if (ret < 0 && ret != -ENOENT) {
2672 ret = qemu_read_config_file(arch_config_name);
2673 if (ret < 0 && ret != -ENOENT) {
2679 /* second pass of option parsing */
2684 if (argv[optind][0] != '-') {
2685 hda_opts = drive_add(argv[optind++], HD_ALIAS, 0);
2687 const QEMUOption *popt;
2689 popt = lookup_opt(argc, argv, &optarg, &optind);
2690 if (!(popt->arch_mask & arch_type)) {
2691 printf("Option %s not supported for this target\n", popt->name);
2694 switch(popt->index) {
2696 machine = find_machine(optarg);
2699 printf("Supported machines are:\n");
2700 for(m = first_machine; m != NULL; m = m->next) {
2702 printf("%-10s %s (alias of %s)\n",
2703 m->alias, m->desc, m->name);
2704 printf("%-10s %s%s\n",
2706 m->is_default ? " (default)" : "");
2708 exit(*optarg != '?');
2711 case QEMU_OPTION_cpu:
2712 /* hw initialization will check this */
2713 if (*optarg == '?') {
2714 list_cpus(stdout, &fprintf, optarg);
2720 case QEMU_OPTION_initrd:
2721 initrd_filename = optarg;
2723 case QEMU_OPTION_hda:
2725 hda_opts = drive_add(optarg, HD_ALIAS, 0);
2727 hda_opts = drive_add(optarg, HD_ALIAS
2728 ",cyls=%d,heads=%d,secs=%d%s",
2729 0, cyls, heads, secs,
2730 translation == BIOS_ATA_TRANSLATION_LBA ?
2732 translation == BIOS_ATA_TRANSLATION_NONE ?
2733 ",trans=none" : "");
2735 case QEMU_OPTION_hdb:
2736 case QEMU_OPTION_hdc:
2737 case QEMU_OPTION_hdd:
2738 drive_add(optarg, HD_ALIAS, popt->index - QEMU_OPTION_hda);
2740 case QEMU_OPTION_drive:
2741 drive_add(NULL, "%s", optarg);
2743 case QEMU_OPTION_set:
2744 if (qemu_set_option(optarg) != 0)
2747 case QEMU_OPTION_global:
2748 if (qemu_global_option(optarg) != 0)
2751 case QEMU_OPTION_mtdblock:
2752 drive_add(optarg, MTD_ALIAS);
2754 case QEMU_OPTION_sd:
2755 drive_add(optarg, SD_ALIAS);
2757 case QEMU_OPTION_pflash:
2758 drive_add(optarg, PFLASH_ALIAS);
2760 case QEMU_OPTION_snapshot:
2763 case QEMU_OPTION_hdachs:
2767 cyls = strtol(p, (char **)&p, 0);
2768 if (cyls < 1 || cyls > 16383)
2773 heads = strtol(p, (char **)&p, 0);
2774 if (heads < 1 || heads > 16)
2779 secs = strtol(p, (char **)&p, 0);
2780 if (secs < 1 || secs > 63)
2784 if (!strcmp(p, "none"))
2785 translation = BIOS_ATA_TRANSLATION_NONE;
2786 else if (!strcmp(p, "lba"))
2787 translation = BIOS_ATA_TRANSLATION_LBA;
2788 else if (!strcmp(p, "auto"))
2789 translation = BIOS_ATA_TRANSLATION_AUTO;
2792 } else if (*p != '\0') {
2794 fprintf(stderr, "qemu: invalid physical CHS format\n");
2797 if (hda_opts != NULL) {
2799 snprintf(num, sizeof(num), "%d", cyls);
2800 qemu_opt_set(hda_opts, "cyls", num);
2801 snprintf(num, sizeof(num), "%d", heads);
2802 qemu_opt_set(hda_opts, "heads", num);
2803 snprintf(num, sizeof(num), "%d", secs);
2804 qemu_opt_set(hda_opts, "secs", num);
2805 if (translation == BIOS_ATA_TRANSLATION_LBA)
2806 qemu_opt_set(hda_opts, "trans", "lba");
2807 if (translation == BIOS_ATA_TRANSLATION_NONE)
2808 qemu_opt_set(hda_opts, "trans", "none");
2812 case QEMU_OPTION_numa:
2813 if (nb_numa_nodes >= MAX_NODES) {
2814 fprintf(stderr, "qemu: too many NUMA nodes\n");
2819 case QEMU_OPTION_nographic:
2820 display_type = DT_NOGRAPHIC;
2822 #ifdef CONFIG_CURSES
2823 case QEMU_OPTION_curses:
2824 display_type = DT_CURSES;
2827 case QEMU_OPTION_portrait:
2830 case QEMU_OPTION_kernel:
2831 kernel_filename = optarg;
2833 case QEMU_OPTION_append:
2834 kernel_cmdline = optarg;
2836 case QEMU_OPTION_cdrom:
2837 drive_add(optarg, CDROM_ALIAS);
2839 case QEMU_OPTION_boot:
2841 static const char * const params[] = {
2842 "order", "once", "menu", NULL
2844 char buf[sizeof(boot_devices)];
2845 char *standard_boot_devices;
2848 if (!strchr(optarg, '=')) {
2850 pstrcpy(buf, sizeof(buf), optarg);
2851 } else if (check_params(buf, sizeof(buf), params, optarg) < 0) {
2853 "qemu: unknown boot parameter '%s' in '%s'\n",
2859 get_param_value(buf, sizeof(buf), "order", optarg)) {
2860 validate_bootdevices(buf);
2861 pstrcpy(boot_devices, sizeof(boot_devices), buf);
2864 if (get_param_value(buf, sizeof(buf),
2866 validate_bootdevices(buf);
2867 standard_boot_devices = qemu_strdup(boot_devices);
2868 pstrcpy(boot_devices, sizeof(boot_devices), buf);
2869 qemu_register_reset(restore_boot_devices,
2870 standard_boot_devices);
2872 if (get_param_value(buf, sizeof(buf),
2874 if (!strcmp(buf, "on")) {
2876 } else if (!strcmp(buf, "off")) {
2880 "qemu: invalid option value '%s'\n",
2888 case QEMU_OPTION_fda:
2889 case QEMU_OPTION_fdb:
2890 drive_add(optarg, FD_ALIAS, popt->index - QEMU_OPTION_fda);
2892 case QEMU_OPTION_no_fd_bootchk:
2895 case QEMU_OPTION_netdev:
2896 if (net_client_parse(&qemu_netdev_opts, optarg) == -1) {
2900 case QEMU_OPTION_net:
2901 if (net_client_parse(&qemu_net_opts, optarg) == -1) {
2906 case QEMU_OPTION_tftp:
2907 legacy_tftp_prefix = optarg;
2909 case QEMU_OPTION_bootp:
2910 legacy_bootp_filename = optarg;
2913 case QEMU_OPTION_smb:
2914 if (net_slirp_smb(optarg) < 0)
2918 case QEMU_OPTION_redir:
2919 if (net_slirp_redir(optarg) < 0)
2923 case QEMU_OPTION_bt:
2924 add_device_config(DEV_BT, optarg);
2926 case QEMU_OPTION_audio_help:
2927 if (!(audio_available())) {
2928 printf("Option %s not supported for this target\n", popt->name);
2934 case QEMU_OPTION_soundhw:
2935 if (!(audio_available())) {
2936 printf("Option %s not supported for this target\n", popt->name);
2939 select_soundhw (optarg);
2944 case QEMU_OPTION_version:
2948 case QEMU_OPTION_m: {
2952 value = strtoul(optarg, &ptr, 10);
2954 case 0: case 'M': case 'm':
2961 fprintf(stderr, "qemu: invalid ram size: %s\n", optarg);
2965 /* On 32-bit hosts, QEMU is limited by virtual address space */
2966 if (value > (2047 << 20) && HOST_LONG_BITS == 32) {
2967 fprintf(stderr, "qemu: at most 2047 MB RAM can be simulated\n");
2970 if (value != (uint64_t)(ram_addr_t)value) {
2971 fprintf(stderr, "qemu: ram size too large\n");
2977 case QEMU_OPTION_mempath:
2981 case QEMU_OPTION_mem_prealloc:
2986 set_cpu_log(optarg);
2989 gdbstub_dev = "tcp::" DEFAULT_GDBSTUB_PORT;
2991 case QEMU_OPTION_gdb:
2992 gdbstub_dev = optarg;
2997 case QEMU_OPTION_bios:
3000 case QEMU_OPTION_singlestep:
3007 keyboard_layout = optarg;
3009 case QEMU_OPTION_localtime:
3012 case QEMU_OPTION_vga:
3013 select_vgahw (optarg);
3020 w = strtol(p, (char **)&p, 10);
3023 fprintf(stderr, "qemu: invalid resolution or depth\n");
3029 h = strtol(p, (char **)&p, 10);
3034 depth = strtol(p, (char **)&p, 10);
3035 if (depth != 8 && depth != 15 && depth != 16 &&
3036 depth != 24 && depth != 32)
3038 } else if (*p == '\0') {
3039 depth = graphic_depth;
3046 graphic_depth = depth;
3049 case QEMU_OPTION_echr:
3052 term_escape_char = strtol(optarg, &r, 0);
3054 printf("Bad argument to echr\n");
3057 case QEMU_OPTION_monitor:
3058 monitor_parse(optarg, "readline");
3059 default_monitor = 0;
3061 case QEMU_OPTION_qmp:
3062 monitor_parse(optarg, "control");
3063 default_monitor = 0;
3065 case QEMU_OPTION_mon:
3066 opts = qemu_opts_parse(&qemu_mon_opts, optarg, 1);
3070 default_monitor = 0;
3072 case QEMU_OPTION_chardev:
3073 opts = qemu_opts_parse(&qemu_chardev_opts, optarg, 1);
3079 case QEMU_OPTION_fsdev:
3080 opts = qemu_opts_parse(&qemu_fsdev_opts, optarg, 1);
3082 fprintf(stderr, "parse error: %s\n", optarg);
3086 case QEMU_OPTION_virtfs: {
3087 char *arg_fsdev = NULL;
3088 char *arg_9p = NULL;
3091 opts = qemu_opts_parse(&qemu_virtfs_opts, optarg, 1);
3093 fprintf(stderr, "parse error: %s\n", optarg);
3097 len = strlen(",id=,path=");
3098 len += strlen(qemu_opt_get(opts, "fstype"));
3099 len += strlen(qemu_opt_get(opts, "mount_tag"));
3100 len += strlen(qemu_opt_get(opts, "path"));
3101 arg_fsdev = qemu_malloc((len + 1) * sizeof(*arg_fsdev));
3104 fprintf(stderr, "No memory to parse -fsdev for %s\n",
3109 sprintf(arg_fsdev, "%s,id=%s,path=%s",
3110 qemu_opt_get(opts, "fstype"),
3111 qemu_opt_get(opts, "mount_tag"),
3112 qemu_opt_get(opts, "path"));
3114 len = strlen("virtio-9p-pci,fsdev=,mount_tag=");
3115 len += 2*strlen(qemu_opt_get(opts, "mount_tag"));
3116 arg_9p = qemu_malloc((len + 1) * sizeof(*arg_9p));
3119 fprintf(stderr, "No memory to parse -device for %s\n",
3124 sprintf(arg_9p, "virtio-9p-pci,fsdev=%s,mount_tag=%s",
3125 qemu_opt_get(opts, "mount_tag"),
3126 qemu_opt_get(opts, "mount_tag"));
3128 if (!qemu_opts_parse(&qemu_fsdev_opts, arg_fsdev, 1)) {
3129 fprintf(stderr, "parse error [fsdev]: %s\n", optarg);
3133 if (!qemu_opts_parse(&qemu_device_opts, arg_9p, 1)) {
3134 fprintf(stderr, "parse error [device]: %s\n", optarg);
3138 qemu_free(arg_fsdev);
3143 case QEMU_OPTION_serial:
3144 add_device_config(DEV_SERIAL, optarg);
3146 if (strncmp(optarg, "mon:", 4) == 0) {
3147 default_monitor = 0;
3150 case QEMU_OPTION_watchdog:
3153 "qemu: only one watchdog option may be given\n");
3158 case QEMU_OPTION_watchdog_action:
3159 if (select_watchdog_action(optarg) == -1) {
3160 fprintf(stderr, "Unknown -watchdog-action parameter\n");
3164 case QEMU_OPTION_virtiocon:
3165 add_device_config(DEV_VIRTCON, optarg);
3166 default_virtcon = 0;
3167 if (strncmp(optarg, "mon:", 4) == 0) {
3168 default_monitor = 0;
3171 case QEMU_OPTION_parallel:
3172 add_device_config(DEV_PARALLEL, optarg);
3173 default_parallel = 0;
3174 if (strncmp(optarg, "mon:", 4) == 0) {
3175 default_monitor = 0;
3178 case QEMU_OPTION_debugcon:
3179 add_device_config(DEV_DEBUGCON, optarg);
3181 case QEMU_OPTION_loadvm:
3184 case QEMU_OPTION_full_screen:
3188 case QEMU_OPTION_no_frame:
3191 case QEMU_OPTION_alt_grab:
3194 case QEMU_OPTION_ctrl_grab:
3197 case QEMU_OPTION_no_quit:
3200 case QEMU_OPTION_sdl:
3201 display_type = DT_SDL;
3204 case QEMU_OPTION_pidfile:
3207 case QEMU_OPTION_win2k_hack:
3208 win2k_install_hack = 1;
3210 case QEMU_OPTION_rtc_td_hack:
3213 case QEMU_OPTION_acpitable:
3214 do_acpitable_option(optarg);
3216 case QEMU_OPTION_smbios:
3217 do_smbios_option(optarg);
3219 case QEMU_OPTION_enable_kvm:
3222 case QEMU_OPTION_usb:
3225 case QEMU_OPTION_usbdevice:
3227 add_device_config(DEV_USB, optarg);
3229 case QEMU_OPTION_device:
3230 if (!qemu_opts_parse(&qemu_device_opts, optarg, 1)) {
3234 case QEMU_OPTION_smp:
3237 fprintf(stderr, "Invalid number of CPUs\n");
3240 if (max_cpus < smp_cpus) {
3241 fprintf(stderr, "maxcpus must be equal to or greater than "
3245 if (max_cpus > 255) {
3246 fprintf(stderr, "Unsupported number of maxcpus\n");
3250 case QEMU_OPTION_vnc:
3251 display_type = DT_VNC;
3252 vnc_display = optarg;
3254 case QEMU_OPTION_no_acpi:
3257 case QEMU_OPTION_no_hpet:
3260 case QEMU_OPTION_balloon:
3261 if (balloon_parse(optarg) < 0) {
3262 fprintf(stderr, "Unknown -balloon argument %s\n", optarg);
3266 case QEMU_OPTION_no_reboot:
3269 case QEMU_OPTION_no_shutdown:
3272 case QEMU_OPTION_show_cursor:
3275 case QEMU_OPTION_uuid:
3276 if(qemu_uuid_parse(optarg, qemu_uuid) < 0) {
3277 fprintf(stderr, "Fail to parse UUID string."
3278 " Wrong format.\n");
3283 case QEMU_OPTION_daemonize:
3287 case QEMU_OPTION_option_rom:
3288 if (nb_option_roms >= MAX_OPTION_ROMS) {
3289 fprintf(stderr, "Too many option ROMs\n");
3292 option_rom[nb_option_roms] = optarg;
3295 case QEMU_OPTION_semihosting:
3296 semihosting_enabled = 1;
3298 case QEMU_OPTION_name:
3299 qemu_name = qemu_strdup(optarg);
3301 char *p = strchr(qemu_name, ',');
3304 if (strncmp(p, "process=", 8)) {
3305 fprintf(stderr, "Unknown subargument %s to -name", p);
3313 case QEMU_OPTION_prom_env:
3314 if (nb_prom_envs >= MAX_PROM_ENVS) {
3315 fprintf(stderr, "Too many prom variables\n");
3318 prom_envs[nb_prom_envs] = optarg;
3321 case QEMU_OPTION_old_param:
3324 case QEMU_OPTION_clock:
3325 configure_alarms(optarg);
3327 case QEMU_OPTION_startdate:
3328 configure_rtc_date_offset(optarg, 1);
3330 case QEMU_OPTION_rtc:
3331 opts = qemu_opts_parse(&qemu_rtc_opts, optarg, 0);
3335 configure_rtc(opts);
3337 case QEMU_OPTION_tb_size:
3338 tb_size = strtol(optarg, NULL, 0);
3342 case QEMU_OPTION_icount:
3343 icount_option = optarg;
3345 case QEMU_OPTION_incoming:
3348 case QEMU_OPTION_nodefaults:
3350 default_parallel = 0;
3351 default_virtcon = 0;
3352 default_monitor = 0;
3360 case QEMU_OPTION_chroot:
3361 chroot_dir = optarg;
3363 case QEMU_OPTION_runas:
3367 case QEMU_OPTION_xen_domid:
3368 if (!(xen_available())) {
3369 printf("Option %s not supported for this target\n", popt->name);
3372 xen_domid = atoi(optarg);
3374 case QEMU_OPTION_xen_create:
3375 if (!(xen_available())) {
3376 printf("Option %s not supported for this target\n", popt->name);
3379 xen_mode = XEN_CREATE;
3381 case QEMU_OPTION_xen_attach:
3382 if (!(xen_available())) {
3383 printf("Option %s not supported for this target\n", popt->name);
3386 xen_mode = XEN_ATTACH;
3388 case QEMU_OPTION_readconfig:
3390 int ret = qemu_read_config_file(optarg);
3392 fprintf(stderr, "read config %s: %s\n", optarg,
3398 case QEMU_OPTION_writeconfig:
3401 if (strcmp(optarg, "-") == 0) {
3404 fp = fopen(optarg, "w");
3406 fprintf(stderr, "open %s: %s\n", optarg, strerror(errno));
3410 qemu_config_write(fp);
3419 /* If no data_dir is specified then try to find it relative to the
3422 data_dir = find_datadir(argv[0]);
3424 /* If all else fails use the install patch specified when building. */
3426 data_dir = CONFIG_QEMU_DATADIR;
3430 * Default to max_cpus = smp_cpus, in case the user doesn't
3431 * specify a max_cpus value.
3434 max_cpus = smp_cpus;
3436 machine->max_cpus = machine->max_cpus ?: 1; /* Default to UP */
3437 if (smp_cpus > machine->max_cpus) {
3438 fprintf(stderr, "Number of SMP cpus requested (%d), exceeds max cpus "
3439 "supported by machine `%s' (%d)\n", smp_cpus, machine->name,
3444 qemu_opts_foreach(&qemu_device_opts, default_driver_check, NULL, 0);
3445 qemu_opts_foreach(&qemu_global_opts, default_driver_check, NULL, 0);
3447 if (machine->no_serial) {
3450 if (machine->no_parallel) {
3451 default_parallel = 0;
3453 if (!machine->use_virtcon) {
3454 default_virtcon = 0;
3456 if (machine->no_vga) {
3459 if (machine->no_floppy) {
3462 if (machine->no_cdrom) {
3465 if (machine->no_sdcard) {
3469 if (display_type == DT_NOGRAPHIC) {
3470 if (default_parallel)
3471 add_device_config(DEV_PARALLEL, "null");
3472 if (default_serial && default_monitor) {
3473 add_device_config(DEV_SERIAL, "mon:stdio");
3474 } else if (default_virtcon && default_monitor) {
3475 add_device_config(DEV_VIRTCON, "mon:stdio");
3478 add_device_config(DEV_SERIAL, "stdio");
3479 if (default_virtcon)
3480 add_device_config(DEV_VIRTCON, "stdio");
3481 if (default_monitor)
3482 monitor_parse("stdio", "readline");
3486 add_device_config(DEV_SERIAL, "vc:80Cx24C");
3487 if (default_parallel)
3488 add_device_config(DEV_PARALLEL, "vc:80Cx24C");
3489 if (default_monitor)
3490 monitor_parse("vc:80Cx24C", "readline");
3491 if (default_virtcon)
3492 add_device_config(DEV_VIRTCON, "vc:80Cx24C");
3495 vga_interface_type = VGA_CIRRUS;
3499 if (qemu_opts_foreach(&qemu_chardev_opts, chardev_init_func, NULL, 1) != 0)
3502 if (qemu_opts_foreach(&qemu_fsdev_opts, fsdev_init_func, NULL, 1) != 0) {
3511 if (pipe(fds) == -1)
3522 len = read(fds[0], &status, 1);
3523 if (len == -1 && (errno == EINTR))
3528 else if (status == 1) {
3529 fprintf(stderr, "Could not acquire pidfile: %s\n", strerror(errno));
3537 qemu_set_cloexec(fds[1]);
3549 signal(SIGTSTP, SIG_IGN);
3550 signal(SIGTTOU, SIG_IGN);
3551 signal(SIGTTIN, SIG_IGN);
3555 if (pid_file && qemu_create_pidfile(pid_file) != 0) {
3559 if (write(fds[1], &status, 1) != 1) {
3560 perror("daemonize. Writing to pipe\n");
3564 fprintf(stderr, "Could not acquire pid file: %s\n", strerror(errno));
3569 int ret = kvm_init(smp_cpus);
3571 if (!kvm_available()) {
3572 printf("KVM not supported for this target\n");
3574 fprintf(stderr, "failed to initialize KVM: %s\n", strerror(-ret));
3580 if (qemu_init_main_loop()) {
3581 fprintf(stderr, "qemu_init_main_loop failed\n");
3584 linux_boot = (kernel_filename != NULL);
3586 if (!linux_boot && *kernel_cmdline != '\0') {
3587 fprintf(stderr, "-append only allowed with -kernel option\n");
3591 if (!linux_boot && initrd_filename != NULL) {
3592 fprintf(stderr, "-initrd only allowed with -kernel option\n");
3597 /* Win32 doesn't support line-buffering and requires size >= 2 */
3598 setvbuf(stdout, NULL, _IOLBF, 0);
3601 if (init_timer_alarm() < 0) {
3602 fprintf(stderr, "could not initialize alarm timer\n");
3605 configure_icount(icount_option);
3607 if (net_init_clients() < 0) {
3611 /* init the bluetooth world */
3612 if (foreach_device_config(DEV_BT, bt_parse))
3615 /* init the memory */
3617 ram_size = DEFAULT_RAM_SIZE * 1024 * 1024;
3619 /* init the dynamic translator */
3620 cpu_exec_init_all(tb_size * 1024 * 1024);
3622 bdrv_init_with_whitelist();
3626 if (default_cdrom) {
3627 /* we always create the cdrom drive, even if no disk is there */
3628 drive_add(NULL, CDROM_ALIAS);
3631 if (default_floppy) {
3632 /* we always create at least one floppy */
3633 drive_add(NULL, FD_ALIAS, 0);
3636 if (default_sdcard) {
3637 /* we always create one sd slot, even if no card is in it */
3638 drive_add(NULL, SD_ALIAS);
3641 /* open the virtual block devices */
3643 qemu_opts_foreach(&qemu_drive_opts, drive_enable_snapshot, NULL, 0);
3644 if (qemu_opts_foreach(&qemu_drive_opts, drive_init_func, machine, 1) != 0)
3647 register_savevm_live("ram", 0, 3, NULL, ram_save_live, NULL,
3650 if (nb_numa_nodes > 0) {
3653 if (nb_numa_nodes > smp_cpus) {
3654 nb_numa_nodes = smp_cpus;
3657 /* If no memory size if given for any node, assume the default case
3658 * and distribute the available memory equally across all nodes
3660 for (i = 0; i < nb_numa_nodes; i++) {
3661 if (node_mem[i] != 0)
3664 if (i == nb_numa_nodes) {
3665 uint64_t usedmem = 0;
3667 /* On Linux, the each node's border has to be 8MB aligned,
3668 * the final node gets the rest.
3670 for (i = 0; i < nb_numa_nodes - 1; i++) {
3671 node_mem[i] = (ram_size / nb_numa_nodes) & ~((1 << 23UL) - 1);
3672 usedmem += node_mem[i];
3674 node_mem[i] = ram_size - usedmem;
3677 for (i = 0; i < nb_numa_nodes; i++) {
3678 if (node_cpumask[i] != 0)
3681 /* assigning the VCPUs round-robin is easier to implement, guest OSes
3682 * must cope with this anyway, because there are BIOSes out there in
3683 * real machines which also use this scheme.
3685 if (i == nb_numa_nodes) {
3686 for (i = 0; i < smp_cpus; i++) {
3687 node_cpumask[i % nb_numa_nodes] |= 1 << i;
3692 if (qemu_opts_foreach(&qemu_mon_opts, mon_init_func, NULL, 1) != 0) {
3696 if (foreach_device_config(DEV_SERIAL, serial_parse) < 0)
3698 if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0)
3700 if (foreach_device_config(DEV_VIRTCON, virtcon_parse) < 0)
3702 if (foreach_device_config(DEV_DEBUGCON, debugcon_parse) < 0)
3705 module_call_init(MODULE_INIT_DEVICE);
3707 if (qemu_opts_foreach(&qemu_device_opts, device_help_func, NULL, 0) != 0)
3711 i = select_watchdog(watchdog);
3713 exit (i == 1 ? 1 : 0);
3716 if (machine->compat_props) {
3717 qdev_prop_register_global_list(machine->compat_props);
3721 machine->init(ram_size, boot_devices,
3722 kernel_filename, kernel_cmdline, initrd_filename, cpu_model);
3724 cpu_synchronize_all_post_init();
3727 /* must be after terminal init, SDL library changes signal handlers */
3733 current_machine = machine;
3735 /* init USB devices */
3737 if (foreach_device_config(DEV_USB, usb_parse) < 0)
3741 /* init generic devices */
3742 if (qemu_opts_foreach(&qemu_device_opts, device_init_func, NULL, 1) != 0)
3745 net_check_clients();
3747 /* just use the first displaystate for the moment */
3748 ds = get_displaystate();
3750 if (display_type == DT_DEFAULT) {
3751 #if defined(CONFIG_SDL) || defined(CONFIG_COCOA)
3752 display_type = DT_SDL;
3754 display_type = DT_VNC;
3755 vnc_display = "localhost:0,to=99";
3761 switch (display_type) {
3764 #if defined(CONFIG_CURSES)
3766 curses_display_init(ds, full_screen);
3769 #if defined(CONFIG_SDL)
3771 sdl_display_init(ds, full_screen, no_frame);
3773 #elif defined(CONFIG_COCOA)
3775 cocoa_display_init(ds, full_screen);
3779 vnc_display_init(ds);
3780 if (vnc_display_open(ds, vnc_display) < 0)
3783 if (show_vnc_port) {
3784 printf("VNC server running on `%s'\n", vnc_display_local_addr(ds));
3792 dcl = ds->listeners;
3793 while (dcl != NULL) {
3794 if (dcl->dpy_refresh != NULL) {
3795 ds->gui_timer = qemu_new_timer(rt_clock, gui_update, ds);
3796 qemu_mod_timer(ds->gui_timer, qemu_get_clock(rt_clock));
3802 if (display_type == DT_NOGRAPHIC || display_type == DT_VNC) {
3803 nographic_timer = qemu_new_timer(rt_clock, nographic_update, NULL);
3804 qemu_mod_timer(nographic_timer, qemu_get_clock(rt_clock));
3807 text_consoles_set_display(ds);
3809 if (gdbstub_dev && gdbserver_start(gdbstub_dev) < 0) {
3810 fprintf(stderr, "qemu: could not open gdbserver on device '%s'\n",
3815 qdev_machine_creation_done();
3817 if (rom_load_all() != 0) {
3818 fprintf(stderr, "rom loading failed\n");
3822 qemu_system_reset();
3824 if (load_vmstate(loadvm) < 0) {
3830 qemu_start_incoming_migration(incoming);
3831 } else if (autostart) {
3841 len = write(fds[1], &status, 1);
3842 if (len == -1 && (errno == EINTR))
3849 perror("not able to chdir to /");
3852 TFR(fd = qemu_open("/dev/null", O_RDWR));
3858 pwd = getpwnam(run_as);
3860 fprintf(stderr, "User \"%s\" doesn't exist\n", run_as);
3866 if (chroot(chroot_dir) < 0) {
3867 fprintf(stderr, "chroot failed\n");
3871 perror("not able to chdir to /");
3877 if (setgid(pwd->pw_gid) < 0) {
3878 fprintf(stderr, "Failed to setgid(%d)\n", pwd->pw_gid);
3881 if (setuid(pwd->pw_uid) < 0) {
3882 fprintf(stderr, "Failed to setuid(%d)\n", pwd->pw_uid);
3885 if (setuid(0) != -1) {
3886 fprintf(stderr, "Dropping privileges failed\n");