]> git.proxmox.com Git - mirror_qemu.git/blame - vl.c
replay: initialization and deinitialization
[mirror_qemu.git] / 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 */
0824d6fc 24#include <unistd.h>
0824d6fc
FB
25#include <fcntl.h>
26#include <signal.h>
27#include <time.h>
0824d6fc 28#include <errno.h>
67b915a5
FB
29#include <sys/time.h>
30
d40cdb10
BS
31#include "config-host.h"
32
452dfbef 33#ifdef CONFIG_SECCOMP
9c17d615 34#include "sysemu/seccomp.h"
452dfbef
EO
35#endif
36
8a16d273
TS
37#if defined(CONFIG_VDE)
38#include <libvdeplug.h>
39#endif
40
73332e5c 41#ifdef CONFIG_SDL
59a36a2f 42#if defined(__APPLE__) || defined(main)
6693665a 43#include <SDL.h>
880fec5d 44int qemu_main(int argc, char **argv, char **envp);
45int main(int argc, char **argv)
46{
59a36a2f 47 return qemu_main(argc, argv, NULL);
880fec5d 48}
49#undef main
50#define main qemu_main
96bcd4f8 51#endif
73332e5c 52#endif /* CONFIG_SDL */
0824d6fc 53
5b0753e0
FB
54#ifdef CONFIG_COCOA
55#undef main
56#define main qemu_main
57#endif /* CONFIG_COCOA */
58
69e5bb68
AL
59#include <glib.h>
60
d49b6836 61#include "qemu/error-report.h"
c8897e8e 62#include "qemu/sockets.h"
511d2b14
BS
63#include "hw/hw.h"
64#include "hw/boards.h"
a1a9cb0c 65#include "sysemu/accel.h"
511d2b14 66#include "hw/usb.h"
0d09e41a
PB
67#include "hw/i386/pc.h"
68#include "hw/isa/isa.h"
511d2b14 69#include "hw/bt.h"
0d09e41a 70#include "sysemu/watchdog.h"
60d8f328 71#include "hw/smbios/smbios.h"
0d09e41a 72#include "hw/xen/xen.h"
bd3c948d 73#include "hw/qdev.h"
45a50b16 74#include "hw/loader.h"
b4a42f81 75#include "monitor/qdev.h"
dccfcd0e 76#include "sysemu/bt.h"
1422e32d 77#include "net/net.h"
68ac40d2 78#include "net/slirp.h"
83c9089e 79#include "monitor/monitor.h"
28ecbaee 80#include "ui/console.h"
9c17d615 81#include "sysemu/sysemu.h"
e35704ba 82#include "sysemu/numa.h"
022c62cb 83#include "exec/gdbstub.h"
1de7afc9 84#include "qemu/timer.h"
dccfcd0e 85#include "sysemu/char.h"
b33276a7 86#include "qemu/bitmap.h"
9c17d615 87#include "sysemu/blockdev.h"
0d09e41a 88#include "hw/block/block.h"
caf71f86 89#include "migration/block.h"
bdee56f5 90#include "sysemu/tpm.h"
9c17d615 91#include "sysemu/dma.h"
511d2b14 92#include "audio/audio.h"
caf71f86 93#include "migration/migration.h"
9c17d615 94#include "sysemu/kvm.h"
7b1b5d19 95#include "qapi/qmp/qjson.h"
1de7afc9
PB
96#include "qemu/option.h"
97#include "qemu/config-file.h"
59a5264b 98#include "qemu-options.h"
1fa9a5e4 99#include "qmp-commands.h"
1de7afc9 100#include "qemu/main-loop.h"
758e8e38 101#ifdef CONFIG_VIRTFS
74db920c
GS
102#include "fsdev/qemu-fsdev.h"
103#endif
9c17d615 104#include "sysemu/qtest.h"
511d2b14 105
76cad711 106#include "disas/disas.h"
fc01f7e7 107
511d2b14 108
d918f23e 109#include "slirp/libslirp.h"
511d2b14 110
94b0b5ff 111#include "trace.h"
e4858974 112#include "trace/control.h"
1de7afc9 113#include "qemu/queue.h"
9c17d615
PB
114#include "sysemu/cpus.h"
115#include "sysemu/arch_init.h"
1de7afc9 116#include "qemu/osdep.h"
72cf2d4f 117
29b0040b 118#include "ui/qemu-spice.h"
68d98d3e 119#include "qapi/string-input-visitor.h"
c4090f8e 120#include "qapi/opts-visitor.h"
84321831
WX
121#include "qom/object_interfaces.h"
122#include "qapi-event.h"
cfe67cef 123#include "exec/semihost.h"
ddbb0d09 124#include "crypto/init.h"
b60c48a7 125#include "sysemu/replay.h"
29b0040b 126
98b19252 127#define MAX_VIRTIO_CONSOLES 1
3ef669e1 128#define MAX_SCLP_CONSOLES 1
98b19252 129
4524051c
GH
130static const char *data_dir[16];
131static int data_dir_idx;
1192dad8 132const char *bios_name = NULL;
cb5a7aa8 133enum vga_retrace_method vga_retrace_method = VGA_RETRACE_DUMB;
993fbfdb 134DisplayType display_type = DT_DEFAULT;
0b71a5d5 135int request_opengl = -1;
da076ffe 136int display_opengl;
4fdcac0e 137static int display_remote;
3d11d0eb 138const char* keyboard_layout = NULL;
c227f099 139ram_addr_t ram_size;
c902760f 140const char *mem_path = NULL;
c902760f 141int mem_prealloc = 0; /* force preallocation of physical target memory */
28d16f38 142bool enable_mlock = false;
c4b1fcc0 143int nb_nics;
7c9d8e07 144NICInfo nd_table[MAX_NICS];
d399f677 145int autostart;
f6503059
AZ
146static int rtc_utc = 1;
147static int rtc_date_offset = -1; /* -1 means no change */
884f17c2 148QEMUClockType rtc_clock;
64465297 149int vga_interface_type = VGA_NONE;
dbed7e40
BS
150static int full_screen = 0;
151static int no_frame = 0;
667accab 152int no_quit = 0;
881249c7
JK
153#ifdef CONFIG_GTK
154static bool grab_on_hover;
155#endif
8d11df9e 156CharDriverState *serial_hds[MAX_SERIAL_PORTS];
6508fe59 157CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
9ede2fde 158CharDriverState *virtcon_hds[MAX_VIRTIO_CONSOLES];
3ef669e1 159CharDriverState *sclp_hds[MAX_SCLP_CONSOLES];
a09db21f 160int win2k_install_hack = 0;
1b530a6d 161int singlestep = 0;
6a00d601 162int smp_cpus = 1;
6be68d7e 163int max_cpus = 0;
dc6b1c09
AP
164int smp_cores = 1;
165int smp_threads = 1;
6515b203 166int acpi_enabled = 1;
16b29ae1 167int no_hpet = 0;
52ca8d6a 168int fd_bootchk = 1;
4fdcac0e 169static int no_reboot;
b2f76161 170int no_shutdown = 0;
9467cd46 171int cursor_hide = 1;
a171fe39 172int graphic_rotate = 0;
09aaa160 173const char *watchdog;
2e55e842 174QEMUOptionRom option_rom[MAX_OPTION_ROMS];
9ae02555 175int nb_option_roms;
2b8f2d41 176int old_param = 0;
c35734b2 177const char *qemu_name;
3780e197 178int alt_grab = 0;
0ca9f8a4 179int ctrl_grab = 0;
66508601
BS
180unsigned int nb_prom_envs = 0;
181const char *prom_envs[MAX_PROM_ENVS];
95387491 182int boot_menu;
bc74112f 183bool boot_strict;
3d3b8303 184uint8_t *boot_splash_filedata;
d09acb9b 185size_t boot_splash_filedata_size;
3d3b8303 186uint8_t qemu_extra_params_fw[2];
0824d6fc 187
a8bfac37 188int icount_align_option;
1ca4d09a 189
caad057b
EH
190/* The bytes in qemu_uuid[] are in the order specified by RFC4122, _not_ in the
191 * little-endian "wire format" described in the SMBIOS 2.6 specification.
192 */
8fcb1b90 193uint8_t qemu_uuid[16];
fc3b3295 194bool qemu_uuid_set;
8fcb1b90 195
fd42deeb
GH
196static NotifierList exit_notifiers =
197 NOTIFIER_LIST_INITIALIZER(exit_notifiers);
198
4cab946a
GN
199static NotifierList machine_init_done_notifiers =
200 NOTIFIER_LIST_INITIALIZER(machine_init_done_notifiers);
201
d5286af5 202bool xen_allowed;
d745bef8
BS
203uint32_t xen_domid;
204enum xen_mode xen_mode = XEN_EMULATE;
205
d44229c5 206static int has_defaults = 1;
998bbd74 207static int default_serial = 1;
6a5e8b0e 208static int default_parallel = 1;
986c5f78 209static int default_virtcon = 1;
3ef669e1 210static int default_sclp = 1;
abdeed06 211static int default_monitor = 1;
ac33f8fa
GH
212static int default_floppy = 1;
213static int default_cdrom = 1;
214static int default_sdcard = 1;
7f1b17f2 215static int default_vga = 1;
998bbd74
GH
216
217static struct {
218 const char *driver;
219 int *flag;
220} default_list[] = {
6a5e8b0e
GH
221 { .driver = "isa-serial", .flag = &default_serial },
222 { .driver = "isa-parallel", .flag = &default_parallel },
d8bcbabf 223 { .driver = "isa-fdc", .flag = &default_floppy },
af6bf132
MA
224 { .driver = "ide-cd", .flag = &default_cdrom },
225 { .driver = "ide-hd", .flag = &default_cdrom },
d8bcbabf 226 { .driver = "ide-drive", .flag = &default_cdrom },
af6bf132 227 { .driver = "scsi-cd", .flag = &default_cdrom },
392ecf54
AS
228 { .driver = "virtio-serial-pci", .flag = &default_virtcon },
229 { .driver = "virtio-serial-s390", .flag = &default_virtcon },
230 { .driver = "virtio-serial", .flag = &default_virtcon },
7f1b17f2
PB
231 { .driver = "VGA", .flag = &default_vga },
232 { .driver = "isa-vga", .flag = &default_vga },
233 { .driver = "cirrus-vga", .flag = &default_vga },
234 { .driver = "isa-cirrus-vga", .flag = &default_vga },
235 { .driver = "vmware-svga", .flag = &default_vga },
236 { .driver = "qxl-vga", .flag = &default_vga },
a94f0c5c 237 { .driver = "virtio-vga", .flag = &default_vga },
998bbd74
GH
238};
239
4d454574
PB
240static QemuOptsList qemu_rtc_opts = {
241 .name = "rtc",
242 .head = QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts.head),
243 .desc = {
244 {
245 .name = "base",
246 .type = QEMU_OPT_STRING,
247 },{
248 .name = "clock",
249 .type = QEMU_OPT_STRING,
250 },{
251 .name = "driftfix",
252 .type = QEMU_OPT_STRING,
253 },
254 { /* end of list */ }
255 },
256};
257
258static QemuOptsList qemu_sandbox_opts = {
259 .name = "sandbox",
260 .implied_opt_name = "enable",
261 .head = QTAILQ_HEAD_INITIALIZER(qemu_sandbox_opts.head),
262 .desc = {
263 {
264 .name = "enable",
265 .type = QEMU_OPT_BOOL,
266 },
267 { /* end of list */ }
268 },
269};
270
271static QemuOptsList qemu_trace_opts = {
272 .name = "trace",
273 .implied_opt_name = "trace",
274 .head = QTAILQ_HEAD_INITIALIZER(qemu_trace_opts.head),
275 .desc = {
276 {
277 .name = "events",
278 .type = QEMU_OPT_STRING,
279 },{
280 .name = "file",
281 .type = QEMU_OPT_STRING,
282 },
283 { /* end of list */ }
284 },
285};
286
287static QemuOptsList qemu_option_rom_opts = {
288 .name = "option-rom",
289 .implied_opt_name = "romfile",
290 .head = QTAILQ_HEAD_INITIALIZER(qemu_option_rom_opts.head),
291 .desc = {
292 {
293 .name = "bootindex",
294 .type = QEMU_OPT_NUMBER,
295 }, {
296 .name = "romfile",
297 .type = QEMU_OPT_STRING,
298 },
299 { /* end of list */ }
300 },
301};
302
303static QemuOptsList qemu_machine_opts = {
304 .name = "machine",
305 .implied_opt_name = "type",
306 .merge_lists = true,
307 .head = QTAILQ_HEAD_INITIALIZER(qemu_machine_opts.head),
308 .desc = {
49d2e648
MA
309 /*
310 * no elements => accept any
311 * sanity checking will happen later
312 * when setting machine properties
313 */
314 { }
4d454574
PB
315 },
316};
317
318static QemuOptsList qemu_boot_opts = {
319 .name = "boot-opts",
6ef4716c
MA
320 .implied_opt_name = "order",
321 .merge_lists = true,
4d454574
PB
322 .head = QTAILQ_HEAD_INITIALIZER(qemu_boot_opts.head),
323 .desc = {
4d454574
PB
324 {
325 .name = "order",
326 .type = QEMU_OPT_STRING,
327 }, {
328 .name = "once",
329 .type = QEMU_OPT_STRING,
330 }, {
331 .name = "menu",
6ef4716c 332 .type = QEMU_OPT_BOOL,
4d454574
PB
333 }, {
334 .name = "splash",
335 .type = QEMU_OPT_STRING,
336 }, {
337 .name = "splash-time",
338 .type = QEMU_OPT_STRING,
339 }, {
340 .name = "reboot-timeout",
341 .type = QEMU_OPT_STRING,
c8a6ae8b
AK
342 }, {
343 .name = "strict",
e5187b56 344 .type = QEMU_OPT_BOOL,
4d454574
PB
345 },
346 { /*End of list */ }
347 },
348};
349
350static QemuOptsList qemu_add_fd_opts = {
351 .name = "add-fd",
352 .head = QTAILQ_HEAD_INITIALIZER(qemu_add_fd_opts.head),
353 .desc = {
354 {
355 .name = "fd",
356 .type = QEMU_OPT_NUMBER,
357 .help = "file descriptor of which a duplicate is added to fd set",
358 },{
359 .name = "set",
360 .type = QEMU_OPT_NUMBER,
361 .help = "ID of the fd set to add fd to",
362 },{
363 .name = "opaque",
364 .type = QEMU_OPT_STRING,
365 .help = "free-form string used to describe fd",
366 },
367 { /* end of list */ }
368 },
369};
370
371static QemuOptsList qemu_object_opts = {
372 .name = "object",
373 .implied_opt_name = "qom-type",
374 .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head),
375 .desc = {
376 { }
377 },
378};
379
d1a0cf73
SB
380static QemuOptsList qemu_tpmdev_opts = {
381 .name = "tpmdev",
382 .implied_opt_name = "type",
383 .head = QTAILQ_HEAD_INITIALIZER(qemu_tpmdev_opts.head),
384 .desc = {
bb716238 385 /* options are defined in the TPM backends */
d1a0cf73
SB
386 { /* end of list */ }
387 },
388};
389
888a6bc6
SM
390static QemuOptsList qemu_realtime_opts = {
391 .name = "realtime",
392 .head = QTAILQ_HEAD_INITIALIZER(qemu_realtime_opts.head),
393 .desc = {
394 {
395 .name = "mlock",
396 .type = QEMU_OPT_BOOL,
397 },
398 { /* end of list */ }
399 },
400};
401
5e2ac519
SA
402static QemuOptsList qemu_msg_opts = {
403 .name = "msg",
404 .head = QTAILQ_HEAD_INITIALIZER(qemu_msg_opts.head),
405 .desc = {
406 {
407 .name = "timestamp",
408 .type = QEMU_OPT_BOOL,
409 },
410 { /* end of list */ }
411 },
412};
413
5d12f961
DDAG
414static QemuOptsList qemu_name_opts = {
415 .name = "name",
416 .implied_opt_name = "guest",
417 .merge_lists = true,
418 .head = QTAILQ_HEAD_INITIALIZER(qemu_name_opts.head),
419 .desc = {
420 {
421 .name = "guest",
422 .type = QEMU_OPT_STRING,
423 .help = "Sets the name of the guest.\n"
424 "This name will be displayed in the SDL window caption.\n"
425 "The name will also be used for the VNC server",
426 }, {
427 .name = "process",
428 .type = QEMU_OPT_STRING,
429 .help = "Sets the name of the QEMU process, as shown in top etc",
8f480de0
DDAG
430 }, {
431 .name = "debug-threads",
432 .type = QEMU_OPT_BOOL,
433 .help = "When enabled, name the individual threads; defaults off.\n"
434 "NOTE: The thread names are for debugging and not a\n"
435 "stable API.",
5d12f961
DDAG
436 },
437 { /* End of list */ }
438 },
439};
440
6e1d3c1c
IM
441static QemuOptsList qemu_mem_opts = {
442 .name = "memory",
443 .implied_opt_name = "size",
444 .head = QTAILQ_HEAD_INITIALIZER(qemu_mem_opts.head),
445 .merge_lists = true,
446 .desc = {
447 {
448 .name = "size",
449 .type = QEMU_OPT_SIZE,
450 },
c270fb9e
IM
451 {
452 .name = "slots",
453 .type = QEMU_OPT_NUMBER,
454 },
455 {
456 .name = "maxmem",
457 .type = QEMU_OPT_SIZE,
458 },
6e1d3c1c
IM
459 { /* end of list */ }
460 },
461};
462
1ad9580b
ST
463static QemuOptsList qemu_icount_opts = {
464 .name = "icount",
465 .implied_opt_name = "shift",
466 .merge_lists = true,
467 .head = QTAILQ_HEAD_INITIALIZER(qemu_icount_opts.head),
468 .desc = {
469 {
470 .name = "shift",
471 .type = QEMU_OPT_STRING,
a8bfac37
ST
472 }, {
473 .name = "align",
474 .type = QEMU_OPT_BOOL,
f1f4b57e
VC
475 }, {
476 .name = "sleep",
477 .type = QEMU_OPT_BOOL,
1ad9580b
ST
478 },
479 { /* end of list */ }
480 },
481};
482
a38bb079
LI
483static QemuOptsList qemu_semihosting_config_opts = {
484 .name = "semihosting-config",
485 .implied_opt_name = "enable",
486 .head = QTAILQ_HEAD_INITIALIZER(qemu_semihosting_config_opts.head),
487 .desc = {
488 {
489 .name = "enable",
490 .type = QEMU_OPT_BOOL,
491 }, {
492 .name = "target",
493 .type = QEMU_OPT_STRING,
a59d31a1
LA
494 }, {
495 .name = "arg",
496 .type = QEMU_OPT_STRING,
a38bb079
LI
497 },
498 { /* end of list */ }
499 },
500};
501
81b2b810
GS
502static QemuOptsList qemu_fw_cfg_opts = {
503 .name = "fw_cfg",
504 .implied_opt_name = "name",
505 .head = QTAILQ_HEAD_INITIALIZER(qemu_fw_cfg_opts.head),
506 .desc = {
507 {
508 .name = "name",
509 .type = QEMU_OPT_STRING,
510 .help = "Sets the fw_cfg name of the blob to be inserted",
511 }, {
512 .name = "file",
513 .type = QEMU_OPT_STRING,
514 .help = "Sets the name of the file from which\n"
515 "the fw_cfg blob will be loaded",
6407d76e
GS
516 }, {
517 .name = "string",
518 .type = QEMU_OPT_STRING,
519 .help = "Sets content of the blob to be inserted from a string",
81b2b810
GS
520 },
521 { /* end of list */ }
522 },
523};
524
7f9d6e54
MA
525/**
526 * Get machine options
527 *
528 * Returns: machine options (never null).
529 */
530QemuOpts *qemu_get_machine_opts(void)
531{
e96e5ae8 532 return qemu_find_opts_singleton("machine");
7f9d6e54
MA
533}
534
31459f46
RS
535const char *qemu_get_vm_name(void)
536{
537 return qemu_name;
538}
539
3d3b8303
WX
540static void res_free(void)
541{
012aef07
MA
542 g_free(boot_splash_filedata);
543 boot_splash_filedata = NULL;
3d3b8303
WX
544}
545
28d0de7a 546static int default_driver_check(void *opaque, QemuOpts *opts, Error **errp)
998bbd74
GH
547{
548 const char *driver = qemu_opt_get(opts, "driver");
549 int i;
550
551 if (!driver)
552 return 0;
553 for (i = 0; i < ARRAY_SIZE(default_list); i++) {
554 if (strcmp(default_list[i].driver, driver) != 0)
555 continue;
556 *(default_list[i].flag) = 0;
557 }
558 return 0;
559}
560
f5bbfba1
LC
561/***********************************************************/
562/* QEMU state */
563
0461d5a6 564static RunState current_run_state = RUN_STATE_PRELAUNCH;
f5bbfba1 565
74892d24
PB
566/* We use RUN_STATE_MAX but any invalid value will do */
567static RunState vmstop_requested = RUN_STATE_MAX;
568static QemuMutex vmstop_lock;
569
5db9d4d1
LC
570typedef struct {
571 RunState from;
572 RunState to;
573} RunStateTransition;
574
575static const RunStateTransition runstate_transitions_def[] = {
576 /* from -> to */
0461d5a6 577 { RUN_STATE_DEBUG, RUN_STATE_RUNNING },
eca01d3a 578 { RUN_STATE_DEBUG, RUN_STATE_FINISH_MIGRATE },
5db9d4d1 579
ca3fc39e
JQ
580 { RUN_STATE_INMIGRATE, RUN_STATE_INTERNAL_ERROR },
581 { RUN_STATE_INMIGRATE, RUN_STATE_IO_ERROR },
29ed72f1 582 { RUN_STATE_INMIGRATE, RUN_STATE_PAUSED },
ca3fc39e
JQ
583 { RUN_STATE_INMIGRATE, RUN_STATE_RUNNING },
584 { RUN_STATE_INMIGRATE, RUN_STATE_SHUTDOWN },
585 { RUN_STATE_INMIGRATE, RUN_STATE_SUSPENDED },
586 { RUN_STATE_INMIGRATE, RUN_STATE_WATCHDOG },
587 { RUN_STATE_INMIGRATE, RUN_STATE_GUEST_PANICKED },
2a6e6e59 588 { RUN_STATE_INMIGRATE, RUN_STATE_FINISH_MIGRATE },
5db9d4d1 589
0461d5a6 590 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_PAUSED },
8a9236f1 591 { RUN_STATE_INTERNAL_ERROR, RUN_STATE_FINISH_MIGRATE },
5db9d4d1 592
0461d5a6 593 { RUN_STATE_IO_ERROR, RUN_STATE_RUNNING },
8a9236f1 594 { RUN_STATE_IO_ERROR, RUN_STATE_FINISH_MIGRATE },
5db9d4d1 595
0461d5a6 596 { RUN_STATE_PAUSED, RUN_STATE_RUNNING },
8a9236f1 597 { RUN_STATE_PAUSED, RUN_STATE_FINISH_MIGRATE },
5db9d4d1 598
0461d5a6 599 { RUN_STATE_POSTMIGRATE, RUN_STATE_RUNNING },
8a9236f1 600 { RUN_STATE_POSTMIGRATE, RUN_STATE_FINISH_MIGRATE },
5db9d4d1 601
0461d5a6 602 { RUN_STATE_PRELAUNCH, RUN_STATE_RUNNING },
8a9236f1 603 { RUN_STATE_PRELAUNCH, RUN_STATE_FINISH_MIGRATE },
0461d5a6 604 { RUN_STATE_PRELAUNCH, RUN_STATE_INMIGRATE },
5db9d4d1 605
0461d5a6
LC
606 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_RUNNING },
607 { RUN_STATE_FINISH_MIGRATE, RUN_STATE_POSTMIGRATE },
5db9d4d1 608
0461d5a6 609 { RUN_STATE_RESTORE_VM, RUN_STATE_RUNNING },
5db9d4d1 610
0461d5a6
LC
611 { RUN_STATE_RUNNING, RUN_STATE_DEBUG },
612 { RUN_STATE_RUNNING, RUN_STATE_INTERNAL_ERROR },
613 { RUN_STATE_RUNNING, RUN_STATE_IO_ERROR },
614 { RUN_STATE_RUNNING, RUN_STATE_PAUSED },
615 { RUN_STATE_RUNNING, RUN_STATE_FINISH_MIGRATE },
616 { RUN_STATE_RUNNING, RUN_STATE_RESTORE_VM },
617 { RUN_STATE_RUNNING, RUN_STATE_SAVE_VM },
618 { RUN_STATE_RUNNING, RUN_STATE_SHUTDOWN },
619 { RUN_STATE_RUNNING, RUN_STATE_WATCHDOG },
ede085b3 620 { RUN_STATE_RUNNING, RUN_STATE_GUEST_PANICKED },
5db9d4d1 621
0461d5a6 622 { RUN_STATE_SAVE_VM, RUN_STATE_RUNNING },
5db9d4d1 623
0461d5a6 624 { RUN_STATE_SHUTDOWN, RUN_STATE_PAUSED },
8a9236f1 625 { RUN_STATE_SHUTDOWN, RUN_STATE_FINISH_MIGRATE },
5db9d4d1 626
ad02b96a
LC
627 { RUN_STATE_DEBUG, RUN_STATE_SUSPENDED },
628 { RUN_STATE_RUNNING, RUN_STATE_SUSPENDED },
629 { RUN_STATE_SUSPENDED, RUN_STATE_RUNNING },
630 { RUN_STATE_SUSPENDED, RUN_STATE_FINISH_MIGRATE },
631
0461d5a6 632 { RUN_STATE_WATCHDOG, RUN_STATE_RUNNING },
8a9236f1 633 { RUN_STATE_WATCHDOG, RUN_STATE_FINISH_MIGRATE },
5db9d4d1 634
df390768 635 { RUN_STATE_GUEST_PANICKED, RUN_STATE_RUNNING },
fd2a2e1c 636 { RUN_STATE_GUEST_PANICKED, RUN_STATE_FINISH_MIGRATE },
ede085b3 637
0461d5a6 638 { RUN_STATE_MAX, RUN_STATE_MAX },
5db9d4d1
LC
639};
640
0461d5a6
LC
641static bool runstate_valid_transitions[RUN_STATE_MAX][RUN_STATE_MAX];
642
f5bbfba1
LC
643bool runstate_check(RunState state)
644{
645 return current_run_state == state;
646}
647
5e0f1940
JQ
648bool runstate_store(char *str, size_t size)
649{
650 const char *state = RunState_lookup[current_run_state];
651 size_t len = strlen(state) + 1;
652
653 if (len > size) {
654 return false;
655 }
656 memcpy(str, state, len);
657 return true;
658}
659
4fdcac0e 660static void runstate_init(void)
5db9d4d1
LC
661{
662 const RunStateTransition *p;
663
664 memset(&runstate_valid_transitions, 0, sizeof(runstate_valid_transitions));
0461d5a6 665 for (p = &runstate_transitions_def[0]; p->from != RUN_STATE_MAX; p++) {
5db9d4d1
LC
666 runstate_valid_transitions[p->from][p->to] = true;
667 }
74892d24
PB
668
669 qemu_mutex_init(&vmstop_lock);
5db9d4d1
LC
670}
671
672/* This function will abort() on invalid state transitions */
f5bbfba1
LC
673void runstate_set(RunState new_state)
674{
207c5cd2
LC
675 assert(new_state < RUN_STATE_MAX);
676
677 if (!runstate_valid_transitions[current_run_state][new_state]) {
f61eddcb
EH
678 error_report("invalid runstate transition: '%s' -> '%s'",
679 RunState_lookup[current_run_state],
680 RunState_lookup[new_state]);
5db9d4d1
LC
681 abort();
682 }
7e866003 683 trace_runstate_set(new_state);
f5bbfba1
LC
684 current_run_state = new_state;
685}
686
1fa9a5e4 687int runstate_is_running(void)
9e37b9dc 688{
1fa9a5e4 689 return runstate_check(RUN_STATE_RUNNING);
9e37b9dc
LC
690}
691
ede085b3
HT
692bool runstate_needs_reset(void)
693{
694 return runstate_check(RUN_STATE_INTERNAL_ERROR) ||
df390768 695 runstate_check(RUN_STATE_SHUTDOWN);
ede085b3
HT
696}
697
1fa9a5e4 698StatusInfo *qmp_query_status(Error **errp)
1354869c 699{
1fa9a5e4
LC
700 StatusInfo *info = g_malloc0(sizeof(*info));
701
702 info->running = runstate_is_running();
703 info->singlestep = singlestep;
704 info->status = current_run_state;
705
706 return info;
1354869c
LC
707}
708
74892d24
PB
709static bool qemu_vmstop_requested(RunState *r)
710{
711 qemu_mutex_lock(&vmstop_lock);
712 *r = vmstop_requested;
713 vmstop_requested = RUN_STATE_MAX;
714 qemu_mutex_unlock(&vmstop_lock);
715 return *r < RUN_STATE_MAX;
716}
717
718void qemu_system_vmstop_request_prepare(void)
719{
720 qemu_mutex_lock(&vmstop_lock);
721}
722
723void qemu_system_vmstop_request(RunState state)
724{
725 vmstop_requested = state;
726 qemu_mutex_unlock(&vmstop_lock);
727 qemu_notify_event();
728}
729
730void vm_start(void)
731{
732 RunState requested;
733
734 qemu_vmstop_requested(&requested);
735 if (runstate_is_running() && requested == RUN_STATE_MAX) {
736 return;
737 }
738
739 /* Ensure that a STOP/RESUME pair of events is emitted if a
740 * vmstop request was pending. The BLOCK_IO_ERROR event, for
741 * example, according to documentation is always followed by
742 * the STOP event.
743 */
744 if (runstate_is_running()) {
591c48fb 745 qapi_event_send_stop(&error_abort);
74892d24
PB
746 } else {
747 cpu_enable_ticks();
748 runstate_set(RUN_STATE_RUNNING);
749 vm_state_notify(1, RUN_STATE_RUNNING);
750 resume_all_vcpus();
751 }
752
591c48fb 753 qapi_event_send_resume(&error_abort);
74892d24
PB
754}
755
756
8f0056b7
PB
757/***********************************************************/
758/* real time host monotonic timer */
09b26c5e 759
2ed1ebcf
PD
760static time_t qemu_time(void)
761{
762 return qemu_clock_get_ms(QEMU_CLOCK_HOST) / 1000;
763}
764
f6503059
AZ
765/***********************************************************/
766/* host time/date access */
767void qemu_get_timedate(struct tm *tm, int offset)
768{
2ed1ebcf 769 time_t ti = qemu_time();
f6503059 770
f6503059
AZ
771 ti += offset;
772 if (rtc_date_offset == -1) {
773 if (rtc_utc)
eb7ff6fb 774 gmtime_r(&ti, tm);
f6503059 775 else
eb7ff6fb 776 localtime_r(&ti, tm);
f6503059
AZ
777 } else {
778 ti -= rtc_date_offset;
eb7ff6fb 779 gmtime_r(&ti, tm);
f6503059 780 }
f6503059
AZ
781}
782
783int qemu_timedate_diff(struct tm *tm)
784{
785 time_t seconds;
786
787 if (rtc_date_offset == -1)
788 if (rtc_utc)
789 seconds = mktimegm(tm);
f54c556c
GN
790 else {
791 struct tm tmp = *tm;
792 tmp.tm_isdst = -1; /* use timezone to figure it out */
793 seconds = mktime(&tmp);
794 }
f6503059
AZ
795 else
796 seconds = mktimegm(tm) + rtc_date_offset;
797
2ed1ebcf 798 return seconds - qemu_time();
f6503059
AZ
799}
800
1ed2fc1f
JK
801static void configure_rtc_date_offset(const char *startdate, int legacy)
802{
803 time_t rtc_start_date;
804 struct tm tm;
805
806 if (!strcmp(startdate, "now") && legacy) {
807 rtc_date_offset = -1;
808 } else {
809 if (sscanf(startdate, "%d-%d-%dT%d:%d:%d",
810 &tm.tm_year,
811 &tm.tm_mon,
812 &tm.tm_mday,
813 &tm.tm_hour,
814 &tm.tm_min,
815 &tm.tm_sec) == 6) {
816 /* OK */
817 } else if (sscanf(startdate, "%d-%d-%d",
818 &tm.tm_year,
819 &tm.tm_mon,
820 &tm.tm_mday) == 3) {
821 tm.tm_hour = 0;
822 tm.tm_min = 0;
823 tm.tm_sec = 0;
824 } else {
825 goto date_fail;
826 }
827 tm.tm_year -= 1900;
828 tm.tm_mon--;
829 rtc_start_date = mktimegm(&tm);
830 if (rtc_start_date == -1) {
831 date_fail:
f61eddcb
EH
832 error_report("invalid date format");
833 error_printf("valid formats: "
834 "'2006-06-17T16:01:21' or '2006-06-17'\n");
1ed2fc1f
JK
835 exit(1);
836 }
2ed1ebcf 837 rtc_date_offset = qemu_time() - rtc_start_date;
1ed2fc1f
JK
838 }
839}
840
841static void configure_rtc(QemuOpts *opts)
842{
843 const char *value;
844
845 value = qemu_opt_get(opts, "base");
846 if (value) {
847 if (!strcmp(value, "utc")) {
848 rtc_utc = 1;
849 } else if (!strcmp(value, "localtime")) {
850 rtc_utc = 0;
851 } else {
852 configure_rtc_date_offset(value, 0);
853 }
854 }
6875204c
JK
855 value = qemu_opt_get(opts, "clock");
856 if (value) {
857 if (!strcmp(value, "host")) {
884f17c2 858 rtc_clock = QEMU_CLOCK_HOST;
78808141 859 } else if (!strcmp(value, "rt")) {
884f17c2 860 rtc_clock = QEMU_CLOCK_REALTIME;
6875204c 861 } else if (!strcmp(value, "vm")) {
884f17c2 862 rtc_clock = QEMU_CLOCK_VIRTUAL;
6875204c 863 } else {
f61eddcb 864 error_report("invalid option value '%s'", value);
6875204c
JK
865 exit(1);
866 }
867 }
1ed2fc1f
JK
868 value = qemu_opt_get(opts, "driftfix");
869 if (value) {
7e4c0336 870 if (!strcmp(value, "slew")) {
433acf0d
JK
871 static GlobalProperty slew_lost_ticks[] = {
872 {
873 .driver = "mc146818rtc",
874 .property = "lost_tick_policy",
875 .value = "slew",
876 },
877 { /* end of list */ }
878 };
879
880 qdev_prop_register_global_list(slew_lost_ticks);
7e4c0336 881 } else if (!strcmp(value, "none")) {
433acf0d 882 /* discard is default */
1ed2fc1f 883 } else {
f61eddcb 884 error_report("invalid option value '%s'", value);
1ed2fc1f
JK
885 exit(1);
886 }
887 }
1ed2fc1f
JK
888}
889
1ae26a18
AZ
890/***********************************************************/
891/* Bluetooth support */
892static int nb_hcis;
893static int cur_hci;
894static struct HCIInfo *hci_table[MAX_NICS];
dc72ac14 895
1ae26a18
AZ
896struct HCIInfo *qemu_next_hci(void)
897{
898 if (cur_hci == nb_hcis)
899 return &null_hci;
900
901 return hci_table[cur_hci++];
902}
903
dc72ac14
AZ
904static int bt_hci_parse(const char *str)
905{
906 struct HCIInfo *hci;
c227f099 907 bdaddr_t bdaddr;
dc72ac14
AZ
908
909 if (nb_hcis >= MAX_NICS) {
3e515373 910 error_report("too many bluetooth HCIs (max %i)", MAX_NICS);
dc72ac14
AZ
911 return -1;
912 }
913
914 hci = hci_init(str);
915 if (!hci)
916 return -1;
917
918 bdaddr.b[0] = 0x52;
919 bdaddr.b[1] = 0x54;
920 bdaddr.b[2] = 0x00;
921 bdaddr.b[3] = 0x12;
922 bdaddr.b[4] = 0x34;
923 bdaddr.b[5] = 0x56 + nb_hcis;
924 hci->bdaddr_set(hci, bdaddr.b);
925
926 hci_table[nb_hcis++] = hci;
927
928 return 0;
929}
930
931static void bt_vhci_add(int vlan_id)
932{
933 struct bt_scatternet_s *vlan = qemu_find_bt_vlan(vlan_id);
934
935 if (!vlan->slave)
f61eddcb
EH
936 error_report("warning: adding a VHCI to an empty scatternet %i",
937 vlan_id);
dc72ac14
AZ
938
939 bt_vhci_init(bt_new_hci(vlan));
940}
941
942static struct bt_device_s *bt_device_add(const char *opt)
943{
944 struct bt_scatternet_s *vlan;
945 int vlan_id = 0;
946 char *endp = strstr(opt, ",vlan=");
947 int len = (endp ? endp - opt : strlen(opt)) + 1;
948 char devname[10];
949
950 pstrcpy(devname, MIN(sizeof(devname), len), opt);
951
952 if (endp) {
953 vlan_id = strtol(endp + 6, &endp, 0);
954 if (*endp) {
f61eddcb 955 error_report("unrecognised bluetooth vlan Id");
dc72ac14
AZ
956 return 0;
957 }
958 }
959
960 vlan = qemu_find_bt_vlan(vlan_id);
961
962 if (!vlan->slave)
f61eddcb
EH
963 error_report("warning: adding a slave device to an empty scatternet %i",
964 vlan_id);
dc72ac14
AZ
965
966 if (!strcmp(devname, "keyboard"))
967 return bt_keyboard_init(vlan);
968
4cd70f34 969 error_report("unsupported bluetooth device '%s'", devname);
dc72ac14
AZ
970 return 0;
971}
972
973static int bt_parse(const char *opt)
974{
975 const char *endp, *p;
976 int vlan;
977
978 if (strstart(opt, "hci", &endp)) {
979 if (!*endp || *endp == ',') {
980 if (*endp)
981 if (!strstart(endp, ",vlan=", 0))
982 opt = endp + 1;
983
984 return bt_hci_parse(opt);
985 }
986 } else if (strstart(opt, "vhci", &endp)) {
987 if (!*endp || *endp == ',') {
988 if (*endp) {
989 if (strstart(endp, ",vlan=", &p)) {
990 vlan = strtol(p, (char **) &endp, 0);
991 if (*endp) {
f61eddcb 992 error_report("bad scatternet '%s'", p);
dc72ac14
AZ
993 return 1;
994 }
995 } else {
f61eddcb 996 error_report("bad parameter '%s'", endp + 1);
dc72ac14
AZ
997 return 1;
998 }
999 } else
1000 vlan = 0;
1001
1002 bt_vhci_add(vlan);
1003 return 0;
1004 }
1005 } else if (strstart(opt, "device:", &endp))
1006 return !bt_device_add(endp);
1007
f61eddcb 1008 error_report("bad bluetooth parameter '%s'", opt);
dc72ac14
AZ
1009 return 1;
1010}
1011
28d0de7a 1012static int parse_sandbox(void *opaque, QemuOpts *opts, Error **errp)
7d76ad4f
EO
1013{
1014 /* FIXME: change this to true for 1.3 */
1015 if (qemu_opt_get_bool(opts, "enable", false)) {
1016#ifdef CONFIG_SECCOMP
1017 if (seccomp_start() < 0) {
1459407e
MA
1018 error_report("failed to install seccomp syscall filter "
1019 "in the kernel");
7d76ad4f
EO
1020 return -1;
1021 }
1022#else
5dfdae81 1023 error_report("seccomp support is disabled");
7d76ad4f
EO
1024 return -1;
1025#endif
1026 }
1027
1028 return 0;
1029}
1030
28d0de7a 1031static int parse_name(void *opaque, QemuOpts *opts, Error **errp)
5d12f961
DDAG
1032{
1033 const char *proc_name;
1034
8f480de0
DDAG
1035 if (qemu_opt_get(opts, "debug-threads")) {
1036 qemu_thread_naming(qemu_opt_get_bool(opts, "debug-threads", false));
1037 }
5d12f961
DDAG
1038 qemu_name = qemu_opt_get(opts, "guest");
1039
1040 proc_name = qemu_opt_get(opts, "process");
1041 if (proc_name) {
1042 os_set_proc_name(proc_name);
1043 }
5b9d313e
DDAG
1044
1045 return 0;
5d12f961
DDAG
1046}
1047
f8b6f8ed
MA
1048bool defaults_enabled(void)
1049{
1050 return has_defaults;
1051}
1052
de77a243 1053bool usb_enabled(void)
094b287f 1054{
de77a243 1055 return machine_usb(current_machine);
094b287f
LZ
1056}
1057
587ed6be 1058#ifndef _WIN32
28d0de7a 1059static int parse_add_fd(void *opaque, QemuOpts *opts, Error **errp)
587ed6be
CB
1060{
1061 int fd, dupfd, flags;
1062 int64_t fdset_id;
1063 const char *fd_opaque = NULL;
636a30a8 1064 AddfdInfo *fdinfo;
587ed6be
CB
1065
1066 fd = qemu_opt_get_number(opts, "fd", -1);
1067 fdset_id = qemu_opt_get_number(opts, "set", -1);
1068 fd_opaque = qemu_opt_get(opts, "opaque");
1069
1070 if (fd < 0) {
1459407e 1071 error_report("fd option is required and must be non-negative");
587ed6be
CB
1072 return -1;
1073 }
1074
1075 if (fd <= STDERR_FILENO) {
1459407e 1076 error_report("fd cannot be a standard I/O stream");
587ed6be
CB
1077 return -1;
1078 }
1079
1080 /*
1081 * All fds inherited across exec() necessarily have FD_CLOEXEC
1082 * clear, while qemu sets FD_CLOEXEC on all other fds used internally.
1083 */
1084 flags = fcntl(fd, F_GETFD);
1085 if (flags == -1 || (flags & FD_CLOEXEC)) {
1459407e 1086 error_report("fd is not valid or already in use");
587ed6be
CB
1087 return -1;
1088 }
1089
1090 if (fdset_id < 0) {
1459407e 1091 error_report("set option is required and must be non-negative");
587ed6be
CB
1092 return -1;
1093 }
1094
1095#ifdef F_DUPFD_CLOEXEC
1096 dupfd = fcntl(fd, F_DUPFD_CLOEXEC, 0);
1097#else
1098 dupfd = dup(fd);
1099 if (dupfd != -1) {
1100 qemu_set_cloexec(dupfd);
1101 }
1102#endif
1103 if (dupfd == -1) {
3e515373 1104 error_report("error duplicating fd: %s", strerror(errno));
587ed6be
CB
1105 return -1;
1106 }
1107
1108 /* add the duplicate fd, and optionally the opaque string, to the fd set */
636a30a8
PB
1109 fdinfo = monitor_fdset_add_fd(dupfd, true, fdset_id, !!fd_opaque, fd_opaque,
1110 &error_abort);
1111 g_free(fdinfo);
587ed6be
CB
1112
1113 return 0;
1114}
1115
28d0de7a 1116static int cleanup_add_fd(void *opaque, QemuOpts *opts, Error **errp)
587ed6be
CB
1117{
1118 int fd;
1119
1120 fd = qemu_opt_get_number(opts, "fd", -1);
1121 close(fd);
1122
1123 return 0;
1124}
1125#endif
1126
1ae26a18
AZ
1127/***********************************************************/
1128/* QEMU Block devices */
1129
2292ddae
MA
1130#define HD_OPTS "media=disk"
1131#define CDROM_OPTS "media=cdrom"
1132#define FD_OPTS ""
1133#define PFLASH_OPTS ""
1134#define MTD_OPTS ""
1135#define SD_OPTS ""
e4bcb14c 1136
28d0de7a 1137static int drive_init_func(void *opaque, QemuOpts *opts, Error **errp)
9dfd7c7a 1138{
2d0d2837 1139 BlockInterfaceType *block_default_type = opaque;
9dfd7c7a 1140
60e19e06 1141 return drive_new(opts, *block_default_type) == NULL;
9dfd7c7a
GH
1142}
1143
28d0de7a 1144static int drive_enable_snapshot(void *opaque, QemuOpts *opts, Error **errp)
9dfd7c7a 1145{
28de2f88 1146 if (qemu_opt_get(opts, "snapshot") == NULL) {
f43e47db 1147 qemu_opt_set(opts, "snapshot", "on", &error_abort);
9dfd7c7a
GH
1148 }
1149 return 0;
1150}
1151
3c42ea66
CB
1152static void default_drive(int enable, int snapshot, BlockInterfaceType type,
1153 int index, const char *optstr)
4e5d9b57
MA
1154{
1155 QemuOpts *opts;
a66c9dc7 1156 DriveInfo *dinfo;
4e5d9b57 1157
4e5d9b57
MA
1158 if (!enable || drive_get_by_index(type, index)) {
1159 return;
1160 }
1161
1162 opts = drive_add(type, index, NULL, optstr);
1163 if (snapshot) {
28d0de7a 1164 drive_enable_snapshot(NULL, opts, NULL);
4e5d9b57 1165 }
a66c9dc7
JS
1166
1167 dinfo = drive_new(opts, type);
1168 if (!dinfo) {
4e5d9b57
MA
1169 exit(1);
1170 }
a66c9dc7
JS
1171 dinfo->is_default = true;
1172
4e5d9b57
MA
1173}
1174
12b7f57e
MT
1175static QemuOptsList qemu_smp_opts = {
1176 .name = "smp-opts",
1177 .implied_opt_name = "cpus",
1178 .merge_lists = true,
1179 .head = QTAILQ_HEAD_INITIALIZER(qemu_smp_opts.head),
1180 .desc = {
1181 {
1182 .name = "cpus",
1183 .type = QEMU_OPT_NUMBER,
1184 }, {
1185 .name = "sockets",
1186 .type = QEMU_OPT_NUMBER,
1187 }, {
1188 .name = "cores",
1189 .type = QEMU_OPT_NUMBER,
1190 }, {
1191 .name = "threads",
1192 .type = QEMU_OPT_NUMBER,
1193 }, {
1194 .name = "maxcpus",
1195 .type = QEMU_OPT_NUMBER,
1196 },
1197 { /*End of list */ }
1198 },
1199};
1200
1201static void smp_parse(QemuOpts *opts)
dc6b1c09 1202{
12b7f57e 1203 if (opts) {
dc6b1c09 1204
12b7f57e
MT
1205 unsigned cpus = qemu_opt_get_number(opts, "cpus", 0);
1206 unsigned sockets = qemu_opt_get_number(opts, "sockets", 0);
1207 unsigned cores = qemu_opt_get_number(opts, "cores", 0);
1208 unsigned threads = qemu_opt_get_number(opts, "threads", 0);
1209
1210 /* compute missing values, prefer sockets over cores over threads */
1211 if (cpus == 0 || sockets == 0) {
1212 sockets = sockets > 0 ? sockets : 1;
1213 cores = cores > 0 ? cores : 1;
dc6b1c09 1214 threads = threads > 0 ? threads : 1;
12b7f57e
MT
1215 if (cpus == 0) {
1216 cpus = cores * threads * sockets;
1217 }
719cac1c
EH
1218 } else if (cores == 0) {
1219 threads = threads > 0 ? threads : 1;
1220 cores = cpus / (sockets * threads);
ec2cbbdd 1221 } else if (threads == 0) {
719cac1c 1222 threads = cpus / (cores * sockets);
ec2cbbdd 1223 } else if (sockets * cores * threads < cpus) {
f61eddcb
EH
1224 error_report("cpu topology: "
1225 "sockets (%u) * cores (%u) * threads (%u) < "
1226 "smp_cpus (%u)",
1227 sockets, cores, threads, cpus);
ec2cbbdd 1228 exit(1);
dc6b1c09 1229 }
12b7f57e 1230
a32ef3bf
TH
1231 max_cpus = qemu_opt_get_number(opts, "maxcpus", cpus);
1232 if (sockets * cores * threads > max_cpus) {
f61eddcb
EH
1233 error_report("cpu topology: "
1234 "sockets (%u) * cores (%u) * threads (%u) > "
1235 "maxcpus (%u)",
1236 sockets, cores, threads, max_cpus);
a32ef3bf
TH
1237 exit(1);
1238 }
12b7f57e
MT
1239
1240 smp_cpus = cpus;
1241 smp_cores = cores > 0 ? cores : 1;
1242 smp_threads = threads > 0 ? threads : 1;
1243
dc6b1c09 1244 }
12b7f57e
MT
1245
1246 if (max_cpus == 0) {
dc6b1c09 1247 max_cpus = smp_cpus;
12b7f57e
MT
1248 }
1249
af67ee92 1250 if (max_cpus > MAX_CPUMASK_BITS) {
3e515373 1251 error_report("unsupported number of maxcpus");
12b7f57e
MT
1252 exit(1);
1253 }
1254 if (max_cpus < smp_cpus) {
f61eddcb 1255 error_report("maxcpus must be equal to or greater than smp");
12b7f57e
MT
1256 exit(1);
1257 }
1258
dc6b1c09
AP
1259}
1260
28d16f38 1261static void realtime_init(void)
888a6bc6 1262{
888a6bc6
SM
1263 if (enable_mlock) {
1264 if (os_mlock() < 0) {
f61eddcb 1265 error_report("locking memory failed");
888a6bc6
SM
1266 exit(1);
1267 }
1268 }
1269}
1270
5e2ac519
SA
1271
1272static void configure_msg(QemuOpts *opts)
1273{
1274 enable_timestamp_msg = qemu_opt_get_bool(opts, "timestamp", true);
1275}
1276
cfe67cef
LA
1277/***********************************************************/
1278/* Semihosting */
1279
1280typedef struct SemihostingConfig {
1281 bool enabled;
1282 SemihostingTarget target;
a59d31a1
LA
1283 const char **argv;
1284 int argc;
1285 const char *cmdline; /* concatenated argv */
cfe67cef
LA
1286} SemihostingConfig;
1287
1288static SemihostingConfig semihosting;
1289
1290bool semihosting_enabled(void)
1291{
1292 return semihosting.enabled;
1293}
1294
1295SemihostingTarget semihosting_get_target(void)
1296{
1297 return semihosting.target;
1298}
1299
a59d31a1
LA
1300const char *semihosting_get_arg(int i)
1301{
1302 if (i >= semihosting.argc) {
1303 return NULL;
1304 }
1305 return semihosting.argv[i];
1306}
1307
1308int semihosting_get_argc(void)
1309{
1310 return semihosting.argc;
1311}
1312
1313const char *semihosting_get_cmdline(void)
1314{
1315 if (semihosting.cmdline == NULL && semihosting.argc > 0) {
1316 semihosting.cmdline = g_strjoinv(" ", (gchar **)semihosting.argv);
1317 }
1318 return semihosting.cmdline;
1319}
1320
1321static int add_semihosting_arg(void *opaque,
1322 const char *name, const char *val,
1323 Error **errp)
1324{
1325 SemihostingConfig *s = opaque;
1326 if (strcmp(name, "arg") == 0) {
1327 s->argc++;
1328 /* one extra element as g_strjoinv() expects NULL-terminated array */
1329 s->argv = g_realloc(s->argv, (s->argc + 1) * sizeof(void *));
1330 s->argv[s->argc - 1] = val;
1331 s->argv[s->argc] = NULL;
1332 }
1333 return 0;
1334}
1335
1336/* Use strings passed via -kernel/-append to initialize semihosting.argv[] */
1337static inline void semihosting_arg_fallback(const char *file, const char *cmd)
1338{
1339 char *cmd_token;
1340
1341 /* argv[0] */
1342 add_semihosting_arg(&semihosting, "arg", file, NULL);
1343
1344 /* split -append and initialize argv[1..n] */
1345 cmd_token = strtok(g_strdup(cmd), " ");
1346 while (cmd_token) {
1347 add_semihosting_arg(&semihosting, "arg", cmd_token, NULL);
1348 cmd_token = strtok(NULL, " ");
1349 }
1350}
1351
79814179
TC
1352/* Now we still need this for compatibility with XEN. */
1353bool has_igd_gfx_passthru;
1354static void igd_gfx_passthru(void)
1355{
1356 has_igd_gfx_passthru = current_machine->igd_gfx_passthru;
1357}
1358
a594cfbf
FB
1359/***********************************************************/
1360/* USB devices */
1361
fb08000c 1362static int usb_device_add(const char *devname)
a594cfbf 1363{
a5d2f727 1364 USBDevice *dev = NULL;
615fe4de
MR
1365#ifndef CONFIG_LINUX
1366 const char *p;
1367#endif
a594cfbf 1368
de77a243 1369 if (!usb_enabled()) {
a594cfbf 1370 return -1;
094b287f 1371 }
a594cfbf 1372
0958b4cc
GH
1373 /* drivers with .usbdevice_name entry in USBDeviceInfo */
1374 dev = usbdevice_create(devname);
1375 if (dev)
1376 goto done;
1377
a5d2f727 1378 /* the other ones */
e447fc63
GH
1379#ifndef CONFIG_LINUX
1380 /* only the linux version is qdev-ified, usb-bsd still needs this */
a594cfbf 1381 if (strstart(devname, "host:", &p)) {
3741715c 1382 dev = usb_host_device_open(usb_bus_find(-1), p);
a594cfbf 1383 }
615fe4de 1384#endif
0d92ed30
PB
1385 if (!dev)
1386 return -1;
1387
a5d2f727 1388done:
a594cfbf
FB
1389 return 0;
1390}
1391
1f3870ab
AL
1392static int usb_device_del(const char *devname)
1393{
1394 int bus_num, addr;
1395 const char *p;
1396
1a3973b3
GH
1397 if (strstart(devname, "host:", &p)) {
1398 return -1;
1399 }
5d0c5750 1400
de77a243 1401 if (!usb_enabled()) {
1f3870ab 1402 return -1;
094b287f 1403 }
1f3870ab
AL
1404
1405 p = strchr(devname, '.');
1406 if (!p)
1407 return -1;
1408 bus_num = strtoul(devname, NULL, 0);
1409 addr = strtoul(p + 1, NULL, 0);
1410
a5d2f727 1411 return usb_device_delete_addr(bus_num, addr);
1f3870ab
AL
1412}
1413
bd3c948d
GH
1414static int usb_parse(const char *cmdline)
1415{
59d1c1c2 1416 int r;
fb08000c 1417 r = usb_device_add(cmdline);
59d1c1c2 1418 if (r < 0) {
f61eddcb 1419 error_report("could not add USB device '%s'", cmdline);
59d1c1c2
ST
1420 }
1421 return r;
bd3c948d
GH
1422}
1423
3e5a50d6 1424void hmp_usb_add(Monitor *mon, const QDict *qdict)
a594cfbf 1425{
59d1c1c2 1426 const char *devname = qdict_get_str(qdict, "devname");
fb08000c 1427 if (usb_device_add(devname) < 0) {
1ecda02b 1428 error_report("could not add USB device '%s'", devname);
59d1c1c2 1429 }
a594cfbf
FB
1430}
1431
3e5a50d6 1432void hmp_usb_del(Monitor *mon, const QDict *qdict)
a594cfbf 1433{
59d1c1c2
ST
1434 const char *devname = qdict_get_str(qdict, "devname");
1435 if (usb_device_del(devname) < 0) {
1ecda02b 1436 error_report("could not delete USB device '%s'", devname);
59d1c1c2 1437 }
a594cfbf
FB
1438}
1439
cc1daa40
FB
1440/***********************************************************/
1441/* machine registration */
1442
0056ae24 1443MachineState *current_machine;
cc1daa40 1444
0056ae24 1445static MachineClass *find_machine(const char *name)
cc1daa40 1446{
261747f1 1447 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
0056ae24 1448 MachineClass *mc = NULL;
cc1daa40 1449
261747f1 1450 for (el = machines; el; el = el->next) {
0056ae24 1451 MachineClass *temp = el->data;
261747f1 1452
958db90c 1453 if (!strcmp(temp->name, name)) {
0056ae24 1454 mc = temp;
261747f1
MA
1455 break;
1456 }
958db90c
MA
1457 if (temp->alias &&
1458 !strcmp(temp->alias, name)) {
0056ae24 1459 mc = temp;
261747f1
MA
1460 break;
1461 }
cc1daa40 1462 }
261747f1
MA
1463
1464 g_slist_free(machines);
0056ae24 1465 return mc;
cc1daa40
FB
1466}
1467
0056ae24 1468MachineClass *find_default_machine(void)
0c257437 1469{
261747f1 1470 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
0056ae24 1471 MachineClass *mc = NULL;
0c257437 1472
261747f1 1473 for (el = machines; el; el = el->next) {
0056ae24 1474 MachineClass *temp = el->data;
261747f1 1475
958db90c 1476 if (temp->is_default) {
0056ae24 1477 mc = temp;
261747f1 1478 break;
0c257437
AL
1479 }
1480 }
261747f1
MA
1481
1482 g_slist_free(machines);
0056ae24 1483 return mc;
0c257437
AL
1484}
1485
01d3c80d
AL
1486MachineInfoList *qmp_query_machines(Error **errp)
1487{
261747f1 1488 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
01d3c80d 1489 MachineInfoList *mach_list = NULL;
01d3c80d 1490
261747f1
MA
1491 for (el = machines; el; el = el->next) {
1492 MachineClass *mc = el->data;
01d3c80d
AL
1493 MachineInfoList *entry;
1494 MachineInfo *info;
1495
1496 info = g_malloc0(sizeof(*info));
958db90c 1497 if (mc->is_default) {
01d3c80d
AL
1498 info->has_is_default = true;
1499 info->is_default = true;
1500 }
1501
958db90c 1502 if (mc->alias) {
01d3c80d 1503 info->has_alias = true;
958db90c 1504 info->alias = g_strdup(mc->alias);
01d3c80d
AL
1505 }
1506
958db90c
MA
1507 info->name = g_strdup(mc->name);
1508 info->cpu_max = !mc->max_cpus ? 1 : mc->max_cpus;
01d3c80d
AL
1509
1510 entry = g_malloc0(sizeof(*entry));
1511 entry->value = info;
1512 entry->next = mach_list;
1513 mach_list = entry;
1514 }
1515
261747f1 1516 g_slist_free(machines);
01d3c80d
AL
1517 return mach_list;
1518}
1519
52eb3dfd
MA
1520static int machine_help_func(QemuOpts *opts, MachineState *machine)
1521{
1522 ObjectProperty *prop;
1523
1524 if (!qemu_opt_has_help_opt(opts)) {
1525 return 0;
1526 }
1527
1528 QTAILQ_FOREACH(prop, &OBJECT(machine)->properties, node) {
1529 if (!prop->set) {
1530 continue;
1531 }
1532
1533 error_printf("%s.%s=%s", MACHINE_GET_CLASS(machine)->name,
1534 prop->name, prop->type);
1535 if (prop->description) {
1536 error_printf(" (%s)\n", prop->description);
1537 } else {
1538 error_printf("\n");
1539 }
1540 }
1541
1542 return 1;
1543}
1544
8a7ddc38
FB
1545/***********************************************************/
1546/* main execution loop */
1547
0bd48850
FB
1548struct vm_change_state_entry {
1549 VMChangeStateHandler *cb;
1550 void *opaque;
72cf2d4f 1551 QLIST_ENTRY (vm_change_state_entry) entries;
0bd48850
FB
1552};
1553
72cf2d4f 1554static QLIST_HEAD(vm_change_state_head, vm_change_state_entry) vm_change_state_head;
0bd48850
FB
1555
1556VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
1557 void *opaque)
1558{
1559 VMChangeStateEntry *e;
1560
7267c094 1561 e = g_malloc0(sizeof (*e));
0bd48850
FB
1562
1563 e->cb = cb;
1564 e->opaque = opaque;
72cf2d4f 1565 QLIST_INSERT_HEAD(&vm_change_state_head, e, entries);
0bd48850
FB
1566 return e;
1567}
1568
1569void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
1570{
72cf2d4f 1571 QLIST_REMOVE (e, entries);
7267c094 1572 g_free (e);
0bd48850
FB
1573}
1574
1dfb4dd9 1575void vm_state_notify(int running, RunState state)
0bd48850 1576{
9b10ac86 1577 VMChangeStateEntry *e, *next;
0bd48850 1578
1dfb4dd9 1579 trace_vm_state_notify(running, state);
94b0b5ff 1580
9b10ac86 1581 QLIST_FOREACH_SAFE(e, &vm_change_state_head, entries, next) {
1dfb4dd9 1582 e->cb(e->opaque, running, state);
0bd48850
FB
1583 }
1584}
1585
bb0c6722
FB
1586/* reset/shutdown handler */
1587
1588typedef struct QEMUResetEntry {
72cf2d4f 1589 QTAILQ_ENTRY(QEMUResetEntry) entry;
bb0c6722
FB
1590 QEMUResetHandler *func;
1591 void *opaque;
bb0c6722
FB
1592} QEMUResetEntry;
1593
72cf2d4f
BS
1594static QTAILQ_HEAD(reset_handlers, QEMUResetEntry) reset_handlers =
1595 QTAILQ_HEAD_INITIALIZER(reset_handlers);
bb0c6722 1596static int reset_requested;
f64622c4
GN
1597static int shutdown_requested, shutdown_signal = -1;
1598static pid_t shutdown_pid;
3475187d 1599static int powerdown_requested;
8cf71710 1600static int debug_requested;
95b363b5 1601static int suspend_requested;
4bc78a87 1602static WakeupReason wakeup_reason;
a9552c8e
IM
1603static NotifierList powerdown_notifiers =
1604 NOTIFIER_LIST_INITIALIZER(powerdown_notifiers);
95b363b5
GH
1605static NotifierList suspend_notifiers =
1606 NOTIFIER_LIST_INITIALIZER(suspend_notifiers);
1607static NotifierList wakeup_notifiers =
1608 NOTIFIER_LIST_INITIALIZER(wakeup_notifiers);
4bc78a87 1609static uint32_t wakeup_reason_mask = ~(1 << QEMU_WAKEUP_REASON_NONE);
bb0c6722 1610
1291eb35
AP
1611int qemu_shutdown_requested_get(void)
1612{
1613 return shutdown_requested;
1614}
1615
1616int qemu_reset_requested_get(void)
1617{
1618 return reset_requested;
1619}
1620
4fdcac0e 1621static int qemu_shutdown_requested(void)
cf7a2fe2 1622{
817ef04d 1623 return atomic_xchg(&shutdown_requested, 0);
cf7a2fe2
AJ
1624}
1625
4fdcac0e 1626static void qemu_kill_report(void)
f64622c4 1627{
35b30712 1628 if (!qtest_driver() && shutdown_signal != -1) {
f1d3fb04
PM
1629 if (shutdown_pid == 0) {
1630 /* This happens for eg ^C at the terminal, so it's worth
1631 * avoiding printing an odd message in that case.
1632 */
f61eddcb 1633 error_report("terminating on signal %d", shutdown_signal);
f1d3fb04 1634 } else {
f61eddcb
EH
1635 error_report("terminating on signal %d from pid " FMT_pid,
1636 shutdown_signal, shutdown_pid);
f1d3fb04 1637 }
f64622c4
GN
1638 shutdown_signal = -1;
1639 }
1640}
1641
4fdcac0e 1642static int qemu_reset_requested(void)
cf7a2fe2
AJ
1643{
1644 int r = reset_requested;
8bd7f71d
PD
1645 if (r && replay_checkpoint(CHECKPOINT_RESET_REQUESTED)) {
1646 reset_requested = 0;
1647 return r;
1648 }
1649 return false;
cf7a2fe2
AJ
1650}
1651
95b363b5
GH
1652static int qemu_suspend_requested(void)
1653{
1654 int r = suspend_requested;
8bd7f71d
PD
1655 if (r && replay_checkpoint(CHECKPOINT_SUSPEND_REQUESTED)) {
1656 suspend_requested = 0;
1657 return r;
1658 }
1659 return false;
95b363b5
GH
1660}
1661
4bc78a87 1662static WakeupReason qemu_wakeup_requested(void)
14058196 1663{
4bc78a87 1664 return wakeup_reason;
14058196
LC
1665}
1666
4fdcac0e 1667static int qemu_powerdown_requested(void)
cf7a2fe2
AJ
1668{
1669 int r = powerdown_requested;
1670 powerdown_requested = 0;
1671 return r;
1672}
1673
e568902a
AL
1674static int qemu_debug_requested(void)
1675{
1676 int r = debug_requested;
1677 debug_requested = 0;
1678 return r;
1679}
1680
a08d4367 1681void qemu_register_reset(QEMUResetHandler *func, void *opaque)
bb0c6722 1682{
7267c094 1683 QEMUResetEntry *re = g_malloc0(sizeof(QEMUResetEntry));
bb0c6722 1684
bb0c6722
FB
1685 re->func = func;
1686 re->opaque = opaque;
72cf2d4f 1687 QTAILQ_INSERT_TAIL(&reset_handlers, re, entry);
bb0c6722
FB
1688}
1689
dda9b29f 1690void qemu_unregister_reset(QEMUResetHandler *func, void *opaque)
bb0c6722
FB
1691{
1692 QEMUResetEntry *re;
1693
72cf2d4f 1694 QTAILQ_FOREACH(re, &reset_handlers, entry) {
dda9b29f 1695 if (re->func == func && re->opaque == opaque) {
72cf2d4f 1696 QTAILQ_REMOVE(&reset_handlers, re, entry);
7267c094 1697 g_free(re);
dda9b29f
JK
1698 return;
1699 }
1700 }
1701}
1702
be522029 1703void qemu_devices_reset(void)
dda9b29f
JK
1704{
1705 QEMUResetEntry *re, *nre;
1706
1707 /* reset all devices */
72cf2d4f 1708 QTAILQ_FOREACH_SAFE(re, &reset_handlers, entry, nre) {
bb0c6722
FB
1709 re->func(re->opaque);
1710 }
be522029
DG
1711}
1712
1713void qemu_system_reset(bool report)
1714{
0056ae24
MA
1715 MachineClass *mc;
1716
1717 mc = current_machine ? MACHINE_GET_CLASS(current_machine) : NULL;
1718
958db90c
MA
1719 if (mc && mc->reset) {
1720 mc->reset();
be522029
DG
1721 } else {
1722 qemu_devices_reset();
1723 }
e063eb1f 1724 if (report) {
a6330785 1725 qapi_event_send_reset(&error_abort);
e063eb1f 1726 }
ea375f9a 1727 cpu_synchronize_all_post_reset();
bb0c6722
FB
1728}
1729
5f5b5942
AS
1730void qemu_system_guest_panicked(void)
1731{
bac05aa9
AS
1732 if (current_cpu) {
1733 current_cpu->crash_occurred = true;
1734 }
5f5b5942
AS
1735 qapi_event_send_guest_panicked(GUEST_PANIC_ACTION_PAUSE, &error_abort);
1736 vm_stop(RUN_STATE_GUEST_PANICKED);
1737}
1738
bb0c6722
FB
1739void qemu_system_reset_request(void)
1740{
d1beab82
FB
1741 if (no_reboot) {
1742 shutdown_requested = 1;
1743 } else {
1744 reset_requested = 1;
1745 }
b4a3d965 1746 cpu_stop_current();
d9f75a4e 1747 qemu_notify_event();
bb0c6722
FB
1748}
1749
95b363b5
GH
1750static void qemu_system_suspend(void)
1751{
1752 pause_all_vcpus();
1753 notifier_list_notify(&suspend_notifiers, NULL);
ad02b96a 1754 runstate_set(RUN_STATE_SUSPENDED);
1d11a95a 1755 qapi_event_send_suspend(&error_abort);
95b363b5
GH
1756}
1757
1758void qemu_system_suspend_request(void)
1759{
9abc62f6 1760 if (runstate_check(RUN_STATE_SUSPENDED)) {
95b363b5
GH
1761 return;
1762 }
1763 suspend_requested = 1;
1764 cpu_stop_current();
1765 qemu_notify_event();
1766}
1767
1768void qemu_register_suspend_notifier(Notifier *notifier)
1769{
1770 notifier_list_add(&suspend_notifiers, notifier);
1771}
1772
1773void qemu_system_wakeup_request(WakeupReason reason)
1774{
4fed9421
AK
1775 trace_system_wakeup_request(reason);
1776
9abc62f6 1777 if (!runstate_check(RUN_STATE_SUSPENDED)) {
95b363b5
GH
1778 return;
1779 }
1780 if (!(wakeup_reason_mask & (1 << reason))) {
1781 return;
1782 }
ad02b96a 1783 runstate_set(RUN_STATE_RUNNING);
4bc78a87 1784 wakeup_reason = reason;
95b363b5 1785 qemu_notify_event();
95b363b5
GH
1786}
1787
1788void qemu_system_wakeup_enable(WakeupReason reason, bool enabled)
1789{
1790 if (enabled) {
1791 wakeup_reason_mask |= (1 << reason);
1792 } else {
1793 wakeup_reason_mask &= ~(1 << reason);
1794 }
1795}
1796
1797void qemu_register_wakeup_notifier(Notifier *notifier)
1798{
1799 notifier_list_add(&wakeup_notifiers, notifier);
1800}
1801
f64622c4
GN
1802void qemu_system_killed(int signal, pid_t pid)
1803{
1804 shutdown_signal = signal;
1805 shutdown_pid = pid;
d9389b96 1806 no_shutdown = 0;
8bd7f71d
PD
1807
1808 /* Cannot call qemu_system_shutdown_request directly because
1809 * we are in a signal handler.
1810 */
1811 shutdown_requested = 1;
1812 qemu_notify_event();
f64622c4
GN
1813}
1814
bb0c6722
FB
1815void qemu_system_shutdown_request(void)
1816{
bc78cff9 1817 trace_qemu_system_shutdown_request();
b60c48a7 1818 replay_shutdown_request();
bb0c6722 1819 shutdown_requested = 1;
d9f75a4e 1820 qemu_notify_event();
bb0c6722
FB
1821}
1822
013c2f15
IM
1823static void qemu_system_powerdown(void)
1824{
0aab9ec3 1825 qapi_event_send_powerdown(&error_abort);
013c2f15
IM
1826 notifier_list_notify(&powerdown_notifiers, NULL);
1827}
1828
3475187d
FB
1829void qemu_system_powerdown_request(void)
1830{
bc78cff9 1831 trace_qemu_system_powerdown_request();
3475187d 1832 powerdown_requested = 1;
d9f75a4e
AL
1833 qemu_notify_event();
1834}
1835
a9552c8e
IM
1836void qemu_register_powerdown_notifier(Notifier *notifier)
1837{
1838 notifier_list_add(&powerdown_notifiers, notifier);
1839}
1840
8cf71710
JK
1841void qemu_system_debug_request(void)
1842{
1843 debug_requested = 1;
83f338f7 1844 qemu_notify_event();
8cf71710
JK
1845}
1846
99435906
PB
1847static bool main_loop_should_exit(void)
1848{
1849 RunState r;
1850 if (qemu_debug_requested()) {
1851 vm_stop(RUN_STATE_DEBUG);
1852 }
95b363b5
GH
1853 if (qemu_suspend_requested()) {
1854 qemu_system_suspend();
1855 }
99435906
PB
1856 if (qemu_shutdown_requested()) {
1857 qemu_kill_report();
84321831 1858 qapi_event_send_shutdown(&error_abort);
99435906
PB
1859 if (no_shutdown) {
1860 vm_stop(RUN_STATE_SHUTDOWN);
1861 } else {
1862 return true;
1863 }
1864 }
1865 if (qemu_reset_requested()) {
1866 pause_all_vcpus();
1867 cpu_synchronize_all_states();
1868 qemu_system_reset(VMRESET_REPORT);
1869 resume_all_vcpus();
ede085b3 1870 if (runstate_needs_reset()) {
99435906
PB
1871 runstate_set(RUN_STATE_PAUSED);
1872 }
1873 }
14058196
LC
1874 if (qemu_wakeup_requested()) {
1875 pause_all_vcpus();
1876 cpu_synchronize_all_states();
1877 qemu_system_reset(VMRESET_SILENT);
4bc78a87
LJ
1878 notifier_list_notify(&wakeup_notifiers, &wakeup_reason);
1879 wakeup_reason = QEMU_WAKEUP_REASON_NONE;
14058196 1880 resume_all_vcpus();
7a906f7f 1881 qapi_event_send_wakeup(&error_abort);
14058196 1882 }
99435906 1883 if (qemu_powerdown_requested()) {
013c2f15 1884 qemu_system_powerdown();
99435906
PB
1885 }
1886 if (qemu_vmstop_requested(&r)) {
1887 vm_stop(r);
1888 }
1889 return false;
1890}
1891
43b96858
AL
1892static void main_loop(void)
1893{
c9f711a5 1894 bool nonblocking;
99435906 1895 int last_io = 0;
8e1b90ec
JK
1896#ifdef CONFIG_PROFILER
1897 int64_t ti;
1898#endif
99435906 1899 do {
a7d4207d 1900 nonblocking = !kvm_enabled() && !xen_enabled() && last_io > 0;
89bfc105 1901#ifdef CONFIG_PROFILER
46481d39 1902 ti = profile_getclock();
89bfc105 1903#endif
c9f711a5 1904 last_io = main_loop_wait(nonblocking);
89bfc105 1905#ifdef CONFIG_PROFILER
46481d39 1906 dev_time += profile_getclock() - ti;
89bfc105 1907#endif
99435906 1908 } while (!main_loop_should_exit());
b4608c04
FB
1909}
1910
9bd7e6d9
PB
1911static void version(void)
1912{
f75ca1ae 1913 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n");
9bd7e6d9
PB
1914}
1915
15f82208 1916static void help(int exitcode)
0824d6fc 1917{
a3adb7ad
ME
1918 version();
1919 printf("usage: %s [options] [disk_image]\n\n"
1920 "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
1921 error_get_progname());
1922
77bd1119
ME
1923#define QEMU_OPTIONS_GENERATE_HELP
1924#include "qemu-options-wrapper.h"
a3adb7ad
ME
1925
1926 printf("\nDuring emulation, the following keys are useful:\n"
3f020d70 1927 "ctrl-alt-f toggle full screen\n"
1928 "ctrl-alt-n switch to virtual console 'n'\n"
1929 "ctrl-alt toggle mouse and keyboard grab\n"
1930 "\n"
a3adb7ad
ME
1931 "When using -nographic, press 'ctrl-a h' to get some help.\n");
1932
15f82208 1933 exit(exitcode);
0824d6fc
FB
1934}
1935
cd6f1169
FB
1936#define HAS_ARG 0x0001
1937
cd6f1169
FB
1938typedef struct QEMUOption {
1939 const char *name;
1940 int flags;
1941 int index;
ad96090a 1942 uint32_t arch_mask;
cd6f1169
FB
1943} QEMUOption;
1944
dbed7e40 1945static const QEMUOption qemu_options[] = {
ad96090a 1946 { "h", 0, QEMU_OPTION_h, QEMU_ARCH_ALL },
77bd1119
ME
1947#define QEMU_OPTIONS_GENERATE_OPTIONS
1948#include "qemu-options-wrapper.h"
cd6f1169 1949 { NULL },
fc01f7e7 1950};
a369da5f
BS
1951
1952static bool vga_available(void)
1953{
36b7f27d 1954 return object_class_by_name("VGA") || object_class_by_name("isa-vga");
a369da5f
BS
1955}
1956
1957static bool cirrus_vga_available(void)
1958{
36b7f27d
AJ
1959 return object_class_by_name("cirrus-vga")
1960 || object_class_by_name("isa-cirrus-vga");
a369da5f
BS
1961}
1962
1963static bool vmware_vga_available(void)
1964{
36b7f27d 1965 return object_class_by_name("vmware-svga");
a369da5f
BS
1966}
1967
879049a3
AJ
1968static bool qxl_vga_available(void)
1969{
1970 return object_class_by_name("qxl-vga");
1971}
1972
af87bf29
MCA
1973static bool tcx_vga_available(void)
1974{
1975 return object_class_by_name("SUNW,tcx");
1976}
1977
1978static bool cg3_vga_available(void)
1979{
1980 return object_class_by_name("cgthree");
1981}
1982
a94f0c5c
GH
1983static bool virtio_vga_available(void)
1984{
1985 return object_class_by_name("virtio-vga");
1986}
1987
3893c124 1988static void select_vgahw (const char *p)
1989{
1990 const char *opts;
1991
d44229c5 1992 assert(vga_interface_type == VGA_NONE);
3893c124 1993 if (strstart(p, "std", &opts)) {
a369da5f
BS
1994 if (vga_available()) {
1995 vga_interface_type = VGA_STD;
1996 } else {
f61eddcb 1997 error_report("standard VGA not available");
a369da5f
BS
1998 exit(0);
1999 }
3893c124 2000 } else if (strstart(p, "cirrus", &opts)) {
a369da5f
BS
2001 if (cirrus_vga_available()) {
2002 vga_interface_type = VGA_CIRRUS;
2003 } else {
f61eddcb 2004 error_report("Cirrus VGA not available");
a369da5f
BS
2005 exit(0);
2006 }
3893c124 2007 } else if (strstart(p, "vmware", &opts)) {
a369da5f
BS
2008 if (vmware_vga_available()) {
2009 vga_interface_type = VGA_VMWARE;
2010 } else {
f61eddcb 2011 error_report("VMWare SVGA not available");
a369da5f
BS
2012 exit(0);
2013 }
a94f0c5c
GH
2014 } else if (strstart(p, "virtio", &opts)) {
2015 if (virtio_vga_available()) {
2016 vga_interface_type = VGA_VIRTIO;
2017 } else {
f61eddcb 2018 error_report("Virtio VGA not available");
a94f0c5c
GH
2019 exit(0);
2020 }
94909d9f 2021 } else if (strstart(p, "xenfb", &opts)) {
86176759 2022 vga_interface_type = VGA_XENFB;
a19cbfb3 2023 } else if (strstart(p, "qxl", &opts)) {
879049a3
AJ
2024 if (qxl_vga_available()) {
2025 vga_interface_type = VGA_QXL;
2026 } else {
f61eddcb 2027 error_report("QXL VGA not available");
879049a3
AJ
2028 exit(0);
2029 }
af87bf29
MCA
2030 } else if (strstart(p, "tcx", &opts)) {
2031 if (tcx_vga_available()) {
2032 vga_interface_type = VGA_TCX;
2033 } else {
f61eddcb 2034 error_report("TCX framebuffer not available");
af87bf29
MCA
2035 exit(0);
2036 }
2037 } else if (strstart(p, "cg3", &opts)) {
2038 if (cg3_vga_available()) {
2039 vga_interface_type = VGA_CG3;
2040 } else {
f61eddcb 2041 error_report("CG3 framebuffer not available");
af87bf29
MCA
2042 exit(0);
2043 }
28b85ed8 2044 } else if (!strstart(p, "none", &opts)) {
3893c124 2045 invalid_vga:
3e515373 2046 error_report("unknown vga type: %s", p);
3893c124 2047 exit(1);
2048 }
cb5a7aa8 2049 while (*opts) {
2050 const char *nextopt;
2051
2052 if (strstart(opts, ",retrace=", &nextopt)) {
2053 opts = nextopt;
2054 if (strstart(opts, "dumb", &nextopt))
2055 vga_retrace_method = VGA_RETRACE_DUMB;
2056 else if (strstart(opts, "precise", &nextopt))
2057 vga_retrace_method = VGA_RETRACE_PRECISE;
2058 else goto invalid_vga;
2059 } else goto invalid_vga;
2060 opts = nextopt;
2061 }
3893c124 2062}
2063
1472a95b
JS
2064static DisplayType select_display(const char *p)
2065{
2066 const char *opts;
2067 DisplayType display = DT_DEFAULT;
2068
2069 if (strstart(p, "sdl", &opts)) {
2070#ifdef CONFIG_SDL
2071 display = DT_SDL;
2072 while (*opts) {
2073 const char *nextopt;
2074
2075 if (strstart(opts, ",frame=", &nextopt)) {
2076 opts = nextopt;
2077 if (strstart(opts, "on", &nextopt)) {
2078 no_frame = 0;
2079 } else if (strstart(opts, "off", &nextopt)) {
2080 no_frame = 1;
2081 } else {
05175535 2082 goto invalid_sdl_args;
1472a95b
JS
2083 }
2084 } else if (strstart(opts, ",alt_grab=", &nextopt)) {
2085 opts = nextopt;
2086 if (strstart(opts, "on", &nextopt)) {
2087 alt_grab = 1;
2088 } else if (strstart(opts, "off", &nextopt)) {
2089 alt_grab = 0;
2090 } else {
05175535 2091 goto invalid_sdl_args;
1472a95b
JS
2092 }
2093 } else if (strstart(opts, ",ctrl_grab=", &nextopt)) {
2094 opts = nextopt;
2095 if (strstart(opts, "on", &nextopt)) {
2096 ctrl_grab = 1;
2097 } else if (strstart(opts, "off", &nextopt)) {
2098 ctrl_grab = 0;
2099 } else {
05175535 2100 goto invalid_sdl_args;
1472a95b
JS
2101 }
2102 } else if (strstart(opts, ",window_close=", &nextopt)) {
2103 opts = nextopt;
2104 if (strstart(opts, "on", &nextopt)) {
2105 no_quit = 0;
2106 } else if (strstart(opts, "off", &nextopt)) {
2107 no_quit = 1;
2108 } else {
05175535 2109 goto invalid_sdl_args;
1472a95b 2110 }
0b71a5d5
GH
2111 } else if (strstart(opts, ",gl=", &nextopt)) {
2112 opts = nextopt;
2113 if (strstart(opts, "on", &nextopt)) {
2114 request_opengl = 1;
2115 } else if (strstart(opts, "off", &nextopt)) {
2116 request_opengl = 0;
2117 } else {
2118 goto invalid_sdl_args;
2119 }
1472a95b 2120 } else {
05175535 2121 invalid_sdl_args:
3e515373 2122 error_report("invalid SDL option string");
05175535 2123 exit(1);
1472a95b
JS
2124 }
2125 opts = nextopt;
2126 }
2127#else
c6bf0f7f 2128 error_report("SDL support is disabled");
1472a95b
JS
2129 exit(1);
2130#endif
3264ff12 2131 } else if (strstart(p, "vnc", &opts)) {
821601ea 2132#ifdef CONFIG_VNC
4db14629 2133 if (*opts == '=') {
fb430969 2134 Error *err = NULL;
70b94331
MA
2135 if (vnc_parse(opts + 1, &err) == NULL) {
2136 error_report_err(err);
4db14629 2137 exit(1);
3264ff12 2138 }
4db14629 2139 } else {
c6bf0f7f 2140 error_report("VNC requires a display argument vnc=<display>");
3264ff12
JS
2141 exit(1);
2142 }
821601ea 2143#else
c6bf0f7f 2144 error_report("VNC support is disabled");
821601ea
JS
2145 exit(1);
2146#endif
1472a95b
JS
2147 } else if (strstart(p, "curses", &opts)) {
2148#ifdef CONFIG_CURSES
2149 display = DT_CURSES;
2150#else
3e515373 2151 error_report("curses support is disabled");
1472a95b 2152 exit(1);
15546425
AL
2153#endif
2154 } else if (strstart(p, "gtk", &opts)) {
2155#ifdef CONFIG_GTK
2156 display = DT_GTK;
881249c7
JK
2157 while (*opts) {
2158 const char *nextopt;
2159
2160 if (strstart(opts, ",grab_on_hover=", &nextopt)) {
2161 opts = nextopt;
2162 if (strstart(opts, "on", &nextopt)) {
2163 grab_on_hover = true;
2164 } else if (strstart(opts, "off", &nextopt)) {
2165 grab_on_hover = false;
2166 } else {
2167 goto invalid_gtk_args;
2168 }
97edf3bd
GH
2169 } else if (strstart(opts, ",gl=", &nextopt)) {
2170 opts = nextopt;
2171 if (strstart(opts, "on", &nextopt)) {
2172 request_opengl = 1;
2173 } else if (strstart(opts, "off", &nextopt)) {
2174 request_opengl = 0;
2175 } else {
2176 goto invalid_gtk_args;
2177 }
881249c7
JK
2178 } else {
2179 invalid_gtk_args:
3e515373 2180 error_report("invalid GTK option string");
881249c7
JK
2181 exit(1);
2182 }
2183 opts = nextopt;
2184 }
15546425 2185#else
c6bf0f7f 2186 error_report("GTK support is disabled");
15546425 2187 exit(1);
1472a95b 2188#endif
4171d32e
JS
2189 } else if (strstart(p, "none", &opts)) {
2190 display = DT_NONE;
1472a95b 2191 } else {
3e515373 2192 error_report("unknown display type");
1472a95b
JS
2193 exit(1);
2194 }
2195
2196 return display;
2197}
2198
7d4c3d53
MA
2199static int balloon_parse(const char *arg)
2200{
382f0743 2201 QemuOpts *opts;
7d4c3d53 2202
382f0743
GH
2203 if (strcmp(arg, "none") == 0) {
2204 return 0;
2205 }
2206
2207 if (!strncmp(arg, "virtio", 6)) {
2208 if (arg[6] == ',') {
2209 /* have params -> parse them */
70b94331
MA
2210 opts = qemu_opts_parse_noisily(qemu_find_opts("device"), arg + 7,
2211 false);
382f0743
GH
2212 if (!opts)
2213 return -1;
2214 } else {
2215 /* create empty opts */
87ea75d5
PC
2216 opts = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
2217 &error_abort);
7d4c3d53 2218 }
f43e47db 2219 qemu_opt_set(opts, "driver", "virtio-balloon", &error_abort);
382f0743 2220 return 0;
7d4c3d53 2221 }
382f0743
GH
2222
2223 return -1;
7d4c3d53 2224}
7d4c3d53 2225
5cea8590
PB
2226char *qemu_find_file(int type, const char *name)
2227{
4524051c 2228 int i;
5cea8590
PB
2229 const char *subdir;
2230 char *buf;
2231
31783203
PM
2232 /* Try the name as a straight path first */
2233 if (access(name, R_OK) == 0) {
4524051c 2234 trace_load_file(name, name);
7267c094 2235 return g_strdup(name);
5cea8590 2236 }
4524051c 2237
5cea8590
PB
2238 switch (type) {
2239 case QEMU_FILE_TYPE_BIOS:
2240 subdir = "";
2241 break;
2242 case QEMU_FILE_TYPE_KEYMAP:
2243 subdir = "keymaps/";
2244 break;
2245 default:
2246 abort();
2247 }
4524051c
GH
2248
2249 for (i = 0; i < data_dir_idx; i++) {
2250 buf = g_strdup_printf("%s/%s%s", data_dir[i], subdir, name);
2251 if (access(buf, R_OK) == 0) {
2252 trace_load_file(name, buf);
2253 return buf;
2254 }
7267c094 2255 g_free(buf);
5cea8590 2256 }
4524051c 2257 return NULL;
5cea8590
PB
2258}
2259
6407d76e
GS
2260static inline bool nonempty_str(const char *str)
2261{
2262 return str && *str;
2263}
2264
81b2b810
GS
2265static int parse_fw_cfg(void *opaque, QemuOpts *opts, Error **errp)
2266{
2267 gchar *buf;
2268 size_t size;
6407d76e 2269 const char *name, *file, *str;
81b2b810
GS
2270
2271 if (opaque == NULL) {
2272 error_report("fw_cfg device not available");
2273 return -1;
2274 }
2275 name = qemu_opt_get(opts, "name");
2276 file = qemu_opt_get(opts, "file");
6407d76e
GS
2277 str = qemu_opt_get(opts, "string");
2278
2279 /* we need name and either a file or the content string */
2280 if (!(nonempty_str(name) && (nonempty_str(file) || nonempty_str(str)))) {
2281 error_report("invalid argument(s)");
2282 return -1;
2283 }
2284 if (nonempty_str(file) && nonempty_str(str)) {
2285 error_report("file and string are mutually exclusive");
81b2b810
GS
2286 return -1;
2287 }
2288 if (strlen(name) > FW_CFG_MAX_FILE_PATH - 1) {
2289 error_report("name too long (max. %d char)", FW_CFG_MAX_FILE_PATH - 1);
2290 return -1;
2291 }
2292 if (strncmp(name, "opt/", 4) != 0) {
eb177ec1 2293 error_report("warning: externally provided fw_cfg item names "
8afb9000 2294 "should be prefixed with \"opt/\"");
81b2b810 2295 }
6407d76e
GS
2296 if (nonempty_str(str)) {
2297 size = strlen(str); /* NUL terminator NOT included in fw_cfg blob */
2298 buf = g_memdup(str, size);
2299 } else {
2300 if (!g_file_get_contents(file, &buf, &size, NULL)) {
2301 error_report("can't load %s", file);
2302 return -1;
2303 }
81b2b810
GS
2304 }
2305 fw_cfg_add_file((FWCfgState *)opaque, name, buf, size);
2306 return 0;
2307}
2308
28d0de7a 2309static int device_help_func(void *opaque, QemuOpts *opts, Error **errp)
ff952ba2
MA
2310{
2311 return qdev_device_help(opts);
2312}
2313
28d0de7a 2314static int device_init_func(void *opaque, QemuOpts *opts, Error **errp)
f31d07d1 2315{
f006cf7f 2316 Error *err = NULL;
f31d07d1
GH
2317 DeviceState *dev;
2318
f006cf7f
MA
2319 dev = qdev_device_add(opts, &err);
2320 if (!dev) {
2321 error_report_err(err);
f31d07d1 2322 return -1;
f006cf7f 2323 }
b09995ae 2324 object_unref(OBJECT(dev));
f31d07d1
GH
2325 return 0;
2326}
2327
28d0de7a 2328static int chardev_init_func(void *opaque, QemuOpts *opts, Error **errp)
1a688d3b 2329{
bd2d80b2 2330 Error *local_err = NULL;
1a688d3b 2331
bd2d80b2 2332 qemu_chr_new_from_opts(opts, NULL, &local_err);
84d18f06 2333 if (local_err) {
565f65d2 2334 error_report_err(local_err);
1a688d3b 2335 return -1;
bd2d80b2 2336 }
1a688d3b
GH
2337 return 0;
2338}
2339
758e8e38 2340#ifdef CONFIG_VIRTFS
28d0de7a 2341static int fsdev_init_func(void *opaque, QemuOpts *opts, Error **errp)
74db920c
GS
2342{
2343 int ret;
2344 ret = qemu_fsdev_add(opts);
2345
2346 return ret;
2347}
2348#endif
2349
28d0de7a 2350static int mon_init_func(void *opaque, QemuOpts *opts, Error **errp)
88589343
GH
2351{
2352 CharDriverState *chr;
2353 const char *chardev;
2354 const char *mode;
2355 int flags;
2356
2357 mode = qemu_opt_get(opts, "mode");
2358 if (mode == NULL) {
2359 mode = "readline";
2360 }
2361 if (strcmp(mode, "readline") == 0) {
2362 flags = MONITOR_USE_READLINE;
2363 } else if (strcmp(mode, "control") == 0) {
2364 flags = MONITOR_USE_CONTROL;
2365 } else {
f61eddcb 2366 error_report("unknown monitor mode \"%s\"", mode);
88589343
GH
2367 exit(1);
2368 }
2369
39eaab9a
DB
2370 if (qemu_opt_get_bool(opts, "pretty", 0))
2371 flags |= MONITOR_USE_PRETTY;
2372
88589343
GH
2373 if (qemu_opt_get_bool(opts, "default", 0))
2374 flags |= MONITOR_IS_DEFAULT;
2375
2376 chardev = qemu_opt_get(opts, "chardev");
2377 chr = qemu_chr_find(chardev);
2378 if (chr == NULL) {
f61eddcb 2379 error_report("chardev \"%s\" not found", chardev);
88589343
GH
2380 exit(1);
2381 }
2382
456d6069 2383 qemu_chr_fe_claim_no_fail(chr);
88589343
GH
2384 monitor_init(chr, flags);
2385 return 0;
2386}
2387
4821cd4c 2388static void monitor_parse(const char *optarg, const char *mode, bool pretty)
88589343
GH
2389{
2390 static int monitor_device_index = 0;
46ede58b 2391 Error *local_err = NULL;
88589343
GH
2392 QemuOpts *opts;
2393 const char *p;
2394 char label[32];
2395 int def = 0;
2396
2397 if (strstart(optarg, "chardev:", &p)) {
2398 snprintf(label, sizeof(label), "%s", p);
2399 } else {
140e065d
JK
2400 snprintf(label, sizeof(label), "compat_monitor%d",
2401 monitor_device_index);
2402 if (monitor_device_index == 0) {
88589343
GH
2403 def = 1;
2404 }
2405 opts = qemu_chr_parse_compat(label, optarg);
2406 if (!opts) {
f61eddcb 2407 error_report("parse error: %s", optarg);
88589343
GH
2408 exit(1);
2409 }
2410 }
2411
46ede58b 2412 opts = qemu_opts_create(qemu_find_opts("mon"), label, 1, &local_err);
88589343 2413 if (!opts) {
565f65d2 2414 error_report_err(local_err);
88589343
GH
2415 exit(1);
2416 }
f43e47db
MA
2417 qemu_opt_set(opts, "mode", mode, &error_abort);
2418 qemu_opt_set(opts, "chardev", label, &error_abort);
cccb7967 2419 qemu_opt_set_bool(opts, "pretty", pretty, &error_abort);
88589343 2420 if (def)
f43e47db 2421 qemu_opt_set(opts, "default", "on", &error_abort);
88589343
GH
2422 monitor_device_index++;
2423}
2424
bd3c948d
GH
2425struct device_config {
2426 enum {
aee1b935
GH
2427 DEV_USB, /* -usbdevice */
2428 DEV_BT, /* -bt */
2429 DEV_SERIAL, /* -serial */
2430 DEV_PARALLEL, /* -parallel */
2431 DEV_VIRTCON, /* -virtioconsole */
c9f398e5 2432 DEV_DEBUGCON, /* -debugcon */
ef0c4a0d 2433 DEV_GDB, /* -gdb, -s */
3ef669e1 2434 DEV_SCLP, /* s390 sclp */
bd3c948d
GH
2435 } type;
2436 const char *cmdline;
d9a5954d 2437 Location loc;
72cf2d4f 2438 QTAILQ_ENTRY(device_config) next;
bd3c948d 2439};
4fdcac0e
BS
2440
2441static QTAILQ_HEAD(, device_config) device_configs =
2442 QTAILQ_HEAD_INITIALIZER(device_configs);
bd3c948d
GH
2443
2444static void add_device_config(int type, const char *cmdline)
2445{
2446 struct device_config *conf;
2447
7267c094 2448 conf = g_malloc0(sizeof(*conf));
bd3c948d
GH
2449 conf->type = type;
2450 conf->cmdline = cmdline;
d9a5954d 2451 loc_save(&conf->loc);
72cf2d4f 2452 QTAILQ_INSERT_TAIL(&device_configs, conf, next);
bd3c948d
GH
2453}
2454
2455static int foreach_device_config(int type, int (*func)(const char *cmdline))
2456{
2457 struct device_config *conf;
2458 int rc;
2459
72cf2d4f 2460 QTAILQ_FOREACH(conf, &device_configs, next) {
bd3c948d
GH
2461 if (conf->type != type)
2462 continue;
d9a5954d 2463 loc_push_restore(&conf->loc);
bd3c948d 2464 rc = func(conf->cmdline);
d9a5954d 2465 loc_pop(&conf->loc);
28de2f88 2466 if (rc) {
bd3c948d 2467 return rc;
28de2f88 2468 }
bd3c948d
GH
2469 }
2470 return 0;
2471}
2472
998bbd74
GH
2473static int serial_parse(const char *devname)
2474{
2475 static int index = 0;
2476 char label[32];
2477
2478 if (strcmp(devname, "none") == 0)
2479 return 0;
2480 if (index == MAX_SERIAL_PORTS) {
f61eddcb 2481 error_report("too many serial ports");
998bbd74
GH
2482 exit(1);
2483 }
2484 snprintf(label, sizeof(label), "serial%d", index);
27143a44 2485 serial_hds[index] = qemu_chr_new(label, devname, NULL);
998bbd74 2486 if (!serial_hds[index]) {
f61eddcb
EH
2487 error_report("could not connect serial device"
2488 " to character backend '%s'", devname);
998bbd74
GH
2489 return -1;
2490 }
2491 index++;
2492 return 0;
2493}
2494
6a5e8b0e
GH
2495static int parallel_parse(const char *devname)
2496{
2497 static int index = 0;
2498 char label[32];
2499
2500 if (strcmp(devname, "none") == 0)
2501 return 0;
2502 if (index == MAX_PARALLEL_PORTS) {
f61eddcb 2503 error_report("too many parallel ports");
6a5e8b0e
GH
2504 exit(1);
2505 }
2506 snprintf(label, sizeof(label), "parallel%d", index);
27143a44 2507 parallel_hds[index] = qemu_chr_new(label, devname, NULL);
6a5e8b0e 2508 if (!parallel_hds[index]) {
f61eddcb
EH
2509 error_report("could not connect parallel device"
2510 " to character backend '%s'", devname);
6a5e8b0e
GH
2511 return -1;
2512 }
2513 index++;
2514 return 0;
2515}
2516
aee1b935
GH
2517static int virtcon_parse(const char *devname)
2518{
3329f07b 2519 QemuOptsList *device = qemu_find_opts("device");
aee1b935
GH
2520 static int index = 0;
2521 char label[32];
392ecf54 2522 QemuOpts *bus_opts, *dev_opts;
aee1b935
GH
2523
2524 if (strcmp(devname, "none") == 0)
2525 return 0;
2526 if (index == MAX_VIRTIO_CONSOLES) {
f61eddcb 2527 error_report("too many virtio consoles");
aee1b935
GH
2528 exit(1);
2529 }
392ecf54 2530
87ea75d5 2531 bus_opts = qemu_opts_create(device, NULL, 0, &error_abort);
e87f7fc6 2532 if (arch_type == QEMU_ARCH_S390X) {
f43e47db 2533 qemu_opt_set(bus_opts, "driver", "virtio-serial-s390", &error_abort);
e87f7fc6 2534 } else {
f43e47db 2535 qemu_opt_set(bus_opts, "driver", "virtio-serial-pci", &error_abort);
4d8b3c63 2536 }
392ecf54 2537
87ea75d5 2538 dev_opts = qemu_opts_create(device, NULL, 0, &error_abort);
f43e47db 2539 qemu_opt_set(dev_opts, "driver", "virtconsole", &error_abort);
392ecf54 2540
aee1b935 2541 snprintf(label, sizeof(label), "virtcon%d", index);
27143a44 2542 virtcon_hds[index] = qemu_chr_new(label, devname, NULL);
aee1b935 2543 if (!virtcon_hds[index]) {
f61eddcb
EH
2544 error_report("could not connect virtio console"
2545 " to character backend '%s'", devname);
aee1b935
GH
2546 return -1;
2547 }
f43e47db 2548 qemu_opt_set(dev_opts, "chardev", label, &error_abort);
392ecf54 2549
aee1b935
GH
2550 index++;
2551 return 0;
2552}
2553
3ef669e1
AG
2554static int sclp_parse(const char *devname)
2555{
2556 QemuOptsList *device = qemu_find_opts("device");
2557 static int index = 0;
2558 char label[32];
2559 QemuOpts *dev_opts;
2560
2561 if (strcmp(devname, "none") == 0) {
2562 return 0;
2563 }
2564 if (index == MAX_SCLP_CONSOLES) {
f61eddcb 2565 error_report("too many sclp consoles");
3ef669e1
AG
2566 exit(1);
2567 }
2568
2569 assert(arch_type == QEMU_ARCH_S390X);
2570
2571 dev_opts = qemu_opts_create(device, NULL, 0, NULL);
f43e47db 2572 qemu_opt_set(dev_opts, "driver", "sclpconsole", &error_abort);
3ef669e1
AG
2573
2574 snprintf(label, sizeof(label), "sclpcon%d", index);
2575 sclp_hds[index] = qemu_chr_new(label, devname, NULL);
2576 if (!sclp_hds[index]) {
f61eddcb
EH
2577 error_report("could not connect sclp console"
2578 " to character backend '%s'", devname);
3ef669e1
AG
2579 return -1;
2580 }
f43e47db 2581 qemu_opt_set(dev_opts, "chardev", label, &error_abort);
3ef669e1
AG
2582
2583 index++;
2584 return 0;
2585}
2586
c9f398e5 2587static int debugcon_parse(const char *devname)
4d8b3c63 2588{
c9f398e5
PA
2589 QemuOpts *opts;
2590
27143a44 2591 if (!qemu_chr_new("debugcon", devname, NULL)) {
c9f398e5
PA
2592 exit(1);
2593 }
8be7e7e4 2594 opts = qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL);
c9f398e5 2595 if (!opts) {
f61eddcb 2596 error_report("already have a debugcon device");
c9f398e5
PA
2597 exit(1);
2598 }
f43e47db
MA
2599 qemu_opt_set(opts, "driver", "isa-debugcon", &error_abort);
2600 qemu_opt_set(opts, "chardev", "debugcon", &error_abort);
c9f398e5
PA
2601 return 0;
2602}
2603
2709f263
LE
2604static gint machine_class_cmp(gconstpointer a, gconstpointer b)
2605{
2606 const MachineClass *mc1 = a, *mc2 = b;
2607 int res;
2608
2609 if (mc1->family == NULL) {
2610 if (mc2->family == NULL) {
2611 /* Compare standalone machine types against each other; they sort
2612 * in increasing order.
2613 */
2614 return strcmp(object_class_get_name(OBJECT_CLASS(mc1)),
2615 object_class_get_name(OBJECT_CLASS(mc2)));
2616 }
2617
2618 /* Standalone machine types sort after families. */
2619 return 1;
2620 }
2621
2622 if (mc2->family == NULL) {
2623 /* Families sort before standalone machine types. */
2624 return -1;
2625 }
2626
2627 /* Families sort between each other alphabetically increasingly. */
2628 res = strcmp(mc1->family, mc2->family);
2629 if (res != 0) {
2630 return res;
2631 }
2632
2633 /* Within the same family, machine types sort in decreasing order. */
2634 return strcmp(object_class_get_name(OBJECT_CLASS(mc2)),
2635 object_class_get_name(OBJECT_CLASS(mc1)));
2636}
2637
2638 static MachineClass *machine_parse(const char *name)
9052ea6b 2639{
0056ae24 2640 MachineClass *mc = NULL;
261747f1 2641 GSList *el, *machines = object_class_get_list(TYPE_MACHINE, false);
9052ea6b
JK
2642
2643 if (name) {
0056ae24 2644 mc = find_machine(name);
9052ea6b 2645 }
0056ae24 2646 if (mc) {
02f292d9 2647 g_slist_free(machines);
0056ae24 2648 return mc;
9052ea6b 2649 }
025172d5 2650 if (name && !is_help_option(name)) {
3e515373 2651 error_report("unsupported machine type");
8afb9000 2652 error_printf("Use -machine help to list supported machines\n");
025172d5
MR
2653 } else {
2654 printf("Supported machines are:\n");
2709f263 2655 machines = g_slist_sort(machines, machine_class_cmp);
025172d5
MR
2656 for (el = machines; el; el = el->next) {
2657 MachineClass *mc = el->data;
958db90c
MA
2658 if (mc->alias) {
2659 printf("%-20s %s (alias of %s)\n", mc->alias, mc->desc, mc->name);
025172d5 2660 }
958db90c
MA
2661 printf("%-20s %s%s\n", mc->name, mc->desc,
2662 mc->is_default ? " (default)" : "");
9052ea6b 2663 }
9052ea6b 2664 }
261747f1
MA
2665
2666 g_slist_free(machines);
c8057f95 2667 exit(!name || !is_help_option(name));
9052ea6b
JK
2668}
2669
fd42deeb
GH
2670void qemu_add_exit_notifier(Notifier *notify)
2671{
2672 notifier_list_add(&exit_notifiers, notify);
2673}
2674
2675void qemu_remove_exit_notifier(Notifier *notify)
2676{
31552529 2677 notifier_remove(notify);
fd42deeb
GH
2678}
2679
2680static void qemu_run_exit_notifiers(void)
2681{
9e8dd451 2682 notifier_list_notify(&exit_notifiers, NULL);
fd42deeb
GH
2683}
2684
71cdd1cb
PB
2685static bool machine_init_done;
2686
4cab946a
GN
2687void qemu_add_machine_init_done_notifier(Notifier *notify)
2688{
2689 notifier_list_add(&machine_init_done_notifiers, notify);
71cdd1cb
PB
2690 if (machine_init_done) {
2691 notify->notify(notify, NULL);
2692 }
4cab946a
GN
2693}
2694
2695static void qemu_run_machine_init_done_notifiers(void)
2696{
9e8dd451 2697 notifier_list_notify(&machine_init_done_notifiers, NULL);
71cdd1cb 2698 machine_init_done = true;
4cab946a
GN
2699}
2700
6530a97b
AL
2701static const QEMUOption *lookup_opt(int argc, char **argv,
2702 const char **poptarg, int *poptind)
2703{
2704 const QEMUOption *popt;
2705 int optind = *poptind;
2706 char *r = argv[optind];
2707 const char *optarg;
2708
0f0bc3f1 2709 loc_set_cmdline(argv, optind, 1);
6530a97b
AL
2710 optind++;
2711 /* Treat --foo the same as -foo. */
2712 if (r[1] == '-')
2713 r++;
2714 popt = qemu_options;
2715 for(;;) {
2716 if (!popt->name) {
0f0bc3f1 2717 error_report("invalid option");
6530a97b
AL
2718 exit(1);
2719 }
2720 if (!strcmp(popt->name, r + 1))
2721 break;
2722 popt++;
2723 }
2724 if (popt->flags & HAS_ARG) {
2725 if (optind >= argc) {
0f0bc3f1 2726 error_report("requires an argument");
6530a97b
AL
2727 exit(1);
2728 }
2729 optarg = argv[optind++];
0f0bc3f1 2730 loc_set_cmdline(argv, optind - 2, 2);
6530a97b
AL
2731 } else {
2732 optarg = NULL;
2733 }
2734
2735 *poptarg = optarg;
2736 *poptind = optind;
2737
2738 return popt;
2739}
2740
71df1d83
MA
2741static int machine_set_property(void *opaque,
2742 const char *name, const char *value,
2743 Error **errp)
68d98d3e
AL
2744{
2745 Object *obj = OBJECT(opaque);
68d98d3e 2746 Error *local_err = NULL;
b0ddb8bf 2747 char *c, *qom_name;
68d98d3e 2748
d2659e27 2749 if (strcmp(name, "type") == 0) {
68d98d3e
AL
2750 return 0;
2751 }
2752
b0ddb8bf
MA
2753 qom_name = g_strdup(name);
2754 c = qom_name;
2755 while (*c++) {
2756 if (*c == '_') {
2757 *c = '-';
2758 }
2759 }
2760
2e16898a 2761 object_property_parse(obj, value, qom_name, &local_err);
b0ddb8bf 2762 g_free(qom_name);
68d98d3e
AL
2763
2764 if (local_err) {
a720a390 2765 error_report_err(local_err);
68d98d3e
AL
2766 return -1;
2767 }
2768
2769 return 0;
2770}
2771
f08f9271
DB
2772
2773/*
2774 * Initial object creation happens before all other
2775 * QEMU data types are created. The majority of objects
2776 * can be created at this point. The rng-egd object
2777 * cannot be created here, as it depends on the chardev
2778 * already existing.
2779 */
2780static bool object_create_initial(const char *type)
2781{
2782 if (g_str_equal(type, "rng-egd")) {
2783 return false;
2784 }
7dbb11c8 2785
9d3e12e8
TH
2786 /*
2787 * return false for concrete netfilters since
2788 * they depend on netdevs already existing
2789 */
2790 if (g_str_equal(type, "filter-buffer") ||
2791 g_str_equal(type, "filter-dump")) {
7dbb11c8
YH
2792 return false;
2793 }
2794
f08f9271
DB
2795 return true;
2796}
2797
2798
2799/*
2800 * The remainder of object creation happens after the
9abce56d 2801 * creation of chardev, fsdev, net clients and device data types.
f08f9271
DB
2802 */
2803static bool object_create_delayed(const char *type)
2804{
2805 return !object_create_initial(type);
2806}
2807
2808
28d0de7a 2809static int object_create(void *opaque, QemuOpts *opts, Error **errp)
68d98d3e 2810{
c4090f8e
PB
2811 Error *err = NULL;
2812 char *type = NULL;
2813 char *id = NULL;
2814 void *dummy = NULL;
2815 OptsVisitor *ov;
2816 QDict *pdict;
f08f9271 2817 bool (*type_predicate)(const char *) = opaque;
68d98d3e 2818
c4090f8e
PB
2819 ov = opts_visitor_new(opts);
2820 pdict = qemu_opts_to_qdict(opts, NULL);
68d98d3e 2821
c4090f8e
PB
2822 visit_start_struct(opts_get_visitor(ov), &dummy, NULL, NULL, 0, &err);
2823 if (err) {
2824 goto out;
68d98d3e
AL
2825 }
2826
c4090f8e
PB
2827 qdict_del(pdict, "qom-type");
2828 visit_type_str(opts_get_visitor(ov), &type, "qom-type", &err);
2829 if (err) {
2830 goto out;
68d98d3e 2831 }
f08f9271
DB
2832 if (!type_predicate(type)) {
2833 goto out;
2834 }
68d98d3e 2835
c4090f8e
PB
2836 qdict_del(pdict, "id");
2837 visit_type_str(opts_get_visitor(ov), &id, "id", &err);
2838 if (err) {
269e09f3
IM
2839 goto out;
2840 }
2841
c4090f8e
PB
2842 object_add(type, id, pdict, opts_get_visitor(ov), &err);
2843 if (err) {
269e09f3
IM
2844 goto out;
2845 }
c4090f8e
PB
2846 visit_end_struct(opts_get_visitor(ov), &err);
2847 if (err) {
2848 qmp_object_del(id, NULL);
2849 }
2850
269e09f3 2851out:
c4090f8e
PB
2852 opts_visitor_cleanup(ov);
2853
2854 QDECREF(pdict);
2855 g_free(id);
2856 g_free(type);
2857 g_free(dummy);
2858 if (err) {
a720a390 2859 error_report_err(err);
90e9cf28
IM
2860 return -1;
2861 }
68d98d3e
AL
2862 return 0;
2863}
2864
076b35b5
ND
2865static void set_memory_options(uint64_t *ram_slots, ram_addr_t *maxram_size,
2866 MachineClass *mc)
3b9985e9
MA
2867{
2868 uint64_t sz;
2869 const char *mem_str;
2870 const char *maxmem_str, *slots_str;
076b35b5 2871 const ram_addr_t default_ram_size = mc->default_ram_size;
3b9985e9
MA
2872 QemuOpts *opts = qemu_find_opts_singleton("memory");
2873
2874 sz = 0;
2875 mem_str = qemu_opt_get(opts, "size");
2876 if (mem_str) {
2877 if (!*mem_str) {
2878 error_report("missing 'size' option value");
2879 exit(EXIT_FAILURE);
2880 }
2881
2882 sz = qemu_opt_get_size(opts, "size", ram_size);
2883
2884 /* Fix up legacy suffix-less format */
2885 if (g_ascii_isdigit(mem_str[strlen(mem_str) - 1])) {
2886 uint64_t overflow_check = sz;
2887
2888 sz <<= 20;
2889 if ((sz >> 20) != overflow_check) {
2890 error_report("too large 'size' option value");
2891 exit(EXIT_FAILURE);
2892 }
2893 }
2894 }
2895
2896 /* backward compatibility behaviour for case "-m 0" */
2897 if (sz == 0) {
2898 sz = default_ram_size;
2899 }
2900
2901 sz = QEMU_ALIGN_UP(sz, 8192);
2902 ram_size = sz;
2903 if (ram_size != sz) {
2904 error_report("ram size too large");
2905 exit(EXIT_FAILURE);
2906 }
2907
2908 /* store value for the future use */
39101f25 2909 qemu_opt_set_number(opts, "size", ram_size, &error_abort);
3b9985e9
MA
2910 *maxram_size = ram_size;
2911
2912 maxmem_str = qemu_opt_get(opts, "maxmem");
2913 slots_str = qemu_opt_get(opts, "slots");
2914 if (maxmem_str && slots_str) {
2915 uint64_t slots;
2916
2917 sz = qemu_opt_get_size(opts, "maxmem", 0);
214224ad 2918 slots = qemu_opt_get_number(opts, "slots", 0);
3b9985e9 2919 if (sz < ram_size) {
214224ad
PK
2920 error_report("invalid value of -m option maxmem: "
2921 "maximum memory size (0x%" PRIx64 ") must be at least "
2922 "the initial memory size (0x" RAM_ADDR_FMT ")",
2923 sz, ram_size);
3b9985e9 2924 exit(EXIT_FAILURE);
214224ad
PK
2925 } else if (sz > ram_size) {
2926 if (!slots) {
2927 error_report("invalid value of -m option: maxmem was "
2928 "specified, but no hotplug slots were specified");
2929 exit(EXIT_FAILURE);
2930 }
2931 } else if (slots) {
2932 error_report("invalid value of -m option maxmem: "
2933 "memory slots were specified but maximum memory size "
2934 "(0x%" PRIx64 ") is equal to the initial memory size "
2935 "(0x" RAM_ADDR_FMT ")", sz, ram_size);
3b9985e9
MA
2936 exit(EXIT_FAILURE);
2937 }
2938
3b9985e9
MA
2939 *maxram_size = sz;
2940 *ram_slots = slots;
2941 } else if ((!maxmem_str && slots_str) ||
2942 (maxmem_str && !slots_str)) {
2943 error_report("invalid -m option value: missing "
2944 "'%s' option", slots_str ? "maxmem" : "slots");
2945 exit(EXIT_FAILURE);
2946 }
2947}
2948
902b3d5c 2949int main(int argc, char **argv, char **envp)
0824d6fc 2950{
e4bcb14c 2951 int i;
da1fcfda 2952 int snapshot, linux_boot;
7f7f9873 2953 const char *initrd_filename;
a20dd508 2954 const char *kernel_filename, *kernel_cmdline;
f05f47bb
GA
2955 const char *boot_order = NULL;
2956 const char *boot_once = NULL;
3023f332 2957 DisplayState *ds;
9f227bc3 2958 int cyls, heads, secs, translation;
1ad9580b 2959 QemuOpts *hda_opts = NULL, *opts, *machine_opts, *icount_opts = NULL;
03b0ba70 2960 QemuOptsList *olist;
cd6f1169 2961 int optind;
6530a97b 2962 const char *optarg;
d63d307f 2963 const char *loadvm = NULL;
0056ae24 2964 MachineClass *machine_class;
94fc95cd 2965 const char *cpu_model;
d44229c5 2966 const char *vga_model = NULL;
d4fce24f
PB
2967 const char *qtest_chrdev = NULL;
2968 const char *qtest_log = NULL;
93815bc2 2969 const char *pid_file = NULL;
5bb7910a 2970 const char *incoming = NULL;
821601ea 2971#ifdef CONFIG_VNC
993fbfdb 2972 int show_vnc_port = 0;
821601ea 2973#endif
3ed2d9ee 2974 bool defconfig = true;
f29a5614 2975 bool userconfig = true;
c235d738
MF
2976 const char *log_mask = NULL;
2977 const char *log_file = NULL;
23d15e86 2978 const char *trace_events = NULL;
e4858974 2979 const char *trace_file = NULL;
3b9985e9 2980 ram_addr_t maxram_size;
c270fb9e 2981 uint64_t ram_slots = 0;
abfd9ce3 2982 FILE *vmstate_dump_file = NULL;
2f78e491 2983 Error *main_loop_err = NULL;
ddbb0d09 2984 Error *err = NULL;
0b5538c3 2985
576a94d8
PB
2986 qemu_init_cpu_loop();
2987 qemu_mutex_lock_iothread();
2988
fd42deeb 2989 atexit(qemu_run_exit_notifiers);
65abca0a 2990 error_set_progname(argv[0]);
10f5bff6 2991 qemu_init_exec_dir(argv[0]);
65abca0a 2992
1b71f7c1
AF
2993 module_call_init(MODULE_INIT_QOM);
2994
4d454574 2995 qemu_add_opts(&qemu_drive_opts);
968854c8
AK
2996 qemu_add_drive_opts(&qemu_legacy_drive_opts);
2997 qemu_add_drive_opts(&qemu_common_drive_opts);
2998 qemu_add_drive_opts(&qemu_drive_opts);
4d454574
PB
2999 qemu_add_opts(&qemu_chardev_opts);
3000 qemu_add_opts(&qemu_device_opts);
3001 qemu_add_opts(&qemu_netdev_opts);
3002 qemu_add_opts(&qemu_net_opts);
3003 qemu_add_opts(&qemu_rtc_opts);
3004 qemu_add_opts(&qemu_global_opts);
3005 qemu_add_opts(&qemu_mon_opts);
3006 qemu_add_opts(&qemu_trace_opts);
3007 qemu_add_opts(&qemu_option_rom_opts);
3008 qemu_add_opts(&qemu_machine_opts);
6e1d3c1c 3009 qemu_add_opts(&qemu_mem_opts);
12b7f57e 3010 qemu_add_opts(&qemu_smp_opts);
4d454574
PB
3011 qemu_add_opts(&qemu_boot_opts);
3012 qemu_add_opts(&qemu_sandbox_opts);
3013 qemu_add_opts(&qemu_add_fd_opts);
3014 qemu_add_opts(&qemu_object_opts);
d1a0cf73 3015 qemu_add_opts(&qemu_tpmdev_opts);
888a6bc6 3016 qemu_add_opts(&qemu_realtime_opts);
5e2ac519 3017 qemu_add_opts(&qemu_msg_opts);
5d12f961 3018 qemu_add_opts(&qemu_name_opts);
0042109a 3019 qemu_add_opts(&qemu_numa_opts);
1ad9580b 3020 qemu_add_opts(&qemu_icount_opts);
a38bb079 3021 qemu_add_opts(&qemu_semihosting_config_opts);
81b2b810 3022 qemu_add_opts(&qemu_fw_cfg_opts);
4d454574 3023
5db9d4d1
LC
3024 runstate_init();
3025
ddbb0d09 3026 if (qcrypto_init(&err) < 0) {
3e515373 3027 error_report("cannot initialize crypto: %s", error_get_pretty(err));
ddbb0d09
DB
3028 exit(1);
3029 }
884f17c2 3030 rtc_clock = QEMU_CLOCK_HOST;
6875204c 3031
72cf2d4f 3032 QLIST_INIT (&vm_change_state_head);
fe98ac14 3033 os_setup_early_signal_handling();
be995c27 3034
f80f9ec9 3035 module_call_init(MODULE_INIT_MACHINE);
0056ae24 3036 machine_class = find_default_machine();
94fc95cd 3037 cpu_model = NULL;
33e3963e 3038 snapshot = 0;
9f227bc3 3039 cyls = heads = secs = 0;
3040 translation = BIOS_ATA_TRANSLATION_AUTO;
c4b1fcc0 3041
7c9d8e07 3042 nb_nics = 0;
3b46e624 3043
142c6b1a
PL
3044 bdrv_init_with_whitelist();
3045
2c02d1ad 3046 autostart = 1;
41bd639b 3047
292444cb
AL
3048 /* first pass of option parsing */
3049 optind = 1;
3050 while (optind < argc) {
3051 if (argv[optind][0] != '-') {
3052 /* disk image */
28e68d68 3053 optind++;
292444cb
AL
3054 } else {
3055 const QEMUOption *popt;
3056
3057 popt = lookup_opt(argc, argv, &optarg, &optind);
3058 switch (popt->index) {
3059 case QEMU_OPTION_nodefconfig:
3ed2d9ee 3060 defconfig = false;
292444cb 3061 break;
f29a5614
EH
3062 case QEMU_OPTION_nouserconfig:
3063 userconfig = false;
3064 break;
292444cb
AL
3065 }
3066 }
3067 }
3068
3069 if (defconfig) {
dcfb0939 3070 int ret;
f29a5614 3071 ret = qemu_read_default_config_files(userconfig);
b5a8fe5e 3072 if (ret < 0) {
dcfb0939 3073 exit(1);
292444cb
AL
3074 }
3075 }
3076
3077 /* second pass of option parsing */
cd6f1169 3078 optind = 1;
0824d6fc 3079 for(;;) {
cd6f1169 3080 if (optind >= argc)
0824d6fc 3081 break;
6530a97b 3082 if (argv[optind][0] != '-') {
99efa84d 3083 hda_opts = drive_add(IF_DEFAULT, 0, argv[optind++], HD_OPTS);
cd6f1169
FB
3084 } else {
3085 const QEMUOption *popt;
3086
6530a97b 3087 popt = lookup_opt(argc, argv, &optarg, &optind);
ad96090a
BS
3088 if (!(popt->arch_mask & arch_type)) {
3089 printf("Option %s not supported for this target\n", popt->name);
3090 exit(1);
3091 }
cd6f1169 3092 switch(popt->index) {
e43d594e
JK
3093 case QEMU_OPTION_no_kvm_irqchip: {
3094 olist = qemu_find_opts("machine");
70b94331 3095 qemu_opts_parse_noisily(olist, "kernel_irqchip=off", false);
e43d594e
JK
3096 break;
3097 }
94fc95cd
JM
3098 case QEMU_OPTION_cpu:
3099 /* hw initialization will check this */
ecf40bea 3100 cpu_model = optarg;
94fc95cd 3101 break;
cd6f1169 3102 case QEMU_OPTION_hda:
9f227bc3 3103 {
3104 char buf[256];
3105 if (cyls == 0)
3106 snprintf(buf, sizeof(buf), "%s", HD_OPTS);
3107 else
3108 snprintf(buf, sizeof(buf),
3109 "%s,cyls=%d,heads=%d,secs=%d%s",
3110 HD_OPTS , cyls, heads, secs,
3111 translation == BIOS_ATA_TRANSLATION_LBA ?
3112 ",trans=lba" :
3113 translation == BIOS_ATA_TRANSLATION_NONE ?
3114 ",trans=none" : "");
3115 drive_add(IF_DEFAULT, 0, optarg, buf);
3116 break;
3117 }
cd6f1169 3118 case QEMU_OPTION_hdb:
cc1daa40
FB
3119 case QEMU_OPTION_hdc:
3120 case QEMU_OPTION_hdd:
2292ddae
MA
3121 drive_add(IF_DEFAULT, popt->index - QEMU_OPTION_hda, optarg,
3122 HD_OPTS);
fc01f7e7 3123 break;
e4bcb14c 3124 case QEMU_OPTION_drive:
e2982c3a
MT
3125 if (drive_def(optarg) == NULL) {
3126 exit(1);
3127 }
99efa84d 3128 break;
d058fe03
GH
3129 case QEMU_OPTION_set:
3130 if (qemu_set_option(optarg) != 0)
3131 exit(1);
99efa84d 3132 break;
d0fef6fb
GH
3133 case QEMU_OPTION_global:
3134 if (qemu_global_option(optarg) != 0)
3135 exit(1);
99efa84d 3136 break;
3e3d5815 3137 case QEMU_OPTION_mtdblock:
2292ddae 3138 drive_add(IF_MTD, -1, optarg, MTD_OPTS);
3e3d5815 3139 break;
a1bb27b1 3140 case QEMU_OPTION_sd:
80f4d9fc 3141 drive_add(IF_SD, -1, optarg, SD_OPTS);
a1bb27b1 3142 break;
86f55663 3143 case QEMU_OPTION_pflash:
2292ddae 3144 drive_add(IF_PFLASH, -1, optarg, PFLASH_OPTS);
86f55663 3145 break;
cd6f1169 3146 case QEMU_OPTION_snapshot:
33e3963e
FB
3147 snapshot = 1;
3148 break;
cd6f1169 3149 case QEMU_OPTION_hdachs:
330d0414 3150 {
330d0414
FB
3151 const char *p;
3152 p = optarg;
3153 cyls = strtol(p, (char **)&p, 0);
46d4767d
FB
3154 if (cyls < 1 || cyls > 16383)
3155 goto chs_fail;
330d0414
FB
3156 if (*p != ',')
3157 goto chs_fail;
3158 p++;
3159 heads = strtol(p, (char **)&p, 0);
46d4767d
FB
3160 if (heads < 1 || heads > 16)
3161 goto chs_fail;
330d0414
FB
3162 if (*p != ',')
3163 goto chs_fail;
3164 p++;
3165 secs = strtol(p, (char **)&p, 0);
46d4767d
FB
3166 if (secs < 1 || secs > 63)
3167 goto chs_fail;
3168 if (*p == ',') {
3169 p++;
f31c41ff
PB
3170 if (!strcmp(p, "large")) {
3171 translation = BIOS_ATA_TRANSLATION_LARGE;
3172 } else if (!strcmp(p, "rechs")) {
3173 translation = BIOS_ATA_TRANSLATION_RECHS;
3174 } else if (!strcmp(p, "none")) {
46d4767d 3175 translation = BIOS_ATA_TRANSLATION_NONE;
f31c41ff 3176 } else if (!strcmp(p, "lba")) {
46d4767d 3177 translation = BIOS_ATA_TRANSLATION_LBA;
f31c41ff 3178 } else if (!strcmp(p, "auto")) {
46d4767d 3179 translation = BIOS_ATA_TRANSLATION_AUTO;
f31c41ff 3180 } else {
46d4767d 3181 goto chs_fail;
f31c41ff 3182 }
46d4767d 3183 } else if (*p != '\0') {
c4b1fcc0 3184 chs_fail:
f61eddcb 3185 error_report("invalid physical CHS format");
46d4767d 3186 exit(1);
c4b1fcc0 3187 }
99efa84d 3188 if (hda_opts != NULL) {
a8b18f8f
MA
3189 qemu_opt_set_number(hda_opts, "cyls", cyls,
3190 &error_abort);
3191 qemu_opt_set_number(hda_opts, "heads", heads,
3192 &error_abort);
3193 qemu_opt_set_number(hda_opts, "secs", secs,
3194 &error_abort);
f31c41ff 3195 if (translation == BIOS_ATA_TRANSLATION_LARGE) {
f43e47db
MA
3196 qemu_opt_set(hda_opts, "trans", "large",
3197 &error_abort);
f31c41ff 3198 } else if (translation == BIOS_ATA_TRANSLATION_RECHS) {
f43e47db
MA
3199 qemu_opt_set(hda_opts, "trans", "rechs",
3200 &error_abort);
f31c41ff 3201 } else if (translation == BIOS_ATA_TRANSLATION_LBA) {
f43e47db
MA
3202 qemu_opt_set(hda_opts, "trans", "lba",
3203 &error_abort);
f31c41ff 3204 } else if (translation == BIOS_ATA_TRANSLATION_NONE) {
f43e47db
MA
3205 qemu_opt_set(hda_opts, "trans", "none",
3206 &error_abort);
f31c41ff 3207 }
9dfd7c7a 3208 }
330d0414
FB
3209 }
3210 break;
268a362c 3211 case QEMU_OPTION_numa:
70b94331
MA
3212 opts = qemu_opts_parse_noisily(qemu_find_opts("numa"),
3213 optarg, true);
0042109a
WG
3214 if (!opts) {
3215 exit(1);
3216 }
268a362c 3217 break;
1472a95b
JS
3218 case QEMU_OPTION_display:
3219 display_type = select_display(optarg);
3220 break;
cd6f1169 3221 case QEMU_OPTION_nographic:
993fbfdb 3222 display_type = DT_NOGRAPHIC;
a20dd508 3223 break;
4d3b6f6e 3224 case QEMU_OPTION_curses:
47b05369 3225#ifdef CONFIG_CURSES
993fbfdb 3226 display_type = DT_CURSES;
47b05369 3227#else
3e515373 3228 error_report("curses support is disabled");
47b05369 3229 exit(1);
4d3b6f6e 3230#endif
47b05369 3231 break;
a171fe39 3232 case QEMU_OPTION_portrait:
9312805d
VK
3233 graphic_rotate = 90;
3234 break;
3235 case QEMU_OPTION_rotate:
3236 graphic_rotate = strtol(optarg, (char **) &optarg, 10);
3237 if (graphic_rotate != 0 && graphic_rotate != 90 &&
3238 graphic_rotate != 180 && graphic_rotate != 270) {
f61eddcb 3239 error_report("only 90, 180, 270 deg rotation is available");
9312805d
VK
3240 exit(1);
3241 }
a171fe39 3242 break;
cd6f1169 3243 case QEMU_OPTION_kernel:
79087c78
MA
3244 qemu_opts_set(qemu_find_opts("machine"), 0, "kernel", optarg,
3245 &error_abort);
a0abe474
PM
3246 break;
3247 case QEMU_OPTION_initrd:
79087c78
MA
3248 qemu_opts_set(qemu_find_opts("machine"), 0, "initrd", optarg,
3249 &error_abort);
a20dd508 3250 break;
cd6f1169 3251 case QEMU_OPTION_append:
79087c78
MA
3252 qemu_opts_set(qemu_find_opts("machine"), 0, "append", optarg,
3253 &error_abort);
313aa567 3254 break;
412beee6 3255 case QEMU_OPTION_dtb:
79087c78
MA
3256 qemu_opts_set(qemu_find_opts("machine"), 0, "dtb", optarg,
3257 &error_abort);
412beee6 3258 break;
cd6f1169 3259 case QEMU_OPTION_cdrom:
2292ddae 3260 drive_add(IF_DEFAULT, 2, optarg, CDROM_OPTS);
36b486bb 3261 break;
cd6f1169 3262 case QEMU_OPTION_boot:
70b94331
MA
3263 opts = qemu_opts_parse_noisily(qemu_find_opts("boot-opts"),
3264 optarg, true);
8281abd5
MA
3265 if (!opts) {
3266 exit(1);
36b486bb
FB
3267 }
3268 break;
cd6f1169 3269 case QEMU_OPTION_fda:
cd6f1169 3270 case QEMU_OPTION_fdb:
2292ddae
MA
3271 drive_add(IF_FLOPPY, popt->index - QEMU_OPTION_fda,
3272 optarg, FD_OPTS);
c45886db 3273 break;
52ca8d6a
FB
3274 case QEMU_OPTION_no_fd_bootchk:
3275 fd_bootchk = 0;
3276 break;
a1ea458f 3277 case QEMU_OPTION_netdev:
3329f07b 3278 if (net_client_parse(qemu_find_opts("netdev"), optarg) == -1) {
a1ea458f
MM
3279 exit(1);
3280 }
3281 break;
7c9d8e07 3282 case QEMU_OPTION_net:
3329f07b 3283 if (net_client_parse(qemu_find_opts("net"), optarg) == -1) {
c4b1fcc0
FB
3284 exit(1);
3285 }
702c651c 3286 break;
f9dadc98
RS
3287#ifdef CONFIG_LIBISCSI
3288 case QEMU_OPTION_iscsi:
70b94331
MA
3289 opts = qemu_opts_parse_noisily(qemu_find_opts("iscsi"),
3290 optarg, false);
f9dadc98
RS
3291 if (!opts) {
3292 exit(1);
3293 }
3294 break;
3295#endif
c7f74643
FB
3296#ifdef CONFIG_SLIRP
3297 case QEMU_OPTION_tftp:
ad196a9d 3298 legacy_tftp_prefix = optarg;
9bf05444 3299 break;
47d5d01a 3300 case QEMU_OPTION_bootp:
ad196a9d 3301 legacy_bootp_filename = optarg;
47d5d01a 3302 break;
9bf05444 3303 case QEMU_OPTION_redir:
0752706d
MA
3304 if (net_slirp_redir(optarg) < 0)
3305 exit(1);
9bf05444 3306 break;
c7f74643 3307#endif
dc72ac14 3308 case QEMU_OPTION_bt:
bd3c948d 3309 add_device_config(DEV_BT, optarg);
dc72ac14 3310 break;
1d14ffa9
FB
3311 case QEMU_OPTION_audio_help:
3312 AUD_help ();
3313 exit (0);
3314 break;
3315 case QEMU_OPTION_soundhw:
3316 select_soundhw (optarg);
3317 break;
cd6f1169 3318 case QEMU_OPTION_h:
15f82208 3319 help(0);
cd6f1169 3320 break;
9bd7e6d9
PB
3321 case QEMU_OPTION_version:
3322 version();
3323 exit(0);
3324 break;
3b9985e9 3325 case QEMU_OPTION_m:
70b94331
MA
3326 opts = qemu_opts_parse_noisily(qemu_find_opts("memory"),
3327 optarg, true);
6e1d3c1c
IM
3328 if (!opts) {
3329 exit(EXIT_FAILURE);
3330 }
cd6f1169 3331 break;
d1a0cf73
SB
3332#ifdef CONFIG_TPM
3333 case QEMU_OPTION_tpmdev:
3334 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg) < 0) {
3335 exit(1);
3336 }
3337 break;
3338#endif
c902760f
MT
3339 case QEMU_OPTION_mempath:
3340 mem_path = optarg;
3341 break;
c902760f
MT
3342 case QEMU_OPTION_mem_prealloc:
3343 mem_prealloc = 1;
3344 break;
cd6f1169 3345 case QEMU_OPTION_d:
c235d738
MF
3346 log_mask = optarg;
3347 break;
3348 case QEMU_OPTION_D:
3349 log_file = optarg;
cd6f1169 3350 break;
cd6f1169 3351 case QEMU_OPTION_s:
ef0c4a0d 3352 add_device_config(DEV_GDB, "tcp::" DEFAULT_GDBSTUB_PORT);
cd6f1169 3353 break;
59030a8c 3354 case QEMU_OPTION_gdb:
ef0c4a0d 3355 add_device_config(DEV_GDB, optarg);
cd6f1169 3356 break;
cd6f1169 3357 case QEMU_OPTION_L:
4524051c
GH
3358 if (data_dir_idx < ARRAY_SIZE(data_dir)) {
3359 data_dir[data_dir_idx++] = optarg;
3360 }
cd6f1169 3361 break;
1192dad8 3362 case QEMU_OPTION_bios:
79087c78
MA
3363 qemu_opts_set(qemu_find_opts("machine"), 0, "firmware", optarg,
3364 &error_abort);
1192dad8 3365 break;
1b530a6d
AJ
3366 case QEMU_OPTION_singlestep:
3367 singlestep = 1;
3368 break;
cd6f1169 3369 case QEMU_OPTION_S:
3c07f8e8 3370 autostart = 0;
cd6f1169 3371 break;
99efa84d
MA
3372 case QEMU_OPTION_k:
3373 keyboard_layout = optarg;
3374 break;
ee22c2f7
FB
3375 case QEMU_OPTION_localtime:
3376 rtc_utc = 0;
3377 break;
3893c124 3378 case QEMU_OPTION_vga:
a369da5f 3379 vga_model = optarg;
7f1b17f2 3380 default_vga = 0;
1bfe856e 3381 break;
e9b137c2
FB
3382 case QEMU_OPTION_g:
3383 {
3384 const char *p;
3385 int w, h, depth;
3386 p = optarg;
3387 w = strtol(p, (char **)&p, 10);
3388 if (w <= 0) {
3389 graphic_error:
f61eddcb 3390 error_report("invalid resolution or depth");
e9b137c2
FB
3391 exit(1);
3392 }
3393 if (*p != 'x')
3394 goto graphic_error;
3395 p++;
3396 h = strtol(p, (char **)&p, 10);
3397 if (h <= 0)
3398 goto graphic_error;
3399 if (*p == 'x') {
3400 p++;
3401 depth = strtol(p, (char **)&p, 10);
5fafdf24 3402 if (depth != 8 && depth != 15 && depth != 16 &&
e9b137c2
FB
3403 depth != 24 && depth != 32)
3404 goto graphic_error;
3405 } else if (*p == '\0') {
3406 depth = graphic_depth;
3407 } else {
3408 goto graphic_error;
3409 }
3b46e624 3410
e9b137c2
FB
3411 graphic_width = w;
3412 graphic_height = h;
3413 graphic_depth = depth;
3414 }
3415 break;
20d8a3ed
TS
3416 case QEMU_OPTION_echr:
3417 {
3418 char *r;
3419 term_escape_char = strtol(optarg, &r, 0);
3420 if (r == optarg)
3421 printf("Bad argument to echr\n");
3422 break;
3423 }
82c643ff 3424 case QEMU_OPTION_monitor:
6ca5582d 3425 default_monitor = 0;
70e098af 3426 if (strncmp(optarg, "none", 4)) {
4821cd4c 3427 monitor_parse(optarg, "readline", false);
70e098af 3428 }
6ca5582d
GH
3429 break;
3430 case QEMU_OPTION_qmp:
4821cd4c
HR
3431 monitor_parse(optarg, "control", false);
3432 default_monitor = 0;
3433 break;
3434 case QEMU_OPTION_qmp_pretty:
3435 monitor_parse(optarg, "control", true);
2d114dc1 3436 default_monitor = 0;
82c643ff 3437 break;
22a0e04b 3438 case QEMU_OPTION_mon:
70b94331
MA
3439 opts = qemu_opts_parse_noisily(qemu_find_opts("mon"), optarg,
3440 true);
22a0e04b 3441 if (!opts) {
22a0e04b
GH
3442 exit(1);
3443 }
2d114dc1 3444 default_monitor = 0;
22a0e04b 3445 break;
191bc01b 3446 case QEMU_OPTION_chardev:
70b94331
MA
3447 opts = qemu_opts_parse_noisily(qemu_find_opts("chardev"),
3448 optarg, true);
191bc01b 3449 if (!opts) {
191bc01b
GH
3450 exit(1);
3451 }
191bc01b 3452 break;
74db920c 3453 case QEMU_OPTION_fsdev:
03b0ba70
GH
3454 olist = qemu_find_opts("fsdev");
3455 if (!olist) {
5dfdae81 3456 error_report("fsdev support is disabled");
03b0ba70
GH
3457 exit(1);
3458 }
70b94331 3459 opts = qemu_opts_parse_noisily(olist, optarg, true);
74db920c 3460 if (!opts) {
74db920c
GS
3461 exit(1);
3462 }
3463 break;
3d54abc7 3464 case QEMU_OPTION_virtfs: {
e14ea479
SH
3465 QemuOpts *fsdev;
3466 QemuOpts *device;
84a87cc4 3467 const char *writeout, *sock_fd, *socket;
3d54abc7 3468
03b0ba70
GH
3469 olist = qemu_find_opts("virtfs");
3470 if (!olist) {
5dfdae81 3471 error_report("virtfs support is disabled");
03b0ba70
GH
3472 exit(1);
3473 }
70b94331 3474 opts = qemu_opts_parse_noisily(olist, optarg, true);
3d54abc7 3475 if (!opts) {
3d54abc7
GS
3476 exit(1);
3477 }
3478
fbcbf101 3479 if (qemu_opt_get(opts, "fsdriver") == NULL ||
99519f0a 3480 qemu_opt_get(opts, "mount_tag") == NULL) {
8afb9000 3481 error_report("Usage: -virtfs fsdriver,mount_tag=tag");
9ce56db6
VJ
3482 exit(1);
3483 }
e14ea479 3484 fsdev = qemu_opts_create(qemu_find_opts("fsdev"),
8be7e7e4
LC
3485 qemu_opt_get(opts, "mount_tag"),
3486 1, NULL);
e14ea479 3487 if (!fsdev) {
f61eddcb
EH
3488 error_report("duplicate fsdev id: %s",
3489 qemu_opt_get(opts, "mount_tag"));
3d54abc7
GS
3490 exit(1);
3491 }
d3ab98e6
AK
3492
3493 writeout = qemu_opt_get(opts, "writeout");
3494 if (writeout) {
3495#ifdef CONFIG_SYNC_FILE_RANGE
f43e47db 3496 qemu_opt_set(fsdev, "writeout", writeout, &error_abort);
d3ab98e6 3497#else
f61eddcb
EH
3498 error_report("writeout=immediate not supported "
3499 "on this platform");
d3ab98e6
AK
3500 exit(1);
3501#endif
3502 }
f43e47db
MA
3503 qemu_opt_set(fsdev, "fsdriver",
3504 qemu_opt_get(opts, "fsdriver"), &error_abort);
3505 qemu_opt_set(fsdev, "path", qemu_opt_get(opts, "path"),
3506 &error_abort);
e14ea479 3507 qemu_opt_set(fsdev, "security_model",
f43e47db
MA
3508 qemu_opt_get(opts, "security_model"),
3509 &error_abort);
84a87cc4
MK
3510 socket = qemu_opt_get(opts, "socket");
3511 if (socket) {
f43e47db 3512 qemu_opt_set(fsdev, "socket", socket, &error_abort);
84a87cc4 3513 }
4c793dda
MK
3514 sock_fd = qemu_opt_get(opts, "sock_fd");
3515 if (sock_fd) {
f43e47db 3516 qemu_opt_set(fsdev, "sock_fd", sock_fd, &error_abort);
4c793dda 3517 }
e14ea479 3518
2c74c2cb 3519 qemu_opt_set_bool(fsdev, "readonly",
cccb7967
MA
3520 qemu_opt_get_bool(opts, "readonly", 0),
3521 &error_abort);
87ea75d5
PC
3522 device = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
3523 &error_abort);
f43e47db 3524 qemu_opt_set(device, "driver", "virtio-9p-pci", &error_abort);
e14ea479 3525 qemu_opt_set(device, "fsdev",
f43e47db 3526 qemu_opt_get(opts, "mount_tag"), &error_abort);
e14ea479 3527 qemu_opt_set(device, "mount_tag",
f43e47db 3528 qemu_opt_get(opts, "mount_tag"), &error_abort);
3d54abc7
GS
3529 break;
3530 }
9db221ae
AK
3531 case QEMU_OPTION_virtfs_synth: {
3532 QemuOpts *fsdev;
3533 QemuOpts *device;
3534
8be7e7e4
LC
3535 fsdev = qemu_opts_create(qemu_find_opts("fsdev"), "v_synth",
3536 1, NULL);
9db221ae 3537 if (!fsdev) {
f61eddcb 3538 error_report("duplicate option: %s", "virtfs_synth");
9db221ae
AK
3539 exit(1);
3540 }
f43e47db 3541 qemu_opt_set(fsdev, "fsdriver", "synth", &error_abort);
9db221ae 3542
87ea75d5
PC
3543 device = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
3544 &error_abort);
f43e47db
MA
3545 qemu_opt_set(device, "driver", "virtio-9p-pci", &error_abort);
3546 qemu_opt_set(device, "fsdev", "v_synth", &error_abort);
3547 qemu_opt_set(device, "mount_tag", "v_synth", &error_abort);
9db221ae
AK
3548 break;
3549 }
82c643ff 3550 case QEMU_OPTION_serial:
998bbd74
GH
3551 add_device_config(DEV_SERIAL, optarg);
3552 default_serial = 0;
18141ed6
JK
3553 if (strncmp(optarg, "mon:", 4) == 0) {
3554 default_monitor = 0;
3555 }
82c643ff 3556 break;
9dd986cc 3557 case QEMU_OPTION_watchdog:
09aaa160 3558 if (watchdog) {
f61eddcb 3559 error_report("only one watchdog option may be given");
09aaa160
MA
3560 return 1;
3561 }
3562 watchdog = optarg;
9dd986cc
RJ
3563 break;
3564 case QEMU_OPTION_watchdog_action:
3565 if (select_watchdog_action(optarg) == -1) {
3e515373 3566 error_report("unknown -watchdog-action parameter");
9dd986cc
RJ
3567 exit(1);
3568 }
3569 break;
51ecf136 3570 case QEMU_OPTION_virtiocon:
aee1b935
GH
3571 add_device_config(DEV_VIRTCON, optarg);
3572 default_virtcon = 0;
18141ed6
JK
3573 if (strncmp(optarg, "mon:", 4) == 0) {
3574 default_monitor = 0;
3575 }
51ecf136 3576 break;
6508fe59 3577 case QEMU_OPTION_parallel:
6a5e8b0e
GH
3578 add_device_config(DEV_PARALLEL, optarg);
3579 default_parallel = 0;
18141ed6
JK
3580 if (strncmp(optarg, "mon:", 4) == 0) {
3581 default_monitor = 0;
3582 }
6508fe59 3583 break;
c9f398e5
PA
3584 case QEMU_OPTION_debugcon:
3585 add_device_config(DEV_DEBUGCON, optarg);
3586 break;
99efa84d
MA
3587 case QEMU_OPTION_loadvm:
3588 loadvm = optarg;
3589 break;
d63d307f
FB
3590 case QEMU_OPTION_full_screen:
3591 full_screen = 1;
3592 break;
43523e93
TS
3593 case QEMU_OPTION_no_frame:
3594 no_frame = 1;
3595 break;
3780e197
TS
3596 case QEMU_OPTION_alt_grab:
3597 alt_grab = 1;
3598 break;
0ca9f8a4
DK
3599 case QEMU_OPTION_ctrl_grab:
3600 ctrl_grab = 1;
3601 break;
667accab
TS
3602 case QEMU_OPTION_no_quit:
3603 no_quit = 1;
3604 break;
7d957bd8 3605 case QEMU_OPTION_sdl:
24f6ff86 3606#ifdef CONFIG_SDL
993fbfdb 3607 display_type = DT_SDL;
7d957bd8 3608 break;
58fc096c 3609#else
f61eddcb 3610 error_report("SDL support is disabled");
58fc096c 3611 exit(1);
667accab 3612#endif
f7cce898 3613 case QEMU_OPTION_pidfile:
93815bc2 3614 pid_file = optarg;
f7cce898 3615 break;
a09db21f
FB
3616 case QEMU_OPTION_win2k_hack:
3617 win2k_install_hack = 1;
3618 break;
433acf0d
JK
3619 case QEMU_OPTION_rtc_td_hack: {
3620 static GlobalProperty slew_lost_ticks[] = {
3621 {
3622 .driver = "mc146818rtc",
3623 .property = "lost_tick_policy",
3624 .value = "slew",
3625 },
3626 { /* end of list */ }
3627 };
3628
3629 qdev_prop_register_global_list(slew_lost_ticks);
73822ec8 3630 break;
433acf0d 3631 }
8a92ea2f 3632 case QEMU_OPTION_acpitable:
70b94331
MA
3633 opts = qemu_opts_parse_noisily(qemu_find_opts("acpi"),
3634 optarg, true);
f46e720a
LE
3635 if (!opts) {
3636 exit(1);
3637 }
0c764a9d 3638 do_acpitable_option(opts);
8a92ea2f 3639 break;
b6f6e3d3 3640 case QEMU_OPTION_smbios:
70b94331
MA
3641 opts = qemu_opts_parse_noisily(qemu_find_opts("smbios"),
3642 optarg, false);
f46e720a
LE
3643 if (!opts) {
3644 exit(1);
3645 }
4f953d2f 3646 do_smbios_option(opts);
b6f6e3d3 3647 break;
81b2b810 3648 case QEMU_OPTION_fwcfg:
70b94331
MA
3649 opts = qemu_opts_parse_noisily(qemu_find_opts("fw_cfg"),
3650 optarg, true);
81b2b810
GS
3651 if (opts == NULL) {
3652 exit(1);
3653 }
3654 break;
7ba1e619 3655 case QEMU_OPTION_enable_kvm:
303d4e86 3656 olist = qemu_find_opts("machine");
70b94331 3657 qemu_opts_parse_noisily(olist, "accel=kvm", false);
303d4e86 3658 break;
364c3e6b 3659 case QEMU_OPTION_M:
303d4e86
AP
3660 case QEMU_OPTION_machine:
3661 olist = qemu_find_opts("machine");
70b94331 3662 opts = qemu_opts_parse_noisily(olist, optarg, true);
303d4e86 3663 if (!opts) {
303d4e86
AP
3664 exit(1);
3665 }
7ba1e619 3666 break;
a0dac021
JK
3667 case QEMU_OPTION_no_kvm:
3668 olist = qemu_find_opts("machine");
70b94331 3669 qemu_opts_parse_noisily(olist, "accel=tcg", false);
a0dac021 3670 break;
4086bde8 3671 case QEMU_OPTION_no_kvm_pit: {
515cb8ef 3672 error_report("warning: ignoring deprecated option");
4086bde8
JK
3673 break;
3674 }
c21fb4f8
JK
3675 case QEMU_OPTION_no_kvm_pit_reinjection: {
3676 static GlobalProperty kvm_pit_lost_tick_policy[] = {
3677 {
3678 .driver = "kvm-pit",
3679 .property = "lost_tick_policy",
3680 .value = "discard",
3681 },
3682 { /* end of list */ }
3683 };
3684
515cb8ef
EH
3685 error_report("warning: deprecated, replaced by "
3686 "-global kvm-pit.lost_tick_policy=discard");
c21fb4f8
JK
3687 qdev_prop_register_global_list(kvm_pit_lost_tick_policy);
3688 break;
3689 }
bb36d470 3690 case QEMU_OPTION_usb:
fa5358c6 3691 olist = qemu_find_opts("machine");
70b94331 3692 qemu_opts_parse_noisily(olist, "usb=on", false);
bb36d470 3693 break;
a594cfbf 3694 case QEMU_OPTION_usbdevice:
fa5358c6 3695 olist = qemu_find_opts("machine");
70b94331 3696 qemu_opts_parse_noisily(olist, "usb=on", false);
bd3c948d
GH
3697 add_device_config(DEV_USB, optarg);
3698 break;
3699 case QEMU_OPTION_device:
70b94331
MA
3700 if (!qemu_opts_parse_noisily(qemu_find_opts("device"),
3701 optarg, true)) {
f31d07d1
GH
3702 exit(1);
3703 }
a594cfbf 3704 break;
6a00d601 3705 case QEMU_OPTION_smp:
70b94331
MA
3706 if (!qemu_opts_parse_noisily(qemu_find_opts("smp-opts"),
3707 optarg, true)) {
6be68d7e
JS
3708 exit(1);
3709 }
6a00d601 3710 break;
99efa84d 3711 case QEMU_OPTION_vnc:
70b94331 3712 {
821601ea 3713#ifdef CONFIG_VNC
70b94331
MA
3714 Error *local_err = NULL;
3715
3716 if (vnc_parse(optarg, &local_err) == NULL) {
3717 error_report_err(local_err);
4db14629
GH
3718 exit(1);
3719 }
821601ea 3720#else
f61eddcb 3721 error_report("VNC support is disabled");
821601ea
JS
3722 exit(1);
3723#endif
3724 break;
70b94331 3725 }
6515b203
FB
3726 case QEMU_OPTION_no_acpi:
3727 acpi_enabled = 0;
3728 break;
16b29ae1
AL
3729 case QEMU_OPTION_no_hpet:
3730 no_hpet = 1;
3731 break;
7d4c3d53
MA
3732 case QEMU_OPTION_balloon:
3733 if (balloon_parse(optarg) < 0) {
3e515373 3734 error_report("unknown -balloon argument %s", optarg);
7d4c3d53
MA
3735 exit(1);
3736 }
df97b920 3737 break;
d1beab82
FB
3738 case QEMU_OPTION_no_reboot:
3739 no_reboot = 1;
3740 break;
b2f76161
AJ
3741 case QEMU_OPTION_no_shutdown:
3742 no_shutdown = 1;
3743 break;
9467cd46
AZ
3744 case QEMU_OPTION_show_cursor:
3745 cursor_hide = 0;
3746 break;
8fcb1b90
BS
3747 case QEMU_OPTION_uuid:
3748 if(qemu_uuid_parse(optarg, qemu_uuid) < 0) {
4cd70f34 3749 error_report("failed to parse UUID string: wrong format");
8fcb1b90
BS
3750 exit(1);
3751 }
fc3b3295 3752 qemu_uuid_set = true;
8fcb1b90 3753 break;
99efa84d
MA
3754 case QEMU_OPTION_option_rom:
3755 if (nb_option_roms >= MAX_OPTION_ROMS) {
3e515373 3756 error_report("too many option ROMs");
99efa84d
MA
3757 exit(1);
3758 }
70b94331
MA
3759 opts = qemu_opts_parse_noisily(qemu_find_opts("option-rom"),
3760 optarg, true);
49295ebc
MA
3761 if (!opts) {
3762 exit(1);
3763 }
2e55e842
GN
3764 option_rom[nb_option_roms].name = qemu_opt_get(opts, "romfile");
3765 option_rom[nb_option_roms].bootindex =
3766 qemu_opt_get_number(opts, "bootindex", -1);
3767 if (!option_rom[nb_option_roms].name) {
f61eddcb 3768 error_report("Option ROM file is not specified");
2e55e842
GN
3769 exit(1);
3770 }
99efa84d
MA
3771 nb_option_roms++;
3772 break;
8e71621f 3773 case QEMU_OPTION_semihosting:
cfe67cef
LA
3774 semihosting.enabled = true;
3775 semihosting.target = SEMIHOSTING_TARGET_AUTO;
a38bb079
LI
3776 break;
3777 case QEMU_OPTION_semihosting_config:
cfe67cef 3778 semihosting.enabled = true;
70b94331
MA
3779 opts = qemu_opts_parse_noisily(qemu_find_opts("semihosting-config"),
3780 optarg, false);
a38bb079 3781 if (opts != NULL) {
cfe67cef 3782 semihosting.enabled = qemu_opt_get_bool(opts, "enable",
a38bb079
LI
3783 true);
3784 const char *target = qemu_opt_get(opts, "target");
3785 if (target != NULL) {
3786 if (strcmp("native", target) == 0) {
cfe67cef 3787 semihosting.target = SEMIHOSTING_TARGET_NATIVE;
a38bb079 3788 } else if (strcmp("gdb", target) == 0) {
cfe67cef 3789 semihosting.target = SEMIHOSTING_TARGET_GDB;
a38bb079 3790 } else if (strcmp("auto", target) == 0) {
cfe67cef 3791 semihosting.target = SEMIHOSTING_TARGET_AUTO;
a38bb079 3792 } else {
3e515373 3793 error_report("unsupported semihosting-config %s",
f61eddcb 3794 optarg);
a38bb079
LI
3795 exit(1);
3796 }
3797 } else {
cfe67cef 3798 semihosting.target = SEMIHOSTING_TARGET_AUTO;
a38bb079 3799 }
a59d31a1
LA
3800 /* Set semihosting argument count and vector */
3801 qemu_opt_foreach(opts, add_semihosting_arg,
3802 &semihosting, NULL);
a38bb079 3803 } else {
3e515373 3804 error_report("unsupported semihosting-config %s", optarg);
a38bb079
LI
3805 exit(1);
3806 }
8e71621f 3807 break;
88eed34a 3808 case QEMU_OPTION_tdf:
515cb8ef 3809 error_report("warning: ignoring deprecated option");
88eed34a 3810 break;
c35734b2 3811 case QEMU_OPTION_name:
70b94331
MA
3812 opts = qemu_opts_parse_noisily(qemu_find_opts("name"),
3813 optarg, true);
5d12f961
DDAG
3814 if (!opts) {
3815 exit(1);
3816 }
c35734b2 3817 break;
66508601
BS
3818 case QEMU_OPTION_prom_env:
3819 if (nb_prom_envs >= MAX_PROM_ENVS) {
3e515373 3820 error_report("too many prom variables");
66508601
BS
3821 exit(1);
3822 }
3823 prom_envs[nb_prom_envs] = optarg;
3824 nb_prom_envs++;
3825 break;
2b8f2d41
AZ
3826 case QEMU_OPTION_old_param:
3827 old_param = 1;
05ebd537 3828 break;
f3dcfada 3829 case QEMU_OPTION_clock:
6d327171
AB
3830 /* Clock options no longer exist. Keep this option for
3831 * backward compatibility.
3832 */
f3dcfada 3833 break;
7e0af5d0 3834 case QEMU_OPTION_startdate:
1ed2fc1f
JK
3835 configure_rtc_date_offset(optarg, 1);
3836 break;
3837 case QEMU_OPTION_rtc:
70b94331
MA
3838 opts = qemu_opts_parse_noisily(qemu_find_opts("rtc"), optarg,
3839 false);
1ed2fc1f 3840 if (!opts) {
1ed2fc1f 3841 exit(1);
7e0af5d0 3842 }
1ed2fc1f 3843 configure_rtc(opts);
7e0af5d0 3844 break;
26a5f13b 3845 case QEMU_OPTION_tb_size:
d5ab9713
JK
3846 tcg_tb_size = strtol(optarg, NULL, 0);
3847 if (tcg_tb_size < 0) {
3848 tcg_tb_size = 0;
3849 }
26a5f13b 3850 break;
2e70f6ef 3851 case QEMU_OPTION_icount:
70b94331
MA
3852 icount_opts = qemu_opts_parse_noisily(qemu_find_opts("icount"),
3853 optarg, true);
1ad9580b
ST
3854 if (!icount_opts) {
3855 exit(1);
3856 }
2e70f6ef 3857 break;
5bb7910a 3858 case QEMU_OPTION_incoming:
7c76235a
DDAG
3859 if (!incoming) {
3860 runstate_set(RUN_STATE_INMIGRATE);
3861 }
5bb7910a
AL
3862 incoming = optarg;
3863 break;
d8c208dd 3864 case QEMU_OPTION_nodefaults:
d44229c5 3865 has_defaults = 0;
d8c208dd 3866 break;
e37630ca 3867 case QEMU_OPTION_xen_domid:
ad96090a
BS
3868 if (!(xen_available())) {
3869 printf("Option %s not supported for this target\n", popt->name);
3870 exit(1);
3871 }
e37630ca
AL
3872 xen_domid = atoi(optarg);
3873 break;
3874 case QEMU_OPTION_xen_create:
ad96090a
BS
3875 if (!(xen_available())) {
3876 printf("Option %s not supported for this target\n", popt->name);
3877 exit(1);
3878 }
e37630ca
AL
3879 xen_mode = XEN_CREATE;
3880 break;
3881 case QEMU_OPTION_xen_attach:
ad96090a
BS
3882 if (!(xen_available())) {
3883 printf("Option %s not supported for this target\n", popt->name);
3884 exit(1);
3885 }
e37630ca
AL
3886 xen_mode = XEN_ATTACH;
3887 break;
ab6540d5 3888 case QEMU_OPTION_trace:
e4858974 3889 {
70b94331
MA
3890 opts = qemu_opts_parse_noisily(qemu_find_opts("trace"),
3891 optarg, false);
e4858974
LV
3892 if (!opts) {
3893 exit(1);
ab6540d5 3894 }
23d15e86 3895 trace_events = qemu_opt_get(opts, "events");
e4858974 3896 trace_file = qemu_opt_get(opts, "file");
ab6540d5 3897 break;
e4858974 3898 }
715a664a
GH
3899 case QEMU_OPTION_readconfig:
3900 {
dcfb0939
KW
3901 int ret = qemu_read_config_file(optarg);
3902 if (ret < 0) {
f61eddcb
EH
3903 error_report("read config %s: %s", optarg,
3904 strerror(-ret));
715a664a
GH
3905 exit(1);
3906 }
715a664a
GH
3907 break;
3908 }
29b0040b
GH
3909 case QEMU_OPTION_spice:
3910 olist = qemu_find_opts("spice");
3911 if (!olist) {
5dfdae81 3912 error_report("spice support is disabled");
29b0040b
GH
3913 exit(1);
3914 }
70b94331 3915 opts = qemu_opts_parse_noisily(olist, optarg, false);
29b0040b 3916 if (!opts) {
29b0040b
GH
3917 exit(1);
3918 }
f963e4d0 3919 display_remote++;
29b0040b 3920 break;
715a664a
GH
3921 case QEMU_OPTION_writeconfig:
3922 {
3923 FILE *fp;
3924 if (strcmp(optarg, "-") == 0) {
3925 fp = stdout;
3926 } else {
3927 fp = fopen(optarg, "w");
3928 if (fp == NULL) {
f61eddcb
EH
3929 error_report("open %s: %s", optarg,
3930 strerror(errno));
715a664a
GH
3931 exit(1);
3932 }
3933 }
3934 qemu_config_write(fp);
7fb8b5d9
CG
3935 if (fp != stdout) {
3936 fclose(fp);
3937 }
715a664a
GH
3938 break;
3939 }
c7f0f3b1
AL
3940 case QEMU_OPTION_qtest:
3941 qtest_chrdev = optarg;
3942 break;
3943 case QEMU_OPTION_qtest_log:
3944 qtest_log = optarg;
3945 break;
7d76ad4f 3946 case QEMU_OPTION_sandbox:
70b94331
MA
3947 opts = qemu_opts_parse_noisily(qemu_find_opts("sandbox"),
3948 optarg, true);
7d76ad4f 3949 if (!opts) {
49295ebc 3950 exit(1);
7d76ad4f
EO
3951 }
3952 break;
587ed6be
CB
3953 case QEMU_OPTION_add_fd:
3954#ifndef _WIN32
70b94331
MA
3955 opts = qemu_opts_parse_noisily(qemu_find_opts("add-fd"),
3956 optarg, false);
587ed6be 3957 if (!opts) {
49295ebc 3958 exit(1);
587ed6be
CB
3959 }
3960#else
3961 error_report("File descriptor passing is disabled on this "
3962 "platform");
3963 exit(1);
3964#endif
3965 break;
68d98d3e 3966 case QEMU_OPTION_object:
70b94331
MA
3967 opts = qemu_opts_parse_noisily(qemu_find_opts("object"),
3968 optarg, true);
49295ebc
MA
3969 if (!opts) {
3970 exit(1);
3971 }
68d98d3e 3972 break;
888a6bc6 3973 case QEMU_OPTION_realtime:
70b94331
MA
3974 opts = qemu_opts_parse_noisily(qemu_find_opts("realtime"),
3975 optarg, false);
888a6bc6
SM
3976 if (!opts) {
3977 exit(1);
3978 }
28d16f38 3979 enable_mlock = qemu_opt_get_bool(opts, "mlock", true);
888a6bc6 3980 break;
5e2ac519 3981 case QEMU_OPTION_msg:
70b94331
MA
3982 opts = qemu_opts_parse_noisily(qemu_find_opts("msg"), optarg,
3983 false);
5e2ac519
SA
3984 if (!opts) {
3985 exit(1);
3986 }
3987 configure_msg(opts);
3988 break;
abfd9ce3 3989 case QEMU_OPTION_dump_vmstate:
522abf69 3990 if (vmstate_dump_file) {
f61eddcb
EH
3991 error_report("only one '-dump-vmstate' "
3992 "option may be given");
522abf69
GA
3993 exit(1);
3994 }
abfd9ce3
AS
3995 vmstate_dump_file = fopen(optarg, "w");
3996 if (vmstate_dump_file == NULL) {
f61eddcb 3997 error_report("open %s: %s", optarg, strerror(errno));
abfd9ce3
AS
3998 exit(1);
3999 }
4000 break;
59a5264b
JS
4001 default:
4002 os_parse_cmd_args(popt->index, optarg);
cd6f1169 4003 }
0824d6fc
FB
4004 }
4005 }
364c3e6b
MA
4006
4007 opts = qemu_get_machine_opts();
4008 optarg = qemu_opt_get(opts, "type");
4009 if (optarg) {
4010 machine_class = machine_parse(optarg);
4011 }
4012
076b35b5 4013 if (machine_class == NULL) {
8afb9000
EH
4014 error_report("No machine specified, and there is no default");
4015 error_printf("Use -machine help to list supported machines\n");
076b35b5
ND
4016 exit(1);
4017 }
4018
4019 set_memory_options(&ram_slots, &maxram_size, machine_class);
3b9985e9 4020
0f0bc3f1 4021 loc_set_none();
c235d738 4022
2d9c2725
IM
4023 os_daemonize();
4024
2f78e491 4025 if (qemu_init_main_loop(&main_loop_err)) {
565f65d2 4026 error_report_err(main_loop_err);
1c53786f
PB
4027 exit(1);
4028 }
4029
28d0de7a
MA
4030 if (qemu_opts_foreach(qemu_find_opts("sandbox"),
4031 parse_sandbox, NULL, NULL)) {
7d76ad4f
EO
4032 exit(1);
4033 }
4034
28d0de7a
MA
4035 if (qemu_opts_foreach(qemu_find_opts("name"),
4036 parse_name, NULL, NULL)) {
5b9d313e
DDAG
4037 exit(1);
4038 }
4039
587ed6be 4040#ifndef _WIN32
28d0de7a
MA
4041 if (qemu_opts_foreach(qemu_find_opts("add-fd"),
4042 parse_add_fd, NULL, NULL)) {
587ed6be
CB
4043 exit(1);
4044 }
4045
28d0de7a
MA
4046 if (qemu_opts_foreach(qemu_find_opts("add-fd"),
4047 cleanup_add_fd, NULL, NULL)) {
587ed6be
CB
4048 exit(1);
4049 }
4050#endif
4051
0056ae24
MA
4052 current_machine = MACHINE(object_new(object_class_get_name(
4053 OBJECT_CLASS(machine_class))));
52eb3dfd
MA
4054 if (machine_help_func(qemu_get_machine_opts(), current_machine)) {
4055 exit(0);
4056 }
0056ae24
MA
4057 object_property_add_child(object_get_root(), "machine",
4058 OBJECT(current_machine), &error_abort);
b5c2c3d0 4059 cpu_exec_init_all();
0056ae24 4060
958db90c
MA
4061 if (machine_class->hw_version) {
4062 qemu_set_version(machine_class->hw_version);
93bfef4c
CV
4063 }
4064
ecf40bea
EH
4065 /* Init CPU def lists, based on config
4066 * - Must be called after all the qemu_read_config_file() calls
4067 * - Must be called before list_cpus()
4068 * - Must be called before machine->init()
4069 */
4070 cpudef_init();
4071
c8057f95 4072 if (cpu_model && is_help_option(cpu_model)) {
1d6528af 4073 list_cpus(stdout, &fprintf, cpu_model);
ecf40bea
EH
4074 exit(0);
4075 }
4076
67633bb4 4077 /* Open the logfile at this point and set the log mask if necessary.
c235d738 4078 */
67633bb4
PK
4079 if (log_file) {
4080 qemu_set_log_filename(log_file);
4081 }
4082
c235d738 4083 if (log_mask) {
b946bffa 4084 int mask;
b946bffa
PM
4085 mask = qemu_str_to_log_mask(log_mask);
4086 if (!mask) {
4087 qemu_print_log_usage(stdout);
4088 exit(1);
4089 }
4090 qemu_set_log(mask);
c235d738 4091 }
330d0414 4092
8a745f2a 4093 if (!is_daemonized()) {
5b808275 4094 if (!trace_init_backends(trace_events, trace_file)) {
8a745f2a
MM
4095 exit(1);
4096 }
31d3c9b8 4097 }
0b5538c3 4098
5cea8590
PB
4099 /* If no data_dir is specified then try to find it relative to the
4100 executable path. */
4524051c 4101 if (data_dir_idx < ARRAY_SIZE(data_dir)) {
10f5bff6 4102 data_dir[data_dir_idx] = os_find_datadir();
4524051c
GH
4103 if (data_dir[data_dir_idx] != NULL) {
4104 data_dir_idx++;
4105 }
5cea8590 4106 }
60474fb5 4107 /* If all else fails use the install path specified when building. */
4524051c
GH
4108 if (data_dir_idx < ARRAY_SIZE(data_dir)) {
4109 data_dir[data_dir_idx++] = CONFIG_QEMU_DATADIR;
5cea8590
PB
4110 }
4111
12b7f57e 4112 smp_parse(qemu_opts_find(qemu_find_opts("smp-opts"), NULL));
6be68d7e 4113
958db90c 4114 machine_class->max_cpus = machine_class->max_cpus ?: 1; /* Default to UP */
c00cd995 4115 if (max_cpus > machine_class->max_cpus) {
f61eddcb
EH
4116 error_report("Number of SMP CPUs requested (%d) exceeds max CPUs "
4117 "supported by machine '%s' (%d)", max_cpus,
4118 machine_class->name, machine_class->max_cpus);
b2097003
AL
4119 exit(1);
4120 }
4121
67b724e6
AP
4122 /*
4123 * Get the default machine options from the machine if it is not already
4124 * specified either by the configuration file or by the command line.
4125 */
958db90c 4126 if (machine_class->default_machine_opts) {
25de5935 4127 qemu_opts_set_defaults(qemu_find_opts("machine"),
958db90c 4128 machine_class->default_machine_opts, 0);
67b724e6
AP
4129 }
4130
28d0de7a
MA
4131 qemu_opts_foreach(qemu_find_opts("device"),
4132 default_driver_check, NULL, NULL);
4133 qemu_opts_foreach(qemu_find_opts("global"),
4134 default_driver_check, NULL, NULL);
998bbd74 4135
d44229c5
MW
4136 if (!vga_model && !default_vga) {
4137 vga_interface_type = VGA_DEVICE;
4138 }
958db90c 4139 if (!has_defaults || machine_class->no_serial) {
986c5f78
GH
4140 default_serial = 0;
4141 }
958db90c 4142 if (!has_defaults || machine_class->no_parallel) {
986c5f78
GH
4143 default_parallel = 0;
4144 }
958db90c 4145 if (!has_defaults || !machine_class->use_virtcon) {
986c5f78
GH
4146 default_virtcon = 0;
4147 }
958db90c 4148 if (!has_defaults || !machine_class->use_sclp) {
3ef669e1
AG
4149 default_sclp = 0;
4150 }
958db90c 4151 if (!has_defaults || machine_class->no_floppy) {
ac33f8fa
GH
4152 default_floppy = 0;
4153 }
958db90c 4154 if (!has_defaults || machine_class->no_cdrom) {
ac33f8fa
GH
4155 default_cdrom = 0;
4156 }
958db90c 4157 if (!has_defaults || machine_class->no_sdcard) {
ac33f8fa
GH
4158 default_sdcard = 0;
4159 }
d44229c5
MW
4160 if (!has_defaults) {
4161 default_monitor = 0;
4162 default_net = 0;
4163 default_vga = 0;
4164 }
986c5f78 4165
ab51b1d5
MT
4166 if (is_daemonized()) {
4167 /* According to documentation and historically, -nographic redirects
4168 * serial port, parallel port and monitor to stdio, which does not work
4169 * with -daemonize. We can redirect these to null instead, but since
4170 * -nographic is legacy, let's just error out.
4171 * We disallow -nographic only if all other ports are not redirected
4172 * explicitly, to not break existing legacy setups which uses
4173 * -nographic _and_ redirects all ports explicitly - this is valid
4174 * usage, -nographic is just a no-op in this case.
4175 */
4176 if (display_type == DT_NOGRAPHIC
4177 && (default_parallel || default_serial
4178 || default_monitor || default_virtcon)) {
4cd70f34 4179 error_report("-nographic cannot be used with -daemonize");
ab51b1d5
MT
4180 exit(1);
4181 }
4182#ifdef CONFIG_CURSES
4183 if (display_type == DT_CURSES) {
4cd70f34 4184 error_report("curses display cannot be used with -daemonize");
ab51b1d5
MT
4185 exit(1);
4186 }
4187#endif
4188 }
4189
993fbfdb 4190 if (display_type == DT_NOGRAPHIC) {
6a5e8b0e
GH
4191 if (default_parallel)
4192 add_device_config(DEV_PARALLEL, "null");
e1c09175
GH
4193 if (default_serial && default_monitor) {
4194 add_device_config(DEV_SERIAL, "mon:stdio");
986c5f78
GH
4195 } else if (default_virtcon && default_monitor) {
4196 add_device_config(DEV_VIRTCON, "mon:stdio");
3ef669e1
AG
4197 } else if (default_sclp && default_monitor) {
4198 add_device_config(DEV_SCLP, "mon:stdio");
e1c09175
GH
4199 } else {
4200 if (default_serial)
4201 add_device_config(DEV_SERIAL, "stdio");
986c5f78
GH
4202 if (default_virtcon)
4203 add_device_config(DEV_VIRTCON, "stdio");
3ef669e1
AG
4204 if (default_sclp) {
4205 add_device_config(DEV_SCLP, "stdio");
4206 }
e1c09175 4207 if (default_monitor)
4821cd4c 4208 monitor_parse("stdio", "readline", false);
e1c09175 4209 }
998bbd74
GH
4210 } else {
4211 if (default_serial)
4212 add_device_config(DEV_SERIAL, "vc:80Cx24C");
6a5e8b0e
GH
4213 if (default_parallel)
4214 add_device_config(DEV_PARALLEL, "vc:80Cx24C");
abdeed06 4215 if (default_monitor)
4821cd4c 4216 monitor_parse("vc:80Cx24C", "readline", false);
38536da1
AG
4217 if (default_virtcon)
4218 add_device_config(DEV_VIRTCON, "vc:80Cx24C");
3ef669e1
AG
4219 if (default_sclp) {
4220 add_device_config(DEV_SCLP, "vc:80Cx24C");
4221 }
bc0129d9
AL
4222 }
4223
006decd4
GH
4224#if defined(CONFIG_VNC)
4225 if (!QTAILQ_EMPTY(&(qemu_find_opts("vnc")->head))) {
4226 display_remote++;
4227 }
4228#endif
15546425
AL
4229 if (display_type == DT_DEFAULT && !display_remote) {
4230#if defined(CONFIG_GTK)
4231 display_type = DT_GTK;
4232#elif defined(CONFIG_SDL) || defined(CONFIG_COCOA)
4233 display_type = DT_SDL;
4234#elif defined(CONFIG_VNC)
70b94331 4235 vnc_parse("localhost:0,to=99,id=default", &error_abort);
15546425
AL
4236 show_vnc_port = 1;
4237#else
4238 display_type = DT_NONE;
4239#endif
4240 }
4241
047d4e15 4242 if ((no_frame || alt_grab || ctrl_grab) && display_type != DT_SDL) {
f61eddcb
EH
4243 error_report("-no-frame, -alt-grab and -ctrl-grab are only valid "
4244 "for SDL, ignoring option");
047d4e15
PW
4245 }
4246 if (no_quit && (display_type != DT_GTK && display_type != DT_SDL)) {
f61eddcb
EH
4247 error_report("-no-quit is only valid for GTK and SDL, "
4248 "ignoring option");
047d4e15
PW
4249 }
4250
15546425
AL
4251#if defined(CONFIG_GTK)
4252 if (display_type == DT_GTK) {
97edf3bd 4253 early_gtk_display_init(request_opengl);
15546425
AL
4254 }
4255#endif
0b71a5d5
GH
4256#if defined(CONFIG_SDL)
4257 if (display_type == DT_SDL) {
4258 sdl_display_early_init(request_opengl);
4259 }
4260#endif
4261 if (request_opengl == 1 && display_opengl == 0) {
4262#if defined(CONFIG_OPENGL)
8afb9000 4263 error_report("OpenGL is not supported by the display");
0b71a5d5 4264#else
5dfdae81 4265 error_report("OpenGL support is disabled");
0b71a5d5
GH
4266#endif
4267 exit(1);
4268 }
15546425 4269
a5829fd9
T
4270 socket_init();
4271
f08f9271
DB
4272 if (qemu_opts_foreach(qemu_find_opts("object"),
4273 object_create,
4274 object_create_initial, NULL)) {
4275 exit(1);
4276 }
4277
28d0de7a
MA
4278 if (qemu_opts_foreach(qemu_find_opts("chardev"),
4279 chardev_init_func, NULL, NULL)) {
1a688d3b 4280 exit(1);
a4c7367f
MA
4281 }
4282
758e8e38 4283#ifdef CONFIG_VIRTFS
28d0de7a
MA
4284 if (qemu_opts_foreach(qemu_find_opts("fsdev"),
4285 fsdev_init_func, NULL, NULL)) {
74db920c
GS
4286 exit(1);
4287 }
4288#endif
1a688d3b 4289
aa26bb2d 4290 if (pid_file && qemu_create_pidfile(pid_file) != 0) {
3e515373 4291 error_report("could not acquire pid file: %s", strerror(errno));
93815bc2
TS
4292 exit(1);
4293 }
4294
28d0de7a
MA
4295 if (qemu_opts_foreach(qemu_find_opts("device"),
4296 device_help_func, NULL, NULL)) {
3d1d9652
BR
4297 exit(0);
4298 }
4299
6b1b1440 4300 machine_opts = qemu_get_machine_opts();
71df1d83
MA
4301 if (qemu_opt_foreach(machine_opts, machine_set_property, current_machine,
4302 NULL)) {
6b1b1440
MA
4303 object_unref(OBJECT(current_machine));
4304 exit(1);
4305 }
4306
f6a1ef64 4307 configure_accelerator(current_machine);
214910a7 4308
d4fce24f 4309 if (qtest_chrdev) {
23802b4f
FZ
4310 Error *local_err = NULL;
4311 qtest_init(qtest_chrdev, qtest_log, &local_err);
4312 if (local_err) {
565f65d2 4313 error_report_err(local_err);
23802b4f
FZ
4314 exit(1);
4315 }
a907cf59
EI
4316 }
4317
2ff3de68
MA
4318 machine_opts = qemu_get_machine_opts();
4319 kernel_filename = qemu_opt_get(machine_opts, "kernel");
4320 initrd_filename = qemu_opt_get(machine_opts, "initrd");
4321 kernel_cmdline = qemu_opt_get(machine_opts, "append");
1442d3e6 4322 bios_name = qemu_opt_get(machine_opts, "firmware");
967c0da7 4323
8281abd5
MA
4324 opts = qemu_opts_find(qemu_find_opts("boot-opts"), NULL);
4325 if (opts) {
703008e8 4326 Error *local_err = NULL;
8281abd5 4327
f05f47bb
GA
4328 boot_order = qemu_opt_get(opts, "order");
4329 if (boot_order) {
4330 validate_bootdevices(boot_order, &local_err);
703008e8 4331 if (local_err) {
565f65d2 4332 error_report_err(local_err);
703008e8
GA
4333 exit(1);
4334 }
8281abd5
MA
4335 }
4336
f05f47bb
GA
4337 boot_once = qemu_opt_get(opts, "once");
4338 if (boot_once) {
4339 validate_bootdevices(boot_once, &local_err);
703008e8 4340 if (local_err) {
565f65d2 4341 error_report_err(local_err);
703008e8
GA
4342 exit(1);
4343 }
8281abd5
MA
4344 }
4345
4346 boot_menu = qemu_opt_get_bool(opts, "menu", boot_menu);
e5187b56 4347 boot_strict = qemu_opt_get_bool(opts, "strict", false);
8281abd5
MA
4348 }
4349
f05f47bb
GA
4350 if (!boot_order) {
4351 boot_order = machine_class->default_boot_order;
4352 }
4353
a0abe474
PM
4354 if (!kernel_cmdline) {
4355 kernel_cmdline = "";
6b1b1440 4356 current_machine->kernel_cmdline = (char *)kernel_cmdline;
a0abe474
PM
4357 }
4358
a20dd508 4359 linux_boot = (kernel_filename != NULL);
6c41b272 4360
f8d39c01 4361 if (!linux_boot && *kernel_cmdline != '\0') {
f61eddcb 4362 error_report("-append only allowed with -kernel option");
f8d39c01
TS
4363 exit(1);
4364 }
4365
4366 if (!linux_boot && initrd_filename != NULL) {
f61eddcb 4367 error_report("-initrd only allowed with -kernel option");
f8d39c01
TS
4368 exit(1);
4369 }
4370
2ff3de68 4371 if (!linux_boot && qemu_opt_get(machine_opts, "dtb")) {
f61eddcb 4372 error_report("-dtb only allowed with -kernel option");
412beee6
GL
4373 exit(1);
4374 }
4375
a59d31a1
LA
4376 if (semihosting_enabled() && !semihosting_get_argc() && kernel_filename) {
4377 /* fall back to the -kernel/-append */
4378 semihosting_arg_fallback(kernel_filename, kernel_cmdline);
4379 }
4380
9156d763 4381 os_set_line_buffering();
3b46e624 4382
ad1be899
AL
4383#ifdef CONFIG_SPICE
4384 /* spice needs the timers to be initialized by this point */
4385 qemu_spice_init();
4386#endif
4387
4603ea01 4388 cpu_ticks_init();
1ad9580b
ST
4389 if (icount_opts) {
4390 if (kvm_enabled() || xen_enabled()) {
f61eddcb 4391 error_report("-icount is not allowed with kvm or xen");
1ad9580b
ST
4392 exit(1);
4393 }
4394 configure_icount(icount_opts, &error_abort);
4395 qemu_opts_del(icount_opts);
0abe905d 4396 }
634fce96 4397
f30dbae6
AK
4398 /* clean up network at qemu process termination */
4399 atexit(&net_cleanup);
4400
dc1c9fe8
MM
4401 if (net_init_clients() < 0) {
4402 exit(1);
702c651c 4403 }
f1510b2c 4404
9abce56d
YH
4405 if (qemu_opts_foreach(qemu_find_opts("object"),
4406 object_create,
4407 object_create_delayed, NULL)) {
4408 exit(1);
4409 }
4410
d1a0cf73
SB
4411#ifdef CONFIG_TPM
4412 if (tpm_init() < 0) {
4413 exit(1);
4414 }
4415#endif
4416
dc72ac14 4417 /* init the bluetooth world */
bd3c948d
GH
4418 if (foreach_device_config(DEV_BT, bt_parse))
4419 exit(1);
dc72ac14 4420
834e76ea
AP
4421 if (!xen_enabled()) {
4422 /* On 32-bit hosts, QEMU is limited by virtual address space */
4423 if (ram_size > (2047 << 20) && HOST_LONG_BITS == 32) {
f61eddcb 4424 error_report("at most 2047 MB RAM can be simulated");
834e76ea
AP
4425 exit(1);
4426 }
4427 }
9ae02555 4428
c163b5ca 4429 blk_mig_init();
0d6ab3ab 4430 ram_mig_init();
c163b5ca 4431
16026518
JS
4432 /* If the currently selected machine wishes to override the units-per-bus
4433 * property of its default HBA interface type, do so now. */
4434 if (machine_class->units_per_default_bus) {
4435 override_max_devs(machine_class->block_default_type,
4436 machine_class->units_per_default_bus);
4437 }
4438
e4bcb14c 4439 /* open the virtual block devices */
9dfd7c7a 4440 if (snapshot)
28d0de7a
MA
4441 qemu_opts_foreach(qemu_find_opts("drive"),
4442 drive_enable_snapshot, NULL, NULL);
2d0d2837 4443 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func,
28d0de7a 4444 &machine_class->block_default_type, NULL)) {
9dfd7c7a 4445 exit(1);
2d0d2837 4446 }
3e3d5815 4447
958db90c 4448 default_drive(default_cdrom, snapshot, machine_class->block_default_type, 2,
3c42ea66
CB
4449 CDROM_OPTS);
4450 default_drive(default_floppy, snapshot, IF_FLOPPY, 0, FD_OPTS);
4451 default_drive(default_sdcard, snapshot, IF_SD, 0, SD_OPTS);
4e5d9b57 4452
57924bcd 4453 parse_numa_opts(machine_class);
268a362c 4454
28d0de7a
MA
4455 if (qemu_opts_foreach(qemu_find_opts("mon"),
4456 mon_init_func, NULL, NULL)) {
157b9319
JK
4457 exit(1);
4458 }
4459
998bbd74
GH
4460 if (foreach_device_config(DEV_SERIAL, serial_parse) < 0)
4461 exit(1);
6a5e8b0e
GH
4462 if (foreach_device_config(DEV_PARALLEL, parallel_parse) < 0)
4463 exit(1);
aee1b935
GH
4464 if (foreach_device_config(DEV_VIRTCON, virtcon_parse) < 0)
4465 exit(1);
3ef669e1
AG
4466 if (foreach_device_config(DEV_SCLP, sclp_parse) < 0) {
4467 exit(1);
4468 }
c9f398e5
PA
4469 if (foreach_device_config(DEV_DEBUGCON, debugcon_parse) < 0)
4470 exit(1);
2796dae0 4471
7f1b17f2 4472 /* If no default VGA is requested, the default is "none". */
3605ded5 4473 if (default_vga) {
6f00494a
GH
4474 if (machine_class->default_display) {
4475 vga_model = machine_class->default_display;
4476 } else if (cirrus_vga_available()) {
3605ded5
AJ
4477 vga_model = "cirrus";
4478 } else if (vga_available()) {
4479 vga_model = "std";
4480 }
a369da5f 4481 }
d44229c5
MW
4482 if (vga_model) {
4483 select_vgahw(vga_model);
4484 }
a369da5f 4485
09aaa160
MA
4486 if (watchdog) {
4487 i = select_watchdog(watchdog);
4488 if (i > 0)
4489 exit (i == 1 ? 1 : 0);
4490 }
4491
958db90c
MA
4492 if (machine_class->compat_props) {
4493 qdev_prop_register_global_list(machine_class->compat_props);
b6b61144 4494 }
d0fef6fb
GH
4495 qemu_add_globals();
4496
8bd7f71d
PD
4497 /* This checkpoint is required by replay to separate prior clock
4498 reading from the other reads, because timer polling functions query
4499 clock values from the log. */
4500 replay_checkpoint(CHECKPOINT_INIT);
1de81d28
AL
4501 qdev_machine_init();
4502
3ef96221 4503 current_machine->ram_size = ram_size;
c270fb9e
IM
4504 current_machine->maxram_size = maxram_size;
4505 current_machine->ram_slots = ram_slots;
3ef96221 4506 current_machine->boot_order = boot_order;
3ef96221
MA
4507 current_machine->cpu_model = cpu_model;
4508
4509 machine_class->init(current_machine);
3023f332 4510
28d16f38
HZ
4511 realtime_init();
4512
b3e6d591
PB
4513 audio_init();
4514
ea375f9a 4515 cpu_synchronize_all_post_init();
268a362c 4516
dde11116 4517 numa_post_machine_init();
268a362c 4518
81b2b810
GS
4519 if (qemu_opts_foreach(qemu_find_opts("fw_cfg"),
4520 parse_fw_cfg, fw_cfg_find(), NULL) != 0) {
4521 exit(1);
4522 }
4523
3023f332 4524 /* init USB devices */
de77a243 4525 if (usb_enabled()) {
0752706d
MA
4526 if (foreach_device_config(DEV_USB, usb_parse) < 0)
4527 exit(1);
3023f332
AL
4528 }
4529
79814179
TC
4530 /* Check if IGD GFX passthrough. */
4531 igd_gfx_passthru();
4532
bd3c948d 4533 /* init generic devices */
28d0de7a
MA
4534 if (qemu_opts_foreach(qemu_find_opts("device"),
4535 device_init_func, NULL, NULL)) {
bd3c948d 4536 exit(1);
a4c7367f 4537 }
bd3c948d 4538
a66c9dc7
JS
4539 /* Did we create any drives that we failed to create a device for? */
4540 drive_check_orphaned();
4541
668680f7
MA
4542 net_check_clients();
4543
f05f47bb
GA
4544 if (boot_once) {
4545 Error *local_err = NULL;
4546 qemu_boot_set(boot_once, &local_err);
4547 if (local_err) {
4548 error_report("%s", error_get_pretty(local_err));
4549 exit(1);
4550 }
4551 qemu_register_reset(restore_boot_order, g_strdup(boot_order));
4552 }
4553
64840c66 4554 ds = init_displaystate();
993fbfdb 4555
6b62dc2d 4556 /* init local displays */
993fbfdb
AL
4557 switch (display_type) {
4558 case DT_NOGRAPHIC:
8111d028 4559 (void)ds; /* avoid warning if no display is configured */
993fbfdb 4560 break;
4d3b6f6e 4561#if defined(CONFIG_CURSES)
993fbfdb 4562 case DT_CURSES:
ab51b1d5 4563 curses_display_init(ds, full_screen);
993fbfdb 4564 break;
4d3b6f6e 4565#endif
5b0753e0 4566#if defined(CONFIG_SDL)
993fbfdb
AL
4567 case DT_SDL:
4568 sdl_display_init(ds, full_screen, no_frame);
4569 break;
5b0753e0 4570#elif defined(CONFIG_COCOA)
993fbfdb
AL
4571 case DT_SDL:
4572 cocoa_display_init(ds, full_screen);
4573 break;
15546425
AL
4574#endif
4575#if defined(CONFIG_GTK)
4576 case DT_GTK:
881249c7 4577 gtk_display_init(ds, full_screen, grab_on_hover);
15546425 4578 break;
313aa567 4579#endif
6b62dc2d
GH
4580 default:
4581 break;
4582 }
4583
0ce235a7
GN
4584 /* must be after terminal init, SDL library changes signal handlers */
4585 os_setup_signal_handling();
4586
821601ea 4587#ifdef CONFIG_VNC
6b62dc2d 4588 /* init remote displays */
28d0de7a
MA
4589 qemu_opts_foreach(qemu_find_opts("vnc"),
4590 vnc_init_func, NULL, NULL);
4db14629 4591 if (show_vnc_port) {
bd4baf6e 4592 char *ret = vnc_display_local_addr("default");
4cd70f34 4593 printf("VNC server running on '%s'\n", ret);
bd4baf6e 4594 g_free(ret);
313aa567 4595 }
821601ea 4596#endif
a3e22260 4597#ifdef CONFIG_SPICE
9fa03286
GH
4598 if (using_spice) {
4599 qemu_spice_display_init();
a3e22260
GH
4600 }
4601#endif
5b08fc10 4602
ef0c4a0d 4603 if (foreach_device_config(DEV_GDB, gdbserver_start) < 0) {
59030a8c 4604 exit(1);
45669e00 4605 }
45669e00 4606
3418bd25
GH
4607 qdev_machine_creation_done();
4608
80376c3f
IY
4609 /* TODO: once all bus devices are qdevified, this should be done
4610 * when bus is created by qdev.c */
4611 qemu_register_reset(qbus_reset_all_fn, sysbus_get_default());
4cab946a
GN
4612 qemu_run_machine_init_done_notifiers();
4613
6b3f7f63 4614 if (rom_check_and_register_reset() != 0) {
f61eddcb 4615 error_report("rom check and register reset failed");
6b3f7f63
EA
4616 exit(1);
4617 }
d916b464 4618
7615936e
PD
4619 replay_start();
4620
8bd7f71d
PD
4621 /* This checkpoint is required by replay to separate prior clock
4622 reading from the other reads, because timer polling functions query
4623 clock values from the log. */
4624 replay_checkpoint(CHECKPOINT_RESET);
e063eb1f 4625 qemu_system_reset(VMRESET_SILENT);
48212d87 4626 register_global_state();
05f2401e 4627 if (loadvm) {
03cd4655 4628 if (load_vmstate(loadvm) < 0) {
05f2401e
JQ
4629 autostart = 0;
4630 }
4631 }
d63d307f 4632
d828c430 4633 qdev_prop_check_globals();
abfd9ce3
AS
4634 if (vmstate_dump_file) {
4635 /* dump and exit */
4636 dump_vmstate_json_to_file(vmstate_dump_file);
4637 return 0;
4638 }
9f9260a3 4639
2bb8c10c 4640 if (incoming) {
43eaae28
PB
4641 Error *local_err = NULL;
4642 qemu_start_incoming_migration(incoming, &local_err);
4643 if (local_err) {
4a44d85e
SA
4644 error_report("-incoming %s: %s", incoming,
4645 error_get_pretty(local_err));
43eaae28
PB
4646 error_free(local_err);
4647 exit(1);
8ca5e801 4648 }
6b99dadc 4649 } else if (autostart) {
c0f4ce77 4650 vm_start();
6b99dadc 4651 }
ffd843bc 4652
eb505be1 4653 os_setup_post();
71e3ceb8 4654
8a745f2a 4655 if (is_daemonized()) {
5b808275 4656 if (!trace_init_backends(trace_events, trace_file)) {
8a745f2a
MM
4657 exit(1);
4658 }
4659 }
4660
8a7ddc38 4661 main_loop();
7615936e
PD
4662 replay_disable_events();
4663
99435906
PB
4664 bdrv_close_all();
4665 pause_all_vcpus();
3d3b8303 4666 res_free();
d1a0cf73
SB
4667#ifdef CONFIG_TPM
4668 tpm_cleanup();
4669#endif
b46a8906 4670
0824d6fc
FB
4671 return 0;
4672}