]> git.proxmox.com Git - qemu.git/blob - vl.c
qemu-timer: move more stuff out of qemu-timer.c
[qemu.git] / vl.c
1 /*
2 * QEMU System Emulator
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 *
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:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
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.
23 */
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>
31
32 /* Needed early for CONFIG_BSD etc. */
33 #include "config-host.h"
34
35 #ifndef _WIN32
36 #include <libgen.h>
37 #include <sys/times.h>
38 #include <sys/wait.h>
39 #include <termios.h>
40 #include <sys/mman.h>
41 #include <sys/ioctl.h>
42 #include <sys/resource.h>
43 #include <sys/socket.h>
44 #include <netinet/in.h>
45 #include <net/if.h>
46 #include <arpa/inet.h>
47 #include <dirent.h>
48 #include <netdb.h>
49 #include <sys/select.h>
50
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
64 #include <linux/ppdev.h>
65 #include <linux/parport.h>
66 #endif
67 #ifdef __sun__
68 #include <sys/stat.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>
77 #include <net/if.h>
78 #include <syslog.h>
79 #include <stropts.h>
80 #endif
81 #endif
82 #endif
83
84 #if defined(__OpenBSD__)
85 #include <util.h>
86 #endif
87
88 #if defined(CONFIG_VDE)
89 #include <libvdeplug.h>
90 #endif
91
92 #ifdef _WIN32
93 #include <windows.h>
94 #endif
95
96 #ifdef CONFIG_SDL
97 #if defined(__APPLE__) || defined(main)
98 #include <SDL.h>
99 int qemu_main(int argc, char **argv, char **envp);
100 int main(int argc, char **argv)
101 {
102 return qemu_main(argc, argv, NULL);
103 }
104 #undef main
105 #define main qemu_main
106 #endif
107 #endif /* CONFIG_SDL */
108
109 #ifdef CONFIG_COCOA
110 #undef main
111 #define main qemu_main
112 #endif /* CONFIG_COCOA */
113
114 #include <glib.h>
115
116 #include "hw/hw.h"
117 #include "hw/boards.h"
118 #include "hw/usb.h"
119 #include "hw/pcmcia.h"
120 #include "hw/pc.h"
121 #include "hw/isa.h"
122 #include "hw/baum.h"
123 #include "hw/bt.h"
124 #include "hw/watchdog.h"
125 #include "hw/smbios.h"
126 #include "hw/xen.h"
127 #include "hw/qdev.h"
128 #include "hw/loader.h"
129 #include "bt-host.h"
130 #include "net.h"
131 #include "net/slirp.h"
132 #include "monitor.h"
133 #include "console.h"
134 #include "sysemu.h"
135 #include "gdbstub.h"
136 #include "qemu-timer.h"
137 #include "qemu-char.h"
138 #include "cache-utils.h"
139 #include "block.h"
140 #include "blockdev.h"
141 #include "block-migration.h"
142 #include "dma.h"
143 #include "audio/audio.h"
144 #include "migration.h"
145 #include "kvm.h"
146 #include "qemu-option.h"
147 #include "qemu-config.h"
148 #include "qemu-objects.h"
149 #include "qemu-options.h"
150 #include "qmp-commands.h"
151 #ifdef CONFIG_VIRTFS
152 #include "fsdev/qemu-fsdev.h"
153 #endif
154
155 #include "disas.h"
156
157 #include "qemu_socket.h"
158
159 #include "slirp/libslirp.h"
160
161 #include "trace.h"
162 #include "trace/control.h"
163 #include "qemu-queue.h"
164 #include "cpus.h"
165 #include "arch_init.h"
166
167 #include "ui/qemu-spice.h"
168
169 //#define DEBUG_NET
170 //#define DEBUG_SLIRP
171
172 #define DEFAULT_RAM_SIZE 128
173
174 #define MAX_VIRTIO_CONSOLES 1
175
176 static const char *data_dir;
177 const char *bios_name = NULL;
178 enum vga_retrace_method vga_retrace_method = VGA_RETRACE_DUMB;
179 DisplayType display_type = DT_DEFAULT;
180 int display_remote = 0;
181 const char* keyboard_layout = NULL;
182 ram_addr_t ram_size;
183 const char *mem_path = NULL;
184 #ifdef MAP_POPULATE
185 int mem_prealloc = 0; /* force preallocation of physical target memory */
186 #endif
187 int nb_nics;
188 NICInfo nd_table[MAX_NICS];
189 int autostart;
190 static int rtc_utc = 1;
191 static int rtc_date_offset = -1; /* -1 means no change */
192 QEMUClock *rtc_clock;
193 int vga_interface_type = VGA_NONE;
194 static int full_screen = 0;
195 #ifdef CONFIG_SDL
196 static int no_frame = 0;
197 #endif
198 int no_quit = 0;
199 CharDriverState *serial_hds[MAX_SERIAL_PORTS];
200 CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
201 CharDriverState *virtcon_hds[MAX_VIRTIO_CONSOLES];
202 int win2k_install_hack = 0;
203 int rtc_td_hack = 0;
204 int usb_enabled = 0;
205 int singlestep = 0;
206 int smp_cpus = 1;
207 int max_cpus = 0;
208 int smp_cores = 1;
209 int smp_threads = 1;
210 #ifdef CONFIG_VNC
211 const char *vnc_display;
212 #endif
213 int acpi_enabled = 1;
214 int no_hpet = 0;
215 int fd_bootchk = 1;
216 int no_reboot = 0;
217 int no_shutdown = 0;
218 int cursor_hide = 1;
219 int graphic_rotate = 0;
220 uint8_t irq0override = 1;
221 const char *watchdog;
222 QEMUOptionRom option_rom[MAX_OPTION_ROMS];
223 int nb_option_roms;
224 int semihosting_enabled = 0;
225 int old_param = 0;
226 const char *qemu_name;
227 int alt_grab = 0;
228 int ctrl_grab = 0;
229 unsigned int nb_prom_envs = 0;
230 const char *prom_envs[MAX_PROM_ENVS];
231 int boot_menu;
232 uint8_t *boot_splash_filedata;
233 int boot_splash_filedata_size;
234 uint8_t qemu_extra_params_fw[2];
235
236 typedef struct FWBootEntry FWBootEntry;
237
238 struct FWBootEntry {
239 QTAILQ_ENTRY(FWBootEntry) link;
240 int32_t bootindex;
241 DeviceState *dev;
242 char *suffix;
243 };
244
245 QTAILQ_HEAD(, FWBootEntry) fw_boot_order = QTAILQ_HEAD_INITIALIZER(fw_boot_order);
246
247 int nb_numa_nodes;
248 uint64_t node_mem[MAX_NODES];
249 uint64_t node_cpumask[MAX_NODES];
250
251 uint8_t qemu_uuid[16];
252
253 static QEMUBootSetHandler *boot_set_handler;
254 static void *boot_set_opaque;
255
256 static NotifierList exit_notifiers =
257 NOTIFIER_LIST_INITIALIZER(exit_notifiers);
258
259 static NotifierList machine_init_done_notifiers =
260 NOTIFIER_LIST_INITIALIZER(machine_init_done_notifiers);
261
262 static int tcg_allowed = 1;
263 int kvm_allowed = 0;
264 int xen_allowed = 0;
265 uint32_t xen_domid;
266 enum xen_mode xen_mode = XEN_EMULATE;
267 static int tcg_tb_size;
268
269 static int default_serial = 1;
270 static int default_parallel = 1;
271 static int default_virtcon = 1;
272 static int default_monitor = 1;
273 static int default_vga = 1;
274 static int default_floppy = 1;
275 static int default_cdrom = 1;
276 static int default_sdcard = 1;
277
278 static struct {
279 const char *driver;
280 int *flag;
281 } default_list[] = {
282 { .driver = "isa-serial", .flag = &default_serial },
283 { .driver = "isa-parallel", .flag = &default_parallel },
284 { .driver = "isa-fdc", .flag = &default_floppy },
285 { .driver = "ide-cd", .flag = &default_cdrom },
286 { .driver = "ide-hd", .flag = &default_cdrom },
287 { .driver = "ide-drive", .flag = &default_cdrom },
288 { .driver = "scsi-cd", .flag = &default_cdrom },
289 { .driver = "virtio-serial-pci", .flag = &default_virtcon },
290 { .driver = "virtio-serial-s390", .flag = &default_virtcon },
291 { .driver = "virtio-serial", .flag = &default_virtcon },
292 { .driver = "VGA", .flag = &default_vga },
293 { .driver = "cirrus-vga", .flag = &default_vga },
294 { .driver = "vmware-svga", .flag = &default_vga },
295 { .driver = "isa-vga", .flag = &default_vga },
296 { .driver = "qxl-vga", .flag = &default_vga },
297 };
298
299 static void res_free(void)
300 {
301 if (boot_splash_filedata != NULL) {
302 g_free(boot_splash_filedata);
303 boot_splash_filedata = NULL;
304 }
305 }
306
307 static int default_driver_check(QemuOpts *opts, void *opaque)
308 {
309 const char *driver = qemu_opt_get(opts, "driver");
310 int i;
311
312 if (!driver)
313 return 0;
314 for (i = 0; i < ARRAY_SIZE(default_list); i++) {
315 if (strcmp(default_list[i].driver, driver) != 0)
316 continue;
317 *(default_list[i].flag) = 0;
318 }
319 return 0;
320 }
321
322 /***********************************************************/
323 /* QEMU state */
324
325 static RunState current_run_state = RUN_STATE_PRELAUNCH;
326
327 typedef struct {
328 RunState from;
329 RunState to;
330 } RunStateTransition;
331
332 static const RunStateTransition runstate_transitions_def[] = {
333 /* from -> to */
334 { RUN_STATE_DEBUG, RUN_STATE_RUNNING },
335
336 { RUN_STATE_INMIGRATE, RUN_STATE_RUNNING },
337 { RUN_STATE_INMIGRATE, RUN_STATE_PRELAUNCH },
338
339 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_PAUSED },
340 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_FINISH_MIGRATE },
341
342 { RUN_STATE_IO_ERROR, RUN_STATE_RUNNING },
343 { RUN_STATE_IO_ERROR, RUN_STATE_FINISH_MIGRATE },
344
345 { RUN_STATE_PAUSED, RUN_STATE_RUNNING },
346 { RUN_STATE_PAUSED, RUN_STATE_FINISH_MIGRATE },
347
348 { RUN_STATE_POSTMIGRATE, RUN_STATE_RUNNING },
349 { RUN_STATE_POSTMIGRATE, RUN_STATE_FINISH_MIGRATE },
350
351 { RUN_STATE_PRELAUNCH, RUN_STATE_RUNNING },
352 { RUN_STATE_PRELAUNCH, RUN_STATE_FINISH_MIGRATE },
353 { RUN_STATE_PRELAUNCH, RUN_STATE_INMIGRATE },
354
355 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_RUNNING },
356 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_POSTMIGRATE },
357
358 { RUN_STATE_RESTORE_VM, RUN_STATE_RUNNING },
359
360 { RUN_STATE_RUNNING, RUN_STATE_DEBUG },
361 { RUN_STATE_RUNNING, RUN_STATE_INTERNAL_ERROR },
362 { RUN_STATE_RUNNING, RUN_STATE_IO_ERROR },
363 { RUN_STATE_RUNNING, RUN_STATE_PAUSED },
364 { RUN_STATE_RUNNING, RUN_STATE_FINISH_MIGRATE },
365 { RUN_STATE_RUNNING, RUN_STATE_RESTORE_VM },
366 { RUN_STATE_RUNNING, RUN_STATE_SAVE_VM },
367 { RUN_STATE_RUNNING, RUN_STATE_SHUTDOWN },
368 { RUN_STATE_RUNNING, RUN_STATE_WATCHDOG },
369
370 { RUN_STATE_SAVE_VM, RUN_STATE_RUNNING },
371
372 { RUN_STATE_SHUTDOWN, RUN_STATE_PAUSED },
373 { RUN_STATE_SHUTDOWN, RUN_STATE_FINISH_MIGRATE },
374
375 { RUN_STATE_WATCHDOG, RUN_STATE_RUNNING },
376 { RUN_STATE_WATCHDOG, RUN_STATE_FINISH_MIGRATE },
377
378 { RUN_STATE_MAX, RUN_STATE_MAX },
379 };
380
381 static bool runstate_valid_transitions[RUN_STATE_MAX][RUN_STATE_MAX];
382
383 bool runstate_check(RunState state)
384 {
385 return current_run_state == state;
386 }
387
388 void runstate_init(void)
389 {
390 const RunStateTransition *p;
391
392 memset(&runstate_valid_transitions, 0, sizeof(runstate_valid_transitions));
393
394 for (p = &runstate_transitions_def[0]; p->from != RUN_STATE_MAX; p++) {
395 runstate_valid_transitions[p->from][p->to] = true;
396 }
397 }
398
399 /* This function will abort() on invalid state transitions */
400 void runstate_set(RunState new_state)
401 {
402 assert(new_state < RUN_STATE_MAX);
403
404 if (!runstate_valid_transitions[current_run_state][new_state]) {
405 fprintf(stderr, "ERROR: invalid runstate transition: '%s' -> '%s'\n",
406 RunState_lookup[current_run_state],
407 RunState_lookup[new_state]);
408 abort();
409 }
410
411 current_run_state = new_state;
412 }
413
414 int runstate_is_running(void)
415 {
416 return runstate_check(RUN_STATE_RUNNING);
417 }
418
419 StatusInfo *qmp_query_status(Error **errp)
420 {
421 StatusInfo *info = g_malloc0(sizeof(*info));
422
423 info->running = runstate_is_running();
424 info->singlestep = singlestep;
425 info->status = current_run_state;
426
427 return info;
428 }
429
430 /***********************************************************/
431 /* real time host monotonic timer */
432
433 /***********************************************************/
434 /* host time/date access */
435 void qemu_get_timedate(struct tm *tm, int offset)
436 {
437 time_t ti;
438 struct tm *ret;
439
440 time(&ti);
441 ti += offset;
442 if (rtc_date_offset == -1) {
443 if (rtc_utc)
444 ret = gmtime(&ti);
445 else
446 ret = localtime(&ti);
447 } else {
448 ti -= rtc_date_offset;
449 ret = gmtime(&ti);
450 }
451
452 memcpy(tm, ret, sizeof(struct tm));
453 }
454
455 int qemu_timedate_diff(struct tm *tm)
456 {
457 time_t seconds;
458
459 if (rtc_date_offset == -1)
460 if (rtc_utc)
461 seconds = mktimegm(tm);
462 else
463 seconds = mktime(tm);
464 else
465 seconds = mktimegm(tm) + rtc_date_offset;
466
467 return seconds - time(NULL);
468 }
469
470 void rtc_change_mon_event(struct tm *tm)
471 {
472 QObject *data;
473
474 data = qobject_from_jsonf("{ 'offset': %d }", qemu_timedate_diff(tm));
475 monitor_protocol_event(QEVENT_RTC_CHANGE, data);
476 qobject_decref(data);
477 }
478
479 static void configure_rtc_date_offset(const char *startdate, int legacy)
480 {
481 time_t rtc_start_date;
482 struct tm tm;
483
484 if (!strcmp(startdate, "now") && legacy) {
485 rtc_date_offset = -1;
486 } else {
487 if (sscanf(startdate, "%d-%d-%dT%d:%d:%d",
488 &tm.tm_year,
489 &tm.tm_mon,
490 &tm.tm_mday,
491 &tm.tm_hour,
492 &tm.tm_min,
493 &tm.tm_sec) == 6) {
494 /* OK */
495 } else if (sscanf(startdate, "%d-%d-%d",
496 &tm.tm_year,
497 &tm.tm_mon,
498 &tm.tm_mday) == 3) {
499 tm.tm_hour = 0;
500 tm.tm_min = 0;
501 tm.tm_sec = 0;
502 } else {
503 goto date_fail;
504 }
505 tm.tm_year -= 1900;
506 tm.tm_mon--;
507 rtc_start_date = mktimegm(&tm);
508 if (rtc_start_date == -1) {
509 date_fail:
510 fprintf(stderr, "Invalid date format. Valid formats are:\n"
511 "'2006-06-17T16:01:21' or '2006-06-17'\n");
512 exit(1);
513 }
514 rtc_date_offset = time(NULL) - rtc_start_date;
515 }
516 }
517
518 static void configure_rtc(QemuOpts *opts)
519 {
520 const char *value;
521
522 value = qemu_opt_get(opts, "base");
523 if (value) {
524 if (!strcmp(value, "utc")) {
525 rtc_utc = 1;
526 } else if (!strcmp(value, "localtime")) {
527 rtc_utc = 0;
528 } else {
529 configure_rtc_date_offset(value, 0);
530 }
531 }
532 value = qemu_opt_get(opts, "clock");
533 if (value) {
534 if (!strcmp(value, "host")) {
535 rtc_clock = host_clock;
536 } else if (!strcmp(value, "vm")) {
537 rtc_clock = vm_clock;
538 } else {
539 fprintf(stderr, "qemu: invalid option value '%s'\n", value);
540 exit(1);
541 }
542 }
543 value = qemu_opt_get(opts, "driftfix");
544 if (value) {
545 if (!strcmp(value, "slew")) {
546 rtc_td_hack = 1;
547 } else if (!strcmp(value, "none")) {
548 rtc_td_hack = 0;
549 } else {
550 fprintf(stderr, "qemu: invalid option value '%s'\n", value);
551 exit(1);
552 }
553 }
554 }
555
556 /***********************************************************/
557 /* Bluetooth support */
558 static int nb_hcis;
559 static int cur_hci;
560 static struct HCIInfo *hci_table[MAX_NICS];
561
562 static struct bt_vlan_s {
563 struct bt_scatternet_s net;
564 int id;
565 struct bt_vlan_s *next;
566 } *first_bt_vlan;
567
568 /* find or alloc a new bluetooth "VLAN" */
569 static struct bt_scatternet_s *qemu_find_bt_vlan(int id)
570 {
571 struct bt_vlan_s **pvlan, *vlan;
572 for (vlan = first_bt_vlan; vlan != NULL; vlan = vlan->next) {
573 if (vlan->id == id)
574 return &vlan->net;
575 }
576 vlan = g_malloc0(sizeof(struct bt_vlan_s));
577 vlan->id = id;
578 pvlan = &first_bt_vlan;
579 while (*pvlan != NULL)
580 pvlan = &(*pvlan)->next;
581 *pvlan = vlan;
582 return &vlan->net;
583 }
584
585 static void null_hci_send(struct HCIInfo *hci, const uint8_t *data, int len)
586 {
587 }
588
589 static int null_hci_addr_set(struct HCIInfo *hci, const uint8_t *bd_addr)
590 {
591 return -ENOTSUP;
592 }
593
594 static struct HCIInfo null_hci = {
595 .cmd_send = null_hci_send,
596 .sco_send = null_hci_send,
597 .acl_send = null_hci_send,
598 .bdaddr_set = null_hci_addr_set,
599 };
600
601 struct HCIInfo *qemu_next_hci(void)
602 {
603 if (cur_hci == nb_hcis)
604 return &null_hci;
605
606 return hci_table[cur_hci++];
607 }
608
609 static struct HCIInfo *hci_init(const char *str)
610 {
611 char *endp;
612 struct bt_scatternet_s *vlan = 0;
613
614 if (!strcmp(str, "null"))
615 /* null */
616 return &null_hci;
617 else if (!strncmp(str, "host", 4) && (str[4] == '\0' || str[4] == ':'))
618 /* host[:hciN] */
619 return bt_host_hci(str[4] ? str + 5 : "hci0");
620 else if (!strncmp(str, "hci", 3)) {
621 /* hci[,vlan=n] */
622 if (str[3]) {
623 if (!strncmp(str + 3, ",vlan=", 6)) {
624 vlan = qemu_find_bt_vlan(strtol(str + 9, &endp, 0));
625 if (*endp)
626 vlan = 0;
627 }
628 } else
629 vlan = qemu_find_bt_vlan(0);
630 if (vlan)
631 return bt_new_hci(vlan);
632 }
633
634 fprintf(stderr, "qemu: Unknown bluetooth HCI `%s'.\n", str);
635
636 return 0;
637 }
638
639 static int bt_hci_parse(const char *str)
640 {
641 struct HCIInfo *hci;
642 bdaddr_t bdaddr;
643
644 if (nb_hcis >= MAX_NICS) {
645 fprintf(stderr, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS);
646 return -1;
647 }
648
649 hci = hci_init(str);
650 if (!hci)
651 return -1;
652
653 bdaddr.b[0] = 0x52;
654 bdaddr.b[1] = 0x54;
655 bdaddr.b[2] = 0x00;
656 bdaddr.b[3] = 0x12;
657 bdaddr.b[4] = 0x34;
658 bdaddr.b[5] = 0x56 + nb_hcis;
659 hci->bdaddr_set(hci, bdaddr.b);
660
661 hci_table[nb_hcis++] = hci;
662
663 return 0;
664 }
665
666 static void bt_vhci_add(int vlan_id)
667 {
668 struct bt_scatternet_s *vlan = qemu_find_bt_vlan(vlan_id);
669
670 if (!vlan->slave)
671 fprintf(stderr, "qemu: warning: adding a VHCI to "
672 "an empty scatternet %i\n", vlan_id);
673
674 bt_vhci_init(bt_new_hci(vlan));
675 }
676
677 static struct bt_device_s *bt_device_add(const char *opt)
678 {
679 struct bt_scatternet_s *vlan;
680 int vlan_id = 0;
681 char *endp = strstr(opt, ",vlan=");
682 int len = (endp ? endp - opt : strlen(opt)) + 1;
683 char devname[10];
684
685 pstrcpy(devname, MIN(sizeof(devname), len), opt);
686
687 if (endp) {
688 vlan_id = strtol(endp + 6, &endp, 0);
689 if (*endp) {
690 fprintf(stderr, "qemu: unrecognised bluetooth vlan Id\n");
691 return 0;
692 }
693 }
694
695 vlan = qemu_find_bt_vlan(vlan_id);
696
697 if (!vlan->slave)
698 fprintf(stderr, "qemu: warning: adding a slave device to "
699 "an empty scatternet %i\n", vlan_id);
700
701 if (!strcmp(devname, "keyboard"))
702 return bt_keyboard_init(vlan);
703
704 fprintf(stderr, "qemu: unsupported bluetooth device `%s'\n", devname);
705 return 0;
706 }
707
708 static int bt_parse(const char *opt)
709 {
710 const char *endp, *p;
711 int vlan;
712
713 if (strstart(opt, "hci", &endp)) {
714 if (!*endp || *endp == ',') {
715 if (*endp)
716 if (!strstart(endp, ",vlan=", 0))
717 opt = endp + 1;
718
719 return bt_hci_parse(opt);
720 }
721 } else if (strstart(opt, "vhci", &endp)) {
722 if (!*endp || *endp == ',') {
723 if (*endp) {
724 if (strstart(endp, ",vlan=", &p)) {
725 vlan = strtol(p, (char **) &endp, 0);
726 if (*endp) {
727 fprintf(stderr, "qemu: bad scatternet '%s'\n", p);
728 return 1;
729 }
730 } else {
731 fprintf(stderr, "qemu: bad parameter '%s'\n", endp + 1);
732 return 1;
733 }
734 } else
735 vlan = 0;
736
737 bt_vhci_add(vlan);
738 return 0;
739 }
740 } else if (strstart(opt, "device:", &endp))
741 return !bt_device_add(endp);
742
743 fprintf(stderr, "qemu: bad bluetooth parameter '%s'\n", opt);
744 return 1;
745 }
746
747 /***********************************************************/
748 /* QEMU Block devices */
749
750 #define HD_OPTS "media=disk"
751 #define CDROM_OPTS "media=cdrom"
752 #define FD_OPTS ""
753 #define PFLASH_OPTS ""
754 #define MTD_OPTS ""
755 #define SD_OPTS ""
756
757 static int drive_init_func(QemuOpts *opts, void *opaque)
758 {
759 int *use_scsi = opaque;
760
761 return drive_init(opts, *use_scsi) == NULL;
762 }
763
764 static int drive_enable_snapshot(QemuOpts *opts, void *opaque)
765 {
766 if (NULL == qemu_opt_get(opts, "snapshot")) {
767 qemu_opt_set(opts, "snapshot", "on");
768 }
769 return 0;
770 }
771
772 static void default_drive(int enable, int snapshot, int use_scsi,
773 BlockInterfaceType type, int index,
774 const char *optstr)
775 {
776 QemuOpts *opts;
777
778 if (type == IF_DEFAULT) {
779 type = use_scsi ? IF_SCSI : IF_IDE;
780 }
781
782 if (!enable || drive_get_by_index(type, index)) {
783 return;
784 }
785
786 opts = drive_add(type, index, NULL, optstr);
787 if (snapshot) {
788 drive_enable_snapshot(opts, NULL);
789 }
790 if (!drive_init(opts, use_scsi)) {
791 exit(1);
792 }
793 }
794
795 void qemu_register_boot_set(QEMUBootSetHandler *func, void *opaque)
796 {
797 boot_set_handler = func;
798 boot_set_opaque = opaque;
799 }
800
801 int qemu_boot_set(const char *boot_devices)
802 {
803 if (!boot_set_handler) {
804 return -EINVAL;
805 }
806 return boot_set_handler(boot_set_opaque, boot_devices);
807 }
808
809 static void validate_bootdevices(char *devices)
810 {
811 /* We just do some generic consistency checks */
812 const char *p;
813 int bitmap = 0;
814
815 for (p = devices; *p != '\0'; p++) {
816 /* Allowed boot devices are:
817 * a-b: floppy disk drives
818 * c-f: IDE disk drives
819 * g-m: machine implementation dependant drives
820 * n-p: network devices
821 * It's up to each machine implementation to check if the given boot
822 * devices match the actual hardware implementation and firmware
823 * features.
824 */
825 if (*p < 'a' || *p > 'p') {
826 fprintf(stderr, "Invalid boot device '%c'\n", *p);
827 exit(1);
828 }
829 if (bitmap & (1 << (*p - 'a'))) {
830 fprintf(stderr, "Boot device '%c' was given twice\n", *p);
831 exit(1);
832 }
833 bitmap |= 1 << (*p - 'a');
834 }
835 }
836
837 static void restore_boot_devices(void *opaque)
838 {
839 char *standard_boot_devices = opaque;
840 static int first = 1;
841
842 /* Restore boot order and remove ourselves after the first boot */
843 if (first) {
844 first = 0;
845 return;
846 }
847
848 qemu_boot_set(standard_boot_devices);
849
850 qemu_unregister_reset(restore_boot_devices, standard_boot_devices);
851 g_free(standard_boot_devices);
852 }
853
854 void add_boot_device_path(int32_t bootindex, DeviceState *dev,
855 const char *suffix)
856 {
857 FWBootEntry *node, *i;
858
859 if (bootindex < 0) {
860 return;
861 }
862
863 assert(dev != NULL || suffix != NULL);
864
865 node = g_malloc0(sizeof(FWBootEntry));
866 node->bootindex = bootindex;
867 node->suffix = suffix ? g_strdup(suffix) : NULL;
868 node->dev = dev;
869
870 QTAILQ_FOREACH(i, &fw_boot_order, link) {
871 if (i->bootindex == bootindex) {
872 fprintf(stderr, "Two devices with same boot index %d\n", bootindex);
873 exit(1);
874 } else if (i->bootindex < bootindex) {
875 continue;
876 }
877 QTAILQ_INSERT_BEFORE(i, node, link);
878 return;
879 }
880 QTAILQ_INSERT_TAIL(&fw_boot_order, node, link);
881 }
882
883 /*
884 * This function returns null terminated string that consist of new line
885 * separated device paths.
886 *
887 * memory pointed by "size" is assigned total length of the array in bytes
888 *
889 */
890 char *get_boot_devices_list(uint32_t *size)
891 {
892 FWBootEntry *i;
893 uint32_t total = 0;
894 char *list = NULL;
895
896 QTAILQ_FOREACH(i, &fw_boot_order, link) {
897 char *devpath = NULL, *bootpath;
898 int len;
899
900 if (i->dev) {
901 devpath = qdev_get_fw_dev_path(i->dev);
902 assert(devpath);
903 }
904
905 if (i->suffix && devpath) {
906 size_t bootpathlen = strlen(devpath) + strlen(i->suffix) + 1;
907
908 bootpath = g_malloc(bootpathlen);
909 snprintf(bootpath, bootpathlen, "%s%s", devpath, i->suffix);
910 g_free(devpath);
911 } else if (devpath) {
912 bootpath = devpath;
913 } else {
914 bootpath = g_strdup(i->suffix);
915 assert(bootpath);
916 }
917
918 if (total) {
919 list[total-1] = '\n';
920 }
921 len = strlen(bootpath) + 1;
922 list = g_realloc(list, total + len);
923 memcpy(&list[total], bootpath, len);
924 total += len;
925 g_free(bootpath);
926 }
927
928 *size = total;
929
930 return list;
931 }
932
933 static void numa_add(const char *optarg)
934 {
935 char option[128];
936 char *endptr;
937 unsigned long long value, endvalue;
938 int nodenr;
939
940 optarg = get_opt_name(option, 128, optarg, ',') + 1;
941 if (!strcmp(option, "node")) {
942 if (get_param_value(option, 128, "nodeid", optarg) == 0) {
943 nodenr = nb_numa_nodes;
944 } else {
945 nodenr = strtoull(option, NULL, 10);
946 }
947
948 if (get_param_value(option, 128, "mem", optarg) == 0) {
949 node_mem[nodenr] = 0;
950 } else {
951 int64_t sval;
952 sval = strtosz(option, NULL);
953 if (sval < 0) {
954 fprintf(stderr, "qemu: invalid numa mem size: %s\n", optarg);
955 exit(1);
956 }
957 node_mem[nodenr] = sval;
958 }
959 if (get_param_value(option, 128, "cpus", optarg) == 0) {
960 node_cpumask[nodenr] = 0;
961 } else {
962 value = strtoull(option, &endptr, 10);
963 if (value >= 64) {
964 value = 63;
965 fprintf(stderr, "only 64 CPUs in NUMA mode supported.\n");
966 } else {
967 if (*endptr == '-') {
968 endvalue = strtoull(endptr+1, &endptr, 10);
969 if (endvalue >= 63) {
970 endvalue = 62;
971 fprintf(stderr,
972 "only 63 CPUs in NUMA mode supported.\n");
973 }
974 value = (2ULL << endvalue) - (1ULL << value);
975 } else {
976 value = 1ULL << value;
977 }
978 }
979 node_cpumask[nodenr] = value;
980 }
981 nb_numa_nodes++;
982 }
983 return;
984 }
985
986 static void smp_parse(const char *optarg)
987 {
988 int smp, sockets = 0, threads = 0, cores = 0;
989 char *endptr;
990 char option[128];
991
992 smp = strtoul(optarg, &endptr, 10);
993 if (endptr != optarg) {
994 if (*endptr == ',') {
995 endptr++;
996 }
997 }
998 if (get_param_value(option, 128, "sockets", endptr) != 0)
999 sockets = strtoull(option, NULL, 10);
1000 if (get_param_value(option, 128, "cores", endptr) != 0)
1001 cores = strtoull(option, NULL, 10);
1002 if (get_param_value(option, 128, "threads", endptr) != 0)
1003 threads = strtoull(option, NULL, 10);
1004 if (get_param_value(option, 128, "maxcpus", endptr) != 0)
1005 max_cpus = strtoull(option, NULL, 10);
1006
1007 /* compute missing values, prefer sockets over cores over threads */
1008 if (smp == 0 || sockets == 0) {
1009 sockets = sockets > 0 ? sockets : 1;
1010 cores = cores > 0 ? cores : 1;
1011 threads = threads > 0 ? threads : 1;
1012 if (smp == 0) {
1013 smp = cores * threads * sockets;
1014 }
1015 } else {
1016 if (cores == 0) {
1017 threads = threads > 0 ? threads : 1;
1018 cores = smp / (sockets * threads);
1019 } else {
1020 threads = smp / (cores * sockets);
1021 }
1022 }
1023 smp_cpus = smp;
1024 smp_cores = cores > 0 ? cores : 1;
1025 smp_threads = threads > 0 ? threads : 1;
1026 if (max_cpus == 0)
1027 max_cpus = smp_cpus;
1028 }
1029
1030 /***********************************************************/
1031 /* USB devices */
1032
1033 static int usb_device_add(const char *devname)
1034 {
1035 const char *p;
1036 USBDevice *dev = NULL;
1037
1038 if (!usb_enabled)
1039 return -1;
1040
1041 /* drivers with .usbdevice_name entry in USBDeviceInfo */
1042 dev = usbdevice_create(devname);
1043 if (dev)
1044 goto done;
1045
1046 /* the other ones */
1047 #ifndef CONFIG_LINUX
1048 /* only the linux version is qdev-ified, usb-bsd still needs this */
1049 if (strstart(devname, "host:", &p)) {
1050 dev = usb_host_device_open(p);
1051 } else
1052 #endif
1053 if (!strcmp(devname, "bt") || strstart(devname, "bt:", &p)) {
1054 dev = usb_bt_init(devname[2] ? hci_init(p) :
1055 bt_new_hci(qemu_find_bt_vlan(0)));
1056 } else {
1057 return -1;
1058 }
1059 if (!dev)
1060 return -1;
1061
1062 done:
1063 return 0;
1064 }
1065
1066 static int usb_device_del(const char *devname)
1067 {
1068 int bus_num, addr;
1069 const char *p;
1070
1071 if (strstart(devname, "host:", &p))
1072 return usb_host_device_close(p);
1073
1074 if (!usb_enabled)
1075 return -1;
1076
1077 p = strchr(devname, '.');
1078 if (!p)
1079 return -1;
1080 bus_num = strtoul(devname, NULL, 0);
1081 addr = strtoul(p + 1, NULL, 0);
1082
1083 return usb_device_delete_addr(bus_num, addr);
1084 }
1085
1086 static int usb_parse(const char *cmdline)
1087 {
1088 int r;
1089 r = usb_device_add(cmdline);
1090 if (r < 0) {
1091 fprintf(stderr, "qemu: could not add USB device '%s'\n", cmdline);
1092 }
1093 return r;
1094 }
1095
1096 void do_usb_add(Monitor *mon, const QDict *qdict)
1097 {
1098 const char *devname = qdict_get_str(qdict, "devname");
1099 if (usb_device_add(devname) < 0) {
1100 error_report("could not add USB device '%s'", devname);
1101 }
1102 }
1103
1104 void do_usb_del(Monitor *mon, const QDict *qdict)
1105 {
1106 const char *devname = qdict_get_str(qdict, "devname");
1107 if (usb_device_del(devname) < 0) {
1108 error_report("could not delete USB device '%s'", devname);
1109 }
1110 }
1111
1112 /***********************************************************/
1113 /* PCMCIA/Cardbus */
1114
1115 static struct pcmcia_socket_entry_s {
1116 PCMCIASocket *socket;
1117 struct pcmcia_socket_entry_s *next;
1118 } *pcmcia_sockets = 0;
1119
1120 void pcmcia_socket_register(PCMCIASocket *socket)
1121 {
1122 struct pcmcia_socket_entry_s *entry;
1123
1124 entry = g_malloc(sizeof(struct pcmcia_socket_entry_s));
1125 entry->socket = socket;
1126 entry->next = pcmcia_sockets;
1127 pcmcia_sockets = entry;
1128 }
1129
1130 void pcmcia_socket_unregister(PCMCIASocket *socket)
1131 {
1132 struct pcmcia_socket_entry_s *entry, **ptr;
1133
1134 ptr = &pcmcia_sockets;
1135 for (entry = *ptr; entry; ptr = &entry->next, entry = *ptr)
1136 if (entry->socket == socket) {
1137 *ptr = entry->next;
1138 g_free(entry);
1139 }
1140 }
1141
1142 void pcmcia_info(Monitor *mon)
1143 {
1144 struct pcmcia_socket_entry_s *iter;
1145
1146 if (!pcmcia_sockets)
1147 monitor_printf(mon, "No PCMCIA sockets\n");
1148
1149 for (iter = pcmcia_sockets; iter; iter = iter->next)
1150 monitor_printf(mon, "%s: %s\n", iter->socket->slot_string,
1151 iter->socket->attached ? iter->socket->card_string :
1152 "Empty");
1153 }
1154
1155 /***********************************************************/
1156 /* machine registration */
1157
1158 static QEMUMachine *first_machine = NULL;
1159 QEMUMachine *current_machine = NULL;
1160
1161 int qemu_register_machine(QEMUMachine *m)
1162 {
1163 QEMUMachine **pm;
1164 pm = &first_machine;
1165 while (*pm != NULL)
1166 pm = &(*pm)->next;
1167 m->next = NULL;
1168 *pm = m;
1169 return 0;
1170 }
1171
1172 static QEMUMachine *find_machine(const char *name)
1173 {
1174 QEMUMachine *m;
1175
1176 for(m = first_machine; m != NULL; m = m->next) {
1177 if (!strcmp(m->name, name))
1178 return m;
1179 if (m->alias && !strcmp(m->alias, name))
1180 return m;
1181 }
1182 return NULL;
1183 }
1184
1185 static QEMUMachine *find_default_machine(void)
1186 {
1187 QEMUMachine *m;
1188
1189 for(m = first_machine; m != NULL; m = m->next) {
1190 if (m->is_default) {
1191 return m;
1192 }
1193 }
1194 return NULL;
1195 }
1196
1197 /***********************************************************/
1198 /* main execution loop */
1199
1200 static void gui_update(void *opaque)
1201 {
1202 uint64_t interval = GUI_REFRESH_INTERVAL;
1203 DisplayState *ds = opaque;
1204 DisplayChangeListener *dcl = ds->listeners;
1205
1206 dpy_refresh(ds);
1207
1208 while (dcl != NULL) {
1209 if (dcl->gui_timer_interval &&
1210 dcl->gui_timer_interval < interval)
1211 interval = dcl->gui_timer_interval;
1212 dcl = dcl->next;
1213 }
1214 qemu_mod_timer(ds->gui_timer, interval + qemu_get_clock_ms(rt_clock));
1215 }
1216
1217 struct vm_change_state_entry {
1218 VMChangeStateHandler *cb;
1219 void *opaque;
1220 QLIST_ENTRY (vm_change_state_entry) entries;
1221 };
1222
1223 static QLIST_HEAD(vm_change_state_head, vm_change_state_entry) vm_change_state_head;
1224
1225 VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
1226 void *opaque)
1227 {
1228 VMChangeStateEntry *e;
1229
1230 e = g_malloc0(sizeof (*e));
1231
1232 e->cb = cb;
1233 e->opaque = opaque;
1234 QLIST_INSERT_HEAD(&vm_change_state_head, e, entries);
1235 return e;
1236 }
1237
1238 void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
1239 {
1240 QLIST_REMOVE (e, entries);
1241 g_free (e);
1242 }
1243
1244 void vm_state_notify(int running, RunState state)
1245 {
1246 VMChangeStateEntry *e;
1247
1248 trace_vm_state_notify(running, state);
1249
1250 for (e = vm_change_state_head.lh_first; e; e = e->entries.le_next) {
1251 e->cb(e->opaque, running, state);
1252 }
1253 }
1254
1255 void vm_start(void)
1256 {
1257 if (!runstate_is_running()) {
1258 cpu_enable_ticks();
1259 runstate_set(RUN_STATE_RUNNING);
1260 vm_state_notify(1, RUN_STATE_RUNNING);
1261 resume_all_vcpus();
1262 monitor_protocol_event(QEVENT_RESUME, NULL);
1263 }
1264 }
1265
1266 /* reset/shutdown handler */
1267
1268 typedef struct QEMUResetEntry {
1269 QTAILQ_ENTRY(QEMUResetEntry) entry;
1270 QEMUResetHandler *func;
1271 void *opaque;
1272 } QEMUResetEntry;
1273
1274 static QTAILQ_HEAD(reset_handlers, QEMUResetEntry) reset_handlers =
1275 QTAILQ_HEAD_INITIALIZER(reset_handlers);
1276 static int reset_requested;
1277 static int shutdown_requested, shutdown_signal = -1;
1278 static pid_t shutdown_pid;
1279 static int powerdown_requested;
1280 static int debug_requested;
1281 static RunState vmstop_requested = RUN_STATE_MAX;
1282
1283 int qemu_shutdown_requested_get(void)
1284 {
1285 return shutdown_requested;
1286 }
1287
1288 int qemu_reset_requested_get(void)
1289 {
1290 return reset_requested;
1291 }
1292
1293 int qemu_shutdown_requested(void)
1294 {
1295 int r = shutdown_requested;
1296 shutdown_requested = 0;
1297 return r;
1298 }
1299
1300 void qemu_kill_report(void)
1301 {
1302 if (shutdown_signal != -1) {
1303 fprintf(stderr, "qemu: terminating on signal %d", shutdown_signal);
1304 if (shutdown_pid == 0) {
1305 /* This happens for eg ^C at the terminal, so it's worth
1306 * avoiding printing an odd message in that case.
1307 */
1308 fputc('\n', stderr);
1309 } else {
1310 fprintf(stderr, " from pid " FMT_pid "\n", shutdown_pid);
1311 }
1312 shutdown_signal = -1;
1313 }
1314 }
1315
1316 int qemu_reset_requested(void)
1317 {
1318 int r = reset_requested;
1319 reset_requested = 0;
1320 return r;
1321 }
1322
1323 int qemu_powerdown_requested(void)
1324 {
1325 int r = powerdown_requested;
1326 powerdown_requested = 0;
1327 return r;
1328 }
1329
1330 static int qemu_debug_requested(void)
1331 {
1332 int r = debug_requested;
1333 debug_requested = 0;
1334 return r;
1335 }
1336
1337 /* We use RUN_STATE_MAX but any invalid value will do */
1338 static bool qemu_vmstop_requested(RunState *r)
1339 {
1340 if (vmstop_requested < RUN_STATE_MAX) {
1341 *r = vmstop_requested;
1342 vmstop_requested = RUN_STATE_MAX;
1343 return true;
1344 }
1345
1346 return false;
1347 }
1348
1349 void qemu_register_reset(QEMUResetHandler *func, void *opaque)
1350 {
1351 QEMUResetEntry *re = g_malloc0(sizeof(QEMUResetEntry));
1352
1353 re->func = func;
1354 re->opaque = opaque;
1355 QTAILQ_INSERT_TAIL(&reset_handlers, re, entry);
1356 }
1357
1358 void qemu_unregister_reset(QEMUResetHandler *func, void *opaque)
1359 {
1360 QEMUResetEntry *re;
1361
1362 QTAILQ_FOREACH(re, &reset_handlers, entry) {
1363 if (re->func == func && re->opaque == opaque) {
1364 QTAILQ_REMOVE(&reset_handlers, re, entry);
1365 g_free(re);
1366 return;
1367 }
1368 }
1369 }
1370
1371 void qemu_system_reset(bool report)
1372 {
1373 QEMUResetEntry *re, *nre;
1374
1375 /* reset all devices */
1376 QTAILQ_FOREACH_SAFE(re, &reset_handlers, entry, nre) {
1377 re->func(re->opaque);
1378 }
1379 if (report) {
1380 monitor_protocol_event(QEVENT_RESET, NULL);
1381 }
1382 cpu_synchronize_all_post_reset();
1383 }
1384
1385 void qemu_system_reset_request(void)
1386 {
1387 if (no_reboot) {
1388 shutdown_requested = 1;
1389 } else {
1390 reset_requested = 1;
1391 }
1392 cpu_stop_current();
1393 qemu_notify_event();
1394 }
1395
1396 void qemu_system_killed(int signal, pid_t pid)
1397 {
1398 shutdown_signal = signal;
1399 shutdown_pid = pid;
1400 no_shutdown = 0;
1401 qemu_system_shutdown_request();
1402 }
1403
1404 void qemu_system_shutdown_request(void)
1405 {
1406 shutdown_requested = 1;
1407 qemu_notify_event();
1408 }
1409
1410 void qemu_system_powerdown_request(void)
1411 {
1412 powerdown_requested = 1;
1413 qemu_notify_event();
1414 }
1415
1416 void qemu_system_debug_request(void)
1417 {
1418 debug_requested = 1;
1419 qemu_notify_event();
1420 }
1421
1422 void qemu_system_vmstop_request(RunState state)
1423 {
1424 vmstop_requested = state;
1425 qemu_notify_event();
1426 }
1427
1428 static GPollFD poll_fds[1024 * 2]; /* this is probably overkill */
1429 static int n_poll_fds;
1430 static int max_priority;
1431
1432 static void glib_select_fill(int *max_fd, fd_set *rfds, fd_set *wfds,
1433 fd_set *xfds, struct timeval *tv)
1434 {
1435 GMainContext *context = g_main_context_default();
1436 int i;
1437 int timeout = 0, cur_timeout;
1438
1439 g_main_context_prepare(context, &max_priority);
1440
1441 n_poll_fds = g_main_context_query(context, max_priority, &timeout,
1442 poll_fds, ARRAY_SIZE(poll_fds));
1443 g_assert(n_poll_fds <= ARRAY_SIZE(poll_fds));
1444
1445 for (i = 0; i < n_poll_fds; i++) {
1446 GPollFD *p = &poll_fds[i];
1447
1448 if ((p->events & G_IO_IN)) {
1449 FD_SET(p->fd, rfds);
1450 *max_fd = MAX(*max_fd, p->fd);
1451 }
1452 if ((p->events & G_IO_OUT)) {
1453 FD_SET(p->fd, wfds);
1454 *max_fd = MAX(*max_fd, p->fd);
1455 }
1456 if ((p->events & G_IO_ERR)) {
1457 FD_SET(p->fd, xfds);
1458 *max_fd = MAX(*max_fd, p->fd);
1459 }
1460 }
1461
1462 cur_timeout = (tv->tv_sec * 1000) + ((tv->tv_usec + 500) / 1000);
1463 if (timeout >= 0 && timeout < cur_timeout) {
1464 tv->tv_sec = timeout / 1000;
1465 tv->tv_usec = (timeout % 1000) * 1000;
1466 }
1467 }
1468
1469 static void glib_select_poll(fd_set *rfds, fd_set *wfds, fd_set *xfds,
1470 bool err)
1471 {
1472 GMainContext *context = g_main_context_default();
1473
1474 if (!err) {
1475 int i;
1476
1477 for (i = 0; i < n_poll_fds; i++) {
1478 GPollFD *p = &poll_fds[i];
1479
1480 if ((p->events & G_IO_IN) && FD_ISSET(p->fd, rfds)) {
1481 p->revents |= G_IO_IN;
1482 }
1483 if ((p->events & G_IO_OUT) && FD_ISSET(p->fd, wfds)) {
1484 p->revents |= G_IO_OUT;
1485 }
1486 if ((p->events & G_IO_ERR) && FD_ISSET(p->fd, xfds)) {
1487 p->revents |= G_IO_ERR;
1488 }
1489 }
1490 }
1491
1492 if (g_main_context_check(context, max_priority, poll_fds, n_poll_fds)) {
1493 g_main_context_dispatch(context);
1494 }
1495 }
1496
1497 int main_loop_wait(int nonblocking)
1498 {
1499 fd_set rfds, wfds, xfds;
1500 int ret, nfds;
1501 struct timeval tv;
1502 int timeout;
1503
1504 if (nonblocking)
1505 timeout = 0;
1506 else {
1507 timeout = qemu_calculate_timeout();
1508 qemu_bh_update_timeout(&timeout);
1509 }
1510
1511 os_host_main_loop_wait(&timeout);
1512
1513 tv.tv_sec = timeout / 1000;
1514 tv.tv_usec = (timeout % 1000) * 1000;
1515
1516 /* poll any events */
1517 /* XXX: separate device handlers from system ones */
1518 nfds = -1;
1519 FD_ZERO(&rfds);
1520 FD_ZERO(&wfds);
1521 FD_ZERO(&xfds);
1522
1523 qemu_iohandler_fill(&nfds, &rfds, &wfds, &xfds);
1524 slirp_select_fill(&nfds, &rfds, &wfds, &xfds);
1525 glib_select_fill(&nfds, &rfds, &wfds, &xfds, &tv);
1526
1527 if (timeout > 0) {
1528 qemu_mutex_unlock_iothread();
1529 }
1530
1531 ret = select(nfds + 1, &rfds, &wfds, &xfds, &tv);
1532
1533 if (timeout > 0) {
1534 qemu_mutex_lock_iothread();
1535 }
1536
1537 qemu_iohandler_poll(&rfds, &wfds, &xfds, ret);
1538 slirp_select_poll(&rfds, &wfds, &xfds, (ret < 0));
1539 glib_select_poll(&rfds, &wfds, &xfds, (ret < 0));
1540
1541 qemu_run_all_timers();
1542
1543 /* Check bottom-halves last in case any of the earlier events triggered
1544 them. */
1545 qemu_bh_poll();
1546
1547 return ret;
1548 }
1549
1550 qemu_irq qemu_system_powerdown;
1551
1552 static void main_loop(void)
1553 {
1554 bool nonblocking;
1555 int last_io __attribute__ ((unused)) = 0;
1556 #ifdef CONFIG_PROFILER
1557 int64_t ti;
1558 #endif
1559 RunState r;
1560
1561 qemu_main_loop_start();
1562
1563 for (;;) {
1564 nonblocking = !kvm_enabled() && last_io > 0;
1565 #ifdef CONFIG_PROFILER
1566 ti = profile_getclock();
1567 #endif
1568 last_io = main_loop_wait(nonblocking);
1569 #ifdef CONFIG_PROFILER
1570 dev_time += profile_getclock() - ti;
1571 #endif
1572
1573 if (qemu_debug_requested()) {
1574 vm_stop(RUN_STATE_DEBUG);
1575 }
1576 if (qemu_shutdown_requested()) {
1577 qemu_kill_report();
1578 monitor_protocol_event(QEVENT_SHUTDOWN, NULL);
1579 if (no_shutdown) {
1580 vm_stop(RUN_STATE_SHUTDOWN);
1581 } else
1582 break;
1583 }
1584 if (qemu_reset_requested()) {
1585 pause_all_vcpus();
1586 cpu_synchronize_all_states();
1587 qemu_system_reset(VMRESET_REPORT);
1588 resume_all_vcpus();
1589 if (runstate_check(RUN_STATE_INTERNAL_ERROR) ||
1590 runstate_check(RUN_STATE_SHUTDOWN)) {
1591 runstate_set(RUN_STATE_PAUSED);
1592 }
1593 }
1594 if (qemu_powerdown_requested()) {
1595 monitor_protocol_event(QEVENT_POWERDOWN, NULL);
1596 qemu_irq_raise(qemu_system_powerdown);
1597 }
1598 if (qemu_vmstop_requested(&r)) {
1599 vm_stop(r);
1600 }
1601 }
1602 bdrv_close_all();
1603 pause_all_vcpus();
1604 }
1605
1606 static void version(void)
1607 {
1608 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n");
1609 }
1610
1611 static void help(int exitcode)
1612 {
1613 const char *options_help =
1614 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
1615 opt_help
1616 #define DEFHEADING(text) stringify(text) "\n"
1617 #include "qemu-options.def"
1618 #undef DEF
1619 #undef DEFHEADING
1620 #undef GEN_DOCS
1621 ;
1622 version();
1623 printf("usage: %s [options] [disk_image]\n"
1624 "\n"
1625 "'disk_image' is a raw hard disk image for IDE hard disk 0\n"
1626 "\n"
1627 "%s\n"
1628 "During emulation, the following keys are useful:\n"
1629 "ctrl-alt-f toggle full screen\n"
1630 "ctrl-alt-n switch to virtual console 'n'\n"
1631 "ctrl-alt toggle mouse and keyboard grab\n"
1632 "\n"
1633 "When using -nographic, press 'ctrl-a h' to get some help.\n",
1634 "qemu",
1635 options_help);
1636 exit(exitcode);
1637 }
1638
1639 #define HAS_ARG 0x0001
1640
1641 typedef struct QEMUOption {
1642 const char *name;
1643 int flags;
1644 int index;
1645 uint32_t arch_mask;
1646 } QEMUOption;
1647
1648 static const QEMUOption qemu_options[] = {
1649 { "h", 0, QEMU_OPTION_h, QEMU_ARCH_ALL },
1650 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
1651 { option, opt_arg, opt_enum, arch_mask },
1652 #define DEFHEADING(text)
1653 #include "qemu-options.def"
1654 #undef DEF
1655 #undef DEFHEADING
1656 #undef GEN_DOCS
1657 { NULL },
1658 };
1659 static void select_vgahw (const char *p)
1660 {
1661 const char *opts;
1662
1663 default_vga = 0;
1664 vga_interface_type = VGA_NONE;
1665 if (strstart(p, "std", &opts)) {
1666 vga_interface_type = VGA_STD;
1667 } else if (strstart(p, "cirrus", &opts)) {
1668 vga_interface_type = VGA_CIRRUS;
1669 } else if (strstart(p, "vmware", &opts)) {
1670 vga_interface_type = VGA_VMWARE;
1671 } else if (strstart(p, "xenfb", &opts)) {
1672 vga_interface_type = VGA_XENFB;
1673 } else if (strstart(p, "qxl", &opts)) {
1674 vga_interface_type = VGA_QXL;
1675 } else if (!strstart(p, "none", &opts)) {
1676 invalid_vga:
1677 fprintf(stderr, "Unknown vga type: %s\n", p);
1678 exit(1);
1679 }
1680 while (*opts) {
1681 const char *nextopt;
1682
1683 if (strstart(opts, ",retrace=", &nextopt)) {
1684 opts = nextopt;
1685 if (strstart(opts, "dumb", &nextopt))
1686 vga_retrace_method = VGA_RETRACE_DUMB;
1687 else if (strstart(opts, "precise", &nextopt))
1688 vga_retrace_method = VGA_RETRACE_PRECISE;
1689 else goto invalid_vga;
1690 } else goto invalid_vga;
1691 opts = nextopt;
1692 }
1693 }
1694
1695 static DisplayType select_display(const char *p)
1696 {
1697 const char *opts;
1698 DisplayType display = DT_DEFAULT;
1699
1700 if (strstart(p, "sdl", &opts)) {
1701 #ifdef CONFIG_SDL
1702 display = DT_SDL;
1703 while (*opts) {
1704 const char *nextopt;
1705
1706 if (strstart(opts, ",frame=", &nextopt)) {
1707 opts = nextopt;
1708 if (strstart(opts, "on", &nextopt)) {
1709 no_frame = 0;
1710 } else if (strstart(opts, "off", &nextopt)) {
1711 no_frame = 1;
1712 } else {
1713 goto invalid_sdl_args;
1714 }
1715 } else if (strstart(opts, ",alt_grab=", &nextopt)) {
1716 opts = nextopt;
1717 if (strstart(opts, "on", &nextopt)) {
1718 alt_grab = 1;
1719 } else if (strstart(opts, "off", &nextopt)) {
1720 alt_grab = 0;
1721 } else {
1722 goto invalid_sdl_args;
1723 }
1724 } else if (strstart(opts, ",ctrl_grab=", &nextopt)) {
1725 opts = nextopt;
1726 if (strstart(opts, "on", &nextopt)) {
1727 ctrl_grab = 1;
1728 } else if (strstart(opts, "off", &nextopt)) {
1729 ctrl_grab = 0;
1730 } else {
1731 goto invalid_sdl_args;
1732 }
1733 } else if (strstart(opts, ",window_close=", &nextopt)) {
1734 opts = nextopt;
1735 if (strstart(opts, "on", &nextopt)) {
1736 no_quit = 0;
1737 } else if (strstart(opts, "off", &nextopt)) {
1738 no_quit = 1;
1739 } else {
1740 goto invalid_sdl_args;
1741 }
1742 } else {
1743 invalid_sdl_args:
1744 fprintf(stderr, "Invalid SDL option string: %s\n", p);
1745 exit(1);
1746 }
1747 opts = nextopt;
1748 }
1749 #else
1750 fprintf(stderr, "SDL support is disabled\n");
1751 exit(1);
1752 #endif
1753 } else if (strstart(p, "vnc", &opts)) {
1754 #ifdef CONFIG_VNC
1755 display_remote++;
1756
1757 if (*opts) {
1758 const char *nextopt;
1759
1760 if (strstart(opts, "=", &nextopt)) {
1761 vnc_display = nextopt;
1762 }
1763 }
1764 if (!vnc_display) {
1765 fprintf(stderr, "VNC requires a display argument vnc=<display>\n");
1766 exit(1);
1767 }
1768 #else
1769 fprintf(stderr, "VNC support is disabled\n");
1770 exit(1);
1771 #endif
1772 } else if (strstart(p, "curses", &opts)) {
1773 #ifdef CONFIG_CURSES
1774 display = DT_CURSES;
1775 #else
1776 fprintf(stderr, "Curses support is disabled\n");
1777 exit(1);
1778 #endif
1779 } else if (strstart(p, "none", &opts)) {
1780 display = DT_NONE;
1781 } else {
1782 fprintf(stderr, "Unknown display type: %s\n", p);
1783 exit(1);
1784 }
1785
1786 return display;
1787 }
1788
1789 static int balloon_parse(const char *arg)
1790 {
1791 QemuOpts *opts;
1792
1793 if (strcmp(arg, "none") == 0) {
1794 return 0;
1795 }
1796
1797 if (!strncmp(arg, "virtio", 6)) {
1798 if (arg[6] == ',') {
1799 /* have params -> parse them */
1800 opts = qemu_opts_parse(qemu_find_opts("device"), arg+7, 0);
1801 if (!opts)
1802 return -1;
1803 } else {
1804 /* create empty opts */
1805 opts = qemu_opts_create(qemu_find_opts("device"), NULL, 0);
1806 }
1807 qemu_opt_set(opts, "driver", "virtio-balloon");
1808 return 0;
1809 }
1810
1811 return -1;
1812 }
1813
1814 char *qemu_find_file(int type, const char *name)
1815 {
1816 int len;
1817 const char *subdir;
1818 char *buf;
1819
1820 /* If name contains path separators then try it as a straight path. */
1821 if ((strchr(name, '/') || strchr(name, '\\'))
1822 && access(name, R_OK) == 0) {
1823 return g_strdup(name);
1824 }
1825 switch (type) {
1826 case QEMU_FILE_TYPE_BIOS:
1827 subdir = "";
1828 break;
1829 case QEMU_FILE_TYPE_KEYMAP:
1830 subdir = "keymaps/";
1831 break;
1832 default:
1833 abort();
1834 }
1835 len = strlen(data_dir) + strlen(name) + strlen(subdir) + 2;
1836 buf = g_malloc0(len);
1837 snprintf(buf, len, "%s/%s%s", data_dir, subdir, name);
1838 if (access(buf, R_OK)) {
1839 g_free(buf);
1840 return NULL;
1841 }
1842 return buf;
1843 }
1844
1845 static int device_help_func(QemuOpts *opts, void *opaque)
1846 {
1847 return qdev_device_help(opts);
1848 }
1849
1850 static int device_init_func(QemuOpts *opts, void *opaque)
1851 {
1852 DeviceState *dev;
1853
1854 dev = qdev_device_add(opts);
1855 if (!dev)
1856 return -1;
1857 return 0;
1858 }
1859
1860 static int chardev_init_func(QemuOpts *opts, void *opaque)
1861 {
1862 CharDriverState *chr;
1863
1864 chr = qemu_chr_new_from_opts(opts, NULL);
1865 if (!chr)
1866 return -1;
1867 return 0;
1868 }
1869
1870 #ifdef CONFIG_VIRTFS
1871 static int fsdev_init_func(QemuOpts *opts, void *opaque)
1872 {
1873 int ret;
1874 ret = qemu_fsdev_add(opts);
1875
1876 return ret;
1877 }
1878 #endif
1879
1880 static int mon_init_func(QemuOpts *opts, void *opaque)
1881 {
1882 CharDriverState *chr;
1883 const char *chardev;
1884 const char *mode;
1885 int flags;
1886
1887 mode = qemu_opt_get(opts, "mode");
1888 if (mode == NULL) {
1889 mode = "readline";
1890 }
1891 if (strcmp(mode, "readline") == 0) {
1892 flags = MONITOR_USE_READLINE;
1893 } else if (strcmp(mode, "control") == 0) {
1894 flags = MONITOR_USE_CONTROL;
1895 } else {
1896 fprintf(stderr, "unknown monitor mode \"%s\"\n", mode);
1897 exit(1);
1898 }
1899
1900 if (qemu_opt_get_bool(opts, "pretty", 0))
1901 flags |= MONITOR_USE_PRETTY;
1902
1903 if (qemu_opt_get_bool(opts, "default", 0))
1904 flags |= MONITOR_IS_DEFAULT;
1905
1906 chardev = qemu_opt_get(opts, "chardev");
1907 chr = qemu_chr_find(chardev);
1908 if (chr == NULL) {
1909 fprintf(stderr, "chardev \"%s\" not found\n", chardev);
1910 exit(1);
1911 }
1912
1913 monitor_init(chr, flags);
1914 return 0;
1915 }
1916
1917 static void monitor_parse(const char *optarg, const char *mode)
1918 {
1919 static int monitor_device_index = 0;
1920 QemuOpts *opts;
1921 const char *p;
1922 char label[32];
1923 int def = 0;
1924
1925 if (strstart(optarg, "chardev:", &p)) {
1926 snprintf(label, sizeof(label), "%s", p);
1927 } else {
1928 snprintf(label, sizeof(label), "compat_monitor%d",
1929 monitor_device_index);
1930 if (monitor_device_index == 0) {
1931 def = 1;
1932 }
1933 opts = qemu_chr_parse_compat(label, optarg);
1934 if (!opts) {
1935 fprintf(stderr, "parse error: %s\n", optarg);
1936 exit(1);
1937 }
1938 }
1939
1940 opts = qemu_opts_create(qemu_find_opts("mon"), label, 1);
1941 if (!opts) {
1942 fprintf(stderr, "duplicate chardev: %s\n", label);
1943 exit(1);
1944 }
1945 qemu_opt_set(opts, "mode", mode);
1946 qemu_opt_set(opts, "chardev", label);
1947 if (def)
1948 qemu_opt_set(opts, "default", "on");
1949 monitor_device_index++;
1950 }
1951
1952 struct device_config {
1953 enum {
1954 DEV_USB, /* -usbdevice */
1955 DEV_BT, /* -bt */
1956 DEV_SERIAL, /* -serial */
1957 DEV_PARALLEL, /* -parallel */
1958 DEV_VIRTCON, /* -virtioconsole */
1959 DEV_DEBUGCON, /* -debugcon */
1960 } type;
1961 const char *cmdline;
1962 QTAILQ_ENTRY(device_config) next;
1963 };
1964 QTAILQ_HEAD(, device_config) device_configs = QTAILQ_HEAD_INITIALIZER(device_configs);
1965
1966 static void add_device_config(int type, const char *cmdline)
1967 {
1968 struct device_config *conf;
1969
1970 conf = g_malloc0(sizeof(*conf));
1971 conf->type = type;
1972 conf->cmdline = cmdline;
1973 QTAILQ_INSERT_TAIL(&device_configs, conf, next);
1974 }
1975
1976 static int foreach_device_config(int type, int (*func)(const char *cmdline))
1977 {
1978 struct device_config *conf;
1979 int rc;
1980
1981 QTAILQ_FOREACH(conf, &device_configs, next) {
1982 if (conf->type != type)
1983 continue;
1984 rc = func(conf->cmdline);
1985 if (0 != rc)
1986 return rc;
1987 }
1988 return 0;
1989 }
1990
1991 static int serial_parse(const char *devname)
1992 {
1993 static int index = 0;
1994 char label[32];
1995
1996 if (strcmp(devname, "none") == 0)
1997 return 0;
1998 if (index == MAX_SERIAL_PORTS) {
1999 fprintf(stderr, "qemu: too many serial ports\n");
2000 exit(1);
2001 }
2002 snprintf(label, sizeof(label), "serial%d", index);
2003 serial_hds[index] = qemu_chr_new(label, devname, NULL);
2004 if (!serial_hds[index]) {
2005 fprintf(stderr, "qemu: could not open serial device '%s': %s\n",
2006 devname, strerror(errno));
2007 return -1;
2008 }
2009 index++;
2010 return 0;
2011 }
2012
2013 static int parallel_parse(const char *devname)
2014 {
2015 static int index = 0;
2016 char label[32];
2017
2018 if (strcmp(devname, "none") == 0)
2019 return 0;
2020 if (index == MAX_PARALLEL_PORTS) {
2021 fprintf(stderr, "qemu: too many parallel ports\n");
2022 exit(1);
2023 }
2024 snprintf(label, sizeof(label), "parallel%d", index);
2025 parallel_hds[index] = qemu_chr_new(label, devname, NULL);
2026 if (!parallel_hds[index]) {
2027 fprintf(stderr, "qemu: could not open parallel device '%s': %s\n",
2028 devname, strerror(errno));
2029 return -1;
2030 }
2031 index++;
2032 return 0;
2033 }
2034
2035 static int virtcon_parse(const char *devname)
2036 {
2037 QemuOptsList *device = qemu_find_opts("device");
2038 static int index = 0;
2039 char label[32];
2040 QemuOpts *bus_opts, *dev_opts;
2041
2042 if (strcmp(devname, "none") == 0)
2043 return 0;
2044 if (index == MAX_VIRTIO_CONSOLES) {
2045 fprintf(stderr, "qemu: too many virtio consoles\n");
2046 exit(1);
2047 }
2048
2049 bus_opts = qemu_opts_create(device, NULL, 0);
2050 qemu_opt_set(bus_opts, "driver", "virtio-serial");
2051
2052 dev_opts = qemu_opts_create(device, NULL, 0);
2053 qemu_opt_set(dev_opts, "driver", "virtconsole");
2054
2055 snprintf(label, sizeof(label), "virtcon%d", index);
2056 virtcon_hds[index] = qemu_chr_new(label, devname, NULL);
2057 if (!virtcon_hds[index]) {
2058 fprintf(stderr, "qemu: could not open virtio console '%s': %s\n",
2059 devname, strerror(errno));
2060 return -1;
2061 }
2062 qemu_opt_set(dev_opts, "chardev", label);
2063
2064 index++;
2065 return 0;
2066 }
2067
2068 static int debugcon_parse(const char *devname)
2069 {
2070 QemuOpts *opts;
2071
2072 if (!qemu_chr_new("debugcon", devname, NULL)) {
2073 exit(1);
2074 }
2075 opts = qemu_opts_create(qemu_find_opts("device"), "debugcon", 1);
2076 if (!opts) {
2077 fprintf(stderr, "qemu: already have a debugcon device\n");
2078 exit(1);
2079 }
2080 qemu_opt_set(opts, "driver", "isa-debugcon");
2081 qemu_opt_set(opts, "chardev", "debugcon");
2082 return 0;
2083 }
2084
2085 static QEMUMachine *machine_parse(const char *name)
2086 {
2087 QEMUMachine *m, *machine = NULL;
2088
2089 if (name) {
2090 machine = find_machine(name);
2091 }
2092 if (machine) {
2093 return machine;
2094 }
2095 printf("Supported machines are:\n");
2096 for (m = first_machine; m != NULL; m = m->next) {
2097 if (m->alias) {
2098 printf("%-10s %s (alias of %s)\n", m->alias, m->desc, m->name);
2099 }
2100 printf("%-10s %s%s\n", m->name, m->desc,
2101 m->is_default ? " (default)" : "");
2102 }
2103 exit(!name || *name != '?');
2104 }
2105
2106 static int tcg_init(void)
2107 {
2108 tcg_exec_init(tcg_tb_size * 1024 * 1024);
2109 return 0;
2110 }
2111
2112 static struct {
2113 const char *opt_name;
2114 const char *name;
2115 int (*available)(void);
2116 int (*init)(void);
2117 int *allowed;
2118 } accel_list[] = {
2119 { "tcg", "tcg", tcg_available, tcg_init, &tcg_allowed },
2120 { "xen", "Xen", xen_available, xen_init, &xen_allowed },
2121 { "kvm", "KVM", kvm_available, kvm_init, &kvm_allowed },
2122 };
2123
2124 static int configure_accelerator(void)
2125 {
2126 const char *p = NULL;
2127 char buf[10];
2128 int i, ret;
2129 bool accel_initalised = 0;
2130 bool init_failed = 0;
2131
2132 QemuOptsList *list = qemu_find_opts("machine");
2133 if (!QTAILQ_EMPTY(&list->head)) {
2134 p = qemu_opt_get(QTAILQ_FIRST(&list->head), "accel");
2135 }
2136
2137 if (p == NULL) {
2138 /* Use the default "accelerator", tcg */
2139 p = "tcg";
2140 }
2141
2142 while (!accel_initalised && *p != '\0') {
2143 if (*p == ':') {
2144 p++;
2145 }
2146 p = get_opt_name(buf, sizeof (buf), p, ':');
2147 for (i = 0; i < ARRAY_SIZE(accel_list); i++) {
2148 if (strcmp(accel_list[i].opt_name, buf) == 0) {
2149 *(accel_list[i].allowed) = 1;
2150 ret = accel_list[i].init();
2151 if (ret < 0) {
2152 init_failed = 1;
2153 if (!accel_list[i].available()) {
2154 printf("%s not supported for this target\n",
2155 accel_list[i].name);
2156 } else {
2157 fprintf(stderr, "failed to initialize %s: %s\n",
2158 accel_list[i].name,
2159 strerror(-ret));
2160 }
2161 *(accel_list[i].allowed) = 0;
2162 } else {
2163 accel_initalised = 1;
2164 }
2165 break;
2166 }
2167 }
2168 if (i == ARRAY_SIZE(accel_list)) {
2169 fprintf(stderr, "\"%s\" accelerator does not exist.\n", buf);
2170 }
2171 }
2172
2173 if (!accel_initalised) {
2174 fprintf(stderr, "No accelerator found!\n");
2175 exit(1);
2176 }
2177
2178 if (init_failed) {
2179 fprintf(stderr, "Back to %s accelerator.\n", accel_list[i].name);
2180 }
2181
2182 return !accel_initalised;
2183 }
2184
2185 void qemu_add_exit_notifier(Notifier *notify)
2186 {
2187 notifier_list_add(&exit_notifiers, notify);
2188 }
2189
2190 void qemu_remove_exit_notifier(Notifier *notify)
2191 {
2192 notifier_list_remove(&exit_notifiers, notify);
2193 }
2194
2195 static void qemu_run_exit_notifiers(void)
2196 {
2197 notifier_list_notify(&exit_notifiers, NULL);
2198 }
2199
2200 void qemu_add_machine_init_done_notifier(Notifier *notify)
2201 {
2202 notifier_list_add(&machine_init_done_notifiers, notify);
2203 }
2204
2205 static void qemu_run_machine_init_done_notifiers(void)
2206 {
2207 notifier_list_notify(&machine_init_done_notifiers, NULL);
2208 }
2209
2210 static const QEMUOption *lookup_opt(int argc, char **argv,
2211 const char **poptarg, int *poptind)
2212 {
2213 const QEMUOption *popt;
2214 int optind = *poptind;
2215 char *r = argv[optind];
2216 const char *optarg;
2217
2218 loc_set_cmdline(argv, optind, 1);
2219 optind++;
2220 /* Treat --foo the same as -foo. */
2221 if (r[1] == '-')
2222 r++;
2223 popt = qemu_options;
2224 for(;;) {
2225 if (!popt->name) {
2226 error_report("invalid option");
2227 exit(1);
2228 }
2229 if (!strcmp(popt->name, r + 1))
2230 break;
2231 popt++;
2232 }
2233 if (popt->flags & HAS_ARG) {
2234 if (optind >= argc) {
2235 error_report("requires an argument");
2236 exit(1);
2237 }
2238 optarg = argv[optind++];
2239 loc_set_cmdline(argv, optind - 2, 2);
2240 } else {
2241 optarg = NULL;
2242 }
2243
2244 *poptarg = optarg;
2245 *poptind = optind;
2246
2247 return popt;
2248 }
2249
2250 static gpointer malloc_and_trace(gsize n_bytes)
2251 {
2252 void *ptr = malloc(n_bytes);
2253 trace_g_malloc(n_bytes, ptr);
2254 return ptr;
2255 }
2256
2257 static gpointer realloc_and_trace(gpointer mem, gsize n_bytes)
2258 {
2259 void *ptr = realloc(mem, n_bytes);
2260 trace_g_realloc(mem, n_bytes, ptr);
2261 return ptr;
2262 }
2263
2264 static void free_and_trace(gpointer mem)
2265 {
2266 trace_g_free(mem);
2267 free(mem);
2268 }
2269
2270 int main(int argc, char **argv, char **envp)
2271 {
2272 const char *gdbstub_dev = NULL;
2273 int i;
2274 int snapshot, linux_boot;
2275 const char *icount_option = NULL;
2276 const char *initrd_filename;
2277 const char *kernel_filename, *kernel_cmdline;
2278 char boot_devices[33] = "cad"; /* default to HD->floppy->CD-ROM */
2279 DisplayState *ds;
2280 DisplayChangeListener *dcl;
2281 int cyls, heads, secs, translation;
2282 QemuOpts *hda_opts = NULL, *opts;
2283 QemuOptsList *olist;
2284 int optind;
2285 const char *optarg;
2286 const char *loadvm = NULL;
2287 QEMUMachine *machine;
2288 const char *cpu_model;
2289 const char *pid_file = NULL;
2290 const char *incoming = NULL;
2291 #ifdef CONFIG_VNC
2292 int show_vnc_port = 0;
2293 #endif
2294 int defconfig = 1;
2295 const char *log_mask = NULL;
2296 const char *log_file = NULL;
2297 GMemVTable mem_trace = {
2298 .malloc = malloc_and_trace,
2299 .realloc = realloc_and_trace,
2300 .free = free_and_trace,
2301 };
2302 const char *trace_events = NULL;
2303 const char *trace_file = NULL;
2304
2305 atexit(qemu_run_exit_notifiers);
2306 error_set_progname(argv[0]);
2307
2308 g_mem_set_vtable(&mem_trace);
2309 g_thread_init(NULL);
2310
2311 runstate_init();
2312
2313 init_clocks();
2314 rtc_clock = host_clock;
2315
2316 qemu_cache_utils_init(envp);
2317
2318 QLIST_INIT (&vm_change_state_head);
2319 os_setup_early_signal_handling();
2320
2321 module_call_init(MODULE_INIT_MACHINE);
2322 machine = find_default_machine();
2323 cpu_model = NULL;
2324 initrd_filename = NULL;
2325 ram_size = 0;
2326 snapshot = 0;
2327 kernel_filename = NULL;
2328 kernel_cmdline = "";
2329 cyls = heads = secs = 0;
2330 translation = BIOS_ATA_TRANSLATION_AUTO;
2331
2332 for (i = 0; i < MAX_NODES; i++) {
2333 node_mem[i] = 0;
2334 node_cpumask[i] = 0;
2335 }
2336
2337 nb_numa_nodes = 0;
2338 nb_nics = 0;
2339
2340 autostart= 1;
2341
2342 /* first pass of option parsing */
2343 optind = 1;
2344 while (optind < argc) {
2345 if (argv[optind][0] != '-') {
2346 /* disk image */
2347 optind++;
2348 continue;
2349 } else {
2350 const QEMUOption *popt;
2351
2352 popt = lookup_opt(argc, argv, &optarg, &optind);
2353 switch (popt->index) {
2354 case QEMU_OPTION_nodefconfig:
2355 defconfig=0;
2356 break;
2357 }
2358 }
2359 }
2360
2361 if (defconfig) {
2362 int ret;
2363
2364 ret = qemu_read_config_file(CONFIG_QEMU_CONFDIR "/qemu.conf");
2365 if (ret < 0 && ret != -ENOENT) {
2366 exit(1);
2367 }
2368
2369 ret = qemu_read_config_file(arch_config_name);
2370 if (ret < 0 && ret != -ENOENT) {
2371 exit(1);
2372 }
2373 }
2374 cpudef_init();
2375
2376 /* second pass of option parsing */
2377 optind = 1;
2378 for(;;) {
2379 if (optind >= argc)
2380 break;
2381 if (argv[optind][0] != '-') {
2382 hda_opts = drive_add(IF_DEFAULT, 0, argv[optind++], HD_OPTS);
2383 } else {
2384 const QEMUOption *popt;
2385
2386 popt = lookup_opt(argc, argv, &optarg, &optind);
2387 if (!(popt->arch_mask & arch_type)) {
2388 printf("Option %s not supported for this target\n", popt->name);
2389 exit(1);
2390 }
2391 switch(popt->index) {
2392 case QEMU_OPTION_M:
2393 machine = machine_parse(optarg);
2394 break;
2395 case QEMU_OPTION_cpu:
2396 /* hw initialization will check this */
2397 if (*optarg == '?') {
2398 list_cpus(stdout, &fprintf, optarg);
2399 exit(0);
2400 } else {
2401 cpu_model = optarg;
2402 }
2403 break;
2404 case QEMU_OPTION_initrd:
2405 initrd_filename = optarg;
2406 break;
2407 case QEMU_OPTION_hda:
2408 {
2409 char buf[256];
2410 if (cyls == 0)
2411 snprintf(buf, sizeof(buf), "%s", HD_OPTS);
2412 else
2413 snprintf(buf, sizeof(buf),
2414 "%s,cyls=%d,heads=%d,secs=%d%s",
2415 HD_OPTS , cyls, heads, secs,
2416 translation == BIOS_ATA_TRANSLATION_LBA ?
2417 ",trans=lba" :
2418 translation == BIOS_ATA_TRANSLATION_NONE ?
2419 ",trans=none" : "");
2420 drive_add(IF_DEFAULT, 0, optarg, buf);
2421 break;
2422 }
2423 case QEMU_OPTION_hdb:
2424 case QEMU_OPTION_hdc:
2425 case QEMU_OPTION_hdd:
2426 drive_add(IF_DEFAULT, popt->index - QEMU_OPTION_hda, optarg,
2427 HD_OPTS);
2428 break;
2429 case QEMU_OPTION_drive:
2430 if (drive_def(optarg) == NULL) {
2431 exit(1);
2432 }
2433 break;
2434 case QEMU_OPTION_set:
2435 if (qemu_set_option(optarg) != 0)
2436 exit(1);
2437 break;
2438 case QEMU_OPTION_global:
2439 if (qemu_global_option(optarg) != 0)
2440 exit(1);
2441 break;
2442 case QEMU_OPTION_mtdblock:
2443 drive_add(IF_MTD, -1, optarg, MTD_OPTS);
2444 break;
2445 case QEMU_OPTION_sd:
2446 drive_add(IF_SD, 0, optarg, SD_OPTS);
2447 break;
2448 case QEMU_OPTION_pflash:
2449 drive_add(IF_PFLASH, -1, optarg, PFLASH_OPTS);
2450 break;
2451 case QEMU_OPTION_snapshot:
2452 snapshot = 1;
2453 break;
2454 case QEMU_OPTION_hdachs:
2455 {
2456 const char *p;
2457 p = optarg;
2458 cyls = strtol(p, (char **)&p, 0);
2459 if (cyls < 1 || cyls > 16383)
2460 goto chs_fail;
2461 if (*p != ',')
2462 goto chs_fail;
2463 p++;
2464 heads = strtol(p, (char **)&p, 0);
2465 if (heads < 1 || heads > 16)
2466 goto chs_fail;
2467 if (*p != ',')
2468 goto chs_fail;
2469 p++;
2470 secs = strtol(p, (char **)&p, 0);
2471 if (secs < 1 || secs > 63)
2472 goto chs_fail;
2473 if (*p == ',') {
2474 p++;
2475 if (!strcmp(p, "none"))
2476 translation = BIOS_ATA_TRANSLATION_NONE;
2477 else if (!strcmp(p, "lba"))
2478 translation = BIOS_ATA_TRANSLATION_LBA;
2479 else if (!strcmp(p, "auto"))
2480 translation = BIOS_ATA_TRANSLATION_AUTO;
2481 else
2482 goto chs_fail;
2483 } else if (*p != '\0') {
2484 chs_fail:
2485 fprintf(stderr, "qemu: invalid physical CHS format\n");
2486 exit(1);
2487 }
2488 if (hda_opts != NULL) {
2489 char num[16];
2490 snprintf(num, sizeof(num), "%d", cyls);
2491 qemu_opt_set(hda_opts, "cyls", num);
2492 snprintf(num, sizeof(num), "%d", heads);
2493 qemu_opt_set(hda_opts, "heads", num);
2494 snprintf(num, sizeof(num), "%d", secs);
2495 qemu_opt_set(hda_opts, "secs", num);
2496 if (translation == BIOS_ATA_TRANSLATION_LBA)
2497 qemu_opt_set(hda_opts, "trans", "lba");
2498 if (translation == BIOS_ATA_TRANSLATION_NONE)
2499 qemu_opt_set(hda_opts, "trans", "none");
2500 }
2501 }
2502 break;
2503 case QEMU_OPTION_numa:
2504 if (nb_numa_nodes >= MAX_NODES) {
2505 fprintf(stderr, "qemu: too many NUMA nodes\n");
2506 exit(1);
2507 }
2508 numa_add(optarg);
2509 break;
2510 case QEMU_OPTION_display:
2511 display_type = select_display(optarg);
2512 break;
2513 case QEMU_OPTION_nographic:
2514 display_type = DT_NOGRAPHIC;
2515 break;
2516 case QEMU_OPTION_curses:
2517 #ifdef CONFIG_CURSES
2518 display_type = DT_CURSES;
2519 #else
2520 fprintf(stderr, "Curses support is disabled\n");
2521 exit(1);
2522 #endif
2523 break;
2524 case QEMU_OPTION_portrait:
2525 graphic_rotate = 90;
2526 break;
2527 case QEMU_OPTION_rotate:
2528 graphic_rotate = strtol(optarg, (char **) &optarg, 10);
2529 if (graphic_rotate != 0 && graphic_rotate != 90 &&
2530 graphic_rotate != 180 && graphic_rotate != 270) {
2531 fprintf(stderr,
2532 "qemu: only 90, 180, 270 deg rotation is available\n");
2533 exit(1);
2534 }
2535 break;
2536 case QEMU_OPTION_kernel:
2537 kernel_filename = optarg;
2538 break;
2539 case QEMU_OPTION_append:
2540 kernel_cmdline = optarg;
2541 break;
2542 case QEMU_OPTION_cdrom:
2543 drive_add(IF_DEFAULT, 2, optarg, CDROM_OPTS);
2544 break;
2545 case QEMU_OPTION_boot:
2546 {
2547 static const char * const params[] = {
2548 "order", "once", "menu",
2549 "splash", "splash-time", NULL
2550 };
2551 char buf[sizeof(boot_devices)];
2552 char *standard_boot_devices;
2553 int legacy = 0;
2554
2555 if (!strchr(optarg, '=')) {
2556 legacy = 1;
2557 pstrcpy(buf, sizeof(buf), optarg);
2558 } else if (check_params(buf, sizeof(buf), params, optarg) < 0) {
2559 fprintf(stderr,
2560 "qemu: unknown boot parameter '%s' in '%s'\n",
2561 buf, optarg);
2562 exit(1);
2563 }
2564
2565 if (legacy ||
2566 get_param_value(buf, sizeof(buf), "order", optarg)) {
2567 validate_bootdevices(buf);
2568 pstrcpy(boot_devices, sizeof(boot_devices), buf);
2569 }
2570 if (!legacy) {
2571 if (get_param_value(buf, sizeof(buf),
2572 "once", optarg)) {
2573 validate_bootdevices(buf);
2574 standard_boot_devices = g_strdup(boot_devices);
2575 pstrcpy(boot_devices, sizeof(boot_devices), buf);
2576 qemu_register_reset(restore_boot_devices,
2577 standard_boot_devices);
2578 }
2579 if (get_param_value(buf, sizeof(buf),
2580 "menu", optarg)) {
2581 if (!strcmp(buf, "on")) {
2582 boot_menu = 1;
2583 } else if (!strcmp(buf, "off")) {
2584 boot_menu = 0;
2585 } else {
2586 fprintf(stderr,
2587 "qemu: invalid option value '%s'\n",
2588 buf);
2589 exit(1);
2590 }
2591 }
2592 qemu_opts_parse(qemu_find_opts("boot-opts"),
2593 optarg, 0);
2594 }
2595 }
2596 break;
2597 case QEMU_OPTION_fda:
2598 case QEMU_OPTION_fdb:
2599 drive_add(IF_FLOPPY, popt->index - QEMU_OPTION_fda,
2600 optarg, FD_OPTS);
2601 break;
2602 case QEMU_OPTION_no_fd_bootchk:
2603 fd_bootchk = 0;
2604 break;
2605 case QEMU_OPTION_netdev:
2606 if (net_client_parse(qemu_find_opts("netdev"), optarg) == -1) {
2607 exit(1);
2608 }
2609 break;
2610 case QEMU_OPTION_net:
2611 if (net_client_parse(qemu_find_opts("net"), optarg) == -1) {
2612 exit(1);
2613 }
2614 break;
2615 #ifdef CONFIG_SLIRP
2616 case QEMU_OPTION_tftp:
2617 legacy_tftp_prefix = optarg;
2618 break;
2619 case QEMU_OPTION_bootp:
2620 legacy_bootp_filename = optarg;
2621 break;
2622 case QEMU_OPTION_redir:
2623 if (net_slirp_redir(optarg) < 0)
2624 exit(1);
2625 break;
2626 #endif
2627 case QEMU_OPTION_bt:
2628 add_device_config(DEV_BT, optarg);
2629 break;
2630 case QEMU_OPTION_audio_help:
2631 if (!(audio_available())) {
2632 printf("Option %s not supported for this target\n", popt->name);
2633 exit(1);
2634 }
2635 AUD_help ();
2636 exit (0);
2637 break;
2638 case QEMU_OPTION_soundhw:
2639 if (!(audio_available())) {
2640 printf("Option %s not supported for this target\n", popt->name);
2641 exit(1);
2642 }
2643 select_soundhw (optarg);
2644 break;
2645 case QEMU_OPTION_h:
2646 help(0);
2647 break;
2648 case QEMU_OPTION_version:
2649 version();
2650 exit(0);
2651 break;
2652 case QEMU_OPTION_m: {
2653 int64_t value;
2654
2655 value = strtosz(optarg, NULL);
2656 if (value < 0) {
2657 fprintf(stderr, "qemu: invalid ram size: %s\n", optarg);
2658 exit(1);
2659 }
2660
2661 if (value != (uint64_t)(ram_addr_t)value) {
2662 fprintf(stderr, "qemu: ram size too large\n");
2663 exit(1);
2664 }
2665 ram_size = value;
2666 break;
2667 }
2668 case QEMU_OPTION_mempath:
2669 mem_path = optarg;
2670 break;
2671 #ifdef MAP_POPULATE
2672 case QEMU_OPTION_mem_prealloc:
2673 mem_prealloc = 1;
2674 break;
2675 #endif
2676 case QEMU_OPTION_d:
2677 log_mask = optarg;
2678 break;
2679 case QEMU_OPTION_D:
2680 log_file = optarg;
2681 break;
2682 case QEMU_OPTION_s:
2683 gdbstub_dev = "tcp::" DEFAULT_GDBSTUB_PORT;
2684 break;
2685 case QEMU_OPTION_gdb:
2686 gdbstub_dev = optarg;
2687 break;
2688 case QEMU_OPTION_L:
2689 data_dir = optarg;
2690 break;
2691 case QEMU_OPTION_bios:
2692 bios_name = optarg;
2693 break;
2694 case QEMU_OPTION_singlestep:
2695 singlestep = 1;
2696 break;
2697 case QEMU_OPTION_S:
2698 autostart = 0;
2699 break;
2700 case QEMU_OPTION_k:
2701 keyboard_layout = optarg;
2702 break;
2703 case QEMU_OPTION_localtime:
2704 rtc_utc = 0;
2705 break;
2706 case QEMU_OPTION_vga:
2707 select_vgahw (optarg);
2708 break;
2709 case QEMU_OPTION_g:
2710 {
2711 const char *p;
2712 int w, h, depth;
2713 p = optarg;
2714 w = strtol(p, (char **)&p, 10);
2715 if (w <= 0) {
2716 graphic_error:
2717 fprintf(stderr, "qemu: invalid resolution or depth\n");
2718 exit(1);
2719 }
2720 if (*p != 'x')
2721 goto graphic_error;
2722 p++;
2723 h = strtol(p, (char **)&p, 10);
2724 if (h <= 0)
2725 goto graphic_error;
2726 if (*p == 'x') {
2727 p++;
2728 depth = strtol(p, (char **)&p, 10);
2729 if (depth != 8 && depth != 15 && depth != 16 &&
2730 depth != 24 && depth != 32)
2731 goto graphic_error;
2732 } else if (*p == '\0') {
2733 depth = graphic_depth;
2734 } else {
2735 goto graphic_error;
2736 }
2737
2738 graphic_width = w;
2739 graphic_height = h;
2740 graphic_depth = depth;
2741 }
2742 break;
2743 case QEMU_OPTION_echr:
2744 {
2745 char *r;
2746 term_escape_char = strtol(optarg, &r, 0);
2747 if (r == optarg)
2748 printf("Bad argument to echr\n");
2749 break;
2750 }
2751 case QEMU_OPTION_monitor:
2752 monitor_parse(optarg, "readline");
2753 default_monitor = 0;
2754 break;
2755 case QEMU_OPTION_qmp:
2756 monitor_parse(optarg, "control");
2757 default_monitor = 0;
2758 break;
2759 case QEMU_OPTION_mon:
2760 opts = qemu_opts_parse(qemu_find_opts("mon"), optarg, 1);
2761 if (!opts) {
2762 exit(1);
2763 }
2764 default_monitor = 0;
2765 break;
2766 case QEMU_OPTION_chardev:
2767 opts = qemu_opts_parse(qemu_find_opts("chardev"), optarg, 1);
2768 if (!opts) {
2769 exit(1);
2770 }
2771 break;
2772 case QEMU_OPTION_fsdev:
2773 olist = qemu_find_opts("fsdev");
2774 if (!olist) {
2775 fprintf(stderr, "fsdev is not supported by this qemu build.\n");
2776 exit(1);
2777 }
2778 opts = qemu_opts_parse(olist, optarg, 1);
2779 if (!opts) {
2780 fprintf(stderr, "parse error: %s\n", optarg);
2781 exit(1);
2782 }
2783 break;
2784 case QEMU_OPTION_virtfs: {
2785 QemuOpts *fsdev;
2786 QemuOpts *device;
2787 const char *writeout;
2788
2789 olist = qemu_find_opts("virtfs");
2790 if (!olist) {
2791 fprintf(stderr, "virtfs is not supported by this qemu build.\n");
2792 exit(1);
2793 }
2794 opts = qemu_opts_parse(olist, optarg, 1);
2795 if (!opts) {
2796 fprintf(stderr, "parse error: %s\n", optarg);
2797 exit(1);
2798 }
2799
2800 if (qemu_opt_get(opts, "fsdriver") == NULL ||
2801 qemu_opt_get(opts, "mount_tag") == NULL ||
2802 qemu_opt_get(opts, "path") == NULL) {
2803 fprintf(stderr, "Usage: -virtfs fsdriver,path=/share_path/,"
2804 "[security_model={mapped|passthrough|none}],"
2805 "mount_tag=tag.\n");
2806 exit(1);
2807 }
2808 fsdev = qemu_opts_create(qemu_find_opts("fsdev"),
2809 qemu_opt_get(opts, "mount_tag"), 1);
2810 if (!fsdev) {
2811 fprintf(stderr, "duplicate fsdev id: %s\n",
2812 qemu_opt_get(opts, "mount_tag"));
2813 exit(1);
2814 }
2815
2816 writeout = qemu_opt_get(opts, "writeout");
2817 if (writeout) {
2818 #ifdef CONFIG_SYNC_FILE_RANGE
2819 qemu_opt_set(fsdev, "writeout", writeout);
2820 #else
2821 fprintf(stderr, "writeout=immediate not supported on "
2822 "this platform\n");
2823 exit(1);
2824 #endif
2825 }
2826 qemu_opt_set(fsdev, "fsdriver", qemu_opt_get(opts, "fsdriver"));
2827 qemu_opt_set(fsdev, "path", qemu_opt_get(opts, "path"));
2828 qemu_opt_set(fsdev, "security_model",
2829 qemu_opt_get(opts, "security_model"));
2830
2831 device = qemu_opts_create(qemu_find_opts("device"), NULL, 0);
2832 qemu_opt_set(device, "driver", "virtio-9p-pci");
2833 qemu_opt_set(device, "fsdev",
2834 qemu_opt_get(opts, "mount_tag"));
2835 qemu_opt_set(device, "mount_tag",
2836 qemu_opt_get(opts, "mount_tag"));
2837 break;
2838 }
2839 case QEMU_OPTION_serial:
2840 add_device_config(DEV_SERIAL, optarg);
2841 default_serial = 0;
2842 if (strncmp(optarg, "mon:", 4) == 0) {
2843 default_monitor = 0;
2844 }
2845 break;
2846 case QEMU_OPTION_watchdog:
2847 if (watchdog) {
2848 fprintf(stderr,
2849 "qemu: only one watchdog option may be given\n");
2850 return 1;
2851 }
2852 watchdog = optarg;
2853 break;
2854 case QEMU_OPTION_watchdog_action:
2855 if (select_watchdog_action(optarg) == -1) {
2856 fprintf(stderr, "Unknown -watchdog-action parameter\n");
2857 exit(1);
2858 }
2859 break;
2860 case QEMU_OPTION_virtiocon:
2861 add_device_config(DEV_VIRTCON, optarg);
2862 default_virtcon = 0;
2863 if (strncmp(optarg, "mon:", 4) == 0) {
2864 default_monitor = 0;
2865 }
2866 break;
2867 case QEMU_OPTION_parallel:
2868 add_device_config(DEV_PARALLEL, optarg);
2869 default_parallel = 0;
2870 if (strncmp(optarg, "mon:", 4) == 0) {
2871 default_monitor = 0;
2872 }
2873 break;
2874 case QEMU_OPTION_debugcon:
2875 add_device_config(DEV_DEBUGCON, optarg);
2876 break;
2877 case QEMU_OPTION_loadvm:
2878 loadvm = optarg;
2879 break;
2880 case QEMU_OPTION_full_screen:
2881 full_screen = 1;
2882 break;
2883 #ifdef CONFIG_SDL
2884 case QEMU_OPTION_no_frame:
2885 no_frame = 1;
2886 break;
2887 case QEMU_OPTION_alt_grab:
2888 alt_grab = 1;
2889 break;
2890 case QEMU_OPTION_ctrl_grab:
2891 ctrl_grab = 1;
2892 break;
2893 case QEMU_OPTION_no_quit:
2894 no_quit = 1;
2895 break;
2896 case QEMU_OPTION_sdl:
2897 display_type = DT_SDL;
2898 break;
2899 #else
2900 case QEMU_OPTION_no_frame:
2901 case QEMU_OPTION_alt_grab:
2902 case QEMU_OPTION_ctrl_grab:
2903 case QEMU_OPTION_no_quit:
2904 case QEMU_OPTION_sdl:
2905 fprintf(stderr, "SDL support is disabled\n");
2906 exit(1);
2907 #endif
2908 case QEMU_OPTION_pidfile:
2909 pid_file = optarg;
2910 break;
2911 case QEMU_OPTION_win2k_hack:
2912 win2k_install_hack = 1;
2913 break;
2914 case QEMU_OPTION_rtc_td_hack:
2915 rtc_td_hack = 1;
2916 break;
2917 case QEMU_OPTION_acpitable:
2918 do_acpitable_option(optarg);
2919 break;
2920 case QEMU_OPTION_smbios:
2921 do_smbios_option(optarg);
2922 break;
2923 case QEMU_OPTION_enable_kvm:
2924 olist = qemu_find_opts("machine");
2925 qemu_opts_reset(olist);
2926 qemu_opts_parse(olist, "accel=kvm", 0);
2927 break;
2928 case QEMU_OPTION_machine:
2929 olist = qemu_find_opts("machine");
2930 qemu_opts_reset(olist);
2931 opts = qemu_opts_parse(olist, optarg, 1);
2932 if (!opts) {
2933 fprintf(stderr, "parse error: %s\n", optarg);
2934 exit(1);
2935 }
2936 optarg = qemu_opt_get(opts, "type");
2937 if (optarg) {
2938 machine = machine_parse(optarg);
2939 }
2940 break;
2941 case QEMU_OPTION_usb:
2942 usb_enabled = 1;
2943 break;
2944 case QEMU_OPTION_usbdevice:
2945 usb_enabled = 1;
2946 add_device_config(DEV_USB, optarg);
2947 break;
2948 case QEMU_OPTION_device:
2949 if (!qemu_opts_parse(qemu_find_opts("device"), optarg, 1)) {
2950 exit(1);
2951 }
2952 break;
2953 case QEMU_OPTION_smp:
2954 smp_parse(optarg);
2955 if (smp_cpus < 1) {
2956 fprintf(stderr, "Invalid number of CPUs\n");
2957 exit(1);
2958 }
2959 if (max_cpus < smp_cpus) {
2960 fprintf(stderr, "maxcpus must be equal to or greater than "
2961 "smp\n");
2962 exit(1);
2963 }
2964 if (max_cpus > 255) {
2965 fprintf(stderr, "Unsupported number of maxcpus\n");
2966 exit(1);
2967 }
2968 break;
2969 case QEMU_OPTION_vnc:
2970 #ifdef CONFIG_VNC
2971 display_remote++;
2972 vnc_display = optarg;
2973 #else
2974 fprintf(stderr, "VNC support is disabled\n");
2975 exit(1);
2976 #endif
2977 break;
2978 case QEMU_OPTION_no_acpi:
2979 acpi_enabled = 0;
2980 break;
2981 case QEMU_OPTION_no_hpet:
2982 no_hpet = 1;
2983 break;
2984 case QEMU_OPTION_balloon:
2985 if (balloon_parse(optarg) < 0) {
2986 fprintf(stderr, "Unknown -balloon argument %s\n", optarg);
2987 exit(1);
2988 }
2989 break;
2990 case QEMU_OPTION_no_reboot:
2991 no_reboot = 1;
2992 break;
2993 case QEMU_OPTION_no_shutdown:
2994 no_shutdown = 1;
2995 break;
2996 case QEMU_OPTION_show_cursor:
2997 cursor_hide = 0;
2998 break;
2999 case QEMU_OPTION_uuid:
3000 if(qemu_uuid_parse(optarg, qemu_uuid) < 0) {
3001 fprintf(stderr, "Fail to parse UUID string."
3002 " Wrong format.\n");
3003 exit(1);
3004 }
3005 break;
3006 case QEMU_OPTION_option_rom:
3007 if (nb_option_roms >= MAX_OPTION_ROMS) {
3008 fprintf(stderr, "Too many option ROMs\n");
3009 exit(1);
3010 }
3011 opts = qemu_opts_parse(qemu_find_opts("option-rom"), optarg, 1);
3012 option_rom[nb_option_roms].name = qemu_opt_get(opts, "romfile");
3013 option_rom[nb_option_roms].bootindex =
3014 qemu_opt_get_number(opts, "bootindex", -1);
3015 if (!option_rom[nb_option_roms].name) {
3016 fprintf(stderr, "Option ROM file is not specified\n");
3017 exit(1);
3018 }
3019 nb_option_roms++;
3020 break;
3021 case QEMU_OPTION_semihosting:
3022 semihosting_enabled = 1;
3023 break;
3024 case QEMU_OPTION_name:
3025 qemu_name = g_strdup(optarg);
3026 {
3027 char *p = strchr(qemu_name, ',');
3028 if (p != NULL) {
3029 *p++ = 0;
3030 if (strncmp(p, "process=", 8)) {
3031 fprintf(stderr, "Unknown subargument %s to -name\n", p);
3032 exit(1);
3033 }
3034 p += 8;
3035 os_set_proc_name(p);
3036 }
3037 }
3038 break;
3039 case QEMU_OPTION_prom_env:
3040 if (nb_prom_envs >= MAX_PROM_ENVS) {
3041 fprintf(stderr, "Too many prom variables\n");
3042 exit(1);
3043 }
3044 prom_envs[nb_prom_envs] = optarg;
3045 nb_prom_envs++;
3046 break;
3047 case QEMU_OPTION_old_param:
3048 old_param = 1;
3049 break;
3050 case QEMU_OPTION_clock:
3051 configure_alarms(optarg);
3052 break;
3053 case QEMU_OPTION_startdate:
3054 configure_rtc_date_offset(optarg, 1);
3055 break;
3056 case QEMU_OPTION_rtc:
3057 opts = qemu_opts_parse(qemu_find_opts("rtc"), optarg, 0);
3058 if (!opts) {
3059 exit(1);
3060 }
3061 configure_rtc(opts);
3062 break;
3063 case QEMU_OPTION_tb_size:
3064 tcg_tb_size = strtol(optarg, NULL, 0);
3065 if (tcg_tb_size < 0) {
3066 tcg_tb_size = 0;
3067 }
3068 break;
3069 case QEMU_OPTION_icount:
3070 icount_option = optarg;
3071 break;
3072 case QEMU_OPTION_incoming:
3073 incoming = optarg;
3074 break;
3075 case QEMU_OPTION_nodefaults:
3076 default_serial = 0;
3077 default_parallel = 0;
3078 default_virtcon = 0;
3079 default_monitor = 0;
3080 default_vga = 0;
3081 default_net = 0;
3082 default_floppy = 0;
3083 default_cdrom = 0;
3084 default_sdcard = 0;
3085 break;
3086 case QEMU_OPTION_xen_domid:
3087 if (!(xen_available())) {
3088 printf("Option %s not supported for this target\n", popt->name);
3089 exit(1);
3090 }
3091 xen_domid = atoi(optarg);
3092 break;
3093 case QEMU_OPTION_xen_create:
3094 if (!(xen_available())) {
3095 printf("Option %s not supported for this target\n", popt->name);
3096 exit(1);
3097 }
3098 xen_mode = XEN_CREATE;
3099 break;
3100 case QEMU_OPTION_xen_attach:
3101 if (!(xen_available())) {
3102 printf("Option %s not supported for this target\n", popt->name);
3103 exit(1);
3104 }
3105 xen_mode = XEN_ATTACH;
3106 break;
3107 case QEMU_OPTION_trace:
3108 {
3109 opts = qemu_opts_parse(qemu_find_opts("trace"), optarg, 0);
3110 if (!opts) {
3111 exit(1);
3112 }
3113 trace_events = qemu_opt_get(opts, "events");
3114 trace_file = qemu_opt_get(opts, "file");
3115 break;
3116 }
3117 case QEMU_OPTION_readconfig:
3118 {
3119 int ret = qemu_read_config_file(optarg);
3120 if (ret < 0) {
3121 fprintf(stderr, "read config %s: %s\n", optarg,
3122 strerror(-ret));
3123 exit(1);
3124 }
3125 break;
3126 }
3127 case QEMU_OPTION_spice:
3128 olist = qemu_find_opts("spice");
3129 if (!olist) {
3130 fprintf(stderr, "spice is not supported by this qemu build.\n");
3131 exit(1);
3132 }
3133 opts = qemu_opts_parse(olist, optarg, 0);
3134 if (!opts) {
3135 fprintf(stderr, "parse error: %s\n", optarg);
3136 exit(1);
3137 }
3138 break;
3139 case QEMU_OPTION_writeconfig:
3140 {
3141 FILE *fp;
3142 if (strcmp(optarg, "-") == 0) {
3143 fp = stdout;
3144 } else {
3145 fp = fopen(optarg, "w");
3146 if (fp == NULL) {
3147 fprintf(stderr, "open %s: %s\n", optarg, strerror(errno));
3148 exit(1);
3149 }
3150 }
3151 qemu_config_write(fp);
3152 fclose(fp);
3153 break;
3154 }
3155 default:
3156 os_parse_cmd_args(popt->index, optarg);
3157 }
3158 }
3159 }
3160 loc_set_none();
3161
3162 /* Open the logfile at this point, if necessary. We can't open the logfile
3163 * when encountering either of the logging options (-d or -D) because the
3164 * other one may be encountered later on the command line, changing the
3165 * location or level of logging.
3166 */
3167 if (log_mask) {
3168 if (log_file) {
3169 set_cpu_log_filename(log_file);
3170 }
3171 set_cpu_log(log_mask);
3172 }
3173
3174 if (!trace_backend_init(trace_events, trace_file)) {
3175 exit(1);
3176 }
3177
3178 /* If no data_dir is specified then try to find it relative to the
3179 executable path. */
3180 if (!data_dir) {
3181 data_dir = os_find_datadir(argv[0]);
3182 }
3183 /* If all else fails use the install path specified when building. */
3184 if (!data_dir) {
3185 data_dir = CONFIG_QEMU_DATADIR;
3186 }
3187
3188 /*
3189 * Default to max_cpus = smp_cpus, in case the user doesn't
3190 * specify a max_cpus value.
3191 */
3192 if (!max_cpus)
3193 max_cpus = smp_cpus;
3194
3195 machine->max_cpus = machine->max_cpus ?: 1; /* Default to UP */
3196 if (smp_cpus > machine->max_cpus) {
3197 fprintf(stderr, "Number of SMP cpus requested (%d), exceeds max cpus "
3198 "supported by machine `%s' (%d)\n", smp_cpus, machine->name,
3199 machine->max_cpus);
3200 exit(1);
3201 }
3202
3203 /*
3204 * Get the default machine options from the machine if it is not already
3205 * specified either by the configuration file or by the command line.
3206 */
3207 if (machine->default_machine_opts) {
3208 QemuOptsList *list = qemu_find_opts("machine");
3209 const char *p = NULL;
3210
3211 if (!QTAILQ_EMPTY(&list->head)) {
3212 p = qemu_opt_get(QTAILQ_FIRST(&list->head), "accel");
3213 }
3214 if (p == NULL) {
3215 qemu_opts_reset(list);
3216 opts = qemu_opts_parse(list, machine->default_machine_opts, 0);
3217 if (!opts) {
3218 fprintf(stderr, "parse error for machine %s: %s\n",
3219 machine->name, machine->default_machine_opts);
3220 exit(1);
3221 }
3222 }
3223 }
3224
3225 qemu_opts_foreach(qemu_find_opts("device"), default_driver_check, NULL, 0);
3226 qemu_opts_foreach(qemu_find_opts("global"), default_driver_check, NULL, 0);
3227
3228 if (machine->no_serial) {
3229 default_serial = 0;
3230 }
3231 if (machine->no_parallel) {
3232 default_parallel = 0;
3233 }
3234 if (!machine->use_virtcon) {
3235 default_virtcon = 0;
3236 }
3237 if (machine->no_vga) {
3238 default_vga = 0;
3239 }
3240 if (machine->no_floppy) {
3241 default_floppy = 0;
3242 }
3243 if (machine->no_cdrom) {
3244 default_cdrom = 0;
3245 }
3246 if (machine->no_sdcard) {
3247 default_sdcard = 0;
3248 }
3249
3250 if (display_type == DT_NOGRAPHIC) {
3251 if (default_parallel)
3252 add_device_config(DEV_PARALLEL, "null");
3253 if (default_serial && default_monitor) {
3254 add_device_config(DEV_SERIAL, "mon:stdio");
3255 } else if (default_virtcon && default_monitor) {
3256 add_device_config(DEV_VIRTCON, "mon:stdio");
3257 } else {
3258 if (default_serial)
3259 add_device_config(DEV_SERIAL, "stdio");
3260 if (default_virtcon)
3261 add_device_config(DEV_VIRTCON, "stdio");
3262 if (default_monitor)
3263 monitor_parse("stdio", "readline");
3264 }
3265 } else {
3266 if (default_serial)
3267 add_device_config(DEV_SERIAL, "vc:80Cx24C");
3268 if (default_parallel)
3269 add_device_config(DEV_PARALLEL, "vc:80Cx24C");
3270 if (default_monitor)
3271 monitor_parse("vc:80Cx24C", "readline");
3272 if (default_virtcon)
3273 add_device_config(DEV_VIRTCON, "vc:80Cx24C");
3274 }
3275 if (default_vga)
3276 vga_interface_type = VGA_CIRRUS;
3277
3278 socket_init();
3279
3280 if (qemu_opts_foreach(qemu_find_opts("chardev"), chardev_init_func, NULL, 1) != 0)
3281 exit(1);
3282 #ifdef CONFIG_VIRTFS
3283 if (qemu_opts_foreach(qemu_find_opts("fsdev"), fsdev_init_func, NULL, 1) != 0) {
3284 exit(1);
3285 }
3286 #endif
3287
3288 os_daemonize();
3289
3290 if (pid_file && qemu_create_pidfile(pid_file) != 0) {
3291 os_pidfile_error();
3292 exit(1);
3293 }
3294
3295 /* init the memory */
3296 if (ram_size == 0) {
3297 ram_size = DEFAULT_RAM_SIZE * 1024 * 1024;
3298 }
3299
3300 configure_accelerator();
3301
3302 if (qemu_init_main_loop()) {
3303 fprintf(stderr, "qemu_init_main_loop failed\n");
3304 exit(1);
3305 }
3306 linux_boot = (kernel_filename != NULL);
3307
3308 if (!linux_boot && *kernel_cmdline != '\0') {
3309 fprintf(stderr, "-append only allowed with -kernel option\n");
3310 exit(1);
3311 }
3312
3313 if (!linux_boot && initrd_filename != NULL) {
3314 fprintf(stderr, "-initrd only allowed with -kernel option\n");
3315 exit(1);
3316 }
3317
3318 os_set_line_buffering();
3319
3320 if (init_timer_alarm() < 0) {
3321 fprintf(stderr, "could not initialize alarm timer\n");
3322 exit(1);
3323 }
3324 configure_icount(icount_option);
3325
3326 if (net_init_clients() < 0) {
3327 exit(1);
3328 }
3329
3330 /* init the bluetooth world */
3331 if (foreach_device_config(DEV_BT, bt_parse))
3332 exit(1);
3333
3334 if (!xen_enabled()) {
3335 /* On 32-bit hosts, QEMU is limited by virtual address space */
3336 if (ram_size > (2047 << 20) && HOST_LONG_BITS == 32) {
3337 fprintf(stderr, "qemu: at most 2047 MB RAM can be simulated\n");
3338 exit(1);
3339 }
3340 }
3341
3342 cpu_exec_init_all();
3343
3344 bdrv_init_with_whitelist();
3345
3346 blk_mig_init();
3347
3348 /* open the virtual block devices */
3349 if (snapshot)
3350 qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot, NULL, 0);
3351 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func, &machine->use_scsi, 1) != 0)
3352 exit(1);
3353
3354 default_drive(default_cdrom, snapshot, machine->use_scsi,
3355 IF_DEFAULT, 2, CDROM_OPTS);
3356 default_drive(default_floppy, snapshot, machine->use_scsi,
3357 IF_FLOPPY, 0, FD_OPTS);
3358 default_drive(default_sdcard, snapshot, machine->use_scsi,
3359 IF_SD, 0, SD_OPTS);
3360
3361 register_savevm_live(NULL, "ram", 0, 4, NULL, ram_save_live, NULL,
3362 ram_load, NULL);
3363
3364 if (nb_numa_nodes > 0) {
3365 int i;
3366
3367 if (nb_numa_nodes > MAX_NODES) {
3368 nb_numa_nodes = MAX_NODES;
3369 }
3370
3371 /* If no memory size if given for any node, assume the default case
3372 * and distribute the available memory equally across all nodes
3373 */
3374 for (i = 0; i < nb_numa_nodes; i++) {
3375 if (node_mem[i] != 0)
3376 break;
3377 }
3378 if (i == nb_numa_nodes) {
3379 uint64_t usedmem = 0;
3380
3381 /* On Linux, the each node's border has to be 8MB aligned,
3382 * the final node gets the rest.
3383 */
3384 for (i = 0; i < nb_numa_nodes - 1; i++) {
3385 node_mem[i] = (ram_size / nb_numa_nodes) & ~((1 << 23UL) - 1);
3386 usedmem += node_mem[i];
3387 }
3388 node_mem[i] = ram_size - usedmem;
3389 }
3390
3391 for (i = 0; i < nb_numa_nodes; i++) {
3392 if (node_cpumask[i] != 0)
3393 break;
3394 }
3395 /* assigning the VCPUs round-robin is easier to implement, guest OSes
3396 * must cope with this anyway, because there are BIOSes out there in
3397 * real machines which also use this scheme.
3398 */
3399 if (i == nb_numa_nodes) {
3400 for (i = 0; i < smp_cpus; i++) {
3401 node_cpumask[i % nb_numa_nodes] |= 1 << i;
3402 }
3403 }
3404 }
3405
3406 if (qemu_opts_foreach(qemu_find_opts("mon"), mon_init_func, NULL, 1) != 0) {
3407 exit(1);
3408 }
3409
3410 if (foreach_device_config(DEV_SERIAL, serial_parse) < 0)
3411 exit(1);
3412 if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0)
3413 exit(1);
3414 if (foreach_device_config(DEV_VIRTCON, virtcon_parse) < 0)
3415 exit(1);
3416 if (foreach_device_config(DEV_DEBUGCON, debugcon_parse) < 0)
3417 exit(1);
3418
3419 module_call_init(MODULE_INIT_DEVICE);
3420
3421 if (qemu_opts_foreach(qemu_find_opts("device"), device_help_func, NULL, 0) != 0)
3422 exit(0);
3423
3424 if (watchdog) {
3425 i = select_watchdog(watchdog);
3426 if (i > 0)
3427 exit (i == 1 ? 1 : 0);
3428 }
3429
3430 if (machine->compat_props) {
3431 qdev_prop_register_global_list(machine->compat_props);
3432 }
3433 qemu_add_globals();
3434
3435 machine->init(ram_size, boot_devices,
3436 kernel_filename, kernel_cmdline, initrd_filename, cpu_model);
3437
3438 cpu_synchronize_all_post_init();
3439
3440 set_numa_modes();
3441
3442 current_machine = machine;
3443
3444 /* init USB devices */
3445 if (usb_enabled) {
3446 if (foreach_device_config(DEV_USB, usb_parse) < 0)
3447 exit(1);
3448 }
3449
3450 /* init generic devices */
3451 if (qemu_opts_foreach(qemu_find_opts("device"), device_init_func, NULL, 1) != 0)
3452 exit(1);
3453
3454 net_check_clients();
3455
3456 /* just use the first displaystate for the moment */
3457 ds = get_displaystate();
3458
3459 if (using_spice)
3460 display_remote++;
3461 if (display_type == DT_DEFAULT && !display_remote) {
3462 #if defined(CONFIG_SDL) || defined(CONFIG_COCOA)
3463 display_type = DT_SDL;
3464 #elif defined(CONFIG_VNC)
3465 vnc_display = "localhost:0,to=99";
3466 show_vnc_port = 1;
3467 #else
3468 display_type = DT_NONE;
3469 #endif
3470 }
3471
3472
3473 /* init local displays */
3474 switch (display_type) {
3475 case DT_NOGRAPHIC:
3476 break;
3477 #if defined(CONFIG_CURSES)
3478 case DT_CURSES:
3479 curses_display_init(ds, full_screen);
3480 break;
3481 #endif
3482 #if defined(CONFIG_SDL)
3483 case DT_SDL:
3484 sdl_display_init(ds, full_screen, no_frame);
3485 break;
3486 #elif defined(CONFIG_COCOA)
3487 case DT_SDL:
3488 cocoa_display_init(ds, full_screen);
3489 break;
3490 #endif
3491 default:
3492 break;
3493 }
3494
3495 /* must be after terminal init, SDL library changes signal handlers */
3496 os_setup_signal_handling();
3497
3498 #ifdef CONFIG_VNC
3499 /* init remote displays */
3500 if (vnc_display) {
3501 vnc_display_init(ds);
3502 if (vnc_display_open(ds, vnc_display) < 0)
3503 exit(1);
3504
3505 if (show_vnc_port) {
3506 printf("VNC server running on `%s'\n", vnc_display_local_addr(ds));
3507 }
3508 }
3509 #endif
3510 #ifdef CONFIG_SPICE
3511 if (using_spice && !qxl_enabled) {
3512 qemu_spice_display_init(ds);
3513 }
3514 #endif
3515
3516 /* display setup */
3517 dpy_resize(ds);
3518 dcl = ds->listeners;
3519 while (dcl != NULL) {
3520 if (dcl->dpy_refresh != NULL) {
3521 ds->gui_timer = qemu_new_timer_ms(rt_clock, gui_update, ds);
3522 qemu_mod_timer(ds->gui_timer, qemu_get_clock_ms(rt_clock));
3523 break;
3524 }
3525 dcl = dcl->next;
3526 }
3527 text_consoles_set_display(ds);
3528
3529 if (gdbstub_dev && gdbserver_start(gdbstub_dev) < 0) {
3530 fprintf(stderr, "qemu: could not open gdbserver on device '%s'\n",
3531 gdbstub_dev);
3532 exit(1);
3533 }
3534
3535 qdev_machine_creation_done();
3536
3537 if (rom_load_all() != 0) {
3538 fprintf(stderr, "rom loading failed\n");
3539 exit(1);
3540 }
3541
3542 /* TODO: once all bus devices are qdevified, this should be done
3543 * when bus is created by qdev.c */
3544 qemu_register_reset(qbus_reset_all_fn, sysbus_get_default());
3545 qemu_run_machine_init_done_notifiers();
3546
3547 qemu_system_reset(VMRESET_SILENT);
3548 if (loadvm) {
3549 if (load_vmstate(loadvm) < 0) {
3550 autostart = 0;
3551 }
3552 }
3553
3554 if (incoming) {
3555 runstate_set(RUN_STATE_INMIGRATE);
3556 int ret = qemu_start_incoming_migration(incoming);
3557 if (ret < 0) {
3558 fprintf(stderr, "Migration failed. Exit code %s(%d), exiting.\n",
3559 incoming, ret);
3560 exit(ret);
3561 }
3562 } else if (autostart) {
3563 vm_start();
3564 }
3565
3566 os_setup_post();
3567
3568 main_loop();
3569 net_cleanup();
3570 res_free();
3571
3572 return 0;
3573 }