stacktrace.c 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * Stack trace management functions
  3. *
  4. * Copyright (C) 2009 Helge Deller <deller@gmx.de>
  5. * based on arch/x86/kernel/stacktrace.c by Ingo Molnar <mingo@redhat.com>
  6. * and parisc unwind functions by Randolph Chung <tausq@debian.org>
  7. *
  8. * TODO: Userspace stacktrace (CONFIG_USER_STACKTRACE_SUPPORT)
  9. */
  10. #include <linux/module.h>
  11. #include <linux/stacktrace.h>
  12. #include <asm/unwind.h>
  13. static void dump_trace(struct task_struct *task, struct stack_trace *trace)
  14. {
  15. struct unwind_frame_info info;
  16. unwind_frame_init_task(&info, task, NULL);
  17. /* unwind stack and save entries in stack_trace struct */
  18. trace->nr_entries = 0;
  19. while (trace->nr_entries < trace->max_entries) {
  20. if (unwind_once(&info) < 0 || info.ip == 0)
  21. break;
  22. if (__kernel_text_address(info.ip))
  23. trace->entries[trace->nr_entries++] = info.ip;
  24. }
  25. }
  26. /*
  27. * Save stack-backtrace addresses into a stack_trace buffer.
  28. */
  29. void save_stack_trace(struct stack_trace *trace)
  30. {
  31. dump_trace(current, trace);
  32. if (trace->nr_entries < trace->max_entries)
  33. trace->entries[trace->nr_entries++] = ULONG_MAX;
  34. }
  35. EXPORT_SYMBOL_GPL(save_stack_trace);
  36. void save_stack_trace_tsk(struct task_struct *tsk, struct stack_trace *trace)
  37. {
  38. dump_trace(tsk, trace);
  39. if (trace->nr_entries < trace->max_entries)
  40. trace->entries[trace->nr_entries++] = ULONG_MAX;
  41. }
  42. EXPORT_SYMBOL_GPL(save_stack_trace_tsk);