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"
155 #include "qemu_socket.h"
157 #include "slirp/libslirp.h"
159 #include "qemu-queue.h"
161 #include "arch_init.h"
164 //#define DEBUG_SLIRP
166 #define DEFAULT_RAM_SIZE 128
168 #define MAX_VIRTIO_CONSOLES 1
170 static const char *data_dir
;
171 const char *bios_name
= NULL
;
172 /* Note: drives_table[MAX_DRIVES] is a dummy block driver if none available
173 to store the VM snapshots */
174 struct drivelist drives
= QTAILQ_HEAD_INITIALIZER(drives
);
175 struct driveoptlist driveopts
= QTAILQ_HEAD_INITIALIZER(driveopts
);
176 enum vga_retrace_method vga_retrace_method
= VGA_RETRACE_DUMB
;
177 DisplayType display_type
= DT_DEFAULT
;
178 const char* keyboard_layout
= NULL
;
180 const char *mem_path
= NULL
;
182 int mem_prealloc
= 0; /* force preallocation of physical target memory */
185 NICInfo nd_table
[MAX_NICS
];
188 static int rtc_utc
= 1;
189 static int rtc_date_offset
= -1; /* -1 means no change */
190 QEMUClock
*rtc_clock
;
191 int vga_interface_type
= VGA_NONE
;
192 static int full_screen
= 0;
194 static int no_frame
= 0;
197 CharDriverState
*serial_hds
[MAX_SERIAL_PORTS
];
198 CharDriverState
*parallel_hds
[MAX_PARALLEL_PORTS
];
199 CharDriverState
*virtcon_hds
[MAX_VIRTIO_CONSOLES
];
200 int win2k_install_hack
= 0;
208 const char *vnc_display
;
209 int acpi_enabled
= 1;
215 int graphic_rotate
= 0;
216 uint8_t irq0override
= 1;
220 const char *watchdog
;
221 const char *option_rom
[MAX_OPTION_ROMS
];
223 int semihosting_enabled
= 0;
225 const char *qemu_name
;
228 unsigned int nb_prom_envs
= 0;
229 const char *prom_envs
[MAX_PROM_ENVS
];
233 uint64_t node_mem
[MAX_NODES
];
234 uint64_t node_cpumask
[MAX_NODES
];
236 static QEMUTimer
*nographic_timer
;
238 uint8_t qemu_uuid
[16];
240 static QEMUBootSetHandler
*boot_set_handler
;
241 static void *boot_set_opaque
;
245 enum xen_mode xen_mode
= XEN_EMULATE
;
247 static int default_serial
= 1;
248 static int default_parallel
= 1;
249 static int default_virtcon
= 1;
250 static int default_monitor
= 1;
251 static int default_vga
= 1;
252 static int default_floppy
= 1;
253 static int default_cdrom
= 1;
254 static int default_sdcard
= 1;
260 { .driver
= "isa-serial", .flag
= &default_serial
},
261 { .driver
= "isa-parallel", .flag
= &default_parallel
},
262 { .driver
= "isa-fdc", .flag
= &default_floppy
},
263 { .driver
= "ide-drive", .flag
= &default_cdrom
},
264 { .driver
= "virtio-serial-pci", .flag
= &default_virtcon
},
265 { .driver
= "virtio-serial-s390", .flag
= &default_virtcon
},
266 { .driver
= "virtio-serial", .flag
= &default_virtcon
},
267 { .driver
= "VGA", .flag
= &default_vga
},
268 { .driver
= "cirrus-vga", .flag
= &default_vga
},
269 { .driver
= "vmware-svga", .flag
= &default_vga
},
272 static int default_driver_check(QemuOpts
*opts
, void *opaque
)
274 const char *driver
= qemu_opt_get(opts
, "driver");
279 for (i
= 0; i
< ARRAY_SIZE(default_list
); i
++) {
280 if (strcmp(default_list
[i
].driver
, driver
) != 0)
282 *(default_list
[i
].flag
) = 0;
287 /***********************************************************/
289 static void set_proc_name(const char *s
)
291 #if defined(__linux__) && defined(PR_SET_NAME)
295 name
[sizeof(name
) - 1] = 0;
296 strncpy(name
, s
, sizeof(name
));
297 /* Could rewrite argv[0] too, but that's a bit more complicated.
298 This simple way is enough for `top'. */
299 prctl(PR_SET_NAME
, name
);
303 /***********************************************************/
304 /* real time host monotonic timer */
306 /* compute with 96 bit intermediate result: (a*b)/c */
307 uint64_t muldiv64(uint64_t a
, uint32_t b
, uint32_t c
)
312 #ifdef HOST_WORDS_BIGENDIAN
322 rl
= (uint64_t)u
.l
.low
* (uint64_t)b
;
323 rh
= (uint64_t)u
.l
.high
* (uint64_t)b
;
326 res
.l
.low
= (((rh
% c
) << 32) + (rl
& 0xffffffff)) / c
;
330 /***********************************************************/
331 /* host time/date access */
332 void qemu_get_timedate(struct tm
*tm
, int offset
)
339 if (rtc_date_offset
== -1) {
343 ret
= localtime(&ti
);
345 ti
-= rtc_date_offset
;
349 memcpy(tm
, ret
, sizeof(struct tm
));
352 int qemu_timedate_diff(struct tm
*tm
)
356 if (rtc_date_offset
== -1)
358 seconds
= mktimegm(tm
);
360 seconds
= mktime(tm
);
362 seconds
= mktimegm(tm
) + rtc_date_offset
;
364 return seconds
- time(NULL
);
367 void rtc_change_mon_event(struct tm
*tm
)
371 data
= qobject_from_jsonf("{ 'offset': %d }", qemu_timedate_diff(tm
));
372 monitor_protocol_event(QEVENT_RTC_CHANGE
, data
);
373 qobject_decref(data
);
376 static void configure_rtc_date_offset(const char *startdate
, int legacy
)
378 time_t rtc_start_date
;
381 if (!strcmp(startdate
, "now") && legacy
) {
382 rtc_date_offset
= -1;
384 if (sscanf(startdate
, "%d-%d-%dT%d:%d:%d",
392 } else if (sscanf(startdate
, "%d-%d-%d",
404 rtc_start_date
= mktimegm(&tm
);
405 if (rtc_start_date
== -1) {
407 fprintf(stderr
, "Invalid date format. Valid formats are:\n"
408 "'2006-06-17T16:01:21' or '2006-06-17'\n");
411 rtc_date_offset
= time(NULL
) - rtc_start_date
;
415 static void configure_rtc(QemuOpts
*opts
)
419 value
= qemu_opt_get(opts
, "base");
421 if (!strcmp(value
, "utc")) {
423 } else if (!strcmp(value
, "localtime")) {
426 configure_rtc_date_offset(value
, 0);
429 value
= qemu_opt_get(opts
, "clock");
431 if (!strcmp(value
, "host")) {
432 rtc_clock
= host_clock
;
433 } else if (!strcmp(value
, "vm")) {
434 rtc_clock
= vm_clock
;
436 fprintf(stderr
, "qemu: invalid option value '%s'\n", value
);
440 value
= qemu_opt_get(opts
, "driftfix");
442 if (!strcmp(value
, "slew")) {
444 } else if (!strcmp(value
, "none")) {
447 fprintf(stderr
, "qemu: invalid option value '%s'\n", value
);
453 /***********************************************************/
454 /* Bluetooth support */
457 static struct HCIInfo
*hci_table
[MAX_NICS
];
459 static struct bt_vlan_s
{
460 struct bt_scatternet_s net
;
462 struct bt_vlan_s
*next
;
465 /* find or alloc a new bluetooth "VLAN" */
466 static struct bt_scatternet_s
*qemu_find_bt_vlan(int id
)
468 struct bt_vlan_s
**pvlan
, *vlan
;
469 for (vlan
= first_bt_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
473 vlan
= qemu_mallocz(sizeof(struct bt_vlan_s
));
475 pvlan
= &first_bt_vlan
;
476 while (*pvlan
!= NULL
)
477 pvlan
= &(*pvlan
)->next
;
482 static void null_hci_send(struct HCIInfo
*hci
, const uint8_t *data
, int len
)
486 static int null_hci_addr_set(struct HCIInfo
*hci
, const uint8_t *bd_addr
)
491 static struct HCIInfo null_hci
= {
492 .cmd_send
= null_hci_send
,
493 .sco_send
= null_hci_send
,
494 .acl_send
= null_hci_send
,
495 .bdaddr_set
= null_hci_addr_set
,
498 struct HCIInfo
*qemu_next_hci(void)
500 if (cur_hci
== nb_hcis
)
503 return hci_table
[cur_hci
++];
506 static struct HCIInfo
*hci_init(const char *str
)
509 struct bt_scatternet_s
*vlan
= 0;
511 if (!strcmp(str
, "null"))
514 else if (!strncmp(str
, "host", 4) && (str
[4] == '\0' || str
[4] == ':'))
516 return bt_host_hci(str
[4] ? str
+ 5 : "hci0");
517 else if (!strncmp(str
, "hci", 3)) {
520 if (!strncmp(str
+ 3, ",vlan=", 6)) {
521 vlan
= qemu_find_bt_vlan(strtol(str
+ 9, &endp
, 0));
526 vlan
= qemu_find_bt_vlan(0);
528 return bt_new_hci(vlan
);
531 fprintf(stderr
, "qemu: Unknown bluetooth HCI `%s'.\n", str
);
536 static int bt_hci_parse(const char *str
)
541 if (nb_hcis
>= MAX_NICS
) {
542 fprintf(stderr
, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS
);
555 bdaddr
.b
[5] = 0x56 + nb_hcis
;
556 hci
->bdaddr_set(hci
, bdaddr
.b
);
558 hci_table
[nb_hcis
++] = hci
;
563 static void bt_vhci_add(int vlan_id
)
565 struct bt_scatternet_s
*vlan
= qemu_find_bt_vlan(vlan_id
);
568 fprintf(stderr
, "qemu: warning: adding a VHCI to "
569 "an empty scatternet %i\n", vlan_id
);
571 bt_vhci_init(bt_new_hci(vlan
));
574 static struct bt_device_s
*bt_device_add(const char *opt
)
576 struct bt_scatternet_s
*vlan
;
578 char *endp
= strstr(opt
, ",vlan=");
579 int len
= (endp
? endp
- opt
: strlen(opt
)) + 1;
582 pstrcpy(devname
, MIN(sizeof(devname
), len
), opt
);
585 vlan_id
= strtol(endp
+ 6, &endp
, 0);
587 fprintf(stderr
, "qemu: unrecognised bluetooth vlan Id\n");
592 vlan
= qemu_find_bt_vlan(vlan_id
);
595 fprintf(stderr
, "qemu: warning: adding a slave device to "
596 "an empty scatternet %i\n", vlan_id
);
598 if (!strcmp(devname
, "keyboard"))
599 return bt_keyboard_init(vlan
);
601 fprintf(stderr
, "qemu: unsupported bluetooth device `%s'\n", devname
);
605 static int bt_parse(const char *opt
)
607 const char *endp
, *p
;
610 if (strstart(opt
, "hci", &endp
)) {
611 if (!*endp
|| *endp
== ',') {
613 if (!strstart(endp
, ",vlan=", 0))
616 return bt_hci_parse(opt
);
618 } else if (strstart(opt
, "vhci", &endp
)) {
619 if (!*endp
|| *endp
== ',') {
621 if (strstart(endp
, ",vlan=", &p
)) {
622 vlan
= strtol(p
, (char **) &endp
, 0);
624 fprintf(stderr
, "qemu: bad scatternet '%s'\n", p
);
628 fprintf(stderr
, "qemu: bad parameter '%s'\n", endp
+ 1);
637 } else if (strstart(opt
, "device:", &endp
))
638 return !bt_device_add(endp
);
640 fprintf(stderr
, "qemu: bad bluetooth parameter '%s'\n", opt
);
644 /***********************************************************/
645 /* QEMU Block devices */
647 #define HD_ALIAS "index=%d,media=disk"
648 #define CDROM_ALIAS "index=2,media=cdrom"
649 #define FD_ALIAS "index=%d,if=floppy"
650 #define PFLASH_ALIAS "if=pflash"
651 #define MTD_ALIAS "if=mtd"
652 #define SD_ALIAS "index=0,if=sd"
654 QemuOpts
*drive_add(const char *file
, const char *fmt
, ...)
661 vsnprintf(optstr
, sizeof(optstr
), fmt
, ap
);
664 opts
= qemu_opts_parse(&qemu_drive_opts
, optstr
, 0);
669 qemu_opt_set(opts
, "file", file
);
673 DriveInfo
*drive_get(BlockInterfaceType type
, int bus
, int unit
)
677 /* seek interface, bus and unit */
679 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
680 if (dinfo
->type
== type
&&
689 DriveInfo
*drive_get_by_id(const char *id
)
693 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
694 if (strcmp(id
, dinfo
->id
))
701 int drive_get_max_bus(BlockInterfaceType type
)
707 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
708 if(dinfo
->type
== type
&&
709 dinfo
->bus
> max_bus
)
710 max_bus
= dinfo
->bus
;
715 const char *drive_get_serial(BlockDriverState
*bdrv
)
719 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
720 if (dinfo
->bdrv
== bdrv
)
721 return dinfo
->serial
;
727 BlockInterfaceErrorAction
drive_get_on_error(
728 BlockDriverState
*bdrv
, int is_read
)
732 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
733 if (dinfo
->bdrv
== bdrv
)
734 return is_read
? dinfo
->on_read_error
: dinfo
->on_write_error
;
737 return is_read
? BLOCK_ERR_REPORT
: BLOCK_ERR_STOP_ENOSPC
;
740 static void bdrv_format_print(void *opaque
, const char *name
)
742 fprintf(stderr
, " %s", name
);
745 void drive_uninit(DriveInfo
*dinfo
)
747 qemu_opts_del(dinfo
->opts
);
748 bdrv_delete(dinfo
->bdrv
);
749 QTAILQ_REMOVE(&drives
, dinfo
, next
);
753 static int parse_block_error_action(const char *buf
, int is_read
)
755 if (!strcmp(buf
, "ignore")) {
756 return BLOCK_ERR_IGNORE
;
757 } else if (!is_read
&& !strcmp(buf
, "enospc")) {
758 return BLOCK_ERR_STOP_ENOSPC
;
759 } else if (!strcmp(buf
, "stop")) {
760 return BLOCK_ERR_STOP_ANY
;
761 } else if (!strcmp(buf
, "report")) {
762 return BLOCK_ERR_REPORT
;
764 fprintf(stderr
, "qemu: '%s' invalid %s error action\n",
765 buf
, is_read
? "read" : "write");
770 DriveInfo
*drive_init(QemuOpts
*opts
, void *opaque
,
774 const char *file
= NULL
;
777 const char *mediastr
= "";
778 BlockInterfaceType type
;
779 enum { MEDIA_DISK
, MEDIA_CDROM
} media
;
781 int cyls
, heads
, secs
, translation
;
782 BlockDriver
*drv
= NULL
;
783 QEMUMachine
*machine
= opaque
;
788 int on_read_error
, on_write_error
;
795 translation
= BIOS_ATA_TRANSLATION_AUTO
;
797 if (machine
&& machine
->use_scsi
) {
799 max_devs
= MAX_SCSI_DEVS
;
800 pstrcpy(devname
, sizeof(devname
), "scsi");
803 max_devs
= MAX_IDE_DEVS
;
804 pstrcpy(devname
, sizeof(devname
), "ide");
808 /* extract parameters */
809 bus_id
= qemu_opt_get_number(opts
, "bus", 0);
810 unit_id
= qemu_opt_get_number(opts
, "unit", -1);
811 index
= qemu_opt_get_number(opts
, "index", -1);
813 cyls
= qemu_opt_get_number(opts
, "cyls", 0);
814 heads
= qemu_opt_get_number(opts
, "heads", 0);
815 secs
= qemu_opt_get_number(opts
, "secs", 0);
817 snapshot
= qemu_opt_get_bool(opts
, "snapshot", 0);
818 ro
= qemu_opt_get_bool(opts
, "readonly", 0);
820 file
= qemu_opt_get(opts
, "file");
821 serial
= qemu_opt_get(opts
, "serial");
823 if ((buf
= qemu_opt_get(opts
, "if")) != NULL
) {
824 pstrcpy(devname
, sizeof(devname
), buf
);
825 if (!strcmp(buf
, "ide")) {
827 max_devs
= MAX_IDE_DEVS
;
828 } else if (!strcmp(buf
, "scsi")) {
830 max_devs
= MAX_SCSI_DEVS
;
831 } else if (!strcmp(buf
, "floppy")) {
834 } else if (!strcmp(buf
, "pflash")) {
837 } else if (!strcmp(buf
, "mtd")) {
840 } else if (!strcmp(buf
, "sd")) {
843 } else if (!strcmp(buf
, "virtio")) {
846 } else if (!strcmp(buf
, "xen")) {
849 } else if (!strcmp(buf
, "none")) {
853 fprintf(stderr
, "qemu: unsupported bus type '%s'\n", buf
);
858 if (cyls
|| heads
|| secs
) {
859 if (cyls
< 1 || (type
== IF_IDE
&& cyls
> 16383)) {
860 fprintf(stderr
, "qemu: '%s' invalid physical cyls number\n", buf
);
863 if (heads
< 1 || (type
== IF_IDE
&& heads
> 16)) {
864 fprintf(stderr
, "qemu: '%s' invalid physical heads number\n", buf
);
867 if (secs
< 1 || (type
== IF_IDE
&& secs
> 63)) {
868 fprintf(stderr
, "qemu: '%s' invalid physical secs number\n", buf
);
873 if ((buf
= qemu_opt_get(opts
, "trans")) != NULL
) {
876 "qemu: '%s' trans must be used with cyls,heads and secs\n",
880 if (!strcmp(buf
, "none"))
881 translation
= BIOS_ATA_TRANSLATION_NONE
;
882 else if (!strcmp(buf
, "lba"))
883 translation
= BIOS_ATA_TRANSLATION_LBA
;
884 else if (!strcmp(buf
, "auto"))
885 translation
= BIOS_ATA_TRANSLATION_AUTO
;
887 fprintf(stderr
, "qemu: '%s' invalid translation type\n", buf
);
892 if ((buf
= qemu_opt_get(opts
, "media")) != NULL
) {
893 if (!strcmp(buf
, "disk")) {
895 } else if (!strcmp(buf
, "cdrom")) {
896 if (cyls
|| secs
|| heads
) {
898 "qemu: '%s' invalid physical CHS format\n", buf
);
903 fprintf(stderr
, "qemu: '%s' invalid media\n", buf
);
908 if ((buf
= qemu_opt_get(opts
, "cache")) != NULL
) {
909 if (!strcmp(buf
, "off") || !strcmp(buf
, "none")) {
910 bdrv_flags
|= BDRV_O_NOCACHE
;
911 } else if (!strcmp(buf
, "writeback")) {
912 bdrv_flags
|= BDRV_O_CACHE_WB
;
913 } else if (!strcmp(buf
, "writethrough")) {
914 /* this is the default */
916 fprintf(stderr
, "qemu: invalid cache option\n");
921 #ifdef CONFIG_LINUX_AIO
922 if ((buf
= qemu_opt_get(opts
, "aio")) != NULL
) {
923 if (!strcmp(buf
, "native")) {
924 bdrv_flags
|= BDRV_O_NATIVE_AIO
;
925 } else if (!strcmp(buf
, "threads")) {
926 /* this is the default */
928 fprintf(stderr
, "qemu: invalid aio option\n");
934 if ((buf
= qemu_opt_get(opts
, "format")) != NULL
) {
935 if (strcmp(buf
, "?") == 0) {
936 fprintf(stderr
, "qemu: Supported formats:");
937 bdrv_iterate_format(bdrv_format_print
, NULL
);
938 fprintf(stderr
, "\n");
941 drv
= bdrv_find_whitelisted_format(buf
);
943 fprintf(stderr
, "qemu: '%s' invalid format\n", buf
);
948 on_write_error
= BLOCK_ERR_STOP_ENOSPC
;
949 if ((buf
= qemu_opt_get(opts
, "werror")) != NULL
) {
950 if (type
!= IF_IDE
&& type
!= IF_SCSI
&& type
!= IF_VIRTIO
) {
951 fprintf(stderr
, "werror is no supported by this format\n");
955 on_write_error
= parse_block_error_action(buf
, 0);
956 if (on_write_error
< 0) {
961 on_read_error
= BLOCK_ERR_REPORT
;
962 if ((buf
= qemu_opt_get(opts
, "rerror")) != NULL
) {
963 if (type
!= IF_IDE
&& type
!= IF_VIRTIO
) {
964 fprintf(stderr
, "rerror is no supported by this format\n");
968 on_read_error
= parse_block_error_action(buf
, 1);
969 if (on_read_error
< 0) {
974 if ((devaddr
= qemu_opt_get(opts
, "addr")) != NULL
) {
975 if (type
!= IF_VIRTIO
) {
976 fprintf(stderr
, "addr is not supported\n");
981 /* compute bus and unit according index */
984 if (bus_id
!= 0 || unit_id
!= -1) {
986 "qemu: index cannot be used with bus and unit\n");
994 unit_id
= index
% max_devs
;
995 bus_id
= index
/ max_devs
;
999 /* if user doesn't specify a unit_id,
1000 * try to find the first free
1003 if (unit_id
== -1) {
1005 while (drive_get(type
, bus_id
, unit_id
) != NULL
) {
1007 if (max_devs
&& unit_id
>= max_devs
) {
1008 unit_id
-= max_devs
;
1016 if (max_devs
&& unit_id
>= max_devs
) {
1017 fprintf(stderr
, "qemu: unit %d too big (max is %d)\n",
1018 unit_id
, max_devs
- 1);
1023 * ignore multiple definitions
1026 if (drive_get(type
, bus_id
, unit_id
) != NULL
) {
1033 dinfo
= qemu_mallocz(sizeof(*dinfo
));
1034 if ((buf
= qemu_opts_id(opts
)) != NULL
) {
1035 dinfo
->id
= qemu_strdup(buf
);
1037 /* no id supplied -> create one */
1038 dinfo
->id
= qemu_mallocz(32);
1039 if (type
== IF_IDE
|| type
== IF_SCSI
)
1040 mediastr
= (media
== MEDIA_CDROM
) ? "-cd" : "-hd";
1042 snprintf(dinfo
->id
, 32, "%s%i%s%i",
1043 devname
, bus_id
, mediastr
, unit_id
);
1045 snprintf(dinfo
->id
, 32, "%s%s%i",
1046 devname
, mediastr
, unit_id
);
1048 dinfo
->bdrv
= bdrv_new(dinfo
->id
);
1049 dinfo
->devaddr
= devaddr
;
1051 dinfo
->bus
= bus_id
;
1052 dinfo
->unit
= unit_id
;
1053 dinfo
->on_read_error
= on_read_error
;
1054 dinfo
->on_write_error
= on_write_error
;
1057 strncpy(dinfo
->serial
, serial
, sizeof(serial
));
1058 QTAILQ_INSERT_TAIL(&drives
, dinfo
, next
);
1068 bdrv_set_geometry_hint(dinfo
->bdrv
, cyls
, heads
, secs
);
1069 bdrv_set_translation_hint(dinfo
->bdrv
, translation
);
1073 bdrv_set_type_hint(dinfo
->bdrv
, BDRV_TYPE_CDROM
);
1078 /* FIXME: This isn't really a floppy, but it's a reasonable
1081 bdrv_set_type_hint(dinfo
->bdrv
, BDRV_TYPE_FLOPPY
);
1087 /* add virtio block device */
1088 opts
= qemu_opts_create(&qemu_device_opts
, NULL
, 0);
1089 qemu_opt_set(opts
, "driver", "virtio-blk-pci");
1090 qemu_opt_set(opts
, "drive", dinfo
->id
);
1092 qemu_opt_set(opts
, "addr", devaddr
);
1102 /* always use write-back with snapshot */
1103 bdrv_flags
&= ~BDRV_O_CACHE_MASK
;
1104 bdrv_flags
|= (BDRV_O_SNAPSHOT
|BDRV_O_CACHE_WB
);
1107 if (media
== MEDIA_CDROM
) {
1108 /* CDROM is fine for any interface, don't check. */
1110 } else if (ro
== 1) {
1111 if (type
!= IF_SCSI
&& type
!= IF_VIRTIO
&& type
!= IF_FLOPPY
) {
1112 fprintf(stderr
, "qemu: readonly flag not supported for drive with this interface\n");
1117 bdrv_flags
|= ro
? 0 : BDRV_O_RDWR
;
1119 if (bdrv_open(dinfo
->bdrv
, file
, bdrv_flags
, drv
) < 0) {
1120 fprintf(stderr
, "qemu: could not open disk image %s: %s\n",
1121 file
, strerror(errno
));
1125 if (bdrv_key_required(dinfo
->bdrv
))
1131 static int drive_init_func(QemuOpts
*opts
, void *opaque
)
1133 QEMUMachine
*machine
= opaque
;
1134 int fatal_error
= 0;
1136 if (drive_init(opts
, machine
, &fatal_error
) == NULL
) {
1143 static int drive_enable_snapshot(QemuOpts
*opts
, void *opaque
)
1145 if (NULL
== qemu_opt_get(opts
, "snapshot")) {
1146 qemu_opt_set(opts
, "snapshot", "on");
1151 void qemu_register_boot_set(QEMUBootSetHandler
*func
, void *opaque
)
1153 boot_set_handler
= func
;
1154 boot_set_opaque
= opaque
;
1157 int qemu_boot_set(const char *boot_devices
)
1159 if (!boot_set_handler
) {
1162 return boot_set_handler(boot_set_opaque
, boot_devices
);
1165 static void validate_bootdevices(char *devices
)
1167 /* We just do some generic consistency checks */
1171 for (p
= devices
; *p
!= '\0'; p
++) {
1172 /* Allowed boot devices are:
1173 * a-b: floppy disk drives
1174 * c-f: IDE disk drives
1175 * g-m: machine implementation dependant drives
1176 * n-p: network devices
1177 * It's up to each machine implementation to check if the given boot
1178 * devices match the actual hardware implementation and firmware
1181 if (*p
< 'a' || *p
> 'p') {
1182 fprintf(stderr
, "Invalid boot device '%c'\n", *p
);
1185 if (bitmap
& (1 << (*p
- 'a'))) {
1186 fprintf(stderr
, "Boot device '%c' was given twice\n", *p
);
1189 bitmap
|= 1 << (*p
- 'a');
1193 static void restore_boot_devices(void *opaque
)
1195 char *standard_boot_devices
= opaque
;
1197 qemu_boot_set(standard_boot_devices
);
1199 qemu_unregister_reset(restore_boot_devices
, standard_boot_devices
);
1200 qemu_free(standard_boot_devices
);
1203 static void numa_add(const char *optarg
)
1207 unsigned long long value
, endvalue
;
1210 optarg
= get_opt_name(option
, 128, optarg
, ',') + 1;
1211 if (!strcmp(option
, "node")) {
1212 if (get_param_value(option
, 128, "nodeid", optarg
) == 0) {
1213 nodenr
= nb_numa_nodes
;
1215 nodenr
= strtoull(option
, NULL
, 10);
1218 if (get_param_value(option
, 128, "mem", optarg
) == 0) {
1219 node_mem
[nodenr
] = 0;
1221 value
= strtoull(option
, &endptr
, 0);
1223 case 0: case 'M': case 'm':
1230 node_mem
[nodenr
] = value
;
1232 if (get_param_value(option
, 128, "cpus", optarg
) == 0) {
1233 node_cpumask
[nodenr
] = 0;
1235 value
= strtoull(option
, &endptr
, 10);
1238 fprintf(stderr
, "only 64 CPUs in NUMA mode supported.\n");
1240 if (*endptr
== '-') {
1241 endvalue
= strtoull(endptr
+1, &endptr
, 10);
1242 if (endvalue
>= 63) {
1245 "only 63 CPUs in NUMA mode supported.\n");
1247 value
= (2ULL << endvalue
) - (1ULL << value
);
1249 value
= 1ULL << value
;
1252 node_cpumask
[nodenr
] = value
;
1259 static void smp_parse(const char *optarg
)
1261 int smp
, sockets
= 0, threads
= 0, cores
= 0;
1265 smp
= strtoul(optarg
, &endptr
, 10);
1266 if (endptr
!= optarg
) {
1267 if (*endptr
== ',') {
1271 if (get_param_value(option
, 128, "sockets", endptr
) != 0)
1272 sockets
= strtoull(option
, NULL
, 10);
1273 if (get_param_value(option
, 128, "cores", endptr
) != 0)
1274 cores
= strtoull(option
, NULL
, 10);
1275 if (get_param_value(option
, 128, "threads", endptr
) != 0)
1276 threads
= strtoull(option
, NULL
, 10);
1277 if (get_param_value(option
, 128, "maxcpus", endptr
) != 0)
1278 max_cpus
= strtoull(option
, NULL
, 10);
1280 /* compute missing values, prefer sockets over cores over threads */
1281 if (smp
== 0 || sockets
== 0) {
1282 sockets
= sockets
> 0 ? sockets
: 1;
1283 cores
= cores
> 0 ? cores
: 1;
1284 threads
= threads
> 0 ? threads
: 1;
1286 smp
= cores
* threads
* sockets
;
1290 threads
= threads
> 0 ? threads
: 1;
1291 cores
= smp
/ (sockets
* threads
);
1294 threads
= smp
/ (cores
* sockets
);
1299 smp_cores
= cores
> 0 ? cores
: 1;
1300 smp_threads
= threads
> 0 ? threads
: 1;
1302 max_cpus
= smp_cpus
;
1305 /***********************************************************/
1308 static int usb_device_add(const char *devname
, int is_hotplug
)
1311 USBDevice
*dev
= NULL
;
1316 /* drivers with .usbdevice_name entry in USBDeviceInfo */
1317 dev
= usbdevice_create(devname
);
1321 /* the other ones */
1322 if (strstart(devname
, "host:", &p
)) {
1323 dev
= usb_host_device_open(p
);
1324 } else if (!strcmp(devname
, "bt") || strstart(devname
, "bt:", &p
)) {
1325 dev
= usb_bt_init(devname
[2] ? hci_init(p
) :
1326 bt_new_hci(qemu_find_bt_vlan(0)));
1337 static int usb_device_del(const char *devname
)
1342 if (strstart(devname
, "host:", &p
))
1343 return usb_host_device_close(p
);
1348 p
= strchr(devname
, '.');
1351 bus_num
= strtoul(devname
, NULL
, 0);
1352 addr
= strtoul(p
+ 1, NULL
, 0);
1354 return usb_device_delete_addr(bus_num
, addr
);
1357 static int usb_parse(const char *cmdline
)
1360 r
= usb_device_add(cmdline
, 0);
1362 fprintf(stderr
, "qemu: could not add USB device '%s'\n", cmdline
);
1367 void do_usb_add(Monitor
*mon
, const QDict
*qdict
)
1369 const char *devname
= qdict_get_str(qdict
, "devname");
1370 if (usb_device_add(devname
, 1) < 0) {
1371 error_report("could not add USB device '%s'", devname
);
1375 void do_usb_del(Monitor
*mon
, const QDict
*qdict
)
1377 const char *devname
= qdict_get_str(qdict
, "devname");
1378 if (usb_device_del(devname
) < 0) {
1379 error_report("could not delete USB device '%s'", devname
);
1383 /***********************************************************/
1384 /* PCMCIA/Cardbus */
1386 static struct pcmcia_socket_entry_s
{
1387 PCMCIASocket
*socket
;
1388 struct pcmcia_socket_entry_s
*next
;
1389 } *pcmcia_sockets
= 0;
1391 void pcmcia_socket_register(PCMCIASocket
*socket
)
1393 struct pcmcia_socket_entry_s
*entry
;
1395 entry
= qemu_malloc(sizeof(struct pcmcia_socket_entry_s
));
1396 entry
->socket
= socket
;
1397 entry
->next
= pcmcia_sockets
;
1398 pcmcia_sockets
= entry
;
1401 void pcmcia_socket_unregister(PCMCIASocket
*socket
)
1403 struct pcmcia_socket_entry_s
*entry
, **ptr
;
1405 ptr
= &pcmcia_sockets
;
1406 for (entry
= *ptr
; entry
; ptr
= &entry
->next
, entry
= *ptr
)
1407 if (entry
->socket
== socket
) {
1413 void pcmcia_info(Monitor
*mon
)
1415 struct pcmcia_socket_entry_s
*iter
;
1417 if (!pcmcia_sockets
)
1418 monitor_printf(mon
, "No PCMCIA sockets\n");
1420 for (iter
= pcmcia_sockets
; iter
; iter
= iter
->next
)
1421 monitor_printf(mon
, "%s: %s\n", iter
->socket
->slot_string
,
1422 iter
->socket
->attached
? iter
->socket
->card_string
:
1426 /***********************************************************/
1429 typedef struct IOHandlerRecord
{
1431 IOCanReadHandler
*fd_read_poll
;
1433 IOHandler
*fd_write
;
1436 /* temporary data */
1438 QLIST_ENTRY(IOHandlerRecord
) next
;
1441 static QLIST_HEAD(, IOHandlerRecord
) io_handlers
=
1442 QLIST_HEAD_INITIALIZER(io_handlers
);
1445 /* XXX: fd_read_poll should be suppressed, but an API change is
1446 necessary in the character devices to suppress fd_can_read(). */
1447 int qemu_set_fd_handler2(int fd
,
1448 IOCanReadHandler
*fd_read_poll
,
1450 IOHandler
*fd_write
,
1453 IOHandlerRecord
*ioh
;
1455 if (!fd_read
&& !fd_write
) {
1456 QLIST_FOREACH(ioh
, &io_handlers
, next
) {
1457 if (ioh
->fd
== fd
) {
1463 QLIST_FOREACH(ioh
, &io_handlers
, next
) {
1467 ioh
= qemu_mallocz(sizeof(IOHandlerRecord
));
1468 QLIST_INSERT_HEAD(&io_handlers
, ioh
, next
);
1471 ioh
->fd_read_poll
= fd_read_poll
;
1472 ioh
->fd_read
= fd_read
;
1473 ioh
->fd_write
= fd_write
;
1474 ioh
->opaque
= opaque
;
1480 int qemu_set_fd_handler(int fd
,
1482 IOHandler
*fd_write
,
1485 return qemu_set_fd_handler2(fd
, NULL
, fd_read
, fd_write
, opaque
);
1489 /***********************************************************/
1490 /* Polling handling */
1492 typedef struct PollingEntry
{
1495 struct PollingEntry
*next
;
1498 static PollingEntry
*first_polling_entry
;
1500 int qemu_add_polling_cb(PollingFunc
*func
, void *opaque
)
1502 PollingEntry
**ppe
, *pe
;
1503 pe
= qemu_mallocz(sizeof(PollingEntry
));
1505 pe
->opaque
= opaque
;
1506 for(ppe
= &first_polling_entry
; *ppe
!= NULL
; ppe
= &(*ppe
)->next
);
1511 void qemu_del_polling_cb(PollingFunc
*func
, void *opaque
)
1513 PollingEntry
**ppe
, *pe
;
1514 for(ppe
= &first_polling_entry
; *ppe
!= NULL
; ppe
= &(*ppe
)->next
) {
1516 if (pe
->func
== func
&& pe
->opaque
== opaque
) {
1524 /***********************************************************/
1525 /* Wait objects support */
1526 typedef struct WaitObjects
{
1528 HANDLE events
[MAXIMUM_WAIT_OBJECTS
+ 1];
1529 WaitObjectFunc
*func
[MAXIMUM_WAIT_OBJECTS
+ 1];
1530 void *opaque
[MAXIMUM_WAIT_OBJECTS
+ 1];
1533 static WaitObjects wait_objects
= {0};
1535 int qemu_add_wait_object(HANDLE handle
, WaitObjectFunc
*func
, void *opaque
)
1537 WaitObjects
*w
= &wait_objects
;
1539 if (w
->num
>= MAXIMUM_WAIT_OBJECTS
)
1541 w
->events
[w
->num
] = handle
;
1542 w
->func
[w
->num
] = func
;
1543 w
->opaque
[w
->num
] = opaque
;
1548 void qemu_del_wait_object(HANDLE handle
, WaitObjectFunc
*func
, void *opaque
)
1551 WaitObjects
*w
= &wait_objects
;
1554 for (i
= 0; i
< w
->num
; i
++) {
1555 if (w
->events
[i
] == handle
)
1558 w
->events
[i
] = w
->events
[i
+ 1];
1559 w
->func
[i
] = w
->func
[i
+ 1];
1560 w
->opaque
[i
] = w
->opaque
[i
+ 1];
1568 /***********************************************************/
1569 /* machine registration */
1571 static QEMUMachine
*first_machine
= NULL
;
1572 QEMUMachine
*current_machine
= NULL
;
1574 int qemu_register_machine(QEMUMachine
*m
)
1577 pm
= &first_machine
;
1585 static QEMUMachine
*find_machine(const char *name
)
1589 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
1590 if (!strcmp(m
->name
, name
))
1592 if (m
->alias
&& !strcmp(m
->alias
, name
))
1598 static QEMUMachine
*find_default_machine(void)
1602 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
1603 if (m
->is_default
) {
1610 /***********************************************************/
1611 /* main execution loop */
1613 static void gui_update(void *opaque
)
1615 uint64_t interval
= GUI_REFRESH_INTERVAL
;
1616 DisplayState
*ds
= opaque
;
1617 DisplayChangeListener
*dcl
= ds
->listeners
;
1619 qemu_flush_coalesced_mmio_buffer();
1622 while (dcl
!= NULL
) {
1623 if (dcl
->gui_timer_interval
&&
1624 dcl
->gui_timer_interval
< interval
)
1625 interval
= dcl
->gui_timer_interval
;
1628 qemu_mod_timer(ds
->gui_timer
, interval
+ qemu_get_clock(rt_clock
));
1631 static void nographic_update(void *opaque
)
1633 uint64_t interval
= GUI_REFRESH_INTERVAL
;
1635 qemu_flush_coalesced_mmio_buffer();
1636 qemu_mod_timer(nographic_timer
, interval
+ qemu_get_clock(rt_clock
));
1639 struct vm_change_state_entry
{
1640 VMChangeStateHandler
*cb
;
1642 QLIST_ENTRY (vm_change_state_entry
) entries
;
1645 static QLIST_HEAD(vm_change_state_head
, vm_change_state_entry
) vm_change_state_head
;
1647 VMChangeStateEntry
*qemu_add_vm_change_state_handler(VMChangeStateHandler
*cb
,
1650 VMChangeStateEntry
*e
;
1652 e
= qemu_mallocz(sizeof (*e
));
1656 QLIST_INSERT_HEAD(&vm_change_state_head
, e
, entries
);
1660 void qemu_del_vm_change_state_handler(VMChangeStateEntry
*e
)
1662 QLIST_REMOVE (e
, entries
);
1666 void vm_state_notify(int running
, int reason
)
1668 VMChangeStateEntry
*e
;
1670 for (e
= vm_change_state_head
.lh_first
; e
; e
= e
->entries
.le_next
) {
1671 e
->cb(e
->opaque
, running
, reason
);
1680 vm_state_notify(1, 0);
1685 /* reset/shutdown handler */
1687 typedef struct QEMUResetEntry
{
1688 QTAILQ_ENTRY(QEMUResetEntry
) entry
;
1689 QEMUResetHandler
*func
;
1693 static QTAILQ_HEAD(reset_handlers
, QEMUResetEntry
) reset_handlers
=
1694 QTAILQ_HEAD_INITIALIZER(reset_handlers
);
1695 static int reset_requested
;
1696 static int shutdown_requested
;
1697 static int powerdown_requested
;
1698 int debug_requested
;
1699 int vmstop_requested
;
1701 int qemu_shutdown_requested(void)
1703 int r
= shutdown_requested
;
1704 shutdown_requested
= 0;
1708 int qemu_reset_requested(void)
1710 int r
= reset_requested
;
1711 reset_requested
= 0;
1715 int qemu_powerdown_requested(void)
1717 int r
= powerdown_requested
;
1718 powerdown_requested
= 0;
1722 static int qemu_debug_requested(void)
1724 int r
= debug_requested
;
1725 debug_requested
= 0;
1729 static int qemu_vmstop_requested(void)
1731 int r
= vmstop_requested
;
1732 vmstop_requested
= 0;
1736 void qemu_register_reset(QEMUResetHandler
*func
, void *opaque
)
1738 QEMUResetEntry
*re
= qemu_mallocz(sizeof(QEMUResetEntry
));
1741 re
->opaque
= opaque
;
1742 QTAILQ_INSERT_TAIL(&reset_handlers
, re
, entry
);
1745 void qemu_unregister_reset(QEMUResetHandler
*func
, void *opaque
)
1749 QTAILQ_FOREACH(re
, &reset_handlers
, entry
) {
1750 if (re
->func
== func
&& re
->opaque
== opaque
) {
1751 QTAILQ_REMOVE(&reset_handlers
, re
, entry
);
1758 void qemu_system_reset(void)
1760 QEMUResetEntry
*re
, *nre
;
1762 /* reset all devices */
1763 QTAILQ_FOREACH_SAFE(re
, &reset_handlers
, entry
, nre
) {
1764 re
->func(re
->opaque
);
1766 monitor_protocol_event(QEVENT_RESET
, NULL
);
1767 cpu_synchronize_all_post_reset();
1770 void qemu_system_reset_request(void)
1773 shutdown_requested
= 1;
1775 reset_requested
= 1;
1777 qemu_notify_event();
1780 void qemu_system_shutdown_request(void)
1782 shutdown_requested
= 1;
1783 qemu_notify_event();
1786 void qemu_system_powerdown_request(void)
1788 powerdown_requested
= 1;
1789 qemu_notify_event();
1793 static void host_main_loop_wait(int *timeout
)
1799 /* XXX: need to suppress polling by better using win32 events */
1801 for(pe
= first_polling_entry
; pe
!= NULL
; pe
= pe
->next
) {
1802 ret
|= pe
->func(pe
->opaque
);
1806 WaitObjects
*w
= &wait_objects
;
1808 ret
= WaitForMultipleObjects(w
->num
, w
->events
, FALSE
, *timeout
);
1809 if (WAIT_OBJECT_0
+ 0 <= ret
&& ret
<= WAIT_OBJECT_0
+ w
->num
- 1) {
1810 if (w
->func
[ret
- WAIT_OBJECT_0
])
1811 w
->func
[ret
- WAIT_OBJECT_0
](w
->opaque
[ret
- WAIT_OBJECT_0
]);
1813 /* Check for additional signaled events */
1814 for(i
= (ret
- WAIT_OBJECT_0
+ 1); i
< w
->num
; i
++) {
1816 /* Check if event is signaled */
1817 ret2
= WaitForSingleObject(w
->events
[i
], 0);
1818 if(ret2
== WAIT_OBJECT_0
) {
1820 w
->func
[i
](w
->opaque
[i
]);
1821 } else if (ret2
== WAIT_TIMEOUT
) {
1823 err
= GetLastError();
1824 fprintf(stderr
, "WaitForSingleObject error %d %d\n", i
, err
);
1827 } else if (ret
== WAIT_TIMEOUT
) {
1829 err
= GetLastError();
1830 fprintf(stderr
, "WaitForMultipleObjects error %d %d\n", ret
, err
);
1837 static void host_main_loop_wait(int *timeout
)
1842 void main_loop_wait(int nonblocking
)
1844 IOHandlerRecord
*ioh
;
1845 fd_set rfds
, wfds
, xfds
;
1853 timeout
= qemu_calculate_timeout();
1854 qemu_bh_update_timeout(&timeout
);
1857 host_main_loop_wait(&timeout
);
1859 /* poll any events */
1860 /* XXX: separate device handlers from system ones */
1865 QLIST_FOREACH(ioh
, &io_handlers
, next
) {
1869 (!ioh
->fd_read_poll
||
1870 ioh
->fd_read_poll(ioh
->opaque
) != 0)) {
1871 FD_SET(ioh
->fd
, &rfds
);
1875 if (ioh
->fd_write
) {
1876 FD_SET(ioh
->fd
, &wfds
);
1882 tv
.tv_sec
= timeout
/ 1000;
1883 tv
.tv_usec
= (timeout
% 1000) * 1000;
1885 slirp_select_fill(&nfds
, &rfds
, &wfds
, &xfds
);
1887 qemu_mutex_unlock_iothread();
1888 ret
= select(nfds
+ 1, &rfds
, &wfds
, &xfds
, &tv
);
1889 qemu_mutex_lock_iothread();
1891 IOHandlerRecord
*pioh
;
1893 QLIST_FOREACH_SAFE(ioh
, &io_handlers
, next
, pioh
) {
1895 QLIST_REMOVE(ioh
, next
);
1899 if (ioh
->fd_read
&& FD_ISSET(ioh
->fd
, &rfds
)) {
1900 ioh
->fd_read(ioh
->opaque
);
1902 if (ioh
->fd_write
&& FD_ISSET(ioh
->fd
, &wfds
)) {
1903 ioh
->fd_write(ioh
->opaque
);
1908 slirp_select_poll(&rfds
, &wfds
, &xfds
, (ret
< 0));
1910 qemu_run_all_timers();
1912 /* Check bottom-halves last in case any of the earlier events triggered
1918 static int vm_can_run(void)
1920 if (powerdown_requested
)
1922 if (reset_requested
)
1924 if (shutdown_requested
)
1926 if (debug_requested
)
1931 qemu_irq qemu_system_powerdown
;
1933 static void main_loop(void)
1937 qemu_main_loop_start();
1941 bool nonblocking
= false;
1942 #ifdef CONFIG_PROFILER
1945 #ifndef CONFIG_IOTHREAD
1946 nonblocking
= tcg_cpu_exec();
1948 #ifdef CONFIG_PROFILER
1949 ti
= profile_getclock();
1951 main_loop_wait(nonblocking
);
1952 #ifdef CONFIG_PROFILER
1953 dev_time
+= profile_getclock() - ti
;
1955 } while (vm_can_run());
1957 if ((r
= qemu_debug_requested())) {
1960 if (qemu_shutdown_requested()) {
1961 monitor_protocol_event(QEVENT_SHUTDOWN
, NULL
);
1968 if (qemu_reset_requested()) {
1970 qemu_system_reset();
1973 if (qemu_powerdown_requested()) {
1974 monitor_protocol_event(QEVENT_POWERDOWN
, NULL
);
1975 qemu_irq_raise(qemu_system_powerdown
);
1977 if ((r
= qemu_vmstop_requested())) {
1984 static void version(void)
1986 printf("QEMU PC emulator version " QEMU_VERSION QEMU_PKGVERSION
", Copyright (c) 2003-2008 Fabrice Bellard\n");
1989 static void help(int exitcode
)
1991 const char *options_help
=
1992 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
1994 #define DEFHEADING(text) stringify(text) "\n"
1995 #include "qemu-options.h"
2001 printf("usage: %s [options] [disk_image]\n"
2003 "'disk_image' is a raw hard image image for IDE hard disk 0\n"
2006 "During emulation, the following keys are useful:\n"
2007 "ctrl-alt-f toggle full screen\n"
2008 "ctrl-alt-n switch to virtual console 'n'\n"
2009 "ctrl-alt toggle mouse and keyboard grab\n"
2011 "When using -nographic, press 'ctrl-a h' to get some help.\n",
2017 #define HAS_ARG 0x0001
2020 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
2022 #define DEFHEADING(text)
2023 #include "qemu-options.h"
2029 typedef struct QEMUOption
{
2036 static const QEMUOption qemu_options
[] = {
2037 { "h", 0, QEMU_OPTION_h
, QEMU_ARCH_ALL
},
2038 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
2039 { option, opt_arg, opt_enum, arch_mask },
2040 #define DEFHEADING(text)
2041 #include "qemu-options.h"
2047 static void select_vgahw (const char *p
)
2052 vga_interface_type
= VGA_NONE
;
2053 if (strstart(p
, "std", &opts
)) {
2054 vga_interface_type
= VGA_STD
;
2055 } else if (strstart(p
, "cirrus", &opts
)) {
2056 vga_interface_type
= VGA_CIRRUS
;
2057 } else if (strstart(p
, "vmware", &opts
)) {
2058 vga_interface_type
= VGA_VMWARE
;
2059 } else if (strstart(p
, "xenfb", &opts
)) {
2060 vga_interface_type
= VGA_XENFB
;
2061 } else if (!strstart(p
, "none", &opts
)) {
2063 fprintf(stderr
, "Unknown vga type: %s\n", p
);
2067 const char *nextopt
;
2069 if (strstart(opts
, ",retrace=", &nextopt
)) {
2071 if (strstart(opts
, "dumb", &nextopt
))
2072 vga_retrace_method
= VGA_RETRACE_DUMB
;
2073 else if (strstart(opts
, "precise", &nextopt
))
2074 vga_retrace_method
= VGA_RETRACE_PRECISE
;
2075 else goto invalid_vga
;
2076 } else goto invalid_vga
;
2081 static int balloon_parse(const char *arg
)
2085 if (strcmp(arg
, "none") == 0) {
2089 if (!strncmp(arg
, "virtio", 6)) {
2090 if (arg
[6] == ',') {
2091 /* have params -> parse them */
2092 opts
= qemu_opts_parse(&qemu_device_opts
, arg
+7, 0);
2096 /* create empty opts */
2097 opts
= qemu_opts_create(&qemu_device_opts
, NULL
, 0);
2099 qemu_opt_set(opts
, "driver", "virtio-balloon-pci");
2107 static BOOL WINAPI
qemu_ctrl_handler(DWORD type
)
2109 exit(STATUS_CONTROL_C_EXIT
);
2116 static void termsig_handler(int signal
)
2118 qemu_system_shutdown_request();
2121 static void sigchld_handler(int signal
)
2123 waitpid(-1, NULL
, WNOHANG
);
2126 static void sighandler_setup(void)
2128 struct sigaction act
;
2130 memset(&act
, 0, sizeof(act
));
2131 act
.sa_handler
= termsig_handler
;
2132 sigaction(SIGINT
, &act
, NULL
);
2133 sigaction(SIGHUP
, &act
, NULL
);
2134 sigaction(SIGTERM
, &act
, NULL
);
2136 act
.sa_handler
= sigchld_handler
;
2137 act
.sa_flags
= SA_NOCLDSTOP
;
2138 sigaction(SIGCHLD
, &act
, NULL
);
2144 /* Look for support files in the same directory as the executable. */
2145 static char *find_datadir(const char *argv0
)
2151 len
= GetModuleFileName(NULL
, buf
, sizeof(buf
) - 1);
2158 while (p
!= buf
&& *p
!= '\\')
2161 if (access(buf
, R_OK
) == 0) {
2162 return qemu_strdup(buf
);
2168 /* Find a likely location for support files using the location of the binary.
2169 For installed binaries this will be "$bindir/../share/qemu". When
2170 running from the build tree this will be "$bindir/../pc-bios". */
2171 #define SHARE_SUFFIX "/share/qemu"
2172 #define BUILD_SUFFIX "/pc-bios"
2173 static char *find_datadir(const char *argv0
)
2181 #if defined(__linux__)
2184 len
= readlink("/proc/self/exe", buf
, sizeof(buf
) - 1);
2190 #elif defined(__FreeBSD__)
2192 static int mib
[4] = {CTL_KERN
, KERN_PROC
, KERN_PROC_PATHNAME
, -1};
2193 size_t len
= sizeof(buf
) - 1;
2196 if (!sysctl(mib
, sizeof(mib
)/sizeof(*mib
), buf
, &len
, NULL
, 0) &&
2198 buf
[sizeof(buf
) - 1] = '\0';
2203 /* If we don't have any way of figuring out the actual executable
2204 location then try argv[0]. */
2206 p
= realpath(argv0
, buf
);
2214 max_len
= strlen(dir
) +
2215 MAX(strlen(SHARE_SUFFIX
), strlen(BUILD_SUFFIX
)) + 1;
2216 res
= qemu_mallocz(max_len
);
2217 snprintf(res
, max_len
, "%s%s", dir
, SHARE_SUFFIX
);
2218 if (access(res
, R_OK
)) {
2219 snprintf(res
, max_len
, "%s%s", dir
, BUILD_SUFFIX
);
2220 if (access(res
, R_OK
)) {
2232 char *qemu_find_file(int type
, const char *name
)
2238 /* If name contains path separators then try it as a straight path. */
2239 if ((strchr(name
, '/') || strchr(name
, '\\'))
2240 && access(name
, R_OK
) == 0) {
2241 return qemu_strdup(name
);
2244 case QEMU_FILE_TYPE_BIOS
:
2247 case QEMU_FILE_TYPE_KEYMAP
:
2248 subdir
= "keymaps/";
2253 len
= strlen(data_dir
) + strlen(name
) + strlen(subdir
) + 2;
2254 buf
= qemu_mallocz(len
);
2255 snprintf(buf
, len
, "%s/%s%s", data_dir
, subdir
, name
);
2256 if (access(buf
, R_OK
)) {
2263 static int device_help_func(QemuOpts
*opts
, void *opaque
)
2265 return qdev_device_help(opts
);
2268 static int device_init_func(QemuOpts
*opts
, void *opaque
)
2272 dev
= qdev_device_add(opts
);
2278 static int chardev_init_func(QemuOpts
*opts
, void *opaque
)
2280 CharDriverState
*chr
;
2282 chr
= qemu_chr_open_opts(opts
, NULL
);
2288 static int mon_init_func(QemuOpts
*opts
, void *opaque
)
2290 CharDriverState
*chr
;
2291 const char *chardev
;
2295 mode
= qemu_opt_get(opts
, "mode");
2299 if (strcmp(mode
, "readline") == 0) {
2300 flags
= MONITOR_USE_READLINE
;
2301 } else if (strcmp(mode
, "control") == 0) {
2302 flags
= MONITOR_USE_CONTROL
;
2304 fprintf(stderr
, "unknown monitor mode \"%s\"\n", mode
);
2308 if (qemu_opt_get_bool(opts
, "default", 0))
2309 flags
|= MONITOR_IS_DEFAULT
;
2311 chardev
= qemu_opt_get(opts
, "chardev");
2312 chr
= qemu_chr_find(chardev
);
2314 fprintf(stderr
, "chardev \"%s\" not found\n", chardev
);
2318 monitor_init(chr
, flags
);
2322 static void monitor_parse(const char *optarg
, const char *mode
)
2324 static int monitor_device_index
= 0;
2330 if (strstart(optarg
, "chardev:", &p
)) {
2331 snprintf(label
, sizeof(label
), "%s", p
);
2333 if (monitor_device_index
) {
2334 snprintf(label
, sizeof(label
), "monitor%d",
2335 monitor_device_index
);
2337 snprintf(label
, sizeof(label
), "monitor");
2340 opts
= qemu_chr_parse_compat(label
, optarg
);
2342 fprintf(stderr
, "parse error: %s\n", optarg
);
2347 opts
= qemu_opts_create(&qemu_mon_opts
, label
, 1);
2349 fprintf(stderr
, "duplicate chardev: %s\n", label
);
2352 qemu_opt_set(opts
, "mode", mode
);
2353 qemu_opt_set(opts
, "chardev", label
);
2355 qemu_opt_set(opts
, "default", "on");
2356 monitor_device_index
++;
2359 struct device_config
{
2361 DEV_USB
, /* -usbdevice */
2363 DEV_SERIAL
, /* -serial */
2364 DEV_PARALLEL
, /* -parallel */
2365 DEV_VIRTCON
, /* -virtioconsole */
2366 DEV_DEBUGCON
, /* -debugcon */
2368 const char *cmdline
;
2369 QTAILQ_ENTRY(device_config
) next
;
2371 QTAILQ_HEAD(, device_config
) device_configs
= QTAILQ_HEAD_INITIALIZER(device_configs
);
2373 static void add_device_config(int type
, const char *cmdline
)
2375 struct device_config
*conf
;
2377 conf
= qemu_mallocz(sizeof(*conf
));
2379 conf
->cmdline
= cmdline
;
2380 QTAILQ_INSERT_TAIL(&device_configs
, conf
, next
);
2383 static int foreach_device_config(int type
, int (*func
)(const char *cmdline
))
2385 struct device_config
*conf
;
2388 QTAILQ_FOREACH(conf
, &device_configs
, next
) {
2389 if (conf
->type
!= type
)
2391 rc
= func(conf
->cmdline
);
2398 static int serial_parse(const char *devname
)
2400 static int index
= 0;
2403 if (strcmp(devname
, "none") == 0)
2405 if (index
== MAX_SERIAL_PORTS
) {
2406 fprintf(stderr
, "qemu: too many serial ports\n");
2409 snprintf(label
, sizeof(label
), "serial%d", index
);
2410 serial_hds
[index
] = qemu_chr_open(label
, devname
, NULL
);
2411 if (!serial_hds
[index
]) {
2412 fprintf(stderr
, "qemu: could not open serial device '%s': %s\n",
2413 devname
, strerror(errno
));
2420 static int parallel_parse(const char *devname
)
2422 static int index
= 0;
2425 if (strcmp(devname
, "none") == 0)
2427 if (index
== MAX_PARALLEL_PORTS
) {
2428 fprintf(stderr
, "qemu: too many parallel ports\n");
2431 snprintf(label
, sizeof(label
), "parallel%d", index
);
2432 parallel_hds
[index
] = qemu_chr_open(label
, devname
, NULL
);
2433 if (!parallel_hds
[index
]) {
2434 fprintf(stderr
, "qemu: could not open parallel device '%s': %s\n",
2435 devname
, strerror(errno
));
2442 static int virtcon_parse(const char *devname
)
2444 static int index
= 0;
2446 QemuOpts
*bus_opts
, *dev_opts
;
2448 if (strcmp(devname
, "none") == 0)
2450 if (index
== MAX_VIRTIO_CONSOLES
) {
2451 fprintf(stderr
, "qemu: too many virtio consoles\n");
2455 bus_opts
= qemu_opts_create(&qemu_device_opts
, NULL
, 0);
2456 qemu_opt_set(bus_opts
, "driver", "virtio-serial");
2458 dev_opts
= qemu_opts_create(&qemu_device_opts
, NULL
, 0);
2459 qemu_opt_set(dev_opts
, "driver", "virtconsole");
2461 snprintf(label
, sizeof(label
), "virtcon%d", index
);
2462 virtcon_hds
[index
] = qemu_chr_open(label
, devname
, NULL
);
2463 if (!virtcon_hds
[index
]) {
2464 fprintf(stderr
, "qemu: could not open virtio console '%s': %s\n",
2465 devname
, strerror(errno
));
2468 qemu_opt_set(dev_opts
, "chardev", label
);
2474 static int debugcon_parse(const char *devname
)
2478 if (!qemu_chr_open("debugcon", devname
, NULL
)) {
2481 opts
= qemu_opts_create(&qemu_device_opts
, "debugcon", 1);
2483 fprintf(stderr
, "qemu: already have a debugcon device\n");
2486 qemu_opt_set(opts
, "driver", "isa-debugcon");
2487 qemu_opt_set(opts
, "chardev", "debugcon");
2491 static const QEMUOption
*lookup_opt(int argc
, char **argv
,
2492 const char **poptarg
, int *poptind
)
2494 const QEMUOption
*popt
;
2495 int optind
= *poptind
;
2496 char *r
= argv
[optind
];
2499 loc_set_cmdline(argv
, optind
, 1);
2501 /* Treat --foo the same as -foo. */
2504 popt
= qemu_options
;
2507 error_report("invalid option");
2510 if (!strcmp(popt
->name
, r
+ 1))
2514 if (popt
->flags
& HAS_ARG
) {
2515 if (optind
>= argc
) {
2516 error_report("requires an argument");
2519 optarg
= argv
[optind
++];
2520 loc_set_cmdline(argv
, optind
- 2, 2);
2531 int main(int argc
, char **argv
, char **envp
)
2533 const char *gdbstub_dev
= NULL
;
2535 int snapshot
, linux_boot
;
2536 const char *icount_option
= NULL
;
2537 const char *initrd_filename
;
2538 const char *kernel_filename
, *kernel_cmdline
;
2539 char boot_devices
[33] = "cad"; /* default to HD->floppy->CD-ROM */
2541 DisplayChangeListener
*dcl
;
2542 int cyls
, heads
, secs
, translation
;
2543 QemuOpts
*hda_opts
= NULL
, *opts
;
2546 const char *loadvm
= NULL
;
2547 QEMUMachine
*machine
;
2548 const char *cpu_model
;
2553 const char *pid_file
= NULL
;
2554 const char *incoming
= NULL
;
2557 struct passwd
*pwd
= NULL
;
2558 const char *chroot_dir
= NULL
;
2559 const char *run_as
= NULL
;
2561 int show_vnc_port
= 0;
2564 error_set_progname(argv
[0]);
2568 qemu_cache_utils_init(envp
);
2570 QLIST_INIT (&vm_change_state_head
);
2573 struct sigaction act
;
2574 sigfillset(&act
.sa_mask
);
2576 act
.sa_handler
= SIG_IGN
;
2577 sigaction(SIGPIPE
, &act
, NULL
);
2580 SetConsoleCtrlHandler(qemu_ctrl_handler
, TRUE
);
2581 /* Note: cpu_interrupt() is currently not SMP safe, so we force
2582 QEMU to run on a single CPU */
2587 h
= GetCurrentProcess();
2588 if (GetProcessAffinityMask(h
, &mask
, &smask
)) {
2589 for(i
= 0; i
< 32; i
++) {
2590 if (mask
& (1 << i
))
2595 SetProcessAffinityMask(h
, mask
);
2601 module_call_init(MODULE_INIT_MACHINE
);
2602 machine
= find_default_machine();
2604 initrd_filename
= NULL
;
2607 kernel_filename
= NULL
;
2608 kernel_cmdline
= "";
2609 cyls
= heads
= secs
= 0;
2610 translation
= BIOS_ATA_TRANSLATION_AUTO
;
2612 for (i
= 0; i
< MAX_NODES
; i
++) {
2614 node_cpumask
[i
] = 0;
2623 /* first pass of option parsing */
2625 while (optind
< argc
) {
2626 if (argv
[optind
][0] != '-') {
2631 const QEMUOption
*popt
;
2633 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
2634 switch (popt
->index
) {
2635 case QEMU_OPTION_nodefconfig
:
2645 ret
= qemu_read_config_file(CONFIG_QEMU_CONFDIR
"/qemu.conf");
2646 if (ret
== -EINVAL
) {
2650 ret
= qemu_read_config_file(arch_config_name
);
2651 if (ret
== -EINVAL
) {
2657 /* second pass of option parsing */
2662 if (argv
[optind
][0] != '-') {
2663 hda_opts
= drive_add(argv
[optind
++], HD_ALIAS
, 0);
2665 const QEMUOption
*popt
;
2667 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
2668 if (!(popt
->arch_mask
& arch_type
)) {
2669 printf("Option %s not supported for this target\n", popt
->name
);
2672 switch(popt
->index
) {
2674 machine
= find_machine(optarg
);
2677 printf("Supported machines are:\n");
2678 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
2680 printf("%-10s %s (alias of %s)\n",
2681 m
->alias
, m
->desc
, m
->name
);
2682 printf("%-10s %s%s\n",
2684 m
->is_default
? " (default)" : "");
2686 exit(*optarg
!= '?');
2689 case QEMU_OPTION_cpu
:
2690 /* hw initialization will check this */
2691 if (*optarg
== '?') {
2692 /* XXX: implement xxx_cpu_list for targets that still miss it */
2693 #if defined(cpu_list_id)
2694 cpu_list_id(stdout
, &fprintf
, optarg
);
2695 #elif defined(cpu_list)
2696 cpu_list(stdout
, &fprintf
); /* deprecated */
2703 case QEMU_OPTION_initrd
:
2704 initrd_filename
= optarg
;
2706 case QEMU_OPTION_hda
:
2708 hda_opts
= drive_add(optarg
, HD_ALIAS
, 0);
2710 hda_opts
= drive_add(optarg
, HD_ALIAS
2711 ",cyls=%d,heads=%d,secs=%d%s",
2712 0, cyls
, heads
, secs
,
2713 translation
== BIOS_ATA_TRANSLATION_LBA
?
2715 translation
== BIOS_ATA_TRANSLATION_NONE
?
2716 ",trans=none" : "");
2718 case QEMU_OPTION_hdb
:
2719 case QEMU_OPTION_hdc
:
2720 case QEMU_OPTION_hdd
:
2721 drive_add(optarg
, HD_ALIAS
, popt
->index
- QEMU_OPTION_hda
);
2723 case QEMU_OPTION_drive
:
2724 drive_add(NULL
, "%s", optarg
);
2726 case QEMU_OPTION_set
:
2727 if (qemu_set_option(optarg
) != 0)
2730 case QEMU_OPTION_global
:
2731 if (qemu_global_option(optarg
) != 0)
2734 case QEMU_OPTION_mtdblock
:
2735 drive_add(optarg
, MTD_ALIAS
);
2737 case QEMU_OPTION_sd
:
2738 drive_add(optarg
, SD_ALIAS
);
2740 case QEMU_OPTION_pflash
:
2741 drive_add(optarg
, PFLASH_ALIAS
);
2743 case QEMU_OPTION_snapshot
:
2746 case QEMU_OPTION_hdachs
:
2750 cyls
= strtol(p
, (char **)&p
, 0);
2751 if (cyls
< 1 || cyls
> 16383)
2756 heads
= strtol(p
, (char **)&p
, 0);
2757 if (heads
< 1 || heads
> 16)
2762 secs
= strtol(p
, (char **)&p
, 0);
2763 if (secs
< 1 || secs
> 63)
2767 if (!strcmp(p
, "none"))
2768 translation
= BIOS_ATA_TRANSLATION_NONE
;
2769 else if (!strcmp(p
, "lba"))
2770 translation
= BIOS_ATA_TRANSLATION_LBA
;
2771 else if (!strcmp(p
, "auto"))
2772 translation
= BIOS_ATA_TRANSLATION_AUTO
;
2775 } else if (*p
!= '\0') {
2777 fprintf(stderr
, "qemu: invalid physical CHS format\n");
2780 if (hda_opts
!= NULL
) {
2782 snprintf(num
, sizeof(num
), "%d", cyls
);
2783 qemu_opt_set(hda_opts
, "cyls", num
);
2784 snprintf(num
, sizeof(num
), "%d", heads
);
2785 qemu_opt_set(hda_opts
, "heads", num
);
2786 snprintf(num
, sizeof(num
), "%d", secs
);
2787 qemu_opt_set(hda_opts
, "secs", num
);
2788 if (translation
== BIOS_ATA_TRANSLATION_LBA
)
2789 qemu_opt_set(hda_opts
, "trans", "lba");
2790 if (translation
== BIOS_ATA_TRANSLATION_NONE
)
2791 qemu_opt_set(hda_opts
, "trans", "none");
2795 case QEMU_OPTION_numa
:
2796 if (nb_numa_nodes
>= MAX_NODES
) {
2797 fprintf(stderr
, "qemu: too many NUMA nodes\n");
2802 case QEMU_OPTION_nographic
:
2803 display_type
= DT_NOGRAPHIC
;
2805 #ifdef CONFIG_CURSES
2806 case QEMU_OPTION_curses
:
2807 display_type
= DT_CURSES
;
2810 case QEMU_OPTION_portrait
:
2813 case QEMU_OPTION_kernel
:
2814 kernel_filename
= optarg
;
2816 case QEMU_OPTION_append
:
2817 kernel_cmdline
= optarg
;
2819 case QEMU_OPTION_cdrom
:
2820 drive_add(optarg
, CDROM_ALIAS
);
2822 case QEMU_OPTION_boot
:
2824 static const char * const params
[] = {
2825 "order", "once", "menu", NULL
2827 char buf
[sizeof(boot_devices
)];
2828 char *standard_boot_devices
;
2831 if (!strchr(optarg
, '=')) {
2833 pstrcpy(buf
, sizeof(buf
), optarg
);
2834 } else if (check_params(buf
, sizeof(buf
), params
, optarg
) < 0) {
2836 "qemu: unknown boot parameter '%s' in '%s'\n",
2842 get_param_value(buf
, sizeof(buf
), "order", optarg
)) {
2843 validate_bootdevices(buf
);
2844 pstrcpy(boot_devices
, sizeof(boot_devices
), buf
);
2847 if (get_param_value(buf
, sizeof(buf
),
2849 validate_bootdevices(buf
);
2850 standard_boot_devices
= qemu_strdup(boot_devices
);
2851 pstrcpy(boot_devices
, sizeof(boot_devices
), buf
);
2852 qemu_register_reset(restore_boot_devices
,
2853 standard_boot_devices
);
2855 if (get_param_value(buf
, sizeof(buf
),
2857 if (!strcmp(buf
, "on")) {
2859 } else if (!strcmp(buf
, "off")) {
2863 "qemu: invalid option value '%s'\n",
2871 case QEMU_OPTION_fda
:
2872 case QEMU_OPTION_fdb
:
2873 drive_add(optarg
, FD_ALIAS
, popt
->index
- QEMU_OPTION_fda
);
2875 case QEMU_OPTION_no_fd_bootchk
:
2878 case QEMU_OPTION_netdev
:
2879 if (net_client_parse(&qemu_netdev_opts
, optarg
) == -1) {
2883 case QEMU_OPTION_net
:
2884 if (net_client_parse(&qemu_net_opts
, optarg
) == -1) {
2889 case QEMU_OPTION_tftp
:
2890 legacy_tftp_prefix
= optarg
;
2892 case QEMU_OPTION_bootp
:
2893 legacy_bootp_filename
= optarg
;
2896 case QEMU_OPTION_smb
:
2897 if (net_slirp_smb(optarg
) < 0)
2901 case QEMU_OPTION_redir
:
2902 if (net_slirp_redir(optarg
) < 0)
2906 case QEMU_OPTION_bt
:
2907 add_device_config(DEV_BT
, optarg
);
2909 case QEMU_OPTION_audio_help
:
2910 if (!(audio_available())) {
2911 printf("Option %s not supported for this target\n", popt
->name
);
2917 case QEMU_OPTION_soundhw
:
2918 if (!(audio_available())) {
2919 printf("Option %s not supported for this target\n", popt
->name
);
2922 select_soundhw (optarg
);
2927 case QEMU_OPTION_version
:
2931 case QEMU_OPTION_m
: {
2935 value
= strtoul(optarg
, &ptr
, 10);
2937 case 0: case 'M': case 'm':
2944 fprintf(stderr
, "qemu: invalid ram size: %s\n", optarg
);
2948 /* On 32-bit hosts, QEMU is limited by virtual address space */
2949 if (value
> (2047 << 20) && HOST_LONG_BITS
== 32) {
2950 fprintf(stderr
, "qemu: at most 2047 MB RAM can be simulated\n");
2953 if (value
!= (uint64_t)(ram_addr_t
)value
) {
2954 fprintf(stderr
, "qemu: ram size too large\n");
2960 case QEMU_OPTION_mempath
:
2964 case QEMU_OPTION_mem_prealloc
:
2969 set_cpu_log(optarg
);
2972 gdbstub_dev
= "tcp::" DEFAULT_GDBSTUB_PORT
;
2974 case QEMU_OPTION_gdb
:
2975 gdbstub_dev
= optarg
;
2980 case QEMU_OPTION_bios
:
2983 case QEMU_OPTION_singlestep
:
2990 keyboard_layout
= optarg
;
2992 case QEMU_OPTION_localtime
:
2995 case QEMU_OPTION_vga
:
2996 select_vgahw (optarg
);
3003 w
= strtol(p
, (char **)&p
, 10);
3006 fprintf(stderr
, "qemu: invalid resolution or depth\n");
3012 h
= strtol(p
, (char **)&p
, 10);
3017 depth
= strtol(p
, (char **)&p
, 10);
3018 if (depth
!= 8 && depth
!= 15 && depth
!= 16 &&
3019 depth
!= 24 && depth
!= 32)
3021 } else if (*p
== '\0') {
3022 depth
= graphic_depth
;
3029 graphic_depth
= depth
;
3032 case QEMU_OPTION_echr
:
3035 term_escape_char
= strtol(optarg
, &r
, 0);
3037 printf("Bad argument to echr\n");
3040 case QEMU_OPTION_monitor
:
3041 monitor_parse(optarg
, "readline");
3042 default_monitor
= 0;
3044 case QEMU_OPTION_qmp
:
3045 monitor_parse(optarg
, "control");
3046 default_monitor
= 0;
3048 case QEMU_OPTION_mon
:
3049 opts
= qemu_opts_parse(&qemu_mon_opts
, optarg
, 1);
3053 default_monitor
= 0;
3055 case QEMU_OPTION_chardev
:
3056 opts
= qemu_opts_parse(&qemu_chardev_opts
, optarg
, 1);
3061 case QEMU_OPTION_serial
:
3062 add_device_config(DEV_SERIAL
, optarg
);
3064 if (strncmp(optarg
, "mon:", 4) == 0) {
3065 default_monitor
= 0;
3068 case QEMU_OPTION_watchdog
:
3071 "qemu: only one watchdog option may be given\n");
3076 case QEMU_OPTION_watchdog_action
:
3077 if (select_watchdog_action(optarg
) == -1) {
3078 fprintf(stderr
, "Unknown -watchdog-action parameter\n");
3082 case QEMU_OPTION_virtiocon
:
3083 add_device_config(DEV_VIRTCON
, optarg
);
3084 default_virtcon
= 0;
3085 if (strncmp(optarg
, "mon:", 4) == 0) {
3086 default_monitor
= 0;
3089 case QEMU_OPTION_parallel
:
3090 add_device_config(DEV_PARALLEL
, optarg
);
3091 default_parallel
= 0;
3092 if (strncmp(optarg
, "mon:", 4) == 0) {
3093 default_monitor
= 0;
3096 case QEMU_OPTION_debugcon
:
3097 add_device_config(DEV_DEBUGCON
, optarg
);
3099 case QEMU_OPTION_loadvm
:
3102 case QEMU_OPTION_full_screen
:
3106 case QEMU_OPTION_no_frame
:
3109 case QEMU_OPTION_alt_grab
:
3112 case QEMU_OPTION_ctrl_grab
:
3115 case QEMU_OPTION_no_quit
:
3118 case QEMU_OPTION_sdl
:
3119 display_type
= DT_SDL
;
3122 case QEMU_OPTION_pidfile
:
3125 case QEMU_OPTION_win2k_hack
:
3126 win2k_install_hack
= 1;
3128 case QEMU_OPTION_rtc_td_hack
:
3131 case QEMU_OPTION_acpitable
:
3132 do_acpitable_option(optarg
);
3134 case QEMU_OPTION_smbios
:
3135 do_smbios_option(optarg
);
3137 case QEMU_OPTION_enable_kvm
:
3140 case QEMU_OPTION_usb
:
3143 case QEMU_OPTION_usbdevice
:
3145 add_device_config(DEV_USB
, optarg
);
3147 case QEMU_OPTION_device
:
3148 if (!qemu_opts_parse(&qemu_device_opts
, optarg
, 1)) {
3152 case QEMU_OPTION_smp
:
3155 fprintf(stderr
, "Invalid number of CPUs\n");
3158 if (max_cpus
< smp_cpus
) {
3159 fprintf(stderr
, "maxcpus must be equal to or greater than "
3163 if (max_cpus
> 255) {
3164 fprintf(stderr
, "Unsupported number of maxcpus\n");
3168 case QEMU_OPTION_vnc
:
3169 display_type
= DT_VNC
;
3170 vnc_display
= optarg
;
3172 case QEMU_OPTION_no_acpi
:
3175 case QEMU_OPTION_no_hpet
:
3178 case QEMU_OPTION_balloon
:
3179 if (balloon_parse(optarg
) < 0) {
3180 fprintf(stderr
, "Unknown -balloon argument %s\n", optarg
);
3184 case QEMU_OPTION_no_reboot
:
3187 case QEMU_OPTION_no_shutdown
:
3190 case QEMU_OPTION_show_cursor
:
3193 case QEMU_OPTION_uuid
:
3194 if(qemu_uuid_parse(optarg
, qemu_uuid
) < 0) {
3195 fprintf(stderr
, "Fail to parse UUID string."
3196 " Wrong format.\n");
3201 case QEMU_OPTION_daemonize
:
3205 case QEMU_OPTION_option_rom
:
3206 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
3207 fprintf(stderr
, "Too many option ROMs\n");
3210 option_rom
[nb_option_roms
] = optarg
;
3213 case QEMU_OPTION_semihosting
:
3214 semihosting_enabled
= 1;
3216 case QEMU_OPTION_name
:
3217 qemu_name
= qemu_strdup(optarg
);
3219 char *p
= strchr(qemu_name
, ',');
3222 if (strncmp(p
, "process=", 8)) {
3223 fprintf(stderr
, "Unknown subargument %s to -name", p
);
3231 case QEMU_OPTION_prom_env
:
3232 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
3233 fprintf(stderr
, "Too many prom variables\n");
3236 prom_envs
[nb_prom_envs
] = optarg
;
3239 case QEMU_OPTION_old_param
:
3242 case QEMU_OPTION_clock
:
3243 configure_alarms(optarg
);
3245 case QEMU_OPTION_startdate
:
3246 configure_rtc_date_offset(optarg
, 1);
3248 case QEMU_OPTION_rtc
:
3249 opts
= qemu_opts_parse(&qemu_rtc_opts
, optarg
, 0);
3253 configure_rtc(opts
);
3255 case QEMU_OPTION_tb_size
:
3256 tb_size
= strtol(optarg
, NULL
, 0);
3260 case QEMU_OPTION_icount
:
3261 icount_option
= optarg
;
3263 case QEMU_OPTION_incoming
:
3266 case QEMU_OPTION_nodefaults
:
3268 default_parallel
= 0;
3269 default_virtcon
= 0;
3270 default_monitor
= 0;
3278 case QEMU_OPTION_chroot
:
3279 chroot_dir
= optarg
;
3281 case QEMU_OPTION_runas
:
3285 case QEMU_OPTION_xen_domid
:
3286 if (!(xen_available())) {
3287 printf("Option %s not supported for this target\n", popt
->name
);
3290 xen_domid
= atoi(optarg
);
3292 case QEMU_OPTION_xen_create
:
3293 if (!(xen_available())) {
3294 printf("Option %s not supported for this target\n", popt
->name
);
3297 xen_mode
= XEN_CREATE
;
3299 case QEMU_OPTION_xen_attach
:
3300 if (!(xen_available())) {
3301 printf("Option %s not supported for this target\n", popt
->name
);
3304 xen_mode
= XEN_ATTACH
;
3306 case QEMU_OPTION_readconfig
:
3308 int ret
= qemu_read_config_file(optarg
);
3310 fprintf(stderr
, "read config %s: %s\n", optarg
,
3316 case QEMU_OPTION_writeconfig
:
3319 if (strcmp(optarg
, "-") == 0) {
3322 fp
= fopen(optarg
, "w");
3324 fprintf(stderr
, "open %s: %s\n", optarg
, strerror(errno
));
3328 qemu_config_write(fp
);
3337 /* If no data_dir is specified then try to find it relative to the
3340 data_dir
= find_datadir(argv
[0]);
3342 /* If all else fails use the install patch specified when building. */
3344 data_dir
= CONFIG_QEMU_SHAREDIR
;
3348 * Default to max_cpus = smp_cpus, in case the user doesn't
3349 * specify a max_cpus value.
3352 max_cpus
= smp_cpus
;
3354 machine
->max_cpus
= machine
->max_cpus
?: 1; /* Default to UP */
3355 if (smp_cpus
> machine
->max_cpus
) {
3356 fprintf(stderr
, "Number of SMP cpus requested (%d), exceeds max cpus "
3357 "supported by machine `%s' (%d)\n", smp_cpus
, machine
->name
,
3362 qemu_opts_foreach(&qemu_device_opts
, default_driver_check
, NULL
, 0);
3363 qemu_opts_foreach(&qemu_global_opts
, default_driver_check
, NULL
, 0);
3365 if (machine
->no_serial
) {
3368 if (machine
->no_parallel
) {
3369 default_parallel
= 0;
3371 if (!machine
->use_virtcon
) {
3372 default_virtcon
= 0;
3374 if (machine
->no_vga
) {
3377 if (machine
->no_floppy
) {
3380 if (machine
->no_cdrom
) {
3383 if (machine
->no_sdcard
) {
3387 if (display_type
== DT_NOGRAPHIC
) {
3388 if (default_parallel
)
3389 add_device_config(DEV_PARALLEL
, "null");
3390 if (default_serial
&& default_monitor
) {
3391 add_device_config(DEV_SERIAL
, "mon:stdio");
3392 } else if (default_virtcon
&& default_monitor
) {
3393 add_device_config(DEV_VIRTCON
, "mon:stdio");
3396 add_device_config(DEV_SERIAL
, "stdio");
3397 if (default_virtcon
)
3398 add_device_config(DEV_VIRTCON
, "stdio");
3399 if (default_monitor
)
3400 monitor_parse("stdio", "readline");
3404 add_device_config(DEV_SERIAL
, "vc:80Cx24C");
3405 if (default_parallel
)
3406 add_device_config(DEV_PARALLEL
, "vc:80Cx24C");
3407 if (default_monitor
)
3408 monitor_parse("vc:80Cx24C", "readline");
3409 if (default_virtcon
)
3410 add_device_config(DEV_VIRTCON
, "vc:80Cx24C");
3413 vga_interface_type
= VGA_CIRRUS
;
3415 if (qemu_opts_foreach(&qemu_chardev_opts
, chardev_init_func
, NULL
, 1) != 0)
3422 if (pipe(fds
) == -1)
3433 len
= read(fds
[0], &status
, 1);
3434 if (len
== -1 && (errno
== EINTR
))
3439 else if (status
== 1) {
3440 fprintf(stderr
, "Could not acquire pidfile: %s\n", strerror(errno
));
3448 qemu_set_cloexec(fds
[1]);
3460 signal(SIGTSTP
, SIG_IGN
);
3461 signal(SIGTTOU
, SIG_IGN
);
3462 signal(SIGTTIN
, SIG_IGN
);
3466 if (pid_file
&& qemu_create_pidfile(pid_file
) != 0) {
3470 if (write(fds
[1], &status
, 1) != 1) {
3471 perror("daemonize. Writing to pipe\n");
3475 fprintf(stderr
, "Could not acquire pid file: %s\n", strerror(errno
));
3480 int ret
= kvm_init(smp_cpus
);
3482 if (!kvm_available()) {
3483 printf("KVM not supported for this target\n");
3485 fprintf(stderr
, "failed to initialize KVM: %s\n", strerror(-ret
));
3491 if (qemu_init_main_loop()) {
3492 fprintf(stderr
, "qemu_init_main_loop failed\n");
3495 linux_boot
= (kernel_filename
!= NULL
);
3497 if (!linux_boot
&& *kernel_cmdline
!= '\0') {
3498 fprintf(stderr
, "-append only allowed with -kernel option\n");
3502 if (!linux_boot
&& initrd_filename
!= NULL
) {
3503 fprintf(stderr
, "-initrd only allowed with -kernel option\n");
3508 /* Win32 doesn't support line-buffering and requires size >= 2 */
3509 setvbuf(stdout
, NULL
, _IOLBF
, 0);
3512 if (init_timer_alarm() < 0) {
3513 fprintf(stderr
, "could not initialize alarm timer\n");
3516 configure_icount(icount_option
);
3520 if (net_init_clients() < 0) {
3524 /* init the bluetooth world */
3525 if (foreach_device_config(DEV_BT
, bt_parse
))
3528 /* init the memory */
3530 ram_size
= DEFAULT_RAM_SIZE
* 1024 * 1024;
3532 /* init the dynamic translator */
3533 cpu_exec_init_all(tb_size
* 1024 * 1024);
3535 bdrv_init_with_whitelist();
3539 if (default_cdrom
) {
3540 /* we always create the cdrom drive, even if no disk is there */
3541 drive_add(NULL
, CDROM_ALIAS
);
3544 if (default_floppy
) {
3545 /* we always create at least one floppy */
3546 drive_add(NULL
, FD_ALIAS
, 0);
3549 if (default_sdcard
) {
3550 /* we always create one sd slot, even if no card is in it */
3551 drive_add(NULL
, SD_ALIAS
);
3554 /* open the virtual block devices */
3556 qemu_opts_foreach(&qemu_drive_opts
, drive_enable_snapshot
, NULL
, 0);
3557 if (qemu_opts_foreach(&qemu_drive_opts
, drive_init_func
, machine
, 1) != 0)
3560 register_savevm_live("ram", 0, 3, NULL
, ram_save_live
, NULL
,
3563 if (nb_numa_nodes
> 0) {
3566 if (nb_numa_nodes
> smp_cpus
) {
3567 nb_numa_nodes
= smp_cpus
;
3570 /* If no memory size if given for any node, assume the default case
3571 * and distribute the available memory equally across all nodes
3573 for (i
= 0; i
< nb_numa_nodes
; i
++) {
3574 if (node_mem
[i
] != 0)
3577 if (i
== nb_numa_nodes
) {
3578 uint64_t usedmem
= 0;
3580 /* On Linux, the each node's border has to be 8MB aligned,
3581 * the final node gets the rest.
3583 for (i
= 0; i
< nb_numa_nodes
- 1; i
++) {
3584 node_mem
[i
] = (ram_size
/ nb_numa_nodes
) & ~((1 << 23UL) - 1);
3585 usedmem
+= node_mem
[i
];
3587 node_mem
[i
] = ram_size
- usedmem
;
3590 for (i
= 0; i
< nb_numa_nodes
; i
++) {
3591 if (node_cpumask
[i
] != 0)
3594 /* assigning the VCPUs round-robin is easier to implement, guest OSes
3595 * must cope with this anyway, because there are BIOSes out there in
3596 * real machines which also use this scheme.
3598 if (i
== nb_numa_nodes
) {
3599 for (i
= 0; i
< smp_cpus
; i
++) {
3600 node_cpumask
[i
% nb_numa_nodes
] |= 1 << i
;
3605 if (foreach_device_config(DEV_SERIAL
, serial_parse
) < 0)
3607 if (foreach_device_config(DEV_PARALLEL
, parallel_parse
) < 0)
3609 if (foreach_device_config(DEV_VIRTCON
, virtcon_parse
) < 0)
3611 if (foreach_device_config(DEV_DEBUGCON
, debugcon_parse
) < 0)
3614 module_call_init(MODULE_INIT_DEVICE
);
3616 if (qemu_opts_foreach(&qemu_device_opts
, device_help_func
, NULL
, 0) != 0)
3620 i
= select_watchdog(watchdog
);
3622 exit (i
== 1 ? 1 : 0);
3625 if (machine
->compat_props
) {
3626 qdev_prop_register_global_list(machine
->compat_props
);
3630 machine
->init(ram_size
, boot_devices
,
3631 kernel_filename
, kernel_cmdline
, initrd_filename
, cpu_model
);
3633 cpu_synchronize_all_post_init();
3636 /* must be after terminal init, SDL library changes signal handlers */
3642 current_machine
= machine
;
3644 /* init USB devices */
3646 if (foreach_device_config(DEV_USB
, usb_parse
) < 0)
3650 /* init generic devices */
3651 if (qemu_opts_foreach(&qemu_device_opts
, device_init_func
, NULL
, 1) != 0)
3654 net_check_clients();
3656 /* just use the first displaystate for the moment */
3657 ds
= get_displaystate();
3659 if (display_type
== DT_DEFAULT
) {
3660 #if defined(CONFIG_SDL) || defined(CONFIG_COCOA)
3661 display_type
= DT_SDL
;
3663 display_type
= DT_VNC
;
3664 vnc_display
= "localhost:0,to=99";
3670 switch (display_type
) {
3673 #if defined(CONFIG_CURSES)
3675 curses_display_init(ds
, full_screen
);
3678 #if defined(CONFIG_SDL)
3680 sdl_display_init(ds
, full_screen
, no_frame
);
3682 #elif defined(CONFIG_COCOA)
3684 cocoa_display_init(ds
, full_screen
);
3688 vnc_display_init(ds
);
3689 if (vnc_display_open(ds
, vnc_display
) < 0)
3692 if (show_vnc_port
) {
3693 printf("VNC server running on `%s'\n", vnc_display_local_addr(ds
));
3701 dcl
= ds
->listeners
;
3702 while (dcl
!= NULL
) {
3703 if (dcl
->dpy_refresh
!= NULL
) {
3704 ds
->gui_timer
= qemu_new_timer(rt_clock
, gui_update
, ds
);
3705 qemu_mod_timer(ds
->gui_timer
, qemu_get_clock(rt_clock
));
3710 if (display_type
== DT_NOGRAPHIC
|| display_type
== DT_VNC
) {
3711 nographic_timer
= qemu_new_timer(rt_clock
, nographic_update
, NULL
);
3712 qemu_mod_timer(nographic_timer
, qemu_get_clock(rt_clock
));
3715 text_consoles_set_display(ds
);
3717 if (qemu_opts_foreach(&qemu_mon_opts
, mon_init_func
, NULL
, 1) != 0)
3720 if (gdbstub_dev
&& gdbserver_start(gdbstub_dev
) < 0) {
3721 fprintf(stderr
, "qemu: could not open gdbserver on device '%s'\n",
3726 qdev_machine_creation_done();
3728 if (rom_load_all() != 0) {
3729 fprintf(stderr
, "rom loading failed\n");
3733 qemu_system_reset();
3735 if (load_vmstate(loadvm
) < 0) {
3741 qemu_start_incoming_migration(incoming
);
3742 } else if (autostart
) {
3752 len
= write(fds
[1], &status
, 1);
3753 if (len
== -1 && (errno
== EINTR
))
3760 perror("not able to chdir to /");
3763 TFR(fd
= qemu_open("/dev/null", O_RDWR
));
3769 pwd
= getpwnam(run_as
);
3771 fprintf(stderr
, "User \"%s\" doesn't exist\n", run_as
);
3777 if (chroot(chroot_dir
) < 0) {
3778 fprintf(stderr
, "chroot failed\n");
3782 perror("not able to chdir to /");
3788 if (setgid(pwd
->pw_gid
) < 0) {
3789 fprintf(stderr
, "Failed to setgid(%d)\n", pwd
->pw_gid
);
3792 if (setuid(pwd
->pw_uid
) < 0) {
3793 fprintf(stderr
, "Failed to setuid(%d)\n", pwd
->pw_uid
);
3796 if (setuid(0) != -1) {
3797 fprintf(stderr
, "Dropping privileges failed\n");