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