unwind_guess.c 1.6 KB

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