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