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