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