xref: /linux/arch/riscv/kernel/ptrace.c (revision 1c9f8dff62d85ce00b0e99f774a84bd783af7cac)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Copyright 2010 Tilera Corporation. All Rights Reserved.
4  * Copyright 2015 Regents of the University of California
5  * Copyright 2017 SiFive
6  *
7  * Copied from arch/tile/kernel/ptrace.c
8  */
9 
10 #include <asm/vector.h>
11 #include <asm/ptrace.h>
12 #include <asm/syscall.h>
13 #include <asm/thread_info.h>
14 #include <asm/switch_to.h>
15 #include <linux/audit.h>
16 #include <linux/compat.h>
17 #include <linux/ptrace.h>
18 #include <linux/elf.h>
19 #include <linux/regset.h>
20 #include <linux/sched.h>
21 #include <linux/sched/task_stack.h>
22 
23 enum riscv_regset {
24 	REGSET_X,
25 #ifdef CONFIG_FPU
26 	REGSET_F,
27 #endif
28 };
29 
30 static int riscv_gpr_get(struct task_struct *target,
31 			 const struct user_regset *regset,
32 			 struct membuf to)
33 {
34 	return membuf_write(&to, task_pt_regs(target),
35 			    sizeof(struct user_regs_struct));
36 }
37 
38 static int riscv_gpr_set(struct task_struct *target,
39 			 const struct user_regset *regset,
40 			 unsigned int pos, unsigned int count,
41 			 const void *kbuf, const void __user *ubuf)
42 {
43 	struct pt_regs *regs;
44 
45 	regs = task_pt_regs(target);
46 	return user_regset_copyin(&pos, &count, &kbuf, &ubuf, regs, 0, -1);
47 }
48 
49 #ifdef CONFIG_FPU
50 static int riscv_fpr_get(struct task_struct *target,
51 			 const struct user_regset *regset,
52 			 struct membuf to)
53 {
54 	struct __riscv_d_ext_state *fstate = &target->thread.fstate;
55 
56 	if (target == current)
57 		fstate_save(current, task_pt_regs(current));
58 
59 	membuf_write(&to, fstate, offsetof(struct __riscv_d_ext_state, fcsr));
60 	membuf_store(&to, fstate->fcsr);
61 	return membuf_zero(&to, 4);	// explicitly pad
62 }
63 
64 static int riscv_fpr_set(struct task_struct *target,
65 			 const struct user_regset *regset,
66 			 unsigned int pos, unsigned int count,
67 			 const void *kbuf, const void __user *ubuf)
68 {
69 	int ret;
70 	struct __riscv_d_ext_state *fstate = &target->thread.fstate;
71 
72 	ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, fstate, 0,
73 				 offsetof(struct __riscv_d_ext_state, fcsr));
74 	if (!ret) {
75 		ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, fstate, 0,
76 					 offsetof(struct __riscv_d_ext_state, fcsr) +
77 					 sizeof(fstate->fcsr));
78 	}
79 
80 	return ret;
81 }
82 #endif
83 
84 static const struct user_regset riscv_user_regset[] = {
85 	[REGSET_X] = {
86 		.core_note_type = NT_PRSTATUS,
87 		.n = ELF_NGREG,
88 		.size = sizeof(elf_greg_t),
89 		.align = sizeof(elf_greg_t),
90 		.regset_get = riscv_gpr_get,
91 		.set = riscv_gpr_set,
92 	},
93 #ifdef CONFIG_FPU
94 	[REGSET_F] = {
95 		.core_note_type = NT_PRFPREG,
96 		.n = ELF_NFPREG,
97 		.size = sizeof(elf_fpreg_t),
98 		.align = sizeof(elf_fpreg_t),
99 		.regset_get = riscv_fpr_get,
100 		.set = riscv_fpr_set,
101 	},
102 #endif
103 };
104 
105 static const struct user_regset_view riscv_user_native_view = {
106 	.name = "riscv",
107 	.e_machine = EM_RISCV,
108 	.regsets = riscv_user_regset,
109 	.n = ARRAY_SIZE(riscv_user_regset),
110 };
111 
112 struct pt_regs_offset {
113 	const char *name;
114 	int offset;
115 };
116 
117 #define REG_OFFSET_NAME(r) {.name = #r, .offset = offsetof(struct pt_regs, r)}
118 #define REG_OFFSET_END {.name = NULL, .offset = 0}
119 
120 static const struct pt_regs_offset regoffset_table[] = {
121 	REG_OFFSET_NAME(epc),
122 	REG_OFFSET_NAME(ra),
123 	REG_OFFSET_NAME(sp),
124 	REG_OFFSET_NAME(gp),
125 	REG_OFFSET_NAME(tp),
126 	REG_OFFSET_NAME(t0),
127 	REG_OFFSET_NAME(t1),
128 	REG_OFFSET_NAME(t2),
129 	REG_OFFSET_NAME(s0),
130 	REG_OFFSET_NAME(s1),
131 	REG_OFFSET_NAME(a0),
132 	REG_OFFSET_NAME(a1),
133 	REG_OFFSET_NAME(a2),
134 	REG_OFFSET_NAME(a3),
135 	REG_OFFSET_NAME(a4),
136 	REG_OFFSET_NAME(a5),
137 	REG_OFFSET_NAME(a6),
138 	REG_OFFSET_NAME(a7),
139 	REG_OFFSET_NAME(s2),
140 	REG_OFFSET_NAME(s3),
141 	REG_OFFSET_NAME(s4),
142 	REG_OFFSET_NAME(s5),
143 	REG_OFFSET_NAME(s6),
144 	REG_OFFSET_NAME(s7),
145 	REG_OFFSET_NAME(s8),
146 	REG_OFFSET_NAME(s9),
147 	REG_OFFSET_NAME(s10),
148 	REG_OFFSET_NAME(s11),
149 	REG_OFFSET_NAME(t3),
150 	REG_OFFSET_NAME(t4),
151 	REG_OFFSET_NAME(t5),
152 	REG_OFFSET_NAME(t6),
153 	REG_OFFSET_NAME(status),
154 	REG_OFFSET_NAME(badaddr),
155 	REG_OFFSET_NAME(cause),
156 	REG_OFFSET_NAME(orig_a0),
157 	REG_OFFSET_END,
158 };
159 
160 /**
161  * regs_query_register_offset() - query register offset from its name
162  * @name:	the name of a register
163  *
164  * regs_query_register_offset() returns the offset of a register in struct
165  * pt_regs from its name. If the name is invalid, this returns -EINVAL;
166  */
167 int regs_query_register_offset(const char *name)
168 {
169 	const struct pt_regs_offset *roff;
170 
171 	for (roff = regoffset_table; roff->name != NULL; roff++)
172 		if (!strcmp(roff->name, name))
173 			return roff->offset;
174 	return -EINVAL;
175 }
176 
177 /**
178  * regs_within_kernel_stack() - check the address in the stack
179  * @regs:      pt_regs which contains kernel stack pointer.
180  * @addr:      address which is checked.
181  *
182  * regs_within_kernel_stack() checks @addr is within the kernel stack page(s).
183  * If @addr is within the kernel stack, it returns true. If not, returns false.
184  */
185 static bool regs_within_kernel_stack(struct pt_regs *regs, unsigned long addr)
186 {
187 	return (addr & ~(THREAD_SIZE - 1))  ==
188 		(kernel_stack_pointer(regs) & ~(THREAD_SIZE - 1));
189 }
190 
191 /**
192  * regs_get_kernel_stack_nth() - get Nth entry of the stack
193  * @regs:	pt_regs which contains kernel stack pointer.
194  * @n:		stack entry number.
195  *
196  * regs_get_kernel_stack_nth() returns @n th entry of the kernel stack which
197  * is specified by @regs. If the @n th entry is NOT in the kernel stack,
198  * this returns 0.
199  */
200 unsigned long regs_get_kernel_stack_nth(struct pt_regs *regs, unsigned int n)
201 {
202 	unsigned long *addr = (unsigned long *)kernel_stack_pointer(regs);
203 
204 	addr += n;
205 	if (regs_within_kernel_stack(regs, (unsigned long)addr))
206 		return *addr;
207 	else
208 		return 0;
209 }
210 
211 void ptrace_disable(struct task_struct *child)
212 {
213 }
214 
215 long arch_ptrace(struct task_struct *child, long request,
216 		 unsigned long addr, unsigned long data)
217 {
218 	long ret = -EIO;
219 
220 	switch (request) {
221 	default:
222 		ret = ptrace_request(child, request, addr, data);
223 		break;
224 	}
225 
226 	return ret;
227 }
228 
229 #ifdef CONFIG_COMPAT
230 static int compat_riscv_gpr_get(struct task_struct *target,
231 				const struct user_regset *regset,
232 				struct membuf to)
233 {
234 	struct compat_user_regs_struct cregs;
235 
236 	regs_to_cregs(&cregs, task_pt_regs(target));
237 
238 	return membuf_write(&to, &cregs,
239 			    sizeof(struct compat_user_regs_struct));
240 }
241 
242 static int compat_riscv_gpr_set(struct task_struct *target,
243 				const struct user_regset *regset,
244 				unsigned int pos, unsigned int count,
245 				const void *kbuf, const void __user *ubuf)
246 {
247 	int ret;
248 	struct compat_user_regs_struct cregs;
249 
250 	ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &cregs, 0, -1);
251 
252 	cregs_to_regs(&cregs, task_pt_regs(target));
253 
254 	return ret;
255 }
256 
257 static const struct user_regset compat_riscv_user_regset[] = {
258 	[REGSET_X] = {
259 		.core_note_type = NT_PRSTATUS,
260 		.n = ELF_NGREG,
261 		.size = sizeof(compat_elf_greg_t),
262 		.align = sizeof(compat_elf_greg_t),
263 		.regset_get = compat_riscv_gpr_get,
264 		.set = compat_riscv_gpr_set,
265 	},
266 #ifdef CONFIG_FPU
267 	[REGSET_F] = {
268 		.core_note_type = NT_PRFPREG,
269 		.n = ELF_NFPREG,
270 		.size = sizeof(elf_fpreg_t),
271 		.align = sizeof(elf_fpreg_t),
272 		.regset_get = riscv_fpr_get,
273 		.set = riscv_fpr_set,
274 	},
275 #endif
276 };
277 
278 static const struct user_regset_view compat_riscv_user_native_view = {
279 	.name = "riscv",
280 	.e_machine = EM_RISCV,
281 	.regsets = compat_riscv_user_regset,
282 	.n = ARRAY_SIZE(compat_riscv_user_regset),
283 };
284 
285 long compat_arch_ptrace(struct task_struct *child, compat_long_t request,
286 			compat_ulong_t caddr, compat_ulong_t cdata)
287 {
288 	long ret = -EIO;
289 
290 	switch (request) {
291 	default:
292 		ret = compat_ptrace_request(child, request, caddr, cdata);
293 		break;
294 	}
295 
296 	return ret;
297 }
298 #endif /* CONFIG_COMPAT */
299 
300 const struct user_regset_view *task_user_regset_view(struct task_struct *task)
301 {
302 #ifdef CONFIG_COMPAT
303 	if (test_tsk_thread_flag(task, TIF_32BIT))
304 		return &compat_riscv_user_native_view;
305 	else
306 #endif
307 		return &riscv_user_native_view;
308 }
309