stacktrace.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /*
  2. * Copyright (C) 1991, 1992 Linus Torvalds
  3. * Copyright (C) 2000, 2001, 2002 Andi Kleen, SuSE Labs
  4. */
  5. #ifndef _ASM_X86_STACKTRACE_H
  6. #define _ASM_X86_STACKTRACE_H
  7. #include <linux/uaccess.h>
  8. #include <linux/ptrace.h>
  9. #include <asm/switch_to.h>
  10. enum stack_type {
  11. STACK_TYPE_UNKNOWN,
  12. STACK_TYPE_TASK,
  13. STACK_TYPE_IRQ,
  14. STACK_TYPE_SOFTIRQ,
  15. STACK_TYPE_EXCEPTION,
  16. STACK_TYPE_EXCEPTION_LAST = STACK_TYPE_EXCEPTION + N_EXCEPTION_STACKS-1,
  17. };
  18. struct stack_info {
  19. enum stack_type type;
  20. unsigned long *begin, *end, *next_sp;
  21. };
  22. bool in_task_stack(unsigned long *stack, struct task_struct *task,
  23. struct stack_info *info);
  24. int get_stack_info(unsigned long *stack, struct task_struct *task,
  25. struct stack_info *info, unsigned long *visit_mask);
  26. void stack_type_str(enum stack_type type, const char **begin,
  27. const char **end);
  28. static inline bool on_stack(struct stack_info *info, void *addr, size_t len)
  29. {
  30. void *begin = info->begin;
  31. void *end = info->end;
  32. return (info->type != STACK_TYPE_UNKNOWN &&
  33. addr >= begin && addr < end &&
  34. addr + len > begin && addr + len <= end);
  35. }
  36. extern int kstack_depth_to_print;
  37. #ifdef CONFIG_X86_32
  38. #define STACKSLOTS_PER_LINE 8
  39. #else
  40. #define STACKSLOTS_PER_LINE 4
  41. #endif
  42. #ifdef CONFIG_FRAME_POINTER
  43. static inline unsigned long *
  44. get_frame_pointer(struct task_struct *task, struct pt_regs *regs)
  45. {
  46. if (regs)
  47. return (unsigned long *)regs->bp;
  48. if (task == current)
  49. return __builtin_frame_address(0);
  50. return (unsigned long *)((struct inactive_task_frame *)task->thread.sp)->bp;
  51. }
  52. #else
  53. static inline unsigned long *
  54. get_frame_pointer(struct task_struct *task, struct pt_regs *regs)
  55. {
  56. return NULL;
  57. }
  58. #endif /* CONFIG_FRAME_POINTER */
  59. static inline unsigned long *
  60. get_stack_pointer(struct task_struct *task, struct pt_regs *regs)
  61. {
  62. if (regs)
  63. return (unsigned long *)kernel_stack_pointer(regs);
  64. if (task == current)
  65. return __builtin_frame_address(0);
  66. return (unsigned long *)task->thread.sp;
  67. }
  68. void show_trace_log_lvl(struct task_struct *task, struct pt_regs *regs,
  69. unsigned long *stack, char *log_lvl);
  70. void show_stack_log_lvl(struct task_struct *task, struct pt_regs *regs,
  71. unsigned long *sp, char *log_lvl);
  72. extern unsigned int code_bytes;
  73. /* The form of the top of the frame on the stack */
  74. struct stack_frame {
  75. struct stack_frame *next_frame;
  76. unsigned long return_address;
  77. };
  78. struct stack_frame_ia32 {
  79. u32 next_frame;
  80. u32 return_address;
  81. };
  82. static inline unsigned long caller_frame_pointer(void)
  83. {
  84. struct stack_frame *frame;
  85. frame = __builtin_frame_address(0);
  86. #ifdef CONFIG_FRAME_POINTER
  87. frame = frame->next_frame;
  88. #endif
  89. return (unsigned long)frame;
  90. }
  91. #endif /* _ASM_X86_STACKTRACE_H */