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