]> git.proxmox.com Git - mirror_qemu.git/blob - vl.c
Merge remote-tracking branch 'remotes/bonzini/tags/for-upstream' into staging
[mirror_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
31 #include "config-host.h"
32
33 #ifdef CONFIG_SECCOMP
34 #include "sysemu/seccomp.h"
35 #endif
36
37 #if defined(CONFIG_VDE)
38 #include <libvdeplug.h>
39 #endif
40
41 #ifdef CONFIG_SDL
42 #if defined(__APPLE__) || defined(main)
43 #include <SDL.h>
44 int qemu_main(int argc, char **argv, char **envp);
45 int main(int argc, char **argv)
46 {
47 return qemu_main(argc, argv, NULL);
48 }
49 #undef main
50 #define main qemu_main
51 #endif
52 #endif /* CONFIG_SDL */
53
54 #ifdef CONFIG_COCOA
55 #undef main
56 #define main qemu_main
57 #endif /* CONFIG_COCOA */
58
59 #include <glib.h>
60
61 #include "qemu/sockets.h"
62 #include "hw/hw.h"
63 #include "hw/boards.h"
64 #include "sysemu/accel.h"
65 #include "hw/usb.h"
66 #include "hw/i386/pc.h"
67 #include "hw/isa/isa.h"
68 #include "hw/bt.h"
69 #include "sysemu/watchdog.h"
70 #include "hw/i386/smbios.h"
71 #include "hw/xen/xen.h"
72 #include "hw/qdev.h"
73 #include "hw/loader.h"
74 #include "monitor/qdev.h"
75 #include "sysemu/bt.h"
76 #include "net/net.h"
77 #include "net/slirp.h"
78 #include "monitor/monitor.h"
79 #include "ui/console.h"
80 #include "sysemu/sysemu.h"
81 #include "sysemu/numa.h"
82 #include "exec/gdbstub.h"
83 #include "qemu/timer.h"
84 #include "sysemu/char.h"
85 #include "qemu/bitmap.h"
86 #include "sysemu/blockdev.h"
87 #include "hw/block/block.h"
88 #include "migration/block.h"
89 #include "sysemu/tpm.h"
90 #include "sysemu/dma.h"
91 #include "audio/audio.h"
92 #include "migration/migration.h"
93 #include "sysemu/kvm.h"
94 #include "qapi/qmp/qjson.h"
95 #include "qemu/option.h"
96 #include "qemu/config-file.h"
97 #include "qemu-options.h"
98 #include "qmp-commands.h"
99 #include "qemu/main-loop.h"
100 #ifdef CONFIG_VIRTFS
101 #include "fsdev/qemu-fsdev.h"
102 #endif
103 #include "sysemu/qtest.h"
104
105 #include "disas/disas.h"
106
107
108 #include "slirp/libslirp.h"
109
110 #include "trace.h"
111 #include "trace/control.h"
112 #include "qemu/queue.h"
113 #include "sysemu/cpus.h"
114 #include "sysemu/arch_init.h"
115 #include "qemu/osdep.h"
116
117 #include "ui/qemu-spice.h"
118 #include "qapi/string-input-visitor.h"
119 #include "qapi/opts-visitor.h"
120 #include "qom/object_interfaces.h"
121 #include "qapi-event.h"
122 #include "exec/semihost.h"
123
124 #define MAX_VIRTIO_CONSOLES 1
125 #define MAX_SCLP_CONSOLES 1
126
127 static const char *data_dir[16];
128 static int data_dir_idx;
129 const char *bios_name = NULL;
130 enum vga_retrace_method vga_retrace_method = VGA_RETRACE_DUMB;
131 DisplayType display_type = DT_DEFAULT;
132 int request_opengl = -1;
133 int display_opengl;
134 static int display_remote;
135 const char* keyboard_layout = NULL;
136 ram_addr_t ram_size;
137 const char *mem_path = NULL;
138 int mem_prealloc = 0; /* force preallocation of physical target memory */
139 bool enable_mlock = false;
140 int nb_nics;
141 NICInfo nd_table[MAX_NICS];
142 int autostart;
143 static int rtc_utc = 1;
144 static int rtc_date_offset = -1; /* -1 means no change */
145 QEMUClockType rtc_clock;
146 int vga_interface_type = VGA_NONE;
147 static int full_screen = 0;
148 static int no_frame = 0;
149 int no_quit = 0;
150 #ifdef CONFIG_GTK
151 static bool grab_on_hover;
152 #endif
153 CharDriverState *serial_hds[MAX_SERIAL_PORTS];
154 CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
155 CharDriverState *virtcon_hds[MAX_VIRTIO_CONSOLES];
156 CharDriverState *sclp_hds[MAX_SCLP_CONSOLES];
157 int win2k_install_hack = 0;
158 int singlestep = 0;
159 int smp_cpus = 1;
160 int max_cpus = 0;
161 int smp_cores = 1;
162 int smp_threads = 1;
163 int acpi_enabled = 1;
164 int no_hpet = 0;
165 int fd_bootchk = 1;
166 static int no_reboot;
167 int no_shutdown = 0;
168 int cursor_hide = 1;
169 int graphic_rotate = 0;
170 const char *watchdog;
171 QEMUOptionRom option_rom[MAX_OPTION_ROMS];
172 int nb_option_roms;
173 int old_param = 0;
174 const char *qemu_name;
175 int alt_grab = 0;
176 int ctrl_grab = 0;
177 unsigned int nb_prom_envs = 0;
178 const char *prom_envs[MAX_PROM_ENVS];
179 int boot_menu;
180 bool boot_strict;
181 uint8_t *boot_splash_filedata;
182 size_t boot_splash_filedata_size;
183 uint8_t qemu_extra_params_fw[2];
184
185 int icount_align_option;
186
187 /* The bytes in qemu_uuid[] are in the order specified by RFC4122, _not_ in the
188 * little-endian "wire format" described in the SMBIOS 2.6 specification.
189 */
190 uint8_t qemu_uuid[16];
191 bool qemu_uuid_set;
192
193 static NotifierList exit_notifiers =
194 NOTIFIER_LIST_INITIALIZER(exit_notifiers);
195
196 static NotifierList machine_init_done_notifiers =
197 NOTIFIER_LIST_INITIALIZER(machine_init_done_notifiers);
198
199 bool xen_allowed;
200 uint32_t xen_domid;
201 enum xen_mode xen_mode = XEN_EMULATE;
202
203 static int has_defaults = 1;
204 static int default_serial = 1;
205 static int default_parallel = 1;
206 static int default_virtcon = 1;
207 static int default_sclp = 1;
208 static int default_monitor = 1;
209 static int default_floppy = 1;
210 static int default_cdrom = 1;
211 static int default_sdcard = 1;
212 static int default_vga = 1;
213
214 static struct {
215 const char *driver;
216 int *flag;
217 } default_list[] = {
218 { .driver = "isa-serial", .flag = &default_serial },
219 { .driver = "isa-parallel", .flag = &default_parallel },
220 { .driver = "isa-fdc", .flag = &default_floppy },
221 { .driver = "ide-cd", .flag = &default_cdrom },
222 { .driver = "ide-hd", .flag = &default_cdrom },
223 { .driver = "ide-drive", .flag = &default_cdrom },
224 { .driver = "scsi-cd", .flag = &default_cdrom },
225 { .driver = "virtio-serial-pci", .flag = &default_virtcon },
226 { .driver = "virtio-serial-s390", .flag = &default_virtcon },
227 { .driver = "virtio-serial", .flag = &default_virtcon },
228 { .driver = "VGA", .flag = &default_vga },
229 { .driver = "isa-vga", .flag = &default_vga },
230 { .driver = "cirrus-vga", .flag = &default_vga },
231 { .driver = "isa-cirrus-vga", .flag = &default_vga },
232 { .driver = "vmware-svga", .flag = &default_vga },
233 { .driver = "qxl-vga", .flag = &default_vga },
234 { .driver = "virtio-vga", .flag = &default_vga },
235 };
236
237 static QemuOptsList qemu_rtc_opts = {
238 .name = "rtc",
239 .head = QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts.head),
240 .desc = {
241 {
242 .name = "base",
243 .type = QEMU_OPT_STRING,
244 },{
245 .name = "clock",
246 .type = QEMU_OPT_STRING,
247 },{
248 .name = "driftfix",
249 .type = QEMU_OPT_STRING,
250 },
251 { /* end of list */ }
252 },
253 };
254
255 static QemuOptsList qemu_sandbox_opts = {
256 .name = "sandbox",
257 .implied_opt_name = "enable",
258 .head = QTAILQ_HEAD_INITIALIZER(qemu_sandbox_opts.head),
259 .desc = {
260 {
261 .name = "enable",
262 .type = QEMU_OPT_BOOL,
263 },
264 { /* end of list */ }
265 },
266 };
267
268 static QemuOptsList qemu_trace_opts = {
269 .name = "trace",
270 .implied_opt_name = "trace",
271 .head = QTAILQ_HEAD_INITIALIZER(qemu_trace_opts.head),
272 .desc = {
273 {
274 .name = "events",
275 .type = QEMU_OPT_STRING,
276 },{
277 .name = "file",
278 .type = QEMU_OPT_STRING,
279 },
280 { /* end of list */ }
281 },
282 };
283
284 static QemuOptsList qemu_option_rom_opts = {
285 .name = "option-rom",
286 .implied_opt_name = "romfile",
287 .head = QTAILQ_HEAD_INITIALIZER(qemu_option_rom_opts.head),
288 .desc = {
289 {
290 .name = "bootindex",
291 .type = QEMU_OPT_NUMBER,
292 }, {
293 .name = "romfile",
294 .type = QEMU_OPT_STRING,
295 },
296 { /* end of list */ }
297 },
298 };
299
300 static QemuOptsList qemu_machine_opts = {
301 .name = "machine",
302 .implied_opt_name = "type",
303 .merge_lists = true,
304 .head = QTAILQ_HEAD_INITIALIZER(qemu_machine_opts.head),
305 .desc = {
306 /*
307 * no elements => accept any
308 * sanity checking will happen later
309 * when setting machine properties
310 */
311 { }
312 },
313 };
314
315 static QemuOptsList qemu_boot_opts = {
316 .name = "boot-opts",
317 .implied_opt_name = "order",
318 .merge_lists = true,
319 .head = QTAILQ_HEAD_INITIALIZER(qemu_boot_opts.head),
320 .desc = {
321 {
322 .name = "order",
323 .type = QEMU_OPT_STRING,
324 }, {
325 .name = "once",
326 .type = QEMU_OPT_STRING,
327 }, {
328 .name = "menu",
329 .type = QEMU_OPT_BOOL,
330 }, {
331 .name = "splash",
332 .type = QEMU_OPT_STRING,
333 }, {
334 .name = "splash-time",
335 .type = QEMU_OPT_STRING,
336 }, {
337 .name = "reboot-timeout",
338 .type = QEMU_OPT_STRING,
339 }, {
340 .name = "strict",
341 .type = QEMU_OPT_BOOL,
342 },
343 { /*End of list */ }
344 },
345 };
346
347 static QemuOptsList qemu_add_fd_opts = {
348 .name = "add-fd",
349 .head = QTAILQ_HEAD_INITIALIZER(qemu_add_fd_opts.head),
350 .desc = {
351 {
352 .name = "fd",
353 .type = QEMU_OPT_NUMBER,
354 .help = "file descriptor of which a duplicate is added to fd set",
355 },{
356 .name = "set",
357 .type = QEMU_OPT_NUMBER,
358 .help = "ID of the fd set to add fd to",
359 },{
360 .name = "opaque",
361 .type = QEMU_OPT_STRING,
362 .help = "free-form string used to describe fd",
363 },
364 { /* end of list */ }
365 },
366 };
367
368 static QemuOptsList qemu_object_opts = {
369 .name = "object",
370 .implied_opt_name = "qom-type",
371 .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head),
372 .desc = {
373 { }
374 },
375 };
376
377 static QemuOptsList qemu_tpmdev_opts = {
378 .name = "tpmdev",
379 .implied_opt_name = "type",
380 .head = QTAILQ_HEAD_INITIALIZER(qemu_tpmdev_opts.head),
381 .desc = {
382 /* options are defined in the TPM backends */
383 { /* end of list */ }
384 },
385 };
386
387 static QemuOptsList qemu_realtime_opts = {
388 .name = "realtime",
389 .head = QTAILQ_HEAD_INITIALIZER(qemu_realtime_opts.head),
390 .desc = {
391 {
392 .name = "mlock",
393 .type = QEMU_OPT_BOOL,
394 },
395 { /* end of list */ }
396 },
397 };
398
399 static QemuOptsList qemu_msg_opts = {
400 .name = "msg",
401 .head = QTAILQ_HEAD_INITIALIZER(qemu_msg_opts.head),
402 .desc = {
403 {
404 .name = "timestamp",
405 .type = QEMU_OPT_BOOL,
406 },
407 { /* end of list */ }
408 },
409 };
410
411 static QemuOptsList qemu_name_opts = {
412 .name = "name",
413 .implied_opt_name = "guest",
414 .merge_lists = true,
415 .head = QTAILQ_HEAD_INITIALIZER(qemu_name_opts.head),
416 .desc = {
417 {
418 .name = "guest",
419 .type = QEMU_OPT_STRING,
420 .help = "Sets the name of the guest.\n"
421 "This name will be displayed in the SDL window caption.\n"
422 "The name will also be used for the VNC server",
423 }, {
424 .name = "process",
425 .type = QEMU_OPT_STRING,
426 .help = "Sets the name of the QEMU process, as shown in top etc",
427 }, {
428 .name = "debug-threads",
429 .type = QEMU_OPT_BOOL,
430 .help = "When enabled, name the individual threads; defaults off.\n"
431 "NOTE: The thread names are for debugging and not a\n"
432 "stable API.",
433 },
434 { /* End of list */ }
435 },
436 };
437
438 static QemuOptsList qemu_mem_opts = {
439 .name = "memory",
440 .implied_opt_name = "size",
441 .head = QTAILQ_HEAD_INITIALIZER(qemu_mem_opts.head),
442 .merge_lists = true,
443 .desc = {
444 {
445 .name = "size",
446 .type = QEMU_OPT_SIZE,
447 },
448 {
449 .name = "slots",
450 .type = QEMU_OPT_NUMBER,
451 },
452 {
453 .name = "maxmem",
454 .type = QEMU_OPT_SIZE,
455 },
456 { /* end of list */ }
457 },
458 };
459
460 static QemuOptsList qemu_icount_opts = {
461 .name = "icount",
462 .implied_opt_name = "shift",
463 .merge_lists = true,
464 .head = QTAILQ_HEAD_INITIALIZER(qemu_icount_opts.head),
465 .desc = {
466 {
467 .name = "shift",
468 .type = QEMU_OPT_STRING,
469 }, {
470 .name = "align",
471 .type = QEMU_OPT_BOOL,
472 }, {
473 .name = "sleep",
474 .type = QEMU_OPT_BOOL,
475 },
476 { /* end of list */ }
477 },
478 };
479
480 static QemuOptsList qemu_semihosting_config_opts = {
481 .name = "semihosting-config",
482 .implied_opt_name = "enable",
483 .head = QTAILQ_HEAD_INITIALIZER(qemu_semihosting_config_opts.head),
484 .desc = {
485 {
486 .name = "enable",
487 .type = QEMU_OPT_BOOL,
488 }, {
489 .name = "target",
490 .type = QEMU_OPT_STRING,
491 }, {
492 .name = "arg",
493 .type = QEMU_OPT_STRING,
494 },
495 { /* end of list */ }
496 },
497 };
498
499 static QemuOptsList qemu_fw_cfg_opts = {
500 .name = "fw_cfg",
501 .implied_opt_name = "name",
502 .head = QTAILQ_HEAD_INITIALIZER(qemu_fw_cfg_opts.head),
503 .desc = {
504 {
505 .name = "name",
506 .type = QEMU_OPT_STRING,
507 .help = "Sets the fw_cfg name of the blob to be inserted",
508 }, {
509 .name = "file",
510 .type = QEMU_OPT_STRING,
511 .help = "Sets the name of the file from which\n"
512 "the fw_cfg blob will be loaded",
513 },
514 { /* end of list */ }
515 },
516 };
517
518 /**
519 * Get machine options
520 *
521 * Returns: machine options (never null).
522 */
523 QemuOpts *qemu_get_machine_opts(void)
524 {
525 return qemu_find_opts_singleton("machine");
526 }
527
528 const char *qemu_get_vm_name(void)
529 {
530 return qemu_name;
531 }
532
533 static void res_free(void)
534 {
535 if (boot_splash_filedata != NULL) {
536 g_free(boot_splash_filedata);
537 boot_splash_filedata = NULL;
538 }
539 }
540
541 static int default_driver_check(void *opaque, QemuOpts *opts, Error **errp)
542 {
543 const char *driver = qemu_opt_get(opts, "driver");
544 int i;
545
546 if (!driver)
547 return 0;
548 for (i = 0; i < ARRAY_SIZE(default_list); i++) {
549 if (strcmp(default_list[i].driver, driver) != 0)
550 continue;
551 *(default_list[i].flag) = 0;
552 }
553 return 0;
554 }
555
556 /***********************************************************/
557 /* QEMU state */
558
559 static RunState current_run_state = RUN_STATE_PRELAUNCH;
560
561 /* We use RUN_STATE_MAX but any invalid value will do */
562 static RunState vmstop_requested = RUN_STATE_MAX;
563 static QemuMutex vmstop_lock;
564
565 typedef struct {
566 RunState from;
567 RunState to;
568 } RunStateTransition;
569
570 static const RunStateTransition runstate_transitions_def[] = {
571 /* from -> to */
572 { RUN_STATE_DEBUG, RUN_STATE_RUNNING },
573 { RUN_STATE_DEBUG, RUN_STATE_FINISH_MIGRATE },
574
575 { RUN_STATE_INMIGRATE, RUN_STATE_RUNNING },
576 { RUN_STATE_INMIGRATE, RUN_STATE_PAUSED },
577
578 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_PAUSED },
579 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_FINISH_MIGRATE },
580
581 { RUN_STATE_IO_ERROR, RUN_STATE_RUNNING },
582 { RUN_STATE_IO_ERROR, RUN_STATE_FINISH_MIGRATE },
583
584 { RUN_STATE_PAUSED, RUN_STATE_RUNNING },
585 { RUN_STATE_PAUSED, RUN_STATE_FINISH_MIGRATE },
586
587 { RUN_STATE_POSTMIGRATE, RUN_STATE_RUNNING },
588 { RUN_STATE_POSTMIGRATE, RUN_STATE_FINISH_MIGRATE },
589
590 { RUN_STATE_PRELAUNCH, RUN_STATE_RUNNING },
591 { RUN_STATE_PRELAUNCH, RUN_STATE_FINISH_MIGRATE },
592 { RUN_STATE_PRELAUNCH, RUN_STATE_INMIGRATE },
593
594 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_RUNNING },
595 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_POSTMIGRATE },
596
597 { RUN_STATE_RESTORE_VM, RUN_STATE_RUNNING },
598
599 { RUN_STATE_RUNNING, RUN_STATE_DEBUG },
600 { RUN_STATE_RUNNING, RUN_STATE_INTERNAL_ERROR },
601 { RUN_STATE_RUNNING, RUN_STATE_IO_ERROR },
602 { RUN_STATE_RUNNING, RUN_STATE_PAUSED },
603 { RUN_STATE_RUNNING, RUN_STATE_FINISH_MIGRATE },
604 { RUN_STATE_RUNNING, RUN_STATE_RESTORE_VM },
605 { RUN_STATE_RUNNING, RUN_STATE_SAVE_VM },
606 { RUN_STATE_RUNNING, RUN_STATE_SHUTDOWN },
607 { RUN_STATE_RUNNING, RUN_STATE_WATCHDOG },
608 { RUN_STATE_RUNNING, RUN_STATE_GUEST_PANICKED },
609
610 { RUN_STATE_SAVE_VM, RUN_STATE_RUNNING },
611
612 { RUN_STATE_SHUTDOWN, RUN_STATE_PAUSED },
613 { RUN_STATE_SHUTDOWN, RUN_STATE_FINISH_MIGRATE },
614
615 { RUN_STATE_DEBUG, RUN_STATE_SUSPENDED },
616 { RUN_STATE_RUNNING, RUN_STATE_SUSPENDED },
617 { RUN_STATE_SUSPENDED, RUN_STATE_RUNNING },
618 { RUN_STATE_SUSPENDED, RUN_STATE_FINISH_MIGRATE },
619
620 { RUN_STATE_WATCHDOG, RUN_STATE_RUNNING },
621 { RUN_STATE_WATCHDOG, RUN_STATE_FINISH_MIGRATE },
622
623 { RUN_STATE_GUEST_PANICKED, RUN_STATE_RUNNING },
624 { RUN_STATE_GUEST_PANICKED, RUN_STATE_FINISH_MIGRATE },
625
626 { RUN_STATE_MAX, RUN_STATE_MAX },
627 };
628
629 static bool runstate_valid_transitions[RUN_STATE_MAX][RUN_STATE_MAX];
630
631 bool runstate_check(RunState state)
632 {
633 return current_run_state == state;
634 }
635
636 static void runstate_init(void)
637 {
638 const RunStateTransition *p;
639
640 memset(&runstate_valid_transitions, 0, sizeof(runstate_valid_transitions));
641 for (p = &runstate_transitions_def[0]; p->from != RUN_STATE_MAX; p++) {
642 runstate_valid_transitions[p->from][p->to] = true;
643 }
644
645 qemu_mutex_init(&vmstop_lock);
646 }
647
648 /* This function will abort() on invalid state transitions */
649 void runstate_set(RunState new_state)
650 {
651 assert(new_state < RUN_STATE_MAX);
652
653 if (!runstate_valid_transitions[current_run_state][new_state]) {
654 fprintf(stderr, "ERROR: invalid runstate transition: '%s' -> '%s'\n",
655 RunState_lookup[current_run_state],
656 RunState_lookup[new_state]);
657 abort();
658 }
659 trace_runstate_set(new_state);
660 current_run_state = new_state;
661 }
662
663 int runstate_is_running(void)
664 {
665 return runstate_check(RUN_STATE_RUNNING);
666 }
667
668 bool runstate_needs_reset(void)
669 {
670 return runstate_check(RUN_STATE_INTERNAL_ERROR) ||
671 runstate_check(RUN_STATE_SHUTDOWN);
672 }
673
674 StatusInfo *qmp_query_status(Error **errp)
675 {
676 StatusInfo *info = g_malloc0(sizeof(*info));
677
678 info->running = runstate_is_running();
679 info->singlestep = singlestep;
680 info->status = current_run_state;
681
682 return info;
683 }
684
685 static bool qemu_vmstop_requested(RunState *r)
686 {
687 qemu_mutex_lock(&vmstop_lock);
688 *r = vmstop_requested;
689 vmstop_requested = RUN_STATE_MAX;
690 qemu_mutex_unlock(&vmstop_lock);
691 return *r < RUN_STATE_MAX;
692 }
693
694 void qemu_system_vmstop_request_prepare(void)
695 {
696 qemu_mutex_lock(&vmstop_lock);
697 }
698
699 void qemu_system_vmstop_request(RunState state)
700 {
701 vmstop_requested = state;
702 qemu_mutex_unlock(&vmstop_lock);
703 qemu_notify_event();
704 }
705
706 void vm_start(void)
707 {
708 RunState requested;
709
710 qemu_vmstop_requested(&requested);
711 if (runstate_is_running() && requested == RUN_STATE_MAX) {
712 return;
713 }
714
715 /* Ensure that a STOP/RESUME pair of events is emitted if a
716 * vmstop request was pending. The BLOCK_IO_ERROR event, for
717 * example, according to documentation is always followed by
718 * the STOP event.
719 */
720 if (runstate_is_running()) {
721 qapi_event_send_stop(&error_abort);
722 } else {
723 cpu_enable_ticks();
724 runstate_set(RUN_STATE_RUNNING);
725 vm_state_notify(1, RUN_STATE_RUNNING);
726 resume_all_vcpus();
727 }
728
729 qapi_event_send_resume(&error_abort);
730 }
731
732
733 /***********************************************************/
734 /* real time host monotonic timer */
735
736 static time_t qemu_time(void)
737 {
738 return qemu_clock_get_ms(QEMU_CLOCK_HOST) / 1000;
739 }
740
741 /***********************************************************/
742 /* host time/date access */
743 void qemu_get_timedate(struct tm *tm, int offset)
744 {
745 time_t ti = qemu_time();
746
747 ti += offset;
748 if (rtc_date_offset == -1) {
749 if (rtc_utc)
750 gmtime_r(&ti, tm);
751 else
752 localtime_r(&ti, tm);
753 } else {
754 ti -= rtc_date_offset;
755 gmtime_r(&ti, tm);
756 }
757 }
758
759 int qemu_timedate_diff(struct tm *tm)
760 {
761 time_t seconds;
762
763 if (rtc_date_offset == -1)
764 if (rtc_utc)
765 seconds = mktimegm(tm);
766 else {
767 struct tm tmp = *tm;
768 tmp.tm_isdst = -1; /* use timezone to figure it out */
769 seconds = mktime(&tmp);
770 }
771 else
772 seconds = mktimegm(tm) + rtc_date_offset;
773
774 return seconds - qemu_time();
775 }
776
777 static void configure_rtc_date_offset(const char *startdate, int legacy)
778 {
779 time_t rtc_start_date;
780 struct tm tm;
781
782 if (!strcmp(startdate, "now") && legacy) {
783 rtc_date_offset = -1;
784 } else {
785 if (sscanf(startdate, "%d-%d-%dT%d:%d:%d",
786 &tm.tm_year,
787 &tm.tm_mon,
788 &tm.tm_mday,
789 &tm.tm_hour,
790 &tm.tm_min,
791 &tm.tm_sec) == 6) {
792 /* OK */
793 } else if (sscanf(startdate, "%d-%d-%d",
794 &tm.tm_year,
795 &tm.tm_mon,
796 &tm.tm_mday) == 3) {
797 tm.tm_hour = 0;
798 tm.tm_min = 0;
799 tm.tm_sec = 0;
800 } else {
801 goto date_fail;
802 }
803 tm.tm_year -= 1900;
804 tm.tm_mon--;
805 rtc_start_date = mktimegm(&tm);
806 if (rtc_start_date == -1) {
807 date_fail:
808 fprintf(stderr, "Invalid date format. Valid formats are:\n"
809 "'2006-06-17T16:01:21' or '2006-06-17'\n");
810 exit(1);
811 }
812 rtc_date_offset = qemu_time() - rtc_start_date;
813 }
814 }
815
816 static void configure_rtc(QemuOpts *opts)
817 {
818 const char *value;
819
820 value = qemu_opt_get(opts, "base");
821 if (value) {
822 if (!strcmp(value, "utc")) {
823 rtc_utc = 1;
824 } else if (!strcmp(value, "localtime")) {
825 rtc_utc = 0;
826 } else {
827 configure_rtc_date_offset(value, 0);
828 }
829 }
830 value = qemu_opt_get(opts, "clock");
831 if (value) {
832 if (!strcmp(value, "host")) {
833 rtc_clock = QEMU_CLOCK_HOST;
834 } else if (!strcmp(value, "rt")) {
835 rtc_clock = QEMU_CLOCK_REALTIME;
836 } else if (!strcmp(value, "vm")) {
837 rtc_clock = QEMU_CLOCK_VIRTUAL;
838 } else {
839 fprintf(stderr, "qemu: invalid option value '%s'\n", value);
840 exit(1);
841 }
842 }
843 value = qemu_opt_get(opts, "driftfix");
844 if (value) {
845 if (!strcmp(value, "slew")) {
846 static GlobalProperty slew_lost_ticks[] = {
847 {
848 .driver = "mc146818rtc",
849 .property = "lost_tick_policy",
850 .value = "slew",
851 },
852 { /* end of list */ }
853 };
854
855 qdev_prop_register_global_list(slew_lost_ticks);
856 } else if (!strcmp(value, "none")) {
857 /* discard is default */
858 } else {
859 fprintf(stderr, "qemu: invalid option value '%s'\n", value);
860 exit(1);
861 }
862 }
863 }
864
865 /***********************************************************/
866 /* Bluetooth support */
867 static int nb_hcis;
868 static int cur_hci;
869 static struct HCIInfo *hci_table[MAX_NICS];
870
871 struct HCIInfo *qemu_next_hci(void)
872 {
873 if (cur_hci == nb_hcis)
874 return &null_hci;
875
876 return hci_table[cur_hci++];
877 }
878
879 static int bt_hci_parse(const char *str)
880 {
881 struct HCIInfo *hci;
882 bdaddr_t bdaddr;
883
884 if (nb_hcis >= MAX_NICS) {
885 fprintf(stderr, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS);
886 return -1;
887 }
888
889 hci = hci_init(str);
890 if (!hci)
891 return -1;
892
893 bdaddr.b[0] = 0x52;
894 bdaddr.b[1] = 0x54;
895 bdaddr.b[2] = 0x00;
896 bdaddr.b[3] = 0x12;
897 bdaddr.b[4] = 0x34;
898 bdaddr.b[5] = 0x56 + nb_hcis;
899 hci->bdaddr_set(hci, bdaddr.b);
900
901 hci_table[nb_hcis++] = hci;
902
903 return 0;
904 }
905
906 static void bt_vhci_add(int vlan_id)
907 {
908 struct bt_scatternet_s *vlan = qemu_find_bt_vlan(vlan_id);
909
910 if (!vlan->slave)
911 fprintf(stderr, "qemu: warning: adding a VHCI to "
912 "an empty scatternet %i\n", vlan_id);
913
914 bt_vhci_init(bt_new_hci(vlan));
915 }
916
917 static struct bt_device_s *bt_device_add(const char *opt)
918 {
919 struct bt_scatternet_s *vlan;
920 int vlan_id = 0;
921 char *endp = strstr(opt, ",vlan=");
922 int len = (endp ? endp - opt : strlen(opt)) + 1;
923 char devname[10];
924
925 pstrcpy(devname, MIN(sizeof(devname), len), opt);
926
927 if (endp) {
928 vlan_id = strtol(endp + 6, &endp, 0);
929 if (*endp) {
930 fprintf(stderr, "qemu: unrecognised bluetooth vlan Id\n");
931 return 0;
932 }
933 }
934
935 vlan = qemu_find_bt_vlan(vlan_id);
936
937 if (!vlan->slave)
938 fprintf(stderr, "qemu: warning: adding a slave device to "
939 "an empty scatternet %i\n", vlan_id);
940
941 if (!strcmp(devname, "keyboard"))
942 return bt_keyboard_init(vlan);
943
944 fprintf(stderr, "qemu: unsupported bluetooth device `%s'\n", devname);
945 return 0;
946 }
947
948 static int bt_parse(const char *opt)
949 {
950 const char *endp, *p;
951 int vlan;
952
953 if (strstart(opt, "hci", &endp)) {
954 if (!*endp || *endp == ',') {
955 if (*endp)
956 if (!strstart(endp, ",vlan=", 0))
957 opt = endp + 1;
958
959 return bt_hci_parse(opt);
960 }
961 } else if (strstart(opt, "vhci", &endp)) {
962 if (!*endp || *endp == ',') {
963 if (*endp) {
964 if (strstart(endp, ",vlan=", &p)) {
965 vlan = strtol(p, (char **) &endp, 0);
966 if (*endp) {
967 fprintf(stderr, "qemu: bad scatternet '%s'\n", p);
968 return 1;
969 }
970 } else {
971 fprintf(stderr, "qemu: bad parameter '%s'\n", endp + 1);
972 return 1;
973 }
974 } else
975 vlan = 0;
976
977 bt_vhci_add(vlan);
978 return 0;
979 }
980 } else if (strstart(opt, "device:", &endp))
981 return !bt_device_add(endp);
982
983 fprintf(stderr, "qemu: bad bluetooth parameter '%s'\n", opt);
984 return 1;
985 }
986
987 static int parse_sandbox(void *opaque, QemuOpts *opts, Error **errp)
988 {
989 /* FIXME: change this to true for 1.3 */
990 if (qemu_opt_get_bool(opts, "enable", false)) {
991 #ifdef CONFIG_SECCOMP
992 if (seccomp_start() < 0) {
993 qerror_report(ERROR_CLASS_GENERIC_ERROR,
994 "failed to install seccomp syscall filter in the kernel");
995 return -1;
996 }
997 #else
998 qerror_report(ERROR_CLASS_GENERIC_ERROR,
999 "sandboxing request but seccomp is not compiled into this build");
1000 return -1;
1001 #endif
1002 }
1003
1004 return 0;
1005 }
1006
1007 static int parse_name(void *opaque, QemuOpts *opts, Error **errp)
1008 {
1009 const char *proc_name;
1010
1011 if (qemu_opt_get(opts, "debug-threads")) {
1012 qemu_thread_naming(qemu_opt_get_bool(opts, "debug-threads", false));
1013 }
1014 qemu_name = qemu_opt_get(opts, "guest");
1015
1016 proc_name = qemu_opt_get(opts, "process");
1017 if (proc_name) {
1018 os_set_proc_name(proc_name);
1019 }
1020
1021 return 0;
1022 }
1023
1024 bool defaults_enabled(void)
1025 {
1026 return has_defaults;
1027 }
1028
1029 bool usb_enabled(void)
1030 {
1031 return machine_usb(current_machine);
1032 }
1033
1034 #ifndef _WIN32
1035 static int parse_add_fd(void *opaque, QemuOpts *opts, Error **errp)
1036 {
1037 int fd, dupfd, flags;
1038 int64_t fdset_id;
1039 const char *fd_opaque = NULL;
1040 AddfdInfo *fdinfo;
1041
1042 fd = qemu_opt_get_number(opts, "fd", -1);
1043 fdset_id = qemu_opt_get_number(opts, "set", -1);
1044 fd_opaque = qemu_opt_get(opts, "opaque");
1045
1046 if (fd < 0) {
1047 qerror_report(ERROR_CLASS_GENERIC_ERROR,
1048 "fd option is required and must be non-negative");
1049 return -1;
1050 }
1051
1052 if (fd <= STDERR_FILENO) {
1053 qerror_report(ERROR_CLASS_GENERIC_ERROR,
1054 "fd cannot be a standard I/O stream");
1055 return -1;
1056 }
1057
1058 /*
1059 * All fds inherited across exec() necessarily have FD_CLOEXEC
1060 * clear, while qemu sets FD_CLOEXEC on all other fds used internally.
1061 */
1062 flags = fcntl(fd, F_GETFD);
1063 if (flags == -1 || (flags & FD_CLOEXEC)) {
1064 qerror_report(ERROR_CLASS_GENERIC_ERROR,
1065 "fd is not valid or already in use");
1066 return -1;
1067 }
1068
1069 if (fdset_id < 0) {
1070 qerror_report(ERROR_CLASS_GENERIC_ERROR,
1071 "set option is required and must be non-negative");
1072 return -1;
1073 }
1074
1075 #ifdef F_DUPFD_CLOEXEC
1076 dupfd = fcntl(fd, F_DUPFD_CLOEXEC, 0);
1077 #else
1078 dupfd = dup(fd);
1079 if (dupfd != -1) {
1080 qemu_set_cloexec(dupfd);
1081 }
1082 #endif
1083 if (dupfd == -1) {
1084 qerror_report(ERROR_CLASS_GENERIC_ERROR,
1085 "Error duplicating fd: %s", strerror(errno));
1086 return -1;
1087 }
1088
1089 /* add the duplicate fd, and optionally the opaque string, to the fd set */
1090 fdinfo = monitor_fdset_add_fd(dupfd, true, fdset_id, !!fd_opaque, fd_opaque,
1091 &error_abort);
1092 g_free(fdinfo);
1093
1094 return 0;
1095 }
1096
1097 static int cleanup_add_fd(void *opaque, QemuOpts *opts, Error **errp)
1098 {
1099 int fd;
1100
1101 fd = qemu_opt_get_number(opts, "fd", -1);
1102 close(fd);
1103
1104 return 0;
1105 }
1106 #endif
1107
1108 /***********************************************************/
1109 /* QEMU Block devices */
1110
1111 #define HD_OPTS "media=disk"
1112 #define CDROM_OPTS "media=cdrom"
1113 #define FD_OPTS ""
1114 #define PFLASH_OPTS ""
1115 #define MTD_OPTS ""
1116 #define SD_OPTS ""
1117
1118 static int drive_init_func(void *opaque, QemuOpts *opts, Error **errp)
1119 {
1120 BlockInterfaceType *block_default_type = opaque;
1121
1122 return drive_new(opts, *block_default_type) == NULL;
1123 }
1124
1125 static int drive_enable_snapshot(void *opaque, QemuOpts *opts, Error **errp)
1126 {
1127 if (qemu_opt_get(opts, "snapshot") == NULL) {
1128 qemu_opt_set(opts, "snapshot", "on", &error_abort);
1129 }
1130 return 0;
1131 }
1132
1133 static void default_drive(int enable, int snapshot, BlockInterfaceType type,
1134 int index, const char *optstr)
1135 {
1136 QemuOpts *opts;
1137 DriveInfo *dinfo;
1138
1139 if (!enable || drive_get_by_index(type, index)) {
1140 return;
1141 }
1142
1143 opts = drive_add(type, index, NULL, optstr);
1144 if (snapshot) {
1145 drive_enable_snapshot(NULL, opts, NULL);
1146 }
1147
1148 dinfo = drive_new(opts, type);
1149 if (!dinfo) {
1150 exit(1);
1151 }
1152 dinfo->is_default = true;
1153
1154 }
1155
1156 static QemuOptsList qemu_smp_opts = {
1157 .name = "smp-opts",
1158 .implied_opt_name = "cpus",
1159 .merge_lists = true,
1160 .head = QTAILQ_HEAD_INITIALIZER(qemu_smp_opts.head),
1161 .desc = {
1162 {
1163 .name = "cpus",
1164 .type = QEMU_OPT_NUMBER,
1165 }, {
1166 .name = "sockets",
1167 .type = QEMU_OPT_NUMBER,
1168 }, {
1169 .name = "cores",
1170 .type = QEMU_OPT_NUMBER,
1171 }, {
1172 .name = "threads",
1173 .type = QEMU_OPT_NUMBER,
1174 }, {
1175 .name = "maxcpus",
1176 .type = QEMU_OPT_NUMBER,
1177 },
1178 { /*End of list */ }
1179 },
1180 };
1181
1182 static void smp_parse(QemuOpts *opts)
1183 {
1184 if (opts) {
1185
1186 unsigned cpus = qemu_opt_get_number(opts, "cpus", 0);
1187 unsigned sockets = qemu_opt_get_number(opts, "sockets", 0);
1188 unsigned cores = qemu_opt_get_number(opts, "cores", 0);
1189 unsigned threads = qemu_opt_get_number(opts, "threads", 0);
1190
1191 /* compute missing values, prefer sockets over cores over threads */
1192 if (cpus == 0 || sockets == 0) {
1193 sockets = sockets > 0 ? sockets : 1;
1194 cores = cores > 0 ? cores : 1;
1195 threads = threads > 0 ? threads : 1;
1196 if (cpus == 0) {
1197 cpus = cores * threads * sockets;
1198 }
1199 } else if (cores == 0) {
1200 threads = threads > 0 ? threads : 1;
1201 cores = cpus / (sockets * threads);
1202 } else if (threads == 0) {
1203 threads = cpus / (cores * sockets);
1204 } else if (sockets * cores * threads < cpus) {
1205 fprintf(stderr, "cpu topology: error: "
1206 "sockets (%u) * cores (%u) * threads (%u) < "
1207 "smp_cpus (%u)\n",
1208 sockets, cores, threads, cpus);
1209 exit(1);
1210 }
1211
1212 max_cpus = qemu_opt_get_number(opts, "maxcpus", 0);
1213
1214 smp_cpus = cpus;
1215 smp_cores = cores > 0 ? cores : 1;
1216 smp_threads = threads > 0 ? threads : 1;
1217
1218 }
1219
1220 if (max_cpus == 0) {
1221 max_cpus = smp_cpus;
1222 }
1223
1224 if (max_cpus > MAX_CPUMASK_BITS) {
1225 fprintf(stderr, "Unsupported number of maxcpus\n");
1226 exit(1);
1227 }
1228 if (max_cpus < smp_cpus) {
1229 fprintf(stderr, "maxcpus must be equal to or greater than smp\n");
1230 exit(1);
1231 }
1232
1233 }
1234
1235 static void realtime_init(void)
1236 {
1237 if (enable_mlock) {
1238 if (os_mlock() < 0) {
1239 fprintf(stderr, "qemu: locking memory failed\n");
1240 exit(1);
1241 }
1242 }
1243 }
1244
1245
1246 static void configure_msg(QemuOpts *opts)
1247 {
1248 enable_timestamp_msg = qemu_opt_get_bool(opts, "timestamp", true);
1249 }
1250
1251 /***********************************************************/
1252 /* Semihosting */
1253
1254 typedef struct SemihostingConfig {
1255 bool enabled;
1256 SemihostingTarget target;
1257 const char **argv;
1258 int argc;
1259 const char *cmdline; /* concatenated argv */
1260 } SemihostingConfig;
1261
1262 static SemihostingConfig semihosting;
1263
1264 bool semihosting_enabled(void)
1265 {
1266 return semihosting.enabled;
1267 }
1268
1269 SemihostingTarget semihosting_get_target(void)
1270 {
1271 return semihosting.target;
1272 }
1273
1274 const char *semihosting_get_arg(int i)
1275 {
1276 if (i >= semihosting.argc) {
1277 return NULL;
1278 }
1279 return semihosting.argv[i];
1280 }
1281
1282 int semihosting_get_argc(void)
1283 {
1284 return semihosting.argc;
1285 }
1286
1287 const char *semihosting_get_cmdline(void)
1288 {
1289 if (semihosting.cmdline == NULL && semihosting.argc > 0) {
1290 semihosting.cmdline = g_strjoinv(" ", (gchar **)semihosting.argv);
1291 }
1292 return semihosting.cmdline;
1293 }
1294
1295 static int add_semihosting_arg(void *opaque,
1296 const char *name, const char *val,
1297 Error **errp)
1298 {
1299 SemihostingConfig *s = opaque;
1300 if (strcmp(name, "arg") == 0) {
1301 s->argc++;
1302 /* one extra element as g_strjoinv() expects NULL-terminated array */
1303 s->argv = g_realloc(s->argv, (s->argc + 1) * sizeof(void *));
1304 s->argv[s->argc - 1] = val;
1305 s->argv[s->argc] = NULL;
1306 }
1307 return 0;
1308 }
1309
1310 /* Use strings passed via -kernel/-append to initialize semihosting.argv[] */
1311 static inline void semihosting_arg_fallback(const char *file, const char *cmd)
1312 {
1313 char *cmd_token;
1314
1315 /* argv[0] */
1316 add_semihosting_arg(&semihosting, "arg", file, NULL);
1317
1318 /* split -append and initialize argv[1..n] */
1319 cmd_token = strtok(g_strdup(cmd), " ");
1320 while (cmd_token) {
1321 add_semihosting_arg(&semihosting, "arg", cmd_token, NULL);
1322 cmd_token = strtok(NULL, " ");
1323 }
1324 }
1325
1326 /***********************************************************/
1327 /* USB devices */
1328
1329 static int usb_device_add(const char *devname)
1330 {
1331 USBDevice *dev = NULL;
1332 #ifndef CONFIG_LINUX
1333 const char *p;
1334 #endif
1335
1336 if (!usb_enabled()) {
1337 return -1;
1338 }
1339
1340 /* drivers with .usbdevice_name entry in USBDeviceInfo */
1341 dev = usbdevice_create(devname);
1342 if (dev)
1343 goto done;
1344
1345 /* the other ones */
1346 #ifndef CONFIG_LINUX
1347 /* only the linux version is qdev-ified, usb-bsd still needs this */
1348 if (strstart(devname, "host:", &p)) {
1349 dev = usb_host_device_open(usb_bus_find(-1), p);
1350 }
1351 #endif
1352 if (!dev)
1353 return -1;
1354
1355 done:
1356 return 0;
1357 }
1358
1359 static int usb_device_del(const char *devname)
1360 {
1361 int bus_num, addr;
1362 const char *p;
1363
1364 if (strstart(devname, "host:", &p)) {
1365 return -1;
1366 }
1367
1368 if (!usb_enabled()) {
1369 return -1;
1370 }
1371
1372 p = strchr(devname, '.');
1373 if (!p)
1374 return -1;
1375 bus_num = strtoul(devname, NULL, 0);
1376 addr = strtoul(p + 1, NULL, 0);
1377
1378 return usb_device_delete_addr(bus_num, addr);
1379 }
1380
1381 static int usb_parse(const char *cmdline)
1382 {
1383 int r;
1384 r = usb_device_add(cmdline);
1385 if (r < 0) {
1386 fprintf(stderr, "qemu: could not add USB device '%s'\n", cmdline);
1387 }
1388 return r;
1389 }
1390
1391 void hmp_usb_add(Monitor *mon, const QDict *qdict)
1392 {
1393 const char *devname = qdict_get_str(qdict, "devname");
1394 if (usb_device_add(devname) < 0) {
1395 error_report("could not add USB device '%s'", devname);
1396 }
1397 }
1398
1399 void hmp_usb_del(Monitor *mon, const QDict *qdict)
1400 {
1401 const char *devname = qdict_get_str(qdict, "devname");
1402 if (usb_device_del(devname) < 0) {
1403 error_report("could not delete USB device '%s'", devname);
1404 }
1405 }
1406
1407 /***********************************************************/
1408 /* machine registration */
1409
1410 MachineState *current_machine;
1411
1412 /*
1413 * Transitional class registration/init used for converting from
1414 * legacy QEMUMachine to MachineClass.
1415 */
1416 static void qemu_machine_class_init(ObjectClass *oc, void *data)
1417 {
1418 MachineClass *mc = MACHINE_CLASS(oc);
1419 QEMUMachine *qm = data;
1420 mc->name = qm->name;
1421 mc->desc = qm->desc;
1422 mc->init = qm->init;
1423 mc->kvm_type = qm->kvm_type;
1424 mc->block_default_type = qm->block_default_type;
1425 mc->max_cpus = qm->max_cpus;
1426 mc->no_sdcard = qm->no_sdcard;
1427 mc->has_dynamic_sysbus = qm->has_dynamic_sysbus;
1428 mc->is_default = qm->is_default;
1429 mc->default_machine_opts = qm->default_machine_opts;
1430 mc->default_boot_order = qm->default_boot_order;
1431 }
1432
1433 int qemu_register_machine(QEMUMachine *m)
1434 {
1435 char *name = g_strconcat(m->name, TYPE_MACHINE_SUFFIX, NULL);
1436 TypeInfo ti = {
1437 .name = name,
1438 .parent = TYPE_MACHINE,
1439 .class_init = qemu_machine_class_init,
1440 .class_data = (void *)m,
1441 };
1442
1443 type_register(&ti);
1444 g_free(name);
1445
1446 return 0;
1447 }
1448
1449 static MachineClass *find_machine(const char *name)
1450 {
1451 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
1452 MachineClass *mc = NULL;
1453
1454 for (el = machines; el; el = el->next) {
1455 MachineClass *temp = el->data;
1456
1457 if (!strcmp(temp->name, name)) {
1458 mc = temp;
1459 break;
1460 }
1461 if (temp->alias &&
1462 !strcmp(temp->alias, name)) {
1463 mc = temp;
1464 break;
1465 }
1466 }
1467
1468 g_slist_free(machines);
1469 return mc;
1470 }
1471
1472 MachineClass *find_default_machine(void)
1473 {
1474 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
1475 MachineClass *mc = NULL;
1476
1477 for (el = machines; el; el = el->next) {
1478 MachineClass *temp = el->data;
1479
1480 if (temp->is_default) {
1481 mc = temp;
1482 break;
1483 }
1484 }
1485
1486 g_slist_free(machines);
1487 return mc;
1488 }
1489
1490 MachineInfoList *qmp_query_machines(Error **errp)
1491 {
1492 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
1493 MachineInfoList *mach_list = NULL;
1494
1495 for (el = machines; el; el = el->next) {
1496 MachineClass *mc = el->data;
1497 MachineInfoList *entry;
1498 MachineInfo *info;
1499
1500 info = g_malloc0(sizeof(*info));
1501 if (mc->is_default) {
1502 info->has_is_default = true;
1503 info->is_default = true;
1504 }
1505
1506 if (mc->alias) {
1507 info->has_alias = true;
1508 info->alias = g_strdup(mc->alias);
1509 }
1510
1511 info->name = g_strdup(mc->name);
1512 info->cpu_max = !mc->max_cpus ? 1 : mc->max_cpus;
1513
1514 entry = g_malloc0(sizeof(*entry));
1515 entry->value = info;
1516 entry->next = mach_list;
1517 mach_list = entry;
1518 }
1519
1520 g_slist_free(machines);
1521 return mach_list;
1522 }
1523
1524 static int machine_help_func(QemuOpts *opts, MachineState *machine)
1525 {
1526 ObjectProperty *prop;
1527
1528 if (!qemu_opt_has_help_opt(opts)) {
1529 return 0;
1530 }
1531
1532 QTAILQ_FOREACH(prop, &OBJECT(machine)->properties, node) {
1533 if (!prop->set) {
1534 continue;
1535 }
1536
1537 error_printf("%s.%s=%s", MACHINE_GET_CLASS(machine)->name,
1538 prop->name, prop->type);
1539 if (prop->description) {
1540 error_printf(" (%s)\n", prop->description);
1541 } else {
1542 error_printf("\n");
1543 }
1544 }
1545
1546 return 1;
1547 }
1548
1549 /***********************************************************/
1550 /* main execution loop */
1551
1552 struct vm_change_state_entry {
1553 VMChangeStateHandler *cb;
1554 void *opaque;
1555 QLIST_ENTRY (vm_change_state_entry) entries;
1556 };
1557
1558 static QLIST_HEAD(vm_change_state_head, vm_change_state_entry) vm_change_state_head;
1559
1560 VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
1561 void *opaque)
1562 {
1563 VMChangeStateEntry *e;
1564
1565 e = g_malloc0(sizeof (*e));
1566
1567 e->cb = cb;
1568 e->opaque = opaque;
1569 QLIST_INSERT_HEAD(&vm_change_state_head, e, entries);
1570 return e;
1571 }
1572
1573 void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
1574 {
1575 QLIST_REMOVE (e, entries);
1576 g_free (e);
1577 }
1578
1579 void vm_state_notify(int running, RunState state)
1580 {
1581 VMChangeStateEntry *e, *next;
1582
1583 trace_vm_state_notify(running, state);
1584
1585 QLIST_FOREACH_SAFE(e, &vm_change_state_head, entries, next) {
1586 e->cb(e->opaque, running, state);
1587 }
1588 }
1589
1590 /* reset/shutdown handler */
1591
1592 typedef struct QEMUResetEntry {
1593 QTAILQ_ENTRY(QEMUResetEntry) entry;
1594 QEMUResetHandler *func;
1595 void *opaque;
1596 } QEMUResetEntry;
1597
1598 static QTAILQ_HEAD(reset_handlers, QEMUResetEntry) reset_handlers =
1599 QTAILQ_HEAD_INITIALIZER(reset_handlers);
1600 static int reset_requested;
1601 static int shutdown_requested, shutdown_signal = -1;
1602 static pid_t shutdown_pid;
1603 static int powerdown_requested;
1604 static int debug_requested;
1605 static int suspend_requested;
1606 static WakeupReason wakeup_reason;
1607 static NotifierList powerdown_notifiers =
1608 NOTIFIER_LIST_INITIALIZER(powerdown_notifiers);
1609 static NotifierList suspend_notifiers =
1610 NOTIFIER_LIST_INITIALIZER(suspend_notifiers);
1611 static NotifierList wakeup_notifiers =
1612 NOTIFIER_LIST_INITIALIZER(wakeup_notifiers);
1613 static uint32_t wakeup_reason_mask = ~(1 << QEMU_WAKEUP_REASON_NONE);
1614
1615 int qemu_shutdown_requested_get(void)
1616 {
1617 return shutdown_requested;
1618 }
1619
1620 int qemu_reset_requested_get(void)
1621 {
1622 return reset_requested;
1623 }
1624
1625 static int qemu_shutdown_requested(void)
1626 {
1627 return atomic_xchg(&shutdown_requested, 0);
1628 }
1629
1630 static void qemu_kill_report(void)
1631 {
1632 if (!qtest_driver() && shutdown_signal != -1) {
1633 fprintf(stderr, "qemu: terminating on signal %d", shutdown_signal);
1634 if (shutdown_pid == 0) {
1635 /* This happens for eg ^C at the terminal, so it's worth
1636 * avoiding printing an odd message in that case.
1637 */
1638 fputc('\n', stderr);
1639 } else {
1640 fprintf(stderr, " from pid " FMT_pid "\n", shutdown_pid);
1641 }
1642 shutdown_signal = -1;
1643 }
1644 }
1645
1646 static int qemu_reset_requested(void)
1647 {
1648 int r = reset_requested;
1649 reset_requested = 0;
1650 return r;
1651 }
1652
1653 static int qemu_suspend_requested(void)
1654 {
1655 int r = suspend_requested;
1656 suspend_requested = 0;
1657 return r;
1658 }
1659
1660 static WakeupReason qemu_wakeup_requested(void)
1661 {
1662 return wakeup_reason;
1663 }
1664
1665 static int qemu_powerdown_requested(void)
1666 {
1667 int r = powerdown_requested;
1668 powerdown_requested = 0;
1669 return r;
1670 }
1671
1672 static int qemu_debug_requested(void)
1673 {
1674 int r = debug_requested;
1675 debug_requested = 0;
1676 return r;
1677 }
1678
1679 void qemu_register_reset(QEMUResetHandler *func, void *opaque)
1680 {
1681 QEMUResetEntry *re = g_malloc0(sizeof(QEMUResetEntry));
1682
1683 re->func = func;
1684 re->opaque = opaque;
1685 QTAILQ_INSERT_TAIL(&reset_handlers, re, entry);
1686 }
1687
1688 void qemu_unregister_reset(QEMUResetHandler *func, void *opaque)
1689 {
1690 QEMUResetEntry *re;
1691
1692 QTAILQ_FOREACH(re, &reset_handlers, entry) {
1693 if (re->func == func && re->opaque == opaque) {
1694 QTAILQ_REMOVE(&reset_handlers, re, entry);
1695 g_free(re);
1696 return;
1697 }
1698 }
1699 }
1700
1701 void qemu_devices_reset(void)
1702 {
1703 QEMUResetEntry *re, *nre;
1704
1705 /* reset all devices */
1706 QTAILQ_FOREACH_SAFE(re, &reset_handlers, entry, nre) {
1707 re->func(re->opaque);
1708 }
1709 }
1710
1711 void qemu_system_reset(bool report)
1712 {
1713 MachineClass *mc;
1714
1715 mc = current_machine ? MACHINE_GET_CLASS(current_machine) : NULL;
1716
1717 if (mc && mc->reset) {
1718 mc->reset();
1719 } else {
1720 qemu_devices_reset();
1721 }
1722 if (report) {
1723 qapi_event_send_reset(&error_abort);
1724 }
1725 cpu_synchronize_all_post_reset();
1726 }
1727
1728 void qemu_system_reset_request(void)
1729 {
1730 if (no_reboot) {
1731 shutdown_requested = 1;
1732 } else {
1733 reset_requested = 1;
1734 }
1735 cpu_stop_current();
1736 qemu_notify_event();
1737 }
1738
1739 static void qemu_system_suspend(void)
1740 {
1741 pause_all_vcpus();
1742 notifier_list_notify(&suspend_notifiers, NULL);
1743 runstate_set(RUN_STATE_SUSPENDED);
1744 qapi_event_send_suspend(&error_abort);
1745 }
1746
1747 void qemu_system_suspend_request(void)
1748 {
1749 if (runstate_check(RUN_STATE_SUSPENDED)) {
1750 return;
1751 }
1752 suspend_requested = 1;
1753 cpu_stop_current();
1754 qemu_notify_event();
1755 }
1756
1757 void qemu_register_suspend_notifier(Notifier *notifier)
1758 {
1759 notifier_list_add(&suspend_notifiers, notifier);
1760 }
1761
1762 void qemu_system_wakeup_request(WakeupReason reason)
1763 {
1764 trace_system_wakeup_request(reason);
1765
1766 if (!runstate_check(RUN_STATE_SUSPENDED)) {
1767 return;
1768 }
1769 if (!(wakeup_reason_mask & (1 << reason))) {
1770 return;
1771 }
1772 runstate_set(RUN_STATE_RUNNING);
1773 wakeup_reason = reason;
1774 qemu_notify_event();
1775 }
1776
1777 void qemu_system_wakeup_enable(WakeupReason reason, bool enabled)
1778 {
1779 if (enabled) {
1780 wakeup_reason_mask |= (1 << reason);
1781 } else {
1782 wakeup_reason_mask &= ~(1 << reason);
1783 }
1784 }
1785
1786 void qemu_register_wakeup_notifier(Notifier *notifier)
1787 {
1788 notifier_list_add(&wakeup_notifiers, notifier);
1789 }
1790
1791 void qemu_system_killed(int signal, pid_t pid)
1792 {
1793 shutdown_signal = signal;
1794 shutdown_pid = pid;
1795 no_shutdown = 0;
1796 qemu_system_shutdown_request();
1797 }
1798
1799 void qemu_system_shutdown_request(void)
1800 {
1801 trace_qemu_system_shutdown_request();
1802 shutdown_requested = 1;
1803 qemu_notify_event();
1804 }
1805
1806 static void qemu_system_powerdown(void)
1807 {
1808 qapi_event_send_powerdown(&error_abort);
1809 notifier_list_notify(&powerdown_notifiers, NULL);
1810 }
1811
1812 void qemu_system_powerdown_request(void)
1813 {
1814 trace_qemu_system_powerdown_request();
1815 powerdown_requested = 1;
1816 qemu_notify_event();
1817 }
1818
1819 void qemu_register_powerdown_notifier(Notifier *notifier)
1820 {
1821 notifier_list_add(&powerdown_notifiers, notifier);
1822 }
1823
1824 void qemu_system_debug_request(void)
1825 {
1826 debug_requested = 1;
1827 qemu_notify_event();
1828 }
1829
1830 static bool main_loop_should_exit(void)
1831 {
1832 RunState r;
1833 if (qemu_debug_requested()) {
1834 vm_stop(RUN_STATE_DEBUG);
1835 }
1836 if (qemu_suspend_requested()) {
1837 qemu_system_suspend();
1838 }
1839 if (qemu_shutdown_requested()) {
1840 qemu_kill_report();
1841 qapi_event_send_shutdown(&error_abort);
1842 if (no_shutdown) {
1843 vm_stop(RUN_STATE_SHUTDOWN);
1844 } else {
1845 return true;
1846 }
1847 }
1848 if (qemu_reset_requested()) {
1849 pause_all_vcpus();
1850 cpu_synchronize_all_states();
1851 qemu_system_reset(VMRESET_REPORT);
1852 resume_all_vcpus();
1853 if (runstate_needs_reset()) {
1854 runstate_set(RUN_STATE_PAUSED);
1855 }
1856 }
1857 if (qemu_wakeup_requested()) {
1858 pause_all_vcpus();
1859 cpu_synchronize_all_states();
1860 qemu_system_reset(VMRESET_SILENT);
1861 notifier_list_notify(&wakeup_notifiers, &wakeup_reason);
1862 wakeup_reason = QEMU_WAKEUP_REASON_NONE;
1863 resume_all_vcpus();
1864 qapi_event_send_wakeup(&error_abort);
1865 }
1866 if (qemu_powerdown_requested()) {
1867 qemu_system_powerdown();
1868 }
1869 if (qemu_vmstop_requested(&r)) {
1870 vm_stop(r);
1871 }
1872 return false;
1873 }
1874
1875 static void main_loop(void)
1876 {
1877 bool nonblocking;
1878 int last_io = 0;
1879 #ifdef CONFIG_PROFILER
1880 int64_t ti;
1881 #endif
1882 do {
1883 nonblocking = !kvm_enabled() && !xen_enabled() && last_io > 0;
1884 #ifdef CONFIG_PROFILER
1885 ti = profile_getclock();
1886 #endif
1887 last_io = main_loop_wait(nonblocking);
1888 #ifdef CONFIG_PROFILER
1889 dev_time += profile_getclock() - ti;
1890 #endif
1891 } while (!main_loop_should_exit());
1892 }
1893
1894 static void version(void)
1895 {
1896 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n");
1897 }
1898
1899 static void help(int exitcode)
1900 {
1901 version();
1902 printf("usage: %s [options] [disk_image]\n\n"
1903 "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
1904 error_get_progname());
1905
1906 #define QEMU_OPTIONS_GENERATE_HELP
1907 #include "qemu-options-wrapper.h"
1908
1909 printf("\nDuring emulation, the following keys are useful:\n"
1910 "ctrl-alt-f toggle full screen\n"
1911 "ctrl-alt-n switch to virtual console 'n'\n"
1912 "ctrl-alt toggle mouse and keyboard grab\n"
1913 "\n"
1914 "When using -nographic, press 'ctrl-a h' to get some help.\n");
1915
1916 exit(exitcode);
1917 }
1918
1919 #define HAS_ARG 0x0001
1920
1921 typedef struct QEMUOption {
1922 const char *name;
1923 int flags;
1924 int index;
1925 uint32_t arch_mask;
1926 } QEMUOption;
1927
1928 static const QEMUOption qemu_options[] = {
1929 { "h", 0, QEMU_OPTION_h, QEMU_ARCH_ALL },
1930 #define QEMU_OPTIONS_GENERATE_OPTIONS
1931 #include "qemu-options-wrapper.h"
1932 { NULL },
1933 };
1934
1935 static bool vga_available(void)
1936 {
1937 return object_class_by_name("VGA") || object_class_by_name("isa-vga");
1938 }
1939
1940 static bool cirrus_vga_available(void)
1941 {
1942 return object_class_by_name("cirrus-vga")
1943 || object_class_by_name("isa-cirrus-vga");
1944 }
1945
1946 static bool vmware_vga_available(void)
1947 {
1948 return object_class_by_name("vmware-svga");
1949 }
1950
1951 static bool qxl_vga_available(void)
1952 {
1953 return object_class_by_name("qxl-vga");
1954 }
1955
1956 static bool tcx_vga_available(void)
1957 {
1958 return object_class_by_name("SUNW,tcx");
1959 }
1960
1961 static bool cg3_vga_available(void)
1962 {
1963 return object_class_by_name("cgthree");
1964 }
1965
1966 static bool virtio_vga_available(void)
1967 {
1968 return object_class_by_name("virtio-vga");
1969 }
1970
1971 static void select_vgahw (const char *p)
1972 {
1973 const char *opts;
1974
1975 assert(vga_interface_type == VGA_NONE);
1976 if (strstart(p, "std", &opts)) {
1977 if (vga_available()) {
1978 vga_interface_type = VGA_STD;
1979 } else {
1980 fprintf(stderr, "Error: standard VGA not available\n");
1981 exit(0);
1982 }
1983 } else if (strstart(p, "cirrus", &opts)) {
1984 if (cirrus_vga_available()) {
1985 vga_interface_type = VGA_CIRRUS;
1986 } else {
1987 fprintf(stderr, "Error: Cirrus VGA not available\n");
1988 exit(0);
1989 }
1990 } else if (strstart(p, "vmware", &opts)) {
1991 if (vmware_vga_available()) {
1992 vga_interface_type = VGA_VMWARE;
1993 } else {
1994 fprintf(stderr, "Error: VMWare SVGA not available\n");
1995 exit(0);
1996 }
1997 } else if (strstart(p, "virtio", &opts)) {
1998 if (virtio_vga_available()) {
1999 vga_interface_type = VGA_VIRTIO;
2000 } else {
2001 fprintf(stderr, "Error: Virtio VGA not available\n");
2002 exit(0);
2003 }
2004 } else if (strstart(p, "xenfb", &opts)) {
2005 vga_interface_type = VGA_XENFB;
2006 } else if (strstart(p, "qxl", &opts)) {
2007 if (qxl_vga_available()) {
2008 vga_interface_type = VGA_QXL;
2009 } else {
2010 fprintf(stderr, "Error: QXL VGA not available\n");
2011 exit(0);
2012 }
2013 } else if (strstart(p, "tcx", &opts)) {
2014 if (tcx_vga_available()) {
2015 vga_interface_type = VGA_TCX;
2016 } else {
2017 fprintf(stderr, "Error: TCX framebuffer not available\n");
2018 exit(0);
2019 }
2020 } else if (strstart(p, "cg3", &opts)) {
2021 if (cg3_vga_available()) {
2022 vga_interface_type = VGA_CG3;
2023 } else {
2024 fprintf(stderr, "Error: CG3 framebuffer not available\n");
2025 exit(0);
2026 }
2027 } else if (!strstart(p, "none", &opts)) {
2028 invalid_vga:
2029 fprintf(stderr, "Unknown vga type: %s\n", p);
2030 exit(1);
2031 }
2032 while (*opts) {
2033 const char *nextopt;
2034
2035 if (strstart(opts, ",retrace=", &nextopt)) {
2036 opts = nextopt;
2037 if (strstart(opts, "dumb", &nextopt))
2038 vga_retrace_method = VGA_RETRACE_DUMB;
2039 else if (strstart(opts, "precise", &nextopt))
2040 vga_retrace_method = VGA_RETRACE_PRECISE;
2041 else goto invalid_vga;
2042 } else goto invalid_vga;
2043 opts = nextopt;
2044 }
2045 }
2046
2047 static DisplayType select_display(const char *p)
2048 {
2049 const char *opts;
2050 DisplayType display = DT_DEFAULT;
2051
2052 if (strstart(p, "sdl", &opts)) {
2053 #ifdef CONFIG_SDL
2054 display = DT_SDL;
2055 while (*opts) {
2056 const char *nextopt;
2057
2058 if (strstart(opts, ",frame=", &nextopt)) {
2059 opts = nextopt;
2060 if (strstart(opts, "on", &nextopt)) {
2061 no_frame = 0;
2062 } else if (strstart(opts, "off", &nextopt)) {
2063 no_frame = 1;
2064 } else {
2065 goto invalid_sdl_args;
2066 }
2067 } else if (strstart(opts, ",alt_grab=", &nextopt)) {
2068 opts = nextopt;
2069 if (strstart(opts, "on", &nextopt)) {
2070 alt_grab = 1;
2071 } else if (strstart(opts, "off", &nextopt)) {
2072 alt_grab = 0;
2073 } else {
2074 goto invalid_sdl_args;
2075 }
2076 } else if (strstart(opts, ",ctrl_grab=", &nextopt)) {
2077 opts = nextopt;
2078 if (strstart(opts, "on", &nextopt)) {
2079 ctrl_grab = 1;
2080 } else if (strstart(opts, "off", &nextopt)) {
2081 ctrl_grab = 0;
2082 } else {
2083 goto invalid_sdl_args;
2084 }
2085 } else if (strstart(opts, ",window_close=", &nextopt)) {
2086 opts = nextopt;
2087 if (strstart(opts, "on", &nextopt)) {
2088 no_quit = 0;
2089 } else if (strstart(opts, "off", &nextopt)) {
2090 no_quit = 1;
2091 } else {
2092 goto invalid_sdl_args;
2093 }
2094 } else if (strstart(opts, ",gl=", &nextopt)) {
2095 opts = nextopt;
2096 if (strstart(opts, "on", &nextopt)) {
2097 request_opengl = 1;
2098 } else if (strstart(opts, "off", &nextopt)) {
2099 request_opengl = 0;
2100 } else {
2101 goto invalid_sdl_args;
2102 }
2103 } else {
2104 invalid_sdl_args:
2105 fprintf(stderr, "Invalid SDL option string: %s\n", p);
2106 exit(1);
2107 }
2108 opts = nextopt;
2109 }
2110 #else
2111 fprintf(stderr, "SDL support is disabled\n");
2112 exit(1);
2113 #endif
2114 } else if (strstart(p, "vnc", &opts)) {
2115 #ifdef CONFIG_VNC
2116 if (*opts == '=') {
2117 if (vnc_parse_func(opts+1) == NULL) {
2118 exit(1);
2119 }
2120 } else {
2121 fprintf(stderr, "VNC requires a display argument vnc=<display>\n");
2122 exit(1);
2123 }
2124 #else
2125 fprintf(stderr, "VNC support is disabled\n");
2126 exit(1);
2127 #endif
2128 } else if (strstart(p, "curses", &opts)) {
2129 #ifdef CONFIG_CURSES
2130 display = DT_CURSES;
2131 #else
2132 fprintf(stderr, "Curses support is disabled\n");
2133 exit(1);
2134 #endif
2135 } else if (strstart(p, "gtk", &opts)) {
2136 #ifdef CONFIG_GTK
2137 display = DT_GTK;
2138 while (*opts) {
2139 const char *nextopt;
2140
2141 if (strstart(opts, ",grab_on_hover=", &nextopt)) {
2142 opts = nextopt;
2143 if (strstart(opts, "on", &nextopt)) {
2144 grab_on_hover = true;
2145 } else if (strstart(opts, "off", &nextopt)) {
2146 grab_on_hover = false;
2147 } else {
2148 goto invalid_gtk_args;
2149 }
2150 } else if (strstart(opts, ",gl=", &nextopt)) {
2151 opts = nextopt;
2152 if (strstart(opts, "on", &nextopt)) {
2153 request_opengl = 1;
2154 } else if (strstart(opts, "off", &nextopt)) {
2155 request_opengl = 0;
2156 } else {
2157 goto invalid_gtk_args;
2158 }
2159 } else {
2160 invalid_gtk_args:
2161 fprintf(stderr, "Invalid GTK option string: %s\n", p);
2162 exit(1);
2163 }
2164 opts = nextopt;
2165 }
2166 #else
2167 fprintf(stderr, "GTK support is disabled\n");
2168 exit(1);
2169 #endif
2170 } else if (strstart(p, "none", &opts)) {
2171 display = DT_NONE;
2172 } else {
2173 fprintf(stderr, "Unknown display type: %s\n", p);
2174 exit(1);
2175 }
2176
2177 return display;
2178 }
2179
2180 static int balloon_parse(const char *arg)
2181 {
2182 QemuOpts *opts;
2183
2184 if (strcmp(arg, "none") == 0) {
2185 return 0;
2186 }
2187
2188 if (!strncmp(arg, "virtio", 6)) {
2189 if (arg[6] == ',') {
2190 /* have params -> parse them */
2191 opts = qemu_opts_parse(qemu_find_opts("device"), arg+7, 0);
2192 if (!opts)
2193 return -1;
2194 } else {
2195 /* create empty opts */
2196 opts = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
2197 &error_abort);
2198 }
2199 qemu_opt_set(opts, "driver", "virtio-balloon", &error_abort);
2200 return 0;
2201 }
2202
2203 return -1;
2204 }
2205
2206 char *qemu_find_file(int type, const char *name)
2207 {
2208 int i;
2209 const char *subdir;
2210 char *buf;
2211
2212 /* Try the name as a straight path first */
2213 if (access(name, R_OK) == 0) {
2214 trace_load_file(name, name);
2215 return g_strdup(name);
2216 }
2217
2218 switch (type) {
2219 case QEMU_FILE_TYPE_BIOS:
2220 subdir = "";
2221 break;
2222 case QEMU_FILE_TYPE_KEYMAP:
2223 subdir = "keymaps/";
2224 break;
2225 default:
2226 abort();
2227 }
2228
2229 for (i = 0; i < data_dir_idx; i++) {
2230 buf = g_strdup_printf("%s/%s%s", data_dir[i], subdir, name);
2231 if (access(buf, R_OK) == 0) {
2232 trace_load_file(name, buf);
2233 return buf;
2234 }
2235 g_free(buf);
2236 }
2237 return NULL;
2238 }
2239
2240 static int parse_fw_cfg(void *opaque, QemuOpts *opts, Error **errp)
2241 {
2242 gchar *buf;
2243 size_t size;
2244 const char *name, *file;
2245
2246 if (opaque == NULL) {
2247 error_report("fw_cfg device not available");
2248 return -1;
2249 }
2250 name = qemu_opt_get(opts, "name");
2251 file = qemu_opt_get(opts, "file");
2252 if (name == NULL || *name == '\0' || file == NULL || *file == '\0') {
2253 error_report("invalid argument value");
2254 return -1;
2255 }
2256 if (strlen(name) > FW_CFG_MAX_FILE_PATH - 1) {
2257 error_report("name too long (max. %d char)", FW_CFG_MAX_FILE_PATH - 1);
2258 return -1;
2259 }
2260 if (strncmp(name, "opt/", 4) != 0) {
2261 error_report("WARNING: externally provided fw_cfg item names "
2262 "should be prefixed with \"opt/\"!");
2263 }
2264 if (!g_file_get_contents(file, &buf, &size, NULL)) {
2265 error_report("can't load %s", file);
2266 return -1;
2267 }
2268 fw_cfg_add_file((FWCfgState *)opaque, name, buf, size);
2269 return 0;
2270 }
2271
2272 static int device_help_func(void *opaque, QemuOpts *opts, Error **errp)
2273 {
2274 return qdev_device_help(opts);
2275 }
2276
2277 static int device_init_func(void *opaque, QemuOpts *opts, Error **errp)
2278 {
2279 DeviceState *dev;
2280
2281 dev = qdev_device_add(opts);
2282 if (!dev)
2283 return -1;
2284 object_unref(OBJECT(dev));
2285 return 0;
2286 }
2287
2288 static int chardev_init_func(void *opaque, QemuOpts *opts, Error **errp)
2289 {
2290 Error *local_err = NULL;
2291
2292 qemu_chr_new_from_opts(opts, NULL, &local_err);
2293 if (local_err) {
2294 error_report_err(local_err);
2295 return -1;
2296 }
2297 return 0;
2298 }
2299
2300 #ifdef CONFIG_VIRTFS
2301 static int fsdev_init_func(void *opaque, QemuOpts *opts, Error **errp)
2302 {
2303 int ret;
2304 ret = qemu_fsdev_add(opts);
2305
2306 return ret;
2307 }
2308 #endif
2309
2310 static int mon_init_func(void *opaque, QemuOpts *opts, Error **errp)
2311 {
2312 CharDriverState *chr;
2313 const char *chardev;
2314 const char *mode;
2315 int flags;
2316
2317 mode = qemu_opt_get(opts, "mode");
2318 if (mode == NULL) {
2319 mode = "readline";
2320 }
2321 if (strcmp(mode, "readline") == 0) {
2322 flags = MONITOR_USE_READLINE;
2323 } else if (strcmp(mode, "control") == 0) {
2324 flags = MONITOR_USE_CONTROL;
2325 } else {
2326 fprintf(stderr, "unknown monitor mode \"%s\"\n", mode);
2327 exit(1);
2328 }
2329
2330 if (qemu_opt_get_bool(opts, "pretty", 0))
2331 flags |= MONITOR_USE_PRETTY;
2332
2333 if (qemu_opt_get_bool(opts, "default", 0))
2334 flags |= MONITOR_IS_DEFAULT;
2335
2336 chardev = qemu_opt_get(opts, "chardev");
2337 chr = qemu_chr_find(chardev);
2338 if (chr == NULL) {
2339 fprintf(stderr, "chardev \"%s\" not found\n", chardev);
2340 exit(1);
2341 }
2342
2343 qemu_chr_fe_claim_no_fail(chr);
2344 monitor_init(chr, flags);
2345 return 0;
2346 }
2347
2348 static void monitor_parse(const char *optarg, const char *mode, bool pretty)
2349 {
2350 static int monitor_device_index = 0;
2351 Error *local_err = NULL;
2352 QemuOpts *opts;
2353 const char *p;
2354 char label[32];
2355 int def = 0;
2356
2357 if (strstart(optarg, "chardev:", &p)) {
2358 snprintf(label, sizeof(label), "%s", p);
2359 } else {
2360 snprintf(label, sizeof(label), "compat_monitor%d",
2361 monitor_device_index);
2362 if (monitor_device_index == 0) {
2363 def = 1;
2364 }
2365 opts = qemu_chr_parse_compat(label, optarg);
2366 if (!opts) {
2367 fprintf(stderr, "parse error: %s\n", optarg);
2368 exit(1);
2369 }
2370 }
2371
2372 opts = qemu_opts_create(qemu_find_opts("mon"), label, 1, &local_err);
2373 if (!opts) {
2374 error_report_err(local_err);
2375 exit(1);
2376 }
2377 qemu_opt_set(opts, "mode", mode, &error_abort);
2378 qemu_opt_set(opts, "chardev", label, &error_abort);
2379 qemu_opt_set_bool(opts, "pretty", pretty, &error_abort);
2380 if (def)
2381 qemu_opt_set(opts, "default", "on", &error_abort);
2382 monitor_device_index++;
2383 }
2384
2385 struct device_config {
2386 enum {
2387 DEV_USB, /* -usbdevice */
2388 DEV_BT, /* -bt */
2389 DEV_SERIAL, /* -serial */
2390 DEV_PARALLEL, /* -parallel */
2391 DEV_VIRTCON, /* -virtioconsole */
2392 DEV_DEBUGCON, /* -debugcon */
2393 DEV_GDB, /* -gdb, -s */
2394 DEV_SCLP, /* s390 sclp */
2395 } type;
2396 const char *cmdline;
2397 Location loc;
2398 QTAILQ_ENTRY(device_config) next;
2399 };
2400
2401 static QTAILQ_HEAD(, device_config) device_configs =
2402 QTAILQ_HEAD_INITIALIZER(device_configs);
2403
2404 static void add_device_config(int type, const char *cmdline)
2405 {
2406 struct device_config *conf;
2407
2408 conf = g_malloc0(sizeof(*conf));
2409 conf->type = type;
2410 conf->cmdline = cmdline;
2411 loc_save(&conf->loc);
2412 QTAILQ_INSERT_TAIL(&device_configs, conf, next);
2413 }
2414
2415 static int foreach_device_config(int type, int (*func)(const char *cmdline))
2416 {
2417 struct device_config *conf;
2418 int rc;
2419
2420 QTAILQ_FOREACH(conf, &device_configs, next) {
2421 if (conf->type != type)
2422 continue;
2423 loc_push_restore(&conf->loc);
2424 rc = func(conf->cmdline);
2425 loc_pop(&conf->loc);
2426 if (rc) {
2427 return rc;
2428 }
2429 }
2430 return 0;
2431 }
2432
2433 static int serial_parse(const char *devname)
2434 {
2435 static int index = 0;
2436 char label[32];
2437
2438 if (strcmp(devname, "none") == 0)
2439 return 0;
2440 if (index == MAX_SERIAL_PORTS) {
2441 fprintf(stderr, "qemu: too many serial ports\n");
2442 exit(1);
2443 }
2444 snprintf(label, sizeof(label), "serial%d", index);
2445 serial_hds[index] = qemu_chr_new(label, devname, NULL);
2446 if (!serial_hds[index]) {
2447 fprintf(stderr, "qemu: could not connect serial device"
2448 " to character backend '%s'\n", devname);
2449 return -1;
2450 }
2451 index++;
2452 return 0;
2453 }
2454
2455 static int parallel_parse(const char *devname)
2456 {
2457 static int index = 0;
2458 char label[32];
2459
2460 if (strcmp(devname, "none") == 0)
2461 return 0;
2462 if (index == MAX_PARALLEL_PORTS) {
2463 fprintf(stderr, "qemu: too many parallel ports\n");
2464 exit(1);
2465 }
2466 snprintf(label, sizeof(label), "parallel%d", index);
2467 parallel_hds[index] = qemu_chr_new(label, devname, NULL);
2468 if (!parallel_hds[index]) {
2469 fprintf(stderr, "qemu: could not connect parallel device"
2470 " to character backend '%s'\n", devname);
2471 return -1;
2472 }
2473 index++;
2474 return 0;
2475 }
2476
2477 static int virtcon_parse(const char *devname)
2478 {
2479 QemuOptsList *device = qemu_find_opts("device");
2480 static int index = 0;
2481 char label[32];
2482 QemuOpts *bus_opts, *dev_opts;
2483
2484 if (strcmp(devname, "none") == 0)
2485 return 0;
2486 if (index == MAX_VIRTIO_CONSOLES) {
2487 fprintf(stderr, "qemu: too many virtio consoles\n");
2488 exit(1);
2489 }
2490
2491 bus_opts = qemu_opts_create(device, NULL, 0, &error_abort);
2492 if (arch_type == QEMU_ARCH_S390X) {
2493 qemu_opt_set(bus_opts, "driver", "virtio-serial-s390", &error_abort);
2494 } else {
2495 qemu_opt_set(bus_opts, "driver", "virtio-serial-pci", &error_abort);
2496 }
2497
2498 dev_opts = qemu_opts_create(device, NULL, 0, &error_abort);
2499 qemu_opt_set(dev_opts, "driver", "virtconsole", &error_abort);
2500
2501 snprintf(label, sizeof(label), "virtcon%d", index);
2502 virtcon_hds[index] = qemu_chr_new(label, devname, NULL);
2503 if (!virtcon_hds[index]) {
2504 fprintf(stderr, "qemu: could not connect virtio console"
2505 " to character backend '%s'\n", devname);
2506 return -1;
2507 }
2508 qemu_opt_set(dev_opts, "chardev", label, &error_abort);
2509
2510 index++;
2511 return 0;
2512 }
2513
2514 static int sclp_parse(const char *devname)
2515 {
2516 QemuOptsList *device = qemu_find_opts("device");
2517 static int index = 0;
2518 char label[32];
2519 QemuOpts *dev_opts;
2520
2521 if (strcmp(devname, "none") == 0) {
2522 return 0;
2523 }
2524 if (index == MAX_SCLP_CONSOLES) {
2525 fprintf(stderr, "qemu: too many sclp consoles\n");
2526 exit(1);
2527 }
2528
2529 assert(arch_type == QEMU_ARCH_S390X);
2530
2531 dev_opts = qemu_opts_create(device, NULL, 0, NULL);
2532 qemu_opt_set(dev_opts, "driver", "sclpconsole", &error_abort);
2533
2534 snprintf(label, sizeof(label), "sclpcon%d", index);
2535 sclp_hds[index] = qemu_chr_new(label, devname, NULL);
2536 if (!sclp_hds[index]) {
2537 fprintf(stderr, "qemu: could not connect sclp console"
2538 " to character backend '%s'\n", devname);
2539 return -1;
2540 }
2541 qemu_opt_set(dev_opts, "chardev", label, &error_abort);
2542
2543 index++;
2544 return 0;
2545 }
2546
2547 static int debugcon_parse(const char *devname)
2548 {
2549 QemuOpts *opts;
2550
2551 if (!qemu_chr_new("debugcon", devname, NULL)) {
2552 exit(1);
2553 }
2554 opts = qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL);
2555 if (!opts) {
2556 fprintf(stderr, "qemu: already have a debugcon device\n");
2557 exit(1);
2558 }
2559 qemu_opt_set(opts, "driver", "isa-debugcon", &error_abort);
2560 qemu_opt_set(opts, "chardev", "debugcon", &error_abort);
2561 return 0;
2562 }
2563
2564 static gint machine_class_cmp(gconstpointer a, gconstpointer b)
2565 {
2566 const MachineClass *mc1 = a, *mc2 = b;
2567 int res;
2568
2569 if (mc1->family == NULL) {
2570 if (mc2->family == NULL) {
2571 /* Compare standalone machine types against each other; they sort
2572 * in increasing order.
2573 */
2574 return strcmp(object_class_get_name(OBJECT_CLASS(mc1)),
2575 object_class_get_name(OBJECT_CLASS(mc2)));
2576 }
2577
2578 /* Standalone machine types sort after families. */
2579 return 1;
2580 }
2581
2582 if (mc2->family == NULL) {
2583 /* Families sort before standalone machine types. */
2584 return -1;
2585 }
2586
2587 /* Families sort between each other alphabetically increasingly. */
2588 res = strcmp(mc1->family, mc2->family);
2589 if (res != 0) {
2590 return res;
2591 }
2592
2593 /* Within the same family, machine types sort in decreasing order. */
2594 return strcmp(object_class_get_name(OBJECT_CLASS(mc2)),
2595 object_class_get_name(OBJECT_CLASS(mc1)));
2596 }
2597
2598 static MachineClass *machine_parse(const char *name)
2599 {
2600 MachineClass *mc = NULL;
2601 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
2602
2603 if (name) {
2604 mc = find_machine(name);
2605 }
2606 if (mc) {
2607 g_slist_free(machines);
2608 return mc;
2609 }
2610 if (name && !is_help_option(name)) {
2611 error_report("Unsupported machine type");
2612 error_printf("Use -machine help to list supported machines!\n");
2613 } else {
2614 printf("Supported machines are:\n");
2615 machines = g_slist_sort(machines, machine_class_cmp);
2616 for (el = machines; el; el = el->next) {
2617 MachineClass *mc = el->data;
2618 if (mc->alias) {
2619 printf("%-20s %s (alias of %s)\n", mc->alias, mc->desc, mc->name);
2620 }
2621 printf("%-20s %s%s\n", mc->name, mc->desc,
2622 mc->is_default ? " (default)" : "");
2623 }
2624 }
2625
2626 g_slist_free(machines);
2627 exit(!name || !is_help_option(name));
2628 }
2629
2630 void qemu_add_exit_notifier(Notifier *notify)
2631 {
2632 notifier_list_add(&exit_notifiers, notify);
2633 }
2634
2635 void qemu_remove_exit_notifier(Notifier *notify)
2636 {
2637 notifier_remove(notify);
2638 }
2639
2640 static void qemu_run_exit_notifiers(void)
2641 {
2642 notifier_list_notify(&exit_notifiers, NULL);
2643 }
2644
2645 static bool machine_init_done;
2646
2647 void qemu_add_machine_init_done_notifier(Notifier *notify)
2648 {
2649 notifier_list_add(&machine_init_done_notifiers, notify);
2650 if (machine_init_done) {
2651 notify->notify(notify, NULL);
2652 }
2653 }
2654
2655 static void qemu_run_machine_init_done_notifiers(void)
2656 {
2657 notifier_list_notify(&machine_init_done_notifiers, NULL);
2658 machine_init_done = true;
2659 }
2660
2661 static const QEMUOption *lookup_opt(int argc, char **argv,
2662 const char **poptarg, int *poptind)
2663 {
2664 const QEMUOption *popt;
2665 int optind = *poptind;
2666 char *r = argv[optind];
2667 const char *optarg;
2668
2669 loc_set_cmdline(argv, optind, 1);
2670 optind++;
2671 /* Treat --foo the same as -foo. */
2672 if (r[1] == '-')
2673 r++;
2674 popt = qemu_options;
2675 for(;;) {
2676 if (!popt->name) {
2677 error_report("invalid option");
2678 exit(1);
2679 }
2680 if (!strcmp(popt->name, r + 1))
2681 break;
2682 popt++;
2683 }
2684 if (popt->flags & HAS_ARG) {
2685 if (optind >= argc) {
2686 error_report("requires an argument");
2687 exit(1);
2688 }
2689 optarg = argv[optind++];
2690 loc_set_cmdline(argv, optind - 2, 2);
2691 } else {
2692 optarg = NULL;
2693 }
2694
2695 *poptarg = optarg;
2696 *poptind = optind;
2697
2698 return popt;
2699 }
2700
2701 static gpointer malloc_and_trace(gsize n_bytes)
2702 {
2703 void *ptr = malloc(n_bytes);
2704 trace_g_malloc(n_bytes, ptr);
2705 return ptr;
2706 }
2707
2708 static gpointer realloc_and_trace(gpointer mem, gsize n_bytes)
2709 {
2710 void *ptr = realloc(mem, n_bytes);
2711 trace_g_realloc(mem, n_bytes, ptr);
2712 return ptr;
2713 }
2714
2715 static void free_and_trace(gpointer mem)
2716 {
2717 trace_g_free(mem);
2718 free(mem);
2719 }
2720
2721 static int machine_set_property(void *opaque,
2722 const char *name, const char *value,
2723 Error **errp)
2724 {
2725 Object *obj = OBJECT(opaque);
2726 Error *local_err = NULL;
2727 char *c, *qom_name;
2728
2729 if (strcmp(name, "type") == 0) {
2730 return 0;
2731 }
2732
2733 qom_name = g_strdup(name);
2734 c = qom_name;
2735 while (*c++) {
2736 if (*c == '_') {
2737 *c = '-';
2738 }
2739 }
2740
2741 object_property_parse(obj, value, qom_name, &local_err);
2742 g_free(qom_name);
2743
2744 if (local_err) {
2745 error_report_err(local_err);
2746 return -1;
2747 }
2748
2749 return 0;
2750 }
2751
2752 static int object_create(void *opaque, QemuOpts *opts, Error **errp)
2753 {
2754 Error *err = NULL;
2755 char *type = NULL;
2756 char *id = NULL;
2757 void *dummy = NULL;
2758 OptsVisitor *ov;
2759 QDict *pdict;
2760
2761 ov = opts_visitor_new(opts);
2762 pdict = qemu_opts_to_qdict(opts, NULL);
2763
2764 visit_start_struct(opts_get_visitor(ov), &dummy, NULL, NULL, 0, &err);
2765 if (err) {
2766 goto out;
2767 }
2768
2769 qdict_del(pdict, "qom-type");
2770 visit_type_str(opts_get_visitor(ov), &type, "qom-type", &err);
2771 if (err) {
2772 goto out;
2773 }
2774
2775 qdict_del(pdict, "id");
2776 visit_type_str(opts_get_visitor(ov), &id, "id", &err);
2777 if (err) {
2778 goto out;
2779 }
2780
2781 object_add(type, id, pdict, opts_get_visitor(ov), &err);
2782 if (err) {
2783 goto out;
2784 }
2785 visit_end_struct(opts_get_visitor(ov), &err);
2786 if (err) {
2787 qmp_object_del(id, NULL);
2788 }
2789
2790 out:
2791 opts_visitor_cleanup(ov);
2792
2793 QDECREF(pdict);
2794 g_free(id);
2795 g_free(type);
2796 g_free(dummy);
2797 if (err) {
2798 error_report_err(err);
2799 return -1;
2800 }
2801 return 0;
2802 }
2803
2804 static void set_memory_options(uint64_t *ram_slots, ram_addr_t *maxram_size,
2805 MachineClass *mc)
2806 {
2807 uint64_t sz;
2808 const char *mem_str;
2809 const char *maxmem_str, *slots_str;
2810 const ram_addr_t default_ram_size = mc->default_ram_size;
2811 QemuOpts *opts = qemu_find_opts_singleton("memory");
2812
2813 sz = 0;
2814 mem_str = qemu_opt_get(opts, "size");
2815 if (mem_str) {
2816 if (!*mem_str) {
2817 error_report("missing 'size' option value");
2818 exit(EXIT_FAILURE);
2819 }
2820
2821 sz = qemu_opt_get_size(opts, "size", ram_size);
2822
2823 /* Fix up legacy suffix-less format */
2824 if (g_ascii_isdigit(mem_str[strlen(mem_str) - 1])) {
2825 uint64_t overflow_check = sz;
2826
2827 sz <<= 20;
2828 if ((sz >> 20) != overflow_check) {
2829 error_report("too large 'size' option value");
2830 exit(EXIT_FAILURE);
2831 }
2832 }
2833 }
2834
2835 /* backward compatibility behaviour for case "-m 0" */
2836 if (sz == 0) {
2837 sz = default_ram_size;
2838 }
2839
2840 sz = QEMU_ALIGN_UP(sz, 8192);
2841 ram_size = sz;
2842 if (ram_size != sz) {
2843 error_report("ram size too large");
2844 exit(EXIT_FAILURE);
2845 }
2846
2847 /* store value for the future use */
2848 qemu_opt_set_number(opts, "size", ram_size, &error_abort);
2849 *maxram_size = ram_size;
2850
2851 maxmem_str = qemu_opt_get(opts, "maxmem");
2852 slots_str = qemu_opt_get(opts, "slots");
2853 if (maxmem_str && slots_str) {
2854 uint64_t slots;
2855
2856 sz = qemu_opt_get_size(opts, "maxmem", 0);
2857 slots = qemu_opt_get_number(opts, "slots", 0);
2858 if (sz < ram_size) {
2859 error_report("invalid value of -m option maxmem: "
2860 "maximum memory size (0x%" PRIx64 ") must be at least "
2861 "the initial memory size (0x" RAM_ADDR_FMT ")",
2862 sz, ram_size);
2863 exit(EXIT_FAILURE);
2864 } else if (sz > ram_size) {
2865 if (!slots) {
2866 error_report("invalid value of -m option: maxmem was "
2867 "specified, but no hotplug slots were specified");
2868 exit(EXIT_FAILURE);
2869 }
2870 } else if (slots) {
2871 error_report("invalid value of -m option maxmem: "
2872 "memory slots were specified but maximum memory size "
2873 "(0x%" PRIx64 ") is equal to the initial memory size "
2874 "(0x" RAM_ADDR_FMT ")", sz, ram_size);
2875 exit(EXIT_FAILURE);
2876 }
2877
2878 *maxram_size = sz;
2879 *ram_slots = slots;
2880 } else if ((!maxmem_str && slots_str) ||
2881 (maxmem_str && !slots_str)) {
2882 error_report("invalid -m option value: missing "
2883 "'%s' option", slots_str ? "maxmem" : "slots");
2884 exit(EXIT_FAILURE);
2885 }
2886 }
2887
2888 int main(int argc, char **argv, char **envp)
2889 {
2890 int i;
2891 int snapshot, linux_boot;
2892 const char *initrd_filename;
2893 const char *kernel_filename, *kernel_cmdline;
2894 const char *boot_order = NULL;
2895 const char *boot_once = NULL;
2896 DisplayState *ds;
2897 int cyls, heads, secs, translation;
2898 QemuOpts *hda_opts = NULL, *opts, *machine_opts, *icount_opts = NULL;
2899 QemuOptsList *olist;
2900 int optind;
2901 const char *optarg;
2902 const char *loadvm = NULL;
2903 MachineClass *machine_class;
2904 const char *cpu_model;
2905 const char *vga_model = NULL;
2906 const char *qtest_chrdev = NULL;
2907 const char *qtest_log = NULL;
2908 const char *pid_file = NULL;
2909 const char *incoming = NULL;
2910 #ifdef CONFIG_VNC
2911 int show_vnc_port = 0;
2912 #endif
2913 bool defconfig = true;
2914 bool userconfig = true;
2915 const char *log_mask = NULL;
2916 const char *log_file = NULL;
2917 GMemVTable mem_trace = {
2918 .malloc = malloc_and_trace,
2919 .realloc = realloc_and_trace,
2920 .free = free_and_trace,
2921 };
2922 const char *trace_events = NULL;
2923 const char *trace_file = NULL;
2924 ram_addr_t maxram_size;
2925 uint64_t ram_slots = 0;
2926 FILE *vmstate_dump_file = NULL;
2927 Error *main_loop_err = NULL;
2928
2929 qemu_init_cpu_loop();
2930 qemu_mutex_lock_iothread();
2931
2932 atexit(qemu_run_exit_notifiers);
2933 error_set_progname(argv[0]);
2934 qemu_init_exec_dir(argv[0]);
2935
2936 g_mem_set_vtable(&mem_trace);
2937
2938 module_call_init(MODULE_INIT_QOM);
2939
2940 qemu_add_opts(&qemu_drive_opts);
2941 qemu_add_drive_opts(&qemu_legacy_drive_opts);
2942 qemu_add_drive_opts(&qemu_common_drive_opts);
2943 qemu_add_drive_opts(&qemu_drive_opts);
2944 qemu_add_opts(&qemu_chardev_opts);
2945 qemu_add_opts(&qemu_device_opts);
2946 qemu_add_opts(&qemu_netdev_opts);
2947 qemu_add_opts(&qemu_net_opts);
2948 qemu_add_opts(&qemu_rtc_opts);
2949 qemu_add_opts(&qemu_global_opts);
2950 qemu_add_opts(&qemu_mon_opts);
2951 qemu_add_opts(&qemu_trace_opts);
2952 qemu_add_opts(&qemu_option_rom_opts);
2953 qemu_add_opts(&qemu_machine_opts);
2954 qemu_add_opts(&qemu_mem_opts);
2955 qemu_add_opts(&qemu_smp_opts);
2956 qemu_add_opts(&qemu_boot_opts);
2957 qemu_add_opts(&qemu_sandbox_opts);
2958 qemu_add_opts(&qemu_add_fd_opts);
2959 qemu_add_opts(&qemu_object_opts);
2960 qemu_add_opts(&qemu_tpmdev_opts);
2961 qemu_add_opts(&qemu_realtime_opts);
2962 qemu_add_opts(&qemu_msg_opts);
2963 qemu_add_opts(&qemu_name_opts);
2964 qemu_add_opts(&qemu_numa_opts);
2965 qemu_add_opts(&qemu_icount_opts);
2966 qemu_add_opts(&qemu_semihosting_config_opts);
2967 qemu_add_opts(&qemu_fw_cfg_opts);
2968
2969 runstate_init();
2970
2971 rtc_clock = QEMU_CLOCK_HOST;
2972
2973 QLIST_INIT (&vm_change_state_head);
2974 os_setup_early_signal_handling();
2975
2976 module_call_init(MODULE_INIT_MACHINE);
2977 machine_class = find_default_machine();
2978 cpu_model = NULL;
2979 snapshot = 0;
2980 cyls = heads = secs = 0;
2981 translation = BIOS_ATA_TRANSLATION_AUTO;
2982
2983 nb_nics = 0;
2984
2985 bdrv_init_with_whitelist();
2986
2987 autostart = 1;
2988
2989 /* first pass of option parsing */
2990 optind = 1;
2991 while (optind < argc) {
2992 if (argv[optind][0] != '-') {
2993 /* disk image */
2994 optind++;
2995 } else {
2996 const QEMUOption *popt;
2997
2998 popt = lookup_opt(argc, argv, &optarg, &optind);
2999 switch (popt->index) {
3000 case QEMU_OPTION_nodefconfig:
3001 defconfig = false;
3002 break;
3003 case QEMU_OPTION_nouserconfig:
3004 userconfig = false;
3005 break;
3006 }
3007 }
3008 }
3009
3010 if (defconfig) {
3011 int ret;
3012 ret = qemu_read_default_config_files(userconfig);
3013 if (ret < 0) {
3014 exit(1);
3015 }
3016 }
3017
3018 /* second pass of option parsing */
3019 optind = 1;
3020 for(;;) {
3021 if (optind >= argc)
3022 break;
3023 if (argv[optind][0] != '-') {
3024 hda_opts = drive_add(IF_DEFAULT, 0, argv[optind++], HD_OPTS);
3025 } else {
3026 const QEMUOption *popt;
3027
3028 popt = lookup_opt(argc, argv, &optarg, &optind);
3029 if (!(popt->arch_mask & arch_type)) {
3030 printf("Option %s not supported for this target\n", popt->name);
3031 exit(1);
3032 }
3033 switch(popt->index) {
3034 case QEMU_OPTION_no_kvm_irqchip: {
3035 olist = qemu_find_opts("machine");
3036 qemu_opts_parse(olist, "kernel_irqchip=off", 0);
3037 break;
3038 }
3039 case QEMU_OPTION_cpu:
3040 /* hw initialization will check this */
3041 cpu_model = optarg;
3042 break;
3043 case QEMU_OPTION_hda:
3044 {
3045 char buf[256];
3046 if (cyls == 0)
3047 snprintf(buf, sizeof(buf), "%s", HD_OPTS);
3048 else
3049 snprintf(buf, sizeof(buf),
3050 "%s,cyls=%d,heads=%d,secs=%d%s",
3051 HD_OPTS , cyls, heads, secs,
3052 translation == BIOS_ATA_TRANSLATION_LBA ?
3053 ",trans=lba" :
3054 translation == BIOS_ATA_TRANSLATION_NONE ?
3055 ",trans=none" : "");
3056 drive_add(IF_DEFAULT, 0, optarg, buf);
3057 break;
3058 }
3059 case QEMU_OPTION_hdb:
3060 case QEMU_OPTION_hdc:
3061 case QEMU_OPTION_hdd:
3062 drive_add(IF_DEFAULT, popt->index - QEMU_OPTION_hda, optarg,
3063 HD_OPTS);
3064 break;
3065 case QEMU_OPTION_drive:
3066 if (drive_def(optarg) == NULL) {
3067 exit(1);
3068 }
3069 break;
3070 case QEMU_OPTION_set:
3071 if (qemu_set_option(optarg) != 0)
3072 exit(1);
3073 break;
3074 case QEMU_OPTION_global:
3075 if (qemu_global_option(optarg) != 0)
3076 exit(1);
3077 break;
3078 case QEMU_OPTION_mtdblock:
3079 drive_add(IF_MTD, -1, optarg, MTD_OPTS);
3080 break;
3081 case QEMU_OPTION_sd:
3082 drive_add(IF_SD, -1, optarg, SD_OPTS);
3083 break;
3084 case QEMU_OPTION_pflash:
3085 drive_add(IF_PFLASH, -1, optarg, PFLASH_OPTS);
3086 break;
3087 case QEMU_OPTION_snapshot:
3088 snapshot = 1;
3089 break;
3090 case QEMU_OPTION_hdachs:
3091 {
3092 const char *p;
3093 p = optarg;
3094 cyls = strtol(p, (char **)&p, 0);
3095 if (cyls < 1 || cyls > 16383)
3096 goto chs_fail;
3097 if (*p != ',')
3098 goto chs_fail;
3099 p++;
3100 heads = strtol(p, (char **)&p, 0);
3101 if (heads < 1 || heads > 16)
3102 goto chs_fail;
3103 if (*p != ',')
3104 goto chs_fail;
3105 p++;
3106 secs = strtol(p, (char **)&p, 0);
3107 if (secs < 1 || secs > 63)
3108 goto chs_fail;
3109 if (*p == ',') {
3110 p++;
3111 if (!strcmp(p, "large")) {
3112 translation = BIOS_ATA_TRANSLATION_LARGE;
3113 } else if (!strcmp(p, "rechs")) {
3114 translation = BIOS_ATA_TRANSLATION_RECHS;
3115 } else if (!strcmp(p, "none")) {
3116 translation = BIOS_ATA_TRANSLATION_NONE;
3117 } else if (!strcmp(p, "lba")) {
3118 translation = BIOS_ATA_TRANSLATION_LBA;
3119 } else if (!strcmp(p, "auto")) {
3120 translation = BIOS_ATA_TRANSLATION_AUTO;
3121 } else {
3122 goto chs_fail;
3123 }
3124 } else if (*p != '\0') {
3125 chs_fail:
3126 fprintf(stderr, "qemu: invalid physical CHS format\n");
3127 exit(1);
3128 }
3129 if (hda_opts != NULL) {
3130 qemu_opt_set_number(hda_opts, "cyls", cyls,
3131 &error_abort);
3132 qemu_opt_set_number(hda_opts, "heads", heads,
3133 &error_abort);
3134 qemu_opt_set_number(hda_opts, "secs", secs,
3135 &error_abort);
3136 if (translation == BIOS_ATA_TRANSLATION_LARGE) {
3137 qemu_opt_set(hda_opts, "trans", "large",
3138 &error_abort);
3139 } else if (translation == BIOS_ATA_TRANSLATION_RECHS) {
3140 qemu_opt_set(hda_opts, "trans", "rechs",
3141 &error_abort);
3142 } else if (translation == BIOS_ATA_TRANSLATION_LBA) {
3143 qemu_opt_set(hda_opts, "trans", "lba",
3144 &error_abort);
3145 } else if (translation == BIOS_ATA_TRANSLATION_NONE) {
3146 qemu_opt_set(hda_opts, "trans", "none",
3147 &error_abort);
3148 }
3149 }
3150 }
3151 break;
3152 case QEMU_OPTION_numa:
3153 opts = qemu_opts_parse(qemu_find_opts("numa"), optarg, 1);
3154 if (!opts) {
3155 exit(1);
3156 }
3157 break;
3158 case QEMU_OPTION_display:
3159 display_type = select_display(optarg);
3160 break;
3161 case QEMU_OPTION_nographic:
3162 display_type = DT_NOGRAPHIC;
3163 break;
3164 case QEMU_OPTION_curses:
3165 #ifdef CONFIG_CURSES
3166 display_type = DT_CURSES;
3167 #else
3168 fprintf(stderr, "Curses support is disabled\n");
3169 exit(1);
3170 #endif
3171 break;
3172 case QEMU_OPTION_portrait:
3173 graphic_rotate = 90;
3174 break;
3175 case QEMU_OPTION_rotate:
3176 graphic_rotate = strtol(optarg, (char **) &optarg, 10);
3177 if (graphic_rotate != 0 && graphic_rotate != 90 &&
3178 graphic_rotate != 180 && graphic_rotate != 270) {
3179 fprintf(stderr,
3180 "qemu: only 90, 180, 270 deg rotation is available\n");
3181 exit(1);
3182 }
3183 break;
3184 case QEMU_OPTION_kernel:
3185 qemu_opts_set(qemu_find_opts("machine"), 0, "kernel", optarg,
3186 &error_abort);
3187 break;
3188 case QEMU_OPTION_initrd:
3189 qemu_opts_set(qemu_find_opts("machine"), 0, "initrd", optarg,
3190 &error_abort);
3191 break;
3192 case QEMU_OPTION_append:
3193 qemu_opts_set(qemu_find_opts("machine"), 0, "append", optarg,
3194 &error_abort);
3195 break;
3196 case QEMU_OPTION_dtb:
3197 qemu_opts_set(qemu_find_opts("machine"), 0, "dtb", optarg,
3198 &error_abort);
3199 break;
3200 case QEMU_OPTION_cdrom:
3201 drive_add(IF_DEFAULT, 2, optarg, CDROM_OPTS);
3202 break;
3203 case QEMU_OPTION_boot:
3204 opts = qemu_opts_parse(qemu_find_opts("boot-opts"), optarg, 1);
3205 if (!opts) {
3206 exit(1);
3207 }
3208 break;
3209 case QEMU_OPTION_fda:
3210 case QEMU_OPTION_fdb:
3211 drive_add(IF_FLOPPY, popt->index - QEMU_OPTION_fda,
3212 optarg, FD_OPTS);
3213 break;
3214 case QEMU_OPTION_no_fd_bootchk:
3215 fd_bootchk = 0;
3216 break;
3217 case QEMU_OPTION_netdev:
3218 if (net_client_parse(qemu_find_opts("netdev"), optarg) == -1) {
3219 exit(1);
3220 }
3221 break;
3222 case QEMU_OPTION_net:
3223 if (net_client_parse(qemu_find_opts("net"), optarg) == -1) {
3224 exit(1);
3225 }
3226 break;
3227 #ifdef CONFIG_LIBISCSI
3228 case QEMU_OPTION_iscsi:
3229 opts = qemu_opts_parse(qemu_find_opts("iscsi"), optarg, 0);
3230 if (!opts) {
3231 exit(1);
3232 }
3233 break;
3234 #endif
3235 #ifdef CONFIG_SLIRP
3236 case QEMU_OPTION_tftp:
3237 legacy_tftp_prefix = optarg;
3238 break;
3239 case QEMU_OPTION_bootp:
3240 legacy_bootp_filename = optarg;
3241 break;
3242 case QEMU_OPTION_redir:
3243 if (net_slirp_redir(optarg) < 0)
3244 exit(1);
3245 break;
3246 #endif
3247 case QEMU_OPTION_bt:
3248 add_device_config(DEV_BT, optarg);
3249 break;
3250 case QEMU_OPTION_audio_help:
3251 AUD_help ();
3252 exit (0);
3253 break;
3254 case QEMU_OPTION_soundhw:
3255 select_soundhw (optarg);
3256 break;
3257 case QEMU_OPTION_h:
3258 help(0);
3259 break;
3260 case QEMU_OPTION_version:
3261 version();
3262 exit(0);
3263 break;
3264 case QEMU_OPTION_m:
3265 opts = qemu_opts_parse(qemu_find_opts("memory"),
3266 optarg, 1);
3267 if (!opts) {
3268 exit(EXIT_FAILURE);
3269 }
3270 break;
3271 #ifdef CONFIG_TPM
3272 case QEMU_OPTION_tpmdev:
3273 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg) < 0) {
3274 exit(1);
3275 }
3276 break;
3277 #endif
3278 case QEMU_OPTION_mempath:
3279 mem_path = optarg;
3280 break;
3281 case QEMU_OPTION_mem_prealloc:
3282 mem_prealloc = 1;
3283 break;
3284 case QEMU_OPTION_d:
3285 log_mask = optarg;
3286 break;
3287 case QEMU_OPTION_D:
3288 log_file = optarg;
3289 break;
3290 case QEMU_OPTION_s:
3291 add_device_config(DEV_GDB, "tcp::" DEFAULT_GDBSTUB_PORT);
3292 break;
3293 case QEMU_OPTION_gdb:
3294 add_device_config(DEV_GDB, optarg);
3295 break;
3296 case QEMU_OPTION_L:
3297 if (data_dir_idx < ARRAY_SIZE(data_dir)) {
3298 data_dir[data_dir_idx++] = optarg;
3299 }
3300 break;
3301 case QEMU_OPTION_bios:
3302 qemu_opts_set(qemu_find_opts("machine"), 0, "firmware", optarg,
3303 &error_abort);
3304 break;
3305 case QEMU_OPTION_singlestep:
3306 singlestep = 1;
3307 break;
3308 case QEMU_OPTION_S:
3309 autostart = 0;
3310 break;
3311 case QEMU_OPTION_k:
3312 keyboard_layout = optarg;
3313 break;
3314 case QEMU_OPTION_localtime:
3315 rtc_utc = 0;
3316 break;
3317 case QEMU_OPTION_vga:
3318 vga_model = optarg;
3319 default_vga = 0;
3320 break;
3321 case QEMU_OPTION_g:
3322 {
3323 const char *p;
3324 int w, h, depth;
3325 p = optarg;
3326 w = strtol(p, (char **)&p, 10);
3327 if (w <= 0) {
3328 graphic_error:
3329 fprintf(stderr, "qemu: invalid resolution or depth\n");
3330 exit(1);
3331 }
3332 if (*p != 'x')
3333 goto graphic_error;
3334 p++;
3335 h = strtol(p, (char **)&p, 10);
3336 if (h <= 0)
3337 goto graphic_error;
3338 if (*p == 'x') {
3339 p++;
3340 depth = strtol(p, (char **)&p, 10);
3341 if (depth != 8 && depth != 15 && depth != 16 &&
3342 depth != 24 && depth != 32)
3343 goto graphic_error;
3344 } else if (*p == '\0') {
3345 depth = graphic_depth;
3346 } else {
3347 goto graphic_error;
3348 }
3349
3350 graphic_width = w;
3351 graphic_height = h;
3352 graphic_depth = depth;
3353 }
3354 break;
3355 case QEMU_OPTION_echr:
3356 {
3357 char *r;
3358 term_escape_char = strtol(optarg, &r, 0);
3359 if (r == optarg)
3360 printf("Bad argument to echr\n");
3361 break;
3362 }
3363 case QEMU_OPTION_monitor:
3364 default_monitor = 0;
3365 if (strncmp(optarg, "none", 4)) {
3366 monitor_parse(optarg, "readline", false);
3367 }
3368 break;
3369 case QEMU_OPTION_qmp:
3370 monitor_parse(optarg, "control", false);
3371 default_monitor = 0;
3372 break;
3373 case QEMU_OPTION_qmp_pretty:
3374 monitor_parse(optarg, "control", true);
3375 default_monitor = 0;
3376 break;
3377 case QEMU_OPTION_mon:
3378 opts = qemu_opts_parse(qemu_find_opts("mon"), optarg, 1);
3379 if (!opts) {
3380 exit(1);
3381 }
3382 default_monitor = 0;
3383 break;
3384 case QEMU_OPTION_chardev:
3385 opts = qemu_opts_parse(qemu_find_opts("chardev"), optarg, 1);
3386 if (!opts) {
3387 exit(1);
3388 }
3389 break;
3390 case QEMU_OPTION_fsdev:
3391 olist = qemu_find_opts("fsdev");
3392 if (!olist) {
3393 fprintf(stderr, "fsdev is not supported by this qemu build.\n");
3394 exit(1);
3395 }
3396 opts = qemu_opts_parse(olist, optarg, 1);
3397 if (!opts) {
3398 exit(1);
3399 }
3400 break;
3401 case QEMU_OPTION_virtfs: {
3402 QemuOpts *fsdev;
3403 QemuOpts *device;
3404 const char *writeout, *sock_fd, *socket;
3405
3406 olist = qemu_find_opts("virtfs");
3407 if (!olist) {
3408 fprintf(stderr, "virtfs is not supported by this qemu build.\n");
3409 exit(1);
3410 }
3411 opts = qemu_opts_parse(olist, optarg, 1);
3412 if (!opts) {
3413 exit(1);
3414 }
3415
3416 if (qemu_opt_get(opts, "fsdriver") == NULL ||
3417 qemu_opt_get(opts, "mount_tag") == NULL) {
3418 fprintf(stderr, "Usage: -virtfs fsdriver,mount_tag=tag.\n");
3419 exit(1);
3420 }
3421 fsdev = qemu_opts_create(qemu_find_opts("fsdev"),
3422 qemu_opt_get(opts, "mount_tag"),
3423 1, NULL);
3424 if (!fsdev) {
3425 fprintf(stderr, "duplicate fsdev id: %s\n",
3426 qemu_opt_get(opts, "mount_tag"));
3427 exit(1);
3428 }
3429
3430 writeout = qemu_opt_get(opts, "writeout");
3431 if (writeout) {
3432 #ifdef CONFIG_SYNC_FILE_RANGE
3433 qemu_opt_set(fsdev, "writeout", writeout, &error_abort);
3434 #else
3435 fprintf(stderr, "writeout=immediate not supported on "
3436 "this platform\n");
3437 exit(1);
3438 #endif
3439 }
3440 qemu_opt_set(fsdev, "fsdriver",
3441 qemu_opt_get(opts, "fsdriver"), &error_abort);
3442 qemu_opt_set(fsdev, "path", qemu_opt_get(opts, "path"),
3443 &error_abort);
3444 qemu_opt_set(fsdev, "security_model",
3445 qemu_opt_get(opts, "security_model"),
3446 &error_abort);
3447 socket = qemu_opt_get(opts, "socket");
3448 if (socket) {
3449 qemu_opt_set(fsdev, "socket", socket, &error_abort);
3450 }
3451 sock_fd = qemu_opt_get(opts, "sock_fd");
3452 if (sock_fd) {
3453 qemu_opt_set(fsdev, "sock_fd", sock_fd, &error_abort);
3454 }
3455
3456 qemu_opt_set_bool(fsdev, "readonly",
3457 qemu_opt_get_bool(opts, "readonly", 0),
3458 &error_abort);
3459 device = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
3460 &error_abort);
3461 qemu_opt_set(device, "driver", "virtio-9p-pci", &error_abort);
3462 qemu_opt_set(device, "fsdev",
3463 qemu_opt_get(opts, "mount_tag"), &error_abort);
3464 qemu_opt_set(device, "mount_tag",
3465 qemu_opt_get(opts, "mount_tag"), &error_abort);
3466 break;
3467 }
3468 case QEMU_OPTION_virtfs_synth: {
3469 QemuOpts *fsdev;
3470 QemuOpts *device;
3471
3472 fsdev = qemu_opts_create(qemu_find_opts("fsdev"), "v_synth",
3473 1, NULL);
3474 if (!fsdev) {
3475 fprintf(stderr, "duplicate option: %s\n", "virtfs_synth");
3476 exit(1);
3477 }
3478 qemu_opt_set(fsdev, "fsdriver", "synth", &error_abort);
3479
3480 device = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
3481 &error_abort);
3482 qemu_opt_set(device, "driver", "virtio-9p-pci", &error_abort);
3483 qemu_opt_set(device, "fsdev", "v_synth", &error_abort);
3484 qemu_opt_set(device, "mount_tag", "v_synth", &error_abort);
3485 break;
3486 }
3487 case QEMU_OPTION_serial:
3488 add_device_config(DEV_SERIAL, optarg);
3489 default_serial = 0;
3490 if (strncmp(optarg, "mon:", 4) == 0) {
3491 default_monitor = 0;
3492 }
3493 break;
3494 case QEMU_OPTION_watchdog:
3495 if (watchdog) {
3496 fprintf(stderr,
3497 "qemu: only one watchdog option may be given\n");
3498 return 1;
3499 }
3500 watchdog = optarg;
3501 break;
3502 case QEMU_OPTION_watchdog_action:
3503 if (select_watchdog_action(optarg) == -1) {
3504 fprintf(stderr, "Unknown -watchdog-action parameter\n");
3505 exit(1);
3506 }
3507 break;
3508 case QEMU_OPTION_virtiocon:
3509 add_device_config(DEV_VIRTCON, optarg);
3510 default_virtcon = 0;
3511 if (strncmp(optarg, "mon:", 4) == 0) {
3512 default_monitor = 0;
3513 }
3514 break;
3515 case QEMU_OPTION_parallel:
3516 add_device_config(DEV_PARALLEL, optarg);
3517 default_parallel = 0;
3518 if (strncmp(optarg, "mon:", 4) == 0) {
3519 default_monitor = 0;
3520 }
3521 break;
3522 case QEMU_OPTION_debugcon:
3523 add_device_config(DEV_DEBUGCON, optarg);
3524 break;
3525 case QEMU_OPTION_loadvm:
3526 loadvm = optarg;
3527 break;
3528 case QEMU_OPTION_full_screen:
3529 full_screen = 1;
3530 break;
3531 case QEMU_OPTION_no_frame:
3532 no_frame = 1;
3533 break;
3534 case QEMU_OPTION_alt_grab:
3535 alt_grab = 1;
3536 break;
3537 case QEMU_OPTION_ctrl_grab:
3538 ctrl_grab = 1;
3539 break;
3540 case QEMU_OPTION_no_quit:
3541 no_quit = 1;
3542 break;
3543 case QEMU_OPTION_sdl:
3544 #ifdef CONFIG_SDL
3545 display_type = DT_SDL;
3546 break;
3547 #else
3548 fprintf(stderr, "SDL support is disabled\n");
3549 exit(1);
3550 #endif
3551 case QEMU_OPTION_pidfile:
3552 pid_file = optarg;
3553 break;
3554 case QEMU_OPTION_win2k_hack:
3555 win2k_install_hack = 1;
3556 break;
3557 case QEMU_OPTION_rtc_td_hack: {
3558 static GlobalProperty slew_lost_ticks[] = {
3559 {
3560 .driver = "mc146818rtc",
3561 .property = "lost_tick_policy",
3562 .value = "slew",
3563 },
3564 { /* end of list */ }
3565 };
3566
3567 qdev_prop_register_global_list(slew_lost_ticks);
3568 break;
3569 }
3570 case QEMU_OPTION_acpitable:
3571 opts = qemu_opts_parse(qemu_find_opts("acpi"), optarg, 1);
3572 if (!opts) {
3573 exit(1);
3574 }
3575 do_acpitable_option(opts);
3576 break;
3577 case QEMU_OPTION_smbios:
3578 opts = qemu_opts_parse(qemu_find_opts("smbios"), optarg, 0);
3579 if (!opts) {
3580 exit(1);
3581 }
3582 do_smbios_option(opts);
3583 break;
3584 case QEMU_OPTION_fwcfg:
3585 opts = qemu_opts_parse(qemu_find_opts("fw_cfg"), optarg, 1);
3586 if (opts == NULL) {
3587 exit(1);
3588 }
3589 break;
3590 case QEMU_OPTION_enable_kvm:
3591 olist = qemu_find_opts("machine");
3592 qemu_opts_parse(olist, "accel=kvm", 0);
3593 break;
3594 case QEMU_OPTION_M:
3595 case QEMU_OPTION_machine:
3596 olist = qemu_find_opts("machine");
3597 opts = qemu_opts_parse(olist, optarg, 1);
3598 if (!opts) {
3599 exit(1);
3600 }
3601 break;
3602 case QEMU_OPTION_no_kvm:
3603 olist = qemu_find_opts("machine");
3604 qemu_opts_parse(olist, "accel=tcg", 0);
3605 break;
3606 case QEMU_OPTION_no_kvm_pit: {
3607 fprintf(stderr, "Warning: KVM PIT can no longer be disabled "
3608 "separately.\n");
3609 break;
3610 }
3611 case QEMU_OPTION_no_kvm_pit_reinjection: {
3612 static GlobalProperty kvm_pit_lost_tick_policy[] = {
3613 {
3614 .driver = "kvm-pit",
3615 .property = "lost_tick_policy",
3616 .value = "discard",
3617 },
3618 { /* end of list */ }
3619 };
3620
3621 fprintf(stderr, "Warning: option deprecated, use "
3622 "lost_tick_policy property of kvm-pit instead.\n");
3623 qdev_prop_register_global_list(kvm_pit_lost_tick_policy);
3624 break;
3625 }
3626 case QEMU_OPTION_usb:
3627 olist = qemu_find_opts("machine");
3628 qemu_opts_parse(olist, "usb=on", 0);
3629 break;
3630 case QEMU_OPTION_usbdevice:
3631 olist = qemu_find_opts("machine");
3632 qemu_opts_parse(olist, "usb=on", 0);
3633 add_device_config(DEV_USB, optarg);
3634 break;
3635 case QEMU_OPTION_device:
3636 if (!qemu_opts_parse(qemu_find_opts("device"), optarg, 1)) {
3637 exit(1);
3638 }
3639 break;
3640 case QEMU_OPTION_smp:
3641 if (!qemu_opts_parse(qemu_find_opts("smp-opts"), optarg, 1)) {
3642 exit(1);
3643 }
3644 break;
3645 case QEMU_OPTION_vnc:
3646 #ifdef CONFIG_VNC
3647 if (vnc_parse_func(optarg) == NULL) {
3648 exit(1);
3649 }
3650 #else
3651 fprintf(stderr, "VNC support is disabled\n");
3652 exit(1);
3653 #endif
3654 break;
3655 case QEMU_OPTION_no_acpi:
3656 acpi_enabled = 0;
3657 break;
3658 case QEMU_OPTION_no_hpet:
3659 no_hpet = 1;
3660 break;
3661 case QEMU_OPTION_balloon:
3662 if (balloon_parse(optarg) < 0) {
3663 fprintf(stderr, "Unknown -balloon argument %s\n", optarg);
3664 exit(1);
3665 }
3666 break;
3667 case QEMU_OPTION_no_reboot:
3668 no_reboot = 1;
3669 break;
3670 case QEMU_OPTION_no_shutdown:
3671 no_shutdown = 1;
3672 break;
3673 case QEMU_OPTION_show_cursor:
3674 cursor_hide = 0;
3675 break;
3676 case QEMU_OPTION_uuid:
3677 if(qemu_uuid_parse(optarg, qemu_uuid) < 0) {
3678 fprintf(stderr, "Fail to parse UUID string."
3679 " Wrong format.\n");
3680 exit(1);
3681 }
3682 qemu_uuid_set = true;
3683 break;
3684 case QEMU_OPTION_option_rom:
3685 if (nb_option_roms >= MAX_OPTION_ROMS) {
3686 fprintf(stderr, "Too many option ROMs\n");
3687 exit(1);
3688 }
3689 opts = qemu_opts_parse(qemu_find_opts("option-rom"), optarg, 1);
3690 if (!opts) {
3691 exit(1);
3692 }
3693 option_rom[nb_option_roms].name = qemu_opt_get(opts, "romfile");
3694 option_rom[nb_option_roms].bootindex =
3695 qemu_opt_get_number(opts, "bootindex", -1);
3696 if (!option_rom[nb_option_roms].name) {
3697 fprintf(stderr, "Option ROM file is not specified\n");
3698 exit(1);
3699 }
3700 nb_option_roms++;
3701 break;
3702 case QEMU_OPTION_semihosting:
3703 semihosting.enabled = true;
3704 semihosting.target = SEMIHOSTING_TARGET_AUTO;
3705 break;
3706 case QEMU_OPTION_semihosting_config:
3707 semihosting.enabled = true;
3708 opts = qemu_opts_parse(qemu_find_opts("semihosting-config"),
3709 optarg, 0);
3710 if (opts != NULL) {
3711 semihosting.enabled = qemu_opt_get_bool(opts, "enable",
3712 true);
3713 const char *target = qemu_opt_get(opts, "target");
3714 if (target != NULL) {
3715 if (strcmp("native", target) == 0) {
3716 semihosting.target = SEMIHOSTING_TARGET_NATIVE;
3717 } else if (strcmp("gdb", target) == 0) {
3718 semihosting.target = SEMIHOSTING_TARGET_GDB;
3719 } else if (strcmp("auto", target) == 0) {
3720 semihosting.target = SEMIHOSTING_TARGET_AUTO;
3721 } else {
3722 fprintf(stderr, "Unsupported semihosting-config"
3723 " %s\n",
3724 optarg);
3725 exit(1);
3726 }
3727 } else {
3728 semihosting.target = SEMIHOSTING_TARGET_AUTO;
3729 }
3730 /* Set semihosting argument count and vector */
3731 qemu_opt_foreach(opts, add_semihosting_arg,
3732 &semihosting, NULL);
3733 } else {
3734 fprintf(stderr, "Unsupported semihosting-config %s\n",
3735 optarg);
3736 exit(1);
3737 }
3738 break;
3739 case QEMU_OPTION_tdf:
3740 fprintf(stderr, "Warning: user space PIT time drift fix "
3741 "is no longer supported.\n");
3742 break;
3743 case QEMU_OPTION_name:
3744 opts = qemu_opts_parse(qemu_find_opts("name"), optarg, 1);
3745 if (!opts) {
3746 exit(1);
3747 }
3748 break;
3749 case QEMU_OPTION_prom_env:
3750 if (nb_prom_envs >= MAX_PROM_ENVS) {
3751 fprintf(stderr, "Too many prom variables\n");
3752 exit(1);
3753 }
3754 prom_envs[nb_prom_envs] = optarg;
3755 nb_prom_envs++;
3756 break;
3757 case QEMU_OPTION_old_param:
3758 old_param = 1;
3759 break;
3760 case QEMU_OPTION_clock:
3761 /* Clock options no longer exist. Keep this option for
3762 * backward compatibility.
3763 */
3764 break;
3765 case QEMU_OPTION_startdate:
3766 configure_rtc_date_offset(optarg, 1);
3767 break;
3768 case QEMU_OPTION_rtc:
3769 opts = qemu_opts_parse(qemu_find_opts("rtc"), optarg, 0);
3770 if (!opts) {
3771 exit(1);
3772 }
3773 configure_rtc(opts);
3774 break;
3775 case QEMU_OPTION_tb_size:
3776 tcg_tb_size = strtol(optarg, NULL, 0);
3777 if (tcg_tb_size < 0) {
3778 tcg_tb_size = 0;
3779 }
3780 break;
3781 case QEMU_OPTION_icount:
3782 icount_opts = qemu_opts_parse(qemu_find_opts("icount"),
3783 optarg, 1);
3784 if (!icount_opts) {
3785 exit(1);
3786 }
3787 break;
3788 case QEMU_OPTION_incoming:
3789 if (!incoming) {
3790 runstate_set(RUN_STATE_INMIGRATE);
3791 }
3792 incoming = optarg;
3793 break;
3794 case QEMU_OPTION_nodefaults:
3795 has_defaults = 0;
3796 break;
3797 case QEMU_OPTION_xen_domid:
3798 if (!(xen_available())) {
3799 printf("Option %s not supported for this target\n", popt->name);
3800 exit(1);
3801 }
3802 xen_domid = atoi(optarg);
3803 break;
3804 case QEMU_OPTION_xen_create:
3805 if (!(xen_available())) {
3806 printf("Option %s not supported for this target\n", popt->name);
3807 exit(1);
3808 }
3809 xen_mode = XEN_CREATE;
3810 break;
3811 case QEMU_OPTION_xen_attach:
3812 if (!(xen_available())) {
3813 printf("Option %s not supported for this target\n", popt->name);
3814 exit(1);
3815 }
3816 xen_mode = XEN_ATTACH;
3817 break;
3818 case QEMU_OPTION_trace:
3819 {
3820 opts = qemu_opts_parse(qemu_find_opts("trace"), optarg, 0);
3821 if (!opts) {
3822 exit(1);
3823 }
3824 trace_events = qemu_opt_get(opts, "events");
3825 trace_file = qemu_opt_get(opts, "file");
3826 break;
3827 }
3828 case QEMU_OPTION_readconfig:
3829 {
3830 int ret = qemu_read_config_file(optarg);
3831 if (ret < 0) {
3832 fprintf(stderr, "read config %s: %s\n", optarg,
3833 strerror(-ret));
3834 exit(1);
3835 }
3836 break;
3837 }
3838 case QEMU_OPTION_spice:
3839 olist = qemu_find_opts("spice");
3840 if (!olist) {
3841 fprintf(stderr, "spice is not supported by this qemu build.\n");
3842 exit(1);
3843 }
3844 opts = qemu_opts_parse(olist, optarg, 0);
3845 if (!opts) {
3846 exit(1);
3847 }
3848 display_remote++;
3849 break;
3850 case QEMU_OPTION_writeconfig:
3851 {
3852 FILE *fp;
3853 if (strcmp(optarg, "-") == 0) {
3854 fp = stdout;
3855 } else {
3856 fp = fopen(optarg, "w");
3857 if (fp == NULL) {
3858 fprintf(stderr, "open %s: %s\n", optarg, strerror(errno));
3859 exit(1);
3860 }
3861 }
3862 qemu_config_write(fp);
3863 if (fp != stdout) {
3864 fclose(fp);
3865 }
3866 break;
3867 }
3868 case QEMU_OPTION_qtest:
3869 qtest_chrdev = optarg;
3870 break;
3871 case QEMU_OPTION_qtest_log:
3872 qtest_log = optarg;
3873 break;
3874 case QEMU_OPTION_sandbox:
3875 opts = qemu_opts_parse(qemu_find_opts("sandbox"), optarg, 1);
3876 if (!opts) {
3877 exit(1);
3878 }
3879 break;
3880 case QEMU_OPTION_add_fd:
3881 #ifndef _WIN32
3882 opts = qemu_opts_parse(qemu_find_opts("add-fd"), optarg, 0);
3883 if (!opts) {
3884 exit(1);
3885 }
3886 #else
3887 error_report("File descriptor passing is disabled on this "
3888 "platform");
3889 exit(1);
3890 #endif
3891 break;
3892 case QEMU_OPTION_object:
3893 opts = qemu_opts_parse(qemu_find_opts("object"), optarg, 1);
3894 if (!opts) {
3895 exit(1);
3896 }
3897 break;
3898 case QEMU_OPTION_realtime:
3899 opts = qemu_opts_parse(qemu_find_opts("realtime"), optarg, 0);
3900 if (!opts) {
3901 exit(1);
3902 }
3903 enable_mlock = qemu_opt_get_bool(opts, "mlock", true);
3904 break;
3905 case QEMU_OPTION_msg:
3906 opts = qemu_opts_parse(qemu_find_opts("msg"), optarg, 0);
3907 if (!opts) {
3908 exit(1);
3909 }
3910 configure_msg(opts);
3911 break;
3912 case QEMU_OPTION_dump_vmstate:
3913 if (vmstate_dump_file) {
3914 fprintf(stderr, "qemu: only one '-dump-vmstate' "
3915 "option may be given\n");
3916 exit(1);
3917 }
3918 vmstate_dump_file = fopen(optarg, "w");
3919 if (vmstate_dump_file == NULL) {
3920 fprintf(stderr, "open %s: %s\n", optarg, strerror(errno));
3921 exit(1);
3922 }
3923 break;
3924 default:
3925 os_parse_cmd_args(popt->index, optarg);
3926 }
3927 }
3928 }
3929
3930 opts = qemu_get_machine_opts();
3931 optarg = qemu_opt_get(opts, "type");
3932 if (optarg) {
3933 machine_class = machine_parse(optarg);
3934 }
3935
3936 if (machine_class == NULL) {
3937 fprintf(stderr, "No machine specified, and there is no default.\n"
3938 "Use -machine help to list supported machines!\n");
3939 exit(1);
3940 }
3941
3942 set_memory_options(&ram_slots, &maxram_size, machine_class);
3943
3944 loc_set_none();
3945
3946 os_daemonize();
3947
3948 if (qemu_init_main_loop(&main_loop_err)) {
3949 error_report_err(main_loop_err);
3950 exit(1);
3951 }
3952
3953 if (qemu_opts_foreach(qemu_find_opts("sandbox"),
3954 parse_sandbox, NULL, NULL)) {
3955 exit(1);
3956 }
3957
3958 if (qemu_opts_foreach(qemu_find_opts("name"),
3959 parse_name, NULL, NULL)) {
3960 exit(1);
3961 }
3962
3963 #ifndef _WIN32
3964 if (qemu_opts_foreach(qemu_find_opts("add-fd"),
3965 parse_add_fd, NULL, NULL)) {
3966 exit(1);
3967 }
3968
3969 if (qemu_opts_foreach(qemu_find_opts("add-fd"),
3970 cleanup_add_fd, NULL, NULL)) {
3971 exit(1);
3972 }
3973 #endif
3974
3975 current_machine = MACHINE(object_new(object_class_get_name(
3976 OBJECT_CLASS(machine_class))));
3977 if (machine_help_func(qemu_get_machine_opts(), current_machine)) {
3978 exit(0);
3979 }
3980 object_property_add_child(object_get_root(), "machine",
3981 OBJECT(current_machine), &error_abort);
3982 cpu_exec_init_all();
3983
3984 if (machine_class->hw_version) {
3985 qemu_set_version(machine_class->hw_version);
3986 }
3987
3988 /* Init CPU def lists, based on config
3989 * - Must be called after all the qemu_read_config_file() calls
3990 * - Must be called before list_cpus()
3991 * - Must be called before machine->init()
3992 */
3993 cpudef_init();
3994
3995 if (cpu_model && is_help_option(cpu_model)) {
3996 list_cpus(stdout, &fprintf, cpu_model);
3997 exit(0);
3998 }
3999
4000 /* Open the logfile at this point and set the log mask if necessary.
4001 */
4002 if (log_file) {
4003 qemu_set_log_filename(log_file);
4004 }
4005
4006 if (log_mask) {
4007 int mask;
4008 mask = qemu_str_to_log_mask(log_mask);
4009 if (!mask) {
4010 qemu_print_log_usage(stdout);
4011 exit(1);
4012 }
4013 qemu_set_log(mask);
4014 }
4015
4016 if (!is_daemonized()) {
4017 if (!trace_init_backends(trace_events, trace_file)) {
4018 exit(1);
4019 }
4020 }
4021
4022 /* If no data_dir is specified then try to find it relative to the
4023 executable path. */
4024 if (data_dir_idx < ARRAY_SIZE(data_dir)) {
4025 data_dir[data_dir_idx] = os_find_datadir();
4026 if (data_dir[data_dir_idx] != NULL) {
4027 data_dir_idx++;
4028 }
4029 }
4030 /* If all else fails use the install path specified when building. */
4031 if (data_dir_idx < ARRAY_SIZE(data_dir)) {
4032 data_dir[data_dir_idx++] = CONFIG_QEMU_DATADIR;
4033 }
4034
4035 smp_parse(qemu_opts_find(qemu_find_opts("smp-opts"), NULL));
4036
4037 machine_class->max_cpus = machine_class->max_cpus ?: 1; /* Default to UP */
4038 if (max_cpus > machine_class->max_cpus) {
4039 fprintf(stderr, "Number of SMP cpus requested (%d), exceeds max cpus "
4040 "supported by machine `%s' (%d)\n", max_cpus,
4041 machine_class->name, machine_class->max_cpus);
4042 exit(1);
4043 }
4044
4045 /*
4046 * Get the default machine options from the machine if it is not already
4047 * specified either by the configuration file or by the command line.
4048 */
4049 if (machine_class->default_machine_opts) {
4050 qemu_opts_set_defaults(qemu_find_opts("machine"),
4051 machine_class->default_machine_opts, 0);
4052 }
4053
4054 qemu_opts_foreach(qemu_find_opts("device"),
4055 default_driver_check, NULL, NULL);
4056 qemu_opts_foreach(qemu_find_opts("global"),
4057 default_driver_check, NULL, NULL);
4058
4059 if (!vga_model && !default_vga) {
4060 vga_interface_type = VGA_DEVICE;
4061 }
4062 if (!has_defaults || machine_class->no_serial) {
4063 default_serial = 0;
4064 }
4065 if (!has_defaults || machine_class->no_parallel) {
4066 default_parallel = 0;
4067 }
4068 if (!has_defaults || !machine_class->use_virtcon) {
4069 default_virtcon = 0;
4070 }
4071 if (!has_defaults || !machine_class->use_sclp) {
4072 default_sclp = 0;
4073 }
4074 if (!has_defaults || machine_class->no_floppy) {
4075 default_floppy = 0;
4076 }
4077 if (!has_defaults || machine_class->no_cdrom) {
4078 default_cdrom = 0;
4079 }
4080 if (!has_defaults || machine_class->no_sdcard) {
4081 default_sdcard = 0;
4082 }
4083 if (!has_defaults) {
4084 default_monitor = 0;
4085 default_net = 0;
4086 default_vga = 0;
4087 }
4088
4089 if (is_daemonized()) {
4090 /* According to documentation and historically, -nographic redirects
4091 * serial port, parallel port and monitor to stdio, which does not work
4092 * with -daemonize. We can redirect these to null instead, but since
4093 * -nographic is legacy, let's just error out.
4094 * We disallow -nographic only if all other ports are not redirected
4095 * explicitly, to not break existing legacy setups which uses
4096 * -nographic _and_ redirects all ports explicitly - this is valid
4097 * usage, -nographic is just a no-op in this case.
4098 */
4099 if (display_type == DT_NOGRAPHIC
4100 && (default_parallel || default_serial
4101 || default_monitor || default_virtcon)) {
4102 fprintf(stderr, "-nographic can not be used with -daemonize\n");
4103 exit(1);
4104 }
4105 #ifdef CONFIG_CURSES
4106 if (display_type == DT_CURSES) {
4107 fprintf(stderr, "curses display can not be used with -daemonize\n");
4108 exit(1);
4109 }
4110 #endif
4111 }
4112
4113 if (display_type == DT_NOGRAPHIC) {
4114 if (default_parallel)
4115 add_device_config(DEV_PARALLEL, "null");
4116 if (default_serial && default_monitor) {
4117 add_device_config(DEV_SERIAL, "mon:stdio");
4118 } else if (default_virtcon && default_monitor) {
4119 add_device_config(DEV_VIRTCON, "mon:stdio");
4120 } else if (default_sclp && default_monitor) {
4121 add_device_config(DEV_SCLP, "mon:stdio");
4122 } else {
4123 if (default_serial)
4124 add_device_config(DEV_SERIAL, "stdio");
4125 if (default_virtcon)
4126 add_device_config(DEV_VIRTCON, "stdio");
4127 if (default_sclp) {
4128 add_device_config(DEV_SCLP, "stdio");
4129 }
4130 if (default_monitor)
4131 monitor_parse("stdio", "readline", false);
4132 }
4133 } else {
4134 if (default_serial)
4135 add_device_config(DEV_SERIAL, "vc:80Cx24C");
4136 if (default_parallel)
4137 add_device_config(DEV_PARALLEL, "vc:80Cx24C");
4138 if (default_monitor)
4139 monitor_parse("vc:80Cx24C", "readline", false);
4140 if (default_virtcon)
4141 add_device_config(DEV_VIRTCON, "vc:80Cx24C");
4142 if (default_sclp) {
4143 add_device_config(DEV_SCLP, "vc:80Cx24C");
4144 }
4145 }
4146
4147 #if defined(CONFIG_VNC)
4148 if (!QTAILQ_EMPTY(&(qemu_find_opts("vnc")->head))) {
4149 display_remote++;
4150 }
4151 #endif
4152 if (display_type == DT_DEFAULT && !display_remote) {
4153 #if defined(CONFIG_GTK)
4154 display_type = DT_GTK;
4155 #elif defined(CONFIG_SDL) || defined(CONFIG_COCOA)
4156 display_type = DT_SDL;
4157 #elif defined(CONFIG_VNC)
4158 vnc_parse_func("localhost:0,to=99,id=default");
4159 show_vnc_port = 1;
4160 #else
4161 display_type = DT_NONE;
4162 #endif
4163 }
4164
4165 if ((no_frame || alt_grab || ctrl_grab) && display_type != DT_SDL) {
4166 fprintf(stderr, "-no-frame, -alt-grab and -ctrl-grab are only valid "
4167 "for SDL, ignoring option\n");
4168 }
4169 if (no_quit && (display_type != DT_GTK && display_type != DT_SDL)) {
4170 fprintf(stderr, "-no-quit is only valid for GTK and SDL, "
4171 "ignoring option\n");
4172 }
4173
4174 #if defined(CONFIG_GTK)
4175 if (display_type == DT_GTK) {
4176 early_gtk_display_init(request_opengl);
4177 }
4178 #endif
4179 #if defined(CONFIG_SDL)
4180 if (display_type == DT_SDL) {
4181 sdl_display_early_init(request_opengl);
4182 }
4183 #endif
4184 if (request_opengl == 1 && display_opengl == 0) {
4185 #if defined(CONFIG_OPENGL)
4186 fprintf(stderr, "OpenGL is not supported by the display.\n");
4187 #else
4188 fprintf(stderr, "QEMU was built without opengl support.\n");
4189 #endif
4190 exit(1);
4191 }
4192
4193 socket_init();
4194
4195 if (qemu_opts_foreach(qemu_find_opts("chardev"),
4196 chardev_init_func, NULL, NULL)) {
4197 exit(1);
4198 }
4199
4200 #ifdef CONFIG_VIRTFS
4201 if (qemu_opts_foreach(qemu_find_opts("fsdev"),
4202 fsdev_init_func, NULL, NULL)) {
4203 exit(1);
4204 }
4205 #endif
4206
4207 if (pid_file && qemu_create_pidfile(pid_file) != 0) {
4208 fprintf(stderr, "Could not acquire pid file: %s\n", strerror(errno));
4209 exit(1);
4210 }
4211
4212 if (qemu_opts_foreach(qemu_find_opts("device"),
4213 device_help_func, NULL, NULL)) {
4214 exit(0);
4215 }
4216
4217 if (qemu_opts_foreach(qemu_find_opts("object"),
4218 object_create, NULL, NULL)) {
4219 exit(1);
4220 }
4221
4222 machine_opts = qemu_get_machine_opts();
4223 if (qemu_opt_foreach(machine_opts, machine_set_property, current_machine,
4224 NULL)) {
4225 object_unref(OBJECT(current_machine));
4226 exit(1);
4227 }
4228
4229 configure_accelerator(current_machine);
4230
4231 if (qtest_chrdev) {
4232 Error *local_err = NULL;
4233 qtest_init(qtest_chrdev, qtest_log, &local_err);
4234 if (local_err) {
4235 error_report_err(local_err);
4236 exit(1);
4237 }
4238 }
4239
4240 machine_opts = qemu_get_machine_opts();
4241 kernel_filename = qemu_opt_get(machine_opts, "kernel");
4242 initrd_filename = qemu_opt_get(machine_opts, "initrd");
4243 kernel_cmdline = qemu_opt_get(machine_opts, "append");
4244 bios_name = qemu_opt_get(machine_opts, "firmware");
4245
4246 opts = qemu_opts_find(qemu_find_opts("boot-opts"), NULL);
4247 if (opts) {
4248 Error *local_err = NULL;
4249
4250 boot_order = qemu_opt_get(opts, "order");
4251 if (boot_order) {
4252 validate_bootdevices(boot_order, &local_err);
4253 if (local_err) {
4254 error_report_err(local_err);
4255 exit(1);
4256 }
4257 }
4258
4259 boot_once = qemu_opt_get(opts, "once");
4260 if (boot_once) {
4261 validate_bootdevices(boot_once, &local_err);
4262 if (local_err) {
4263 error_report_err(local_err);
4264 exit(1);
4265 }
4266 }
4267
4268 boot_menu = qemu_opt_get_bool(opts, "menu", boot_menu);
4269 boot_strict = qemu_opt_get_bool(opts, "strict", false);
4270 }
4271
4272 if (!boot_order) {
4273 boot_order = machine_class->default_boot_order;
4274 }
4275
4276 if (!kernel_cmdline) {
4277 kernel_cmdline = "";
4278 current_machine->kernel_cmdline = (char *)kernel_cmdline;
4279 }
4280
4281 linux_boot = (kernel_filename != NULL);
4282
4283 if (!linux_boot && *kernel_cmdline != '\0') {
4284 fprintf(stderr, "-append only allowed with -kernel option\n");
4285 exit(1);
4286 }
4287
4288 if (!linux_boot && initrd_filename != NULL) {
4289 fprintf(stderr, "-initrd only allowed with -kernel option\n");
4290 exit(1);
4291 }
4292
4293 if (!linux_boot && qemu_opt_get(machine_opts, "dtb")) {
4294 fprintf(stderr, "-dtb only allowed with -kernel option\n");
4295 exit(1);
4296 }
4297
4298 if (semihosting_enabled() && !semihosting_get_argc() && kernel_filename) {
4299 /* fall back to the -kernel/-append */
4300 semihosting_arg_fallback(kernel_filename, kernel_cmdline);
4301 }
4302
4303 os_set_line_buffering();
4304
4305 #ifdef CONFIG_SPICE
4306 /* spice needs the timers to be initialized by this point */
4307 qemu_spice_init();
4308 #endif
4309
4310 cpu_ticks_init();
4311 if (icount_opts) {
4312 if (kvm_enabled() || xen_enabled()) {
4313 fprintf(stderr, "-icount is not allowed with kvm or xen\n");
4314 exit(1);
4315 }
4316 configure_icount(icount_opts, &error_abort);
4317 qemu_opts_del(icount_opts);
4318 }
4319
4320 /* clean up network at qemu process termination */
4321 atexit(&net_cleanup);
4322
4323 if (net_init_clients() < 0) {
4324 exit(1);
4325 }
4326
4327 #ifdef CONFIG_TPM
4328 if (tpm_init() < 0) {
4329 exit(1);
4330 }
4331 #endif
4332
4333 /* init the bluetooth world */
4334 if (foreach_device_config(DEV_BT, bt_parse))
4335 exit(1);
4336
4337 if (!xen_enabled()) {
4338 /* On 32-bit hosts, QEMU is limited by virtual address space */
4339 if (ram_size > (2047 << 20) && HOST_LONG_BITS == 32) {
4340 fprintf(stderr, "qemu: at most 2047 MB RAM can be simulated\n");
4341 exit(1);
4342 }
4343 }
4344
4345 blk_mig_init();
4346 ram_mig_init();
4347
4348 /* If the currently selected machine wishes to override the units-per-bus
4349 * property of its default HBA interface type, do so now. */
4350 if (machine_class->units_per_default_bus) {
4351 override_max_devs(machine_class->block_default_type,
4352 machine_class->units_per_default_bus);
4353 }
4354
4355 /* open the virtual block devices */
4356 if (snapshot)
4357 qemu_opts_foreach(qemu_find_opts("drive"),
4358 drive_enable_snapshot, NULL, NULL);
4359 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func,
4360 &machine_class->block_default_type, NULL)) {
4361 exit(1);
4362 }
4363
4364 default_drive(default_cdrom, snapshot, machine_class->block_default_type, 2,
4365 CDROM_OPTS);
4366 default_drive(default_floppy, snapshot, IF_FLOPPY, 0, FD_OPTS);
4367 default_drive(default_sdcard, snapshot, IF_SD, 0, SD_OPTS);
4368
4369 parse_numa_opts(machine_class);
4370
4371 if (qemu_opts_foreach(qemu_find_opts("mon"),
4372 mon_init_func, NULL, NULL)) {
4373 exit(1);
4374 }
4375
4376 if (foreach_device_config(DEV_SERIAL, serial_parse) < 0)
4377 exit(1);
4378 if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0)
4379 exit(1);
4380 if (foreach_device_config(DEV_VIRTCON, virtcon_parse) < 0)
4381 exit(1);
4382 if (foreach_device_config(DEV_SCLP, sclp_parse) < 0) {
4383 exit(1);
4384 }
4385 if (foreach_device_config(DEV_DEBUGCON, debugcon_parse) < 0)
4386 exit(1);
4387
4388 /* If no default VGA is requested, the default is "none". */
4389 if (default_vga) {
4390 if (machine_class->default_display) {
4391 vga_model = machine_class->default_display;
4392 } else if (cirrus_vga_available()) {
4393 vga_model = "cirrus";
4394 } else if (vga_available()) {
4395 vga_model = "std";
4396 }
4397 }
4398 if (vga_model) {
4399 select_vgahw(vga_model);
4400 }
4401
4402 if (watchdog) {
4403 i = select_watchdog(watchdog);
4404 if (i > 0)
4405 exit (i == 1 ? 1 : 0);
4406 }
4407
4408 if (machine_class->compat_props) {
4409 qdev_prop_register_global_list(machine_class->compat_props);
4410 }
4411 qemu_add_globals();
4412
4413 qdev_machine_init();
4414
4415 current_machine->ram_size = ram_size;
4416 current_machine->maxram_size = maxram_size;
4417 current_machine->ram_slots = ram_slots;
4418 current_machine->boot_order = boot_order;
4419 current_machine->cpu_model = cpu_model;
4420
4421 machine_class->init(current_machine);
4422
4423 realtime_init();
4424
4425 audio_init();
4426
4427 cpu_synchronize_all_post_init();
4428
4429 numa_post_machine_init();
4430
4431 if (qemu_opts_foreach(qemu_find_opts("fw_cfg"),
4432 parse_fw_cfg, fw_cfg_find(), NULL) != 0) {
4433 exit(1);
4434 }
4435
4436 /* init USB devices */
4437 if (usb_enabled()) {
4438 if (foreach_device_config(DEV_USB, usb_parse) < 0)
4439 exit(1);
4440 }
4441
4442 /* init generic devices */
4443 if (qemu_opts_foreach(qemu_find_opts("device"),
4444 device_init_func, NULL, NULL)) {
4445 exit(1);
4446 }
4447
4448 /* Did we create any drives that we failed to create a device for? */
4449 drive_check_orphaned();
4450
4451 net_check_clients();
4452
4453 if (boot_once) {
4454 Error *local_err = NULL;
4455 qemu_boot_set(boot_once, &local_err);
4456 if (local_err) {
4457 error_report("%s", error_get_pretty(local_err));
4458 exit(1);
4459 }
4460 qemu_register_reset(restore_boot_order, g_strdup(boot_order));
4461 }
4462
4463 ds = init_displaystate();
4464
4465 /* init local displays */
4466 switch (display_type) {
4467 case DT_NOGRAPHIC:
4468 (void)ds; /* avoid warning if no display is configured */
4469 break;
4470 #if defined(CONFIG_CURSES)
4471 case DT_CURSES:
4472 curses_display_init(ds, full_screen);
4473 break;
4474 #endif
4475 #if defined(CONFIG_SDL)
4476 case DT_SDL:
4477 sdl_display_init(ds, full_screen, no_frame);
4478 break;
4479 #elif defined(CONFIG_COCOA)
4480 case DT_SDL:
4481 cocoa_display_init(ds, full_screen);
4482 break;
4483 #endif
4484 #if defined(CONFIG_GTK)
4485 case DT_GTK:
4486 gtk_display_init(ds, full_screen, grab_on_hover);
4487 break;
4488 #endif
4489 default:
4490 break;
4491 }
4492
4493 /* must be after terminal init, SDL library changes signal handlers */
4494 os_setup_signal_handling();
4495
4496 #ifdef CONFIG_VNC
4497 /* init remote displays */
4498 qemu_opts_foreach(qemu_find_opts("vnc"),
4499 vnc_init_func, NULL, NULL);
4500 if (show_vnc_port) {
4501 char *ret = vnc_display_local_addr("default");
4502 printf("VNC server running on `%s'\n", ret);
4503 g_free(ret);
4504 }
4505 #endif
4506 #ifdef CONFIG_SPICE
4507 if (using_spice) {
4508 qemu_spice_display_init();
4509 }
4510 #endif
4511
4512 if (foreach_device_config(DEV_GDB, gdbserver_start) < 0) {
4513 exit(1);
4514 }
4515
4516 qdev_machine_creation_done();
4517
4518 if (rom_load_all() != 0) {
4519 fprintf(stderr, "rom loading failed\n");
4520 exit(1);
4521 }
4522
4523 /* TODO: once all bus devices are qdevified, this should be done
4524 * when bus is created by qdev.c */
4525 qemu_register_reset(qbus_reset_all_fn, sysbus_get_default());
4526 qemu_run_machine_init_done_notifiers();
4527
4528 /* Done notifiers can load ROMs */
4529 rom_load_done();
4530
4531 qemu_system_reset(VMRESET_SILENT);
4532 if (loadvm) {
4533 if (load_vmstate(loadvm) < 0) {
4534 autostart = 0;
4535 }
4536 }
4537
4538 qdev_prop_check_globals();
4539 if (vmstate_dump_file) {
4540 /* dump and exit */
4541 dump_vmstate_json_to_file(vmstate_dump_file);
4542 return 0;
4543 }
4544
4545 if (incoming) {
4546 Error *local_err = NULL;
4547 qemu_start_incoming_migration(incoming, &local_err);
4548 if (local_err) {
4549 error_report("-incoming %s: %s", incoming,
4550 error_get_pretty(local_err));
4551 error_free(local_err);
4552 exit(1);
4553 }
4554 } else if (autostart) {
4555 vm_start();
4556 }
4557
4558 os_setup_post();
4559
4560 if (is_daemonized()) {
4561 if (!trace_init_backends(trace_events, trace_file)) {
4562 exit(1);
4563 }
4564 }
4565
4566 main_loop();
4567 bdrv_close_all();
4568 pause_all_vcpus();
4569 res_free();
4570 #ifdef CONFIG_TPM
4571 tpm_cleanup();
4572 #endif
4573
4574 return 0;
4575 }