Commit | Line | Data |
---|---|---|
b2441318 | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
7c7900f8 JP |
2 | #ifndef _ASM_X86_UNWIND_H |
3 | #define _ASM_X86_UNWIND_H | |
4 | ||
5 | #include <linux/sched.h> | |
6 | #include <linux/ftrace.h> | |
f3a112c0 | 7 | #include <linux/rethook.h> |
7c7900f8 JP |
8 | #include <asm/ptrace.h> |
9 | #include <asm/stacktrace.h> | |
10 | ||
b02fcf9b JP |
11 | #define IRET_FRAME_OFFSET (offsetof(struct pt_regs, ip)) |
12 | #define IRET_FRAME_SIZE (sizeof(struct pt_regs) - IRET_FRAME_OFFSET) | |
13 | ||
7c7900f8 JP |
14 | struct unwind_state { |
15 | struct stack_info stack_info; | |
16 | unsigned long stack_mask; | |
17 | struct task_struct *task; | |
18 | int graph_idx; | |
f3a112c0 | 19 | #if defined(CONFIG_RETHOOK) |
19138af1 | 20 | struct llist_node *kr_cur; |
811b93ff | 21 | #endif |
af085d90 | 22 | bool error; |
11af8474 | 23 | #if defined(CONFIG_UNWINDER_ORC) |
ee9f8fce JP |
24 | bool signal, full_regs; |
25 | unsigned long sp, bp, ip; | |
81b67439 | 26 | struct pt_regs *regs, *prev_regs; |
11af8474 | 27 | #elif defined(CONFIG_UNWINDER_FRAME_POINTER) |
a8b7a923 | 28 | bool got_irq; |
ee9f8fce | 29 | unsigned long *bp, *orig_sp, ip; |
f4f34e1b JH |
30 | /* |
31 | * If non-NULL: The current frame is incomplete and doesn't contain a | |
32 | * valid BP. When looking for the next frame, use this instead of the | |
33 | * non-existent saved BP. | |
34 | */ | |
35 | unsigned long *next_bp; | |
946c1911 | 36 | struct pt_regs *regs; |
7c7900f8 JP |
37 | #else |
38 | unsigned long *sp; | |
39 | #endif | |
40 | }; | |
41 | ||
42 | void __unwind_start(struct unwind_state *state, struct task_struct *task, | |
43 | struct pt_regs *regs, unsigned long *first_frame); | |
7c7900f8 | 44 | bool unwind_next_frame(struct unwind_state *state); |
cfee9edd | 45 | unsigned long unwind_get_return_address(struct unwind_state *state); |
ee9f8fce | 46 | unsigned long *unwind_get_return_address_ptr(struct unwind_state *state); |
cfee9edd | 47 | |
7c7900f8 JP |
48 | static inline bool unwind_done(struct unwind_state *state) |
49 | { | |
50 | return state->stack_info.type == STACK_TYPE_UNKNOWN; | |
51 | } | |
52 | ||
af085d90 JP |
53 | static inline bool unwind_error(struct unwind_state *state) |
54 | { | |
55 | return state->error; | |
56 | } | |
57 | ||
7c7900f8 | 58 | static inline |
ee9f8fce JP |
59 | void unwind_start(struct unwind_state *state, struct task_struct *task, |
60 | struct pt_regs *regs, unsigned long *first_frame) | |
7c7900f8 | 61 | { |
ee9f8fce | 62 | first_frame = first_frame ? : get_stack_pointer(task, regs); |
7c7900f8 | 63 | |
ee9f8fce | 64 | __unwind_start(state, task, regs, first_frame); |
946c1911 JP |
65 | } |
66 | ||
11af8474 | 67 | #if defined(CONFIG_UNWINDER_ORC) || defined(CONFIG_UNWINDER_FRAME_POINTER) |
b02fcf9b | 68 | /* |
a9cdbe72 | 69 | * If 'partial' returns true, only the iret frame registers are valid. |
b02fcf9b | 70 | */ |
a9cdbe72 JP |
71 | static inline struct pt_regs *unwind_get_entry_regs(struct unwind_state *state, |
72 | bool *partial) | |
946c1911 JP |
73 | { |
74 | if (unwind_done(state)) | |
75 | return NULL; | |
76 | ||
a9cdbe72 JP |
77 | if (partial) { |
78 | #ifdef CONFIG_UNWINDER_ORC | |
79 | *partial = !state->full_regs; | |
80 | #else | |
81 | *partial = false; | |
82 | #endif | |
83 | } | |
84 | ||
946c1911 | 85 | return state->regs; |
7c7900f8 | 86 | } |
ee9f8fce | 87 | #else |
a9cdbe72 JP |
88 | static inline struct pt_regs *unwind_get_entry_regs(struct unwind_state *state, |
89 | bool *partial) | |
7c7900f8 JP |
90 | { |
91 | return NULL; | |
92 | } | |
ee9f8fce | 93 | #endif |
7c7900f8 | 94 | |
11af8474 | 95 | #ifdef CONFIG_UNWINDER_ORC |
ee9f8fce JP |
96 | void unwind_init(void); |
97 | void unwind_module_init(struct module *mod, void *orc_ip, size_t orc_ip_size, | |
98 | void *orc, size_t orc_size); | |
99 | #else | |
100 | static inline void unwind_init(void) {} | |
101 | static inline | |
102 | void unwind_module_init(struct module *mod, void *orc_ip, size_t orc_ip_size, | |
103 | void *orc, size_t orc_size) {} | |
104 | #endif | |
105 | ||
19138af1 | 106 | static inline |
f3a112c0 MH |
107 | unsigned long unwind_recover_rethook(struct unwind_state *state, |
108 | unsigned long addr, unsigned long *addr_p) | |
19138af1 | 109 | { |
f3a112c0 MH |
110 | #ifdef CONFIG_RETHOOK |
111 | if (is_rethook_trampoline(addr)) | |
112 | return rethook_find_ret_addr(state->task, (unsigned long)addr_p, | |
113 | &state->kr_cur); | |
811b93ff | 114 | #endif |
f3a112c0 | 115 | return addr; |
19138af1 MH |
116 | } |
117 | ||
f3a112c0 | 118 | /* Recover the return address modified by rethook and ftrace_graph. */ |
19138af1 MH |
119 | static inline |
120 | unsigned long unwind_recover_ret_addr(struct unwind_state *state, | |
121 | unsigned long addr, unsigned long *addr_p) | |
122 | { | |
123 | unsigned long ret; | |
124 | ||
125 | ret = ftrace_graph_ret_addr(state->task, &state->graph_idx, | |
126 | addr, addr_p); | |
f3a112c0 | 127 | return unwind_recover_rethook(state, ret, addr_p); |
19138af1 MH |
128 | } |
129 | ||
ee9f8fce JP |
130 | /* |
131 | * This disables KASAN checking when reading a value from another task's stack, | |
132 | * since the other task could be running on another CPU and could have poisoned | |
133 | * the stack in the meantime. | |
134 | */ | |
135 | #define READ_ONCE_TASK_STACK(task, x) \ | |
136 | ({ \ | |
137 | unsigned long val; \ | |
138 | if (task == current) \ | |
139 | val = READ_ONCE(x); \ | |
140 | else \ | |
141 | val = READ_ONCE_NOCHECK(x); \ | |
142 | val; \ | |
143 | }) | |
144 | ||
145 | static inline bool task_on_another_cpu(struct task_struct *task) | |
946c1911 | 146 | { |
ee9f8fce JP |
147 | #ifdef CONFIG_SMP |
148 | return task != current && task->on_cpu; | |
149 | #else | |
150 | return false; | |
151 | #endif | |
946c1911 JP |
152 | } |
153 | ||
7c7900f8 | 154 | #endif /* _ASM_X86_UNWIND_H */ |