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