exc_handle.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * Copyright (c) 2018 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_EXC_HANDLE_H_
  7. #define ZEPHYR_INCLUDE_EXC_HANDLE_H_
  8. /*
  9. * This is used by some architectures to define code ranges which may
  10. * perform operations that could generate a CPU exception that should not
  11. * be fatal. Instead, the exception should return but set the program
  12. * counter to a 'fixup' memory address which will gracefully error out.
  13. *
  14. * For example, in the case where user mode passes in a C string via
  15. * system call, the length of that string needs to be measured. A specially
  16. * written assembly language version of strlen (arch_user_string_len)
  17. * defines start and end symbols where the memory in the string is examined;
  18. * if this generates a fault, jumping to the fixup symbol within the same
  19. * function will return an error result to the caller.
  20. *
  21. * To ensure precise control of the state of registers and the stack pointer,
  22. * these functions need to be written in assembly.
  23. *
  24. * The arch-specific fault handling code will define an array of these
  25. * z_exc_handle structures and return from the exception with the PC updated
  26. * to the fixup address if a match is found.
  27. */
  28. struct z_exc_handle {
  29. void *start;
  30. void *end;
  31. void *fixup;
  32. };
  33. #define Z_EXC_HANDLE(name) \
  34. { name ## _fault_start, name ## _fault_end, name ## _fixup }
  35. #define Z_EXC_DECLARE(name) \
  36. void name ## _fault_start(void); \
  37. void name ## _fault_end(void); \
  38. void name ## _fixup(void)
  39. #endif /* ZEPHYR_INCLUDE_EXC_HANDLE_H_ */