2 * QEMU main system emulation loop
4 * Copyright (c) 2003-2020 QEMU contributors
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
25 #include "qemu/osdep.h"
26 #include "audio/audio.h"
27 #include "block/block.h"
28 #include "block/export.h"
29 #include "chardev/char.h"
30 #include "crypto/cipher.h"
31 #include "crypto/init.h"
32 #include "exec/cpu-common.h"
33 #include "gdbstub/syscalls.h"
34 #include "hw/boards.h"
35 #include "migration/misc.h"
36 #include "migration/postcopy-ram.h"
37 #include "monitor/monitor.h"
39 #include "net/vhost_net.h"
40 #include "qapi/error.h"
41 #include "qapi/qapi-commands-run-state.h"
42 #include "qapi/qapi-events-run-state.h"
43 #include "qemu/accel.h"
44 #include "qemu/error-report.h"
47 #include "qemu/module.h"
48 #include "qemu/sockets.h"
49 #include "qemu/timer.h"
50 #include "qemu/thread.h"
51 #include "qom/object.h"
52 #include "qom/object_interfaces.h"
53 #include "sysemu/cpus.h"
54 #include "sysemu/qtest.h"
55 #include "sysemu/replay.h"
56 #include "sysemu/reset.h"
57 #include "sysemu/runstate.h"
58 #include "sysemu/runstate-action.h"
59 #include "sysemu/sysemu.h"
60 #include "sysemu/tpm.h"
63 static NotifierList exit_notifiers
=
64 NOTIFIER_LIST_INITIALIZER(exit_notifiers
);
66 static RunState current_run_state
= RUN_STATE_PRELAUNCH
;
68 /* We use RUN_STATE__MAX but any invalid value will do */
69 static RunState vmstop_requested
= RUN_STATE__MAX
;
70 static QemuMutex vmstop_lock
;
77 static const RunStateTransition runstate_transitions_def
[] = {
78 { RUN_STATE_PRELAUNCH
, RUN_STATE_INMIGRATE
},
79 { RUN_STATE_PRELAUNCH
, RUN_STATE_SUSPENDED
},
81 { RUN_STATE_DEBUG
, RUN_STATE_RUNNING
},
82 { RUN_STATE_DEBUG
, RUN_STATE_FINISH_MIGRATE
},
83 { RUN_STATE_DEBUG
, RUN_STATE_PRELAUNCH
},
85 { RUN_STATE_INMIGRATE
, RUN_STATE_INTERNAL_ERROR
},
86 { RUN_STATE_INMIGRATE
, RUN_STATE_IO_ERROR
},
87 { RUN_STATE_INMIGRATE
, RUN_STATE_PAUSED
},
88 { RUN_STATE_INMIGRATE
, RUN_STATE_RUNNING
},
89 { RUN_STATE_INMIGRATE
, RUN_STATE_SHUTDOWN
},
90 { RUN_STATE_INMIGRATE
, RUN_STATE_SUSPENDED
},
91 { RUN_STATE_INMIGRATE
, RUN_STATE_WATCHDOG
},
92 { RUN_STATE_INMIGRATE
, RUN_STATE_GUEST_PANICKED
},
93 { RUN_STATE_INMIGRATE
, RUN_STATE_FINISH_MIGRATE
},
94 { RUN_STATE_INMIGRATE
, RUN_STATE_PRELAUNCH
},
95 { RUN_STATE_INMIGRATE
, RUN_STATE_POSTMIGRATE
},
96 { RUN_STATE_INMIGRATE
, RUN_STATE_COLO
},
98 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_PAUSED
},
99 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_FINISH_MIGRATE
},
100 { RUN_STATE_INTERNAL_ERROR
, RUN_STATE_PRELAUNCH
},
102 { RUN_STATE_IO_ERROR
, RUN_STATE_RUNNING
},
103 { RUN_STATE_IO_ERROR
, RUN_STATE_FINISH_MIGRATE
},
104 { RUN_STATE_IO_ERROR
, RUN_STATE_PRELAUNCH
},
106 { RUN_STATE_PAUSED
, RUN_STATE_RUNNING
},
107 { RUN_STATE_PAUSED
, RUN_STATE_FINISH_MIGRATE
},
108 { RUN_STATE_PAUSED
, RUN_STATE_POSTMIGRATE
},
109 { RUN_STATE_PAUSED
, RUN_STATE_PRELAUNCH
},
110 { RUN_STATE_PAUSED
, RUN_STATE_COLO
},
111 { RUN_STATE_PAUSED
, RUN_STATE_SUSPENDED
},
113 { RUN_STATE_POSTMIGRATE
, RUN_STATE_RUNNING
},
114 { RUN_STATE_POSTMIGRATE
, RUN_STATE_FINISH_MIGRATE
},
115 { RUN_STATE_POSTMIGRATE
, RUN_STATE_PRELAUNCH
},
117 { RUN_STATE_PRELAUNCH
, RUN_STATE_RUNNING
},
118 { RUN_STATE_PRELAUNCH
, RUN_STATE_FINISH_MIGRATE
},
119 { RUN_STATE_PRELAUNCH
, RUN_STATE_INMIGRATE
},
121 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_RUNNING
},
122 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_PAUSED
},
123 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_POSTMIGRATE
},
124 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_PRELAUNCH
},
125 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_COLO
},
126 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_INTERNAL_ERROR
},
127 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_IO_ERROR
},
128 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_SHUTDOWN
},
129 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_SUSPENDED
},
130 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_WATCHDOG
},
131 { RUN_STATE_FINISH_MIGRATE
, RUN_STATE_GUEST_PANICKED
},
133 { RUN_STATE_RESTORE_VM
, RUN_STATE_RUNNING
},
134 { RUN_STATE_RESTORE_VM
, RUN_STATE_PRELAUNCH
},
135 { RUN_STATE_RESTORE_VM
, RUN_STATE_SUSPENDED
},
137 { RUN_STATE_COLO
, RUN_STATE_RUNNING
},
138 { RUN_STATE_COLO
, RUN_STATE_PRELAUNCH
},
139 { RUN_STATE_COLO
, RUN_STATE_SHUTDOWN
},
141 { RUN_STATE_RUNNING
, RUN_STATE_DEBUG
},
142 { RUN_STATE_RUNNING
, RUN_STATE_INTERNAL_ERROR
},
143 { RUN_STATE_RUNNING
, RUN_STATE_IO_ERROR
},
144 { RUN_STATE_RUNNING
, RUN_STATE_PAUSED
},
145 { RUN_STATE_RUNNING
, RUN_STATE_FINISH_MIGRATE
},
146 { RUN_STATE_RUNNING
, RUN_STATE_RESTORE_VM
},
147 { RUN_STATE_RUNNING
, RUN_STATE_SAVE_VM
},
148 { RUN_STATE_RUNNING
, RUN_STATE_SHUTDOWN
},
149 { RUN_STATE_RUNNING
, RUN_STATE_WATCHDOG
},
150 { RUN_STATE_RUNNING
, RUN_STATE_GUEST_PANICKED
},
151 { RUN_STATE_RUNNING
, RUN_STATE_COLO
},
153 { RUN_STATE_SAVE_VM
, RUN_STATE_RUNNING
},
154 { RUN_STATE_SAVE_VM
, RUN_STATE_SUSPENDED
},
156 { RUN_STATE_SHUTDOWN
, RUN_STATE_PAUSED
},
157 { RUN_STATE_SHUTDOWN
, RUN_STATE_FINISH_MIGRATE
},
158 { RUN_STATE_SHUTDOWN
, RUN_STATE_PRELAUNCH
},
159 { RUN_STATE_SHUTDOWN
, RUN_STATE_COLO
},
161 { RUN_STATE_DEBUG
, RUN_STATE_SUSPENDED
},
162 { RUN_STATE_RUNNING
, RUN_STATE_SUSPENDED
},
163 { RUN_STATE_SUSPENDED
, RUN_STATE_RUNNING
},
164 { RUN_STATE_SUSPENDED
, RUN_STATE_FINISH_MIGRATE
},
165 { RUN_STATE_SUSPENDED
, RUN_STATE_PRELAUNCH
},
166 { RUN_STATE_SUSPENDED
, RUN_STATE_COLO
},
167 { RUN_STATE_SUSPENDED
, RUN_STATE_PAUSED
},
168 { RUN_STATE_SUSPENDED
, RUN_STATE_SAVE_VM
},
169 { RUN_STATE_SUSPENDED
, RUN_STATE_RESTORE_VM
},
170 { RUN_STATE_SUSPENDED
, RUN_STATE_SHUTDOWN
},
172 { RUN_STATE_WATCHDOG
, RUN_STATE_RUNNING
},
173 { RUN_STATE_WATCHDOG
, RUN_STATE_FINISH_MIGRATE
},
174 { RUN_STATE_WATCHDOG
, RUN_STATE_PRELAUNCH
},
175 { RUN_STATE_WATCHDOG
, RUN_STATE_COLO
},
177 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_RUNNING
},
178 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_FINISH_MIGRATE
},
179 { RUN_STATE_GUEST_PANICKED
, RUN_STATE_PRELAUNCH
},
181 { RUN_STATE__MAX
, RUN_STATE__MAX
},
184 static bool runstate_valid_transitions
[RUN_STATE__MAX
][RUN_STATE__MAX
];
186 bool runstate_check(RunState state
)
188 return current_run_state
== state
;
191 static void runstate_init(void)
193 const RunStateTransition
*p
;
195 memset(&runstate_valid_transitions
, 0, sizeof(runstate_valid_transitions
));
196 for (p
= &runstate_transitions_def
[0]; p
->from
!= RUN_STATE__MAX
; p
++) {
197 runstate_valid_transitions
[p
->from
][p
->to
] = true;
200 qemu_mutex_init(&vmstop_lock
);
203 /* This function will abort() on invalid state transitions */
204 void runstate_set(RunState new_state
)
206 assert(new_state
< RUN_STATE__MAX
);
208 trace_runstate_set(current_run_state
, RunState_str(current_run_state
),
209 new_state
, RunState_str(new_state
));
211 if (current_run_state
== new_state
) {
215 if (!runstate_valid_transitions
[current_run_state
][new_state
]) {
216 error_report("invalid runstate transition: '%s' -> '%s'",
217 RunState_str(current_run_state
),
218 RunState_str(new_state
));
222 current_run_state
= new_state
;
225 RunState
runstate_get(void)
227 return current_run_state
;
230 bool runstate_is_running(void)
232 return runstate_check(RUN_STATE_RUNNING
);
235 bool runstate_needs_reset(void)
237 return runstate_check(RUN_STATE_INTERNAL_ERROR
) ||
238 runstate_check(RUN_STATE_SHUTDOWN
);
241 StatusInfo
*qmp_query_status(Error
**errp
)
243 StatusInfo
*info
= g_malloc0(sizeof(*info
));
245 info
->running
= runstate_is_running();
246 info
->status
= current_run_state
;
251 bool qemu_vmstop_requested(RunState
*r
)
253 qemu_mutex_lock(&vmstop_lock
);
254 *r
= vmstop_requested
;
255 vmstop_requested
= RUN_STATE__MAX
;
256 qemu_mutex_unlock(&vmstop_lock
);
257 return *r
< RUN_STATE__MAX
;
260 void qemu_system_vmstop_request_prepare(void)
262 qemu_mutex_lock(&vmstop_lock
);
265 void qemu_system_vmstop_request(RunState state
)
267 vmstop_requested
= state
;
268 qemu_mutex_unlock(&vmstop_lock
);
271 struct VMChangeStateEntry
{
272 VMChangeStateHandler
*cb
;
273 VMChangeStateHandler
*prepare_cb
;
275 QTAILQ_ENTRY(VMChangeStateEntry
) entries
;
279 static QTAILQ_HEAD(, VMChangeStateEntry
) vm_change_state_head
=
280 QTAILQ_HEAD_INITIALIZER(vm_change_state_head
);
283 * qemu_add_vm_change_state_handler_prio:
284 * @cb: the callback to invoke
285 * @opaque: user data passed to the callback
286 * @priority: low priorities execute first when the vm runs and the reverse is
287 * true when the vm stops
289 * Register a callback function that is invoked when the vm starts or stops
292 * Returns: an entry to be freed using qemu_del_vm_change_state_handler()
294 VMChangeStateEntry
*qemu_add_vm_change_state_handler_prio(
295 VMChangeStateHandler
*cb
, void *opaque
, int priority
)
297 return qemu_add_vm_change_state_handler_prio_full(cb
, NULL
, opaque
,
302 * qemu_add_vm_change_state_handler_prio_full:
303 * @cb: the main callback to invoke
304 * @prepare_cb: a callback to invoke before the main callback
305 * @opaque: user data passed to the callbacks
306 * @priority: low priorities execute first when the vm runs and the reverse is
307 * true when the vm stops
309 * Register a main callback function and an optional prepare callback function
310 * that are invoked when the vm starts or stops running. The main callback and
311 * the prepare callback are called in two separate phases: First all prepare
312 * callbacks are called and only then all main callbacks are called. As its
313 * name suggests, the prepare callback can be used to do some preparatory work
314 * before invoking the main callback.
316 * Returns: an entry to be freed using qemu_del_vm_change_state_handler()
319 qemu_add_vm_change_state_handler_prio_full(VMChangeStateHandler
*cb
,
320 VMChangeStateHandler
*prepare_cb
,
321 void *opaque
, int priority
)
323 VMChangeStateEntry
*e
;
324 VMChangeStateEntry
*other
;
326 e
= g_malloc0(sizeof(*e
));
328 e
->prepare_cb
= prepare_cb
;
330 e
->priority
= priority
;
332 /* Keep list sorted in ascending priority order */
333 QTAILQ_FOREACH(other
, &vm_change_state_head
, entries
) {
334 if (priority
< other
->priority
) {
335 QTAILQ_INSERT_BEFORE(other
, e
, entries
);
340 QTAILQ_INSERT_TAIL(&vm_change_state_head
, e
, entries
);
344 VMChangeStateEntry
*qemu_add_vm_change_state_handler(VMChangeStateHandler
*cb
,
347 return qemu_add_vm_change_state_handler_prio(cb
, opaque
, 0);
350 void qemu_del_vm_change_state_handler(VMChangeStateEntry
*e
)
352 QTAILQ_REMOVE(&vm_change_state_head
, e
, entries
);
356 void vm_state_notify(bool running
, RunState state
)
358 VMChangeStateEntry
*e
, *next
;
360 trace_vm_state_notify(running
, state
, RunState_str(state
));
363 QTAILQ_FOREACH_SAFE(e
, &vm_change_state_head
, entries
, next
) {
365 e
->prepare_cb(e
->opaque
, running
, state
);
369 QTAILQ_FOREACH_SAFE(e
, &vm_change_state_head
, entries
, next
) {
370 e
->cb(e
->opaque
, running
, state
);
373 QTAILQ_FOREACH_REVERSE_SAFE(e
, &vm_change_state_head
, entries
, next
) {
375 e
->prepare_cb(e
->opaque
, running
, state
);
379 QTAILQ_FOREACH_REVERSE_SAFE(e
, &vm_change_state_head
, entries
, next
) {
380 e
->cb(e
->opaque
, running
, state
);
385 static ShutdownCause reset_requested
;
386 static ShutdownCause shutdown_requested
;
387 static int shutdown_exit_code
= EXIT_SUCCESS
;
388 static int shutdown_signal
;
389 static pid_t shutdown_pid
;
390 static int powerdown_requested
;
391 static int debug_requested
;
392 static int suspend_requested
;
393 static WakeupReason wakeup_reason
;
394 static NotifierList powerdown_notifiers
=
395 NOTIFIER_LIST_INITIALIZER(powerdown_notifiers
);
396 static NotifierList suspend_notifiers
=
397 NOTIFIER_LIST_INITIALIZER(suspend_notifiers
);
398 static NotifierList wakeup_notifiers
=
399 NOTIFIER_LIST_INITIALIZER(wakeup_notifiers
);
400 static NotifierList shutdown_notifiers
=
401 NOTIFIER_LIST_INITIALIZER(shutdown_notifiers
);
402 static uint32_t wakeup_reason_mask
= ~(1 << QEMU_WAKEUP_REASON_NONE
);
404 ShutdownCause
qemu_shutdown_requested_get(void)
406 return shutdown_requested
;
409 ShutdownCause
qemu_reset_requested_get(void)
411 return reset_requested
;
414 static int qemu_shutdown_requested(void)
416 return qatomic_xchg(&shutdown_requested
, SHUTDOWN_CAUSE_NONE
);
419 static void qemu_kill_report(void)
421 if (!qtest_driver() && shutdown_signal
) {
422 if (shutdown_pid
== 0) {
423 /* This happens for eg ^C at the terminal, so it's worth
424 * avoiding printing an odd message in that case.
426 error_report("terminating on signal %d", shutdown_signal
);
428 char *shutdown_cmd
= qemu_get_pid_name(shutdown_pid
);
430 error_report("terminating on signal %d from pid " FMT_pid
" (%s)",
431 shutdown_signal
, shutdown_pid
,
432 shutdown_cmd
? shutdown_cmd
: "<unknown process>");
433 g_free(shutdown_cmd
);
439 static ShutdownCause
qemu_reset_requested(void)
441 ShutdownCause r
= reset_requested
;
443 if (r
&& replay_checkpoint(CHECKPOINT_RESET_REQUESTED
)) {
444 reset_requested
= SHUTDOWN_CAUSE_NONE
;
447 return SHUTDOWN_CAUSE_NONE
;
450 static int qemu_suspend_requested(void)
452 int r
= suspend_requested
;
453 if (r
&& replay_checkpoint(CHECKPOINT_SUSPEND_REQUESTED
)) {
454 suspend_requested
= 0;
460 static WakeupReason
qemu_wakeup_requested(void)
462 return wakeup_reason
;
465 static int qemu_powerdown_requested(void)
467 int r
= powerdown_requested
;
468 powerdown_requested
= 0;
472 static int qemu_debug_requested(void)
474 int r
= debug_requested
;
480 * Reset the VM. Issue an event unless @reason is SHUTDOWN_CAUSE_NONE.
482 void qemu_system_reset(ShutdownCause reason
)
486 mc
= current_machine
? MACHINE_GET_CLASS(current_machine
) : NULL
;
488 cpu_synchronize_all_states();
490 if (mc
&& mc
->reset
) {
491 mc
->reset(current_machine
, reason
);
493 qemu_devices_reset(reason
);
496 case SHUTDOWN_CAUSE_NONE
:
497 case SHUTDOWN_CAUSE_SUBSYSTEM_RESET
:
498 case SHUTDOWN_CAUSE_SNAPSHOT_LOAD
:
501 qapi_event_send_reset(shutdown_caused_by_guest(reason
), reason
);
505 * Some boards use the machine reset callback to point CPUs to the firmware
506 * entry point. Assume that this is not the case for boards that support
507 * non-resettable CPUs (currently used only for confidential guests), in
508 * which case cpu_synchronize_all_post_init() is enough because
509 * it does _more_ than cpu_synchronize_all_post_reset().
511 if (cpus_are_resettable()) {
512 cpu_synchronize_all_post_reset();
514 assert(runstate_check(RUN_STATE_PRELAUNCH
));
517 vm_set_suspended(false);
521 * Wake the VM after suspend.
523 static void qemu_system_wakeup(void)
527 mc
= current_machine
? MACHINE_GET_CLASS(current_machine
) : NULL
;
529 if (mc
&& mc
->wakeup
) {
530 mc
->wakeup(current_machine
);
534 void qemu_system_guest_panicked(GuestPanicInformation
*info
)
536 qemu_log_mask(LOG_GUEST_ERROR
, "Guest crashed");
539 current_cpu
->crash_occurred
= true;
542 * TODO: Currently the available panic actions are: none, pause, and
543 * shutdown, but in principle debug and reset could be supported as well.
544 * Investigate any potential use cases for the unimplemented actions.
546 if (panic_action
== PANIC_ACTION_PAUSE
547 || (panic_action
== PANIC_ACTION_SHUTDOWN
&& shutdown_action
== SHUTDOWN_ACTION_PAUSE
)) {
548 qapi_event_send_guest_panicked(GUEST_PANIC_ACTION_PAUSE
, info
);
549 vm_stop(RUN_STATE_GUEST_PANICKED
);
550 } else if (panic_action
== PANIC_ACTION_SHUTDOWN
||
551 panic_action
== PANIC_ACTION_EXIT_FAILURE
) {
552 qapi_event_send_guest_panicked(GUEST_PANIC_ACTION_POWEROFF
, info
);
553 vm_stop(RUN_STATE_GUEST_PANICKED
);
554 qemu_system_shutdown_request(SHUTDOWN_CAUSE_GUEST_PANIC
);
556 qapi_event_send_guest_panicked(GUEST_PANIC_ACTION_RUN
, info
);
560 if (info
->type
== GUEST_PANIC_INFORMATION_TYPE_HYPER_V
) {
561 qemu_log_mask(LOG_GUEST_ERROR
, "\nHV crash parameters: (%#"PRIx64
562 " %#"PRIx64
" %#"PRIx64
" %#"PRIx64
" %#"PRIx64
")\n",
563 info
->u
.hyper_v
.arg1
,
564 info
->u
.hyper_v
.arg2
,
565 info
->u
.hyper_v
.arg3
,
566 info
->u
.hyper_v
.arg4
,
567 info
->u
.hyper_v
.arg5
);
568 } else if (info
->type
== GUEST_PANIC_INFORMATION_TYPE_S390
) {
569 qemu_log_mask(LOG_GUEST_ERROR
, " on cpu %d: %s\n"
570 "PSW: 0x%016" PRIx64
" 0x%016" PRIx64
"\n",
572 S390CrashReason_str(info
->u
.s390
.reason
),
573 info
->u
.s390
.psw_mask
,
574 info
->u
.s390
.psw_addr
);
576 qapi_free_GuestPanicInformation(info
);
580 void qemu_system_guest_crashloaded(GuestPanicInformation
*info
)
582 qemu_log_mask(LOG_GUEST_ERROR
, "Guest crash loaded");
583 qapi_event_send_guest_crashloaded(GUEST_PANIC_ACTION_RUN
, info
);
584 qapi_free_GuestPanicInformation(info
);
587 void qemu_system_reset_request(ShutdownCause reason
)
589 if (reboot_action
== REBOOT_ACTION_SHUTDOWN
&&
590 reason
!= SHUTDOWN_CAUSE_SUBSYSTEM_RESET
) {
591 shutdown_requested
= reason
;
592 } else if (!cpus_are_resettable()) {
593 error_report("cpus are not resettable, terminating");
594 shutdown_requested
= reason
;
596 reset_requested
= reason
;
602 static void qemu_system_suspend(void)
605 notifier_list_notify(&suspend_notifiers
, NULL
);
606 runstate_set(RUN_STATE_SUSPENDED
);
607 qapi_event_send_suspend();
610 void qemu_system_suspend_request(void)
612 if (runstate_check(RUN_STATE_SUSPENDED
)) {
615 suspend_requested
= 1;
620 void qemu_register_suspend_notifier(Notifier
*notifier
)
622 notifier_list_add(&suspend_notifiers
, notifier
);
625 void qemu_system_wakeup_request(WakeupReason reason
, Error
**errp
)
627 trace_system_wakeup_request(reason
);
629 if (!runstate_check(RUN_STATE_SUSPENDED
)) {
631 "Unable to wake up: guest is not in suspended state");
634 if (!(wakeup_reason_mask
& (1 << reason
))) {
637 runstate_set(RUN_STATE_RUNNING
);
638 wakeup_reason
= reason
;
642 void qemu_system_wakeup_enable(WakeupReason reason
, bool enabled
)
645 wakeup_reason_mask
|= (1 << reason
);
647 wakeup_reason_mask
&= ~(1 << reason
);
651 void qemu_register_wakeup_notifier(Notifier
*notifier
)
653 notifier_list_add(&wakeup_notifiers
, notifier
);
656 static bool wakeup_suspend_enabled
;
658 void qemu_register_wakeup_support(void)
660 wakeup_suspend_enabled
= true;
663 bool qemu_wakeup_suspend_enabled(void)
665 return wakeup_suspend_enabled
;
668 void qemu_system_killed(int signal
, pid_t pid
)
670 shutdown_signal
= signal
;
672 shutdown_action
= SHUTDOWN_ACTION_POWEROFF
;
674 /* Cannot call qemu_system_shutdown_request directly because
675 * we are in a signal handler.
677 shutdown_requested
= SHUTDOWN_CAUSE_HOST_SIGNAL
;
681 void qemu_system_shutdown_request_with_code(ShutdownCause reason
,
684 shutdown_exit_code
= exit_code
;
685 qemu_system_shutdown_request(reason
);
688 void qemu_system_shutdown_request(ShutdownCause reason
)
690 trace_qemu_system_shutdown_request(reason
);
691 replay_shutdown_request(reason
);
692 shutdown_requested
= reason
;
696 static void qemu_system_powerdown(void)
698 qapi_event_send_powerdown();
699 notifier_list_notify(&powerdown_notifiers
, NULL
);
702 static void qemu_system_shutdown(ShutdownCause cause
)
704 qapi_event_send_shutdown(shutdown_caused_by_guest(cause
), cause
);
705 notifier_list_notify(&shutdown_notifiers
, &cause
);
708 void qemu_system_powerdown_request(void)
710 trace_qemu_system_powerdown_request();
711 powerdown_requested
= 1;
715 void qemu_register_powerdown_notifier(Notifier
*notifier
)
717 notifier_list_add(&powerdown_notifiers
, notifier
);
720 void qemu_register_shutdown_notifier(Notifier
*notifier
)
722 notifier_list_add(&shutdown_notifiers
, notifier
);
725 void qemu_system_debug_request(void)
731 static bool main_loop_should_exit(int *status
)
734 ShutdownCause request
;
736 if (qemu_debug_requested()) {
737 vm_stop(RUN_STATE_DEBUG
);
739 if (qemu_suspend_requested()) {
740 qemu_system_suspend();
742 request
= qemu_shutdown_requested();
745 qemu_system_shutdown(request
);
746 if (shutdown_action
== SHUTDOWN_ACTION_PAUSE
) {
747 vm_stop(RUN_STATE_SHUTDOWN
);
749 if (shutdown_exit_code
!= EXIT_SUCCESS
) {
750 *status
= shutdown_exit_code
;
751 } else if (request
== SHUTDOWN_CAUSE_GUEST_PANIC
&&
752 panic_action
== PANIC_ACTION_EXIT_FAILURE
) {
753 *status
= EXIT_FAILURE
;
758 request
= qemu_reset_requested();
761 qemu_system_reset(request
);
764 * runstate can change in pause_all_vcpus()
765 * as iothread mutex is unlocked
767 if (!runstate_check(RUN_STATE_RUNNING
) &&
768 !runstate_check(RUN_STATE_INMIGRATE
) &&
769 !runstate_check(RUN_STATE_FINISH_MIGRATE
)) {
770 runstate_set(RUN_STATE_PRELAUNCH
);
773 if (qemu_wakeup_requested()) {
775 qemu_system_wakeup();
776 notifier_list_notify(&wakeup_notifiers
, &wakeup_reason
);
777 wakeup_reason
= QEMU_WAKEUP_REASON_NONE
;
779 qapi_event_send_wakeup();
781 if (qemu_powerdown_requested()) {
782 qemu_system_powerdown();
784 if (qemu_vmstop_requested(&r
)) {
790 int qemu_main_loop(void)
792 int status
= EXIT_SUCCESS
;
794 while (!main_loop_should_exit(&status
)) {
795 main_loop_wait(false);
801 void qemu_add_exit_notifier(Notifier
*notify
)
803 notifier_list_add(&exit_notifiers
, notify
);
806 void qemu_remove_exit_notifier(Notifier
*notify
)
808 notifier_remove(notify
);
811 static void qemu_run_exit_notifiers(void)
813 notifier_list_notify(&exit_notifiers
, NULL
);
816 void qemu_init_subsystems(void)
820 os_set_line_buffering();
822 module_call_init(MODULE_INIT_TRACE
);
824 qemu_init_cpu_list();
825 qemu_init_cpu_loop();
828 atexit(qemu_run_exit_notifiers
);
830 module_call_init(MODULE_INIT_QOM
);
831 module_call_init(MODULE_INIT_MIGRATION
);
834 precopy_infrastructure_init();
835 postcopy_infrastructure_init();
836 monitor_init_globals();
838 if (qcrypto_init(&err
) < 0) {
839 error_reportf_err(err
, "cannot initialize crypto: ");
843 os_setup_early_signal_handling();
845 bdrv_init_with_whitelist();
850 void qemu_cleanup(int status
)
855 * cleaning up the migration object cancels any existing migration
856 * try to do this early so that it also stops using devices.
858 migration_shutdown();
861 * Close the exports before draining the block layer. The export
862 * drivers may have coroutines yielding on it, so we need to clean
863 * them up before the drain, as otherwise they may be get stuck in
864 * blk_wait_while_drained().
869 /* No more vcpu or device emulation activity beyond this point */
874 * We must cancel all block jobs while the block layer is drained,
875 * or cancelling will be affected by throttling and thus may block
876 * for an extended period of time.
877 * Begin the drained section after vm_shutdown() to avoid requests being
878 * stuck in the BlockBackend's request queue.
879 * We do not need to end this section, because we do not want any
880 * requests happening from here on anyway.
882 bdrv_drain_all_begin();
883 job_cancel_sync_all();
886 /* vhost-user must be cleaned up before chardevs. */
892 user_creatable_cleanup();
893 /* TODO: unref root container, check all devices are ok */