stacktrace.h 3.0 KB
Newer Older
1 2 3 4 5
/*
 *  Copyright (C) 1991, 1992  Linus Torvalds
 *  Copyright (C) 2000, 2001, 2002 Andi Kleen, SuSE Labs
 */

H
H. Peter Anvin 已提交
6 7
#ifndef _ASM_X86_STACKTRACE_H
#define _ASM_X86_STACKTRACE_H
8

9
#include <linux/uaccess.h>
10
#include <linux/ptrace.h>
11
#include <asm/switch_to.h>
12

13 14
extern int kstack_depth_to_print;

15 16 17
struct thread_info;
struct stacktrace_ops;

18
typedef unsigned long (*walk_stack_t)(struct task_struct *task,
19 20 21 22 23 24 25 26
				      unsigned long *stack,
				      unsigned long bp,
				      const struct stacktrace_ops *ops,
				      void *data,
				      unsigned long *end,
				      int *graph);

extern unsigned long
27
print_context_stack(struct task_struct *task,
28 29 30 31
		    unsigned long *stack, unsigned long bp,
		    const struct stacktrace_ops *ops, void *data,
		    unsigned long *end, int *graph);

32
extern unsigned long
33
print_context_stack_bp(struct task_struct *task,
34 35 36 37
		       unsigned long *stack, unsigned long bp,
		       const struct stacktrace_ops *ops, void *data,
		       unsigned long *end, int *graph);

38 39 40
/* Generic stack tracer with callbacks */

struct stacktrace_ops {
41
	int (*address)(void *data, unsigned long address, int reliable);
42 43
	/* On negative return stop dumping */
	int (*stack)(void *data, char *name);
44
	walk_stack_t	walk_stack;
45 46
};

47
void dump_trace(struct task_struct *tsk, struct pt_regs *regs,
48
		unsigned long *stack, unsigned long bp,
J
Jan Beulich 已提交
49
		const struct stacktrace_ops *ops, void *data);
50

51 52 53 54 55 56
#ifdef CONFIG_X86_32
#define STACKSLOTS_PER_LINE 8
#else
#define STACKSLOTS_PER_LINE 4
#endif

57
#ifdef CONFIG_FRAME_POINTER
58 59
static inline unsigned long *
get_frame_pointer(struct task_struct *task, struct pt_regs *regs)
60 61
{
	if (regs)
62
		return (unsigned long *)regs->bp;
63

64 65
	if (!task || task == current)
		return __builtin_frame_address(0);
66

67
	return (unsigned long *)((struct inactive_task_frame *)task->thread.sp)->bp;
68 69
}
#else
70 71
static inline unsigned long *
get_frame_pointer(struct task_struct *task, struct pt_regs *regs)
72
{
73 74 75 76 77 78 79 80 81 82 83 84 85 86
	return NULL;
}
#endif /* CONFIG_FRAME_POINTER */

static inline unsigned long *
get_stack_pointer(struct task_struct *task, struct pt_regs *regs)
{
	if (regs)
		return (unsigned long *)kernel_stack_pointer(regs);

	if (!task || task == current)
		return __builtin_frame_address(0);

	return (unsigned long *)task->thread.sp;
87 88
}

89 90
extern void
show_trace_log_lvl(struct task_struct *task, struct pt_regs *regs,
91
		   unsigned long *stack, unsigned long bp, char *log_lvl);
92 93 94

extern void
show_stack_log_lvl(struct task_struct *task, struct pt_regs *regs,
95
		   unsigned long *sp, unsigned long bp, char *log_lvl);
96 97 98 99 100 101 102 103 104 105 106 107 108 109

extern unsigned int code_bytes;

/* The form of the top of the frame on the stack */
struct stack_frame {
	struct stack_frame *next_frame;
	unsigned long return_address;
};

struct stack_frame_ia32 {
    u32 next_frame;
    u32 return_address;
};

110
static inline unsigned long caller_frame_pointer(void)
111 112 113
{
	struct stack_frame *frame;

114
	frame = __builtin_frame_address(0);
115 116

#ifdef CONFIG_FRAME_POINTER
117
	frame = frame->next_frame;
118 119 120 121 122
#endif

	return (unsigned long)frame;
}

H
H. Peter Anvin 已提交
123
#endif /* _ASM_X86_STACKTRACE_H */