1 // SPDX-License-Identifier: GPL-2.0
3 * SuperH process tracing
5 * Copyright (C) 1999, 2000 Kaz Kojima & Niibe Yutaka
6 * Copyright (C) 2002 - 2009 Paul Mundt
8 * Audit support by Yuichi Nakamura <ynakam@hitachisoft.jp>
10 #include <linux/kernel.h>
11 #include <linux/sched.h>
12 #include <linux/sched/task_stack.h>
14 #include <linux/smp.h>
15 #include <linux/errno.h>
16 #include <linux/ptrace.h>
17 #include <linux/user.h>
18 #include <linux/security.h>
19 #include <linux/signal.h>
21 #include <linux/audit.h>
22 #include <linux/seccomp.h>
23 #include <linux/tracehook.h>
24 #include <linux/elf.h>
25 #include <linux/regset.h>
26 #include <linux/hw_breakpoint.h>
27 #include <linux/uaccess.h>
28 #include <asm/processor.h>
29 #include <asm/mmu_context.h>
30 #include <asm/syscalls.h>
33 #define CREATE_TRACE_POINTS
34 #include <trace/events/syscalls.h>
37 * This routine will get a word off of the process kernel stack.
39 static inline int get_stack_long(struct task_struct
*task
, int offset
)
43 stack
= (unsigned char *)task_pt_regs(task
);
45 return (*((int *)stack
));
49 * This routine will put a word on the process kernel stack.
51 static inline int put_stack_long(struct task_struct
*task
, int offset
,
56 stack
= (unsigned char *)task_pt_regs(task
);
58 *(unsigned long *) stack
= data
;
62 void ptrace_triggered(struct perf_event
*bp
,
63 struct perf_sample_data
*data
, struct pt_regs
*regs
)
65 struct perf_event_attr attr
;
68 * Disable the breakpoint request here since ptrace has defined a
69 * one-shot behaviour for breakpoint exceptions.
73 modify_user_hw_breakpoint(bp
, &attr
);
76 static int set_single_step(struct task_struct
*tsk
, unsigned long addr
)
78 struct thread_struct
*thread
= &tsk
->thread
;
79 struct perf_event
*bp
;
80 struct perf_event_attr attr
;
82 bp
= thread
->ptrace_bps
[0];
84 ptrace_breakpoint_init(&attr
);
87 attr
.bp_len
= HW_BREAKPOINT_LEN_2
;
88 attr
.bp_type
= HW_BREAKPOINT_R
;
90 bp
= register_user_hw_breakpoint(&attr
, ptrace_triggered
,
95 thread
->ptrace_bps
[0] = bp
;
101 /* reenable breakpoint */
102 attr
.disabled
= false;
103 err
= modify_user_hw_breakpoint(bp
, &attr
);
111 void user_enable_single_step(struct task_struct
*child
)
113 unsigned long pc
= get_stack_long(child
, offsetof(struct pt_regs
, pc
));
115 set_tsk_thread_flag(child
, TIF_SINGLESTEP
);
117 set_single_step(child
, pc
);
120 void user_disable_single_step(struct task_struct
*child
)
122 clear_tsk_thread_flag(child
, TIF_SINGLESTEP
);
126 * Called by kernel/ptrace.c when detaching..
128 * Make sure single step bits etc are not set.
130 void ptrace_disable(struct task_struct
*child
)
132 user_disable_single_step(child
);
135 static int genregs_get(struct task_struct
*target
,
136 const struct user_regset
*regset
,
139 const struct pt_regs
*regs
= task_pt_regs(target
);
141 return membuf_write(&to
, regs
, sizeof(struct pt_regs
));
144 static int genregs_set(struct task_struct
*target
,
145 const struct user_regset
*regset
,
146 unsigned int pos
, unsigned int count
,
147 const void *kbuf
, const void __user
*ubuf
)
149 struct pt_regs
*regs
= task_pt_regs(target
);
152 ret
= user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
,
154 0, 16 * sizeof(unsigned long));
155 if (!ret
&& count
> 0)
156 ret
= user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
,
158 offsetof(struct pt_regs
, pc
),
159 sizeof(struct pt_regs
));
161 ret
= user_regset_copyin_ignore(&pos
, &count
, &kbuf
, &ubuf
,
162 sizeof(struct pt_regs
), -1);
168 static int fpregs_get(struct task_struct
*target
,
169 const struct user_regset
*regset
,
174 ret
= init_fpu(target
);
178 return membuf_write(&to
, target
->thread
.xstate
,
179 sizeof(struct user_fpu_struct
));
182 static int fpregs_set(struct task_struct
*target
,
183 const struct user_regset
*regset
,
184 unsigned int pos
, unsigned int count
,
185 const void *kbuf
, const void __user
*ubuf
)
189 ret
= init_fpu(target
);
193 set_stopped_child_used_math(target
);
195 if ((boot_cpu_data
.flags
& CPU_HAS_FPU
))
196 return user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
,
197 &target
->thread
.xstate
->hardfpu
, 0, -1);
199 return user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
,
200 &target
->thread
.xstate
->softfpu
, 0, -1);
203 static int fpregs_active(struct task_struct
*target
,
204 const struct user_regset
*regset
)
206 return tsk_used_math(target
) ? regset
->n
: 0;
211 static int dspregs_get(struct task_struct
*target
,
212 const struct user_regset
*regset
,
215 const struct pt_dspregs
*regs
=
216 (struct pt_dspregs
*)&target
->thread
.dsp_status
.dsp_regs
;
218 return membuf_write(&to
, regs
, sizeof(struct pt_dspregs
));
221 static int dspregs_set(struct task_struct
*target
,
222 const struct user_regset
*regset
,
223 unsigned int pos
, unsigned int count
,
224 const void *kbuf
, const void __user
*ubuf
)
226 struct pt_dspregs
*regs
=
227 (struct pt_dspregs
*)&target
->thread
.dsp_status
.dsp_regs
;
230 ret
= user_regset_copyin(&pos
, &count
, &kbuf
, &ubuf
, regs
,
231 0, sizeof(struct pt_dspregs
));
233 ret
= user_regset_copyin_ignore(&pos
, &count
, &kbuf
, &ubuf
,
234 sizeof(struct pt_dspregs
), -1);
239 static int dspregs_active(struct task_struct
*target
,
240 const struct user_regset
*regset
)
242 struct pt_regs
*regs
= task_pt_regs(target
);
244 return regs
->sr
& SR_DSP
? regset
->n
: 0;
248 const struct pt_regs_offset regoffset_table
[] = {
259 REGS_OFFSET_NAME(10),
260 REGS_OFFSET_NAME(11),
261 REGS_OFFSET_NAME(12),
262 REGS_OFFSET_NAME(13),
263 REGS_OFFSET_NAME(14),
264 REGS_OFFSET_NAME(15),
268 REG_OFFSET_NAME(gbr
),
269 REG_OFFSET_NAME(mach
),
270 REG_OFFSET_NAME(macl
),
271 REG_OFFSET_NAME(tra
),
276 * These are our native regset flavours.
288 static const struct user_regset sh_regsets
[] = {
292 * PC, PR, SR, GBR, MACH, MACL, TRA
295 .core_note_type
= NT_PRSTATUS
,
297 .size
= sizeof(long),
298 .align
= sizeof(long),
299 .regset_get
= genregs_get
,
305 .core_note_type
= NT_PRFPREG
,
306 .n
= sizeof(struct user_fpu_struct
) / sizeof(long),
307 .size
= sizeof(long),
308 .align
= sizeof(long),
309 .regset_get
= fpregs_get
,
311 .active
= fpregs_active
,
317 .n
= sizeof(struct pt_dspregs
) / sizeof(long),
318 .size
= sizeof(long),
319 .align
= sizeof(long),
320 .regset_get
= dspregs_get
,
322 .active
= dspregs_active
,
327 static const struct user_regset_view user_sh_native_view
= {
330 .regsets
= sh_regsets
,
331 .n
= ARRAY_SIZE(sh_regsets
),
334 const struct user_regset_view
*task_user_regset_view(struct task_struct
*task
)
336 return &user_sh_native_view
;
339 long arch_ptrace(struct task_struct
*child
, long request
,
340 unsigned long addr
, unsigned long data
)
342 unsigned long __user
*datap
= (unsigned long __user
*)data
;
346 /* read the word at location addr in the USER area. */
347 case PTRACE_PEEKUSR
: {
351 if ((addr
& 3) || addr
< 0 ||
352 addr
> sizeof(struct user
) - 3)
355 if (addr
< sizeof(struct pt_regs
))
356 tmp
= get_stack_long(child
, addr
);
357 else if (addr
>= offsetof(struct user
, fpu
) &&
358 addr
< offsetof(struct user
, u_fpvalid
)) {
359 if (!tsk_used_math(child
)) {
360 if (addr
== offsetof(struct user
, fpu
.fpscr
))
366 ret
= init_fpu(child
);
369 index
= addr
- offsetof(struct user
, fpu
);
370 tmp
= ((unsigned long *)child
->thread
.xstate
)
373 } else if (addr
== offsetof(struct user
, u_fpvalid
))
374 tmp
= !!tsk_used_math(child
);
375 else if (addr
== PT_TEXT_ADDR
)
376 tmp
= child
->mm
->start_code
;
377 else if (addr
== PT_DATA_ADDR
)
378 tmp
= child
->mm
->start_data
;
379 else if (addr
== PT_TEXT_END_ADDR
)
380 tmp
= child
->mm
->end_code
;
381 else if (addr
== PT_TEXT_LEN
)
382 tmp
= child
->mm
->end_code
- child
->mm
->start_code
;
385 ret
= put_user(tmp
, datap
);
389 case PTRACE_POKEUSR
: /* write the word at location addr in the USER area */
391 if ((addr
& 3) || addr
< 0 ||
392 addr
> sizeof(struct user
) - 3)
395 if (addr
< sizeof(struct pt_regs
))
396 ret
= put_stack_long(child
, addr
, data
);
397 else if (addr
>= offsetof(struct user
, fpu
) &&
398 addr
< offsetof(struct user
, u_fpvalid
)) {
400 ret
= init_fpu(child
);
403 index
= addr
- offsetof(struct user
, fpu
);
404 set_stopped_child_used_math(child
);
405 ((unsigned long *)child
->thread
.xstate
)
408 } else if (addr
== offsetof(struct user
, u_fpvalid
)) {
409 conditional_stopped_child_used_math(data
, child
);
415 return copy_regset_to_user(child
, &user_sh_native_view
,
417 0, sizeof(struct pt_regs
),
420 return copy_regset_from_user(child
, &user_sh_native_view
,
422 0, sizeof(struct pt_regs
),
425 case PTRACE_GETFPREGS
:
426 return copy_regset_to_user(child
, &user_sh_native_view
,
428 0, sizeof(struct user_fpu_struct
),
430 case PTRACE_SETFPREGS
:
431 return copy_regset_from_user(child
, &user_sh_native_view
,
433 0, sizeof(struct user_fpu_struct
),
437 case PTRACE_GETDSPREGS
:
438 return copy_regset_to_user(child
, &user_sh_native_view
,
440 0, sizeof(struct pt_dspregs
),
442 case PTRACE_SETDSPREGS
:
443 return copy_regset_from_user(child
, &user_sh_native_view
,
445 0, sizeof(struct pt_dspregs
),
449 ret
= ptrace_request(child
, request
, addr
, data
);
456 asmlinkage
long do_syscall_trace_enter(struct pt_regs
*regs
)
458 if (test_thread_flag(TIF_SYSCALL_TRACE
) &&
459 tracehook_report_syscall_entry(regs
)) {
460 regs
->regs
[0] = -ENOSYS
;
464 if (secure_computing() == -1)
467 if (unlikely(test_thread_flag(TIF_SYSCALL_TRACEPOINT
)))
468 trace_sys_enter(regs
, regs
->regs
[0]);
470 audit_syscall_entry(regs
->regs
[3], regs
->regs
[4], regs
->regs
[5],
471 regs
->regs
[6], regs
->regs
[7]);
476 asmlinkage
void do_syscall_trace_leave(struct pt_regs
*regs
)
480 audit_syscall_exit(regs
);
482 if (unlikely(test_thread_flag(TIF_SYSCALL_TRACEPOINT
)))
483 trace_sys_exit(regs
, regs
->regs
[0]);
485 step
= test_thread_flag(TIF_SINGLESTEP
);
486 if (step
|| test_thread_flag(TIF_SYSCALL_TRACE
))
487 tracehook_report_syscall_exit(regs
, step
);