4 * Copyright (c) 2003-2008 Fabrice Bellard
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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
31 #include "config-host.h"
34 #include "sysemu/seccomp.h"
37 #if defined(CONFIG_VDE)
38 #include <libvdeplug.h>
42 #if defined(__APPLE__) || defined(main)
44 int qemu_main(int argc
, char **argv
, char **envp
);
45 int main(int argc
, char **argv
)
47 return qemu_main(argc
, argv
, NULL
);
50 #define main qemu_main
52 #endif /* CONFIG_SDL */
56 #define main qemu_main
57 #endif /* CONFIG_COCOA */
61 #include "qemu/sockets.h"
63 #include "hw/boards.h"
64 #include "sysemu/accel.h"
66 #include "hw/i386/pc.h"
67 #include "hw/isa/isa.h"
69 #include "sysemu/watchdog.h"
70 #include "hw/i386/smbios.h"
71 #include "hw/xen/xen.h"
73 #include "hw/loader.h"
74 #include "monitor/qdev.h"
75 #include "sysemu/bt.h"
77 #include "net/slirp.h"
78 #include "monitor/monitor.h"
79 #include "ui/console.h"
80 #include "sysemu/sysemu.h"
81 #include "sysemu/numa.h"
82 #include "exec/gdbstub.h"
83 #include "qemu/timer.h"
84 #include "sysemu/char.h"
85 #include "qemu/bitmap.h"
86 #include "sysemu/blockdev.h"
87 #include "hw/block/block.h"
88 #include "migration/block.h"
89 #include "sysemu/tpm.h"
90 #include "sysemu/dma.h"
91 #include "audio/audio.h"
92 #include "migration/migration.h"
93 #include "sysemu/kvm.h"
94 #include "qapi/qmp/qjson.h"
95 #include "qemu/option.h"
96 #include "qemu/config-file.h"
97 #include "qemu-options.h"
98 #include "qmp-commands.h"
99 #include "qemu/main-loop.h"
101 #include "fsdev/qemu-fsdev.h"
103 #include "sysemu/qtest.h"
105 #include "disas/disas.h"
108 #include "slirp/libslirp.h"
111 #include "trace/control.h"
112 #include "qemu/queue.h"
113 #include "sysemu/cpus.h"
114 #include "sysemu/arch_init.h"
115 #include "qemu/osdep.h"
117 #include "ui/qemu-spice.h"
118 #include "qapi/string-input-visitor.h"
119 #include "qapi/opts-visitor.h"
120 #include "qom/object_interfaces.h"
121 #include "qapi-event.h"
123 #define MAX_VIRTIO_CONSOLES 1
124 #define MAX_SCLP_CONSOLES 1
126 static const char *data_dir
[16];
127 static int data_dir_idx
;
128 const char *bios_name
= NULL
;
129 enum vga_retrace_method vga_retrace_method
= VGA_RETRACE_DUMB
;
130 DisplayType display_type
= DT_DEFAULT
;
131 int request_opengl
= -1;
133 static int display_remote
;
134 const char* keyboard_layout
= NULL
;
136 const char *mem_path
= NULL
;
137 int mem_prealloc
= 0; /* force preallocation of physical target memory */
138 bool enable_mlock
= false;
140 NICInfo nd_table
[MAX_NICS
];
142 static int rtc_utc
= 1;
143 static int rtc_date_offset
= -1; /* -1 means no change */
144 QEMUClockType rtc_clock
;
145 int vga_interface_type
= VGA_NONE
;
146 static int full_screen
= 0;
147 static int no_frame
= 0;
150 static bool grab_on_hover
;
152 CharDriverState
*serial_hds
[MAX_SERIAL_PORTS
];
153 CharDriverState
*parallel_hds
[MAX_PARALLEL_PORTS
];
154 CharDriverState
*virtcon_hds
[MAX_VIRTIO_CONSOLES
];
155 CharDriverState
*sclp_hds
[MAX_SCLP_CONSOLES
];
156 int win2k_install_hack
= 0;
162 int acpi_enabled
= 1;
165 static int no_reboot
;
168 int graphic_rotate
= 0;
169 const char *watchdog
;
170 QEMUOptionRom option_rom
[MAX_OPTION_ROMS
];
172 int semihosting_enabled
= 0;
174 const char *qemu_name
;
177 unsigned int nb_prom_envs
= 0;
178 const char *prom_envs
[MAX_PROM_ENVS
];
181 uint8_t *boot_splash_filedata
;
182 size_t boot_splash_filedata_size
;
183 uint8_t qemu_extra_params_fw
[2];
185 int icount_align_option
;
187 /* The bytes in qemu_uuid[] are in the order specified by RFC4122, _not_ in the
188 * little-endian "wire format" described in the SMBIOS 2.6 specification.
190 uint8_t qemu_uuid
[16];
193 static NotifierList exit_notifiers
=
194 NOTIFIER_LIST_INITIALIZER(exit_notifiers
);
196 static NotifierList machine_init_done_notifiers
=
197 NOTIFIER_LIST_INITIALIZER(machine_init_done_notifiers
);
201 enum xen_mode xen_mode
= XEN_EMULATE
;
203 static int has_defaults
= 1;
204 static int default_serial
= 1;
205 static int default_parallel
= 1;
206 static int default_virtcon
= 1;
207 static int default_sclp
= 1;
208 static int default_monitor
= 1;
209 static int default_floppy
= 1;
210 static int default_cdrom
= 1;
211 static int default_sdcard
= 1;
212 static int default_vga
= 1;
218 { .driver
= "isa-serial", .flag
= &default_serial
},
219 { .driver
= "isa-parallel", .flag
= &default_parallel
},
220 { .driver
= "isa-fdc", .flag
= &default_floppy
},
221 { .driver
= "ide-cd", .flag
= &default_cdrom
},
222 { .driver
= "ide-hd", .flag
= &default_cdrom
},
223 { .driver
= "ide-drive", .flag
= &default_cdrom
},
224 { .driver
= "scsi-cd", .flag
= &default_cdrom
},
225 { .driver
= "virtio-serial-pci", .flag
= &default_virtcon
},
226 { .driver
= "virtio-serial-s390", .flag
= &default_virtcon
},
227 { .driver
= "virtio-serial", .flag
= &default_virtcon
},
228 { .driver
= "VGA", .flag
= &default_vga
},
229 { .driver
= "isa-vga", .flag
= &default_vga
},
230 { .driver
= "cirrus-vga", .flag
= &default_vga
},
231 { .driver
= "isa-cirrus-vga", .flag
= &default_vga
},
232 { .driver
= "vmware-svga", .flag
= &default_vga
},
233 { .driver
= "qxl-vga", .flag
= &default_vga
},
234 { .driver
= "virtio-vga", .flag
= &default_vga
},
237 static QemuOptsList qemu_rtc_opts
= {
239 .head
= QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts
.head
),
243 .type
= QEMU_OPT_STRING
,
246 .type
= QEMU_OPT_STRING
,
249 .type
= QEMU_OPT_STRING
,
251 { /* end of list */ }
255 static QemuOptsList qemu_sandbox_opts
= {
257 .implied_opt_name
= "enable",
258 .head
= QTAILQ_HEAD_INITIALIZER(qemu_sandbox_opts
.head
),
262 .type
= QEMU_OPT_BOOL
,
264 { /* end of list */ }
268 static QemuOptsList qemu_trace_opts
= {
270 .implied_opt_name
= "trace",
271 .head
= QTAILQ_HEAD_INITIALIZER(qemu_trace_opts
.head
),
275 .type
= QEMU_OPT_STRING
,
278 .type
= QEMU_OPT_STRING
,
280 { /* end of list */ }
284 static QemuOptsList qemu_option_rom_opts
= {
285 .name
= "option-rom",
286 .implied_opt_name
= "romfile",
287 .head
= QTAILQ_HEAD_INITIALIZER(qemu_option_rom_opts
.head
),
291 .type
= QEMU_OPT_NUMBER
,
294 .type
= QEMU_OPT_STRING
,
296 { /* end of list */ }
300 static QemuOptsList qemu_machine_opts
= {
302 .implied_opt_name
= "type",
304 .head
= QTAILQ_HEAD_INITIALIZER(qemu_machine_opts
.head
),
307 * no elements => accept any
308 * sanity checking will happen later
309 * when setting machine properties
315 static QemuOptsList qemu_boot_opts
= {
317 .implied_opt_name
= "order",
319 .head
= QTAILQ_HEAD_INITIALIZER(qemu_boot_opts
.head
),
323 .type
= QEMU_OPT_STRING
,
326 .type
= QEMU_OPT_STRING
,
329 .type
= QEMU_OPT_BOOL
,
332 .type
= QEMU_OPT_STRING
,
334 .name
= "splash-time",
335 .type
= QEMU_OPT_STRING
,
337 .name
= "reboot-timeout",
338 .type
= QEMU_OPT_STRING
,
341 .type
= QEMU_OPT_BOOL
,
347 static QemuOptsList qemu_add_fd_opts
= {
349 .head
= QTAILQ_HEAD_INITIALIZER(qemu_add_fd_opts
.head
),
353 .type
= QEMU_OPT_NUMBER
,
354 .help
= "file descriptor of which a duplicate is added to fd set",
357 .type
= QEMU_OPT_NUMBER
,
358 .help
= "ID of the fd set to add fd to",
361 .type
= QEMU_OPT_STRING
,
362 .help
= "free-form string used to describe fd",
364 { /* end of list */ }
368 static QemuOptsList qemu_object_opts
= {
370 .implied_opt_name
= "qom-type",
371 .head
= QTAILQ_HEAD_INITIALIZER(qemu_object_opts
.head
),
377 static QemuOptsList qemu_tpmdev_opts
= {
379 .implied_opt_name
= "type",
380 .head
= QTAILQ_HEAD_INITIALIZER(qemu_tpmdev_opts
.head
),
382 /* options are defined in the TPM backends */
383 { /* end of list */ }
387 static QemuOptsList qemu_realtime_opts
= {
389 .head
= QTAILQ_HEAD_INITIALIZER(qemu_realtime_opts
.head
),
393 .type
= QEMU_OPT_BOOL
,
395 { /* end of list */ }
399 static QemuOptsList qemu_msg_opts
= {
401 .head
= QTAILQ_HEAD_INITIALIZER(qemu_msg_opts
.head
),
405 .type
= QEMU_OPT_BOOL
,
407 { /* end of list */ }
411 static QemuOptsList qemu_name_opts
= {
413 .implied_opt_name
= "guest",
415 .head
= QTAILQ_HEAD_INITIALIZER(qemu_name_opts
.head
),
419 .type
= QEMU_OPT_STRING
,
420 .help
= "Sets the name of the guest.\n"
421 "This name will be displayed in the SDL window caption.\n"
422 "The name will also be used for the VNC server",
425 .type
= QEMU_OPT_STRING
,
426 .help
= "Sets the name of the QEMU process, as shown in top etc",
428 .name
= "debug-threads",
429 .type
= QEMU_OPT_BOOL
,
430 .help
= "When enabled, name the individual threads; defaults off.\n"
431 "NOTE: The thread names are for debugging and not a\n"
434 { /* End of list */ }
438 static QemuOptsList qemu_mem_opts
= {
440 .implied_opt_name
= "size",
441 .head
= QTAILQ_HEAD_INITIALIZER(qemu_mem_opts
.head
),
446 .type
= QEMU_OPT_SIZE
,
450 .type
= QEMU_OPT_NUMBER
,
454 .type
= QEMU_OPT_SIZE
,
456 { /* end of list */ }
460 static QemuOptsList qemu_icount_opts
= {
462 .implied_opt_name
= "shift",
464 .head
= QTAILQ_HEAD_INITIALIZER(qemu_icount_opts
.head
),
468 .type
= QEMU_OPT_STRING
,
471 .type
= QEMU_OPT_BOOL
,
474 .type
= QEMU_OPT_BOOL
,
476 { /* end of list */ }
480 static QemuOptsList qemu_semihosting_config_opts
= {
481 .name
= "semihosting-config",
482 .implied_opt_name
= "enable",
483 .head
= QTAILQ_HEAD_INITIALIZER(qemu_semihosting_config_opts
.head
),
487 .type
= QEMU_OPT_BOOL
,
490 .type
= QEMU_OPT_STRING
,
492 { /* end of list */ }
496 static QemuOptsList qemu_fw_cfg_opts
= {
498 .implied_opt_name
= "name",
499 .head
= QTAILQ_HEAD_INITIALIZER(qemu_fw_cfg_opts
.head
),
503 .type
= QEMU_OPT_STRING
,
504 .help
= "Sets the fw_cfg name of the blob to be inserted",
507 .type
= QEMU_OPT_STRING
,
508 .help
= "Sets the name of the file from which\n"
509 "the fw_cfg blob will be loaded",
511 { /* end of list */ }
516 * Get machine options
518 * Returns: machine options (never null).
520 QemuOpts
*qemu_get_machine_opts(void)
522 return qemu_find_opts_singleton("machine");
525 const char *qemu_get_vm_name(void)
530 static void res_free(void)
532 if (boot_splash_filedata
!= NULL
) {
533 g_free(boot_splash_filedata
);
534 boot_splash_filedata
= NULL
;
538 static int default_driver_check(void *opaque
, QemuOpts
*opts
, Error
**errp
)
540 const char *driver
= qemu_opt_get(opts
, "driver");
545 for (i
= 0; i
< ARRAY_SIZE(default_list
); i
++) {
546 if (strcmp(default_list
[i
].driver
, driver
) != 0)
548 *(default_list
[i
].flag
) = 0;
553 /***********************************************************/
556 static RunState current_run_state
= RUN_STATE_PRELAUNCH
;
558 /* We use RUN_STATE_MAX but any invalid value will do */
559 static RunState vmstop_requested
= RUN_STATE_MAX
;
560 static QemuMutex vmstop_lock
;
565 } RunStateTransition
;
567 static const RunStateTransition runstate_transitions_def
[] = {
569 { RUN_STATE_DEBUG
, RUN_STATE_RUNNING
},
570 { RUN_STATE_DEBUG
, RUN_STATE_FINISH_MIGRATE
},
572 { RUN_STATE_INMIGRATE
, RUN_STATE_RUNNING
},
573 { RUN_STATE_INMIGRATE
, RUN_STATE_PAUSED
},
575 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_PAUSED
},
576 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_FINISH_MIGRATE
},
578 { RUN_STATE_IO_ERROR
, RUN_STATE_RUNNING
},
579 { RUN_STATE_IO_ERROR
, RUN_STATE_FINISH_MIGRATE
},
581 { RUN_STATE_PAUSED
, RUN_STATE_RUNNING
},
582 { RUN_STATE_PAUSED
, RUN_STATE_FINISH_MIGRATE
},
584 { RUN_STATE_POSTMIGRATE
, RUN_STATE_RUNNING
},
585 { RUN_STATE_POSTMIGRATE
, RUN_STATE_FINISH_MIGRATE
},
587 { RUN_STATE_PRELAUNCH
, RUN_STATE_RUNNING
},
588 { RUN_STATE_PRELAUNCH
, RUN_STATE_FINISH_MIGRATE
},
589 { RUN_STATE_PRELAUNCH
, RUN_STATE_INMIGRATE
},
591 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_RUNNING
},
592 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_POSTMIGRATE
},
594 { RUN_STATE_RESTORE_VM
, RUN_STATE_RUNNING
},
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
},
605 { RUN_STATE_RUNNING
, RUN_STATE_GUEST_PANICKED
},
607 { RUN_STATE_SAVE_VM
, RUN_STATE_RUNNING
},
609 { RUN_STATE_SHUTDOWN
, RUN_STATE_PAUSED
},
610 { RUN_STATE_SHUTDOWN
, RUN_STATE_FINISH_MIGRATE
},
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
},
617 { RUN_STATE_WATCHDOG
, RUN_STATE_RUNNING
},
618 { RUN_STATE_WATCHDOG
, RUN_STATE_FINISH_MIGRATE
},
620 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_RUNNING
},
621 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_FINISH_MIGRATE
},
623 { RUN_STATE_MAX
, RUN_STATE_MAX
},
626 static bool runstate_valid_transitions
[RUN_STATE_MAX
][RUN_STATE_MAX
];
628 bool runstate_check(RunState state
)
630 return current_run_state
== state
;
633 static void runstate_init(void)
635 const RunStateTransition
*p
;
637 memset(&runstate_valid_transitions
, 0, sizeof(runstate_valid_transitions
));
638 for (p
= &runstate_transitions_def
[0]; p
->from
!= RUN_STATE_MAX
; p
++) {
639 runstate_valid_transitions
[p
->from
][p
->to
] = true;
642 qemu_mutex_init(&vmstop_lock
);
645 /* This function will abort() on invalid state transitions */
646 void runstate_set(RunState new_state
)
648 assert(new_state
< RUN_STATE_MAX
);
650 if (!runstate_valid_transitions
[current_run_state
][new_state
]) {
651 fprintf(stderr
, "ERROR: invalid runstate transition: '%s' -> '%s'\n",
652 RunState_lookup
[current_run_state
],
653 RunState_lookup
[new_state
]);
656 trace_runstate_set(new_state
);
657 current_run_state
= new_state
;
660 int runstate_is_running(void)
662 return runstate_check(RUN_STATE_RUNNING
);
665 bool runstate_needs_reset(void)
667 return runstate_check(RUN_STATE_INTERNAL_ERROR
) ||
668 runstate_check(RUN_STATE_SHUTDOWN
);
671 StatusInfo
*qmp_query_status(Error
**errp
)
673 StatusInfo
*info
= g_malloc0(sizeof(*info
));
675 info
->running
= runstate_is_running();
676 info
->singlestep
= singlestep
;
677 info
->status
= current_run_state
;
682 static bool qemu_vmstop_requested(RunState
*r
)
684 qemu_mutex_lock(&vmstop_lock
);
685 *r
= vmstop_requested
;
686 vmstop_requested
= RUN_STATE_MAX
;
687 qemu_mutex_unlock(&vmstop_lock
);
688 return *r
< RUN_STATE_MAX
;
691 void qemu_system_vmstop_request_prepare(void)
693 qemu_mutex_lock(&vmstop_lock
);
696 void qemu_system_vmstop_request(RunState state
)
698 vmstop_requested
= state
;
699 qemu_mutex_unlock(&vmstop_lock
);
707 qemu_vmstop_requested(&requested
);
708 if (runstate_is_running() && requested
== RUN_STATE_MAX
) {
712 /* Ensure that a STOP/RESUME pair of events is emitted if a
713 * vmstop request was pending. The BLOCK_IO_ERROR event, for
714 * example, according to documentation is always followed by
717 if (runstate_is_running()) {
718 qapi_event_send_stop(&error_abort
);
721 runstate_set(RUN_STATE_RUNNING
);
722 vm_state_notify(1, RUN_STATE_RUNNING
);
726 qapi_event_send_resume(&error_abort
);
730 /***********************************************************/
731 /* real time host monotonic timer */
733 static time_t qemu_time(void)
735 return qemu_clock_get_ms(QEMU_CLOCK_HOST
) / 1000;
738 /***********************************************************/
739 /* host time/date access */
740 void qemu_get_timedate(struct tm
*tm
, int offset
)
742 time_t ti
= qemu_time();
745 if (rtc_date_offset
== -1) {
749 localtime_r(&ti
, tm
);
751 ti
-= rtc_date_offset
;
756 int qemu_timedate_diff(struct tm
*tm
)
760 if (rtc_date_offset
== -1)
762 seconds
= mktimegm(tm
);
765 tmp
.tm_isdst
= -1; /* use timezone to figure it out */
766 seconds
= mktime(&tmp
);
769 seconds
= mktimegm(tm
) + rtc_date_offset
;
771 return seconds
- qemu_time();
774 static void configure_rtc_date_offset(const char *startdate
, int legacy
)
776 time_t rtc_start_date
;
779 if (!strcmp(startdate
, "now") && legacy
) {
780 rtc_date_offset
= -1;
782 if (sscanf(startdate
, "%d-%d-%dT%d:%d:%d",
790 } else if (sscanf(startdate
, "%d-%d-%d",
802 rtc_start_date
= mktimegm(&tm
);
803 if (rtc_start_date
== -1) {
805 fprintf(stderr
, "Invalid date format. Valid formats are:\n"
806 "'2006-06-17T16:01:21' or '2006-06-17'\n");
809 rtc_date_offset
= qemu_time() - rtc_start_date
;
813 static void configure_rtc(QemuOpts
*opts
)
817 value
= qemu_opt_get(opts
, "base");
819 if (!strcmp(value
, "utc")) {
821 } else if (!strcmp(value
, "localtime")) {
824 configure_rtc_date_offset(value
, 0);
827 value
= qemu_opt_get(opts
, "clock");
829 if (!strcmp(value
, "host")) {
830 rtc_clock
= QEMU_CLOCK_HOST
;
831 } else if (!strcmp(value
, "rt")) {
832 rtc_clock
= QEMU_CLOCK_REALTIME
;
833 } else if (!strcmp(value
, "vm")) {
834 rtc_clock
= QEMU_CLOCK_VIRTUAL
;
836 fprintf(stderr
, "qemu: invalid option value '%s'\n", value
);
840 value
= qemu_opt_get(opts
, "driftfix");
842 if (!strcmp(value
, "slew")) {
843 static GlobalProperty slew_lost_ticks
[] = {
845 .driver
= "mc146818rtc",
846 .property
= "lost_tick_policy",
849 { /* end of list */ }
852 qdev_prop_register_global_list(slew_lost_ticks
);
853 } else if (!strcmp(value
, "none")) {
854 /* discard is default */
856 fprintf(stderr
, "qemu: invalid option value '%s'\n", value
);
862 /***********************************************************/
863 /* Bluetooth support */
866 static struct HCIInfo
*hci_table
[MAX_NICS
];
868 struct HCIInfo
*qemu_next_hci(void)
870 if (cur_hci
== nb_hcis
)
873 return hci_table
[cur_hci
++];
876 static int bt_hci_parse(const char *str
)
881 if (nb_hcis
>= MAX_NICS
) {
882 fprintf(stderr
, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS
);
895 bdaddr
.b
[5] = 0x56 + nb_hcis
;
896 hci
->bdaddr_set(hci
, bdaddr
.b
);
898 hci_table
[nb_hcis
++] = hci
;
903 static void bt_vhci_add(int vlan_id
)
905 struct bt_scatternet_s
*vlan
= qemu_find_bt_vlan(vlan_id
);
908 fprintf(stderr
, "qemu: warning: adding a VHCI to "
909 "an empty scatternet %i\n", vlan_id
);
911 bt_vhci_init(bt_new_hci(vlan
));
914 static struct bt_device_s
*bt_device_add(const char *opt
)
916 struct bt_scatternet_s
*vlan
;
918 char *endp
= strstr(opt
, ",vlan=");
919 int len
= (endp
? endp
- opt
: strlen(opt
)) + 1;
922 pstrcpy(devname
, MIN(sizeof(devname
), len
), opt
);
925 vlan_id
= strtol(endp
+ 6, &endp
, 0);
927 fprintf(stderr
, "qemu: unrecognised bluetooth vlan Id\n");
932 vlan
= qemu_find_bt_vlan(vlan_id
);
935 fprintf(stderr
, "qemu: warning: adding a slave device to "
936 "an empty scatternet %i\n", vlan_id
);
938 if (!strcmp(devname
, "keyboard"))
939 return bt_keyboard_init(vlan
);
941 fprintf(stderr
, "qemu: unsupported bluetooth device `%s'\n", devname
);
945 static int bt_parse(const char *opt
)
947 const char *endp
, *p
;
950 if (strstart(opt
, "hci", &endp
)) {
951 if (!*endp
|| *endp
== ',') {
953 if (!strstart(endp
, ",vlan=", 0))
956 return bt_hci_parse(opt
);
958 } else if (strstart(opt
, "vhci", &endp
)) {
959 if (!*endp
|| *endp
== ',') {
961 if (strstart(endp
, ",vlan=", &p
)) {
962 vlan
= strtol(p
, (char **) &endp
, 0);
964 fprintf(stderr
, "qemu: bad scatternet '%s'\n", p
);
968 fprintf(stderr
, "qemu: bad parameter '%s'\n", endp
+ 1);
977 } else if (strstart(opt
, "device:", &endp
))
978 return !bt_device_add(endp
);
980 fprintf(stderr
, "qemu: bad bluetooth parameter '%s'\n", opt
);
984 static int parse_sandbox(void *opaque
, QemuOpts
*opts
, Error
**errp
)
986 /* FIXME: change this to true for 1.3 */
987 if (qemu_opt_get_bool(opts
, "enable", false)) {
988 #ifdef CONFIG_SECCOMP
989 if (seccomp_start() < 0) {
990 qerror_report(ERROR_CLASS_GENERIC_ERROR
,
991 "failed to install seccomp syscall filter in the kernel");
995 qerror_report(ERROR_CLASS_GENERIC_ERROR
,
996 "sandboxing request but seccomp is not compiled into this build");
1004 static int parse_name(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1006 const char *proc_name
;
1008 if (qemu_opt_get(opts
, "debug-threads")) {
1009 qemu_thread_naming(qemu_opt_get_bool(opts
, "debug-threads", false));
1011 qemu_name
= qemu_opt_get(opts
, "guest");
1013 proc_name
= qemu_opt_get(opts
, "process");
1015 os_set_proc_name(proc_name
);
1021 bool defaults_enabled(void)
1023 return has_defaults
;
1026 bool usb_enabled(void)
1028 return machine_usb(current_machine
);
1032 static int parse_add_fd(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1034 int fd
, dupfd
, flags
;
1036 const char *fd_opaque
= NULL
;
1039 fd
= qemu_opt_get_number(opts
, "fd", -1);
1040 fdset_id
= qemu_opt_get_number(opts
, "set", -1);
1041 fd_opaque
= qemu_opt_get(opts
, "opaque");
1044 qerror_report(ERROR_CLASS_GENERIC_ERROR
,
1045 "fd option is required and must be non-negative");
1049 if (fd
<= STDERR_FILENO
) {
1050 qerror_report(ERROR_CLASS_GENERIC_ERROR
,
1051 "fd cannot be a standard I/O stream");
1056 * All fds inherited across exec() necessarily have FD_CLOEXEC
1057 * clear, while qemu sets FD_CLOEXEC on all other fds used internally.
1059 flags
= fcntl(fd
, F_GETFD
);
1060 if (flags
== -1 || (flags
& FD_CLOEXEC
)) {
1061 qerror_report(ERROR_CLASS_GENERIC_ERROR
,
1062 "fd is not valid or already in use");
1067 qerror_report(ERROR_CLASS_GENERIC_ERROR
,
1068 "set option is required and must be non-negative");
1072 #ifdef F_DUPFD_CLOEXEC
1073 dupfd
= fcntl(fd
, F_DUPFD_CLOEXEC
, 0);
1077 qemu_set_cloexec(dupfd
);
1081 qerror_report(ERROR_CLASS_GENERIC_ERROR
,
1082 "Error duplicating fd: %s", strerror(errno
));
1086 /* add the duplicate fd, and optionally the opaque string, to the fd set */
1087 fdinfo
= monitor_fdset_add_fd(dupfd
, true, fdset_id
, !!fd_opaque
, fd_opaque
,
1094 static int cleanup_add_fd(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1098 fd
= qemu_opt_get_number(opts
, "fd", -1);
1105 /***********************************************************/
1106 /* QEMU Block devices */
1108 #define HD_OPTS "media=disk"
1109 #define CDROM_OPTS "media=cdrom"
1111 #define PFLASH_OPTS ""
1115 static int drive_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1117 BlockInterfaceType
*block_default_type
= opaque
;
1119 return drive_new(opts
, *block_default_type
) == NULL
;
1122 static int drive_enable_snapshot(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1124 if (qemu_opt_get(opts
, "snapshot") == NULL
) {
1125 qemu_opt_set(opts
, "snapshot", "on", &error_abort
);
1130 static void default_drive(int enable
, int snapshot
, BlockInterfaceType type
,
1131 int index
, const char *optstr
)
1136 if (!enable
|| drive_get_by_index(type
, index
)) {
1140 opts
= drive_add(type
, index
, NULL
, optstr
);
1142 drive_enable_snapshot(NULL
, opts
, NULL
);
1145 dinfo
= drive_new(opts
, type
);
1149 dinfo
->is_default
= true;
1153 static QemuOptsList qemu_smp_opts
= {
1155 .implied_opt_name
= "cpus",
1156 .merge_lists
= true,
1157 .head
= QTAILQ_HEAD_INITIALIZER(qemu_smp_opts
.head
),
1161 .type
= QEMU_OPT_NUMBER
,
1164 .type
= QEMU_OPT_NUMBER
,
1167 .type
= QEMU_OPT_NUMBER
,
1170 .type
= QEMU_OPT_NUMBER
,
1173 .type
= QEMU_OPT_NUMBER
,
1175 { /*End of list */ }
1179 static void smp_parse(QemuOpts
*opts
)
1183 unsigned cpus
= qemu_opt_get_number(opts
, "cpus", 0);
1184 unsigned sockets
= qemu_opt_get_number(opts
, "sockets", 0);
1185 unsigned cores
= qemu_opt_get_number(opts
, "cores", 0);
1186 unsigned threads
= qemu_opt_get_number(opts
, "threads", 0);
1188 /* compute missing values, prefer sockets over cores over threads */
1189 if (cpus
== 0 || sockets
== 0) {
1190 sockets
= sockets
> 0 ? sockets
: 1;
1191 cores
= cores
> 0 ? cores
: 1;
1192 threads
= threads
> 0 ? threads
: 1;
1194 cpus
= cores
* threads
* sockets
;
1196 } else if (cores
== 0) {
1197 threads
= threads
> 0 ? threads
: 1;
1198 cores
= cpus
/ (sockets
* threads
);
1199 } else if (threads
== 0) {
1200 threads
= cpus
/ (cores
* sockets
);
1201 } else if (sockets
* cores
* threads
< cpus
) {
1202 fprintf(stderr
, "cpu topology: error: "
1203 "sockets (%u) * cores (%u) * threads (%u) < "
1205 sockets
, cores
, threads
, cpus
);
1209 max_cpus
= qemu_opt_get_number(opts
, "maxcpus", 0);
1212 smp_cores
= cores
> 0 ? cores
: 1;
1213 smp_threads
= threads
> 0 ? threads
: 1;
1217 if (max_cpus
== 0) {
1218 max_cpus
= smp_cpus
;
1221 if (max_cpus
> MAX_CPUMASK_BITS
) {
1222 fprintf(stderr
, "Unsupported number of maxcpus\n");
1225 if (max_cpus
< smp_cpus
) {
1226 fprintf(stderr
, "maxcpus must be equal to or greater than smp\n");
1232 static void realtime_init(void)
1235 if (os_mlock() < 0) {
1236 fprintf(stderr
, "qemu: locking memory failed\n");
1243 static void configure_msg(QemuOpts
*opts
)
1245 enable_timestamp_msg
= qemu_opt_get_bool(opts
, "timestamp", true);
1248 /***********************************************************/
1251 static int usb_device_add(const char *devname
)
1253 USBDevice
*dev
= NULL
;
1254 #ifndef CONFIG_LINUX
1258 if (!usb_enabled()) {
1262 /* drivers with .usbdevice_name entry in USBDeviceInfo */
1263 dev
= usbdevice_create(devname
);
1267 /* the other ones */
1268 #ifndef CONFIG_LINUX
1269 /* only the linux version is qdev-ified, usb-bsd still needs this */
1270 if (strstart(devname
, "host:", &p
)) {
1271 dev
= usb_host_device_open(usb_bus_find(-1), p
);
1281 static int usb_device_del(const char *devname
)
1286 if (strstart(devname
, "host:", &p
)) {
1290 if (!usb_enabled()) {
1294 p
= strchr(devname
, '.');
1297 bus_num
= strtoul(devname
, NULL
, 0);
1298 addr
= strtoul(p
+ 1, NULL
, 0);
1300 return usb_device_delete_addr(bus_num
, addr
);
1303 static int usb_parse(const char *cmdline
)
1306 r
= usb_device_add(cmdline
);
1308 fprintf(stderr
, "qemu: could not add USB device '%s'\n", cmdline
);
1313 void hmp_usb_add(Monitor
*mon
, const QDict
*qdict
)
1315 const char *devname
= qdict_get_str(qdict
, "devname");
1316 if (usb_device_add(devname
) < 0) {
1317 error_report("could not add USB device '%s'", devname
);
1321 void hmp_usb_del(Monitor
*mon
, const QDict
*qdict
)
1323 const char *devname
= qdict_get_str(qdict
, "devname");
1324 if (usb_device_del(devname
) < 0) {
1325 error_report("could not delete USB device '%s'", devname
);
1329 /***********************************************************/
1330 /* machine registration */
1332 MachineState
*current_machine
;
1335 * Transitional class registration/init used for converting from
1336 * legacy QEMUMachine to MachineClass.
1338 static void qemu_machine_class_init(ObjectClass
*oc
, void *data
)
1340 MachineClass
*mc
= MACHINE_CLASS(oc
);
1341 QEMUMachine
*qm
= data
;
1342 mc
->name
= qm
->name
;
1343 mc
->desc
= qm
->desc
;
1344 mc
->init
= qm
->init
;
1345 mc
->kvm_type
= qm
->kvm_type
;
1346 mc
->block_default_type
= qm
->block_default_type
;
1347 mc
->max_cpus
= qm
->max_cpus
;
1348 mc
->no_sdcard
= qm
->no_sdcard
;
1349 mc
->has_dynamic_sysbus
= qm
->has_dynamic_sysbus
;
1350 mc
->is_default
= qm
->is_default
;
1351 mc
->default_machine_opts
= qm
->default_machine_opts
;
1352 mc
->default_boot_order
= qm
->default_boot_order
;
1355 int qemu_register_machine(QEMUMachine
*m
)
1357 char *name
= g_strconcat(m
->name
, TYPE_MACHINE_SUFFIX
, NULL
);
1360 .parent
= TYPE_MACHINE
,
1361 .class_init
= qemu_machine_class_init
,
1362 .class_data
= (void *)m
,
1371 static MachineClass
*find_machine(const char *name
)
1373 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
1374 MachineClass
*mc
= NULL
;
1376 for (el
= machines
; el
; el
= el
->next
) {
1377 MachineClass
*temp
= el
->data
;
1379 if (!strcmp(temp
->name
, name
)) {
1384 !strcmp(temp
->alias
, name
)) {
1390 g_slist_free(machines
);
1394 MachineClass
*find_default_machine(void)
1396 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
1397 MachineClass
*mc
= NULL
;
1399 for (el
= machines
; el
; el
= el
->next
) {
1400 MachineClass
*temp
= el
->data
;
1402 if (temp
->is_default
) {
1408 g_slist_free(machines
);
1412 MachineInfoList
*qmp_query_machines(Error
**errp
)
1414 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
1415 MachineInfoList
*mach_list
= NULL
;
1417 for (el
= machines
; el
; el
= el
->next
) {
1418 MachineClass
*mc
= el
->data
;
1419 MachineInfoList
*entry
;
1422 info
= g_malloc0(sizeof(*info
));
1423 if (mc
->is_default
) {
1424 info
->has_is_default
= true;
1425 info
->is_default
= true;
1429 info
->has_alias
= true;
1430 info
->alias
= g_strdup(mc
->alias
);
1433 info
->name
= g_strdup(mc
->name
);
1434 info
->cpu_max
= !mc
->max_cpus
? 1 : mc
->max_cpus
;
1436 entry
= g_malloc0(sizeof(*entry
));
1437 entry
->value
= info
;
1438 entry
->next
= mach_list
;
1442 g_slist_free(machines
);
1446 static int machine_help_func(QemuOpts
*opts
, MachineState
*machine
)
1448 ObjectProperty
*prop
;
1450 if (!qemu_opt_has_help_opt(opts
)) {
1454 QTAILQ_FOREACH(prop
, &OBJECT(machine
)->properties
, node
) {
1459 error_printf("%s.%s=%s", MACHINE_GET_CLASS(machine
)->name
,
1460 prop
->name
, prop
->type
);
1461 if (prop
->description
) {
1462 error_printf(" (%s)\n", prop
->description
);
1471 /***********************************************************/
1472 /* main execution loop */
1474 struct vm_change_state_entry
{
1475 VMChangeStateHandler
*cb
;
1477 QLIST_ENTRY (vm_change_state_entry
) entries
;
1480 static QLIST_HEAD(vm_change_state_head
, vm_change_state_entry
) vm_change_state_head
;
1482 VMChangeStateEntry
*qemu_add_vm_change_state_handler(VMChangeStateHandler
*cb
,
1485 VMChangeStateEntry
*e
;
1487 e
= g_malloc0(sizeof (*e
));
1491 QLIST_INSERT_HEAD(&vm_change_state_head
, e
, entries
);
1495 void qemu_del_vm_change_state_handler(VMChangeStateEntry
*e
)
1497 QLIST_REMOVE (e
, entries
);
1501 void vm_state_notify(int running
, RunState state
)
1503 VMChangeStateEntry
*e
, *next
;
1505 trace_vm_state_notify(running
, state
);
1507 QLIST_FOREACH_SAFE(e
, &vm_change_state_head
, entries
, next
) {
1508 e
->cb(e
->opaque
, running
, state
);
1512 /* reset/shutdown handler */
1514 typedef struct QEMUResetEntry
{
1515 QTAILQ_ENTRY(QEMUResetEntry
) entry
;
1516 QEMUResetHandler
*func
;
1520 static QTAILQ_HEAD(reset_handlers
, QEMUResetEntry
) reset_handlers
=
1521 QTAILQ_HEAD_INITIALIZER(reset_handlers
);
1522 static int reset_requested
;
1523 static int shutdown_requested
, shutdown_signal
= -1;
1524 static pid_t shutdown_pid
;
1525 static int powerdown_requested
;
1526 static int debug_requested
;
1527 static int suspend_requested
;
1528 static WakeupReason wakeup_reason
;
1529 static NotifierList powerdown_notifiers
=
1530 NOTIFIER_LIST_INITIALIZER(powerdown_notifiers
);
1531 static NotifierList suspend_notifiers
=
1532 NOTIFIER_LIST_INITIALIZER(suspend_notifiers
);
1533 static NotifierList wakeup_notifiers
=
1534 NOTIFIER_LIST_INITIALIZER(wakeup_notifiers
);
1535 static uint32_t wakeup_reason_mask
= ~(1 << QEMU_WAKEUP_REASON_NONE
);
1537 int qemu_shutdown_requested_get(void)
1539 return shutdown_requested
;
1542 int qemu_reset_requested_get(void)
1544 return reset_requested
;
1547 static int qemu_shutdown_requested(void)
1549 return atomic_xchg(&shutdown_requested
, 0);
1552 static void qemu_kill_report(void)
1554 if (!qtest_driver() && shutdown_signal
!= -1) {
1555 fprintf(stderr
, "qemu: terminating on signal %d", shutdown_signal
);
1556 if (shutdown_pid
== 0) {
1557 /* This happens for eg ^C at the terminal, so it's worth
1558 * avoiding printing an odd message in that case.
1560 fputc('\n', stderr
);
1562 fprintf(stderr
, " from pid " FMT_pid
"\n", shutdown_pid
);
1564 shutdown_signal
= -1;
1568 static int qemu_reset_requested(void)
1570 int r
= reset_requested
;
1571 reset_requested
= 0;
1575 static int qemu_suspend_requested(void)
1577 int r
= suspend_requested
;
1578 suspend_requested
= 0;
1582 static WakeupReason
qemu_wakeup_requested(void)
1584 return wakeup_reason
;
1587 static int qemu_powerdown_requested(void)
1589 int r
= powerdown_requested
;
1590 powerdown_requested
= 0;
1594 static int qemu_debug_requested(void)
1596 int r
= debug_requested
;
1597 debug_requested
= 0;
1601 void qemu_register_reset(QEMUResetHandler
*func
, void *opaque
)
1603 QEMUResetEntry
*re
= g_malloc0(sizeof(QEMUResetEntry
));
1606 re
->opaque
= opaque
;
1607 QTAILQ_INSERT_TAIL(&reset_handlers
, re
, entry
);
1610 void qemu_unregister_reset(QEMUResetHandler
*func
, void *opaque
)
1614 QTAILQ_FOREACH(re
, &reset_handlers
, entry
) {
1615 if (re
->func
== func
&& re
->opaque
== opaque
) {
1616 QTAILQ_REMOVE(&reset_handlers
, re
, entry
);
1623 void qemu_devices_reset(void)
1625 QEMUResetEntry
*re
, *nre
;
1627 /* reset all devices */
1628 QTAILQ_FOREACH_SAFE(re
, &reset_handlers
, entry
, nre
) {
1629 re
->func(re
->opaque
);
1633 void qemu_system_reset(bool report
)
1637 mc
= current_machine
? MACHINE_GET_CLASS(current_machine
) : NULL
;
1639 if (mc
&& mc
->reset
) {
1642 qemu_devices_reset();
1645 qapi_event_send_reset(&error_abort
);
1647 cpu_synchronize_all_post_reset();
1650 void qemu_system_reset_request(void)
1653 shutdown_requested
= 1;
1655 reset_requested
= 1;
1658 qemu_notify_event();
1661 static void qemu_system_suspend(void)
1664 notifier_list_notify(&suspend_notifiers
, NULL
);
1665 runstate_set(RUN_STATE_SUSPENDED
);
1666 qapi_event_send_suspend(&error_abort
);
1669 void qemu_system_suspend_request(void)
1671 if (runstate_check(RUN_STATE_SUSPENDED
)) {
1674 suspend_requested
= 1;
1676 qemu_notify_event();
1679 void qemu_register_suspend_notifier(Notifier
*notifier
)
1681 notifier_list_add(&suspend_notifiers
, notifier
);
1684 void qemu_system_wakeup_request(WakeupReason reason
)
1686 trace_system_wakeup_request(reason
);
1688 if (!runstate_check(RUN_STATE_SUSPENDED
)) {
1691 if (!(wakeup_reason_mask
& (1 << reason
))) {
1694 runstate_set(RUN_STATE_RUNNING
);
1695 wakeup_reason
= reason
;
1696 qemu_notify_event();
1699 void qemu_system_wakeup_enable(WakeupReason reason
, bool enabled
)
1702 wakeup_reason_mask
|= (1 << reason
);
1704 wakeup_reason_mask
&= ~(1 << reason
);
1708 void qemu_register_wakeup_notifier(Notifier
*notifier
)
1710 notifier_list_add(&wakeup_notifiers
, notifier
);
1713 void qemu_system_killed(int signal
, pid_t pid
)
1715 shutdown_signal
= signal
;
1718 qemu_system_shutdown_request();
1721 void qemu_system_shutdown_request(void)
1723 trace_qemu_system_shutdown_request();
1724 shutdown_requested
= 1;
1725 qemu_notify_event();
1728 static void qemu_system_powerdown(void)
1730 qapi_event_send_powerdown(&error_abort
);
1731 notifier_list_notify(&powerdown_notifiers
, NULL
);
1734 void qemu_system_powerdown_request(void)
1736 trace_qemu_system_powerdown_request();
1737 powerdown_requested
= 1;
1738 qemu_notify_event();
1741 void qemu_register_powerdown_notifier(Notifier
*notifier
)
1743 notifier_list_add(&powerdown_notifiers
, notifier
);
1746 void qemu_system_debug_request(void)
1748 debug_requested
= 1;
1749 qemu_notify_event();
1752 static bool main_loop_should_exit(void)
1755 if (qemu_debug_requested()) {
1756 vm_stop(RUN_STATE_DEBUG
);
1758 if (qemu_suspend_requested()) {
1759 qemu_system_suspend();
1761 if (qemu_shutdown_requested()) {
1763 qapi_event_send_shutdown(&error_abort
);
1765 vm_stop(RUN_STATE_SHUTDOWN
);
1770 if (qemu_reset_requested()) {
1772 cpu_synchronize_all_states();
1773 qemu_system_reset(VMRESET_REPORT
);
1775 if (runstate_needs_reset()) {
1776 runstate_set(RUN_STATE_PAUSED
);
1779 if (qemu_wakeup_requested()) {
1781 cpu_synchronize_all_states();
1782 qemu_system_reset(VMRESET_SILENT
);
1783 notifier_list_notify(&wakeup_notifiers
, &wakeup_reason
);
1784 wakeup_reason
= QEMU_WAKEUP_REASON_NONE
;
1786 qapi_event_send_wakeup(&error_abort
);
1788 if (qemu_powerdown_requested()) {
1789 qemu_system_powerdown();
1791 if (qemu_vmstop_requested(&r
)) {
1797 static void main_loop(void)
1801 #ifdef CONFIG_PROFILER
1805 nonblocking
= !kvm_enabled() && !xen_enabled() && last_io
> 0;
1806 #ifdef CONFIG_PROFILER
1807 ti
= profile_getclock();
1809 last_io
= main_loop_wait(nonblocking
);
1810 #ifdef CONFIG_PROFILER
1811 dev_time
+= profile_getclock() - ti
;
1813 } while (!main_loop_should_exit());
1816 static void version(void)
1818 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION
", Copyright (c) 2003-2008 Fabrice Bellard\n");
1821 static void help(int exitcode
)
1824 printf("usage: %s [options] [disk_image]\n\n"
1825 "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
1826 error_get_progname());
1828 #define QEMU_OPTIONS_GENERATE_HELP
1829 #include "qemu-options-wrapper.h"
1831 printf("\nDuring emulation, the following keys are useful:\n"
1832 "ctrl-alt-f toggle full screen\n"
1833 "ctrl-alt-n switch to virtual console 'n'\n"
1834 "ctrl-alt toggle mouse and keyboard grab\n"
1836 "When using -nographic, press 'ctrl-a h' to get some help.\n");
1841 #define HAS_ARG 0x0001
1843 typedef struct QEMUOption
{
1850 static const QEMUOption qemu_options
[] = {
1851 { "h", 0, QEMU_OPTION_h
, QEMU_ARCH_ALL
},
1852 #define QEMU_OPTIONS_GENERATE_OPTIONS
1853 #include "qemu-options-wrapper.h"
1857 static bool vga_available(void)
1859 return object_class_by_name("VGA") || object_class_by_name("isa-vga");
1862 static bool cirrus_vga_available(void)
1864 return object_class_by_name("cirrus-vga")
1865 || object_class_by_name("isa-cirrus-vga");
1868 static bool vmware_vga_available(void)
1870 return object_class_by_name("vmware-svga");
1873 static bool qxl_vga_available(void)
1875 return object_class_by_name("qxl-vga");
1878 static bool tcx_vga_available(void)
1880 return object_class_by_name("SUNW,tcx");
1883 static bool cg3_vga_available(void)
1885 return object_class_by_name("cgthree");
1888 static bool virtio_vga_available(void)
1890 return object_class_by_name("virtio-vga");
1893 static void select_vgahw (const char *p
)
1897 assert(vga_interface_type
== VGA_NONE
);
1898 if (strstart(p
, "std", &opts
)) {
1899 if (vga_available()) {
1900 vga_interface_type
= VGA_STD
;
1902 fprintf(stderr
, "Error: standard VGA not available\n");
1905 } else if (strstart(p
, "cirrus", &opts
)) {
1906 if (cirrus_vga_available()) {
1907 vga_interface_type
= VGA_CIRRUS
;
1909 fprintf(stderr
, "Error: Cirrus VGA not available\n");
1912 } else if (strstart(p
, "vmware", &opts
)) {
1913 if (vmware_vga_available()) {
1914 vga_interface_type
= VGA_VMWARE
;
1916 fprintf(stderr
, "Error: VMWare SVGA not available\n");
1919 } else if (strstart(p
, "virtio", &opts
)) {
1920 if (virtio_vga_available()) {
1921 vga_interface_type
= VGA_VIRTIO
;
1923 fprintf(stderr
, "Error: Virtio VGA not available\n");
1926 } else if (strstart(p
, "xenfb", &opts
)) {
1927 vga_interface_type
= VGA_XENFB
;
1928 } else if (strstart(p
, "qxl", &opts
)) {
1929 if (qxl_vga_available()) {
1930 vga_interface_type
= VGA_QXL
;
1932 fprintf(stderr
, "Error: QXL VGA not available\n");
1935 } else if (strstart(p
, "tcx", &opts
)) {
1936 if (tcx_vga_available()) {
1937 vga_interface_type
= VGA_TCX
;
1939 fprintf(stderr
, "Error: TCX framebuffer not available\n");
1942 } else if (strstart(p
, "cg3", &opts
)) {
1943 if (cg3_vga_available()) {
1944 vga_interface_type
= VGA_CG3
;
1946 fprintf(stderr
, "Error: CG3 framebuffer not available\n");
1949 } else if (!strstart(p
, "none", &opts
)) {
1951 fprintf(stderr
, "Unknown vga type: %s\n", p
);
1955 const char *nextopt
;
1957 if (strstart(opts
, ",retrace=", &nextopt
)) {
1959 if (strstart(opts
, "dumb", &nextopt
))
1960 vga_retrace_method
= VGA_RETRACE_DUMB
;
1961 else if (strstart(opts
, "precise", &nextopt
))
1962 vga_retrace_method
= VGA_RETRACE_PRECISE
;
1963 else goto invalid_vga
;
1964 } else goto invalid_vga
;
1969 static DisplayType
select_display(const char *p
)
1972 DisplayType display
= DT_DEFAULT
;
1974 if (strstart(p
, "sdl", &opts
)) {
1978 const char *nextopt
;
1980 if (strstart(opts
, ",frame=", &nextopt
)) {
1982 if (strstart(opts
, "on", &nextopt
)) {
1984 } else if (strstart(opts
, "off", &nextopt
)) {
1987 goto invalid_sdl_args
;
1989 } else if (strstart(opts
, ",alt_grab=", &nextopt
)) {
1991 if (strstart(opts
, "on", &nextopt
)) {
1993 } else if (strstart(opts
, "off", &nextopt
)) {
1996 goto invalid_sdl_args
;
1998 } else if (strstart(opts
, ",ctrl_grab=", &nextopt
)) {
2000 if (strstart(opts
, "on", &nextopt
)) {
2002 } else if (strstart(opts
, "off", &nextopt
)) {
2005 goto invalid_sdl_args
;
2007 } else if (strstart(opts
, ",window_close=", &nextopt
)) {
2009 if (strstart(opts
, "on", &nextopt
)) {
2011 } else if (strstart(opts
, "off", &nextopt
)) {
2014 goto invalid_sdl_args
;
2016 } else if (strstart(opts
, ",gl=", &nextopt
)) {
2018 if (strstart(opts
, "on", &nextopt
)) {
2020 } else if (strstart(opts
, "off", &nextopt
)) {
2023 goto invalid_sdl_args
;
2027 fprintf(stderr
, "Invalid SDL option string: %s\n", p
);
2033 fprintf(stderr
, "SDL support is disabled\n");
2036 } else if (strstart(p
, "vnc", &opts
)) {
2039 if (vnc_parse_func(opts
+1) == NULL
) {
2043 fprintf(stderr
, "VNC requires a display argument vnc=<display>\n");
2047 fprintf(stderr
, "VNC support is disabled\n");
2050 } else if (strstart(p
, "curses", &opts
)) {
2051 #ifdef CONFIG_CURSES
2052 display
= DT_CURSES
;
2054 fprintf(stderr
, "Curses support is disabled\n");
2057 } else if (strstart(p
, "gtk", &opts
)) {
2061 const char *nextopt
;
2063 if (strstart(opts
, ",grab_on_hover=", &nextopt
)) {
2065 if (strstart(opts
, "on", &nextopt
)) {
2066 grab_on_hover
= true;
2067 } else if (strstart(opts
, "off", &nextopt
)) {
2068 grab_on_hover
= false;
2070 goto invalid_gtk_args
;
2072 } else if (strstart(opts
, ",gl=", &nextopt
)) {
2074 if (strstart(opts
, "on", &nextopt
)) {
2076 } else if (strstart(opts
, "off", &nextopt
)) {
2079 goto invalid_gtk_args
;
2083 fprintf(stderr
, "Invalid GTK option string: %s\n", p
);
2089 fprintf(stderr
, "GTK support is disabled\n");
2092 } else if (strstart(p
, "none", &opts
)) {
2095 fprintf(stderr
, "Unknown display type: %s\n", p
);
2102 static int balloon_parse(const char *arg
)
2106 if (strcmp(arg
, "none") == 0) {
2110 if (!strncmp(arg
, "virtio", 6)) {
2111 if (arg
[6] == ',') {
2112 /* have params -> parse them */
2113 opts
= qemu_opts_parse(qemu_find_opts("device"), arg
+7, 0);
2117 /* create empty opts */
2118 opts
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
2121 qemu_opt_set(opts
, "driver", "virtio-balloon", &error_abort
);
2128 char *qemu_find_file(int type
, const char *name
)
2134 /* Try the name as a straight path first */
2135 if (access(name
, R_OK
) == 0) {
2136 trace_load_file(name
, name
);
2137 return g_strdup(name
);
2141 case QEMU_FILE_TYPE_BIOS
:
2144 case QEMU_FILE_TYPE_KEYMAP
:
2145 subdir
= "keymaps/";
2151 for (i
= 0; i
< data_dir_idx
; i
++) {
2152 buf
= g_strdup_printf("%s/%s%s", data_dir
[i
], subdir
, name
);
2153 if (access(buf
, R_OK
) == 0) {
2154 trace_load_file(name
, buf
);
2162 static int parse_fw_cfg(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2166 const char *name
, *file
;
2168 if (opaque
== NULL
) {
2169 error_report("fw_cfg device not available");
2172 name
= qemu_opt_get(opts
, "name");
2173 file
= qemu_opt_get(opts
, "file");
2174 if (name
== NULL
|| *name
== '\0' || file
== NULL
|| *file
== '\0') {
2175 error_report("invalid argument value");
2178 if (strlen(name
) > FW_CFG_MAX_FILE_PATH
- 1) {
2179 error_report("name too long (max. %d char)", FW_CFG_MAX_FILE_PATH
- 1);
2182 if (strncmp(name
, "opt/", 4) != 0) {
2183 error_report("WARNING: externally provided fw_cfg item names "
2184 "should be prefixed with \"opt/\"!");
2186 if (!g_file_get_contents(file
, &buf
, &size
, NULL
)) {
2187 error_report("can't load %s", file
);
2190 fw_cfg_add_file((FWCfgState
*)opaque
, name
, buf
, size
);
2194 static int device_help_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2196 return qdev_device_help(opts
);
2199 static int device_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2203 dev
= qdev_device_add(opts
);
2206 object_unref(OBJECT(dev
));
2210 static int chardev_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2212 Error
*local_err
= NULL
;
2214 qemu_chr_new_from_opts(opts
, NULL
, &local_err
);
2216 error_report_err(local_err
);
2222 #ifdef CONFIG_VIRTFS
2223 static int fsdev_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2226 ret
= qemu_fsdev_add(opts
);
2232 static int mon_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2234 CharDriverState
*chr
;
2235 const char *chardev
;
2239 mode
= qemu_opt_get(opts
, "mode");
2243 if (strcmp(mode
, "readline") == 0) {
2244 flags
= MONITOR_USE_READLINE
;
2245 } else if (strcmp(mode
, "control") == 0) {
2246 flags
= MONITOR_USE_CONTROL
;
2248 fprintf(stderr
, "unknown monitor mode \"%s\"\n", mode
);
2252 if (qemu_opt_get_bool(opts
, "pretty", 0))
2253 flags
|= MONITOR_USE_PRETTY
;
2255 if (qemu_opt_get_bool(opts
, "default", 0))
2256 flags
|= MONITOR_IS_DEFAULT
;
2258 chardev
= qemu_opt_get(opts
, "chardev");
2259 chr
= qemu_chr_find(chardev
);
2261 fprintf(stderr
, "chardev \"%s\" not found\n", chardev
);
2265 qemu_chr_fe_claim_no_fail(chr
);
2266 monitor_init(chr
, flags
);
2270 static void monitor_parse(const char *optarg
, const char *mode
, bool pretty
)
2272 static int monitor_device_index
= 0;
2273 Error
*local_err
= NULL
;
2279 if (strstart(optarg
, "chardev:", &p
)) {
2280 snprintf(label
, sizeof(label
), "%s", p
);
2282 snprintf(label
, sizeof(label
), "compat_monitor%d",
2283 monitor_device_index
);
2284 if (monitor_device_index
== 0) {
2287 opts
= qemu_chr_parse_compat(label
, optarg
);
2289 fprintf(stderr
, "parse error: %s\n", optarg
);
2294 opts
= qemu_opts_create(qemu_find_opts("mon"), label
, 1, &local_err
);
2296 error_report_err(local_err
);
2299 qemu_opt_set(opts
, "mode", mode
, &error_abort
);
2300 qemu_opt_set(opts
, "chardev", label
, &error_abort
);
2301 qemu_opt_set_bool(opts
, "pretty", pretty
, &error_abort
);
2303 qemu_opt_set(opts
, "default", "on", &error_abort
);
2304 monitor_device_index
++;
2307 struct device_config
{
2309 DEV_USB
, /* -usbdevice */
2311 DEV_SERIAL
, /* -serial */
2312 DEV_PARALLEL
, /* -parallel */
2313 DEV_VIRTCON
, /* -virtioconsole */
2314 DEV_DEBUGCON
, /* -debugcon */
2315 DEV_GDB
, /* -gdb, -s */
2316 DEV_SCLP
, /* s390 sclp */
2318 const char *cmdline
;
2320 QTAILQ_ENTRY(device_config
) next
;
2323 static QTAILQ_HEAD(, device_config
) device_configs
=
2324 QTAILQ_HEAD_INITIALIZER(device_configs
);
2326 static void add_device_config(int type
, const char *cmdline
)
2328 struct device_config
*conf
;
2330 conf
= g_malloc0(sizeof(*conf
));
2332 conf
->cmdline
= cmdline
;
2333 loc_save(&conf
->loc
);
2334 QTAILQ_INSERT_TAIL(&device_configs
, conf
, next
);
2337 static int foreach_device_config(int type
, int (*func
)(const char *cmdline
))
2339 struct device_config
*conf
;
2342 QTAILQ_FOREACH(conf
, &device_configs
, next
) {
2343 if (conf
->type
!= type
)
2345 loc_push_restore(&conf
->loc
);
2346 rc
= func(conf
->cmdline
);
2347 loc_pop(&conf
->loc
);
2355 static int serial_parse(const char *devname
)
2357 static int index
= 0;
2360 if (strcmp(devname
, "none") == 0)
2362 if (index
== MAX_SERIAL_PORTS
) {
2363 fprintf(stderr
, "qemu: too many serial ports\n");
2366 snprintf(label
, sizeof(label
), "serial%d", index
);
2367 serial_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2368 if (!serial_hds
[index
]) {
2369 fprintf(stderr
, "qemu: could not connect serial device"
2370 " to character backend '%s'\n", devname
);
2377 static int parallel_parse(const char *devname
)
2379 static int index
= 0;
2382 if (strcmp(devname
, "none") == 0)
2384 if (index
== MAX_PARALLEL_PORTS
) {
2385 fprintf(stderr
, "qemu: too many parallel ports\n");
2388 snprintf(label
, sizeof(label
), "parallel%d", index
);
2389 parallel_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2390 if (!parallel_hds
[index
]) {
2391 fprintf(stderr
, "qemu: could not connect parallel device"
2392 " to character backend '%s'\n", devname
);
2399 static int virtcon_parse(const char *devname
)
2401 QemuOptsList
*device
= qemu_find_opts("device");
2402 static int index
= 0;
2404 QemuOpts
*bus_opts
, *dev_opts
;
2406 if (strcmp(devname
, "none") == 0)
2408 if (index
== MAX_VIRTIO_CONSOLES
) {
2409 fprintf(stderr
, "qemu: too many virtio consoles\n");
2413 bus_opts
= qemu_opts_create(device
, NULL
, 0, &error_abort
);
2414 if (arch_type
== QEMU_ARCH_S390X
) {
2415 qemu_opt_set(bus_opts
, "driver", "virtio-serial-s390", &error_abort
);
2417 qemu_opt_set(bus_opts
, "driver", "virtio-serial-pci", &error_abort
);
2420 dev_opts
= qemu_opts_create(device
, NULL
, 0, &error_abort
);
2421 qemu_opt_set(dev_opts
, "driver", "virtconsole", &error_abort
);
2423 snprintf(label
, sizeof(label
), "virtcon%d", index
);
2424 virtcon_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2425 if (!virtcon_hds
[index
]) {
2426 fprintf(stderr
, "qemu: could not connect virtio console"
2427 " to character backend '%s'\n", devname
);
2430 qemu_opt_set(dev_opts
, "chardev", label
, &error_abort
);
2436 static int sclp_parse(const char *devname
)
2438 QemuOptsList
*device
= qemu_find_opts("device");
2439 static int index
= 0;
2443 if (strcmp(devname
, "none") == 0) {
2446 if (index
== MAX_SCLP_CONSOLES
) {
2447 fprintf(stderr
, "qemu: too many sclp consoles\n");
2451 assert(arch_type
== QEMU_ARCH_S390X
);
2453 dev_opts
= qemu_opts_create(device
, NULL
, 0, NULL
);
2454 qemu_opt_set(dev_opts
, "driver", "sclpconsole", &error_abort
);
2456 snprintf(label
, sizeof(label
), "sclpcon%d", index
);
2457 sclp_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2458 if (!sclp_hds
[index
]) {
2459 fprintf(stderr
, "qemu: could not connect sclp console"
2460 " to character backend '%s'\n", devname
);
2463 qemu_opt_set(dev_opts
, "chardev", label
, &error_abort
);
2469 static int debugcon_parse(const char *devname
)
2473 if (!qemu_chr_new("debugcon", devname
, NULL
)) {
2476 opts
= qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL
);
2478 fprintf(stderr
, "qemu: already have a debugcon device\n");
2481 qemu_opt_set(opts
, "driver", "isa-debugcon", &error_abort
);
2482 qemu_opt_set(opts
, "chardev", "debugcon", &error_abort
);
2486 static gint
machine_class_cmp(gconstpointer a
, gconstpointer b
)
2488 const MachineClass
*mc1
= a
, *mc2
= b
;
2491 if (mc1
->family
== NULL
) {
2492 if (mc2
->family
== NULL
) {
2493 /* Compare standalone machine types against each other; they sort
2494 * in increasing order.
2496 return strcmp(object_class_get_name(OBJECT_CLASS(mc1
)),
2497 object_class_get_name(OBJECT_CLASS(mc2
)));
2500 /* Standalone machine types sort after families. */
2504 if (mc2
->family
== NULL
) {
2505 /* Families sort before standalone machine types. */
2509 /* Families sort between each other alphabetically increasingly. */
2510 res
= strcmp(mc1
->family
, mc2
->family
);
2515 /* Within the same family, machine types sort in decreasing order. */
2516 return strcmp(object_class_get_name(OBJECT_CLASS(mc2
)),
2517 object_class_get_name(OBJECT_CLASS(mc1
)));
2520 static MachineClass
*machine_parse(const char *name
)
2522 MachineClass
*mc
= NULL
;
2523 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
2526 mc
= find_machine(name
);
2529 g_slist_free(machines
);
2532 if (name
&& !is_help_option(name
)) {
2533 error_report("Unsupported machine type");
2534 error_printf("Use -machine help to list supported machines!\n");
2536 printf("Supported machines are:\n");
2537 machines
= g_slist_sort(machines
, machine_class_cmp
);
2538 for (el
= machines
; el
; el
= el
->next
) {
2539 MachineClass
*mc
= el
->data
;
2541 printf("%-20s %s (alias of %s)\n", mc
->alias
, mc
->desc
, mc
->name
);
2543 printf("%-20s %s%s\n", mc
->name
, mc
->desc
,
2544 mc
->is_default
? " (default)" : "");
2548 g_slist_free(machines
);
2549 exit(!name
|| !is_help_option(name
));
2552 void qemu_add_exit_notifier(Notifier
*notify
)
2554 notifier_list_add(&exit_notifiers
, notify
);
2557 void qemu_remove_exit_notifier(Notifier
*notify
)
2559 notifier_remove(notify
);
2562 static void qemu_run_exit_notifiers(void)
2564 notifier_list_notify(&exit_notifiers
, NULL
);
2567 static bool machine_init_done
;
2569 void qemu_add_machine_init_done_notifier(Notifier
*notify
)
2571 notifier_list_add(&machine_init_done_notifiers
, notify
);
2572 if (machine_init_done
) {
2573 notify
->notify(notify
, NULL
);
2577 static void qemu_run_machine_init_done_notifiers(void)
2579 notifier_list_notify(&machine_init_done_notifiers
, NULL
);
2580 machine_init_done
= true;
2583 static const QEMUOption
*lookup_opt(int argc
, char **argv
,
2584 const char **poptarg
, int *poptind
)
2586 const QEMUOption
*popt
;
2587 int optind
= *poptind
;
2588 char *r
= argv
[optind
];
2591 loc_set_cmdline(argv
, optind
, 1);
2593 /* Treat --foo the same as -foo. */
2596 popt
= qemu_options
;
2599 error_report("invalid option");
2602 if (!strcmp(popt
->name
, r
+ 1))
2606 if (popt
->flags
& HAS_ARG
) {
2607 if (optind
>= argc
) {
2608 error_report("requires an argument");
2611 optarg
= argv
[optind
++];
2612 loc_set_cmdline(argv
, optind
- 2, 2);
2623 static gpointer
malloc_and_trace(gsize n_bytes
)
2625 void *ptr
= malloc(n_bytes
);
2626 trace_g_malloc(n_bytes
, ptr
);
2630 static gpointer
realloc_and_trace(gpointer mem
, gsize n_bytes
)
2632 void *ptr
= realloc(mem
, n_bytes
);
2633 trace_g_realloc(mem
, n_bytes
, ptr
);
2637 static void free_and_trace(gpointer mem
)
2643 static int machine_set_property(void *opaque
,
2644 const char *name
, const char *value
,
2647 Object
*obj
= OBJECT(opaque
);
2648 Error
*local_err
= NULL
;
2651 if (strcmp(name
, "type") == 0) {
2655 qom_name
= g_strdup(name
);
2663 object_property_parse(obj
, value
, qom_name
, &local_err
);
2667 error_report_err(local_err
);
2674 static int object_create(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2683 ov
= opts_visitor_new(opts
);
2684 pdict
= qemu_opts_to_qdict(opts
, NULL
);
2686 visit_start_struct(opts_get_visitor(ov
), &dummy
, NULL
, NULL
, 0, &err
);
2691 qdict_del(pdict
, "qom-type");
2692 visit_type_str(opts_get_visitor(ov
), &type
, "qom-type", &err
);
2697 qdict_del(pdict
, "id");
2698 visit_type_str(opts_get_visitor(ov
), &id
, "id", &err
);
2703 object_add(type
, id
, pdict
, opts_get_visitor(ov
), &err
);
2707 visit_end_struct(opts_get_visitor(ov
), &err
);
2709 qmp_object_del(id
, NULL
);
2713 opts_visitor_cleanup(ov
);
2720 error_report_err(err
);
2726 static void set_memory_options(uint64_t *ram_slots
, ram_addr_t
*maxram_size
,
2730 const char *mem_str
;
2731 const char *maxmem_str
, *slots_str
;
2732 const ram_addr_t default_ram_size
= mc
->default_ram_size
;
2733 QemuOpts
*opts
= qemu_find_opts_singleton("memory");
2736 mem_str
= qemu_opt_get(opts
, "size");
2739 error_report("missing 'size' option value");
2743 sz
= qemu_opt_get_size(opts
, "size", ram_size
);
2745 /* Fix up legacy suffix-less format */
2746 if (g_ascii_isdigit(mem_str
[strlen(mem_str
) - 1])) {
2747 uint64_t overflow_check
= sz
;
2750 if ((sz
>> 20) != overflow_check
) {
2751 error_report("too large 'size' option value");
2757 /* backward compatibility behaviour for case "-m 0" */
2759 sz
= default_ram_size
;
2762 sz
= QEMU_ALIGN_UP(sz
, 8192);
2764 if (ram_size
!= sz
) {
2765 error_report("ram size too large");
2769 /* store value for the future use */
2770 qemu_opt_set_number(opts
, "size", ram_size
, &error_abort
);
2771 *maxram_size
= ram_size
;
2773 maxmem_str
= qemu_opt_get(opts
, "maxmem");
2774 slots_str
= qemu_opt_get(opts
, "slots");
2775 if (maxmem_str
&& slots_str
) {
2778 sz
= qemu_opt_get_size(opts
, "maxmem", 0);
2779 slots
= qemu_opt_get_number(opts
, "slots", 0);
2780 if (sz
< ram_size
) {
2781 error_report("invalid value of -m option maxmem: "
2782 "maximum memory size (0x%" PRIx64
") must be at least "
2783 "the initial memory size (0x" RAM_ADDR_FMT
")",
2786 } else if (sz
> ram_size
) {
2788 error_report("invalid value of -m option: maxmem was "
2789 "specified, but no hotplug slots were specified");
2793 error_report("invalid value of -m option maxmem: "
2794 "memory slots were specified but maximum memory size "
2795 "(0x%" PRIx64
") is equal to the initial memory size "
2796 "(0x" RAM_ADDR_FMT
")", sz
, ram_size
);
2802 } else if ((!maxmem_str
&& slots_str
) ||
2803 (maxmem_str
&& !slots_str
)) {
2804 error_report("invalid -m option value: missing "
2805 "'%s' option", slots_str
? "maxmem" : "slots");
2810 int main(int argc
, char **argv
, char **envp
)
2813 int snapshot
, linux_boot
;
2814 const char *initrd_filename
;
2815 const char *kernel_filename
, *kernel_cmdline
;
2816 const char *boot_order
= NULL
;
2817 const char *boot_once
= NULL
;
2819 int cyls
, heads
, secs
, translation
;
2820 QemuOpts
*hda_opts
= NULL
, *opts
, *machine_opts
, *icount_opts
= NULL
;
2821 QemuOptsList
*olist
;
2824 const char *loadvm
= NULL
;
2825 MachineClass
*machine_class
;
2826 const char *cpu_model
;
2827 const char *vga_model
= NULL
;
2828 const char *qtest_chrdev
= NULL
;
2829 const char *qtest_log
= NULL
;
2830 const char *pid_file
= NULL
;
2831 const char *incoming
= NULL
;
2833 int show_vnc_port
= 0;
2835 bool defconfig
= true;
2836 bool userconfig
= true;
2837 const char *log_mask
= NULL
;
2838 const char *log_file
= NULL
;
2839 GMemVTable mem_trace
= {
2840 .malloc
= malloc_and_trace
,
2841 .realloc
= realloc_and_trace
,
2842 .free
= free_and_trace
,
2844 const char *trace_events
= NULL
;
2845 const char *trace_file
= NULL
;
2846 ram_addr_t maxram_size
;
2847 uint64_t ram_slots
= 0;
2848 FILE *vmstate_dump_file
= NULL
;
2849 Error
*main_loop_err
= NULL
;
2851 qemu_init_cpu_loop();
2852 qemu_mutex_lock_iothread();
2854 atexit(qemu_run_exit_notifiers
);
2855 error_set_progname(argv
[0]);
2856 qemu_init_exec_dir(argv
[0]);
2858 g_mem_set_vtable(&mem_trace
);
2860 module_call_init(MODULE_INIT_QOM
);
2862 qemu_add_opts(&qemu_drive_opts
);
2863 qemu_add_drive_opts(&qemu_legacy_drive_opts
);
2864 qemu_add_drive_opts(&qemu_common_drive_opts
);
2865 qemu_add_drive_opts(&qemu_drive_opts
);
2866 qemu_add_opts(&qemu_chardev_opts
);
2867 qemu_add_opts(&qemu_device_opts
);
2868 qemu_add_opts(&qemu_netdev_opts
);
2869 qemu_add_opts(&qemu_net_opts
);
2870 qemu_add_opts(&qemu_rtc_opts
);
2871 qemu_add_opts(&qemu_global_opts
);
2872 qemu_add_opts(&qemu_mon_opts
);
2873 qemu_add_opts(&qemu_trace_opts
);
2874 qemu_add_opts(&qemu_option_rom_opts
);
2875 qemu_add_opts(&qemu_machine_opts
);
2876 qemu_add_opts(&qemu_mem_opts
);
2877 qemu_add_opts(&qemu_smp_opts
);
2878 qemu_add_opts(&qemu_boot_opts
);
2879 qemu_add_opts(&qemu_sandbox_opts
);
2880 qemu_add_opts(&qemu_add_fd_opts
);
2881 qemu_add_opts(&qemu_object_opts
);
2882 qemu_add_opts(&qemu_tpmdev_opts
);
2883 qemu_add_opts(&qemu_realtime_opts
);
2884 qemu_add_opts(&qemu_msg_opts
);
2885 qemu_add_opts(&qemu_name_opts
);
2886 qemu_add_opts(&qemu_numa_opts
);
2887 qemu_add_opts(&qemu_icount_opts
);
2888 qemu_add_opts(&qemu_semihosting_config_opts
);
2889 qemu_add_opts(&qemu_fw_cfg_opts
);
2893 rtc_clock
= QEMU_CLOCK_HOST
;
2895 QLIST_INIT (&vm_change_state_head
);
2896 os_setup_early_signal_handling();
2898 module_call_init(MODULE_INIT_MACHINE
);
2899 machine_class
= find_default_machine();
2902 cyls
= heads
= secs
= 0;
2903 translation
= BIOS_ATA_TRANSLATION_AUTO
;
2907 bdrv_init_with_whitelist();
2911 /* first pass of option parsing */
2913 while (optind
< argc
) {
2914 if (argv
[optind
][0] != '-') {
2918 const QEMUOption
*popt
;
2920 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
2921 switch (popt
->index
) {
2922 case QEMU_OPTION_nodefconfig
:
2925 case QEMU_OPTION_nouserconfig
:
2934 ret
= qemu_read_default_config_files(userconfig
);
2940 /* second pass of option parsing */
2945 if (argv
[optind
][0] != '-') {
2946 hda_opts
= drive_add(IF_DEFAULT
, 0, argv
[optind
++], HD_OPTS
);
2948 const QEMUOption
*popt
;
2950 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
2951 if (!(popt
->arch_mask
& arch_type
)) {
2952 printf("Option %s not supported for this target\n", popt
->name
);
2955 switch(popt
->index
) {
2956 case QEMU_OPTION_no_kvm_irqchip
: {
2957 olist
= qemu_find_opts("machine");
2958 qemu_opts_parse(olist
, "kernel_irqchip=off", 0);
2961 case QEMU_OPTION_cpu
:
2962 /* hw initialization will check this */
2965 case QEMU_OPTION_hda
:
2969 snprintf(buf
, sizeof(buf
), "%s", HD_OPTS
);
2971 snprintf(buf
, sizeof(buf
),
2972 "%s,cyls=%d,heads=%d,secs=%d%s",
2973 HD_OPTS
, cyls
, heads
, secs
,
2974 translation
== BIOS_ATA_TRANSLATION_LBA
?
2976 translation
== BIOS_ATA_TRANSLATION_NONE
?
2977 ",trans=none" : "");
2978 drive_add(IF_DEFAULT
, 0, optarg
, buf
);
2981 case QEMU_OPTION_hdb
:
2982 case QEMU_OPTION_hdc
:
2983 case QEMU_OPTION_hdd
:
2984 drive_add(IF_DEFAULT
, popt
->index
- QEMU_OPTION_hda
, optarg
,
2987 case QEMU_OPTION_drive
:
2988 if (drive_def(optarg
) == NULL
) {
2992 case QEMU_OPTION_set
:
2993 if (qemu_set_option(optarg
) != 0)
2996 case QEMU_OPTION_global
:
2997 if (qemu_global_option(optarg
) != 0)
3000 case QEMU_OPTION_mtdblock
:
3001 drive_add(IF_MTD
, -1, optarg
, MTD_OPTS
);
3003 case QEMU_OPTION_sd
:
3004 drive_add(IF_SD
, -1, optarg
, SD_OPTS
);
3006 case QEMU_OPTION_pflash
:
3007 drive_add(IF_PFLASH
, -1, optarg
, PFLASH_OPTS
);
3009 case QEMU_OPTION_snapshot
:
3012 case QEMU_OPTION_hdachs
:
3016 cyls
= strtol(p
, (char **)&p
, 0);
3017 if (cyls
< 1 || cyls
> 16383)
3022 heads
= strtol(p
, (char **)&p
, 0);
3023 if (heads
< 1 || heads
> 16)
3028 secs
= strtol(p
, (char **)&p
, 0);
3029 if (secs
< 1 || secs
> 63)
3033 if (!strcmp(p
, "large")) {
3034 translation
= BIOS_ATA_TRANSLATION_LARGE
;
3035 } else if (!strcmp(p
, "rechs")) {
3036 translation
= BIOS_ATA_TRANSLATION_RECHS
;
3037 } else if (!strcmp(p
, "none")) {
3038 translation
= BIOS_ATA_TRANSLATION_NONE
;
3039 } else if (!strcmp(p
, "lba")) {
3040 translation
= BIOS_ATA_TRANSLATION_LBA
;
3041 } else if (!strcmp(p
, "auto")) {
3042 translation
= BIOS_ATA_TRANSLATION_AUTO
;
3046 } else if (*p
!= '\0') {
3048 fprintf(stderr
, "qemu: invalid physical CHS format\n");
3051 if (hda_opts
!= NULL
) {
3052 qemu_opt_set_number(hda_opts
, "cyls", cyls
,
3054 qemu_opt_set_number(hda_opts
, "heads", heads
,
3056 qemu_opt_set_number(hda_opts
, "secs", secs
,
3058 if (translation
== BIOS_ATA_TRANSLATION_LARGE
) {
3059 qemu_opt_set(hda_opts
, "trans", "large",
3061 } else if (translation
== BIOS_ATA_TRANSLATION_RECHS
) {
3062 qemu_opt_set(hda_opts
, "trans", "rechs",
3064 } else if (translation
== BIOS_ATA_TRANSLATION_LBA
) {
3065 qemu_opt_set(hda_opts
, "trans", "lba",
3067 } else if (translation
== BIOS_ATA_TRANSLATION_NONE
) {
3068 qemu_opt_set(hda_opts
, "trans", "none",
3074 case QEMU_OPTION_numa
:
3075 opts
= qemu_opts_parse(qemu_find_opts("numa"), optarg
, 1);
3080 case QEMU_OPTION_display
:
3081 display_type
= select_display(optarg
);
3083 case QEMU_OPTION_nographic
:
3084 display_type
= DT_NOGRAPHIC
;
3086 case QEMU_OPTION_curses
:
3087 #ifdef CONFIG_CURSES
3088 display_type
= DT_CURSES
;
3090 fprintf(stderr
, "Curses support is disabled\n");
3094 case QEMU_OPTION_portrait
:
3095 graphic_rotate
= 90;
3097 case QEMU_OPTION_rotate
:
3098 graphic_rotate
= strtol(optarg
, (char **) &optarg
, 10);
3099 if (graphic_rotate
!= 0 && graphic_rotate
!= 90 &&
3100 graphic_rotate
!= 180 && graphic_rotate
!= 270) {
3102 "qemu: only 90, 180, 270 deg rotation is available\n");
3106 case QEMU_OPTION_kernel
:
3107 qemu_opts_set(qemu_find_opts("machine"), 0, "kernel", optarg
,
3110 case QEMU_OPTION_initrd
:
3111 qemu_opts_set(qemu_find_opts("machine"), 0, "initrd", optarg
,
3114 case QEMU_OPTION_append
:
3115 qemu_opts_set(qemu_find_opts("machine"), 0, "append", optarg
,
3118 case QEMU_OPTION_dtb
:
3119 qemu_opts_set(qemu_find_opts("machine"), 0, "dtb", optarg
,
3122 case QEMU_OPTION_cdrom
:
3123 drive_add(IF_DEFAULT
, 2, optarg
, CDROM_OPTS
);
3125 case QEMU_OPTION_boot
:
3126 opts
= qemu_opts_parse(qemu_find_opts("boot-opts"), optarg
, 1);
3131 case QEMU_OPTION_fda
:
3132 case QEMU_OPTION_fdb
:
3133 drive_add(IF_FLOPPY
, popt
->index
- QEMU_OPTION_fda
,
3136 case QEMU_OPTION_no_fd_bootchk
:
3139 case QEMU_OPTION_netdev
:
3140 if (net_client_parse(qemu_find_opts("netdev"), optarg
) == -1) {
3144 case QEMU_OPTION_net
:
3145 if (net_client_parse(qemu_find_opts("net"), optarg
) == -1) {
3149 #ifdef CONFIG_LIBISCSI
3150 case QEMU_OPTION_iscsi
:
3151 opts
= qemu_opts_parse(qemu_find_opts("iscsi"), optarg
, 0);
3158 case QEMU_OPTION_tftp
:
3159 legacy_tftp_prefix
= optarg
;
3161 case QEMU_OPTION_bootp
:
3162 legacy_bootp_filename
= optarg
;
3164 case QEMU_OPTION_redir
:
3165 if (net_slirp_redir(optarg
) < 0)
3169 case QEMU_OPTION_bt
:
3170 add_device_config(DEV_BT
, optarg
);
3172 case QEMU_OPTION_audio_help
:
3176 case QEMU_OPTION_soundhw
:
3177 select_soundhw (optarg
);
3182 case QEMU_OPTION_version
:
3187 opts
= qemu_opts_parse(qemu_find_opts("memory"),
3194 case QEMU_OPTION_tpmdev
:
3195 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg
) < 0) {
3200 case QEMU_OPTION_mempath
:
3203 case QEMU_OPTION_mem_prealloc
:
3213 add_device_config(DEV_GDB
, "tcp::" DEFAULT_GDBSTUB_PORT
);
3215 case QEMU_OPTION_gdb
:
3216 add_device_config(DEV_GDB
, optarg
);
3219 if (data_dir_idx
< ARRAY_SIZE(data_dir
)) {
3220 data_dir
[data_dir_idx
++] = optarg
;
3223 case QEMU_OPTION_bios
:
3224 qemu_opts_set(qemu_find_opts("machine"), 0, "firmware", optarg
,
3227 case QEMU_OPTION_singlestep
:
3234 keyboard_layout
= optarg
;
3236 case QEMU_OPTION_localtime
:
3239 case QEMU_OPTION_vga
:
3248 w
= strtol(p
, (char **)&p
, 10);
3251 fprintf(stderr
, "qemu: invalid resolution or depth\n");
3257 h
= strtol(p
, (char **)&p
, 10);
3262 depth
= strtol(p
, (char **)&p
, 10);
3263 if (depth
!= 8 && depth
!= 15 && depth
!= 16 &&
3264 depth
!= 24 && depth
!= 32)
3266 } else if (*p
== '\0') {
3267 depth
= graphic_depth
;
3274 graphic_depth
= depth
;
3277 case QEMU_OPTION_echr
:
3280 term_escape_char
= strtol(optarg
, &r
, 0);
3282 printf("Bad argument to echr\n");
3285 case QEMU_OPTION_monitor
:
3286 default_monitor
= 0;
3287 if (strncmp(optarg
, "none", 4)) {
3288 monitor_parse(optarg
, "readline", false);
3291 case QEMU_OPTION_qmp
:
3292 monitor_parse(optarg
, "control", false);
3293 default_monitor
= 0;
3295 case QEMU_OPTION_qmp_pretty
:
3296 monitor_parse(optarg
, "control", true);
3297 default_monitor
= 0;
3299 case QEMU_OPTION_mon
:
3300 opts
= qemu_opts_parse(qemu_find_opts("mon"), optarg
, 1);
3304 default_monitor
= 0;
3306 case QEMU_OPTION_chardev
:
3307 opts
= qemu_opts_parse(qemu_find_opts("chardev"), optarg
, 1);
3312 case QEMU_OPTION_fsdev
:
3313 olist
= qemu_find_opts("fsdev");
3315 fprintf(stderr
, "fsdev is not supported by this qemu build.\n");
3318 opts
= qemu_opts_parse(olist
, optarg
, 1);
3323 case QEMU_OPTION_virtfs
: {
3326 const char *writeout
, *sock_fd
, *socket
;
3328 olist
= qemu_find_opts("virtfs");
3330 fprintf(stderr
, "virtfs is not supported by this qemu build.\n");
3333 opts
= qemu_opts_parse(olist
, optarg
, 1);
3338 if (qemu_opt_get(opts
, "fsdriver") == NULL
||
3339 qemu_opt_get(opts
, "mount_tag") == NULL
) {
3340 fprintf(stderr
, "Usage: -virtfs fsdriver,mount_tag=tag.\n");
3343 fsdev
= qemu_opts_create(qemu_find_opts("fsdev"),
3344 qemu_opt_get(opts
, "mount_tag"),
3347 fprintf(stderr
, "duplicate fsdev id: %s\n",
3348 qemu_opt_get(opts
, "mount_tag"));
3352 writeout
= qemu_opt_get(opts
, "writeout");
3354 #ifdef CONFIG_SYNC_FILE_RANGE
3355 qemu_opt_set(fsdev
, "writeout", writeout
, &error_abort
);
3357 fprintf(stderr
, "writeout=immediate not supported on "
3362 qemu_opt_set(fsdev
, "fsdriver",
3363 qemu_opt_get(opts
, "fsdriver"), &error_abort
);
3364 qemu_opt_set(fsdev
, "path", qemu_opt_get(opts
, "path"),
3366 qemu_opt_set(fsdev
, "security_model",
3367 qemu_opt_get(opts
, "security_model"),
3369 socket
= qemu_opt_get(opts
, "socket");
3371 qemu_opt_set(fsdev
, "socket", socket
, &error_abort
);
3373 sock_fd
= qemu_opt_get(opts
, "sock_fd");
3375 qemu_opt_set(fsdev
, "sock_fd", sock_fd
, &error_abort
);
3378 qemu_opt_set_bool(fsdev
, "readonly",
3379 qemu_opt_get_bool(opts
, "readonly", 0),
3381 device
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
3383 qemu_opt_set(device
, "driver", "virtio-9p-pci", &error_abort
);
3384 qemu_opt_set(device
, "fsdev",
3385 qemu_opt_get(opts
, "mount_tag"), &error_abort
);
3386 qemu_opt_set(device
, "mount_tag",
3387 qemu_opt_get(opts
, "mount_tag"), &error_abort
);
3390 case QEMU_OPTION_virtfs_synth
: {
3394 fsdev
= qemu_opts_create(qemu_find_opts("fsdev"), "v_synth",
3397 fprintf(stderr
, "duplicate option: %s\n", "virtfs_synth");
3400 qemu_opt_set(fsdev
, "fsdriver", "synth", &error_abort
);
3402 device
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
3404 qemu_opt_set(device
, "driver", "virtio-9p-pci", &error_abort
);
3405 qemu_opt_set(device
, "fsdev", "v_synth", &error_abort
);
3406 qemu_opt_set(device
, "mount_tag", "v_synth", &error_abort
);
3409 case QEMU_OPTION_serial
:
3410 add_device_config(DEV_SERIAL
, optarg
);
3412 if (strncmp(optarg
, "mon:", 4) == 0) {
3413 default_monitor
= 0;
3416 case QEMU_OPTION_watchdog
:
3419 "qemu: only one watchdog option may be given\n");
3424 case QEMU_OPTION_watchdog_action
:
3425 if (select_watchdog_action(optarg
) == -1) {
3426 fprintf(stderr
, "Unknown -watchdog-action parameter\n");
3430 case QEMU_OPTION_virtiocon
:
3431 add_device_config(DEV_VIRTCON
, optarg
);
3432 default_virtcon
= 0;
3433 if (strncmp(optarg
, "mon:", 4) == 0) {
3434 default_monitor
= 0;
3437 case QEMU_OPTION_parallel
:
3438 add_device_config(DEV_PARALLEL
, optarg
);
3439 default_parallel
= 0;
3440 if (strncmp(optarg
, "mon:", 4) == 0) {
3441 default_monitor
= 0;
3444 case QEMU_OPTION_debugcon
:
3445 add_device_config(DEV_DEBUGCON
, optarg
);
3447 case QEMU_OPTION_loadvm
:
3450 case QEMU_OPTION_full_screen
:
3453 case QEMU_OPTION_no_frame
:
3456 case QEMU_OPTION_alt_grab
:
3459 case QEMU_OPTION_ctrl_grab
:
3462 case QEMU_OPTION_no_quit
:
3465 case QEMU_OPTION_sdl
:
3467 display_type
= DT_SDL
;
3470 fprintf(stderr
, "SDL support is disabled\n");
3473 case QEMU_OPTION_pidfile
:
3476 case QEMU_OPTION_win2k_hack
:
3477 win2k_install_hack
= 1;
3479 case QEMU_OPTION_rtc_td_hack
: {
3480 static GlobalProperty slew_lost_ticks
[] = {
3482 .driver
= "mc146818rtc",
3483 .property
= "lost_tick_policy",
3486 { /* end of list */ }
3489 qdev_prop_register_global_list(slew_lost_ticks
);
3492 case QEMU_OPTION_acpitable
:
3493 opts
= qemu_opts_parse(qemu_find_opts("acpi"), optarg
, 1);
3497 do_acpitable_option(opts
);
3499 case QEMU_OPTION_smbios
:
3500 opts
= qemu_opts_parse(qemu_find_opts("smbios"), optarg
, 0);
3504 do_smbios_option(opts
);
3506 case QEMU_OPTION_fwcfg
:
3507 opts
= qemu_opts_parse(qemu_find_opts("fw_cfg"), optarg
, 1);
3512 case QEMU_OPTION_enable_kvm
:
3513 olist
= qemu_find_opts("machine");
3514 qemu_opts_parse(olist
, "accel=kvm", 0);
3517 case QEMU_OPTION_machine
:
3518 olist
= qemu_find_opts("machine");
3519 opts
= qemu_opts_parse(olist
, optarg
, 1);
3524 case QEMU_OPTION_no_kvm
:
3525 olist
= qemu_find_opts("machine");
3526 qemu_opts_parse(olist
, "accel=tcg", 0);
3528 case QEMU_OPTION_no_kvm_pit
: {
3529 fprintf(stderr
, "Warning: KVM PIT can no longer be disabled "
3533 case QEMU_OPTION_no_kvm_pit_reinjection
: {
3534 static GlobalProperty kvm_pit_lost_tick_policy
[] = {
3536 .driver
= "kvm-pit",
3537 .property
= "lost_tick_policy",
3540 { /* end of list */ }
3543 fprintf(stderr
, "Warning: option deprecated, use "
3544 "lost_tick_policy property of kvm-pit instead.\n");
3545 qdev_prop_register_global_list(kvm_pit_lost_tick_policy
);
3548 case QEMU_OPTION_usb
:
3549 olist
= qemu_find_opts("machine");
3550 qemu_opts_parse(olist
, "usb=on", 0);
3552 case QEMU_OPTION_usbdevice
:
3553 olist
= qemu_find_opts("machine");
3554 qemu_opts_parse(olist
, "usb=on", 0);
3555 add_device_config(DEV_USB
, optarg
);
3557 case QEMU_OPTION_device
:
3558 if (!qemu_opts_parse(qemu_find_opts("device"), optarg
, 1)) {
3562 case QEMU_OPTION_smp
:
3563 if (!qemu_opts_parse(qemu_find_opts("smp-opts"), optarg
, 1)) {
3567 case QEMU_OPTION_vnc
:
3569 if (vnc_parse_func(optarg
) == NULL
) {
3573 fprintf(stderr
, "VNC support is disabled\n");
3577 case QEMU_OPTION_no_acpi
:
3580 case QEMU_OPTION_no_hpet
:
3583 case QEMU_OPTION_balloon
:
3584 if (balloon_parse(optarg
) < 0) {
3585 fprintf(stderr
, "Unknown -balloon argument %s\n", optarg
);
3589 case QEMU_OPTION_no_reboot
:
3592 case QEMU_OPTION_no_shutdown
:
3595 case QEMU_OPTION_show_cursor
:
3598 case QEMU_OPTION_uuid
:
3599 if(qemu_uuid_parse(optarg
, qemu_uuid
) < 0) {
3600 fprintf(stderr
, "Fail to parse UUID string."
3601 " Wrong format.\n");
3604 qemu_uuid_set
= true;
3606 case QEMU_OPTION_option_rom
:
3607 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
3608 fprintf(stderr
, "Too many option ROMs\n");
3611 opts
= qemu_opts_parse(qemu_find_opts("option-rom"), optarg
, 1);
3615 option_rom
[nb_option_roms
].name
= qemu_opt_get(opts
, "romfile");
3616 option_rom
[nb_option_roms
].bootindex
=
3617 qemu_opt_get_number(opts
, "bootindex", -1);
3618 if (!option_rom
[nb_option_roms
].name
) {
3619 fprintf(stderr
, "Option ROM file is not specified\n");
3624 case QEMU_OPTION_semihosting
:
3625 semihosting_enabled
= 1;
3626 semihosting_target
= SEMIHOSTING_TARGET_AUTO
;
3628 case QEMU_OPTION_semihosting_config
:
3629 semihosting_enabled
= 1;
3630 opts
= qemu_opts_parse(qemu_find_opts("semihosting-config"),
3633 semihosting_enabled
= qemu_opt_get_bool(opts
, "enable",
3635 const char *target
= qemu_opt_get(opts
, "target");
3636 if (target
!= NULL
) {
3637 if (strcmp("native", target
) == 0) {
3638 semihosting_target
= SEMIHOSTING_TARGET_NATIVE
;
3639 } else if (strcmp("gdb", target
) == 0) {
3640 semihosting_target
= SEMIHOSTING_TARGET_GDB
;
3641 } else if (strcmp("auto", target
) == 0) {
3642 semihosting_target
= SEMIHOSTING_TARGET_AUTO
;
3644 fprintf(stderr
, "Unsupported semihosting-config"
3650 semihosting_target
= SEMIHOSTING_TARGET_AUTO
;
3653 fprintf(stderr
, "Unsupported semihosting-config %s\n",
3658 case QEMU_OPTION_tdf
:
3659 fprintf(stderr
, "Warning: user space PIT time drift fix "
3660 "is no longer supported.\n");
3662 case QEMU_OPTION_name
:
3663 opts
= qemu_opts_parse(qemu_find_opts("name"), optarg
, 1);
3668 case QEMU_OPTION_prom_env
:
3669 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
3670 fprintf(stderr
, "Too many prom variables\n");
3673 prom_envs
[nb_prom_envs
] = optarg
;
3676 case QEMU_OPTION_old_param
:
3679 case QEMU_OPTION_clock
:
3680 /* Clock options no longer exist. Keep this option for
3681 * backward compatibility.
3684 case QEMU_OPTION_startdate
:
3685 configure_rtc_date_offset(optarg
, 1);
3687 case QEMU_OPTION_rtc
:
3688 opts
= qemu_opts_parse(qemu_find_opts("rtc"), optarg
, 0);
3692 configure_rtc(opts
);
3694 case QEMU_OPTION_tb_size
:
3695 tcg_tb_size
= strtol(optarg
, NULL
, 0);
3696 if (tcg_tb_size
< 0) {
3700 case QEMU_OPTION_icount
:
3701 icount_opts
= qemu_opts_parse(qemu_find_opts("icount"),
3707 case QEMU_OPTION_incoming
:
3709 runstate_set(RUN_STATE_INMIGRATE
);
3713 case QEMU_OPTION_nodefaults
:
3716 case QEMU_OPTION_xen_domid
:
3717 if (!(xen_available())) {
3718 printf("Option %s not supported for this target\n", popt
->name
);
3721 xen_domid
= atoi(optarg
);
3723 case QEMU_OPTION_xen_create
:
3724 if (!(xen_available())) {
3725 printf("Option %s not supported for this target\n", popt
->name
);
3728 xen_mode
= XEN_CREATE
;
3730 case QEMU_OPTION_xen_attach
:
3731 if (!(xen_available())) {
3732 printf("Option %s not supported for this target\n", popt
->name
);
3735 xen_mode
= XEN_ATTACH
;
3737 case QEMU_OPTION_trace
:
3739 opts
= qemu_opts_parse(qemu_find_opts("trace"), optarg
, 0);
3743 trace_events
= qemu_opt_get(opts
, "events");
3744 trace_file
= qemu_opt_get(opts
, "file");
3747 case QEMU_OPTION_readconfig
:
3749 int ret
= qemu_read_config_file(optarg
);
3751 fprintf(stderr
, "read config %s: %s\n", optarg
,
3757 case QEMU_OPTION_spice
:
3758 olist
= qemu_find_opts("spice");
3760 fprintf(stderr
, "spice is not supported by this qemu build.\n");
3763 opts
= qemu_opts_parse(olist
, optarg
, 0);
3769 case QEMU_OPTION_writeconfig
:
3772 if (strcmp(optarg
, "-") == 0) {
3775 fp
= fopen(optarg
, "w");
3777 fprintf(stderr
, "open %s: %s\n", optarg
, strerror(errno
));
3781 qemu_config_write(fp
);
3787 case QEMU_OPTION_qtest
:
3788 qtest_chrdev
= optarg
;
3790 case QEMU_OPTION_qtest_log
:
3793 case QEMU_OPTION_sandbox
:
3794 opts
= qemu_opts_parse(qemu_find_opts("sandbox"), optarg
, 1);
3799 case QEMU_OPTION_add_fd
:
3801 opts
= qemu_opts_parse(qemu_find_opts("add-fd"), optarg
, 0);
3806 error_report("File descriptor passing is disabled on this "
3811 case QEMU_OPTION_object
:
3812 opts
= qemu_opts_parse(qemu_find_opts("object"), optarg
, 1);
3817 case QEMU_OPTION_realtime
:
3818 opts
= qemu_opts_parse(qemu_find_opts("realtime"), optarg
, 0);
3822 enable_mlock
= qemu_opt_get_bool(opts
, "mlock", true);
3824 case QEMU_OPTION_msg
:
3825 opts
= qemu_opts_parse(qemu_find_opts("msg"), optarg
, 0);
3829 configure_msg(opts
);
3831 case QEMU_OPTION_dump_vmstate
:
3832 if (vmstate_dump_file
) {
3833 fprintf(stderr
, "qemu: only one '-dump-vmstate' "
3834 "option may be given\n");
3837 vmstate_dump_file
= fopen(optarg
, "w");
3838 if (vmstate_dump_file
== NULL
) {
3839 fprintf(stderr
, "open %s: %s\n", optarg
, strerror(errno
));
3844 os_parse_cmd_args(popt
->index
, optarg
);
3849 opts
= qemu_get_machine_opts();
3850 optarg
= qemu_opt_get(opts
, "type");
3852 machine_class
= machine_parse(optarg
);
3855 if (machine_class
== NULL
) {
3856 fprintf(stderr
, "No machine specified, and there is no default.\n"
3857 "Use -machine help to list supported machines!\n");
3861 set_memory_options(&ram_slots
, &maxram_size
, machine_class
);
3867 if (qemu_init_main_loop(&main_loop_err
)) {
3868 error_report_err(main_loop_err
);
3872 if (qemu_opts_foreach(qemu_find_opts("sandbox"),
3873 parse_sandbox
, NULL
, NULL
)) {
3877 if (qemu_opts_foreach(qemu_find_opts("name"),
3878 parse_name
, NULL
, NULL
)) {
3883 if (qemu_opts_foreach(qemu_find_opts("add-fd"),
3884 parse_add_fd
, NULL
, NULL
)) {
3888 if (qemu_opts_foreach(qemu_find_opts("add-fd"),
3889 cleanup_add_fd
, NULL
, NULL
)) {
3894 current_machine
= MACHINE(object_new(object_class_get_name(
3895 OBJECT_CLASS(machine_class
))));
3896 if (machine_help_func(qemu_get_machine_opts(), current_machine
)) {
3899 object_property_add_child(object_get_root(), "machine",
3900 OBJECT(current_machine
), &error_abort
);
3901 cpu_exec_init_all();
3903 if (machine_class
->hw_version
) {
3904 qemu_set_version(machine_class
->hw_version
);
3907 /* Init CPU def lists, based on config
3908 * - Must be called after all the qemu_read_config_file() calls
3909 * - Must be called before list_cpus()
3910 * - Must be called before machine->init()
3914 if (cpu_model
&& is_help_option(cpu_model
)) {
3915 list_cpus(stdout
, &fprintf
, cpu_model
);
3919 /* Open the logfile at this point, if necessary. We can't open the logfile
3920 * when encountering either of the logging options (-d or -D) because the
3921 * other one may be encountered later on the command line, changing the
3922 * location or level of logging.
3927 qemu_set_log_filename(log_file
);
3930 mask
= qemu_str_to_log_mask(log_mask
);
3932 qemu_print_log_usage(stdout
);
3938 if (!is_daemonized()) {
3939 if (!trace_init_backends(trace_events
, trace_file
)) {
3944 /* If no data_dir is specified then try to find it relative to the
3946 if (data_dir_idx
< ARRAY_SIZE(data_dir
)) {
3947 data_dir
[data_dir_idx
] = os_find_datadir();
3948 if (data_dir
[data_dir_idx
] != NULL
) {
3952 /* If all else fails use the install path specified when building. */
3953 if (data_dir_idx
< ARRAY_SIZE(data_dir
)) {
3954 data_dir
[data_dir_idx
++] = CONFIG_QEMU_DATADIR
;
3957 smp_parse(qemu_opts_find(qemu_find_opts("smp-opts"), NULL
));
3959 machine_class
->max_cpus
= machine_class
->max_cpus
?: 1; /* Default to UP */
3960 if (max_cpus
> machine_class
->max_cpus
) {
3961 fprintf(stderr
, "Number of SMP cpus requested (%d), exceeds max cpus "
3962 "supported by machine `%s' (%d)\n", max_cpus
,
3963 machine_class
->name
, machine_class
->max_cpus
);
3968 * Get the default machine options from the machine if it is not already
3969 * specified either by the configuration file or by the command line.
3971 if (machine_class
->default_machine_opts
) {
3972 qemu_opts_set_defaults(qemu_find_opts("machine"),
3973 machine_class
->default_machine_opts
, 0);
3976 qemu_opts_foreach(qemu_find_opts("device"),
3977 default_driver_check
, NULL
, NULL
);
3978 qemu_opts_foreach(qemu_find_opts("global"),
3979 default_driver_check
, NULL
, NULL
);
3981 if (!vga_model
&& !default_vga
) {
3982 vga_interface_type
= VGA_DEVICE
;
3984 if (!has_defaults
|| machine_class
->no_serial
) {
3987 if (!has_defaults
|| machine_class
->no_parallel
) {
3988 default_parallel
= 0;
3990 if (!has_defaults
|| !machine_class
->use_virtcon
) {
3991 default_virtcon
= 0;
3993 if (!has_defaults
|| !machine_class
->use_sclp
) {
3996 if (!has_defaults
|| machine_class
->no_floppy
) {
3999 if (!has_defaults
|| machine_class
->no_cdrom
) {
4002 if (!has_defaults
|| machine_class
->no_sdcard
) {
4005 if (!has_defaults
) {
4006 default_monitor
= 0;
4011 if (is_daemonized()) {
4012 /* According to documentation and historically, -nographic redirects
4013 * serial port, parallel port and monitor to stdio, which does not work
4014 * with -daemonize. We can redirect these to null instead, but since
4015 * -nographic is legacy, let's just error out.
4016 * We disallow -nographic only if all other ports are not redirected
4017 * explicitly, to not break existing legacy setups which uses
4018 * -nographic _and_ redirects all ports explicitly - this is valid
4019 * usage, -nographic is just a no-op in this case.
4021 if (display_type
== DT_NOGRAPHIC
4022 && (default_parallel
|| default_serial
4023 || default_monitor
|| default_virtcon
)) {
4024 fprintf(stderr
, "-nographic can not be used with -daemonize\n");
4027 #ifdef CONFIG_CURSES
4028 if (display_type
== DT_CURSES
) {
4029 fprintf(stderr
, "curses display can not be used with -daemonize\n");
4035 if (display_type
== DT_NOGRAPHIC
) {
4036 if (default_parallel
)
4037 add_device_config(DEV_PARALLEL
, "null");
4038 if (default_serial
&& default_monitor
) {
4039 add_device_config(DEV_SERIAL
, "mon:stdio");
4040 } else if (default_virtcon
&& default_monitor
) {
4041 add_device_config(DEV_VIRTCON
, "mon:stdio");
4042 } else if (default_sclp
&& default_monitor
) {
4043 add_device_config(DEV_SCLP
, "mon:stdio");
4046 add_device_config(DEV_SERIAL
, "stdio");
4047 if (default_virtcon
)
4048 add_device_config(DEV_VIRTCON
, "stdio");
4050 add_device_config(DEV_SCLP
, "stdio");
4052 if (default_monitor
)
4053 monitor_parse("stdio", "readline", false);
4057 add_device_config(DEV_SERIAL
, "vc:80Cx24C");
4058 if (default_parallel
)
4059 add_device_config(DEV_PARALLEL
, "vc:80Cx24C");
4060 if (default_monitor
)
4061 monitor_parse("vc:80Cx24C", "readline", false);
4062 if (default_virtcon
)
4063 add_device_config(DEV_VIRTCON
, "vc:80Cx24C");
4065 add_device_config(DEV_SCLP
, "vc:80Cx24C");
4069 #if defined(CONFIG_VNC)
4070 if (!QTAILQ_EMPTY(&(qemu_find_opts("vnc")->head
))) {
4074 if (display_type
== DT_DEFAULT
&& !display_remote
) {
4075 #if defined(CONFIG_GTK)
4076 display_type
= DT_GTK
;
4077 #elif defined(CONFIG_SDL) || defined(CONFIG_COCOA)
4078 display_type
= DT_SDL
;
4079 #elif defined(CONFIG_VNC)
4080 vnc_parse_func("localhost:0,to=99,id=default");
4083 display_type
= DT_NONE
;
4087 if ((no_frame
|| alt_grab
|| ctrl_grab
) && display_type
!= DT_SDL
) {
4088 fprintf(stderr
, "-no-frame, -alt-grab and -ctrl-grab are only valid "
4089 "for SDL, ignoring option\n");
4091 if (no_quit
&& (display_type
!= DT_GTK
&& display_type
!= DT_SDL
)) {
4092 fprintf(stderr
, "-no-quit is only valid for GTK and SDL, "
4093 "ignoring option\n");
4096 #if defined(CONFIG_GTK)
4097 if (display_type
== DT_GTK
) {
4098 early_gtk_display_init(request_opengl
);
4101 #if defined(CONFIG_SDL)
4102 if (display_type
== DT_SDL
) {
4103 sdl_display_early_init(request_opengl
);
4106 if (request_opengl
== 1 && display_opengl
== 0) {
4107 #if defined(CONFIG_OPENGL)
4108 fprintf(stderr
, "OpenGL is not supported by the display.\n");
4110 fprintf(stderr
, "QEMU was built without opengl support.\n");
4117 if (qemu_opts_foreach(qemu_find_opts("chardev"),
4118 chardev_init_func
, NULL
, NULL
)) {
4122 #ifdef CONFIG_VIRTFS
4123 if (qemu_opts_foreach(qemu_find_opts("fsdev"),
4124 fsdev_init_func
, NULL
, NULL
)) {
4129 if (pid_file
&& qemu_create_pidfile(pid_file
) != 0) {
4130 fprintf(stderr
, "Could not acquire pid file: %s\n", strerror(errno
));
4134 if (qemu_opts_foreach(qemu_find_opts("device"),
4135 device_help_func
, NULL
, NULL
)) {
4139 if (qemu_opts_foreach(qemu_find_opts("object"),
4140 object_create
, NULL
, NULL
)) {
4144 machine_opts
= qemu_get_machine_opts();
4145 if (qemu_opt_foreach(machine_opts
, machine_set_property
, current_machine
,
4147 object_unref(OBJECT(current_machine
));
4151 configure_accelerator(current_machine
);
4154 Error
*local_err
= NULL
;
4155 qtest_init(qtest_chrdev
, qtest_log
, &local_err
);
4157 error_report_err(local_err
);
4162 machine_opts
= qemu_get_machine_opts();
4163 kernel_filename
= qemu_opt_get(machine_opts
, "kernel");
4164 initrd_filename
= qemu_opt_get(machine_opts
, "initrd");
4165 kernel_cmdline
= qemu_opt_get(machine_opts
, "append");
4166 bios_name
= qemu_opt_get(machine_opts
, "firmware");
4168 opts
= qemu_opts_find(qemu_find_opts("boot-opts"), NULL
);
4170 Error
*local_err
= NULL
;
4172 boot_order
= qemu_opt_get(opts
, "order");
4174 validate_bootdevices(boot_order
, &local_err
);
4176 error_report_err(local_err
);
4181 boot_once
= qemu_opt_get(opts
, "once");
4183 validate_bootdevices(boot_once
, &local_err
);
4185 error_report_err(local_err
);
4190 boot_menu
= qemu_opt_get_bool(opts
, "menu", boot_menu
);
4191 boot_strict
= qemu_opt_get_bool(opts
, "strict", false);
4195 boot_order
= machine_class
->default_boot_order
;
4198 if (!kernel_cmdline
) {
4199 kernel_cmdline
= "";
4200 current_machine
->kernel_cmdline
= (char *)kernel_cmdline
;
4203 linux_boot
= (kernel_filename
!= NULL
);
4205 if (!linux_boot
&& *kernel_cmdline
!= '\0') {
4206 fprintf(stderr
, "-append only allowed with -kernel option\n");
4210 if (!linux_boot
&& initrd_filename
!= NULL
) {
4211 fprintf(stderr
, "-initrd only allowed with -kernel option\n");
4215 if (!linux_boot
&& qemu_opt_get(machine_opts
, "dtb")) {
4216 fprintf(stderr
, "-dtb only allowed with -kernel option\n");
4220 os_set_line_buffering();
4223 /* spice needs the timers to be initialized by this point */
4229 if (kvm_enabled() || xen_enabled()) {
4230 fprintf(stderr
, "-icount is not allowed with kvm or xen\n");
4233 configure_icount(icount_opts
, &error_abort
);
4234 qemu_opts_del(icount_opts
);
4237 /* clean up network at qemu process termination */
4238 atexit(&net_cleanup
);
4240 if (net_init_clients() < 0) {
4245 if (tpm_init() < 0) {
4250 /* init the bluetooth world */
4251 if (foreach_device_config(DEV_BT
, bt_parse
))
4254 if (!xen_enabled()) {
4255 /* On 32-bit hosts, QEMU is limited by virtual address space */
4256 if (ram_size
> (2047 << 20) && HOST_LONG_BITS
== 32) {
4257 fprintf(stderr
, "qemu: at most 2047 MB RAM can be simulated\n");
4265 /* If the currently selected machine wishes to override the units-per-bus
4266 * property of its default HBA interface type, do so now. */
4267 if (machine_class
->units_per_default_bus
) {
4268 override_max_devs(machine_class
->block_default_type
,
4269 machine_class
->units_per_default_bus
);
4272 /* open the virtual block devices */
4274 qemu_opts_foreach(qemu_find_opts("drive"),
4275 drive_enable_snapshot
, NULL
, NULL
);
4276 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func
,
4277 &machine_class
->block_default_type
, NULL
)) {
4281 default_drive(default_cdrom
, snapshot
, machine_class
->block_default_type
, 2,
4283 default_drive(default_floppy
, snapshot
, IF_FLOPPY
, 0, FD_OPTS
);
4284 default_drive(default_sdcard
, snapshot
, IF_SD
, 0, SD_OPTS
);
4286 parse_numa_opts(machine_class
);
4288 if (qemu_opts_foreach(qemu_find_opts("mon"),
4289 mon_init_func
, NULL
, NULL
)) {
4293 if (foreach_device_config(DEV_SERIAL
, serial_parse
) < 0)
4295 if (foreach_device_config(DEV_PARALLEL
, parallel_parse
) < 0)
4297 if (foreach_device_config(DEV_VIRTCON
, virtcon_parse
) < 0)
4299 if (foreach_device_config(DEV_SCLP
, sclp_parse
) < 0) {
4302 if (foreach_device_config(DEV_DEBUGCON
, debugcon_parse
) < 0)
4305 /* If no default VGA is requested, the default is "none". */
4307 if (machine_class
->default_display
) {
4308 vga_model
= machine_class
->default_display
;
4309 } else if (cirrus_vga_available()) {
4310 vga_model
= "cirrus";
4311 } else if (vga_available()) {
4316 select_vgahw(vga_model
);
4320 i
= select_watchdog(watchdog
);
4322 exit (i
== 1 ? 1 : 0);
4325 if (machine_class
->compat_props
) {
4326 qdev_prop_register_global_list(machine_class
->compat_props
);
4330 qdev_machine_init();
4332 current_machine
->ram_size
= ram_size
;
4333 current_machine
->maxram_size
= maxram_size
;
4334 current_machine
->ram_slots
= ram_slots
;
4335 current_machine
->boot_order
= boot_order
;
4336 current_machine
->cpu_model
= cpu_model
;
4338 machine_class
->init(current_machine
);
4344 cpu_synchronize_all_post_init();
4346 numa_post_machine_init();
4348 if (qemu_opts_foreach(qemu_find_opts("fw_cfg"),
4349 parse_fw_cfg
, fw_cfg_find(), NULL
) != 0) {
4353 /* init USB devices */
4354 if (usb_enabled()) {
4355 if (foreach_device_config(DEV_USB
, usb_parse
) < 0)
4359 /* init generic devices */
4360 if (qemu_opts_foreach(qemu_find_opts("device"),
4361 device_init_func
, NULL
, NULL
)) {
4365 /* Did we create any drives that we failed to create a device for? */
4366 drive_check_orphaned();
4368 net_check_clients();
4371 Error
*local_err
= NULL
;
4372 qemu_boot_set(boot_once
, &local_err
);
4374 error_report("%s", error_get_pretty(local_err
));
4377 qemu_register_reset(restore_boot_order
, g_strdup(boot_order
));
4380 ds
= init_displaystate();
4382 /* init local displays */
4383 switch (display_type
) {
4385 (void)ds
; /* avoid warning if no display is configured */
4387 #if defined(CONFIG_CURSES)
4389 curses_display_init(ds
, full_screen
);
4392 #if defined(CONFIG_SDL)
4394 sdl_display_init(ds
, full_screen
, no_frame
);
4396 #elif defined(CONFIG_COCOA)
4398 cocoa_display_init(ds
, full_screen
);
4401 #if defined(CONFIG_GTK)
4403 gtk_display_init(ds
, full_screen
, grab_on_hover
);
4410 /* must be after terminal init, SDL library changes signal handlers */
4411 os_setup_signal_handling();
4414 /* init remote displays */
4415 qemu_opts_foreach(qemu_find_opts("vnc"),
4416 vnc_init_func
, NULL
, NULL
);
4417 if (show_vnc_port
) {
4418 char *ret
= vnc_display_local_addr("default");
4419 printf("VNC server running on `%s'\n", ret
);
4425 qemu_spice_display_init();
4429 if (foreach_device_config(DEV_GDB
, gdbserver_start
) < 0) {
4433 qdev_machine_creation_done();
4435 if (rom_load_all() != 0) {
4436 fprintf(stderr
, "rom loading failed\n");
4440 /* TODO: once all bus devices are qdevified, this should be done
4441 * when bus is created by qdev.c */
4442 qemu_register_reset(qbus_reset_all_fn
, sysbus_get_default());
4443 qemu_run_machine_init_done_notifiers();
4445 /* Done notifiers can load ROMs */
4448 qemu_system_reset(VMRESET_SILENT
);
4450 if (load_vmstate(loadvm
) < 0) {
4455 qdev_prop_check_globals();
4456 if (vmstate_dump_file
) {
4458 dump_vmstate_json_to_file(vmstate_dump_file
);
4463 Error
*local_err
= NULL
;
4464 qemu_start_incoming_migration(incoming
, &local_err
);
4466 error_report("-incoming %s: %s", incoming
,
4467 error_get_pretty(local_err
));
4468 error_free(local_err
);
4471 } else if (autostart
) {
4477 if (is_daemonized()) {
4478 if (!trace_init_backends(trace_events
, trace_file
)) {