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