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/help-texts.h" 27 #include "qemu/datadir.h" 28 #include "qemu/units.h" 29 #include "exec/cpu-common.h" 30 #include "exec/page-vary.h" 31 #include "hw/qdev-properties.h" 32 #include "qapi/compat-policy.h" 33 #include "qapi/error.h" 34 #include "qapi/qmp/qdict.h" 35 #include "qapi/qmp/qstring.h" 36 #include "qapi/qmp/qjson.h" 37 #include "qemu-version.h" 38 #include "qemu/cutils.h" 39 #include "qemu/help_option.h" 40 #include "qemu/hw-version.h" 41 #include "qemu/uuid.h" 42 #include "system/reset.h" 43 #include "system/runstate.h" 44 #include "system/runstate-action.h" 45 #include "system/seccomp.h" 46 #include "system/tcg.h" 47 #include "system/xen.h" 48 49 #include "qemu/error-report.h" 50 #include "qemu/sockets.h" 51 #include "qemu/accel.h" 52 #include "qemu/async-teardown.h" 53 #include "hw/usb.h" 54 #include "hw/isa/isa.h" 55 #include "hw/scsi/scsi.h" 56 #include "hw/display/vga.h" 57 #include "hw/firmware/smbios.h" 58 #include "hw/acpi/acpi.h" 59 #include "hw/xen/xen.h" 60 #include "hw/loader.h" 61 #include "monitor/qdev.h" 62 #include "net/net.h" 63 #include "net/slirp.h" 64 #include "monitor/monitor.h" 65 #include "ui/console.h" 66 #include "ui/input.h" 67 #include "system/system.h" 68 #include "system/numa.h" 69 #include "system/hostmem.h" 70 #include "exec/gdbstub.h" 71 #include "gdbstub/enums.h" 72 #include "qemu/timer.h" 73 #include "chardev/char.h" 74 #include "qemu/bitmap.h" 75 #include "qemu/log.h" 76 #include "system/blockdev.h" 77 #include "hw/block/block.h" 78 #include "hw/i386/x86.h" 79 #include "hw/i386/pc.h" 80 #include "migration/misc.h" 81 #include "migration/snapshot.h" 82 #include "system/tpm.h" 83 #include "system/dma.h" 84 #include "hw/audio/soundhw.h" 85 #include "audio/audio.h" 86 #include "system/cpus.h" 87 #include "system/cpu-timers.h" 88 #include "migration/colo.h" 89 #include "migration/postcopy-ram.h" 90 #include "system/kvm.h" 91 #include "qapi/qobject-input-visitor.h" 92 #include "qemu/option.h" 93 #include "qemu/config-file.h" 94 #include "qemu/main-loop.h" 95 #ifdef CONFIG_VIRTFS 96 #include "fsdev/qemu-fsdev.h" 97 #endif 98 #include "system/qtest.h" 99 #ifdef CONFIG_TCG 100 #include "tcg/perf.h" 101 #endif 102 103 #include "disas/disas.h" 104 105 #include "trace.h" 106 #include "trace/control.h" 107 #include "qemu/plugin.h" 108 #include "qemu/queue.h" 109 #include "system/arch_init.h" 110 #include "system/confidential-guest-support.h" 111 112 #include "ui/qemu-spice.h" 113 #include "qapi/string-input-visitor.h" 114 #include "qapi/opts-visitor.h" 115 #include "qapi/clone-visitor.h" 116 #include "qom/object_interfaces.h" 117 #include "semihosting/semihost.h" 118 #include "crypto/init.h" 119 #include "system/replay.h" 120 #include "qapi/qapi-events-run-state.h" 121 #include "qapi/qapi-types-audio.h" 122 #include "qapi/qapi-visit-audio.h" 123 #include "qapi/qapi-visit-block-core.h" 124 #include "qapi/qapi-visit-compat.h" 125 #include "qapi/qapi-visit-machine.h" 126 #include "qapi/qapi-visit-ui.h" 127 #include "qapi/qapi-commands-block-core.h" 128 #include "qapi/qapi-commands-migration.h" 129 #include "qapi/qapi-commands-misc.h" 130 #include "qapi/qapi-visit-qom.h" 131 #include "qapi/qapi-commands-ui.h" 132 #include "block/qdict.h" 133 #include "qapi/qmp/qerror.h" 134 #include "system/iothread.h" 135 #include "qemu/guest-random.h" 136 #include "qemu/keyval.h" 137 138 #define MAX_VIRTIO_CONSOLES 1 139 140 typedef struct BlockdevOptionsQueueEntry { 141 BlockdevOptions *bdo; 142 Location loc; 143 QSIMPLEQ_ENTRY(BlockdevOptionsQueueEntry) entry; 144 } BlockdevOptionsQueueEntry; 145 146 typedef QSIMPLEQ_HEAD(, BlockdevOptionsQueueEntry) BlockdevOptionsQueue; 147 148 typedef struct ObjectOption { 149 ObjectOptions *opts; 150 QTAILQ_ENTRY(ObjectOption) next; 151 } ObjectOption; 152 153 typedef struct DeviceOption { 154 QDict *opts; 155 Location loc; 156 QTAILQ_ENTRY(DeviceOption) next; 157 } DeviceOption; 158 159 static const char *cpu_option; 160 static const char *mem_path; 161 static const char *incoming; 162 static const char *loadvm; 163 static const char *accelerators; 164 static bool have_custom_ram_size; 165 static const char *ram_memdev_id; 166 static QDict *machine_opts_dict; 167 static QTAILQ_HEAD(, ObjectOption) object_opts = QTAILQ_HEAD_INITIALIZER(object_opts); 168 static QTAILQ_HEAD(, DeviceOption) device_opts = QTAILQ_HEAD_INITIALIZER(device_opts); 169 static int display_remote; 170 static int snapshot; 171 static bool preconfig_requested; 172 static QemuPluginList plugin_list = QTAILQ_HEAD_INITIALIZER(plugin_list); 173 static BlockdevOptionsQueue bdo_queue = QSIMPLEQ_HEAD_INITIALIZER(bdo_queue); 174 static bool nographic = false; 175 static int mem_prealloc; /* force preallocation of physical target memory */ 176 static const char *vga_model = NULL; 177 static DisplayOptions dpy; 178 static int num_serial_hds; 179 static Chardev **serial_hds; 180 static const char *log_mask; 181 static const char *log_file; 182 static bool list_data_dirs; 183 static const char *qtest_chrdev; 184 static const char *qtest_log; 185 186 static int has_defaults = 1; 187 static int default_audio = 1; 188 static int default_serial = 1; 189 static int default_parallel = 1; 190 static int default_monitor = 1; 191 static int default_floppy = 1; 192 static int default_cdrom = 1; 193 static int default_sdcard = 1; 194 static int default_vga = 1; 195 static int default_net = 1; 196 197 static const struct { 198 const char *driver; 199 int *flag; 200 } default_list[] = { 201 { .driver = "xen-console", .flag = &default_serial }, 202 { .driver = "isa-serial", .flag = &default_serial }, 203 { .driver = "isa-parallel", .flag = &default_parallel }, 204 { .driver = "isa-fdc", .flag = &default_floppy }, 205 { .driver = "floppy", .flag = &default_floppy }, 206 { .driver = "ide-cd", .flag = &default_cdrom }, 207 { .driver = "ide-hd", .flag = &default_cdrom }, 208 { .driver = "scsi-cd", .flag = &default_cdrom }, 209 { .driver = "scsi-hd", .flag = &default_cdrom }, 210 { .driver = "VGA", .flag = &default_vga }, 211 { .driver = "isa-vga", .flag = &default_vga }, 212 { .driver = "cirrus-vga", .flag = &default_vga }, 213 { .driver = "isa-cirrus-vga", .flag = &default_vga }, 214 { .driver = "vmware-svga", .flag = &default_vga }, 215 { .driver = "qxl-vga", .flag = &default_vga }, 216 { .driver = "virtio-vga", .flag = &default_vga }, 217 { .driver = "ati-vga", .flag = &default_vga }, 218 { .driver = "vhost-user-vga", .flag = &default_vga }, 219 { .driver = "virtio-vga-gl", .flag = &default_vga }, 220 { .driver = "virtio-vga-rutabaga", .flag = &default_vga }, 221 }; 222 223 static QemuOptsList qemu_rtc_opts = { 224 .name = "rtc", 225 .head = QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts.head), 226 .merge_lists = true, 227 .desc = { 228 { 229 .name = "base", 230 .type = QEMU_OPT_STRING, 231 },{ 232 .name = "clock", 233 .type = QEMU_OPT_STRING, 234 },{ 235 .name = "driftfix", 236 .type = QEMU_OPT_STRING, 237 }, 238 { /* end of list */ } 239 }, 240 }; 241 242 static QemuOptsList qemu_option_rom_opts = { 243 .name = "option-rom", 244 .implied_opt_name = "romfile", 245 .head = QTAILQ_HEAD_INITIALIZER(qemu_option_rom_opts.head), 246 .desc = { 247 { 248 .name = "bootindex", 249 .type = QEMU_OPT_NUMBER, 250 }, { 251 .name = "romfile", 252 .type = QEMU_OPT_STRING, 253 }, 254 { /* end of list */ } 255 }, 256 }; 257 258 static QemuOptsList qemu_accel_opts = { 259 .name = "accel", 260 .implied_opt_name = "accel", 261 .head = QTAILQ_HEAD_INITIALIZER(qemu_accel_opts.head), 262 .desc = { 263 /* 264 * no elements => accept any 265 * sanity checking will happen later 266 * when setting accelerator properties 267 */ 268 { } 269 }, 270 }; 271 272 static QemuOptsList qemu_boot_opts = { 273 .name = "boot-opts", 274 .implied_opt_name = "order", 275 .merge_lists = true, 276 .head = QTAILQ_HEAD_INITIALIZER(qemu_boot_opts.head), 277 .desc = { 278 { 279 .name = "order", 280 .type = QEMU_OPT_STRING, 281 }, { 282 .name = "once", 283 .type = QEMU_OPT_STRING, 284 }, { 285 .name = "menu", 286 .type = QEMU_OPT_BOOL, 287 }, { 288 .name = "splash", 289 .type = QEMU_OPT_STRING, 290 }, { 291 .name = "splash-time", 292 .type = QEMU_OPT_NUMBER, 293 }, { 294 .name = "reboot-timeout", 295 .type = QEMU_OPT_NUMBER, 296 }, { 297 .name = "strict", 298 .type = QEMU_OPT_BOOL, 299 }, 300 { /*End of list */ } 301 }, 302 }; 303 304 static QemuOptsList qemu_add_fd_opts = { 305 .name = "add-fd", 306 .head = QTAILQ_HEAD_INITIALIZER(qemu_add_fd_opts.head), 307 .desc = { 308 { 309 .name = "fd", 310 .type = QEMU_OPT_NUMBER, 311 .help = "file descriptor of which a duplicate is added to fd set", 312 },{ 313 .name = "set", 314 .type = QEMU_OPT_NUMBER, 315 .help = "ID of the fd set to add fd to", 316 },{ 317 .name = "opaque", 318 .type = QEMU_OPT_STRING, 319 .help = "free-form string used to describe fd", 320 }, 321 { /* end of list */ } 322 }, 323 }; 324 325 static QemuOptsList qemu_object_opts = { 326 .name = "object", 327 .implied_opt_name = "qom-type", 328 .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head), 329 .desc = { 330 { } 331 }, 332 }; 333 334 static QemuOptsList qemu_tpmdev_opts = { 335 .name = "tpmdev", 336 .implied_opt_name = "type", 337 .head = QTAILQ_HEAD_INITIALIZER(qemu_tpmdev_opts.head), 338 .desc = { 339 /* options are defined in the TPM backends */ 340 { /* end of list */ } 341 }, 342 }; 343 344 static QemuOptsList qemu_overcommit_opts = { 345 .name = "overcommit", 346 .head = QTAILQ_HEAD_INITIALIZER(qemu_overcommit_opts.head), 347 .desc = { 348 { 349 .name = "mem-lock", 350 .type = QEMU_OPT_BOOL, 351 }, 352 { 353 .name = "cpu-pm", 354 .type = QEMU_OPT_BOOL, 355 }, 356 { /* end of list */ } 357 }, 358 }; 359 360 static QemuOptsList qemu_msg_opts = { 361 .name = "msg", 362 .head = QTAILQ_HEAD_INITIALIZER(qemu_msg_opts.head), 363 .desc = { 364 { 365 .name = "timestamp", 366 .type = QEMU_OPT_BOOL, 367 }, 368 { 369 .name = "guest-name", 370 .type = QEMU_OPT_BOOL, 371 .help = "Prepends guest name for error messages but only if " 372 "-name guest is set otherwise option is ignored\n", 373 }, 374 { /* end of list */ } 375 }, 376 }; 377 378 static QemuOptsList qemu_name_opts = { 379 .name = "name", 380 .implied_opt_name = "guest", 381 .merge_lists = true, 382 .head = QTAILQ_HEAD_INITIALIZER(qemu_name_opts.head), 383 .desc = { 384 { 385 .name = "guest", 386 .type = QEMU_OPT_STRING, 387 .help = "Sets the name of the guest.\n" 388 "This name will be displayed in the SDL window caption.\n" 389 "The name will also be used for the VNC server", 390 }, { 391 .name = "process", 392 .type = QEMU_OPT_STRING, 393 .help = "Sets the name of the QEMU process, as shown in top etc", 394 }, { 395 .name = "debug-threads", 396 .type = QEMU_OPT_BOOL, 397 .help = "When enabled, name the individual threads; defaults off.\n" 398 "NOTE: The thread names are for debugging and not a\n" 399 "stable API.", 400 }, 401 { /* End of list */ } 402 }, 403 }; 404 405 static QemuOptsList qemu_mem_opts = { 406 .name = "memory", 407 .implied_opt_name = "size", 408 .head = QTAILQ_HEAD_INITIALIZER(qemu_mem_opts.head), 409 .merge_lists = true, 410 .desc = { 411 { 412 .name = "size", 413 .type = QEMU_OPT_SIZE, 414 }, 415 { 416 .name = "slots", 417 .type = QEMU_OPT_NUMBER, 418 }, 419 { 420 .name = "maxmem", 421 .type = QEMU_OPT_SIZE, 422 }, 423 { /* end of list */ } 424 }, 425 }; 426 427 static QemuOptsList qemu_icount_opts = { 428 .name = "icount", 429 .implied_opt_name = "shift", 430 .merge_lists = true, 431 .head = QTAILQ_HEAD_INITIALIZER(qemu_icount_opts.head), 432 .desc = { 433 { 434 .name = "shift", 435 .type = QEMU_OPT_STRING, 436 }, { 437 .name = "align", 438 .type = QEMU_OPT_BOOL, 439 }, { 440 .name = "sleep", 441 .type = QEMU_OPT_BOOL, 442 }, { 443 .name = "rr", 444 .type = QEMU_OPT_STRING, 445 }, { 446 .name = "rrfile", 447 .type = QEMU_OPT_STRING, 448 }, { 449 .name = "rrsnapshot", 450 .type = QEMU_OPT_STRING, 451 }, 452 { /* end of list */ } 453 }, 454 }; 455 456 static QemuOptsList qemu_fw_cfg_opts = { 457 .name = "fw_cfg", 458 .implied_opt_name = "name", 459 .head = QTAILQ_HEAD_INITIALIZER(qemu_fw_cfg_opts.head), 460 .desc = { 461 { 462 .name = "name", 463 .type = QEMU_OPT_STRING, 464 .help = "Sets the fw_cfg name of the blob to be inserted", 465 }, { 466 .name = "file", 467 .type = QEMU_OPT_STRING, 468 .help = "Sets the name of the file from which " 469 "the fw_cfg blob will be loaded", 470 }, { 471 .name = "string", 472 .type = QEMU_OPT_STRING, 473 .help = "Sets content of the blob to be inserted from a string", 474 }, { 475 .name = "gen_id", 476 .type = QEMU_OPT_STRING, 477 .help = "Sets id of the object generating the fw_cfg blob " 478 "to be inserted", 479 }, 480 { /* end of list */ } 481 }, 482 }; 483 484 static QemuOptsList qemu_action_opts = { 485 .name = "action", 486 .merge_lists = true, 487 .head = QTAILQ_HEAD_INITIALIZER(qemu_action_opts.head), 488 .desc = { 489 { 490 .name = "shutdown", 491 .type = QEMU_OPT_STRING, 492 },{ 493 .name = "reboot", 494 .type = QEMU_OPT_STRING, 495 },{ 496 .name = "panic", 497 .type = QEMU_OPT_STRING, 498 },{ 499 .name = "watchdog", 500 .type = QEMU_OPT_STRING, 501 }, 502 { /* end of list */ } 503 }, 504 }; 505 506 const char *qemu_get_vm_name(void) 507 { 508 return qemu_name; 509 } 510 511 static void default_driver_disable(const char *driver) 512 { 513 int i; 514 515 if (!driver) { 516 return; 517 } 518 519 for (i = 0; i < ARRAY_SIZE(default_list); i++) { 520 if (strcmp(default_list[i].driver, driver) != 0) 521 continue; 522 *(default_list[i].flag) = 0; 523 } 524 } 525 526 static int default_driver_check(void *opaque, QemuOpts *opts, Error **errp) 527 { 528 const char *driver = qemu_opt_get(opts, "driver"); 529 530 default_driver_disable(driver); 531 return 0; 532 } 533 534 static void default_driver_check_json(void) 535 { 536 DeviceOption *opt; 537 538 QTAILQ_FOREACH(opt, &device_opts, next) { 539 const char *driver = qdict_get_try_str(opt->opts, "driver"); 540 default_driver_disable(driver); 541 } 542 } 543 544 static int parse_name(void *opaque, QemuOpts *opts, Error **errp) 545 { 546 const char *proc_name; 547 548 if (qemu_opt_get(opts, "debug-threads")) { 549 qemu_thread_naming(qemu_opt_get_bool(opts, "debug-threads", false)); 550 } 551 qemu_name = qemu_opt_get(opts, "guest"); 552 553 proc_name = qemu_opt_get(opts, "process"); 554 if (proc_name) { 555 os_set_proc_name(proc_name); 556 } 557 558 return 0; 559 } 560 561 bool defaults_enabled(void) 562 { 563 return has_defaults; 564 } 565 566 #ifndef _WIN32 567 static int parse_add_fd(void *opaque, QemuOpts *opts, Error **errp) 568 { 569 int fd, dupfd, flags; 570 int64_t fdset_id; 571 const char *fd_opaque = NULL; 572 AddfdInfo *fdinfo; 573 574 fd = qemu_opt_get_number(opts, "fd", -1); 575 fdset_id = qemu_opt_get_number(opts, "set", -1); 576 fd_opaque = qemu_opt_get(opts, "opaque"); 577 578 if (fd < 0) { 579 error_setg(errp, "fd option is required and must be non-negative"); 580 return -1; 581 } 582 583 if (fd <= STDERR_FILENO) { 584 error_setg(errp, "fd cannot be a standard I/O stream"); 585 return -1; 586 } 587 588 /* 589 * All fds inherited across exec() necessarily have FD_CLOEXEC 590 * clear, while qemu sets FD_CLOEXEC on all other fds used internally. 591 */ 592 flags = fcntl(fd, F_GETFD); 593 if (flags == -1 || (flags & FD_CLOEXEC)) { 594 error_setg(errp, "fd is not valid or already in use"); 595 return -1; 596 } 597 598 if (fdset_id < 0) { 599 error_setg(errp, "set option is required and must be non-negative"); 600 return -1; 601 } 602 603 #ifdef F_DUPFD_CLOEXEC 604 dupfd = fcntl(fd, F_DUPFD_CLOEXEC, 0); 605 #else 606 dupfd = dup(fd); 607 if (dupfd != -1) { 608 qemu_set_cloexec(dupfd); 609 } 610 #endif 611 if (dupfd == -1) { 612 error_setg(errp, "error duplicating fd: %s", strerror(errno)); 613 return -1; 614 } 615 616 /* add the duplicate fd, and optionally the opaque string, to the fd set */ 617 fdinfo = monitor_fdset_add_fd(dupfd, true, fdset_id, fd_opaque, 618 &error_abort); 619 g_free(fdinfo); 620 621 return 0; 622 } 623 624 static int cleanup_add_fd(void *opaque, QemuOpts *opts, Error **errp) 625 { 626 int fd; 627 628 fd = qemu_opt_get_number(opts, "fd", -1); 629 close(fd); 630 631 return 0; 632 } 633 #endif 634 635 /***********************************************************/ 636 /* QEMU Block devices */ 637 638 #define HD_OPTS "media=disk" 639 #define CDROM_OPTS "media=cdrom" 640 #define FD_OPTS "" 641 #define PFLASH_OPTS "" 642 #define MTD_OPTS "" 643 #define SD_OPTS "" 644 645 static int drive_init_func(void *opaque, QemuOpts *opts, Error **errp) 646 { 647 BlockInterfaceType *block_default_type = opaque; 648 649 return drive_new(opts, *block_default_type, errp) == NULL; 650 } 651 652 static int drive_enable_snapshot(void *opaque, QemuOpts *opts, Error **errp) 653 { 654 if (qemu_opt_get(opts, "snapshot") == NULL) { 655 qemu_opt_set(opts, "snapshot", "on", &error_abort); 656 } 657 return 0; 658 } 659 660 static void default_drive(int enable, int snapshot, BlockInterfaceType type, 661 int index, const char *optstr) 662 { 663 QemuOpts *opts; 664 DriveInfo *dinfo; 665 666 if (!enable || drive_get_by_index(type, index)) { 667 return; 668 } 669 670 opts = drive_add(type, index, NULL, optstr); 671 if (snapshot) { 672 drive_enable_snapshot(NULL, opts, NULL); 673 } 674 675 dinfo = drive_new(opts, type, &error_abort); 676 dinfo->is_default = true; 677 678 } 679 680 static void configure_blockdev(BlockdevOptionsQueue *bdo_queue, 681 MachineClass *machine_class, int snapshot) 682 { 683 /* 684 * If the currently selected machine wishes to override the 685 * units-per-bus property of its default HBA interface type, do so 686 * now. 687 */ 688 if (machine_class->units_per_default_bus) { 689 override_max_devs(machine_class->block_default_type, 690 machine_class->units_per_default_bus); 691 } 692 693 /* open the virtual block devices */ 694 while (!QSIMPLEQ_EMPTY(bdo_queue)) { 695 BlockdevOptionsQueueEntry *bdo = QSIMPLEQ_FIRST(bdo_queue); 696 697 QSIMPLEQ_REMOVE_HEAD(bdo_queue, entry); 698 loc_push_restore(&bdo->loc); 699 qmp_blockdev_add(bdo->bdo, &error_fatal); 700 loc_pop(&bdo->loc); 701 qapi_free_BlockdevOptions(bdo->bdo); 702 g_free(bdo); 703 } 704 if (snapshot) { 705 qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot, 706 NULL, NULL); 707 } 708 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func, 709 &machine_class->block_default_type, &error_fatal)) { 710 /* We printed help */ 711 exit(0); 712 } 713 714 default_drive(default_cdrom, snapshot, machine_class->block_default_type, 2, 715 CDROM_OPTS); 716 default_drive(default_floppy, snapshot, IF_FLOPPY, 0, FD_OPTS); 717 default_drive(default_sdcard, snapshot, IF_SD, 0, SD_OPTS); 718 719 } 720 721 static QemuOptsList qemu_smp_opts = { 722 .name = "smp-opts", 723 .implied_opt_name = "cpus", 724 .merge_lists = true, 725 .head = QTAILQ_HEAD_INITIALIZER(qemu_smp_opts.head), 726 .desc = { 727 { 728 .name = "cpus", 729 .type = QEMU_OPT_NUMBER, 730 }, { 731 .name = "drawers", 732 .type = QEMU_OPT_NUMBER, 733 }, { 734 .name = "books", 735 .type = QEMU_OPT_NUMBER, 736 }, { 737 .name = "sockets", 738 .type = QEMU_OPT_NUMBER, 739 }, { 740 .name = "dies", 741 .type = QEMU_OPT_NUMBER, 742 }, { 743 .name = "clusters", 744 .type = QEMU_OPT_NUMBER, 745 }, { 746 .name = "modules", 747 .type = QEMU_OPT_NUMBER, 748 }, { 749 .name = "cores", 750 .type = QEMU_OPT_NUMBER, 751 }, { 752 .name = "threads", 753 .type = QEMU_OPT_NUMBER, 754 }, { 755 .name = "maxcpus", 756 .type = QEMU_OPT_NUMBER, 757 }, 758 { /*End of list */ } 759 }, 760 }; 761 762 #if defined(CONFIG_POSIX) 763 static QemuOptsList qemu_run_with_opts = { 764 .name = "run-with", 765 .head = QTAILQ_HEAD_INITIALIZER(qemu_run_with_opts.head), 766 .desc = { 767 #if defined(CONFIG_LINUX) 768 { 769 .name = "async-teardown", 770 .type = QEMU_OPT_BOOL, 771 }, 772 #endif 773 { 774 .name = "chroot", 775 .type = QEMU_OPT_STRING, 776 }, 777 { 778 .name = "user", 779 .type = QEMU_OPT_STRING, 780 }, 781 { /* end of list */ } 782 }, 783 }; 784 785 #define qemu_add_run_with_opts() qemu_add_opts(&qemu_run_with_opts) 786 787 #else 788 789 #define qemu_add_run_with_opts() 790 791 #endif /* CONFIG_POSIX */ 792 793 static void realtime_init(void) 794 { 795 if (enable_mlock) { 796 if (os_mlock() < 0) { 797 error_report("locking memory failed"); 798 exit(1); 799 } 800 } 801 } 802 803 804 static void configure_msg(QemuOpts *opts) 805 { 806 message_with_timestamp = qemu_opt_get_bool(opts, "timestamp", false); 807 error_with_guestname = qemu_opt_get_bool(opts, "guest-name", false); 808 } 809 810 811 /***********************************************************/ 812 /* USB devices */ 813 814 static int usb_device_add(const char *devname) 815 { 816 USBDevice *dev = NULL; 817 818 if (!machine_usb(current_machine)) { 819 return -1; 820 } 821 822 dev = usbdevice_create(devname); 823 if (!dev) 824 return -1; 825 826 return 0; 827 } 828 829 static int usb_parse(const char *cmdline) 830 { 831 int r; 832 r = usb_device_add(cmdline); 833 if (r < 0) { 834 error_report("could not add USB device '%s'", cmdline); 835 } 836 return r; 837 } 838 839 /***********************************************************/ 840 /* machine registration */ 841 842 static MachineClass *find_machine(const char *name, GSList *machines) 843 { 844 GSList *el; 845 846 for (el = machines; el; el = el->next) { 847 MachineClass *mc = el->data; 848 849 if (!strcmp(mc->name, name) || !g_strcmp0(mc->alias, name)) { 850 return mc; 851 } 852 } 853 854 return NULL; 855 } 856 857 static MachineClass *find_default_machine(GSList *machines) 858 { 859 GSList *el; 860 MachineClass *default_machineclass = NULL; 861 862 for (el = machines; el; el = el->next) { 863 MachineClass *mc = el->data; 864 865 if (mc->is_default) { 866 assert(default_machineclass == NULL && "Multiple default machines"); 867 default_machineclass = mc; 868 } 869 } 870 871 return default_machineclass; 872 } 873 874 static void version(void) 875 { 876 printf("QEMU emulator version " QEMU_FULL_VERSION "\n" 877 QEMU_COPYRIGHT "\n"); 878 } 879 880 static void help(int exitcode) 881 { 882 version(); 883 printf("usage: %s [options] [disk_image]\n\n" 884 "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n", 885 g_get_prgname()); 886 887 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \ 888 if ((arch_mask) & arch_type) \ 889 fputs(opt_help, stdout); 890 891 #define ARCHHEADING(text, arch_mask) \ 892 if ((arch_mask) & arch_type) \ 893 puts(stringify(text)); 894 895 #define DEFHEADING(text) ARCHHEADING(text, QEMU_ARCH_ALL) 896 897 #include "qemu-options.def" 898 899 printf("\nDuring emulation, the following keys are useful:\n" 900 "ctrl-alt-f toggle full screen\n" 901 "ctrl-alt-n switch to virtual console 'n'\n" 902 "ctrl-alt-g toggle mouse and keyboard grab\n" 903 "\n" 904 "When using -nographic, press 'ctrl-a h' to get some help.\n" 905 "\n" 906 QEMU_HELP_BOTTOM "\n"); 907 908 exit(exitcode); 909 } 910 911 enum { 912 913 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \ 914 opt_enum, 915 #define DEFHEADING(text) 916 #define ARCHHEADING(text, arch_mask) 917 918 #include "qemu-options.def" 919 }; 920 921 #define HAS_ARG 0x0001 922 923 typedef struct QEMUOption { 924 const char *name; 925 int flags; 926 int index; 927 uint32_t arch_mask; 928 } QEMUOption; 929 930 static const QEMUOption qemu_options[] = { 931 { "h", 0, QEMU_OPTION_h, QEMU_ARCH_ALL }, 932 933 #define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \ 934 { option, opt_arg, opt_enum, arch_mask }, 935 #define DEFHEADING(text) 936 #define ARCHHEADING(text, arch_mask) 937 938 #include "qemu-options.def" 939 { /* end of list */ } 940 }; 941 942 typedef struct VGAInterfaceInfo { 943 const char *opt_name; /* option name */ 944 const char *name; /* human-readable name */ 945 /* Class names indicating that support is available. 946 * If no class is specified, the interface is always available */ 947 const char *class_names[2]; 948 } VGAInterfaceInfo; 949 950 static const VGAInterfaceInfo vga_interfaces[VGA_TYPE_MAX] = { 951 [VGA_NONE] = { 952 .opt_name = "none", 953 .name = "no graphic card", 954 }, 955 [VGA_STD] = { 956 .opt_name = "std", 957 .name = "standard VGA", 958 .class_names = { "VGA", "isa-vga" }, 959 }, 960 [VGA_CIRRUS] = { 961 .opt_name = "cirrus", 962 .name = "Cirrus VGA", 963 .class_names = { "cirrus-vga", "isa-cirrus-vga" }, 964 }, 965 [VGA_VMWARE] = { 966 .opt_name = "vmware", 967 .name = "VMWare SVGA", 968 .class_names = { "vmware-svga" }, 969 }, 970 [VGA_VIRTIO] = { 971 .opt_name = "virtio", 972 .name = "Virtio VGA", 973 .class_names = { "virtio-vga" }, 974 }, 975 [VGA_QXL] = { 976 .opt_name = "qxl", 977 .name = "QXL VGA", 978 .class_names = { "qxl-vga" }, 979 }, 980 [VGA_TCX] = { 981 .opt_name = "tcx", 982 .name = "TCX framebuffer", 983 .class_names = { "sun-tcx" }, 984 }, 985 [VGA_CG3] = { 986 .opt_name = "cg3", 987 .name = "CG3 framebuffer", 988 .class_names = { "cgthree" }, 989 }, 990 #ifdef CONFIG_XEN_BACKEND 991 [VGA_XENFB] = { 992 .opt_name = "xenfb", 993 .name = "Xen paravirtualized framebuffer", 994 }, 995 #endif 996 }; 997 998 static bool vga_interface_available(VGAInterfaceType t) 999 { 1000 const VGAInterfaceInfo *ti = &vga_interfaces[t]; 1001 1002 assert(t < VGA_TYPE_MAX); 1003 1004 if (!ti->class_names[0] || module_object_class_by_name(ti->class_names[0])) { 1005 return true; 1006 } 1007 1008 if (ti->class_names[1] && module_object_class_by_name(ti->class_names[1])) { 1009 return true; 1010 } 1011 1012 return false; 1013 } 1014 1015 static const char * 1016 get_default_vga_model(const MachineClass *machine_class) 1017 { 1018 if (machine_class->default_display) { 1019 for (int t = 0; t < VGA_TYPE_MAX; t++) { 1020 const VGAInterfaceInfo *ti = &vga_interfaces[t]; 1021 1022 if (ti->opt_name && vga_interface_available(t) && 1023 g_str_equal(ti->opt_name, machine_class->default_display)) { 1024 return machine_class->default_display; 1025 } 1026 } 1027 1028 warn_report_once("Default display '%s' is not available in this binary", 1029 machine_class->default_display); 1030 return NULL; 1031 } else if (vga_interface_available(VGA_CIRRUS)) { 1032 return "cirrus"; 1033 } else if (vga_interface_available(VGA_STD)) { 1034 return "std"; 1035 } 1036 1037 return NULL; 1038 } 1039 1040 static void select_vgahw(const MachineClass *machine_class, const char *p) 1041 { 1042 const char *opts; 1043 int t; 1044 1045 if (g_str_equal(p, "help")) { 1046 const char *def = get_default_vga_model(machine_class); 1047 1048 for (t = 0; t < VGA_TYPE_MAX; t++) { 1049 const VGAInterfaceInfo *ti = &vga_interfaces[t]; 1050 1051 if (vga_interface_available(t) && ti->opt_name) { 1052 printf("%-20s %s%s\n", ti->opt_name, ti->name ?: "", 1053 (def && g_str_equal(ti->opt_name, def)) ? 1054 " (default)" : ""); 1055 } 1056 } 1057 exit(0); 1058 } 1059 1060 assert(vga_interface_type == VGA_NONE); 1061 for (t = 0; t < VGA_TYPE_MAX; t++) { 1062 const VGAInterfaceInfo *ti = &vga_interfaces[t]; 1063 if (ti->opt_name && strstart(p, ti->opt_name, &opts)) { 1064 if (!vga_interface_available(t)) { 1065 error_report("%s not available", ti->name); 1066 exit(1); 1067 } 1068 vga_interface_type = t; 1069 break; 1070 } 1071 } 1072 if (t == VGA_TYPE_MAX) { 1073 invalid_vga: 1074 error_report("unknown vga type: %s", p); 1075 exit(1); 1076 } 1077 while (*opts) { 1078 const char *nextopt; 1079 1080 if (strstart(opts, ",retrace=", &nextopt)) { 1081 opts = nextopt; 1082 if (strstart(opts, "dumb", &nextopt)) 1083 vga_retrace_method = VGA_RETRACE_DUMB; 1084 else if (strstart(opts, "precise", &nextopt)) 1085 vga_retrace_method = VGA_RETRACE_PRECISE; 1086 else goto invalid_vga; 1087 } else goto invalid_vga; 1088 opts = nextopt; 1089 } 1090 } 1091 1092 static void parse_display_qapi(const char *str) 1093 { 1094 DisplayOptions *opts; 1095 Visitor *v; 1096 1097 v = qobject_input_visitor_new_str(str, "type", &error_fatal); 1098 1099 visit_type_DisplayOptions(v, NULL, &opts, &error_fatal); 1100 QAPI_CLONE_MEMBERS(DisplayOptions, &dpy, opts); 1101 1102 qapi_free_DisplayOptions(opts); 1103 visit_free(v); 1104 } 1105 1106 DisplayOptions *qmp_query_display_options(Error **errp) 1107 { 1108 return QAPI_CLONE(DisplayOptions, &dpy); 1109 } 1110 1111 static void parse_display(const char *p) 1112 { 1113 if (is_help_option(p)) { 1114 qemu_display_help(); 1115 exit(0); 1116 } 1117 1118 #ifdef CONFIG_VNC 1119 const char *opts; 1120 1121 if (strstart(p, "vnc", &opts)) { 1122 /* 1123 * vnc isn't a (local) DisplayType but a protocol for remote 1124 * display access. 1125 */ 1126 if (*opts == '=') { 1127 vnc_parse(opts + 1); 1128 display_remote++; 1129 } else { 1130 error_report("VNC requires a display argument vnc=<display>"); 1131 exit(1); 1132 } 1133 return; 1134 } 1135 #endif 1136 1137 parse_display_qapi(p); 1138 } 1139 1140 static inline bool nonempty_str(const char *str) 1141 { 1142 return str && *str; 1143 } 1144 1145 static int parse_fw_cfg(void *opaque, QemuOpts *opts, Error **errp) 1146 { 1147 gchar *buf; 1148 size_t size; 1149 const char *name, *file, *str, *gen_id; 1150 FWCfgState *fw_cfg = (FWCfgState *) opaque; 1151 1152 if (fw_cfg == NULL) { 1153 error_setg(errp, "fw_cfg device not available"); 1154 return -1; 1155 } 1156 name = qemu_opt_get(opts, "name"); 1157 file = qemu_opt_get(opts, "file"); 1158 str = qemu_opt_get(opts, "string"); 1159 gen_id = qemu_opt_get(opts, "gen_id"); 1160 1161 /* we need the name, and exactly one of: file, content string, gen_id */ 1162 if (!nonempty_str(name) || 1163 nonempty_str(file) + nonempty_str(str) + nonempty_str(gen_id) != 1) { 1164 error_setg(errp, "name, plus exactly one of file," 1165 " string and gen_id, are needed"); 1166 return -1; 1167 } 1168 if (strlen(name) > FW_CFG_MAX_FILE_PATH - 1) { 1169 error_setg(errp, "name too long (max. %d char)", 1170 FW_CFG_MAX_FILE_PATH - 1); 1171 return -1; 1172 } 1173 if (nonempty_str(gen_id)) { 1174 /* 1175 * In this particular case where the content is populated 1176 * internally, the "etc/" namespace protection is relaxed, 1177 * so do not emit a warning. 1178 */ 1179 } else if (strncmp(name, "opt/", 4) != 0) { 1180 warn_report("externally provided fw_cfg item names " 1181 "should be prefixed with \"opt/\""); 1182 } 1183 if (nonempty_str(str)) { 1184 size = strlen(str); /* NUL terminator NOT included in fw_cfg blob */ 1185 buf = g_memdup(str, size); 1186 } else if (nonempty_str(gen_id)) { 1187 if (!fw_cfg_add_file_from_generator(fw_cfg, object_get_objects_root(), 1188 gen_id, name, errp)) { 1189 return -1; 1190 } 1191 return 0; 1192 } else { 1193 GError *err = NULL; 1194 if (!g_file_get_contents(file, &buf, &size, &err)) { 1195 error_setg(errp, "can't load %s: %s", file, err->message); 1196 g_error_free(err); 1197 return -1; 1198 } 1199 } 1200 /* For legacy, keep user files in a specific global order. */ 1201 fw_cfg_set_order_override(fw_cfg, FW_CFG_ORDER_OVERRIDE_USER); 1202 fw_cfg_add_file(fw_cfg, name, buf, size); 1203 fw_cfg_reset_order_override(fw_cfg); 1204 return 0; 1205 } 1206 1207 static int device_help_func(void *opaque, QemuOpts *opts, Error **errp) 1208 { 1209 return qdev_device_help(opts); 1210 } 1211 1212 static int device_init_func(void *opaque, QemuOpts *opts, Error **errp) 1213 { 1214 DeviceState *dev; 1215 1216 dev = qdev_device_add(opts, errp); 1217 if (!dev && *errp) { 1218 error_report_err(*errp); 1219 return -1; 1220 } else if (dev) { 1221 object_unref(OBJECT(dev)); 1222 } 1223 return 0; 1224 } 1225 1226 static int chardev_init_func(void *opaque, QemuOpts *opts, Error **errp) 1227 { 1228 Error *local_err = NULL; 1229 1230 if (!qemu_chr_new_from_opts(opts, NULL, &local_err)) { 1231 if (local_err) { 1232 error_propagate(errp, local_err); 1233 return -1; 1234 } 1235 exit(0); 1236 } 1237 return 0; 1238 } 1239 1240 #ifdef CONFIG_VIRTFS 1241 static int fsdev_init_func(void *opaque, QemuOpts *opts, Error **errp) 1242 { 1243 return qemu_fsdev_add(opts, errp); 1244 } 1245 #endif 1246 1247 static int mon_init_func(void *opaque, QemuOpts *opts, Error **errp) 1248 { 1249 return monitor_init_opts(opts, errp); 1250 } 1251 1252 static void monitor_parse(const char *str, const char *mode, bool pretty) 1253 { 1254 static int monitor_device_index = 0; 1255 QemuOpts *opts; 1256 const char *p; 1257 char label[32]; 1258 1259 if (strstart(str, "chardev:", &p)) { 1260 snprintf(label, sizeof(label), "%s", p); 1261 } else { 1262 snprintf(label, sizeof(label), "compat_monitor%d", 1263 monitor_device_index); 1264 opts = qemu_chr_parse_compat(label, str, true); 1265 if (!opts) { 1266 error_report("parse error: %s", str); 1267 exit(1); 1268 } 1269 } 1270 1271 opts = qemu_opts_create(qemu_find_opts("mon"), label, 1, &error_fatal); 1272 qemu_opt_set(opts, "mode", mode, &error_abort); 1273 qemu_opt_set(opts, "chardev", label, &error_abort); 1274 if (!strcmp(mode, "control")) { 1275 qemu_opt_set_bool(opts, "pretty", pretty, &error_abort); 1276 } else { 1277 assert(pretty == false); 1278 } 1279 monitor_device_index++; 1280 } 1281 1282 struct device_config { 1283 enum { 1284 DEV_USB, /* -usbdevice */ 1285 DEV_SERIAL, /* -serial */ 1286 DEV_PARALLEL, /* -parallel */ 1287 DEV_DEBUGCON, /* -debugcon */ 1288 DEV_GDB, /* -gdb, -s */ 1289 DEV_SCLP, /* s390 sclp */ 1290 } type; 1291 const char *cmdline; 1292 Location loc; 1293 QTAILQ_ENTRY(device_config) next; 1294 }; 1295 1296 static QTAILQ_HEAD(, device_config) device_configs = 1297 QTAILQ_HEAD_INITIALIZER(device_configs); 1298 1299 static void add_device_config(int type, const char *cmdline) 1300 { 1301 struct device_config *conf; 1302 1303 conf = g_malloc0(sizeof(*conf)); 1304 conf->type = type; 1305 conf->cmdline = cmdline; 1306 loc_save(&conf->loc); 1307 QTAILQ_INSERT_TAIL(&device_configs, conf, next); 1308 } 1309 1310 static int foreach_device_config(int type, int (*func)(const char *cmdline)) 1311 { 1312 struct device_config *conf; 1313 int rc; 1314 1315 QTAILQ_FOREACH(conf, &device_configs, next) { 1316 if (conf->type != type) 1317 continue; 1318 loc_push_restore(&conf->loc); 1319 rc = func(conf->cmdline); 1320 loc_pop(&conf->loc); 1321 if (rc) { 1322 return rc; 1323 } 1324 } 1325 return 0; 1326 } 1327 1328 static void qemu_disable_default_devices(void) 1329 { 1330 MachineClass *machine_class = MACHINE_GET_CLASS(current_machine); 1331 1332 default_driver_check_json(); 1333 qemu_opts_foreach(qemu_find_opts("device"), 1334 default_driver_check, NULL, NULL); 1335 qemu_opts_foreach(qemu_find_opts("global"), 1336 default_driver_check, NULL, NULL); 1337 1338 if (!vga_model && !default_vga) { 1339 vga_interface_type = VGA_DEVICE; 1340 vga_interface_created = true; 1341 } 1342 if (!has_defaults || machine_class->no_serial) { 1343 default_serial = 0; 1344 } 1345 if (!has_defaults || machine_class->no_parallel) { 1346 default_parallel = 0; 1347 } 1348 if (!has_defaults || machine_class->no_floppy) { 1349 default_floppy = 0; 1350 } 1351 if (!has_defaults || machine_class->no_cdrom) { 1352 default_cdrom = 0; 1353 } 1354 if (!has_defaults || machine_class->no_sdcard) { 1355 default_sdcard = 0; 1356 } 1357 if (!has_defaults) { 1358 default_audio = 0; 1359 default_monitor = 0; 1360 default_net = 0; 1361 default_vga = 0; 1362 } else { 1363 if (default_net && machine_class->default_nic && 1364 !module_object_class_by_name(machine_class->default_nic)) { 1365 warn_report("Default NIC '%s' is not available in this binary", 1366 machine_class->default_nic); 1367 default_net = 0; 1368 } 1369 } 1370 } 1371 1372 static void qemu_setup_display(void) 1373 { 1374 if (dpy.type == DISPLAY_TYPE_DEFAULT && !display_remote) { 1375 if (!qemu_display_find_default(&dpy)) { 1376 dpy.type = DISPLAY_TYPE_NONE; 1377 #if defined(CONFIG_VNC) 1378 vnc_parse("localhost:0,to=99,id=default"); 1379 display_remote++; 1380 #endif 1381 } 1382 } 1383 if (dpy.type == DISPLAY_TYPE_DEFAULT) { 1384 dpy.type = DISPLAY_TYPE_NONE; 1385 } 1386 1387 qemu_display_early_init(&dpy); 1388 } 1389 1390 static void qemu_create_default_devices(void) 1391 { 1392 MachineClass *machine_class = MACHINE_GET_CLASS(current_machine); 1393 const char *vc = qemu_display_get_vc(&dpy); 1394 1395 if (is_daemonized()) { 1396 /* According to documentation and historically, -nographic redirects 1397 * serial port, parallel port and monitor to stdio, which does not work 1398 * with -daemonize. We can redirect these to null instead, but since 1399 * -nographic is legacy, let's just error out. 1400 * We disallow -nographic only if all other ports are not redirected 1401 * explicitly, to not break existing legacy setups which uses 1402 * -nographic _and_ redirects all ports explicitly - this is valid 1403 * usage, -nographic is just a no-op in this case. 1404 */ 1405 if (nographic 1406 && (default_parallel || default_serial || default_monitor)) { 1407 error_report("-nographic cannot be used with -daemonize"); 1408 exit(1); 1409 } 1410 } 1411 1412 if (nographic) { 1413 if (default_parallel) { 1414 add_device_config(DEV_PARALLEL, "null"); 1415 } 1416 if (default_serial && default_monitor) { 1417 add_device_config(DEV_SERIAL, "mon:stdio"); 1418 } else { 1419 if (default_serial) { 1420 add_device_config(DEV_SERIAL, "stdio"); 1421 } 1422 if (default_monitor) { 1423 monitor_parse("stdio", "readline", false); 1424 } 1425 } 1426 } else { 1427 if (default_serial) { 1428 add_device_config(DEV_SERIAL, vc ?: "null"); 1429 } 1430 if (default_parallel) { 1431 add_device_config(DEV_PARALLEL, vc ?: "null"); 1432 } 1433 if (default_monitor && vc) { 1434 monitor_parse(vc, "readline", false); 1435 } 1436 } 1437 1438 if (default_net) { 1439 QemuOptsList *net = qemu_find_opts("net"); 1440 qemu_opts_parse(net, "nic", true, &error_abort); 1441 #ifdef CONFIG_SLIRP 1442 qemu_opts_parse(net, "user", true, &error_abort); 1443 #endif 1444 } 1445 1446 /* If no default VGA is requested, the default is "none". */ 1447 if (default_vga) { 1448 vga_model = get_default_vga_model(machine_class); 1449 } 1450 if (vga_model) { 1451 select_vgahw(machine_class, vga_model); 1452 } 1453 } 1454 1455 static int serial_parse(const char *devname) 1456 { 1457 int index = num_serial_hds; 1458 1459 serial_hds = g_renew(Chardev *, serial_hds, index + 1); 1460 1461 if (strcmp(devname, "none") == 0) { 1462 /* Don't allocate a serial device for this index */ 1463 serial_hds[index] = NULL; 1464 } else { 1465 char label[32]; 1466 snprintf(label, sizeof(label), "serial%d", index); 1467 1468 serial_hds[index] = qemu_chr_new_mux_mon(label, devname, NULL); 1469 if (!serial_hds[index]) { 1470 error_report("could not connect serial device" 1471 " to character backend '%s'", devname); 1472 return -1; 1473 } 1474 } 1475 num_serial_hds++; 1476 return 0; 1477 } 1478 1479 Chardev *serial_hd(int i) 1480 { 1481 assert(i >= 0); 1482 if (i < num_serial_hds) { 1483 return serial_hds[i]; 1484 } 1485 return NULL; 1486 } 1487 1488 static int parallel_parse(const char *devname) 1489 { 1490 static int index = 0; 1491 char label[32]; 1492 1493 if (strcmp(devname, "none") == 0) 1494 return 0; 1495 if (index == MAX_PARALLEL_PORTS) { 1496 error_report("too many parallel ports"); 1497 exit(1); 1498 } 1499 snprintf(label, sizeof(label), "parallel%d", index); 1500 parallel_hds[index] = qemu_chr_new_mux_mon(label, devname, NULL); 1501 if (!parallel_hds[index]) { 1502 error_report("could not connect parallel device" 1503 " to character backend '%s'", devname); 1504 return -1; 1505 } 1506 index++; 1507 return 0; 1508 } 1509 1510 static int debugcon_parse(const char *devname) 1511 { 1512 QemuOpts *opts; 1513 1514 if (!qemu_chr_new_mux_mon("debugcon", devname, NULL)) { 1515 error_report("invalid character backend '%s'", devname); 1516 exit(1); 1517 } 1518 opts = qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL); 1519 if (!opts) { 1520 error_report("already have a debugcon device"); 1521 exit(1); 1522 } 1523 qemu_opt_set(opts, "driver", "isa-debugcon", &error_abort); 1524 qemu_opt_set(opts, "chardev", "debugcon", &error_abort); 1525 return 0; 1526 } 1527 1528 static gint machine_class_cmp(gconstpointer a, gconstpointer b) 1529 { 1530 const MachineClass *mc1 = a, *mc2 = b; 1531 int res; 1532 1533 if (mc1->family == NULL) { 1534 if (mc2->family == NULL) { 1535 /* Compare standalone machine types against each other; they sort 1536 * in increasing order. 1537 */ 1538 return strcmp(object_class_get_name(OBJECT_CLASS(mc1)), 1539 object_class_get_name(OBJECT_CLASS(mc2))); 1540 } 1541 1542 /* Standalone machine types sort after families. */ 1543 return 1; 1544 } 1545 1546 if (mc2->family == NULL) { 1547 /* Families sort before standalone machine types. */ 1548 return -1; 1549 } 1550 1551 /* Families sort between each other alphabetically increasingly. */ 1552 res = strcmp(mc1->family, mc2->family); 1553 if (res != 0) { 1554 return res; 1555 } 1556 1557 /* Within the same family, machine types sort in decreasing order. */ 1558 return strcmp(object_class_get_name(OBJECT_CLASS(mc2)), 1559 object_class_get_name(OBJECT_CLASS(mc1))); 1560 } 1561 1562 static void machine_help_func(const QDict *qdict) 1563 { 1564 g_autoptr(GSList) machines = NULL; 1565 GSList *el; 1566 const char *type = qdict_get_try_str(qdict, "type"); 1567 1568 machines = object_class_get_list(TYPE_MACHINE, false); 1569 if (type) { 1570 ObjectClass *machine_class = OBJECT_CLASS(find_machine(type, machines)); 1571 if (machine_class) { 1572 type_print_class_properties(object_class_get_name(machine_class)); 1573 return; 1574 } 1575 } 1576 1577 printf("Supported machines are:\n"); 1578 machines = g_slist_sort(machines, machine_class_cmp); 1579 for (el = machines; el; el = el->next) { 1580 MachineClass *mc = el->data; 1581 if (mc->alias) { 1582 printf("%-20s %s (alias of %s)\n", mc->alias, mc->desc, mc->name); 1583 } 1584 printf("%-20s %s%s%s\n", mc->name, mc->desc, 1585 mc->is_default ? " (default)" : "", 1586 mc->deprecation_reason ? " (deprecated)" : ""); 1587 } 1588 } 1589 1590 static void 1591 machine_merge_property(const char *propname, QDict *prop, Error **errp) 1592 { 1593 QDict *opts; 1594 1595 opts = qdict_new(); 1596 /* Preserve the caller's reference to prop. */ 1597 qobject_ref(prop); 1598 qdict_put(opts, propname, prop); 1599 keyval_merge(machine_opts_dict, opts, errp); 1600 qobject_unref(opts); 1601 } 1602 1603 static void 1604 machine_parse_property_opt(QemuOptsList *opts_list, const char *propname, 1605 const char *arg) 1606 { 1607 QDict *prop = NULL; 1608 bool help = false; 1609 1610 prop = keyval_parse(arg, opts_list->implied_opt_name, &help, &error_fatal); 1611 if (help) { 1612 qemu_opts_print_help(opts_list, true); 1613 exit(0); 1614 } 1615 machine_merge_property(propname, prop, &error_fatal); 1616 qobject_unref(prop); 1617 } 1618 1619 static const char *pid_file; 1620 struct UnlinkPidfileNotifier { 1621 Notifier notifier; 1622 char *pid_file_realpath; 1623 }; 1624 static struct UnlinkPidfileNotifier qemu_unlink_pidfile_notifier; 1625 1626 static void qemu_unlink_pidfile(Notifier *n, void *data) 1627 { 1628 struct UnlinkPidfileNotifier *upn; 1629 1630 upn = DO_UPCAST(struct UnlinkPidfileNotifier, notifier, n); 1631 unlink(upn->pid_file_realpath); 1632 } 1633 1634 static const QEMUOption *lookup_opt(int argc, char **argv, 1635 const char **poptarg, int *poptind) 1636 { 1637 const QEMUOption *popt; 1638 int optind = *poptind; 1639 char *r = argv[optind]; 1640 const char *optarg; 1641 1642 loc_set_cmdline(argv, optind, 1); 1643 optind++; 1644 /* Treat --foo the same as -foo. */ 1645 if (r[1] == '-') 1646 r++; 1647 popt = qemu_options; 1648 for(;;) { 1649 if (!popt->name) { 1650 error_report("invalid option"); 1651 exit(1); 1652 } 1653 if (!strcmp(popt->name, r + 1)) 1654 break; 1655 popt++; 1656 } 1657 if (popt->flags & HAS_ARG) { 1658 if (optind >= argc) { 1659 error_report("requires an argument"); 1660 exit(1); 1661 } 1662 optarg = argv[optind++]; 1663 loc_set_cmdline(argv, optind - 2, 2); 1664 } else { 1665 optarg = NULL; 1666 } 1667 1668 *poptarg = optarg; 1669 *poptind = optind; 1670 1671 return popt; 1672 } 1673 1674 static MachineClass *select_machine(QDict *qdict, Error **errp) 1675 { 1676 ERRP_GUARD(); 1677 const char *machine_type = qdict_get_try_str(qdict, "type"); 1678 g_autoptr(GSList) machines = object_class_get_list(TYPE_MACHINE, false); 1679 MachineClass *machine_class = NULL; 1680 1681 if (machine_type) { 1682 machine_class = find_machine(machine_type, machines); 1683 if (!machine_class) { 1684 error_setg(errp, "unsupported machine type: \"%s\"", machine_type); 1685 } 1686 qdict_del(qdict, "type"); 1687 } else { 1688 machine_class = find_default_machine(machines); 1689 if (!machine_class) { 1690 error_setg(errp, "No machine specified, and there is no default"); 1691 } 1692 } 1693 1694 if (!machine_class) { 1695 error_append_hint(errp, 1696 "Use -machine help to list supported machines\n"); 1697 } 1698 return machine_class; 1699 } 1700 1701 static int object_parse_property_opt(Object *obj, 1702 const char *name, const char *value, 1703 const char *skip, Error **errp) 1704 { 1705 if (g_str_equal(name, skip)) { 1706 return 0; 1707 } 1708 1709 if (!object_property_parse(obj, name, value, errp)) { 1710 return -1; 1711 } 1712 1713 return 0; 1714 } 1715 1716 /* *Non*recursively replace underscores with dashes in QDict keys. */ 1717 static void keyval_dashify(QDict *qdict, Error **errp) 1718 { 1719 const QDictEntry *ent, *next; 1720 char *p; 1721 1722 for (ent = qdict_first(qdict); ent; ent = next) { 1723 g_autofree char *new_key = NULL; 1724 1725 next = qdict_next(qdict, ent); 1726 if (!strchr(ent->key, '_')) { 1727 continue; 1728 } 1729 new_key = g_strdup(ent->key); 1730 for (p = new_key; *p; p++) { 1731 if (*p == '_') { 1732 *p = '-'; 1733 } 1734 } 1735 if (qdict_haskey(qdict, new_key)) { 1736 error_setg(errp, "Conflict between '%s' and '%s'", ent->key, new_key); 1737 return; 1738 } 1739 qobject_ref(ent->value); 1740 qdict_put_obj(qdict, new_key, ent->value); 1741 qdict_del(qdict, ent->key); 1742 } 1743 } 1744 1745 static void qemu_apply_legacy_machine_options(QDict *qdict) 1746 { 1747 const char *value; 1748 QObject *prop; 1749 1750 keyval_dashify(qdict, &error_fatal); 1751 1752 /* Legacy options do not correspond to MachineState properties. */ 1753 value = qdict_get_try_str(qdict, "accel"); 1754 if (value) { 1755 accelerators = g_strdup(value); 1756 qdict_del(qdict, "accel"); 1757 } 1758 1759 value = qdict_get_try_str(qdict, "igd-passthru"); 1760 if (value) { 1761 object_register_sugar_prop(ACCEL_CLASS_NAME("xen"), "igd-passthru", value, 1762 false); 1763 qdict_del(qdict, "igd-passthru"); 1764 } 1765 1766 value = qdict_get_try_str(qdict, "kvm-shadow-mem"); 1767 if (value) { 1768 object_register_sugar_prop(ACCEL_CLASS_NAME("kvm"), "kvm-shadow-mem", value, 1769 false); 1770 qdict_del(qdict, "kvm-shadow-mem"); 1771 } 1772 1773 value = qdict_get_try_str(qdict, "kernel-irqchip"); 1774 if (value) { 1775 object_register_sugar_prop(ACCEL_CLASS_NAME("kvm"), "kernel-irqchip", value, 1776 false); 1777 object_register_sugar_prop(ACCEL_CLASS_NAME("whpx"), "kernel-irqchip", value, 1778 false); 1779 qdict_del(qdict, "kernel-irqchip"); 1780 } 1781 1782 value = qdict_get_try_str(qdict, "memory-backend"); 1783 if (value) { 1784 if (mem_path) { 1785 error_report("'-mem-path' can't be used together with" 1786 "'-machine memory-backend'"); 1787 exit(EXIT_FAILURE); 1788 } 1789 1790 /* Resolved later. */ 1791 ram_memdev_id = g_strdup(value); 1792 qdict_del(qdict, "memory-backend"); 1793 } 1794 1795 prop = qdict_get(qdict, "memory"); 1796 if (prop) { 1797 have_custom_ram_size = 1798 qobject_type(prop) == QTYPE_QDICT && 1799 qdict_haskey(qobject_to(QDict, prop), "size"); 1800 } 1801 } 1802 1803 static void object_option_foreach_add(bool (*type_opt_predicate)(const char *)) 1804 { 1805 ObjectOption *opt, *next; 1806 1807 QTAILQ_FOREACH_SAFE(opt, &object_opts, next, next) { 1808 const char *type = ObjectType_str(opt->opts->qom_type); 1809 if (type_opt_predicate(type)) { 1810 user_creatable_add_qapi(opt->opts, &error_fatal); 1811 qapi_free_ObjectOptions(opt->opts); 1812 QTAILQ_REMOVE(&object_opts, opt, next); 1813 g_free(opt); 1814 } 1815 } 1816 } 1817 1818 static void object_option_add_visitor(Visitor *v) 1819 { 1820 ObjectOption *opt = g_new0(ObjectOption, 1); 1821 visit_type_ObjectOptions(v, NULL, &opt->opts, &error_fatal); 1822 QTAILQ_INSERT_TAIL(&object_opts, opt, next); 1823 } 1824 1825 static void object_option_parse(const char *str) 1826 { 1827 QemuOpts *opts; 1828 const char *type; 1829 Visitor *v; 1830 1831 if (str[0] == '{') { 1832 QObject *obj = qobject_from_json(str, &error_fatal); 1833 1834 v = qobject_input_visitor_new(obj); 1835 qobject_unref(obj); 1836 } else { 1837 opts = qemu_opts_parse_noisily(qemu_find_opts("object"), 1838 str, true); 1839 if (!opts) { 1840 exit(1); 1841 } 1842 1843 type = qemu_opt_get(opts, "qom-type"); 1844 if (!type) { 1845 error_report(QERR_MISSING_PARAMETER, "qom-type"); 1846 exit(1); 1847 } 1848 if (user_creatable_print_help(type, opts)) { 1849 exit(0); 1850 } 1851 1852 v = opts_visitor_new(opts); 1853 } 1854 1855 object_option_add_visitor(v); 1856 visit_free(v); 1857 } 1858 1859 /* 1860 * Very early object creation, before the sandbox options have been activated. 1861 */ 1862 static bool object_create_pre_sandbox(const char *type) 1863 { 1864 /* 1865 * Objects should in general not get initialized "too early" without 1866 * a reason. If you add one, state the reason in a comment! 1867 */ 1868 1869 /* 1870 * Reason: -sandbox on,resourcecontrol=deny disallows setting CPU 1871 * affinity of threads. 1872 */ 1873 if (g_str_equal(type, "thread-context")) { 1874 return true; 1875 } 1876 1877 return false; 1878 } 1879 1880 /* 1881 * Initial object creation happens before all other 1882 * QEMU data types are created. The majority of objects 1883 * can be created at this point. The rng-egd object 1884 * cannot be created here, as it depends on the chardev 1885 * already existing. 1886 */ 1887 static bool object_create_early(const char *type) 1888 { 1889 /* 1890 * Objects should not be made "delayed" without a reason. If you 1891 * add one, state the reason in a comment! 1892 */ 1893 1894 /* Reason: already created. */ 1895 if (object_create_pre_sandbox(type)) { 1896 return false; 1897 } 1898 1899 /* Reason: property "chardev" */ 1900 if (g_str_equal(type, "rng-egd") || 1901 g_str_equal(type, "qtest")) { 1902 return false; 1903 } 1904 1905 #if defined(CONFIG_VHOST_USER) && defined(CONFIG_LINUX) 1906 /* Reason: cryptodev-vhost-user property "chardev" */ 1907 if (g_str_equal(type, "cryptodev-vhost-user")) { 1908 return false; 1909 } 1910 #endif 1911 1912 /* Reason: vhost-user-blk-server property "node-name" */ 1913 if (g_str_equal(type, "vhost-user-blk-server")) { 1914 return false; 1915 } 1916 /* 1917 * Reason: filter-* property "netdev" etc. 1918 */ 1919 if (g_str_equal(type, "filter-buffer") || 1920 g_str_equal(type, "filter-dump") || 1921 g_str_equal(type, "filter-mirror") || 1922 g_str_equal(type, "filter-redirector") || 1923 g_str_equal(type, "colo-compare") || 1924 g_str_equal(type, "filter-rewriter") || 1925 g_str_equal(type, "filter-replay")) { 1926 return false; 1927 } 1928 1929 /* 1930 * Allocation of large amounts of memory may delay 1931 * chardev initialization for too long, and trigger timeouts 1932 * on software that waits for a monitor socket to be created 1933 */ 1934 if (g_str_has_prefix(type, "memory-backend-")) { 1935 return false; 1936 } 1937 1938 return true; 1939 } 1940 1941 static void qemu_apply_machine_options(QDict *qdict) 1942 { 1943 object_set_properties_from_keyval(OBJECT(current_machine), qdict, false, &error_fatal); 1944 1945 if (semihosting_enabled(false) && !semihosting_get_argc()) { 1946 /* fall back to the -kernel/-append */ 1947 semihosting_arg_fallback(current_machine->kernel_filename, current_machine->kernel_cmdline); 1948 } 1949 1950 if (current_machine->smp.cpus > 1) { 1951 replay_add_blocker("multiple CPUs"); 1952 } 1953 } 1954 1955 static void qemu_create_early_backends(void) 1956 { 1957 MachineClass *machine_class = MACHINE_GET_CLASS(current_machine); 1958 #if defined(CONFIG_SDL) 1959 const bool use_sdl = (dpy.type == DISPLAY_TYPE_SDL); 1960 #else 1961 const bool use_sdl = false; 1962 #endif 1963 #if defined(CONFIG_GTK) 1964 const bool use_gtk = (dpy.type == DISPLAY_TYPE_GTK); 1965 #else 1966 const bool use_gtk = false; 1967 #endif 1968 1969 if (dpy.has_window_close && !use_gtk && !use_sdl) { 1970 error_report("window-close is only valid for GTK and SDL, " 1971 "ignoring option"); 1972 } 1973 1974 qemu_console_early_init(); 1975 1976 if (dpy.has_gl && dpy.gl != DISPLAY_GL_MODE_OFF && display_opengl == 0) { 1977 #if defined(CONFIG_OPENGL) 1978 error_report("OpenGL is not supported by display backend '%s'", 1979 DisplayType_str(dpy.type)); 1980 #else 1981 error_report("OpenGL support was not enabled in this build of QEMU"); 1982 #endif 1983 exit(1); 1984 } 1985 1986 object_option_foreach_add(object_create_early); 1987 1988 /* spice needs the timers to be initialized by this point */ 1989 /* spice must initialize before audio as it changes the default audiodev */ 1990 /* spice must initialize before chardevs (for spicevmc and spiceport) */ 1991 qemu_spice.init(); 1992 1993 qemu_opts_foreach(qemu_find_opts("chardev"), 1994 chardev_init_func, NULL, &error_fatal); 1995 1996 #ifdef CONFIG_VIRTFS 1997 qemu_opts_foreach(qemu_find_opts("fsdev"), 1998 fsdev_init_func, NULL, &error_fatal); 1999 #endif 2000 2001 /* 2002 * Note: we need to create audio and block backends before 2003 * setting machine properties, so they can be referred to. 2004 */ 2005 configure_blockdev(&bdo_queue, machine_class, snapshot); 2006 audio_init_audiodevs(); 2007 if (default_audio) { 2008 audio_create_default_audiodevs(); 2009 } 2010 } 2011 2012 2013 /* 2014 * The remainder of object creation happens after the 2015 * creation of chardev, fsdev, net clients and device data types. 2016 */ 2017 static bool object_create_late(const char *type) 2018 { 2019 return !object_create_early(type) && !object_create_pre_sandbox(type); 2020 } 2021 2022 static void qemu_create_late_backends(void) 2023 { 2024 if (qtest_chrdev) { 2025 qtest_server_init(qtest_chrdev, qtest_log, &error_fatal); 2026 } 2027 2028 net_init_clients(); 2029 2030 object_option_foreach_add(object_create_late); 2031 2032 /* 2033 * Wait for any outstanding memory prealloc from created memory 2034 * backends to complete. 2035 */ 2036 if (!qemu_finish_async_prealloc_mem(&error_fatal)) { 2037 exit(1); 2038 } 2039 2040 if (tpm_init() < 0) { 2041 exit(1); 2042 } 2043 2044 qemu_opts_foreach(qemu_find_opts("mon"), 2045 mon_init_func, NULL, &error_fatal); 2046 2047 if (foreach_device_config(DEV_SERIAL, serial_parse) < 0) 2048 exit(1); 2049 if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0) 2050 exit(1); 2051 if (foreach_device_config(DEV_DEBUGCON, debugcon_parse) < 0) 2052 exit(1); 2053 2054 /* now chardevs have been created we may have semihosting to connect */ 2055 qemu_semihosting_chardev_init(); 2056 } 2057 2058 static void qemu_resolve_machine_memdev(void) 2059 { 2060 if (ram_memdev_id) { 2061 Object *backend; 2062 ram_addr_t backend_size; 2063 2064 backend = object_resolve_path_type(ram_memdev_id, 2065 TYPE_MEMORY_BACKEND, NULL); 2066 if (!backend) { 2067 error_report("Memory backend '%s' not found", ram_memdev_id); 2068 exit(EXIT_FAILURE); 2069 } 2070 if (!have_custom_ram_size) { 2071 backend_size = object_property_get_uint(backend, "size", &error_abort); 2072 current_machine->ram_size = backend_size; 2073 } 2074 object_property_set_link(OBJECT(current_machine), 2075 "memory-backend", backend, &error_fatal); 2076 } 2077 } 2078 2079 static void parse_memory_options(void) 2080 { 2081 QemuOpts *opts = qemu_find_opts_singleton("memory"); 2082 QDict *dict, *prop; 2083 const char *mem_str; 2084 Location loc; 2085 2086 loc_push_none(&loc); 2087 qemu_opts_loc_restore(opts); 2088 2089 prop = qdict_new(); 2090 2091 if (qemu_opt_get_size(opts, "size", 0) != 0) { 2092 /* Fix up legacy suffix-less format */ 2093 mem_str = qemu_opt_get(opts, "size"); 2094 if (g_ascii_isdigit(mem_str[strlen(mem_str) - 1])) { 2095 g_autofree char *mib_str = g_strdup_printf("%sM", mem_str); 2096 qdict_put_str(prop, "size", mib_str); 2097 } else { 2098 qdict_put_str(prop, "size", mem_str); 2099 } 2100 } 2101 2102 if (qemu_opt_get(opts, "maxmem")) { 2103 qdict_put_str(prop, "max-size", qemu_opt_get(opts, "maxmem")); 2104 } 2105 if (qemu_opt_get(opts, "slots")) { 2106 qdict_put_str(prop, "slots", qemu_opt_get(opts, "slots")); 2107 } 2108 2109 dict = qdict_new(); 2110 qdict_put(dict, "memory", prop); 2111 keyval_merge(machine_opts_dict, dict, &error_fatal); 2112 qobject_unref(dict); 2113 loc_pop(&loc); 2114 } 2115 2116 static void qemu_create_machine_containers(Object *machine) 2117 { 2118 static const char *const containers[] = { 2119 "unattached", 2120 "peripheral", 2121 "peripheral-anon", 2122 }; 2123 2124 for (unsigned i = 0; i < ARRAY_SIZE(containers); i++) { 2125 object_property_add_new_container(machine, containers[i]); 2126 } 2127 } 2128 2129 static void qemu_create_machine(QDict *qdict) 2130 { 2131 MachineClass *machine_class = select_machine(qdict, &error_fatal); 2132 object_set_machine_compat_props(machine_class->compat_props); 2133 2134 current_machine = MACHINE(object_new_with_class(OBJECT_CLASS(machine_class))); 2135 object_property_add_child(object_get_root(), "machine", 2136 OBJECT(current_machine)); 2137 qemu_create_machine_containers(OBJECT(current_machine)); 2138 object_property_add_child(machine_get_container("unattached"), 2139 "sysbus", OBJECT(sysbus_get_default())); 2140 2141 if (machine_class->minimum_page_bits) { 2142 if (!set_preferred_target_page_bits(machine_class->minimum_page_bits)) { 2143 /* This would be a board error: specifying a minimum smaller than 2144 * a target's compile-time fixed setting. 2145 */ 2146 g_assert_not_reached(); 2147 } 2148 } 2149 2150 cpu_exec_init_all(); 2151 2152 if (machine_class->hw_version) { 2153 qemu_set_hw_version(machine_class->hw_version); 2154 } 2155 2156 /* 2157 * Get the default machine options from the machine if it is not already 2158 * specified either by the configuration file or by the command line. 2159 */ 2160 if (machine_class->default_machine_opts) { 2161 QDict *default_opts = 2162 keyval_parse(machine_class->default_machine_opts, NULL, NULL, 2163 &error_abort); 2164 qemu_apply_legacy_machine_options(default_opts); 2165 object_set_properties_from_keyval(OBJECT(current_machine), default_opts, 2166 false, &error_abort); 2167 qobject_unref(default_opts); 2168 } 2169 } 2170 2171 static int global_init_func(void *opaque, QemuOpts *opts, Error **errp) 2172 { 2173 GlobalProperty *g; 2174 2175 g = g_malloc0(sizeof(*g)); 2176 g->driver = qemu_opt_get(opts, "driver"); 2177 g->property = qemu_opt_get(opts, "property"); 2178 g->value = qemu_opt_get(opts, "value"); 2179 qdev_prop_register_global(g); 2180 return 0; 2181 } 2182 2183 /* 2184 * Return whether configuration group @group is stored in QemuOpts, or 2185 * recorded as one or more QDicts by qemu_record_config_group. 2186 */ 2187 static bool is_qemuopts_group(const char *group) 2188 { 2189 if (g_str_equal(group, "object") || 2190 g_str_equal(group, "audiodev") || 2191 g_str_equal(group, "machine") || 2192 g_str_equal(group, "smp-opts") || 2193 g_str_equal(group, "boot-opts")) { 2194 return false; 2195 } 2196 return true; 2197 } 2198 2199 static void qemu_record_config_group(const char *group, QDict *dict, 2200 bool from_json, Error **errp) 2201 { 2202 if (g_str_equal(group, "object")) { 2203 Visitor *v = qobject_input_visitor_new_keyval(QOBJECT(dict)); 2204 object_option_add_visitor(v); 2205 visit_free(v); 2206 2207 } else if (g_str_equal(group, "audiodev")) { 2208 Audiodev *dev = NULL; 2209 Visitor *v = qobject_input_visitor_new_keyval(QOBJECT(dict)); 2210 if (visit_type_Audiodev(v, NULL, &dev, errp)) { 2211 audio_define(dev); 2212 } 2213 visit_free(v); 2214 2215 } else if (g_str_equal(group, "machine")) { 2216 /* 2217 * Cannot merge string-valued and type-safe dictionaries, so JSON 2218 * is not accepted yet for -M. 2219 */ 2220 assert(!from_json); 2221 keyval_merge(machine_opts_dict, dict, errp); 2222 } else if (g_str_equal(group, "smp-opts")) { 2223 machine_merge_property("smp", dict, &error_fatal); 2224 } else if (g_str_equal(group, "boot-opts")) { 2225 machine_merge_property("boot", dict, &error_fatal); 2226 } else { 2227 abort(); 2228 } 2229 } 2230 2231 /* 2232 * Parse non-QemuOpts config file groups, pass the rest to 2233 * qemu_config_do_parse. 2234 */ 2235 static void qemu_parse_config_group(const char *group, QDict *qdict, 2236 void *opaque, Error **errp) 2237 { 2238 QObject *crumpled; 2239 if (is_qemuopts_group(group)) { 2240 qemu_config_do_parse(group, qdict, opaque, errp); 2241 return; 2242 } 2243 2244 crumpled = qdict_crumple(qdict, errp); 2245 if (!crumpled) { 2246 return; 2247 } 2248 switch (qobject_type(crumpled)) { 2249 case QTYPE_QDICT: 2250 qemu_record_config_group(group, qobject_to(QDict, crumpled), false, errp); 2251 break; 2252 case QTYPE_QLIST: 2253 error_setg(errp, "Lists cannot be at top level of a configuration section"); 2254 break; 2255 default: 2256 g_assert_not_reached(); 2257 } 2258 qobject_unref(crumpled); 2259 } 2260 2261 static void qemu_read_default_config_file(Error **errp) 2262 { 2263 ERRP_GUARD(); 2264 int ret; 2265 g_autofree char *file = get_relocated_path(CONFIG_QEMU_CONFDIR "/qemu.conf"); 2266 2267 ret = qemu_read_config_file(file, qemu_parse_config_group, errp); 2268 if (ret < 0) { 2269 if (ret == -ENOENT) { 2270 error_free(*errp); 2271 *errp = NULL; 2272 } 2273 } 2274 } 2275 2276 static void qemu_set_option(const char *str, Error **errp) 2277 { 2278 char group[64], id[64], arg[64]; 2279 QemuOptsList *list; 2280 QemuOpts *opts; 2281 int rc, offset; 2282 2283 rc = sscanf(str, "%63[^.].%63[^.].%63[^=]%n", group, id, arg, &offset); 2284 if (rc < 3 || str[offset] != '=') { 2285 error_setg(errp, "can't parse: \"%s\"", str); 2286 return; 2287 } 2288 2289 if (!is_qemuopts_group(group)) { 2290 error_setg(errp, "-set is not supported with %s", group); 2291 } else { 2292 list = qemu_find_opts_err(group, errp); 2293 if (list) { 2294 opts = qemu_opts_find(list, id); 2295 if (!opts) { 2296 error_setg(errp, "there is no %s \"%s\" defined", group, id); 2297 return; 2298 } 2299 qemu_opt_set(opts, arg, str + offset + 1, errp); 2300 } 2301 } 2302 } 2303 2304 static void user_register_global_props(void) 2305 { 2306 qemu_opts_foreach(qemu_find_opts("global"), 2307 global_init_func, NULL, NULL); 2308 } 2309 2310 static int do_configure_icount(void *opaque, QemuOpts *opts, Error **errp) 2311 { 2312 return !icount_configure(opts, errp); 2313 } 2314 2315 static int accelerator_set_property(void *opaque, 2316 const char *name, const char *value, 2317 Error **errp) 2318 { 2319 return object_parse_property_opt(opaque, name, value, "accel", errp); 2320 } 2321 2322 static int do_configure_accelerator(void *opaque, QemuOpts *opts, Error **errp) 2323 { 2324 bool *p_init_failed = opaque; 2325 const char *acc = qemu_opt_get(opts, "accel"); 2326 AccelClass *ac = accel_find(acc); 2327 AccelState *accel; 2328 int ret; 2329 bool qtest_with_kvm; 2330 2331 if (!acc) { 2332 error_setg(errp, QERR_MISSING_PARAMETER, "accel"); 2333 goto bad; 2334 } 2335 2336 qtest_with_kvm = g_str_equal(acc, "kvm") && qtest_chrdev != NULL; 2337 2338 if (!ac) { 2339 if (!qtest_with_kvm) { 2340 error_report("invalid accelerator %s", acc); 2341 } 2342 goto bad; 2343 } 2344 accel = ACCEL(object_new_with_class(OBJECT_CLASS(ac))); 2345 object_apply_compat_props(OBJECT(accel)); 2346 qemu_opt_foreach(opts, accelerator_set_property, 2347 accel, 2348 &error_fatal); 2349 2350 ret = accel_init_machine(accel, current_machine); 2351 if (ret < 0) { 2352 if (!qtest_with_kvm || ret != -ENOENT) { 2353 error_report("failed to initialize %s: %s", acc, strerror(-ret)); 2354 } 2355 goto bad; 2356 } 2357 2358 return 1; 2359 2360 bad: 2361 *p_init_failed = true; 2362 return 0; 2363 } 2364 2365 static void configure_accelerators(const char *progname) 2366 { 2367 bool init_failed = false; 2368 2369 qemu_opts_foreach(qemu_find_opts("icount"), 2370 do_configure_icount, NULL, &error_fatal); 2371 2372 if (QTAILQ_EMPTY(&qemu_accel_opts.head)) { 2373 char **accel_list, **tmp; 2374 2375 if (accelerators == NULL) { 2376 /* Select the default accelerator */ 2377 bool have_tcg = accel_find("tcg"); 2378 bool have_kvm = accel_find("kvm"); 2379 bool have_hvf = accel_find("hvf"); 2380 2381 if (have_tcg && have_kvm) { 2382 if (g_str_has_suffix(progname, "kvm")) { 2383 /* If the program name ends with "kvm", we prefer KVM */ 2384 accelerators = "kvm:tcg"; 2385 } else { 2386 accelerators = "tcg:kvm"; 2387 } 2388 } else if (have_kvm) { 2389 accelerators = "kvm"; 2390 } else if (have_tcg) { 2391 accelerators = "tcg"; 2392 } else if (have_hvf) { 2393 accelerators = "hvf"; 2394 } else { 2395 error_report("No accelerator selected and" 2396 " no default accelerator available"); 2397 exit(1); 2398 } 2399 } 2400 accel_list = g_strsplit(accelerators, ":", 0); 2401 2402 for (tmp = accel_list; *tmp; tmp++) { 2403 /* 2404 * Filter invalid accelerators here, to prevent obscenities 2405 * such as "-machine accel=tcg,,thread=single". 2406 */ 2407 if (accel_find(*tmp)) { 2408 qemu_opts_parse_noisily(qemu_find_opts("accel"), *tmp, true); 2409 } else { 2410 init_failed = true; 2411 error_report("invalid accelerator %s", *tmp); 2412 } 2413 } 2414 g_strfreev(accel_list); 2415 } else { 2416 if (accelerators != NULL) { 2417 error_report("The -accel and \"-machine accel=\" options are incompatible"); 2418 exit(1); 2419 } 2420 } 2421 2422 if (!qemu_opts_foreach(qemu_find_opts("accel"), 2423 do_configure_accelerator, &init_failed, &error_fatal)) { 2424 if (!init_failed) { 2425 error_report("no accelerator found"); 2426 } 2427 exit(1); 2428 } 2429 2430 if (init_failed && !qtest_chrdev) { 2431 error_report("falling back to %s", current_accel_name()); 2432 } 2433 2434 if (icount_enabled() && !tcg_enabled()) { 2435 error_report("-icount is not allowed with hardware virtualization"); 2436 exit(1); 2437 } 2438 } 2439 2440 static void qemu_validate_options(const QDict *machine_opts) 2441 { 2442 const char *kernel_filename = qdict_get_try_str(machine_opts, "kernel"); 2443 const char *shim_filename = qdict_get_try_str(machine_opts, "shim"); 2444 const char *initrd_filename = qdict_get_try_str(machine_opts, "initrd"); 2445 const char *kernel_cmdline = qdict_get_try_str(machine_opts, "append"); 2446 2447 if (kernel_filename == NULL) { 2448 if (kernel_cmdline != NULL) { 2449 error_report("-append only allowed with -kernel option"); 2450 exit(1); 2451 } 2452 2453 if (shim_filename != NULL) { 2454 error_report("-shim only allowed with -kernel option"); 2455 exit(1); 2456 } 2457 2458 if (initrd_filename != NULL) { 2459 error_report("-initrd only allowed with -kernel option"); 2460 exit(1); 2461 } 2462 } 2463 2464 if (loadvm && incoming) { 2465 error_report("'incoming' and 'loadvm' options are mutually exclusive"); 2466 exit(EXIT_FAILURE); 2467 } 2468 if (loadvm && preconfig_requested) { 2469 error_report("'preconfig' and 'loadvm' options are " 2470 "mutually exclusive"); 2471 exit(EXIT_FAILURE); 2472 } 2473 if (incoming && preconfig_requested && strcmp(incoming, "defer") != 0) { 2474 error_report("'preconfig' supports '-incoming defer' only"); 2475 exit(EXIT_FAILURE); 2476 } 2477 2478 #ifdef CONFIG_CURSES 2479 if (is_daemonized() && dpy.type == DISPLAY_TYPE_CURSES) { 2480 error_report("curses display cannot be used with -daemonize"); 2481 exit(1); 2482 } 2483 #endif 2484 } 2485 2486 static void qemu_process_sugar_options(void) 2487 { 2488 if (mem_prealloc) { 2489 QObject *smp = qdict_get(machine_opts_dict, "smp"); 2490 if (smp && qobject_type(smp) == QTYPE_QDICT) { 2491 QObject *cpus = qdict_get(qobject_to(QDict, smp), "cpus"); 2492 if (cpus && qobject_type(cpus) == QTYPE_QSTRING) { 2493 const char *val = qstring_get_str(qobject_to(QString, cpus)); 2494 object_register_sugar_prop("memory-backend", "prealloc-threads", 2495 val, false); 2496 } 2497 } 2498 object_register_sugar_prop("memory-backend", "prealloc", "on", false); 2499 } 2500 } 2501 2502 /* -action processing */ 2503 2504 /* 2505 * Process all the -action parameters parsed from cmdline. 2506 */ 2507 static int process_runstate_actions(void *opaque, QemuOpts *opts, Error **errp) 2508 { 2509 Error *local_err = NULL; 2510 QDict *qdict = qemu_opts_to_qdict(opts, NULL); 2511 QObject *ret = NULL; 2512 qmp_marshal_set_action(qdict, &ret, &local_err); 2513 qobject_unref(ret); 2514 qobject_unref(qdict); 2515 if (local_err) { 2516 error_propagate(errp, local_err); 2517 return 1; 2518 } 2519 return 0; 2520 } 2521 2522 static void qemu_process_early_options(void) 2523 { 2524 qemu_opts_foreach(qemu_find_opts("name"), 2525 parse_name, NULL, &error_fatal); 2526 2527 object_option_foreach_add(object_create_pre_sandbox); 2528 2529 #ifdef CONFIG_SECCOMP 2530 QemuOptsList *olist = qemu_find_opts_err("sandbox", NULL); 2531 if (olist) { 2532 qemu_opts_foreach(olist, parse_sandbox, NULL, &error_fatal); 2533 } 2534 #endif 2535 2536 if (qemu_opts_foreach(qemu_find_opts("action"), 2537 process_runstate_actions, NULL, &error_fatal)) { 2538 exit(1); 2539 } 2540 2541 #ifndef _WIN32 2542 qemu_opts_foreach(qemu_find_opts("add-fd"), 2543 parse_add_fd, NULL, &error_fatal); 2544 2545 qemu_opts_foreach(qemu_find_opts("add-fd"), 2546 cleanup_add_fd, NULL, &error_fatal); 2547 #endif 2548 2549 /* Open the logfile at this point and set the log mask if necessary. */ 2550 { 2551 int mask = 0; 2552 if (log_mask) { 2553 mask = qemu_str_to_log_mask(log_mask); 2554 if (!mask) { 2555 qemu_print_log_usage(stdout); 2556 exit(1); 2557 } 2558 } 2559 qemu_set_log_filename_flags(log_file, mask, &error_fatal); 2560 } 2561 2562 qemu_add_default_firmwarepath(); 2563 } 2564 2565 static void qemu_process_help_options(void) 2566 { 2567 /* 2568 * Check for -cpu help and -device help before we call select_machine(), 2569 * which will return an error if the architecture has no default machine 2570 * type and the user did not specify one, so that the user doesn't need 2571 * to say '-cpu help -machine something'. 2572 */ 2573 if (cpu_option && is_help_option(cpu_option)) { 2574 list_cpus(); 2575 exit(0); 2576 } 2577 2578 if (qemu_opts_foreach(qemu_find_opts("device"), 2579 device_help_func, NULL, NULL)) { 2580 exit(0); 2581 } 2582 2583 /* -L help lists the data directories and exits. */ 2584 if (list_data_dirs) { 2585 qemu_list_data_dirs(); 2586 exit(0); 2587 } 2588 } 2589 2590 static void qemu_maybe_daemonize(const char *pid_file) 2591 { 2592 Error *err = NULL; 2593 2594 os_daemonize(); 2595 rcu_disable_atfork(); 2596 2597 if (pid_file) { 2598 char *pid_file_realpath = NULL; 2599 2600 if (!qemu_write_pidfile(pid_file, &err)) { 2601 error_reportf_err(err, "cannot create PID file: "); 2602 exit(1); 2603 } 2604 2605 pid_file_realpath = g_malloc0(PATH_MAX); 2606 if (!realpath(pid_file, pid_file_realpath)) { 2607 if (errno != ENOENT) { 2608 warn_report("not removing PID file on exit: cannot resolve PID " 2609 "file path: %s: %s", pid_file, strerror(errno)); 2610 } 2611 return; 2612 } 2613 2614 qemu_unlink_pidfile_notifier = (struct UnlinkPidfileNotifier) { 2615 .notifier = { 2616 .notify = qemu_unlink_pidfile, 2617 }, 2618 .pid_file_realpath = pid_file_realpath, 2619 }; 2620 qemu_add_exit_notifier(&qemu_unlink_pidfile_notifier.notifier); 2621 } 2622 } 2623 2624 static void qemu_init_displays(void) 2625 { 2626 DisplayState *ds; 2627 2628 /* init local displays */ 2629 ds = init_displaystate(); 2630 qemu_display_init(ds, &dpy); 2631 2632 /* must be after terminal init, SDL library changes signal handlers */ 2633 os_setup_signal_handling(); 2634 2635 /* init remote displays */ 2636 #ifdef CONFIG_VNC 2637 qemu_opts_foreach(qemu_find_opts("vnc"), 2638 vnc_init_func, NULL, &error_fatal); 2639 #endif 2640 2641 if (using_spice) { 2642 qemu_spice.display_init(); 2643 } 2644 } 2645 2646 static void qemu_init_board(void) 2647 { 2648 /* process plugin before CPUs are created, but once -smp has been parsed */ 2649 qemu_plugin_load_list(&plugin_list, &error_fatal); 2650 2651 /* From here on we enter MACHINE_PHASE_INITIALIZED. */ 2652 machine_run_board_init(current_machine, mem_path, &error_fatal); 2653 2654 drive_check_orphaned(); 2655 2656 realtime_init(); 2657 } 2658 2659 static void qemu_create_cli_devices(void) 2660 { 2661 DeviceOption *opt; 2662 2663 soundhw_init(); 2664 2665 qemu_opts_foreach(qemu_find_opts("fw_cfg"), 2666 parse_fw_cfg, fw_cfg_find(), &error_fatal); 2667 2668 /* init USB devices */ 2669 if (machine_usb(current_machine)) { 2670 if (foreach_device_config(DEV_USB, usb_parse) < 0) 2671 exit(1); 2672 } 2673 2674 /* init generic devices */ 2675 rom_set_order_override(FW_CFG_ORDER_OVERRIDE_DEVICE); 2676 qemu_opts_foreach(qemu_find_opts("device"), 2677 device_init_func, NULL, &error_fatal); 2678 QTAILQ_FOREACH(opt, &device_opts, next) { 2679 QObject *ret_data = NULL; 2680 2681 loc_push_restore(&opt->loc); 2682 qmp_device_add(opt->opts, &ret_data, &error_fatal); 2683 assert(ret_data == NULL); /* error_fatal aborts */ 2684 loc_pop(&opt->loc); 2685 } 2686 rom_reset_order_override(); 2687 } 2688 2689 static bool qemu_machine_creation_done(Error **errp) 2690 { 2691 MachineState *machine = MACHINE(qdev_get_machine()); 2692 2693 /* Did we create any drives that we failed to create a device for? */ 2694 drive_check_orphaned(); 2695 2696 /* Don't warn about the default network setup that you get if 2697 * no command line -net or -netdev options are specified. There 2698 * are two cases that we would otherwise complain about: 2699 * (1) board doesn't support a NIC but the implicit "-net nic" 2700 * requested one 2701 * (2) CONFIG_SLIRP not set, in which case the implicit "-net nic" 2702 * sets up a nic that isn't connected to anything. 2703 */ 2704 if (!default_net && (!qtest_enabled() || has_defaults)) { 2705 net_check_clients(); 2706 } 2707 2708 qdev_prop_check_globals(); 2709 2710 qdev_machine_creation_done(); 2711 2712 if (machine->cgs && !machine->cgs->ready) { 2713 error_setg(errp, "accelerator does not support confidential guest %s", 2714 object_get_typename(OBJECT(machine->cgs))); 2715 exit(1); 2716 } 2717 2718 if (foreach_device_config(DEV_GDB, gdbserver_start) < 0) { 2719 error_setg(errp, "could not start gdbserver"); 2720 return false; 2721 } 2722 if (!vga_interface_created && !default_vga && 2723 vga_interface_type != VGA_NONE) { 2724 warn_report("A -vga option was passed but this machine " 2725 "type does not use that option; " 2726 "No VGA device has been created"); 2727 } 2728 return true; 2729 } 2730 2731 void qmp_x_exit_preconfig(Error **errp) 2732 { 2733 if (phase_check(PHASE_MACHINE_INITIALIZED)) { 2734 error_setg(errp, "The command is permitted only before machine initialization"); 2735 return; 2736 } 2737 2738 qemu_init_board(); 2739 qemu_create_cli_devices(); 2740 if (!qemu_machine_creation_done(errp)) { 2741 return; 2742 } 2743 2744 if (loadvm) { 2745 RunState state = autostart ? RUN_STATE_RUNNING : runstate_get(); 2746 load_snapshot(loadvm, NULL, false, NULL, &error_fatal); 2747 load_snapshot_resume(state); 2748 } 2749 if (replay_mode != REPLAY_MODE_NONE) { 2750 replay_vmstate_init(); 2751 } 2752 2753 if (incoming) { 2754 Error *local_err = NULL; 2755 if (strcmp(incoming, "defer") != 0) { 2756 qmp_migrate_incoming(incoming, false, NULL, true, true, 2757 &local_err); 2758 if (local_err) { 2759 error_reportf_err(local_err, "-incoming %s: ", incoming); 2760 exit(1); 2761 } 2762 } 2763 } else if (autostart) { 2764 qmp_cont(NULL); 2765 } 2766 } 2767 2768 void qemu_init(int argc, char **argv) 2769 { 2770 QemuOpts *opts; 2771 QemuOpts *icount_opts = NULL, *accel_opts = NULL; 2772 QemuOptsList *olist; 2773 int optind; 2774 const char *optarg; 2775 MachineClass *machine_class; 2776 bool userconfig = true; 2777 FILE *vmstate_dump_file = NULL; 2778 2779 qemu_add_opts(&qemu_drive_opts); 2780 qemu_add_drive_opts(&qemu_legacy_drive_opts); 2781 qemu_add_drive_opts(&qemu_common_drive_opts); 2782 qemu_add_drive_opts(&qemu_drive_opts); 2783 qemu_add_drive_opts(&bdrv_runtime_opts); 2784 qemu_add_opts(&qemu_chardev_opts); 2785 qemu_add_opts(&qemu_device_opts); 2786 qemu_add_opts(&qemu_netdev_opts); 2787 qemu_add_opts(&qemu_nic_opts); 2788 qemu_add_opts(&qemu_net_opts); 2789 qemu_add_opts(&qemu_rtc_opts); 2790 qemu_add_opts(&qemu_global_opts); 2791 qemu_add_opts(&qemu_mon_opts); 2792 qemu_add_opts(&qemu_trace_opts); 2793 qemu_plugin_add_opts(); 2794 qemu_add_opts(&qemu_option_rom_opts); 2795 qemu_add_opts(&qemu_accel_opts); 2796 qemu_add_opts(&qemu_mem_opts); 2797 qemu_add_opts(&qemu_smp_opts); 2798 qemu_add_opts(&qemu_boot_opts); 2799 qemu_add_opts(&qemu_add_fd_opts); 2800 qemu_add_opts(&qemu_object_opts); 2801 qemu_add_opts(&qemu_tpmdev_opts); 2802 qemu_add_opts(&qemu_overcommit_opts); 2803 qemu_add_opts(&qemu_msg_opts); 2804 qemu_add_opts(&qemu_name_opts); 2805 qemu_add_opts(&qemu_numa_opts); 2806 qemu_add_opts(&qemu_icount_opts); 2807 qemu_add_opts(&qemu_semihosting_config_opts); 2808 qemu_add_opts(&qemu_fw_cfg_opts); 2809 qemu_add_opts(&qemu_action_opts); 2810 qemu_add_run_with_opts(); 2811 module_call_init(MODULE_INIT_OPTS); 2812 2813 error_init(argv[0]); 2814 qemu_init_exec_dir(argv[0]); 2815 2816 os_setup_limits(); 2817 2818 qemu_init_arch_modules(); 2819 2820 qemu_init_subsystems(); 2821 2822 /* first pass of option parsing */ 2823 optind = 1; 2824 while (optind < argc) { 2825 if (argv[optind][0] != '-') { 2826 /* disk image */ 2827 optind++; 2828 } else { 2829 const QEMUOption *popt; 2830 2831 popt = lookup_opt(argc, argv, &optarg, &optind); 2832 switch (popt->index) { 2833 case QEMU_OPTION_nouserconfig: 2834 userconfig = false; 2835 break; 2836 } 2837 } 2838 } 2839 2840 machine_opts_dict = qdict_new(); 2841 if (userconfig) { 2842 qemu_read_default_config_file(&error_fatal); 2843 } 2844 2845 /* second pass of option parsing */ 2846 optind = 1; 2847 for(;;) { 2848 if (optind >= argc) 2849 break; 2850 if (argv[optind][0] != '-') { 2851 loc_set_cmdline(argv, optind, 1); 2852 drive_add(IF_DEFAULT, 0, argv[optind++], HD_OPTS); 2853 } else { 2854 const QEMUOption *popt; 2855 2856 popt = lookup_opt(argc, argv, &optarg, &optind); 2857 if (!(popt->arch_mask & arch_type)) { 2858 error_report("Option not supported for this target"); 2859 exit(1); 2860 } 2861 switch(popt->index) { 2862 case QEMU_OPTION_cpu: 2863 /* hw initialization will check this */ 2864 cpu_option = optarg; 2865 break; 2866 case QEMU_OPTION_hda: 2867 case QEMU_OPTION_hdb: 2868 case QEMU_OPTION_hdc: 2869 case QEMU_OPTION_hdd: 2870 drive_add(IF_DEFAULT, popt->index - QEMU_OPTION_hda, optarg, 2871 HD_OPTS); 2872 break; 2873 case QEMU_OPTION_blockdev: 2874 { 2875 Visitor *v; 2876 BlockdevOptionsQueueEntry *bdo; 2877 2878 v = qobject_input_visitor_new_str(optarg, "driver", 2879 &error_fatal); 2880 2881 bdo = g_new(BlockdevOptionsQueueEntry, 1); 2882 visit_type_BlockdevOptions(v, NULL, &bdo->bdo, 2883 &error_fatal); 2884 visit_free(v); 2885 loc_save(&bdo->loc); 2886 QSIMPLEQ_INSERT_TAIL(&bdo_queue, bdo, entry); 2887 break; 2888 } 2889 case QEMU_OPTION_drive: 2890 opts = qemu_opts_parse_noisily(qemu_find_opts("drive"), 2891 optarg, false); 2892 if (opts == NULL) { 2893 exit(1); 2894 } 2895 break; 2896 case QEMU_OPTION_set: 2897 qemu_set_option(optarg, &error_fatal); 2898 break; 2899 case QEMU_OPTION_global: 2900 if (qemu_global_option(optarg) != 0) 2901 exit(1); 2902 break; 2903 case QEMU_OPTION_mtdblock: 2904 drive_add(IF_MTD, -1, optarg, MTD_OPTS); 2905 break; 2906 case QEMU_OPTION_sd: 2907 drive_add(IF_SD, -1, optarg, SD_OPTS); 2908 break; 2909 case QEMU_OPTION_pflash: 2910 drive_add(IF_PFLASH, -1, optarg, PFLASH_OPTS); 2911 break; 2912 case QEMU_OPTION_snapshot: 2913 snapshot = 1; 2914 replay_add_blocker("-snapshot"); 2915 break; 2916 case QEMU_OPTION_numa: 2917 opts = qemu_opts_parse_noisily(qemu_find_opts("numa"), 2918 optarg, true); 2919 if (!opts) { 2920 exit(1); 2921 } 2922 break; 2923 case QEMU_OPTION_display: 2924 parse_display(optarg); 2925 break; 2926 case QEMU_OPTION_nographic: 2927 qdict_put_str(machine_opts_dict, "graphics", "off"); 2928 nographic = true; 2929 dpy.type = DISPLAY_TYPE_NONE; 2930 break; 2931 case QEMU_OPTION_kernel: 2932 qdict_put_str(machine_opts_dict, "kernel", optarg); 2933 break; 2934 case QEMU_OPTION_shim: 2935 qdict_put_str(machine_opts_dict, "shim", optarg); 2936 break; 2937 case QEMU_OPTION_initrd: 2938 qdict_put_str(machine_opts_dict, "initrd", optarg); 2939 break; 2940 case QEMU_OPTION_append: 2941 qdict_put_str(machine_opts_dict, "append", optarg); 2942 break; 2943 case QEMU_OPTION_dtb: 2944 qdict_put_str(machine_opts_dict, "dtb", optarg); 2945 break; 2946 case QEMU_OPTION_cdrom: 2947 drive_add(IF_DEFAULT, 2, optarg, CDROM_OPTS); 2948 break; 2949 case QEMU_OPTION_boot: 2950 machine_parse_property_opt(qemu_find_opts("boot-opts"), "boot", optarg); 2951 break; 2952 case QEMU_OPTION_fda: 2953 case QEMU_OPTION_fdb: 2954 drive_add(IF_FLOPPY, popt->index - QEMU_OPTION_fda, 2955 optarg, FD_OPTS); 2956 break; 2957 case QEMU_OPTION_no_fd_bootchk: 2958 qdict_put_str(machine_opts_dict, "fd-bootchk", "off"); 2959 break; 2960 case QEMU_OPTION_netdev: 2961 default_net = 0; 2962 if (netdev_is_modern(optarg)) { 2963 netdev_parse_modern(optarg); 2964 } else { 2965 net_client_parse(qemu_find_opts("netdev"), optarg); 2966 } 2967 break; 2968 case QEMU_OPTION_nic: 2969 default_net = 0; 2970 net_client_parse(qemu_find_opts("nic"), optarg); 2971 break; 2972 case QEMU_OPTION_net: 2973 default_net = 0; 2974 net_client_parse(qemu_find_opts("net"), optarg); 2975 break; 2976 #ifdef CONFIG_LIBISCSI 2977 case QEMU_OPTION_iscsi: 2978 opts = qemu_opts_parse_noisily(qemu_find_opts("iscsi"), 2979 optarg, false); 2980 if (!opts) { 2981 exit(1); 2982 } 2983 break; 2984 #endif 2985 case QEMU_OPTION_audiodev: 2986 default_audio = 0; 2987 audio_parse_option(optarg); 2988 break; 2989 case QEMU_OPTION_audio: { 2990 bool help; 2991 char *model = NULL; 2992 Audiodev *dev = NULL; 2993 Visitor *v; 2994 QDict *dict = keyval_parse(optarg, "driver", &help, &error_fatal); 2995 default_audio = 0; 2996 if (help || (qdict_haskey(dict, "driver") && 2997 is_help_option(qdict_get_str(dict, "driver")))) { 2998 audio_help(); 2999 exit(EXIT_SUCCESS); 3000 } 3001 if (!qdict_haskey(dict, "id")) { 3002 qdict_put_str(dict, "id", "audiodev0"); 3003 } 3004 if (qdict_haskey(dict, "model")) { 3005 model = g_strdup(qdict_get_str(dict, "model")); 3006 qdict_del(dict, "model"); 3007 if (is_help_option(model)) { 3008 show_valid_soundhw(); 3009 exit(0); 3010 } 3011 } 3012 v = qobject_input_visitor_new_keyval(QOBJECT(dict)); 3013 qobject_unref(dict); 3014 visit_type_Audiodev(v, NULL, &dev, &error_fatal); 3015 visit_free(v); 3016 if (model) { 3017 audio_define(dev); 3018 select_soundhw(model, dev->id); 3019 g_free(model); 3020 } else { 3021 audio_define_default(dev, &error_fatal); 3022 } 3023 break; 3024 } 3025 case QEMU_OPTION_h: 3026 help(0); 3027 break; 3028 case QEMU_OPTION_version: 3029 version(); 3030 exit(0); 3031 break; 3032 case QEMU_OPTION_m: 3033 opts = qemu_opts_parse_noisily(qemu_find_opts("memory"), optarg, true); 3034 if (opts == NULL) { 3035 exit(1); 3036 } 3037 break; 3038 #ifdef CONFIG_TPM 3039 case QEMU_OPTION_tpmdev: 3040 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg) < 0) { 3041 exit(1); 3042 } 3043 break; 3044 #endif 3045 case QEMU_OPTION_mempath: 3046 mem_path = optarg; 3047 break; 3048 case QEMU_OPTION_mem_prealloc: 3049 mem_prealloc = 1; 3050 break; 3051 case QEMU_OPTION_d: 3052 log_mask = optarg; 3053 break; 3054 case QEMU_OPTION_D: 3055 log_file = optarg; 3056 break; 3057 case QEMU_OPTION_DFILTER: 3058 qemu_set_dfilter_ranges(optarg, &error_fatal); 3059 break; 3060 #if defined(CONFIG_TCG) && defined(CONFIG_LINUX) 3061 case QEMU_OPTION_perfmap: 3062 perf_enable_perfmap(); 3063 break; 3064 case QEMU_OPTION_jitdump: 3065 perf_enable_jitdump(); 3066 break; 3067 #endif 3068 case QEMU_OPTION_seed: 3069 qemu_guest_random_seed_main(optarg, &error_fatal); 3070 break; 3071 case QEMU_OPTION_s: 3072 add_device_config(DEV_GDB, "tcp::" DEFAULT_GDBSTUB_PORT); 3073 break; 3074 case QEMU_OPTION_gdb: 3075 add_device_config(DEV_GDB, optarg); 3076 break; 3077 case QEMU_OPTION_L: 3078 if (is_help_option(optarg)) { 3079 list_data_dirs = true; 3080 } else { 3081 qemu_add_data_dir(g_strdup(optarg)); 3082 } 3083 break; 3084 case QEMU_OPTION_bios: 3085 qdict_put_str(machine_opts_dict, "firmware", optarg); 3086 break; 3087 case QEMU_OPTION_S: 3088 autostart = 0; 3089 break; 3090 case QEMU_OPTION_k: 3091 keyboard_layout = optarg; 3092 break; 3093 case QEMU_OPTION_vga: 3094 vga_model = optarg; 3095 default_vga = 0; 3096 break; 3097 case QEMU_OPTION_g: 3098 { 3099 const char *p; 3100 int w, h, depth; 3101 p = optarg; 3102 w = strtol(p, (char **)&p, 10); 3103 if (w <= 0) { 3104 graphic_error: 3105 error_report("invalid resolution or depth"); 3106 exit(1); 3107 } 3108 if (*p != 'x') 3109 goto graphic_error; 3110 p++; 3111 h = strtol(p, (char **)&p, 10); 3112 if (h <= 0) 3113 goto graphic_error; 3114 if (*p == 'x') { 3115 p++; 3116 depth = strtol(p, (char **)&p, 10); 3117 if (depth != 1 && depth != 2 && depth != 4 && 3118 depth != 8 && depth != 15 && depth != 16 && 3119 depth != 24 && depth != 32) 3120 goto graphic_error; 3121 } else if (*p == '\0') { 3122 depth = graphic_depth; 3123 } else { 3124 goto graphic_error; 3125 } 3126 3127 graphic_width = w; 3128 graphic_height = h; 3129 graphic_depth = depth; 3130 } 3131 break; 3132 case QEMU_OPTION_echr: 3133 { 3134 char *r; 3135 term_escape_char = strtol(optarg, &r, 0); 3136 if (r == optarg) 3137 printf("Bad argument to echr\n"); 3138 break; 3139 } 3140 case QEMU_OPTION_monitor: 3141 default_monitor = 0; 3142 if (strncmp(optarg, "none", 4)) { 3143 monitor_parse(optarg, "readline", false); 3144 } 3145 break; 3146 case QEMU_OPTION_qmp: 3147 monitor_parse(optarg, "control", false); 3148 default_monitor = 0; 3149 break; 3150 case QEMU_OPTION_qmp_pretty: 3151 monitor_parse(optarg, "control", true); 3152 default_monitor = 0; 3153 break; 3154 case QEMU_OPTION_mon: 3155 opts = qemu_opts_parse_noisily(qemu_find_opts("mon"), optarg, 3156 true); 3157 if (!opts) { 3158 exit(1); 3159 } 3160 default_monitor = 0; 3161 break; 3162 case QEMU_OPTION_chardev: 3163 opts = qemu_opts_parse_noisily(qemu_find_opts("chardev"), 3164 optarg, true); 3165 if (!opts) { 3166 exit(1); 3167 } 3168 break; 3169 case QEMU_OPTION_fsdev: 3170 olist = qemu_find_opts("fsdev"); 3171 if (!olist) { 3172 error_report("fsdev support is disabled"); 3173 exit(1); 3174 } 3175 opts = qemu_opts_parse_noisily(olist, optarg, true); 3176 if (!opts) { 3177 exit(1); 3178 } 3179 break; 3180 case QEMU_OPTION_virtfs: { 3181 QemuOpts *fsdev; 3182 QemuOpts *device; 3183 const char *writeout, *sock_fd, *socket, *path, *security_model, 3184 *multidevs; 3185 3186 olist = qemu_find_opts("virtfs"); 3187 if (!olist) { 3188 error_report("virtfs support is disabled"); 3189 exit(1); 3190 } 3191 opts = qemu_opts_parse_noisily(olist, optarg, true); 3192 if (!opts) { 3193 exit(1); 3194 } 3195 3196 if (qemu_opt_get(opts, "fsdriver") == NULL || 3197 qemu_opt_get(opts, "mount_tag") == NULL) { 3198 error_report("Usage: -virtfs fsdriver,mount_tag=tag"); 3199 exit(1); 3200 } 3201 fsdev = qemu_opts_create(qemu_find_opts("fsdev"), 3202 qemu_opts_id(opts) ?: 3203 qemu_opt_get(opts, "mount_tag"), 3204 1, NULL); 3205 if (!fsdev) { 3206 error_report("duplicate or invalid fsdev id: %s", 3207 qemu_opt_get(opts, "mount_tag")); 3208 exit(1); 3209 } 3210 3211 writeout = qemu_opt_get(opts, "writeout"); 3212 if (writeout) { 3213 #ifdef CONFIG_SYNC_FILE_RANGE 3214 qemu_opt_set(fsdev, "writeout", writeout, &error_abort); 3215 #else 3216 error_report("writeout=immediate not supported " 3217 "on this platform"); 3218 exit(1); 3219 #endif 3220 } 3221 qemu_opt_set(fsdev, "fsdriver", 3222 qemu_opt_get(opts, "fsdriver"), &error_abort); 3223 path = qemu_opt_get(opts, "path"); 3224 if (path) { 3225 qemu_opt_set(fsdev, "path", path, &error_abort); 3226 } 3227 security_model = qemu_opt_get(opts, "security_model"); 3228 if (security_model) { 3229 qemu_opt_set(fsdev, "security_model", security_model, 3230 &error_abort); 3231 } 3232 socket = qemu_opt_get(opts, "socket"); 3233 if (socket) { 3234 qemu_opt_set(fsdev, "socket", socket, &error_abort); 3235 } 3236 sock_fd = qemu_opt_get(opts, "sock_fd"); 3237 if (sock_fd) { 3238 qemu_opt_set(fsdev, "sock_fd", sock_fd, &error_abort); 3239 } 3240 3241 qemu_opt_set_bool(fsdev, "readonly", 3242 qemu_opt_get_bool(opts, "readonly", 0), 3243 &error_abort); 3244 multidevs = qemu_opt_get(opts, "multidevs"); 3245 if (multidevs) { 3246 qemu_opt_set(fsdev, "multidevs", multidevs, &error_abort); 3247 } 3248 device = qemu_opts_create(qemu_find_opts("device"), NULL, 0, 3249 &error_abort); 3250 qemu_opt_set(device, "driver", "virtio-9p-pci", &error_abort); 3251 qemu_opt_set(device, "fsdev", 3252 qemu_opts_id(fsdev), &error_abort); 3253 qemu_opt_set(device, "mount_tag", 3254 qemu_opt_get(opts, "mount_tag"), &error_abort); 3255 break; 3256 } 3257 case QEMU_OPTION_serial: 3258 add_device_config(DEV_SERIAL, optarg); 3259 default_serial = 0; 3260 if (strncmp(optarg, "mon:", 4) == 0) { 3261 default_monitor = 0; 3262 } 3263 break; 3264 case QEMU_OPTION_action: 3265 olist = qemu_find_opts("action"); 3266 if (!qemu_opts_parse_noisily(olist, optarg, false)) { 3267 exit(1); 3268 } 3269 break; 3270 case QEMU_OPTION_watchdog_action: { 3271 opts = qemu_opts_create(qemu_find_opts("action"), NULL, 0, &error_abort); 3272 qemu_opt_set(opts, "watchdog", optarg, &error_abort); 3273 break; 3274 } 3275 case QEMU_OPTION_parallel: 3276 add_device_config(DEV_PARALLEL, optarg); 3277 default_parallel = 0; 3278 if (strncmp(optarg, "mon:", 4) == 0) { 3279 default_monitor = 0; 3280 } 3281 break; 3282 case QEMU_OPTION_debugcon: 3283 add_device_config(DEV_DEBUGCON, optarg); 3284 break; 3285 case QEMU_OPTION_loadvm: 3286 loadvm = optarg; 3287 break; 3288 case QEMU_OPTION_full_screen: 3289 dpy.has_full_screen = true; 3290 dpy.full_screen = true; 3291 break; 3292 case QEMU_OPTION_pidfile: 3293 pid_file = optarg; 3294 break; 3295 case QEMU_OPTION_win2k_hack: 3296 object_register_sugar_prop("ide-device", "win2k-install-hack", "true", true); 3297 break; 3298 case QEMU_OPTION_acpitable: 3299 opts = qemu_opts_parse_noisily(qemu_find_opts("acpi"), 3300 optarg, true); 3301 if (!opts) { 3302 exit(1); 3303 } 3304 acpi_table_add(opts, &error_fatal); 3305 break; 3306 case QEMU_OPTION_smbios: 3307 opts = qemu_opts_parse_noisily(qemu_find_opts("smbios"), 3308 optarg, false); 3309 if (!opts) { 3310 exit(1); 3311 } 3312 smbios_entry_add(opts, &error_fatal); 3313 break; 3314 case QEMU_OPTION_fwcfg: 3315 opts = qemu_opts_parse_noisily(qemu_find_opts("fw_cfg"), 3316 optarg, true); 3317 if (opts == NULL) { 3318 exit(1); 3319 } 3320 break; 3321 case QEMU_OPTION_preconfig: 3322 preconfig_requested = true; 3323 break; 3324 case QEMU_OPTION_enable_kvm: 3325 qdict_put_str(machine_opts_dict, "accel", "kvm"); 3326 break; 3327 case QEMU_OPTION_M: 3328 case QEMU_OPTION_machine: 3329 { 3330 bool help; 3331 3332 keyval_parse_into(machine_opts_dict, optarg, "type", &help, &error_fatal); 3333 if (help) { 3334 machine_help_func(machine_opts_dict); 3335 exit(EXIT_SUCCESS); 3336 } 3337 break; 3338 } 3339 case QEMU_OPTION_accel: 3340 accel_opts = qemu_opts_parse_noisily(qemu_find_opts("accel"), 3341 optarg, true); 3342 optarg = qemu_opt_get(accel_opts, "accel"); 3343 if (!optarg || is_help_option(optarg)) { 3344 printf("Accelerators supported in QEMU binary:\n"); 3345 GSList *el, *accel_list = object_class_get_list(TYPE_ACCEL, 3346 false); 3347 for (el = accel_list; el; el = el->next) { 3348 gchar *typename = g_strdup(object_class_get_name( 3349 OBJECT_CLASS(el->data))); 3350 /* omit qtest which is used for tests only */ 3351 if (g_strcmp0(typename, ACCEL_CLASS_NAME("qtest")) && 3352 g_str_has_suffix(typename, ACCEL_CLASS_SUFFIX)) { 3353 gchar **optname = g_strsplit(typename, 3354 ACCEL_CLASS_SUFFIX, 0); 3355 printf("%s\n", optname[0]); 3356 g_strfreev(optname); 3357 } 3358 g_free(typename); 3359 } 3360 g_slist_free(accel_list); 3361 exit(0); 3362 } 3363 break; 3364 case QEMU_OPTION_usb: 3365 qdict_put_str(machine_opts_dict, "usb", "on"); 3366 break; 3367 case QEMU_OPTION_usbdevice: 3368 qdict_put_str(machine_opts_dict, "usb", "on"); 3369 add_device_config(DEV_USB, optarg); 3370 break; 3371 case QEMU_OPTION_device: 3372 if (optarg[0] == '{') { 3373 QObject *obj = qobject_from_json(optarg, &error_fatal); 3374 DeviceOption *opt = g_new0(DeviceOption, 1); 3375 opt->opts = qobject_to(QDict, obj); 3376 loc_save(&opt->loc); 3377 assert(opt->opts != NULL); 3378 QTAILQ_INSERT_TAIL(&device_opts, opt, next); 3379 } else { 3380 if (!qemu_opts_parse_noisily(qemu_find_opts("device"), 3381 optarg, true)) { 3382 exit(1); 3383 } 3384 } 3385 break; 3386 case QEMU_OPTION_smp: 3387 machine_parse_property_opt(qemu_find_opts("smp-opts"), 3388 "smp", optarg); 3389 break; 3390 #ifdef CONFIG_VNC 3391 case QEMU_OPTION_vnc: 3392 vnc_parse(optarg); 3393 display_remote++; 3394 break; 3395 #endif 3396 case QEMU_OPTION_no_reboot: 3397 olist = qemu_find_opts("action"); 3398 qemu_opts_parse_noisily(olist, "reboot=shutdown", false); 3399 break; 3400 case QEMU_OPTION_no_shutdown: 3401 olist = qemu_find_opts("action"); 3402 qemu_opts_parse_noisily(olist, "shutdown=pause", false); 3403 break; 3404 case QEMU_OPTION_uuid: 3405 if (qemu_uuid_parse(optarg, &qemu_uuid) < 0) { 3406 error_report("failed to parse UUID string: wrong format"); 3407 exit(1); 3408 } 3409 qemu_uuid_set = true; 3410 break; 3411 case QEMU_OPTION_option_rom: 3412 if (nb_option_roms >= MAX_OPTION_ROMS) { 3413 error_report("too many option ROMs"); 3414 exit(1); 3415 } 3416 opts = qemu_opts_parse_noisily(qemu_find_opts("option-rom"), 3417 optarg, true); 3418 if (!opts) { 3419 exit(1); 3420 } 3421 option_rom[nb_option_roms].name = qemu_opt_get(opts, "romfile"); 3422 option_rom[nb_option_roms].bootindex = 3423 qemu_opt_get_number(opts, "bootindex", -1); 3424 if (!option_rom[nb_option_roms].name) { 3425 error_report("Option ROM file is not specified"); 3426 exit(1); 3427 } 3428 nb_option_roms++; 3429 break; 3430 case QEMU_OPTION_semihosting: 3431 qemu_semihosting_enable(); 3432 break; 3433 case QEMU_OPTION_semihosting_config: 3434 if (qemu_semihosting_config_options(optarg) != 0) { 3435 exit(1); 3436 } 3437 break; 3438 case QEMU_OPTION_name: 3439 opts = qemu_opts_parse_noisily(qemu_find_opts("name"), 3440 optarg, true); 3441 if (!opts) { 3442 exit(1); 3443 } 3444 /* Capture guest name if -msg guest-name is used later */ 3445 error_guest_name = qemu_opt_get(opts, "guest"); 3446 break; 3447 case QEMU_OPTION_prom_env: 3448 if (nb_prom_envs >= MAX_PROM_ENVS) { 3449 error_report("too many prom variables"); 3450 exit(1); 3451 } 3452 prom_envs[nb_prom_envs] = optarg; 3453 nb_prom_envs++; 3454 break; 3455 case QEMU_OPTION_old_param: 3456 old_param = 1; 3457 break; 3458 case QEMU_OPTION_rtc: 3459 opts = qemu_opts_parse_noisily(qemu_find_opts("rtc"), optarg, 3460 false); 3461 if (!opts) { 3462 exit(1); 3463 } 3464 break; 3465 case QEMU_OPTION_icount: 3466 icount_opts = qemu_opts_parse_noisily(qemu_find_opts("icount"), 3467 optarg, true); 3468 if (!icount_opts) { 3469 exit(1); 3470 } 3471 break; 3472 case QEMU_OPTION_incoming: 3473 if (!incoming) { 3474 runstate_set(RUN_STATE_INMIGRATE); 3475 } 3476 incoming = optarg; 3477 break; 3478 case QEMU_OPTION_only_migratable: 3479 only_migratable = 1; 3480 break; 3481 case QEMU_OPTION_nodefaults: 3482 has_defaults = 0; 3483 break; 3484 case QEMU_OPTION_xen_domid: 3485 if (!(accel_find("xen")) && !(accel_find("kvm"))) { 3486 error_report("Option not supported for this target"); 3487 exit(1); 3488 } 3489 xen_domid = atoi(optarg); 3490 break; 3491 case QEMU_OPTION_xen_attach: 3492 if (!(accel_find("xen"))) { 3493 error_report("Option not supported for this target"); 3494 exit(1); 3495 } 3496 xen_mode = XEN_ATTACH; 3497 break; 3498 case QEMU_OPTION_xen_domid_restrict: 3499 if (!(accel_find("xen"))) { 3500 error_report("Option not supported for this target"); 3501 exit(1); 3502 } 3503 xen_domid_restrict = true; 3504 break; 3505 case QEMU_OPTION_trace: 3506 trace_opt_parse(optarg); 3507 break; 3508 case QEMU_OPTION_plugin: 3509 qemu_plugin_opt_parse(optarg, &plugin_list); 3510 break; 3511 case QEMU_OPTION_readconfig: 3512 qemu_read_config_file(optarg, qemu_parse_config_group, &error_fatal); 3513 break; 3514 #ifdef CONFIG_SPICE 3515 case QEMU_OPTION_spice: 3516 opts = qemu_opts_parse_noisily(qemu_find_opts("spice"), optarg, false); 3517 if (!opts) { 3518 exit(1); 3519 } 3520 display_remote++; 3521 break; 3522 #endif 3523 case QEMU_OPTION_qtest: 3524 qtest_chrdev = optarg; 3525 break; 3526 case QEMU_OPTION_qtest_log: 3527 qtest_log = optarg; 3528 break; 3529 case QEMU_OPTION_sandbox: 3530 olist = qemu_find_opts("sandbox"); 3531 if (!olist) { 3532 #ifndef CONFIG_SECCOMP 3533 error_report("-sandbox support is not enabled " 3534 "in this QEMU binary"); 3535 #endif 3536 exit(1); 3537 } 3538 3539 opts = qemu_opts_parse_noisily(olist, optarg, true); 3540 if (!opts) { 3541 exit(1); 3542 } 3543 break; 3544 case QEMU_OPTION_add_fd: 3545 #ifndef _WIN32 3546 opts = qemu_opts_parse_noisily(qemu_find_opts("add-fd"), 3547 optarg, false); 3548 if (!opts) { 3549 exit(1); 3550 } 3551 #else 3552 error_report("File descriptor passing is disabled on this " 3553 "platform"); 3554 exit(1); 3555 #endif 3556 break; 3557 case QEMU_OPTION_object: 3558 object_option_parse(optarg); 3559 break; 3560 case QEMU_OPTION_overcommit: 3561 opts = qemu_opts_parse_noisily(qemu_find_opts("overcommit"), 3562 optarg, false); 3563 if (!opts) { 3564 exit(1); 3565 } 3566 enable_mlock = qemu_opt_get_bool(opts, "mem-lock", enable_mlock); 3567 enable_cpu_pm = qemu_opt_get_bool(opts, "cpu-pm", enable_cpu_pm); 3568 break; 3569 case QEMU_OPTION_compat: 3570 { 3571 CompatPolicy *opts_policy; 3572 Visitor *v; 3573 3574 v = qobject_input_visitor_new_str(optarg, NULL, 3575 &error_fatal); 3576 3577 visit_type_CompatPolicy(v, NULL, &opts_policy, &error_fatal); 3578 QAPI_CLONE_MEMBERS(CompatPolicy, &compat_policy, opts_policy); 3579 3580 qapi_free_CompatPolicy(opts_policy); 3581 visit_free(v); 3582 break; 3583 } 3584 case QEMU_OPTION_msg: 3585 opts = qemu_opts_parse_noisily(qemu_find_opts("msg"), optarg, 3586 false); 3587 if (!opts) { 3588 exit(1); 3589 } 3590 configure_msg(opts); 3591 break; 3592 case QEMU_OPTION_dump_vmstate: 3593 if (vmstate_dump_file) { 3594 error_report("only one '-dump-vmstate' " 3595 "option may be given"); 3596 exit(1); 3597 } 3598 vmstate_dump_file = fopen(optarg, "w"); 3599 if (vmstate_dump_file == NULL) { 3600 error_report("open %s: %s", optarg, strerror(errno)); 3601 exit(1); 3602 } 3603 break; 3604 case QEMU_OPTION_enable_sync_profile: 3605 qsp_enable(); 3606 break; 3607 case QEMU_OPTION_nouserconfig: 3608 /* Nothing to be parsed here. Especially, do not error out below. */ 3609 break; 3610 #if defined(CONFIG_POSIX) 3611 case QEMU_OPTION_daemonize: 3612 os_set_daemonize(true); 3613 break; 3614 case QEMU_OPTION_run_with: { 3615 const char *str; 3616 opts = qemu_opts_parse_noisily(qemu_find_opts("run-with"), 3617 optarg, false); 3618 if (!opts) { 3619 exit(1); 3620 } 3621 #if defined(CONFIG_LINUX) 3622 if (qemu_opt_get_bool(opts, "async-teardown", false)) { 3623 init_async_teardown(); 3624 } 3625 #endif 3626 str = qemu_opt_get(opts, "chroot"); 3627 if (str) { 3628 os_set_chroot(str); 3629 } 3630 str = qemu_opt_get(opts, "user"); 3631 if (str) { 3632 if (!os_set_runas(str)) { 3633 error_report("User \"%s\" doesn't exist" 3634 " (and is not <uid>:<gid>)", 3635 optarg); 3636 exit(1); 3637 } 3638 } 3639 3640 break; 3641 } 3642 #endif /* CONFIG_POSIX */ 3643 3644 default: 3645 error_report("Option not supported in this build"); 3646 exit(1); 3647 } 3648 } 3649 } 3650 /* 3651 * Clear error location left behind by the loop. 3652 * Best done right after the loop. Do not insert code here! 3653 */ 3654 loc_set_none(); 3655 3656 qemu_validate_options(machine_opts_dict); 3657 qemu_process_sugar_options(); 3658 3659 /* 3660 * These options affect everything else and should be processed 3661 * before daemonizing. 3662 */ 3663 qemu_process_early_options(); 3664 3665 qemu_process_help_options(); 3666 qemu_maybe_daemonize(pid_file); 3667 3668 /* 3669 * The trace backend must be initialized after daemonizing. 3670 * trace_init_backends() will call st_init(), which will create the 3671 * trace thread in the parent, and also register st_flush_trace_buffer() 3672 * in atexit(). This function will force the parent to wait for the 3673 * writeout thread to finish, which will not occur, and the parent 3674 * process will be left in the host. 3675 */ 3676 if (!trace_init_backends()) { 3677 exit(1); 3678 } 3679 trace_init_file(); 3680 3681 qemu_init_main_loop(&error_fatal); 3682 cpu_timers_init(); 3683 3684 user_register_global_props(); 3685 replay_configure(icount_opts); 3686 3687 configure_rtc(qemu_find_opts_singleton("rtc")); 3688 3689 /* Transfer QemuOpts options into machine options */ 3690 parse_memory_options(); 3691 3692 qemu_create_machine(machine_opts_dict); 3693 3694 suspend_mux_open(); 3695 3696 qemu_disable_default_devices(); 3697 qemu_setup_display(); 3698 qemu_create_default_devices(); 3699 qemu_create_early_backends(); 3700 3701 qemu_apply_legacy_machine_options(machine_opts_dict); 3702 qemu_apply_machine_options(machine_opts_dict); 3703 qobject_unref(machine_opts_dict); 3704 phase_advance(PHASE_MACHINE_CREATED); 3705 3706 /* 3707 * Note: uses machine properties such as kernel-irqchip, must run 3708 * after qemu_apply_machine_options. 3709 */ 3710 configure_accelerators(argv[0]); 3711 phase_advance(PHASE_ACCEL_CREATED); 3712 3713 /* 3714 * Beware, QOM objects created before this point miss global and 3715 * compat properties. 3716 * 3717 * Global properties get set up by qdev_prop_register_global(), 3718 * called from user_register_global_props(), and certain option 3719 * desugaring. Also in CPU feature desugaring (buried in 3720 * parse_cpu_option()), which happens below this point, but may 3721 * only target the CPU type, which can only be created after 3722 * parse_cpu_option() returned the type. 3723 * 3724 * Machine compat properties: object_set_machine_compat_props(). 3725 * Accelerator compat props: object_set_accelerator_compat_props(), 3726 * called from do_configure_accelerator(). 3727 */ 3728 3729 machine_class = MACHINE_GET_CLASS(current_machine); 3730 if (!qtest_enabled() && machine_class->deprecation_reason) { 3731 warn_report("Machine type '%s' is deprecated: %s", 3732 machine_class->name, machine_class->deprecation_reason); 3733 } 3734 3735 /* 3736 * Create backends before creating migration objects, so that it can 3737 * check against compatibilities on the backend memories (e.g. postcopy 3738 * over memory-backend-file objects). 3739 */ 3740 qemu_create_late_backends(); 3741 phase_advance(PHASE_LATE_BACKENDS_CREATED); 3742 3743 /* 3744 * Note: creates a QOM object, must run only after global and 3745 * compat properties have been set up. 3746 */ 3747 migration_object_init(); 3748 3749 /* parse features once if machine provides default cpu_type */ 3750 current_machine->cpu_type = machine_class_default_cpu_type(machine_class); 3751 if (cpu_option) { 3752 current_machine->cpu_type = parse_cpu_option(cpu_option); 3753 } 3754 /* NB: for machine none cpu_type could STILL be NULL here! */ 3755 3756 qemu_resolve_machine_memdev(); 3757 parse_numa_opts(current_machine); 3758 3759 if (vmstate_dump_file) { 3760 /* dump and exit */ 3761 module_load_qom_all(); 3762 dump_vmstate_json_to_file(vmstate_dump_file); 3763 exit(0); 3764 } 3765 3766 if (!preconfig_requested) { 3767 qmp_x_exit_preconfig(&error_fatal); 3768 } 3769 qemu_init_displays(); 3770 accel_setup_post(current_machine); 3771 os_setup_post(); 3772 resume_mux_open(); 3773 } 3774