Monitor: Return before exiting with 'quit'
[qemu.git] / vl.c
blob9ef6f2cbef5ff61ed42c450f169105e573aaab9b
1 /*
2 * QEMU System Emulator
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
22 * THE SOFTWARE.
24 #include <unistd.h>
25 #include <fcntl.h>
26 #include <signal.h>
27 #include <time.h>
28 #include <errno.h>
29 #include <sys/time.h>
30 #include <zlib.h>
32 /* Needed early for CONFIG_BSD etc. */
33 #include "config-host.h"
35 #ifndef _WIN32
36 #include <libgen.h>
37 #include <pwd.h>
38 #include <sys/times.h>
39 #include <sys/wait.h>
40 #include <termios.h>
41 #include <sys/mman.h>
42 #include <sys/ioctl.h>
43 #include <sys/resource.h>
44 #include <sys/socket.h>
45 #include <netinet/in.h>
46 #include <net/if.h>
47 #include <arpa/inet.h>
48 #include <dirent.h>
49 #include <netdb.h>
50 #include <sys/select.h>
51 #ifdef CONFIG_BSD
52 #include <sys/stat.h>
53 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
54 #include <libutil.h>
55 #include <sys/sysctl.h>
56 #else
57 #include <util.h>
58 #endif
59 #else
60 #ifdef __linux__
61 #include <pty.h>
62 #include <malloc.h>
63 #include <sys/prctl.h>
65 #include <linux/ppdev.h>
66 #include <linux/parport.h>
67 #endif
68 #ifdef __sun__
69 #include <sys/stat.h>
70 #include <sys/ethernet.h>
71 #include <sys/sockio.h>
72 #include <netinet/arp.h>
73 #include <netinet/in.h>
74 #include <netinet/in_systm.h>
75 #include <netinet/ip.h>
76 #include <netinet/ip_icmp.h> // must come after ip.h
77 #include <netinet/udp.h>
78 #include <netinet/tcp.h>
79 #include <net/if.h>
80 #include <syslog.h>
81 #include <stropts.h>
82 /* See MySQL bug #7156 (http://bugs.mysql.com/bug.php?id=7156) for
83 discussion about Solaris header problems */
84 extern int madvise(caddr_t, size_t, int);
85 #endif
86 #endif
87 #endif
89 #if defined(__OpenBSD__)
90 #include <util.h>
91 #endif
93 #if defined(CONFIG_VDE)
94 #include <libvdeplug.h>
95 #endif
97 #ifdef _WIN32
98 #include <windows.h>
99 #endif
101 #ifdef CONFIG_SDL
102 #if defined(__APPLE__) || defined(main)
103 #include <SDL.h>
104 int qemu_main(int argc, char **argv, char **envp);
105 int main(int argc, char **argv)
107 return qemu_main(argc, argv, NULL);
109 #undef main
110 #define main qemu_main
111 #endif
112 #endif /* CONFIG_SDL */
114 #ifdef CONFIG_COCOA
115 #undef main
116 #define main qemu_main
117 #endif /* CONFIG_COCOA */
119 #include "hw/hw.h"
120 #include "hw/boards.h"
121 #include "hw/usb.h"
122 #include "hw/pcmcia.h"
123 #include "hw/pc.h"
124 #include "hw/isa.h"
125 #include "hw/baum.h"
126 #include "hw/bt.h"
127 #include "hw/watchdog.h"
128 #include "hw/smbios.h"
129 #include "hw/xen.h"
130 #include "hw/qdev.h"
131 #include "hw/loader.h"
132 #include "bt-host.h"
133 #include "net.h"
134 #include "net/slirp.h"
135 #include "monitor.h"
136 #include "console.h"
137 #include "sysemu.h"
138 #include "gdbstub.h"
139 #include "qemu-timer.h"
140 #include "qemu-char.h"
141 #include "cache-utils.h"
142 #include "block.h"
143 #include "block_int.h"
144 #include "block-migration.h"
145 #include "dma.h"
146 #include "audio/audio.h"
147 #include "migration.h"
148 #include "kvm.h"
149 #include "qemu-option.h"
150 #include "qemu-config.h"
151 #include "qemu-objects.h"
153 #include "disas.h"
155 #include "qemu_socket.h"
157 #include "slirp/libslirp.h"
159 #include "qemu-queue.h"
160 #include "cpus.h"
161 #include "arch_init.h"
163 //#define DEBUG_NET
164 //#define DEBUG_SLIRP
166 #define DEFAULT_RAM_SIZE 128
168 #define MAX_VIRTIO_CONSOLES 1
170 static const char *data_dir;
171 const char *bios_name = NULL;
172 /* Note: drives_table[MAX_DRIVES] is a dummy block driver if none available
173 to store the VM snapshots */
174 struct drivelist drives = QTAILQ_HEAD_INITIALIZER(drives);
175 struct driveoptlist driveopts = QTAILQ_HEAD_INITIALIZER(driveopts);
176 enum vga_retrace_method vga_retrace_method = VGA_RETRACE_DUMB;
177 DisplayType display_type = DT_DEFAULT;
178 const char* keyboard_layout = NULL;
179 ram_addr_t ram_size;
180 const char *mem_path = NULL;
181 #ifdef MAP_POPULATE
182 int mem_prealloc = 0; /* force preallocation of physical target memory */
183 #endif
184 int nb_nics;
185 NICInfo nd_table[MAX_NICS];
186 int vm_running;
187 int autostart;
188 static int rtc_utc = 1;
189 static int rtc_date_offset = -1; /* -1 means no change */
190 QEMUClock *rtc_clock;
191 int vga_interface_type = VGA_NONE;
192 static int full_screen = 0;
193 #ifdef CONFIG_SDL
194 static int no_frame = 0;
195 #endif
196 int no_quit = 0;
197 CharDriverState *serial_hds[MAX_SERIAL_PORTS];
198 CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
199 CharDriverState *virtcon_hds[MAX_VIRTIO_CONSOLES];
200 int win2k_install_hack = 0;
201 int rtc_td_hack = 0;
202 int usb_enabled = 0;
203 int singlestep = 0;
204 int smp_cpus = 1;
205 int max_cpus = 0;
206 int smp_cores = 1;
207 int smp_threads = 1;
208 const char *vnc_display;
209 int acpi_enabled = 1;
210 int no_hpet = 0;
211 int fd_bootchk = 1;
212 int no_reboot = 0;
213 int no_shutdown = 0;
214 int cursor_hide = 1;
215 int graphic_rotate = 0;
216 uint8_t irq0override = 1;
217 #ifndef _WIN32
218 int daemonize = 0;
219 #endif
220 const char *watchdog;
221 const char *option_rom[MAX_OPTION_ROMS];
222 int nb_option_roms;
223 int semihosting_enabled = 0;
224 int old_param = 0;
225 const char *qemu_name;
226 int alt_grab = 0;
227 int ctrl_grab = 0;
228 unsigned int nb_prom_envs = 0;
229 const char *prom_envs[MAX_PROM_ENVS];
230 int boot_menu;
232 int nb_numa_nodes;
233 uint64_t node_mem[MAX_NODES];
234 uint64_t node_cpumask[MAX_NODES];
236 static QEMUTimer *nographic_timer;
238 uint8_t qemu_uuid[16];
240 static QEMUBootSetHandler *boot_set_handler;
241 static void *boot_set_opaque;
243 int kvm_allowed = 0;
244 uint32_t xen_domid;
245 enum xen_mode xen_mode = XEN_EMULATE;
247 static int default_serial = 1;
248 static int default_parallel = 1;
249 static int default_virtcon = 1;
250 static int default_monitor = 1;
251 static int default_vga = 1;
252 static int default_floppy = 1;
253 static int default_cdrom = 1;
254 static int default_sdcard = 1;
256 static struct {
257 const char *driver;
258 int *flag;
259 } default_list[] = {
260 { .driver = "isa-serial", .flag = &default_serial },
261 { .driver = "isa-parallel", .flag = &default_parallel },
262 { .driver = "isa-fdc", .flag = &default_floppy },
263 { .driver = "ide-drive", .flag = &default_cdrom },
264 { .driver = "virtio-serial-pci", .flag = &default_virtcon },
265 { .driver = "virtio-serial-s390", .flag = &default_virtcon },
266 { .driver = "virtio-serial", .flag = &default_virtcon },
267 { .driver = "VGA", .flag = &default_vga },
268 { .driver = "cirrus-vga", .flag = &default_vga },
269 { .driver = "vmware-svga", .flag = &default_vga },
272 static int default_driver_check(QemuOpts *opts, void *opaque)
274 const char *driver = qemu_opt_get(opts, "driver");
275 int i;
277 if (!driver)
278 return 0;
279 for (i = 0; i < ARRAY_SIZE(default_list); i++) {
280 if (strcmp(default_list[i].driver, driver) != 0)
281 continue;
282 *(default_list[i].flag) = 0;
284 return 0;
287 /***********************************************************/
289 static void set_proc_name(const char *s)
291 #if defined(__linux__) && defined(PR_SET_NAME)
292 char name[16];
293 if (!s)
294 return;
295 name[sizeof(name) - 1] = 0;
296 strncpy(name, s, sizeof(name));
297 /* Could rewrite argv[0] too, but that's a bit more complicated.
298 This simple way is enough for `top'. */
299 prctl(PR_SET_NAME, name);
300 #endif
303 /***********************************************************/
304 /* real time host monotonic timer */
306 /* compute with 96 bit intermediate result: (a*b)/c */
307 uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c)
309 union {
310 uint64_t ll;
311 struct {
312 #ifdef HOST_WORDS_BIGENDIAN
313 uint32_t high, low;
314 #else
315 uint32_t low, high;
316 #endif
317 } l;
318 } u, res;
319 uint64_t rl, rh;
321 u.ll = a;
322 rl = (uint64_t)u.l.low * (uint64_t)b;
323 rh = (uint64_t)u.l.high * (uint64_t)b;
324 rh += (rl >> 32);
325 res.l.high = rh / c;
326 res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c;
327 return res.ll;
330 /***********************************************************/
331 /* host time/date access */
332 void qemu_get_timedate(struct tm *tm, int offset)
334 time_t ti;
335 struct tm *ret;
337 time(&ti);
338 ti += offset;
339 if (rtc_date_offset == -1) {
340 if (rtc_utc)
341 ret = gmtime(&ti);
342 else
343 ret = localtime(&ti);
344 } else {
345 ti -= rtc_date_offset;
346 ret = gmtime(&ti);
349 memcpy(tm, ret, sizeof(struct tm));
352 int qemu_timedate_diff(struct tm *tm)
354 time_t seconds;
356 if (rtc_date_offset == -1)
357 if (rtc_utc)
358 seconds = mktimegm(tm);
359 else
360 seconds = mktime(tm);
361 else
362 seconds = mktimegm(tm) + rtc_date_offset;
364 return seconds - time(NULL);
367 void rtc_change_mon_event(struct tm *tm)
369 QObject *data;
371 data = qobject_from_jsonf("{ 'offset': %d }", qemu_timedate_diff(tm));
372 monitor_protocol_event(QEVENT_RTC_CHANGE, data);
373 qobject_decref(data);
376 static void configure_rtc_date_offset(const char *startdate, int legacy)
378 time_t rtc_start_date;
379 struct tm tm;
381 if (!strcmp(startdate, "now") && legacy) {
382 rtc_date_offset = -1;
383 } else {
384 if (sscanf(startdate, "%d-%d-%dT%d:%d:%d",
385 &tm.tm_year,
386 &tm.tm_mon,
387 &tm.tm_mday,
388 &tm.tm_hour,
389 &tm.tm_min,
390 &tm.tm_sec) == 6) {
391 /* OK */
392 } else if (sscanf(startdate, "%d-%d-%d",
393 &tm.tm_year,
394 &tm.tm_mon,
395 &tm.tm_mday) == 3) {
396 tm.tm_hour = 0;
397 tm.tm_min = 0;
398 tm.tm_sec = 0;
399 } else {
400 goto date_fail;
402 tm.tm_year -= 1900;
403 tm.tm_mon--;
404 rtc_start_date = mktimegm(&tm);
405 if (rtc_start_date == -1) {
406 date_fail:
407 fprintf(stderr, "Invalid date format. Valid formats are:\n"
408 "'2006-06-17T16:01:21' or '2006-06-17'\n");
409 exit(1);
411 rtc_date_offset = time(NULL) - rtc_start_date;
415 static void configure_rtc(QemuOpts *opts)
417 const char *value;
419 value = qemu_opt_get(opts, "base");
420 if (value) {
421 if (!strcmp(value, "utc")) {
422 rtc_utc = 1;
423 } else if (!strcmp(value, "localtime")) {
424 rtc_utc = 0;
425 } else {
426 configure_rtc_date_offset(value, 0);
429 value = qemu_opt_get(opts, "clock");
430 if (value) {
431 if (!strcmp(value, "host")) {
432 rtc_clock = host_clock;
433 } else if (!strcmp(value, "vm")) {
434 rtc_clock = vm_clock;
435 } else {
436 fprintf(stderr, "qemu: invalid option value '%s'\n", value);
437 exit(1);
440 value = qemu_opt_get(opts, "driftfix");
441 if (value) {
442 if (!strcmp(value, "slew")) {
443 rtc_td_hack = 1;
444 } else if (!strcmp(value, "none")) {
445 rtc_td_hack = 0;
446 } else {
447 fprintf(stderr, "qemu: invalid option value '%s'\n", value);
448 exit(1);
453 /***********************************************************/
454 /* Bluetooth support */
455 static int nb_hcis;
456 static int cur_hci;
457 static struct HCIInfo *hci_table[MAX_NICS];
459 static struct bt_vlan_s {
460 struct bt_scatternet_s net;
461 int id;
462 struct bt_vlan_s *next;
463 } *first_bt_vlan;
465 /* find or alloc a new bluetooth "VLAN" */
466 static struct bt_scatternet_s *qemu_find_bt_vlan(int id)
468 struct bt_vlan_s **pvlan, *vlan;
469 for (vlan = first_bt_vlan; vlan != NULL; vlan = vlan->next) {
470 if (vlan->id == id)
471 return &vlan->net;
473 vlan = qemu_mallocz(sizeof(struct bt_vlan_s));
474 vlan->id = id;
475 pvlan = &first_bt_vlan;
476 while (*pvlan != NULL)
477 pvlan = &(*pvlan)->next;
478 *pvlan = vlan;
479 return &vlan->net;
482 static void null_hci_send(struct HCIInfo *hci, const uint8_t *data, int len)
486 static int null_hci_addr_set(struct HCIInfo *hci, const uint8_t *bd_addr)
488 return -ENOTSUP;
491 static struct HCIInfo null_hci = {
492 .cmd_send = null_hci_send,
493 .sco_send = null_hci_send,
494 .acl_send = null_hci_send,
495 .bdaddr_set = null_hci_addr_set,
498 struct HCIInfo *qemu_next_hci(void)
500 if (cur_hci == nb_hcis)
501 return &null_hci;
503 return hci_table[cur_hci++];
506 static struct HCIInfo *hci_init(const char *str)
508 char *endp;
509 struct bt_scatternet_s *vlan = 0;
511 if (!strcmp(str, "null"))
512 /* null */
513 return &null_hci;
514 else if (!strncmp(str, "host", 4) && (str[4] == '\0' || str[4] == ':'))
515 /* host[:hciN] */
516 return bt_host_hci(str[4] ? str + 5 : "hci0");
517 else if (!strncmp(str, "hci", 3)) {
518 /* hci[,vlan=n] */
519 if (str[3]) {
520 if (!strncmp(str + 3, ",vlan=", 6)) {
521 vlan = qemu_find_bt_vlan(strtol(str + 9, &endp, 0));
522 if (*endp)
523 vlan = 0;
525 } else
526 vlan = qemu_find_bt_vlan(0);
527 if (vlan)
528 return bt_new_hci(vlan);
531 fprintf(stderr, "qemu: Unknown bluetooth HCI `%s'.\n", str);
533 return 0;
536 static int bt_hci_parse(const char *str)
538 struct HCIInfo *hci;
539 bdaddr_t bdaddr;
541 if (nb_hcis >= MAX_NICS) {
542 fprintf(stderr, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS);
543 return -1;
546 hci = hci_init(str);
547 if (!hci)
548 return -1;
550 bdaddr.b[0] = 0x52;
551 bdaddr.b[1] = 0x54;
552 bdaddr.b[2] = 0x00;
553 bdaddr.b[3] = 0x12;
554 bdaddr.b[4] = 0x34;
555 bdaddr.b[5] = 0x56 + nb_hcis;
556 hci->bdaddr_set(hci, bdaddr.b);
558 hci_table[nb_hcis++] = hci;
560 return 0;
563 static void bt_vhci_add(int vlan_id)
565 struct bt_scatternet_s *vlan = qemu_find_bt_vlan(vlan_id);
567 if (!vlan->slave)
568 fprintf(stderr, "qemu: warning: adding a VHCI to "
569 "an empty scatternet %i\n", vlan_id);
571 bt_vhci_init(bt_new_hci(vlan));
574 static struct bt_device_s *bt_device_add(const char *opt)
576 struct bt_scatternet_s *vlan;
577 int vlan_id = 0;
578 char *endp = strstr(opt, ",vlan=");
579 int len = (endp ? endp - opt : strlen(opt)) + 1;
580 char devname[10];
582 pstrcpy(devname, MIN(sizeof(devname), len), opt);
584 if (endp) {
585 vlan_id = strtol(endp + 6, &endp, 0);
586 if (*endp) {
587 fprintf(stderr, "qemu: unrecognised bluetooth vlan Id\n");
588 return 0;
592 vlan = qemu_find_bt_vlan(vlan_id);
594 if (!vlan->slave)
595 fprintf(stderr, "qemu: warning: adding a slave device to "
596 "an empty scatternet %i\n", vlan_id);
598 if (!strcmp(devname, "keyboard"))
599 return bt_keyboard_init(vlan);
601 fprintf(stderr, "qemu: unsupported bluetooth device `%s'\n", devname);
602 return 0;
605 static int bt_parse(const char *opt)
607 const char *endp, *p;
608 int vlan;
610 if (strstart(opt, "hci", &endp)) {
611 if (!*endp || *endp == ',') {
612 if (*endp)
613 if (!strstart(endp, ",vlan=", 0))
614 opt = endp + 1;
616 return bt_hci_parse(opt);
618 } else if (strstart(opt, "vhci", &endp)) {
619 if (!*endp || *endp == ',') {
620 if (*endp) {
621 if (strstart(endp, ",vlan=", &p)) {
622 vlan = strtol(p, (char **) &endp, 0);
623 if (*endp) {
624 fprintf(stderr, "qemu: bad scatternet '%s'\n", p);
625 return 1;
627 } else {
628 fprintf(stderr, "qemu: bad parameter '%s'\n", endp + 1);
629 return 1;
631 } else
632 vlan = 0;
634 bt_vhci_add(vlan);
635 return 0;
637 } else if (strstart(opt, "device:", &endp))
638 return !bt_device_add(endp);
640 fprintf(stderr, "qemu: bad bluetooth parameter '%s'\n", opt);
641 return 1;
644 /***********************************************************/
645 /* QEMU Block devices */
647 #define HD_ALIAS "index=%d,media=disk"
648 #define CDROM_ALIAS "index=2,media=cdrom"
649 #define FD_ALIAS "index=%d,if=floppy"
650 #define PFLASH_ALIAS "if=pflash"
651 #define MTD_ALIAS "if=mtd"
652 #define SD_ALIAS "index=0,if=sd"
654 QemuOpts *drive_add(const char *file, const char *fmt, ...)
656 va_list ap;
657 char optstr[1024];
658 QemuOpts *opts;
660 va_start(ap, fmt);
661 vsnprintf(optstr, sizeof(optstr), fmt, ap);
662 va_end(ap);
664 opts = qemu_opts_parse(&qemu_drive_opts, optstr, 0);
665 if (!opts) {
666 return NULL;
668 if (file)
669 qemu_opt_set(opts, "file", file);
670 return opts;
673 DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit)
675 DriveInfo *dinfo;
677 /* seek interface, bus and unit */
679 QTAILQ_FOREACH(dinfo, &drives, next) {
680 if (dinfo->type == type &&
681 dinfo->bus == bus &&
682 dinfo->unit == unit)
683 return dinfo;
686 return NULL;
689 DriveInfo *drive_get_by_id(const char *id)
691 DriveInfo *dinfo;
693 QTAILQ_FOREACH(dinfo, &drives, next) {
694 if (strcmp(id, dinfo->id))
695 continue;
696 return dinfo;
698 return NULL;
701 int drive_get_max_bus(BlockInterfaceType type)
703 int max_bus;
704 DriveInfo *dinfo;
706 max_bus = -1;
707 QTAILQ_FOREACH(dinfo, &drives, next) {
708 if(dinfo->type == type &&
709 dinfo->bus > max_bus)
710 max_bus = dinfo->bus;
712 return max_bus;
715 const char *drive_get_serial(BlockDriverState *bdrv)
717 DriveInfo *dinfo;
719 QTAILQ_FOREACH(dinfo, &drives, next) {
720 if (dinfo->bdrv == bdrv)
721 return dinfo->serial;
724 return "\0";
727 BlockInterfaceErrorAction drive_get_on_error(
728 BlockDriverState *bdrv, int is_read)
730 DriveInfo *dinfo;
732 QTAILQ_FOREACH(dinfo, &drives, next) {
733 if (dinfo->bdrv == bdrv)
734 return is_read ? dinfo->on_read_error : dinfo->on_write_error;
737 return is_read ? BLOCK_ERR_REPORT : BLOCK_ERR_STOP_ENOSPC;
740 static void bdrv_format_print(void *opaque, const char *name)
742 fprintf(stderr, " %s", name);
745 void drive_uninit(DriveInfo *dinfo)
747 qemu_opts_del(dinfo->opts);
748 bdrv_delete(dinfo->bdrv);
749 QTAILQ_REMOVE(&drives, dinfo, next);
750 qemu_free(dinfo);
753 static int parse_block_error_action(const char *buf, int is_read)
755 if (!strcmp(buf, "ignore")) {
756 return BLOCK_ERR_IGNORE;
757 } else if (!is_read && !strcmp(buf, "enospc")) {
758 return BLOCK_ERR_STOP_ENOSPC;
759 } else if (!strcmp(buf, "stop")) {
760 return BLOCK_ERR_STOP_ANY;
761 } else if (!strcmp(buf, "report")) {
762 return BLOCK_ERR_REPORT;
763 } else {
764 fprintf(stderr, "qemu: '%s' invalid %s error action\n",
765 buf, is_read ? "read" : "write");
766 return -1;
770 DriveInfo *drive_init(QemuOpts *opts, void *opaque,
771 int *fatal_error)
773 const char *buf;
774 const char *file = NULL;
775 char devname[128];
776 const char *serial;
777 const char *mediastr = "";
778 BlockInterfaceType type;
779 enum { MEDIA_DISK, MEDIA_CDROM } media;
780 int bus_id, unit_id;
781 int cyls, heads, secs, translation;
782 BlockDriver *drv = NULL;
783 QEMUMachine *machine = opaque;
784 int max_devs;
785 int index;
786 int ro = 0;
787 int bdrv_flags = 0;
788 int on_read_error, on_write_error;
789 const char *devaddr;
790 DriveInfo *dinfo;
791 int snapshot = 0;
793 *fatal_error = 1;
795 translation = BIOS_ATA_TRANSLATION_AUTO;
797 if (machine && machine->use_scsi) {
798 type = IF_SCSI;
799 max_devs = MAX_SCSI_DEVS;
800 pstrcpy(devname, sizeof(devname), "scsi");
801 } else {
802 type = IF_IDE;
803 max_devs = MAX_IDE_DEVS;
804 pstrcpy(devname, sizeof(devname), "ide");
806 media = MEDIA_DISK;
808 /* extract parameters */
809 bus_id = qemu_opt_get_number(opts, "bus", 0);
810 unit_id = qemu_opt_get_number(opts, "unit", -1);
811 index = qemu_opt_get_number(opts, "index", -1);
813 cyls = qemu_opt_get_number(opts, "cyls", 0);
814 heads = qemu_opt_get_number(opts, "heads", 0);
815 secs = qemu_opt_get_number(opts, "secs", 0);
817 snapshot = qemu_opt_get_bool(opts, "snapshot", 0);
818 ro = qemu_opt_get_bool(opts, "readonly", 0);
820 file = qemu_opt_get(opts, "file");
821 serial = qemu_opt_get(opts, "serial");
823 if ((buf = qemu_opt_get(opts, "if")) != NULL) {
824 pstrcpy(devname, sizeof(devname), buf);
825 if (!strcmp(buf, "ide")) {
826 type = IF_IDE;
827 max_devs = MAX_IDE_DEVS;
828 } else if (!strcmp(buf, "scsi")) {
829 type = IF_SCSI;
830 max_devs = MAX_SCSI_DEVS;
831 } else if (!strcmp(buf, "floppy")) {
832 type = IF_FLOPPY;
833 max_devs = 0;
834 } else if (!strcmp(buf, "pflash")) {
835 type = IF_PFLASH;
836 max_devs = 0;
837 } else if (!strcmp(buf, "mtd")) {
838 type = IF_MTD;
839 max_devs = 0;
840 } else if (!strcmp(buf, "sd")) {
841 type = IF_SD;
842 max_devs = 0;
843 } else if (!strcmp(buf, "virtio")) {
844 type = IF_VIRTIO;
845 max_devs = 0;
846 } else if (!strcmp(buf, "xen")) {
847 type = IF_XEN;
848 max_devs = 0;
849 } else if (!strcmp(buf, "none")) {
850 type = IF_NONE;
851 max_devs = 0;
852 } else {
853 fprintf(stderr, "qemu: unsupported bus type '%s'\n", buf);
854 return NULL;
858 if (cyls || heads || secs) {
859 if (cyls < 1 || (type == IF_IDE && cyls > 16383)) {
860 fprintf(stderr, "qemu: '%s' invalid physical cyls number\n", buf);
861 return NULL;
863 if (heads < 1 || (type == IF_IDE && heads > 16)) {
864 fprintf(stderr, "qemu: '%s' invalid physical heads number\n", buf);
865 return NULL;
867 if (secs < 1 || (type == IF_IDE && secs > 63)) {
868 fprintf(stderr, "qemu: '%s' invalid physical secs number\n", buf);
869 return NULL;
873 if ((buf = qemu_opt_get(opts, "trans")) != NULL) {
874 if (!cyls) {
875 fprintf(stderr,
876 "qemu: '%s' trans must be used with cyls,heads and secs\n",
877 buf);
878 return NULL;
880 if (!strcmp(buf, "none"))
881 translation = BIOS_ATA_TRANSLATION_NONE;
882 else if (!strcmp(buf, "lba"))
883 translation = BIOS_ATA_TRANSLATION_LBA;
884 else if (!strcmp(buf, "auto"))
885 translation = BIOS_ATA_TRANSLATION_AUTO;
886 else {
887 fprintf(stderr, "qemu: '%s' invalid translation type\n", buf);
888 return NULL;
892 if ((buf = qemu_opt_get(opts, "media")) != NULL) {
893 if (!strcmp(buf, "disk")) {
894 media = MEDIA_DISK;
895 } else if (!strcmp(buf, "cdrom")) {
896 if (cyls || secs || heads) {
897 fprintf(stderr,
898 "qemu: '%s' invalid physical CHS format\n", buf);
899 return NULL;
901 media = MEDIA_CDROM;
902 } else {
903 fprintf(stderr, "qemu: '%s' invalid media\n", buf);
904 return NULL;
908 if ((buf = qemu_opt_get(opts, "cache")) != NULL) {
909 if (!strcmp(buf, "off") || !strcmp(buf, "none")) {
910 bdrv_flags |= BDRV_O_NOCACHE;
911 } else if (!strcmp(buf, "writeback")) {
912 bdrv_flags |= BDRV_O_CACHE_WB;
913 } else if (!strcmp(buf, "writethrough")) {
914 /* this is the default */
915 } else {
916 fprintf(stderr, "qemu: invalid cache option\n");
917 return NULL;
921 #ifdef CONFIG_LINUX_AIO
922 if ((buf = qemu_opt_get(opts, "aio")) != NULL) {
923 if (!strcmp(buf, "native")) {
924 bdrv_flags |= BDRV_O_NATIVE_AIO;
925 } else if (!strcmp(buf, "threads")) {
926 /* this is the default */
927 } else {
928 fprintf(stderr, "qemu: invalid aio option\n");
929 return NULL;
932 #endif
934 if ((buf = qemu_opt_get(opts, "format")) != NULL) {
935 if (strcmp(buf, "?") == 0) {
936 fprintf(stderr, "qemu: Supported formats:");
937 bdrv_iterate_format(bdrv_format_print, NULL);
938 fprintf(stderr, "\n");
939 return NULL;
941 drv = bdrv_find_whitelisted_format(buf);
942 if (!drv) {
943 fprintf(stderr, "qemu: '%s' invalid format\n", buf);
944 return NULL;
948 on_write_error = BLOCK_ERR_STOP_ENOSPC;
949 if ((buf = qemu_opt_get(opts, "werror")) != NULL) {
950 if (type != IF_IDE && type != IF_SCSI && type != IF_VIRTIO) {
951 fprintf(stderr, "werror is no supported by this format\n");
952 return NULL;
955 on_write_error = parse_block_error_action(buf, 0);
956 if (on_write_error < 0) {
957 return NULL;
961 on_read_error = BLOCK_ERR_REPORT;
962 if ((buf = qemu_opt_get(opts, "rerror")) != NULL) {
963 if (type != IF_IDE && type != IF_VIRTIO) {
964 fprintf(stderr, "rerror is no supported by this format\n");
965 return NULL;
968 on_read_error = parse_block_error_action(buf, 1);
969 if (on_read_error < 0) {
970 return NULL;
974 if ((devaddr = qemu_opt_get(opts, "addr")) != NULL) {
975 if (type != IF_VIRTIO) {
976 fprintf(stderr, "addr is not supported\n");
977 return NULL;
981 /* compute bus and unit according index */
983 if (index != -1) {
984 if (bus_id != 0 || unit_id != -1) {
985 fprintf(stderr,
986 "qemu: index cannot be used with bus and unit\n");
987 return NULL;
989 if (max_devs == 0)
991 unit_id = index;
992 bus_id = 0;
993 } else {
994 unit_id = index % max_devs;
995 bus_id = index / max_devs;
999 /* if user doesn't specify a unit_id,
1000 * try to find the first free
1003 if (unit_id == -1) {
1004 unit_id = 0;
1005 while (drive_get(type, bus_id, unit_id) != NULL) {
1006 unit_id++;
1007 if (max_devs && unit_id >= max_devs) {
1008 unit_id -= max_devs;
1009 bus_id++;
1014 /* check unit id */
1016 if (max_devs && unit_id >= max_devs) {
1017 fprintf(stderr, "qemu: unit %d too big (max is %d)\n",
1018 unit_id, max_devs - 1);
1019 return NULL;
1023 * ignore multiple definitions
1026 if (drive_get(type, bus_id, unit_id) != NULL) {
1027 *fatal_error = 0;
1028 return NULL;
1031 /* init */
1033 dinfo = qemu_mallocz(sizeof(*dinfo));
1034 if ((buf = qemu_opts_id(opts)) != NULL) {
1035 dinfo->id = qemu_strdup(buf);
1036 } else {
1037 /* no id supplied -> create one */
1038 dinfo->id = qemu_mallocz(32);
1039 if (type == IF_IDE || type == IF_SCSI)
1040 mediastr = (media == MEDIA_CDROM) ? "-cd" : "-hd";
1041 if (max_devs)
1042 snprintf(dinfo->id, 32, "%s%i%s%i",
1043 devname, bus_id, mediastr, unit_id);
1044 else
1045 snprintf(dinfo->id, 32, "%s%s%i",
1046 devname, mediastr, unit_id);
1048 dinfo->bdrv = bdrv_new(dinfo->id);
1049 dinfo->devaddr = devaddr;
1050 dinfo->type = type;
1051 dinfo->bus = bus_id;
1052 dinfo->unit = unit_id;
1053 dinfo->on_read_error = on_read_error;
1054 dinfo->on_write_error = on_write_error;
1055 dinfo->opts = opts;
1056 if (serial)
1057 strncpy(dinfo->serial, serial, sizeof(serial));
1058 QTAILQ_INSERT_TAIL(&drives, dinfo, next);
1060 switch(type) {
1061 case IF_IDE:
1062 case IF_SCSI:
1063 case IF_XEN:
1064 case IF_NONE:
1065 switch(media) {
1066 case MEDIA_DISK:
1067 if (cyls != 0) {
1068 bdrv_set_geometry_hint(dinfo->bdrv, cyls, heads, secs);
1069 bdrv_set_translation_hint(dinfo->bdrv, translation);
1071 break;
1072 case MEDIA_CDROM:
1073 bdrv_set_type_hint(dinfo->bdrv, BDRV_TYPE_CDROM);
1074 break;
1076 break;
1077 case IF_SD:
1078 /* FIXME: This isn't really a floppy, but it's a reasonable
1079 approximation. */
1080 case IF_FLOPPY:
1081 bdrv_set_type_hint(dinfo->bdrv, BDRV_TYPE_FLOPPY);
1082 break;
1083 case IF_PFLASH:
1084 case IF_MTD:
1085 break;
1086 case IF_VIRTIO:
1087 /* add virtio block device */
1088 opts = qemu_opts_create(&qemu_device_opts, NULL, 0);
1089 qemu_opt_set(opts, "driver", "virtio-blk-pci");
1090 qemu_opt_set(opts, "drive", dinfo->id);
1091 if (devaddr)
1092 qemu_opt_set(opts, "addr", devaddr);
1093 break;
1094 case IF_COUNT:
1095 abort();
1097 if (!file) {
1098 *fatal_error = 0;
1099 return NULL;
1101 if (snapshot) {
1102 /* always use write-back with snapshot */
1103 bdrv_flags &= ~BDRV_O_CACHE_MASK;
1104 bdrv_flags |= (BDRV_O_SNAPSHOT|BDRV_O_CACHE_WB);
1107 if (media == MEDIA_CDROM) {
1108 /* CDROM is fine for any interface, don't check. */
1109 ro = 1;
1110 } else if (ro == 1) {
1111 if (type != IF_SCSI && type != IF_VIRTIO && type != IF_FLOPPY) {
1112 fprintf(stderr, "qemu: readonly flag not supported for drive with this interface\n");
1113 return NULL;
1117 bdrv_flags |= ro ? 0 : BDRV_O_RDWR;
1119 if (bdrv_open(dinfo->bdrv, file, bdrv_flags, drv) < 0) {
1120 fprintf(stderr, "qemu: could not open disk image %s: %s\n",
1121 file, strerror(errno));
1122 return NULL;
1125 if (bdrv_key_required(dinfo->bdrv))
1126 autostart = 0;
1127 *fatal_error = 0;
1128 return dinfo;
1131 static int drive_init_func(QemuOpts *opts, void *opaque)
1133 QEMUMachine *machine = opaque;
1134 int fatal_error = 0;
1136 if (drive_init(opts, machine, &fatal_error) == NULL) {
1137 if (fatal_error)
1138 return 1;
1140 return 0;
1143 static int drive_enable_snapshot(QemuOpts *opts, void *opaque)
1145 if (NULL == qemu_opt_get(opts, "snapshot")) {
1146 qemu_opt_set(opts, "snapshot", "on");
1148 return 0;
1151 void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque)
1153 boot_set_handler = func;
1154 boot_set_opaque = opaque;
1157 int qemu_boot_set(const char *boot_devices)
1159 if (!boot_set_handler) {
1160 return -EINVAL;
1162 return boot_set_handler(boot_set_opaque, boot_devices);
1165 static void validate_bootdevices(char *devices)
1167 /* We just do some generic consistency checks */
1168 const char *p;
1169 int bitmap = 0;
1171 for (p = devices; *p != '\0'; p++) {
1172 /* Allowed boot devices are:
1173 * a-b: floppy disk drives
1174 * c-f: IDE disk drives
1175 * g-m: machine implementation dependant drives
1176 * n-p: network devices
1177 * It's up to each machine implementation to check if the given boot
1178 * devices match the actual hardware implementation and firmware
1179 * features.
1181 if (*p < 'a' || *p > 'p') {
1182 fprintf(stderr, "Invalid boot device '%c'\n", *p);
1183 exit(1);
1185 if (bitmap & (1 << (*p - 'a'))) {
1186 fprintf(stderr, "Boot device '%c' was given twice\n", *p);
1187 exit(1);
1189 bitmap |= 1 << (*p - 'a');
1193 static void restore_boot_devices(void *opaque)
1195 char *standard_boot_devices = opaque;
1197 qemu_boot_set(standard_boot_devices);
1199 qemu_unregister_reset(restore_boot_devices, standard_boot_devices);
1200 qemu_free(standard_boot_devices);
1203 static void numa_add(const char *optarg)
1205 char option[128];
1206 char *endptr;
1207 unsigned long long value, endvalue;
1208 int nodenr;
1210 optarg = get_opt_name(option, 128, optarg, ',') + 1;
1211 if (!strcmp(option, "node")) {
1212 if (get_param_value(option, 128, "nodeid", optarg) == 0) {
1213 nodenr = nb_numa_nodes;
1214 } else {
1215 nodenr = strtoull(option, NULL, 10);
1218 if (get_param_value(option, 128, "mem", optarg) == 0) {
1219 node_mem[nodenr] = 0;
1220 } else {
1221 value = strtoull(option, &endptr, 0);
1222 switch (*endptr) {
1223 case 0: case 'M': case 'm':
1224 value <<= 20;
1225 break;
1226 case 'G': case 'g':
1227 value <<= 30;
1228 break;
1230 node_mem[nodenr] = value;
1232 if (get_param_value(option, 128, "cpus", optarg) == 0) {
1233 node_cpumask[nodenr] = 0;
1234 } else {
1235 value = strtoull(option, &endptr, 10);
1236 if (value >= 64) {
1237 value = 63;
1238 fprintf(stderr, "only 64 CPUs in NUMA mode supported.\n");
1239 } else {
1240 if (*endptr == '-') {
1241 endvalue = strtoull(endptr+1, &endptr, 10);
1242 if (endvalue >= 63) {
1243 endvalue = 62;
1244 fprintf(stderr,
1245 "only 63 CPUs in NUMA mode supported.\n");
1247 value = (2ULL << endvalue) - (1ULL << value);
1248 } else {
1249 value = 1ULL << value;
1252 node_cpumask[nodenr] = value;
1254 nb_numa_nodes++;
1256 return;
1259 static void smp_parse(const char *optarg)
1261 int smp, sockets = 0, threads = 0, cores = 0;
1262 char *endptr;
1263 char option[128];
1265 smp = strtoul(optarg, &endptr, 10);
1266 if (endptr != optarg) {
1267 if (*endptr == ',') {
1268 endptr++;
1271 if (get_param_value(option, 128, "sockets", endptr) != 0)
1272 sockets = strtoull(option, NULL, 10);
1273 if (get_param_value(option, 128, "cores", endptr) != 0)
1274 cores = strtoull(option, NULL, 10);
1275 if (get_param_value(option, 128, "threads", endptr) != 0)
1276 threads = strtoull(option, NULL, 10);
1277 if (get_param_value(option, 128, "maxcpus", endptr) != 0)
1278 max_cpus = strtoull(option, NULL, 10);
1280 /* compute missing values, prefer sockets over cores over threads */
1281 if (smp == 0 || sockets == 0) {
1282 sockets = sockets > 0 ? sockets : 1;
1283 cores = cores > 0 ? cores : 1;
1284 threads = threads > 0 ? threads : 1;
1285 if (smp == 0) {
1286 smp = cores * threads * sockets;
1288 } else {
1289 if (cores == 0) {
1290 threads = threads > 0 ? threads : 1;
1291 cores = smp / (sockets * threads);
1292 } else {
1293 if (sockets) {
1294 threads = smp / (cores * sockets);
1298 smp_cpus = smp;
1299 smp_cores = cores > 0 ? cores : 1;
1300 smp_threads = threads > 0 ? threads : 1;
1301 if (max_cpus == 0)
1302 max_cpus = smp_cpus;
1305 /***********************************************************/
1306 /* USB devices */
1308 static int usb_device_add(const char *devname, int is_hotplug)
1310 const char *p;
1311 USBDevice *dev = NULL;
1313 if (!usb_enabled)
1314 return -1;
1316 /* drivers with .usbdevice_name entry in USBDeviceInfo */
1317 dev = usbdevice_create(devname);
1318 if (dev)
1319 goto done;
1321 /* the other ones */
1322 if (strstart(devname, "host:", &p)) {
1323 dev = usb_host_device_open(p);
1324 } else if (!strcmp(devname, "bt") || strstart(devname, "bt:", &p)) {
1325 dev = usb_bt_init(devname[2] ? hci_init(p) :
1326 bt_new_hci(qemu_find_bt_vlan(0)));
1327 } else {
1328 return -1;
1330 if (!dev)
1331 return -1;
1333 done:
1334 return 0;
1337 static int usb_device_del(const char *devname)
1339 int bus_num, addr;
1340 const char *p;
1342 if (strstart(devname, "host:", &p))
1343 return usb_host_device_close(p);
1345 if (!usb_enabled)
1346 return -1;
1348 p = strchr(devname, '.');
1349 if (!p)
1350 return -1;
1351 bus_num = strtoul(devname, NULL, 0);
1352 addr = strtoul(p + 1, NULL, 0);
1354 return usb_device_delete_addr(bus_num, addr);
1357 static int usb_parse(const char *cmdline)
1359 int r;
1360 r = usb_device_add(cmdline, 0);
1361 if (r < 0) {
1362 fprintf(stderr, "qemu: could not add USB device '%s'\n", cmdline);
1364 return r;
1367 void do_usb_add(Monitor *mon, const QDict *qdict)
1369 const char *devname = qdict_get_str(qdict, "devname");
1370 if (usb_device_add(devname, 1) < 0) {
1371 error_report("could not add USB device '%s'", devname);
1375 void do_usb_del(Monitor *mon, const QDict *qdict)
1377 const char *devname = qdict_get_str(qdict, "devname");
1378 if (usb_device_del(devname) < 0) {
1379 error_report("could not delete USB device '%s'", devname);
1383 /***********************************************************/
1384 /* PCMCIA/Cardbus */
1386 static struct pcmcia_socket_entry_s {
1387 PCMCIASocket *socket;
1388 struct pcmcia_socket_entry_s *next;
1389 } *pcmcia_sockets = 0;
1391 void pcmcia_socket_register(PCMCIASocket *socket)
1393 struct pcmcia_socket_entry_s *entry;
1395 entry = qemu_malloc(sizeof(struct pcmcia_socket_entry_s));
1396 entry->socket = socket;
1397 entry->next = pcmcia_sockets;
1398 pcmcia_sockets = entry;
1401 void pcmcia_socket_unregister(PCMCIASocket *socket)
1403 struct pcmcia_socket_entry_s *entry, **ptr;
1405 ptr = &pcmcia_sockets;
1406 for (entry = *ptr; entry; ptr = &entry->next, entry = *ptr)
1407 if (entry->socket == socket) {
1408 *ptr = entry->next;
1409 qemu_free(entry);
1413 void pcmcia_info(Monitor *mon)
1415 struct pcmcia_socket_entry_s *iter;
1417 if (!pcmcia_sockets)
1418 monitor_printf(mon, "No PCMCIA sockets\n");
1420 for (iter = pcmcia_sockets; iter; iter = iter->next)
1421 monitor_printf(mon, "%s: %s\n", iter->socket->slot_string,
1422 iter->socket->attached ? iter->socket->card_string :
1423 "Empty");
1426 /***********************************************************/
1427 /* I/O handling */
1429 typedef struct IOHandlerRecord {
1430 int fd;
1431 IOCanReadHandler *fd_read_poll;
1432 IOHandler *fd_read;
1433 IOHandler *fd_write;
1434 int deleted;
1435 void *opaque;
1436 /* temporary data */
1437 struct pollfd *ufd;
1438 QLIST_ENTRY(IOHandlerRecord) next;
1439 } IOHandlerRecord;
1441 static QLIST_HEAD(, IOHandlerRecord) io_handlers =
1442 QLIST_HEAD_INITIALIZER(io_handlers);
1445 /* XXX: fd_read_poll should be suppressed, but an API change is
1446 necessary in the character devices to suppress fd_can_read(). */
1447 int qemu_set_fd_handler2(int fd,
1448 IOCanReadHandler *fd_read_poll,
1449 IOHandler *fd_read,
1450 IOHandler *fd_write,
1451 void *opaque)
1453 IOHandlerRecord *ioh;
1455 if (!fd_read && !fd_write) {
1456 QLIST_FOREACH(ioh, &io_handlers, next) {
1457 if (ioh->fd == fd) {
1458 ioh->deleted = 1;
1459 break;
1462 } else {
1463 QLIST_FOREACH(ioh, &io_handlers, next) {
1464 if (ioh->fd == fd)
1465 goto found;
1467 ioh = qemu_mallocz(sizeof(IOHandlerRecord));
1468 QLIST_INSERT_HEAD(&io_handlers, ioh, next);
1469 found:
1470 ioh->fd = fd;
1471 ioh->fd_read_poll = fd_read_poll;
1472 ioh->fd_read = fd_read;
1473 ioh->fd_write = fd_write;
1474 ioh->opaque = opaque;
1475 ioh->deleted = 0;
1477 return 0;
1480 int qemu_set_fd_handler(int fd,
1481 IOHandler *fd_read,
1482 IOHandler *fd_write,
1483 void *opaque)
1485 return qemu_set_fd_handler2(fd, NULL, fd_read, fd_write, opaque);
1488 #ifdef _WIN32
1489 /***********************************************************/
1490 /* Polling handling */
1492 typedef struct PollingEntry {
1493 PollingFunc *func;
1494 void *opaque;
1495 struct PollingEntry *next;
1496 } PollingEntry;
1498 static PollingEntry *first_polling_entry;
1500 int qemu_add_polling_cb(PollingFunc *func, void *opaque)
1502 PollingEntry **ppe, *pe;
1503 pe = qemu_mallocz(sizeof(PollingEntry));
1504 pe->func = func;
1505 pe->opaque = opaque;
1506 for(ppe = &first_polling_entry; *ppe != NULL; ppe = &(*ppe)->next);
1507 *ppe = pe;
1508 return 0;
1511 void qemu_del_polling_cb(PollingFunc *func, void *opaque)
1513 PollingEntry **ppe, *pe;
1514 for(ppe = &first_polling_entry; *ppe != NULL; ppe = &(*ppe)->next) {
1515 pe = *ppe;
1516 if (pe->func == func && pe->opaque == opaque) {
1517 *ppe = pe->next;
1518 qemu_free(pe);
1519 break;
1524 /***********************************************************/
1525 /* Wait objects support */
1526 typedef struct WaitObjects {
1527 int num;
1528 HANDLE events[MAXIMUM_WAIT_OBJECTS + 1];
1529 WaitObjectFunc *func[MAXIMUM_WAIT_OBJECTS + 1];
1530 void *opaque[MAXIMUM_WAIT_OBJECTS + 1];
1531 } WaitObjects;
1533 static WaitObjects wait_objects = {0};
1535 int qemu_add_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
1537 WaitObjects *w = &wait_objects;
1539 if (w->num >= MAXIMUM_WAIT_OBJECTS)
1540 return -1;
1541 w->events[w->num] = handle;
1542 w->func[w->num] = func;
1543 w->opaque[w->num] = opaque;
1544 w->num++;
1545 return 0;
1548 void qemu_del_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
1550 int i, found;
1551 WaitObjects *w = &wait_objects;
1553 found = 0;
1554 for (i = 0; i < w->num; i++) {
1555 if (w->events[i] == handle)
1556 found = 1;
1557 if (found) {
1558 w->events[i] = w->events[i + 1];
1559 w->func[i] = w->func[i + 1];
1560 w->opaque[i] = w->opaque[i + 1];
1563 if (found)
1564 w->num--;
1566 #endif
1568 /***********************************************************/
1569 /* machine registration */
1571 static QEMUMachine *first_machine = NULL;
1572 QEMUMachine *current_machine = NULL;
1574 int qemu_register_machine(QEMUMachine *m)
1576 QEMUMachine **pm;
1577 pm = &first_machine;
1578 while (*pm != NULL)
1579 pm = &(*pm)->next;
1580 m->next = NULL;
1581 *pm = m;
1582 return 0;
1585 static QEMUMachine *find_machine(const char *name)
1587 QEMUMachine *m;
1589 for(m = first_machine; m != NULL; m = m->next) {
1590 if (!strcmp(m->name, name))
1591 return m;
1592 if (m->alias && !strcmp(m->alias, name))
1593 return m;
1595 return NULL;
1598 static QEMUMachine *find_default_machine(void)
1600 QEMUMachine *m;
1602 for(m = first_machine; m != NULL; m = m->next) {
1603 if (m->is_default) {
1604 return m;
1607 return NULL;
1610 /***********************************************************/
1611 /* main execution loop */
1613 static void gui_update(void *opaque)
1615 uint64_t interval = GUI_REFRESH_INTERVAL;
1616 DisplayState *ds = opaque;
1617 DisplayChangeListener *dcl = ds->listeners;
1619 qemu_flush_coalesced_mmio_buffer();
1620 dpy_refresh(ds);
1622 while (dcl != NULL) {
1623 if (dcl->gui_timer_interval &&
1624 dcl->gui_timer_interval < interval)
1625 interval = dcl->gui_timer_interval;
1626 dcl = dcl->next;
1628 qemu_mod_timer(ds->gui_timer, interval + qemu_get_clock(rt_clock));
1631 static void nographic_update(void *opaque)
1633 uint64_t interval = GUI_REFRESH_INTERVAL;
1635 qemu_flush_coalesced_mmio_buffer();
1636 qemu_mod_timer(nographic_timer, interval + qemu_get_clock(rt_clock));
1639 struct vm_change_state_entry {
1640 VMChangeStateHandler *cb;
1641 void *opaque;
1642 QLIST_ENTRY (vm_change_state_entry) entries;
1645 static QLIST_HEAD(vm_change_state_head, vm_change_state_entry) vm_change_state_head;
1647 VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
1648 void *opaque)
1650 VMChangeStateEntry *e;
1652 e = qemu_mallocz(sizeof (*e));
1654 e->cb = cb;
1655 e->opaque = opaque;
1656 QLIST_INSERT_HEAD(&vm_change_state_head, e, entries);
1657 return e;
1660 void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
1662 QLIST_REMOVE (e, entries);
1663 qemu_free (e);
1666 void vm_state_notify(int running, int reason)
1668 VMChangeStateEntry *e;
1670 for (e = vm_change_state_head.lh_first; e; e = e->entries.le_next) {
1671 e->cb(e->opaque, running, reason);
1675 void vm_start(void)
1677 if (!vm_running) {
1678 cpu_enable_ticks();
1679 vm_running = 1;
1680 vm_state_notify(1, 0);
1681 resume_all_vcpus();
1685 /* reset/shutdown handler */
1687 typedef struct QEMUResetEntry {
1688 QTAILQ_ENTRY(QEMUResetEntry) entry;
1689 QEMUResetHandler *func;
1690 void *opaque;
1691 } QEMUResetEntry;
1693 static QTAILQ_HEAD(reset_handlers, QEMUResetEntry) reset_handlers =
1694 QTAILQ_HEAD_INITIALIZER(reset_handlers);
1695 static int reset_requested;
1696 static int shutdown_requested;
1697 static int powerdown_requested;
1698 int debug_requested;
1699 int vmstop_requested;
1700 static int exit_requested;
1702 int qemu_shutdown_requested(void)
1704 int r = shutdown_requested;
1705 shutdown_requested = 0;
1706 return r;
1709 int qemu_reset_requested(void)
1711 int r = reset_requested;
1712 reset_requested = 0;
1713 return r;
1716 int qemu_powerdown_requested(void)
1718 int r = powerdown_requested;
1719 powerdown_requested = 0;
1720 return r;
1723 int qemu_exit_requested(void)
1725 /* just return it, we'll exit() anyway */
1726 return exit_requested;
1729 static int qemu_debug_requested(void)
1731 int r = debug_requested;
1732 debug_requested = 0;
1733 return r;
1736 static int qemu_vmstop_requested(void)
1738 int r = vmstop_requested;
1739 vmstop_requested = 0;
1740 return r;
1743 void qemu_register_reset(QEMUResetHandler *func, void *opaque)
1745 QEMUResetEntry *re = qemu_mallocz(sizeof(QEMUResetEntry));
1747 re->func = func;
1748 re->opaque = opaque;
1749 QTAILQ_INSERT_TAIL(&reset_handlers, re, entry);
1752 void qemu_unregister_reset(QEMUResetHandler *func, void *opaque)
1754 QEMUResetEntry *re;
1756 QTAILQ_FOREACH(re, &reset_handlers, entry) {
1757 if (re->func == func && re->opaque == opaque) {
1758 QTAILQ_REMOVE(&reset_handlers, re, entry);
1759 qemu_free(re);
1760 return;
1765 void qemu_system_reset(void)
1767 QEMUResetEntry *re, *nre;
1769 /* reset all devices */
1770 QTAILQ_FOREACH_SAFE(re, &reset_handlers, entry, nre) {
1771 re->func(re->opaque);
1773 monitor_protocol_event(QEVENT_RESET, NULL);
1774 cpu_synchronize_all_post_reset();
1777 void qemu_system_reset_request(void)
1779 if (no_reboot) {
1780 shutdown_requested = 1;
1781 } else {
1782 reset_requested = 1;
1784 qemu_notify_event();
1787 void qemu_system_shutdown_request(void)
1789 shutdown_requested = 1;
1790 qemu_notify_event();
1793 void qemu_system_powerdown_request(void)
1795 powerdown_requested = 1;
1796 qemu_notify_event();
1799 void qemu_system_exit_request(void)
1801 exit_requested = 1;
1802 qemu_notify_event();
1805 #ifdef _WIN32
1806 static void host_main_loop_wait(int *timeout)
1808 int ret, ret2, i;
1809 PollingEntry *pe;
1812 /* XXX: need to suppress polling by better using win32 events */
1813 ret = 0;
1814 for(pe = first_polling_entry; pe != NULL; pe = pe->next) {
1815 ret |= pe->func(pe->opaque);
1817 if (ret == 0) {
1818 int err;
1819 WaitObjects *w = &wait_objects;
1821 ret = WaitForMultipleObjects(w->num, w->events, FALSE, *timeout);
1822 if (WAIT_OBJECT_0 + 0 <= ret && ret <= WAIT_OBJECT_0 + w->num - 1) {
1823 if (w->func[ret - WAIT_OBJECT_0])
1824 w->func[ret - WAIT_OBJECT_0](w->opaque[ret - WAIT_OBJECT_0]);
1826 /* Check for additional signaled events */
1827 for(i = (ret - WAIT_OBJECT_0 + 1); i < w->num; i++) {
1829 /* Check if event is signaled */
1830 ret2 = WaitForSingleObject(w->events[i], 0);
1831 if(ret2 == WAIT_OBJECT_0) {
1832 if (w->func[i])
1833 w->func[i](w->opaque[i]);
1834 } else if (ret2 == WAIT_TIMEOUT) {
1835 } else {
1836 err = GetLastError();
1837 fprintf(stderr, "WaitForSingleObject error %d %d\n", i, err);
1840 } else if (ret == WAIT_TIMEOUT) {
1841 } else {
1842 err = GetLastError();
1843 fprintf(stderr, "WaitForMultipleObjects error %d %d\n", ret, err);
1847 *timeout = 0;
1849 #else
1850 static void host_main_loop_wait(int *timeout)
1853 #endif
1855 void main_loop_wait(int nonblocking)
1857 IOHandlerRecord *ioh;
1858 fd_set rfds, wfds, xfds;
1859 int ret, nfds;
1860 struct timeval tv;
1861 int timeout;
1863 if (nonblocking)
1864 timeout = 0;
1865 else {
1866 timeout = qemu_calculate_timeout();
1867 qemu_bh_update_timeout(&timeout);
1870 host_main_loop_wait(&timeout);
1872 /* poll any events */
1873 /* XXX: separate device handlers from system ones */
1874 nfds = -1;
1875 FD_ZERO(&rfds);
1876 FD_ZERO(&wfds);
1877 FD_ZERO(&xfds);
1878 QLIST_FOREACH(ioh, &io_handlers, next) {
1879 if (ioh->deleted)
1880 continue;
1881 if (ioh->fd_read &&
1882 (!ioh->fd_read_poll ||
1883 ioh->fd_read_poll(ioh->opaque) != 0)) {
1884 FD_SET(ioh->fd, &rfds);
1885 if (ioh->fd > nfds)
1886 nfds = ioh->fd;
1888 if (ioh->fd_write) {
1889 FD_SET(ioh->fd, &wfds);
1890 if (ioh->fd > nfds)
1891 nfds = ioh->fd;
1895 tv.tv_sec = timeout / 1000;
1896 tv.tv_usec = (timeout % 1000) * 1000;
1898 slirp_select_fill(&nfds, &rfds, &wfds, &xfds);
1900 qemu_mutex_unlock_iothread();
1901 ret = select(nfds + 1, &rfds, &wfds, &xfds, &tv);
1902 qemu_mutex_lock_iothread();
1903 if (ret > 0) {
1904 IOHandlerRecord *pioh;
1906 QLIST_FOREACH_SAFE(ioh, &io_handlers, next, pioh) {
1907 if (ioh->deleted) {
1908 QLIST_REMOVE(ioh, next);
1909 qemu_free(ioh);
1910 continue;
1912 if (ioh->fd_read && FD_ISSET(ioh->fd, &rfds)) {
1913 ioh->fd_read(ioh->opaque);
1915 if (ioh->fd_write && FD_ISSET(ioh->fd, &wfds)) {
1916 ioh->fd_write(ioh->opaque);
1921 slirp_select_poll(&rfds, &wfds, &xfds, (ret < 0));
1923 qemu_run_all_timers();
1925 /* Check bottom-halves last in case any of the earlier events triggered
1926 them. */
1927 qemu_bh_poll();
1931 static int vm_can_run(void)
1933 if (powerdown_requested)
1934 return 0;
1935 if (reset_requested)
1936 return 0;
1937 if (shutdown_requested)
1938 return 0;
1939 if (debug_requested)
1940 return 0;
1941 if (exit_requested)
1942 return 0;
1943 return 1;
1946 qemu_irq qemu_system_powerdown;
1948 static void main_loop(void)
1950 int r;
1952 qemu_main_loop_start();
1954 for (;;) {
1955 do {
1956 bool nonblocking = false;
1957 #ifdef CONFIG_PROFILER
1958 int64_t ti;
1959 #endif
1960 #ifndef CONFIG_IOTHREAD
1961 nonblocking = tcg_cpu_exec();
1962 #endif
1963 #ifdef CONFIG_PROFILER
1964 ti = profile_getclock();
1965 #endif
1966 main_loop_wait(nonblocking);
1967 #ifdef CONFIG_PROFILER
1968 dev_time += profile_getclock() - ti;
1969 #endif
1970 } while (vm_can_run());
1972 if ((r = qemu_debug_requested())) {
1973 vm_stop(r);
1975 if (qemu_shutdown_requested()) {
1976 monitor_protocol_event(QEVENT_SHUTDOWN, NULL);
1977 if (no_shutdown) {
1978 vm_stop(0);
1979 no_shutdown = 0;
1980 } else
1981 break;
1983 if (qemu_reset_requested()) {
1984 pause_all_vcpus();
1985 qemu_system_reset();
1986 resume_all_vcpus();
1988 if (qemu_powerdown_requested()) {
1989 monitor_protocol_event(QEVENT_POWERDOWN, NULL);
1990 qemu_irq_raise(qemu_system_powerdown);
1992 if ((r = qemu_vmstop_requested())) {
1993 vm_stop(r);
1995 if (qemu_exit_requested()) {
1996 exit(0);
1999 pause_all_vcpus();
2002 static void version(void)
2004 printf("QEMU PC emulator version " QEMU_VERSION QEMU_PKGVERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n");
2007 static void help(int exitcode)
2009 const char *options_help =
2010 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
2011 opt_help
2012 #define DEFHEADING(text) stringify(text) "\n"
2013 #include "qemu-options.h"
2014 #undef DEF
2015 #undef DEFHEADING
2016 #undef GEN_DOCS
2018 version();
2019 printf("usage: %s [options] [disk_image]\n"
2020 "\n"
2021 "'disk_image' is a raw hard image image for IDE hard disk 0\n"
2022 "\n"
2023 "%s\n"
2024 "During emulation, the following keys are useful:\n"
2025 "ctrl-alt-f toggle full screen\n"
2026 "ctrl-alt-n switch to virtual console 'n'\n"
2027 "ctrl-alt toggle mouse and keyboard grab\n"
2028 "\n"
2029 "When using -nographic, press 'ctrl-a h' to get some help.\n",
2030 "qemu",
2031 options_help);
2032 exit(exitcode);
2035 #define HAS_ARG 0x0001
2037 enum {
2038 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
2039 opt_enum,
2040 #define DEFHEADING(text)
2041 #include "qemu-options.h"
2042 #undef DEF
2043 #undef DEFHEADING
2044 #undef GEN_DOCS
2047 typedef struct QEMUOption {
2048 const char *name;
2049 int flags;
2050 int index;
2051 uint32_t arch_mask;
2052 } QEMUOption;
2054 static const QEMUOption qemu_options[] = {
2055 { "h", 0, QEMU_OPTION_h, QEMU_ARCH_ALL },
2056 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
2057 { option, opt_arg, opt_enum, arch_mask },
2058 #define DEFHEADING(text)
2059 #include "qemu-options.h"
2060 #undef DEF
2061 #undef DEFHEADING
2062 #undef GEN_DOCS
2063 { NULL },
2065 static void select_vgahw (const char *p)
2067 const char *opts;
2069 default_vga = 0;
2070 vga_interface_type = VGA_NONE;
2071 if (strstart(p, "std", &opts)) {
2072 vga_interface_type = VGA_STD;
2073 } else if (strstart(p, "cirrus", &opts)) {
2074 vga_interface_type = VGA_CIRRUS;
2075 } else if (strstart(p, "vmware", &opts)) {
2076 vga_interface_type = VGA_VMWARE;
2077 } else if (strstart(p, "xenfb", &opts)) {
2078 vga_interface_type = VGA_XENFB;
2079 } else if (!strstart(p, "none", &opts)) {
2080 invalid_vga:
2081 fprintf(stderr, "Unknown vga type: %s\n", p);
2082 exit(1);
2084 while (*opts) {
2085 const char *nextopt;
2087 if (strstart(opts, ",retrace=", &nextopt)) {
2088 opts = nextopt;
2089 if (strstart(opts, "dumb", &nextopt))
2090 vga_retrace_method = VGA_RETRACE_DUMB;
2091 else if (strstart(opts, "precise", &nextopt))
2092 vga_retrace_method = VGA_RETRACE_PRECISE;
2093 else goto invalid_vga;
2094 } else goto invalid_vga;
2095 opts = nextopt;
2099 static int balloon_parse(const char *arg)
2101 QemuOpts *opts;
2103 if (strcmp(arg, "none") == 0) {
2104 return 0;
2107 if (!strncmp(arg, "virtio", 6)) {
2108 if (arg[6] == ',') {
2109 /* have params -> parse them */
2110 opts = qemu_opts_parse(&qemu_device_opts, arg+7, 0);
2111 if (!opts)
2112 return -1;
2113 } else {
2114 /* create empty opts */
2115 opts = qemu_opts_create(&qemu_device_opts, NULL, 0);
2117 qemu_opt_set(opts, "driver", "virtio-balloon-pci");
2118 return 0;
2121 return -1;
2124 #ifdef _WIN32
2125 static BOOL WINAPI qemu_ctrl_handler(DWORD type)
2127 exit(STATUS_CONTROL_C_EXIT);
2128 return TRUE;
2130 #endif
2132 #ifndef _WIN32
2134 static void termsig_handler(int signal)
2136 qemu_system_shutdown_request();
2139 static void sigchld_handler(int signal)
2141 waitpid(-1, NULL, WNOHANG);
2144 static void sighandler_setup(void)
2146 struct sigaction act;
2148 memset(&act, 0, sizeof(act));
2149 act.sa_handler = termsig_handler;
2150 sigaction(SIGINT, &act, NULL);
2151 sigaction(SIGHUP, &act, NULL);
2152 sigaction(SIGTERM, &act, NULL);
2154 act.sa_handler = sigchld_handler;
2155 act.sa_flags = SA_NOCLDSTOP;
2156 sigaction(SIGCHLD, &act, NULL);
2159 #endif
2161 #ifdef _WIN32
2162 /* Look for support files in the same directory as the executable. */
2163 static char *find_datadir(const char *argv0)
2165 char *p;
2166 char buf[MAX_PATH];
2167 DWORD len;
2169 len = GetModuleFileName(NULL, buf, sizeof(buf) - 1);
2170 if (len == 0) {
2171 return NULL;
2174 buf[len] = 0;
2175 p = buf + len - 1;
2176 while (p != buf && *p != '\\')
2177 p--;
2178 *p = 0;
2179 if (access(buf, R_OK) == 0) {
2180 return qemu_strdup(buf);
2182 return NULL;
2184 #else /* !_WIN32 */
2186 /* Find a likely location for support files using the location of the binary.
2187 For installed binaries this will be "$bindir/../share/qemu". When
2188 running from the build tree this will be "$bindir/../pc-bios". */
2189 #define SHARE_SUFFIX "/share/qemu"
2190 #define BUILD_SUFFIX "/pc-bios"
2191 static char *find_datadir(const char *argv0)
2193 char *dir;
2194 char *p = NULL;
2195 char *res;
2196 char buf[PATH_MAX];
2197 size_t max_len;
2199 #if defined(__linux__)
2201 int len;
2202 len = readlink("/proc/self/exe", buf, sizeof(buf) - 1);
2203 if (len > 0) {
2204 buf[len] = 0;
2205 p = buf;
2208 #elif defined(__FreeBSD__)
2210 static int mib[4] = {CTL_KERN, KERN_PROC, KERN_PROC_PATHNAME, -1};
2211 size_t len = sizeof(buf) - 1;
2213 *buf = '\0';
2214 if (!sysctl(mib, sizeof(mib)/sizeof(*mib), buf, &len, NULL, 0) &&
2215 *buf) {
2216 buf[sizeof(buf) - 1] = '\0';
2217 p = buf;
2220 #endif
2221 /* If we don't have any way of figuring out the actual executable
2222 location then try argv[0]. */
2223 if (!p) {
2224 p = realpath(argv0, buf);
2225 if (!p) {
2226 return NULL;
2229 dir = dirname(p);
2230 dir = dirname(dir);
2232 max_len = strlen(dir) +
2233 MAX(strlen(SHARE_SUFFIX), strlen(BUILD_SUFFIX)) + 1;
2234 res = qemu_mallocz(max_len);
2235 snprintf(res, max_len, "%s%s", dir, SHARE_SUFFIX);
2236 if (access(res, R_OK)) {
2237 snprintf(res, max_len, "%s%s", dir, BUILD_SUFFIX);
2238 if (access(res, R_OK)) {
2239 qemu_free(res);
2240 res = NULL;
2244 return res;
2246 #undef SHARE_SUFFIX
2247 #undef BUILD_SUFFIX
2248 #endif
2250 char *qemu_find_file(int type, const char *name)
2252 int len;
2253 const char *subdir;
2254 char *buf;
2256 /* If name contains path separators then try it as a straight path. */
2257 if ((strchr(name, '/') || strchr(name, '\\'))
2258 && access(name, R_OK) == 0) {
2259 return qemu_strdup(name);
2261 switch (type) {
2262 case QEMU_FILE_TYPE_BIOS:
2263 subdir = "";
2264 break;
2265 case QEMU_FILE_TYPE_KEYMAP:
2266 subdir = "keymaps/";
2267 break;
2268 default:
2269 abort();
2271 len = strlen(data_dir) + strlen(name) + strlen(subdir) + 2;
2272 buf = qemu_mallocz(len);
2273 snprintf(buf, len, "%s/%s%s", data_dir, subdir, name);
2274 if (access(buf, R_OK)) {
2275 qemu_free(buf);
2276 return NULL;
2278 return buf;
2281 static int device_help_func(QemuOpts *opts, void *opaque)
2283 return qdev_device_help(opts);
2286 static int device_init_func(QemuOpts *opts, void *opaque)
2288 DeviceState *dev;
2290 dev = qdev_device_add(opts);
2291 if (!dev)
2292 return -1;
2293 return 0;
2296 static int chardev_init_func(QemuOpts *opts, void *opaque)
2298 CharDriverState *chr;
2300 chr = qemu_chr_open_opts(opts, NULL);
2301 if (!chr)
2302 return -1;
2303 return 0;
2306 static int mon_init_func(QemuOpts *opts, void *opaque)
2308 CharDriverState *chr;
2309 const char *chardev;
2310 const char *mode;
2311 int flags;
2313 mode = qemu_opt_get(opts, "mode");
2314 if (mode == NULL) {
2315 mode = "readline";
2317 if (strcmp(mode, "readline") == 0) {
2318 flags = MONITOR_USE_READLINE;
2319 } else if (strcmp(mode, "control") == 0) {
2320 flags = MONITOR_USE_CONTROL;
2321 } else {
2322 fprintf(stderr, "unknown monitor mode \"%s\"\n", mode);
2323 exit(1);
2326 if (qemu_opt_get_bool(opts, "default", 0))
2327 flags |= MONITOR_IS_DEFAULT;
2329 chardev = qemu_opt_get(opts, "chardev");
2330 chr = qemu_chr_find(chardev);
2331 if (chr == NULL) {
2332 fprintf(stderr, "chardev \"%s\" not found\n", chardev);
2333 exit(1);
2336 monitor_init(chr, flags);
2337 return 0;
2340 static void monitor_parse(const char *optarg, const char *mode)
2342 static int monitor_device_index = 0;
2343 QemuOpts *opts;
2344 const char *p;
2345 char label[32];
2346 int def = 0;
2348 if (strstart(optarg, "chardev:", &p)) {
2349 snprintf(label, sizeof(label), "%s", p);
2350 } else {
2351 if (monitor_device_index) {
2352 snprintf(label, sizeof(label), "monitor%d",
2353 monitor_device_index);
2354 } else {
2355 snprintf(label, sizeof(label), "monitor");
2356 def = 1;
2358 opts = qemu_chr_parse_compat(label, optarg);
2359 if (!opts) {
2360 fprintf(stderr, "parse error: %s\n", optarg);
2361 exit(1);
2365 opts = qemu_opts_create(&qemu_mon_opts, label, 1);
2366 if (!opts) {
2367 fprintf(stderr, "duplicate chardev: %s\n", label);
2368 exit(1);
2370 qemu_opt_set(opts, "mode", mode);
2371 qemu_opt_set(opts, "chardev", label);
2372 if (def)
2373 qemu_opt_set(opts, "default", "on");
2374 monitor_device_index++;
2377 struct device_config {
2378 enum {
2379 DEV_USB, /* -usbdevice */
2380 DEV_BT, /* -bt */
2381 DEV_SERIAL, /* -serial */
2382 DEV_PARALLEL, /* -parallel */
2383 DEV_VIRTCON, /* -virtioconsole */
2384 DEV_DEBUGCON, /* -debugcon */
2385 } type;
2386 const char *cmdline;
2387 QTAILQ_ENTRY(device_config) next;
2389 QTAILQ_HEAD(, device_config) device_configs = QTAILQ_HEAD_INITIALIZER(device_configs);
2391 static void add_device_config(int type, const char *cmdline)
2393 struct device_config *conf;
2395 conf = qemu_mallocz(sizeof(*conf));
2396 conf->type = type;
2397 conf->cmdline = cmdline;
2398 QTAILQ_INSERT_TAIL(&device_configs, conf, next);
2401 static int foreach_device_config(int type, int (*func)(const char *cmdline))
2403 struct device_config *conf;
2404 int rc;
2406 QTAILQ_FOREACH(conf, &device_configs, next) {
2407 if (conf->type != type)
2408 continue;
2409 rc = func(conf->cmdline);
2410 if (0 != rc)
2411 return rc;
2413 return 0;
2416 static int serial_parse(const char *devname)
2418 static int index = 0;
2419 char label[32];
2421 if (strcmp(devname, "none") == 0)
2422 return 0;
2423 if (index == MAX_SERIAL_PORTS) {
2424 fprintf(stderr, "qemu: too many serial ports\n");
2425 exit(1);
2427 snprintf(label, sizeof(label), "serial%d", index);
2428 serial_hds[index] = qemu_chr_open(label, devname, NULL);
2429 if (!serial_hds[index]) {
2430 fprintf(stderr, "qemu: could not open serial device '%s': %s\n",
2431 devname, strerror(errno));
2432 return -1;
2434 index++;
2435 return 0;
2438 static int parallel_parse(const char *devname)
2440 static int index = 0;
2441 char label[32];
2443 if (strcmp(devname, "none") == 0)
2444 return 0;
2445 if (index == MAX_PARALLEL_PORTS) {
2446 fprintf(stderr, "qemu: too many parallel ports\n");
2447 exit(1);
2449 snprintf(label, sizeof(label), "parallel%d", index);
2450 parallel_hds[index] = qemu_chr_open(label, devname, NULL);
2451 if (!parallel_hds[index]) {
2452 fprintf(stderr, "qemu: could not open parallel device '%s': %s\n",
2453 devname, strerror(errno));
2454 return -1;
2456 index++;
2457 return 0;
2460 static int virtcon_parse(const char *devname)
2462 static int index = 0;
2463 char label[32];
2464 QemuOpts *bus_opts, *dev_opts;
2466 if (strcmp(devname, "none") == 0)
2467 return 0;
2468 if (index == MAX_VIRTIO_CONSOLES) {
2469 fprintf(stderr, "qemu: too many virtio consoles\n");
2470 exit(1);
2473 bus_opts = qemu_opts_create(&qemu_device_opts, NULL, 0);
2474 qemu_opt_set(bus_opts, "driver", "virtio-serial");
2476 dev_opts = qemu_opts_create(&qemu_device_opts, NULL, 0);
2477 qemu_opt_set(dev_opts, "driver", "virtconsole");
2479 snprintf(label, sizeof(label), "virtcon%d", index);
2480 virtcon_hds[index] = qemu_chr_open(label, devname, NULL);
2481 if (!virtcon_hds[index]) {
2482 fprintf(stderr, "qemu: could not open virtio console '%s': %s\n",
2483 devname, strerror(errno));
2484 return -1;
2486 qemu_opt_set(dev_opts, "chardev", label);
2488 index++;
2489 return 0;
2492 static int debugcon_parse(const char *devname)
2494 QemuOpts *opts;
2496 if (!qemu_chr_open("debugcon", devname, NULL)) {
2497 exit(1);
2499 opts = qemu_opts_create(&qemu_device_opts, "debugcon", 1);
2500 if (!opts) {
2501 fprintf(stderr, "qemu: already have a debugcon device\n");
2502 exit(1);
2504 qemu_opt_set(opts, "driver", "isa-debugcon");
2505 qemu_opt_set(opts, "chardev", "debugcon");
2506 return 0;
2509 static const QEMUOption *lookup_opt(int argc, char **argv,
2510 const char **poptarg, int *poptind)
2512 const QEMUOption *popt;
2513 int optind = *poptind;
2514 char *r = argv[optind];
2515 const char *optarg;
2517 loc_set_cmdline(argv, optind, 1);
2518 optind++;
2519 /* Treat --foo the same as -foo. */
2520 if (r[1] == '-')
2521 r++;
2522 popt = qemu_options;
2523 for(;;) {
2524 if (!popt->name) {
2525 error_report("invalid option");
2526 exit(1);
2528 if (!strcmp(popt->name, r + 1))
2529 break;
2530 popt++;
2532 if (popt->flags & HAS_ARG) {
2533 if (optind >= argc) {
2534 error_report("requires an argument");
2535 exit(1);
2537 optarg = argv[optind++];
2538 loc_set_cmdline(argv, optind - 2, 2);
2539 } else {
2540 optarg = NULL;
2543 *poptarg = optarg;
2544 *poptind = optind;
2546 return popt;
2549 int main(int argc, char **argv, char **envp)
2551 const char *gdbstub_dev = NULL;
2552 int i;
2553 int snapshot, linux_boot;
2554 const char *icount_option = NULL;
2555 const char *initrd_filename;
2556 const char *kernel_filename, *kernel_cmdline;
2557 char boot_devices[33] = "cad"; /* default to HD->floppy->CD-ROM */
2558 DisplayState *ds;
2559 DisplayChangeListener *dcl;
2560 int cyls, heads, secs, translation;
2561 QemuOpts *hda_opts = NULL, *opts;
2562 int optind;
2563 const char *optarg;
2564 const char *loadvm = NULL;
2565 QEMUMachine *machine;
2566 const char *cpu_model;
2567 #ifndef _WIN32
2568 int fds[2];
2569 #endif
2570 int tb_size;
2571 const char *pid_file = NULL;
2572 const char *incoming = NULL;
2573 #ifndef _WIN32
2574 int fd = 0;
2575 struct passwd *pwd = NULL;
2576 const char *chroot_dir = NULL;
2577 const char *run_as = NULL;
2578 #endif
2579 int show_vnc_port = 0;
2580 int defconfig = 1;
2582 error_set_progname(argv[0]);
2584 init_clocks();
2586 qemu_cache_utils_init(envp);
2588 QLIST_INIT (&vm_change_state_head);
2589 #ifndef _WIN32
2591 struct sigaction act;
2592 sigfillset(&act.sa_mask);
2593 act.sa_flags = 0;
2594 act.sa_handler = SIG_IGN;
2595 sigaction(SIGPIPE, &act, NULL);
2597 #else
2598 SetConsoleCtrlHandler(qemu_ctrl_handler, TRUE);
2599 /* Note: cpu_interrupt() is currently not SMP safe, so we force
2600 QEMU to run on a single CPU */
2602 HANDLE h;
2603 DWORD mask, smask;
2604 int i;
2605 h = GetCurrentProcess();
2606 if (GetProcessAffinityMask(h, &mask, &smask)) {
2607 for(i = 0; i < 32; i++) {
2608 if (mask & (1 << i))
2609 break;
2611 if (i != 32) {
2612 mask = 1 << i;
2613 SetProcessAffinityMask(h, mask);
2617 #endif
2619 module_call_init(MODULE_INIT_MACHINE);
2620 machine = find_default_machine();
2621 cpu_model = NULL;
2622 initrd_filename = NULL;
2623 ram_size = 0;
2624 snapshot = 0;
2625 kernel_filename = NULL;
2626 kernel_cmdline = "";
2627 cyls = heads = secs = 0;
2628 translation = BIOS_ATA_TRANSLATION_AUTO;
2630 for (i = 0; i < MAX_NODES; i++) {
2631 node_mem[i] = 0;
2632 node_cpumask[i] = 0;
2635 nb_numa_nodes = 0;
2636 nb_nics = 0;
2638 tb_size = 0;
2639 autostart= 1;
2641 /* first pass of option parsing */
2642 optind = 1;
2643 while (optind < argc) {
2644 if (argv[optind][0] != '-') {
2645 /* disk image */
2646 optind++;
2647 continue;
2648 } else {
2649 const QEMUOption *popt;
2651 popt = lookup_opt(argc, argv, &optarg, &optind);
2652 switch (popt->index) {
2653 case QEMU_OPTION_nodefconfig:
2654 defconfig=0;
2655 break;
2660 if (defconfig) {
2661 int ret;
2663 ret = qemu_read_config_file(CONFIG_QEMU_CONFDIR "/qemu.conf");
2664 if (ret == -EINVAL) {
2665 exit(1);
2668 ret = qemu_read_config_file(arch_config_name);
2669 if (ret == -EINVAL) {
2670 exit(1);
2673 cpudef_init();
2675 /* second pass of option parsing */
2676 optind = 1;
2677 for(;;) {
2678 if (optind >= argc)
2679 break;
2680 if (argv[optind][0] != '-') {
2681 hda_opts = drive_add(argv[optind++], HD_ALIAS, 0);
2682 } else {
2683 const QEMUOption *popt;
2685 popt = lookup_opt(argc, argv, &optarg, &optind);
2686 if (!(popt->arch_mask & arch_type)) {
2687 printf("Option %s not supported for this target\n", popt->name);
2688 exit(1);
2690 switch(popt->index) {
2691 case QEMU_OPTION_M:
2692 machine = find_machine(optarg);
2693 if (!machine) {
2694 QEMUMachine *m;
2695 printf("Supported machines are:\n");
2696 for(m = first_machine; m != NULL; m = m->next) {
2697 if (m->alias)
2698 printf("%-10s %s (alias of %s)\n",
2699 m->alias, m->desc, m->name);
2700 printf("%-10s %s%s\n",
2701 m->name, m->desc,
2702 m->is_default ? " (default)" : "");
2704 exit(*optarg != '?');
2706 break;
2707 case QEMU_OPTION_cpu:
2708 /* hw initialization will check this */
2709 if (*optarg == '?') {
2710 /* XXX: implement xxx_cpu_list for targets that still miss it */
2711 #if defined(cpu_list_id)
2712 cpu_list_id(stdout, &fprintf, optarg);
2713 #elif defined(cpu_list)
2714 cpu_list(stdout, &fprintf); /* deprecated */
2715 #endif
2716 exit(0);
2717 } else {
2718 cpu_model = optarg;
2720 break;
2721 case QEMU_OPTION_initrd:
2722 initrd_filename = optarg;
2723 break;
2724 case QEMU_OPTION_hda:
2725 if (cyls == 0)
2726 hda_opts = drive_add(optarg, HD_ALIAS, 0);
2727 else
2728 hda_opts = drive_add(optarg, HD_ALIAS
2729 ",cyls=%d,heads=%d,secs=%d%s",
2730 0, cyls, heads, secs,
2731 translation == BIOS_ATA_TRANSLATION_LBA ?
2732 ",trans=lba" :
2733 translation == BIOS_ATA_TRANSLATION_NONE ?
2734 ",trans=none" : "");
2735 break;
2736 case QEMU_OPTION_hdb:
2737 case QEMU_OPTION_hdc:
2738 case QEMU_OPTION_hdd:
2739 drive_add(optarg, HD_ALIAS, popt->index - QEMU_OPTION_hda);
2740 break;
2741 case QEMU_OPTION_drive:
2742 drive_add(NULL, "%s", optarg);
2743 break;
2744 case QEMU_OPTION_set:
2745 if (qemu_set_option(optarg) != 0)
2746 exit(1);
2747 break;
2748 case QEMU_OPTION_global:
2749 if (qemu_global_option(optarg) != 0)
2750 exit(1);
2751 break;
2752 case QEMU_OPTION_mtdblock:
2753 drive_add(optarg, MTD_ALIAS);
2754 break;
2755 case QEMU_OPTION_sd:
2756 drive_add(optarg, SD_ALIAS);
2757 break;
2758 case QEMU_OPTION_pflash:
2759 drive_add(optarg, PFLASH_ALIAS);
2760 break;
2761 case QEMU_OPTION_snapshot:
2762 snapshot = 1;
2763 break;
2764 case QEMU_OPTION_hdachs:
2766 const char *p;
2767 p = optarg;
2768 cyls = strtol(p, (char **)&p, 0);
2769 if (cyls < 1 || cyls > 16383)
2770 goto chs_fail;
2771 if (*p != ',')
2772 goto chs_fail;
2773 p++;
2774 heads = strtol(p, (char **)&p, 0);
2775 if (heads < 1 || heads > 16)
2776 goto chs_fail;
2777 if (*p != ',')
2778 goto chs_fail;
2779 p++;
2780 secs = strtol(p, (char **)&p, 0);
2781 if (secs < 1 || secs > 63)
2782 goto chs_fail;
2783 if (*p == ',') {
2784 p++;
2785 if (!strcmp(p, "none"))
2786 translation = BIOS_ATA_TRANSLATION_NONE;
2787 else if (!strcmp(p, "lba"))
2788 translation = BIOS_ATA_TRANSLATION_LBA;
2789 else if (!strcmp(p, "auto"))
2790 translation = BIOS_ATA_TRANSLATION_AUTO;
2791 else
2792 goto chs_fail;
2793 } else if (*p != '\0') {
2794 chs_fail:
2795 fprintf(stderr, "qemu: invalid physical CHS format\n");
2796 exit(1);
2798 if (hda_opts != NULL) {
2799 char num[16];
2800 snprintf(num, sizeof(num), "%d", cyls);
2801 qemu_opt_set(hda_opts, "cyls", num);
2802 snprintf(num, sizeof(num), "%d", heads);
2803 qemu_opt_set(hda_opts, "heads", num);
2804 snprintf(num, sizeof(num), "%d", secs);
2805 qemu_opt_set(hda_opts, "secs", num);
2806 if (translation == BIOS_ATA_TRANSLATION_LBA)
2807 qemu_opt_set(hda_opts, "trans", "lba");
2808 if (translation == BIOS_ATA_TRANSLATION_NONE)
2809 qemu_opt_set(hda_opts, "trans", "none");
2812 break;
2813 case QEMU_OPTION_numa:
2814 if (nb_numa_nodes >= MAX_NODES) {
2815 fprintf(stderr, "qemu: too many NUMA nodes\n");
2816 exit(1);
2818 numa_add(optarg);
2819 break;
2820 case QEMU_OPTION_nographic:
2821 display_type = DT_NOGRAPHIC;
2822 break;
2823 #ifdef CONFIG_CURSES
2824 case QEMU_OPTION_curses:
2825 display_type = DT_CURSES;
2826 break;
2827 #endif
2828 case QEMU_OPTION_portrait:
2829 graphic_rotate = 1;
2830 break;
2831 case QEMU_OPTION_kernel:
2832 kernel_filename = optarg;
2833 break;
2834 case QEMU_OPTION_append:
2835 kernel_cmdline = optarg;
2836 break;
2837 case QEMU_OPTION_cdrom:
2838 drive_add(optarg, CDROM_ALIAS);
2839 break;
2840 case QEMU_OPTION_boot:
2842 static const char * const params[] = {
2843 "order", "once", "menu", NULL
2845 char buf[sizeof(boot_devices)];
2846 char *standard_boot_devices;
2847 int legacy = 0;
2849 if (!strchr(optarg, '=')) {
2850 legacy = 1;
2851 pstrcpy(buf, sizeof(buf), optarg);
2852 } else if (check_params(buf, sizeof(buf), params, optarg) < 0) {
2853 fprintf(stderr,
2854 "qemu: unknown boot parameter '%s' in '%s'\n",
2855 buf, optarg);
2856 exit(1);
2859 if (legacy ||
2860 get_param_value(buf, sizeof(buf), "order", optarg)) {
2861 validate_bootdevices(buf);
2862 pstrcpy(boot_devices, sizeof(boot_devices), buf);
2864 if (!legacy) {
2865 if (get_param_value(buf, sizeof(buf),
2866 "once", optarg)) {
2867 validate_bootdevices(buf);
2868 standard_boot_devices = qemu_strdup(boot_devices);
2869 pstrcpy(boot_devices, sizeof(boot_devices), buf);
2870 qemu_register_reset(restore_boot_devices,
2871 standard_boot_devices);
2873 if (get_param_value(buf, sizeof(buf),
2874 "menu", optarg)) {
2875 if (!strcmp(buf, "on")) {
2876 boot_menu = 1;
2877 } else if (!strcmp(buf, "off")) {
2878 boot_menu = 0;
2879 } else {
2880 fprintf(stderr,
2881 "qemu: invalid option value '%s'\n",
2882 buf);
2883 exit(1);
2888 break;
2889 case QEMU_OPTION_fda:
2890 case QEMU_OPTION_fdb:
2891 drive_add(optarg, FD_ALIAS, popt->index - QEMU_OPTION_fda);
2892 break;
2893 case QEMU_OPTION_no_fd_bootchk:
2894 fd_bootchk = 0;
2895 break;
2896 case QEMU_OPTION_netdev:
2897 if (net_client_parse(&qemu_netdev_opts, optarg) == -1) {
2898 exit(1);
2900 break;
2901 case QEMU_OPTION_net:
2902 if (net_client_parse(&qemu_net_opts, optarg) == -1) {
2903 exit(1);
2905 break;
2906 #ifdef CONFIG_SLIRP
2907 case QEMU_OPTION_tftp:
2908 legacy_tftp_prefix = optarg;
2909 break;
2910 case QEMU_OPTION_bootp:
2911 legacy_bootp_filename = optarg;
2912 break;
2913 #ifndef _WIN32
2914 case QEMU_OPTION_smb:
2915 if (net_slirp_smb(optarg) < 0)
2916 exit(1);
2917 break;
2918 #endif
2919 case QEMU_OPTION_redir:
2920 if (net_slirp_redir(optarg) < 0)
2921 exit(1);
2922 break;
2923 #endif
2924 case QEMU_OPTION_bt:
2925 add_device_config(DEV_BT, optarg);
2926 break;
2927 case QEMU_OPTION_audio_help:
2928 if (!(audio_available())) {
2929 printf("Option %s not supported for this target\n", popt->name);
2930 exit(1);
2932 AUD_help ();
2933 exit (0);
2934 break;
2935 case QEMU_OPTION_soundhw:
2936 if (!(audio_available())) {
2937 printf("Option %s not supported for this target\n", popt->name);
2938 exit(1);
2940 select_soundhw (optarg);
2941 break;
2942 case QEMU_OPTION_h:
2943 help(0);
2944 break;
2945 case QEMU_OPTION_version:
2946 version();
2947 exit(0);
2948 break;
2949 case QEMU_OPTION_m: {
2950 uint64_t value;
2951 char *ptr;
2953 value = strtoul(optarg, &ptr, 10);
2954 switch (*ptr) {
2955 case 0: case 'M': case 'm':
2956 value <<= 20;
2957 break;
2958 case 'G': case 'g':
2959 value <<= 30;
2960 break;
2961 default:
2962 fprintf(stderr, "qemu: invalid ram size: %s\n", optarg);
2963 exit(1);
2966 /* On 32-bit hosts, QEMU is limited by virtual address space */
2967 if (value > (2047 << 20) && HOST_LONG_BITS == 32) {
2968 fprintf(stderr, "qemu: at most 2047 MB RAM can be simulated\n");
2969 exit(1);
2971 if (value != (uint64_t)(ram_addr_t)value) {
2972 fprintf(stderr, "qemu: ram size too large\n");
2973 exit(1);
2975 ram_size = value;
2976 break;
2978 case QEMU_OPTION_mempath:
2979 mem_path = optarg;
2980 break;
2981 #ifdef MAP_POPULATE
2982 case QEMU_OPTION_mem_prealloc:
2983 mem_prealloc = 1;
2984 break;
2985 #endif
2986 case QEMU_OPTION_d:
2987 set_cpu_log(optarg);
2988 break;
2989 case QEMU_OPTION_s:
2990 gdbstub_dev = "tcp::" DEFAULT_GDBSTUB_PORT;
2991 break;
2992 case QEMU_OPTION_gdb:
2993 gdbstub_dev = optarg;
2994 break;
2995 case QEMU_OPTION_L:
2996 data_dir = optarg;
2997 break;
2998 case QEMU_OPTION_bios:
2999 bios_name = optarg;
3000 break;
3001 case QEMU_OPTION_singlestep:
3002 singlestep = 1;
3003 break;
3004 case QEMU_OPTION_S:
3005 autostart = 0;
3006 break;
3007 case QEMU_OPTION_k:
3008 keyboard_layout = optarg;
3009 break;
3010 case QEMU_OPTION_localtime:
3011 rtc_utc = 0;
3012 break;
3013 case QEMU_OPTION_vga:
3014 select_vgahw (optarg);
3015 break;
3016 case QEMU_OPTION_g:
3018 const char *p;
3019 int w, h, depth;
3020 p = optarg;
3021 w = strtol(p, (char **)&p, 10);
3022 if (w <= 0) {
3023 graphic_error:
3024 fprintf(stderr, "qemu: invalid resolution or depth\n");
3025 exit(1);
3027 if (*p != 'x')
3028 goto graphic_error;
3029 p++;
3030 h = strtol(p, (char **)&p, 10);
3031 if (h <= 0)
3032 goto graphic_error;
3033 if (*p == 'x') {
3034 p++;
3035 depth = strtol(p, (char **)&p, 10);
3036 if (depth != 8 && depth != 15 && depth != 16 &&
3037 depth != 24 && depth != 32)
3038 goto graphic_error;
3039 } else if (*p == '\0') {
3040 depth = graphic_depth;
3041 } else {
3042 goto graphic_error;
3045 graphic_width = w;
3046 graphic_height = h;
3047 graphic_depth = depth;
3049 break;
3050 case QEMU_OPTION_echr:
3052 char *r;
3053 term_escape_char = strtol(optarg, &r, 0);
3054 if (r == optarg)
3055 printf("Bad argument to echr\n");
3056 break;
3058 case QEMU_OPTION_monitor:
3059 monitor_parse(optarg, "readline");
3060 default_monitor = 0;
3061 break;
3062 case QEMU_OPTION_qmp:
3063 monitor_parse(optarg, "control");
3064 default_monitor = 0;
3065 break;
3066 case QEMU_OPTION_mon:
3067 opts = qemu_opts_parse(&qemu_mon_opts, optarg, 1);
3068 if (!opts) {
3069 exit(1);
3071 default_monitor = 0;
3072 break;
3073 case QEMU_OPTION_chardev:
3074 opts = qemu_opts_parse(&qemu_chardev_opts, optarg, 1);
3075 if (!opts) {
3076 exit(1);
3078 break;
3079 case QEMU_OPTION_serial:
3080 add_device_config(DEV_SERIAL, optarg);
3081 default_serial = 0;
3082 if (strncmp(optarg, "mon:", 4) == 0) {
3083 default_monitor = 0;
3085 break;
3086 case QEMU_OPTION_watchdog:
3087 if (watchdog) {
3088 fprintf(stderr,
3089 "qemu: only one watchdog option may be given\n");
3090 return 1;
3092 watchdog = optarg;
3093 break;
3094 case QEMU_OPTION_watchdog_action:
3095 if (select_watchdog_action(optarg) == -1) {
3096 fprintf(stderr, "Unknown -watchdog-action parameter\n");
3097 exit(1);
3099 break;
3100 case QEMU_OPTION_virtiocon:
3101 add_device_config(DEV_VIRTCON, optarg);
3102 default_virtcon = 0;
3103 if (strncmp(optarg, "mon:", 4) == 0) {
3104 default_monitor = 0;
3106 break;
3107 case QEMU_OPTION_parallel:
3108 add_device_config(DEV_PARALLEL, optarg);
3109 default_parallel = 0;
3110 if (strncmp(optarg, "mon:", 4) == 0) {
3111 default_monitor = 0;
3113 break;
3114 case QEMU_OPTION_debugcon:
3115 add_device_config(DEV_DEBUGCON, optarg);
3116 break;
3117 case QEMU_OPTION_loadvm:
3118 loadvm = optarg;
3119 break;
3120 case QEMU_OPTION_full_screen:
3121 full_screen = 1;
3122 break;
3123 #ifdef CONFIG_SDL
3124 case QEMU_OPTION_no_frame:
3125 no_frame = 1;
3126 break;
3127 case QEMU_OPTION_alt_grab:
3128 alt_grab = 1;
3129 break;
3130 case QEMU_OPTION_ctrl_grab:
3131 ctrl_grab = 1;
3132 break;
3133 case QEMU_OPTION_no_quit:
3134 no_quit = 1;
3135 break;
3136 case QEMU_OPTION_sdl:
3137 display_type = DT_SDL;
3138 break;
3139 #endif
3140 case QEMU_OPTION_pidfile:
3141 pid_file = optarg;
3142 break;
3143 case QEMU_OPTION_win2k_hack:
3144 win2k_install_hack = 1;
3145 break;
3146 case QEMU_OPTION_rtc_td_hack:
3147 rtc_td_hack = 1;
3148 break;
3149 case QEMU_OPTION_acpitable:
3150 do_acpitable_option(optarg);
3151 break;
3152 case QEMU_OPTION_smbios:
3153 do_smbios_option(optarg);
3154 break;
3155 case QEMU_OPTION_enable_kvm:
3156 kvm_allowed = 1;
3157 break;
3158 case QEMU_OPTION_usb:
3159 usb_enabled = 1;
3160 break;
3161 case QEMU_OPTION_usbdevice:
3162 usb_enabled = 1;
3163 add_device_config(DEV_USB, optarg);
3164 break;
3165 case QEMU_OPTION_device:
3166 if (!qemu_opts_parse(&qemu_device_opts, optarg, 1)) {
3167 exit(1);
3169 break;
3170 case QEMU_OPTION_smp:
3171 smp_parse(optarg);
3172 if (smp_cpus < 1) {
3173 fprintf(stderr, "Invalid number of CPUs\n");
3174 exit(1);
3176 if (max_cpus < smp_cpus) {
3177 fprintf(stderr, "maxcpus must be equal to or greater than "
3178 "smp\n");
3179 exit(1);
3181 if (max_cpus > 255) {
3182 fprintf(stderr, "Unsupported number of maxcpus\n");
3183 exit(1);
3185 break;
3186 case QEMU_OPTION_vnc:
3187 display_type = DT_VNC;
3188 vnc_display = optarg;
3189 break;
3190 case QEMU_OPTION_no_acpi:
3191 acpi_enabled = 0;
3192 break;
3193 case QEMU_OPTION_no_hpet:
3194 no_hpet = 1;
3195 break;
3196 case QEMU_OPTION_balloon:
3197 if (balloon_parse(optarg) < 0) {
3198 fprintf(stderr, "Unknown -balloon argument %s\n", optarg);
3199 exit(1);
3201 break;
3202 case QEMU_OPTION_no_reboot:
3203 no_reboot = 1;
3204 break;
3205 case QEMU_OPTION_no_shutdown:
3206 no_shutdown = 1;
3207 break;
3208 case QEMU_OPTION_show_cursor:
3209 cursor_hide = 0;
3210 break;
3211 case QEMU_OPTION_uuid:
3212 if(qemu_uuid_parse(optarg, qemu_uuid) < 0) {
3213 fprintf(stderr, "Fail to parse UUID string."
3214 " Wrong format.\n");
3215 exit(1);
3217 break;
3218 #ifndef _WIN32
3219 case QEMU_OPTION_daemonize:
3220 daemonize = 1;
3221 break;
3222 #endif
3223 case QEMU_OPTION_option_rom:
3224 if (nb_option_roms >= MAX_OPTION_ROMS) {
3225 fprintf(stderr, "Too many option ROMs\n");
3226 exit(1);
3228 option_rom[nb_option_roms] = optarg;
3229 nb_option_roms++;
3230 break;
3231 case QEMU_OPTION_semihosting:
3232 semihosting_enabled = 1;
3233 break;
3234 case QEMU_OPTION_name:
3235 qemu_name = qemu_strdup(optarg);
3237 char *p = strchr(qemu_name, ',');
3238 if (p != NULL) {
3239 *p++ = 0;
3240 if (strncmp(p, "process=", 8)) {
3241 fprintf(stderr, "Unknown subargument %s to -name", p);
3242 exit(1);
3244 p += 8;
3245 set_proc_name(p);
3248 break;
3249 case QEMU_OPTION_prom_env:
3250 if (nb_prom_envs >= MAX_PROM_ENVS) {
3251 fprintf(stderr, "Too many prom variables\n");
3252 exit(1);
3254 prom_envs[nb_prom_envs] = optarg;
3255 nb_prom_envs++;
3256 break;
3257 case QEMU_OPTION_old_param:
3258 old_param = 1;
3259 break;
3260 case QEMU_OPTION_clock:
3261 configure_alarms(optarg);
3262 break;
3263 case QEMU_OPTION_startdate:
3264 configure_rtc_date_offset(optarg, 1);
3265 break;
3266 case QEMU_OPTION_rtc:
3267 opts = qemu_opts_parse(&qemu_rtc_opts, optarg, 0);
3268 if (!opts) {
3269 exit(1);
3271 configure_rtc(opts);
3272 break;
3273 case QEMU_OPTION_tb_size:
3274 tb_size = strtol(optarg, NULL, 0);
3275 if (tb_size < 0)
3276 tb_size = 0;
3277 break;
3278 case QEMU_OPTION_icount:
3279 icount_option = optarg;
3280 break;
3281 case QEMU_OPTION_incoming:
3282 incoming = optarg;
3283 break;
3284 case QEMU_OPTION_nodefaults:
3285 default_serial = 0;
3286 default_parallel = 0;
3287 default_virtcon = 0;
3288 default_monitor = 0;
3289 default_vga = 0;
3290 default_net = 0;
3291 default_floppy = 0;
3292 default_cdrom = 0;
3293 default_sdcard = 0;
3294 break;
3295 #ifndef _WIN32
3296 case QEMU_OPTION_chroot:
3297 chroot_dir = optarg;
3298 break;
3299 case QEMU_OPTION_runas:
3300 run_as = optarg;
3301 break;
3302 #endif
3303 case QEMU_OPTION_xen_domid:
3304 if (!(xen_available())) {
3305 printf("Option %s not supported for this target\n", popt->name);
3306 exit(1);
3308 xen_domid = atoi(optarg);
3309 break;
3310 case QEMU_OPTION_xen_create:
3311 if (!(xen_available())) {
3312 printf("Option %s not supported for this target\n", popt->name);
3313 exit(1);
3315 xen_mode = XEN_CREATE;
3316 break;
3317 case QEMU_OPTION_xen_attach:
3318 if (!(xen_available())) {
3319 printf("Option %s not supported for this target\n", popt->name);
3320 exit(1);
3322 xen_mode = XEN_ATTACH;
3323 break;
3324 case QEMU_OPTION_readconfig:
3326 int ret = qemu_read_config_file(optarg);
3327 if (ret < 0) {
3328 fprintf(stderr, "read config %s: %s\n", optarg,
3329 strerror(-ret));
3330 exit(1);
3332 break;
3334 case QEMU_OPTION_writeconfig:
3336 FILE *fp;
3337 if (strcmp(optarg, "-") == 0) {
3338 fp = stdout;
3339 } else {
3340 fp = fopen(optarg, "w");
3341 if (fp == NULL) {
3342 fprintf(stderr, "open %s: %s\n", optarg, strerror(errno));
3343 exit(1);
3346 qemu_config_write(fp);
3347 fclose(fp);
3348 break;
3353 loc_set_none();
3355 /* If no data_dir is specified then try to find it relative to the
3356 executable path. */
3357 if (!data_dir) {
3358 data_dir = find_datadir(argv[0]);
3360 /* If all else fails use the install patch specified when building. */
3361 if (!data_dir) {
3362 data_dir = CONFIG_QEMU_SHAREDIR;
3366 * Default to max_cpus = smp_cpus, in case the user doesn't
3367 * specify a max_cpus value.
3369 if (!max_cpus)
3370 max_cpus = smp_cpus;
3372 machine->max_cpus = machine->max_cpus ?: 1; /* Default to UP */
3373 if (smp_cpus > machine->max_cpus) {
3374 fprintf(stderr, "Number of SMP cpus requested (%d), exceeds max cpus "
3375 "supported by machine `%s' (%d)\n", smp_cpus, machine->name,
3376 machine->max_cpus);
3377 exit(1);
3380 qemu_opts_foreach(&qemu_device_opts, default_driver_check, NULL, 0);
3381 qemu_opts_foreach(&qemu_global_opts, default_driver_check, NULL, 0);
3383 if (machine->no_serial) {
3384 default_serial = 0;
3386 if (machine->no_parallel) {
3387 default_parallel = 0;
3389 if (!machine->use_virtcon) {
3390 default_virtcon = 0;
3392 if (machine->no_vga) {
3393 default_vga = 0;
3395 if (machine->no_floppy) {
3396 default_floppy = 0;
3398 if (machine->no_cdrom) {
3399 default_cdrom = 0;
3401 if (machine->no_sdcard) {
3402 default_sdcard = 0;
3405 if (display_type == DT_NOGRAPHIC) {
3406 if (default_parallel)
3407 add_device_config(DEV_PARALLEL, "null");
3408 if (default_serial && default_monitor) {
3409 add_device_config(DEV_SERIAL, "mon:stdio");
3410 } else if (default_virtcon && default_monitor) {
3411 add_device_config(DEV_VIRTCON, "mon:stdio");
3412 } else {
3413 if (default_serial)
3414 add_device_config(DEV_SERIAL, "stdio");
3415 if (default_virtcon)
3416 add_device_config(DEV_VIRTCON, "stdio");
3417 if (default_monitor)
3418 monitor_parse("stdio", "readline");
3420 } else {
3421 if (default_serial)
3422 add_device_config(DEV_SERIAL, "vc:80Cx24C");
3423 if (default_parallel)
3424 add_device_config(DEV_PARALLEL, "vc:80Cx24C");
3425 if (default_monitor)
3426 monitor_parse("vc:80Cx24C", "readline");
3427 if (default_virtcon)
3428 add_device_config(DEV_VIRTCON, "vc:80Cx24C");
3430 if (default_vga)
3431 vga_interface_type = VGA_CIRRUS;
3433 if (qemu_opts_foreach(&qemu_chardev_opts, chardev_init_func, NULL, 1) != 0)
3434 exit(1);
3436 #ifndef _WIN32
3437 if (daemonize) {
3438 pid_t pid;
3440 if (pipe(fds) == -1)
3441 exit(1);
3443 pid = fork();
3444 if (pid > 0) {
3445 uint8_t status;
3446 ssize_t len;
3448 close(fds[1]);
3450 again:
3451 len = read(fds[0], &status, 1);
3452 if (len == -1 && (errno == EINTR))
3453 goto again;
3455 if (len != 1)
3456 exit(1);
3457 else if (status == 1) {
3458 fprintf(stderr, "Could not acquire pidfile: %s\n", strerror(errno));
3459 exit(1);
3460 } else
3461 exit(0);
3462 } else if (pid < 0)
3463 exit(1);
3465 close(fds[0]);
3466 qemu_set_cloexec(fds[1]);
3468 setsid();
3470 pid = fork();
3471 if (pid > 0)
3472 exit(0);
3473 else if (pid < 0)
3474 exit(1);
3476 umask(027);
3478 signal(SIGTSTP, SIG_IGN);
3479 signal(SIGTTOU, SIG_IGN);
3480 signal(SIGTTIN, SIG_IGN);
3482 #endif
3484 if (pid_file && qemu_create_pidfile(pid_file) != 0) {
3485 #ifndef _WIN32
3486 if (daemonize) {
3487 uint8_t status = 1;
3488 if (write(fds[1], &status, 1) != 1) {
3489 perror("daemonize. Writing to pipe\n");
3491 } else
3492 #endif
3493 fprintf(stderr, "Could not acquire pid file: %s\n", strerror(errno));
3494 exit(1);
3497 if (kvm_allowed) {
3498 int ret = kvm_init(smp_cpus);
3499 if (ret < 0) {
3500 if (!kvm_available()) {
3501 printf("KVM not supported for this target\n");
3502 } else {
3503 fprintf(stderr, "failed to initialize KVM: %s\n", strerror(-ret));
3505 exit(1);
3509 if (qemu_init_main_loop()) {
3510 fprintf(stderr, "qemu_init_main_loop failed\n");
3511 exit(1);
3513 linux_boot = (kernel_filename != NULL);
3515 if (!linux_boot && *kernel_cmdline != '\0') {
3516 fprintf(stderr, "-append only allowed with -kernel option\n");
3517 exit(1);
3520 if (!linux_boot && initrd_filename != NULL) {
3521 fprintf(stderr, "-initrd only allowed with -kernel option\n");
3522 exit(1);
3525 #ifndef _WIN32
3526 /* Win32 doesn't support line-buffering and requires size >= 2 */
3527 setvbuf(stdout, NULL, _IOLBF, 0);
3528 #endif
3530 if (init_timer_alarm() < 0) {
3531 fprintf(stderr, "could not initialize alarm timer\n");
3532 exit(1);
3534 configure_icount(icount_option);
3536 socket_init();
3538 if (net_init_clients() < 0) {
3539 exit(1);
3542 /* init the bluetooth world */
3543 if (foreach_device_config(DEV_BT, bt_parse))
3544 exit(1);
3546 /* init the memory */
3547 if (ram_size == 0)
3548 ram_size = DEFAULT_RAM_SIZE * 1024 * 1024;
3550 /* init the dynamic translator */
3551 cpu_exec_init_all(tb_size * 1024 * 1024);
3553 bdrv_init_with_whitelist();
3555 blk_mig_init();
3557 if (default_cdrom) {
3558 /* we always create the cdrom drive, even if no disk is there */
3559 drive_add(NULL, CDROM_ALIAS);
3562 if (default_floppy) {
3563 /* we always create at least one floppy */
3564 drive_add(NULL, FD_ALIAS, 0);
3567 if (default_sdcard) {
3568 /* we always create one sd slot, even if no card is in it */
3569 drive_add(NULL, SD_ALIAS);
3572 /* open the virtual block devices */
3573 if (snapshot)
3574 qemu_opts_foreach(&qemu_drive_opts, drive_enable_snapshot, NULL, 0);
3575 if (qemu_opts_foreach(&qemu_drive_opts, drive_init_func, machine, 1) != 0)
3576 exit(1);
3578 register_savevm_live("ram", 0, 3, NULL, ram_save_live, NULL,
3579 ram_load, NULL);
3581 if (nb_numa_nodes > 0) {
3582 int i;
3584 if (nb_numa_nodes > smp_cpus) {
3585 nb_numa_nodes = smp_cpus;
3588 /* If no memory size if given for any node, assume the default case
3589 * and distribute the available memory equally across all nodes
3591 for (i = 0; i < nb_numa_nodes; i++) {
3592 if (node_mem[i] != 0)
3593 break;
3595 if (i == nb_numa_nodes) {
3596 uint64_t usedmem = 0;
3598 /* On Linux, the each node's border has to be 8MB aligned,
3599 * the final node gets the rest.
3601 for (i = 0; i < nb_numa_nodes - 1; i++) {
3602 node_mem[i] = (ram_size / nb_numa_nodes) & ~((1 << 23UL) - 1);
3603 usedmem += node_mem[i];
3605 node_mem[i] = ram_size - usedmem;
3608 for (i = 0; i < nb_numa_nodes; i++) {
3609 if (node_cpumask[i] != 0)
3610 break;
3612 /* assigning the VCPUs round-robin is easier to implement, guest OSes
3613 * must cope with this anyway, because there are BIOSes out there in
3614 * real machines which also use this scheme.
3616 if (i == nb_numa_nodes) {
3617 for (i = 0; i < smp_cpus; i++) {
3618 node_cpumask[i % nb_numa_nodes] |= 1 << i;
3623 if (foreach_device_config(DEV_SERIAL, serial_parse) < 0)
3624 exit(1);
3625 if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0)
3626 exit(1);
3627 if (foreach_device_config(DEV_VIRTCON, virtcon_parse) < 0)
3628 exit(1);
3629 if (foreach_device_config(DEV_DEBUGCON, debugcon_parse) < 0)
3630 exit(1);
3632 module_call_init(MODULE_INIT_DEVICE);
3634 if (qemu_opts_foreach(&qemu_device_opts, device_help_func, NULL, 0) != 0)
3635 exit(0);
3637 if (watchdog) {
3638 i = select_watchdog(watchdog);
3639 if (i > 0)
3640 exit (i == 1 ? 1 : 0);
3643 if (machine->compat_props) {
3644 qdev_prop_register_global_list(machine->compat_props);
3646 qemu_add_globals();
3648 machine->init(ram_size, boot_devices,
3649 kernel_filename, kernel_cmdline, initrd_filename, cpu_model);
3651 cpu_synchronize_all_post_init();
3653 #ifndef _WIN32
3654 /* must be after terminal init, SDL library changes signal handlers */
3655 sighandler_setup();
3656 #endif
3658 set_numa_modes();
3660 current_machine = machine;
3662 /* init USB devices */
3663 if (usb_enabled) {
3664 if (foreach_device_config(DEV_USB, usb_parse) < 0)
3665 exit(1);
3668 /* init generic devices */
3669 if (qemu_opts_foreach(&qemu_device_opts, device_init_func, NULL, 1) != 0)
3670 exit(1);
3672 net_check_clients();
3674 /* just use the first displaystate for the moment */
3675 ds = get_displaystate();
3677 if (display_type == DT_DEFAULT) {
3678 #if defined(CONFIG_SDL) || defined(CONFIG_COCOA)
3679 display_type = DT_SDL;
3680 #else
3681 display_type = DT_VNC;
3682 vnc_display = "localhost:0,to=99";
3683 show_vnc_port = 1;
3684 #endif
3688 switch (display_type) {
3689 case DT_NOGRAPHIC:
3690 break;
3691 #if defined(CONFIG_CURSES)
3692 case DT_CURSES:
3693 curses_display_init(ds, full_screen);
3694 break;
3695 #endif
3696 #if defined(CONFIG_SDL)
3697 case DT_SDL:
3698 sdl_display_init(ds, full_screen, no_frame);
3699 break;
3700 #elif defined(CONFIG_COCOA)
3701 case DT_SDL:
3702 cocoa_display_init(ds, full_screen);
3703 break;
3704 #endif
3705 case DT_VNC:
3706 vnc_display_init(ds);
3707 if (vnc_display_open(ds, vnc_display) < 0)
3708 exit(1);
3710 if (show_vnc_port) {
3711 printf("VNC server running on `%s'\n", vnc_display_local_addr(ds));
3713 break;
3714 default:
3715 break;
3717 dpy_resize(ds);
3719 dcl = ds->listeners;
3720 while (dcl != NULL) {
3721 if (dcl->dpy_refresh != NULL) {
3722 ds->gui_timer = qemu_new_timer(rt_clock, gui_update, ds);
3723 qemu_mod_timer(ds->gui_timer, qemu_get_clock(rt_clock));
3725 dcl = dcl->next;
3728 if (display_type == DT_NOGRAPHIC || display_type == DT_VNC) {
3729 nographic_timer = qemu_new_timer(rt_clock, nographic_update, NULL);
3730 qemu_mod_timer(nographic_timer, qemu_get_clock(rt_clock));
3733 text_consoles_set_display(ds);
3735 if (qemu_opts_foreach(&qemu_mon_opts, mon_init_func, NULL, 1) != 0)
3736 exit(1);
3738 if (gdbstub_dev && gdbserver_start(gdbstub_dev) < 0) {
3739 fprintf(stderr, "qemu: could not open gdbserver on device '%s'\n",
3740 gdbstub_dev);
3741 exit(1);
3744 qdev_machine_creation_done();
3746 if (rom_load_all() != 0) {
3747 fprintf(stderr, "rom loading failed\n");
3748 exit(1);
3751 qemu_system_reset();
3752 if (loadvm) {
3753 if (load_vmstate(loadvm) < 0) {
3754 autostart = 0;
3758 if (incoming) {
3759 qemu_start_incoming_migration(incoming);
3760 } else if (autostart) {
3761 vm_start();
3764 #ifndef _WIN32
3765 if (daemonize) {
3766 uint8_t status = 0;
3767 ssize_t len;
3769 again1:
3770 len = write(fds[1], &status, 1);
3771 if (len == -1 && (errno == EINTR))
3772 goto again1;
3774 if (len != 1)
3775 exit(1);
3777 if (chdir("/")) {
3778 perror("not able to chdir to /");
3779 exit(1);
3781 TFR(fd = qemu_open("/dev/null", O_RDWR));
3782 if (fd == -1)
3783 exit(1);
3786 if (run_as) {
3787 pwd = getpwnam(run_as);
3788 if (!pwd) {
3789 fprintf(stderr, "User \"%s\" doesn't exist\n", run_as);
3790 exit(1);
3794 if (chroot_dir) {
3795 if (chroot(chroot_dir) < 0) {
3796 fprintf(stderr, "chroot failed\n");
3797 exit(1);
3799 if (chdir("/")) {
3800 perror("not able to chdir to /");
3801 exit(1);
3805 if (run_as) {
3806 if (setgid(pwd->pw_gid) < 0) {
3807 fprintf(stderr, "Failed to setgid(%d)\n", pwd->pw_gid);
3808 exit(1);
3810 if (setuid(pwd->pw_uid) < 0) {
3811 fprintf(stderr, "Failed to setuid(%d)\n", pwd->pw_uid);
3812 exit(1);
3814 if (setuid(0) != -1) {
3815 fprintf(stderr, "Dropping privileges failed\n");
3816 exit(1);
3820 if (daemonize) {
3821 dup2(fd, 0);
3822 dup2(fd, 1);
3823 dup2(fd, 2);
3825 close(fd);
3827 #endif
3829 main_loop();
3830 quit_timers();
3831 net_cleanup();
3833 return 0;