unwind_guess.c 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. #include <linux/sched.h>
  3. #include <linux/ftrace.h>
  4. #include <asm/ptrace.h>
  5. #include <asm/bitops.h>
  6. #include <asm/stacktrace.h>
  7. #include <asm/unwind.h>
  8. unsigned long unwind_get_return_address(struct unwind_state *state)
  9. {
  10. unsigned long addr;
  11. if (unwind_done(state))
  12. return 0;
  13. addr = READ_ONCE_NOCHECK(*state->sp);
  14. return unwind_recover_ret_addr(state, addr, state->sp);
  15. }
  16. EXPORT_SYMBOL_GPL(unwind_get_return_address);
  17. unsigned long *unwind_get_return_address_ptr(struct unwind_state *state)
  18. {
  19. return NULL;
  20. }
  21. bool unwind_next_frame(struct unwind_state *state)
  22. {
  23. struct stack_info *info = &state->stack_info;
  24. if (unwind_done(state))
  25. return false;
  26. do {
  27. for (state->sp++; state->sp < info->end; state->sp++) {
  28. unsigned long addr = READ_ONCE_NOCHECK(*state->sp);
  29. if (__kernel_text_address(addr))
  30. return true;
  31. }
  32. state->sp = PTR_ALIGN(info->next_sp, sizeof(long));
  33. } while (!get_stack_info(state->sp, state->task, info,
  34. &state->stack_mask));
  35. return false;
  36. }
  37. EXPORT_SYMBOL_GPL(unwind_next_frame);
  38. void __unwind_start(struct unwind_state *state, struct task_struct *task,
  39. struct pt_regs *regs, unsigned long *first_frame)
  40. {
  41. memset(state, 0, sizeof(*state));
  42. state->task = task;
  43. state->sp = PTR_ALIGN(first_frame, sizeof(long));
  44. get_stack_info(first_frame, state->task, &state->stack_info,
  45. &state->stack_mask);
  46. /*
  47. * The caller can provide the address of the first frame directly
  48. * (first_frame) or indirectly (regs->sp) to indicate which stack frame
  49. * to start unwinding at. Skip ahead until we reach it.
  50. */
  51. if (!unwind_done(state) &&
  52. (!on_stack(&state->stack_info, first_frame, sizeof(long)) ||
  53. !__kernel_text_address(*first_frame)))
  54. unwind_next_frame(state);
  55. }
  56. EXPORT_SYMBOL_GPL(__unwind_start);