fatal.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /*
  2. * Copyright (c) 2019 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /** @file
  7. * @brief Fatal error functions
  8. */
  9. #ifndef ZEPHYR_INCLUDE_FATAL_H
  10. #define ZEPHYR_INCLUDE_FATAL_H
  11. #include <arch/cpu.h>
  12. #include <toolchain.h>
  13. /**
  14. * @defgroup fatal_apis Fatal error APIs
  15. * @ingroup kernel_apis
  16. * @{
  17. */
  18. enum k_fatal_error_reason {
  19. /** Generic CPU exception, not covered by other codes */
  20. K_ERR_CPU_EXCEPTION,
  21. /** Unhandled hardware interrupt */
  22. K_ERR_SPURIOUS_IRQ,
  23. /** Faulting context overflowed its stack buffer */
  24. K_ERR_STACK_CHK_FAIL,
  25. /** Moderate severity software error */
  26. K_ERR_KERNEL_OOPS,
  27. /** High severity software error */
  28. K_ERR_KERNEL_PANIC
  29. /* TODO: add more codes for exception types that are common across
  30. * architectures
  31. */
  32. };
  33. /**
  34. * @brief Halt the system on a fatal error
  35. *
  36. * Invokes architecture-specific code to power off or halt the system in
  37. * a low power state. Lacking that, lock interrupts and sit in an idle loop.
  38. *
  39. * @param reason Fatal exception reason code
  40. */
  41. FUNC_NORETURN void k_fatal_halt(unsigned int reason);
  42. /**
  43. * @brief Fatal error policy handler
  44. *
  45. * This function is not invoked by application code, but is declared as a
  46. * weak symbol so that applications may introduce their own policy.
  47. *
  48. * The default implementation of this function halts the system
  49. * unconditionally. Depending on architecture support, this may be
  50. * a simple infinite loop, power off the hardware, or exit an emulator.
  51. *
  52. * If this function returns, then the currently executing thread will be
  53. * aborted.
  54. *
  55. * A few notes for custom implementations:
  56. *
  57. * - If the error is determined to be unrecoverable, LOG_PANIC() should be
  58. * invoked to flush any pending logging buffers.
  59. * - K_ERR_KERNEL_PANIC indicates a severe unrecoverable error in the kernel
  60. * itself, and should not be considered recoverable. There is an assertion
  61. * in z_fatal_error() to enforce this.
  62. * - Even outside of a kernel panic, unless the fault occurred in user mode,
  63. * the kernel itself may be in an inconsistent state, with API calls to
  64. * kernel objects possibly exhibiting undefined behavior or triggering
  65. * another exception.
  66. *
  67. * @param reason The reason for the fatal error
  68. * @param esf Exception context, with details and partial or full register
  69. * state when the error occurred. May in some cases be NULL.
  70. */
  71. void k_sys_fatal_error_handler(unsigned int reason, const z_arch_esf_t *esf);
  72. /**
  73. * Called by architecture code upon a fatal error.
  74. *
  75. * This function dumps out architecture-agnostic information about the error
  76. * and then makes a policy decision on what to do by invoking
  77. * k_sys_fatal_error_handler().
  78. *
  79. * On architectures where k_thread_abort() never returns, this function
  80. * never returns either.
  81. *
  82. * @param reason The reason for the fatal error
  83. * @param esf Exception context, with details and partial or full register
  84. * state when the error occurred. May in some cases be NULL.
  85. */
  86. void z_fatal_error(unsigned int reason, const z_arch_esf_t *esf);
  87. /** @} */
  88. #endif /* ZEPHYR_INCLUDE_FATAL_H */