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;
713 value
= strtoull(option
, &endptr
, 0);
715 case 0: case 'M': case 'm':
722 node_mem
[nodenr
] = value
;
724 if (get_param_value(option
, 128, "cpus", optarg
) == 0) {
725 node_cpumask
[nodenr
] = 0;
727 value
= strtoull(option
, &endptr
, 10);
730 fprintf(stderr
, "only 64 CPUs in NUMA mode supported.\n");
732 if (*endptr
== '-') {
733 endvalue
= strtoull(endptr
+1, &endptr
, 10);
734 if (endvalue
>= 63) {
737 "only 63 CPUs in NUMA mode supported.\n");
739 value
= (2ULL << endvalue
) - (1ULL << value
);
741 value
= 1ULL << value
;
744 node_cpumask
[nodenr
] = value
;
751 static void smp_parse(const char *optarg
)
753 int smp
, sockets
= 0, threads
= 0, cores
= 0;
757 smp
= strtoul(optarg
, &endptr
, 10);
758 if (endptr
!= optarg
) {
759 if (*endptr
== ',') {
763 if (get_param_value(option
, 128, "sockets", endptr
) != 0)
764 sockets
= strtoull(option
, NULL
, 10);
765 if (get_param_value(option
, 128, "cores", endptr
) != 0)
766 cores
= strtoull(option
, NULL
, 10);
767 if (get_param_value(option
, 128, "threads", endptr
) != 0)
768 threads
= strtoull(option
, NULL
, 10);
769 if (get_param_value(option
, 128, "maxcpus", endptr
) != 0)
770 max_cpus
= strtoull(option
, NULL
, 10);
772 /* compute missing values, prefer sockets over cores over threads */
773 if (smp
== 0 || sockets
== 0) {
774 sockets
= sockets
> 0 ? sockets
: 1;
775 cores
= cores
> 0 ? cores
: 1;
776 threads
= threads
> 0 ? threads
: 1;
778 smp
= cores
* threads
* sockets
;
782 threads
= threads
> 0 ? threads
: 1;
783 cores
= smp
/ (sockets
* threads
);
785 threads
= smp
/ (cores
* sockets
);
789 smp_cores
= cores
> 0 ? cores
: 1;
790 smp_threads
= threads
> 0 ? threads
: 1;
795 /***********************************************************/
798 static int usb_device_add(const char *devname
)
801 USBDevice
*dev
= NULL
;
806 /* drivers with .usbdevice_name entry in USBDeviceInfo */
807 dev
= usbdevice_create(devname
);
812 if (strstart(devname
, "host:", &p
)) {
813 dev
= usb_host_device_open(p
);
814 } else if (!strcmp(devname
, "bt") || strstart(devname
, "bt:", &p
)) {
815 dev
= usb_bt_init(devname
[2] ? hci_init(p
) :
816 bt_new_hci(qemu_find_bt_vlan(0)));
827 static int usb_device_del(const char *devname
)
832 if (strstart(devname
, "host:", &p
))
833 return usb_host_device_close(p
);
838 p
= strchr(devname
, '.');
841 bus_num
= strtoul(devname
, NULL
, 0);
842 addr
= strtoul(p
+ 1, NULL
, 0);
844 return usb_device_delete_addr(bus_num
, addr
);
847 static int usb_parse(const char *cmdline
)
850 r
= usb_device_add(cmdline
);
852 fprintf(stderr
, "qemu: could not add USB device '%s'\n", cmdline
);
857 void do_usb_add(Monitor
*mon
, const QDict
*qdict
)
859 const char *devname
= qdict_get_str(qdict
, "devname");
860 if (usb_device_add(devname
) < 0) {
861 error_report("could not add USB device '%s'", devname
);
865 void do_usb_del(Monitor
*mon
, const QDict
*qdict
)
867 const char *devname
= qdict_get_str(qdict
, "devname");
868 if (usb_device_del(devname
) < 0) {
869 error_report("could not delete USB device '%s'", devname
);
873 /***********************************************************/
876 static struct pcmcia_socket_entry_s
{
877 PCMCIASocket
*socket
;
878 struct pcmcia_socket_entry_s
*next
;
879 } *pcmcia_sockets
= 0;
881 void pcmcia_socket_register(PCMCIASocket
*socket
)
883 struct pcmcia_socket_entry_s
*entry
;
885 entry
= qemu_malloc(sizeof(struct pcmcia_socket_entry_s
));
886 entry
->socket
= socket
;
887 entry
->next
= pcmcia_sockets
;
888 pcmcia_sockets
= entry
;
891 void pcmcia_socket_unregister(PCMCIASocket
*socket
)
893 struct pcmcia_socket_entry_s
*entry
, **ptr
;
895 ptr
= &pcmcia_sockets
;
896 for (entry
= *ptr
; entry
; ptr
= &entry
->next
, entry
= *ptr
)
897 if (entry
->socket
== socket
) {
903 void pcmcia_info(Monitor
*mon
)
905 struct pcmcia_socket_entry_s
*iter
;
908 monitor_printf(mon
, "No PCMCIA sockets\n");
910 for (iter
= pcmcia_sockets
; iter
; iter
= iter
->next
)
911 monitor_printf(mon
, "%s: %s\n", iter
->socket
->slot_string
,
912 iter
->socket
->attached
? iter
->socket
->card_string
:
916 /***********************************************************/
919 typedef struct IOHandlerRecord
{
921 IOCanReadHandler
*fd_read_poll
;
928 QLIST_ENTRY(IOHandlerRecord
) next
;
931 static QLIST_HEAD(, IOHandlerRecord
) io_handlers
=
932 QLIST_HEAD_INITIALIZER(io_handlers
);
935 /* XXX: fd_read_poll should be suppressed, but an API change is
936 necessary in the character devices to suppress fd_can_read(). */
937 int qemu_set_fd_handler2(int fd
,
938 IOCanReadHandler
*fd_read_poll
,
943 IOHandlerRecord
*ioh
;
945 if (!fd_read
&& !fd_write
) {
946 QLIST_FOREACH(ioh
, &io_handlers
, next
) {
953 QLIST_FOREACH(ioh
, &io_handlers
, next
) {
957 ioh
= qemu_mallocz(sizeof(IOHandlerRecord
));
958 QLIST_INSERT_HEAD(&io_handlers
, ioh
, next
);
961 ioh
->fd_read_poll
= fd_read_poll
;
962 ioh
->fd_read
= fd_read
;
963 ioh
->fd_write
= fd_write
;
964 ioh
->opaque
= opaque
;
970 int qemu_set_fd_handler(int fd
,
975 return qemu_set_fd_handler2(fd
, NULL
, fd_read
, fd_write
, opaque
);
978 /***********************************************************/
979 /* machine registration */
981 static QEMUMachine
*first_machine
= NULL
;
982 QEMUMachine
*current_machine
= NULL
;
984 int qemu_register_machine(QEMUMachine
*m
)
995 static QEMUMachine
*find_machine(const char *name
)
999 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
1000 if (!strcmp(m
->name
, name
))
1002 if (m
->alias
&& !strcmp(m
->alias
, name
))
1008 static QEMUMachine
*find_default_machine(void)
1012 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
1013 if (m
->is_default
) {
1020 /***********************************************************/
1021 /* main execution loop */
1023 static void gui_update(void *opaque
)
1025 uint64_t interval
= GUI_REFRESH_INTERVAL
;
1026 DisplayState
*ds
= opaque
;
1027 DisplayChangeListener
*dcl
= ds
->listeners
;
1029 qemu_flush_coalesced_mmio_buffer();
1032 while (dcl
!= NULL
) {
1033 if (dcl
->gui_timer_interval
&&
1034 dcl
->gui_timer_interval
< interval
)
1035 interval
= dcl
->gui_timer_interval
;
1038 qemu_mod_timer(ds
->gui_timer
, interval
+ qemu_get_clock(rt_clock
));
1041 static void nographic_update(void *opaque
)
1043 uint64_t interval
= GUI_REFRESH_INTERVAL
;
1045 qemu_flush_coalesced_mmio_buffer();
1046 qemu_mod_timer(nographic_timer
, interval
+ qemu_get_clock(rt_clock
));
1049 struct vm_change_state_entry
{
1050 VMChangeStateHandler
*cb
;
1052 QLIST_ENTRY (vm_change_state_entry
) entries
;
1055 static QLIST_HEAD(vm_change_state_head
, vm_change_state_entry
) vm_change_state_head
;
1057 VMChangeStateEntry
*qemu_add_vm_change_state_handler(VMChangeStateHandler
*cb
,
1060 VMChangeStateEntry
*e
;
1062 e
= qemu_mallocz(sizeof (*e
));
1066 QLIST_INSERT_HEAD(&vm_change_state_head
, e
, entries
);
1070 void qemu_del_vm_change_state_handler(VMChangeStateEntry
*e
)
1072 QLIST_REMOVE (e
, entries
);
1076 void vm_state_notify(int running
, int reason
)
1078 VMChangeStateEntry
*e
;
1080 for (e
= vm_change_state_head
.lh_first
; e
; e
= e
->entries
.le_next
) {
1081 e
->cb(e
->opaque
, running
, reason
);
1090 vm_state_notify(1, 0);
1092 monitor_protocol_event(QEVENT_RESUME
, NULL
);
1096 /* reset/shutdown handler */
1098 typedef struct QEMUResetEntry
{
1099 QTAILQ_ENTRY(QEMUResetEntry
) entry
;
1100 QEMUResetHandler
*func
;
1104 static QTAILQ_HEAD(reset_handlers
, QEMUResetEntry
) reset_handlers
=
1105 QTAILQ_HEAD_INITIALIZER(reset_handlers
);
1106 static int reset_requested
;
1107 static int shutdown_requested
;
1108 static int powerdown_requested
;
1109 int debug_requested
;
1110 int vmstop_requested
;
1112 int qemu_shutdown_requested(void)
1114 int r
= shutdown_requested
;
1115 shutdown_requested
= 0;
1119 int qemu_reset_requested(void)
1121 int r
= reset_requested
;
1122 reset_requested
= 0;
1126 int qemu_powerdown_requested(void)
1128 int r
= powerdown_requested
;
1129 powerdown_requested
= 0;
1133 static int qemu_debug_requested(void)
1135 int r
= debug_requested
;
1136 debug_requested
= 0;
1140 static int qemu_vmstop_requested(void)
1142 int r
= vmstop_requested
;
1143 vmstop_requested
= 0;
1147 void qemu_register_reset(QEMUResetHandler
*func
, void *opaque
)
1149 QEMUResetEntry
*re
= qemu_mallocz(sizeof(QEMUResetEntry
));
1152 re
->opaque
= opaque
;
1153 QTAILQ_INSERT_TAIL(&reset_handlers
, re
, entry
);
1156 void qemu_unregister_reset(QEMUResetHandler
*func
, void *opaque
)
1160 QTAILQ_FOREACH(re
, &reset_handlers
, entry
) {
1161 if (re
->func
== func
&& re
->opaque
== opaque
) {
1162 QTAILQ_REMOVE(&reset_handlers
, re
, entry
);
1169 void qemu_system_reset(void)
1171 QEMUResetEntry
*re
, *nre
;
1173 /* reset all devices */
1174 QTAILQ_FOREACH_SAFE(re
, &reset_handlers
, entry
, nre
) {
1175 re
->func(re
->opaque
);
1177 monitor_protocol_event(QEVENT_RESET
, NULL
);
1178 cpu_synchronize_all_post_reset();
1181 void qemu_system_reset_request(void)
1184 shutdown_requested
= 1;
1186 reset_requested
= 1;
1188 qemu_notify_event();
1191 void qemu_system_shutdown_request(void)
1193 shutdown_requested
= 1;
1194 qemu_notify_event();
1197 void qemu_system_powerdown_request(void)
1199 powerdown_requested
= 1;
1200 qemu_notify_event();
1203 void main_loop_wait(int nonblocking
)
1205 IOHandlerRecord
*ioh
;
1206 fd_set rfds
, wfds
, xfds
;
1214 timeout
= qemu_calculate_timeout();
1215 qemu_bh_update_timeout(&timeout
);
1218 os_host_main_loop_wait(&timeout
);
1220 /* poll any events */
1221 /* XXX: separate device handlers from system ones */
1226 QLIST_FOREACH(ioh
, &io_handlers
, next
) {
1230 (!ioh
->fd_read_poll
||
1231 ioh
->fd_read_poll(ioh
->opaque
) != 0)) {
1232 FD_SET(ioh
->fd
, &rfds
);
1236 if (ioh
->fd_write
) {
1237 FD_SET(ioh
->fd
, &wfds
);
1243 tv
.tv_sec
= timeout
/ 1000;
1244 tv
.tv_usec
= (timeout
% 1000) * 1000;
1246 slirp_select_fill(&nfds
, &rfds
, &wfds
, &xfds
);
1248 qemu_mutex_unlock_iothread();
1249 ret
= select(nfds
+ 1, &rfds
, &wfds
, &xfds
, &tv
);
1250 qemu_mutex_lock_iothread();
1252 IOHandlerRecord
*pioh
;
1254 QLIST_FOREACH_SAFE(ioh
, &io_handlers
, next
, pioh
) {
1256 QLIST_REMOVE(ioh
, next
);
1260 if (ioh
->fd_read
&& FD_ISSET(ioh
->fd
, &rfds
)) {
1261 ioh
->fd_read(ioh
->opaque
);
1263 if (ioh
->fd_write
&& FD_ISSET(ioh
->fd
, &wfds
)) {
1264 ioh
->fd_write(ioh
->opaque
);
1269 slirp_select_poll(&rfds
, &wfds
, &xfds
, (ret
< 0));
1271 qemu_run_all_timers();
1273 /* Check bottom-halves last in case any of the earlier events triggered
1279 static int vm_can_run(void)
1281 if (powerdown_requested
)
1283 if (reset_requested
)
1285 if (shutdown_requested
)
1287 if (debug_requested
)
1292 qemu_irq qemu_system_powerdown
;
1294 static void main_loop(void)
1298 qemu_main_loop_start();
1302 bool nonblocking
= false;
1303 #ifdef CONFIG_PROFILER
1306 #ifndef CONFIG_IOTHREAD
1307 nonblocking
= cpu_exec_all();
1309 #ifdef CONFIG_PROFILER
1310 ti
= profile_getclock();
1312 main_loop_wait(nonblocking
);
1313 #ifdef CONFIG_PROFILER
1314 dev_time
+= profile_getclock() - ti
;
1316 } while (vm_can_run());
1318 if ((r
= qemu_debug_requested())) {
1321 if (qemu_shutdown_requested()) {
1322 monitor_protocol_event(QEVENT_SHUTDOWN
, NULL
);
1329 if (qemu_reset_requested()) {
1331 qemu_system_reset();
1334 if (qemu_powerdown_requested()) {
1335 monitor_protocol_event(QEVENT_POWERDOWN
, NULL
);
1336 qemu_irq_raise(qemu_system_powerdown
);
1338 if ((r
= qemu_vmstop_requested())) {
1346 static void version(void)
1348 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION
", Copyright (c) 2003-2008 Fabrice Bellard\n");
1351 static void help(int exitcode
)
1353 const char *options_help
=
1354 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
1356 #define DEFHEADING(text) stringify(text) "\n"
1357 #include "qemu-options.def"
1363 printf("usage: %s [options] [disk_image]\n"
1365 "'disk_image' is a raw hard disk image for IDE hard disk 0\n"
1368 "During emulation, the following keys are useful:\n"
1369 "ctrl-alt-f toggle full screen\n"
1370 "ctrl-alt-n switch to virtual console 'n'\n"
1371 "ctrl-alt toggle mouse and keyboard grab\n"
1373 "When using -nographic, press 'ctrl-a h' to get some help.\n",
1379 #define HAS_ARG 0x0001
1381 typedef struct QEMUOption
{
1388 static const QEMUOption qemu_options
[] = {
1389 { "h", 0, QEMU_OPTION_h
, QEMU_ARCH_ALL
},
1390 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
1391 { option, opt_arg, opt_enum, arch_mask },
1392 #define DEFHEADING(text)
1393 #include "qemu-options.def"
1399 static void select_vgahw (const char *p
)
1404 vga_interface_type
= VGA_NONE
;
1405 if (strstart(p
, "std", &opts
)) {
1406 vga_interface_type
= VGA_STD
;
1407 } else if (strstart(p
, "cirrus", &opts
)) {
1408 vga_interface_type
= VGA_CIRRUS
;
1409 } else if (strstart(p
, "vmware", &opts
)) {
1410 vga_interface_type
= VGA_VMWARE
;
1411 } else if (strstart(p
, "xenfb", &opts
)) {
1412 vga_interface_type
= VGA_XENFB
;
1413 } else if (!strstart(p
, "none", &opts
)) {
1415 fprintf(stderr
, "Unknown vga type: %s\n", p
);
1419 const char *nextopt
;
1421 if (strstart(opts
, ",retrace=", &nextopt
)) {
1423 if (strstart(opts
, "dumb", &nextopt
))
1424 vga_retrace_method
= VGA_RETRACE_DUMB
;
1425 else if (strstart(opts
, "precise", &nextopt
))
1426 vga_retrace_method
= VGA_RETRACE_PRECISE
;
1427 else goto invalid_vga
;
1428 } else goto invalid_vga
;
1433 static int balloon_parse(const char *arg
)
1437 if (strcmp(arg
, "none") == 0) {
1441 if (!strncmp(arg
, "virtio", 6)) {
1442 if (arg
[6] == ',') {
1443 /* have params -> parse them */
1444 opts
= qemu_opts_parse(qemu_find_opts("device"), arg
+7, 0);
1448 /* create empty opts */
1449 opts
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0);
1451 qemu_opt_set(opts
, "driver", "virtio-balloon-pci");
1458 char *qemu_find_file(int type
, const char *name
)
1464 /* If name contains path separators then try it as a straight path. */
1465 if ((strchr(name
, '/') || strchr(name
, '\\'))
1466 && access(name
, R_OK
) == 0) {
1467 return qemu_strdup(name
);
1470 case QEMU_FILE_TYPE_BIOS
:
1473 case QEMU_FILE_TYPE_KEYMAP
:
1474 subdir
= "keymaps/";
1479 len
= strlen(data_dir
) + strlen(name
) + strlen(subdir
) + 2;
1480 buf
= qemu_mallocz(len
);
1481 snprintf(buf
, len
, "%s/%s%s", data_dir
, subdir
, name
);
1482 if (access(buf
, R_OK
)) {
1489 static int device_help_func(QemuOpts
*opts
, void *opaque
)
1491 return qdev_device_help(opts
);
1494 static int device_init_func(QemuOpts
*opts
, void *opaque
)
1498 dev
= qdev_device_add(opts
);
1504 static int chardev_init_func(QemuOpts
*opts
, void *opaque
)
1506 CharDriverState
*chr
;
1508 chr
= qemu_chr_open_opts(opts
, NULL
);
1514 #ifdef CONFIG_VIRTFS
1515 static int fsdev_init_func(QemuOpts
*opts
, void *opaque
)
1518 ret
= qemu_fsdev_add(opts
);
1524 static int mon_init_func(QemuOpts
*opts
, void *opaque
)
1526 CharDriverState
*chr
;
1527 const char *chardev
;
1531 mode
= qemu_opt_get(opts
, "mode");
1535 if (strcmp(mode
, "readline") == 0) {
1536 flags
= MONITOR_USE_READLINE
;
1537 } else if (strcmp(mode
, "control") == 0) {
1538 flags
= MONITOR_USE_CONTROL
;
1540 fprintf(stderr
, "unknown monitor mode \"%s\"\n", mode
);
1544 if (qemu_opt_get_bool(opts
, "pretty", 0))
1545 flags
|= MONITOR_USE_PRETTY
;
1547 if (qemu_opt_get_bool(opts
, "default", 0))
1548 flags
|= MONITOR_IS_DEFAULT
;
1550 chardev
= qemu_opt_get(opts
, "chardev");
1551 chr
= qemu_chr_find(chardev
);
1553 fprintf(stderr
, "chardev \"%s\" not found\n", chardev
);
1557 monitor_init(chr
, flags
);
1561 static void monitor_parse(const char *optarg
, const char *mode
)
1563 static int monitor_device_index
= 0;
1569 if (strstart(optarg
, "chardev:", &p
)) {
1570 snprintf(label
, sizeof(label
), "%s", p
);
1572 snprintf(label
, sizeof(label
), "compat_monitor%d",
1573 monitor_device_index
);
1574 if (monitor_device_index
== 0) {
1577 opts
= qemu_chr_parse_compat(label
, optarg
);
1579 fprintf(stderr
, "parse error: %s\n", optarg
);
1584 opts
= qemu_opts_create(qemu_find_opts("mon"), label
, 1);
1586 fprintf(stderr
, "duplicate chardev: %s\n", label
);
1589 qemu_opt_set(opts
, "mode", mode
);
1590 qemu_opt_set(opts
, "chardev", label
);
1592 qemu_opt_set(opts
, "default", "on");
1593 monitor_device_index
++;
1596 struct device_config
{
1598 DEV_USB
, /* -usbdevice */
1600 DEV_SERIAL
, /* -serial */
1601 DEV_PARALLEL
, /* -parallel */
1602 DEV_VIRTCON
, /* -virtioconsole */
1603 DEV_DEBUGCON
, /* -debugcon */
1605 const char *cmdline
;
1606 QTAILQ_ENTRY(device_config
) next
;
1608 QTAILQ_HEAD(, device_config
) device_configs
= QTAILQ_HEAD_INITIALIZER(device_configs
);
1610 static void add_device_config(int type
, const char *cmdline
)
1612 struct device_config
*conf
;
1614 conf
= qemu_mallocz(sizeof(*conf
));
1616 conf
->cmdline
= cmdline
;
1617 QTAILQ_INSERT_TAIL(&device_configs
, conf
, next
);
1620 static int foreach_device_config(int type
, int (*func
)(const char *cmdline
))
1622 struct device_config
*conf
;
1625 QTAILQ_FOREACH(conf
, &device_configs
, next
) {
1626 if (conf
->type
!= type
)
1628 rc
= func(conf
->cmdline
);
1635 static int serial_parse(const char *devname
)
1637 static int index
= 0;
1640 if (strcmp(devname
, "none") == 0)
1642 if (index
== MAX_SERIAL_PORTS
) {
1643 fprintf(stderr
, "qemu: too many serial ports\n");
1646 snprintf(label
, sizeof(label
), "serial%d", index
);
1647 serial_hds
[index
] = qemu_chr_open(label
, devname
, NULL
);
1648 if (!serial_hds
[index
]) {
1649 fprintf(stderr
, "qemu: could not open serial device '%s': %s\n",
1650 devname
, strerror(errno
));
1657 static int parallel_parse(const char *devname
)
1659 static int index
= 0;
1662 if (strcmp(devname
, "none") == 0)
1664 if (index
== MAX_PARALLEL_PORTS
) {
1665 fprintf(stderr
, "qemu: too many parallel ports\n");
1668 snprintf(label
, sizeof(label
), "parallel%d", index
);
1669 parallel_hds
[index
] = qemu_chr_open(label
, devname
, NULL
);
1670 if (!parallel_hds
[index
]) {
1671 fprintf(stderr
, "qemu: could not open parallel device '%s': %s\n",
1672 devname
, strerror(errno
));
1679 static int virtcon_parse(const char *devname
)
1681 QemuOptsList
*device
= qemu_find_opts("device");
1682 static int index
= 0;
1684 QemuOpts
*bus_opts
, *dev_opts
;
1686 if (strcmp(devname
, "none") == 0)
1688 if (index
== MAX_VIRTIO_CONSOLES
) {
1689 fprintf(stderr
, "qemu: too many virtio consoles\n");
1693 bus_opts
= qemu_opts_create(device
, NULL
, 0);
1694 qemu_opt_set(bus_opts
, "driver", "virtio-serial");
1696 dev_opts
= qemu_opts_create(device
, NULL
, 0);
1697 qemu_opt_set(dev_opts
, "driver", "virtconsole");
1699 snprintf(label
, sizeof(label
), "virtcon%d", index
);
1700 virtcon_hds
[index
] = qemu_chr_open(label
, devname
, NULL
);
1701 if (!virtcon_hds
[index
]) {
1702 fprintf(stderr
, "qemu: could not open virtio console '%s': %s\n",
1703 devname
, strerror(errno
));
1706 qemu_opt_set(dev_opts
, "chardev", label
);
1712 static int debugcon_parse(const char *devname
)
1716 if (!qemu_chr_open("debugcon", devname
, NULL
)) {
1719 opts
= qemu_opts_create(qemu_find_opts("device"), "debugcon", 1);
1721 fprintf(stderr
, "qemu: already have a debugcon device\n");
1724 qemu_opt_set(opts
, "driver", "isa-debugcon");
1725 qemu_opt_set(opts
, "chardev", "debugcon");
1729 void qemu_add_exit_notifier(Notifier
*notify
)
1731 notifier_list_add(&exit_notifiers
, notify
);
1734 void qemu_remove_exit_notifier(Notifier
*notify
)
1736 notifier_list_remove(&exit_notifiers
, notify
);
1739 static void qemu_run_exit_notifiers(void)
1741 notifier_list_notify(&exit_notifiers
);
1744 static const QEMUOption
*lookup_opt(int argc
, char **argv
,
1745 const char **poptarg
, int *poptind
)
1747 const QEMUOption
*popt
;
1748 int optind
= *poptind
;
1749 char *r
= argv
[optind
];
1752 loc_set_cmdline(argv
, optind
, 1);
1754 /* Treat --foo the same as -foo. */
1757 popt
= qemu_options
;
1760 error_report("invalid option");
1763 if (!strcmp(popt
->name
, r
+ 1))
1767 if (popt
->flags
& HAS_ARG
) {
1768 if (optind
>= argc
) {
1769 error_report("requires an argument");
1772 optarg
= argv
[optind
++];
1773 loc_set_cmdline(argv
, optind
- 2, 2);
1784 int main(int argc
, char **argv
, char **envp
)
1786 const char *gdbstub_dev
= NULL
;
1788 int snapshot
, linux_boot
;
1789 const char *icount_option
= NULL
;
1790 const char *initrd_filename
;
1791 const char *kernel_filename
, *kernel_cmdline
;
1792 char boot_devices
[33] = "cad"; /* default to HD->floppy->CD-ROM */
1794 DisplayChangeListener
*dcl
;
1795 int cyls
, heads
, secs
, translation
;
1796 QemuOpts
*hda_opts
= NULL
, *opts
;
1797 QemuOptsList
*olist
;
1800 const char *loadvm
= NULL
;
1801 QEMUMachine
*machine
;
1802 const char *cpu_model
;
1804 const char *pid_file
= NULL
;
1805 const char *incoming
= NULL
;
1806 int show_vnc_port
= 0;
1809 #ifdef CONFIG_SIMPLE_TRACE
1810 const char *trace_file
= NULL
;
1812 atexit(qemu_run_exit_notifiers
);
1813 error_set_progname(argv
[0]);
1817 qemu_cache_utils_init(envp
);
1819 QLIST_INIT (&vm_change_state_head
);
1820 os_setup_early_signal_handling();
1822 module_call_init(MODULE_INIT_MACHINE
);
1823 machine
= find_default_machine();
1825 initrd_filename
= NULL
;
1828 kernel_filename
= NULL
;
1829 kernel_cmdline
= "";
1830 cyls
= heads
= secs
= 0;
1831 translation
= BIOS_ATA_TRANSLATION_AUTO
;
1833 for (i
= 0; i
< MAX_NODES
; i
++) {
1835 node_cpumask
[i
] = 0;
1844 /* first pass of option parsing */
1846 while (optind
< argc
) {
1847 if (argv
[optind
][0] != '-') {
1852 const QEMUOption
*popt
;
1854 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
1855 switch (popt
->index
) {
1856 case QEMU_OPTION_nodefconfig
:
1866 ret
= qemu_read_config_file(CONFIG_QEMU_CONFDIR
"/qemu.conf");
1867 if (ret
< 0 && ret
!= -ENOENT
) {
1871 ret
= qemu_read_config_file(arch_config_name
);
1872 if (ret
< 0 && ret
!= -ENOENT
) {
1878 /* second pass of option parsing */
1883 if (argv
[optind
][0] != '-') {
1884 hda_opts
= drive_add(argv
[optind
++], HD_ALIAS
, 0);
1886 const QEMUOption
*popt
;
1888 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
1889 if (!(popt
->arch_mask
& arch_type
)) {
1890 printf("Option %s not supported for this target\n", popt
->name
);
1893 switch(popt
->index
) {
1895 machine
= find_machine(optarg
);
1898 printf("Supported machines are:\n");
1899 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
1901 printf("%-10s %s (alias of %s)\n",
1902 m
->alias
, m
->desc
, m
->name
);
1903 printf("%-10s %s%s\n",
1905 m
->is_default
? " (default)" : "");
1907 exit(*optarg
!= '?');
1910 case QEMU_OPTION_cpu
:
1911 /* hw initialization will check this */
1912 if (*optarg
== '?') {
1913 list_cpus(stdout
, &fprintf
, optarg
);
1919 case QEMU_OPTION_initrd
:
1920 initrd_filename
= optarg
;
1922 case QEMU_OPTION_hda
:
1924 hda_opts
= drive_add(optarg
, HD_ALIAS
, 0);
1926 hda_opts
= drive_add(optarg
, HD_ALIAS
1927 ",cyls=%d,heads=%d,secs=%d%s",
1928 0, cyls
, heads
, secs
,
1929 translation
== BIOS_ATA_TRANSLATION_LBA
?
1931 translation
== BIOS_ATA_TRANSLATION_NONE
?
1932 ",trans=none" : "");
1934 case QEMU_OPTION_hdb
:
1935 case QEMU_OPTION_hdc
:
1936 case QEMU_OPTION_hdd
:
1937 drive_add(optarg
, HD_ALIAS
, popt
->index
- QEMU_OPTION_hda
);
1939 case QEMU_OPTION_drive
:
1940 drive_add(NULL
, "%s", optarg
);
1942 case QEMU_OPTION_set
:
1943 if (qemu_set_option(optarg
) != 0)
1946 case QEMU_OPTION_global
:
1947 if (qemu_global_option(optarg
) != 0)
1950 case QEMU_OPTION_mtdblock
:
1951 drive_add(optarg
, MTD_ALIAS
);
1953 case QEMU_OPTION_sd
:
1954 drive_add(optarg
, SD_ALIAS
);
1956 case QEMU_OPTION_pflash
:
1957 drive_add(optarg
, PFLASH_ALIAS
);
1959 case QEMU_OPTION_snapshot
:
1962 case QEMU_OPTION_hdachs
:
1966 cyls
= strtol(p
, (char **)&p
, 0);
1967 if (cyls
< 1 || cyls
> 16383)
1972 heads
= strtol(p
, (char **)&p
, 0);
1973 if (heads
< 1 || heads
> 16)
1978 secs
= strtol(p
, (char **)&p
, 0);
1979 if (secs
< 1 || secs
> 63)
1983 if (!strcmp(p
, "none"))
1984 translation
= BIOS_ATA_TRANSLATION_NONE
;
1985 else if (!strcmp(p
, "lba"))
1986 translation
= BIOS_ATA_TRANSLATION_LBA
;
1987 else if (!strcmp(p
, "auto"))
1988 translation
= BIOS_ATA_TRANSLATION_AUTO
;
1991 } else if (*p
!= '\0') {
1993 fprintf(stderr
, "qemu: invalid physical CHS format\n");
1996 if (hda_opts
!= NULL
) {
1998 snprintf(num
, sizeof(num
), "%d", cyls
);
1999 qemu_opt_set(hda_opts
, "cyls", num
);
2000 snprintf(num
, sizeof(num
), "%d", heads
);
2001 qemu_opt_set(hda_opts
, "heads", num
);
2002 snprintf(num
, sizeof(num
), "%d", secs
);
2003 qemu_opt_set(hda_opts
, "secs", num
);
2004 if (translation
== BIOS_ATA_TRANSLATION_LBA
)
2005 qemu_opt_set(hda_opts
, "trans", "lba");
2006 if (translation
== BIOS_ATA_TRANSLATION_NONE
)
2007 qemu_opt_set(hda_opts
, "trans", "none");
2011 case QEMU_OPTION_numa
:
2012 if (nb_numa_nodes
>= MAX_NODES
) {
2013 fprintf(stderr
, "qemu: too many NUMA nodes\n");
2018 case QEMU_OPTION_nographic
:
2019 display_type
= DT_NOGRAPHIC
;
2021 #ifdef CONFIG_CURSES
2022 case QEMU_OPTION_curses
:
2023 display_type
= DT_CURSES
;
2026 case QEMU_OPTION_portrait
:
2029 case QEMU_OPTION_kernel
:
2030 kernel_filename
= optarg
;
2032 case QEMU_OPTION_append
:
2033 kernel_cmdline
= optarg
;
2035 case QEMU_OPTION_cdrom
:
2036 drive_add(optarg
, CDROM_ALIAS
);
2038 case QEMU_OPTION_boot
:
2040 static const char * const params
[] = {
2041 "order", "once", "menu", NULL
2043 char buf
[sizeof(boot_devices
)];
2044 char *standard_boot_devices
;
2047 if (!strchr(optarg
, '=')) {
2049 pstrcpy(buf
, sizeof(buf
), optarg
);
2050 } else if (check_params(buf
, sizeof(buf
), params
, optarg
) < 0) {
2052 "qemu: unknown boot parameter '%s' in '%s'\n",
2058 get_param_value(buf
, sizeof(buf
), "order", optarg
)) {
2059 validate_bootdevices(buf
);
2060 pstrcpy(boot_devices
, sizeof(boot_devices
), buf
);
2063 if (get_param_value(buf
, sizeof(buf
),
2065 validate_bootdevices(buf
);
2066 standard_boot_devices
= qemu_strdup(boot_devices
);
2067 pstrcpy(boot_devices
, sizeof(boot_devices
), buf
);
2068 qemu_register_reset(restore_boot_devices
,
2069 standard_boot_devices
);
2071 if (get_param_value(buf
, sizeof(buf
),
2073 if (!strcmp(buf
, "on")) {
2075 } else if (!strcmp(buf
, "off")) {
2079 "qemu: invalid option value '%s'\n",
2087 case QEMU_OPTION_fda
:
2088 case QEMU_OPTION_fdb
:
2089 drive_add(optarg
, FD_ALIAS
, popt
->index
- QEMU_OPTION_fda
);
2091 case QEMU_OPTION_no_fd_bootchk
:
2094 case QEMU_OPTION_netdev
:
2095 if (net_client_parse(qemu_find_opts("netdev"), optarg
) == -1) {
2099 case QEMU_OPTION_net
:
2100 if (net_client_parse(qemu_find_opts("net"), optarg
) == -1) {
2105 case QEMU_OPTION_tftp
:
2106 legacy_tftp_prefix
= optarg
;
2108 case QEMU_OPTION_bootp
:
2109 legacy_bootp_filename
= optarg
;
2111 case QEMU_OPTION_redir
:
2112 if (net_slirp_redir(optarg
) < 0)
2116 case QEMU_OPTION_bt
:
2117 add_device_config(DEV_BT
, optarg
);
2119 case QEMU_OPTION_audio_help
:
2120 if (!(audio_available())) {
2121 printf("Option %s not supported for this target\n", popt
->name
);
2127 case QEMU_OPTION_soundhw
:
2128 if (!(audio_available())) {
2129 printf("Option %s not supported for this target\n", popt
->name
);
2132 select_soundhw (optarg
);
2137 case QEMU_OPTION_version
:
2141 case QEMU_OPTION_m
: {
2145 value
= strtoul(optarg
, &ptr
, 10);
2147 case 0: case 'M': case 'm':
2154 fprintf(stderr
, "qemu: invalid ram size: %s\n", optarg
);
2158 /* On 32-bit hosts, QEMU is limited by virtual address space */
2159 if (value
> (2047 << 20) && HOST_LONG_BITS
== 32) {
2160 fprintf(stderr
, "qemu: at most 2047 MB RAM can be simulated\n");
2163 if (value
!= (uint64_t)(ram_addr_t
)value
) {
2164 fprintf(stderr
, "qemu: ram size too large\n");
2170 case QEMU_OPTION_mempath
:
2174 case QEMU_OPTION_mem_prealloc
:
2179 set_cpu_log(optarg
);
2182 gdbstub_dev
= "tcp::" DEFAULT_GDBSTUB_PORT
;
2184 case QEMU_OPTION_gdb
:
2185 gdbstub_dev
= optarg
;
2190 case QEMU_OPTION_bios
:
2193 case QEMU_OPTION_singlestep
:
2200 keyboard_layout
= optarg
;
2202 case QEMU_OPTION_localtime
:
2205 case QEMU_OPTION_vga
:
2206 select_vgahw (optarg
);
2213 w
= strtol(p
, (char **)&p
, 10);
2216 fprintf(stderr
, "qemu: invalid resolution or depth\n");
2222 h
= strtol(p
, (char **)&p
, 10);
2227 depth
= strtol(p
, (char **)&p
, 10);
2228 if (depth
!= 8 && depth
!= 15 && depth
!= 16 &&
2229 depth
!= 24 && depth
!= 32)
2231 } else if (*p
== '\0') {
2232 depth
= graphic_depth
;
2239 graphic_depth
= depth
;
2242 case QEMU_OPTION_echr
:
2245 term_escape_char
= strtol(optarg
, &r
, 0);
2247 printf("Bad argument to echr\n");
2250 case QEMU_OPTION_monitor
:
2251 monitor_parse(optarg
, "readline");
2252 default_monitor
= 0;
2254 case QEMU_OPTION_qmp
:
2255 monitor_parse(optarg
, "control");
2256 default_monitor
= 0;
2258 case QEMU_OPTION_mon
:
2259 opts
= qemu_opts_parse(qemu_find_opts("mon"), optarg
, 1);
2263 default_monitor
= 0;
2265 case QEMU_OPTION_chardev
:
2266 opts
= qemu_opts_parse(qemu_find_opts("chardev"), optarg
, 1);
2271 case QEMU_OPTION_fsdev
:
2272 olist
= qemu_find_opts("fsdev");
2274 fprintf(stderr
, "fsdev is not supported by this qemu build.\n");
2277 opts
= qemu_opts_parse(olist
, optarg
, 1);
2279 fprintf(stderr
, "parse error: %s\n", optarg
);
2283 case QEMU_OPTION_virtfs
: {
2284 char *arg_fsdev
= NULL
;
2285 char *arg_9p
= NULL
;
2288 olist
= qemu_find_opts("virtfs");
2290 fprintf(stderr
, "virtfs is not supported by this qemu build.\n");
2293 opts
= qemu_opts_parse(olist
, optarg
, 1);
2295 fprintf(stderr
, "parse error: %s\n", optarg
);
2299 if (qemu_opt_get(opts
, "fstype") == NULL
||
2300 qemu_opt_get(opts
, "mount_tag") == NULL
||
2301 qemu_opt_get(opts
, "path") == NULL
||
2302 qemu_opt_get(opts
, "security_model") == NULL
) {
2303 fprintf(stderr
, "Usage: -virtfs fstype,path=/share_path/,"
2304 "security_model=[mapped|passthrough|none],"
2309 len
= strlen(",id=,path=,security_model=");
2310 len
+= strlen(qemu_opt_get(opts
, "fstype"));
2311 len
+= strlen(qemu_opt_get(opts
, "mount_tag"));
2312 len
+= strlen(qemu_opt_get(opts
, "path"));
2313 len
+= strlen(qemu_opt_get(opts
, "security_model"));
2314 arg_fsdev
= qemu_malloc((len
+ 1) * sizeof(*arg_fsdev
));
2316 snprintf(arg_fsdev
, (len
+ 1) * sizeof(*arg_fsdev
),
2317 "%s,id=%s,path=%s,security_model=%s",
2318 qemu_opt_get(opts
, "fstype"),
2319 qemu_opt_get(opts
, "mount_tag"),
2320 qemu_opt_get(opts
, "path"),
2321 qemu_opt_get(opts
, "security_model"));
2323 len
= strlen("virtio-9p-pci,fsdev=,mount_tag=");
2324 len
+= 2*strlen(qemu_opt_get(opts
, "mount_tag"));
2325 arg_9p
= qemu_malloc((len
+ 1) * sizeof(*arg_9p
));
2327 snprintf(arg_9p
, (len
+ 1) * sizeof(*arg_9p
),
2328 "virtio-9p-pci,fsdev=%s,mount_tag=%s",
2329 qemu_opt_get(opts
, "mount_tag"),
2330 qemu_opt_get(opts
, "mount_tag"));
2332 if (!qemu_opts_parse(qemu_find_opts("fsdev"), arg_fsdev
, 1)) {
2333 fprintf(stderr
, "parse error [fsdev]: %s\n", optarg
);
2337 if (!qemu_opts_parse(qemu_find_opts("device"), arg_9p
, 1)) {
2338 fprintf(stderr
, "parse error [device]: %s\n", optarg
);
2342 qemu_free(arg_fsdev
);
2346 case QEMU_OPTION_serial
:
2347 add_device_config(DEV_SERIAL
, optarg
);
2349 if (strncmp(optarg
, "mon:", 4) == 0) {
2350 default_monitor
= 0;
2353 case QEMU_OPTION_watchdog
:
2356 "qemu: only one watchdog option may be given\n");
2361 case QEMU_OPTION_watchdog_action
:
2362 if (select_watchdog_action(optarg
) == -1) {
2363 fprintf(stderr
, "Unknown -watchdog-action parameter\n");
2367 case QEMU_OPTION_virtiocon
:
2368 add_device_config(DEV_VIRTCON
, optarg
);
2369 default_virtcon
= 0;
2370 if (strncmp(optarg
, "mon:", 4) == 0) {
2371 default_monitor
= 0;
2374 case QEMU_OPTION_parallel
:
2375 add_device_config(DEV_PARALLEL
, optarg
);
2376 default_parallel
= 0;
2377 if (strncmp(optarg
, "mon:", 4) == 0) {
2378 default_monitor
= 0;
2381 case QEMU_OPTION_debugcon
:
2382 add_device_config(DEV_DEBUGCON
, optarg
);
2384 case QEMU_OPTION_loadvm
:
2387 case QEMU_OPTION_full_screen
:
2391 case QEMU_OPTION_no_frame
:
2394 case QEMU_OPTION_alt_grab
:
2397 case QEMU_OPTION_ctrl_grab
:
2400 case QEMU_OPTION_no_quit
:
2403 case QEMU_OPTION_sdl
:
2404 display_type
= DT_SDL
;
2407 case QEMU_OPTION_pidfile
:
2410 case QEMU_OPTION_win2k_hack
:
2411 win2k_install_hack
= 1;
2413 case QEMU_OPTION_rtc_td_hack
:
2416 case QEMU_OPTION_acpitable
:
2417 do_acpitable_option(optarg
);
2419 case QEMU_OPTION_smbios
:
2420 do_smbios_option(optarg
);
2422 case QEMU_OPTION_enable_kvm
:
2425 case QEMU_OPTION_usb
:
2428 case QEMU_OPTION_usbdevice
:
2430 add_device_config(DEV_USB
, optarg
);
2432 case QEMU_OPTION_device
:
2433 if (!qemu_opts_parse(qemu_find_opts("device"), optarg
, 1)) {
2437 case QEMU_OPTION_smp
:
2440 fprintf(stderr
, "Invalid number of CPUs\n");
2443 if (max_cpus
< smp_cpus
) {
2444 fprintf(stderr
, "maxcpus must be equal to or greater than "
2448 if (max_cpus
> 255) {
2449 fprintf(stderr
, "Unsupported number of maxcpus\n");
2453 case QEMU_OPTION_vnc
:
2455 vnc_display
= optarg
;
2457 case QEMU_OPTION_no_acpi
:
2460 case QEMU_OPTION_no_hpet
:
2463 case QEMU_OPTION_balloon
:
2464 if (balloon_parse(optarg
) < 0) {
2465 fprintf(stderr
, "Unknown -balloon argument %s\n", optarg
);
2469 case QEMU_OPTION_no_reboot
:
2472 case QEMU_OPTION_no_shutdown
:
2475 case QEMU_OPTION_show_cursor
:
2478 case QEMU_OPTION_uuid
:
2479 if(qemu_uuid_parse(optarg
, qemu_uuid
) < 0) {
2480 fprintf(stderr
, "Fail to parse UUID string."
2481 " Wrong format.\n");
2485 case QEMU_OPTION_option_rom
:
2486 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
2487 fprintf(stderr
, "Too many option ROMs\n");
2490 option_rom
[nb_option_roms
] = optarg
;
2493 case QEMU_OPTION_semihosting
:
2494 semihosting_enabled
= 1;
2496 case QEMU_OPTION_name
:
2497 qemu_name
= qemu_strdup(optarg
);
2499 char *p
= strchr(qemu_name
, ',');
2502 if (strncmp(p
, "process=", 8)) {
2503 fprintf(stderr
, "Unknown subargument %s to -name", p
);
2507 os_set_proc_name(p
);
2511 case QEMU_OPTION_prom_env
:
2512 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
2513 fprintf(stderr
, "Too many prom variables\n");
2516 prom_envs
[nb_prom_envs
] = optarg
;
2519 case QEMU_OPTION_old_param
:
2522 case QEMU_OPTION_clock
:
2523 configure_alarms(optarg
);
2525 case QEMU_OPTION_startdate
:
2526 configure_rtc_date_offset(optarg
, 1);
2528 case QEMU_OPTION_rtc
:
2529 opts
= qemu_opts_parse(qemu_find_opts("rtc"), optarg
, 0);
2533 configure_rtc(opts
);
2535 case QEMU_OPTION_tb_size
:
2536 tb_size
= strtol(optarg
, NULL
, 0);
2540 case QEMU_OPTION_icount
:
2541 icount_option
= optarg
;
2543 case QEMU_OPTION_incoming
:
2545 incoming_expected
= true;
2547 case QEMU_OPTION_nodefaults
:
2549 default_parallel
= 0;
2550 default_virtcon
= 0;
2551 default_monitor
= 0;
2558 case QEMU_OPTION_xen_domid
:
2559 if (!(xen_available())) {
2560 printf("Option %s not supported for this target\n", popt
->name
);
2563 xen_domid
= atoi(optarg
);
2565 case QEMU_OPTION_xen_create
:
2566 if (!(xen_available())) {
2567 printf("Option %s not supported for this target\n", popt
->name
);
2570 xen_mode
= XEN_CREATE
;
2572 case QEMU_OPTION_xen_attach
:
2573 if (!(xen_available())) {
2574 printf("Option %s not supported for this target\n", popt
->name
);
2577 xen_mode
= XEN_ATTACH
;
2579 #ifdef CONFIG_SIMPLE_TRACE
2580 case QEMU_OPTION_trace
:
2581 opts
= qemu_opts_parse(qemu_find_opts("trace"), optarg
, 0);
2583 trace_file
= qemu_opt_get(opts
, "file");
2587 case QEMU_OPTION_readconfig
:
2589 int ret
= qemu_read_config_file(optarg
);
2591 fprintf(stderr
, "read config %s: %s\n", optarg
,
2597 case QEMU_OPTION_spice
:
2598 olist
= qemu_find_opts("spice");
2600 fprintf(stderr
, "spice is not supported by this qemu build.\n");
2603 opts
= qemu_opts_parse(olist
, optarg
, 0);
2605 fprintf(stderr
, "parse error: %s\n", optarg
);
2609 case QEMU_OPTION_writeconfig
:
2612 if (strcmp(optarg
, "-") == 0) {
2615 fp
= fopen(optarg
, "w");
2617 fprintf(stderr
, "open %s: %s\n", optarg
, strerror(errno
));
2621 qemu_config_write(fp
);
2626 os_parse_cmd_args(popt
->index
, optarg
);
2632 /* If no data_dir is specified then try to find it relative to the
2635 data_dir
= os_find_datadir(argv
[0]);
2637 /* If all else fails use the install patch specified when building. */
2639 data_dir
= CONFIG_QEMU_DATADIR
;
2642 #ifdef CONFIG_SIMPLE_TRACE
2644 * Set the trace file name, if specified.
2646 st_set_trace_file(trace_file
);
2649 * Default to max_cpus = smp_cpus, in case the user doesn't
2650 * specify a max_cpus value.
2653 max_cpus
= smp_cpus
;
2655 machine
->max_cpus
= machine
->max_cpus
?: 1; /* Default to UP */
2656 if (smp_cpus
> machine
->max_cpus
) {
2657 fprintf(stderr
, "Number of SMP cpus requested (%d), exceeds max cpus "
2658 "supported by machine `%s' (%d)\n", smp_cpus
, machine
->name
,
2663 qemu_opts_foreach(qemu_find_opts("device"), default_driver_check
, NULL
, 0);
2664 qemu_opts_foreach(qemu_find_opts("global"), default_driver_check
, NULL
, 0);
2666 if (machine
->no_serial
) {
2669 if (machine
->no_parallel
) {
2670 default_parallel
= 0;
2672 if (!machine
->use_virtcon
) {
2673 default_virtcon
= 0;
2675 if (machine
->no_vga
) {
2678 if (machine
->no_floppy
) {
2681 if (machine
->no_cdrom
) {
2684 if (machine
->no_sdcard
) {
2688 if (display_type
== DT_NOGRAPHIC
) {
2689 if (default_parallel
)
2690 add_device_config(DEV_PARALLEL
, "null");
2691 if (default_serial
&& default_monitor
) {
2692 add_device_config(DEV_SERIAL
, "mon:stdio");
2693 } else if (default_virtcon
&& default_monitor
) {
2694 add_device_config(DEV_VIRTCON
, "mon:stdio");
2697 add_device_config(DEV_SERIAL
, "stdio");
2698 if (default_virtcon
)
2699 add_device_config(DEV_VIRTCON
, "stdio");
2700 if (default_monitor
)
2701 monitor_parse("stdio", "readline");
2705 add_device_config(DEV_SERIAL
, "vc:80Cx24C");
2706 if (default_parallel
)
2707 add_device_config(DEV_PARALLEL
, "vc:80Cx24C");
2708 if (default_monitor
)
2709 monitor_parse("vc:80Cx24C", "readline");
2710 if (default_virtcon
)
2711 add_device_config(DEV_VIRTCON
, "vc:80Cx24C");
2714 vga_interface_type
= VGA_CIRRUS
;
2718 if (qemu_opts_foreach(qemu_find_opts("chardev"), chardev_init_func
, NULL
, 1) != 0)
2720 #ifdef CONFIG_VIRTFS
2721 if (qemu_opts_foreach(qemu_find_opts("fsdev"), fsdev_init_func
, NULL
, 1) != 0) {
2728 if (pid_file
&& qemu_create_pidfile(pid_file
) != 0) {
2734 int ret
= kvm_init(smp_cpus
);
2736 if (!kvm_available()) {
2737 printf("KVM not supported for this target\n");
2739 fprintf(stderr
, "failed to initialize KVM: %s\n", strerror(-ret
));
2745 if (qemu_init_main_loop()) {
2746 fprintf(stderr
, "qemu_init_main_loop failed\n");
2749 linux_boot
= (kernel_filename
!= NULL
);
2751 if (!linux_boot
&& *kernel_cmdline
!= '\0') {
2752 fprintf(stderr
, "-append only allowed with -kernel option\n");
2756 if (!linux_boot
&& initrd_filename
!= NULL
) {
2757 fprintf(stderr
, "-initrd only allowed with -kernel option\n");
2761 os_set_line_buffering();
2763 if (init_timer_alarm() < 0) {
2764 fprintf(stderr
, "could not initialize alarm timer\n");
2767 configure_icount(icount_option
);
2769 if (net_init_clients() < 0) {
2773 /* init the bluetooth world */
2774 if (foreach_device_config(DEV_BT
, bt_parse
))
2777 /* init the memory */
2779 ram_size
= DEFAULT_RAM_SIZE
* 1024 * 1024;
2781 /* init the dynamic translator */
2782 cpu_exec_init_all(tb_size
* 1024 * 1024);
2784 bdrv_init_with_whitelist();
2788 if (default_cdrom
) {
2789 /* we always create the cdrom drive, even if no disk is there */
2790 drive_add(NULL
, CDROM_ALIAS
);
2793 if (default_floppy
) {
2794 /* we always create at least one floppy */
2795 drive_add(NULL
, FD_ALIAS
, 0);
2798 if (default_sdcard
) {
2799 /* we always create one sd slot, even if no card is in it */
2800 drive_add(NULL
, SD_ALIAS
);
2803 /* open the virtual block devices */
2805 qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot
, NULL
, 0);
2806 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func
, &machine
->use_scsi
, 1) != 0)
2809 register_savevm_live(NULL
, "ram", 0, 4, NULL
, ram_save_live
, NULL
,
2812 if (nb_numa_nodes
> 0) {
2815 if (nb_numa_nodes
> smp_cpus
) {
2816 nb_numa_nodes
= smp_cpus
;
2819 /* If no memory size if given for any node, assume the default case
2820 * and distribute the available memory equally across all nodes
2822 for (i
= 0; i
< nb_numa_nodes
; i
++) {
2823 if (node_mem
[i
] != 0)
2826 if (i
== nb_numa_nodes
) {
2827 uint64_t usedmem
= 0;
2829 /* On Linux, the each node's border has to be 8MB aligned,
2830 * the final node gets the rest.
2832 for (i
= 0; i
< nb_numa_nodes
- 1; i
++) {
2833 node_mem
[i
] = (ram_size
/ nb_numa_nodes
) & ~((1 << 23UL) - 1);
2834 usedmem
+= node_mem
[i
];
2836 node_mem
[i
] = ram_size
- usedmem
;
2839 for (i
= 0; i
< nb_numa_nodes
; i
++) {
2840 if (node_cpumask
[i
] != 0)
2843 /* assigning the VCPUs round-robin is easier to implement, guest OSes
2844 * must cope with this anyway, because there are BIOSes out there in
2845 * real machines which also use this scheme.
2847 if (i
== nb_numa_nodes
) {
2848 for (i
= 0; i
< smp_cpus
; i
++) {
2849 node_cpumask
[i
% nb_numa_nodes
] |= 1 << i
;
2854 if (qemu_opts_foreach(qemu_find_opts("mon"), mon_init_func
, NULL
, 1) != 0) {
2858 if (foreach_device_config(DEV_SERIAL
, serial_parse
) < 0)
2860 if (foreach_device_config(DEV_PARALLEL
, parallel_parse
) < 0)
2862 if (foreach_device_config(DEV_VIRTCON
, virtcon_parse
) < 0)
2864 if (foreach_device_config(DEV_DEBUGCON
, debugcon_parse
) < 0)
2867 module_call_init(MODULE_INIT_DEVICE
);
2869 if (qemu_opts_foreach(qemu_find_opts("device"), device_help_func
, NULL
, 0) != 0)
2873 i
= select_watchdog(watchdog
);
2875 exit (i
== 1 ? 1 : 0);
2878 if (machine
->compat_props
) {
2879 qdev_prop_register_global_list(machine
->compat_props
);
2883 machine
->init(ram_size
, boot_devices
,
2884 kernel_filename
, kernel_cmdline
, initrd_filename
, cpu_model
);
2886 cpu_synchronize_all_post_init();
2888 /* must be after terminal init, SDL library changes signal handlers */
2889 os_setup_signal_handling();
2893 current_machine
= machine
;
2895 /* init USB devices */
2897 if (foreach_device_config(DEV_USB
, usb_parse
) < 0)
2901 /* init generic devices */
2902 if (qemu_opts_foreach(qemu_find_opts("device"), device_init_func
, NULL
, 1) != 0)
2905 net_check_clients();
2907 /* just use the first displaystate for the moment */
2908 ds
= get_displaystate();
2912 if (display_type
== DT_DEFAULT
&& !display_remote
) {
2913 #if defined(CONFIG_SDL) || defined(CONFIG_COCOA)
2914 display_type
= DT_SDL
;
2916 vnc_display
= "localhost:0,to=99";
2922 /* init local displays */
2923 switch (display_type
) {
2926 #if defined(CONFIG_CURSES)
2928 curses_display_init(ds
, full_screen
);
2931 #if defined(CONFIG_SDL)
2933 sdl_display_init(ds
, full_screen
, no_frame
);
2935 #elif defined(CONFIG_COCOA)
2937 cocoa_display_init(ds
, full_screen
);
2944 /* init remote displays */
2946 vnc_display_init(ds
);
2947 if (vnc_display_open(ds
, vnc_display
) < 0)
2950 if (show_vnc_port
) {
2951 printf("VNC server running on `%s'\n", vnc_display_local_addr(ds
));
2956 qemu_spice_display_init(ds
);
2962 dcl
= ds
->listeners
;
2963 while (dcl
!= NULL
) {
2964 if (dcl
->dpy_refresh
!= NULL
) {
2965 ds
->gui_timer
= qemu_new_timer(rt_clock
, gui_update
, ds
);
2966 qemu_mod_timer(ds
->gui_timer
, qemu_get_clock(rt_clock
));
2971 if (ds
->gui_timer
== NULL
) {
2972 nographic_timer
= qemu_new_timer(rt_clock
, nographic_update
, NULL
);
2973 qemu_mod_timer(nographic_timer
, qemu_get_clock(rt_clock
));
2975 text_consoles_set_display(ds
);
2977 if (gdbstub_dev
&& gdbserver_start(gdbstub_dev
) < 0) {
2978 fprintf(stderr
, "qemu: could not open gdbserver on device '%s'\n",
2983 qdev_machine_creation_done();
2985 if (rom_load_all() != 0) {
2986 fprintf(stderr
, "rom loading failed\n");
2990 qemu_system_reset();
2992 if (load_vmstate(loadvm
) < 0) {
2998 int ret
= qemu_start_incoming_migration(incoming
);
3000 fprintf(stderr
, "Migration failed. Exit code %s(%d), exiting.\n",
3004 } else if (autostart
) {