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>
53 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
55 #include <sys/sysctl.h>
64 #include <linux/ppdev.h>
65 #include <linux/parport.h>
69 #include <sys/ethernet.h>
70 #include <sys/sockio.h>
71 #include <netinet/arp.h>
72 #include <netinet/in_systm.h>
73 #include <netinet/ip.h>
74 #include <netinet/ip_icmp.h> // must come after ip.h
75 #include <netinet/udp.h>
76 #include <netinet/tcp.h>
84 #if defined(__OpenBSD__)
88 #if defined(CONFIG_VDE)
89 #include <libvdeplug.h>
97 #if defined(__APPLE__) || defined(main)
99 int qemu_main(int argc
, char **argv
, char **envp
);
100 int main(int argc
, char **argv
)
102 return qemu_main(argc
, argv
, NULL
);
105 #define main qemu_main
107 #endif /* CONFIG_SDL */
111 #define main qemu_main
112 #endif /* CONFIG_COCOA */
117 #include "hw/boards.h"
119 #include "hw/pcmcia.h"
124 #include "hw/watchdog.h"
125 #include "hw/smbios.h"
128 #include "hw/loader.h"
131 #include "net/slirp.h"
136 #include "qemu-timer.h"
137 #include "qemu-char.h"
138 #include "cache-utils.h"
140 #include "blockdev.h"
141 #include "block-migration.h"
143 #include "audio/audio.h"
144 #include "migration.h"
147 #include "qemu-option.h"
148 #include "qemu-config.h"
149 #include "qemu-options.h"
150 #include "qmp-commands.h"
151 #include "main-loop.h"
153 #include "fsdev/qemu-fsdev.h"
158 #include "qemu_socket.h"
160 #include "slirp/libslirp.h"
163 #include "trace/control.h"
164 #include "qemu-queue.h"
166 #include "arch_init.h"
168 #include "ui/qemu-spice.h"
171 //#define DEBUG_SLIRP
173 #define DEFAULT_RAM_SIZE 128
175 #define MAX_VIRTIO_CONSOLES 1
177 static const char *data_dir
;
178 const char *bios_name
= NULL
;
179 enum vga_retrace_method vga_retrace_method
= VGA_RETRACE_DUMB
;
180 DisplayType display_type
= DT_DEFAULT
;
181 int display_remote
= 0;
182 const char* keyboard_layout
= NULL
;
184 const char *mem_path
= NULL
;
186 int mem_prealloc
= 0; /* force preallocation of physical target memory */
189 NICInfo nd_table
[MAX_NICS
];
191 static int rtc_utc
= 1;
192 static int rtc_date_offset
= -1; /* -1 means no change */
193 QEMUClock
*rtc_clock
;
194 int vga_interface_type
= VGA_NONE
;
195 static int full_screen
= 0;
197 static int no_frame
= 0;
200 CharDriverState
*serial_hds
[MAX_SERIAL_PORTS
];
201 CharDriverState
*parallel_hds
[MAX_PARALLEL_PORTS
];
202 CharDriverState
*virtcon_hds
[MAX_VIRTIO_CONSOLES
];
203 int win2k_install_hack
= 0;
211 const char *vnc_display
;
213 int acpi_enabled
= 1;
219 int graphic_rotate
= 0;
220 const char *watchdog
;
221 QEMUOptionRom option_rom
[MAX_OPTION_ROMS
];
223 int semihosting_enabled
= 0;
225 const char *qemu_name
;
228 unsigned int nb_prom_envs
= 0;
229 const char *prom_envs
[MAX_PROM_ENVS
];
231 uint8_t *boot_splash_filedata
;
232 int boot_splash_filedata_size
;
233 uint8_t qemu_extra_params_fw
[2];
235 typedef struct FWBootEntry FWBootEntry
;
238 QTAILQ_ENTRY(FWBootEntry
) link
;
244 QTAILQ_HEAD(, FWBootEntry
) fw_boot_order
= QTAILQ_HEAD_INITIALIZER(fw_boot_order
);
247 uint64_t node_mem
[MAX_NODES
];
248 uint64_t node_cpumask
[MAX_NODES
];
250 uint8_t qemu_uuid
[16];
252 static QEMUBootSetHandler
*boot_set_handler
;
253 static void *boot_set_opaque
;
255 static NotifierList exit_notifiers
=
256 NOTIFIER_LIST_INITIALIZER(exit_notifiers
);
258 static NotifierList machine_init_done_notifiers
=
259 NOTIFIER_LIST_INITIALIZER(machine_init_done_notifiers
);
261 static int tcg_allowed
= 1;
265 enum xen_mode xen_mode
= XEN_EMULATE
;
266 static int tcg_tb_size
;
268 static int default_serial
= 1;
269 static int default_parallel
= 1;
270 static int default_virtcon
= 1;
271 static int default_monitor
= 1;
272 static int default_floppy
= 1;
273 static int default_cdrom
= 1;
274 static int default_sdcard
= 1;
280 { .driver
= "isa-serial", .flag
= &default_serial
},
281 { .driver
= "isa-parallel", .flag
= &default_parallel
},
282 { .driver
= "isa-fdc", .flag
= &default_floppy
},
283 { .driver
= "ide-cd", .flag
= &default_cdrom
},
284 { .driver
= "ide-hd", .flag
= &default_cdrom
},
285 { .driver
= "ide-drive", .flag
= &default_cdrom
},
286 { .driver
= "scsi-cd", .flag
= &default_cdrom
},
287 { .driver
= "virtio-serial-pci", .flag
= &default_virtcon
},
288 { .driver
= "virtio-serial-s390", .flag
= &default_virtcon
},
289 { .driver
= "virtio-serial", .flag
= &default_virtcon
},
292 static void res_free(void)
294 if (boot_splash_filedata
!= NULL
) {
295 g_free(boot_splash_filedata
);
296 boot_splash_filedata
= NULL
;
300 static int default_driver_check(QemuOpts
*opts
, void *opaque
)
302 const char *driver
= qemu_opt_get(opts
, "driver");
307 for (i
= 0; i
< ARRAY_SIZE(default_list
); i
++) {
308 if (strcmp(default_list
[i
].driver
, driver
) != 0)
310 *(default_list
[i
].flag
) = 0;
315 /***********************************************************/
318 static RunState current_run_state
= RUN_STATE_PRELAUNCH
;
323 } RunStateTransition
;
325 static const RunStateTransition runstate_transitions_def
[] = {
327 { RUN_STATE_DEBUG
, RUN_STATE_RUNNING
},
329 { RUN_STATE_INMIGRATE
, RUN_STATE_RUNNING
},
330 { RUN_STATE_INMIGRATE
, RUN_STATE_PRELAUNCH
},
332 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_PAUSED
},
333 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_FINISH_MIGRATE
},
335 { RUN_STATE_IO_ERROR
, RUN_STATE_RUNNING
},
336 { RUN_STATE_IO_ERROR
, RUN_STATE_FINISH_MIGRATE
},
338 { RUN_STATE_PAUSED
, RUN_STATE_RUNNING
},
339 { RUN_STATE_PAUSED
, RUN_STATE_FINISH_MIGRATE
},
341 { RUN_STATE_POSTMIGRATE
, RUN_STATE_RUNNING
},
342 { RUN_STATE_POSTMIGRATE
, RUN_STATE_FINISH_MIGRATE
},
344 { RUN_STATE_PRELAUNCH
, RUN_STATE_RUNNING
},
345 { RUN_STATE_PRELAUNCH
, RUN_STATE_FINISH_MIGRATE
},
346 { RUN_STATE_PRELAUNCH
, RUN_STATE_INMIGRATE
},
348 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_RUNNING
},
349 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_POSTMIGRATE
},
351 { RUN_STATE_RESTORE_VM
, RUN_STATE_RUNNING
},
353 { RUN_STATE_RUNNING
, RUN_STATE_DEBUG
},
354 { RUN_STATE_RUNNING
, RUN_STATE_INTERNAL_ERROR
},
355 { RUN_STATE_RUNNING
, RUN_STATE_IO_ERROR
},
356 { RUN_STATE_RUNNING
, RUN_STATE_PAUSED
},
357 { RUN_STATE_RUNNING
, RUN_STATE_FINISH_MIGRATE
},
358 { RUN_STATE_RUNNING
, RUN_STATE_RESTORE_VM
},
359 { RUN_STATE_RUNNING
, RUN_STATE_SAVE_VM
},
360 { RUN_STATE_RUNNING
, RUN_STATE_SHUTDOWN
},
361 { RUN_STATE_RUNNING
, RUN_STATE_WATCHDOG
},
363 { RUN_STATE_SAVE_VM
, RUN_STATE_RUNNING
},
365 { RUN_STATE_SHUTDOWN
, RUN_STATE_PAUSED
},
366 { RUN_STATE_SHUTDOWN
, RUN_STATE_FINISH_MIGRATE
},
368 { RUN_STATE_WATCHDOG
, RUN_STATE_RUNNING
},
369 { RUN_STATE_WATCHDOG
, RUN_STATE_FINISH_MIGRATE
},
371 { RUN_STATE_MAX
, RUN_STATE_MAX
},
374 static bool runstate_valid_transitions
[RUN_STATE_MAX
][RUN_STATE_MAX
];
376 bool runstate_check(RunState state
)
378 return current_run_state
== state
;
381 void runstate_init(void)
383 const RunStateTransition
*p
;
385 memset(&runstate_valid_transitions
, 0, sizeof(runstate_valid_transitions
));
387 for (p
= &runstate_transitions_def
[0]; p
->from
!= RUN_STATE_MAX
; p
++) {
388 runstate_valid_transitions
[p
->from
][p
->to
] = true;
392 /* This function will abort() on invalid state transitions */
393 void runstate_set(RunState new_state
)
395 assert(new_state
< RUN_STATE_MAX
);
397 if (!runstate_valid_transitions
[current_run_state
][new_state
]) {
398 fprintf(stderr
, "ERROR: invalid runstate transition: '%s' -> '%s'\n",
399 RunState_lookup
[current_run_state
],
400 RunState_lookup
[new_state
]);
404 current_run_state
= new_state
;
407 int runstate_is_running(void)
409 return runstate_check(RUN_STATE_RUNNING
);
412 StatusInfo
*qmp_query_status(Error
**errp
)
414 StatusInfo
*info
= g_malloc0(sizeof(*info
));
416 info
->running
= runstate_is_running();
417 info
->singlestep
= singlestep
;
418 info
->status
= current_run_state
;
423 /***********************************************************/
424 /* real time host monotonic timer */
426 /***********************************************************/
427 /* host time/date access */
428 void qemu_get_timedate(struct tm
*tm
, int offset
)
435 if (rtc_date_offset
== -1) {
439 ret
= localtime(&ti
);
441 ti
-= rtc_date_offset
;
445 memcpy(tm
, ret
, sizeof(struct tm
));
448 int qemu_timedate_diff(struct tm
*tm
)
452 if (rtc_date_offset
== -1)
454 seconds
= mktimegm(tm
);
457 tmp
.tm_isdst
= -1; /* use timezone to figure it out */
458 seconds
= mktime(&tmp
);
461 seconds
= mktimegm(tm
) + rtc_date_offset
;
463 return seconds
- time(NULL
);
466 void rtc_change_mon_event(struct tm
*tm
)
470 data
= qobject_from_jsonf("{ 'offset': %d }", qemu_timedate_diff(tm
));
471 monitor_protocol_event(QEVENT_RTC_CHANGE
, data
);
472 qobject_decref(data
);
475 static void configure_rtc_date_offset(const char *startdate
, int legacy
)
477 time_t rtc_start_date
;
480 if (!strcmp(startdate
, "now") && legacy
) {
481 rtc_date_offset
= -1;
483 if (sscanf(startdate
, "%d-%d-%dT%d:%d:%d",
491 } else if (sscanf(startdate
, "%d-%d-%d",
503 rtc_start_date
= mktimegm(&tm
);
504 if (rtc_start_date
== -1) {
506 fprintf(stderr
, "Invalid date format. Valid formats are:\n"
507 "'2006-06-17T16:01:21' or '2006-06-17'\n");
510 rtc_date_offset
= time(NULL
) - rtc_start_date
;
514 static void configure_rtc(QemuOpts
*opts
)
518 value
= qemu_opt_get(opts
, "base");
520 if (!strcmp(value
, "utc")) {
522 } else if (!strcmp(value
, "localtime")) {
525 configure_rtc_date_offset(value
, 0);
528 value
= qemu_opt_get(opts
, "clock");
530 if (!strcmp(value
, "host")) {
531 rtc_clock
= host_clock
;
532 } else if (!strcmp(value
, "vm")) {
533 rtc_clock
= vm_clock
;
535 fprintf(stderr
, "qemu: invalid option value '%s'\n", value
);
539 value
= qemu_opt_get(opts
, "driftfix");
541 if (!strcmp(value
, "slew")) {
542 static GlobalProperty slew_lost_ticks
[] = {
544 .driver
= "mc146818rtc",
545 .property
= "lost_tick_policy",
548 { /* end of list */ }
551 qdev_prop_register_global_list(slew_lost_ticks
);
552 } else if (!strcmp(value
, "none")) {
553 /* discard is default */
555 fprintf(stderr
, "qemu: invalid option value '%s'\n", value
);
561 /***********************************************************/
562 /* Bluetooth support */
565 static struct HCIInfo
*hci_table
[MAX_NICS
];
567 static struct bt_vlan_s
{
568 struct bt_scatternet_s net
;
570 struct bt_vlan_s
*next
;
573 /* find or alloc a new bluetooth "VLAN" */
574 static struct bt_scatternet_s
*qemu_find_bt_vlan(int id
)
576 struct bt_vlan_s
**pvlan
, *vlan
;
577 for (vlan
= first_bt_vlan
; vlan
!= NULL
; vlan
= vlan
->next
) {
581 vlan
= g_malloc0(sizeof(struct bt_vlan_s
));
583 pvlan
= &first_bt_vlan
;
584 while (*pvlan
!= NULL
)
585 pvlan
= &(*pvlan
)->next
;
590 static void null_hci_send(struct HCIInfo
*hci
, const uint8_t *data
, int len
)
594 static int null_hci_addr_set(struct HCIInfo
*hci
, const uint8_t *bd_addr
)
599 static struct HCIInfo null_hci
= {
600 .cmd_send
= null_hci_send
,
601 .sco_send
= null_hci_send
,
602 .acl_send
= null_hci_send
,
603 .bdaddr_set
= null_hci_addr_set
,
606 struct HCIInfo
*qemu_next_hci(void)
608 if (cur_hci
== nb_hcis
)
611 return hci_table
[cur_hci
++];
614 static struct HCIInfo
*hci_init(const char *str
)
617 struct bt_scatternet_s
*vlan
= 0;
619 if (!strcmp(str
, "null"))
622 else if (!strncmp(str
, "host", 4) && (str
[4] == '\0' || str
[4] == ':'))
624 return bt_host_hci(str
[4] ? str
+ 5 : "hci0");
625 else if (!strncmp(str
, "hci", 3)) {
628 if (!strncmp(str
+ 3, ",vlan=", 6)) {
629 vlan
= qemu_find_bt_vlan(strtol(str
+ 9, &endp
, 0));
634 vlan
= qemu_find_bt_vlan(0);
636 return bt_new_hci(vlan
);
639 fprintf(stderr
, "qemu: Unknown bluetooth HCI `%s'.\n", str
);
644 static int bt_hci_parse(const char *str
)
649 if (nb_hcis
>= MAX_NICS
) {
650 fprintf(stderr
, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS
);
663 bdaddr
.b
[5] = 0x56 + nb_hcis
;
664 hci
->bdaddr_set(hci
, bdaddr
.b
);
666 hci_table
[nb_hcis
++] = hci
;
671 static void bt_vhci_add(int vlan_id
)
673 struct bt_scatternet_s
*vlan
= qemu_find_bt_vlan(vlan_id
);
676 fprintf(stderr
, "qemu: warning: adding a VHCI to "
677 "an empty scatternet %i\n", vlan_id
);
679 bt_vhci_init(bt_new_hci(vlan
));
682 static struct bt_device_s
*bt_device_add(const char *opt
)
684 struct bt_scatternet_s
*vlan
;
686 char *endp
= strstr(opt
, ",vlan=");
687 int len
= (endp
? endp
- opt
: strlen(opt
)) + 1;
690 pstrcpy(devname
, MIN(sizeof(devname
), len
), opt
);
693 vlan_id
= strtol(endp
+ 6, &endp
, 0);
695 fprintf(stderr
, "qemu: unrecognised bluetooth vlan Id\n");
700 vlan
= qemu_find_bt_vlan(vlan_id
);
703 fprintf(stderr
, "qemu: warning: adding a slave device to "
704 "an empty scatternet %i\n", vlan_id
);
706 if (!strcmp(devname
, "keyboard"))
707 return bt_keyboard_init(vlan
);
709 fprintf(stderr
, "qemu: unsupported bluetooth device `%s'\n", devname
);
713 static int bt_parse(const char *opt
)
715 const char *endp
, *p
;
718 if (strstart(opt
, "hci", &endp
)) {
719 if (!*endp
|| *endp
== ',') {
721 if (!strstart(endp
, ",vlan=", 0))
724 return bt_hci_parse(opt
);
726 } else if (strstart(opt
, "vhci", &endp
)) {
727 if (!*endp
|| *endp
== ',') {
729 if (strstart(endp
, ",vlan=", &p
)) {
730 vlan
= strtol(p
, (char **) &endp
, 0);
732 fprintf(stderr
, "qemu: bad scatternet '%s'\n", p
);
736 fprintf(stderr
, "qemu: bad parameter '%s'\n", endp
+ 1);
745 } else if (strstart(opt
, "device:", &endp
))
746 return !bt_device_add(endp
);
748 fprintf(stderr
, "qemu: bad bluetooth parameter '%s'\n", opt
);
752 /***********************************************************/
753 /* QEMU Block devices */
755 #define HD_OPTS "media=disk"
756 #define CDROM_OPTS "media=cdrom"
758 #define PFLASH_OPTS ""
762 static int drive_init_func(QemuOpts
*opts
, void *opaque
)
764 int *use_scsi
= opaque
;
766 return drive_init(opts
, *use_scsi
) == NULL
;
769 static int drive_enable_snapshot(QemuOpts
*opts
, void *opaque
)
771 if (NULL
== qemu_opt_get(opts
, "snapshot")) {
772 qemu_opt_set(opts
, "snapshot", "on");
777 static void default_drive(int enable
, int snapshot
, int use_scsi
,
778 BlockInterfaceType type
, int index
,
783 if (type
== IF_DEFAULT
) {
784 type
= use_scsi
? IF_SCSI
: IF_IDE
;
787 if (!enable
|| drive_get_by_index(type
, index
)) {
791 opts
= drive_add(type
, index
, NULL
, optstr
);
793 drive_enable_snapshot(opts
, NULL
);
795 if (!drive_init(opts
, use_scsi
)) {
800 void qemu_register_boot_set(QEMUBootSetHandler
*func
, void *opaque
)
802 boot_set_handler
= func
;
803 boot_set_opaque
= opaque
;
806 int qemu_boot_set(const char *boot_devices
)
808 if (!boot_set_handler
) {
811 return boot_set_handler(boot_set_opaque
, boot_devices
);
814 static void validate_bootdevices(char *devices
)
816 /* We just do some generic consistency checks */
820 for (p
= devices
; *p
!= '\0'; p
++) {
821 /* Allowed boot devices are:
822 * a-b: floppy disk drives
823 * c-f: IDE disk drives
824 * g-m: machine implementation dependent drives
825 * n-p: network devices
826 * It's up to each machine implementation to check if the given boot
827 * devices match the actual hardware implementation and firmware
830 if (*p
< 'a' || *p
> 'p') {
831 fprintf(stderr
, "Invalid boot device '%c'\n", *p
);
834 if (bitmap
& (1 << (*p
- 'a'))) {
835 fprintf(stderr
, "Boot device '%c' was given twice\n", *p
);
838 bitmap
|= 1 << (*p
- 'a');
842 static void restore_boot_devices(void *opaque
)
844 char *standard_boot_devices
= opaque
;
845 static int first
= 1;
847 /* Restore boot order and remove ourselves after the first boot */
853 qemu_boot_set(standard_boot_devices
);
855 qemu_unregister_reset(restore_boot_devices
, standard_boot_devices
);
856 g_free(standard_boot_devices
);
859 void add_boot_device_path(int32_t bootindex
, DeviceState
*dev
,
862 FWBootEntry
*node
, *i
;
868 assert(dev
!= NULL
|| suffix
!= NULL
);
870 node
= g_malloc0(sizeof(FWBootEntry
));
871 node
->bootindex
= bootindex
;
872 node
->suffix
= suffix
? g_strdup(suffix
) : NULL
;
875 QTAILQ_FOREACH(i
, &fw_boot_order
, link
) {
876 if (i
->bootindex
== bootindex
) {
877 fprintf(stderr
, "Two devices with same boot index %d\n", bootindex
);
879 } else if (i
->bootindex
< bootindex
) {
882 QTAILQ_INSERT_BEFORE(i
, node
, link
);
885 QTAILQ_INSERT_TAIL(&fw_boot_order
, node
, link
);
889 * This function returns null terminated string that consist of new line
890 * separated device paths.
892 * memory pointed by "size" is assigned total length of the array in bytes
895 char *get_boot_devices_list(uint32_t *size
)
901 QTAILQ_FOREACH(i
, &fw_boot_order
, link
) {
902 char *devpath
= NULL
, *bootpath
;
906 devpath
= qdev_get_fw_dev_path(i
->dev
);
910 if (i
->suffix
&& devpath
) {
911 size_t bootpathlen
= strlen(devpath
) + strlen(i
->suffix
) + 1;
913 bootpath
= g_malloc(bootpathlen
);
914 snprintf(bootpath
, bootpathlen
, "%s%s", devpath
, i
->suffix
);
916 } else if (devpath
) {
920 bootpath
= g_strdup(i
->suffix
);
924 list
[total
-1] = '\n';
926 len
= strlen(bootpath
) + 1;
927 list
= g_realloc(list
, total
+ len
);
928 memcpy(&list
[total
], bootpath
, len
);
938 static void numa_add(const char *optarg
)
942 unsigned long long value
, endvalue
;
945 optarg
= get_opt_name(option
, 128, optarg
, ',') + 1;
946 if (!strcmp(option
, "node")) {
947 if (get_param_value(option
, 128, "nodeid", optarg
) == 0) {
948 nodenr
= nb_numa_nodes
;
950 nodenr
= strtoull(option
, NULL
, 10);
953 if (get_param_value(option
, 128, "mem", optarg
) == 0) {
954 node_mem
[nodenr
] = 0;
957 sval
= strtosz(option
, &endptr
);
958 if (sval
< 0 || *endptr
) {
959 fprintf(stderr
, "qemu: invalid numa mem size: %s\n", optarg
);
962 node_mem
[nodenr
] = sval
;
964 if (get_param_value(option
, 128, "cpus", optarg
) == 0) {
965 node_cpumask
[nodenr
] = 0;
967 value
= strtoull(option
, &endptr
, 10);
970 fprintf(stderr
, "only 64 CPUs in NUMA mode supported.\n");
972 if (*endptr
== '-') {
973 endvalue
= strtoull(endptr
+1, &endptr
, 10);
974 if (endvalue
>= 63) {
977 "only 63 CPUs in NUMA mode supported.\n");
979 value
= (2ULL << endvalue
) - (1ULL << value
);
981 value
= 1ULL << value
;
984 node_cpumask
[nodenr
] = value
;
991 static void smp_parse(const char *optarg
)
993 int smp
, sockets
= 0, threads
= 0, cores
= 0;
997 smp
= strtoul(optarg
, &endptr
, 10);
998 if (endptr
!= optarg
) {
999 if (*endptr
== ',') {
1003 if (get_param_value(option
, 128, "sockets", endptr
) != 0)
1004 sockets
= strtoull(option
, NULL
, 10);
1005 if (get_param_value(option
, 128, "cores", endptr
) != 0)
1006 cores
= strtoull(option
, NULL
, 10);
1007 if (get_param_value(option
, 128, "threads", endptr
) != 0)
1008 threads
= strtoull(option
, NULL
, 10);
1009 if (get_param_value(option
, 128, "maxcpus", endptr
) != 0)
1010 max_cpus
= strtoull(option
, NULL
, 10);
1012 /* compute missing values, prefer sockets over cores over threads */
1013 if (smp
== 0 || sockets
== 0) {
1014 sockets
= sockets
> 0 ? sockets
: 1;
1015 cores
= cores
> 0 ? cores
: 1;
1016 threads
= threads
> 0 ? threads
: 1;
1018 smp
= cores
* threads
* sockets
;
1022 threads
= threads
> 0 ? threads
: 1;
1023 cores
= smp
/ (sockets
* threads
);
1025 threads
= smp
/ (cores
* sockets
);
1029 smp_cores
= cores
> 0 ? cores
: 1;
1030 smp_threads
= threads
> 0 ? threads
: 1;
1032 max_cpus
= smp_cpus
;
1035 /***********************************************************/
1038 static int usb_device_add(const char *devname
)
1041 USBDevice
*dev
= NULL
;
1046 /* drivers with .usbdevice_name entry in USBDeviceInfo */
1047 dev
= usbdevice_create(devname
);
1051 /* the other ones */
1052 #ifndef CONFIG_LINUX
1053 /* only the linux version is qdev-ified, usb-bsd still needs this */
1054 if (strstart(devname
, "host:", &p
)) {
1055 dev
= usb_host_device_open(p
);
1058 if (!strcmp(devname
, "bt") || strstart(devname
, "bt:", &p
)) {
1059 dev
= usb_bt_init(devname
[2] ? hci_init(p
) :
1060 bt_new_hci(qemu_find_bt_vlan(0)));
1071 static int usb_device_del(const char *devname
)
1076 if (strstart(devname
, "host:", &p
))
1077 return usb_host_device_close(p
);
1082 p
= strchr(devname
, '.');
1085 bus_num
= strtoul(devname
, NULL
, 0);
1086 addr
= strtoul(p
+ 1, NULL
, 0);
1088 return usb_device_delete_addr(bus_num
, addr
);
1091 static int usb_parse(const char *cmdline
)
1094 r
= usb_device_add(cmdline
);
1096 fprintf(stderr
, "qemu: could not add USB device '%s'\n", cmdline
);
1101 void do_usb_add(Monitor
*mon
, const QDict
*qdict
)
1103 const char *devname
= qdict_get_str(qdict
, "devname");
1104 if (usb_device_add(devname
) < 0) {
1105 error_report("could not add USB device '%s'", devname
);
1109 void do_usb_del(Monitor
*mon
, const QDict
*qdict
)
1111 const char *devname
= qdict_get_str(qdict
, "devname");
1112 if (usb_device_del(devname
) < 0) {
1113 error_report("could not delete USB device '%s'", devname
);
1117 /***********************************************************/
1118 /* PCMCIA/Cardbus */
1120 static struct pcmcia_socket_entry_s
{
1121 PCMCIASocket
*socket
;
1122 struct pcmcia_socket_entry_s
*next
;
1123 } *pcmcia_sockets
= 0;
1125 void pcmcia_socket_register(PCMCIASocket
*socket
)
1127 struct pcmcia_socket_entry_s
*entry
;
1129 entry
= g_malloc(sizeof(struct pcmcia_socket_entry_s
));
1130 entry
->socket
= socket
;
1131 entry
->next
= pcmcia_sockets
;
1132 pcmcia_sockets
= entry
;
1135 void pcmcia_socket_unregister(PCMCIASocket
*socket
)
1137 struct pcmcia_socket_entry_s
*entry
, **ptr
;
1139 ptr
= &pcmcia_sockets
;
1140 for (entry
= *ptr
; entry
; ptr
= &entry
->next
, entry
= *ptr
)
1141 if (entry
->socket
== socket
) {
1147 void pcmcia_info(Monitor
*mon
)
1149 struct pcmcia_socket_entry_s
*iter
;
1151 if (!pcmcia_sockets
)
1152 monitor_printf(mon
, "No PCMCIA sockets\n");
1154 for (iter
= pcmcia_sockets
; iter
; iter
= iter
->next
)
1155 monitor_printf(mon
, "%s: %s\n", iter
->socket
->slot_string
,
1156 iter
->socket
->attached
? iter
->socket
->card_string
:
1160 /***********************************************************/
1161 /* machine registration */
1163 static QEMUMachine
*first_machine
= NULL
;
1164 QEMUMachine
*current_machine
= NULL
;
1166 int qemu_register_machine(QEMUMachine
*m
)
1169 pm
= &first_machine
;
1177 static QEMUMachine
*find_machine(const char *name
)
1181 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
1182 if (!strcmp(m
->name
, name
))
1184 if (m
->alias
&& !strcmp(m
->alias
, name
))
1190 static QEMUMachine
*find_default_machine(void)
1194 for(m
= first_machine
; m
!= NULL
; m
= m
->next
) {
1195 if (m
->is_default
) {
1202 /***********************************************************/
1203 /* main execution loop */
1205 static void gui_update(void *opaque
)
1207 uint64_t interval
= GUI_REFRESH_INTERVAL
;
1208 DisplayState
*ds
= opaque
;
1209 DisplayChangeListener
*dcl
= ds
->listeners
;
1213 while (dcl
!= NULL
) {
1214 if (dcl
->gui_timer_interval
&&
1215 dcl
->gui_timer_interval
< interval
)
1216 interval
= dcl
->gui_timer_interval
;
1219 qemu_mod_timer(ds
->gui_timer
, interval
+ qemu_get_clock_ms(rt_clock
));
1222 struct vm_change_state_entry
{
1223 VMChangeStateHandler
*cb
;
1225 QLIST_ENTRY (vm_change_state_entry
) entries
;
1228 static QLIST_HEAD(vm_change_state_head
, vm_change_state_entry
) vm_change_state_head
;
1230 VMChangeStateEntry
*qemu_add_vm_change_state_handler(VMChangeStateHandler
*cb
,
1233 VMChangeStateEntry
*e
;
1235 e
= g_malloc0(sizeof (*e
));
1239 QLIST_INSERT_HEAD(&vm_change_state_head
, e
, entries
);
1243 void qemu_del_vm_change_state_handler(VMChangeStateEntry
*e
)
1245 QLIST_REMOVE (e
, entries
);
1249 void vm_state_notify(int running
, RunState state
)
1251 VMChangeStateEntry
*e
;
1253 trace_vm_state_notify(running
, state
);
1255 for (e
= vm_change_state_head
.lh_first
; e
; e
= e
->entries
.le_next
) {
1256 e
->cb(e
->opaque
, running
, state
);
1262 if (!runstate_is_running()) {
1264 runstate_set(RUN_STATE_RUNNING
);
1265 vm_state_notify(1, RUN_STATE_RUNNING
);
1267 monitor_protocol_event(QEVENT_RESUME
, NULL
);
1271 /* reset/shutdown handler */
1273 typedef struct QEMUResetEntry
{
1274 QTAILQ_ENTRY(QEMUResetEntry
) entry
;
1275 QEMUResetHandler
*func
;
1279 static QTAILQ_HEAD(reset_handlers
, QEMUResetEntry
) reset_handlers
=
1280 QTAILQ_HEAD_INITIALIZER(reset_handlers
);
1281 static int reset_requested
;
1282 static int shutdown_requested
, shutdown_signal
= -1;
1283 static pid_t shutdown_pid
;
1284 static int powerdown_requested
;
1285 static int debug_requested
;
1286 static RunState vmstop_requested
= RUN_STATE_MAX
;
1288 int qemu_shutdown_requested_get(void)
1290 return shutdown_requested
;
1293 int qemu_reset_requested_get(void)
1295 return reset_requested
;
1298 int qemu_shutdown_requested(void)
1300 int r
= shutdown_requested
;
1301 shutdown_requested
= 0;
1305 void qemu_kill_report(void)
1307 if (shutdown_signal
!= -1) {
1308 fprintf(stderr
, "qemu: terminating on signal %d", shutdown_signal
);
1309 if (shutdown_pid
== 0) {
1310 /* This happens for eg ^C at the terminal, so it's worth
1311 * avoiding printing an odd message in that case.
1313 fputc('\n', stderr
);
1315 fprintf(stderr
, " from pid " FMT_pid
"\n", shutdown_pid
);
1317 shutdown_signal
= -1;
1321 int qemu_reset_requested(void)
1323 int r
= reset_requested
;
1324 reset_requested
= 0;
1328 int qemu_powerdown_requested(void)
1330 int r
= powerdown_requested
;
1331 powerdown_requested
= 0;
1335 static int qemu_debug_requested(void)
1337 int r
= debug_requested
;
1338 debug_requested
= 0;
1342 /* We use RUN_STATE_MAX but any invalid value will do */
1343 static bool qemu_vmstop_requested(RunState
*r
)
1345 if (vmstop_requested
< RUN_STATE_MAX
) {
1346 *r
= vmstop_requested
;
1347 vmstop_requested
= RUN_STATE_MAX
;
1354 void qemu_register_reset(QEMUResetHandler
*func
, void *opaque
)
1356 QEMUResetEntry
*re
= g_malloc0(sizeof(QEMUResetEntry
));
1359 re
->opaque
= opaque
;
1360 QTAILQ_INSERT_TAIL(&reset_handlers
, re
, entry
);
1363 void qemu_unregister_reset(QEMUResetHandler
*func
, void *opaque
)
1367 QTAILQ_FOREACH(re
, &reset_handlers
, entry
) {
1368 if (re
->func
== func
&& re
->opaque
== opaque
) {
1369 QTAILQ_REMOVE(&reset_handlers
, re
, entry
);
1376 void qemu_system_reset(bool report
)
1378 QEMUResetEntry
*re
, *nre
;
1380 /* reset all devices */
1381 QTAILQ_FOREACH_SAFE(re
, &reset_handlers
, entry
, nre
) {
1382 re
->func(re
->opaque
);
1385 monitor_protocol_event(QEVENT_RESET
, NULL
);
1387 cpu_synchronize_all_post_reset();
1390 void qemu_system_reset_request(void)
1393 shutdown_requested
= 1;
1395 reset_requested
= 1;
1398 qemu_notify_event();
1401 void qemu_system_killed(int signal
, pid_t pid
)
1403 shutdown_signal
= signal
;
1406 qemu_system_shutdown_request();
1409 void qemu_system_shutdown_request(void)
1411 shutdown_requested
= 1;
1412 qemu_notify_event();
1415 void qemu_system_powerdown_request(void)
1417 powerdown_requested
= 1;
1418 qemu_notify_event();
1421 void qemu_system_debug_request(void)
1423 debug_requested
= 1;
1424 qemu_notify_event();
1427 void qemu_system_vmstop_request(RunState state
)
1429 vmstop_requested
= state
;
1430 qemu_notify_event();
1433 qemu_irq qemu_system_powerdown
;
1435 static bool main_loop_should_exit(void)
1438 if (qemu_debug_requested()) {
1439 vm_stop(RUN_STATE_DEBUG
);
1441 if (qemu_shutdown_requested()) {
1443 monitor_protocol_event(QEVENT_SHUTDOWN
, NULL
);
1445 vm_stop(RUN_STATE_SHUTDOWN
);
1450 if (qemu_reset_requested()) {
1452 cpu_synchronize_all_states();
1453 qemu_system_reset(VMRESET_REPORT
);
1455 if (runstate_check(RUN_STATE_INTERNAL_ERROR
) ||
1456 runstate_check(RUN_STATE_SHUTDOWN
)) {
1457 runstate_set(RUN_STATE_PAUSED
);
1460 if (qemu_powerdown_requested()) {
1461 monitor_protocol_event(QEVENT_POWERDOWN
, NULL
);
1462 qemu_irq_raise(qemu_system_powerdown
);
1464 if (qemu_vmstop_requested(&r
)) {
1470 static void main_loop(void)
1474 #ifdef CONFIG_PROFILER
1478 nonblocking
= !kvm_enabled() && last_io
> 0;
1479 #ifdef CONFIG_PROFILER
1480 ti
= profile_getclock();
1482 last_io
= main_loop_wait(nonblocking
);
1483 #ifdef CONFIG_PROFILER
1484 dev_time
+= profile_getclock() - ti
;
1486 } while (!main_loop_should_exit());
1489 static void version(void)
1491 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION
", Copyright (c) 2003-2008 Fabrice Bellard\n");
1494 static void help(int exitcode
)
1497 printf("usage: %s [options] [disk_image]\n\n"
1498 "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
1499 error_get_progname());
1501 #define QEMU_OPTIONS_GENERATE_HELP
1502 #include "qemu-options-wrapper.h"
1504 printf("\nDuring emulation, the following keys are useful:\n"
1505 "ctrl-alt-f toggle full screen\n"
1506 "ctrl-alt-n switch to virtual console 'n'\n"
1507 "ctrl-alt toggle mouse and keyboard grab\n"
1509 "When using -nographic, press 'ctrl-a h' to get some help.\n");
1514 #define HAS_ARG 0x0001
1516 typedef struct QEMUOption
{
1523 static const QEMUOption qemu_options
[] = {
1524 { "h", 0, QEMU_OPTION_h
, QEMU_ARCH_ALL
},
1525 #define QEMU_OPTIONS_GENERATE_OPTIONS
1526 #include "qemu-options-wrapper.h"
1530 static bool vga_available(void)
1532 return qdev_exists("VGA") || qdev_exists("isa-vga");
1535 static bool cirrus_vga_available(void)
1537 return qdev_exists("cirrus-vga") || qdev_exists("isa-cirrus-vga");
1540 static bool vmware_vga_available(void)
1542 return qdev_exists("vmware-svga");
1545 static void select_vgahw (const char *p
)
1549 vga_interface_type
= VGA_NONE
;
1550 if (strstart(p
, "std", &opts
)) {
1551 if (vga_available()) {
1552 vga_interface_type
= VGA_STD
;
1554 fprintf(stderr
, "Error: standard VGA not available\n");
1557 } else if (strstart(p
, "cirrus", &opts
)) {
1558 if (cirrus_vga_available()) {
1559 vga_interface_type
= VGA_CIRRUS
;
1561 fprintf(stderr
, "Error: Cirrus VGA not available\n");
1564 } else if (strstart(p
, "vmware", &opts
)) {
1565 if (vmware_vga_available()) {
1566 vga_interface_type
= VGA_VMWARE
;
1568 fprintf(stderr
, "Error: VMWare SVGA not available\n");
1571 } else if (strstart(p
, "xenfb", &opts
)) {
1572 vga_interface_type
= VGA_XENFB
;
1573 } else if (strstart(p
, "qxl", &opts
)) {
1574 vga_interface_type
= VGA_QXL
;
1575 } else if (!strstart(p
, "none", &opts
)) {
1577 fprintf(stderr
, "Unknown vga type: %s\n", p
);
1581 const char *nextopt
;
1583 if (strstart(opts
, ",retrace=", &nextopt
)) {
1585 if (strstart(opts
, "dumb", &nextopt
))
1586 vga_retrace_method
= VGA_RETRACE_DUMB
;
1587 else if (strstart(opts
, "precise", &nextopt
))
1588 vga_retrace_method
= VGA_RETRACE_PRECISE
;
1589 else goto invalid_vga
;
1590 } else goto invalid_vga
;
1595 static DisplayType
select_display(const char *p
)
1598 DisplayType display
= DT_DEFAULT
;
1600 if (strstart(p
, "sdl", &opts
)) {
1604 const char *nextopt
;
1606 if (strstart(opts
, ",frame=", &nextopt
)) {
1608 if (strstart(opts
, "on", &nextopt
)) {
1610 } else if (strstart(opts
, "off", &nextopt
)) {
1613 goto invalid_sdl_args
;
1615 } else if (strstart(opts
, ",alt_grab=", &nextopt
)) {
1617 if (strstart(opts
, "on", &nextopt
)) {
1619 } else if (strstart(opts
, "off", &nextopt
)) {
1622 goto invalid_sdl_args
;
1624 } else if (strstart(opts
, ",ctrl_grab=", &nextopt
)) {
1626 if (strstart(opts
, "on", &nextopt
)) {
1628 } else if (strstart(opts
, "off", &nextopt
)) {
1631 goto invalid_sdl_args
;
1633 } else if (strstart(opts
, ",window_close=", &nextopt
)) {
1635 if (strstart(opts
, "on", &nextopt
)) {
1637 } else if (strstart(opts
, "off", &nextopt
)) {
1640 goto invalid_sdl_args
;
1644 fprintf(stderr
, "Invalid SDL option string: %s\n", p
);
1650 fprintf(stderr
, "SDL support is disabled\n");
1653 } else if (strstart(p
, "vnc", &opts
)) {
1658 const char *nextopt
;
1660 if (strstart(opts
, "=", &nextopt
)) {
1661 vnc_display
= nextopt
;
1665 fprintf(stderr
, "VNC requires a display argument vnc=<display>\n");
1669 fprintf(stderr
, "VNC support is disabled\n");
1672 } else if (strstart(p
, "curses", &opts
)) {
1673 #ifdef CONFIG_CURSES
1674 display
= DT_CURSES
;
1676 fprintf(stderr
, "Curses support is disabled\n");
1679 } else if (strstart(p
, "none", &opts
)) {
1682 fprintf(stderr
, "Unknown display type: %s\n", p
);
1689 static int balloon_parse(const char *arg
)
1693 if (strcmp(arg
, "none") == 0) {
1697 if (!strncmp(arg
, "virtio", 6)) {
1698 if (arg
[6] == ',') {
1699 /* have params -> parse them */
1700 opts
= qemu_opts_parse(qemu_find_opts("device"), arg
+7, 0);
1704 /* create empty opts */
1705 opts
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0);
1707 qemu_opt_set(opts
, "driver", "virtio-balloon");
1714 char *qemu_find_file(int type
, const char *name
)
1720 /* If name contains path separators then try it as a straight path. */
1721 if ((strchr(name
, '/') || strchr(name
, '\\'))
1722 && access(name
, R_OK
) == 0) {
1723 return g_strdup(name
);
1726 case QEMU_FILE_TYPE_BIOS
:
1729 case QEMU_FILE_TYPE_KEYMAP
:
1730 subdir
= "keymaps/";
1735 len
= strlen(data_dir
) + strlen(name
) + strlen(subdir
) + 2;
1736 buf
= g_malloc0(len
);
1737 snprintf(buf
, len
, "%s/%s%s", data_dir
, subdir
, name
);
1738 if (access(buf
, R_OK
)) {
1745 static int device_help_func(QemuOpts
*opts
, void *opaque
)
1747 return qdev_device_help(opts
);
1750 static int device_init_func(QemuOpts
*opts
, void *opaque
)
1754 dev
= qdev_device_add(opts
);
1760 static int chardev_init_func(QemuOpts
*opts
, void *opaque
)
1762 CharDriverState
*chr
;
1764 chr
= qemu_chr_new_from_opts(opts
, NULL
);
1770 #ifdef CONFIG_VIRTFS
1771 static int fsdev_init_func(QemuOpts
*opts
, void *opaque
)
1774 ret
= qemu_fsdev_add(opts
);
1780 static int mon_init_func(QemuOpts
*opts
, void *opaque
)
1782 CharDriverState
*chr
;
1783 const char *chardev
;
1787 mode
= qemu_opt_get(opts
, "mode");
1791 if (strcmp(mode
, "readline") == 0) {
1792 flags
= MONITOR_USE_READLINE
;
1793 } else if (strcmp(mode
, "control") == 0) {
1794 flags
= MONITOR_USE_CONTROL
;
1796 fprintf(stderr
, "unknown monitor mode \"%s\"\n", mode
);
1800 if (qemu_opt_get_bool(opts
, "pretty", 0))
1801 flags
|= MONITOR_USE_PRETTY
;
1803 if (qemu_opt_get_bool(opts
, "default", 0))
1804 flags
|= MONITOR_IS_DEFAULT
;
1806 chardev
= qemu_opt_get(opts
, "chardev");
1807 chr
= qemu_chr_find(chardev
);
1809 fprintf(stderr
, "chardev \"%s\" not found\n", chardev
);
1813 monitor_init(chr
, flags
);
1817 static void monitor_parse(const char *optarg
, const char *mode
)
1819 static int monitor_device_index
= 0;
1825 if (strstart(optarg
, "chardev:", &p
)) {
1826 snprintf(label
, sizeof(label
), "%s", p
);
1828 snprintf(label
, sizeof(label
), "compat_monitor%d",
1829 monitor_device_index
);
1830 if (monitor_device_index
== 0) {
1833 opts
= qemu_chr_parse_compat(label
, optarg
);
1835 fprintf(stderr
, "parse error: %s\n", optarg
);
1840 opts
= qemu_opts_create(qemu_find_opts("mon"), label
, 1);
1842 fprintf(stderr
, "duplicate chardev: %s\n", label
);
1845 qemu_opt_set(opts
, "mode", mode
);
1846 qemu_opt_set(opts
, "chardev", label
);
1848 qemu_opt_set(opts
, "default", "on");
1849 monitor_device_index
++;
1852 struct device_config
{
1854 DEV_USB
, /* -usbdevice */
1856 DEV_SERIAL
, /* -serial */
1857 DEV_PARALLEL
, /* -parallel */
1858 DEV_VIRTCON
, /* -virtioconsole */
1859 DEV_DEBUGCON
, /* -debugcon */
1861 const char *cmdline
;
1862 QTAILQ_ENTRY(device_config
) next
;
1864 QTAILQ_HEAD(, device_config
) device_configs
= QTAILQ_HEAD_INITIALIZER(device_configs
);
1866 static void add_device_config(int type
, const char *cmdline
)
1868 struct device_config
*conf
;
1870 conf
= g_malloc0(sizeof(*conf
));
1872 conf
->cmdline
= cmdline
;
1873 QTAILQ_INSERT_TAIL(&device_configs
, conf
, next
);
1876 static int foreach_device_config(int type
, int (*func
)(const char *cmdline
))
1878 struct device_config
*conf
;
1881 QTAILQ_FOREACH(conf
, &device_configs
, next
) {
1882 if (conf
->type
!= type
)
1884 rc
= func(conf
->cmdline
);
1891 static int serial_parse(const char *devname
)
1893 static int index
= 0;
1896 if (strcmp(devname
, "none") == 0)
1898 if (index
== MAX_SERIAL_PORTS
) {
1899 fprintf(stderr
, "qemu: too many serial ports\n");
1902 snprintf(label
, sizeof(label
), "serial%d", index
);
1903 serial_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
1904 if (!serial_hds
[index
]) {
1905 fprintf(stderr
, "qemu: could not open serial device '%s': %s\n",
1906 devname
, strerror(errno
));
1913 static int parallel_parse(const char *devname
)
1915 static int index
= 0;
1918 if (strcmp(devname
, "none") == 0)
1920 if (index
== MAX_PARALLEL_PORTS
) {
1921 fprintf(stderr
, "qemu: too many parallel ports\n");
1924 snprintf(label
, sizeof(label
), "parallel%d", index
);
1925 parallel_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
1926 if (!parallel_hds
[index
]) {
1927 fprintf(stderr
, "qemu: could not open parallel device '%s': %s\n",
1928 devname
, strerror(errno
));
1935 static int virtcon_parse(const char *devname
)
1937 QemuOptsList
*device
= qemu_find_opts("device");
1938 static int index
= 0;
1940 QemuOpts
*bus_opts
, *dev_opts
;
1942 if (strcmp(devname
, "none") == 0)
1944 if (index
== MAX_VIRTIO_CONSOLES
) {
1945 fprintf(stderr
, "qemu: too many virtio consoles\n");
1949 bus_opts
= qemu_opts_create(device
, NULL
, 0);
1950 if (arch_type
== QEMU_ARCH_S390X
) {
1951 qemu_opt_set(bus_opts
, "driver", "virtio-serial-s390");
1953 qemu_opt_set(bus_opts
, "driver", "virtio-serial-pci");
1956 dev_opts
= qemu_opts_create(device
, NULL
, 0);
1957 qemu_opt_set(dev_opts
, "driver", "virtconsole");
1959 snprintf(label
, sizeof(label
), "virtcon%d", index
);
1960 virtcon_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
1961 if (!virtcon_hds
[index
]) {
1962 fprintf(stderr
, "qemu: could not open virtio console '%s': %s\n",
1963 devname
, strerror(errno
));
1966 qemu_opt_set(dev_opts
, "chardev", label
);
1972 static int debugcon_parse(const char *devname
)
1976 if (!qemu_chr_new("debugcon", devname
, NULL
)) {
1979 opts
= qemu_opts_create(qemu_find_opts("device"), "debugcon", 1);
1981 fprintf(stderr
, "qemu: already have a debugcon device\n");
1984 qemu_opt_set(opts
, "driver", "isa-debugcon");
1985 qemu_opt_set(opts
, "chardev", "debugcon");
1989 static QEMUMachine
*machine_parse(const char *name
)
1991 QEMUMachine
*m
, *machine
= NULL
;
1994 machine
= find_machine(name
);
1999 printf("Supported machines are:\n");
2000 for (m
= first_machine
; m
!= NULL
; m
= m
->next
) {
2002 printf("%-10s %s (alias of %s)\n", m
->alias
, m
->desc
, m
->name
);
2004 printf("%-10s %s%s\n", m
->name
, m
->desc
,
2005 m
->is_default
? " (default)" : "");
2007 exit(!name
|| *name
!= '?');
2010 static int tcg_init(void)
2012 tcg_exec_init(tcg_tb_size
* 1024 * 1024);
2017 const char *opt_name
;
2019 int (*available
)(void);
2023 { "tcg", "tcg", tcg_available
, tcg_init
, &tcg_allowed
},
2024 { "xen", "Xen", xen_available
, xen_init
, &xen_allowed
},
2025 { "kvm", "KVM", kvm_available
, kvm_init
, &kvm_allowed
},
2028 static int configure_accelerator(void)
2030 const char *p
= NULL
;
2033 bool accel_initialised
= 0;
2034 bool init_failed
= 0;
2036 QemuOptsList
*list
= qemu_find_opts("machine");
2037 if (!QTAILQ_EMPTY(&list
->head
)) {
2038 p
= qemu_opt_get(QTAILQ_FIRST(&list
->head
), "accel");
2042 /* Use the default "accelerator", tcg */
2046 while (!accel_initialised
&& *p
!= '\0') {
2050 p
= get_opt_name(buf
, sizeof (buf
), p
, ':');
2051 for (i
= 0; i
< ARRAY_SIZE(accel_list
); i
++) {
2052 if (strcmp(accel_list
[i
].opt_name
, buf
) == 0) {
2053 *(accel_list
[i
].allowed
) = 1;
2054 ret
= accel_list
[i
].init();
2057 if (!accel_list
[i
].available()) {
2058 printf("%s not supported for this target\n",
2059 accel_list
[i
].name
);
2061 fprintf(stderr
, "failed to initialize %s: %s\n",
2065 *(accel_list
[i
].allowed
) = 0;
2067 accel_initialised
= 1;
2072 if (i
== ARRAY_SIZE(accel_list
)) {
2073 fprintf(stderr
, "\"%s\" accelerator does not exist.\n", buf
);
2077 if (!accel_initialised
) {
2078 fprintf(stderr
, "No accelerator found!\n");
2083 fprintf(stderr
, "Back to %s accelerator.\n", accel_list
[i
].name
);
2086 return !accel_initialised
;
2089 void qemu_add_exit_notifier(Notifier
*notify
)
2091 notifier_list_add(&exit_notifiers
, notify
);
2094 void qemu_remove_exit_notifier(Notifier
*notify
)
2096 notifier_remove(notify
);
2099 static void qemu_run_exit_notifiers(void)
2101 notifier_list_notify(&exit_notifiers
, NULL
);
2104 void qemu_add_machine_init_done_notifier(Notifier
*notify
)
2106 notifier_list_add(&machine_init_done_notifiers
, notify
);
2109 static void qemu_run_machine_init_done_notifiers(void)
2111 notifier_list_notify(&machine_init_done_notifiers
, NULL
);
2114 static const QEMUOption
*lookup_opt(int argc
, char **argv
,
2115 const char **poptarg
, int *poptind
)
2117 const QEMUOption
*popt
;
2118 int optind
= *poptind
;
2119 char *r
= argv
[optind
];
2122 loc_set_cmdline(argv
, optind
, 1);
2124 /* Treat --foo the same as -foo. */
2127 popt
= qemu_options
;
2130 error_report("invalid option");
2133 if (!strcmp(popt
->name
, r
+ 1))
2137 if (popt
->flags
& HAS_ARG
) {
2138 if (optind
>= argc
) {
2139 error_report("requires an argument");
2142 optarg
= argv
[optind
++];
2143 loc_set_cmdline(argv
, optind
- 2, 2);
2154 static gpointer
malloc_and_trace(gsize n_bytes
)
2156 void *ptr
= malloc(n_bytes
);
2157 trace_g_malloc(n_bytes
, ptr
);
2161 static gpointer
realloc_and_trace(gpointer mem
, gsize n_bytes
)
2163 void *ptr
= realloc(mem
, n_bytes
);
2164 trace_g_realloc(mem
, n_bytes
, ptr
);
2168 static void free_and_trace(gpointer mem
)
2174 int qemu_init_main_loop(void)
2176 return main_loop_init();
2179 int main(int argc
, char **argv
, char **envp
)
2181 const char *gdbstub_dev
= NULL
;
2183 int snapshot
, linux_boot
;
2184 const char *icount_option
= NULL
;
2185 const char *initrd_filename
;
2186 const char *kernel_filename
, *kernel_cmdline
;
2187 char boot_devices
[33] = "cad"; /* default to HD->floppy->CD-ROM */
2189 DisplayChangeListener
*dcl
;
2190 int cyls
, heads
, secs
, translation
;
2191 QemuOpts
*hda_opts
= NULL
, *opts
;
2192 QemuOptsList
*olist
;
2195 const char *loadvm
= NULL
;
2196 QEMUMachine
*machine
;
2197 const char *cpu_model
;
2198 const char *vga_model
= NULL
;
2199 const char *pid_file
= NULL
;
2200 const char *incoming
= NULL
;
2202 int show_vnc_port
= 0;
2205 const char *log_mask
= NULL
;
2206 const char *log_file
= NULL
;
2207 GMemVTable mem_trace
= {
2208 .malloc
= malloc_and_trace
,
2209 .realloc
= realloc_and_trace
,
2210 .free
= free_and_trace
,
2212 const char *trace_events
= NULL
;
2213 const char *trace_file
= NULL
;
2215 atexit(qemu_run_exit_notifiers
);
2216 error_set_progname(argv
[0]);
2218 g_mem_set_vtable(&mem_trace
);
2219 if (!g_thread_supported()) {
2220 #if !GLIB_CHECK_VERSION(2, 31, 0)
2221 g_thread_init(NULL
);
2223 fprintf(stderr
, "glib threading failed to initialize.\n");
2231 rtc_clock
= host_clock
;
2233 qemu_cache_utils_init(envp
);
2235 QLIST_INIT (&vm_change_state_head
);
2236 os_setup_early_signal_handling();
2238 module_call_init(MODULE_INIT_MACHINE
);
2239 machine
= find_default_machine();
2241 initrd_filename
= NULL
;
2244 kernel_filename
= NULL
;
2245 kernel_cmdline
= "";
2246 cyls
= heads
= secs
= 0;
2247 translation
= BIOS_ATA_TRANSLATION_AUTO
;
2249 for (i
= 0; i
< MAX_NODES
; i
++) {
2251 node_cpumask
[i
] = 0;
2259 /* first pass of option parsing */
2261 while (optind
< argc
) {
2262 if (argv
[optind
][0] != '-') {
2267 const QEMUOption
*popt
;
2269 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
2270 switch (popt
->index
) {
2271 case QEMU_OPTION_nodefconfig
:
2281 ret
= qemu_read_config_file(CONFIG_QEMU_CONFDIR
"/qemu.conf");
2282 if (ret
< 0 && ret
!= -ENOENT
) {
2286 ret
= qemu_read_config_file(arch_config_name
);
2287 if (ret
< 0 && ret
!= -ENOENT
) {
2293 /* second pass of option parsing */
2298 if (argv
[optind
][0] != '-') {
2299 hda_opts
= drive_add(IF_DEFAULT
, 0, argv
[optind
++], HD_OPTS
);
2301 const QEMUOption
*popt
;
2303 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
2304 if (!(popt
->arch_mask
& arch_type
)) {
2305 printf("Option %s not supported for this target\n", popt
->name
);
2308 switch(popt
->index
) {
2310 machine
= machine_parse(optarg
);
2312 case QEMU_OPTION_cpu
:
2313 /* hw initialization will check this */
2314 if (*optarg
== '?') {
2315 list_cpus(stdout
, &fprintf
, optarg
);
2321 case QEMU_OPTION_initrd
:
2322 initrd_filename
= optarg
;
2324 case QEMU_OPTION_hda
:
2328 snprintf(buf
, sizeof(buf
), "%s", HD_OPTS
);
2330 snprintf(buf
, sizeof(buf
),
2331 "%s,cyls=%d,heads=%d,secs=%d%s",
2332 HD_OPTS
, cyls
, heads
, secs
,
2333 translation
== BIOS_ATA_TRANSLATION_LBA
?
2335 translation
== BIOS_ATA_TRANSLATION_NONE
?
2336 ",trans=none" : "");
2337 drive_add(IF_DEFAULT
, 0, optarg
, buf
);
2340 case QEMU_OPTION_hdb
:
2341 case QEMU_OPTION_hdc
:
2342 case QEMU_OPTION_hdd
:
2343 drive_add(IF_DEFAULT
, popt
->index
- QEMU_OPTION_hda
, optarg
,
2346 case QEMU_OPTION_drive
:
2347 if (drive_def(optarg
) == NULL
) {
2351 case QEMU_OPTION_set
:
2352 if (qemu_set_option(optarg
) != 0)
2355 case QEMU_OPTION_global
:
2356 if (qemu_global_option(optarg
) != 0)
2359 case QEMU_OPTION_mtdblock
:
2360 drive_add(IF_MTD
, -1, optarg
, MTD_OPTS
);
2362 case QEMU_OPTION_sd
:
2363 drive_add(IF_SD
, 0, optarg
, SD_OPTS
);
2365 case QEMU_OPTION_pflash
:
2366 drive_add(IF_PFLASH
, -1, optarg
, PFLASH_OPTS
);
2368 case QEMU_OPTION_snapshot
:
2371 case QEMU_OPTION_hdachs
:
2375 cyls
= strtol(p
, (char **)&p
, 0);
2376 if (cyls
< 1 || cyls
> 16383)
2381 heads
= strtol(p
, (char **)&p
, 0);
2382 if (heads
< 1 || heads
> 16)
2387 secs
= strtol(p
, (char **)&p
, 0);
2388 if (secs
< 1 || secs
> 63)
2392 if (!strcmp(p
, "none"))
2393 translation
= BIOS_ATA_TRANSLATION_NONE
;
2394 else if (!strcmp(p
, "lba"))
2395 translation
= BIOS_ATA_TRANSLATION_LBA
;
2396 else if (!strcmp(p
, "auto"))
2397 translation
= BIOS_ATA_TRANSLATION_AUTO
;
2400 } else if (*p
!= '\0') {
2402 fprintf(stderr
, "qemu: invalid physical CHS format\n");
2405 if (hda_opts
!= NULL
) {
2407 snprintf(num
, sizeof(num
), "%d", cyls
);
2408 qemu_opt_set(hda_opts
, "cyls", num
);
2409 snprintf(num
, sizeof(num
), "%d", heads
);
2410 qemu_opt_set(hda_opts
, "heads", num
);
2411 snprintf(num
, sizeof(num
), "%d", secs
);
2412 qemu_opt_set(hda_opts
, "secs", num
);
2413 if (translation
== BIOS_ATA_TRANSLATION_LBA
)
2414 qemu_opt_set(hda_opts
, "trans", "lba");
2415 if (translation
== BIOS_ATA_TRANSLATION_NONE
)
2416 qemu_opt_set(hda_opts
, "trans", "none");
2420 case QEMU_OPTION_numa
:
2421 if (nb_numa_nodes
>= MAX_NODES
) {
2422 fprintf(stderr
, "qemu: too many NUMA nodes\n");
2427 case QEMU_OPTION_display
:
2428 display_type
= select_display(optarg
);
2430 case QEMU_OPTION_nographic
:
2431 display_type
= DT_NOGRAPHIC
;
2433 case QEMU_OPTION_curses
:
2434 #ifdef CONFIG_CURSES
2435 display_type
= DT_CURSES
;
2437 fprintf(stderr
, "Curses support is disabled\n");
2441 case QEMU_OPTION_portrait
:
2442 graphic_rotate
= 90;
2444 case QEMU_OPTION_rotate
:
2445 graphic_rotate
= strtol(optarg
, (char **) &optarg
, 10);
2446 if (graphic_rotate
!= 0 && graphic_rotate
!= 90 &&
2447 graphic_rotate
!= 180 && graphic_rotate
!= 270) {
2449 "qemu: only 90, 180, 270 deg rotation is available\n");
2453 case QEMU_OPTION_kernel
:
2454 kernel_filename
= optarg
;
2456 case QEMU_OPTION_append
:
2457 kernel_cmdline
= optarg
;
2459 case QEMU_OPTION_cdrom
:
2460 drive_add(IF_DEFAULT
, 2, optarg
, CDROM_OPTS
);
2462 case QEMU_OPTION_boot
:
2464 static const char * const params
[] = {
2465 "order", "once", "menu",
2466 "splash", "splash-time", NULL
2468 char buf
[sizeof(boot_devices
)];
2469 char *standard_boot_devices
;
2472 if (!strchr(optarg
, '=')) {
2474 pstrcpy(buf
, sizeof(buf
), optarg
);
2475 } else if (check_params(buf
, sizeof(buf
), params
, optarg
) < 0) {
2477 "qemu: unknown boot parameter '%s' in '%s'\n",
2483 get_param_value(buf
, sizeof(buf
), "order", optarg
)) {
2484 validate_bootdevices(buf
);
2485 pstrcpy(boot_devices
, sizeof(boot_devices
), buf
);
2488 if (get_param_value(buf
, sizeof(buf
),
2490 validate_bootdevices(buf
);
2491 standard_boot_devices
= g_strdup(boot_devices
);
2492 pstrcpy(boot_devices
, sizeof(boot_devices
), buf
);
2493 qemu_register_reset(restore_boot_devices
,
2494 standard_boot_devices
);
2496 if (get_param_value(buf
, sizeof(buf
),
2498 if (!strcmp(buf
, "on")) {
2500 } else if (!strcmp(buf
, "off")) {
2504 "qemu: invalid option value '%s'\n",
2509 qemu_opts_parse(qemu_find_opts("boot-opts"),
2514 case QEMU_OPTION_fda
:
2515 case QEMU_OPTION_fdb
:
2516 drive_add(IF_FLOPPY
, popt
->index
- QEMU_OPTION_fda
,
2519 case QEMU_OPTION_no_fd_bootchk
:
2522 case QEMU_OPTION_netdev
:
2523 if (net_client_parse(qemu_find_opts("netdev"), optarg
) == -1) {
2527 case QEMU_OPTION_net
:
2528 if (net_client_parse(qemu_find_opts("net"), optarg
) == -1) {
2532 #ifdef CONFIG_LIBISCSI
2533 case QEMU_OPTION_iscsi
:
2534 opts
= qemu_opts_parse(qemu_find_opts("iscsi"), optarg
, 0);
2541 case QEMU_OPTION_tftp
:
2542 legacy_tftp_prefix
= optarg
;
2544 case QEMU_OPTION_bootp
:
2545 legacy_bootp_filename
= optarg
;
2547 case QEMU_OPTION_redir
:
2548 if (net_slirp_redir(optarg
) < 0)
2552 case QEMU_OPTION_bt
:
2553 add_device_config(DEV_BT
, optarg
);
2555 case QEMU_OPTION_audio_help
:
2556 if (!(audio_available())) {
2557 printf("Option %s not supported for this target\n", popt
->name
);
2563 case QEMU_OPTION_soundhw
:
2564 if (!(audio_available())) {
2565 printf("Option %s not supported for this target\n", popt
->name
);
2568 select_soundhw (optarg
);
2573 case QEMU_OPTION_version
:
2577 case QEMU_OPTION_m
: {
2581 value
= strtosz(optarg
, &end
);
2582 if (value
< 0 || *end
) {
2583 fprintf(stderr
, "qemu: invalid ram size: %s\n", optarg
);
2587 if (value
!= (uint64_t)(ram_addr_t
)value
) {
2588 fprintf(stderr
, "qemu: ram size too large\n");
2594 case QEMU_OPTION_mempath
:
2598 case QEMU_OPTION_mem_prealloc
:
2609 gdbstub_dev
= "tcp::" DEFAULT_GDBSTUB_PORT
;
2611 case QEMU_OPTION_gdb
:
2612 gdbstub_dev
= optarg
;
2617 case QEMU_OPTION_bios
:
2620 case QEMU_OPTION_singlestep
:
2627 keyboard_layout
= optarg
;
2629 case QEMU_OPTION_localtime
:
2632 case QEMU_OPTION_vga
:
2640 w
= strtol(p
, (char **)&p
, 10);
2643 fprintf(stderr
, "qemu: invalid resolution or depth\n");
2649 h
= strtol(p
, (char **)&p
, 10);
2654 depth
= strtol(p
, (char **)&p
, 10);
2655 if (depth
!= 8 && depth
!= 15 && depth
!= 16 &&
2656 depth
!= 24 && depth
!= 32)
2658 } else if (*p
== '\0') {
2659 depth
= graphic_depth
;
2666 graphic_depth
= depth
;
2669 case QEMU_OPTION_echr
:
2672 term_escape_char
= strtol(optarg
, &r
, 0);
2674 printf("Bad argument to echr\n");
2677 case QEMU_OPTION_monitor
:
2678 monitor_parse(optarg
, "readline");
2679 default_monitor
= 0;
2681 case QEMU_OPTION_qmp
:
2682 monitor_parse(optarg
, "control");
2683 default_monitor
= 0;
2685 case QEMU_OPTION_mon
:
2686 opts
= qemu_opts_parse(qemu_find_opts("mon"), optarg
, 1);
2690 default_monitor
= 0;
2692 case QEMU_OPTION_chardev
:
2693 opts
= qemu_opts_parse(qemu_find_opts("chardev"), optarg
, 1);
2698 case QEMU_OPTION_fsdev
:
2699 olist
= qemu_find_opts("fsdev");
2701 fprintf(stderr
, "fsdev is not supported by this qemu build.\n");
2704 opts
= qemu_opts_parse(olist
, optarg
, 1);
2706 fprintf(stderr
, "parse error: %s\n", optarg
);
2710 case QEMU_OPTION_virtfs
: {
2713 const char *writeout
, *sock_fd
, *socket
;
2715 olist
= qemu_find_opts("virtfs");
2717 fprintf(stderr
, "virtfs is not supported by this qemu build.\n");
2720 opts
= qemu_opts_parse(olist
, optarg
, 1);
2722 fprintf(stderr
, "parse error: %s\n", optarg
);
2726 if (qemu_opt_get(opts
, "fsdriver") == NULL
||
2727 qemu_opt_get(opts
, "mount_tag") == NULL
) {
2728 fprintf(stderr
, "Usage: -virtfs fsdriver,mount_tag=tag.\n");
2731 fsdev
= qemu_opts_create(qemu_find_opts("fsdev"),
2732 qemu_opt_get(opts
, "mount_tag"), 1);
2734 fprintf(stderr
, "duplicate fsdev id: %s\n",
2735 qemu_opt_get(opts
, "mount_tag"));
2739 writeout
= qemu_opt_get(opts
, "writeout");
2741 #ifdef CONFIG_SYNC_FILE_RANGE
2742 qemu_opt_set(fsdev
, "writeout", writeout
);
2744 fprintf(stderr
, "writeout=immediate not supported on "
2749 qemu_opt_set(fsdev
, "fsdriver", qemu_opt_get(opts
, "fsdriver"));
2750 qemu_opt_set(fsdev
, "path", qemu_opt_get(opts
, "path"));
2751 qemu_opt_set(fsdev
, "security_model",
2752 qemu_opt_get(opts
, "security_model"));
2753 socket
= qemu_opt_get(opts
, "socket");
2755 qemu_opt_set(fsdev
, "socket", socket
);
2757 sock_fd
= qemu_opt_get(opts
, "sock_fd");
2759 qemu_opt_set(fsdev
, "sock_fd", sock_fd
);
2762 qemu_opt_set_bool(fsdev
, "readonly",
2763 qemu_opt_get_bool(opts
, "readonly", 0));
2764 device
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0);
2765 qemu_opt_set(device
, "driver", "virtio-9p-pci");
2766 qemu_opt_set(device
, "fsdev",
2767 qemu_opt_get(opts
, "mount_tag"));
2768 qemu_opt_set(device
, "mount_tag",
2769 qemu_opt_get(opts
, "mount_tag"));
2772 case QEMU_OPTION_virtfs_synth
: {
2776 fsdev
= qemu_opts_create(qemu_find_opts("fsdev"), "v_synth", 1);
2778 fprintf(stderr
, "duplicate option: %s\n", "virtfs_synth");
2781 qemu_opt_set(fsdev
, "fsdriver", "synth");
2783 device
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0);
2784 qemu_opt_set(device
, "driver", "virtio-9p-pci");
2785 qemu_opt_set(device
, "fsdev", "v_synth");
2786 qemu_opt_set(device
, "mount_tag", "v_synth");
2789 case QEMU_OPTION_serial
:
2790 add_device_config(DEV_SERIAL
, optarg
);
2792 if (strncmp(optarg
, "mon:", 4) == 0) {
2793 default_monitor
= 0;
2796 case QEMU_OPTION_watchdog
:
2799 "qemu: only one watchdog option may be given\n");
2804 case QEMU_OPTION_watchdog_action
:
2805 if (select_watchdog_action(optarg
) == -1) {
2806 fprintf(stderr
, "Unknown -watchdog-action parameter\n");
2810 case QEMU_OPTION_virtiocon
:
2811 add_device_config(DEV_VIRTCON
, optarg
);
2812 default_virtcon
= 0;
2813 if (strncmp(optarg
, "mon:", 4) == 0) {
2814 default_monitor
= 0;
2817 case QEMU_OPTION_parallel
:
2818 add_device_config(DEV_PARALLEL
, optarg
);
2819 default_parallel
= 0;
2820 if (strncmp(optarg
, "mon:", 4) == 0) {
2821 default_monitor
= 0;
2824 case QEMU_OPTION_debugcon
:
2825 add_device_config(DEV_DEBUGCON
, optarg
);
2827 case QEMU_OPTION_loadvm
:
2830 case QEMU_OPTION_full_screen
:
2834 case QEMU_OPTION_no_frame
:
2837 case QEMU_OPTION_alt_grab
:
2840 case QEMU_OPTION_ctrl_grab
:
2843 case QEMU_OPTION_no_quit
:
2846 case QEMU_OPTION_sdl
:
2847 display_type
= DT_SDL
;
2850 case QEMU_OPTION_no_frame
:
2851 case QEMU_OPTION_alt_grab
:
2852 case QEMU_OPTION_ctrl_grab
:
2853 case QEMU_OPTION_no_quit
:
2854 case QEMU_OPTION_sdl
:
2855 fprintf(stderr
, "SDL support is disabled\n");
2858 case QEMU_OPTION_pidfile
:
2861 case QEMU_OPTION_win2k_hack
:
2862 win2k_install_hack
= 1;
2864 case QEMU_OPTION_rtc_td_hack
: {
2865 static GlobalProperty slew_lost_ticks
[] = {
2867 .driver
= "mc146818rtc",
2868 .property
= "lost_tick_policy",
2871 { /* end of list */ }
2874 qdev_prop_register_global_list(slew_lost_ticks
);
2877 case QEMU_OPTION_acpitable
:
2878 do_acpitable_option(optarg
);
2880 case QEMU_OPTION_smbios
:
2881 do_smbios_option(optarg
);
2883 case QEMU_OPTION_enable_kvm
:
2884 olist
= qemu_find_opts("machine");
2885 qemu_opts_parse(olist
, "accel=kvm", 0);
2887 case QEMU_OPTION_machine
:
2888 olist
= qemu_find_opts("machine");
2889 opts
= qemu_opts_parse(olist
, optarg
, 1);
2891 fprintf(stderr
, "parse error: %s\n", optarg
);
2894 optarg
= qemu_opt_get(opts
, "type");
2896 machine
= machine_parse(optarg
);
2899 case QEMU_OPTION_usb
:
2902 case QEMU_OPTION_usbdevice
:
2904 add_device_config(DEV_USB
, optarg
);
2906 case QEMU_OPTION_device
:
2907 if (!qemu_opts_parse(qemu_find_opts("device"), optarg
, 1)) {
2911 case QEMU_OPTION_smp
:
2914 fprintf(stderr
, "Invalid number of CPUs\n");
2917 if (max_cpus
< smp_cpus
) {
2918 fprintf(stderr
, "maxcpus must be equal to or greater than "
2922 if (max_cpus
> 255) {
2923 fprintf(stderr
, "Unsupported number of maxcpus\n");
2927 case QEMU_OPTION_vnc
:
2930 vnc_display
= optarg
;
2932 fprintf(stderr
, "VNC support is disabled\n");
2936 case QEMU_OPTION_no_acpi
:
2939 case QEMU_OPTION_no_hpet
:
2942 case QEMU_OPTION_balloon
:
2943 if (balloon_parse(optarg
) < 0) {
2944 fprintf(stderr
, "Unknown -balloon argument %s\n", optarg
);
2948 case QEMU_OPTION_no_reboot
:
2951 case QEMU_OPTION_no_shutdown
:
2954 case QEMU_OPTION_show_cursor
:
2957 case QEMU_OPTION_uuid
:
2958 if(qemu_uuid_parse(optarg
, qemu_uuid
) < 0) {
2959 fprintf(stderr
, "Fail to parse UUID string."
2960 " Wrong format.\n");
2964 case QEMU_OPTION_option_rom
:
2965 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
2966 fprintf(stderr
, "Too many option ROMs\n");
2969 opts
= qemu_opts_parse(qemu_find_opts("option-rom"), optarg
, 1);
2970 option_rom
[nb_option_roms
].name
= qemu_opt_get(opts
, "romfile");
2971 option_rom
[nb_option_roms
].bootindex
=
2972 qemu_opt_get_number(opts
, "bootindex", -1);
2973 if (!option_rom
[nb_option_roms
].name
) {
2974 fprintf(stderr
, "Option ROM file is not specified\n");
2979 case QEMU_OPTION_semihosting
:
2980 semihosting_enabled
= 1;
2982 case QEMU_OPTION_name
:
2983 qemu_name
= g_strdup(optarg
);
2985 char *p
= strchr(qemu_name
, ',');
2988 if (strncmp(p
, "process=", 8)) {
2989 fprintf(stderr
, "Unknown subargument %s to -name\n", p
);
2993 os_set_proc_name(p
);
2997 case QEMU_OPTION_prom_env
:
2998 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
2999 fprintf(stderr
, "Too many prom variables\n");
3002 prom_envs
[nb_prom_envs
] = optarg
;
3005 case QEMU_OPTION_old_param
:
3008 case QEMU_OPTION_clock
:
3009 configure_alarms(optarg
);
3011 case QEMU_OPTION_startdate
:
3012 configure_rtc_date_offset(optarg
, 1);
3014 case QEMU_OPTION_rtc
:
3015 opts
= qemu_opts_parse(qemu_find_opts("rtc"), optarg
, 0);
3019 configure_rtc(opts
);
3021 case QEMU_OPTION_tb_size
:
3022 tcg_tb_size
= strtol(optarg
, NULL
, 0);
3023 if (tcg_tb_size
< 0) {
3027 case QEMU_OPTION_icount
:
3028 icount_option
= optarg
;
3030 case QEMU_OPTION_incoming
:
3033 case QEMU_OPTION_nodefaults
:
3035 default_parallel
= 0;
3036 default_virtcon
= 0;
3037 default_monitor
= 0;
3044 case QEMU_OPTION_xen_domid
:
3045 if (!(xen_available())) {
3046 printf("Option %s not supported for this target\n", popt
->name
);
3049 xen_domid
= atoi(optarg
);
3051 case QEMU_OPTION_xen_create
:
3052 if (!(xen_available())) {
3053 printf("Option %s not supported for this target\n", popt
->name
);
3056 xen_mode
= XEN_CREATE
;
3058 case QEMU_OPTION_xen_attach
:
3059 if (!(xen_available())) {
3060 printf("Option %s not supported for this target\n", popt
->name
);
3063 xen_mode
= XEN_ATTACH
;
3065 case QEMU_OPTION_trace
:
3067 opts
= qemu_opts_parse(qemu_find_opts("trace"), optarg
, 0);
3071 trace_events
= qemu_opt_get(opts
, "events");
3072 trace_file
= qemu_opt_get(opts
, "file");
3075 case QEMU_OPTION_readconfig
:
3077 int ret
= qemu_read_config_file(optarg
);
3079 fprintf(stderr
, "read config %s: %s\n", optarg
,
3085 case QEMU_OPTION_spice
:
3086 olist
= qemu_find_opts("spice");
3088 fprintf(stderr
, "spice is not supported by this qemu build.\n");
3091 opts
= qemu_opts_parse(olist
, optarg
, 0);
3093 fprintf(stderr
, "parse error: %s\n", optarg
);
3097 case QEMU_OPTION_writeconfig
:
3100 if (strcmp(optarg
, "-") == 0) {
3103 fp
= fopen(optarg
, "w");
3105 fprintf(stderr
, "open %s: %s\n", optarg
, strerror(errno
));
3109 qemu_config_write(fp
);
3114 os_parse_cmd_args(popt
->index
, optarg
);
3120 /* Open the logfile at this point, if necessary. We can't open the logfile
3121 * when encountering either of the logging options (-d or -D) because the
3122 * other one may be encountered later on the command line, changing the
3123 * location or level of logging.
3127 set_cpu_log_filename(log_file
);
3129 set_cpu_log(log_mask
);
3132 if (!trace_backend_init(trace_events
, trace_file
)) {
3136 /* If no data_dir is specified then try to find it relative to the
3139 data_dir
= os_find_datadir(argv
[0]);
3141 /* If all else fails use the install path specified when building. */
3143 data_dir
= CONFIG_QEMU_DATADIR
;
3146 if (machine
== NULL
) {
3147 fprintf(stderr
, "No machine found.\n");
3152 * Default to max_cpus = smp_cpus, in case the user doesn't
3153 * specify a max_cpus value.
3156 max_cpus
= smp_cpus
;
3158 machine
->max_cpus
= machine
->max_cpus
?: 1; /* Default to UP */
3159 if (smp_cpus
> machine
->max_cpus
) {
3160 fprintf(stderr
, "Number of SMP cpus requested (%d), exceeds max cpus "
3161 "supported by machine `%s' (%d)\n", smp_cpus
, machine
->name
,
3167 * Get the default machine options from the machine if it is not already
3168 * specified either by the configuration file or by the command line.
3170 if (machine
->default_machine_opts
) {
3171 qemu_opts_set_defaults(qemu_find_opts("machine"),
3172 machine
->default_machine_opts
, 0);
3175 qemu_opts_foreach(qemu_find_opts("device"), default_driver_check
, NULL
, 0);
3176 qemu_opts_foreach(qemu_find_opts("global"), default_driver_check
, NULL
, 0);
3178 if (machine
->no_serial
) {
3181 if (machine
->no_parallel
) {
3182 default_parallel
= 0;
3184 if (!machine
->use_virtcon
) {
3185 default_virtcon
= 0;
3187 if (machine
->no_floppy
) {
3190 if (machine
->no_cdrom
) {
3193 if (machine
->no_sdcard
) {
3197 if (display_type
== DT_NOGRAPHIC
) {
3198 if (default_parallel
)
3199 add_device_config(DEV_PARALLEL
, "null");
3200 if (default_serial
&& default_monitor
) {
3201 add_device_config(DEV_SERIAL
, "mon:stdio");
3202 } else if (default_virtcon
&& default_monitor
) {
3203 add_device_config(DEV_VIRTCON
, "mon:stdio");
3206 add_device_config(DEV_SERIAL
, "stdio");
3207 if (default_virtcon
)
3208 add_device_config(DEV_VIRTCON
, "stdio");
3209 if (default_monitor
)
3210 monitor_parse("stdio", "readline");
3214 add_device_config(DEV_SERIAL
, "vc:80Cx24C");
3215 if (default_parallel
)
3216 add_device_config(DEV_PARALLEL
, "vc:80Cx24C");
3217 if (default_monitor
)
3218 monitor_parse("vc:80Cx24C", "readline");
3219 if (default_virtcon
)
3220 add_device_config(DEV_VIRTCON
, "vc:80Cx24C");
3225 if (qemu_opts_foreach(qemu_find_opts("chardev"), chardev_init_func
, NULL
, 1) != 0)
3227 #ifdef CONFIG_VIRTFS
3228 if (qemu_opts_foreach(qemu_find_opts("fsdev"), fsdev_init_func
, NULL
, 1) != 0) {
3235 if (pid_file
&& qemu_create_pidfile(pid_file
) != 0) {
3240 /* init the memory */
3241 if (ram_size
== 0) {
3242 ram_size
= DEFAULT_RAM_SIZE
* 1024 * 1024;
3245 configure_accelerator();
3247 qemu_init_cpu_loop();
3248 if (qemu_init_main_loop()) {
3249 fprintf(stderr
, "qemu_init_main_loop failed\n");
3252 linux_boot
= (kernel_filename
!= NULL
);
3254 if (!linux_boot
&& *kernel_cmdline
!= '\0') {
3255 fprintf(stderr
, "-append only allowed with -kernel option\n");
3259 if (!linux_boot
&& initrd_filename
!= NULL
) {
3260 fprintf(stderr
, "-initrd only allowed with -kernel option\n");
3264 os_set_line_buffering();
3266 if (init_timer_alarm() < 0) {
3267 fprintf(stderr
, "could not initialize alarm timer\n");
3271 if (icount_option
&& (kvm_enabled() || xen_enabled())) {
3272 fprintf(stderr
, "-icount is not allowed with kvm or xen\n");
3275 configure_icount(icount_option
);
3277 if (net_init_clients() < 0) {
3281 /* init the bluetooth world */
3282 if (foreach_device_config(DEV_BT
, bt_parse
))
3285 if (!xen_enabled()) {
3286 /* On 32-bit hosts, QEMU is limited by virtual address space */
3287 if (ram_size
> (2047 << 20) && HOST_LONG_BITS
== 32) {
3288 fprintf(stderr
, "qemu: at most 2047 MB RAM can be simulated\n");
3293 cpu_exec_init_all();
3295 bdrv_init_with_whitelist();
3299 /* open the virtual block devices */
3301 qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot
, NULL
, 0);
3302 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func
, &machine
->use_scsi
, 1) != 0)
3305 default_drive(default_cdrom
, snapshot
, machine
->use_scsi
,
3306 IF_DEFAULT
, 2, CDROM_OPTS
);
3307 default_drive(default_floppy
, snapshot
, machine
->use_scsi
,
3308 IF_FLOPPY
, 0, FD_OPTS
);
3309 default_drive(default_sdcard
, snapshot
, machine
->use_scsi
,
3312 register_savevm_live(NULL
, "ram", 0, 4, NULL
, ram_save_live
, NULL
,
3315 if (nb_numa_nodes
> 0) {
3318 if (nb_numa_nodes
> MAX_NODES
) {
3319 nb_numa_nodes
= MAX_NODES
;
3322 /* If no memory size if given for any node, assume the default case
3323 * and distribute the available memory equally across all nodes
3325 for (i
= 0; i
< nb_numa_nodes
; i
++) {
3326 if (node_mem
[i
] != 0)
3329 if (i
== nb_numa_nodes
) {
3330 uint64_t usedmem
= 0;
3332 /* On Linux, the each node's border has to be 8MB aligned,
3333 * the final node gets the rest.
3335 for (i
= 0; i
< nb_numa_nodes
- 1; i
++) {
3336 node_mem
[i
] = (ram_size
/ nb_numa_nodes
) & ~((1 << 23UL) - 1);
3337 usedmem
+= node_mem
[i
];
3339 node_mem
[i
] = ram_size
- usedmem
;
3342 for (i
= 0; i
< nb_numa_nodes
; i
++) {
3343 if (node_cpumask
[i
] != 0)
3346 /* assigning the VCPUs round-robin is easier to implement, guest OSes
3347 * must cope with this anyway, because there are BIOSes out there in
3348 * real machines which also use this scheme.
3350 if (i
== nb_numa_nodes
) {
3351 for (i
= 0; i
< max_cpus
; i
++) {
3352 node_cpumask
[i
% nb_numa_nodes
] |= 1 << i
;
3357 if (qemu_opts_foreach(qemu_find_opts("mon"), mon_init_func
, NULL
, 1) != 0) {
3361 if (foreach_device_config(DEV_SERIAL
, serial_parse
) < 0)
3363 if (foreach_device_config(DEV_PARALLEL
, parallel_parse
) < 0)
3365 if (foreach_device_config(DEV_VIRTCON
, virtcon_parse
) < 0)
3367 if (foreach_device_config(DEV_DEBUGCON
, debugcon_parse
) < 0)
3370 module_call_init(MODULE_INIT_QOM
);
3372 /* must be after qdev registration but before machine init */
3374 select_vgahw(vga_model
);
3375 } else if (cirrus_vga_available()) {
3376 select_vgahw("cirrus");
3378 select_vgahw("none");
3381 if (qemu_opts_foreach(qemu_find_opts("device"), device_help_func
, NULL
, 0) != 0)
3385 i
= select_watchdog(watchdog
);
3387 exit (i
== 1 ? 1 : 0);
3390 if (machine
->compat_props
) {
3391 qdev_prop_register_global_list(machine
->compat_props
);
3395 qdev_machine_init();
3397 machine
->init(ram_size
, boot_devices
,
3398 kernel_filename
, kernel_cmdline
, initrd_filename
, cpu_model
);
3400 cpu_synchronize_all_post_init();
3404 current_machine
= machine
;
3406 /* init USB devices */
3408 if (foreach_device_config(DEV_USB
, usb_parse
) < 0)
3412 /* init generic devices */
3413 if (qemu_opts_foreach(qemu_find_opts("device"), device_init_func
, NULL
, 1) != 0)
3416 net_check_clients();
3418 /* just use the first displaystate for the moment */
3419 ds
= get_displaystate();
3423 if (display_type
== DT_DEFAULT
&& !display_remote
) {
3424 #if defined(CONFIG_SDL) || defined(CONFIG_COCOA)
3425 display_type
= DT_SDL
;
3426 #elif defined(CONFIG_VNC)
3427 vnc_display
= "localhost:0,to=99";
3430 display_type
= DT_NONE
;
3435 /* init local displays */
3436 switch (display_type
) {
3439 #if defined(CONFIG_CURSES)
3441 curses_display_init(ds
, full_screen
);
3444 #if defined(CONFIG_SDL)
3446 sdl_display_init(ds
, full_screen
, no_frame
);
3448 #elif defined(CONFIG_COCOA)
3450 cocoa_display_init(ds
, full_screen
);
3457 /* must be after terminal init, SDL library changes signal handlers */
3458 os_setup_signal_handling();
3461 /* init remote displays */
3463 vnc_display_init(ds
);
3464 if (vnc_display_open(ds
, vnc_display
) < 0)
3467 if (show_vnc_port
) {
3468 printf("VNC server running on `%s'\n", vnc_display_local_addr(ds
));
3473 if (using_spice
&& !qxl_enabled
) {
3474 qemu_spice_display_init(ds
);
3480 dcl
= ds
->listeners
;
3481 while (dcl
!= NULL
) {
3482 if (dcl
->dpy_refresh
!= NULL
) {
3483 ds
->gui_timer
= qemu_new_timer_ms(rt_clock
, gui_update
, ds
);
3484 qemu_mod_timer(ds
->gui_timer
, qemu_get_clock_ms(rt_clock
));
3489 text_consoles_set_display(ds
);
3491 if (gdbstub_dev
&& gdbserver_start(gdbstub_dev
) < 0) {
3492 fprintf(stderr
, "qemu: could not open gdbserver on device '%s'\n",
3497 qdev_machine_creation_done();
3499 if (rom_load_all() != 0) {
3500 fprintf(stderr
, "rom loading failed\n");
3504 /* TODO: once all bus devices are qdevified, this should be done
3505 * when bus is created by qdev.c */
3506 qemu_register_reset(qbus_reset_all_fn
, sysbus_get_default());
3507 qemu_run_machine_init_done_notifiers();
3509 qemu_system_reset(VMRESET_SILENT
);
3511 if (load_vmstate(loadvm
) < 0) {
3517 runstate_set(RUN_STATE_INMIGRATE
);
3518 int ret
= qemu_start_incoming_migration(incoming
);
3520 fprintf(stderr
, "Migration failed. Exit code %s(%d), exiting.\n",
3524 } else if (autostart
) {