1 /* 2 * QEMU main system emulation loop 3 * 4 * Copyright (c) 2003-2020 QEMU contributors 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a copy 7 * of this software and associated documentation files (the "Software"), to deal 8 * in the Software without restriction, including without limitation the rights 9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 * copies of the Software, and to permit persons to whom the Software is 11 * furnished to do so, subject to the following conditions: 12 * 13 * The above copyright notice and this permission notice shall be included in 14 * all copies or substantial portions of the Software. 15 * 16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 * THE SOFTWARE. 23 */ 24 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" 38 #include "net/net.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" 45 #include "qemu/job.h" 46 #include "qemu/log.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" 61 #include "trace.h" 62 63 static NotifierList exit_notifiers = 64 NOTIFIER_LIST_INITIALIZER(exit_notifiers); 65 66 static RunState current_run_state = RUN_STATE_PRELAUNCH; 67 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; 71 72 typedef struct { 73 RunState from; 74 RunState to; 75 } RunStateTransition; 76 77 static const RunStateTransition runstate_transitions_def[] = { 78 { RUN_STATE_PRELAUNCH, RUN_STATE_INMIGRATE }, 79 { RUN_STATE_PRELAUNCH, RUN_STATE_SUSPENDED }, 80 81 { RUN_STATE_DEBUG, RUN_STATE_RUNNING }, 82 { RUN_STATE_DEBUG, RUN_STATE_FINISH_MIGRATE }, 83 { RUN_STATE_DEBUG, RUN_STATE_PRELAUNCH }, 84 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 }, 97 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 }, 101 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 }, 105 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}, 112 113 { RUN_STATE_POSTMIGRATE, RUN_STATE_RUNNING }, 114 { RUN_STATE_POSTMIGRATE, RUN_STATE_FINISH_MIGRATE }, 115 { RUN_STATE_POSTMIGRATE, RUN_STATE_PRELAUNCH }, 116 117 { RUN_STATE_PRELAUNCH, RUN_STATE_RUNNING }, 118 { RUN_STATE_PRELAUNCH, RUN_STATE_FINISH_MIGRATE }, 119 { RUN_STATE_PRELAUNCH, RUN_STATE_INMIGRATE }, 120 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 }, 132 133 { RUN_STATE_RESTORE_VM, RUN_STATE_RUNNING }, 134 { RUN_STATE_RESTORE_VM, RUN_STATE_PRELAUNCH }, 135 { RUN_STATE_RESTORE_VM, RUN_STATE_SUSPENDED }, 136 137 { RUN_STATE_COLO, RUN_STATE_RUNNING }, 138 { RUN_STATE_COLO, RUN_STATE_PRELAUNCH }, 139 { RUN_STATE_COLO, RUN_STATE_SHUTDOWN}, 140 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}, 152 153 { RUN_STATE_SAVE_VM, RUN_STATE_RUNNING }, 154 { RUN_STATE_SAVE_VM, RUN_STATE_SUSPENDED }, 155 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 }, 160 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 }, 171 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}, 176 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 }, 180 181 { RUN_STATE__MAX, RUN_STATE__MAX }, 182 }; 183 184 static bool runstate_valid_transitions[RUN_STATE__MAX][RUN_STATE__MAX]; 185 186 bool runstate_check(RunState state) 187 { 188 return current_run_state == state; 189 } 190 191 static void runstate_init(void) 192 { 193 const RunStateTransition *p; 194 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; 198 } 199 200 qemu_mutex_init(&vmstop_lock); 201 } 202 203 /* This function will abort() on invalid state transitions */ 204 void runstate_set(RunState new_state) 205 { 206 assert(new_state < RUN_STATE__MAX); 207 208 trace_runstate_set(current_run_state, RunState_str(current_run_state), 209 new_state, RunState_str(new_state)); 210 211 if (current_run_state == new_state) { 212 return; 213 } 214 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)); 219 abort(); 220 } 221 222 current_run_state = new_state; 223 } 224 225 RunState runstate_get(void) 226 { 227 return current_run_state; 228 } 229 230 bool runstate_is_running(void) 231 { 232 return runstate_check(RUN_STATE_RUNNING); 233 } 234 235 bool runstate_needs_reset(void) 236 { 237 return runstate_check(RUN_STATE_INTERNAL_ERROR) || 238 runstate_check(RUN_STATE_SHUTDOWN); 239 } 240 241 StatusInfo *qmp_query_status(Error **errp) 242 { 243 StatusInfo *info = g_malloc0(sizeof(*info)); 244 245 info->running = runstate_is_running(); 246 info->status = current_run_state; 247 248 return info; 249 } 250 251 bool qemu_vmstop_requested(RunState *r) 252 { 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; 258 } 259 260 void qemu_system_vmstop_request_prepare(void) 261 { 262 qemu_mutex_lock(&vmstop_lock); 263 } 264 265 void qemu_system_vmstop_request(RunState state) 266 { 267 vmstop_requested = state; 268 qemu_mutex_unlock(&vmstop_lock); 269 qemu_notify_event(); 270 } 271 struct VMChangeStateEntry { 272 VMChangeStateHandler *cb; 273 VMChangeStateHandler *prepare_cb; 274 void *opaque; 275 QTAILQ_ENTRY(VMChangeStateEntry) entries; 276 int priority; 277 }; 278 279 static QTAILQ_HEAD(, VMChangeStateEntry) vm_change_state_head = 280 QTAILQ_HEAD_INITIALIZER(vm_change_state_head); 281 282 /** 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 288 * 289 * Register a callback function that is invoked when the vm starts or stops 290 * running. 291 * 292 * Returns: an entry to be freed using qemu_del_vm_change_state_handler() 293 */ 294 VMChangeStateEntry *qemu_add_vm_change_state_handler_prio( 295 VMChangeStateHandler *cb, void *opaque, int priority) 296 { 297 return qemu_add_vm_change_state_handler_prio_full(cb, NULL, opaque, 298 priority); 299 } 300 301 /** 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 308 * 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. 315 * 316 * Returns: an entry to be freed using qemu_del_vm_change_state_handler() 317 */ 318 VMChangeStateEntry * 319 qemu_add_vm_change_state_handler_prio_full(VMChangeStateHandler *cb, 320 VMChangeStateHandler *prepare_cb, 321 void *opaque, int priority) 322 { 323 VMChangeStateEntry *e; 324 VMChangeStateEntry *other; 325 326 e = g_malloc0(sizeof(*e)); 327 e->cb = cb; 328 e->prepare_cb = prepare_cb; 329 e->opaque = opaque; 330 e->priority = priority; 331 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); 336 return e; 337 } 338 } 339 340 QTAILQ_INSERT_TAIL(&vm_change_state_head, e, entries); 341 return e; 342 } 343 344 VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb, 345 void *opaque) 346 { 347 return qemu_add_vm_change_state_handler_prio(cb, opaque, 0); 348 } 349 350 void qemu_del_vm_change_state_handler(VMChangeStateEntry *e) 351 { 352 QTAILQ_REMOVE(&vm_change_state_head, e, entries); 353 g_free(e); 354 } 355 356 void vm_state_notify(bool running, RunState state) 357 { 358 VMChangeStateEntry *e, *next; 359 360 trace_vm_state_notify(running, state, RunState_str(state)); 361 362 if (running) { 363 QTAILQ_FOREACH_SAFE(e, &vm_change_state_head, entries, next) { 364 if (e->prepare_cb) { 365 e->prepare_cb(e->opaque, running, state); 366 } 367 } 368 369 QTAILQ_FOREACH_SAFE(e, &vm_change_state_head, entries, next) { 370 e->cb(e->opaque, running, state); 371 } 372 } else { 373 QTAILQ_FOREACH_REVERSE_SAFE(e, &vm_change_state_head, entries, next) { 374 if (e->prepare_cb) { 375 e->prepare_cb(e->opaque, running, state); 376 } 377 } 378 379 QTAILQ_FOREACH_REVERSE_SAFE(e, &vm_change_state_head, entries, next) { 380 e->cb(e->opaque, running, state); 381 } 382 } 383 } 384 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); 403 404 ShutdownCause qemu_shutdown_requested_get(void) 405 { 406 return shutdown_requested; 407 } 408 409 ShutdownCause qemu_reset_requested_get(void) 410 { 411 return reset_requested; 412 } 413 414 static int qemu_shutdown_requested(void) 415 { 416 return qatomic_xchg(&shutdown_requested, SHUTDOWN_CAUSE_NONE); 417 } 418 419 static void qemu_kill_report(void) 420 { 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. 425 */ 426 error_report("terminating on signal %d", shutdown_signal); 427 } else { 428 char *shutdown_cmd = qemu_get_pid_name(shutdown_pid); 429 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); 434 } 435 shutdown_signal = 0; 436 } 437 } 438 439 static ShutdownCause qemu_reset_requested(void) 440 { 441 ShutdownCause r = reset_requested; 442 443 if (r && replay_checkpoint(CHECKPOINT_RESET_REQUESTED)) { 444 reset_requested = SHUTDOWN_CAUSE_NONE; 445 return r; 446 } 447 return SHUTDOWN_CAUSE_NONE; 448 } 449 450 static int qemu_suspend_requested(void) 451 { 452 int r = suspend_requested; 453 if (r && replay_checkpoint(CHECKPOINT_SUSPEND_REQUESTED)) { 454 suspend_requested = 0; 455 return r; 456 } 457 return false; 458 } 459 460 static WakeupReason qemu_wakeup_requested(void) 461 { 462 return wakeup_reason; 463 } 464 465 static int qemu_powerdown_requested(void) 466 { 467 int r = powerdown_requested; 468 powerdown_requested = 0; 469 return r; 470 } 471 472 static int qemu_debug_requested(void) 473 { 474 int r = debug_requested; 475 debug_requested = 0; 476 return r; 477 } 478 479 /* 480 * Reset the VM. Issue an event unless @reason is SHUTDOWN_CAUSE_NONE. 481 */ 482 void qemu_system_reset(ShutdownCause reason) 483 { 484 MachineClass *mc; 485 486 mc = current_machine ? MACHINE_GET_CLASS(current_machine) : NULL; 487 488 cpu_synchronize_all_states(); 489 490 if (mc && mc->reset) { 491 mc->reset(current_machine, reason); 492 } else { 493 qemu_devices_reset(reason); 494 } 495 switch (reason) { 496 case SHUTDOWN_CAUSE_NONE: 497 case SHUTDOWN_CAUSE_SUBSYSTEM_RESET: 498 case SHUTDOWN_CAUSE_SNAPSHOT_LOAD: 499 break; 500 default: 501 qapi_event_send_reset(shutdown_caused_by_guest(reason), reason); 502 } 503 504 /* 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(). 510 */ 511 if (cpus_are_resettable()) { 512 cpu_synchronize_all_post_reset(); 513 } else { 514 assert(runstate_check(RUN_STATE_PRELAUNCH)); 515 } 516 517 vm_set_suspended(false); 518 } 519 520 /* 521 * Wake the VM after suspend. 522 */ 523 static void qemu_system_wakeup(void) 524 { 525 MachineClass *mc; 526 527 mc = current_machine ? MACHINE_GET_CLASS(current_machine) : NULL; 528 529 if (mc && mc->wakeup) { 530 mc->wakeup(current_machine); 531 } 532 } 533 534 void qemu_system_guest_panicked(GuestPanicInformation *info) 535 { 536 qemu_log_mask(LOG_GUEST_ERROR, "Guest crashed"); 537 538 if (current_cpu) { 539 current_cpu->crash_occurred = true; 540 } 541 /* 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. 545 */ 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); 555 } else { 556 qapi_event_send_guest_panicked(GUEST_PANIC_ACTION_RUN, info); 557 } 558 559 if (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", 571 info->u.s390.core, 572 S390CrashReason_str(info->u.s390.reason), 573 info->u.s390.psw_mask, 574 info->u.s390.psw_addr); 575 } 576 qapi_free_GuestPanicInformation(info); 577 } 578 } 579 580 void qemu_system_guest_crashloaded(GuestPanicInformation *info) 581 { 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); 585 } 586 587 void qemu_system_guest_pvshutdown(void) 588 { 589 qemu_system_shutdown_request(SHUTDOWN_CAUSE_GUEST_SHUTDOWN); 590 } 591 592 void qemu_system_reset_request(ShutdownCause reason) 593 { 594 if (reboot_action == REBOOT_ACTION_SHUTDOWN && 595 reason != SHUTDOWN_CAUSE_SUBSYSTEM_RESET) { 596 shutdown_requested = reason; 597 } else if (!cpus_are_resettable()) { 598 error_report("cpus are not resettable, terminating"); 599 shutdown_requested = reason; 600 } else { 601 reset_requested = reason; 602 } 603 cpu_stop_current(); 604 qemu_notify_event(); 605 } 606 607 static void qemu_system_suspend(void) 608 { 609 pause_all_vcpus(); 610 notifier_list_notify(&suspend_notifiers, NULL); 611 runstate_set(RUN_STATE_SUSPENDED); 612 qapi_event_send_suspend(); 613 } 614 615 void qemu_system_suspend_request(void) 616 { 617 if (runstate_check(RUN_STATE_SUSPENDED)) { 618 return; 619 } 620 suspend_requested = 1; 621 cpu_stop_current(); 622 qemu_notify_event(); 623 } 624 625 void qemu_register_suspend_notifier(Notifier *notifier) 626 { 627 notifier_list_add(&suspend_notifiers, notifier); 628 } 629 630 void qemu_system_wakeup_request(WakeupReason reason, Error **errp) 631 { 632 trace_system_wakeup_request(reason); 633 634 if (!runstate_check(RUN_STATE_SUSPENDED)) { 635 error_setg(errp, 636 "Unable to wake up: guest is not in suspended state"); 637 return; 638 } 639 if (!(wakeup_reason_mask & (1 << reason))) { 640 return; 641 } 642 runstate_set(RUN_STATE_RUNNING); 643 wakeup_reason = reason; 644 qemu_notify_event(); 645 } 646 647 void qemu_system_wakeup_enable(WakeupReason reason, bool enabled) 648 { 649 if (enabled) { 650 wakeup_reason_mask |= (1 << reason); 651 } else { 652 wakeup_reason_mask &= ~(1 << reason); 653 } 654 } 655 656 void qemu_register_wakeup_notifier(Notifier *notifier) 657 { 658 notifier_list_add(&wakeup_notifiers, notifier); 659 } 660 661 static bool wakeup_suspend_enabled; 662 663 void qemu_register_wakeup_support(void) 664 { 665 wakeup_suspend_enabled = true; 666 } 667 668 bool qemu_wakeup_suspend_enabled(void) 669 { 670 return wakeup_suspend_enabled; 671 } 672 673 void qemu_system_killed(int signal, pid_t pid) 674 { 675 shutdown_signal = signal; 676 shutdown_pid = pid; 677 shutdown_action = SHUTDOWN_ACTION_POWEROFF; 678 679 /* Cannot call qemu_system_shutdown_request directly because 680 * we are in a signal handler. 681 */ 682 shutdown_requested = SHUTDOWN_CAUSE_HOST_SIGNAL; 683 qemu_notify_event(); 684 } 685 686 void qemu_system_shutdown_request_with_code(ShutdownCause reason, 687 int exit_code) 688 { 689 shutdown_exit_code = exit_code; 690 qemu_system_shutdown_request(reason); 691 } 692 693 void qemu_system_shutdown_request(ShutdownCause reason) 694 { 695 trace_qemu_system_shutdown_request(reason); 696 replay_shutdown_request(reason); 697 shutdown_requested = reason; 698 qemu_notify_event(); 699 } 700 701 static void qemu_system_powerdown(void) 702 { 703 qapi_event_send_powerdown(); 704 notifier_list_notify(&powerdown_notifiers, NULL); 705 } 706 707 static void qemu_system_shutdown(ShutdownCause cause) 708 { 709 qapi_event_send_shutdown(shutdown_caused_by_guest(cause), cause); 710 notifier_list_notify(&shutdown_notifiers, &cause); 711 } 712 713 void qemu_system_powerdown_request(void) 714 { 715 trace_qemu_system_powerdown_request(); 716 powerdown_requested = 1; 717 qemu_notify_event(); 718 } 719 720 void qemu_register_powerdown_notifier(Notifier *notifier) 721 { 722 notifier_list_add(&powerdown_notifiers, notifier); 723 } 724 725 void qemu_register_shutdown_notifier(Notifier *notifier) 726 { 727 notifier_list_add(&shutdown_notifiers, notifier); 728 } 729 730 void qemu_system_debug_request(void) 731 { 732 debug_requested = 1; 733 qemu_notify_event(); 734 } 735 736 static bool main_loop_should_exit(int *status) 737 { 738 RunState r; 739 ShutdownCause request; 740 741 if (qemu_debug_requested()) { 742 vm_stop(RUN_STATE_DEBUG); 743 } 744 if (qemu_suspend_requested()) { 745 qemu_system_suspend(); 746 } 747 request = qemu_shutdown_requested(); 748 if (request) { 749 qemu_kill_report(); 750 qemu_system_shutdown(request); 751 if (shutdown_action == SHUTDOWN_ACTION_PAUSE) { 752 vm_stop(RUN_STATE_SHUTDOWN); 753 } else { 754 if (shutdown_exit_code != EXIT_SUCCESS) { 755 *status = shutdown_exit_code; 756 } else if (request == SHUTDOWN_CAUSE_GUEST_PANIC && 757 panic_action == PANIC_ACTION_EXIT_FAILURE) { 758 *status = EXIT_FAILURE; 759 } 760 return true; 761 } 762 } 763 request = qemu_reset_requested(); 764 if (request) { 765 pause_all_vcpus(); 766 qemu_system_reset(request); 767 resume_all_vcpus(); 768 /* 769 * runstate can change in pause_all_vcpus() 770 * as iothread mutex is unlocked 771 */ 772 if (!runstate_check(RUN_STATE_RUNNING) && 773 !runstate_check(RUN_STATE_INMIGRATE) && 774 !runstate_check(RUN_STATE_FINISH_MIGRATE)) { 775 runstate_set(RUN_STATE_PRELAUNCH); 776 } 777 } 778 if (qemu_wakeup_requested()) { 779 pause_all_vcpus(); 780 qemu_system_wakeup(); 781 notifier_list_notify(&wakeup_notifiers, &wakeup_reason); 782 wakeup_reason = QEMU_WAKEUP_REASON_NONE; 783 resume_all_vcpus(); 784 qapi_event_send_wakeup(); 785 } 786 if (qemu_powerdown_requested()) { 787 qemu_system_powerdown(); 788 } 789 if (qemu_vmstop_requested(&r)) { 790 vm_stop(r); 791 } 792 return false; 793 } 794 795 int qemu_main_loop(void) 796 { 797 int status = EXIT_SUCCESS; 798 799 while (!main_loop_should_exit(&status)) { 800 main_loop_wait(false); 801 } 802 803 return status; 804 } 805 806 void qemu_add_exit_notifier(Notifier *notify) 807 { 808 notifier_list_add(&exit_notifiers, notify); 809 } 810 811 void qemu_remove_exit_notifier(Notifier *notify) 812 { 813 notifier_remove(notify); 814 } 815 816 static void qemu_run_exit_notifiers(void) 817 { 818 notifier_list_notify(&exit_notifiers, NULL); 819 } 820 821 void qemu_init_subsystems(void) 822 { 823 Error *err = NULL; 824 825 os_set_line_buffering(); 826 827 module_call_init(MODULE_INIT_TRACE); 828 829 qemu_init_cpu_list(); 830 qemu_init_cpu_loop(); 831 bql_lock(); 832 833 atexit(qemu_run_exit_notifiers); 834 835 module_call_init(MODULE_INIT_QOM); 836 module_call_init(MODULE_INIT_MIGRATION); 837 838 runstate_init(); 839 precopy_infrastructure_init(); 840 postcopy_infrastructure_init(); 841 monitor_init_globals(); 842 843 if (qcrypto_init(&err) < 0) { 844 error_reportf_err(err, "cannot initialize crypto: "); 845 exit(1); 846 } 847 848 os_setup_early_signal_handling(); 849 850 bdrv_init_with_whitelist(); 851 socket_init(); 852 } 853 854 855 void qemu_cleanup(int status) 856 { 857 gdb_exit(status); 858 859 /* 860 * cleaning up the migration object cancels any existing migration 861 * try to do this early so that it also stops using devices. 862 */ 863 migration_shutdown(); 864 865 /* 866 * Close the exports before draining the block layer. The export 867 * drivers may have coroutines yielding on it, so we need to clean 868 * them up before the drain, as otherwise they may be get stuck in 869 * blk_wait_while_drained(). 870 */ 871 blk_exp_close_all(); 872 873 874 /* No more vcpu or device emulation activity beyond this point */ 875 vm_shutdown(); 876 replay_finish(); 877 878 /* 879 * We must cancel all block jobs while the block layer is drained, 880 * or cancelling will be affected by throttling and thus may block 881 * for an extended period of time. 882 * Begin the drained section after vm_shutdown() to avoid requests being 883 * stuck in the BlockBackend's request queue. 884 * We do not need to end this section, because we do not want any 885 * requests happening from here on anyway. 886 */ 887 bdrv_drain_all_begin(); 888 job_cancel_sync_all(); 889 bdrv_close_all(); 890 891 /* vhost-user must be cleaned up before chardevs. */ 892 tpm_cleanup(); 893 net_cleanup(); 894 audio_cleanup(); 895 monitor_cleanup(); 896 qemu_chr_cleanup(); 897 user_creatable_cleanup(); 898 /* TODO: unref root container, check all devices are ok */ 899 } 900