4 * Copyright (c) 2003-2008 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
32 /* Needed early for CONFIG_BSD etc. */
33 #include "config-host.h"
37 #include <sys/times.h>
41 #include <sys/ioctl.h>
42 #include <sys/resource.h>
43 #include <sys/socket.h>
44 #include <netinet/in.h>
46 #include <arpa/inet.h>
49 #include <sys/select.h>
50 #ifdef CONFIG_SIMPLE_TRACE
56 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
58 #include <sys/sysctl.h>
67 #include <linux/ppdev.h>
68 #include <linux/parport.h>
72 #include <sys/ethernet.h>
73 #include <sys/sockio.h>
74 #include <netinet/arp.h>
75 #include <netinet/in_systm.h>
76 #include <netinet/ip.h>
77 #include <netinet/ip_icmp.h> // must come after ip.h
78 #include <netinet/udp.h>
79 #include <netinet/tcp.h>
87 #if defined(__OpenBSD__)
91 #if defined(CONFIG_VDE)
92 #include <libvdeplug.h>
100 #if defined(__APPLE__) || defined(main)
102 int qemu_main(int argc
, char **argv
, char **envp
);
103 int main(int argc
, char **argv
)
105 return qemu_main(argc
, argv
, NULL
);
108 #define main qemu_main
110 #endif /* CONFIG_SDL */
114 #define main qemu_main
115 #endif /* CONFIG_COCOA */
118 #include "hw/boards.h"
120 #include "hw/pcmcia.h"
125 #include "hw/watchdog.h"
126 #include "hw/smbios.h"
129 #include "hw/loader.h"
132 #include "net/slirp.h"
137 #include "qemu-timer.h"
138 #include "qemu-char.h"
139 #include "cache-utils.h"
141 #include "blockdev.h"
142 #include "block-migration.h"
144 #include "audio/audio.h"
145 #include "migration.h"
147 #include "qemu-option.h"
148 #include "qemu-config.h"
149 #include "qemu-objects.h"
150 #include "qemu-options.h"
152 #include "fsdev/qemu-fsdev.h"
157 #include "qemu_socket.h"
159 #include "slirp/libslirp.h"
161 #include "qemu-queue.h"
163 #include "arch_init.h"
165 #include "ui/qemu-spice.h"
168 //#define DEBUG_SLIRP
170 #define DEFAULT_RAM_SIZE 128
172 #define MAX_VIRTIO_CONSOLES 1
174 static const char *data_dir
;
175 const char *bios_name
= NULL
;
176 enum vga_retrace_method vga_retrace_method
= VGA_RETRACE_DUMB
;
177 DisplayType display_type
= DT_DEFAULT
;
178 int display_remote
= 0;
179 const char* keyboard_layout
= NULL
;
181 const char *mem_path
= NULL
;
183 int mem_prealloc
= 0; /* force preallocation of physical target memory */
186 NICInfo nd_table
[MAX_NICS
];
189 int incoming_expected
; /* Started with -incoming and waiting for incoming */
190 static int rtc_utc
= 1;
191 static int rtc_date_offset
= -1; /* -1 means no change */
192 QEMUClock
*rtc_clock
;
193 int vga_interface_type
= VGA_NONE
;
194 static int full_screen
= 0;
196 static int no_frame
= 0;
199 CharDriverState
*serial_hds
[MAX_SERIAL_PORTS
];
200 CharDriverState
*parallel_hds
[MAX_PARALLEL_PORTS
];
201 CharDriverState
*virtcon_hds
[MAX_VIRTIO_CONSOLES
];
202 int win2k_install_hack
= 0;
210 const char *vnc_display
;
211 int acpi_enabled
= 1;
217 int graphic_rotate
= 0;
218 uint8_t irq0override
= 1;
219 const char *watchdog
;
220 const char *option_rom
[MAX_OPTION_ROMS
];
222 int semihosting_enabled
= 0;
224 const char *qemu_name
;
227 unsigned int nb_prom_envs
= 0;
228 const char *prom_envs
[MAX_PROM_ENVS
];
232 uint64_t node_mem
[MAX_NODES
];
233 uint64_t node_cpumask
[MAX_NODES
];
235 static QEMUTimer
*nographic_timer
;
237 uint8_t qemu_uuid
[16];
239 static QEMUBootSetHandler
*boot_set_handler
;
240 static void *boot_set_opaque
;
242 static NotifierList exit_notifiers
=
243 NOTIFIER_LIST_INITIALIZER(exit_notifiers
);
247 enum xen_mode xen_mode
= XEN_EMULATE
;
249 static int default_serial
= 1;
250 static int default_parallel
= 1;
251 static int default_virtcon
= 1;
252 static int default_monitor
= 1;
253 static int default_vga
= 1;
254 static int default_floppy
= 1;
255 static int default_cdrom
= 1;
256 static int default_sdcard
= 1;
262 { .driver
= "isa-serial", .flag
= &default_serial
},
263 { .driver
= "isa-parallel", .flag
= &default_parallel
},
264 { .driver
= "isa-fdc", .flag
= &default_floppy
},
265 { .driver
= "ide-drive", .flag
= &default_cdrom
},
266 { .driver
= "virtio-serial-pci", .flag
= &default_virtcon
},
267 { .driver
= "virtio-serial-s390", .flag
= &default_virtcon
},
268 { .driver
= "virtio-serial", .flag
= &default_virtcon
},
269 { .driver
= "VGA", .flag
= &default_vga
},
270 { .driver
= "cirrus-vga", .flag
= &default_vga
},
271 { .driver
= "vmware-svga", .flag
= &default_vga
},
274 static int default_driver_check(QemuOpts
*opts
, void *opaque
)
276 const char *driver
= qemu_opt_get(opts
, "driver");
281 for (i
= 0; i
< ARRAY_SIZE(default_list
); i
++) {
282 if (strcmp(default_list
[i
].driver
, driver
) != 0)
284 *(default_list
[i
].flag
) = 0;
289 /***********************************************************/
290 /* real time host monotonic timer */
292 /***********************************************************/
293 /* host time/date access */
294 void qemu_get_timedate(struct tm
*tm
, int offset
)
301 if (rtc_date_offset
== -1) {
305 ret
= localtime(&ti
);
307 ti
-= rtc_date_offset
;
311 memcpy(tm
, ret
, sizeof(struct tm
));
314 int qemu_timedate_diff(struct tm
*tm
)
318 if (rtc_date_offset
== -1)
320 seconds
= mktimegm(tm
);
322 seconds
= mktime(tm
);
324 seconds
= mktimegm(tm
) + rtc_date_offset
;
326 return seconds
- time(NULL
);
329 void rtc_change_mon_event(struct tm
*tm
)
333 data
= qobject_from_jsonf("{ 'offset': %d }", qemu_timedate_diff(tm
));
334 monitor_protocol_event(QEVENT_RTC_CHANGE
, data
);
335 qobject_decref(data
);
338 static void configure_rtc_date_offset(const char *startdate
, int legacy
)
340 time_t rtc_start_date
;
343 if (!strcmp(startdate
, "now") && legacy
) {
344 rtc_date_offset
= -1;
346 if (sscanf(startdate
, "%d-%d-%dT%d:%d:%d",
354 } else if (sscanf(startdate
, "%d-%d-%d",
366 rtc_start_date
= mktimegm(&tm
);
367 if (rtc_start_date
== -1) {
369 fprintf(stderr
, "Invalid date format. Valid formats are:\n"
370 "'2006-06-17T16:01:21' or '2006-06-17'\n");
373 rtc_date_offset
= time(NULL
) - rtc_start_date
;
377 static void configure_rtc(QemuOpts
*opts
)
381 value
= qemu_opt_get(opts
, "base");
383 if (!strcmp(value
, "utc")) {
385 } else if (!strcmp(value
, "localtime")) {
388 configure_rtc_date_offset(value
, 0);
391 value
= qemu_opt_get(opts
, "clock");
393 if (!strcmp(value
, "host")) {
394 rtc_clock
= host_clock
;
395 } else if (!strcmp(value
, "vm")) {
396 rtc_clock
= vm_clock
;
398 fprintf(stderr
, "qemu: invalid option value '%s'\n", value
);
402 value
= qemu_opt_get(opts
, "driftfix");
404 if (!strcmp(value
, "slew")) {
406 } else if (!strcmp(value
, "none")) {
409 fprintf(stderr
, "qemu: invalid option value '%s'\n", value
);
415 /***********************************************************/
416 /* Bluetooth support */
419 static struct HCIInfo
*hci_table
[MAX_NICS
];
421 static struct bt_vlan_s
{
422 struct bt_scatternet_s net
;
424 struct bt_vlan_s
*next
;
427 /* find or alloc a new bluetooth "VLAN" */
428 static struct bt_scatternet_s
*qemu_find_bt_vlan(int id
)
430 struct bt_vlan_s
**pvlan
, *vlan
;
431 for (vlan
= first_bt_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
435 vlan
= qemu_mallocz(sizeof(struct bt_vlan_s
));
437 pvlan
= &first_bt_vlan
;
438 while (*pvlan
!= NULL
)
439 pvlan
= &(*pvlan
)->next
;
444 static void null_hci_send(struct HCIInfo
*hci
, const uint8_t *data
, int len
)
448 static int null_hci_addr_set(struct HCIInfo
*hci
, const uint8_t *bd_addr
)
453 static struct HCIInfo null_hci
= {
454 .cmd_send
= null_hci_send
,
455 .sco_send
= null_hci_send
,
456 .acl_send
= null_hci_send
,
457 .bdaddr_set
= null_hci_addr_set
,
460 struct HCIInfo
*qemu_next_hci(void)
462 if (cur_hci
== nb_hcis
)
465 return hci_table
[cur_hci
++];
468 static struct HCIInfo
*hci_init(const char *str
)
471 struct bt_scatternet_s
*vlan
= 0;
473 if (!strcmp(str
, "null"))
476 else if (!strncmp(str
, "host", 4) && (str
[4] == '\0' || str
[4] == ':'))
478 return bt_host_hci(str
[4] ? str
+ 5 : "hci0");
479 else if (!strncmp(str
, "hci", 3)) {
482 if (!strncmp(str
+ 3, ",vlan=", 6)) {
483 vlan
= qemu_find_bt_vlan(strtol(str
+ 9, &endp
, 0));
488 vlan
= qemu_find_bt_vlan(0);
490 return bt_new_hci(vlan
);
493 fprintf(stderr
, "qemu: Unknown bluetooth HCI `%s'.\n", str
);
498 static int bt_hci_parse(const char *str
)
503 if (nb_hcis
>= MAX_NICS
) {
504 fprintf(stderr
, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS
);
517 bdaddr
.b
[5] = 0x56 + nb_hcis
;
518 hci
->bdaddr_set(hci
, bdaddr
.b
);
520 hci_table
[nb_hcis
++] = hci
;
525 static void bt_vhci_add(int vlan_id
)
527 struct bt_scatternet_s
*vlan
= qemu_find_bt_vlan(vlan_id
);
530 fprintf(stderr
, "qemu: warning: adding a VHCI to "
531 "an empty scatternet %i\n", vlan_id
);
533 bt_vhci_init(bt_new_hci(vlan
));
536 static struct bt_device_s
*bt_device_add(const char *opt
)
538 struct bt_scatternet_s
*vlan
;
540 char *endp
= strstr(opt
, ",vlan=");
541 int len
= (endp
? endp
- opt
: strlen(opt
)) + 1;
544 pstrcpy(devname
, MIN(sizeof(devname
), len
), opt
);
547 vlan_id
= strtol(endp
+ 6, &endp
, 0);
549 fprintf(stderr
, "qemu: unrecognised bluetooth vlan Id\n");
554 vlan
= qemu_find_bt_vlan(vlan_id
);
557 fprintf(stderr
, "qemu: warning: adding a slave device to "
558 "an empty scatternet %i\n", vlan_id
);
560 if (!strcmp(devname
, "keyboard"))
561 return bt_keyboard_init(vlan
);
563 fprintf(stderr
, "qemu: unsupported bluetooth device `%s'\n", devname
);
567 static int bt_parse(const char *opt
)
569 const char *endp
, *p
;
572 if (strstart(opt
, "hci", &endp
)) {
573 if (!*endp
|| *endp
== ',') {
575 if (!strstart(endp
, ",vlan=", 0))
578 return bt_hci_parse(opt
);
580 } else if (strstart(opt
, "vhci", &endp
)) {
581 if (!*endp
|| *endp
== ',') {
583 if (strstart(endp
, ",vlan=", &p
)) {
584 vlan
= strtol(p
, (char **) &endp
, 0);
586 fprintf(stderr
, "qemu: bad scatternet '%s'\n", p
);
590 fprintf(stderr
, "qemu: bad parameter '%s'\n", endp
+ 1);
599 } else if (strstart(opt
, "device:", &endp
))
600 return !bt_device_add(endp
);
602 fprintf(stderr
, "qemu: bad bluetooth parameter '%s'\n", opt
);
606 /***********************************************************/
607 /* QEMU Block devices */
609 #define HD_ALIAS "index=%d,media=disk"
610 #define CDROM_ALIAS "index=2,media=cdrom"
611 #define FD_ALIAS "index=%d,if=floppy"
612 #define PFLASH_ALIAS "if=pflash"
613 #define MTD_ALIAS "if=mtd"
614 #define SD_ALIAS "index=0,if=sd"
616 static int drive_init_func(QemuOpts
*opts
, void *opaque
)
618 int *use_scsi
= opaque
;
621 if (drive_init(opts
, *use_scsi
, &fatal_error
) == NULL
) {
628 static int drive_enable_snapshot(QemuOpts
*opts
, void *opaque
)
630 if (NULL
== qemu_opt_get(opts
, "snapshot")) {
631 qemu_opt_set(opts
, "snapshot", "on");
636 void qemu_register_boot_set(QEMUBootSetHandler
*func
, void *opaque
)
638 boot_set_handler
= func
;
639 boot_set_opaque
= opaque
;
642 int qemu_boot_set(const char *boot_devices
)
644 if (!boot_set_handler
) {
647 return boot_set_handler(boot_set_opaque
, boot_devices
);
650 static void validate_bootdevices(char *devices
)
652 /* We just do some generic consistency checks */
656 for (p
= devices
; *p
!= '\0'; p
++) {
657 /* Allowed boot devices are:
658 * a-b: floppy disk drives
659 * c-f: IDE disk drives
660 * g-m: machine implementation dependant drives
661 * n-p: network devices
662 * It's up to each machine implementation to check if the given boot
663 * devices match the actual hardware implementation and firmware
666 if (*p
< 'a' || *p
> 'p') {
667 fprintf(stderr
, "Invalid boot device '%c'\n", *p
);
670 if (bitmap
& (1 << (*p
- 'a'))) {
671 fprintf(stderr
, "Boot device '%c' was given twice\n", *p
);
674 bitmap
|= 1 << (*p
- 'a');
678 static void restore_boot_devices(void *opaque
)
680 char *standard_boot_devices
= opaque
;
681 static int first
= 1;
683 /* Restore boot order and remove ourselves after the first boot */
689 qemu_boot_set(standard_boot_devices
);
691 qemu_unregister_reset(restore_boot_devices
, standard_boot_devices
);
692 qemu_free(standard_boot_devices
);
695 static void numa_add(const char *optarg
)
699 unsigned long long value
, endvalue
;
702 optarg
= get_opt_name(option
, 128, optarg
, ',') + 1;
703 if (!strcmp(option
, "node")) {
704 if (get_param_value(option
, 128, "nodeid", optarg
) == 0) {
705 nodenr
= nb_numa_nodes
;
707 nodenr
= strtoull(option
, NULL
, 10);
710 if (get_param_value(option
, 128, "mem", optarg
) == 0) {
711 node_mem
[nodenr
] = 0;
714 sval
= strtosz(option
, NULL
);
716 fprintf(stderr
, "qemu: invalid numa mem size: %s\n", optarg
);
719 node_mem
[nodenr
] = sval
;
721 if (get_param_value(option
, 128, "cpus", optarg
) == 0) {
722 node_cpumask
[nodenr
] = 0;
724 value
= strtoull(option
, &endptr
, 10);
727 fprintf(stderr
, "only 64 CPUs in NUMA mode supported.\n");
729 if (*endptr
== '-') {
730 endvalue
= strtoull(endptr
+1, &endptr
, 10);
731 if (endvalue
>= 63) {
734 "only 63 CPUs in NUMA mode supported.\n");
736 value
= (2ULL << endvalue
) - (1ULL << value
);
738 value
= 1ULL << value
;
741 node_cpumask
[nodenr
] = value
;
748 static void smp_parse(const char *optarg
)
750 int smp
, sockets
= 0, threads
= 0, cores
= 0;
754 smp
= strtoul(optarg
, &endptr
, 10);
755 if (endptr
!= optarg
) {
756 if (*endptr
== ',') {
760 if (get_param_value(option
, 128, "sockets", endptr
) != 0)
761 sockets
= strtoull(option
, NULL
, 10);
762 if (get_param_value(option
, 128, "cores", endptr
) != 0)
763 cores
= strtoull(option
, NULL
, 10);
764 if (get_param_value(option
, 128, "threads", endptr
) != 0)
765 threads
= strtoull(option
, NULL
, 10);
766 if (get_param_value(option
, 128, "maxcpus", endptr
) != 0)
767 max_cpus
= strtoull(option
, NULL
, 10);
769 /* compute missing values, prefer sockets over cores over threads */
770 if (smp
== 0 || sockets
== 0) {
771 sockets
= sockets
> 0 ? sockets
: 1;
772 cores
= cores
> 0 ? cores
: 1;
773 threads
= threads
> 0 ? threads
: 1;
775 smp
= cores
* threads
* sockets
;
779 threads
= threads
> 0 ? threads
: 1;
780 cores
= smp
/ (sockets
* threads
);
782 threads
= smp
/ (cores
* sockets
);
786 smp_cores
= cores
> 0 ? cores
: 1;
787 smp_threads
= threads
> 0 ? threads
: 1;
792 /***********************************************************/
795 static int usb_device_add(const char *devname
)
798 USBDevice
*dev
= NULL
;
803 /* drivers with .usbdevice_name entry in USBDeviceInfo */
804 dev
= usbdevice_create(devname
);
809 if (strstart(devname
, "host:", &p
)) {
810 dev
= usb_host_device_open(p
);
811 } else if (!strcmp(devname
, "bt") || strstart(devname
, "bt:", &p
)) {
812 dev
= usb_bt_init(devname
[2] ? hci_init(p
) :
813 bt_new_hci(qemu_find_bt_vlan(0)));
824 static int usb_device_del(const char *devname
)
829 if (strstart(devname
, "host:", &p
))
830 return usb_host_device_close(p
);
835 p
= strchr(devname
, '.');
838 bus_num
= strtoul(devname
, NULL
, 0);
839 addr
= strtoul(p
+ 1, NULL
, 0);
841 return usb_device_delete_addr(bus_num
, addr
);
844 static int usb_parse(const char *cmdline
)
847 r
= usb_device_add(cmdline
);
849 fprintf(stderr
, "qemu: could not add USB device '%s'\n", cmdline
);
854 void do_usb_add(Monitor
*mon
, const QDict
*qdict
)
856 const char *devname
= qdict_get_str(qdict
, "devname");
857 if (usb_device_add(devname
) < 0) {
858 error_report("could not add USB device '%s'", devname
);
862 void do_usb_del(Monitor
*mon
, const QDict
*qdict
)
864 const char *devname
= qdict_get_str(qdict
, "devname");
865 if (usb_device_del(devname
) < 0) {
866 error_report("could not delete USB device '%s'", devname
);
870 /***********************************************************/
873 static struct pcmcia_socket_entry_s
{
874 PCMCIASocket
*socket
;
875 struct pcmcia_socket_entry_s
*next
;
876 } *pcmcia_sockets
= 0;
878 void pcmcia_socket_register(PCMCIASocket
*socket
)
880 struct pcmcia_socket_entry_s
*entry
;
882 entry
= qemu_malloc(sizeof(struct pcmcia_socket_entry_s
));
883 entry
->socket
= socket
;
884 entry
->next
= pcmcia_sockets
;
885 pcmcia_sockets
= entry
;
888 void pcmcia_socket_unregister(PCMCIASocket
*socket
)
890 struct pcmcia_socket_entry_s
*entry
, **ptr
;
892 ptr
= &pcmcia_sockets
;
893 for (entry
= *ptr
; entry
; ptr
= &entry
->next
, entry
= *ptr
)
894 if (entry
->socket
== socket
) {
900 void pcmcia_info(Monitor
*mon
)
902 struct pcmcia_socket_entry_s
*iter
;
905 monitor_printf(mon
, "No PCMCIA sockets\n");
907 for (iter
= pcmcia_sockets
; iter
; iter
= iter
->next
)
908 monitor_printf(mon
, "%s: %s\n", iter
->socket
->slot_string
,
909 iter
->socket
->attached
? iter
->socket
->card_string
:
913 /***********************************************************/
916 typedef struct IOHandlerRecord
{
918 IOCanReadHandler
*fd_read_poll
;
925 QLIST_ENTRY(IOHandlerRecord
) next
;
928 static QLIST_HEAD(, IOHandlerRecord
) io_handlers
=
929 QLIST_HEAD_INITIALIZER(io_handlers
);
932 /* XXX: fd_read_poll should be suppressed, but an API change is
933 necessary in the character devices to suppress fd_can_read(). */
934 int qemu_set_fd_handler2(int fd
,
935 IOCanReadHandler
*fd_read_poll
,
940 IOHandlerRecord
*ioh
;
942 if (!fd_read
&& !fd_write
) {
943 QLIST_FOREACH(ioh
, &io_handlers
, next
) {
950 QLIST_FOREACH(ioh
, &io_handlers
, next
) {
954 ioh
= qemu_mallocz(sizeof(IOHandlerRecord
));
955 QLIST_INSERT_HEAD(&io_handlers
, ioh
, next
);
958 ioh
->fd_read_poll
= fd_read_poll
;
959 ioh
->fd_read
= fd_read
;
960 ioh
->fd_write
= fd_write
;
961 ioh
->opaque
= opaque
;
967 int qemu_set_fd_handler(int fd
,
972 return qemu_set_fd_handler2(fd
, NULL
, fd_read
, fd_write
, opaque
);
975 /***********************************************************/
976 /* machine registration */
978 static QEMUMachine
*first_machine
= NULL
;
979 QEMUMachine
*current_machine
= NULL
;
981 int qemu_register_machine(QEMUMachine
*m
)
992 static QEMUMachine
*find_machine(const char *name
)
996 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
997 if (!strcmp(m
->name
, name
))
999 if (m
->alias
&& !strcmp(m
->alias
, name
))
1005 static QEMUMachine
*find_default_machine(void)
1009 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
1010 if (m
->is_default
) {
1017 /***********************************************************/
1018 /* main execution loop */
1020 static void gui_update(void *opaque
)
1022 uint64_t interval
= GUI_REFRESH_INTERVAL
;
1023 DisplayState
*ds
= opaque
;
1024 DisplayChangeListener
*dcl
= ds
->listeners
;
1026 qemu_flush_coalesced_mmio_buffer();
1029 while (dcl
!= NULL
) {
1030 if (dcl
->gui_timer_interval
&&
1031 dcl
->gui_timer_interval
< interval
)
1032 interval
= dcl
->gui_timer_interval
;
1035 qemu_mod_timer(ds
->gui_timer
, interval
+ qemu_get_clock(rt_clock
));
1038 static void nographic_update(void *opaque
)
1040 uint64_t interval
= GUI_REFRESH_INTERVAL
;
1042 qemu_flush_coalesced_mmio_buffer();
1043 qemu_mod_timer(nographic_timer
, interval
+ qemu_get_clock(rt_clock
));
1046 struct vm_change_state_entry
{
1047 VMChangeStateHandler
*cb
;
1049 QLIST_ENTRY (vm_change_state_entry
) entries
;
1052 static QLIST_HEAD(vm_change_state_head
, vm_change_state_entry
) vm_change_state_head
;
1054 VMChangeStateEntry
*qemu_add_vm_change_state_handler(VMChangeStateHandler
*cb
,
1057 VMChangeStateEntry
*e
;
1059 e
= qemu_mallocz(sizeof (*e
));
1063 QLIST_INSERT_HEAD(&vm_change_state_head
, e
, entries
);
1067 void qemu_del_vm_change_state_handler(VMChangeStateEntry
*e
)
1069 QLIST_REMOVE (e
, entries
);
1073 void vm_state_notify(int running
, int reason
)
1075 VMChangeStateEntry
*e
;
1077 for (e
= vm_change_state_head
.lh_first
; e
; e
= e
->entries
.le_next
) {
1078 e
->cb(e
->opaque
, running
, reason
);
1087 vm_state_notify(1, 0);
1089 monitor_protocol_event(QEVENT_RESUME
, NULL
);
1093 /* reset/shutdown handler */
1095 typedef struct QEMUResetEntry
{
1096 QTAILQ_ENTRY(QEMUResetEntry
) entry
;
1097 QEMUResetHandler
*func
;
1101 static QTAILQ_HEAD(reset_handlers
, QEMUResetEntry
) reset_handlers
=
1102 QTAILQ_HEAD_INITIALIZER(reset_handlers
);
1103 static int reset_requested
;
1104 static int shutdown_requested
;
1105 static int powerdown_requested
;
1106 int debug_requested
;
1107 int vmstop_requested
;
1109 int qemu_shutdown_requested(void)
1111 int r
= shutdown_requested
;
1112 shutdown_requested
= 0;
1116 int qemu_reset_requested(void)
1118 int r
= reset_requested
;
1119 reset_requested
= 0;
1123 int qemu_powerdown_requested(void)
1125 int r
= powerdown_requested
;
1126 powerdown_requested
= 0;
1130 static int qemu_debug_requested(void)
1132 int r
= debug_requested
;
1133 debug_requested
= 0;
1137 static int qemu_vmstop_requested(void)
1139 int r
= vmstop_requested
;
1140 vmstop_requested
= 0;
1144 void qemu_register_reset(QEMUResetHandler
*func
, void *opaque
)
1146 QEMUResetEntry
*re
= qemu_mallocz(sizeof(QEMUResetEntry
));
1149 re
->opaque
= opaque
;
1150 QTAILQ_INSERT_TAIL(&reset_handlers
, re
, entry
);
1153 void qemu_unregister_reset(QEMUResetHandler
*func
, void *opaque
)
1157 QTAILQ_FOREACH(re
, &reset_handlers
, entry
) {
1158 if (re
->func
== func
&& re
->opaque
== opaque
) {
1159 QTAILQ_REMOVE(&reset_handlers
, re
, entry
);
1166 void qemu_system_reset(void)
1168 QEMUResetEntry
*re
, *nre
;
1170 /* reset all devices */
1171 QTAILQ_FOREACH_SAFE(re
, &reset_handlers
, entry
, nre
) {
1172 re
->func(re
->opaque
);
1174 monitor_protocol_event(QEVENT_RESET
, NULL
);
1175 cpu_synchronize_all_post_reset();
1178 void qemu_system_reset_request(void)
1181 shutdown_requested
= 1;
1183 reset_requested
= 1;
1185 qemu_notify_event();
1188 void qemu_system_shutdown_request(void)
1190 shutdown_requested
= 1;
1191 qemu_notify_event();
1194 void qemu_system_powerdown_request(void)
1196 powerdown_requested
= 1;
1197 qemu_notify_event();
1200 void main_loop_wait(int nonblocking
)
1202 IOHandlerRecord
*ioh
;
1203 fd_set rfds
, wfds
, xfds
;
1211 timeout
= qemu_calculate_timeout();
1212 qemu_bh_update_timeout(&timeout
);
1215 os_host_main_loop_wait(&timeout
);
1217 /* poll any events */
1218 /* XXX: separate device handlers from system ones */
1223 QLIST_FOREACH(ioh
, &io_handlers
, next
) {
1227 (!ioh
->fd_read_poll
||
1228 ioh
->fd_read_poll(ioh
->opaque
) != 0)) {
1229 FD_SET(ioh
->fd
, &rfds
);
1233 if (ioh
->fd_write
) {
1234 FD_SET(ioh
->fd
, &wfds
);
1240 tv
.tv_sec
= timeout
/ 1000;
1241 tv
.tv_usec
= (timeout
% 1000) * 1000;
1243 slirp_select_fill(&nfds
, &rfds
, &wfds
, &xfds
);
1245 qemu_mutex_unlock_iothread();
1246 ret
= select(nfds
+ 1, &rfds
, &wfds
, &xfds
, &tv
);
1247 qemu_mutex_lock_iothread();
1249 IOHandlerRecord
*pioh
;
1251 QLIST_FOREACH_SAFE(ioh
, &io_handlers
, next
, pioh
) {
1253 QLIST_REMOVE(ioh
, next
);
1257 if (ioh
->fd_read
&& FD_ISSET(ioh
->fd
, &rfds
)) {
1258 ioh
->fd_read(ioh
->opaque
);
1260 if (ioh
->fd_write
&& FD_ISSET(ioh
->fd
, &wfds
)) {
1261 ioh
->fd_write(ioh
->opaque
);
1266 slirp_select_poll(&rfds
, &wfds
, &xfds
, (ret
< 0));
1268 qemu_run_all_timers();
1270 /* Check bottom-halves last in case any of the earlier events triggered
1276 static int vm_can_run(void)
1278 if (powerdown_requested
)
1280 if (reset_requested
)
1282 if (shutdown_requested
)
1284 if (debug_requested
)
1289 qemu_irq qemu_system_powerdown
;
1291 static void main_loop(void)
1295 qemu_main_loop_start();
1299 bool nonblocking
= false;
1300 #ifdef CONFIG_PROFILER
1303 #ifndef CONFIG_IOTHREAD
1304 nonblocking
= cpu_exec_all();
1306 #ifdef CONFIG_PROFILER
1307 ti
= profile_getclock();
1309 main_loop_wait(nonblocking
);
1310 #ifdef CONFIG_PROFILER
1311 dev_time
+= profile_getclock() - ti
;
1313 } while (vm_can_run());
1315 if ((r
= qemu_debug_requested())) {
1318 if (qemu_shutdown_requested()) {
1319 monitor_protocol_event(QEVENT_SHUTDOWN
, NULL
);
1326 if (qemu_reset_requested()) {
1328 qemu_system_reset();
1331 if (qemu_powerdown_requested()) {
1332 monitor_protocol_event(QEVENT_POWERDOWN
, NULL
);
1333 qemu_irq_raise(qemu_system_powerdown
);
1335 if ((r
= qemu_vmstop_requested())) {
1343 static void version(void)
1345 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION
", Copyright (c) 2003-2008 Fabrice Bellard\n");
1348 static void help(int exitcode
)
1350 const char *options_help
=
1351 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
1353 #define DEFHEADING(text) stringify(text) "\n"
1354 #include "qemu-options.def"
1360 printf("usage: %s [options] [disk_image]\n"
1362 "'disk_image' is a raw hard disk image for IDE hard disk 0\n"
1365 "During emulation, the following keys are useful:\n"
1366 "ctrl-alt-f toggle full screen\n"
1367 "ctrl-alt-n switch to virtual console 'n'\n"
1368 "ctrl-alt toggle mouse and keyboard grab\n"
1370 "When using -nographic, press 'ctrl-a h' to get some help.\n",
1376 #define HAS_ARG 0x0001
1378 typedef struct QEMUOption
{
1385 static const QEMUOption qemu_options
[] = {
1386 { "h", 0, QEMU_OPTION_h
, QEMU_ARCH_ALL
},
1387 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
1388 { option, opt_arg, opt_enum, arch_mask },
1389 #define DEFHEADING(text)
1390 #include "qemu-options.def"
1396 static void select_vgahw (const char *p
)
1401 vga_interface_type
= VGA_NONE
;
1402 if (strstart(p
, "std", &opts
)) {
1403 vga_interface_type
= VGA_STD
;
1404 } else if (strstart(p
, "cirrus", &opts
)) {
1405 vga_interface_type
= VGA_CIRRUS
;
1406 } else if (strstart(p
, "vmware", &opts
)) {
1407 vga_interface_type
= VGA_VMWARE
;
1408 } else if (strstart(p
, "xenfb", &opts
)) {
1409 vga_interface_type
= VGA_XENFB
;
1410 } else if (!strstart(p
, "none", &opts
)) {
1412 fprintf(stderr
, "Unknown vga type: %s\n", p
);
1416 const char *nextopt
;
1418 if (strstart(opts
, ",retrace=", &nextopt
)) {
1420 if (strstart(opts
, "dumb", &nextopt
))
1421 vga_retrace_method
= VGA_RETRACE_DUMB
;
1422 else if (strstart(opts
, "precise", &nextopt
))
1423 vga_retrace_method
= VGA_RETRACE_PRECISE
;
1424 else goto invalid_vga
;
1425 } else goto invalid_vga
;
1430 static int balloon_parse(const char *arg
)
1434 if (strcmp(arg
, "none") == 0) {
1438 if (!strncmp(arg
, "virtio", 6)) {
1439 if (arg
[6] == ',') {
1440 /* have params -> parse them */
1441 opts
= qemu_opts_parse(qemu_find_opts("device"), arg
+7, 0);
1445 /* create empty opts */
1446 opts
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0);
1448 qemu_opt_set(opts
, "driver", "virtio-balloon-pci");
1455 char *qemu_find_file(int type
, const char *name
)
1461 /* If name contains path separators then try it as a straight path. */
1462 if ((strchr(name
, '/') || strchr(name
, '\\'))
1463 && access(name
, R_OK
) == 0) {
1464 return qemu_strdup(name
);
1467 case QEMU_FILE_TYPE_BIOS
:
1470 case QEMU_FILE_TYPE_KEYMAP
:
1471 subdir
= "keymaps/";
1476 len
= strlen(data_dir
) + strlen(name
) + strlen(subdir
) + 2;
1477 buf
= qemu_mallocz(len
);
1478 snprintf(buf
, len
, "%s/%s%s", data_dir
, subdir
, name
);
1479 if (access(buf
, R_OK
)) {
1486 static int device_help_func(QemuOpts
*opts
, void *opaque
)
1488 return qdev_device_help(opts
);
1491 static int device_init_func(QemuOpts
*opts
, void *opaque
)
1495 dev
= qdev_device_add(opts
);
1501 static int chardev_init_func(QemuOpts
*opts
, void *opaque
)
1503 CharDriverState
*chr
;
1505 chr
= qemu_chr_open_opts(opts
, NULL
);
1511 #ifdef CONFIG_VIRTFS
1512 static int fsdev_init_func(QemuOpts
*opts
, void *opaque
)
1515 ret
= qemu_fsdev_add(opts
);
1521 static int mon_init_func(QemuOpts
*opts
, void *opaque
)
1523 CharDriverState
*chr
;
1524 const char *chardev
;
1528 mode
= qemu_opt_get(opts
, "mode");
1532 if (strcmp(mode
, "readline") == 0) {
1533 flags
= MONITOR_USE_READLINE
;
1534 } else if (strcmp(mode
, "control") == 0) {
1535 flags
= MONITOR_USE_CONTROL
;
1537 fprintf(stderr
, "unknown monitor mode \"%s\"\n", mode
);
1541 if (qemu_opt_get_bool(opts
, "pretty", 0))
1542 flags
|= MONITOR_USE_PRETTY
;
1544 if (qemu_opt_get_bool(opts
, "default", 0))
1545 flags
|= MONITOR_IS_DEFAULT
;
1547 chardev
= qemu_opt_get(opts
, "chardev");
1548 chr
= qemu_chr_find(chardev
);
1550 fprintf(stderr
, "chardev \"%s\" not found\n", chardev
);
1554 monitor_init(chr
, flags
);
1558 static void monitor_parse(const char *optarg
, const char *mode
)
1560 static int monitor_device_index
= 0;
1566 if (strstart(optarg
, "chardev:", &p
)) {
1567 snprintf(label
, sizeof(label
), "%s", p
);
1569 snprintf(label
, sizeof(label
), "compat_monitor%d",
1570 monitor_device_index
);
1571 if (monitor_device_index
== 0) {
1574 opts
= qemu_chr_parse_compat(label
, optarg
);
1576 fprintf(stderr
, "parse error: %s\n", optarg
);
1581 opts
= qemu_opts_create(qemu_find_opts("mon"), label
, 1);
1583 fprintf(stderr
, "duplicate chardev: %s\n", label
);
1586 qemu_opt_set(opts
, "mode", mode
);
1587 qemu_opt_set(opts
, "chardev", label
);
1589 qemu_opt_set(opts
, "default", "on");
1590 monitor_device_index
++;
1593 struct device_config
{
1595 DEV_USB
, /* -usbdevice */
1597 DEV_SERIAL
, /* -serial */
1598 DEV_PARALLEL
, /* -parallel */
1599 DEV_VIRTCON
, /* -virtioconsole */
1600 DEV_DEBUGCON
, /* -debugcon */
1602 const char *cmdline
;
1603 QTAILQ_ENTRY(device_config
) next
;
1605 QTAILQ_HEAD(, device_config
) device_configs
= QTAILQ_HEAD_INITIALIZER(device_configs
);
1607 static void add_device_config(int type
, const char *cmdline
)
1609 struct device_config
*conf
;
1611 conf
= qemu_mallocz(sizeof(*conf
));
1613 conf
->cmdline
= cmdline
;
1614 QTAILQ_INSERT_TAIL(&device_configs
, conf
, next
);
1617 static int foreach_device_config(int type
, int (*func
)(const char *cmdline
))
1619 struct device_config
*conf
;
1622 QTAILQ_FOREACH(conf
, &device_configs
, next
) {
1623 if (conf
->type
!= type
)
1625 rc
= func(conf
->cmdline
);
1632 static int serial_parse(const char *devname
)
1634 static int index
= 0;
1637 if (strcmp(devname
, "none") == 0)
1639 if (index
== MAX_SERIAL_PORTS
) {
1640 fprintf(stderr
, "qemu: too many serial ports\n");
1643 snprintf(label
, sizeof(label
), "serial%d", index
);
1644 serial_hds
[index
] = qemu_chr_open(label
, devname
, NULL
);
1645 if (!serial_hds
[index
]) {
1646 fprintf(stderr
, "qemu: could not open serial device '%s': %s\n",
1647 devname
, strerror(errno
));
1654 static int parallel_parse(const char *devname
)
1656 static int index
= 0;
1659 if (strcmp(devname
, "none") == 0)
1661 if (index
== MAX_PARALLEL_PORTS
) {
1662 fprintf(stderr
, "qemu: too many parallel ports\n");
1665 snprintf(label
, sizeof(label
), "parallel%d", index
);
1666 parallel_hds
[index
] = qemu_chr_open(label
, devname
, NULL
);
1667 if (!parallel_hds
[index
]) {
1668 fprintf(stderr
, "qemu: could not open parallel device '%s': %s\n",
1669 devname
, strerror(errno
));
1676 static int virtcon_parse(const char *devname
)
1678 QemuOptsList
*device
= qemu_find_opts("device");
1679 static int index
= 0;
1681 QemuOpts
*bus_opts
, *dev_opts
;
1683 if (strcmp(devname
, "none") == 0)
1685 if (index
== MAX_VIRTIO_CONSOLES
) {
1686 fprintf(stderr
, "qemu: too many virtio consoles\n");
1690 bus_opts
= qemu_opts_create(device
, NULL
, 0);
1691 qemu_opt_set(bus_opts
, "driver", "virtio-serial");
1693 dev_opts
= qemu_opts_create(device
, NULL
, 0);
1694 qemu_opt_set(dev_opts
, "driver", "virtconsole");
1696 snprintf(label
, sizeof(label
), "virtcon%d", index
);
1697 virtcon_hds
[index
] = qemu_chr_open(label
, devname
, NULL
);
1698 if (!virtcon_hds
[index
]) {
1699 fprintf(stderr
, "qemu: could not open virtio console '%s': %s\n",
1700 devname
, strerror(errno
));
1703 qemu_opt_set(dev_opts
, "chardev", label
);
1709 static int debugcon_parse(const char *devname
)
1713 if (!qemu_chr_open("debugcon", devname
, NULL
)) {
1716 opts
= qemu_opts_create(qemu_find_opts("device"), "debugcon", 1);
1718 fprintf(stderr
, "qemu: already have a debugcon device\n");
1721 qemu_opt_set(opts
, "driver", "isa-debugcon");
1722 qemu_opt_set(opts
, "chardev", "debugcon");
1726 void qemu_add_exit_notifier(Notifier
*notify
)
1728 notifier_list_add(&exit_notifiers
, notify
);
1731 void qemu_remove_exit_notifier(Notifier
*notify
)
1733 notifier_list_remove(&exit_notifiers
, notify
);
1736 static void qemu_run_exit_notifiers(void)
1738 notifier_list_notify(&exit_notifiers
);
1741 static const QEMUOption
*lookup_opt(int argc
, char **argv
,
1742 const char **poptarg
, int *poptind
)
1744 const QEMUOption
*popt
;
1745 int optind
= *poptind
;
1746 char *r
= argv
[optind
];
1749 loc_set_cmdline(argv
, optind
, 1);
1751 /* Treat --foo the same as -foo. */
1754 popt
= qemu_options
;
1757 error_report("invalid option");
1760 if (!strcmp(popt
->name
, r
+ 1))
1764 if (popt
->flags
& HAS_ARG
) {
1765 if (optind
>= argc
) {
1766 error_report("requires an argument");
1769 optarg
= argv
[optind
++];
1770 loc_set_cmdline(argv
, optind
- 2, 2);
1781 int main(int argc
, char **argv
, char **envp
)
1783 const char *gdbstub_dev
= NULL
;
1785 int snapshot
, linux_boot
;
1786 const char *icount_option
= NULL
;
1787 const char *initrd_filename
;
1788 const char *kernel_filename
, *kernel_cmdline
;
1789 char boot_devices
[33] = "cad"; /* default to HD->floppy->CD-ROM */
1791 DisplayChangeListener
*dcl
;
1792 int cyls
, heads
, secs
, translation
;
1793 QemuOpts
*hda_opts
= NULL
, *opts
;
1794 QemuOptsList
*olist
;
1797 const char *loadvm
= NULL
;
1798 QEMUMachine
*machine
;
1799 const char *cpu_model
;
1801 const char *pid_file
= NULL
;
1802 const char *incoming
= NULL
;
1803 int show_vnc_port
= 0;
1806 #ifdef CONFIG_SIMPLE_TRACE
1807 const char *trace_file
= NULL
;
1809 atexit(qemu_run_exit_notifiers
);
1810 error_set_progname(argv
[0]);
1814 qemu_cache_utils_init(envp
);
1816 QLIST_INIT (&vm_change_state_head
);
1817 os_setup_early_signal_handling();
1819 module_call_init(MODULE_INIT_MACHINE
);
1820 machine
= find_default_machine();
1822 initrd_filename
= NULL
;
1825 kernel_filename
= NULL
;
1826 kernel_cmdline
= "";
1827 cyls
= heads
= secs
= 0;
1828 translation
= BIOS_ATA_TRANSLATION_AUTO
;
1830 for (i
= 0; i
< MAX_NODES
; i
++) {
1832 node_cpumask
[i
] = 0;
1841 /* first pass of option parsing */
1843 while (optind
< argc
) {
1844 if (argv
[optind
][0] != '-') {
1849 const QEMUOption
*popt
;
1851 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
1852 switch (popt
->index
) {
1853 case QEMU_OPTION_nodefconfig
:
1863 ret
= qemu_read_config_file(CONFIG_QEMU_CONFDIR
"/qemu.conf");
1864 if (ret
< 0 && ret
!= -ENOENT
) {
1868 ret
= qemu_read_config_file(arch_config_name
);
1869 if (ret
< 0 && ret
!= -ENOENT
) {
1875 /* second pass of option parsing */
1880 if (argv
[optind
][0] != '-') {
1881 hda_opts
= drive_add(argv
[optind
++], HD_ALIAS
, 0);
1883 const QEMUOption
*popt
;
1885 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
1886 if (!(popt
->arch_mask
& arch_type
)) {
1887 printf("Option %s not supported for this target\n", popt
->name
);
1890 switch(popt
->index
) {
1892 machine
= find_machine(optarg
);
1895 printf("Supported machines are:\n");
1896 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
1898 printf("%-10s %s (alias of %s)\n",
1899 m
->alias
, m
->desc
, m
->name
);
1900 printf("%-10s %s%s\n",
1902 m
->is_default
? " (default)" : "");
1904 exit(*optarg
!= '?');
1907 case QEMU_OPTION_cpu
:
1908 /* hw initialization will check this */
1909 if (*optarg
== '?') {
1910 list_cpus(stdout
, &fprintf
, optarg
);
1916 case QEMU_OPTION_initrd
:
1917 initrd_filename
= optarg
;
1919 case QEMU_OPTION_hda
:
1921 hda_opts
= drive_add(optarg
, HD_ALIAS
, 0);
1923 hda_opts
= drive_add(optarg
, HD_ALIAS
1924 ",cyls=%d,heads=%d,secs=%d%s",
1925 0, cyls
, heads
, secs
,
1926 translation
== BIOS_ATA_TRANSLATION_LBA
?
1928 translation
== BIOS_ATA_TRANSLATION_NONE
?
1929 ",trans=none" : "");
1931 case QEMU_OPTION_hdb
:
1932 case QEMU_OPTION_hdc
:
1933 case QEMU_OPTION_hdd
:
1934 drive_add(optarg
, HD_ALIAS
, popt
->index
- QEMU_OPTION_hda
);
1936 case QEMU_OPTION_drive
:
1937 drive_add(NULL
, "%s", optarg
);
1939 case QEMU_OPTION_set
:
1940 if (qemu_set_option(optarg
) != 0)
1943 case QEMU_OPTION_global
:
1944 if (qemu_global_option(optarg
) != 0)
1947 case QEMU_OPTION_mtdblock
:
1948 drive_add(optarg
, MTD_ALIAS
);
1950 case QEMU_OPTION_sd
:
1951 drive_add(optarg
, SD_ALIAS
);
1953 case QEMU_OPTION_pflash
:
1954 drive_add(optarg
, PFLASH_ALIAS
);
1956 case QEMU_OPTION_snapshot
:
1959 case QEMU_OPTION_hdachs
:
1963 cyls
= strtol(p
, (char **)&p
, 0);
1964 if (cyls
< 1 || cyls
> 16383)
1969 heads
= strtol(p
, (char **)&p
, 0);
1970 if (heads
< 1 || heads
> 16)
1975 secs
= strtol(p
, (char **)&p
, 0);
1976 if (secs
< 1 || secs
> 63)
1980 if (!strcmp(p
, "none"))
1981 translation
= BIOS_ATA_TRANSLATION_NONE
;
1982 else if (!strcmp(p
, "lba"))
1983 translation
= BIOS_ATA_TRANSLATION_LBA
;
1984 else if (!strcmp(p
, "auto"))
1985 translation
= BIOS_ATA_TRANSLATION_AUTO
;
1988 } else if (*p
!= '\0') {
1990 fprintf(stderr
, "qemu: invalid physical CHS format\n");
1993 if (hda_opts
!= NULL
) {
1995 snprintf(num
, sizeof(num
), "%d", cyls
);
1996 qemu_opt_set(hda_opts
, "cyls", num
);
1997 snprintf(num
, sizeof(num
), "%d", heads
);
1998 qemu_opt_set(hda_opts
, "heads", num
);
1999 snprintf(num
, sizeof(num
), "%d", secs
);
2000 qemu_opt_set(hda_opts
, "secs", num
);
2001 if (translation
== BIOS_ATA_TRANSLATION_LBA
)
2002 qemu_opt_set(hda_opts
, "trans", "lba");
2003 if (translation
== BIOS_ATA_TRANSLATION_NONE
)
2004 qemu_opt_set(hda_opts
, "trans", "none");
2008 case QEMU_OPTION_numa
:
2009 if (nb_numa_nodes
>= MAX_NODES
) {
2010 fprintf(stderr
, "qemu: too many NUMA nodes\n");
2015 case QEMU_OPTION_nographic
:
2016 display_type
= DT_NOGRAPHIC
;
2018 #ifdef CONFIG_CURSES
2019 case QEMU_OPTION_curses
:
2020 display_type
= DT_CURSES
;
2023 case QEMU_OPTION_portrait
:
2026 case QEMU_OPTION_kernel
:
2027 kernel_filename
= optarg
;
2029 case QEMU_OPTION_append
:
2030 kernel_cmdline
= optarg
;
2032 case QEMU_OPTION_cdrom
:
2033 drive_add(optarg
, CDROM_ALIAS
);
2035 case QEMU_OPTION_boot
:
2037 static const char * const params
[] = {
2038 "order", "once", "menu", NULL
2040 char buf
[sizeof(boot_devices
)];
2041 char *standard_boot_devices
;
2044 if (!strchr(optarg
, '=')) {
2046 pstrcpy(buf
, sizeof(buf
), optarg
);
2047 } else if (check_params(buf
, sizeof(buf
), params
, optarg
) < 0) {
2049 "qemu: unknown boot parameter '%s' in '%s'\n",
2055 get_param_value(buf
, sizeof(buf
), "order", optarg
)) {
2056 validate_bootdevices(buf
);
2057 pstrcpy(boot_devices
, sizeof(boot_devices
), buf
);
2060 if (get_param_value(buf
, sizeof(buf
),
2062 validate_bootdevices(buf
);
2063 standard_boot_devices
= qemu_strdup(boot_devices
);
2064 pstrcpy(boot_devices
, sizeof(boot_devices
), buf
);
2065 qemu_register_reset(restore_boot_devices
,
2066 standard_boot_devices
);
2068 if (get_param_value(buf
, sizeof(buf
),
2070 if (!strcmp(buf
, "on")) {
2072 } else if (!strcmp(buf
, "off")) {
2076 "qemu: invalid option value '%s'\n",
2084 case QEMU_OPTION_fda
:
2085 case QEMU_OPTION_fdb
:
2086 drive_add(optarg
, FD_ALIAS
, popt
->index
- QEMU_OPTION_fda
);
2088 case QEMU_OPTION_no_fd_bootchk
:
2091 case QEMU_OPTION_netdev
:
2092 if (net_client_parse(qemu_find_opts("netdev"), optarg
) == -1) {
2096 case QEMU_OPTION_net
:
2097 if (net_client_parse(qemu_find_opts("net"), optarg
) == -1) {
2102 case QEMU_OPTION_tftp
:
2103 legacy_tftp_prefix
= optarg
;
2105 case QEMU_OPTION_bootp
:
2106 legacy_bootp_filename
= optarg
;
2108 case QEMU_OPTION_redir
:
2109 if (net_slirp_redir(optarg
) < 0)
2113 case QEMU_OPTION_bt
:
2114 add_device_config(DEV_BT
, optarg
);
2116 case QEMU_OPTION_audio_help
:
2117 if (!(audio_available())) {
2118 printf("Option %s not supported for this target\n", popt
->name
);
2124 case QEMU_OPTION_soundhw
:
2125 if (!(audio_available())) {
2126 printf("Option %s not supported for this target\n", popt
->name
);
2129 select_soundhw (optarg
);
2134 case QEMU_OPTION_version
:
2138 case QEMU_OPTION_m
: {
2141 value
= strtosz(optarg
, NULL
);
2143 fprintf(stderr
, "qemu: invalid ram size: %s\n", optarg
);
2147 /* On 32-bit hosts, QEMU is limited by virtual address space */
2148 if (value
> (2047 << 20) && HOST_LONG_BITS
== 32) {
2149 fprintf(stderr
, "qemu: at most 2047 MB RAM can be simulated\n");
2152 if (value
!= (uint64_t)(ram_addr_t
)value
) {
2153 fprintf(stderr
, "qemu: ram size too large\n");
2159 case QEMU_OPTION_mempath
:
2163 case QEMU_OPTION_mem_prealloc
:
2168 set_cpu_log(optarg
);
2171 gdbstub_dev
= "tcp::" DEFAULT_GDBSTUB_PORT
;
2173 case QEMU_OPTION_gdb
:
2174 gdbstub_dev
= optarg
;
2179 case QEMU_OPTION_bios
:
2182 case QEMU_OPTION_singlestep
:
2189 keyboard_layout
= optarg
;
2191 case QEMU_OPTION_localtime
:
2194 case QEMU_OPTION_vga
:
2195 select_vgahw (optarg
);
2202 w
= strtol(p
, (char **)&p
, 10);
2205 fprintf(stderr
, "qemu: invalid resolution or depth\n");
2211 h
= strtol(p
, (char **)&p
, 10);
2216 depth
= strtol(p
, (char **)&p
, 10);
2217 if (depth
!= 8 && depth
!= 15 && depth
!= 16 &&
2218 depth
!= 24 && depth
!= 32)
2220 } else if (*p
== '\0') {
2221 depth
= graphic_depth
;
2228 graphic_depth
= depth
;
2231 case QEMU_OPTION_echr
:
2234 term_escape_char
= strtol(optarg
, &r
, 0);
2236 printf("Bad argument to echr\n");
2239 case QEMU_OPTION_monitor
:
2240 monitor_parse(optarg
, "readline");
2241 default_monitor
= 0;
2243 case QEMU_OPTION_qmp
:
2244 monitor_parse(optarg
, "control");
2245 default_monitor
= 0;
2247 case QEMU_OPTION_mon
:
2248 opts
= qemu_opts_parse(qemu_find_opts("mon"), optarg
, 1);
2252 default_monitor
= 0;
2254 case QEMU_OPTION_chardev
:
2255 opts
= qemu_opts_parse(qemu_find_opts("chardev"), optarg
, 1);
2260 case QEMU_OPTION_fsdev
:
2261 olist
= qemu_find_opts("fsdev");
2263 fprintf(stderr
, "fsdev is not supported by this qemu build.\n");
2266 opts
= qemu_opts_parse(olist
, optarg
, 1);
2268 fprintf(stderr
, "parse error: %s\n", optarg
);
2272 case QEMU_OPTION_virtfs
: {
2273 char *arg_fsdev
= NULL
;
2274 char *arg_9p
= NULL
;
2277 olist
= qemu_find_opts("virtfs");
2279 fprintf(stderr
, "virtfs is not supported by this qemu build.\n");
2282 opts
= qemu_opts_parse(olist
, optarg
, 1);
2284 fprintf(stderr
, "parse error: %s\n", optarg
);
2288 if (qemu_opt_get(opts
, "fstype") == NULL
||
2289 qemu_opt_get(opts
, "mount_tag") == NULL
||
2290 qemu_opt_get(opts
, "path") == NULL
||
2291 qemu_opt_get(opts
, "security_model") == NULL
) {
2292 fprintf(stderr
, "Usage: -virtfs fstype,path=/share_path/,"
2293 "security_model=[mapped|passthrough|none],"
2298 len
= strlen(",id=,path=,security_model=");
2299 len
+= strlen(qemu_opt_get(opts
, "fstype"));
2300 len
+= strlen(qemu_opt_get(opts
, "mount_tag"));
2301 len
+= strlen(qemu_opt_get(opts
, "path"));
2302 len
+= strlen(qemu_opt_get(opts
, "security_model"));
2303 arg_fsdev
= qemu_malloc((len
+ 1) * sizeof(*arg_fsdev
));
2305 snprintf(arg_fsdev
, (len
+ 1) * sizeof(*arg_fsdev
),
2306 "%s,id=%s,path=%s,security_model=%s",
2307 qemu_opt_get(opts
, "fstype"),
2308 qemu_opt_get(opts
, "mount_tag"),
2309 qemu_opt_get(opts
, "path"),
2310 qemu_opt_get(opts
, "security_model"));
2312 len
= strlen("virtio-9p-pci,fsdev=,mount_tag=");
2313 len
+= 2*strlen(qemu_opt_get(opts
, "mount_tag"));
2314 arg_9p
= qemu_malloc((len
+ 1) * sizeof(*arg_9p
));
2316 snprintf(arg_9p
, (len
+ 1) * sizeof(*arg_9p
),
2317 "virtio-9p-pci,fsdev=%s,mount_tag=%s",
2318 qemu_opt_get(opts
, "mount_tag"),
2319 qemu_opt_get(opts
, "mount_tag"));
2321 if (!qemu_opts_parse(qemu_find_opts("fsdev"), arg_fsdev
, 1)) {
2322 fprintf(stderr
, "parse error [fsdev]: %s\n", optarg
);
2326 if (!qemu_opts_parse(qemu_find_opts("device"), arg_9p
, 1)) {
2327 fprintf(stderr
, "parse error [device]: %s\n", optarg
);
2331 qemu_free(arg_fsdev
);
2335 case QEMU_OPTION_serial
:
2336 add_device_config(DEV_SERIAL
, optarg
);
2338 if (strncmp(optarg
, "mon:", 4) == 0) {
2339 default_monitor
= 0;
2342 case QEMU_OPTION_watchdog
:
2345 "qemu: only one watchdog option may be given\n");
2350 case QEMU_OPTION_watchdog_action
:
2351 if (select_watchdog_action(optarg
) == -1) {
2352 fprintf(stderr
, "Unknown -watchdog-action parameter\n");
2356 case QEMU_OPTION_virtiocon
:
2357 add_device_config(DEV_VIRTCON
, optarg
);
2358 default_virtcon
= 0;
2359 if (strncmp(optarg
, "mon:", 4) == 0) {
2360 default_monitor
= 0;
2363 case QEMU_OPTION_parallel
:
2364 add_device_config(DEV_PARALLEL
, optarg
);
2365 default_parallel
= 0;
2366 if (strncmp(optarg
, "mon:", 4) == 0) {
2367 default_monitor
= 0;
2370 case QEMU_OPTION_debugcon
:
2371 add_device_config(DEV_DEBUGCON
, optarg
);
2373 case QEMU_OPTION_loadvm
:
2376 case QEMU_OPTION_full_screen
:
2380 case QEMU_OPTION_no_frame
:
2383 case QEMU_OPTION_alt_grab
:
2386 case QEMU_OPTION_ctrl_grab
:
2389 case QEMU_OPTION_no_quit
:
2392 case QEMU_OPTION_sdl
:
2393 display_type
= DT_SDL
;
2396 case QEMU_OPTION_pidfile
:
2399 case QEMU_OPTION_win2k_hack
:
2400 win2k_install_hack
= 1;
2402 case QEMU_OPTION_rtc_td_hack
:
2405 case QEMU_OPTION_acpitable
:
2406 do_acpitable_option(optarg
);
2408 case QEMU_OPTION_smbios
:
2409 do_smbios_option(optarg
);
2411 case QEMU_OPTION_enable_kvm
:
2414 case QEMU_OPTION_usb
:
2417 case QEMU_OPTION_usbdevice
:
2419 add_device_config(DEV_USB
, optarg
);
2421 case QEMU_OPTION_device
:
2422 if (!qemu_opts_parse(qemu_find_opts("device"), optarg
, 1)) {
2426 case QEMU_OPTION_smp
:
2429 fprintf(stderr
, "Invalid number of CPUs\n");
2432 if (max_cpus
< smp_cpus
) {
2433 fprintf(stderr
, "maxcpus must be equal to or greater than "
2437 if (max_cpus
> 255) {
2438 fprintf(stderr
, "Unsupported number of maxcpus\n");
2442 case QEMU_OPTION_vnc
:
2444 vnc_display
= optarg
;
2446 case QEMU_OPTION_no_acpi
:
2449 case QEMU_OPTION_no_hpet
:
2452 case QEMU_OPTION_balloon
:
2453 if (balloon_parse(optarg
) < 0) {
2454 fprintf(stderr
, "Unknown -balloon argument %s\n", optarg
);
2458 case QEMU_OPTION_no_reboot
:
2461 case QEMU_OPTION_no_shutdown
:
2464 case QEMU_OPTION_show_cursor
:
2467 case QEMU_OPTION_uuid
:
2468 if(qemu_uuid_parse(optarg
, qemu_uuid
) < 0) {
2469 fprintf(stderr
, "Fail to parse UUID string."
2470 " Wrong format.\n");
2474 case QEMU_OPTION_option_rom
:
2475 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
2476 fprintf(stderr
, "Too many option ROMs\n");
2479 option_rom
[nb_option_roms
] = optarg
;
2482 case QEMU_OPTION_semihosting
:
2483 semihosting_enabled
= 1;
2485 case QEMU_OPTION_name
:
2486 qemu_name
= qemu_strdup(optarg
);
2488 char *p
= strchr(qemu_name
, ',');
2491 if (strncmp(p
, "process=", 8)) {
2492 fprintf(stderr
, "Unknown subargument %s to -name", p
);
2496 os_set_proc_name(p
);
2500 case QEMU_OPTION_prom_env
:
2501 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
2502 fprintf(stderr
, "Too many prom variables\n");
2505 prom_envs
[nb_prom_envs
] = optarg
;
2508 case QEMU_OPTION_old_param
:
2511 case QEMU_OPTION_clock
:
2512 configure_alarms(optarg
);
2514 case QEMU_OPTION_startdate
:
2515 configure_rtc_date_offset(optarg
, 1);
2517 case QEMU_OPTION_rtc
:
2518 opts
= qemu_opts_parse(qemu_find_opts("rtc"), optarg
, 0);
2522 configure_rtc(opts
);
2524 case QEMU_OPTION_tb_size
:
2525 tb_size
= strtol(optarg
, NULL
, 0);
2529 case QEMU_OPTION_icount
:
2530 icount_option
= optarg
;
2532 case QEMU_OPTION_incoming
:
2534 incoming_expected
= true;
2536 case QEMU_OPTION_nodefaults
:
2538 default_parallel
= 0;
2539 default_virtcon
= 0;
2540 default_monitor
= 0;
2547 case QEMU_OPTION_xen_domid
:
2548 if (!(xen_available())) {
2549 printf("Option %s not supported for this target\n", popt
->name
);
2552 xen_domid
= atoi(optarg
);
2554 case QEMU_OPTION_xen_create
:
2555 if (!(xen_available())) {
2556 printf("Option %s not supported for this target\n", popt
->name
);
2559 xen_mode
= XEN_CREATE
;
2561 case QEMU_OPTION_xen_attach
:
2562 if (!(xen_available())) {
2563 printf("Option %s not supported for this target\n", popt
->name
);
2566 xen_mode
= XEN_ATTACH
;
2568 #ifdef CONFIG_SIMPLE_TRACE
2569 case QEMU_OPTION_trace
:
2570 opts
= qemu_opts_parse(qemu_find_opts("trace"), optarg
, 0);
2572 trace_file
= qemu_opt_get(opts
, "file");
2576 case QEMU_OPTION_readconfig
:
2578 int ret
= qemu_read_config_file(optarg
);
2580 fprintf(stderr
, "read config %s: %s\n", optarg
,
2586 case QEMU_OPTION_spice
:
2587 olist
= qemu_find_opts("spice");
2589 fprintf(stderr
, "spice is not supported by this qemu build.\n");
2592 opts
= qemu_opts_parse(olist
, optarg
, 0);
2594 fprintf(stderr
, "parse error: %s\n", optarg
);
2598 case QEMU_OPTION_writeconfig
:
2601 if (strcmp(optarg
, "-") == 0) {
2604 fp
= fopen(optarg
, "w");
2606 fprintf(stderr
, "open %s: %s\n", optarg
, strerror(errno
));
2610 qemu_config_write(fp
);
2615 os_parse_cmd_args(popt
->index
, optarg
);
2621 /* If no data_dir is specified then try to find it relative to the
2624 data_dir
= os_find_datadir(argv
[0]);
2626 /* If all else fails use the install patch specified when building. */
2628 data_dir
= CONFIG_QEMU_DATADIR
;
2631 #ifdef CONFIG_SIMPLE_TRACE
2633 * Set the trace file name, if specified.
2635 st_set_trace_file(trace_file
);
2638 * Default to max_cpus = smp_cpus, in case the user doesn't
2639 * specify a max_cpus value.
2642 max_cpus
= smp_cpus
;
2644 machine
->max_cpus
= machine
->max_cpus
?: 1; /* Default to UP */
2645 if (smp_cpus
> machine
->max_cpus
) {
2646 fprintf(stderr
, "Number of SMP cpus requested (%d), exceeds max cpus "
2647 "supported by machine `%s' (%d)\n", smp_cpus
, machine
->name
,
2652 qemu_opts_foreach(qemu_find_opts("device"), default_driver_check
, NULL
, 0);
2653 qemu_opts_foreach(qemu_find_opts("global"), default_driver_check
, NULL
, 0);
2655 if (machine
->no_serial
) {
2658 if (machine
->no_parallel
) {
2659 default_parallel
= 0;
2661 if (!machine
->use_virtcon
) {
2662 default_virtcon
= 0;
2664 if (machine
->no_vga
) {
2667 if (machine
->no_floppy
) {
2670 if (machine
->no_cdrom
) {
2673 if (machine
->no_sdcard
) {
2677 if (display_type
== DT_NOGRAPHIC
) {
2678 if (default_parallel
)
2679 add_device_config(DEV_PARALLEL
, "null");
2680 if (default_serial
&& default_monitor
) {
2681 add_device_config(DEV_SERIAL
, "mon:stdio");
2682 } else if (default_virtcon
&& default_monitor
) {
2683 add_device_config(DEV_VIRTCON
, "mon:stdio");
2686 add_device_config(DEV_SERIAL
, "stdio");
2687 if (default_virtcon
)
2688 add_device_config(DEV_VIRTCON
, "stdio");
2689 if (default_monitor
)
2690 monitor_parse("stdio", "readline");
2694 add_device_config(DEV_SERIAL
, "vc:80Cx24C");
2695 if (default_parallel
)
2696 add_device_config(DEV_PARALLEL
, "vc:80Cx24C");
2697 if (default_monitor
)
2698 monitor_parse("vc:80Cx24C", "readline");
2699 if (default_virtcon
)
2700 add_device_config(DEV_VIRTCON
, "vc:80Cx24C");
2703 vga_interface_type
= VGA_CIRRUS
;
2707 if (qemu_opts_foreach(qemu_find_opts("chardev"), chardev_init_func
, NULL
, 1) != 0)
2709 #ifdef CONFIG_VIRTFS
2710 if (qemu_opts_foreach(qemu_find_opts("fsdev"), fsdev_init_func
, NULL
, 1) != 0) {
2717 if (pid_file
&& qemu_create_pidfile(pid_file
) != 0) {
2723 int ret
= kvm_init(smp_cpus
);
2725 if (!kvm_available()) {
2726 printf("KVM not supported for this target\n");
2728 fprintf(stderr
, "failed to initialize KVM: %s\n", strerror(-ret
));
2734 if (qemu_init_main_loop()) {
2735 fprintf(stderr
, "qemu_init_main_loop failed\n");
2738 linux_boot
= (kernel_filename
!= NULL
);
2740 if (!linux_boot
&& *kernel_cmdline
!= '\0') {
2741 fprintf(stderr
, "-append only allowed with -kernel option\n");
2745 if (!linux_boot
&& initrd_filename
!= NULL
) {
2746 fprintf(stderr
, "-initrd only allowed with -kernel option\n");
2750 os_set_line_buffering();
2752 if (init_timer_alarm() < 0) {
2753 fprintf(stderr
, "could not initialize alarm timer\n");
2756 configure_icount(icount_option
);
2758 if (net_init_clients() < 0) {
2762 /* init the bluetooth world */
2763 if (foreach_device_config(DEV_BT
, bt_parse
))
2766 /* init the memory */
2768 ram_size
= DEFAULT_RAM_SIZE
* 1024 * 1024;
2770 /* init the dynamic translator */
2771 cpu_exec_init_all(tb_size
* 1024 * 1024);
2773 bdrv_init_with_whitelist();
2777 if (default_cdrom
) {
2778 /* we always create the cdrom drive, even if no disk is there */
2779 drive_add(NULL
, CDROM_ALIAS
);
2782 if (default_floppy
) {
2783 /* we always create at least one floppy */
2784 drive_add(NULL
, FD_ALIAS
, 0);
2787 if (default_sdcard
) {
2788 /* we always create one sd slot, even if no card is in it */
2789 drive_add(NULL
, SD_ALIAS
);
2792 /* open the virtual block devices */
2794 qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot
, NULL
, 0);
2795 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func
, &machine
->use_scsi
, 1) != 0)
2798 register_savevm_live(NULL
, "ram", 0, 4, NULL
, ram_save_live
, NULL
,
2801 if (nb_numa_nodes
> 0) {
2804 if (nb_numa_nodes
> smp_cpus
) {
2805 nb_numa_nodes
= smp_cpus
;
2808 /* If no memory size if given for any node, assume the default case
2809 * and distribute the available memory equally across all nodes
2811 for (i
= 0; i
< nb_numa_nodes
; i
++) {
2812 if (node_mem
[i
] != 0)
2815 if (i
== nb_numa_nodes
) {
2816 uint64_t usedmem
= 0;
2818 /* On Linux, the each node's border has to be 8MB aligned,
2819 * the final node gets the rest.
2821 for (i
= 0; i
< nb_numa_nodes
- 1; i
++) {
2822 node_mem
[i
] = (ram_size
/ nb_numa_nodes
) & ~((1 << 23UL) - 1);
2823 usedmem
+= node_mem
[i
];
2825 node_mem
[i
] = ram_size
- usedmem
;
2828 for (i
= 0; i
< nb_numa_nodes
; i
++) {
2829 if (node_cpumask
[i
] != 0)
2832 /* assigning the VCPUs round-robin is easier to implement, guest OSes
2833 * must cope with this anyway, because there are BIOSes out there in
2834 * real machines which also use this scheme.
2836 if (i
== nb_numa_nodes
) {
2837 for (i
= 0; i
< smp_cpus
; i
++) {
2838 node_cpumask
[i
% nb_numa_nodes
] |= 1 << i
;
2843 if (qemu_opts_foreach(qemu_find_opts("mon"), mon_init_func
, NULL
, 1) != 0) {
2847 if (foreach_device_config(DEV_SERIAL
, serial_parse
) < 0)
2849 if (foreach_device_config(DEV_PARALLEL
, parallel_parse
) < 0)
2851 if (foreach_device_config(DEV_VIRTCON
, virtcon_parse
) < 0)
2853 if (foreach_device_config(DEV_DEBUGCON
, debugcon_parse
) < 0)
2856 module_call_init(MODULE_INIT_DEVICE
);
2858 if (qemu_opts_foreach(qemu_find_opts("device"), device_help_func
, NULL
, 0) != 0)
2862 i
= select_watchdog(watchdog
);
2864 exit (i
== 1 ? 1 : 0);
2867 if (machine
->compat_props
) {
2868 qdev_prop_register_global_list(machine
->compat_props
);
2872 machine
->init(ram_size
, boot_devices
,
2873 kernel_filename
, kernel_cmdline
, initrd_filename
, cpu_model
);
2875 cpu_synchronize_all_post_init();
2877 /* must be after terminal init, SDL library changes signal handlers */
2878 os_setup_signal_handling();
2882 current_machine
= machine
;
2884 /* init USB devices */
2886 if (foreach_device_config(DEV_USB
, usb_parse
) < 0)
2890 /* init generic devices */
2891 if (qemu_opts_foreach(qemu_find_opts("device"), device_init_func
, NULL
, 1) != 0)
2894 net_check_clients();
2896 /* just use the first displaystate for the moment */
2897 ds
= get_displaystate();
2901 if (display_type
== DT_DEFAULT
&& !display_remote
) {
2902 #if defined(CONFIG_SDL) || defined(CONFIG_COCOA)
2903 display_type
= DT_SDL
;
2905 vnc_display
= "localhost:0,to=99";
2911 /* init local displays */
2912 switch (display_type
) {
2915 #if defined(CONFIG_CURSES)
2917 curses_display_init(ds
, full_screen
);
2920 #if defined(CONFIG_SDL)
2922 sdl_display_init(ds
, full_screen
, no_frame
);
2924 #elif defined(CONFIG_COCOA)
2926 cocoa_display_init(ds
, full_screen
);
2933 /* init remote displays */
2935 vnc_display_init(ds
);
2936 if (vnc_display_open(ds
, vnc_display
) < 0)
2939 if (show_vnc_port
) {
2940 printf("VNC server running on `%s'\n", vnc_display_local_addr(ds
));
2945 qemu_spice_display_init(ds
);
2951 dcl
= ds
->listeners
;
2952 while (dcl
!= NULL
) {
2953 if (dcl
->dpy_refresh
!= NULL
) {
2954 ds
->gui_timer
= qemu_new_timer(rt_clock
, gui_update
, ds
);
2955 qemu_mod_timer(ds
->gui_timer
, qemu_get_clock(rt_clock
));
2960 if (ds
->gui_timer
== NULL
) {
2961 nographic_timer
= qemu_new_timer(rt_clock
, nographic_update
, NULL
);
2962 qemu_mod_timer(nographic_timer
, qemu_get_clock(rt_clock
));
2964 text_consoles_set_display(ds
);
2966 if (gdbstub_dev
&& gdbserver_start(gdbstub_dev
) < 0) {
2967 fprintf(stderr
, "qemu: could not open gdbserver on device '%s'\n",
2972 qdev_machine_creation_done();
2974 if (rom_load_all() != 0) {
2975 fprintf(stderr
, "rom loading failed\n");
2979 qemu_system_reset();
2981 if (load_vmstate(loadvm
) < 0) {
2987 int ret
= qemu_start_incoming_migration(incoming
);
2989 fprintf(stderr
, "Migration failed. Exit code %s(%d), exiting.\n",
2993 } else if (autostart
) {