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/error-report.h"
62 #include "qemu/sockets.h"
64 #include "hw/boards.h"
65 #include "sysemu/accel.h"
67 #include "hw/i386/pc.h"
68 #include "hw/isa/isa.h"
70 #include "sysemu/watchdog.h"
71 #include "hw/i386/smbios.h"
72 #include "hw/xen/xen.h"
74 #include "hw/loader.h"
75 #include "monitor/qdev.h"
76 #include "sysemu/bt.h"
78 #include "net/slirp.h"
79 #include "monitor/monitor.h"
80 #include "ui/console.h"
81 #include "sysemu/sysemu.h"
82 #include "sysemu/numa.h"
83 #include "exec/gdbstub.h"
84 #include "qemu/timer.h"
85 #include "sysemu/char.h"
86 #include "qemu/bitmap.h"
87 #include "sysemu/blockdev.h"
88 #include "hw/block/block.h"
89 #include "migration/block.h"
90 #include "sysemu/tpm.h"
91 #include "sysemu/dma.h"
92 #include "audio/audio.h"
93 #include "migration/migration.h"
94 #include "sysemu/kvm.h"
95 #include "qapi/qmp/qjson.h"
96 #include "qemu/option.h"
97 #include "qemu/config-file.h"
98 #include "qemu-options.h"
99 #include "qmp-commands.h"
100 #include "qemu/main-loop.h"
102 #include "fsdev/qemu-fsdev.h"
104 #include "sysemu/qtest.h"
106 #include "disas/disas.h"
109 #include "slirp/libslirp.h"
112 #include "trace/control.h"
113 #include "qemu/queue.h"
114 #include "sysemu/cpus.h"
115 #include "sysemu/arch_init.h"
116 #include "qemu/osdep.h"
118 #include "ui/qemu-spice.h"
119 #include "qapi/string-input-visitor.h"
120 #include "qapi/opts-visitor.h"
121 #include "qom/object_interfaces.h"
122 #include "qapi-event.h"
123 #include "exec/semihost.h"
125 #define MAX_VIRTIO_CONSOLES 1
126 #define MAX_SCLP_CONSOLES 1
128 static const char *data_dir
[16];
129 static int data_dir_idx
;
130 const char *bios_name
= NULL
;
131 enum vga_retrace_method vga_retrace_method
= VGA_RETRACE_DUMB
;
132 DisplayType display_type
= DT_DEFAULT
;
133 int request_opengl
= -1;
135 static int display_remote
;
136 const char* keyboard_layout
= NULL
;
138 const char *mem_path
= NULL
;
139 int mem_prealloc
= 0; /* force preallocation of physical target memory */
140 bool enable_mlock
= false;
142 NICInfo nd_table
[MAX_NICS
];
144 static int rtc_utc
= 1;
145 static int rtc_date_offset
= -1; /* -1 means no change */
146 QEMUClockType rtc_clock
;
147 int vga_interface_type
= VGA_NONE
;
148 static int full_screen
= 0;
149 static int no_frame
= 0;
152 static bool grab_on_hover
;
154 CharDriverState
*serial_hds
[MAX_SERIAL_PORTS
];
155 CharDriverState
*parallel_hds
[MAX_PARALLEL_PORTS
];
156 CharDriverState
*virtcon_hds
[MAX_VIRTIO_CONSOLES
];
157 CharDriverState
*sclp_hds
[MAX_SCLP_CONSOLES
];
158 int win2k_install_hack
= 0;
164 int acpi_enabled
= 1;
167 static int no_reboot
;
170 int graphic_rotate
= 0;
171 const char *watchdog
;
172 QEMUOptionRom option_rom
[MAX_OPTION_ROMS
];
175 const char *qemu_name
;
178 unsigned int nb_prom_envs
= 0;
179 const char *prom_envs
[MAX_PROM_ENVS
];
182 uint8_t *boot_splash_filedata
;
183 size_t boot_splash_filedata_size
;
184 uint8_t qemu_extra_params_fw
[2];
186 int icount_align_option
;
188 /* The bytes in qemu_uuid[] are in the order specified by RFC4122, _not_ in the
189 * little-endian "wire format" described in the SMBIOS 2.6 specification.
191 uint8_t qemu_uuid
[16];
194 static NotifierList exit_notifiers
=
195 NOTIFIER_LIST_INITIALIZER(exit_notifiers
);
197 static NotifierList machine_init_done_notifiers
=
198 NOTIFIER_LIST_INITIALIZER(machine_init_done_notifiers
);
202 enum xen_mode xen_mode
= XEN_EMULATE
;
204 static int has_defaults
= 1;
205 static int default_serial
= 1;
206 static int default_parallel
= 1;
207 static int default_virtcon
= 1;
208 static int default_sclp
= 1;
209 static int default_monitor
= 1;
210 static int default_floppy
= 1;
211 static int default_cdrom
= 1;
212 static int default_sdcard
= 1;
213 static int default_vga
= 1;
219 { .driver
= "isa-serial", .flag
= &default_serial
},
220 { .driver
= "isa-parallel", .flag
= &default_parallel
},
221 { .driver
= "isa-fdc", .flag
= &default_floppy
},
222 { .driver
= "ide-cd", .flag
= &default_cdrom
},
223 { .driver
= "ide-hd", .flag
= &default_cdrom
},
224 { .driver
= "ide-drive", .flag
= &default_cdrom
},
225 { .driver
= "scsi-cd", .flag
= &default_cdrom
},
226 { .driver
= "virtio-serial-pci", .flag
= &default_virtcon
},
227 { .driver
= "virtio-serial-s390", .flag
= &default_virtcon
},
228 { .driver
= "virtio-serial", .flag
= &default_virtcon
},
229 { .driver
= "VGA", .flag
= &default_vga
},
230 { .driver
= "isa-vga", .flag
= &default_vga
},
231 { .driver
= "cirrus-vga", .flag
= &default_vga
},
232 { .driver
= "isa-cirrus-vga", .flag
= &default_vga
},
233 { .driver
= "vmware-svga", .flag
= &default_vga
},
234 { .driver
= "qxl-vga", .flag
= &default_vga
},
235 { .driver
= "virtio-vga", .flag
= &default_vga
},
238 static QemuOptsList qemu_rtc_opts
= {
240 .head
= QTAILQ_HEAD_INITIALIZER(qemu_rtc_opts
.head
),
244 .type
= QEMU_OPT_STRING
,
247 .type
= QEMU_OPT_STRING
,
250 .type
= QEMU_OPT_STRING
,
252 { /* end of list */ }
256 static QemuOptsList qemu_sandbox_opts
= {
258 .implied_opt_name
= "enable",
259 .head
= QTAILQ_HEAD_INITIALIZER(qemu_sandbox_opts
.head
),
263 .type
= QEMU_OPT_BOOL
,
265 { /* end of list */ }
269 static QemuOptsList qemu_trace_opts
= {
271 .implied_opt_name
= "trace",
272 .head
= QTAILQ_HEAD_INITIALIZER(qemu_trace_opts
.head
),
276 .type
= QEMU_OPT_STRING
,
279 .type
= QEMU_OPT_STRING
,
281 { /* end of list */ }
285 static QemuOptsList qemu_option_rom_opts
= {
286 .name
= "option-rom",
287 .implied_opt_name
= "romfile",
288 .head
= QTAILQ_HEAD_INITIALIZER(qemu_option_rom_opts
.head
),
292 .type
= QEMU_OPT_NUMBER
,
295 .type
= QEMU_OPT_STRING
,
297 { /* end of list */ }
301 static QemuOptsList qemu_machine_opts
= {
303 .implied_opt_name
= "type",
305 .head
= QTAILQ_HEAD_INITIALIZER(qemu_machine_opts
.head
),
308 * no elements => accept any
309 * sanity checking will happen later
310 * when setting machine properties
316 static QemuOptsList qemu_boot_opts
= {
318 .implied_opt_name
= "order",
320 .head
= QTAILQ_HEAD_INITIALIZER(qemu_boot_opts
.head
),
324 .type
= QEMU_OPT_STRING
,
327 .type
= QEMU_OPT_STRING
,
330 .type
= QEMU_OPT_BOOL
,
333 .type
= QEMU_OPT_STRING
,
335 .name
= "splash-time",
336 .type
= QEMU_OPT_STRING
,
338 .name
= "reboot-timeout",
339 .type
= QEMU_OPT_STRING
,
342 .type
= QEMU_OPT_BOOL
,
348 static QemuOptsList qemu_add_fd_opts
= {
350 .head
= QTAILQ_HEAD_INITIALIZER(qemu_add_fd_opts
.head
),
354 .type
= QEMU_OPT_NUMBER
,
355 .help
= "file descriptor of which a duplicate is added to fd set",
358 .type
= QEMU_OPT_NUMBER
,
359 .help
= "ID of the fd set to add fd to",
362 .type
= QEMU_OPT_STRING
,
363 .help
= "free-form string used to describe fd",
365 { /* end of list */ }
369 static QemuOptsList qemu_object_opts
= {
371 .implied_opt_name
= "qom-type",
372 .head
= QTAILQ_HEAD_INITIALIZER(qemu_object_opts
.head
),
378 static QemuOptsList qemu_tpmdev_opts
= {
380 .implied_opt_name
= "type",
381 .head
= QTAILQ_HEAD_INITIALIZER(qemu_tpmdev_opts
.head
),
383 /* options are defined in the TPM backends */
384 { /* end of list */ }
388 static QemuOptsList qemu_realtime_opts
= {
390 .head
= QTAILQ_HEAD_INITIALIZER(qemu_realtime_opts
.head
),
394 .type
= QEMU_OPT_BOOL
,
396 { /* end of list */ }
400 static QemuOptsList qemu_msg_opts
= {
402 .head
= QTAILQ_HEAD_INITIALIZER(qemu_msg_opts
.head
),
406 .type
= QEMU_OPT_BOOL
,
408 { /* end of list */ }
412 static QemuOptsList qemu_name_opts
= {
414 .implied_opt_name
= "guest",
416 .head
= QTAILQ_HEAD_INITIALIZER(qemu_name_opts
.head
),
420 .type
= QEMU_OPT_STRING
,
421 .help
= "Sets the name of the guest.\n"
422 "This name will be displayed in the SDL window caption.\n"
423 "The name will also be used for the VNC server",
426 .type
= QEMU_OPT_STRING
,
427 .help
= "Sets the name of the QEMU process, as shown in top etc",
429 .name
= "debug-threads",
430 .type
= QEMU_OPT_BOOL
,
431 .help
= "When enabled, name the individual threads; defaults off.\n"
432 "NOTE: The thread names are for debugging and not a\n"
435 { /* End of list */ }
439 static QemuOptsList qemu_mem_opts
= {
441 .implied_opt_name
= "size",
442 .head
= QTAILQ_HEAD_INITIALIZER(qemu_mem_opts
.head
),
447 .type
= QEMU_OPT_SIZE
,
451 .type
= QEMU_OPT_NUMBER
,
455 .type
= QEMU_OPT_SIZE
,
457 { /* end of list */ }
461 static QemuOptsList qemu_icount_opts
= {
463 .implied_opt_name
= "shift",
465 .head
= QTAILQ_HEAD_INITIALIZER(qemu_icount_opts
.head
),
469 .type
= QEMU_OPT_STRING
,
472 .type
= QEMU_OPT_BOOL
,
475 .type
= QEMU_OPT_BOOL
,
477 { /* end of list */ }
481 static QemuOptsList qemu_semihosting_config_opts
= {
482 .name
= "semihosting-config",
483 .implied_opt_name
= "enable",
484 .head
= QTAILQ_HEAD_INITIALIZER(qemu_semihosting_config_opts
.head
),
488 .type
= QEMU_OPT_BOOL
,
491 .type
= QEMU_OPT_STRING
,
494 .type
= QEMU_OPT_STRING
,
496 { /* end of list */ }
500 static QemuOptsList qemu_fw_cfg_opts
= {
502 .implied_opt_name
= "name",
503 .head
= QTAILQ_HEAD_INITIALIZER(qemu_fw_cfg_opts
.head
),
507 .type
= QEMU_OPT_STRING
,
508 .help
= "Sets the fw_cfg name of the blob to be inserted",
511 .type
= QEMU_OPT_STRING
,
512 .help
= "Sets the name of the file from which\n"
513 "the fw_cfg blob will be loaded",
515 { /* end of list */ }
520 * Get machine options
522 * Returns: machine options (never null).
524 QemuOpts
*qemu_get_machine_opts(void)
526 return qemu_find_opts_singleton("machine");
529 const char *qemu_get_vm_name(void)
534 static void res_free(void)
536 if (boot_splash_filedata
!= NULL
) {
537 g_free(boot_splash_filedata
);
538 boot_splash_filedata
= NULL
;
542 static int default_driver_check(void *opaque
, QemuOpts
*opts
, Error
**errp
)
544 const char *driver
= qemu_opt_get(opts
, "driver");
549 for (i
= 0; i
< ARRAY_SIZE(default_list
); i
++) {
550 if (strcmp(default_list
[i
].driver
, driver
) != 0)
552 *(default_list
[i
].flag
) = 0;
557 /***********************************************************/
560 static RunState current_run_state
= RUN_STATE_PRELAUNCH
;
562 /* We use RUN_STATE_MAX but any invalid value will do */
563 static RunState vmstop_requested
= RUN_STATE_MAX
;
564 static QemuMutex vmstop_lock
;
569 } RunStateTransition
;
571 static const RunStateTransition runstate_transitions_def
[] = {
573 { RUN_STATE_DEBUG
, RUN_STATE_RUNNING
},
574 { RUN_STATE_DEBUG
, RUN_STATE_FINISH_MIGRATE
},
576 { RUN_STATE_INMIGRATE
, RUN_STATE_RUNNING
},
577 { RUN_STATE_INMIGRATE
, RUN_STATE_PAUSED
},
579 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_PAUSED
},
580 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_FINISH_MIGRATE
},
582 { RUN_STATE_IO_ERROR
, RUN_STATE_RUNNING
},
583 { RUN_STATE_IO_ERROR
, RUN_STATE_FINISH_MIGRATE
},
585 { RUN_STATE_PAUSED
, RUN_STATE_RUNNING
},
586 { RUN_STATE_PAUSED
, RUN_STATE_FINISH_MIGRATE
},
588 { RUN_STATE_POSTMIGRATE
, RUN_STATE_RUNNING
},
589 { RUN_STATE_POSTMIGRATE
, RUN_STATE_FINISH_MIGRATE
},
591 { RUN_STATE_PRELAUNCH
, RUN_STATE_RUNNING
},
592 { RUN_STATE_PRELAUNCH
, RUN_STATE_FINISH_MIGRATE
},
593 { RUN_STATE_PRELAUNCH
, RUN_STATE_INMIGRATE
},
595 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_RUNNING
},
596 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_POSTMIGRATE
},
598 { RUN_STATE_RESTORE_VM
, RUN_STATE_RUNNING
},
600 { RUN_STATE_RUNNING
, RUN_STATE_DEBUG
},
601 { RUN_STATE_RUNNING
, RUN_STATE_INTERNAL_ERROR
},
602 { RUN_STATE_RUNNING
, RUN_STATE_IO_ERROR
},
603 { RUN_STATE_RUNNING
, RUN_STATE_PAUSED
},
604 { RUN_STATE_RUNNING
, RUN_STATE_FINISH_MIGRATE
},
605 { RUN_STATE_RUNNING
, RUN_STATE_RESTORE_VM
},
606 { RUN_STATE_RUNNING
, RUN_STATE_SAVE_VM
},
607 { RUN_STATE_RUNNING
, RUN_STATE_SHUTDOWN
},
608 { RUN_STATE_RUNNING
, RUN_STATE_WATCHDOG
},
609 { RUN_STATE_RUNNING
, RUN_STATE_GUEST_PANICKED
},
611 { RUN_STATE_SAVE_VM
, RUN_STATE_RUNNING
},
613 { RUN_STATE_SHUTDOWN
, RUN_STATE_PAUSED
},
614 { RUN_STATE_SHUTDOWN
, RUN_STATE_FINISH_MIGRATE
},
616 { RUN_STATE_DEBUG
, RUN_STATE_SUSPENDED
},
617 { RUN_STATE_RUNNING
, RUN_STATE_SUSPENDED
},
618 { RUN_STATE_SUSPENDED
, RUN_STATE_RUNNING
},
619 { RUN_STATE_SUSPENDED
, RUN_STATE_FINISH_MIGRATE
},
621 { RUN_STATE_WATCHDOG
, RUN_STATE_RUNNING
},
622 { RUN_STATE_WATCHDOG
, RUN_STATE_FINISH_MIGRATE
},
624 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_RUNNING
},
625 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_FINISH_MIGRATE
},
627 { RUN_STATE_MAX
, RUN_STATE_MAX
},
630 static bool runstate_valid_transitions
[RUN_STATE_MAX
][RUN_STATE_MAX
];
632 bool runstate_check(RunState state
)
634 return current_run_state
== state
;
637 static void runstate_init(void)
639 const RunStateTransition
*p
;
641 memset(&runstate_valid_transitions
, 0, sizeof(runstate_valid_transitions
));
642 for (p
= &runstate_transitions_def
[0]; p
->from
!= RUN_STATE_MAX
; p
++) {
643 runstate_valid_transitions
[p
->from
][p
->to
] = true;
646 qemu_mutex_init(&vmstop_lock
);
649 /* This function will abort() on invalid state transitions */
650 void runstate_set(RunState new_state
)
652 assert(new_state
< RUN_STATE_MAX
);
654 if (!runstate_valid_transitions
[current_run_state
][new_state
]) {
655 fprintf(stderr
, "ERROR: invalid runstate transition: '%s' -> '%s'\n",
656 RunState_lookup
[current_run_state
],
657 RunState_lookup
[new_state
]);
660 trace_runstate_set(new_state
);
661 current_run_state
= new_state
;
664 int runstate_is_running(void)
666 return runstate_check(RUN_STATE_RUNNING
);
669 bool runstate_needs_reset(void)
671 return runstate_check(RUN_STATE_INTERNAL_ERROR
) ||
672 runstate_check(RUN_STATE_SHUTDOWN
);
675 StatusInfo
*qmp_query_status(Error
**errp
)
677 StatusInfo
*info
= g_malloc0(sizeof(*info
));
679 info
->running
= runstate_is_running();
680 info
->singlestep
= singlestep
;
681 info
->status
= current_run_state
;
686 static bool qemu_vmstop_requested(RunState
*r
)
688 qemu_mutex_lock(&vmstop_lock
);
689 *r
= vmstop_requested
;
690 vmstop_requested
= RUN_STATE_MAX
;
691 qemu_mutex_unlock(&vmstop_lock
);
692 return *r
< RUN_STATE_MAX
;
695 void qemu_system_vmstop_request_prepare(void)
697 qemu_mutex_lock(&vmstop_lock
);
700 void qemu_system_vmstop_request(RunState state
)
702 vmstop_requested
= state
;
703 qemu_mutex_unlock(&vmstop_lock
);
711 qemu_vmstop_requested(&requested
);
712 if (runstate_is_running() && requested
== RUN_STATE_MAX
) {
716 /* Ensure that a STOP/RESUME pair of events is emitted if a
717 * vmstop request was pending. The BLOCK_IO_ERROR event, for
718 * example, according to documentation is always followed by
721 if (runstate_is_running()) {
722 qapi_event_send_stop(&error_abort
);
725 runstate_set(RUN_STATE_RUNNING
);
726 vm_state_notify(1, RUN_STATE_RUNNING
);
730 qapi_event_send_resume(&error_abort
);
734 /***********************************************************/
735 /* real time host monotonic timer */
737 static time_t qemu_time(void)
739 return qemu_clock_get_ms(QEMU_CLOCK_HOST
) / 1000;
742 /***********************************************************/
743 /* host time/date access */
744 void qemu_get_timedate(struct tm
*tm
, int offset
)
746 time_t ti
= qemu_time();
749 if (rtc_date_offset
== -1) {
753 localtime_r(&ti
, tm
);
755 ti
-= rtc_date_offset
;
760 int qemu_timedate_diff(struct tm
*tm
)
764 if (rtc_date_offset
== -1)
766 seconds
= mktimegm(tm
);
769 tmp
.tm_isdst
= -1; /* use timezone to figure it out */
770 seconds
= mktime(&tmp
);
773 seconds
= mktimegm(tm
) + rtc_date_offset
;
775 return seconds
- qemu_time();
778 static void configure_rtc_date_offset(const char *startdate
, int legacy
)
780 time_t rtc_start_date
;
783 if (!strcmp(startdate
, "now") && legacy
) {
784 rtc_date_offset
= -1;
786 if (sscanf(startdate
, "%d-%d-%dT%d:%d:%d",
794 } else if (sscanf(startdate
, "%d-%d-%d",
806 rtc_start_date
= mktimegm(&tm
);
807 if (rtc_start_date
== -1) {
809 fprintf(stderr
, "Invalid date format. Valid formats are:\n"
810 "'2006-06-17T16:01:21' or '2006-06-17'\n");
813 rtc_date_offset
= qemu_time() - rtc_start_date
;
817 static void configure_rtc(QemuOpts
*opts
)
821 value
= qemu_opt_get(opts
, "base");
823 if (!strcmp(value
, "utc")) {
825 } else if (!strcmp(value
, "localtime")) {
828 configure_rtc_date_offset(value
, 0);
831 value
= qemu_opt_get(opts
, "clock");
833 if (!strcmp(value
, "host")) {
834 rtc_clock
= QEMU_CLOCK_HOST
;
835 } else if (!strcmp(value
, "rt")) {
836 rtc_clock
= QEMU_CLOCK_REALTIME
;
837 } else if (!strcmp(value
, "vm")) {
838 rtc_clock
= QEMU_CLOCK_VIRTUAL
;
840 fprintf(stderr
, "qemu: invalid option value '%s'\n", value
);
844 value
= qemu_opt_get(opts
, "driftfix");
846 if (!strcmp(value
, "slew")) {
847 static GlobalProperty slew_lost_ticks
[] = {
849 .driver
= "mc146818rtc",
850 .property
= "lost_tick_policy",
853 { /* end of list */ }
856 qdev_prop_register_global_list(slew_lost_ticks
);
857 } else if (!strcmp(value
, "none")) {
858 /* discard is default */
860 fprintf(stderr
, "qemu: invalid option value '%s'\n", value
);
866 /***********************************************************/
867 /* Bluetooth support */
870 static struct HCIInfo
*hci_table
[MAX_NICS
];
872 struct HCIInfo
*qemu_next_hci(void)
874 if (cur_hci
== nb_hcis
)
877 return hci_table
[cur_hci
++];
880 static int bt_hci_parse(const char *str
)
885 if (nb_hcis
>= MAX_NICS
) {
886 fprintf(stderr
, "qemu: Too many bluetooth HCIs (max %i).\n", MAX_NICS
);
899 bdaddr
.b
[5] = 0x56 + nb_hcis
;
900 hci
->bdaddr_set(hci
, bdaddr
.b
);
902 hci_table
[nb_hcis
++] = hci
;
907 static void bt_vhci_add(int vlan_id
)
909 struct bt_scatternet_s
*vlan
= qemu_find_bt_vlan(vlan_id
);
912 fprintf(stderr
, "qemu: warning: adding a VHCI to "
913 "an empty scatternet %i\n", vlan_id
);
915 bt_vhci_init(bt_new_hci(vlan
));
918 static struct bt_device_s
*bt_device_add(const char *opt
)
920 struct bt_scatternet_s
*vlan
;
922 char *endp
= strstr(opt
, ",vlan=");
923 int len
= (endp
? endp
- opt
: strlen(opt
)) + 1;
926 pstrcpy(devname
, MIN(sizeof(devname
), len
), opt
);
929 vlan_id
= strtol(endp
+ 6, &endp
, 0);
931 fprintf(stderr
, "qemu: unrecognised bluetooth vlan Id\n");
936 vlan
= qemu_find_bt_vlan(vlan_id
);
939 fprintf(stderr
, "qemu: warning: adding a slave device to "
940 "an empty scatternet %i\n", vlan_id
);
942 if (!strcmp(devname
, "keyboard"))
943 return bt_keyboard_init(vlan
);
945 fprintf(stderr
, "qemu: unsupported bluetooth device `%s'\n", devname
);
949 static int bt_parse(const char *opt
)
951 const char *endp
, *p
;
954 if (strstart(opt
, "hci", &endp
)) {
955 if (!*endp
|| *endp
== ',') {
957 if (!strstart(endp
, ",vlan=", 0))
960 return bt_hci_parse(opt
);
962 } else if (strstart(opt
, "vhci", &endp
)) {
963 if (!*endp
|| *endp
== ',') {
965 if (strstart(endp
, ",vlan=", &p
)) {
966 vlan
= strtol(p
, (char **) &endp
, 0);
968 fprintf(stderr
, "qemu: bad scatternet '%s'\n", p
);
972 fprintf(stderr
, "qemu: bad parameter '%s'\n", endp
+ 1);
981 } else if (strstart(opt
, "device:", &endp
))
982 return !bt_device_add(endp
);
984 fprintf(stderr
, "qemu: bad bluetooth parameter '%s'\n", opt
);
988 static int parse_sandbox(void *opaque
, QemuOpts
*opts
, Error
**errp
)
990 /* FIXME: change this to true for 1.3 */
991 if (qemu_opt_get_bool(opts
, "enable", false)) {
992 #ifdef CONFIG_SECCOMP
993 if (seccomp_start() < 0) {
994 error_report("failed to install seccomp syscall filter "
999 error_report("sandboxing request but seccomp is not compiled "
1008 static int parse_name(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1010 const char *proc_name
;
1012 if (qemu_opt_get(opts
, "debug-threads")) {
1013 qemu_thread_naming(qemu_opt_get_bool(opts
, "debug-threads", false));
1015 qemu_name
= qemu_opt_get(opts
, "guest");
1017 proc_name
= qemu_opt_get(opts
, "process");
1019 os_set_proc_name(proc_name
);
1025 bool defaults_enabled(void)
1027 return has_defaults
;
1030 bool usb_enabled(void)
1032 return machine_usb(current_machine
);
1036 static int parse_add_fd(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1038 int fd
, dupfd
, flags
;
1040 const char *fd_opaque
= NULL
;
1043 fd
= qemu_opt_get_number(opts
, "fd", -1);
1044 fdset_id
= qemu_opt_get_number(opts
, "set", -1);
1045 fd_opaque
= qemu_opt_get(opts
, "opaque");
1048 error_report("fd option is required and must be non-negative");
1052 if (fd
<= STDERR_FILENO
) {
1053 error_report("fd cannot be a standard I/O stream");
1058 * All fds inherited across exec() necessarily have FD_CLOEXEC
1059 * clear, while qemu sets FD_CLOEXEC on all other fds used internally.
1061 flags
= fcntl(fd
, F_GETFD
);
1062 if (flags
== -1 || (flags
& FD_CLOEXEC
)) {
1063 error_report("fd is not valid or already in use");
1068 error_report("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 error_report("Error duplicating fd: %s", strerror(errno
));
1085 /* add the duplicate fd, and optionally the opaque string, to the fd set */
1086 fdinfo
= monitor_fdset_add_fd(dupfd
, true, fdset_id
, !!fd_opaque
, fd_opaque
,
1093 static int cleanup_add_fd(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1097 fd
= qemu_opt_get_number(opts
, "fd", -1);
1104 /***********************************************************/
1105 /* QEMU Block devices */
1107 #define HD_OPTS "media=disk"
1108 #define CDROM_OPTS "media=cdrom"
1110 #define PFLASH_OPTS ""
1114 static int drive_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1116 BlockInterfaceType
*block_default_type
= opaque
;
1118 return drive_new(opts
, *block_default_type
) == NULL
;
1121 static int drive_enable_snapshot(void *opaque
, QemuOpts
*opts
, Error
**errp
)
1123 if (qemu_opt_get(opts
, "snapshot") == NULL
) {
1124 qemu_opt_set(opts
, "snapshot", "on", &error_abort
);
1129 static void default_drive(int enable
, int snapshot
, BlockInterfaceType type
,
1130 int index
, const char *optstr
)
1135 if (!enable
|| drive_get_by_index(type
, index
)) {
1139 opts
= drive_add(type
, index
, NULL
, optstr
);
1141 drive_enable_snapshot(NULL
, opts
, NULL
);
1144 dinfo
= drive_new(opts
, type
);
1148 dinfo
->is_default
= true;
1152 static QemuOptsList qemu_smp_opts
= {
1154 .implied_opt_name
= "cpus",
1155 .merge_lists
= true,
1156 .head
= QTAILQ_HEAD_INITIALIZER(qemu_smp_opts
.head
),
1160 .type
= QEMU_OPT_NUMBER
,
1163 .type
= QEMU_OPT_NUMBER
,
1166 .type
= QEMU_OPT_NUMBER
,
1169 .type
= QEMU_OPT_NUMBER
,
1172 .type
= QEMU_OPT_NUMBER
,
1174 { /*End of list */ }
1178 static void smp_parse(QemuOpts
*opts
)
1182 unsigned cpus
= qemu_opt_get_number(opts
, "cpus", 0);
1183 unsigned sockets
= qemu_opt_get_number(opts
, "sockets", 0);
1184 unsigned cores
= qemu_opt_get_number(opts
, "cores", 0);
1185 unsigned threads
= qemu_opt_get_number(opts
, "threads", 0);
1187 /* compute missing values, prefer sockets over cores over threads */
1188 if (cpus
== 0 || sockets
== 0) {
1189 sockets
= sockets
> 0 ? sockets
: 1;
1190 cores
= cores
> 0 ? cores
: 1;
1191 threads
= threads
> 0 ? threads
: 1;
1193 cpus
= cores
* threads
* sockets
;
1195 } else if (cores
== 0) {
1196 threads
= threads
> 0 ? threads
: 1;
1197 cores
= cpus
/ (sockets
* threads
);
1198 } else if (threads
== 0) {
1199 threads
= cpus
/ (cores
* sockets
);
1200 } else if (sockets
* cores
* threads
< cpus
) {
1201 fprintf(stderr
, "cpu topology: error: "
1202 "sockets (%u) * cores (%u) * threads (%u) < "
1204 sockets
, cores
, threads
, cpus
);
1208 max_cpus
= qemu_opt_get_number(opts
, "maxcpus", 0);
1211 smp_cores
= cores
> 0 ? cores
: 1;
1212 smp_threads
= threads
> 0 ? threads
: 1;
1216 if (max_cpus
== 0) {
1217 max_cpus
= smp_cpus
;
1220 if (max_cpus
> MAX_CPUMASK_BITS
) {
1221 fprintf(stderr
, "Unsupported number of maxcpus\n");
1224 if (max_cpus
< smp_cpus
) {
1225 fprintf(stderr
, "maxcpus must be equal to or greater than smp\n");
1231 static void realtime_init(void)
1234 if (os_mlock() < 0) {
1235 fprintf(stderr
, "qemu: locking memory failed\n");
1242 static void configure_msg(QemuOpts
*opts
)
1244 enable_timestamp_msg
= qemu_opt_get_bool(opts
, "timestamp", true);
1247 /***********************************************************/
1250 typedef struct SemihostingConfig
{
1252 SemihostingTarget target
;
1255 const char *cmdline
; /* concatenated argv */
1256 } SemihostingConfig
;
1258 static SemihostingConfig semihosting
;
1260 bool semihosting_enabled(void)
1262 return semihosting
.enabled
;
1265 SemihostingTarget
semihosting_get_target(void)
1267 return semihosting
.target
;
1270 const char *semihosting_get_arg(int i
)
1272 if (i
>= semihosting
.argc
) {
1275 return semihosting
.argv
[i
];
1278 int semihosting_get_argc(void)
1280 return semihosting
.argc
;
1283 const char *semihosting_get_cmdline(void)
1285 if (semihosting
.cmdline
== NULL
&& semihosting
.argc
> 0) {
1286 semihosting
.cmdline
= g_strjoinv(" ", (gchar
**)semihosting
.argv
);
1288 return semihosting
.cmdline
;
1291 static int add_semihosting_arg(void *opaque
,
1292 const char *name
, const char *val
,
1295 SemihostingConfig
*s
= opaque
;
1296 if (strcmp(name
, "arg") == 0) {
1298 /* one extra element as g_strjoinv() expects NULL-terminated array */
1299 s
->argv
= g_realloc(s
->argv
, (s
->argc
+ 1) * sizeof(void *));
1300 s
->argv
[s
->argc
- 1] = val
;
1301 s
->argv
[s
->argc
] = NULL
;
1306 /* Use strings passed via -kernel/-append to initialize semihosting.argv[] */
1307 static inline void semihosting_arg_fallback(const char *file
, const char *cmd
)
1312 add_semihosting_arg(&semihosting
, "arg", file
, NULL
);
1314 /* split -append and initialize argv[1..n] */
1315 cmd_token
= strtok(g_strdup(cmd
), " ");
1317 add_semihosting_arg(&semihosting
, "arg", cmd_token
, NULL
);
1318 cmd_token
= strtok(NULL
, " ");
1322 /***********************************************************/
1325 static int usb_device_add(const char *devname
)
1327 USBDevice
*dev
= NULL
;
1328 #ifndef CONFIG_LINUX
1332 if (!usb_enabled()) {
1336 /* drivers with .usbdevice_name entry in USBDeviceInfo */
1337 dev
= usbdevice_create(devname
);
1341 /* the other ones */
1342 #ifndef CONFIG_LINUX
1343 /* only the linux version is qdev-ified, usb-bsd still needs this */
1344 if (strstart(devname
, "host:", &p
)) {
1345 dev
= usb_host_device_open(usb_bus_find(-1), p
);
1355 static int usb_device_del(const char *devname
)
1360 if (strstart(devname
, "host:", &p
)) {
1364 if (!usb_enabled()) {
1368 p
= strchr(devname
, '.');
1371 bus_num
= strtoul(devname
, NULL
, 0);
1372 addr
= strtoul(p
+ 1, NULL
, 0);
1374 return usb_device_delete_addr(bus_num
, addr
);
1377 static int usb_parse(const char *cmdline
)
1380 r
= usb_device_add(cmdline
);
1382 fprintf(stderr
, "qemu: could not add USB device '%s'\n", cmdline
);
1387 void hmp_usb_add(Monitor
*mon
, const QDict
*qdict
)
1389 const char *devname
= qdict_get_str(qdict
, "devname");
1390 if (usb_device_add(devname
) < 0) {
1391 error_report("could not add USB device '%s'", devname
);
1395 void hmp_usb_del(Monitor
*mon
, const QDict
*qdict
)
1397 const char *devname
= qdict_get_str(qdict
, "devname");
1398 if (usb_device_del(devname
) < 0) {
1399 error_report("could not delete USB device '%s'", devname
);
1403 /***********************************************************/
1404 /* machine registration */
1406 MachineState
*current_machine
;
1409 * Transitional class registration/init used for converting from
1410 * legacy QEMUMachine to MachineClass.
1412 static void qemu_machine_class_init(ObjectClass
*oc
, void *data
)
1414 MachineClass
*mc
= MACHINE_CLASS(oc
);
1415 QEMUMachine
*qm
= data
;
1416 mc
->name
= qm
->name
;
1417 mc
->desc
= qm
->desc
;
1418 mc
->init
= qm
->init
;
1419 mc
->kvm_type
= qm
->kvm_type
;
1420 mc
->block_default_type
= qm
->block_default_type
;
1421 mc
->max_cpus
= qm
->max_cpus
;
1422 mc
->no_sdcard
= qm
->no_sdcard
;
1423 mc
->has_dynamic_sysbus
= qm
->has_dynamic_sysbus
;
1424 mc
->is_default
= qm
->is_default
;
1425 mc
->default_machine_opts
= qm
->default_machine_opts
;
1426 mc
->default_boot_order
= qm
->default_boot_order
;
1429 int qemu_register_machine(QEMUMachine
*m
)
1431 char *name
= g_strconcat(m
->name
, TYPE_MACHINE_SUFFIX
, NULL
);
1434 .parent
= TYPE_MACHINE
,
1435 .class_init
= qemu_machine_class_init
,
1436 .class_data
= (void *)m
,
1445 static MachineClass
*find_machine(const char *name
)
1447 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
1448 MachineClass
*mc
= NULL
;
1450 for (el
= machines
; el
; el
= el
->next
) {
1451 MachineClass
*temp
= el
->data
;
1453 if (!strcmp(temp
->name
, name
)) {
1458 !strcmp(temp
->alias
, name
)) {
1464 g_slist_free(machines
);
1468 MachineClass
*find_default_machine(void)
1470 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
1471 MachineClass
*mc
= NULL
;
1473 for (el
= machines
; el
; el
= el
->next
) {
1474 MachineClass
*temp
= el
->data
;
1476 if (temp
->is_default
) {
1482 g_slist_free(machines
);
1486 MachineInfoList
*qmp_query_machines(Error
**errp
)
1488 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
1489 MachineInfoList
*mach_list
= NULL
;
1491 for (el
= machines
; el
; el
= el
->next
) {
1492 MachineClass
*mc
= el
->data
;
1493 MachineInfoList
*entry
;
1496 info
= g_malloc0(sizeof(*info
));
1497 if (mc
->is_default
) {
1498 info
->has_is_default
= true;
1499 info
->is_default
= true;
1503 info
->has_alias
= true;
1504 info
->alias
= g_strdup(mc
->alias
);
1507 info
->name
= g_strdup(mc
->name
);
1508 info
->cpu_max
= !mc
->max_cpus
? 1 : mc
->max_cpus
;
1510 entry
= g_malloc0(sizeof(*entry
));
1511 entry
->value
= info
;
1512 entry
->next
= mach_list
;
1516 g_slist_free(machines
);
1520 static int machine_help_func(QemuOpts
*opts
, MachineState
*machine
)
1522 ObjectProperty
*prop
;
1524 if (!qemu_opt_has_help_opt(opts
)) {
1528 QTAILQ_FOREACH(prop
, &OBJECT(machine
)->properties
, node
) {
1533 error_printf("%s.%s=%s", MACHINE_GET_CLASS(machine
)->name
,
1534 prop
->name
, prop
->type
);
1535 if (prop
->description
) {
1536 error_printf(" (%s)\n", prop
->description
);
1545 /***********************************************************/
1546 /* main execution loop */
1548 struct vm_change_state_entry
{
1549 VMChangeStateHandler
*cb
;
1551 QLIST_ENTRY (vm_change_state_entry
) entries
;
1554 static QLIST_HEAD(vm_change_state_head
, vm_change_state_entry
) vm_change_state_head
;
1556 VMChangeStateEntry
*qemu_add_vm_change_state_handler(VMChangeStateHandler
*cb
,
1559 VMChangeStateEntry
*e
;
1561 e
= g_malloc0(sizeof (*e
));
1565 QLIST_INSERT_HEAD(&vm_change_state_head
, e
, entries
);
1569 void qemu_del_vm_change_state_handler(VMChangeStateEntry
*e
)
1571 QLIST_REMOVE (e
, entries
);
1575 void vm_state_notify(int running
, RunState state
)
1577 VMChangeStateEntry
*e
, *next
;
1579 trace_vm_state_notify(running
, state
);
1581 QLIST_FOREACH_SAFE(e
, &vm_change_state_head
, entries
, next
) {
1582 e
->cb(e
->opaque
, running
, state
);
1586 /* reset/shutdown handler */
1588 typedef struct QEMUResetEntry
{
1589 QTAILQ_ENTRY(QEMUResetEntry
) entry
;
1590 QEMUResetHandler
*func
;
1594 static QTAILQ_HEAD(reset_handlers
, QEMUResetEntry
) reset_handlers
=
1595 QTAILQ_HEAD_INITIALIZER(reset_handlers
);
1596 static int reset_requested
;
1597 static int shutdown_requested
, shutdown_signal
= -1;
1598 static pid_t shutdown_pid
;
1599 static int powerdown_requested
;
1600 static int debug_requested
;
1601 static int suspend_requested
;
1602 static WakeupReason wakeup_reason
;
1603 static NotifierList powerdown_notifiers
=
1604 NOTIFIER_LIST_INITIALIZER(powerdown_notifiers
);
1605 static NotifierList suspend_notifiers
=
1606 NOTIFIER_LIST_INITIALIZER(suspend_notifiers
);
1607 static NotifierList wakeup_notifiers
=
1608 NOTIFIER_LIST_INITIALIZER(wakeup_notifiers
);
1609 static uint32_t wakeup_reason_mask
= ~(1 << QEMU_WAKEUP_REASON_NONE
);
1611 int qemu_shutdown_requested_get(void)
1613 return shutdown_requested
;
1616 int qemu_reset_requested_get(void)
1618 return reset_requested
;
1621 static int qemu_shutdown_requested(void)
1623 return atomic_xchg(&shutdown_requested
, 0);
1626 static void qemu_kill_report(void)
1628 if (!qtest_driver() && shutdown_signal
!= -1) {
1629 fprintf(stderr
, "qemu: terminating on signal %d", shutdown_signal
);
1630 if (shutdown_pid
== 0) {
1631 /* This happens for eg ^C at the terminal, so it's worth
1632 * avoiding printing an odd message in that case.
1634 fputc('\n', stderr
);
1636 fprintf(stderr
, " from pid " FMT_pid
"\n", shutdown_pid
);
1638 shutdown_signal
= -1;
1642 static int qemu_reset_requested(void)
1644 int r
= reset_requested
;
1645 reset_requested
= 0;
1649 static int qemu_suspend_requested(void)
1651 int r
= suspend_requested
;
1652 suspend_requested
= 0;
1656 static WakeupReason
qemu_wakeup_requested(void)
1658 return wakeup_reason
;
1661 static int qemu_powerdown_requested(void)
1663 int r
= powerdown_requested
;
1664 powerdown_requested
= 0;
1668 static int qemu_debug_requested(void)
1670 int r
= debug_requested
;
1671 debug_requested
= 0;
1675 void qemu_register_reset(QEMUResetHandler
*func
, void *opaque
)
1677 QEMUResetEntry
*re
= g_malloc0(sizeof(QEMUResetEntry
));
1680 re
->opaque
= opaque
;
1681 QTAILQ_INSERT_TAIL(&reset_handlers
, re
, entry
);
1684 void qemu_unregister_reset(QEMUResetHandler
*func
, void *opaque
)
1688 QTAILQ_FOREACH(re
, &reset_handlers
, entry
) {
1689 if (re
->func
== func
&& re
->opaque
== opaque
) {
1690 QTAILQ_REMOVE(&reset_handlers
, re
, entry
);
1697 void qemu_devices_reset(void)
1699 QEMUResetEntry
*re
, *nre
;
1701 /* reset all devices */
1702 QTAILQ_FOREACH_SAFE(re
, &reset_handlers
, entry
, nre
) {
1703 re
->func(re
->opaque
);
1707 void qemu_system_reset(bool report
)
1711 mc
= current_machine
? MACHINE_GET_CLASS(current_machine
) : NULL
;
1713 if (mc
&& mc
->reset
) {
1716 qemu_devices_reset();
1719 qapi_event_send_reset(&error_abort
);
1721 cpu_synchronize_all_post_reset();
1724 void qemu_system_reset_request(void)
1727 shutdown_requested
= 1;
1729 reset_requested
= 1;
1732 qemu_notify_event();
1735 static void qemu_system_suspend(void)
1738 notifier_list_notify(&suspend_notifiers
, NULL
);
1739 runstate_set(RUN_STATE_SUSPENDED
);
1740 qapi_event_send_suspend(&error_abort
);
1743 void qemu_system_suspend_request(void)
1745 if (runstate_check(RUN_STATE_SUSPENDED
)) {
1748 suspend_requested
= 1;
1750 qemu_notify_event();
1753 void qemu_register_suspend_notifier(Notifier
*notifier
)
1755 notifier_list_add(&suspend_notifiers
, notifier
);
1758 void qemu_system_wakeup_request(WakeupReason reason
)
1760 trace_system_wakeup_request(reason
);
1762 if (!runstate_check(RUN_STATE_SUSPENDED
)) {
1765 if (!(wakeup_reason_mask
& (1 << reason
))) {
1768 runstate_set(RUN_STATE_RUNNING
);
1769 wakeup_reason
= reason
;
1770 qemu_notify_event();
1773 void qemu_system_wakeup_enable(WakeupReason reason
, bool enabled
)
1776 wakeup_reason_mask
|= (1 << reason
);
1778 wakeup_reason_mask
&= ~(1 << reason
);
1782 void qemu_register_wakeup_notifier(Notifier
*notifier
)
1784 notifier_list_add(&wakeup_notifiers
, notifier
);
1787 void qemu_system_killed(int signal
, pid_t pid
)
1789 shutdown_signal
= signal
;
1792 qemu_system_shutdown_request();
1795 void qemu_system_shutdown_request(void)
1797 trace_qemu_system_shutdown_request();
1798 shutdown_requested
= 1;
1799 qemu_notify_event();
1802 static void qemu_system_powerdown(void)
1804 qapi_event_send_powerdown(&error_abort
);
1805 notifier_list_notify(&powerdown_notifiers
, NULL
);
1808 void qemu_system_powerdown_request(void)
1810 trace_qemu_system_powerdown_request();
1811 powerdown_requested
= 1;
1812 qemu_notify_event();
1815 void qemu_register_powerdown_notifier(Notifier
*notifier
)
1817 notifier_list_add(&powerdown_notifiers
, notifier
);
1820 void qemu_system_debug_request(void)
1822 debug_requested
= 1;
1823 qemu_notify_event();
1826 static bool main_loop_should_exit(void)
1829 if (qemu_debug_requested()) {
1830 vm_stop(RUN_STATE_DEBUG
);
1832 if (qemu_suspend_requested()) {
1833 qemu_system_suspend();
1835 if (qemu_shutdown_requested()) {
1837 qapi_event_send_shutdown(&error_abort
);
1839 vm_stop(RUN_STATE_SHUTDOWN
);
1844 if (qemu_reset_requested()) {
1846 cpu_synchronize_all_states();
1847 qemu_system_reset(VMRESET_REPORT
);
1849 if (runstate_needs_reset()) {
1850 runstate_set(RUN_STATE_PAUSED
);
1853 if (qemu_wakeup_requested()) {
1855 cpu_synchronize_all_states();
1856 qemu_system_reset(VMRESET_SILENT
);
1857 notifier_list_notify(&wakeup_notifiers
, &wakeup_reason
);
1858 wakeup_reason
= QEMU_WAKEUP_REASON_NONE
;
1860 qapi_event_send_wakeup(&error_abort
);
1862 if (qemu_powerdown_requested()) {
1863 qemu_system_powerdown();
1865 if (qemu_vmstop_requested(&r
)) {
1871 static void main_loop(void)
1875 #ifdef CONFIG_PROFILER
1879 nonblocking
= !kvm_enabled() && !xen_enabled() && last_io
> 0;
1880 #ifdef CONFIG_PROFILER
1881 ti
= profile_getclock();
1883 last_io
= main_loop_wait(nonblocking
);
1884 #ifdef CONFIG_PROFILER
1885 dev_time
+= profile_getclock() - ti
;
1887 } while (!main_loop_should_exit());
1890 static void version(void)
1892 printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION
", Copyright (c) 2003-2008 Fabrice Bellard\n");
1895 static void help(int exitcode
)
1898 printf("usage: %s [options] [disk_image]\n\n"
1899 "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
1900 error_get_progname());
1902 #define QEMU_OPTIONS_GENERATE_HELP
1903 #include "qemu-options-wrapper.h"
1905 printf("\nDuring emulation, the following keys are useful:\n"
1906 "ctrl-alt-f toggle full screen\n"
1907 "ctrl-alt-n switch to virtual console 'n'\n"
1908 "ctrl-alt toggle mouse and keyboard grab\n"
1910 "When using -nographic, press 'ctrl-a h' to get some help.\n");
1915 #define HAS_ARG 0x0001
1917 typedef struct QEMUOption
{
1924 static const QEMUOption qemu_options
[] = {
1925 { "h", 0, QEMU_OPTION_h
, QEMU_ARCH_ALL
},
1926 #define QEMU_OPTIONS_GENERATE_OPTIONS
1927 #include "qemu-options-wrapper.h"
1931 static bool vga_available(void)
1933 return object_class_by_name("VGA") || object_class_by_name("isa-vga");
1936 static bool cirrus_vga_available(void)
1938 return object_class_by_name("cirrus-vga")
1939 || object_class_by_name("isa-cirrus-vga");
1942 static bool vmware_vga_available(void)
1944 return object_class_by_name("vmware-svga");
1947 static bool qxl_vga_available(void)
1949 return object_class_by_name("qxl-vga");
1952 static bool tcx_vga_available(void)
1954 return object_class_by_name("SUNW,tcx");
1957 static bool cg3_vga_available(void)
1959 return object_class_by_name("cgthree");
1962 static bool virtio_vga_available(void)
1964 return object_class_by_name("virtio-vga");
1967 static void select_vgahw (const char *p
)
1971 assert(vga_interface_type
== VGA_NONE
);
1972 if (strstart(p
, "std", &opts
)) {
1973 if (vga_available()) {
1974 vga_interface_type
= VGA_STD
;
1976 fprintf(stderr
, "Error: standard VGA not available\n");
1979 } else if (strstart(p
, "cirrus", &opts
)) {
1980 if (cirrus_vga_available()) {
1981 vga_interface_type
= VGA_CIRRUS
;
1983 fprintf(stderr
, "Error: Cirrus VGA not available\n");
1986 } else if (strstart(p
, "vmware", &opts
)) {
1987 if (vmware_vga_available()) {
1988 vga_interface_type
= VGA_VMWARE
;
1990 fprintf(stderr
, "Error: VMWare SVGA not available\n");
1993 } else if (strstart(p
, "virtio", &opts
)) {
1994 if (virtio_vga_available()) {
1995 vga_interface_type
= VGA_VIRTIO
;
1997 fprintf(stderr
, "Error: Virtio VGA not available\n");
2000 } else if (strstart(p
, "xenfb", &opts
)) {
2001 vga_interface_type
= VGA_XENFB
;
2002 } else if (strstart(p
, "qxl", &opts
)) {
2003 if (qxl_vga_available()) {
2004 vga_interface_type
= VGA_QXL
;
2006 fprintf(stderr
, "Error: QXL VGA not available\n");
2009 } else if (strstart(p
, "tcx", &opts
)) {
2010 if (tcx_vga_available()) {
2011 vga_interface_type
= VGA_TCX
;
2013 fprintf(stderr
, "Error: TCX framebuffer not available\n");
2016 } else if (strstart(p
, "cg3", &opts
)) {
2017 if (cg3_vga_available()) {
2018 vga_interface_type
= VGA_CG3
;
2020 fprintf(stderr
, "Error: CG3 framebuffer not available\n");
2023 } else if (!strstart(p
, "none", &opts
)) {
2025 fprintf(stderr
, "Unknown vga type: %s\n", p
);
2029 const char *nextopt
;
2031 if (strstart(opts
, ",retrace=", &nextopt
)) {
2033 if (strstart(opts
, "dumb", &nextopt
))
2034 vga_retrace_method
= VGA_RETRACE_DUMB
;
2035 else if (strstart(opts
, "precise", &nextopt
))
2036 vga_retrace_method
= VGA_RETRACE_PRECISE
;
2037 else goto invalid_vga
;
2038 } else goto invalid_vga
;
2043 static DisplayType
select_display(const char *p
)
2047 DisplayType display
= DT_DEFAULT
;
2049 if (strstart(p
, "sdl", &opts
)) {
2053 const char *nextopt
;
2055 if (strstart(opts
, ",frame=", &nextopt
)) {
2057 if (strstart(opts
, "on", &nextopt
)) {
2059 } else if (strstart(opts
, "off", &nextopt
)) {
2062 goto invalid_sdl_args
;
2064 } else if (strstart(opts
, ",alt_grab=", &nextopt
)) {
2066 if (strstart(opts
, "on", &nextopt
)) {
2068 } else if (strstart(opts
, "off", &nextopt
)) {
2071 goto invalid_sdl_args
;
2073 } else if (strstart(opts
, ",ctrl_grab=", &nextopt
)) {
2075 if (strstart(opts
, "on", &nextopt
)) {
2077 } else if (strstart(opts
, "off", &nextopt
)) {
2080 goto invalid_sdl_args
;
2082 } else if (strstart(opts
, ",window_close=", &nextopt
)) {
2084 if (strstart(opts
, "on", &nextopt
)) {
2086 } else if (strstart(opts
, "off", &nextopt
)) {
2089 goto invalid_sdl_args
;
2091 } else if (strstart(opts
, ",gl=", &nextopt
)) {
2093 if (strstart(opts
, "on", &nextopt
)) {
2095 } else if (strstart(opts
, "off", &nextopt
)) {
2098 goto invalid_sdl_args
;
2102 error_report("Invalid SDL option string");
2108 error_report("SDL support is disabled");
2111 } else if (strstart(p
, "vnc", &opts
)) {
2114 if (vnc_parse(opts
+ 1, &err
) == NULL
) {
2115 error_report_err(err
);
2119 error_report("VNC requires a display argument vnc=<display>");
2123 error_report("VNC support is disabled");
2126 } else if (strstart(p
, "curses", &opts
)) {
2127 #ifdef CONFIG_CURSES
2128 display
= DT_CURSES
;
2130 error_report("Curses support is disabled");
2133 } else if (strstart(p
, "gtk", &opts
)) {
2137 const char *nextopt
;
2139 if (strstart(opts
, ",grab_on_hover=", &nextopt
)) {
2141 if (strstart(opts
, "on", &nextopt
)) {
2142 grab_on_hover
= true;
2143 } else if (strstart(opts
, "off", &nextopt
)) {
2144 grab_on_hover
= false;
2146 goto invalid_gtk_args
;
2148 } else if (strstart(opts
, ",gl=", &nextopt
)) {
2150 if (strstart(opts
, "on", &nextopt
)) {
2152 } else if (strstart(opts
, "off", &nextopt
)) {
2155 goto invalid_gtk_args
;
2159 error_report("Invalid GTK option string");
2165 error_report("GTK support is disabled");
2168 } else if (strstart(p
, "none", &opts
)) {
2171 error_report("Unknown display type");
2178 static int balloon_parse(const char *arg
)
2182 if (strcmp(arg
, "none") == 0) {
2186 if (!strncmp(arg
, "virtio", 6)) {
2187 if (arg
[6] == ',') {
2188 /* have params -> parse them */
2189 opts
= qemu_opts_parse_noisily(qemu_find_opts("device"), arg
+ 7,
2194 /* create empty opts */
2195 opts
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
2198 qemu_opt_set(opts
, "driver", "virtio-balloon", &error_abort
);
2205 char *qemu_find_file(int type
, const char *name
)
2211 /* Try the name as a straight path first */
2212 if (access(name
, R_OK
) == 0) {
2213 trace_load_file(name
, name
);
2214 return g_strdup(name
);
2218 case QEMU_FILE_TYPE_BIOS
:
2221 case QEMU_FILE_TYPE_KEYMAP
:
2222 subdir
= "keymaps/";
2228 for (i
= 0; i
< data_dir_idx
; i
++) {
2229 buf
= g_strdup_printf("%s/%s%s", data_dir
[i
], subdir
, name
);
2230 if (access(buf
, R_OK
) == 0) {
2231 trace_load_file(name
, buf
);
2239 static int parse_fw_cfg(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2243 const char *name
, *file
;
2245 if (opaque
== NULL
) {
2246 error_report("fw_cfg device not available");
2249 name
= qemu_opt_get(opts
, "name");
2250 file
= qemu_opt_get(opts
, "file");
2251 if (name
== NULL
|| *name
== '\0' || file
== NULL
|| *file
== '\0') {
2252 error_report("invalid argument value");
2255 if (strlen(name
) > FW_CFG_MAX_FILE_PATH
- 1) {
2256 error_report("name too long (max. %d char)", FW_CFG_MAX_FILE_PATH
- 1);
2259 if (strncmp(name
, "opt/", 4) != 0) {
2260 error_report("WARNING: externally provided fw_cfg item names "
2261 "should be prefixed with \"opt/\"!");
2263 if (!g_file_get_contents(file
, &buf
, &size
, NULL
)) {
2264 error_report("can't load %s", file
);
2267 fw_cfg_add_file((FWCfgState
*)opaque
, name
, buf
, size
);
2271 static int device_help_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2273 return qdev_device_help(opts
);
2276 static int device_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2281 dev
= qdev_device_add(opts
, &err
);
2283 error_report_err(err
);
2286 object_unref(OBJECT(dev
));
2290 static int chardev_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2292 Error
*local_err
= NULL
;
2294 qemu_chr_new_from_opts(opts
, NULL
, &local_err
);
2296 error_report_err(local_err
);
2302 #ifdef CONFIG_VIRTFS
2303 static int fsdev_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2306 ret
= qemu_fsdev_add(opts
);
2312 static int mon_init_func(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2314 CharDriverState
*chr
;
2315 const char *chardev
;
2319 mode
= qemu_opt_get(opts
, "mode");
2323 if (strcmp(mode
, "readline") == 0) {
2324 flags
= MONITOR_USE_READLINE
;
2325 } else if (strcmp(mode
, "control") == 0) {
2326 flags
= MONITOR_USE_CONTROL
;
2328 fprintf(stderr
, "unknown monitor mode \"%s\"\n", mode
);
2332 if (qemu_opt_get_bool(opts
, "pretty", 0))
2333 flags
|= MONITOR_USE_PRETTY
;
2335 if (qemu_opt_get_bool(opts
, "default", 0))
2336 flags
|= MONITOR_IS_DEFAULT
;
2338 chardev
= qemu_opt_get(opts
, "chardev");
2339 chr
= qemu_chr_find(chardev
);
2341 fprintf(stderr
, "chardev \"%s\" not found\n", chardev
);
2345 qemu_chr_fe_claim_no_fail(chr
);
2346 monitor_init(chr
, flags
);
2350 static void monitor_parse(const char *optarg
, const char *mode
, bool pretty
)
2352 static int monitor_device_index
= 0;
2353 Error
*local_err
= NULL
;
2359 if (strstart(optarg
, "chardev:", &p
)) {
2360 snprintf(label
, sizeof(label
), "%s", p
);
2362 snprintf(label
, sizeof(label
), "compat_monitor%d",
2363 monitor_device_index
);
2364 if (monitor_device_index
== 0) {
2367 opts
= qemu_chr_parse_compat(label
, optarg
);
2369 fprintf(stderr
, "parse error: %s\n", optarg
);
2374 opts
= qemu_opts_create(qemu_find_opts("mon"), label
, 1, &local_err
);
2376 error_report_err(local_err
);
2379 qemu_opt_set(opts
, "mode", mode
, &error_abort
);
2380 qemu_opt_set(opts
, "chardev", label
, &error_abort
);
2381 qemu_opt_set_bool(opts
, "pretty", pretty
, &error_abort
);
2383 qemu_opt_set(opts
, "default", "on", &error_abort
);
2384 monitor_device_index
++;
2387 struct device_config
{
2389 DEV_USB
, /* -usbdevice */
2391 DEV_SERIAL
, /* -serial */
2392 DEV_PARALLEL
, /* -parallel */
2393 DEV_VIRTCON
, /* -virtioconsole */
2394 DEV_DEBUGCON
, /* -debugcon */
2395 DEV_GDB
, /* -gdb, -s */
2396 DEV_SCLP
, /* s390 sclp */
2398 const char *cmdline
;
2400 QTAILQ_ENTRY(device_config
) next
;
2403 static QTAILQ_HEAD(, device_config
) device_configs
=
2404 QTAILQ_HEAD_INITIALIZER(device_configs
);
2406 static void add_device_config(int type
, const char *cmdline
)
2408 struct device_config
*conf
;
2410 conf
= g_malloc0(sizeof(*conf
));
2412 conf
->cmdline
= cmdline
;
2413 loc_save(&conf
->loc
);
2414 QTAILQ_INSERT_TAIL(&device_configs
, conf
, next
);
2417 static int foreach_device_config(int type
, int (*func
)(const char *cmdline
))
2419 struct device_config
*conf
;
2422 QTAILQ_FOREACH(conf
, &device_configs
, next
) {
2423 if (conf
->type
!= type
)
2425 loc_push_restore(&conf
->loc
);
2426 rc
= func(conf
->cmdline
);
2427 loc_pop(&conf
->loc
);
2435 static int serial_parse(const char *devname
)
2437 static int index
= 0;
2440 if (strcmp(devname
, "none") == 0)
2442 if (index
== MAX_SERIAL_PORTS
) {
2443 fprintf(stderr
, "qemu: too many serial ports\n");
2446 snprintf(label
, sizeof(label
), "serial%d", index
);
2447 serial_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2448 if (!serial_hds
[index
]) {
2449 fprintf(stderr
, "qemu: could not connect serial device"
2450 " to character backend '%s'\n", devname
);
2457 static int parallel_parse(const char *devname
)
2459 static int index
= 0;
2462 if (strcmp(devname
, "none") == 0)
2464 if (index
== MAX_PARALLEL_PORTS
) {
2465 fprintf(stderr
, "qemu: too many parallel ports\n");
2468 snprintf(label
, sizeof(label
), "parallel%d", index
);
2469 parallel_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2470 if (!parallel_hds
[index
]) {
2471 fprintf(stderr
, "qemu: could not connect parallel device"
2472 " to character backend '%s'\n", devname
);
2479 static int virtcon_parse(const char *devname
)
2481 QemuOptsList
*device
= qemu_find_opts("device");
2482 static int index
= 0;
2484 QemuOpts
*bus_opts
, *dev_opts
;
2486 if (strcmp(devname
, "none") == 0)
2488 if (index
== MAX_VIRTIO_CONSOLES
) {
2489 fprintf(stderr
, "qemu: too many virtio consoles\n");
2493 bus_opts
= qemu_opts_create(device
, NULL
, 0, &error_abort
);
2494 if (arch_type
== QEMU_ARCH_S390X
) {
2495 qemu_opt_set(bus_opts
, "driver", "virtio-serial-s390", &error_abort
);
2497 qemu_opt_set(bus_opts
, "driver", "virtio-serial-pci", &error_abort
);
2500 dev_opts
= qemu_opts_create(device
, NULL
, 0, &error_abort
);
2501 qemu_opt_set(dev_opts
, "driver", "virtconsole", &error_abort
);
2503 snprintf(label
, sizeof(label
), "virtcon%d", index
);
2504 virtcon_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2505 if (!virtcon_hds
[index
]) {
2506 fprintf(stderr
, "qemu: could not connect virtio console"
2507 " to character backend '%s'\n", devname
);
2510 qemu_opt_set(dev_opts
, "chardev", label
, &error_abort
);
2516 static int sclp_parse(const char *devname
)
2518 QemuOptsList
*device
= qemu_find_opts("device");
2519 static int index
= 0;
2523 if (strcmp(devname
, "none") == 0) {
2526 if (index
== MAX_SCLP_CONSOLES
) {
2527 fprintf(stderr
, "qemu: too many sclp consoles\n");
2531 assert(arch_type
== QEMU_ARCH_S390X
);
2533 dev_opts
= qemu_opts_create(device
, NULL
, 0, NULL
);
2534 qemu_opt_set(dev_opts
, "driver", "sclpconsole", &error_abort
);
2536 snprintf(label
, sizeof(label
), "sclpcon%d", index
);
2537 sclp_hds
[index
] = qemu_chr_new(label
, devname
, NULL
);
2538 if (!sclp_hds
[index
]) {
2539 fprintf(stderr
, "qemu: could not connect sclp console"
2540 " to character backend '%s'\n", devname
);
2543 qemu_opt_set(dev_opts
, "chardev", label
, &error_abort
);
2549 static int debugcon_parse(const char *devname
)
2553 if (!qemu_chr_new("debugcon", devname
, NULL
)) {
2556 opts
= qemu_opts_create(qemu_find_opts("device"), "debugcon", 1, NULL
);
2558 fprintf(stderr
, "qemu: already have a debugcon device\n");
2561 qemu_opt_set(opts
, "driver", "isa-debugcon", &error_abort
);
2562 qemu_opt_set(opts
, "chardev", "debugcon", &error_abort
);
2566 static gint
machine_class_cmp(gconstpointer a
, gconstpointer b
)
2568 const MachineClass
*mc1
= a
, *mc2
= b
;
2571 if (mc1
->family
== NULL
) {
2572 if (mc2
->family
== NULL
) {
2573 /* Compare standalone machine types against each other; they sort
2574 * in increasing order.
2576 return strcmp(object_class_get_name(OBJECT_CLASS(mc1
)),
2577 object_class_get_name(OBJECT_CLASS(mc2
)));
2580 /* Standalone machine types sort after families. */
2584 if (mc2
->family
== NULL
) {
2585 /* Families sort before standalone machine types. */
2589 /* Families sort between each other alphabetically increasingly. */
2590 res
= strcmp(mc1
->family
, mc2
->family
);
2595 /* Within the same family, machine types sort in decreasing order. */
2596 return strcmp(object_class_get_name(OBJECT_CLASS(mc2
)),
2597 object_class_get_name(OBJECT_CLASS(mc1
)));
2600 static MachineClass
*machine_parse(const char *name
)
2602 MachineClass
*mc
= NULL
;
2603 GSList
*el
, *machines
= object_class_get_list(TYPE_MACHINE
, false);
2606 mc
= find_machine(name
);
2609 g_slist_free(machines
);
2612 if (name
&& !is_help_option(name
)) {
2613 error_report("Unsupported machine type");
2614 error_printf("Use -machine help to list supported machines!\n");
2616 printf("Supported machines are:\n");
2617 machines
= g_slist_sort(machines
, machine_class_cmp
);
2618 for (el
= machines
; el
; el
= el
->next
) {
2619 MachineClass
*mc
= el
->data
;
2621 printf("%-20s %s (alias of %s)\n", mc
->alias
, mc
->desc
, mc
->name
);
2623 printf("%-20s %s%s\n", mc
->name
, mc
->desc
,
2624 mc
->is_default
? " (default)" : "");
2628 g_slist_free(machines
);
2629 exit(!name
|| !is_help_option(name
));
2632 void qemu_add_exit_notifier(Notifier
*notify
)
2634 notifier_list_add(&exit_notifiers
, notify
);
2637 void qemu_remove_exit_notifier(Notifier
*notify
)
2639 notifier_remove(notify
);
2642 static void qemu_run_exit_notifiers(void)
2644 notifier_list_notify(&exit_notifiers
, NULL
);
2647 static bool machine_init_done
;
2649 void qemu_add_machine_init_done_notifier(Notifier
*notify
)
2651 notifier_list_add(&machine_init_done_notifiers
, notify
);
2652 if (machine_init_done
) {
2653 notify
->notify(notify
, NULL
);
2657 static void qemu_run_machine_init_done_notifiers(void)
2659 notifier_list_notify(&machine_init_done_notifiers
, NULL
);
2660 machine_init_done
= true;
2663 static const QEMUOption
*lookup_opt(int argc
, char **argv
,
2664 const char **poptarg
, int *poptind
)
2666 const QEMUOption
*popt
;
2667 int optind
= *poptind
;
2668 char *r
= argv
[optind
];
2671 loc_set_cmdline(argv
, optind
, 1);
2673 /* Treat --foo the same as -foo. */
2676 popt
= qemu_options
;
2679 error_report("invalid option");
2682 if (!strcmp(popt
->name
, r
+ 1))
2686 if (popt
->flags
& HAS_ARG
) {
2687 if (optind
>= argc
) {
2688 error_report("requires an argument");
2691 optarg
= argv
[optind
++];
2692 loc_set_cmdline(argv
, optind
- 2, 2);
2703 static gpointer
malloc_and_trace(gsize n_bytes
)
2705 void *ptr
= malloc(n_bytes
);
2706 trace_g_malloc(n_bytes
, ptr
);
2710 static gpointer
realloc_and_trace(gpointer mem
, gsize n_bytes
)
2712 void *ptr
= realloc(mem
, n_bytes
);
2713 trace_g_realloc(mem
, n_bytes
, ptr
);
2717 static void free_and_trace(gpointer mem
)
2723 static int machine_set_property(void *opaque
,
2724 const char *name
, const char *value
,
2727 Object
*obj
= OBJECT(opaque
);
2728 Error
*local_err
= NULL
;
2731 if (strcmp(name
, "type") == 0) {
2735 qom_name
= g_strdup(name
);
2743 object_property_parse(obj
, value
, qom_name
, &local_err
);
2747 error_report_err(local_err
);
2756 * Initial object creation happens before all other
2757 * QEMU data types are created. The majority of objects
2758 * can be created at this point. The rng-egd object
2759 * cannot be created here, as it depends on the chardev
2762 static bool object_create_initial(const char *type
)
2764 if (g_str_equal(type
, "rng-egd")) {
2772 * The remainder of object creation happens after the
2773 * creation of chardev, fsdev and device data types.
2775 static bool object_create_delayed(const char *type
)
2777 return !object_create_initial(type
);
2781 static int object_create(void *opaque
, QemuOpts
*opts
, Error
**errp
)
2789 bool (*type_predicate
)(const char *) = opaque
;
2791 ov
= opts_visitor_new(opts
);
2792 pdict
= qemu_opts_to_qdict(opts
, NULL
);
2794 visit_start_struct(opts_get_visitor(ov
), &dummy
, NULL
, NULL
, 0, &err
);
2799 qdict_del(pdict
, "qom-type");
2800 visit_type_str(opts_get_visitor(ov
), &type
, "qom-type", &err
);
2804 if (!type_predicate(type
)) {
2808 qdict_del(pdict
, "id");
2809 visit_type_str(opts_get_visitor(ov
), &id
, "id", &err
);
2814 object_add(type
, id
, pdict
, opts_get_visitor(ov
), &err
);
2818 visit_end_struct(opts_get_visitor(ov
), &err
);
2820 qmp_object_del(id
, NULL
);
2824 opts_visitor_cleanup(ov
);
2831 error_report_err(err
);
2837 static void set_memory_options(uint64_t *ram_slots
, ram_addr_t
*maxram_size
,
2841 const char *mem_str
;
2842 const char *maxmem_str
, *slots_str
;
2843 const ram_addr_t default_ram_size
= mc
->default_ram_size
;
2844 QemuOpts
*opts
= qemu_find_opts_singleton("memory");
2847 mem_str
= qemu_opt_get(opts
, "size");
2850 error_report("missing 'size' option value");
2854 sz
= qemu_opt_get_size(opts
, "size", ram_size
);
2856 /* Fix up legacy suffix-less format */
2857 if (g_ascii_isdigit(mem_str
[strlen(mem_str
) - 1])) {
2858 uint64_t overflow_check
= sz
;
2861 if ((sz
>> 20) != overflow_check
) {
2862 error_report("too large 'size' option value");
2868 /* backward compatibility behaviour for case "-m 0" */
2870 sz
= default_ram_size
;
2873 sz
= QEMU_ALIGN_UP(sz
, 8192);
2875 if (ram_size
!= sz
) {
2876 error_report("ram size too large");
2880 /* store value for the future use */
2881 qemu_opt_set_number(opts
, "size", ram_size
, &error_abort
);
2882 *maxram_size
= ram_size
;
2884 maxmem_str
= qemu_opt_get(opts
, "maxmem");
2885 slots_str
= qemu_opt_get(opts
, "slots");
2886 if (maxmem_str
&& slots_str
) {
2889 sz
= qemu_opt_get_size(opts
, "maxmem", 0);
2890 slots
= qemu_opt_get_number(opts
, "slots", 0);
2891 if (sz
< ram_size
) {
2892 error_report("invalid value of -m option maxmem: "
2893 "maximum memory size (0x%" PRIx64
") must be at least "
2894 "the initial memory size (0x" RAM_ADDR_FMT
")",
2897 } else if (sz
> ram_size
) {
2899 error_report("invalid value of -m option: maxmem was "
2900 "specified, but no hotplug slots were specified");
2904 error_report("invalid value of -m option maxmem: "
2905 "memory slots were specified but maximum memory size "
2906 "(0x%" PRIx64
") is equal to the initial memory size "
2907 "(0x" RAM_ADDR_FMT
")", sz
, ram_size
);
2913 } else if ((!maxmem_str
&& slots_str
) ||
2914 (maxmem_str
&& !slots_str
)) {
2915 error_report("invalid -m option value: missing "
2916 "'%s' option", slots_str
? "maxmem" : "slots");
2921 int main(int argc
, char **argv
, char **envp
)
2924 int snapshot
, linux_boot
;
2925 const char *initrd_filename
;
2926 const char *kernel_filename
, *kernel_cmdline
;
2927 const char *boot_order
= NULL
;
2928 const char *boot_once
= NULL
;
2930 int cyls
, heads
, secs
, translation
;
2931 QemuOpts
*hda_opts
= NULL
, *opts
, *machine_opts
, *icount_opts
= NULL
;
2932 QemuOptsList
*olist
;
2935 const char *loadvm
= NULL
;
2936 MachineClass
*machine_class
;
2937 const char *cpu_model
;
2938 const char *vga_model
= NULL
;
2939 const char *qtest_chrdev
= NULL
;
2940 const char *qtest_log
= NULL
;
2941 const char *pid_file
= NULL
;
2942 const char *incoming
= NULL
;
2944 int show_vnc_port
= 0;
2946 bool defconfig
= true;
2947 bool userconfig
= true;
2948 const char *log_mask
= NULL
;
2949 const char *log_file
= NULL
;
2950 GMemVTable mem_trace
= {
2951 .malloc
= malloc_and_trace
,
2952 .realloc
= realloc_and_trace
,
2953 .free
= free_and_trace
,
2955 const char *trace_events
= NULL
;
2956 const char *trace_file
= NULL
;
2957 ram_addr_t maxram_size
;
2958 uint64_t ram_slots
= 0;
2959 FILE *vmstate_dump_file
= NULL
;
2960 Error
*main_loop_err
= NULL
;
2962 qemu_init_cpu_loop();
2963 qemu_mutex_lock_iothread();
2965 atexit(qemu_run_exit_notifiers
);
2966 error_set_progname(argv
[0]);
2967 qemu_init_exec_dir(argv
[0]);
2969 g_mem_set_vtable(&mem_trace
);
2971 module_call_init(MODULE_INIT_QOM
);
2973 qemu_add_opts(&qemu_drive_opts
);
2974 qemu_add_drive_opts(&qemu_legacy_drive_opts
);
2975 qemu_add_drive_opts(&qemu_common_drive_opts
);
2976 qemu_add_drive_opts(&qemu_drive_opts
);
2977 qemu_add_opts(&qemu_chardev_opts
);
2978 qemu_add_opts(&qemu_device_opts
);
2979 qemu_add_opts(&qemu_netdev_opts
);
2980 qemu_add_opts(&qemu_net_opts
);
2981 qemu_add_opts(&qemu_rtc_opts
);
2982 qemu_add_opts(&qemu_global_opts
);
2983 qemu_add_opts(&qemu_mon_opts
);
2984 qemu_add_opts(&qemu_trace_opts
);
2985 qemu_add_opts(&qemu_option_rom_opts
);
2986 qemu_add_opts(&qemu_machine_opts
);
2987 qemu_add_opts(&qemu_mem_opts
);
2988 qemu_add_opts(&qemu_smp_opts
);
2989 qemu_add_opts(&qemu_boot_opts
);
2990 qemu_add_opts(&qemu_sandbox_opts
);
2991 qemu_add_opts(&qemu_add_fd_opts
);
2992 qemu_add_opts(&qemu_object_opts
);
2993 qemu_add_opts(&qemu_tpmdev_opts
);
2994 qemu_add_opts(&qemu_realtime_opts
);
2995 qemu_add_opts(&qemu_msg_opts
);
2996 qemu_add_opts(&qemu_name_opts
);
2997 qemu_add_opts(&qemu_numa_opts
);
2998 qemu_add_opts(&qemu_icount_opts
);
2999 qemu_add_opts(&qemu_semihosting_config_opts
);
3000 qemu_add_opts(&qemu_fw_cfg_opts
);
3004 rtc_clock
= QEMU_CLOCK_HOST
;
3006 QLIST_INIT (&vm_change_state_head
);
3007 os_setup_early_signal_handling();
3009 module_call_init(MODULE_INIT_MACHINE
);
3010 machine_class
= find_default_machine();
3013 cyls
= heads
= secs
= 0;
3014 translation
= BIOS_ATA_TRANSLATION_AUTO
;
3018 bdrv_init_with_whitelist();
3022 /* first pass of option parsing */
3024 while (optind
< argc
) {
3025 if (argv
[optind
][0] != '-') {
3029 const QEMUOption
*popt
;
3031 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
3032 switch (popt
->index
) {
3033 case QEMU_OPTION_nodefconfig
:
3036 case QEMU_OPTION_nouserconfig
:
3045 ret
= qemu_read_default_config_files(userconfig
);
3051 /* second pass of option parsing */
3056 if (argv
[optind
][0] != '-') {
3057 hda_opts
= drive_add(IF_DEFAULT
, 0, argv
[optind
++], HD_OPTS
);
3059 const QEMUOption
*popt
;
3061 popt
= lookup_opt(argc
, argv
, &optarg
, &optind
);
3062 if (!(popt
->arch_mask
& arch_type
)) {
3063 printf("Option %s not supported for this target\n", popt
->name
);
3066 switch(popt
->index
) {
3067 case QEMU_OPTION_no_kvm_irqchip
: {
3068 olist
= qemu_find_opts("machine");
3069 qemu_opts_parse_noisily(olist
, "kernel_irqchip=off", false);
3072 case QEMU_OPTION_cpu
:
3073 /* hw initialization will check this */
3076 case QEMU_OPTION_hda
:
3080 snprintf(buf
, sizeof(buf
), "%s", HD_OPTS
);
3082 snprintf(buf
, sizeof(buf
),
3083 "%s,cyls=%d,heads=%d,secs=%d%s",
3084 HD_OPTS
, cyls
, heads
, secs
,
3085 translation
== BIOS_ATA_TRANSLATION_LBA
?
3087 translation
== BIOS_ATA_TRANSLATION_NONE
?
3088 ",trans=none" : "");
3089 drive_add(IF_DEFAULT
, 0, optarg
, buf
);
3092 case QEMU_OPTION_hdb
:
3093 case QEMU_OPTION_hdc
:
3094 case QEMU_OPTION_hdd
:
3095 drive_add(IF_DEFAULT
, popt
->index
- QEMU_OPTION_hda
, optarg
,
3098 case QEMU_OPTION_drive
:
3099 if (drive_def(optarg
) == NULL
) {
3103 case QEMU_OPTION_set
:
3104 if (qemu_set_option(optarg
) != 0)
3107 case QEMU_OPTION_global
:
3108 if (qemu_global_option(optarg
) != 0)
3111 case QEMU_OPTION_mtdblock
:
3112 drive_add(IF_MTD
, -1, optarg
, MTD_OPTS
);
3114 case QEMU_OPTION_sd
:
3115 drive_add(IF_SD
, -1, optarg
, SD_OPTS
);
3117 case QEMU_OPTION_pflash
:
3118 drive_add(IF_PFLASH
, -1, optarg
, PFLASH_OPTS
);
3120 case QEMU_OPTION_snapshot
:
3123 case QEMU_OPTION_hdachs
:
3127 cyls
= strtol(p
, (char **)&p
, 0);
3128 if (cyls
< 1 || cyls
> 16383)
3133 heads
= strtol(p
, (char **)&p
, 0);
3134 if (heads
< 1 || heads
> 16)
3139 secs
= strtol(p
, (char **)&p
, 0);
3140 if (secs
< 1 || secs
> 63)
3144 if (!strcmp(p
, "large")) {
3145 translation
= BIOS_ATA_TRANSLATION_LARGE
;
3146 } else if (!strcmp(p
, "rechs")) {
3147 translation
= BIOS_ATA_TRANSLATION_RECHS
;
3148 } else if (!strcmp(p
, "none")) {
3149 translation
= BIOS_ATA_TRANSLATION_NONE
;
3150 } else if (!strcmp(p
, "lba")) {
3151 translation
= BIOS_ATA_TRANSLATION_LBA
;
3152 } else if (!strcmp(p
, "auto")) {
3153 translation
= BIOS_ATA_TRANSLATION_AUTO
;
3157 } else if (*p
!= '\0') {
3159 fprintf(stderr
, "qemu: invalid physical CHS format\n");
3162 if (hda_opts
!= NULL
) {
3163 qemu_opt_set_number(hda_opts
, "cyls", cyls
,
3165 qemu_opt_set_number(hda_opts
, "heads", heads
,
3167 qemu_opt_set_number(hda_opts
, "secs", secs
,
3169 if (translation
== BIOS_ATA_TRANSLATION_LARGE
) {
3170 qemu_opt_set(hda_opts
, "trans", "large",
3172 } else if (translation
== BIOS_ATA_TRANSLATION_RECHS
) {
3173 qemu_opt_set(hda_opts
, "trans", "rechs",
3175 } else if (translation
== BIOS_ATA_TRANSLATION_LBA
) {
3176 qemu_opt_set(hda_opts
, "trans", "lba",
3178 } else if (translation
== BIOS_ATA_TRANSLATION_NONE
) {
3179 qemu_opt_set(hda_opts
, "trans", "none",
3185 case QEMU_OPTION_numa
:
3186 opts
= qemu_opts_parse_noisily(qemu_find_opts("numa"),
3192 case QEMU_OPTION_display
:
3193 display_type
= select_display(optarg
);
3195 case QEMU_OPTION_nographic
:
3196 display_type
= DT_NOGRAPHIC
;
3198 case QEMU_OPTION_curses
:
3199 #ifdef CONFIG_CURSES
3200 display_type
= DT_CURSES
;
3202 fprintf(stderr
, "Curses support is disabled\n");
3206 case QEMU_OPTION_portrait
:
3207 graphic_rotate
= 90;
3209 case QEMU_OPTION_rotate
:
3210 graphic_rotate
= strtol(optarg
, (char **) &optarg
, 10);
3211 if (graphic_rotate
!= 0 && graphic_rotate
!= 90 &&
3212 graphic_rotate
!= 180 && graphic_rotate
!= 270) {
3214 "qemu: only 90, 180, 270 deg rotation is available\n");
3218 case QEMU_OPTION_kernel
:
3219 qemu_opts_set(qemu_find_opts("machine"), 0, "kernel", optarg
,
3222 case QEMU_OPTION_initrd
:
3223 qemu_opts_set(qemu_find_opts("machine"), 0, "initrd", optarg
,
3226 case QEMU_OPTION_append
:
3227 qemu_opts_set(qemu_find_opts("machine"), 0, "append", optarg
,
3230 case QEMU_OPTION_dtb
:
3231 qemu_opts_set(qemu_find_opts("machine"), 0, "dtb", optarg
,
3234 case QEMU_OPTION_cdrom
:
3235 drive_add(IF_DEFAULT
, 2, optarg
, CDROM_OPTS
);
3237 case QEMU_OPTION_boot
:
3238 opts
= qemu_opts_parse_noisily(qemu_find_opts("boot-opts"),
3244 case QEMU_OPTION_fda
:
3245 case QEMU_OPTION_fdb
:
3246 drive_add(IF_FLOPPY
, popt
->index
- QEMU_OPTION_fda
,
3249 case QEMU_OPTION_no_fd_bootchk
:
3252 case QEMU_OPTION_netdev
:
3253 if (net_client_parse(qemu_find_opts("netdev"), optarg
) == -1) {
3257 case QEMU_OPTION_net
:
3258 if (net_client_parse(qemu_find_opts("net"), optarg
) == -1) {
3262 #ifdef CONFIG_LIBISCSI
3263 case QEMU_OPTION_iscsi
:
3264 opts
= qemu_opts_parse_noisily(qemu_find_opts("iscsi"),
3272 case QEMU_OPTION_tftp
:
3273 legacy_tftp_prefix
= optarg
;
3275 case QEMU_OPTION_bootp
:
3276 legacy_bootp_filename
= optarg
;
3278 case QEMU_OPTION_redir
:
3279 if (net_slirp_redir(optarg
) < 0)
3283 case QEMU_OPTION_bt
:
3284 add_device_config(DEV_BT
, optarg
);
3286 case QEMU_OPTION_audio_help
:
3290 case QEMU_OPTION_soundhw
:
3291 select_soundhw (optarg
);
3296 case QEMU_OPTION_version
:
3301 opts
= qemu_opts_parse_noisily(qemu_find_opts("memory"),
3308 case QEMU_OPTION_tpmdev
:
3309 if (tpm_config_parse(qemu_find_opts("tpmdev"), optarg
) < 0) {
3314 case QEMU_OPTION_mempath
:
3317 case QEMU_OPTION_mem_prealloc
:
3327 add_device_config(DEV_GDB
, "tcp::" DEFAULT_GDBSTUB_PORT
);
3329 case QEMU_OPTION_gdb
:
3330 add_device_config(DEV_GDB
, optarg
);
3333 if (data_dir_idx
< ARRAY_SIZE(data_dir
)) {
3334 data_dir
[data_dir_idx
++] = optarg
;
3337 case QEMU_OPTION_bios
:
3338 qemu_opts_set(qemu_find_opts("machine"), 0, "firmware", optarg
,
3341 case QEMU_OPTION_singlestep
:
3348 keyboard_layout
= optarg
;
3350 case QEMU_OPTION_localtime
:
3353 case QEMU_OPTION_vga
:
3362 w
= strtol(p
, (char **)&p
, 10);
3365 fprintf(stderr
, "qemu: invalid resolution or depth\n");
3371 h
= strtol(p
, (char **)&p
, 10);
3376 depth
= strtol(p
, (char **)&p
, 10);
3377 if (depth
!= 8 && depth
!= 15 && depth
!= 16 &&
3378 depth
!= 24 && depth
!= 32)
3380 } else if (*p
== '\0') {
3381 depth
= graphic_depth
;
3388 graphic_depth
= depth
;
3391 case QEMU_OPTION_echr
:
3394 term_escape_char
= strtol(optarg
, &r
, 0);
3396 printf("Bad argument to echr\n");
3399 case QEMU_OPTION_monitor
:
3400 default_monitor
= 0;
3401 if (strncmp(optarg
, "none", 4)) {
3402 monitor_parse(optarg
, "readline", false);
3405 case QEMU_OPTION_qmp
:
3406 monitor_parse(optarg
, "control", false);
3407 default_monitor
= 0;
3409 case QEMU_OPTION_qmp_pretty
:
3410 monitor_parse(optarg
, "control", true);
3411 default_monitor
= 0;
3413 case QEMU_OPTION_mon
:
3414 opts
= qemu_opts_parse_noisily(qemu_find_opts("mon"), optarg
,
3419 default_monitor
= 0;
3421 case QEMU_OPTION_chardev
:
3422 opts
= qemu_opts_parse_noisily(qemu_find_opts("chardev"),
3428 case QEMU_OPTION_fsdev
:
3429 olist
= qemu_find_opts("fsdev");
3431 fprintf(stderr
, "fsdev is not supported by this qemu build.\n");
3434 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3439 case QEMU_OPTION_virtfs
: {
3442 const char *writeout
, *sock_fd
, *socket
;
3444 olist
= qemu_find_opts("virtfs");
3446 fprintf(stderr
, "virtfs is not supported by this qemu build.\n");
3449 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3454 if (qemu_opt_get(opts
, "fsdriver") == NULL
||
3455 qemu_opt_get(opts
, "mount_tag") == NULL
) {
3456 fprintf(stderr
, "Usage: -virtfs fsdriver,mount_tag=tag.\n");
3459 fsdev
= qemu_opts_create(qemu_find_opts("fsdev"),
3460 qemu_opt_get(opts
, "mount_tag"),
3463 fprintf(stderr
, "duplicate fsdev id: %s\n",
3464 qemu_opt_get(opts
, "mount_tag"));
3468 writeout
= qemu_opt_get(opts
, "writeout");
3470 #ifdef CONFIG_SYNC_FILE_RANGE
3471 qemu_opt_set(fsdev
, "writeout", writeout
, &error_abort
);
3473 fprintf(stderr
, "writeout=immediate not supported on "
3478 qemu_opt_set(fsdev
, "fsdriver",
3479 qemu_opt_get(opts
, "fsdriver"), &error_abort
);
3480 qemu_opt_set(fsdev
, "path", qemu_opt_get(opts
, "path"),
3482 qemu_opt_set(fsdev
, "security_model",
3483 qemu_opt_get(opts
, "security_model"),
3485 socket
= qemu_opt_get(opts
, "socket");
3487 qemu_opt_set(fsdev
, "socket", socket
, &error_abort
);
3489 sock_fd
= qemu_opt_get(opts
, "sock_fd");
3491 qemu_opt_set(fsdev
, "sock_fd", sock_fd
, &error_abort
);
3494 qemu_opt_set_bool(fsdev
, "readonly",
3495 qemu_opt_get_bool(opts
, "readonly", 0),
3497 device
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
3499 qemu_opt_set(device
, "driver", "virtio-9p-pci", &error_abort
);
3500 qemu_opt_set(device
, "fsdev",
3501 qemu_opt_get(opts
, "mount_tag"), &error_abort
);
3502 qemu_opt_set(device
, "mount_tag",
3503 qemu_opt_get(opts
, "mount_tag"), &error_abort
);
3506 case QEMU_OPTION_virtfs_synth
: {
3510 fsdev
= qemu_opts_create(qemu_find_opts("fsdev"), "v_synth",
3513 fprintf(stderr
, "duplicate option: %s\n", "virtfs_synth");
3516 qemu_opt_set(fsdev
, "fsdriver", "synth", &error_abort
);
3518 device
= qemu_opts_create(qemu_find_opts("device"), NULL
, 0,
3520 qemu_opt_set(device
, "driver", "virtio-9p-pci", &error_abort
);
3521 qemu_opt_set(device
, "fsdev", "v_synth", &error_abort
);
3522 qemu_opt_set(device
, "mount_tag", "v_synth", &error_abort
);
3525 case QEMU_OPTION_serial
:
3526 add_device_config(DEV_SERIAL
, optarg
);
3528 if (strncmp(optarg
, "mon:", 4) == 0) {
3529 default_monitor
= 0;
3532 case QEMU_OPTION_watchdog
:
3535 "qemu: only one watchdog option may be given\n");
3540 case QEMU_OPTION_watchdog_action
:
3541 if (select_watchdog_action(optarg
) == -1) {
3542 fprintf(stderr
, "Unknown -watchdog-action parameter\n");
3546 case QEMU_OPTION_virtiocon
:
3547 add_device_config(DEV_VIRTCON
, optarg
);
3548 default_virtcon
= 0;
3549 if (strncmp(optarg
, "mon:", 4) == 0) {
3550 default_monitor
= 0;
3553 case QEMU_OPTION_parallel
:
3554 add_device_config(DEV_PARALLEL
, optarg
);
3555 default_parallel
= 0;
3556 if (strncmp(optarg
, "mon:", 4) == 0) {
3557 default_monitor
= 0;
3560 case QEMU_OPTION_debugcon
:
3561 add_device_config(DEV_DEBUGCON
, optarg
);
3563 case QEMU_OPTION_loadvm
:
3566 case QEMU_OPTION_full_screen
:
3569 case QEMU_OPTION_no_frame
:
3572 case QEMU_OPTION_alt_grab
:
3575 case QEMU_OPTION_ctrl_grab
:
3578 case QEMU_OPTION_no_quit
:
3581 case QEMU_OPTION_sdl
:
3583 display_type
= DT_SDL
;
3586 fprintf(stderr
, "SDL support is disabled\n");
3589 case QEMU_OPTION_pidfile
:
3592 case QEMU_OPTION_win2k_hack
:
3593 win2k_install_hack
= 1;
3595 case QEMU_OPTION_rtc_td_hack
: {
3596 static GlobalProperty slew_lost_ticks
[] = {
3598 .driver
= "mc146818rtc",
3599 .property
= "lost_tick_policy",
3602 { /* end of list */ }
3605 qdev_prop_register_global_list(slew_lost_ticks
);
3608 case QEMU_OPTION_acpitable
:
3609 opts
= qemu_opts_parse_noisily(qemu_find_opts("acpi"),
3614 do_acpitable_option(opts
);
3616 case QEMU_OPTION_smbios
:
3617 opts
= qemu_opts_parse_noisily(qemu_find_opts("smbios"),
3622 do_smbios_option(opts
);
3624 case QEMU_OPTION_fwcfg
:
3625 opts
= qemu_opts_parse_noisily(qemu_find_opts("fw_cfg"),
3631 case QEMU_OPTION_enable_kvm
:
3632 olist
= qemu_find_opts("machine");
3633 qemu_opts_parse_noisily(olist
, "accel=kvm", false);
3636 case QEMU_OPTION_machine
:
3637 olist
= qemu_find_opts("machine");
3638 opts
= qemu_opts_parse_noisily(olist
, optarg
, true);
3643 case QEMU_OPTION_no_kvm
:
3644 olist
= qemu_find_opts("machine");
3645 qemu_opts_parse_noisily(olist
, "accel=tcg", false);
3647 case QEMU_OPTION_no_kvm_pit
: {
3648 fprintf(stderr
, "Warning: KVM PIT can no longer be disabled "
3652 case QEMU_OPTION_no_kvm_pit_reinjection
: {
3653 static GlobalProperty kvm_pit_lost_tick_policy
[] = {
3655 .driver
= "kvm-pit",
3656 .property
= "lost_tick_policy",
3659 { /* end of list */ }
3662 fprintf(stderr
, "Warning: option deprecated, use "
3663 "lost_tick_policy property of kvm-pit instead.\n");
3664 qdev_prop_register_global_list(kvm_pit_lost_tick_policy
);
3667 case QEMU_OPTION_usb
:
3668 olist
= qemu_find_opts("machine");
3669 qemu_opts_parse_noisily(olist
, "usb=on", false);
3671 case QEMU_OPTION_usbdevice
:
3672 olist
= qemu_find_opts("machine");
3673 qemu_opts_parse_noisily(olist
, "usb=on", false);
3674 add_device_config(DEV_USB
, optarg
);
3676 case QEMU_OPTION_device
:
3677 if (!qemu_opts_parse_noisily(qemu_find_opts("device"),
3682 case QEMU_OPTION_smp
:
3683 if (!qemu_opts_parse_noisily(qemu_find_opts("smp-opts"),
3688 case QEMU_OPTION_vnc
:
3691 Error
*local_err
= NULL
;
3693 if (vnc_parse(optarg
, &local_err
) == NULL
) {
3694 error_report_err(local_err
);
3698 fprintf(stderr
, "VNC support is disabled\n");
3703 case QEMU_OPTION_no_acpi
:
3706 case QEMU_OPTION_no_hpet
:
3709 case QEMU_OPTION_balloon
:
3710 if (balloon_parse(optarg
) < 0) {
3711 fprintf(stderr
, "Unknown -balloon argument %s\n", optarg
);
3715 case QEMU_OPTION_no_reboot
:
3718 case QEMU_OPTION_no_shutdown
:
3721 case QEMU_OPTION_show_cursor
:
3724 case QEMU_OPTION_uuid
:
3725 if(qemu_uuid_parse(optarg
, qemu_uuid
) < 0) {
3726 fprintf(stderr
, "Fail to parse UUID string."
3727 " Wrong format.\n");
3730 qemu_uuid_set
= true;
3732 case QEMU_OPTION_option_rom
:
3733 if (nb_option_roms
>= MAX_OPTION_ROMS
) {
3734 fprintf(stderr
, "Too many option ROMs\n");
3737 opts
= qemu_opts_parse_noisily(qemu_find_opts("option-rom"),
3742 option_rom
[nb_option_roms
].name
= qemu_opt_get(opts
, "romfile");
3743 option_rom
[nb_option_roms
].bootindex
=
3744 qemu_opt_get_number(opts
, "bootindex", -1);
3745 if (!option_rom
[nb_option_roms
].name
) {
3746 fprintf(stderr
, "Option ROM file is not specified\n");
3751 case QEMU_OPTION_semihosting
:
3752 semihosting
.enabled
= true;
3753 semihosting
.target
= SEMIHOSTING_TARGET_AUTO
;
3755 case QEMU_OPTION_semihosting_config
:
3756 semihosting
.enabled
= true;
3757 opts
= qemu_opts_parse_noisily(qemu_find_opts("semihosting-config"),
3760 semihosting
.enabled
= qemu_opt_get_bool(opts
, "enable",
3762 const char *target
= qemu_opt_get(opts
, "target");
3763 if (target
!= NULL
) {
3764 if (strcmp("native", target
) == 0) {
3765 semihosting
.target
= SEMIHOSTING_TARGET_NATIVE
;
3766 } else if (strcmp("gdb", target
) == 0) {
3767 semihosting
.target
= SEMIHOSTING_TARGET_GDB
;
3768 } else if (strcmp("auto", target
) == 0) {
3769 semihosting
.target
= SEMIHOSTING_TARGET_AUTO
;
3771 fprintf(stderr
, "Unsupported semihosting-config"
3777 semihosting
.target
= SEMIHOSTING_TARGET_AUTO
;
3779 /* Set semihosting argument count and vector */
3780 qemu_opt_foreach(opts
, add_semihosting_arg
,
3781 &semihosting
, NULL
);
3783 fprintf(stderr
, "Unsupported semihosting-config %s\n",
3788 case QEMU_OPTION_tdf
:
3789 fprintf(stderr
, "Warning: user space PIT time drift fix "
3790 "is no longer supported.\n");
3792 case QEMU_OPTION_name
:
3793 opts
= qemu_opts_parse_noisily(qemu_find_opts("name"),
3799 case QEMU_OPTION_prom_env
:
3800 if (nb_prom_envs
>= MAX_PROM_ENVS
) {
3801 fprintf(stderr
, "Too many prom variables\n");
3804 prom_envs
[nb_prom_envs
] = optarg
;
3807 case QEMU_OPTION_old_param
:
3810 case QEMU_OPTION_clock
:
3811 /* Clock options no longer exist. Keep this option for
3812 * backward compatibility.
3815 case QEMU_OPTION_startdate
:
3816 configure_rtc_date_offset(optarg
, 1);
3818 case QEMU_OPTION_rtc
:
3819 opts
= qemu_opts_parse_noisily(qemu_find_opts("rtc"), optarg
,
3824 configure_rtc(opts
);
3826 case QEMU_OPTION_tb_size
:
3827 tcg_tb_size
= strtol(optarg
, NULL
, 0);
3828 if (tcg_tb_size
< 0) {
3832 case QEMU_OPTION_icount
:
3833 icount_opts
= qemu_opts_parse_noisily(qemu_find_opts("icount"),
3839 case QEMU_OPTION_incoming
:
3841 runstate_set(RUN_STATE_INMIGRATE
);
3845 case QEMU_OPTION_nodefaults
:
3848 case QEMU_OPTION_xen_domid
:
3849 if (!(xen_available())) {
3850 printf("Option %s not supported for this target\n", popt
->name
);
3853 xen_domid
= atoi(optarg
);
3855 case QEMU_OPTION_xen_create
:
3856 if (!(xen_available())) {
3857 printf("Option %s not supported for this target\n", popt
->name
);
3860 xen_mode
= XEN_CREATE
;
3862 case QEMU_OPTION_xen_attach
:
3863 if (!(xen_available())) {
3864 printf("Option %s not supported for this target\n", popt
->name
);
3867 xen_mode
= XEN_ATTACH
;
3869 case QEMU_OPTION_trace
:
3871 opts
= qemu_opts_parse_noisily(qemu_find_opts("trace"),
3876 trace_events
= qemu_opt_get(opts
, "events");
3877 trace_file
= qemu_opt_get(opts
, "file");
3880 case QEMU_OPTION_readconfig
:
3882 int ret
= qemu_read_config_file(optarg
);
3884 fprintf(stderr
, "read config %s: %s\n", optarg
,
3890 case QEMU_OPTION_spice
:
3891 olist
= qemu_find_opts("spice");
3893 fprintf(stderr
, "spice is not supported by this qemu build.\n");
3896 opts
= qemu_opts_parse_noisily(olist
, optarg
, false);
3902 case QEMU_OPTION_writeconfig
:
3905 if (strcmp(optarg
, "-") == 0) {
3908 fp
= fopen(optarg
, "w");
3910 fprintf(stderr
, "open %s: %s\n", optarg
, strerror(errno
));
3914 qemu_config_write(fp
);
3920 case QEMU_OPTION_qtest
:
3921 qtest_chrdev
= optarg
;
3923 case QEMU_OPTION_qtest_log
:
3926 case QEMU_OPTION_sandbox
:
3927 opts
= qemu_opts_parse_noisily(qemu_find_opts("sandbox"),
3933 case QEMU_OPTION_add_fd
:
3935 opts
= qemu_opts_parse_noisily(qemu_find_opts("add-fd"),
3941 error_report("File descriptor passing is disabled on this "
3946 case QEMU_OPTION_object
:
3947 opts
= qemu_opts_parse_noisily(qemu_find_opts("object"),
3953 case QEMU_OPTION_realtime
:
3954 opts
= qemu_opts_parse_noisily(qemu_find_opts("realtime"),
3959 enable_mlock
= qemu_opt_get_bool(opts
, "mlock", true);
3961 case QEMU_OPTION_msg
:
3962 opts
= qemu_opts_parse_noisily(qemu_find_opts("msg"), optarg
,
3967 configure_msg(opts
);
3969 case QEMU_OPTION_dump_vmstate
:
3970 if (vmstate_dump_file
) {
3971 fprintf(stderr
, "qemu: only one '-dump-vmstate' "
3972 "option may be given\n");
3975 vmstate_dump_file
= fopen(optarg
, "w");
3976 if (vmstate_dump_file
== NULL
) {
3977 fprintf(stderr
, "open %s: %s\n", optarg
, strerror(errno
));
3982 os_parse_cmd_args(popt
->index
, optarg
);
3987 opts
= qemu_get_machine_opts();
3988 optarg
= qemu_opt_get(opts
, "type");
3990 machine_class
= machine_parse(optarg
);
3993 if (machine_class
== NULL
) {
3994 fprintf(stderr
, "No machine specified, and there is no default.\n"
3995 "Use -machine help to list supported machines!\n");
3999 set_memory_options(&ram_slots
, &maxram_size
, machine_class
);
4005 if (qemu_init_main_loop(&main_loop_err
)) {
4006 error_report_err(main_loop_err
);
4010 if (qemu_opts_foreach(qemu_find_opts("sandbox"),
4011 parse_sandbox
, NULL
, NULL
)) {
4015 if (qemu_opts_foreach(qemu_find_opts("name"),
4016 parse_name
, NULL
, NULL
)) {
4021 if (qemu_opts_foreach(qemu_find_opts("add-fd"),
4022 parse_add_fd
, NULL
, NULL
)) {
4026 if (qemu_opts_foreach(qemu_find_opts("add-fd"),
4027 cleanup_add_fd
, NULL
, NULL
)) {
4032 current_machine
= MACHINE(object_new(object_class_get_name(
4033 OBJECT_CLASS(machine_class
))));
4034 if (machine_help_func(qemu_get_machine_opts(), current_machine
)) {
4037 object_property_add_child(object_get_root(), "machine",
4038 OBJECT(current_machine
), &error_abort
);
4039 cpu_exec_init_all();
4041 if (machine_class
->hw_version
) {
4042 qemu_set_version(machine_class
->hw_version
);
4045 /* Init CPU def lists, based on config
4046 * - Must be called after all the qemu_read_config_file() calls
4047 * - Must be called before list_cpus()
4048 * - Must be called before machine->init()
4052 if (cpu_model
&& is_help_option(cpu_model
)) {
4053 list_cpus(stdout
, &fprintf
, cpu_model
);
4057 /* Open the logfile at this point and set the log mask if necessary.
4060 qemu_set_log_filename(log_file
);
4065 mask
= qemu_str_to_log_mask(log_mask
);
4067 qemu_print_log_usage(stdout
);
4073 if (!is_daemonized()) {
4074 if (!trace_init_backends(trace_events
, trace_file
)) {
4079 /* If no data_dir is specified then try to find it relative to the
4081 if (data_dir_idx
< ARRAY_SIZE(data_dir
)) {
4082 data_dir
[data_dir_idx
] = os_find_datadir();
4083 if (data_dir
[data_dir_idx
] != NULL
) {
4087 /* If all else fails use the install path specified when building. */
4088 if (data_dir_idx
< ARRAY_SIZE(data_dir
)) {
4089 data_dir
[data_dir_idx
++] = CONFIG_QEMU_DATADIR
;
4092 smp_parse(qemu_opts_find(qemu_find_opts("smp-opts"), NULL
));
4094 machine_class
->max_cpus
= machine_class
->max_cpus
?: 1; /* Default to UP */
4095 if (max_cpus
> machine_class
->max_cpus
) {
4096 fprintf(stderr
, "Number of SMP cpus requested (%d), exceeds max cpus "
4097 "supported by machine `%s' (%d)\n", max_cpus
,
4098 machine_class
->name
, machine_class
->max_cpus
);
4103 * Get the default machine options from the machine if it is not already
4104 * specified either by the configuration file or by the command line.
4106 if (machine_class
->default_machine_opts
) {
4107 qemu_opts_set_defaults(qemu_find_opts("machine"),
4108 machine_class
->default_machine_opts
, 0);
4111 qemu_opts_foreach(qemu_find_opts("device"),
4112 default_driver_check
, NULL
, NULL
);
4113 qemu_opts_foreach(qemu_find_opts("global"),
4114 default_driver_check
, NULL
, NULL
);
4116 if (!vga_model
&& !default_vga
) {
4117 vga_interface_type
= VGA_DEVICE
;
4119 if (!has_defaults
|| machine_class
->no_serial
) {
4122 if (!has_defaults
|| machine_class
->no_parallel
) {
4123 default_parallel
= 0;
4125 if (!has_defaults
|| !machine_class
->use_virtcon
) {
4126 default_virtcon
= 0;
4128 if (!has_defaults
|| !machine_class
->use_sclp
) {
4131 if (!has_defaults
|| machine_class
->no_floppy
) {
4134 if (!has_defaults
|| machine_class
->no_cdrom
) {
4137 if (!has_defaults
|| machine_class
->no_sdcard
) {
4140 if (!has_defaults
) {
4141 default_monitor
= 0;
4146 if (is_daemonized()) {
4147 /* According to documentation and historically, -nographic redirects
4148 * serial port, parallel port and monitor to stdio, which does not work
4149 * with -daemonize. We can redirect these to null instead, but since
4150 * -nographic is legacy, let's just error out.
4151 * We disallow -nographic only if all other ports are not redirected
4152 * explicitly, to not break existing legacy setups which uses
4153 * -nographic _and_ redirects all ports explicitly - this is valid
4154 * usage, -nographic is just a no-op in this case.
4156 if (display_type
== DT_NOGRAPHIC
4157 && (default_parallel
|| default_serial
4158 || default_monitor
|| default_virtcon
)) {
4159 fprintf(stderr
, "-nographic can not be used with -daemonize\n");
4162 #ifdef CONFIG_CURSES
4163 if (display_type
== DT_CURSES
) {
4164 fprintf(stderr
, "curses display can not be used with -daemonize\n");
4170 if (display_type
== DT_NOGRAPHIC
) {
4171 if (default_parallel
)
4172 add_device_config(DEV_PARALLEL
, "null");
4173 if (default_serial
&& default_monitor
) {
4174 add_device_config(DEV_SERIAL
, "mon:stdio");
4175 } else if (default_virtcon
&& default_monitor
) {
4176 add_device_config(DEV_VIRTCON
, "mon:stdio");
4177 } else if (default_sclp
&& default_monitor
) {
4178 add_device_config(DEV_SCLP
, "mon:stdio");
4181 add_device_config(DEV_SERIAL
, "stdio");
4182 if (default_virtcon
)
4183 add_device_config(DEV_VIRTCON
, "stdio");
4185 add_device_config(DEV_SCLP
, "stdio");
4187 if (default_monitor
)
4188 monitor_parse("stdio", "readline", false);
4192 add_device_config(DEV_SERIAL
, "vc:80Cx24C");
4193 if (default_parallel
)
4194 add_device_config(DEV_PARALLEL
, "vc:80Cx24C");
4195 if (default_monitor
)
4196 monitor_parse("vc:80Cx24C", "readline", false);
4197 if (default_virtcon
)
4198 add_device_config(DEV_VIRTCON
, "vc:80Cx24C");
4200 add_device_config(DEV_SCLP
, "vc:80Cx24C");
4204 #if defined(CONFIG_VNC)
4205 if (!QTAILQ_EMPTY(&(qemu_find_opts("vnc")->head
))) {
4209 if (display_type
== DT_DEFAULT
&& !display_remote
) {
4210 #if defined(CONFIG_GTK)
4211 display_type
= DT_GTK
;
4212 #elif defined(CONFIG_SDL) || defined(CONFIG_COCOA)
4213 display_type
= DT_SDL
;
4214 #elif defined(CONFIG_VNC)
4215 vnc_parse("localhost:0,to=99,id=default", &error_abort
);
4218 display_type
= DT_NONE
;
4222 if ((no_frame
|| alt_grab
|| ctrl_grab
) && display_type
!= DT_SDL
) {
4223 fprintf(stderr
, "-no-frame, -alt-grab and -ctrl-grab are only valid "
4224 "for SDL, ignoring option\n");
4226 if (no_quit
&& (display_type
!= DT_GTK
&& display_type
!= DT_SDL
)) {
4227 fprintf(stderr
, "-no-quit is only valid for GTK and SDL, "
4228 "ignoring option\n");
4231 #if defined(CONFIG_GTK)
4232 if (display_type
== DT_GTK
) {
4233 early_gtk_display_init(request_opengl
);
4236 #if defined(CONFIG_SDL)
4237 if (display_type
== DT_SDL
) {
4238 sdl_display_early_init(request_opengl
);
4241 if (request_opengl
== 1 && display_opengl
== 0) {
4242 #if defined(CONFIG_OPENGL)
4243 fprintf(stderr
, "OpenGL is not supported by the display.\n");
4245 fprintf(stderr
, "QEMU was built without opengl support.\n");
4252 if (qemu_opts_foreach(qemu_find_opts("object"),
4254 object_create_initial
, NULL
)) {
4258 if (qemu_opts_foreach(qemu_find_opts("chardev"),
4259 chardev_init_func
, NULL
, NULL
)) {
4263 #ifdef CONFIG_VIRTFS
4264 if (qemu_opts_foreach(qemu_find_opts("fsdev"),
4265 fsdev_init_func
, NULL
, NULL
)) {
4270 if (pid_file
&& qemu_create_pidfile(pid_file
) != 0) {
4271 fprintf(stderr
, "Could not acquire pid file: %s\n", strerror(errno
));
4275 if (qemu_opts_foreach(qemu_find_opts("device"),
4276 device_help_func
, NULL
, NULL
)) {
4280 if (qemu_opts_foreach(qemu_find_opts("object"),
4282 object_create_delayed
, NULL
)) {
4286 machine_opts
= qemu_get_machine_opts();
4287 if (qemu_opt_foreach(machine_opts
, machine_set_property
, current_machine
,
4289 object_unref(OBJECT(current_machine
));
4293 configure_accelerator(current_machine
);
4296 Error
*local_err
= NULL
;
4297 qtest_init(qtest_chrdev
, qtest_log
, &local_err
);
4299 error_report_err(local_err
);
4304 machine_opts
= qemu_get_machine_opts();
4305 kernel_filename
= qemu_opt_get(machine_opts
, "kernel");
4306 initrd_filename
= qemu_opt_get(machine_opts
, "initrd");
4307 kernel_cmdline
= qemu_opt_get(machine_opts
, "append");
4308 bios_name
= qemu_opt_get(machine_opts
, "firmware");
4310 opts
= qemu_opts_find(qemu_find_opts("boot-opts"), NULL
);
4312 Error
*local_err
= NULL
;
4314 boot_order
= qemu_opt_get(opts
, "order");
4316 validate_bootdevices(boot_order
, &local_err
);
4318 error_report_err(local_err
);
4323 boot_once
= qemu_opt_get(opts
, "once");
4325 validate_bootdevices(boot_once
, &local_err
);
4327 error_report_err(local_err
);
4332 boot_menu
= qemu_opt_get_bool(opts
, "menu", boot_menu
);
4333 boot_strict
= qemu_opt_get_bool(opts
, "strict", false);
4337 boot_order
= machine_class
->default_boot_order
;
4340 if (!kernel_cmdline
) {
4341 kernel_cmdline
= "";
4342 current_machine
->kernel_cmdline
= (char *)kernel_cmdline
;
4345 linux_boot
= (kernel_filename
!= NULL
);
4347 if (!linux_boot
&& *kernel_cmdline
!= '\0') {
4348 fprintf(stderr
, "-append only allowed with -kernel option\n");
4352 if (!linux_boot
&& initrd_filename
!= NULL
) {
4353 fprintf(stderr
, "-initrd only allowed with -kernel option\n");
4357 if (!linux_boot
&& qemu_opt_get(machine_opts
, "dtb")) {
4358 fprintf(stderr
, "-dtb only allowed with -kernel option\n");
4362 if (semihosting_enabled() && !semihosting_get_argc() && kernel_filename
) {
4363 /* fall back to the -kernel/-append */
4364 semihosting_arg_fallback(kernel_filename
, kernel_cmdline
);
4367 os_set_line_buffering();
4370 /* spice needs the timers to be initialized by this point */
4376 if (kvm_enabled() || xen_enabled()) {
4377 fprintf(stderr
, "-icount is not allowed with kvm or xen\n");
4380 configure_icount(icount_opts
, &error_abort
);
4381 qemu_opts_del(icount_opts
);
4384 /* clean up network at qemu process termination */
4385 atexit(&net_cleanup
);
4387 if (net_init_clients() < 0) {
4392 if (tpm_init() < 0) {
4397 /* init the bluetooth world */
4398 if (foreach_device_config(DEV_BT
, bt_parse
))
4401 if (!xen_enabled()) {
4402 /* On 32-bit hosts, QEMU is limited by virtual address space */
4403 if (ram_size
> (2047 << 20) && HOST_LONG_BITS
== 32) {
4404 fprintf(stderr
, "qemu: at most 2047 MB RAM can be simulated\n");
4412 /* If the currently selected machine wishes to override the units-per-bus
4413 * property of its default HBA interface type, do so now. */
4414 if (machine_class
->units_per_default_bus
) {
4415 override_max_devs(machine_class
->block_default_type
,
4416 machine_class
->units_per_default_bus
);
4419 /* open the virtual block devices */
4421 qemu_opts_foreach(qemu_find_opts("drive"),
4422 drive_enable_snapshot
, NULL
, NULL
);
4423 if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func
,
4424 &machine_class
->block_default_type
, NULL
)) {
4428 default_drive(default_cdrom
, snapshot
, machine_class
->block_default_type
, 2,
4430 default_drive(default_floppy
, snapshot
, IF_FLOPPY
, 0, FD_OPTS
);
4431 default_drive(default_sdcard
, snapshot
, IF_SD
, 0, SD_OPTS
);
4433 parse_numa_opts(machine_class
);
4435 if (qemu_opts_foreach(qemu_find_opts("mon"),
4436 mon_init_func
, NULL
, NULL
)) {
4440 if (foreach_device_config(DEV_SERIAL
, serial_parse
) < 0)
4442 if (foreach_device_config(DEV_PARALLEL
, parallel_parse
) < 0)
4444 if (foreach_device_config(DEV_VIRTCON
, virtcon_parse
) < 0)
4446 if (foreach_device_config(DEV_SCLP
, sclp_parse
) < 0) {
4449 if (foreach_device_config(DEV_DEBUGCON
, debugcon_parse
) < 0)
4452 /* If no default VGA is requested, the default is "none". */
4454 if (machine_class
->default_display
) {
4455 vga_model
= machine_class
->default_display
;
4456 } else if (cirrus_vga_available()) {
4457 vga_model
= "cirrus";
4458 } else if (vga_available()) {
4463 select_vgahw(vga_model
);
4467 i
= select_watchdog(watchdog
);
4469 exit (i
== 1 ? 1 : 0);
4472 if (machine_class
->compat_props
) {
4473 qdev_prop_register_global_list(machine_class
->compat_props
);
4477 qdev_machine_init();
4479 current_machine
->ram_size
= ram_size
;
4480 current_machine
->maxram_size
= maxram_size
;
4481 current_machine
->ram_slots
= ram_slots
;
4482 current_machine
->boot_order
= boot_order
;
4483 current_machine
->cpu_model
= cpu_model
;
4485 machine_class
->init(current_machine
);
4491 cpu_synchronize_all_post_init();
4493 numa_post_machine_init();
4495 if (qemu_opts_foreach(qemu_find_opts("fw_cfg"),
4496 parse_fw_cfg
, fw_cfg_find(), NULL
) != 0) {
4500 /* init USB devices */
4501 if (usb_enabled()) {
4502 if (foreach_device_config(DEV_USB
, usb_parse
) < 0)
4506 /* init generic devices */
4507 if (qemu_opts_foreach(qemu_find_opts("device"),
4508 device_init_func
, NULL
, NULL
)) {
4512 /* Did we create any drives that we failed to create a device for? */
4513 drive_check_orphaned();
4515 net_check_clients();
4518 Error
*local_err
= NULL
;
4519 qemu_boot_set(boot_once
, &local_err
);
4521 error_report("%s", error_get_pretty(local_err
));
4524 qemu_register_reset(restore_boot_order
, g_strdup(boot_order
));
4527 ds
= init_displaystate();
4529 /* init local displays */
4530 switch (display_type
) {
4532 (void)ds
; /* avoid warning if no display is configured */
4534 #if defined(CONFIG_CURSES)
4536 curses_display_init(ds
, full_screen
);
4539 #if defined(CONFIG_SDL)
4541 sdl_display_init(ds
, full_screen
, no_frame
);
4543 #elif defined(CONFIG_COCOA)
4545 cocoa_display_init(ds
, full_screen
);
4548 #if defined(CONFIG_GTK)
4550 gtk_display_init(ds
, full_screen
, grab_on_hover
);
4557 /* must be after terminal init, SDL library changes signal handlers */
4558 os_setup_signal_handling();
4561 /* init remote displays */
4562 qemu_opts_foreach(qemu_find_opts("vnc"),
4563 vnc_init_func
, NULL
, NULL
);
4564 if (show_vnc_port
) {
4565 char *ret
= vnc_display_local_addr("default");
4566 printf("VNC server running on `%s'\n", ret
);
4572 qemu_spice_display_init();
4576 if (foreach_device_config(DEV_GDB
, gdbserver_start
) < 0) {
4580 qdev_machine_creation_done();
4582 if (rom_load_all() != 0) {
4583 fprintf(stderr
, "rom loading failed\n");
4587 /* TODO: once all bus devices are qdevified, this should be done
4588 * when bus is created by qdev.c */
4589 qemu_register_reset(qbus_reset_all_fn
, sysbus_get_default());
4590 qemu_run_machine_init_done_notifiers();
4592 /* Done notifiers can load ROMs */
4595 qemu_system_reset(VMRESET_SILENT
);
4597 if (load_vmstate(loadvm
) < 0) {
4602 qdev_prop_check_globals();
4603 if (vmstate_dump_file
) {
4605 dump_vmstate_json_to_file(vmstate_dump_file
);
4610 Error
*local_err
= NULL
;
4611 qemu_start_incoming_migration(incoming
, &local_err
);
4613 error_report("-incoming %s: %s", incoming
,
4614 error_get_pretty(local_err
));
4615 error_free(local_err
);
4618 } else if (autostart
) {
4624 if (is_daemonized()) {
4625 if (!trace_init_backends(trace_events
, trace_file
)) {