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"
37 #include <sys/times.h>
41 #include <sys/ioctl.h>
42 #include <sys/resource.h>
43 #include <sys/socket.h>
44 #include <netinet/in.h>
46 #include <arpa/inet.h>
49 #include <sys/select.h>
52 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
54 #include <sys/sysctl.h>
63 #include <linux/ppdev.h>
64 #include <linux/parport.h>
68 #include <sys/ethernet.h>
69 #include <sys/sockio.h>
70 #include <netinet/arp.h>
71 #include <netinet/in_systm.h>
72 #include <netinet/ip.h>
73 #include <netinet/ip_icmp.h> // must come after ip.h
74 #include <netinet/udp.h>
75 #include <netinet/tcp.h>
79 /* See MySQL bug #7156 (http://bugs.mysql.com/bug.php?id=7156) for
80 discussion about Solaris header problems */
81 extern int madvise(caddr_t, size_t, int);
86 #if defined(__OpenBSD__)
90 #if defined(CONFIG_VDE)
91 #include <libvdeplug.h>
99 #if defined(__APPLE__) || defined(main)
101 int qemu_main(int argc, char **argv, char **envp);
102 int main(int argc, char **argv)
104 return qemu_main(argc, argv, NULL);
107 #define main qemu_main
109 #endif /* CONFIG_SDL */
113 #define main qemu_main
114 #endif /* CONFIG_COCOA */
117 #include "hw/boards.h"
119 #include "hw/pcmcia.h"
124 #include "hw/watchdog.h"
125 #include "hw/smbios.h"
128 #include "hw/loader.h"
131 #include "net/slirp.h"
136 #include "qemu-timer.h"
137 #include "qemu-char.h"
138 #include "cache-utils.h"
140 #include "blockdev.h"
141 #include "block-migration.h"
143 #include "audio/audio.h"
144 #include "migration.h"
146 #include "qemu-option.h"
147 #include "qemu-config.h"
148 #include "qemu-objects.h"
149 #include "qemu-options.h"
151 #include "fsdev/qemu-fsdev.h"
156 #include "qemu_socket.h"
158 #include "slirp/libslirp.h"
160 #include "qemu-queue.h"
162 #include "arch_init.h"
165 //#define DEBUG_SLIRP
167 #define DEFAULT_RAM_SIZE 128
169 #define MAX_VIRTIO_CONSOLES 1
171 static const char *data_dir;
172 const char *bios_name = NULL;
173 enum vga_retrace_method vga_retrace_method = VGA_RETRACE_DUMB;
174 DisplayType display_type = DT_DEFAULT;
175 const char* keyboard_layout = NULL;
177 const char *mem_path = NULL;
179 int mem_prealloc = 0; /* force preallocation of physical target memory */
182 NICInfo nd_table[MAX_NICS];
185 int incoming_expected; /* Started with -incoming and waiting for incoming */
186 static int rtc_utc = 1;
187 static int rtc_date_offset = -1; /* -1 means no change */
188 QEMUClock *rtc_clock;
189 int vga_interface_type = VGA_NONE;
190 static int full_screen = 0;
192 static int no_frame = 0;
195 CharDriverState *serial_hds[MAX_SERIAL_PORTS];
196 CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
197 CharDriverState *virtcon_hds[MAX_VIRTIO_CONSOLES];
198 int win2k_install_hack = 0;
206 const char *vnc_display;
207 int acpi_enabled = 1;
213 int graphic_rotate = 0;
214 uint8_t irq0override = 1;
215 const char *watchdog;
216 const char *option_rom[MAX_OPTION_ROMS];
218 int semihosting_enabled = 0;
220 const char *qemu_name;
223 unsigned int nb_prom_envs = 0;
224 const char *prom_envs[MAX_PROM_ENVS];
228 uint64_t node_mem[MAX_NODES];
229 uint64_t node_cpumask[MAX_NODES];
231 static QEMUTimer *nographic_timer;
233 uint8_t qemu_uuid[16];
235 static QEMUBootSetHandler *boot_set_handler;
236 static void *boot_set_opaque;
238 static NotifierList exit_notifiers =
239 NOTIFIER_LIST_INITIALIZER(exit_notifiers);
243 enum xen_mode xen_mode = XEN_EMULATE;
245 static int default_serial = 1;
246 static int default_parallel = 1;
247 static int default_virtcon = 1;
248 static int default_monitor = 1;
249 static int default_vga = 1;
250 static int default_floppy = 1;
251 static int default_cdrom = 1;
252 static int default_sdcard = 1;
258 { .driver = "isa-serial", .flag = &default_serial },
259 { .driver = "isa-parallel", .flag = &default_parallel },
260 { .driver = "isa-fdc", .flag = &default_floppy },
261 { .driver = "ide-drive", .flag = &default_cdrom },
262 { .driver = "virtio-serial-pci", .flag = &default_virtcon },
263 { .driver = "virtio-serial-s390", .flag = &default_virtcon },
264 { .driver = "virtio-serial", .flag = &default_virtcon },
265 { .driver = "VGA", .flag = &default_vga },
266 { .driver = "cirrus-vga", .flag = &default_vga },
267 { .driver = "vmware-svga", .flag = &default_vga },
270 static int default_driver_check(QemuOpts *opts, void *opaque)
272 const char *driver = qemu_opt_get(opts, "driver");
277 for (i = 0; i < ARRAY_SIZE(default_list); i++) {
278 if (strcmp(default_list[i].driver, driver) != 0)
280 *(default_list[i].flag) = 0;
285 /***********************************************************/
286 /* real time host monotonic timer */
288 /* compute with 96 bit intermediate result: (a*b)/c */
289 uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c)
294 #ifdef HOST_WORDS_BIGENDIAN
304 rl = (uint64_t)u.l.low * (uint64_t)b;
305 rh = (uint64_t)u.l.high * (uint64_t)b;
308 res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c;
312 /***********************************************************/
313 /* host time/date access */
314 void qemu_get_timedate(struct tm *tm, int offset)
321 if (rtc_date_offset == -1) {
325 ret = localtime(&ti);
327 ti -= rtc_date_offset;
331 memcpy(tm, ret, sizeof(struct tm));
334 int qemu_timedate_diff(struct tm *tm)
338 if (rtc_date_offset == -1)
340 seconds = mktimegm(tm);
342 seconds = mktime(tm);
344 seconds = mktimegm(tm) + rtc_date_offset;
346 return seconds - time(NULL);
349 void rtc_change_mon_event(struct tm *tm)
353 data = qobject_from_jsonf("{ 'offset': %d }", qemu_timedate_diff(tm));
354 monitor_protocol_event(QEVENT_RTC_CHANGE, data);
355 qobject_decref(data);
358 static void configure_rtc_date_offset(const char *startdate, int legacy)
360 time_t rtc_start_date;
363 if (!strcmp(startdate, "now") && legacy) {
364 rtc_date_offset = -1;
366 if (sscanf(startdate, "%d-%d-%dT%d:%d:%d",
374 } else if (sscanf(startdate, "%d-%d-%d",
386 rtc_start_date = mktimegm(&tm);
387 if (rtc_start_date == -1) {
389 fprintf(stderr, "Invalid date format. Valid formats are:\n"
390 "'2006-06-17T16:01:21' or '2006-06-17'\n");
393 rtc_date_offset = time(NULL) - rtc_start_date;
397 static void configure_rtc(QemuOpts *opts)
401 value = qemu_opt_get(opts, "base");
403 if (!strcmp(value, "utc")) {
405 } else if (!strcmp(value, "localtime")) {
408 configure_rtc_date_offset(value, 0);
411 value = qemu_opt_get(opts, "clock");
413 if (!strcmp(value, "host")) {
414 rtc_clock = host_clock;
415 } else if (!strcmp(value, "vm")) {
416 rtc_clock = vm_clock;
418 fprintf(stderr, "qemu: invalid option value '%s'\n", value);
422 value = qemu_opt_get(opts, "driftfix");
424 if (!strcmp(value, "slew")) {
426 } else if (!strcmp(value, "none")) {
429 fprintf(stderr, "qemu: invalid option value '%s'\n", value);
435 /***********************************************************/
436 /* Bluetooth support */
439 static struct HCIInfo *hci_table[MAX_NICS];
441 static struct bt_vlan_s {
442 struct bt_scatternet_s net;
444 struct bt_vlan_s *next;
447 /* find or alloc a new bluetooth "VLAN" */
448 static struct bt_scatternet_s *qemu_find_bt_vlan(int id)
450 struct bt_vlan_s **pvlan, *vlan;
451 for (vlan = first_bt_vlan; vlan != NULL; vlan = vlan->next) {
455 vlan = qemu_mallocz(sizeof(struct bt_vlan_s));
457 pvlan = &first_bt_vlan;
458 while (*pvlan != NULL)
459 pvlan = &(*pvlan)->next;
464 static void null_hci_send(struct HCIInfo *hci, const uint8_t *data, int len)
468 static int null_hci_addr_set(struct HCIInfo *hci, const uint8_t *bd_addr)
473 static struct HCIInfo null_hci = {
474 .cmd_send = null_hci_send,
475 .sco_send = null_hci_send,
476 .acl_send = null_hci_send,
477 .bdaddr_set = null_hci_addr_set,
480 struct HCIInfo *qemu_next_hci(void)
482 if (cur_hci == nb_hcis)
485 return hci_table[cur_hci++];
488 static struct HCIInfo *hci_init(const char *str)
491 struct bt_scatternet_s *vlan = 0;
493 if (!strcmp(str, "null"))
496 else if (!strncmp(str, "host", 4) && (str[4] == '\0' || str[4] == ':'))
498 return bt_host_hci(str[4] ? str + 5 : "hci0");
499 else if (!strncmp(str, "hci", 3)) {
502 if (!strncmp(str + 3, ",vlan=", 6)) {
503 vlan = qemu_find_bt_vlan(strtol(str + 9, &endp, 0));
508 vlan = qemu_find_bt_vlan(0);
510 return bt_new_hci(vlan);
513 fprintf(stderr, "qemu: Unknown bluetooth HCI `%s'.\n", str);
518 static int bt_hci_parse(const char *str)
523 if (nb_hcis >= MAX_NICS) {
524 fprintf(stderr, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS);
537 bdaddr.b[5] = 0x56 + nb_hcis;
538 hci->bdaddr_set(hci, bdaddr.b);
540 hci_table[nb_hcis++] = hci;
545 static void bt_vhci_add(int vlan_id)
547 struct bt_scatternet_s *vlan = qemu_find_bt_vlan(vlan_id);
550 fprintf(stderr, "qemu: warning: adding a VHCI to "
551 "an empty scatternet %i\n", vlan_id);
553 bt_vhci_init(bt_new_hci(vlan));
556 static struct bt_device_s *bt_device_add(const char *opt)
558 struct bt_scatternet_s *vlan;
560 char *endp = strstr(opt, ",vlan=");
561 int len = (endp ? endp - opt : strlen(opt)) + 1;
564 pstrcpy(devname, MIN(sizeof(devname), len), opt);
567 vlan_id = strtol(endp + 6, &endp, 0);
569 fprintf(stderr, "qemu: unrecognised bluetooth vlan Id\n");
574 vlan = qemu_find_bt_vlan(vlan_id);
577 fprintf(stderr, "qemu: warning: adding a slave device to "
578 "an empty scatternet %i\n", vlan_id);
580 if (!strcmp(devname, "keyboard"))
581 return bt_keyboard_init(vlan);
583 fprintf(stderr, "qemu: unsupported bluetooth device `%s'\n", devname);
587 static int bt_parse(const char *opt)
589 const char *endp, *p;
592 if (strstart(opt, "hci", &endp)) {
593 if (!*endp || *endp == ',') {
595 if (!strstart(endp, ",vlan=", 0))
598 return bt_hci_parse(opt);
600 } else if (strstart(opt, "vhci", &endp)) {
601 if (!*endp || *endp == ',') {
603 if (strstart(endp, ",vlan=", &p)) {
604 vlan = strtol(p, (char **) &endp, 0);
606 fprintf(stderr, "qemu: bad scatternet '%s'\n", p);
610 fprintf(stderr, "qemu: bad parameter '%s'\n", endp + 1);
619 } else if (strstart(opt, "device:", &endp))
620 return !bt_device_add(endp);
622 fprintf(stderr, "qemu: bad bluetooth parameter '%s'\n", opt);
626 /***********************************************************/
627 /* QEMU Block devices */
629 #define HD_ALIAS "index=%d,media=disk"
630 #define CDROM_ALIAS "index=2,media=cdrom"
631 #define FD_ALIAS "index=%d,if=floppy"
632 #define PFLASH_ALIAS "if=pflash"
633 #define MTD_ALIAS "if=mtd"
634 #define SD_ALIAS "index=0,if=sd"
636 static int drive_init_func(QemuOpts *opts, void *opaque)
638 int *use_scsi = opaque;
641 if (drive_init(opts, *use_scsi, &fatal_error) == NULL) {
648 static int drive_enable_snapshot(QemuOpts *opts, void *opaque)
650 if (NULL == qemu_opt_get(opts, "snapshot")) {
651 qemu_opt_set(opts, "snapshot", "on");
656 void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque)
658 boot_set_handler = func;
659 boot_set_opaque = opaque;
662 int qemu_boot_set(const char *boot_devices)
664 if (!boot_set_handler) {
667 return boot_set_handler(boot_set_opaque, boot_devices);
670 static void validate_bootdevices(char *devices)
672 /* We just do some generic consistency checks */
676 for (p = devices; *p != '\0'; p++) {
677 /* Allowed boot devices are:
678 * a-b: floppy disk drives
679 * c-f: IDE disk drives
680 * g-m: machine implementation dependant drives
681 * n-p: network devices
682 * It's up to each machine implementation to check if the given boot
683 * devices match the actual hardware implementation and firmware
686 if (*p < 'a' || *p > 'p') {
687 fprintf(stderr, "Invalid boot device '%c'\n", *p);
690 if (bitmap & (1 << (*p - 'a'))) {
691 fprintf(stderr, "Boot device '%c' was given twice\n", *p);
694 bitmap |= 1 << (*p - 'a');
698 static void restore_boot_devices(void *opaque)
700 char *standard_boot_devices = opaque;
701 static int first = 1;
703 /* Restore boot order and remove ourselves after the first boot */
709 qemu_boot_set(standard_boot_devices);
711 qemu_unregister_reset(restore_boot_devices, standard_boot_devices);
712 qemu_free(standard_boot_devices);
715 static void numa_add(const char *optarg)
719 unsigned long long value, endvalue;
722 optarg = get_opt_name(option, 128, optarg, ',') + 1;
723 if (!strcmp(option, "node")) {
724 if (get_param_value(option, 128, "nodeid", optarg) == 0) {
725 nodenr = nb_numa_nodes;
727 nodenr = strtoull(option, NULL, 10);
730 if (get_param_value(option, 128, "mem", optarg) == 0) {
731 node_mem[nodenr] = 0;
733 value = strtoull(option, &endptr, 0);
735 case 0: case 'M': case 'm':
742 node_mem[nodenr] = value;
744 if (get_param_value(option, 128, "cpus", optarg) == 0) {
745 node_cpumask[nodenr] = 0;
747 value = strtoull(option, &endptr, 10);
750 fprintf(stderr, "only 64 CPUs in NUMA mode supported.\n");
752 if (*endptr == '-') {
753 endvalue = strtoull(endptr+1, &endptr, 10);
754 if (endvalue >= 63) {
757 "only 63 CPUs in NUMA mode supported.\n");
759 value = (2ULL << endvalue) - (1ULL << value);
761 value = 1ULL << value;
764 node_cpumask[nodenr] = value;
771 static void smp_parse(const char *optarg)
773 int smp, sockets = 0, threads = 0, cores = 0;
777 smp = strtoul(optarg, &endptr, 10);
778 if (endptr != optarg) {
779 if (*endptr == ',') {
783 if (get_param_value(option, 128, "sockets", endptr) != 0)
784 sockets = strtoull(option, NULL, 10);
785 if (get_param_value(option, 128, "cores", endptr) != 0)
786 cores = strtoull(option, NULL, 10);
787 if (get_param_value(option, 128, "threads", endptr) != 0)
788 threads = strtoull(option, NULL, 10);
789 if (get_param_value(option, 128, "maxcpus", endptr) != 0)
790 max_cpus = strtoull(option, NULL, 10);
792 /* compute missing values, prefer sockets over cores over threads */
793 if (smp == 0 || sockets == 0) {
794 sockets = sockets > 0 ? sockets : 1;
795 cores = cores > 0 ? cores : 1;
796 threads = threads > 0 ? threads : 1;
798 smp = cores * threads * sockets;
802 threads = threads > 0 ? threads : 1;
803 cores = smp / (sockets * threads);
805 threads = smp / (cores * sockets);
809 smp_cores = cores > 0 ? cores : 1;
810 smp_threads = threads > 0 ? threads : 1;
815 /***********************************************************/
818 static int usb_device_add(const char *devname)
821 USBDevice *dev = NULL;
826 /* drivers with .usbdevice_name entry in USBDeviceInfo */
827 dev = usbdevice_create(devname);
832 if (strstart(devname, "host:", &p)) {
833 dev = usb_host_device_open(p);
834 } else if (!strcmp(devname, "bt") || strstart(devname, "bt:", &p)) {
835 dev = usb_bt_init(devname[2] ? hci_init(p) :
836 bt_new_hci(qemu_find_bt_vlan(0)));
847 static int usb_device_del(const char *devname)
852 if (strstart(devname, "host:", &p))
853 return usb_host_device_close(p);
858 p = strchr(devname, '.');
861 bus_num = strtoul(devname, NULL, 0);
862 addr = strtoul(p + 1, NULL, 0);
864 return usb_device_delete_addr(bus_num, addr);
867 static int usb_parse(const char *cmdline)
870 r = usb_device_add(cmdline);
872 fprintf(stderr, "qemu: could not add USB device '%s'\n", cmdline);
877 void do_usb_add(Monitor *mon, const QDict *qdict)
879 const char *devname = qdict_get_str(qdict, "devname");
880 if (usb_device_add(devname) < 0) {
881 error_report("could not add USB device '%s'", devname);
885 void do_usb_del(Monitor *mon, const QDict *qdict)
887 const char *devname = qdict_get_str(qdict, "devname");
888 if (usb_device_del(devname) < 0) {
889 error_report("could not delete USB device '%s'", devname);
893 /***********************************************************/
896 static struct pcmcia_socket_entry_s {
897 PCMCIASocket *socket;
898 struct pcmcia_socket_entry_s *next;
899 } *pcmcia_sockets = 0;
901 void pcmcia_socket_register(PCMCIASocket *socket)
903 struct pcmcia_socket_entry_s *entry;
905 entry = qemu_malloc(sizeof(struct pcmcia_socket_entry_s));
906 entry->socket = socket;
907 entry->next = pcmcia_sockets;
908 pcmcia_sockets = entry;
911 void pcmcia_socket_unregister(PCMCIASocket *socket)
913 struct pcmcia_socket_entry_s *entry, **ptr;
915 ptr = &pcmcia_sockets;
916 for (entry = *ptr; entry; ptr = &entry->next, entry = *ptr)
917 if (entry->socket == socket) {
923 void pcmcia_info(Monitor *mon)
925 struct pcmcia_socket_entry_s *iter;
928 monitor_printf(mon, "No PCMCIA sockets\n");
930 for (iter = pcmcia_sockets; iter; iter = iter->next)
931 monitor_printf(mon, "%s: %s\n", iter->socket->slot_string,
932 iter->socket->attached ? iter->socket->card_string :
936 /***********************************************************/
939 typedef struct IOHandlerRecord {
941 IOCanReadHandler *fd_read_poll;
948 QLIST_ENTRY(IOHandlerRecord) next;
951 static QLIST_HEAD(, IOHandlerRecord) io_handlers =
952 QLIST_HEAD_INITIALIZER(io_handlers);
955 /* XXX: fd_read_poll should be suppressed, but an API change is
956 necessary in the character devices to suppress fd_can_read(). */
957 int qemu_set_fd_handler2(int fd,
958 IOCanReadHandler *fd_read_poll,
963 IOHandlerRecord *ioh;
965 if (!fd_read && !fd_write) {
966 QLIST_FOREACH(ioh, &io_handlers, next) {
973 QLIST_FOREACH(ioh, &io_handlers, next) {
977 ioh = qemu_mallocz(sizeof(IOHandlerRecord));
978 QLIST_INSERT_HEAD(&io_handlers, ioh, next);
981 ioh->fd_read_poll = fd_read_poll;
982 ioh->fd_read = fd_read;
983 ioh->fd_write = fd_write;
984 ioh->opaque = opaque;
990 int qemu_set_fd_handler(int fd,
995 return qemu_set_fd_handler2(fd, NULL, fd_read, fd_write, opaque);
998 /***********************************************************/
999 /* machine registration */
1001 static QEMUMachine *first_machine = NULL;
1002 QEMUMachine *current_machine = NULL;
1004 int qemu_register_machine(QEMUMachine *m)
1007 pm = &first_machine;
1015 static QEMUMachine *find_machine(const char *name)
1019 for(m = first_machine; m != NULL; m = m->next) {
1020 if (!strcmp(m->name, name))
1022 if (m->alias && !strcmp(m->alias, name))
1028 static QEMUMachine *find_default_machine(void)
1032 for(m = first_machine; m != NULL; m = m->next) {
1033 if (m->is_default) {
1040 /***********************************************************/
1041 /* main execution loop */
1043 static void gui_update(void *opaque)
1045 uint64_t interval = GUI_REFRESH_INTERVAL;
1046 DisplayState *ds = opaque;
1047 DisplayChangeListener *dcl = ds->listeners;
1049 qemu_flush_coalesced_mmio_buffer();
1052 while (dcl != NULL) {
1053 if (dcl->gui_timer_interval &&
1054 dcl->gui_timer_interval < interval)
1055 interval = dcl->gui_timer_interval;
1058 qemu_mod_timer(ds->gui_timer, interval + qemu_get_clock(rt_clock));
1061 static void nographic_update(void *opaque)
1063 uint64_t interval = GUI_REFRESH_INTERVAL;
1065 qemu_flush_coalesced_mmio_buffer();
1066 qemu_mod_timer(nographic_timer, interval + qemu_get_clock(rt_clock));
1069 struct vm_change_state_entry {
1070 VMChangeStateHandler *cb;
1072 QLIST_ENTRY (vm_change_state_entry) entries;
1075 static QLIST_HEAD(vm_change_state_head, vm_change_state_entry) vm_change_state_head;
1077 VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
1080 VMChangeStateEntry *e;
1082 e = qemu_mallocz(sizeof (*e));
1086 QLIST_INSERT_HEAD(&vm_change_state_head, e, entries);
1090 void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
1092 QLIST_REMOVE (e, entries);
1096 void vm_state_notify(int running, int reason)
1098 VMChangeStateEntry *e;
1100 for (e = vm_change_state_head.lh_first; e; e = e->entries.le_next) {
1101 e->cb(e->opaque, running, reason);
1110 vm_state_notify(1, 0);
1112 monitor_protocol_event(QEVENT_RESUME, NULL);
1116 /* reset/shutdown handler */
1118 typedef struct QEMUResetEntry {
1119 QTAILQ_ENTRY(QEMUResetEntry) entry;
1120 QEMUResetHandler *func;
1124 static QTAILQ_HEAD(reset_handlers, QEMUResetEntry) reset_handlers =
1125 QTAILQ_HEAD_INITIALIZER(reset_handlers);
1126 static int reset_requested;
1127 static int shutdown_requested;
1128 static int powerdown_requested;
1129 int debug_requested;
1130 int vmstop_requested;
1132 int qemu_shutdown_requested(void)
1134 int r = shutdown_requested;
1135 shutdown_requested = 0;
1139 int qemu_reset_requested(void)
1141 int r = reset_requested;
1142 reset_requested = 0;
1146 int qemu_powerdown_requested(void)
1148 int r = powerdown_requested;
1149 powerdown_requested = 0;
1153 static int qemu_debug_requested(void)
1155 int r = debug_requested;
1156 debug_requested = 0;
1160 static int qemu_vmstop_requested(void)
1162 int r = vmstop_requested;
1163 vmstop_requested = 0;
1167 void qemu_register_reset(QEMUResetHandler *func, void *opaque)
1169 QEMUResetEntry *re = qemu_mallocz(sizeof(QEMUResetEntry));
1172 re->opaque = opaque;
1173 QTAILQ_INSERT_TAIL(&reset_handlers, re, entry);
1176 void qemu_unregister_reset(QEMUResetHandler *func, void *opaque)
1180 QTAILQ_FOREACH(re, &reset_handlers, entry) {
1181 if (re->func == func && re->opaque == opaque) {
1182 QTAILQ_REMOVE(&reset_handlers, re, entry);
1189 void qemu_system_reset(void)
1191 QEMUResetEntry *re, *nre;
1193 /* reset all devices */
1194 QTAILQ_FOREACH_SAFE(re, &reset_handlers, entry, nre) {
1195 re->func(re->opaque);
1197 monitor_protocol_event(QEVENT_RESET, NULL);
1198 cpu_synchronize_all_post_reset();
1201 void qemu_system_reset_request(void)
1204 shutdown_requested = 1;
1206 reset_requested = 1;
1208 qemu_notify_event();
1211 void qemu_system_shutdown_request(void)
1213 shutdown_requested = 1;
1214 qemu_notify_event();
1217 void qemu_system_powerdown_request(void)
1219 powerdown_requested = 1;
1220 qemu_notify_event();
1223 void main_loop_wait(int nonblocking)
1225 IOHandlerRecord *ioh;
1226 fd_set rfds, wfds, xfds;
1234 timeout = qemu_calculate_timeout();
1235 qemu_bh_update_timeout(&timeout);
1238 os_host_main_loop_wait(&timeout);
1240 /* poll any events */
1241 /* XXX: separate device handlers from system ones */
1246 QLIST_FOREACH(ioh, &io_handlers, next) {
1250 (!ioh->fd_read_poll ||
1251 ioh->fd_read_poll(ioh->opaque) != 0)) {
1252 FD_SET(ioh->fd, &rfds);
1256 if (ioh->fd_write) {
1257 FD_SET(ioh->fd, &wfds);
1263 tv.tv_sec = timeout / 1000;
1264 tv.tv_usec = (timeout % 1000) * 1000;
1266 slirp_select_fill(&nfds, &rfds, &wfds, &xfds);
1268 qemu_mutex_unlock_iothread();
1269 ret = select(nfds + 1, &rfds, &wfds, &xfds, &tv);
1270 qemu_mutex_lock_iothread();
1272 IOHandlerRecord *pioh;
1274 QLIST_FOREACH_SAFE(ioh, &io_handlers, next, pioh) {
1276 QLIST_REMOVE(ioh, next);
1280 if (ioh->fd_read && FD_ISSET(ioh->fd, &rfds)) {
1281 ioh->fd_read(ioh->opaque);
1283 if (ioh->fd_write && FD_ISSET(ioh->fd, &wfds)) {
1284 ioh->fd_write(ioh->opaque);
1289 slirp_select_poll(&rfds, &wfds, &xfds, (ret < 0));
1291 qemu_run_all_timers();
1293 /* Check bottom-halves last in case any of the earlier events triggered
1299 static int vm_can_run(void)
1301 if (powerdown_requested)
1303 if (reset_requested)
1305 if (shutdown_requested)
1307 if (debug_requested)
1312 qemu_irq qemu_system_powerdown;
1314 static void main_loop(void)
1318 qemu_main_loop_start();
1322 bool nonblocking = false;
1323 #ifdef CONFIG_PROFILER
1326 #ifndef CONFIG_IOTHREAD
1327 nonblocking = cpu_exec_all();
1329 #ifdef CONFIG_PROFILER
1330 ti = profile_getclock();
1332 main_loop_wait(nonblocking);
1333 #ifdef CONFIG_PROFILER
1334 dev_time += profile_getclock() - ti;
1336 } while (vm_can_run());
1338 if ((r = qemu_debug_requested())) {
1341 if (qemu_shutdown_requested()) {
1342 monitor_protocol_event(QEVENT_SHUTDOWN, NULL);
1349 if (qemu_reset_requested()) {
1351 qemu_system_reset();
1354 if (qemu_powerdown_requested()) {
1355 monitor_protocol_event(QEVENT_POWERDOWN, NULL);
1356 qemu_irq_raise(qemu_system_powerdown);
1358 if ((r = qemu_vmstop_requested())) {
1366 static void version(void)
1368 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n");
1371 static void help(int exitcode)
1373 const char *options_help =
1374 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
1376 #define DEFHEADING(text) stringify(text) "\n"
1377 #include "qemu-options.def"
1383 printf("usage: %s [options] [disk_image]\n"
1385 "'disk_image' is a raw hard disk image for IDE hard disk 0\n"
1388 "During emulation, the following keys are useful:\n"
1389 "ctrl-alt-f toggle full screen\n"
1390 "ctrl-alt-n switch to virtual console 'n'\n"
1391 "ctrl-alt toggle mouse and keyboard grab\n"
1393 "When using -nographic, press 'ctrl-a h' to get some help.\n",
1399 #define HAS_ARG 0x0001
1401 typedef struct QEMUOption {
1408 static const QEMUOption qemu_options[] = {
1409 { "h", 0, QEMU_OPTION_h, QEMU_ARCH_ALL },
1410 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
1411 { option, opt_arg, opt_enum, arch_mask },
1412 #define DEFHEADING(text)
1413 #include "qemu-options.def"
1419 static void select_vgahw (const char *p)
1424 vga_interface_type = VGA_NONE;
1425 if (strstart(p, "std", &opts)) {
1426 vga_interface_type = VGA_STD;
1427 } else if (strstart(p, "cirrus", &opts)) {
1428 vga_interface_type = VGA_CIRRUS;
1429 } else if (strstart(p, "vmware", &opts)) {
1430 vga_interface_type = VGA_VMWARE;
1431 } else if (strstart(p, "xenfb", &opts)) {
1432 vga_interface_type = VGA_XENFB;
1433 } else if (!strstart(p, "none", &opts)) {
1435 fprintf(stderr, "Unknown vga type: %s\n", p);
1439 const char *nextopt;
1441 if (strstart(opts, ",retrace=", &nextopt)) {
1443 if (strstart(opts, "dumb", &nextopt))
1444 vga_retrace_method = VGA_RETRACE_DUMB;
1445 else if (strstart(opts, "precise", &nextopt))
1446 vga_retrace_method = VGA_RETRACE_PRECISE;
1447 else goto invalid_vga;
1448 } else goto invalid_vga;
1453 static int balloon_parse(const char *arg)
1457 if (strcmp(arg, "none") == 0) {
1461 if (!strncmp(arg, "virtio", 6)) {
1462 if (arg[6] == ',') {
1463 /* have params -> parse them */
1464 opts = qemu_opts_parse(qemu_find_opts("device"), arg+7, 0);
1468 /* create empty opts */
1469 opts = qemu_opts_create(qemu_find_opts("device"), NULL, 0);
1471 qemu_opt_set(opts, "driver", "virtio-balloon-pci");
1478 char *qemu_find_file(int type, const char *name)
1484 /* If name contains path separators then try it as a straight path. */
1485 if ((strchr(name, '/') || strchr(name, '\\'))
1486 && access(name, R_OK) == 0) {
1487 return qemu_strdup(name);
1490 case QEMU_FILE_TYPE_BIOS:
1493 case QEMU_FILE_TYPE_KEYMAP:
1494 subdir = "keymaps/";
1499 len = strlen(data_dir) + strlen(name) + strlen(subdir) + 2;
1500 buf = qemu_mallocz(len);
1501 snprintf(buf, len, "%s/%s%s", data_dir, subdir, name);
1502 if (access(buf, R_OK)) {
1509 static int device_help_func(QemuOpts *opts, void *opaque)
1511 return qdev_device_help(opts);
1514 static int device_init_func(QemuOpts *opts, void *opaque)
1518 dev = qdev_device_add(opts);
1524 static int chardev_init_func(QemuOpts *opts, void *opaque)
1526 CharDriverState *chr;
1528 chr = qemu_chr_open_opts(opts, NULL);
1534 #ifdef CONFIG_VIRTFS
1535 static int fsdev_init_func(QemuOpts *opts, void *opaque)
1538 ret = qemu_fsdev_add(opts);
1544 static int mon_init_func(QemuOpts *opts, void *opaque)
1546 CharDriverState *chr;
1547 const char *chardev;
1551 mode = qemu_opt_get(opts, "mode");
1555 if (strcmp(mode, "readline") == 0) {
1556 flags = MONITOR_USE_READLINE;
1557 } else if (strcmp(mode, "control") == 0) {
1558 flags = MONITOR_USE_CONTROL;
1560 fprintf(stderr, "unknown monitor mode \"%s\"\n", mode);
1564 if (qemu_opt_get_bool(opts, "default", 0))
1565 flags |= MONITOR_IS_DEFAULT;
1567 chardev = qemu_opt_get(opts, "chardev");
1568 chr = qemu_chr_find(chardev);
1570 fprintf(stderr, "chardev \"%s\" not found\n", chardev);
1574 monitor_init(chr, flags);
1578 static void monitor_parse(const char *optarg, const char *mode)
1580 static int monitor_device_index = 0;
1586 if (strstart(optarg, "chardev:", &p)) {
1587 snprintf(label, sizeof(label), "%s", p);
1589 snprintf(label, sizeof(label), "compat_monitor%d",
1590 monitor_device_index);
1591 if (monitor_device_index == 0) {
1594 opts = qemu_chr_parse_compat(label, optarg);
1596 fprintf(stderr, "parse error: %s\n", optarg);
1601 opts = qemu_opts_create(qemu_find_opts("mon"), label, 1);
1603 fprintf(stderr, "duplicate chardev: %s\n", label);
1606 qemu_opt_set(opts, "mode", mode);
1607 qemu_opt_set(opts, "chardev", label);
1609 qemu_opt_set(opts, "default", "on");
1610 monitor_device_index++;
1613 struct device_config {
1615 DEV_USB, /* -usbdevice */
1617 DEV_SERIAL, /* -serial */
1618 DEV_PARALLEL, /* -parallel */
1619 DEV_VIRTCON, /* -virtioconsole */
1620 DEV_DEBUGCON, /* -debugcon */
1622 const char *cmdline;
1623 QTAILQ_ENTRY(device_config) next;
1625 QTAILQ_HEAD(, device_config) device_configs = QTAILQ_HEAD_INITIALIZER(device_configs);
1627 static void add_device_config(int type, const char *cmdline)
1629 struct device_config *conf;
1631 conf = qemu_mallocz(sizeof(*conf));
1633 conf->cmdline = cmdline;
1634 QTAILQ_INSERT_TAIL(&device_configs, conf, next);
1637 static int foreach_device_config(int type, int (*func)(const char *cmdline))
1639 struct device_config *conf;
1642 QTAILQ_FOREACH(conf, &device_configs, next) {
1643 if (conf->type != type)
1645 rc = func(conf->cmdline);
1652 static int serial_parse(const char *devname)
1654 static int index = 0;
1657 if (strcmp(devname, "none") == 0)
1659 if (index == MAX_SERIAL_PORTS) {
1660 fprintf(stderr, "qemu: too many serial ports\n");
1663 snprintf(label, sizeof(label), "serial%d", index);
1664 serial_hds[index] = qemu_chr_open(label, devname, NULL);
1665 if (!serial_hds[index]) {
1666 fprintf(stderr, "qemu: could not open serial device '%s': %s\n",
1667 devname, strerror(errno));
1674 static int parallel_parse(const char *devname)
1676 static int index = 0;
1679 if (strcmp(devname, "none") == 0)
1681 if (index == MAX_PARALLEL_PORTS) {
1682 fprintf(stderr, "qemu: too many parallel ports\n");
1685 snprintf(label, sizeof(label), "parallel%d", index);
1686 parallel_hds[index] = qemu_chr_open(label, devname, NULL);
1687 if (!parallel_hds[index]) {
1688 fprintf(stderr, "qemu: could not open parallel device '%s': %s\n",
1689 devname, strerror(errno));
1696 static int virtcon_parse(const char *devname)
1698 QemuOptsList *device = qemu_find_opts("device");
1699 static int index = 0;
1701 QemuOpts *bus_opts, *dev_opts;
1703 if (strcmp(devname, "none") == 0)
1705 if (index == MAX_VIRTIO_CONSOLES) {
1706 fprintf(stderr, "qemu: too many virtio consoles\n");
1710 bus_opts = qemu_opts_create(device, NULL, 0);
1711 qemu_opt_set(bus_opts, "driver", "virtio-serial");
1713 dev_opts = qemu_opts_create(device, NULL, 0);
1714 qemu_opt_set(dev_opts, "driver", "virtconsole");
1716 snprintf(label, sizeof(label), "virtcon%d", index);
1717 virtcon_hds[index] = qemu_chr_open(label, devname, NULL);
1718 if (!virtcon_hds[index]) {
1719 fprintf(stderr, "qemu: could not open virtio console '%s': %s\n",
1720 devname, strerror(errno));
1723 qemu_opt_set(dev_opts, "chardev", label);
1729 static int debugcon_parse(const char *devname)
1733 if (!qemu_chr_open("debugcon", devname, NULL)) {
1736 opts = qemu_opts_create(qemu_find_opts("device"), "debugcon", 1);
1738 fprintf(stderr, "qemu: already have a debugcon device\n");
1741 qemu_opt_set(opts, "driver", "isa-debugcon");
1742 qemu_opt_set(opts, "chardev", "debugcon");
1746 void qemu_add_exit_notifier(Notifier *notify)
1748 notifier_list_add(&exit_notifiers, notify);
1751 void qemu_remove_exit_notifier(Notifier *notify)
1753 notifier_list_remove(&exit_notifiers, notify);
1756 static void qemu_run_exit_notifiers(void)
1758 notifier_list_notify(&exit_notifiers);
1761 static const QEMUOption *lookup_opt(int argc, char **argv,
1762 const char **poptarg, int *poptind)
1764 const QEMUOption *popt;
1765 int optind = *poptind;
1766 char *r = argv[optind];
1769 loc_set_cmdline(argv, optind, 1);
1771 /* Treat --foo the same as -foo. */
1774 popt = qemu_options;
1777 error_report("invalid option");
1780 if (!strcmp(popt->name, r + 1))
1784 if (popt->flags & HAS_ARG) {
1785 if (optind >= argc) {
1786 error_report("requires an argument");
1789 optarg = argv[optind++];
1790 loc_set_cmdline(argv, optind - 2, 2);
1801 int main(int argc, char **argv, char **envp)
1803 const char *gdbstub_dev = NULL;
1805 int snapshot, linux_boot;
1806 const char *icount_option = NULL;
1807 const char *initrd_filename;
1808 const char *kernel_filename, *kernel_cmdline;
1809 char boot_devices[33] = "cad"; /* default to HD->floppy->CD-ROM */
1811 DisplayChangeListener *dcl;
1812 int cyls, heads, secs, translation;
1813 QemuOpts *hda_opts = NULL, *opts;
1814 QemuOptsList *olist;
1817 const char *loadvm = NULL;
1818 QEMUMachine *machine;
1819 const char *cpu_model;
1821 const char *pid_file = NULL;
1822 const char *incoming = NULL;
1823 int show_vnc_port = 0;
1826 atexit(qemu_run_exit_notifiers);
1827 error_set_progname(argv[0]);
1831 qemu_cache_utils_init(envp);
1833 QLIST_INIT (&vm_change_state_head);
1834 os_setup_early_signal_handling();
1836 module_call_init(MODULE_INIT_MACHINE);
1837 machine = find_default_machine();
1839 initrd_filename = NULL;
1842 kernel_filename = NULL;
1843 kernel_cmdline = "";
1844 cyls = heads = secs = 0;
1845 translation = BIOS_ATA_TRANSLATION_AUTO;
1847 for (i = 0; i < MAX_NODES; i++) {
1849 node_cpumask[i] = 0;
1858 #ifdef CONFIG_VIRTFS
1859 qemu_add_opts(&qemu_fsdev_opts);
1860 qemu_add_opts(&qemu_virtfs_opts);
1863 /* first pass of option parsing */
1865 while (optind < argc) {
1866 if (argv[optind][0] != '-') {
1871 const QEMUOption *popt;
1873 popt = lookup_opt(argc, argv, &optarg, &optind);
1874 switch (popt->index) {
1875 case QEMU_OPTION_nodefconfig:
1885 ret = qemu_read_config_file(CONFIG_QEMU_CONFDIR "/qemu.conf");
1886 if (ret < 0 && ret != -ENOENT) {
1890 ret = qemu_read_config_file(arch_config_name);
1891 if (ret < 0 && ret != -ENOENT) {
1897 /* second pass of option parsing */
1902 if (argv[optind][0] != '-') {
1903 hda_opts = drive_add(argv[optind++], HD_ALIAS, 0);
1905 const QEMUOption *popt;
1907 popt = lookup_opt(argc, argv, &optarg, &optind);
1908 if (!(popt->arch_mask & arch_type)) {
1909 printf("Option %s not supported for this target\n", popt->name);
1912 switch(popt->index) {
1914 machine = find_machine(optarg);
1917 printf("Supported machines are:\n");
1918 for(m = first_machine; m != NULL; m = m->next) {
1920 printf("%-10s %s (alias of %s)\n",
1921 m->alias, m->desc, m->name);
1922 printf("%-10s %s%s\n",
1924 m->is_default ? " (default)" : "");
1926 exit(*optarg != '?');
1929 case QEMU_OPTION_cpu:
1930 /* hw initialization will check this */
1931 if (*optarg == '?') {
1932 list_cpus(stdout, &fprintf, optarg);
1938 case QEMU_OPTION_initrd:
1939 initrd_filename = optarg;
1941 case QEMU_OPTION_hda:
1943 hda_opts = drive_add(optarg, HD_ALIAS, 0);
1945 hda_opts = drive_add(optarg, HD_ALIAS
1946 ",cyls=%d,heads=%d,secs=%d%s",
1947 0, cyls, heads, secs,
1948 translation == BIOS_ATA_TRANSLATION_LBA ?
1950 translation == BIOS_ATA_TRANSLATION_NONE ?
1951 ",trans=none" : "");
1953 case QEMU_OPTION_hdb:
1954 case QEMU_OPTION_hdc:
1955 case QEMU_OPTION_hdd:
1956 drive_add(optarg, HD_ALIAS, popt->index - QEMU_OPTION_hda);
1958 case QEMU_OPTION_drive:
1959 drive_add(NULL, "%s", optarg);
1961 case QEMU_OPTION_set:
1962 if (qemu_set_option(optarg) != 0)
1965 case QEMU_OPTION_global:
1966 if (qemu_global_option(optarg) != 0)
1969 case QEMU_OPTION_mtdblock:
1970 drive_add(optarg, MTD_ALIAS);
1972 case QEMU_OPTION_sd:
1973 drive_add(optarg, SD_ALIAS);
1975 case QEMU_OPTION_pflash:
1976 drive_add(optarg, PFLASH_ALIAS);
1978 case QEMU_OPTION_snapshot:
1981 case QEMU_OPTION_hdachs:
1985 cyls = strtol(p, (char **)&p, 0);
1986 if (cyls < 1 || cyls > 16383)
1991 heads = strtol(p, (char **)&p, 0);
1992 if (heads < 1 || heads > 16)
1997 secs = strtol(p, (char **)&p, 0);
1998 if (secs < 1 || secs > 63)
2002 if (!strcmp(p, "none"))
2003 translation = BIOS_ATA_TRANSLATION_NONE;
2004 else if (!strcmp(p, "lba"))
2005 translation = BIOS_ATA_TRANSLATION_LBA;
2006 else if (!strcmp(p, "auto"))
2007 translation = BIOS_ATA_TRANSLATION_AUTO;
2010 } else if (*p != '\0') {
2012 fprintf(stderr, "qemu: invalid physical CHS format\n");
2015 if (hda_opts != NULL) {
2017 snprintf(num, sizeof(num), "%d", cyls);
2018 qemu_opt_set(hda_opts, "cyls", num);
2019 snprintf(num, sizeof(num), "%d", heads);
2020 qemu_opt_set(hda_opts, "heads", num);
2021 snprintf(num, sizeof(num), "%d", secs);
2022 qemu_opt_set(hda_opts, "secs", num);
2023 if (translation == BIOS_ATA_TRANSLATION_LBA)
2024 qemu_opt_set(hda_opts, "trans", "lba");
2025 if (translation == BIOS_ATA_TRANSLATION_NONE)
2026 qemu_opt_set(hda_opts, "trans", "none");
2030 case QEMU_OPTION_numa:
2031 if (nb_numa_nodes >= MAX_NODES) {
2032 fprintf(stderr, "qemu: too many NUMA nodes\n");
2037 case QEMU_OPTION_nographic:
2038 display_type = DT_NOGRAPHIC;
2040 #ifdef CONFIG_CURSES
2041 case QEMU_OPTION_curses:
2042 display_type = DT_CURSES;
2045 case QEMU_OPTION_portrait:
2048 case QEMU_OPTION_kernel:
2049 kernel_filename = optarg;
2051 case QEMU_OPTION_append:
2052 kernel_cmdline = optarg;
2054 case QEMU_OPTION_cdrom:
2055 drive_add(optarg, CDROM_ALIAS);
2057 case QEMU_OPTION_boot:
2059 static const char * const params[] = {
2060 "order", "once", "menu", NULL
2062 char buf[sizeof(boot_devices)];
2063 char *standard_boot_devices;
2066 if (!strchr(optarg, '=')) {
2068 pstrcpy(buf, sizeof(buf), optarg);
2069 } else if (check_params(buf, sizeof(buf), params, optarg) < 0) {
2071 "qemu: unknown boot parameter '%s' in '%s'\n",
2077 get_param_value(buf, sizeof(buf), "order", optarg)) {
2078 validate_bootdevices(buf);
2079 pstrcpy(boot_devices, sizeof(boot_devices), buf);
2082 if (get_param_value(buf, sizeof(buf),
2084 validate_bootdevices(buf);
2085 standard_boot_devices = qemu_strdup(boot_devices);
2086 pstrcpy(boot_devices, sizeof(boot_devices), buf);
2087 qemu_register_reset(restore_boot_devices,
2088 standard_boot_devices);
2090 if (get_param_value(buf, sizeof(buf),
2092 if (!strcmp(buf, "on")) {
2094 } else if (!strcmp(buf, "off")) {
2098 "qemu: invalid option value '%s'\n",
2106 case QEMU_OPTION_fda:
2107 case QEMU_OPTION_fdb:
2108 drive_add(optarg, FD_ALIAS, popt->index - QEMU_OPTION_fda);
2110 case QEMU_OPTION_no_fd_bootchk:
2113 case QEMU_OPTION_netdev:
2114 if (net_client_parse(qemu_find_opts("netdev"), optarg) == -1) {
2118 case QEMU_OPTION_net:
2119 if (net_client_parse(qemu_find_opts("net"), optarg) == -1) {
2124 case QEMU_OPTION_tftp:
2125 legacy_tftp_prefix = optarg;
2127 case QEMU_OPTION_bootp:
2128 legacy_bootp_filename = optarg;
2130 case QEMU_OPTION_redir:
2131 if (net_slirp_redir(optarg) < 0)
2135 case QEMU_OPTION_bt:
2136 add_device_config(DEV_BT, optarg);
2138 case QEMU_OPTION_audio_help:
2139 if (!(audio_available())) {
2140 printf("Option %s not supported for this target\n", popt->name);
2146 case QEMU_OPTION_soundhw:
2147 if (!(audio_available())) {
2148 printf("Option %s not supported for this target\n", popt->name);
2151 select_soundhw (optarg);
2156 case QEMU_OPTION_version:
2160 case QEMU_OPTION_m: {
2164 value = strtoul(optarg, &ptr, 10);
2166 case 0: case 'M': case 'm':
2173 fprintf(stderr, "qemu: invalid ram size: %s\n", optarg);
2177 /* On 32-bit hosts, QEMU is limited by virtual address space */
2178 if (value > (2047 << 20) && HOST_LONG_BITS == 32) {
2179 fprintf(stderr, "qemu: at most 2047 MB RAM can be simulated\n");
2182 if (value != (uint64_t)(ram_addr_t)value) {
2183 fprintf(stderr, "qemu: ram size too large\n");
2189 case QEMU_OPTION_mempath:
2193 case QEMU_OPTION_mem_prealloc:
2198 set_cpu_log(optarg);
2201 gdbstub_dev = "tcp::" DEFAULT_GDBSTUB_PORT;
2203 case QEMU_OPTION_gdb:
2204 gdbstub_dev = optarg;
2209 case QEMU_OPTION_bios:
2212 case QEMU_OPTION_singlestep:
2219 keyboard_layout = optarg;
2221 case QEMU_OPTION_localtime:
2224 case QEMU_OPTION_vga:
2225 select_vgahw (optarg);
2232 w = strtol(p, (char **)&p, 10);
2235 fprintf(stderr, "qemu: invalid resolution or depth\n");
2241 h = strtol(p, (char **)&p, 10);
2246 depth = strtol(p, (char **)&p, 10);
2247 if (depth != 8 && depth != 15 && depth != 16 &&
2248 depth != 24 && depth != 32)
2250 } else if (*p == '\0') {
2251 depth = graphic_depth;
2258 graphic_depth = depth;
2261 case QEMU_OPTION_echr:
2264 term_escape_char = strtol(optarg, &r, 0);
2266 printf("Bad argument to echr\n");
2269 case QEMU_OPTION_monitor:
2270 monitor_parse(optarg, "readline");
2271 default_monitor = 0;
2273 case QEMU_OPTION_qmp:
2274 monitor_parse(optarg, "control");
2275 default_monitor = 0;
2277 case QEMU_OPTION_mon:
2278 opts = qemu_opts_parse(qemu_find_opts("mon"), optarg, 1);
2282 default_monitor = 0;
2284 case QEMU_OPTION_chardev:
2285 opts = qemu_opts_parse(qemu_find_opts("chardev"), optarg, 1);
2290 case QEMU_OPTION_fsdev:
2291 olist = qemu_find_opts("fsdev");
2293 fprintf(stderr, "fsdev is not supported by this qemu build.\n");
2296 opts = qemu_opts_parse(olist, optarg, 1);
2298 fprintf(stderr, "parse error: %s\n", optarg);
2302 case QEMU_OPTION_virtfs: {
2303 char *arg_fsdev = NULL;
2304 char *arg_9p = NULL;
2307 olist = qemu_find_opts("virtfs");
2309 fprintf(stderr, "virtfs is not supported by this qemu build.\n");
2312 opts = qemu_opts_parse(olist, optarg, 1);
2314 fprintf(stderr, "parse error: %s\n", optarg);
2318 if (qemu_opt_get(opts, "fstype") == NULL ||
2319 qemu_opt_get(opts, "mount_tag") == NULL ||
2320 qemu_opt_get(opts, "path") == NULL ||
2321 qemu_opt_get(opts, "security_model") == NULL) {
2322 fprintf(stderr, "Usage: -virtfs fstype,path=/share_path/,"
2323 "security_model=[mapped|passthrough],"
2328 len = strlen(",id=,path=,security_model=");
2329 len += strlen(qemu_opt_get(opts, "fstype"));
2330 len += strlen(qemu_opt_get(opts, "mount_tag"));
2331 len += strlen(qemu_opt_get(opts, "path"));
2332 len += strlen(qemu_opt_get(opts, "security_model"));
2333 arg_fsdev = qemu_malloc((len + 1) * sizeof(*arg_fsdev));
2335 sprintf(arg_fsdev, "%s,id=%s,path=%s,security_model=%s",
2336 qemu_opt_get(opts, "fstype"),
2337 qemu_opt_get(opts, "mount_tag"),
2338 qemu_opt_get(opts, "path"),
2339 qemu_opt_get(opts, "security_model"));
2341 len = strlen("virtio-9p-pci,fsdev=,mount_tag=");
2342 len += 2*strlen(qemu_opt_get(opts, "mount_tag"));
2343 arg_9p = qemu_malloc((len + 1) * sizeof(*arg_9p));
2345 sprintf(arg_9p, "virtio-9p-pci,fsdev=%s,mount_tag=%s",
2346 qemu_opt_get(opts, "mount_tag"),
2347 qemu_opt_get(opts, "mount_tag"));
2349 if (!qemu_opts_parse(qemu_find_opts("fsdev"), arg_fsdev, 1)) {
2350 fprintf(stderr, "parse error [fsdev]: %s\n", optarg);
2354 if (!qemu_opts_parse(qemu_find_opts("device"), arg_9p, 1)) {
2355 fprintf(stderr, "parse error [device]: %s\n", optarg);
2359 qemu_free(arg_fsdev);
2363 case QEMU_OPTION_serial:
2364 add_device_config(DEV_SERIAL, optarg);
2366 if (strncmp(optarg, "mon:", 4) == 0) {
2367 default_monitor = 0;
2370 case QEMU_OPTION_watchdog:
2373 "qemu: only one watchdog option may be given\n");
2378 case QEMU_OPTION_watchdog_action:
2379 if (select_watchdog_action(optarg) == -1) {
2380 fprintf(stderr, "Unknown -watchdog-action parameter\n");
2384 case QEMU_OPTION_virtiocon:
2385 add_device_config(DEV_VIRTCON, optarg);
2386 default_virtcon = 0;
2387 if (strncmp(optarg, "mon:", 4) == 0) {
2388 default_monitor = 0;
2391 case QEMU_OPTION_parallel:
2392 add_device_config(DEV_PARALLEL, optarg);
2393 default_parallel = 0;
2394 if (strncmp(optarg, "mon:", 4) == 0) {
2395 default_monitor = 0;
2398 case QEMU_OPTION_debugcon:
2399 add_device_config(DEV_DEBUGCON, optarg);
2401 case QEMU_OPTION_loadvm:
2404 case QEMU_OPTION_full_screen:
2408 case QEMU_OPTION_no_frame:
2411 case QEMU_OPTION_alt_grab:
2414 case QEMU_OPTION_ctrl_grab:
2417 case QEMU_OPTION_no_quit:
2420 case QEMU_OPTION_sdl:
2421 display_type = DT_SDL;
2424 case QEMU_OPTION_pidfile:
2427 case QEMU_OPTION_win2k_hack:
2428 win2k_install_hack = 1;
2430 case QEMU_OPTION_rtc_td_hack:
2433 case QEMU_OPTION_acpitable:
2434 do_acpitable_option(optarg);
2436 case QEMU_OPTION_smbios:
2437 do_smbios_option(optarg);
2439 case QEMU_OPTION_enable_kvm:
2442 case QEMU_OPTION_usb:
2445 case QEMU_OPTION_usbdevice:
2447 add_device_config(DEV_USB, optarg);
2449 case QEMU_OPTION_device:
2450 if (!qemu_opts_parse(qemu_find_opts("device"), optarg, 1)) {
2454 case QEMU_OPTION_smp:
2457 fprintf(stderr, "Invalid number of CPUs\n");
2460 if (max_cpus < smp_cpus) {
2461 fprintf(stderr, "maxcpus must be equal to or greater than "
2465 if (max_cpus > 255) {
2466 fprintf(stderr, "Unsupported number of maxcpus\n");
2470 case QEMU_OPTION_vnc:
2471 display_type = DT_VNC;
2472 vnc_display = optarg;
2474 case QEMU_OPTION_no_acpi:
2477 case QEMU_OPTION_no_hpet:
2480 case QEMU_OPTION_balloon:
2481 if (balloon_parse(optarg) < 0) {
2482 fprintf(stderr, "Unknown -balloon argument %s\n", optarg);
2486 case QEMU_OPTION_no_reboot:
2489 case QEMU_OPTION_no_shutdown:
2492 case QEMU_OPTION_show_cursor:
2495 case QEMU_OPTION_uuid:
2496 if(qemu_uuid_parse(optarg, qemu_uuid) < 0) {
2497 fprintf(stderr, "Fail to parse UUID string."
2498 " Wrong format.\n");
2502 case QEMU_OPTION_option_rom:
2503 if (nb_option_roms >= MAX_OPTION_ROMS) {
2504 fprintf(stderr, "Too many option ROMs\n");
2507 option_rom[nb_option_roms] = optarg;
2510 case QEMU_OPTION_semihosting:
2511 semihosting_enabled = 1;
2513 case QEMU_OPTION_name:
2514 qemu_name = qemu_strdup(optarg);
2516 char *p = strchr(qemu_name, ',');
2519 if (strncmp(p, "process=", 8)) {
2520 fprintf(stderr, "Unknown subargument %s to -name", p);
2524 os_set_proc_name(p);
2528 case QEMU_OPTION_prom_env:
2529 if (nb_prom_envs >= MAX_PROM_ENVS) {
2530 fprintf(stderr, "Too many prom variables\n");
2533 prom_envs[nb_prom_envs] = optarg;
2536 case QEMU_OPTION_old_param:
2539 case QEMU_OPTION_clock:
2540 configure_alarms(optarg);
2542 case QEMU_OPTION_startdate:
2543 configure_rtc_date_offset(optarg, 1);
2545 case QEMU_OPTION_rtc:
2546 opts = qemu_opts_parse(qemu_find_opts("rtc"), optarg, 0);
2550 configure_rtc(opts);
2552 case QEMU_OPTION_tb_size:
2553 tb_size = strtol(optarg, NULL, 0);
2557 case QEMU_OPTION_icount:
2558 icount_option = optarg;
2560 case QEMU_OPTION_incoming:
2562 incoming_expected = true;
2564 case QEMU_OPTION_nodefaults:
2566 default_parallel = 0;
2567 default_virtcon = 0;
2568 default_monitor = 0;
2575 case QEMU_OPTION_xen_domid:
2576 if (!(xen_available())) {
2577 printf("Option %s not supported for this target\n", popt->name);
2580 xen_domid = atoi(optarg);
2582 case QEMU_OPTION_xen_create:
2583 if (!(xen_available())) {
2584 printf("Option %s not supported for this target\n", popt->name);
2587 xen_mode = XEN_CREATE;
2589 case QEMU_OPTION_xen_attach:
2590 if (!(xen_available())) {
2591 printf("Option %s not supported for this target\n", popt->name);
2594 xen_mode = XEN_ATTACH;
2596 case QEMU_OPTION_readconfig:
2598 int ret = qemu_read_config_file(optarg);
2600 fprintf(stderr, "read config %s: %s\n", optarg,
2606 case QEMU_OPTION_writeconfig:
2609 if (strcmp(optarg, "-") == 0) {
2612 fp = fopen(optarg, "w");
2614 fprintf(stderr, "open %s: %s\n", optarg, strerror(errno));
2618 qemu_config_write(fp);
2623 os_parse_cmd_args(popt->index, optarg);
2629 /* If no data_dir is specified then try to find it relative to the
2632 data_dir = os_find_datadir(argv[0]);
2634 /* If all else fails use the install patch specified when building. */
2636 data_dir = CONFIG_QEMU_DATADIR;
2640 * Default to max_cpus = smp_cpus, in case the user doesn't
2641 * specify a max_cpus value.
2644 max_cpus = smp_cpus;
2646 machine->max_cpus = machine->max_cpus ?: 1; /* Default to UP */
2647 if (smp_cpus > machine->max_cpus) {
2648 fprintf(stderr, "Number of SMP cpus requested (%d), exceeds max cpus "
2649 "supported by machine `%s' (%d)\n", smp_cpus, machine->name,
2654 qemu_opts_foreach(qemu_find_opts("device"), default_driver_check, NULL, 0);
2655 qemu_opts_foreach(qemu_find_opts("global"), default_driver_check, NULL, 0);
2657 if (machine->no_serial) {
2660 if (machine->no_parallel) {
2661 default_parallel = 0;
2663 if (!machine->use_virtcon) {
2664 default_virtcon = 0;
2666 if (machine->no_vga) {
2669 if (machine->no_floppy) {
2672 if (machine->no_cdrom) {
2675 if (machine->no_sdcard) {
2679 if (display_type == DT_NOGRAPHIC) {
2680 if (default_parallel)
2681 add_device_config(DEV_PARALLEL, "null");
2682 if (default_serial && default_monitor) {
2683 add_device_config(DEV_SERIAL, "mon:stdio");
2684 } else if (default_virtcon && default_monitor) {
2685 add_device_config(DEV_VIRTCON, "mon:stdio");
2688 add_device_config(DEV_SERIAL, "stdio");
2689 if (default_virtcon)
2690 add_device_config(DEV_VIRTCON, "stdio");
2691 if (default_monitor)
2692 monitor_parse("stdio", "readline");
2696 add_device_config(DEV_SERIAL, "vc:80Cx24C");
2697 if (default_parallel)
2698 add_device_config(DEV_PARALLEL, "vc:80Cx24C");
2699 if (default_monitor)
2700 monitor_parse("vc:80Cx24C", "readline");
2701 if (default_virtcon)
2702 add_device_config(DEV_VIRTCON, "vc:80Cx24C");
2705 vga_interface_type = VGA_CIRRUS;
2709 if (qemu_opts_foreach(qemu_find_opts("chardev"), chardev_init_func, NULL, 1) != 0)
2711 #ifdef CONFIG_VIRTFS
2712 if (qemu_opts_foreach(qemu_find_opts("fsdev"), fsdev_init_func, NULL, 1) != 0) {
2719 if (pid_file && qemu_create_pidfile(pid_file) != 0) {
2725 int ret = kvm_init(smp_cpus);
2727 if (!kvm_available()) {
2728 printf("KVM not supported for this target\n");
2730 fprintf(stderr, "failed to initialize KVM: %s\n", strerror(-ret));
2736 if (qemu_init_main_loop()) {
2737 fprintf(stderr, "qemu_init_main_loop failed\n");
2740 linux_boot = (kernel_filename != NULL);
2742 if (!linux_boot && *kernel_cmdline != '\0') {
2743 fprintf(stderr, "-append only allowed with -kernel option\n");
2747 if (!linux_boot && initrd_filename != NULL) {
2748 fprintf(stderr, "-initrd only allowed with -kernel option\n");
2752 os_set_line_buffering();
2754 if (init_timer_alarm() < 0) {
2755 fprintf(stderr, "could not initialize alarm timer\n");
2758 configure_icount(icount_option);
2760 if (net_init_clients() < 0) {
2764 /* init the bluetooth world */
2765 if (foreach_device_config(DEV_BT, bt_parse))
2768 /* init the memory */
2770 ram_size = DEFAULT_RAM_SIZE * 1024 * 1024;
2772 /* init the dynamic translator */
2773 cpu_exec_init_all(tb_size * 1024 * 1024);
2775 bdrv_init_with_whitelist();
2779 if (default_cdrom) {
2780 /* we always create the cdrom drive, even if no disk is there */
2781 drive_add(NULL, CDROM_ALIAS);
2784 if (default_floppy) {
2785 /* we always create at least one floppy */
2786 drive_add(NULL, FD_ALIAS, 0);
2789 if (default_sdcard) {
2790 /* we always create one sd slot, even if no card is in it */
2791 drive_add(NULL, SD_ALIAS);
2794 /* open the virtual block devices */
2796 qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot, NULL, 0);
2797 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func, &machine->use_scsi, 1) != 0)
2800 register_savevm_live(NULL, "ram", 0, 4, NULL, ram_save_live, NULL,
2803 if (nb_numa_nodes > 0) {
2806 if (nb_numa_nodes > smp_cpus) {
2807 nb_numa_nodes = smp_cpus;
2810 /* If no memory size if given for any node, assume the default case
2811 * and distribute the available memory equally across all nodes
2813 for (i = 0; i < nb_numa_nodes; i++) {
2814 if (node_mem[i] != 0)
2817 if (i == nb_numa_nodes) {
2818 uint64_t usedmem = 0;
2820 /* On Linux, the each node's border has to be 8MB aligned,
2821 * the final node gets the rest.
2823 for (i = 0; i < nb_numa_nodes - 1; i++) {
2824 node_mem[i] = (ram_size / nb_numa_nodes) & ~((1 << 23UL) - 1);
2825 usedmem += node_mem[i];
2827 node_mem[i] = ram_size - usedmem;
2830 for (i = 0; i < nb_numa_nodes; i++) {
2831 if (node_cpumask[i] != 0)
2834 /* assigning the VCPUs round-robin is easier to implement, guest OSes
2835 * must cope with this anyway, because there are BIOSes out there in
2836 * real machines which also use this scheme.
2838 if (i == nb_numa_nodes) {
2839 for (i = 0; i < smp_cpus; i++) {
2840 node_cpumask[i % nb_numa_nodes] |= 1 << i;
2845 if (qemu_opts_foreach(qemu_find_opts("mon"), mon_init_func, NULL, 1) != 0) {
2849 if (foreach_device_config(DEV_SERIAL, serial_parse) < 0)
2851 if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0)
2853 if (foreach_device_config(DEV_VIRTCON, virtcon_parse) < 0)
2855 if (foreach_device_config(DEV_DEBUGCON, debugcon_parse) < 0)
2858 module_call_init(MODULE_INIT_DEVICE);
2860 if (qemu_opts_foreach(qemu_find_opts("device"), device_help_func, NULL, 0) != 0)
2864 i = select_watchdog(watchdog);
2866 exit (i == 1 ? 1 : 0);
2869 if (machine->compat_props) {
2870 qdev_prop_register_global_list(machine->compat_props);
2874 machine->init(ram_size, boot_devices,
2875 kernel_filename, kernel_cmdline, initrd_filename, cpu_model);
2877 cpu_synchronize_all_post_init();
2879 /* must be after terminal init, SDL library changes signal handlers */
2880 os_setup_signal_handling();
2884 current_machine = machine;
2886 /* init USB devices */
2888 if (foreach_device_config(DEV_USB, usb_parse) < 0)
2892 /* init generic devices */
2893 if (qemu_opts_foreach(qemu_find_opts("device"), device_init_func, NULL, 1) != 0)
2896 net_check_clients();
2898 /* just use the first displaystate for the moment */
2899 ds = get_displaystate();
2901 if (display_type == DT_DEFAULT) {
2902 #if defined(CONFIG_SDL) || defined(CONFIG_COCOA)
2903 display_type = DT_SDL;
2905 display_type = DT_VNC;
2906 vnc_display = "localhost:0,to=99";
2912 switch (display_type) {
2915 #if defined(CONFIG_CURSES)
2917 curses_display_init(ds, full_screen);
2920 #if defined(CONFIG_SDL)
2922 sdl_display_init(ds, full_screen, no_frame);
2924 #elif defined(CONFIG_COCOA)
2926 cocoa_display_init(ds, full_screen);
2930 vnc_display_init(ds);
2931 if (vnc_display_open(ds, vnc_display) < 0)
2934 if (show_vnc_port) {
2935 printf("VNC server running on `%s'\n", vnc_display_local_addr(ds));
2943 dcl = ds->listeners;
2944 while (dcl != NULL) {
2945 if (dcl->dpy_refresh != NULL) {
2946 ds->gui_timer = qemu_new_timer(rt_clock, gui_update, ds);
2947 qemu_mod_timer(ds->gui_timer, qemu_get_clock(rt_clock));
2953 if (display_type == DT_NOGRAPHIC || display_type == DT_VNC) {
2954 nographic_timer = qemu_new_timer(rt_clock, nographic_update, NULL);
2955 qemu_mod_timer(nographic_timer, qemu_get_clock(rt_clock));
2958 text_consoles_set_display(ds);
2960 if (gdbstub_dev && gdbserver_start(gdbstub_dev) < 0) {
2961 fprintf(stderr, "qemu: could not open gdbserver on device '%s'\n",
2966 qdev_machine_creation_done();
2968 if (rom_load_all() != 0) {
2969 fprintf(stderr, "rom loading failed\n");
2973 qemu_system_reset();
2975 if (load_vmstate(loadvm) < 0) {
2981 int ret = qemu_start_incoming_migration(incoming);
2983 fprintf(stderr, "Migration failed. Exit code %s(%d), exiting.\n",
2987 } else if (autostart) {