4 * Copyright (c) 2003-2008 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
32 /* Needed early for CONFIG_BSD etc. */
33 #include "config-host.h"
38 #include <sys/times.h>
42 #include <sys/ioctl.h>
43 #include <sys/resource.h>
44 #include <sys/socket.h>
45 #include <netinet/in.h>
47 #include <arpa/inet.h>
50 #include <sys/select.h>
53 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
55 #include <sys/sysctl.h>
63 #include <sys/prctl.h>
65 #include <linux/ppdev.h>
66 #include <linux/parport.h>
70 #include <sys/ethernet.h>
71 #include <sys/sockio.h>
72 #include <netinet/arp.h>
73 #include <netinet/in.h>
74 #include <netinet/in_systm.h>
75 #include <netinet/ip.h>
76 #include <netinet/ip_icmp.h> // must come after ip.h
77 #include <netinet/udp.h>
78 #include <netinet/tcp.h>
82 /* See MySQL bug #7156 (http://bugs.mysql.com/bug.php?id=7156) for
83 discussion about Solaris header problems */
84 extern int madvise(caddr_t
, size_t, int);
89 #if defined(__OpenBSD__)
93 #if defined(CONFIG_VDE)
94 #include <libvdeplug.h>
102 #if defined(__APPLE__) || defined(main)
104 int qemu_main(int argc
, char **argv
, char **envp
);
105 int main(int argc
, char **argv
)
107 return qemu_main(argc
, argv
, NULL
);
110 #define main qemu_main
112 #endif /* CONFIG_SDL */
116 #define main qemu_main
117 #endif /* CONFIG_COCOA */
120 #include "hw/boards.h"
122 #include "hw/pcmcia.h"
127 #include "hw/watchdog.h"
128 #include "hw/smbios.h"
131 #include "hw/loader.h"
134 #include "net/slirp.h"
139 #include "qemu-timer.h"
140 #include "qemu-char.h"
141 #include "cache-utils.h"
143 #include "block_int.h"
144 #include "block-migration.h"
146 #include "audio/audio.h"
147 #include "migration.h"
149 #include "qemu-option.h"
150 #include "qemu-config.h"
151 #include "qemu-objects.h"
153 #include "fsdev/qemu-fsdev.h"
158 #include "qemu_socket.h"
160 #include "slirp/libslirp.h"
162 #include "qemu-queue.h"
164 #include "arch_init.h"
167 //#define DEBUG_SLIRP
169 #define DEFAULT_RAM_SIZE 128
171 #define MAX_VIRTIO_CONSOLES 1
173 static const char *data_dir
;
174 const char *bios_name
= NULL
;
175 /* Note: drives_table[MAX_DRIVES] is a dummy block driver if none available
176 to store the VM snapshots */
177 struct drivelist drives
= QTAILQ_HEAD_INITIALIZER(drives
);
178 struct driveoptlist driveopts
= QTAILQ_HEAD_INITIALIZER(driveopts
);
179 enum vga_retrace_method vga_retrace_method
= VGA_RETRACE_DUMB
;
180 DisplayType display_type
= DT_DEFAULT
;
181 const char* keyboard_layout
= NULL
;
183 const char *mem_path
= NULL
;
185 int mem_prealloc
= 0; /* force preallocation of physical target memory */
188 NICInfo nd_table
[MAX_NICS
];
191 static int rtc_utc
= 1;
192 static int rtc_date_offset
= -1; /* -1 means no change */
193 QEMUClock
*rtc_clock
;
194 int vga_interface_type
= VGA_NONE
;
195 static int full_screen
= 0;
197 static int no_frame
= 0;
200 CharDriverState
*serial_hds
[MAX_SERIAL_PORTS
];
201 CharDriverState
*parallel_hds
[MAX_PARALLEL_PORTS
];
202 CharDriverState
*virtcon_hds
[MAX_VIRTIO_CONSOLES
];
203 int win2k_install_hack
= 0;
211 const char *vnc_display
;
212 int acpi_enabled
= 1;
218 int graphic_rotate
= 0;
219 uint8_t irq0override
= 1;
223 const char *watchdog
;
224 const char *option_rom
[MAX_OPTION_ROMS
];
226 int semihosting_enabled
= 0;
228 const char *qemu_name
;
231 unsigned int nb_prom_envs
= 0;
232 const char *prom_envs
[MAX_PROM_ENVS
];
236 uint64_t node_mem
[MAX_NODES
];
237 uint64_t node_cpumask
[MAX_NODES
];
239 static QEMUTimer
*nographic_timer
;
241 uint8_t qemu_uuid
[16];
243 static QEMUBootSetHandler
*boot_set_handler
;
244 static void *boot_set_opaque
;
248 enum xen_mode xen_mode
= XEN_EMULATE
;
250 static int default_serial
= 1;
251 static int default_parallel
= 1;
252 static int default_virtcon
= 1;
253 static int default_monitor
= 1;
254 static int default_vga
= 1;
255 static int default_floppy
= 1;
256 static int default_cdrom
= 1;
257 static int default_sdcard
= 1;
263 { .driver
= "isa-serial", .flag
= &default_serial
},
264 { .driver
= "isa-parallel", .flag
= &default_parallel
},
265 { .driver
= "isa-fdc", .flag
= &default_floppy
},
266 { .driver
= "ide-drive", .flag
= &default_cdrom
},
267 { .driver
= "virtio-serial-pci", .flag
= &default_virtcon
},
268 { .driver
= "virtio-serial-s390", .flag
= &default_virtcon
},
269 { .driver
= "virtio-serial", .flag
= &default_virtcon
},
270 { .driver
= "VGA", .flag
= &default_vga
},
271 { .driver
= "cirrus-vga", .flag
= &default_vga
},
272 { .driver
= "vmware-svga", .flag
= &default_vga
},
275 static int default_driver_check(QemuOpts
*opts
, void *opaque
)
277 const char *driver
= qemu_opt_get(opts
, "driver");
282 for (i
= 0; i
< ARRAY_SIZE(default_list
); i
++) {
283 if (strcmp(default_list
[i
].driver
, driver
) != 0)
285 *(default_list
[i
].flag
) = 0;
290 /***********************************************************/
292 static void set_proc_name(const char *s
)
294 #if defined(__linux__) && defined(PR_SET_NAME)
298 name
[sizeof(name
) - 1] = 0;
299 strncpy(name
, s
, sizeof(name
));
300 /* Could rewrite argv[0] too, but that's a bit more complicated.
301 This simple way is enough for `top'. */
302 prctl(PR_SET_NAME
, name
);
306 /***********************************************************/
307 /* real time host monotonic timer */
309 /* compute with 96 bit intermediate result: (a*b)/c */
310 uint64_t muldiv64(uint64_t a
, uint32_t b
, uint32_t c
)
315 #ifdef HOST_WORDS_BIGENDIAN
325 rl
= (uint64_t)u
.l
.low
* (uint64_t)b
;
326 rh
= (uint64_t)u
.l
.high
* (uint64_t)b
;
329 res
.l
.low
= (((rh
% c
) << 32) + (rl
& 0xffffffff)) / c
;
333 /***********************************************************/
334 /* host time/date access */
335 void qemu_get_timedate(struct tm
*tm
, int offset
)
342 if (rtc_date_offset
== -1) {
346 ret
= localtime(&ti
);
348 ti
-= rtc_date_offset
;
352 memcpy(tm
, ret
, sizeof(struct tm
));
355 int qemu_timedate_diff(struct tm
*tm
)
359 if (rtc_date_offset
== -1)
361 seconds
= mktimegm(tm
);
363 seconds
= mktime(tm
);
365 seconds
= mktimegm(tm
) + rtc_date_offset
;
367 return seconds
- time(NULL
);
370 void rtc_change_mon_event(struct tm
*tm
)
374 data
= qobject_from_jsonf("{ 'offset': %d }", qemu_timedate_diff(tm
));
375 monitor_protocol_event(QEVENT_RTC_CHANGE
, data
);
376 qobject_decref(data
);
379 static void configure_rtc_date_offset(const char *startdate
, int legacy
)
381 time_t rtc_start_date
;
384 if (!strcmp(startdate
, "now") && legacy
) {
385 rtc_date_offset
= -1;
387 if (sscanf(startdate
, "%d-%d-%dT%d:%d:%d",
395 } else if (sscanf(startdate
, "%d-%d-%d",
407 rtc_start_date
= mktimegm(&tm
);
408 if (rtc_start_date
== -1) {
410 fprintf(stderr
, "Invalid date format. Valid formats are:\n"
411 "'2006-06-17T16:01:21' or '2006-06-17'\n");
414 rtc_date_offset
= time(NULL
) - rtc_start_date
;
418 static void configure_rtc(QemuOpts
*opts
)
422 value
= qemu_opt_get(opts
, "base");
424 if (!strcmp(value
, "utc")) {
426 } else if (!strcmp(value
, "localtime")) {
429 configure_rtc_date_offset(value
, 0);
432 value
= qemu_opt_get(opts
, "clock");
434 if (!strcmp(value
, "host")) {
435 rtc_clock
= host_clock
;
436 } else if (!strcmp(value
, "vm")) {
437 rtc_clock
= vm_clock
;
439 fprintf(stderr
, "qemu: invalid option value '%s'\n", value
);
443 value
= qemu_opt_get(opts
, "driftfix");
445 if (!strcmp(value
, "slew")) {
447 } else if (!strcmp(value
, "none")) {
450 fprintf(stderr
, "qemu: invalid option value '%s'\n", value
);
456 /***********************************************************/
457 /* Bluetooth support */
460 static struct HCIInfo
*hci_table
[MAX_NICS
];
462 static struct bt_vlan_s
{
463 struct bt_scatternet_s net
;
465 struct bt_vlan_s
*next
;
468 /* find or alloc a new bluetooth "VLAN" */
469 static struct bt_scatternet_s
*qemu_find_bt_vlan(int id
)
471 struct bt_vlan_s
**pvlan
, *vlan
;
472 for (vlan
= first_bt_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
476 vlan
= qemu_mallocz(sizeof(struct bt_vlan_s
));
478 pvlan
= &first_bt_vlan
;
479 while (*pvlan
!= NULL
)
480 pvlan
= &(*pvlan
)->next
;
485 static void null_hci_send(struct HCIInfo
*hci
, const uint8_t *data
, int len
)
489 static int null_hci_addr_set(struct HCIInfo
*hci
, const uint8_t *bd_addr
)
494 static struct HCIInfo null_hci
= {
495 .cmd_send
= null_hci_send
,
496 .sco_send
= null_hci_send
,
497 .acl_send
= null_hci_send
,
498 .bdaddr_set
= null_hci_addr_set
,
501 struct HCIInfo
*qemu_next_hci(void)
503 if (cur_hci
== nb_hcis
)
506 return hci_table
[cur_hci
++];
509 static struct HCIInfo
*hci_init(const char *str
)
512 struct bt_scatternet_s
*vlan
= 0;
514 if (!strcmp(str
, "null"))
517 else if (!strncmp(str
, "host", 4) && (str
[4] == '\0' || str
[4] == ':'))
519 return bt_host_hci(str
[4] ? str
+ 5 : "hci0");
520 else if (!strncmp(str
, "hci", 3)) {
523 if (!strncmp(str
+ 3, ",vlan=", 6)) {
524 vlan
= qemu_find_bt_vlan(strtol(str
+ 9, &endp
, 0));
529 vlan
= qemu_find_bt_vlan(0);
531 return bt_new_hci(vlan
);
534 fprintf(stderr
, "qemu: Unknown bluetooth HCI `%s'.\n", str
);
539 static int bt_hci_parse(const char *str
)
544 if (nb_hcis
>= MAX_NICS
) {
545 fprintf(stderr
, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS
);
558 bdaddr
.b
[5] = 0x56 + nb_hcis
;
559 hci
->bdaddr_set(hci
, bdaddr
.b
);
561 hci_table
[nb_hcis
++] = hci
;
566 static void bt_vhci_add(int vlan_id
)
568 struct bt_scatternet_s
*vlan
= qemu_find_bt_vlan(vlan_id
);
571 fprintf(stderr
, "qemu: warning: adding a VHCI to "
572 "an empty scatternet %i\n", vlan_id
);
574 bt_vhci_init(bt_new_hci(vlan
));
577 static struct bt_device_s
*bt_device_add(const char *opt
)
579 struct bt_scatternet_s
*vlan
;
581 char *endp
= strstr(opt
, ",vlan=");
582 int len
= (endp
? endp
- opt
: strlen(opt
)) + 1;
585 pstrcpy(devname
, MIN(sizeof(devname
), len
), opt
);
588 vlan_id
= strtol(endp
+ 6, &endp
, 0);
590 fprintf(stderr
, "qemu: unrecognised bluetooth vlan Id\n");
595 vlan
= qemu_find_bt_vlan(vlan_id
);
598 fprintf(stderr
, "qemu: warning: adding a slave device to "
599 "an empty scatternet %i\n", vlan_id
);
601 if (!strcmp(devname
, "keyboard"))
602 return bt_keyboard_init(vlan
);
604 fprintf(stderr
, "qemu: unsupported bluetooth device `%s'\n", devname
);
608 static int bt_parse(const char *opt
)
610 const char *endp
, *p
;
613 if (strstart(opt
, "hci", &endp
)) {
614 if (!*endp
|| *endp
== ',') {
616 if (!strstart(endp
, ",vlan=", 0))
619 return bt_hci_parse(opt
);
621 } else if (strstart(opt
, "vhci", &endp
)) {
622 if (!*endp
|| *endp
== ',') {
624 if (strstart(endp
, ",vlan=", &p
)) {
625 vlan
= strtol(p
, (char **) &endp
, 0);
627 fprintf(stderr
, "qemu: bad scatternet '%s'\n", p
);
631 fprintf(stderr
, "qemu: bad parameter '%s'\n", endp
+ 1);
640 } else if (strstart(opt
, "device:", &endp
))
641 return !bt_device_add(endp
);
643 fprintf(stderr
, "qemu: bad bluetooth parameter '%s'\n", opt
);
647 /***********************************************************/
648 /* QEMU Block devices */
650 #define HD_ALIAS "index=%d,media=disk"
651 #define CDROM_ALIAS "index=2,media=cdrom"
652 #define FD_ALIAS "index=%d,if=floppy"
653 #define PFLASH_ALIAS "if=pflash"
654 #define MTD_ALIAS "if=mtd"
655 #define SD_ALIAS "index=0,if=sd"
657 QemuOpts
*drive_add(const char *file
, const char *fmt
, ...)
664 vsnprintf(optstr
, sizeof(optstr
), fmt
, ap
);
667 opts
= qemu_opts_parse(&qemu_drive_opts
, optstr
, 0);
672 qemu_opt_set(opts
, "file", file
);
676 DriveInfo
*drive_get(BlockInterfaceType type
, int bus
, int unit
)
680 /* seek interface, bus and unit */
682 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
683 if (dinfo
->type
== type
&&
692 DriveInfo
*drive_get_by_id(const char *id
)
696 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
697 if (strcmp(id
, dinfo
->id
))
704 int drive_get_max_bus(BlockInterfaceType type
)
710 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
711 if(dinfo
->type
== type
&&
712 dinfo
->bus
> max_bus
)
713 max_bus
= dinfo
->bus
;
718 const char *drive_get_serial(BlockDriverState
*bdrv
)
722 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
723 if (dinfo
->bdrv
== bdrv
)
724 return dinfo
->serial
;
730 BlockInterfaceErrorAction
drive_get_on_error(
731 BlockDriverState
*bdrv
, int is_read
)
735 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
736 if (dinfo
->bdrv
== bdrv
)
737 return is_read
? dinfo
->on_read_error
: dinfo
->on_write_error
;
740 return is_read
? BLOCK_ERR_REPORT
: BLOCK_ERR_STOP_ENOSPC
;
743 static void bdrv_format_print(void *opaque
, const char *name
)
745 fprintf(stderr
, " %s", name
);
748 void drive_uninit(DriveInfo
*dinfo
)
750 qemu_opts_del(dinfo
->opts
);
751 bdrv_delete(dinfo
->bdrv
);
752 QTAILQ_REMOVE(&drives
, dinfo
, next
);
756 static int parse_block_error_action(const char *buf
, int is_read
)
758 if (!strcmp(buf
, "ignore")) {
759 return BLOCK_ERR_IGNORE
;
760 } else if (!is_read
&& !strcmp(buf
, "enospc")) {
761 return BLOCK_ERR_STOP_ENOSPC
;
762 } else if (!strcmp(buf
, "stop")) {
763 return BLOCK_ERR_STOP_ANY
;
764 } else if (!strcmp(buf
, "report")) {
765 return BLOCK_ERR_REPORT
;
767 fprintf(stderr
, "qemu: '%s' invalid %s error action\n",
768 buf
, is_read
? "read" : "write");
773 DriveInfo
*drive_init(QemuOpts
*opts
, void *opaque
,
777 const char *file
= NULL
;
780 const char *mediastr
= "";
781 BlockInterfaceType type
;
782 enum { MEDIA_DISK
, MEDIA_CDROM
} media
;
784 int cyls
, heads
, secs
, translation
;
785 BlockDriver
*drv
= NULL
;
786 QEMUMachine
*machine
= opaque
;
791 int on_read_error
, on_write_error
;
798 translation
= BIOS_ATA_TRANSLATION_AUTO
;
800 if (machine
&& machine
->use_scsi
) {
802 max_devs
= MAX_SCSI_DEVS
;
803 pstrcpy(devname
, sizeof(devname
), "scsi");
806 max_devs
= MAX_IDE_DEVS
;
807 pstrcpy(devname
, sizeof(devname
), "ide");
811 /* extract parameters */
812 bus_id
= qemu_opt_get_number(opts
, "bus", 0);
813 unit_id
= qemu_opt_get_number(opts
, "unit", -1);
814 index
= qemu_opt_get_number(opts
, "index", -1);
816 cyls
= qemu_opt_get_number(opts
, "cyls", 0);
817 heads
= qemu_opt_get_number(opts
, "heads", 0);
818 secs
= qemu_opt_get_number(opts
, "secs", 0);
820 snapshot
= qemu_opt_get_bool(opts
, "snapshot", 0);
821 ro
= qemu_opt_get_bool(opts
, "readonly", 0);
823 file
= qemu_opt_get(opts
, "file");
824 serial
= qemu_opt_get(opts
, "serial");
826 if ((buf
= qemu_opt_get(opts
, "if")) != NULL
) {
827 pstrcpy(devname
, sizeof(devname
), buf
);
828 if (!strcmp(buf
, "ide")) {
830 max_devs
= MAX_IDE_DEVS
;
831 } else if (!strcmp(buf
, "scsi")) {
833 max_devs
= MAX_SCSI_DEVS
;
834 } else if (!strcmp(buf
, "floppy")) {
837 } else if (!strcmp(buf
, "pflash")) {
840 } else if (!strcmp(buf
, "mtd")) {
843 } else if (!strcmp(buf
, "sd")) {
846 } else if (!strcmp(buf
, "virtio")) {
849 } else if (!strcmp(buf
, "xen")) {
852 } else if (!strcmp(buf
, "none")) {
856 fprintf(stderr
, "qemu: unsupported bus type '%s'\n", buf
);
861 if (cyls
|| heads
|| secs
) {
862 if (cyls
< 1 || (type
== IF_IDE
&& cyls
> 16383)) {
863 fprintf(stderr
, "qemu: '%s' invalid physical cyls number\n", buf
);
866 if (heads
< 1 || (type
== IF_IDE
&& heads
> 16)) {
867 fprintf(stderr
, "qemu: '%s' invalid physical heads number\n", buf
);
870 if (secs
< 1 || (type
== IF_IDE
&& secs
> 63)) {
871 fprintf(stderr
, "qemu: '%s' invalid physical secs number\n", buf
);
876 if ((buf
= qemu_opt_get(opts
, "trans")) != NULL
) {
879 "qemu: '%s' trans must be used with cyls,heads and secs\n",
883 if (!strcmp(buf
, "none"))
884 translation
= BIOS_ATA_TRANSLATION_NONE
;
885 else if (!strcmp(buf
, "lba"))
886 translation
= BIOS_ATA_TRANSLATION_LBA
;
887 else if (!strcmp(buf
, "auto"))
888 translation
= BIOS_ATA_TRANSLATION_AUTO
;
890 fprintf(stderr
, "qemu: '%s' invalid translation type\n", buf
);
895 if ((buf
= qemu_opt_get(opts
, "media")) != NULL
) {
896 if (!strcmp(buf
, "disk")) {
898 } else if (!strcmp(buf
, "cdrom")) {
899 if (cyls
|| secs
|| heads
) {
901 "qemu: '%s' invalid physical CHS format\n", buf
);
906 fprintf(stderr
, "qemu: '%s' invalid media\n", buf
);
911 if ((buf
= qemu_opt_get(opts
, "cache")) != NULL
) {
912 if (!strcmp(buf
, "off") || !strcmp(buf
, "none")) {
913 bdrv_flags
|= BDRV_O_NOCACHE
;
914 } else if (!strcmp(buf
, "writeback")) {
915 bdrv_flags
|= BDRV_O_CACHE_WB
;
916 } else if (!strcmp(buf
, "writethrough")) {
917 /* this is the default */
919 fprintf(stderr
, "qemu: invalid cache option\n");
924 #ifdef CONFIG_LINUX_AIO
925 if ((buf
= qemu_opt_get(opts
, "aio")) != NULL
) {
926 if (!strcmp(buf
, "native")) {
927 bdrv_flags
|= BDRV_O_NATIVE_AIO
;
928 } else if (!strcmp(buf
, "threads")) {
929 /* this is the default */
931 fprintf(stderr
, "qemu: invalid aio option\n");
937 if ((buf
= qemu_opt_get(opts
, "format")) != NULL
) {
938 if (strcmp(buf
, "?") == 0) {
939 fprintf(stderr
, "qemu: Supported formats:");
940 bdrv_iterate_format(bdrv_format_print
, NULL
);
941 fprintf(stderr
, "\n");
944 drv
= bdrv_find_whitelisted_format(buf
);
946 fprintf(stderr
, "qemu: '%s' invalid format\n", buf
);
951 on_write_error
= BLOCK_ERR_STOP_ENOSPC
;
952 if ((buf
= qemu_opt_get(opts
, "werror")) != NULL
) {
953 if (type
!= IF_IDE
&& type
!= IF_SCSI
&& type
!= IF_VIRTIO
) {
954 fprintf(stderr
, "werror is no supported by this format\n");
958 on_write_error
= parse_block_error_action(buf
, 0);
959 if (on_write_error
< 0) {
964 on_read_error
= BLOCK_ERR_REPORT
;
965 if ((buf
= qemu_opt_get(opts
, "rerror")) != NULL
) {
966 if (type
!= IF_IDE
&& type
!= IF_VIRTIO
) {
967 fprintf(stderr
, "rerror is no supported by this format\n");
971 on_read_error
= parse_block_error_action(buf
, 1);
972 if (on_read_error
< 0) {
977 if ((devaddr
= qemu_opt_get(opts
, "addr")) != NULL
) {
978 if (type
!= IF_VIRTIO
) {
979 fprintf(stderr
, "addr is not supported\n");
984 /* compute bus and unit according index */
987 if (bus_id
!= 0 || unit_id
!= -1) {
989 "qemu: index cannot be used with bus and unit\n");
997 unit_id
= index
% max_devs
;
998 bus_id
= index
/ max_devs
;
1002 /* if user doesn't specify a unit_id,
1003 * try to find the first free
1006 if (unit_id
== -1) {
1008 while (drive_get(type
, bus_id
, unit_id
) != NULL
) {
1010 if (max_devs
&& unit_id
>= max_devs
) {
1011 unit_id
-= max_devs
;
1019 if (max_devs
&& unit_id
>= max_devs
) {
1020 fprintf(stderr
, "qemu: unit %d too big (max is %d)\n",
1021 unit_id
, max_devs
- 1);
1026 * ignore multiple definitions
1029 if (drive_get(type
, bus_id
, unit_id
) != NULL
) {
1036 dinfo
= qemu_mallocz(sizeof(*dinfo
));
1037 if ((buf
= qemu_opts_id(opts
)) != NULL
) {
1038 dinfo
->id
= qemu_strdup(buf
);
1040 /* no id supplied -> create one */
1041 dinfo
->id
= qemu_mallocz(32);
1042 if (type
== IF_IDE
|| type
== IF_SCSI
)
1043 mediastr
= (media
== MEDIA_CDROM
) ? "-cd" : "-hd";
1045 snprintf(dinfo
->id
, 32, "%s%i%s%i",
1046 devname
, bus_id
, mediastr
, unit_id
);
1048 snprintf(dinfo
->id
, 32, "%s%s%i",
1049 devname
, mediastr
, unit_id
);
1051 dinfo
->bdrv
= bdrv_new(dinfo
->id
);
1052 dinfo
->devaddr
= devaddr
;
1054 dinfo
->bus
= bus_id
;
1055 dinfo
->unit
= unit_id
;
1056 dinfo
->on_read_error
= on_read_error
;
1057 dinfo
->on_write_error
= on_write_error
;
1060 strncpy(dinfo
->serial
, serial
, sizeof(serial
));
1061 QTAILQ_INSERT_TAIL(&drives
, dinfo
, next
);
1071 bdrv_set_geometry_hint(dinfo
->bdrv
, cyls
, heads
, secs
);
1072 bdrv_set_translation_hint(dinfo
->bdrv
, translation
);
1076 bdrv_set_type_hint(dinfo
->bdrv
, BDRV_TYPE_CDROM
);
1081 /* FIXME: This isn't really a floppy, but it's a reasonable
1084 bdrv_set_type_hint(dinfo
->bdrv
, BDRV_TYPE_FLOPPY
);
1090 /* add virtio block device */
1091 opts
= qemu_opts_create(&qemu_device_opts
, NULL
, 0);
1092 qemu_opt_set(opts
, "driver", "virtio-blk-pci");
1093 qemu_opt_set(opts
, "drive", dinfo
->id
);
1095 qemu_opt_set(opts
, "addr", devaddr
);
1105 /* always use write-back with snapshot */
1106 bdrv_flags
&= ~BDRV_O_CACHE_MASK
;
1107 bdrv_flags
|= (BDRV_O_SNAPSHOT
|BDRV_O_CACHE_WB
);
1110 if (media
== MEDIA_CDROM
) {
1111 /* CDROM is fine for any interface, don't check. */
1113 } else if (ro
== 1) {
1114 if (type
!= IF_SCSI
&& type
!= IF_VIRTIO
&& type
!= IF_FLOPPY
) {
1115 fprintf(stderr
, "qemu: readonly flag not supported for drive with this interface\n");
1120 bdrv_flags
|= ro
? 0 : BDRV_O_RDWR
;
1122 if (bdrv_open(dinfo
->bdrv
, file
, bdrv_flags
, drv
) < 0) {
1123 fprintf(stderr
, "qemu: could not open disk image %s: %s\n",
1124 file
, strerror(errno
));
1128 if (bdrv_key_required(dinfo
->bdrv
))
1134 static int drive_init_func(QemuOpts
*opts
, void *opaque
)
1136 QEMUMachine
*machine
= opaque
;
1137 int fatal_error
= 0;
1139 if (drive_init(opts
, machine
, &fatal_error
) == NULL
) {
1146 static int drive_enable_snapshot(QemuOpts
*opts
, void *opaque
)
1148 if (NULL
== qemu_opt_get(opts
, "snapshot")) {
1149 qemu_opt_set(opts
, "snapshot", "on");
1154 void qemu_register_boot_set(QEMUBootSetHandler
*func
, void *opaque
)
1156 boot_set_handler
= func
;
1157 boot_set_opaque
= opaque
;
1160 int qemu_boot_set(const char *boot_devices
)
1162 if (!boot_set_handler
) {
1165 return boot_set_handler(boot_set_opaque
, boot_devices
);
1168 static void validate_bootdevices(char *devices
)
1170 /* We just do some generic consistency checks */
1174 for (p
= devices
; *p
!= '\0'; p
++) {
1175 /* Allowed boot devices are:
1176 * a-b: floppy disk drives
1177 * c-f: IDE disk drives
1178 * g-m: machine implementation dependant drives
1179 * n-p: network devices
1180 * It's up to each machine implementation to check if the given boot
1181 * devices match the actual hardware implementation and firmware
1184 if (*p
< 'a' || *p
> 'p') {
1185 fprintf(stderr
, "Invalid boot device '%c'\n", *p
);
1188 if (bitmap
& (1 << (*p
- 'a'))) {
1189 fprintf(stderr
, "Boot device '%c' was given twice\n", *p
);
1192 bitmap
|= 1 << (*p
- 'a');
1196 static void restore_boot_devices(void *opaque
)
1198 char *standard_boot_devices
= opaque
;
1199 static int first
= 1;
1201 /* Restore boot order and remove ourselves after the first boot */
1207 qemu_boot_set(standard_boot_devices
);
1209 qemu_unregister_reset(restore_boot_devices
, standard_boot_devices
);
1210 qemu_free(standard_boot_devices
);
1213 static void numa_add(const char *optarg
)
1217 unsigned long long value
, endvalue
;
1220 optarg
= get_opt_name(option
, 128, optarg
, ',') + 1;
1221 if (!strcmp(option
, "node")) {
1222 if (get_param_value(option
, 128, "nodeid", optarg
) == 0) {
1223 nodenr
= nb_numa_nodes
;
1225 nodenr
= strtoull(option
, NULL
, 10);
1228 if (get_param_value(option
, 128, "mem", optarg
) == 0) {
1229 node_mem
[nodenr
] = 0;
1231 value
= strtoull(option
, &endptr
, 0);
1233 case 0: case 'M': case 'm':
1240 node_mem
[nodenr
] = value
;
1242 if (get_param_value(option
, 128, "cpus", optarg
) == 0) {
1243 node_cpumask
[nodenr
] = 0;
1245 value
= strtoull(option
, &endptr
, 10);
1248 fprintf(stderr
, "only 64 CPUs in NUMA mode supported.\n");
1250 if (*endptr
== '-') {
1251 endvalue
= strtoull(endptr
+1, &endptr
, 10);
1252 if (endvalue
>= 63) {
1255 "only 63 CPUs in NUMA mode supported.\n");
1257 value
= (2ULL << endvalue
) - (1ULL << value
);
1259 value
= 1ULL << value
;
1262 node_cpumask
[nodenr
] = value
;
1269 static void smp_parse(const char *optarg
)
1271 int smp
, sockets
= 0, threads
= 0, cores
= 0;
1275 smp
= strtoul(optarg
, &endptr
, 10);
1276 if (endptr
!= optarg
) {
1277 if (*endptr
== ',') {
1281 if (get_param_value(option
, 128, "sockets", endptr
) != 0)
1282 sockets
= strtoull(option
, NULL
, 10);
1283 if (get_param_value(option
, 128, "cores", endptr
) != 0)
1284 cores
= strtoull(option
, NULL
, 10);
1285 if (get_param_value(option
, 128, "threads", endptr
) != 0)
1286 threads
= strtoull(option
, NULL
, 10);
1287 if (get_param_value(option
, 128, "maxcpus", endptr
) != 0)
1288 max_cpus
= strtoull(option
, NULL
, 10);
1290 /* compute missing values, prefer sockets over cores over threads */
1291 if (smp
== 0 || sockets
== 0) {
1292 sockets
= sockets
> 0 ? sockets
: 1;
1293 cores
= cores
> 0 ? cores
: 1;
1294 threads
= threads
> 0 ? threads
: 1;
1296 smp
= cores
* threads
* sockets
;
1300 threads
= threads
> 0 ? threads
: 1;
1301 cores
= smp
/ (sockets
* threads
);
1304 threads
= smp
/ (cores
* sockets
);
1309 smp_cores
= cores
> 0 ? cores
: 1;
1310 smp_threads
= threads
> 0 ? threads
: 1;
1312 max_cpus
= smp_cpus
;
1315 /***********************************************************/
1318 static int usb_device_add(const char *devname
, int is_hotplug
)
1321 USBDevice
*dev
= NULL
;
1326 /* drivers with .usbdevice_name entry in USBDeviceInfo */
1327 dev
= usbdevice_create(devname
);
1331 /* the other ones */
1332 if (strstart(devname
, "host:", &p
)) {
1333 dev
= usb_host_device_open(p
);
1334 } else if (!strcmp(devname
, "bt") || strstart(devname
, "bt:", &p
)) {
1335 dev
= usb_bt_init(devname
[2] ? hci_init(p
) :
1336 bt_new_hci(qemu_find_bt_vlan(0)));
1347 static int usb_device_del(const char *devname
)
1352 if (strstart(devname
, "host:", &p
))
1353 return usb_host_device_close(p
);
1358 p
= strchr(devname
, '.');
1361 bus_num
= strtoul(devname
, NULL
, 0);
1362 addr
= strtoul(p
+ 1, NULL
, 0);
1364 return usb_device_delete_addr(bus_num
, addr
);
1367 static int usb_parse(const char *cmdline
)
1370 r
= usb_device_add(cmdline
, 0);
1372 fprintf(stderr
, "qemu: could not add USB device '%s'\n", cmdline
);
1377 void do_usb_add(Monitor
*mon
, const QDict
*qdict
)
1379 const char *devname
= qdict_get_str(qdict
, "devname");
1380 if (usb_device_add(devname
, 1) < 0) {
1381 error_report("could not add USB device '%s'", devname
);
1385 void do_usb_del(Monitor
*mon
, const QDict
*qdict
)
1387 const char *devname
= qdict_get_str(qdict
, "devname");
1388 if (usb_device_del(devname
) < 0) {
1389 error_report("could not delete USB device '%s'", devname
);
1393 /***********************************************************/
1394 /* PCMCIA/Cardbus */
1396 static struct pcmcia_socket_entry_s
{
1397 PCMCIASocket
*socket
;
1398 struct pcmcia_socket_entry_s
*next
;
1399 } *pcmcia_sockets
= 0;
1401 void pcmcia_socket_register(PCMCIASocket
*socket
)
1403 struct pcmcia_socket_entry_s
*entry
;
1405 entry
= qemu_malloc(sizeof(struct pcmcia_socket_entry_s
));
1406 entry
->socket
= socket
;
1407 entry
->next
= pcmcia_sockets
;
1408 pcmcia_sockets
= entry
;
1411 void pcmcia_socket_unregister(PCMCIASocket
*socket
)
1413 struct pcmcia_socket_entry_s
*entry
, **ptr
;
1415 ptr
= &pcmcia_sockets
;
1416 for (entry
= *ptr
; entry
; ptr
= &entry
->next
, entry
= *ptr
)
1417 if (entry
->socket
== socket
) {
1423 void pcmcia_info(Monitor
*mon
)
1425 struct pcmcia_socket_entry_s
*iter
;
1427 if (!pcmcia_sockets
)
1428 monitor_printf(mon
, "No PCMCIA sockets\n");
1430 for (iter
= pcmcia_sockets
; iter
; iter
= iter
->next
)
1431 monitor_printf(mon
, "%s: %s\n", iter
->socket
->slot_string
,
1432 iter
->socket
->attached
? iter
->socket
->card_string
:
1436 /***********************************************************/
1439 typedef struct IOHandlerRecord
{
1441 IOCanReadHandler
*fd_read_poll
;
1443 IOHandler
*fd_write
;
1446 /* temporary data */
1448 QLIST_ENTRY(IOHandlerRecord
) next
;
1451 static QLIST_HEAD(, IOHandlerRecord
) io_handlers
=
1452 QLIST_HEAD_INITIALIZER(io_handlers
);
1455 /* XXX: fd_read_poll should be suppressed, but an API change is
1456 necessary in the character devices to suppress fd_can_read(). */
1457 int qemu_set_fd_handler2(int fd
,
1458 IOCanReadHandler
*fd_read_poll
,
1460 IOHandler
*fd_write
,
1463 IOHandlerRecord
*ioh
;
1465 if (!fd_read
&& !fd_write
) {
1466 QLIST_FOREACH(ioh
, &io_handlers
, next
) {
1467 if (ioh
->fd
== fd
) {
1473 QLIST_FOREACH(ioh
, &io_handlers
, next
) {
1477 ioh
= qemu_mallocz(sizeof(IOHandlerRecord
));
1478 QLIST_INSERT_HEAD(&io_handlers
, ioh
, next
);
1481 ioh
->fd_read_poll
= fd_read_poll
;
1482 ioh
->fd_read
= fd_read
;
1483 ioh
->fd_write
= fd_write
;
1484 ioh
->opaque
= opaque
;
1490 int qemu_set_fd_handler(int fd
,
1492 IOHandler
*fd_write
,
1495 return qemu_set_fd_handler2(fd
, NULL
, fd_read
, fd_write
, opaque
);
1499 /***********************************************************/
1500 /* Polling handling */
1502 typedef struct PollingEntry
{
1505 struct PollingEntry
*next
;
1508 static PollingEntry
*first_polling_entry
;
1510 int qemu_add_polling_cb(PollingFunc
*func
, void *opaque
)
1512 PollingEntry
**ppe
, *pe
;
1513 pe
= qemu_mallocz(sizeof(PollingEntry
));
1515 pe
->opaque
= opaque
;
1516 for(ppe
= &first_polling_entry
; *ppe
!= NULL
; ppe
= &(*ppe
)->next
);
1521 void qemu_del_polling_cb(PollingFunc
*func
, void *opaque
)
1523 PollingEntry
**ppe
, *pe
;
1524 for(ppe
= &first_polling_entry
; *ppe
!= NULL
; ppe
= &(*ppe
)->next
) {
1526 if (pe
->func
== func
&& pe
->opaque
== opaque
) {
1534 /***********************************************************/
1535 /* Wait objects support */
1536 typedef struct WaitObjects
{
1538 HANDLE events
[MAXIMUM_WAIT_OBJECTS
+ 1];
1539 WaitObjectFunc
*func
[MAXIMUM_WAIT_OBJECTS
+ 1];
1540 void *opaque
[MAXIMUM_WAIT_OBJECTS
+ 1];
1543 static WaitObjects wait_objects
= {0};
1545 int qemu_add_wait_object(HANDLE handle
, WaitObjectFunc
*func
, void *opaque
)
1547 WaitObjects
*w
= &wait_objects
;
1549 if (w
->num
>= MAXIMUM_WAIT_OBJECTS
)
1551 w
->events
[w
->num
] = handle
;
1552 w
->func
[w
->num
] = func
;
1553 w
->opaque
[w
->num
] = opaque
;
1558 void qemu_del_wait_object(HANDLE handle
, WaitObjectFunc
*func
, void *opaque
)
1561 WaitObjects
*w
= &wait_objects
;
1564 for (i
= 0; i
< w
->num
; i
++) {
1565 if (w
->events
[i
] == handle
)
1568 w
->events
[i
] = w
->events
[i
+ 1];
1569 w
->func
[i
] = w
->func
[i
+ 1];
1570 w
->opaque
[i
] = w
->opaque
[i
+ 1];
1578 /***********************************************************/
1579 /* machine registration */
1581 static QEMUMachine
*first_machine
= NULL
;
1582 QEMUMachine
*current_machine
= NULL
;
1584 int qemu_register_machine(QEMUMachine
*m
)
1587 pm
= &first_machine
;
1595 static QEMUMachine
*find_machine(const char *name
)
1599 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
1600 if (!strcmp(m
->name
, name
))
1602 if (m
->alias
&& !strcmp(m
->alias
, name
))
1608 static QEMUMachine
*find_default_machine(void)
1612 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
1613 if (m
->is_default
) {
1620 /***********************************************************/
1621 /* main execution loop */
1623 static void gui_update(void *opaque
)
1625 uint64_t interval
= GUI_REFRESH_INTERVAL
;
1626 DisplayState
*ds
= opaque
;
1627 DisplayChangeListener
*dcl
= ds
->listeners
;
1629 qemu_flush_coalesced_mmio_buffer();
1632 while (dcl
!= NULL
) {
1633 if (dcl
->gui_timer_interval
&&
1634 dcl
->gui_timer_interval
< interval
)
1635 interval
= dcl
->gui_timer_interval
;
1638 qemu_mod_timer(ds
->gui_timer
, interval
+ qemu_get_clock(rt_clock
));
1641 static void nographic_update(void *opaque
)
1643 uint64_t interval
= GUI_REFRESH_INTERVAL
;
1645 qemu_flush_coalesced_mmio_buffer();
1646 qemu_mod_timer(nographic_timer
, interval
+ qemu_get_clock(rt_clock
));
1649 struct vm_change_state_entry
{
1650 VMChangeStateHandler
*cb
;
1652 QLIST_ENTRY (vm_change_state_entry
) entries
;
1655 static QLIST_HEAD(vm_change_state_head
, vm_change_state_entry
) vm_change_state_head
;
1657 VMChangeStateEntry
*qemu_add_vm_change_state_handler(VMChangeStateHandler
*cb
,
1660 VMChangeStateEntry
*e
;
1662 e
= qemu_mallocz(sizeof (*e
));
1666 QLIST_INSERT_HEAD(&vm_change_state_head
, e
, entries
);
1670 void qemu_del_vm_change_state_handler(VMChangeStateEntry
*e
)
1672 QLIST_REMOVE (e
, entries
);
1676 void vm_state_notify(int running
, int reason
)
1678 VMChangeStateEntry
*e
;
1680 for (e
= vm_change_state_head
.lh_first
; e
; e
= e
->entries
.le_next
) {
1681 e
->cb(e
->opaque
, running
, reason
);
1690 vm_state_notify(1, 0);
1692 monitor_protocol_event(QEVENT_RESUME
, NULL
);
1696 /* reset/shutdown handler */
1698 typedef struct QEMUResetEntry
{
1699 QTAILQ_ENTRY(QEMUResetEntry
) entry
;
1700 QEMUResetHandler
*func
;
1704 static QTAILQ_HEAD(reset_handlers
, QEMUResetEntry
) reset_handlers
=
1705 QTAILQ_HEAD_INITIALIZER(reset_handlers
);
1706 static int reset_requested
;
1707 static int shutdown_requested
;
1708 static int powerdown_requested
;
1709 int debug_requested
;
1710 int vmstop_requested
;
1711 static int exit_requested
;
1713 int qemu_shutdown_requested(void)
1715 int r
= shutdown_requested
;
1716 shutdown_requested
= 0;
1720 int qemu_reset_requested(void)
1722 int r
= reset_requested
;
1723 reset_requested
= 0;
1727 int qemu_powerdown_requested(void)
1729 int r
= powerdown_requested
;
1730 powerdown_requested
= 0;
1734 int qemu_exit_requested(void)
1736 /* just return it, we'll exit() anyway */
1737 return exit_requested
;
1740 static int qemu_debug_requested(void)
1742 int r
= debug_requested
;
1743 debug_requested
= 0;
1747 static int qemu_vmstop_requested(void)
1749 int r
= vmstop_requested
;
1750 vmstop_requested
= 0;
1754 void qemu_register_reset(QEMUResetHandler
*func
, void *opaque
)
1756 QEMUResetEntry
*re
= qemu_mallocz(sizeof(QEMUResetEntry
));
1759 re
->opaque
= opaque
;
1760 QTAILQ_INSERT_TAIL(&reset_handlers
, re
, entry
);
1763 void qemu_unregister_reset(QEMUResetHandler
*func
, void *opaque
)
1767 QTAILQ_FOREACH(re
, &reset_handlers
, entry
) {
1768 if (re
->func
== func
&& re
->opaque
== opaque
) {
1769 QTAILQ_REMOVE(&reset_handlers
, re
, entry
);
1776 void qemu_system_reset(void)
1778 QEMUResetEntry
*re
, *nre
;
1780 /* reset all devices */
1781 QTAILQ_FOREACH_SAFE(re
, &reset_handlers
, entry
, nre
) {
1782 re
->func(re
->opaque
);
1784 monitor_protocol_event(QEVENT_RESET
, NULL
);
1785 cpu_synchronize_all_post_reset();
1788 void qemu_system_reset_request(void)
1791 shutdown_requested
= 1;
1793 reset_requested
= 1;
1795 qemu_notify_event();
1798 void qemu_system_shutdown_request(void)
1800 shutdown_requested
= 1;
1801 qemu_notify_event();
1804 void qemu_system_powerdown_request(void)
1806 powerdown_requested
= 1;
1807 qemu_notify_event();
1810 void qemu_system_exit_request(void)
1813 qemu_notify_event();
1817 static void host_main_loop_wait(int *timeout
)
1823 /* XXX: need to suppress polling by better using win32 events */
1825 for(pe
= first_polling_entry
; pe
!= NULL
; pe
= pe
->next
) {
1826 ret
|= pe
->func(pe
->opaque
);
1830 WaitObjects
*w
= &wait_objects
;
1832 ret
= WaitForMultipleObjects(w
->num
, w
->events
, FALSE
, *timeout
);
1833 if (WAIT_OBJECT_0
+ 0 <= ret
&& ret
<= WAIT_OBJECT_0
+ w
->num
- 1) {
1834 if (w
->func
[ret
- WAIT_OBJECT_0
])
1835 w
->func
[ret
- WAIT_OBJECT_0
](w
->opaque
[ret
- WAIT_OBJECT_0
]);
1837 /* Check for additional signaled events */
1838 for(i
= (ret
- WAIT_OBJECT_0
+ 1); i
< w
->num
; i
++) {
1840 /* Check if event is signaled */
1841 ret2
= WaitForSingleObject(w
->events
[i
], 0);
1842 if(ret2
== WAIT_OBJECT_0
) {
1844 w
->func
[i
](w
->opaque
[i
]);
1845 } else if (ret2
== WAIT_TIMEOUT
) {
1847 err
= GetLastError();
1848 fprintf(stderr
, "WaitForSingleObject error %d %d\n", i
, err
);
1851 } else if (ret
== WAIT_TIMEOUT
) {
1853 err
= GetLastError();
1854 fprintf(stderr
, "WaitForMultipleObjects error %d %d\n", ret
, err
);
1861 static void host_main_loop_wait(int *timeout
)
1866 void main_loop_wait(int nonblocking
)
1868 IOHandlerRecord
*ioh
;
1869 fd_set rfds
, wfds
, xfds
;
1877 timeout
= qemu_calculate_timeout();
1878 qemu_bh_update_timeout(&timeout
);
1881 host_main_loop_wait(&timeout
);
1883 /* poll any events */
1884 /* XXX: separate device handlers from system ones */
1889 QLIST_FOREACH(ioh
, &io_handlers
, next
) {
1893 (!ioh
->fd_read_poll
||
1894 ioh
->fd_read_poll(ioh
->opaque
) != 0)) {
1895 FD_SET(ioh
->fd
, &rfds
);
1899 if (ioh
->fd_write
) {
1900 FD_SET(ioh
->fd
, &wfds
);
1906 tv
.tv_sec
= timeout
/ 1000;
1907 tv
.tv_usec
= (timeout
% 1000) * 1000;
1909 slirp_select_fill(&nfds
, &rfds
, &wfds
, &xfds
);
1911 qemu_mutex_unlock_iothread();
1912 ret
= select(nfds
+ 1, &rfds
, &wfds
, &xfds
, &tv
);
1913 qemu_mutex_lock_iothread();
1915 IOHandlerRecord
*pioh
;
1917 QLIST_FOREACH_SAFE(ioh
, &io_handlers
, next
, pioh
) {
1919 QLIST_REMOVE(ioh
, next
);
1923 if (ioh
->fd_read
&& FD_ISSET(ioh
->fd
, &rfds
)) {
1924 ioh
->fd_read(ioh
->opaque
);
1926 if (ioh
->fd_write
&& FD_ISSET(ioh
->fd
, &wfds
)) {
1927 ioh
->fd_write(ioh
->opaque
);
1932 slirp_select_poll(&rfds
, &wfds
, &xfds
, (ret
< 0));
1934 qemu_run_all_timers();
1936 /* Check bottom-halves last in case any of the earlier events triggered
1942 static int vm_can_run(void)
1944 if (powerdown_requested
)
1946 if (reset_requested
)
1948 if (shutdown_requested
)
1950 if (debug_requested
)
1957 qemu_irq qemu_system_powerdown
;
1959 static void main_loop(void)
1963 qemu_main_loop_start();
1967 bool nonblocking
= false;
1968 #ifdef CONFIG_PROFILER
1971 #ifndef CONFIG_IOTHREAD
1972 nonblocking
= tcg_cpu_exec();
1974 #ifdef CONFIG_PROFILER
1975 ti
= profile_getclock();
1977 main_loop_wait(nonblocking
);
1978 #ifdef CONFIG_PROFILER
1979 dev_time
+= profile_getclock() - ti
;
1981 } while (vm_can_run());
1983 if ((r
= qemu_debug_requested())) {
1986 if (qemu_shutdown_requested()) {
1987 monitor_protocol_event(QEVENT_SHUTDOWN
, NULL
);
1994 if (qemu_reset_requested()) {
1996 qemu_system_reset();
1999 if (qemu_powerdown_requested()) {
2000 monitor_protocol_event(QEVENT_POWERDOWN
, NULL
);
2001 qemu_irq_raise(qemu_system_powerdown
);
2003 if ((r
= qemu_vmstop_requested())) {
2006 if (qemu_exit_requested()) {
2013 static void version(void)
2015 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION
", Copyright (c) 2003-2008 Fabrice Bellard\n");
2018 static void help(int exitcode
)
2020 const char *options_help
=
2021 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
2023 #define DEFHEADING(text) stringify(text) "\n"
2024 #include "qemu-options.h"
2030 printf("usage: %s [options] [disk_image]\n"
2032 "'disk_image' is a raw hard disk image for IDE hard disk 0\n"
2035 "During emulation, the following keys are useful:\n"
2036 "ctrl-alt-f toggle full screen\n"
2037 "ctrl-alt-n switch to virtual console 'n'\n"
2038 "ctrl-alt toggle mouse and keyboard grab\n"
2040 "When using -nographic, press 'ctrl-a h' to get some help.\n",
2046 #define HAS_ARG 0x0001
2049 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
2051 #define DEFHEADING(text)
2052 #include "qemu-options.h"
2058 typedef struct QEMUOption
{
2065 static const QEMUOption qemu_options
[] = {
2066 { "h", 0, QEMU_OPTION_h
, QEMU_ARCH_ALL
},
2067 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
2068 { option, opt_arg, opt_enum, arch_mask },
2069 #define DEFHEADING(text)
2070 #include "qemu-options.h"
2076 static void select_vgahw (const char *p
)
2081 vga_interface_type
= VGA_NONE
;
2082 if (strstart(p
, "std", &opts
)) {
2083 vga_interface_type
= VGA_STD
;
2084 } else if (strstart(p
, "cirrus", &opts
)) {
2085 vga_interface_type
= VGA_CIRRUS
;
2086 } else if (strstart(p
, "vmware", &opts
)) {
2087 vga_interface_type
= VGA_VMWARE
;
2088 } else if (strstart(p
, "xenfb", &opts
)) {
2089 vga_interface_type
= VGA_XENFB
;
2090 } else if (!strstart(p
, "none", &opts
)) {
2092 fprintf(stderr
, "Unknown vga type: %s\n", p
);
2096 const char *nextopt
;
2098 if (strstart(opts
, ",retrace=", &nextopt
)) {
2100 if (strstart(opts
, "dumb", &nextopt
))
2101 vga_retrace_method
= VGA_RETRACE_DUMB
;
2102 else if (strstart(opts
, "precise", &nextopt
))
2103 vga_retrace_method
= VGA_RETRACE_PRECISE
;
2104 else goto invalid_vga
;
2105 } else goto invalid_vga
;
2110 static int balloon_parse(const char *arg
)
2114 if (strcmp(arg
, "none") == 0) {
2118 if (!strncmp(arg
, "virtio", 6)) {
2119 if (arg
[6] == ',') {
2120 /* have params -> parse them */
2121 opts
= qemu_opts_parse(&qemu_device_opts
, arg
+7, 0);
2125 /* create empty opts */
2126 opts
= qemu_opts_create(&qemu_device_opts
, NULL
, 0);
2128 qemu_opt_set(opts
, "driver", "virtio-balloon-pci");
2136 static BOOL WINAPI
qemu_ctrl_handler(DWORD type
)
2138 exit(STATUS_CONTROL_C_EXIT
);
2145 static void termsig_handler(int signal
)
2147 qemu_system_shutdown_request();
2150 static void sigchld_handler(int signal
)
2152 waitpid(-1, NULL
, WNOHANG
);
2155 static void sighandler_setup(void)
2157 struct sigaction act
;
2159 memset(&act
, 0, sizeof(act
));
2160 act
.sa_handler
= termsig_handler
;
2161 sigaction(SIGINT
, &act
, NULL
);
2162 sigaction(SIGHUP
, &act
, NULL
);
2163 sigaction(SIGTERM
, &act
, NULL
);
2165 act
.sa_handler
= sigchld_handler
;
2166 act
.sa_flags
= SA_NOCLDSTOP
;
2167 sigaction(SIGCHLD
, &act
, NULL
);
2173 /* Look for support files in the same directory as the executable. */
2174 static char *find_datadir(const char *argv0
)
2180 len
= GetModuleFileName(NULL
, buf
, sizeof(buf
) - 1);
2187 while (p
!= buf
&& *p
!= '\\')
2190 if (access(buf
, R_OK
) == 0) {
2191 return qemu_strdup(buf
);
2197 /* Find a likely location for support files using the location of the binary.
2198 For installed binaries this will be "$bindir/../share/qemu". When
2199 running from the build tree this will be "$bindir/../pc-bios". */
2200 #define SHARE_SUFFIX "/share/qemu"
2201 #define BUILD_SUFFIX "/pc-bios"
2202 static char *find_datadir(const char *argv0
)
2210 #if defined(__linux__)
2213 len
= readlink("/proc/self/exe", buf
, sizeof(buf
) - 1);
2219 #elif defined(__FreeBSD__)
2221 static int mib
[4] = {CTL_KERN
, KERN_PROC
, KERN_PROC_PATHNAME
, -1};
2222 size_t len
= sizeof(buf
) - 1;
2225 if (!sysctl(mib
, sizeof(mib
)/sizeof(*mib
), buf
, &len
, NULL
, 0) &&
2227 buf
[sizeof(buf
) - 1] = '\0';
2232 /* If we don't have any way of figuring out the actual executable
2233 location then try argv[0]. */
2235 p
= realpath(argv0
, buf
);
2243 max_len
= strlen(dir
) +
2244 MAX(strlen(SHARE_SUFFIX
), strlen(BUILD_SUFFIX
)) + 1;
2245 res
= qemu_mallocz(max_len
);
2246 snprintf(res
, max_len
, "%s%s", dir
, SHARE_SUFFIX
);
2247 if (access(res
, R_OK
)) {
2248 snprintf(res
, max_len
, "%s%s", dir
, BUILD_SUFFIX
);
2249 if (access(res
, R_OK
)) {
2261 char *qemu_find_file(int type
, const char *name
)
2267 /* If name contains path separators then try it as a straight path. */
2268 if ((strchr(name
, '/') || strchr(name
, '\\'))
2269 && access(name
, R_OK
) == 0) {
2270 return qemu_strdup(name
);
2273 case QEMU_FILE_TYPE_BIOS
:
2276 case QEMU_FILE_TYPE_KEYMAP
:
2277 subdir
= "keymaps/";
2282 len
= strlen(data_dir
) + strlen(name
) + strlen(subdir
) + 2;
2283 buf
= qemu_mallocz(len
);
2284 snprintf(buf
, len
, "%s/%s%s", data_dir
, subdir
, name
);
2285 if (access(buf
, R_OK
)) {
2292 static int device_help_func(QemuOpts
*opts
, void *opaque
)
2294 return qdev_device_help(opts
);
2297 static int device_init_func(QemuOpts
*opts
, void *opaque
)
2301 dev
= qdev_device_add(opts
);
2307 static int chardev_init_func(QemuOpts
*opts
, void *opaque
)
2309 CharDriverState
*chr
;
2311 chr
= qemu_chr_open_opts(opts
, NULL
);
2318 static int fsdev_init_func(QemuOpts
*opts
, void *opaque
)
2321 ret
= qemu_fsdev_add(opts
);
2327 static int mon_init_func(QemuOpts
*opts
, void *opaque
)
2329 CharDriverState
*chr
;
2330 const char *chardev
;
2334 mode
= qemu_opt_get(opts
, "mode");
2338 if (strcmp(mode
, "readline") == 0) {
2339 flags
= MONITOR_USE_READLINE
;
2340 } else if (strcmp(mode
, "control") == 0) {
2341 flags
= MONITOR_USE_CONTROL
;
2343 fprintf(stderr
, "unknown monitor mode \"%s\"\n", mode
);
2347 if (qemu_opt_get_bool(opts
, "default", 0))
2348 flags
|= MONITOR_IS_DEFAULT
;
2350 chardev
= qemu_opt_get(opts
, "chardev");
2351 chr
= qemu_chr_find(chardev
);
2353 fprintf(stderr
, "chardev \"%s\" not found\n", chardev
);
2357 monitor_init(chr
, flags
);
2361 static void monitor_parse(const char *optarg
, const char *mode
)
2363 static int monitor_device_index
= 0;
2369 if (strstart(optarg
, "chardev:", &p
)) {
2370 snprintf(label
, sizeof(label
), "%s", p
);
2372 snprintf(label
, sizeof(label
), "compat_monitor%d",
2373 monitor_device_index
);
2374 if (monitor_device_index
== 0) {
2377 opts
= qemu_chr_parse_compat(label
, optarg
);
2379 fprintf(stderr
, "parse error: %s\n", optarg
);
2384 opts
= qemu_opts_create(&qemu_mon_opts
, label
, 1);
2386 fprintf(stderr
, "duplicate chardev: %s\n", label
);
2389 qemu_opt_set(opts
, "mode", mode
);
2390 qemu_opt_set(opts
, "chardev", label
);
2392 qemu_opt_set(opts
, "default", "on");
2393 monitor_device_index
++;
2396 struct device_config
{
2398 DEV_USB
, /* -usbdevice */
2400 DEV_SERIAL
, /* -serial */
2401 DEV_PARALLEL
, /* -parallel */
2402 DEV_VIRTCON
, /* -virtioconsole */
2403 DEV_DEBUGCON
, /* -debugcon */
2405 const char *cmdline
;
2406 QTAILQ_ENTRY(device_config
) next
;
2408 QTAILQ_HEAD(, device_config
) device_configs
= QTAILQ_HEAD_INITIALIZER(device_configs
);
2410 static void add_device_config(int type
, const char *cmdline
)
2412 struct device_config
*conf
;
2414 conf
= qemu_mallocz(sizeof(*conf
));
2416 conf
->cmdline
= cmdline
;
2417 QTAILQ_INSERT_TAIL(&device_configs
, conf
, next
);
2420 static int foreach_device_config(int type
, int (*func
)(const char *cmdline
))
2422 struct device_config
*conf
;
2425 QTAILQ_FOREACH(conf
, &device_configs
, next
) {
2426 if (conf
->type
!= type
)
2428 rc
= func(conf
->cmdline
);
2435 static int serial_parse(const char *devname
)
2437 static int index
= 0;
2440 if (strcmp(devname
, "none") == 0)
2442 if (index
== MAX_SERIAL_PORTS
) {
2443 fprintf(stderr
, "qemu: too many serial ports\n");
2446 snprintf(label
, sizeof(label
), "serial%d", index
);
2447 serial_hds
[index
] = qemu_chr_open(label
, devname
, NULL
);
2448 if (!serial_hds
[index
]) {
2449 fprintf(stderr
, "qemu: could not open serial device '%s': %s\n",
2450 devname
, strerror(errno
));
2457 static int parallel_parse(const char *devname
)
2459 static int index
= 0;
2462 if (strcmp(devname
, "none") == 0)
2464 if (index
== MAX_PARALLEL_PORTS
) {
2465 fprintf(stderr
, "qemu: too many parallel ports\n");
2468 snprintf(label
, sizeof(label
), "parallel%d", index
);
2469 parallel_hds
[index
] = qemu_chr_open(label
, devname
, NULL
);
2470 if (!parallel_hds
[index
]) {
2471 fprintf(stderr
, "qemu: could not open parallel device '%s': %s\n",
2472 devname
, strerror(errno
));
2479 static int virtcon_parse(const char *devname
)
2481 static int index
= 0;
2483 QemuOpts
*bus_opts
, *dev_opts
;
2485 if (strcmp(devname
, "none") == 0)
2487 if (index
== MAX_VIRTIO_CONSOLES
) {
2488 fprintf(stderr
, "qemu: too many virtio consoles\n");
2492 bus_opts
= qemu_opts_create(&qemu_device_opts
, NULL
, 0);
2493 qemu_opt_set(bus_opts
, "driver", "virtio-serial");
2495 dev_opts
= qemu_opts_create(&qemu_device_opts
, NULL
, 0);
2496 qemu_opt_set(dev_opts
, "driver", "virtconsole");
2498 snprintf(label
, sizeof(label
), "virtcon%d", index
);
2499 virtcon_hds
[index
] = qemu_chr_open(label
, devname
, NULL
);
2500 if (!virtcon_hds
[index
]) {
2501 fprintf(stderr
, "qemu: could not open virtio console '%s': %s\n",
2502 devname
, strerror(errno
));
2505 qemu_opt_set(dev_opts
, "chardev", label
);
2511 static int debugcon_parse(const char *devname
)
2515 if (!qemu_chr_open("debugcon", devname
, NULL
)) {
2518 opts
= qemu_opts_create(&qemu_device_opts
, "debugcon", 1);
2520 fprintf(stderr
, "qemu: already have a debugcon device\n");
2523 qemu_opt_set(opts
, "driver", "isa-debugcon");
2524 qemu_opt_set(opts
, "chardev", "debugcon");
2528 static const QEMUOption
*lookup_opt(int argc
, char **argv
,
2529 const char **poptarg
, int *poptind
)
2531 const QEMUOption
*popt
;
2532 int optind
= *poptind
;
2533 char *r
= argv
[optind
];
2536 loc_set_cmdline(argv
, optind
, 1);
2538 /* Treat --foo the same as -foo. */
2541 popt
= qemu_options
;
2544 error_report("invalid option");
2547 if (!strcmp(popt
->name
, r
+ 1))
2551 if (popt
->flags
& HAS_ARG
) {
2552 if (optind
>= argc
) {
2553 error_report("requires an argument");
2556 optarg
= argv
[optind
++];
2557 loc_set_cmdline(argv
, optind
- 2, 2);
2568 int main(int argc
, char **argv
, char **envp
)
2570 const char *gdbstub_dev
= NULL
;
2572 int snapshot
, linux_boot
;
2573 const char *icount_option
= NULL
;
2574 const char *initrd_filename
;
2575 const char *kernel_filename
, *kernel_cmdline
;
2576 char boot_devices
[33] = "cad"; /* default to HD->floppy->CD-ROM */
2578 DisplayChangeListener
*dcl
;
2579 int cyls
, heads
, secs
, translation
;
2580 QemuOpts
*hda_opts
= NULL
, *opts
;
2583 const char *loadvm
= NULL
;
2584 QEMUMachine
*machine
;
2585 const char *cpu_model
;
2590 const char *pid_file
= NULL
;
2591 const char *incoming
= NULL
;
2594 struct passwd
*pwd
= NULL
;
2595 const char *chroot_dir
= NULL
;
2596 const char *run_as
= NULL
;
2598 int show_vnc_port
= 0;
2601 error_set_progname(argv
[0]);
2605 qemu_cache_utils_init(envp
);
2607 QLIST_INIT (&vm_change_state_head
);
2610 struct sigaction act
;
2611 sigfillset(&act
.sa_mask
);
2613 act
.sa_handler
= SIG_IGN
;
2614 sigaction(SIGPIPE
, &act
, NULL
);
2617 SetConsoleCtrlHandler(qemu_ctrl_handler
, TRUE
);
2618 /* Note: cpu_interrupt() is currently not SMP safe, so we force
2619 QEMU to run on a single CPU */
2624 h
= GetCurrentProcess();
2625 if (GetProcessAffinityMask(h
, &mask
, &smask
)) {
2626 for(i
= 0; i
< 32; i
++) {
2627 if (mask
& (1 << i
))
2632 SetProcessAffinityMask(h
, mask
);
2638 module_call_init(MODULE_INIT_MACHINE
);
2639 machine
= find_default_machine();
2641 initrd_filename
= NULL
;
2644 kernel_filename
= NULL
;
2645 kernel_cmdline
= "";
2646 cyls
= heads
= secs
= 0;
2647 translation
= BIOS_ATA_TRANSLATION_AUTO
;
2649 for (i
= 0; i
< MAX_NODES
; i
++) {
2651 node_cpumask
[i
] = 0;
2660 /* first pass of option parsing */
2662 while (optind
< argc
) {
2663 if (argv
[optind
][0] != '-') {
2668 const QEMUOption
*popt
;
2670 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
2671 switch (popt
->index
) {
2672 case QEMU_OPTION_nodefconfig
:
2682 ret
= qemu_read_config_file(CONFIG_QEMU_CONFDIR
"/qemu.conf");
2683 if (ret
== -EINVAL
) {
2687 ret
= qemu_read_config_file(arch_config_name
);
2688 if (ret
== -EINVAL
) {
2694 /* second pass of option parsing */
2699 if (argv
[optind
][0] != '-') {
2700 hda_opts
= drive_add(argv
[optind
++], HD_ALIAS
, 0);
2702 const QEMUOption
*popt
;
2704 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
2705 if (!(popt
->arch_mask
& arch_type
)) {
2706 printf("Option %s not supported for this target\n", popt
->name
);
2709 switch(popt
->index
) {
2711 machine
= find_machine(optarg
);
2714 printf("Supported machines are:\n");
2715 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
2717 printf("%-10s %s (alias of %s)\n",
2718 m
->alias
, m
->desc
, m
->name
);
2719 printf("%-10s %s%s\n",
2721 m
->is_default
? " (default)" : "");
2723 exit(*optarg
!= '?');
2726 case QEMU_OPTION_cpu
:
2727 /* hw initialization will check this */
2728 if (*optarg
== '?') {
2729 list_cpus(stdout
, &fprintf
, optarg
);
2735 case QEMU_OPTION_initrd
:
2736 initrd_filename
= optarg
;
2738 case QEMU_OPTION_hda
:
2740 hda_opts
= drive_add(optarg
, HD_ALIAS
, 0);
2742 hda_opts
= drive_add(optarg
, HD_ALIAS
2743 ",cyls=%d,heads=%d,secs=%d%s",
2744 0, cyls
, heads
, secs
,
2745 translation
== BIOS_ATA_TRANSLATION_LBA
?
2747 translation
== BIOS_ATA_TRANSLATION_NONE
?
2748 ",trans=none" : "");
2750 case QEMU_OPTION_hdb
:
2751 case QEMU_OPTION_hdc
:
2752 case QEMU_OPTION_hdd
:
2753 drive_add(optarg
, HD_ALIAS
, popt
->index
- QEMU_OPTION_hda
);
2755 case QEMU_OPTION_drive
:
2756 drive_add(NULL
, "%s", optarg
);
2758 case QEMU_OPTION_set
:
2759 if (qemu_set_option(optarg
) != 0)
2762 case QEMU_OPTION_global
:
2763 if (qemu_global_option(optarg
) != 0)
2766 case QEMU_OPTION_mtdblock
:
2767 drive_add(optarg
, MTD_ALIAS
);
2769 case QEMU_OPTION_sd
:
2770 drive_add(optarg
, SD_ALIAS
);
2772 case QEMU_OPTION_pflash
:
2773 drive_add(optarg
, PFLASH_ALIAS
);
2775 case QEMU_OPTION_snapshot
:
2778 case QEMU_OPTION_hdachs
:
2782 cyls
= strtol(p
, (char **)&p
, 0);
2783 if (cyls
< 1 || cyls
> 16383)
2788 heads
= strtol(p
, (char **)&p
, 0);
2789 if (heads
< 1 || heads
> 16)
2794 secs
= strtol(p
, (char **)&p
, 0);
2795 if (secs
< 1 || secs
> 63)
2799 if (!strcmp(p
, "none"))
2800 translation
= BIOS_ATA_TRANSLATION_NONE
;
2801 else if (!strcmp(p
, "lba"))
2802 translation
= BIOS_ATA_TRANSLATION_LBA
;
2803 else if (!strcmp(p
, "auto"))
2804 translation
= BIOS_ATA_TRANSLATION_AUTO
;
2807 } else if (*p
!= '\0') {
2809 fprintf(stderr
, "qemu: invalid physical CHS format\n");
2812 if (hda_opts
!= NULL
) {
2814 snprintf(num
, sizeof(num
), "%d", cyls
);
2815 qemu_opt_set(hda_opts
, "cyls", num
);
2816 snprintf(num
, sizeof(num
), "%d", heads
);
2817 qemu_opt_set(hda_opts
, "heads", num
);
2818 snprintf(num
, sizeof(num
), "%d", secs
);
2819 qemu_opt_set(hda_opts
, "secs", num
);
2820 if (translation
== BIOS_ATA_TRANSLATION_LBA
)
2821 qemu_opt_set(hda_opts
, "trans", "lba");
2822 if (translation
== BIOS_ATA_TRANSLATION_NONE
)
2823 qemu_opt_set(hda_opts
, "trans", "none");
2827 case QEMU_OPTION_numa
:
2828 if (nb_numa_nodes
>= MAX_NODES
) {
2829 fprintf(stderr
, "qemu: too many NUMA nodes\n");
2834 case QEMU_OPTION_nographic
:
2835 display_type
= DT_NOGRAPHIC
;
2837 #ifdef CONFIG_CURSES
2838 case QEMU_OPTION_curses
:
2839 display_type
= DT_CURSES
;
2842 case QEMU_OPTION_portrait
:
2845 case QEMU_OPTION_kernel
:
2846 kernel_filename
= optarg
;
2848 case QEMU_OPTION_append
:
2849 kernel_cmdline
= optarg
;
2851 case QEMU_OPTION_cdrom
:
2852 drive_add(optarg
, CDROM_ALIAS
);
2854 case QEMU_OPTION_boot
:
2856 static const char * const params
[] = {
2857 "order", "once", "menu", NULL
2859 char buf
[sizeof(boot_devices
)];
2860 char *standard_boot_devices
;
2863 if (!strchr(optarg
, '=')) {
2865 pstrcpy(buf
, sizeof(buf
), optarg
);
2866 } else if (check_params(buf
, sizeof(buf
), params
, optarg
) < 0) {
2868 "qemu: unknown boot parameter '%s' in '%s'\n",
2874 get_param_value(buf
, sizeof(buf
), "order", optarg
)) {
2875 validate_bootdevices(buf
);
2876 pstrcpy(boot_devices
, sizeof(boot_devices
), buf
);
2879 if (get_param_value(buf
, sizeof(buf
),
2881 validate_bootdevices(buf
);
2882 standard_boot_devices
= qemu_strdup(boot_devices
);
2883 pstrcpy(boot_devices
, sizeof(boot_devices
), buf
);
2884 qemu_register_reset(restore_boot_devices
,
2885 standard_boot_devices
);
2887 if (get_param_value(buf
, sizeof(buf
),
2889 if (!strcmp(buf
, "on")) {
2891 } else if (!strcmp(buf
, "off")) {
2895 "qemu: invalid option value '%s'\n",
2903 case QEMU_OPTION_fda
:
2904 case QEMU_OPTION_fdb
:
2905 drive_add(optarg
, FD_ALIAS
, popt
->index
- QEMU_OPTION_fda
);
2907 case QEMU_OPTION_no_fd_bootchk
:
2910 case QEMU_OPTION_netdev
:
2911 if (net_client_parse(&qemu_netdev_opts
, optarg
) == -1) {
2915 case QEMU_OPTION_net
:
2916 if (net_client_parse(&qemu_net_opts
, optarg
) == -1) {
2921 case QEMU_OPTION_tftp
:
2922 legacy_tftp_prefix
= optarg
;
2924 case QEMU_OPTION_bootp
:
2925 legacy_bootp_filename
= optarg
;
2928 case QEMU_OPTION_smb
:
2929 if (net_slirp_smb(optarg
) < 0)
2933 case QEMU_OPTION_redir
:
2934 if (net_slirp_redir(optarg
) < 0)
2938 case QEMU_OPTION_bt
:
2939 add_device_config(DEV_BT
, optarg
);
2941 case QEMU_OPTION_audio_help
:
2942 if (!(audio_available())) {
2943 printf("Option %s not supported for this target\n", popt
->name
);
2949 case QEMU_OPTION_soundhw
:
2950 if (!(audio_available())) {
2951 printf("Option %s not supported for this target\n", popt
->name
);
2954 select_soundhw (optarg
);
2959 case QEMU_OPTION_version
:
2963 case QEMU_OPTION_m
: {
2967 value
= strtoul(optarg
, &ptr
, 10);
2969 case 0: case 'M': case 'm':
2976 fprintf(stderr
, "qemu: invalid ram size: %s\n", optarg
);
2980 /* On 32-bit hosts, QEMU is limited by virtual address space */
2981 if (value
> (2047 << 20) && HOST_LONG_BITS
== 32) {
2982 fprintf(stderr
, "qemu: at most 2047 MB RAM can be simulated\n");
2985 if (value
!= (uint64_t)(ram_addr_t
)value
) {
2986 fprintf(stderr
, "qemu: ram size too large\n");
2992 case QEMU_OPTION_mempath
:
2996 case QEMU_OPTION_mem_prealloc
:
3001 set_cpu_log(optarg
);
3004 gdbstub_dev
= "tcp::" DEFAULT_GDBSTUB_PORT
;
3006 case QEMU_OPTION_gdb
:
3007 gdbstub_dev
= optarg
;
3012 case QEMU_OPTION_bios
:
3015 case QEMU_OPTION_singlestep
:
3022 keyboard_layout
= optarg
;
3024 case QEMU_OPTION_localtime
:
3027 case QEMU_OPTION_vga
:
3028 select_vgahw (optarg
);
3035 w
= strtol(p
, (char **)&p
, 10);
3038 fprintf(stderr
, "qemu: invalid resolution or depth\n");
3044 h
= strtol(p
, (char **)&p
, 10);
3049 depth
= strtol(p
, (char **)&p
, 10);
3050 if (depth
!= 8 && depth
!= 15 && depth
!= 16 &&
3051 depth
!= 24 && depth
!= 32)
3053 } else if (*p
== '\0') {
3054 depth
= graphic_depth
;
3061 graphic_depth
= depth
;
3064 case QEMU_OPTION_echr
:
3067 term_escape_char
= strtol(optarg
, &r
, 0);
3069 printf("Bad argument to echr\n");
3072 case QEMU_OPTION_monitor
:
3073 monitor_parse(optarg
, "readline");
3074 default_monitor
= 0;
3076 case QEMU_OPTION_qmp
:
3077 monitor_parse(optarg
, "control");
3078 default_monitor
= 0;
3080 case QEMU_OPTION_mon
:
3081 opts
= qemu_opts_parse(&qemu_mon_opts
, optarg
, 1);
3085 default_monitor
= 0;
3087 case QEMU_OPTION_chardev
:
3088 opts
= qemu_opts_parse(&qemu_chardev_opts
, optarg
, 1);
3094 case QEMU_OPTION_fsdev
:
3095 opts
= qemu_opts_parse(&qemu_fsdev_opts
, optarg
, 1);
3097 fprintf(stderr
, "parse error: %s\n", optarg
);
3101 case QEMU_OPTION_virtfs
: {
3102 char *arg_fsdev
= NULL
;
3103 char *arg_9p
= NULL
;
3106 opts
= qemu_opts_parse(&qemu_virtfs_opts
, optarg
, 1);
3108 fprintf(stderr
, "parse error: %s\n", optarg
);
3112 len
= strlen(",id=,path=");
3113 len
+= strlen(qemu_opt_get(opts
, "fstype"));
3114 len
+= strlen(qemu_opt_get(opts
, "mount_tag"));
3115 len
+= strlen(qemu_opt_get(opts
, "path"));
3116 arg_fsdev
= qemu_malloc((len
+ 1) * sizeof(*arg_fsdev
));
3119 fprintf(stderr
, "No memory to parse -fsdev for %s\n",
3124 sprintf(arg_fsdev
, "%s,id=%s,path=%s",
3125 qemu_opt_get(opts
, "fstype"),
3126 qemu_opt_get(opts
, "mount_tag"),
3127 qemu_opt_get(opts
, "path"));
3129 len
= strlen("virtio-9p-pci,fsdev=,mount_tag=");
3130 len
+= 2*strlen(qemu_opt_get(opts
, "mount_tag"));
3131 arg_9p
= qemu_malloc((len
+ 1) * sizeof(*arg_9p
));
3134 fprintf(stderr
, "No memory to parse -device for %s\n",
3139 sprintf(arg_9p
, "virtio-9p-pci,fsdev=%s,mount_tag=%s",
3140 qemu_opt_get(opts
, "mount_tag"),
3141 qemu_opt_get(opts
, "mount_tag"));
3143 if (!qemu_opts_parse(&qemu_fsdev_opts
, arg_fsdev
, 1)) {
3144 fprintf(stderr
, "parse error [fsdev]: %s\n", optarg
);
3148 if (!qemu_opts_parse(&qemu_device_opts
, arg_9p
, 1)) {
3149 fprintf(stderr
, "parse error [device]: %s\n", optarg
);
3153 qemu_free(arg_fsdev
);
3158 case QEMU_OPTION_serial
:
3159 add_device_config(DEV_SERIAL
, optarg
);
3161 if (strncmp(optarg
, "mon:", 4) == 0) {
3162 default_monitor
= 0;
3165 case QEMU_OPTION_watchdog
:
3168 "qemu: only one watchdog option may be given\n");
3173 case QEMU_OPTION_watchdog_action
:
3174 if (select_watchdog_action(optarg
) == -1) {
3175 fprintf(stderr
, "Unknown -watchdog-action parameter\n");
3179 case QEMU_OPTION_virtiocon
:
3180 add_device_config(DEV_VIRTCON
, optarg
);
3181 default_virtcon
= 0;
3182 if (strncmp(optarg
, "mon:", 4) == 0) {
3183 default_monitor
= 0;
3186 case QEMU_OPTION_parallel
:
3187 add_device_config(DEV_PARALLEL
, optarg
);
3188 default_parallel
= 0;
3189 if (strncmp(optarg
, "mon:", 4) == 0) {
3190 default_monitor
= 0;
3193 case QEMU_OPTION_debugcon
:
3194 add_device_config(DEV_DEBUGCON
, optarg
);
3196 case QEMU_OPTION_loadvm
:
3199 case QEMU_OPTION_full_screen
:
3203 case QEMU_OPTION_no_frame
:
3206 case QEMU_OPTION_alt_grab
:
3209 case QEMU_OPTION_ctrl_grab
:
3212 case QEMU_OPTION_no_quit
:
3215 case QEMU_OPTION_sdl
:
3216 display_type
= DT_SDL
;
3219 case QEMU_OPTION_pidfile
:
3222 case QEMU_OPTION_win2k_hack
:
3223 win2k_install_hack
= 1;
3225 case QEMU_OPTION_rtc_td_hack
:
3228 case QEMU_OPTION_acpitable
:
3229 do_acpitable_option(optarg
);
3231 case QEMU_OPTION_smbios
:
3232 do_smbios_option(optarg
);
3234 case QEMU_OPTION_enable_kvm
:
3237 case QEMU_OPTION_usb
:
3240 case QEMU_OPTION_usbdevice
:
3242 add_device_config(DEV_USB
, optarg
);
3244 case QEMU_OPTION_device
:
3245 if (!qemu_opts_parse(&qemu_device_opts
, optarg
, 1)) {
3249 case QEMU_OPTION_smp
:
3252 fprintf(stderr
, "Invalid number of CPUs\n");
3255 if (max_cpus
< smp_cpus
) {
3256 fprintf(stderr
, "maxcpus must be equal to or greater than "
3260 if (max_cpus
> 255) {
3261 fprintf(stderr
, "Unsupported number of maxcpus\n");
3265 case QEMU_OPTION_vnc
:
3266 display_type
= DT_VNC
;
3267 vnc_display
= optarg
;
3269 case QEMU_OPTION_no_acpi
:
3272 case QEMU_OPTION_no_hpet
:
3275 case QEMU_OPTION_balloon
:
3276 if (balloon_parse(optarg
) < 0) {
3277 fprintf(stderr
, "Unknown -balloon argument %s\n", optarg
);
3281 case QEMU_OPTION_no_reboot
:
3284 case QEMU_OPTION_no_shutdown
:
3287 case QEMU_OPTION_show_cursor
:
3290 case QEMU_OPTION_uuid
:
3291 if(qemu_uuid_parse(optarg
, qemu_uuid
) < 0) {
3292 fprintf(stderr
, "Fail to parse UUID string."
3293 " Wrong format.\n");
3298 case QEMU_OPTION_daemonize
:
3302 case QEMU_OPTION_option_rom
:
3303 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
3304 fprintf(stderr
, "Too many option ROMs\n");
3307 option_rom
[nb_option_roms
] = optarg
;
3310 case QEMU_OPTION_semihosting
:
3311 semihosting_enabled
= 1;
3313 case QEMU_OPTION_name
:
3314 qemu_name
= qemu_strdup(optarg
);
3316 char *p
= strchr(qemu_name
, ',');
3319 if (strncmp(p
, "process=", 8)) {
3320 fprintf(stderr
, "Unknown subargument %s to -name", p
);
3328 case QEMU_OPTION_prom_env
:
3329 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
3330 fprintf(stderr
, "Too many prom variables\n");
3333 prom_envs
[nb_prom_envs
] = optarg
;
3336 case QEMU_OPTION_old_param
:
3339 case QEMU_OPTION_clock
:
3340 configure_alarms(optarg
);
3342 case QEMU_OPTION_startdate
:
3343 configure_rtc_date_offset(optarg
, 1);
3345 case QEMU_OPTION_rtc
:
3346 opts
= qemu_opts_parse(&qemu_rtc_opts
, optarg
, 0);
3350 configure_rtc(opts
);
3352 case QEMU_OPTION_tb_size
:
3353 tb_size
= strtol(optarg
, NULL
, 0);
3357 case QEMU_OPTION_icount
:
3358 icount_option
= optarg
;
3360 case QEMU_OPTION_incoming
:
3363 case QEMU_OPTION_nodefaults
:
3365 default_parallel
= 0;
3366 default_virtcon
= 0;
3367 default_monitor
= 0;
3375 case QEMU_OPTION_chroot
:
3376 chroot_dir
= optarg
;
3378 case QEMU_OPTION_runas
:
3382 case QEMU_OPTION_xen_domid
:
3383 if (!(xen_available())) {
3384 printf("Option %s not supported for this target\n", popt
->name
);
3387 xen_domid
= atoi(optarg
);
3389 case QEMU_OPTION_xen_create
:
3390 if (!(xen_available())) {
3391 printf("Option %s not supported for this target\n", popt
->name
);
3394 xen_mode
= XEN_CREATE
;
3396 case QEMU_OPTION_xen_attach
:
3397 if (!(xen_available())) {
3398 printf("Option %s not supported for this target\n", popt
->name
);
3401 xen_mode
= XEN_ATTACH
;
3403 case QEMU_OPTION_readconfig
:
3405 int ret
= qemu_read_config_file(optarg
);
3407 fprintf(stderr
, "read config %s: %s\n", optarg
,
3413 case QEMU_OPTION_writeconfig
:
3416 if (strcmp(optarg
, "-") == 0) {
3419 fp
= fopen(optarg
, "w");
3421 fprintf(stderr
, "open %s: %s\n", optarg
, strerror(errno
));
3425 qemu_config_write(fp
);
3434 /* If no data_dir is specified then try to find it relative to the
3437 data_dir
= find_datadir(argv
[0]);
3439 /* If all else fails use the install patch specified when building. */
3441 data_dir
= CONFIG_QEMU_SHAREDIR
;
3445 * Default to max_cpus = smp_cpus, in case the user doesn't
3446 * specify a max_cpus value.
3449 max_cpus
= smp_cpus
;
3451 machine
->max_cpus
= machine
->max_cpus
?: 1; /* Default to UP */
3452 if (smp_cpus
> machine
->max_cpus
) {
3453 fprintf(stderr
, "Number of SMP cpus requested (%d), exceeds max cpus "
3454 "supported by machine `%s' (%d)\n", smp_cpus
, machine
->name
,
3459 qemu_opts_foreach(&qemu_device_opts
, default_driver_check
, NULL
, 0);
3460 qemu_opts_foreach(&qemu_global_opts
, default_driver_check
, NULL
, 0);
3462 if (machine
->no_serial
) {
3465 if (machine
->no_parallel
) {
3466 default_parallel
= 0;
3468 if (!machine
->use_virtcon
) {
3469 default_virtcon
= 0;
3471 if (machine
->no_vga
) {
3474 if (machine
->no_floppy
) {
3477 if (machine
->no_cdrom
) {
3480 if (machine
->no_sdcard
) {
3484 if (display_type
== DT_NOGRAPHIC
) {
3485 if (default_parallel
)
3486 add_device_config(DEV_PARALLEL
, "null");
3487 if (default_serial
&& default_monitor
) {
3488 add_device_config(DEV_SERIAL
, "mon:stdio");
3489 } else if (default_virtcon
&& default_monitor
) {
3490 add_device_config(DEV_VIRTCON
, "mon:stdio");
3493 add_device_config(DEV_SERIAL
, "stdio");
3494 if (default_virtcon
)
3495 add_device_config(DEV_VIRTCON
, "stdio");
3496 if (default_monitor
)
3497 monitor_parse("stdio", "readline");
3501 add_device_config(DEV_SERIAL
, "vc:80Cx24C");
3502 if (default_parallel
)
3503 add_device_config(DEV_PARALLEL
, "vc:80Cx24C");
3504 if (default_monitor
)
3505 monitor_parse("vc:80Cx24C", "readline");
3506 if (default_virtcon
)
3507 add_device_config(DEV_VIRTCON
, "vc:80Cx24C");
3510 vga_interface_type
= VGA_CIRRUS
;
3512 if (qemu_opts_foreach(&qemu_chardev_opts
, chardev_init_func
, NULL
, 1) != 0)
3515 if (qemu_opts_foreach(&qemu_fsdev_opts
, fsdev_init_func
, NULL
, 1) != 0) {
3524 if (pipe(fds
) == -1)
3535 len
= read(fds
[0], &status
, 1);
3536 if (len
== -1 && (errno
== EINTR
))
3541 else if (status
== 1) {
3542 fprintf(stderr
, "Could not acquire pidfile: %s\n", strerror(errno
));
3550 qemu_set_cloexec(fds
[1]);
3562 signal(SIGTSTP
, SIG_IGN
);
3563 signal(SIGTTOU
, SIG_IGN
);
3564 signal(SIGTTIN
, SIG_IGN
);
3568 if (pid_file
&& qemu_create_pidfile(pid_file
) != 0) {
3572 if (write(fds
[1], &status
, 1) != 1) {
3573 perror("daemonize. Writing to pipe\n");
3577 fprintf(stderr
, "Could not acquire pid file: %s\n", strerror(errno
));
3582 int ret
= kvm_init(smp_cpus
);
3584 if (!kvm_available()) {
3585 printf("KVM not supported for this target\n");
3587 fprintf(stderr
, "failed to initialize KVM: %s\n", strerror(-ret
));
3593 if (qemu_init_main_loop()) {
3594 fprintf(stderr
, "qemu_init_main_loop failed\n");
3597 linux_boot
= (kernel_filename
!= NULL
);
3599 if (!linux_boot
&& *kernel_cmdline
!= '\0') {
3600 fprintf(stderr
, "-append only allowed with -kernel option\n");
3604 if (!linux_boot
&& initrd_filename
!= NULL
) {
3605 fprintf(stderr
, "-initrd only allowed with -kernel option\n");
3610 /* Win32 doesn't support line-buffering and requires size >= 2 */
3611 setvbuf(stdout
, NULL
, _IOLBF
, 0);
3614 if (init_timer_alarm() < 0) {
3615 fprintf(stderr
, "could not initialize alarm timer\n");
3618 configure_icount(icount_option
);
3622 if (net_init_clients() < 0) {
3626 /* init the bluetooth world */
3627 if (foreach_device_config(DEV_BT
, bt_parse
))
3630 /* init the memory */
3632 ram_size
= DEFAULT_RAM_SIZE
* 1024 * 1024;
3634 /* init the dynamic translator */
3635 cpu_exec_init_all(tb_size
* 1024 * 1024);
3637 bdrv_init_with_whitelist();
3641 if (default_cdrom
) {
3642 /* we always create the cdrom drive, even if no disk is there */
3643 drive_add(NULL
, CDROM_ALIAS
);
3646 if (default_floppy
) {
3647 /* we always create at least one floppy */
3648 drive_add(NULL
, FD_ALIAS
, 0);
3651 if (default_sdcard
) {
3652 /* we always create one sd slot, even if no card is in it */
3653 drive_add(NULL
, SD_ALIAS
);
3656 /* open the virtual block devices */
3658 qemu_opts_foreach(&qemu_drive_opts
, drive_enable_snapshot
, NULL
, 0);
3659 if (qemu_opts_foreach(&qemu_drive_opts
, drive_init_func
, machine
, 1) != 0)
3662 register_savevm_live("ram", 0, 3, NULL
, ram_save_live
, NULL
,
3665 if (nb_numa_nodes
> 0) {
3668 if (nb_numa_nodes
> smp_cpus
) {
3669 nb_numa_nodes
= smp_cpus
;
3672 /* If no memory size if given for any node, assume the default case
3673 * and distribute the available memory equally across all nodes
3675 for (i
= 0; i
< nb_numa_nodes
; i
++) {
3676 if (node_mem
[i
] != 0)
3679 if (i
== nb_numa_nodes
) {
3680 uint64_t usedmem
= 0;
3682 /* On Linux, the each node's border has to be 8MB aligned,
3683 * the final node gets the rest.
3685 for (i
= 0; i
< nb_numa_nodes
- 1; i
++) {
3686 node_mem
[i
] = (ram_size
/ nb_numa_nodes
) & ~((1 << 23UL) - 1);
3687 usedmem
+= node_mem
[i
];
3689 node_mem
[i
] = ram_size
- usedmem
;
3692 for (i
= 0; i
< nb_numa_nodes
; i
++) {
3693 if (node_cpumask
[i
] != 0)
3696 /* assigning the VCPUs round-robin is easier to implement, guest OSes
3697 * must cope with this anyway, because there are BIOSes out there in
3698 * real machines which also use this scheme.
3700 if (i
== nb_numa_nodes
) {
3701 for (i
= 0; i
< smp_cpus
; i
++) {
3702 node_cpumask
[i
% nb_numa_nodes
] |= 1 << i
;
3707 if (qemu_opts_foreach(&qemu_mon_opts
, mon_init_func
, NULL
, 1) != 0) {
3711 if (foreach_device_config(DEV_SERIAL
, serial_parse
) < 0)
3713 if (foreach_device_config(DEV_PARALLEL
, parallel_parse
) < 0)
3715 if (foreach_device_config(DEV_VIRTCON
, virtcon_parse
) < 0)
3717 if (foreach_device_config(DEV_DEBUGCON
, debugcon_parse
) < 0)
3720 module_call_init(MODULE_INIT_DEVICE
);
3722 if (qemu_opts_foreach(&qemu_device_opts
, device_help_func
, NULL
, 0) != 0)
3726 i
= select_watchdog(watchdog
);
3728 exit (i
== 1 ? 1 : 0);
3731 if (machine
->compat_props
) {
3732 qdev_prop_register_global_list(machine
->compat_props
);
3736 machine
->init(ram_size
, boot_devices
,
3737 kernel_filename
, kernel_cmdline
, initrd_filename
, cpu_model
);
3739 cpu_synchronize_all_post_init();
3742 /* must be after terminal init, SDL library changes signal handlers */
3748 current_machine
= machine
;
3750 /* init USB devices */
3752 if (foreach_device_config(DEV_USB
, usb_parse
) < 0)
3756 /* init generic devices */
3757 if (qemu_opts_foreach(&qemu_device_opts
, device_init_func
, NULL
, 1) != 0)
3760 net_check_clients();
3762 /* just use the first displaystate for the moment */
3763 ds
= get_displaystate();
3765 if (display_type
== DT_DEFAULT
) {
3766 #if defined(CONFIG_SDL) || defined(CONFIG_COCOA)
3767 display_type
= DT_SDL
;
3769 display_type
= DT_VNC
;
3770 vnc_display
= "localhost:0,to=99";
3776 switch (display_type
) {
3779 #if defined(CONFIG_CURSES)
3781 curses_display_init(ds
, full_screen
);
3784 #if defined(CONFIG_SDL)
3786 sdl_display_init(ds
, full_screen
, no_frame
);
3788 #elif defined(CONFIG_COCOA)
3790 cocoa_display_init(ds
, full_screen
);
3794 vnc_display_init(ds
);
3795 if (vnc_display_open(ds
, vnc_display
) < 0)
3798 if (show_vnc_port
) {
3799 printf("VNC server running on `%s'\n", vnc_display_local_addr(ds
));
3807 dcl
= ds
->listeners
;
3808 while (dcl
!= NULL
) {
3809 if (dcl
->dpy_refresh
!= NULL
) {
3810 ds
->gui_timer
= qemu_new_timer(rt_clock
, gui_update
, ds
);
3811 qemu_mod_timer(ds
->gui_timer
, qemu_get_clock(rt_clock
));
3816 if (display_type
== DT_NOGRAPHIC
|| display_type
== DT_VNC
) {
3817 nographic_timer
= qemu_new_timer(rt_clock
, nographic_update
, NULL
);
3818 qemu_mod_timer(nographic_timer
, qemu_get_clock(rt_clock
));
3821 text_consoles_set_display(ds
);
3823 if (gdbstub_dev
&& gdbserver_start(gdbstub_dev
) < 0) {
3824 fprintf(stderr
, "qemu: could not open gdbserver on device '%s'\n",
3829 qdev_machine_creation_done();
3831 if (rom_load_all() != 0) {
3832 fprintf(stderr
, "rom loading failed\n");
3836 qemu_system_reset();
3838 if (load_vmstate(loadvm
) < 0) {
3844 qemu_start_incoming_migration(incoming
);
3845 } else if (autostart
) {
3855 len
= write(fds
[1], &status
, 1);
3856 if (len
== -1 && (errno
== EINTR
))
3863 perror("not able to chdir to /");
3866 TFR(fd
= qemu_open("/dev/null", O_RDWR
));
3872 pwd
= getpwnam(run_as
);
3874 fprintf(stderr
, "User \"%s\" doesn't exist\n", run_as
);
3880 if (chroot(chroot_dir
) < 0) {
3881 fprintf(stderr
, "chroot failed\n");
3885 perror("not able to chdir to /");
3891 if (setgid(pwd
->pw_gid
) < 0) {
3892 fprintf(stderr
, "Failed to setgid(%d)\n", pwd
->pw_gid
);
3895 if (setuid(pwd
->pw_uid
) < 0) {
3896 fprintf(stderr
, "Failed to setuid(%d)\n", pwd
->pw_uid
);
3899 if (setuid(0) != -1) {
3900 fprintf(stderr
, "Dropping privileges failed\n");