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_systm.h>
74 #include <netinet/ip.h>
75 #include <netinet/ip_icmp.h> // must come after ip.h
76 #include <netinet/udp.h>
77 #include <netinet/tcp.h>
81 /* See MySQL bug #7156 (http://bugs.mysql.com/bug.php?id=7156) for
82 discussion about Solaris header problems */
83 extern int madvise(caddr_t
, size_t, int);
88 #if defined(__OpenBSD__)
92 #if defined(CONFIG_VDE)
93 #include <libvdeplug.h>
101 #if defined(__APPLE__) || defined(main)
103 int qemu_main(int argc
, char **argv
, char **envp
);
104 int main(int argc
, char **argv
)
106 return qemu_main(argc
, argv
, NULL
);
109 #define main qemu_main
111 #endif /* CONFIG_SDL */
115 #define main qemu_main
116 #endif /* CONFIG_COCOA */
119 #include "hw/boards.h"
121 #include "hw/pcmcia.h"
126 #include "hw/watchdog.h"
127 #include "hw/smbios.h"
130 #include "hw/loader.h"
133 #include "net/slirp.h"
138 #include "qemu-timer.h"
139 #include "qemu-char.h"
140 #include "cache-utils.h"
142 #include "block_int.h"
143 #include "block-migration.h"
145 #include "audio/audio.h"
146 #include "migration.h"
148 #include "qemu-option.h"
149 #include "qemu-config.h"
150 #include "qemu-objects.h"
151 #include "qemu-options.h"
153 #include "fsdev/qemu-fsdev.h"
158 #include "qemu_socket.h"
160 #include "slirp/libslirp.h"
162 #include "qemu-queue.h"
164 #include "arch_init.h"
167 //#define DEBUG_SLIRP
169 #define DEFAULT_RAM_SIZE 128
171 #define MAX_VIRTIO_CONSOLES 1
173 static const char *data_dir
;
174 const char *bios_name
= NULL
;
175 /* Note: drives_table[MAX_DRIVES] is a dummy block driver if none available
176 to store the VM snapshots */
177 struct drivelist drives
= QTAILQ_HEAD_INITIALIZER(drives
);
178 struct driveoptlist driveopts
= QTAILQ_HEAD_INITIALIZER(driveopts
);
179 enum vga_retrace_method vga_retrace_method
= VGA_RETRACE_DUMB
;
180 DisplayType display_type
= DT_DEFAULT
;
181 const char* keyboard_layout
= NULL
;
183 const char *mem_path
= NULL
;
185 int mem_prealloc
= 0; /* force preallocation of physical target memory */
188 NICInfo nd_table
[MAX_NICS
];
191 static int rtc_utc
= 1;
192 static int rtc_date_offset
= -1; /* -1 means no change */
193 QEMUClock
*rtc_clock
;
194 int vga_interface_type
= VGA_NONE
;
195 static int full_screen
= 0;
197 static int no_frame
= 0;
200 CharDriverState
*serial_hds
[MAX_SERIAL_PORTS
];
201 CharDriverState
*parallel_hds
[MAX_PARALLEL_PORTS
];
202 CharDriverState
*virtcon_hds
[MAX_VIRTIO_CONSOLES
];
203 int win2k_install_hack
= 0;
211 const char *vnc_display
;
212 int acpi_enabled
= 1;
218 int graphic_rotate
= 0;
219 uint8_t irq0override
= 1;
223 const char *watchdog
;
224 const char *option_rom
[MAX_OPTION_ROMS
];
226 int semihosting_enabled
= 0;
228 const char *qemu_name
;
231 unsigned int nb_prom_envs
= 0;
232 const char *prom_envs
[MAX_PROM_ENVS
];
236 uint64_t node_mem
[MAX_NODES
];
237 uint64_t node_cpumask
[MAX_NODES
];
239 static QEMUTimer
*nographic_timer
;
241 uint8_t qemu_uuid
[16];
243 static QEMUBootSetHandler
*boot_set_handler
;
244 static void *boot_set_opaque
;
248 enum xen_mode xen_mode
= XEN_EMULATE
;
250 static int default_serial
= 1;
251 static int default_parallel
= 1;
252 static int default_virtcon
= 1;
253 static int default_monitor
= 1;
254 static int default_vga
= 1;
255 static int default_floppy
= 1;
256 static int default_cdrom
= 1;
257 static int default_sdcard
= 1;
263 { .driver
= "isa-serial", .flag
= &default_serial
},
264 { .driver
= "isa-parallel", .flag
= &default_parallel
},
265 { .driver
= "isa-fdc", .flag
= &default_floppy
},
266 { .driver
= "ide-drive", .flag
= &default_cdrom
},
267 { .driver
= "virtio-serial-pci", .flag
= &default_virtcon
},
268 { .driver
= "virtio-serial-s390", .flag
= &default_virtcon
},
269 { .driver
= "virtio-serial", .flag
= &default_virtcon
},
270 { .driver
= "VGA", .flag
= &default_vga
},
271 { .driver
= "cirrus-vga", .flag
= &default_vga
},
272 { .driver
= "vmware-svga", .flag
= &default_vga
},
275 static int default_driver_check(QemuOpts
*opts
, void *opaque
)
277 const char *driver
= qemu_opt_get(opts
, "driver");
282 for (i
= 0; i
< ARRAY_SIZE(default_list
); i
++) {
283 if (strcmp(default_list
[i
].driver
, driver
) != 0)
285 *(default_list
[i
].flag
) = 0;
290 /***********************************************************/
292 static void set_proc_name(const char *s
)
294 #if defined(__linux__) && defined(PR_SET_NAME)
298 name
[sizeof(name
) - 1] = 0;
299 strncpy(name
, s
, sizeof(name
));
300 /* Could rewrite argv[0] too, but that's a bit more complicated.
301 This simple way is enough for `top'. */
302 prctl(PR_SET_NAME
, name
);
306 /***********************************************************/
307 /* real time host monotonic timer */
309 /* compute with 96 bit intermediate result: (a*b)/c */
310 uint64_t muldiv64(uint64_t a
, uint32_t b
, uint32_t c
)
315 #ifdef HOST_WORDS_BIGENDIAN
325 rl
= (uint64_t)u
.l
.low
* (uint64_t)b
;
326 rh
= (uint64_t)u
.l
.high
* (uint64_t)b
;
329 res
.l
.low
= (((rh
% c
) << 32) + (rl
& 0xffffffff)) / c
;
333 /***********************************************************/
334 /* host time/date access */
335 void qemu_get_timedate(struct tm
*tm
, int offset
)
342 if (rtc_date_offset
== -1) {
346 ret
= localtime(&ti
);
348 ti
-= rtc_date_offset
;
352 memcpy(tm
, ret
, sizeof(struct tm
));
355 int qemu_timedate_diff(struct tm
*tm
)
359 if (rtc_date_offset
== -1)
361 seconds
= mktimegm(tm
);
363 seconds
= mktime(tm
);
365 seconds
= mktimegm(tm
) + rtc_date_offset
;
367 return seconds
- time(NULL
);
370 void rtc_change_mon_event(struct tm
*tm
)
374 data
= qobject_from_jsonf("{ 'offset': %d }", qemu_timedate_diff(tm
));
375 monitor_protocol_event(QEVENT_RTC_CHANGE
, data
);
376 qobject_decref(data
);
379 static void configure_rtc_date_offset(const char *startdate
, int legacy
)
381 time_t rtc_start_date
;
384 if (!strcmp(startdate
, "now") && legacy
) {
385 rtc_date_offset
= -1;
387 if (sscanf(startdate
, "%d-%d-%dT%d:%d:%d",
395 } else if (sscanf(startdate
, "%d-%d-%d",
407 rtc_start_date
= mktimegm(&tm
);
408 if (rtc_start_date
== -1) {
410 fprintf(stderr
, "Invalid date format. Valid formats are:\n"
411 "'2006-06-17T16:01:21' or '2006-06-17'\n");
414 rtc_date_offset
= time(NULL
) - rtc_start_date
;
418 static void configure_rtc(QemuOpts
*opts
)
422 value
= qemu_opt_get(opts
, "base");
424 if (!strcmp(value
, "utc")) {
426 } else if (!strcmp(value
, "localtime")) {
429 configure_rtc_date_offset(value
, 0);
432 value
= qemu_opt_get(opts
, "clock");
434 if (!strcmp(value
, "host")) {
435 rtc_clock
= host_clock
;
436 } else if (!strcmp(value
, "vm")) {
437 rtc_clock
= vm_clock
;
439 fprintf(stderr
, "qemu: invalid option value '%s'\n", value
);
443 value
= qemu_opt_get(opts
, "driftfix");
445 if (!strcmp(value
, "slew")) {
447 } else if (!strcmp(value
, "none")) {
450 fprintf(stderr
, "qemu: invalid option value '%s'\n", value
);
456 /***********************************************************/
457 /* Bluetooth support */
460 static struct HCIInfo
*hci_table
[MAX_NICS
];
462 static struct bt_vlan_s
{
463 struct bt_scatternet_s net
;
465 struct bt_vlan_s
*next
;
468 /* find or alloc a new bluetooth "VLAN" */
469 static struct bt_scatternet_s
*qemu_find_bt_vlan(int id
)
471 struct bt_vlan_s
**pvlan
, *vlan
;
472 for (vlan
= first_bt_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
476 vlan
= qemu_mallocz(sizeof(struct bt_vlan_s
));
478 pvlan
= &first_bt_vlan
;
479 while (*pvlan
!= NULL
)
480 pvlan
= &(*pvlan
)->next
;
485 static void null_hci_send(struct HCIInfo
*hci
, const uint8_t *data
, int len
)
489 static int null_hci_addr_set(struct HCIInfo
*hci
, const uint8_t *bd_addr
)
494 static struct HCIInfo null_hci
= {
495 .cmd_send
= null_hci_send
,
496 .sco_send
= null_hci_send
,
497 .acl_send
= null_hci_send
,
498 .bdaddr_set
= null_hci_addr_set
,
501 struct HCIInfo
*qemu_next_hci(void)
503 if (cur_hci
== nb_hcis
)
506 return hci_table
[cur_hci
++];
509 static struct HCIInfo
*hci_init(const char *str
)
512 struct bt_scatternet_s
*vlan
= 0;
514 if (!strcmp(str
, "null"))
517 else if (!strncmp(str
, "host", 4) && (str
[4] == '\0' || str
[4] == ':'))
519 return bt_host_hci(str
[4] ? str
+ 5 : "hci0");
520 else if (!strncmp(str
, "hci", 3)) {
523 if (!strncmp(str
+ 3, ",vlan=", 6)) {
524 vlan
= qemu_find_bt_vlan(strtol(str
+ 9, &endp
, 0));
529 vlan
= qemu_find_bt_vlan(0);
531 return bt_new_hci(vlan
);
534 fprintf(stderr
, "qemu: Unknown bluetooth HCI `%s'.\n", str
);
539 static int bt_hci_parse(const char *str
)
544 if (nb_hcis
>= MAX_NICS
) {
545 fprintf(stderr
, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS
);
558 bdaddr
.b
[5] = 0x56 + nb_hcis
;
559 hci
->bdaddr_set(hci
, bdaddr
.b
);
561 hci_table
[nb_hcis
++] = hci
;
566 static void bt_vhci_add(int vlan_id
)
568 struct bt_scatternet_s
*vlan
= qemu_find_bt_vlan(vlan_id
);
571 fprintf(stderr
, "qemu: warning: adding a VHCI to "
572 "an empty scatternet %i\n", vlan_id
);
574 bt_vhci_init(bt_new_hci(vlan
));
577 static struct bt_device_s
*bt_device_add(const char *opt
)
579 struct bt_scatternet_s
*vlan
;
581 char *endp
= strstr(opt
, ",vlan=");
582 int len
= (endp
? endp
- opt
: strlen(opt
)) + 1;
585 pstrcpy(devname
, MIN(sizeof(devname
), len
), opt
);
588 vlan_id
= strtol(endp
+ 6, &endp
, 0);
590 fprintf(stderr
, "qemu: unrecognised bluetooth vlan Id\n");
595 vlan
= qemu_find_bt_vlan(vlan_id
);
598 fprintf(stderr
, "qemu: warning: adding a slave device to "
599 "an empty scatternet %i\n", vlan_id
);
601 if (!strcmp(devname
, "keyboard"))
602 return bt_keyboard_init(vlan
);
604 fprintf(stderr
, "qemu: unsupported bluetooth device `%s'\n", devname
);
608 static int bt_parse(const char *opt
)
610 const char *endp
, *p
;
613 if (strstart(opt
, "hci", &endp
)) {
614 if (!*endp
|| *endp
== ',') {
616 if (!strstart(endp
, ",vlan=", 0))
619 return bt_hci_parse(opt
);
621 } else if (strstart(opt
, "vhci", &endp
)) {
622 if (!*endp
|| *endp
== ',') {
624 if (strstart(endp
, ",vlan=", &p
)) {
625 vlan
= strtol(p
, (char **) &endp
, 0);
627 fprintf(stderr
, "qemu: bad scatternet '%s'\n", p
);
631 fprintf(stderr
, "qemu: bad parameter '%s'\n", endp
+ 1);
640 } else if (strstart(opt
, "device:", &endp
))
641 return !bt_device_add(endp
);
643 fprintf(stderr
, "qemu: bad bluetooth parameter '%s'\n", opt
);
647 /***********************************************************/
648 /* QEMU Block devices */
650 #define HD_ALIAS "index=%d,media=disk"
651 #define CDROM_ALIAS "index=2,media=cdrom"
652 #define FD_ALIAS "index=%d,if=floppy"
653 #define PFLASH_ALIAS "if=pflash"
654 #define MTD_ALIAS "if=mtd"
655 #define SD_ALIAS "index=0,if=sd"
657 QemuOpts
*drive_add(const char *file
, const char *fmt
, ...)
664 vsnprintf(optstr
, sizeof(optstr
), fmt
, ap
);
667 opts
= qemu_opts_parse(&qemu_drive_opts
, optstr
, 0);
672 qemu_opt_set(opts
, "file", file
);
676 DriveInfo
*drive_get(BlockInterfaceType type
, int bus
, int unit
)
680 /* seek interface, bus and unit */
682 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
683 if (dinfo
->type
== type
&&
692 DriveInfo
*drive_get_by_id(const char *id
)
696 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
697 if (strcmp(id
, dinfo
->id
))
704 int drive_get_max_bus(BlockInterfaceType type
)
710 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
711 if(dinfo
->type
== type
&&
712 dinfo
->bus
> max_bus
)
713 max_bus
= dinfo
->bus
;
718 const char *drive_get_serial(BlockDriverState
*bdrv
)
722 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
723 if (dinfo
->bdrv
== bdrv
)
724 return dinfo
->serial
;
730 BlockInterfaceErrorAction
drive_get_on_error(
731 BlockDriverState
*bdrv
, int is_read
)
735 QTAILQ_FOREACH(dinfo
, &drives
, next
) {
736 if (dinfo
->bdrv
== bdrv
)
737 return is_read
? dinfo
->on_read_error
: dinfo
->on_write_error
;
740 return is_read
? BLOCK_ERR_REPORT
: BLOCK_ERR_STOP_ENOSPC
;
743 static void bdrv_format_print(void *opaque
, const char *name
)
745 fprintf(stderr
, " %s", name
);
748 void drive_uninit(DriveInfo
*dinfo
)
750 qemu_opts_del(dinfo
->opts
);
751 bdrv_delete(dinfo
->bdrv
);
752 QTAILQ_REMOVE(&drives
, dinfo
, next
);
756 static int parse_block_error_action(const char *buf
, int is_read
)
758 if (!strcmp(buf
, "ignore")) {
759 return BLOCK_ERR_IGNORE
;
760 } else if (!is_read
&& !strcmp(buf
, "enospc")) {
761 return BLOCK_ERR_STOP_ENOSPC
;
762 } else if (!strcmp(buf
, "stop")) {
763 return BLOCK_ERR_STOP_ANY
;
764 } else if (!strcmp(buf
, "report")) {
765 return BLOCK_ERR_REPORT
;
767 fprintf(stderr
, "qemu: '%s' invalid %s error action\n",
768 buf
, is_read
? "read" : "write");
773 DriveInfo
*drive_init(QemuOpts
*opts
, void *opaque
,
777 const char *file
= NULL
;
780 const char *mediastr
= "";
781 BlockInterfaceType type
;
782 enum { MEDIA_DISK
, MEDIA_CDROM
} media
;
784 int cyls
, heads
, secs
, translation
;
785 BlockDriver
*drv
= NULL
;
786 QEMUMachine
*machine
= opaque
;
791 int on_read_error
, on_write_error
;
798 translation
= BIOS_ATA_TRANSLATION_AUTO
;
800 if (machine
&& machine
->use_scsi
) {
802 max_devs
= MAX_SCSI_DEVS
;
803 pstrcpy(devname
, sizeof(devname
), "scsi");
806 max_devs
= MAX_IDE_DEVS
;
807 pstrcpy(devname
, sizeof(devname
), "ide");
811 /* extract parameters */
812 bus_id
= qemu_opt_get_number(opts
, "bus", 0);
813 unit_id
= qemu_opt_get_number(opts
, "unit", -1);
814 index
= qemu_opt_get_number(opts
, "index", -1);
816 cyls
= qemu_opt_get_number(opts
, "cyls", 0);
817 heads
= qemu_opt_get_number(opts
, "heads", 0);
818 secs
= qemu_opt_get_number(opts
, "secs", 0);
820 snapshot
= qemu_opt_get_bool(opts
, "snapshot", 0);
821 ro
= qemu_opt_get_bool(opts
, "readonly", 0);
823 file
= qemu_opt_get(opts
, "file");
824 serial
= qemu_opt_get(opts
, "serial");
826 if ((buf
= qemu_opt_get(opts
, "if")) != NULL
) {
827 pstrcpy(devname
, sizeof(devname
), buf
);
828 if (!strcmp(buf
, "ide")) {
830 max_devs
= MAX_IDE_DEVS
;
831 } else if (!strcmp(buf
, "scsi")) {
833 max_devs
= MAX_SCSI_DEVS
;
834 } else if (!strcmp(buf
, "floppy")) {
837 } else if (!strcmp(buf
, "pflash")) {
840 } else if (!strcmp(buf
, "mtd")) {
843 } else if (!strcmp(buf
, "sd")) {
846 } else if (!strcmp(buf
, "virtio")) {
849 } else if (!strcmp(buf
, "xen")) {
852 } else if (!strcmp(buf
, "none")) {
856 fprintf(stderr
, "qemu: unsupported bus type '%s'\n", buf
);
861 if (cyls
|| heads
|| secs
) {
862 if (cyls
< 1 || (type
== IF_IDE
&& cyls
> 16383)) {
863 fprintf(stderr
, "qemu: '%s' invalid physical cyls number\n", buf
);
866 if (heads
< 1 || (type
== IF_IDE
&& heads
> 16)) {
867 fprintf(stderr
, "qemu: '%s' invalid physical heads number\n", buf
);
870 if (secs
< 1 || (type
== IF_IDE
&& secs
> 63)) {
871 fprintf(stderr
, "qemu: '%s' invalid physical secs number\n", buf
);
876 if ((buf
= qemu_opt_get(opts
, "trans")) != NULL
) {
879 "qemu: '%s' trans must be used with cyls,heads and secs\n",
883 if (!strcmp(buf
, "none"))
884 translation
= BIOS_ATA_TRANSLATION_NONE
;
885 else if (!strcmp(buf
, "lba"))
886 translation
= BIOS_ATA_TRANSLATION_LBA
;
887 else if (!strcmp(buf
, "auto"))
888 translation
= BIOS_ATA_TRANSLATION_AUTO
;
890 fprintf(stderr
, "qemu: '%s' invalid translation type\n", buf
);
895 if ((buf
= qemu_opt_get(opts
, "media")) != NULL
) {
896 if (!strcmp(buf
, "disk")) {
898 } else if (!strcmp(buf
, "cdrom")) {
899 if (cyls
|| secs
|| heads
) {
901 "qemu: '%s' invalid physical CHS format\n", buf
);
906 fprintf(stderr
, "qemu: '%s' invalid media\n", buf
);
911 if ((buf
= qemu_opt_get(opts
, "cache")) != NULL
) {
912 if (!strcmp(buf
, "off") || !strcmp(buf
, "none")) {
913 bdrv_flags
|= BDRV_O_NOCACHE
;
914 } else if (!strcmp(buf
, "writeback")) {
915 bdrv_flags
|= BDRV_O_CACHE_WB
;
916 } else if (!strcmp(buf
, "unsafe")) {
917 bdrv_flags
|= BDRV_O_CACHE_WB
;
918 bdrv_flags
|= BDRV_O_NO_FLUSH
;
919 } else if (!strcmp(buf
, "writethrough")) {
920 /* this is the default */
922 fprintf(stderr
, "qemu: invalid cache option\n");
927 #ifdef CONFIG_LINUX_AIO
928 if ((buf
= qemu_opt_get(opts
, "aio")) != NULL
) {
929 if (!strcmp(buf
, "native")) {
930 bdrv_flags
|= BDRV_O_NATIVE_AIO
;
931 } else if (!strcmp(buf
, "threads")) {
932 /* this is the default */
934 fprintf(stderr
, "qemu: invalid aio option\n");
940 if ((buf
= qemu_opt_get(opts
, "format")) != NULL
) {
941 if (strcmp(buf
, "?") == 0) {
942 fprintf(stderr
, "qemu: Supported formats:");
943 bdrv_iterate_format(bdrv_format_print
, NULL
);
944 fprintf(stderr
, "\n");
947 drv
= bdrv_find_whitelisted_format(buf
);
949 fprintf(stderr
, "qemu: '%s' invalid format\n", buf
);
954 on_write_error
= BLOCK_ERR_STOP_ENOSPC
;
955 if ((buf
= qemu_opt_get(opts
, "werror")) != NULL
) {
956 if (type
!= IF_IDE
&& type
!= IF_SCSI
&& type
!= IF_VIRTIO
&& type
!= IF_NONE
) {
957 fprintf(stderr
, "werror is no supported by this format\n");
961 on_write_error
= parse_block_error_action(buf
, 0);
962 if (on_write_error
< 0) {
967 on_read_error
= BLOCK_ERR_REPORT
;
968 if ((buf
= qemu_opt_get(opts
, "rerror")) != NULL
) {
969 if (type
!= IF_IDE
&& type
!= IF_VIRTIO
&& type
!= IF_NONE
) {
970 fprintf(stderr
, "rerror is no supported by this format\n");
974 on_read_error
= parse_block_error_action(buf
, 1);
975 if (on_read_error
< 0) {
980 if ((devaddr
= qemu_opt_get(opts
, "addr")) != NULL
) {
981 if (type
!= IF_VIRTIO
) {
982 fprintf(stderr
, "addr is not supported\n");
987 /* compute bus and unit according index */
990 if (bus_id
!= 0 || unit_id
!= -1) {
992 "qemu: index cannot be used with bus and unit\n");
1000 unit_id
= index
% max_devs
;
1001 bus_id
= index
/ max_devs
;
1005 /* if user doesn't specify a unit_id,
1006 * try to find the first free
1009 if (unit_id
== -1) {
1011 while (drive_get(type
, bus_id
, unit_id
) != NULL
) {
1013 if (max_devs
&& unit_id
>= max_devs
) {
1014 unit_id
-= max_devs
;
1022 if (max_devs
&& unit_id
>= max_devs
) {
1023 fprintf(stderr
, "qemu: unit %d too big (max is %d)\n",
1024 unit_id
, max_devs
- 1);
1029 * ignore multiple definitions
1032 if (drive_get(type
, bus_id
, unit_id
) != NULL
) {
1039 dinfo
= qemu_mallocz(sizeof(*dinfo
));
1040 if ((buf
= qemu_opts_id(opts
)) != NULL
) {
1041 dinfo
->id
= qemu_strdup(buf
);
1043 /* no id supplied -> create one */
1044 dinfo
->id
= qemu_mallocz(32);
1045 if (type
== IF_IDE
|| type
== IF_SCSI
)
1046 mediastr
= (media
== MEDIA_CDROM
) ? "-cd" : "-hd";
1048 snprintf(dinfo
->id
, 32, "%s%i%s%i",
1049 devname
, bus_id
, mediastr
, unit_id
);
1051 snprintf(dinfo
->id
, 32, "%s%s%i",
1052 devname
, mediastr
, unit_id
);
1054 dinfo
->bdrv
= bdrv_new(dinfo
->id
);
1055 dinfo
->devaddr
= devaddr
;
1057 dinfo
->bus
= bus_id
;
1058 dinfo
->unit
= unit_id
;
1059 dinfo
->on_read_error
= on_read_error
;
1060 dinfo
->on_write_error
= on_write_error
;
1063 strncpy(dinfo
->serial
, serial
, sizeof(serial
));
1064 QTAILQ_INSERT_TAIL(&drives
, dinfo
, next
);
1074 bdrv_set_geometry_hint(dinfo
->bdrv
, cyls
, heads
, secs
);
1075 bdrv_set_translation_hint(dinfo
->bdrv
, translation
);
1079 bdrv_set_type_hint(dinfo
->bdrv
, BDRV_TYPE_CDROM
);
1084 /* FIXME: This isn't really a floppy, but it's a reasonable
1087 bdrv_set_type_hint(dinfo
->bdrv
, BDRV_TYPE_FLOPPY
);
1093 /* add virtio block device */
1094 opts
= qemu_opts_create(&qemu_device_opts
, NULL
, 0);
1095 qemu_opt_set(opts
, "driver", "virtio-blk-pci");
1096 qemu_opt_set(opts
, "drive", dinfo
->id
);
1098 qemu_opt_set(opts
, "addr", devaddr
);
1108 /* always use cache=unsafe with snapshot */
1109 bdrv_flags
&= ~BDRV_O_CACHE_MASK
;
1110 bdrv_flags
|= (BDRV_O_SNAPSHOT
|BDRV_O_CACHE_WB
|BDRV_O_NO_FLUSH
);
1113 if (media
== MEDIA_CDROM
) {
1114 /* CDROM is fine for any interface, don't check. */
1116 } else if (ro
== 1) {
1117 if (type
!= IF_SCSI
&& type
!= IF_VIRTIO
&& type
!= IF_FLOPPY
&& type
!= IF_NONE
) {
1118 fprintf(stderr
, "qemu: readonly flag not supported for drive with this interface\n");
1123 bdrv_flags
|= ro
? 0 : BDRV_O_RDWR
;
1125 if (bdrv_open(dinfo
->bdrv
, file
, bdrv_flags
, drv
) < 0) {
1126 fprintf(stderr
, "qemu: could not open disk image %s: %s\n",
1127 file
, strerror(errno
));
1131 if (bdrv_key_required(dinfo
->bdrv
))
1137 static int drive_init_func(QemuOpts
*opts
, void *opaque
)
1139 QEMUMachine
*machine
= opaque
;
1140 int fatal_error
= 0;
1142 if (drive_init(opts
, machine
, &fatal_error
) == NULL
) {
1149 static int drive_enable_snapshot(QemuOpts
*opts
, void *opaque
)
1151 if (NULL
== qemu_opt_get(opts
, "snapshot")) {
1152 qemu_opt_set(opts
, "snapshot", "on");
1157 void qemu_register_boot_set(QEMUBootSetHandler
*func
, void *opaque
)
1159 boot_set_handler
= func
;
1160 boot_set_opaque
= opaque
;
1163 int qemu_boot_set(const char *boot_devices
)
1165 if (!boot_set_handler
) {
1168 return boot_set_handler(boot_set_opaque
, boot_devices
);
1171 static void validate_bootdevices(char *devices
)
1173 /* We just do some generic consistency checks */
1177 for (p
= devices
; *p
!= '\0'; p
++) {
1178 /* Allowed boot devices are:
1179 * a-b: floppy disk drives
1180 * c-f: IDE disk drives
1181 * g-m: machine implementation dependant drives
1182 * n-p: network devices
1183 * It's up to each machine implementation to check if the given boot
1184 * devices match the actual hardware implementation and firmware
1187 if (*p
< 'a' || *p
> 'p') {
1188 fprintf(stderr
, "Invalid boot device '%c'\n", *p
);
1191 if (bitmap
& (1 << (*p
- 'a'))) {
1192 fprintf(stderr
, "Boot device '%c' was given twice\n", *p
);
1195 bitmap
|= 1 << (*p
- 'a');
1199 static void restore_boot_devices(void *opaque
)
1201 char *standard_boot_devices
= opaque
;
1202 static int first
= 1;
1204 /* Restore boot order and remove ourselves after the first boot */
1210 qemu_boot_set(standard_boot_devices
);
1212 qemu_unregister_reset(restore_boot_devices
, standard_boot_devices
);
1213 qemu_free(standard_boot_devices
);
1216 static void numa_add(const char *optarg
)
1220 unsigned long long value
, endvalue
;
1223 optarg
= get_opt_name(option
, 128, optarg
, ',') + 1;
1224 if (!strcmp(option
, "node")) {
1225 if (get_param_value(option
, 128, "nodeid", optarg
) == 0) {
1226 nodenr
= nb_numa_nodes
;
1228 nodenr
= strtoull(option
, NULL
, 10);
1231 if (get_param_value(option
, 128, "mem", optarg
) == 0) {
1232 node_mem
[nodenr
] = 0;
1234 value
= strtoull(option
, &endptr
, 0);
1236 case 0: case 'M': case 'm':
1243 node_mem
[nodenr
] = value
;
1245 if (get_param_value(option
, 128, "cpus", optarg
) == 0) {
1246 node_cpumask
[nodenr
] = 0;
1248 value
= strtoull(option
, &endptr
, 10);
1251 fprintf(stderr
, "only 64 CPUs in NUMA mode supported.\n");
1253 if (*endptr
== '-') {
1254 endvalue
= strtoull(endptr
+1, &endptr
, 10);
1255 if (endvalue
>= 63) {
1258 "only 63 CPUs in NUMA mode supported.\n");
1260 value
= (2ULL << endvalue
) - (1ULL << value
);
1262 value
= 1ULL << value
;
1265 node_cpumask
[nodenr
] = value
;
1272 static void smp_parse(const char *optarg
)
1274 int smp
, sockets
= 0, threads
= 0, cores
= 0;
1278 smp
= strtoul(optarg
, &endptr
, 10);
1279 if (endptr
!= optarg
) {
1280 if (*endptr
== ',') {
1284 if (get_param_value(option
, 128, "sockets", endptr
) != 0)
1285 sockets
= strtoull(option
, NULL
, 10);
1286 if (get_param_value(option
, 128, "cores", endptr
) != 0)
1287 cores
= strtoull(option
, NULL
, 10);
1288 if (get_param_value(option
, 128, "threads", endptr
) != 0)
1289 threads
= strtoull(option
, NULL
, 10);
1290 if (get_param_value(option
, 128, "maxcpus", endptr
) != 0)
1291 max_cpus
= strtoull(option
, NULL
, 10);
1293 /* compute missing values, prefer sockets over cores over threads */
1294 if (smp
== 0 || sockets
== 0) {
1295 sockets
= sockets
> 0 ? sockets
: 1;
1296 cores
= cores
> 0 ? cores
: 1;
1297 threads
= threads
> 0 ? threads
: 1;
1299 smp
= cores
* threads
* sockets
;
1303 threads
= threads
> 0 ? threads
: 1;
1304 cores
= smp
/ (sockets
* threads
);
1307 threads
= smp
/ (cores
* sockets
);
1312 smp_cores
= cores
> 0 ? cores
: 1;
1313 smp_threads
= threads
> 0 ? threads
: 1;
1315 max_cpus
= smp_cpus
;
1318 /***********************************************************/
1321 static int usb_device_add(const char *devname
, int is_hotplug
)
1324 USBDevice
*dev
= NULL
;
1329 /* drivers with .usbdevice_name entry in USBDeviceInfo */
1330 dev
= usbdevice_create(devname
);
1334 /* the other ones */
1335 if (strstart(devname
, "host:", &p
)) {
1336 dev
= usb_host_device_open(p
);
1337 } else if (!strcmp(devname
, "bt") || strstart(devname
, "bt:", &p
)) {
1338 dev
= usb_bt_init(devname
[2] ? hci_init(p
) :
1339 bt_new_hci(qemu_find_bt_vlan(0)));
1350 static int usb_device_del(const char *devname
)
1355 if (strstart(devname
, "host:", &p
))
1356 return usb_host_device_close(p
);
1361 p
= strchr(devname
, '.');
1364 bus_num
= strtoul(devname
, NULL
, 0);
1365 addr
= strtoul(p
+ 1, NULL
, 0);
1367 return usb_device_delete_addr(bus_num
, addr
);
1370 static int usb_parse(const char *cmdline
)
1373 r
= usb_device_add(cmdline
, 0);
1375 fprintf(stderr
, "qemu: could not add USB device '%s'\n", cmdline
);
1380 void do_usb_add(Monitor
*mon
, const QDict
*qdict
)
1382 const char *devname
= qdict_get_str(qdict
, "devname");
1383 if (usb_device_add(devname
, 1) < 0) {
1384 error_report("could not add USB device '%s'", devname
);
1388 void do_usb_del(Monitor
*mon
, const QDict
*qdict
)
1390 const char *devname
= qdict_get_str(qdict
, "devname");
1391 if (usb_device_del(devname
) < 0) {
1392 error_report("could not delete USB device '%s'", devname
);
1396 /***********************************************************/
1397 /* PCMCIA/Cardbus */
1399 static struct pcmcia_socket_entry_s
{
1400 PCMCIASocket
*socket
;
1401 struct pcmcia_socket_entry_s
*next
;
1402 } *pcmcia_sockets
= 0;
1404 void pcmcia_socket_register(PCMCIASocket
*socket
)
1406 struct pcmcia_socket_entry_s
*entry
;
1408 entry
= qemu_malloc(sizeof(struct pcmcia_socket_entry_s
));
1409 entry
->socket
= socket
;
1410 entry
->next
= pcmcia_sockets
;
1411 pcmcia_sockets
= entry
;
1414 void pcmcia_socket_unregister(PCMCIASocket
*socket
)
1416 struct pcmcia_socket_entry_s
*entry
, **ptr
;
1418 ptr
= &pcmcia_sockets
;
1419 for (entry
= *ptr
; entry
; ptr
= &entry
->next
, entry
= *ptr
)
1420 if (entry
->socket
== socket
) {
1426 void pcmcia_info(Monitor
*mon
)
1428 struct pcmcia_socket_entry_s
*iter
;
1430 if (!pcmcia_sockets
)
1431 monitor_printf(mon
, "No PCMCIA sockets\n");
1433 for (iter
= pcmcia_sockets
; iter
; iter
= iter
->next
)
1434 monitor_printf(mon
, "%s: %s\n", iter
->socket
->slot_string
,
1435 iter
->socket
->attached
? iter
->socket
->card_string
:
1439 /***********************************************************/
1442 typedef struct IOHandlerRecord
{
1444 IOCanReadHandler
*fd_read_poll
;
1446 IOHandler
*fd_write
;
1449 /* temporary data */
1451 QLIST_ENTRY(IOHandlerRecord
) next
;
1454 static QLIST_HEAD(, IOHandlerRecord
) io_handlers
=
1455 QLIST_HEAD_INITIALIZER(io_handlers
);
1458 /* XXX: fd_read_poll should be suppressed, but an API change is
1459 necessary in the character devices to suppress fd_can_read(). */
1460 int qemu_set_fd_handler2(int fd
,
1461 IOCanReadHandler
*fd_read_poll
,
1463 IOHandler
*fd_write
,
1466 IOHandlerRecord
*ioh
;
1468 if (!fd_read
&& !fd_write
) {
1469 QLIST_FOREACH(ioh
, &io_handlers
, next
) {
1470 if (ioh
->fd
== fd
) {
1476 QLIST_FOREACH(ioh
, &io_handlers
, next
) {
1480 ioh
= qemu_mallocz(sizeof(IOHandlerRecord
));
1481 QLIST_INSERT_HEAD(&io_handlers
, ioh
, next
);
1484 ioh
->fd_read_poll
= fd_read_poll
;
1485 ioh
->fd_read
= fd_read
;
1486 ioh
->fd_write
= fd_write
;
1487 ioh
->opaque
= opaque
;
1493 int qemu_set_fd_handler(int fd
,
1495 IOHandler
*fd_write
,
1498 return qemu_set_fd_handler2(fd
, NULL
, fd_read
, fd_write
, opaque
);
1501 /***********************************************************/
1502 /* machine registration */
1504 static QEMUMachine
*first_machine
= NULL
;
1505 QEMUMachine
*current_machine
= NULL
;
1507 int qemu_register_machine(QEMUMachine
*m
)
1510 pm
= &first_machine
;
1518 static QEMUMachine
*find_machine(const char *name
)
1522 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
1523 if (!strcmp(m
->name
, name
))
1525 if (m
->alias
&& !strcmp(m
->alias
, name
))
1531 static QEMUMachine
*find_default_machine(void)
1535 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
1536 if (m
->is_default
) {
1543 /***********************************************************/
1544 /* main execution loop */
1546 static void gui_update(void *opaque
)
1548 uint64_t interval
= GUI_REFRESH_INTERVAL
;
1549 DisplayState
*ds
= opaque
;
1550 DisplayChangeListener
*dcl
= ds
->listeners
;
1552 qemu_flush_coalesced_mmio_buffer();
1555 while (dcl
!= NULL
) {
1556 if (dcl
->gui_timer_interval
&&
1557 dcl
->gui_timer_interval
< interval
)
1558 interval
= dcl
->gui_timer_interval
;
1561 qemu_mod_timer(ds
->gui_timer
, interval
+ qemu_get_clock(rt_clock
));
1564 static void nographic_update(void *opaque
)
1566 uint64_t interval
= GUI_REFRESH_INTERVAL
;
1568 qemu_flush_coalesced_mmio_buffer();
1569 qemu_mod_timer(nographic_timer
, interval
+ qemu_get_clock(rt_clock
));
1572 struct vm_change_state_entry
{
1573 VMChangeStateHandler
*cb
;
1575 QLIST_ENTRY (vm_change_state_entry
) entries
;
1578 static QLIST_HEAD(vm_change_state_head
, vm_change_state_entry
) vm_change_state_head
;
1580 VMChangeStateEntry
*qemu_add_vm_change_state_handler(VMChangeStateHandler
*cb
,
1583 VMChangeStateEntry
*e
;
1585 e
= qemu_mallocz(sizeof (*e
));
1589 QLIST_INSERT_HEAD(&vm_change_state_head
, e
, entries
);
1593 void qemu_del_vm_change_state_handler(VMChangeStateEntry
*e
)
1595 QLIST_REMOVE (e
, entries
);
1599 void vm_state_notify(int running
, int reason
)
1601 VMChangeStateEntry
*e
;
1603 for (e
= vm_change_state_head
.lh_first
; e
; e
= e
->entries
.le_next
) {
1604 e
->cb(e
->opaque
, running
, reason
);
1613 vm_state_notify(1, 0);
1615 monitor_protocol_event(QEVENT_RESUME
, NULL
);
1619 /* reset/shutdown handler */
1621 typedef struct QEMUResetEntry
{
1622 QTAILQ_ENTRY(QEMUResetEntry
) entry
;
1623 QEMUResetHandler
*func
;
1627 static QTAILQ_HEAD(reset_handlers
, QEMUResetEntry
) reset_handlers
=
1628 QTAILQ_HEAD_INITIALIZER(reset_handlers
);
1629 static int reset_requested
;
1630 static int shutdown_requested
;
1631 static int powerdown_requested
;
1632 int debug_requested
;
1633 int vmstop_requested
;
1635 int qemu_shutdown_requested(void)
1637 int r
= shutdown_requested
;
1638 shutdown_requested
= 0;
1642 int qemu_reset_requested(void)
1644 int r
= reset_requested
;
1645 reset_requested
= 0;
1649 int qemu_powerdown_requested(void)
1651 int r
= powerdown_requested
;
1652 powerdown_requested
= 0;
1656 static int qemu_debug_requested(void)
1658 int r
= debug_requested
;
1659 debug_requested
= 0;
1663 static int qemu_vmstop_requested(void)
1665 int r
= vmstop_requested
;
1666 vmstop_requested
= 0;
1670 void qemu_register_reset(QEMUResetHandler
*func
, void *opaque
)
1672 QEMUResetEntry
*re
= qemu_mallocz(sizeof(QEMUResetEntry
));
1675 re
->opaque
= opaque
;
1676 QTAILQ_INSERT_TAIL(&reset_handlers
, re
, entry
);
1679 void qemu_unregister_reset(QEMUResetHandler
*func
, void *opaque
)
1683 QTAILQ_FOREACH(re
, &reset_handlers
, entry
) {
1684 if (re
->func
== func
&& re
->opaque
== opaque
) {
1685 QTAILQ_REMOVE(&reset_handlers
, re
, entry
);
1692 void qemu_system_reset(void)
1694 QEMUResetEntry
*re
, *nre
;
1696 /* reset all devices */
1697 QTAILQ_FOREACH_SAFE(re
, &reset_handlers
, entry
, nre
) {
1698 re
->func(re
->opaque
);
1700 monitor_protocol_event(QEVENT_RESET
, NULL
);
1701 cpu_synchronize_all_post_reset();
1704 void qemu_system_reset_request(void)
1707 shutdown_requested
= 1;
1709 reset_requested
= 1;
1711 qemu_notify_event();
1714 void qemu_system_shutdown_request(void)
1716 shutdown_requested
= 1;
1717 qemu_notify_event();
1720 void qemu_system_powerdown_request(void)
1722 powerdown_requested
= 1;
1723 qemu_notify_event();
1726 void main_loop_wait(int nonblocking
)
1728 IOHandlerRecord
*ioh
;
1729 fd_set rfds
, wfds
, xfds
;
1737 timeout
= qemu_calculate_timeout();
1738 qemu_bh_update_timeout(&timeout
);
1741 os_host_main_loop_wait(&timeout
);
1743 /* poll any events */
1744 /* XXX: separate device handlers from system ones */
1749 QLIST_FOREACH(ioh
, &io_handlers
, next
) {
1753 (!ioh
->fd_read_poll
||
1754 ioh
->fd_read_poll(ioh
->opaque
) != 0)) {
1755 FD_SET(ioh
->fd
, &rfds
);
1759 if (ioh
->fd_write
) {
1760 FD_SET(ioh
->fd
, &wfds
);
1766 tv
.tv_sec
= timeout
/ 1000;
1767 tv
.tv_usec
= (timeout
% 1000) * 1000;
1769 slirp_select_fill(&nfds
, &rfds
, &wfds
, &xfds
);
1771 qemu_mutex_unlock_iothread();
1772 ret
= select(nfds
+ 1, &rfds
, &wfds
, &xfds
, &tv
);
1773 qemu_mutex_lock_iothread();
1775 IOHandlerRecord
*pioh
;
1777 QLIST_FOREACH_SAFE(ioh
, &io_handlers
, next
, pioh
) {
1779 QLIST_REMOVE(ioh
, next
);
1783 if (ioh
->fd_read
&& FD_ISSET(ioh
->fd
, &rfds
)) {
1784 ioh
->fd_read(ioh
->opaque
);
1786 if (ioh
->fd_write
&& FD_ISSET(ioh
->fd
, &wfds
)) {
1787 ioh
->fd_write(ioh
->opaque
);
1792 slirp_select_poll(&rfds
, &wfds
, &xfds
, (ret
< 0));
1794 qemu_run_all_timers();
1796 /* Check bottom-halves last in case any of the earlier events triggered
1802 static int vm_can_run(void)
1804 if (powerdown_requested
)
1806 if (reset_requested
)
1808 if (shutdown_requested
)
1810 if (debug_requested
)
1815 qemu_irq qemu_system_powerdown
;
1817 static void main_loop(void)
1821 qemu_main_loop_start();
1825 bool nonblocking
= false;
1826 #ifdef CONFIG_PROFILER
1829 #ifndef CONFIG_IOTHREAD
1830 nonblocking
= tcg_cpu_exec();
1832 #ifdef CONFIG_PROFILER
1833 ti
= profile_getclock();
1835 main_loop_wait(nonblocking
);
1836 #ifdef CONFIG_PROFILER
1837 dev_time
+= profile_getclock() - ti
;
1839 } while (vm_can_run());
1841 if ((r
= qemu_debug_requested())) {
1844 if (qemu_shutdown_requested()) {
1845 monitor_protocol_event(QEVENT_SHUTDOWN
, NULL
);
1852 if (qemu_reset_requested()) {
1854 qemu_system_reset();
1857 if (qemu_powerdown_requested()) {
1858 monitor_protocol_event(QEVENT_POWERDOWN
, NULL
);
1859 qemu_irq_raise(qemu_system_powerdown
);
1861 if ((r
= qemu_vmstop_requested())) {
1868 static void version(void)
1870 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION
", Copyright (c) 2003-2008 Fabrice Bellard\n");
1873 static void help(int exitcode
)
1875 const char *options_help
=
1876 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
1878 #define DEFHEADING(text) stringify(text) "\n"
1879 #include "qemu-options.def"
1885 printf("usage: %s [options] [disk_image]\n"
1887 "'disk_image' is a raw hard disk image for IDE hard disk 0\n"
1890 "During emulation, the following keys are useful:\n"
1891 "ctrl-alt-f toggle full screen\n"
1892 "ctrl-alt-n switch to virtual console 'n'\n"
1893 "ctrl-alt toggle mouse and keyboard grab\n"
1895 "When using -nographic, press 'ctrl-a h' to get some help.\n",
1901 #define HAS_ARG 0x0001
1903 typedef struct QEMUOption
{
1910 static const QEMUOption qemu_options
[] = {
1911 { "h", 0, QEMU_OPTION_h
, QEMU_ARCH_ALL
},
1912 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
1913 { option, opt_arg, opt_enum, arch_mask },
1914 #define DEFHEADING(text)
1915 #include "qemu-options.def"
1921 static void select_vgahw (const char *p
)
1926 vga_interface_type
= VGA_NONE
;
1927 if (strstart(p
, "std", &opts
)) {
1928 vga_interface_type
= VGA_STD
;
1929 } else if (strstart(p
, "cirrus", &opts
)) {
1930 vga_interface_type
= VGA_CIRRUS
;
1931 } else if (strstart(p
, "vmware", &opts
)) {
1932 vga_interface_type
= VGA_VMWARE
;
1933 } else if (strstart(p
, "xenfb", &opts
)) {
1934 vga_interface_type
= VGA_XENFB
;
1935 } else if (!strstart(p
, "none", &opts
)) {
1937 fprintf(stderr
, "Unknown vga type: %s\n", p
);
1941 const char *nextopt
;
1943 if (strstart(opts
, ",retrace=", &nextopt
)) {
1945 if (strstart(opts
, "dumb", &nextopt
))
1946 vga_retrace_method
= VGA_RETRACE_DUMB
;
1947 else if (strstart(opts
, "precise", &nextopt
))
1948 vga_retrace_method
= VGA_RETRACE_PRECISE
;
1949 else goto invalid_vga
;
1950 } else goto invalid_vga
;
1955 static int balloon_parse(const char *arg
)
1959 if (strcmp(arg
, "none") == 0) {
1963 if (!strncmp(arg
, "virtio", 6)) {
1964 if (arg
[6] == ',') {
1965 /* have params -> parse them */
1966 opts
= qemu_opts_parse(&qemu_device_opts
, arg
+7, 0);
1970 /* create empty opts */
1971 opts
= qemu_opts_create(&qemu_device_opts
, NULL
, 0);
1973 qemu_opt_set(opts
, "driver", "virtio-balloon-pci");
1980 char *qemu_find_file(int type
, const char *name
)
1986 /* If name contains path separators then try it as a straight path. */
1987 if ((strchr(name
, '/') || strchr(name
, '\\'))
1988 && access(name
, R_OK
) == 0) {
1989 return qemu_strdup(name
);
1992 case QEMU_FILE_TYPE_BIOS
:
1995 case QEMU_FILE_TYPE_KEYMAP
:
1996 subdir
= "keymaps/";
2001 len
= strlen(data_dir
) + strlen(name
) + strlen(subdir
) + 2;
2002 buf
= qemu_mallocz(len
);
2003 snprintf(buf
, len
, "%s/%s%s", data_dir
, subdir
, name
);
2004 if (access(buf
, R_OK
)) {
2011 static int device_help_func(QemuOpts
*opts
, void *opaque
)
2013 return qdev_device_help(opts
);
2016 static int device_init_func(QemuOpts
*opts
, void *opaque
)
2020 dev
= qdev_device_add(opts
);
2026 static int chardev_init_func(QemuOpts
*opts
, void *opaque
)
2028 CharDriverState
*chr
;
2030 chr
= qemu_chr_open_opts(opts
, NULL
);
2037 static int fsdev_init_func(QemuOpts
*opts
, void *opaque
)
2040 ret
= qemu_fsdev_add(opts
);
2046 static int mon_init_func(QemuOpts
*opts
, void *opaque
)
2048 CharDriverState
*chr
;
2049 const char *chardev
;
2053 mode
= qemu_opt_get(opts
, "mode");
2057 if (strcmp(mode
, "readline") == 0) {
2058 flags
= MONITOR_USE_READLINE
;
2059 } else if (strcmp(mode
, "control") == 0) {
2060 flags
= MONITOR_USE_CONTROL
;
2062 fprintf(stderr
, "unknown monitor mode \"%s\"\n", mode
);
2066 if (qemu_opt_get_bool(opts
, "default", 0))
2067 flags
|= MONITOR_IS_DEFAULT
;
2069 chardev
= qemu_opt_get(opts
, "chardev");
2070 chr
= qemu_chr_find(chardev
);
2072 fprintf(stderr
, "chardev \"%s\" not found\n", chardev
);
2076 monitor_init(chr
, flags
);
2080 static void monitor_parse(const char *optarg
, const char *mode
)
2082 static int monitor_device_index
= 0;
2088 if (strstart(optarg
, "chardev:", &p
)) {
2089 snprintf(label
, sizeof(label
), "%s", p
);
2091 snprintf(label
, sizeof(label
), "compat_monitor%d",
2092 monitor_device_index
);
2093 if (monitor_device_index
== 0) {
2096 opts
= qemu_chr_parse_compat(label
, optarg
);
2098 fprintf(stderr
, "parse error: %s\n", optarg
);
2103 opts
= qemu_opts_create(&qemu_mon_opts
, label
, 1);
2105 fprintf(stderr
, "duplicate chardev: %s\n", label
);
2108 qemu_opt_set(opts
, "mode", mode
);
2109 qemu_opt_set(opts
, "chardev", label
);
2111 qemu_opt_set(opts
, "default", "on");
2112 monitor_device_index
++;
2115 struct device_config
{
2117 DEV_USB
, /* -usbdevice */
2119 DEV_SERIAL
, /* -serial */
2120 DEV_PARALLEL
, /* -parallel */
2121 DEV_VIRTCON
, /* -virtioconsole */
2122 DEV_DEBUGCON
, /* -debugcon */
2124 const char *cmdline
;
2125 QTAILQ_ENTRY(device_config
) next
;
2127 QTAILQ_HEAD(, device_config
) device_configs
= QTAILQ_HEAD_INITIALIZER(device_configs
);
2129 static void add_device_config(int type
, const char *cmdline
)
2131 struct device_config
*conf
;
2133 conf
= qemu_mallocz(sizeof(*conf
));
2135 conf
->cmdline
= cmdline
;
2136 QTAILQ_INSERT_TAIL(&device_configs
, conf
, next
);
2139 static int foreach_device_config(int type
, int (*func
)(const char *cmdline
))
2141 struct device_config
*conf
;
2144 QTAILQ_FOREACH(conf
, &device_configs
, next
) {
2145 if (conf
->type
!= type
)
2147 rc
= func(conf
->cmdline
);
2154 static int serial_parse(const char *devname
)
2156 static int index
= 0;
2159 if (strcmp(devname
, "none") == 0)
2161 if (index
== MAX_SERIAL_PORTS
) {
2162 fprintf(stderr
, "qemu: too many serial ports\n");
2165 snprintf(label
, sizeof(label
), "serial%d", index
);
2166 serial_hds
[index
] = qemu_chr_open(label
, devname
, NULL
);
2167 if (!serial_hds
[index
]) {
2168 fprintf(stderr
, "qemu: could not open serial device '%s': %s\n",
2169 devname
, strerror(errno
));
2176 static int parallel_parse(const char *devname
)
2178 static int index
= 0;
2181 if (strcmp(devname
, "none") == 0)
2183 if (index
== MAX_PARALLEL_PORTS
) {
2184 fprintf(stderr
, "qemu: too many parallel ports\n");
2187 snprintf(label
, sizeof(label
), "parallel%d", index
);
2188 parallel_hds
[index
] = qemu_chr_open(label
, devname
, NULL
);
2189 if (!parallel_hds
[index
]) {
2190 fprintf(stderr
, "qemu: could not open parallel device '%s': %s\n",
2191 devname
, strerror(errno
));
2198 static int virtcon_parse(const char *devname
)
2200 static int index
= 0;
2202 QemuOpts
*bus_opts
, *dev_opts
;
2204 if (strcmp(devname
, "none") == 0)
2206 if (index
== MAX_VIRTIO_CONSOLES
) {
2207 fprintf(stderr
, "qemu: too many virtio consoles\n");
2211 bus_opts
= qemu_opts_create(&qemu_device_opts
, NULL
, 0);
2212 qemu_opt_set(bus_opts
, "driver", "virtio-serial");
2214 dev_opts
= qemu_opts_create(&qemu_device_opts
, NULL
, 0);
2215 qemu_opt_set(dev_opts
, "driver", "virtconsole");
2217 snprintf(label
, sizeof(label
), "virtcon%d", index
);
2218 virtcon_hds
[index
] = qemu_chr_open(label
, devname
, NULL
);
2219 if (!virtcon_hds
[index
]) {
2220 fprintf(stderr
, "qemu: could not open virtio console '%s': %s\n",
2221 devname
, strerror(errno
));
2224 qemu_opt_set(dev_opts
, "chardev", label
);
2230 static int debugcon_parse(const char *devname
)
2234 if (!qemu_chr_open("debugcon", devname
, NULL
)) {
2237 opts
= qemu_opts_create(&qemu_device_opts
, "debugcon", 1);
2239 fprintf(stderr
, "qemu: already have a debugcon device\n");
2242 qemu_opt_set(opts
, "driver", "isa-debugcon");
2243 qemu_opt_set(opts
, "chardev", "debugcon");
2247 static const QEMUOption
*lookup_opt(int argc
, char **argv
,
2248 const char **poptarg
, int *poptind
)
2250 const QEMUOption
*popt
;
2251 int optind
= *poptind
;
2252 char *r
= argv
[optind
];
2255 loc_set_cmdline(argv
, optind
, 1);
2257 /* Treat --foo the same as -foo. */
2260 popt
= qemu_options
;
2263 error_report("invalid option");
2266 if (!strcmp(popt
->name
, r
+ 1))
2270 if (popt
->flags
& HAS_ARG
) {
2271 if (optind
>= argc
) {
2272 error_report("requires an argument");
2275 optarg
= argv
[optind
++];
2276 loc_set_cmdline(argv
, optind
- 2, 2);
2287 int main(int argc
, char **argv
, char **envp
)
2289 const char *gdbstub_dev
= NULL
;
2291 int snapshot
, linux_boot
;
2292 const char *icount_option
= NULL
;
2293 const char *initrd_filename
;
2294 const char *kernel_filename
, *kernel_cmdline
;
2295 char boot_devices
[33] = "cad"; /* default to HD->floppy->CD-ROM */
2297 DisplayChangeListener
*dcl
;
2298 int cyls
, heads
, secs
, translation
;
2299 QemuOpts
*hda_opts
= NULL
, *opts
;
2302 const char *loadvm
= NULL
;
2303 QEMUMachine
*machine
;
2304 const char *cpu_model
;
2309 const char *pid_file
= NULL
;
2310 const char *incoming
= NULL
;
2313 struct passwd
*pwd
= NULL
;
2314 const char *chroot_dir
= NULL
;
2315 const char *run_as
= NULL
;
2317 int show_vnc_port
= 0;
2320 error_set_progname(argv
[0]);
2324 qemu_cache_utils_init(envp
);
2326 QLIST_INIT (&vm_change_state_head
);
2327 os_setup_early_signal_handling();
2329 module_call_init(MODULE_INIT_MACHINE
);
2330 machine
= find_default_machine();
2332 initrd_filename
= NULL
;
2335 kernel_filename
= NULL
;
2336 kernel_cmdline
= "";
2337 cyls
= heads
= secs
= 0;
2338 translation
= BIOS_ATA_TRANSLATION_AUTO
;
2340 for (i
= 0; i
< MAX_NODES
; i
++) {
2342 node_cpumask
[i
] = 0;
2351 /* first pass of option parsing */
2353 while (optind
< argc
) {
2354 if (argv
[optind
][0] != '-') {
2359 const QEMUOption
*popt
;
2361 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
2362 switch (popt
->index
) {
2363 case QEMU_OPTION_nodefconfig
:
2373 ret
= qemu_read_config_file(CONFIG_QEMU_CONFDIR
"/qemu.conf");
2374 if (ret
< 0 && ret
!= -ENOENT
) {
2378 ret
= qemu_read_config_file(arch_config_name
);
2379 if (ret
< 0 && ret
!= -ENOENT
) {
2385 /* second pass of option parsing */
2390 if (argv
[optind
][0] != '-') {
2391 hda_opts
= drive_add(argv
[optind
++], HD_ALIAS
, 0);
2393 const QEMUOption
*popt
;
2395 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
2396 if (!(popt
->arch_mask
& arch_type
)) {
2397 printf("Option %s not supported for this target\n", popt
->name
);
2400 switch(popt
->index
) {
2402 machine
= find_machine(optarg
);
2405 printf("Supported machines are:\n");
2406 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
2408 printf("%-10s %s (alias of %s)\n",
2409 m
->alias
, m
->desc
, m
->name
);
2410 printf("%-10s %s%s\n",
2412 m
->is_default
? " (default)" : "");
2414 exit(*optarg
!= '?');
2417 case QEMU_OPTION_cpu
:
2418 /* hw initialization will check this */
2419 if (*optarg
== '?') {
2420 list_cpus(stdout
, &fprintf
, optarg
);
2426 case QEMU_OPTION_initrd
:
2427 initrd_filename
= optarg
;
2429 case QEMU_OPTION_hda
:
2431 hda_opts
= drive_add(optarg
, HD_ALIAS
, 0);
2433 hda_opts
= drive_add(optarg
, HD_ALIAS
2434 ",cyls=%d,heads=%d,secs=%d%s",
2435 0, cyls
, heads
, secs
,
2436 translation
== BIOS_ATA_TRANSLATION_LBA
?
2438 translation
== BIOS_ATA_TRANSLATION_NONE
?
2439 ",trans=none" : "");
2441 case QEMU_OPTION_hdb
:
2442 case QEMU_OPTION_hdc
:
2443 case QEMU_OPTION_hdd
:
2444 drive_add(optarg
, HD_ALIAS
, popt
->index
- QEMU_OPTION_hda
);
2446 case QEMU_OPTION_drive
:
2447 drive_add(NULL
, "%s", optarg
);
2449 case QEMU_OPTION_set
:
2450 if (qemu_set_option(optarg
) != 0)
2453 case QEMU_OPTION_global
:
2454 if (qemu_global_option(optarg
) != 0)
2457 case QEMU_OPTION_mtdblock
:
2458 drive_add(optarg
, MTD_ALIAS
);
2460 case QEMU_OPTION_sd
:
2461 drive_add(optarg
, SD_ALIAS
);
2463 case QEMU_OPTION_pflash
:
2464 drive_add(optarg
, PFLASH_ALIAS
);
2466 case QEMU_OPTION_snapshot
:
2469 case QEMU_OPTION_hdachs
:
2473 cyls
= strtol(p
, (char **)&p
, 0);
2474 if (cyls
< 1 || cyls
> 16383)
2479 heads
= strtol(p
, (char **)&p
, 0);
2480 if (heads
< 1 || heads
> 16)
2485 secs
= strtol(p
, (char **)&p
, 0);
2486 if (secs
< 1 || secs
> 63)
2490 if (!strcmp(p
, "none"))
2491 translation
= BIOS_ATA_TRANSLATION_NONE
;
2492 else if (!strcmp(p
, "lba"))
2493 translation
= BIOS_ATA_TRANSLATION_LBA
;
2494 else if (!strcmp(p
, "auto"))
2495 translation
= BIOS_ATA_TRANSLATION_AUTO
;
2498 } else if (*p
!= '\0') {
2500 fprintf(stderr
, "qemu: invalid physical CHS format\n");
2503 if (hda_opts
!= NULL
) {
2505 snprintf(num
, sizeof(num
), "%d", cyls
);
2506 qemu_opt_set(hda_opts
, "cyls", num
);
2507 snprintf(num
, sizeof(num
), "%d", heads
);
2508 qemu_opt_set(hda_opts
, "heads", num
);
2509 snprintf(num
, sizeof(num
), "%d", secs
);
2510 qemu_opt_set(hda_opts
, "secs", num
);
2511 if (translation
== BIOS_ATA_TRANSLATION_LBA
)
2512 qemu_opt_set(hda_opts
, "trans", "lba");
2513 if (translation
== BIOS_ATA_TRANSLATION_NONE
)
2514 qemu_opt_set(hda_opts
, "trans", "none");
2518 case QEMU_OPTION_numa
:
2519 if (nb_numa_nodes
>= MAX_NODES
) {
2520 fprintf(stderr
, "qemu: too many NUMA nodes\n");
2525 case QEMU_OPTION_nographic
:
2526 display_type
= DT_NOGRAPHIC
;
2528 #ifdef CONFIG_CURSES
2529 case QEMU_OPTION_curses
:
2530 display_type
= DT_CURSES
;
2533 case QEMU_OPTION_portrait
:
2536 case QEMU_OPTION_kernel
:
2537 kernel_filename
= optarg
;
2539 case QEMU_OPTION_append
:
2540 kernel_cmdline
= optarg
;
2542 case QEMU_OPTION_cdrom
:
2543 drive_add(optarg
, CDROM_ALIAS
);
2545 case QEMU_OPTION_boot
:
2547 static const char * const params
[] = {
2548 "order", "once", "menu", NULL
2550 char buf
[sizeof(boot_devices
)];
2551 char *standard_boot_devices
;
2554 if (!strchr(optarg
, '=')) {
2556 pstrcpy(buf
, sizeof(buf
), optarg
);
2557 } else if (check_params(buf
, sizeof(buf
), params
, optarg
) < 0) {
2559 "qemu: unknown boot parameter '%s' in '%s'\n",
2565 get_param_value(buf
, sizeof(buf
), "order", optarg
)) {
2566 validate_bootdevices(buf
);
2567 pstrcpy(boot_devices
, sizeof(boot_devices
), buf
);
2570 if (get_param_value(buf
, sizeof(buf
),
2572 validate_bootdevices(buf
);
2573 standard_boot_devices
= qemu_strdup(boot_devices
);
2574 pstrcpy(boot_devices
, sizeof(boot_devices
), buf
);
2575 qemu_register_reset(restore_boot_devices
,
2576 standard_boot_devices
);
2578 if (get_param_value(buf
, sizeof(buf
),
2580 if (!strcmp(buf
, "on")) {
2582 } else if (!strcmp(buf
, "off")) {
2586 "qemu: invalid option value '%s'\n",
2594 case QEMU_OPTION_fda
:
2595 case QEMU_OPTION_fdb
:
2596 drive_add(optarg
, FD_ALIAS
, popt
->index
- QEMU_OPTION_fda
);
2598 case QEMU_OPTION_no_fd_bootchk
:
2601 case QEMU_OPTION_netdev
:
2602 if (net_client_parse(&qemu_netdev_opts
, optarg
) == -1) {
2606 case QEMU_OPTION_net
:
2607 if (net_client_parse(&qemu_net_opts
, optarg
) == -1) {
2612 case QEMU_OPTION_tftp
:
2613 legacy_tftp_prefix
= optarg
;
2615 case QEMU_OPTION_bootp
:
2616 legacy_bootp_filename
= optarg
;
2618 case QEMU_OPTION_redir
:
2619 if (net_slirp_redir(optarg
) < 0)
2623 case QEMU_OPTION_bt
:
2624 add_device_config(DEV_BT
, optarg
);
2626 case QEMU_OPTION_audio_help
:
2627 if (!(audio_available())) {
2628 printf("Option %s not supported for this target\n", popt
->name
);
2634 case QEMU_OPTION_soundhw
:
2635 if (!(audio_available())) {
2636 printf("Option %s not supported for this target\n", popt
->name
);
2639 select_soundhw (optarg
);
2644 case QEMU_OPTION_version
:
2648 case QEMU_OPTION_m
: {
2652 value
= strtoul(optarg
, &ptr
, 10);
2654 case 0: case 'M': case 'm':
2661 fprintf(stderr
, "qemu: invalid ram size: %s\n", optarg
);
2665 /* On 32-bit hosts, QEMU is limited by virtual address space */
2666 if (value
> (2047 << 20) && HOST_LONG_BITS
== 32) {
2667 fprintf(stderr
, "qemu: at most 2047 MB RAM can be simulated\n");
2670 if (value
!= (uint64_t)(ram_addr_t
)value
) {
2671 fprintf(stderr
, "qemu: ram size too large\n");
2677 case QEMU_OPTION_mempath
:
2681 case QEMU_OPTION_mem_prealloc
:
2686 set_cpu_log(optarg
);
2689 gdbstub_dev
= "tcp::" DEFAULT_GDBSTUB_PORT
;
2691 case QEMU_OPTION_gdb
:
2692 gdbstub_dev
= optarg
;
2697 case QEMU_OPTION_bios
:
2700 case QEMU_OPTION_singlestep
:
2707 keyboard_layout
= optarg
;
2709 case QEMU_OPTION_localtime
:
2712 case QEMU_OPTION_vga
:
2713 select_vgahw (optarg
);
2720 w
= strtol(p
, (char **)&p
, 10);
2723 fprintf(stderr
, "qemu: invalid resolution or depth\n");
2729 h
= strtol(p
, (char **)&p
, 10);
2734 depth
= strtol(p
, (char **)&p
, 10);
2735 if (depth
!= 8 && depth
!= 15 && depth
!= 16 &&
2736 depth
!= 24 && depth
!= 32)
2738 } else if (*p
== '\0') {
2739 depth
= graphic_depth
;
2746 graphic_depth
= depth
;
2749 case QEMU_OPTION_echr
:
2752 term_escape_char
= strtol(optarg
, &r
, 0);
2754 printf("Bad argument to echr\n");
2757 case QEMU_OPTION_monitor
:
2758 monitor_parse(optarg
, "readline");
2759 default_monitor
= 0;
2761 case QEMU_OPTION_qmp
:
2762 monitor_parse(optarg
, "control");
2763 default_monitor
= 0;
2765 case QEMU_OPTION_mon
:
2766 opts
= qemu_opts_parse(&qemu_mon_opts
, optarg
, 1);
2770 default_monitor
= 0;
2772 case QEMU_OPTION_chardev
:
2773 opts
= qemu_opts_parse(&qemu_chardev_opts
, optarg
, 1);
2779 case QEMU_OPTION_fsdev
:
2780 opts
= qemu_opts_parse(&qemu_fsdev_opts
, optarg
, 1);
2782 fprintf(stderr
, "parse error: %s\n", optarg
);
2786 case QEMU_OPTION_virtfs
: {
2787 char *arg_fsdev
= NULL
;
2788 char *arg_9p
= NULL
;
2791 opts
= qemu_opts_parse(&qemu_virtfs_opts
, optarg
, 1);
2793 fprintf(stderr
, "parse error: %s\n", optarg
);
2797 len
= strlen(",id=,path=");
2798 len
+= strlen(qemu_opt_get(opts
, "fstype"));
2799 len
+= strlen(qemu_opt_get(opts
, "mount_tag"));
2800 len
+= strlen(qemu_opt_get(opts
, "path"));
2801 arg_fsdev
= qemu_malloc((len
+ 1) * sizeof(*arg_fsdev
));
2804 fprintf(stderr
, "No memory to parse -fsdev for %s\n",
2809 sprintf(arg_fsdev
, "%s,id=%s,path=%s",
2810 qemu_opt_get(opts
, "fstype"),
2811 qemu_opt_get(opts
, "mount_tag"),
2812 qemu_opt_get(opts
, "path"));
2814 len
= strlen("virtio-9p-pci,fsdev=,mount_tag=");
2815 len
+= 2*strlen(qemu_opt_get(opts
, "mount_tag"));
2816 arg_9p
= qemu_malloc((len
+ 1) * sizeof(*arg_9p
));
2819 fprintf(stderr
, "No memory to parse -device for %s\n",
2824 sprintf(arg_9p
, "virtio-9p-pci,fsdev=%s,mount_tag=%s",
2825 qemu_opt_get(opts
, "mount_tag"),
2826 qemu_opt_get(opts
, "mount_tag"));
2828 if (!qemu_opts_parse(&qemu_fsdev_opts
, arg_fsdev
, 1)) {
2829 fprintf(stderr
, "parse error [fsdev]: %s\n", optarg
);
2833 if (!qemu_opts_parse(&qemu_device_opts
, arg_9p
, 1)) {
2834 fprintf(stderr
, "parse error [device]: %s\n", optarg
);
2838 qemu_free(arg_fsdev
);
2843 case QEMU_OPTION_serial
:
2844 add_device_config(DEV_SERIAL
, optarg
);
2846 if (strncmp(optarg
, "mon:", 4) == 0) {
2847 default_monitor
= 0;
2850 case QEMU_OPTION_watchdog
:
2853 "qemu: only one watchdog option may be given\n");
2858 case QEMU_OPTION_watchdog_action
:
2859 if (select_watchdog_action(optarg
) == -1) {
2860 fprintf(stderr
, "Unknown -watchdog-action parameter\n");
2864 case QEMU_OPTION_virtiocon
:
2865 add_device_config(DEV_VIRTCON
, optarg
);
2866 default_virtcon
= 0;
2867 if (strncmp(optarg
, "mon:", 4) == 0) {
2868 default_monitor
= 0;
2871 case QEMU_OPTION_parallel
:
2872 add_device_config(DEV_PARALLEL
, optarg
);
2873 default_parallel
= 0;
2874 if (strncmp(optarg
, "mon:", 4) == 0) {
2875 default_monitor
= 0;
2878 case QEMU_OPTION_debugcon
:
2879 add_device_config(DEV_DEBUGCON
, optarg
);
2881 case QEMU_OPTION_loadvm
:
2884 case QEMU_OPTION_full_screen
:
2888 case QEMU_OPTION_no_frame
:
2891 case QEMU_OPTION_alt_grab
:
2894 case QEMU_OPTION_ctrl_grab
:
2897 case QEMU_OPTION_no_quit
:
2900 case QEMU_OPTION_sdl
:
2901 display_type
= DT_SDL
;
2904 case QEMU_OPTION_pidfile
:
2907 case QEMU_OPTION_win2k_hack
:
2908 win2k_install_hack
= 1;
2910 case QEMU_OPTION_rtc_td_hack
:
2913 case QEMU_OPTION_acpitable
:
2914 do_acpitable_option(optarg
);
2916 case QEMU_OPTION_smbios
:
2917 do_smbios_option(optarg
);
2919 case QEMU_OPTION_enable_kvm
:
2922 case QEMU_OPTION_usb
:
2925 case QEMU_OPTION_usbdevice
:
2927 add_device_config(DEV_USB
, optarg
);
2929 case QEMU_OPTION_device
:
2930 if (!qemu_opts_parse(&qemu_device_opts
, optarg
, 1)) {
2934 case QEMU_OPTION_smp
:
2937 fprintf(stderr
, "Invalid number of CPUs\n");
2940 if (max_cpus
< smp_cpus
) {
2941 fprintf(stderr
, "maxcpus must be equal to or greater than "
2945 if (max_cpus
> 255) {
2946 fprintf(stderr
, "Unsupported number of maxcpus\n");
2950 case QEMU_OPTION_vnc
:
2951 display_type
= DT_VNC
;
2952 vnc_display
= optarg
;
2954 case QEMU_OPTION_no_acpi
:
2957 case QEMU_OPTION_no_hpet
:
2960 case QEMU_OPTION_balloon
:
2961 if (balloon_parse(optarg
) < 0) {
2962 fprintf(stderr
, "Unknown -balloon argument %s\n", optarg
);
2966 case QEMU_OPTION_no_reboot
:
2969 case QEMU_OPTION_no_shutdown
:
2972 case QEMU_OPTION_show_cursor
:
2975 case QEMU_OPTION_uuid
:
2976 if(qemu_uuid_parse(optarg
, qemu_uuid
) < 0) {
2977 fprintf(stderr
, "Fail to parse UUID string."
2978 " Wrong format.\n");
2983 case QEMU_OPTION_daemonize
:
2987 case QEMU_OPTION_option_rom
:
2988 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
2989 fprintf(stderr
, "Too many option ROMs\n");
2992 option_rom
[nb_option_roms
] = optarg
;
2995 case QEMU_OPTION_semihosting
:
2996 semihosting_enabled
= 1;
2998 case QEMU_OPTION_name
:
2999 qemu_name
= qemu_strdup(optarg
);
3001 char *p
= strchr(qemu_name
, ',');
3004 if (strncmp(p
, "process=", 8)) {
3005 fprintf(stderr
, "Unknown subargument %s to -name", p
);
3013 case QEMU_OPTION_prom_env
:
3014 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
3015 fprintf(stderr
, "Too many prom variables\n");
3018 prom_envs
[nb_prom_envs
] = optarg
;
3021 case QEMU_OPTION_old_param
:
3024 case QEMU_OPTION_clock
:
3025 configure_alarms(optarg
);
3027 case QEMU_OPTION_startdate
:
3028 configure_rtc_date_offset(optarg
, 1);
3030 case QEMU_OPTION_rtc
:
3031 opts
= qemu_opts_parse(&qemu_rtc_opts
, optarg
, 0);
3035 configure_rtc(opts
);
3037 case QEMU_OPTION_tb_size
:
3038 tb_size
= strtol(optarg
, NULL
, 0);
3042 case QEMU_OPTION_icount
:
3043 icount_option
= optarg
;
3045 case QEMU_OPTION_incoming
:
3048 case QEMU_OPTION_nodefaults
:
3050 default_parallel
= 0;
3051 default_virtcon
= 0;
3052 default_monitor
= 0;
3060 case QEMU_OPTION_chroot
:
3061 chroot_dir
= optarg
;
3063 case QEMU_OPTION_runas
:
3067 case QEMU_OPTION_xen_domid
:
3068 if (!(xen_available())) {
3069 printf("Option %s not supported for this target\n", popt
->name
);
3072 xen_domid
= atoi(optarg
);
3074 case QEMU_OPTION_xen_create
:
3075 if (!(xen_available())) {
3076 printf("Option %s not supported for this target\n", popt
->name
);
3079 xen_mode
= XEN_CREATE
;
3081 case QEMU_OPTION_xen_attach
:
3082 if (!(xen_available())) {
3083 printf("Option %s not supported for this target\n", popt
->name
);
3086 xen_mode
= XEN_ATTACH
;
3088 case QEMU_OPTION_readconfig
:
3090 int ret
= qemu_read_config_file(optarg
);
3092 fprintf(stderr
, "read config %s: %s\n", optarg
,
3098 case QEMU_OPTION_writeconfig
:
3101 if (strcmp(optarg
, "-") == 0) {
3104 fp
= fopen(optarg
, "w");
3106 fprintf(stderr
, "open %s: %s\n", optarg
, strerror(errno
));
3110 qemu_config_write(fp
);
3115 os_parse_cmd_args(popt
->index
, optarg
);
3121 /* If no data_dir is specified then try to find it relative to the
3124 data_dir
= os_find_datadir(argv
[0]);
3126 /* If all else fails use the install patch specified when building. */
3128 data_dir
= CONFIG_QEMU_DATADIR
;
3132 * Default to max_cpus = smp_cpus, in case the user doesn't
3133 * specify a max_cpus value.
3136 max_cpus
= smp_cpus
;
3138 machine
->max_cpus
= machine
->max_cpus
?: 1; /* Default to UP */
3139 if (smp_cpus
> machine
->max_cpus
) {
3140 fprintf(stderr
, "Number of SMP cpus requested (%d), exceeds max cpus "
3141 "supported by machine `%s' (%d)\n", smp_cpus
, machine
->name
,
3146 qemu_opts_foreach(&qemu_device_opts
, default_driver_check
, NULL
, 0);
3147 qemu_opts_foreach(&qemu_global_opts
, default_driver_check
, NULL
, 0);
3149 if (machine
->no_serial
) {
3152 if (machine
->no_parallel
) {
3153 default_parallel
= 0;
3155 if (!machine
->use_virtcon
) {
3156 default_virtcon
= 0;
3158 if (machine
->no_vga
) {
3161 if (machine
->no_floppy
) {
3164 if (machine
->no_cdrom
) {
3167 if (machine
->no_sdcard
) {
3171 if (display_type
== DT_NOGRAPHIC
) {
3172 if (default_parallel
)
3173 add_device_config(DEV_PARALLEL
, "null");
3174 if (default_serial
&& default_monitor
) {
3175 add_device_config(DEV_SERIAL
, "mon:stdio");
3176 } else if (default_virtcon
&& default_monitor
) {
3177 add_device_config(DEV_VIRTCON
, "mon:stdio");
3180 add_device_config(DEV_SERIAL
, "stdio");
3181 if (default_virtcon
)
3182 add_device_config(DEV_VIRTCON
, "stdio");
3183 if (default_monitor
)
3184 monitor_parse("stdio", "readline");
3188 add_device_config(DEV_SERIAL
, "vc:80Cx24C");
3189 if (default_parallel
)
3190 add_device_config(DEV_PARALLEL
, "vc:80Cx24C");
3191 if (default_monitor
)
3192 monitor_parse("vc:80Cx24C", "readline");
3193 if (default_virtcon
)
3194 add_device_config(DEV_VIRTCON
, "vc:80Cx24C");
3197 vga_interface_type
= VGA_CIRRUS
;
3201 if (qemu_opts_foreach(&qemu_chardev_opts
, chardev_init_func
, NULL
, 1) != 0)
3204 if (qemu_opts_foreach(&qemu_fsdev_opts
, fsdev_init_func
, NULL
, 1) != 0) {
3213 if (pipe(fds
) == -1)
3224 len
= read(fds
[0], &status
, 1);
3225 if (len
== -1 && (errno
== EINTR
))
3230 else if (status
== 1) {
3231 fprintf(stderr
, "Could not acquire pidfile: %s\n", strerror(errno
));
3239 qemu_set_cloexec(fds
[1]);
3251 signal(SIGTSTP
, SIG_IGN
);
3252 signal(SIGTTOU
, SIG_IGN
);
3253 signal(SIGTTIN
, SIG_IGN
);
3257 if (pid_file
&& qemu_create_pidfile(pid_file
) != 0) {
3261 if (write(fds
[1], &status
, 1) != 1) {
3262 perror("daemonize. Writing to pipe\n");
3266 fprintf(stderr
, "Could not acquire pid file: %s\n", strerror(errno
));
3271 int ret
= kvm_init(smp_cpus
);
3273 if (!kvm_available()) {
3274 printf("KVM not supported for this target\n");
3276 fprintf(stderr
, "failed to initialize KVM: %s\n", strerror(-ret
));
3282 if (qemu_init_main_loop()) {
3283 fprintf(stderr
, "qemu_init_main_loop failed\n");
3286 linux_boot
= (kernel_filename
!= NULL
);
3288 if (!linux_boot
&& *kernel_cmdline
!= '\0') {
3289 fprintf(stderr
, "-append only allowed with -kernel option\n");
3293 if (!linux_boot
&& initrd_filename
!= NULL
) {
3294 fprintf(stderr
, "-initrd only allowed with -kernel option\n");
3299 /* Win32 doesn't support line-buffering and requires size >= 2 */
3300 setvbuf(stdout
, NULL
, _IOLBF
, 0);
3303 if (init_timer_alarm() < 0) {
3304 fprintf(stderr
, "could not initialize alarm timer\n");
3307 configure_icount(icount_option
);
3309 if (net_init_clients() < 0) {
3313 /* init the bluetooth world */
3314 if (foreach_device_config(DEV_BT
, bt_parse
))
3317 /* init the memory */
3319 ram_size
= DEFAULT_RAM_SIZE
* 1024 * 1024;
3321 /* init the dynamic translator */
3322 cpu_exec_init_all(tb_size
* 1024 * 1024);
3324 bdrv_init_with_whitelist();
3328 if (default_cdrom
) {
3329 /* we always create the cdrom drive, even if no disk is there */
3330 drive_add(NULL
, CDROM_ALIAS
);
3333 if (default_floppy
) {
3334 /* we always create at least one floppy */
3335 drive_add(NULL
, FD_ALIAS
, 0);
3338 if (default_sdcard
) {
3339 /* we always create one sd slot, even if no card is in it */
3340 drive_add(NULL
, SD_ALIAS
);
3343 /* open the virtual block devices */
3345 qemu_opts_foreach(&qemu_drive_opts
, drive_enable_snapshot
, NULL
, 0);
3346 if (qemu_opts_foreach(&qemu_drive_opts
, drive_init_func
, machine
, 1) != 0)
3349 register_savevm_live("ram", 0, 3, NULL
, ram_save_live
, NULL
,
3352 if (nb_numa_nodes
> 0) {
3355 if (nb_numa_nodes
> smp_cpus
) {
3356 nb_numa_nodes
= smp_cpus
;
3359 /* If no memory size if given for any node, assume the default case
3360 * and distribute the available memory equally across all nodes
3362 for (i
= 0; i
< nb_numa_nodes
; i
++) {
3363 if (node_mem
[i
] != 0)
3366 if (i
== nb_numa_nodes
) {
3367 uint64_t usedmem
= 0;
3369 /* On Linux, the each node's border has to be 8MB aligned,
3370 * the final node gets the rest.
3372 for (i
= 0; i
< nb_numa_nodes
- 1; i
++) {
3373 node_mem
[i
] = (ram_size
/ nb_numa_nodes
) & ~((1 << 23UL) - 1);
3374 usedmem
+= node_mem
[i
];
3376 node_mem
[i
] = ram_size
- usedmem
;
3379 for (i
= 0; i
< nb_numa_nodes
; i
++) {
3380 if (node_cpumask
[i
] != 0)
3383 /* assigning the VCPUs round-robin is easier to implement, guest OSes
3384 * must cope with this anyway, because there are BIOSes out there in
3385 * real machines which also use this scheme.
3387 if (i
== nb_numa_nodes
) {
3388 for (i
= 0; i
< smp_cpus
; i
++) {
3389 node_cpumask
[i
% nb_numa_nodes
] |= 1 << i
;
3394 if (qemu_opts_foreach(&qemu_mon_opts
, mon_init_func
, NULL
, 1) != 0) {
3398 if (foreach_device_config(DEV_SERIAL
, serial_parse
) < 0)
3400 if (foreach_device_config(DEV_PARALLEL
, parallel_parse
) < 0)
3402 if (foreach_device_config(DEV_VIRTCON
, virtcon_parse
) < 0)
3404 if (foreach_device_config(DEV_DEBUGCON
, debugcon_parse
) < 0)
3407 module_call_init(MODULE_INIT_DEVICE
);
3409 if (qemu_opts_foreach(&qemu_device_opts
, device_help_func
, NULL
, 0) != 0)
3413 i
= select_watchdog(watchdog
);
3415 exit (i
== 1 ? 1 : 0);
3418 if (machine
->compat_props
) {
3419 qdev_prop_register_global_list(machine
->compat_props
);
3423 machine
->init(ram_size
, boot_devices
,
3424 kernel_filename
, kernel_cmdline
, initrd_filename
, cpu_model
);
3426 cpu_synchronize_all_post_init();
3428 /* must be after terminal init, SDL library changes signal handlers */
3429 os_setup_signal_handling();
3433 current_machine
= machine
;
3435 /* init USB devices */
3437 if (foreach_device_config(DEV_USB
, usb_parse
) < 0)
3441 /* init generic devices */
3442 if (qemu_opts_foreach(&qemu_device_opts
, device_init_func
, NULL
, 1) != 0)
3445 net_check_clients();
3447 /* just use the first displaystate for the moment */
3448 ds
= get_displaystate();
3450 if (display_type
== DT_DEFAULT
) {
3451 #if defined(CONFIG_SDL) || defined(CONFIG_COCOA)
3452 display_type
= DT_SDL
;
3454 display_type
= DT_VNC
;
3455 vnc_display
= "localhost:0,to=99";
3461 switch (display_type
) {
3464 #if defined(CONFIG_CURSES)
3466 curses_display_init(ds
, full_screen
);
3469 #if defined(CONFIG_SDL)
3471 sdl_display_init(ds
, full_screen
, no_frame
);
3473 #elif defined(CONFIG_COCOA)
3475 cocoa_display_init(ds
, full_screen
);
3479 vnc_display_init(ds
);
3480 if (vnc_display_open(ds
, vnc_display
) < 0)
3483 if (show_vnc_port
) {
3484 printf("VNC server running on `%s'\n", vnc_display_local_addr(ds
));
3492 dcl
= ds
->listeners
;
3493 while (dcl
!= NULL
) {
3494 if (dcl
->dpy_refresh
!= NULL
) {
3495 ds
->gui_timer
= qemu_new_timer(rt_clock
, gui_update
, ds
);
3496 qemu_mod_timer(ds
->gui_timer
, qemu_get_clock(rt_clock
));
3502 if (display_type
== DT_NOGRAPHIC
|| display_type
== DT_VNC
) {
3503 nographic_timer
= qemu_new_timer(rt_clock
, nographic_update
, NULL
);
3504 qemu_mod_timer(nographic_timer
, qemu_get_clock(rt_clock
));
3507 text_consoles_set_display(ds
);
3509 if (gdbstub_dev
&& gdbserver_start(gdbstub_dev
) < 0) {
3510 fprintf(stderr
, "qemu: could not open gdbserver on device '%s'\n",
3515 qdev_machine_creation_done();
3517 if (rom_load_all() != 0) {
3518 fprintf(stderr
, "rom loading failed\n");
3522 qemu_system_reset();
3524 if (load_vmstate(loadvm
) < 0) {
3530 qemu_start_incoming_migration(incoming
);
3531 } else if (autostart
) {
3541 len
= write(fds
[1], &status
, 1);
3542 if (len
== -1 && (errno
== EINTR
))
3549 perror("not able to chdir to /");
3552 TFR(fd
= qemu_open("/dev/null", O_RDWR
));
3558 pwd
= getpwnam(run_as
);
3560 fprintf(stderr
, "User \"%s\" doesn't exist\n", run_as
);
3566 if (chroot(chroot_dir
) < 0) {
3567 fprintf(stderr
, "chroot failed\n");
3571 perror("not able to chdir to /");
3577 if (setgid(pwd
->pw_gid
) < 0) {
3578 fprintf(stderr
, "Failed to setgid(%d)\n", pwd
->pw_gid
);
3581 if (setuid(pwd
->pw_uid
) < 0) {
3582 fprintf(stderr
, "Failed to setuid(%d)\n", pwd
->pw_uid
);
3585 if (setuid(0) != -1) {
3586 fprintf(stderr
, "Dropping privileges failed\n");