stacktrace.h 2.4 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 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
enum stack_type {
	STACK_TYPE_UNKNOWN,
	STACK_TYPE_TASK,
	STACK_TYPE_IRQ,
	STACK_TYPE_SOFTIRQ,
	STACK_TYPE_EXCEPTION,
	STACK_TYPE_EXCEPTION_LAST = STACK_TYPE_EXCEPTION + N_EXCEPTION_STACKS-1,
};

struct stack_info {
	enum stack_type type;
	unsigned long *begin, *end, *next_sp;
};

bool in_task_stack(unsigned long *stack, struct task_struct *task,
		   struct stack_info *info);

int get_stack_info(unsigned long *stack, struct task_struct *task,
		   struct stack_info *info, unsigned long *visit_mask);

33
const char *stack_type_name(enum stack_type type);
34 35 36 37 38 39 40 41 42 43 44

static inline bool on_stack(struct stack_info *info, void *addr, size_t len)
{
	void *begin = info->begin;
	void *end   = info->end;

	return (info->type != STACK_TYPE_UNKNOWN &&
		addr >= begin && addr < end &&
		addr + len > begin && addr + len <= end);
}

45 46 47 48 49 50
#ifdef CONFIG_X86_32
#define STACKSLOTS_PER_LINE 8
#else
#define STACKSLOTS_PER_LINE 4
#endif

51
#ifdef CONFIG_FRAME_POINTER
52 53
static inline unsigned long *
get_frame_pointer(struct task_struct *task, struct pt_regs *regs)
54 55
{
	if (regs)
56
		return (unsigned long *)regs->bp;
57

58
	if (task == current)
59
		return __builtin_frame_address(0);
60

61
	return &((struct inactive_task_frame *)task->thread.sp)->bp;
62 63
}
#else
64 65
static inline unsigned long *
get_frame_pointer(struct task_struct *task, struct pt_regs *regs)
66
{
67 68 69 70 71 72 73 74 75 76
	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);

77
	if (task == current)
78 79 80
		return __builtin_frame_address(0);

	return (unsigned long *)task->thread.sp;
81 82
}

83 84
void show_trace_log_lvl(struct task_struct *task, struct pt_regs *regs,
			unsigned long *stack, char *log_lvl);
85 86 87 88 89 90 91 92 93 94 95 96 97 98

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;
};

99
static inline unsigned long caller_frame_pointer(void)
100 101 102
{
	struct stack_frame *frame;

103
	frame = __builtin_frame_address(0);
104 105

#ifdef CONFIG_FRAME_POINTER
106
	frame = frame->next_frame;
107 108 109 110 111
#endif

	return (unsigned long)frame;
}

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