blob: c1a6b89bfe70d588b1aabf5d2814196c505018a8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Paul Mundt934135c2008-09-12 19:52:36 +09002 * SuperH process tracing
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Paul Mundt934135c2008-09-12 19:52:36 +09004 * Copyright (C) 1999, 2000 Kaz Kojima & Niibe Yutaka
Paul Mundt34d0b5a2009-12-28 17:53:47 +09005 * Copyright (C) 2002 - 2009 Paul Mundt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
Paul Mundt934135c2008-09-12 19:52:36 +09007 * Audit support by Yuichi Nakamura <ynakam@hitachisoft.jp>
8 *
9 * This file is subject to the terms and conditions of the GNU General Public
10 * License. See the file "COPYING" in the main directory of this archive
11 * for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/kernel.h>
14#include <linux/sched.h>
15#include <linux/mm.h>
16#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/errno.h>
18#include <linux/ptrace.h>
19#include <linux/user.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/security.h>
Jesper Juhl7ed20e12005-05-01 08:59:14 -070021#include <linux/signal.h>
Stuart Menefy9432f962007-02-23 13:22:17 +090022#include <linux/io.h>
Yuichi Nakamura1322b9d2007-11-10 19:21:34 +090023#include <linux/audit.h>
Paul Mundtc4637d42008-07-30 15:30:52 +090024#include <linux/seccomp.h>
Paul Mundtab99c732008-07-30 19:55:30 +090025#include <linux/tracehook.h>
Paul Mundt934135c2008-09-12 19:52:36 +090026#include <linux/elf.h>
27#include <linux/regset.h>
Paul Mundt34d0b5a2009-12-28 17:53:47 +090028#include <linux/hw_breakpoint.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <asm/uaccess.h>
30#include <asm/pgtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/processor.h>
32#include <asm/mmu_context.h>
Paul Mundtfa439722008-09-04 18:53:58 +090033#include <asm/syscalls.h>
Paul Mundte7ab3cd2008-09-21 19:04:55 +090034#include <asm/fpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Paul Mundta74f7e02009-09-16 14:30:34 +090036#define CREATE_TRACE_POINTS
37#include <trace/events/syscalls.h>
Matt Flemingc652d782009-07-06 20:16:33 +090038
Linus Torvalds1da177e2005-04-16 15:20:36 -070039/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 * This routine will get a word off of the process kernel stack.
41 */
42static inline int get_stack_long(struct task_struct *task, int offset)
43{
44 unsigned char *stack;
45
Al Viro3cf0f4e2006-01-12 01:05:44 -080046 stack = (unsigned char *)task_pt_regs(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 stack += offset;
48 return (*((int *)stack));
49}
50
51/*
52 * This routine will put a word on the process kernel stack.
53 */
54static inline int put_stack_long(struct task_struct *task, int offset,
55 unsigned long data)
56{
57 unsigned char *stack;
58
Al Viro3cf0f4e2006-01-12 01:05:44 -080059 stack = (unsigned char *)task_pt_regs(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 stack += offset;
61 *(unsigned long *) stack = data;
62 return 0;
63}
64
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +020065void ptrace_triggered(struct perf_event *bp,
Paul Mundt34d0b5a2009-12-28 17:53:47 +090066 struct perf_sample_data *data, struct pt_regs *regs)
67{
68 struct perf_event_attr attr;
69
70 /*
71 * Disable the breakpoint request here since ptrace has defined a
72 * one-shot behaviour for breakpoint exceptions.
73 */
74 attr = bp->attr;
75 attr.disabled = true;
76 modify_user_hw_breakpoint(bp, &attr);
77}
78
79static int set_single_step(struct task_struct *tsk, unsigned long addr)
80{
81 struct thread_struct *thread = &tsk->thread;
82 struct perf_event *bp;
83 struct perf_event_attr attr;
84
85 bp = thread->ptrace_bps[0];
86 if (!bp) {
Frederic Weisbecker73266fc2010-04-22 05:05:45 +020087 ptrace_breakpoint_init(&attr);
Paul Mundt34d0b5a2009-12-28 17:53:47 +090088
89 attr.bp_addr = addr;
90 attr.bp_len = HW_BREAKPOINT_LEN_2;
91 attr.bp_type = HW_BREAKPOINT_R;
92
Avi Kivity4dc0da82011-06-29 18:42:35 +030093 bp = register_user_hw_breakpoint(&attr, ptrace_triggered,
94 NULL, tsk);
Paul Mundt34d0b5a2009-12-28 17:53:47 +090095 if (IS_ERR(bp))
96 return PTR_ERR(bp);
97
98 thread->ptrace_bps[0] = bp;
99 } else {
100 int err;
101
102 attr = bp->attr;
103 attr.bp_addr = addr;
David Engraffb7f0452011-03-23 11:35:42 +0000104 /* reenable breakpoint */
105 attr.disabled = false;
Paul Mundt34d0b5a2009-12-28 17:53:47 +0900106 err = modify_user_hw_breakpoint(bp, &attr);
107 if (unlikely(err))
108 return err;
109 }
110
111 return 0;
112}
113
Paul Mundtc459dbf2008-07-30 19:09:31 +0900114void user_enable_single_step(struct task_struct *child)
115{
Paul Mundt34d0b5a2009-12-28 17:53:47 +0900116 unsigned long pc = get_stack_long(child, offsetof(struct pt_regs, pc));
Paul Mundtc459dbf2008-07-30 19:09:31 +0900117
118 set_tsk_thread_flag(child, TIF_SINGLESTEP);
Paul Mundt34d0b5a2009-12-28 17:53:47 +0900119
120 set_single_step(child, pc);
Paul Mundtc459dbf2008-07-30 19:09:31 +0900121}
122
123void user_disable_single_step(struct task_struct *child)
Stuart Menefy9432f962007-02-23 13:22:17 +0900124{
125 clear_tsk_thread_flag(child, TIF_SINGLESTEP);
Stuart Menefy9432f962007-02-23 13:22:17 +0900126}
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128/*
129 * Called by kernel/ptrace.c when detaching..
130 *
131 * Make sure single step bits etc are not set.
132 */
133void ptrace_disable(struct task_struct *child)
134{
Paul Mundtc459dbf2008-07-30 19:09:31 +0900135 user_disable_single_step(child);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
Paul Mundt934135c2008-09-12 19:52:36 +0900138static int genregs_get(struct task_struct *target,
139 const struct user_regset *regset,
140 unsigned int pos, unsigned int count,
141 void *kbuf, void __user *ubuf)
142{
143 const struct pt_regs *regs = task_pt_regs(target);
144 int ret;
145
146 ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf,
147 regs->regs,
148 0, 16 * sizeof(unsigned long));
149 if (!ret)
150 /* PC, PR, SR, GBR, MACH, MACL, TRA */
151 ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf,
152 &regs->pc,
153 offsetof(struct pt_regs, pc),
154 sizeof(struct pt_regs));
155 if (!ret)
156 ret = user_regset_copyout_zero(&pos, &count, &kbuf, &ubuf,
157 sizeof(struct pt_regs), -1);
158
159 return ret;
160}
161
162static int genregs_set(struct task_struct *target,
163 const struct user_regset *regset,
164 unsigned int pos, unsigned int count,
165 const void *kbuf, const void __user *ubuf)
166{
167 struct pt_regs *regs = task_pt_regs(target);
168 int ret;
169
170 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
171 regs->regs,
172 0, 16 * sizeof(unsigned long));
173 if (!ret && count > 0)
174 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
175 &regs->pc,
176 offsetof(struct pt_regs, pc),
177 sizeof(struct pt_regs));
178 if (!ret)
179 ret = user_regset_copyin_ignore(&pos, &count, &kbuf, &ubuf,
180 sizeof(struct pt_regs), -1);
181
182 return ret;
183}
184
Paul Mundte7ab3cd2008-09-21 19:04:55 +0900185#ifdef CONFIG_SH_FPU
186int fpregs_get(struct task_struct *target,
187 const struct user_regset *regset,
188 unsigned int pos, unsigned int count,
189 void *kbuf, void __user *ubuf)
190{
191 int ret;
192
193 ret = init_fpu(target);
194 if (ret)
195 return ret;
196
197 if ((boot_cpu_data.flags & CPU_HAS_FPU))
198 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
Paul Mundt0ea820c2010-01-13 12:51:40 +0900199 &target->thread.xstate->hardfpu, 0, -1);
Paul Mundte7ab3cd2008-09-21 19:04:55 +0900200
201 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
Paul Mundt0ea820c2010-01-13 12:51:40 +0900202 &target->thread.xstate->softfpu, 0, -1);
Paul Mundte7ab3cd2008-09-21 19:04:55 +0900203}
204
205static int fpregs_set(struct task_struct *target,
206 const struct user_regset *regset,
207 unsigned int pos, unsigned int count,
208 const void *kbuf, const void __user *ubuf)
209{
210 int ret;
211
212 ret = init_fpu(target);
213 if (ret)
214 return ret;
215
216 set_stopped_child_used_math(target);
217
218 if ((boot_cpu_data.flags & CPU_HAS_FPU))
219 return user_regset_copyin(&pos, &count, &kbuf, &ubuf,
Paul Mundt0ea820c2010-01-13 12:51:40 +0900220 &target->thread.xstate->hardfpu, 0, -1);
Paul Mundte7ab3cd2008-09-21 19:04:55 +0900221
222 return user_regset_copyin(&pos, &count, &kbuf, &ubuf,
Paul Mundt0ea820c2010-01-13 12:51:40 +0900223 &target->thread.xstate->softfpu, 0, -1);
Paul Mundte7ab3cd2008-09-21 19:04:55 +0900224}
225
226static int fpregs_active(struct task_struct *target,
227 const struct user_regset *regset)
228{
229 return tsk_used_math(target) ? regset->n : 0;
230}
231#endif
232
Paul Mundt5dadb342008-09-12 22:42:10 +0900233#ifdef CONFIG_SH_DSP
234static int dspregs_get(struct task_struct *target,
235 const struct user_regset *regset,
236 unsigned int pos, unsigned int count,
237 void *kbuf, void __user *ubuf)
238{
Michael Trimarchi01ab1032009-04-03 17:32:33 +0000239 const struct pt_dspregs *regs =
240 (struct pt_dspregs *)&target->thread.dsp_status.dsp_regs;
Paul Mundt5dadb342008-09-12 22:42:10 +0900241 int ret;
242
243 ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf, regs,
244 0, sizeof(struct pt_dspregs));
245 if (!ret)
246 ret = user_regset_copyout_zero(&pos, &count, &kbuf, &ubuf,
247 sizeof(struct pt_dspregs), -1);
248
249 return ret;
250}
251
252static int dspregs_set(struct task_struct *target,
253 const struct user_regset *regset,
254 unsigned int pos, unsigned int count,
255 const void *kbuf, const void __user *ubuf)
256{
Michael Trimarchi01ab1032009-04-03 17:32:33 +0000257 struct pt_dspregs *regs =
258 (struct pt_dspregs *)&target->thread.dsp_status.dsp_regs;
Paul Mundt5dadb342008-09-12 22:42:10 +0900259 int ret;
260
261 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, regs,
262 0, sizeof(struct pt_dspregs));
263 if (!ret)
264 ret = user_regset_copyin_ignore(&pos, &count, &kbuf, &ubuf,
265 sizeof(struct pt_dspregs), -1);
266
267 return ret;
268}
Paul Mundt72461992008-09-12 22:56:35 +0900269
270static int dspregs_active(struct task_struct *target,
271 const struct user_regset *regset)
272{
273 struct pt_regs *regs = task_pt_regs(target);
274
275 return regs->sr & SR_DSP ? regset->n : 0;
276}
Paul Mundt5dadb342008-09-12 22:42:10 +0900277#endif
278
Paul Mundteaaaeef2010-06-14 15:16:53 +0900279const struct pt_regs_offset regoffset_table[] = {
280 REGS_OFFSET_NAME(0),
281 REGS_OFFSET_NAME(1),
282 REGS_OFFSET_NAME(2),
283 REGS_OFFSET_NAME(3),
284 REGS_OFFSET_NAME(4),
285 REGS_OFFSET_NAME(5),
286 REGS_OFFSET_NAME(6),
287 REGS_OFFSET_NAME(7),
288 REGS_OFFSET_NAME(8),
289 REGS_OFFSET_NAME(9),
290 REGS_OFFSET_NAME(10),
291 REGS_OFFSET_NAME(11),
292 REGS_OFFSET_NAME(12),
293 REGS_OFFSET_NAME(13),
294 REGS_OFFSET_NAME(14),
295 REGS_OFFSET_NAME(15),
296 REG_OFFSET_NAME(pc),
297 REG_OFFSET_NAME(pr),
298 REG_OFFSET_NAME(sr),
299 REG_OFFSET_NAME(gbr),
300 REG_OFFSET_NAME(mach),
301 REG_OFFSET_NAME(macl),
302 REG_OFFSET_NAME(tra),
303 REG_OFFSET_END,
304};
305
Paul Mundt934135c2008-09-12 19:52:36 +0900306/*
307 * These are our native regset flavours.
308 */
309enum sh_regset {
310 REGSET_GENERAL,
Paul Mundte7ab3cd2008-09-21 19:04:55 +0900311#ifdef CONFIG_SH_FPU
312 REGSET_FPU,
313#endif
Paul Mundt5dadb342008-09-12 22:42:10 +0900314#ifdef CONFIG_SH_DSP
315 REGSET_DSP,
316#endif
Paul Mundt934135c2008-09-12 19:52:36 +0900317};
318
319static const struct user_regset sh_regsets[] = {
320 /*
321 * Format is:
322 * R0 --> R15
323 * PC, PR, SR, GBR, MACH, MACL, TRA
324 */
325 [REGSET_GENERAL] = {
326 .core_note_type = NT_PRSTATUS,
327 .n = ELF_NGREG,
328 .size = sizeof(long),
329 .align = sizeof(long),
330 .get = genregs_get,
331 .set = genregs_set,
332 },
Paul Mundt5dadb342008-09-12 22:42:10 +0900333
Paul Mundte7ab3cd2008-09-21 19:04:55 +0900334#ifdef CONFIG_SH_FPU
335 [REGSET_FPU] = {
336 .core_note_type = NT_PRFPREG,
337 .n = sizeof(struct user_fpu_struct) / sizeof(long),
338 .size = sizeof(long),
339 .align = sizeof(long),
340 .get = fpregs_get,
341 .set = fpregs_set,
342 .active = fpregs_active,
343 },
344#endif
345
Paul Mundt5dadb342008-09-12 22:42:10 +0900346#ifdef CONFIG_SH_DSP
347 [REGSET_DSP] = {
348 .n = sizeof(struct pt_dspregs) / sizeof(long),
349 .size = sizeof(long),
350 .align = sizeof(long),
351 .get = dspregs_get,
352 .set = dspregs_set,
Paul Mundt72461992008-09-12 22:56:35 +0900353 .active = dspregs_active,
Paul Mundt5dadb342008-09-12 22:42:10 +0900354 },
355#endif
Paul Mundt934135c2008-09-12 19:52:36 +0900356};
357
358static const struct user_regset_view user_sh_native_view = {
359 .name = "sh",
360 .e_machine = EM_SH,
361 .regsets = sh_regsets,
362 .n = ARRAY_SIZE(sh_regsets),
363};
364
Paul Mundtf9540ec2008-09-12 22:42:43 +0900365const struct user_regset_view *task_user_regset_view(struct task_struct *task)
366{
367 return &user_sh_native_view;
368}
369
Namhyung Kim9b05a692010-10-27 15:33:47 -0700370long arch_ptrace(struct task_struct *child, long request,
371 unsigned long addr, unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
Paul Mundtfa439722008-09-04 18:53:58 +0900373 unsigned long __user *datap = (unsigned long __user *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 int ret;
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 switch (request) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 /* read the word at location addr in the USER area. */
378 case PTRACE_PEEKUSR: {
379 unsigned long tmp;
380
381 ret = -EIO;
Stuart Menefy9432f962007-02-23 13:22:17 +0900382 if ((addr & 3) || addr < 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 addr > sizeof(struct user) - 3)
384 break;
385
386 if (addr < sizeof(struct pt_regs))
387 tmp = get_stack_long(child, addr);
Namhyung Kim9e1cb202010-10-27 15:34:03 -0700388 else if (addr >= offsetof(struct user, fpu) &&
389 addr < offsetof(struct user, u_fpvalid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 if (!tsk_used_math(child)) {
Namhyung Kim9e1cb202010-10-27 15:34:03 -0700391 if (addr == offsetof(struct user, fpu.fpscr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 tmp = FPSCR_INIT;
393 else
394 tmp = 0;
Namhyung Kim9e1cb202010-10-27 15:34:03 -0700395 } else {
396 unsigned long index;
Phil Edworthyc49b6ec2011-03-18 14:16:31 +0000397 ret = init_fpu(child);
398 if (ret)
399 break;
Namhyung Kim9e1cb202010-10-27 15:34:03 -0700400 index = addr - offsetof(struct user, fpu);
Namhyung Kim9b05a692010-10-27 15:33:47 -0700401 tmp = ((unsigned long *)child->thread.xstate)
Namhyung Kim9e1cb202010-10-27 15:34:03 -0700402 [index >> 2];
403 }
404 } else if (addr == offsetof(struct user, u_fpvalid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 tmp = !!tsk_used_math(child);
Peter Griffinba0d4742009-05-08 15:50:54 +0100406 else if (addr == PT_TEXT_ADDR)
407 tmp = child->mm->start_code;
408 else if (addr == PT_DATA_ADDR)
409 tmp = child->mm->start_data;
410 else if (addr == PT_TEXT_END_ADDR)
411 tmp = child->mm->end_code;
412 else if (addr == PT_TEXT_LEN)
413 tmp = child->mm->end_code - child->mm->start_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 else
415 tmp = 0;
Paul Mundtfa439722008-09-04 18:53:58 +0900416 ret = put_user(tmp, datap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 break;
418 }
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 case PTRACE_POKEUSR: /* write the word at location addr in the USER area */
421 ret = -EIO;
Stuart Menefy9432f962007-02-23 13:22:17 +0900422 if ((addr & 3) || addr < 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 addr > sizeof(struct user) - 3)
424 break;
425
426 if (addr < sizeof(struct pt_regs))
427 ret = put_stack_long(child, addr, data);
Namhyung Kim9e1cb202010-10-27 15:34:03 -0700428 else if (addr >= offsetof(struct user, fpu) &&
429 addr < offsetof(struct user, u_fpvalid)) {
430 unsigned long index;
Phil Edworthyc49b6ec2011-03-18 14:16:31 +0000431 ret = init_fpu(child);
432 if (ret)
433 break;
Namhyung Kim9e1cb202010-10-27 15:34:03 -0700434 index = addr - offsetof(struct user, fpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 set_stopped_child_used_math(child);
Namhyung Kim9b05a692010-10-27 15:33:47 -0700436 ((unsigned long *)child->thread.xstate)
Namhyung Kim9e1cb202010-10-27 15:34:03 -0700437 [index >> 2] = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 ret = 0;
Namhyung Kim9e1cb202010-10-27 15:34:03 -0700439 } else if (addr == offsetof(struct user, u_fpvalid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 conditional_stopped_child_used_math(data, child);
441 ret = 0;
442 }
443 break;
444
Paul Mundt934135c2008-09-12 19:52:36 +0900445 case PTRACE_GETREGS:
446 return copy_regset_to_user(child, &user_sh_native_view,
447 REGSET_GENERAL,
448 0, sizeof(struct pt_regs),
Namhyung Kim9e1cb202010-10-27 15:34:03 -0700449 datap);
Paul Mundt934135c2008-09-12 19:52:36 +0900450 case PTRACE_SETREGS:
451 return copy_regset_from_user(child, &user_sh_native_view,
452 REGSET_GENERAL,
453 0, sizeof(struct pt_regs),
Namhyung Kim9e1cb202010-10-27 15:34:03 -0700454 datap);
Paul Mundte7ab3cd2008-09-21 19:04:55 +0900455#ifdef CONFIG_SH_FPU
456 case PTRACE_GETFPREGS:
457 return copy_regset_to_user(child, &user_sh_native_view,
458 REGSET_FPU,
459 0, sizeof(struct user_fpu_struct),
Namhyung Kim9e1cb202010-10-27 15:34:03 -0700460 datap);
Paul Mundte7ab3cd2008-09-21 19:04:55 +0900461 case PTRACE_SETFPREGS:
462 return copy_regset_from_user(child, &user_sh_native_view,
463 REGSET_FPU,
464 0, sizeof(struct user_fpu_struct),
Namhyung Kim9e1cb202010-10-27 15:34:03 -0700465 datap);
Paul Mundte7ab3cd2008-09-21 19:04:55 +0900466#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467#ifdef CONFIG_SH_DSP
Paul Mundt5dadb342008-09-12 22:42:10 +0900468 case PTRACE_GETDSPREGS:
469 return copy_regset_to_user(child, &user_sh_native_view,
470 REGSET_DSP,
471 0, sizeof(struct pt_dspregs),
Namhyung Kim9e1cb202010-10-27 15:34:03 -0700472 datap);
Paul Mundt5dadb342008-09-12 22:42:10 +0900473 case PTRACE_SETDSPREGS:
474 return copy_regset_from_user(child, &user_sh_native_view,
475 REGSET_DSP,
476 0, sizeof(struct pt_dspregs),
Namhyung Kim9e1cb202010-10-27 15:34:03 -0700477 datap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478#endif
479 default:
480 ret = ptrace_request(child, request, addr, data);
481 break;
482 }
Christoph Hellwig481bed42005-11-07 00:59:47 -0800483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 return ret;
485}
486
Paul Mundtab99c732008-07-30 19:55:30 +0900487asmlinkage long do_syscall_trace_enter(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
Paul Mundtab99c732008-07-30 19:55:30 +0900489 long ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Will Drewrye4da89d2012-04-17 14:48:57 -0500491 secure_computing_strict(regs->regs[0]);
Paul Mundtc4637d42008-07-30 15:30:52 +0900492
Paul Mundtab99c732008-07-30 19:55:30 +0900493 if (test_thread_flag(TIF_SYSCALL_TRACE) &&
494 tracehook_report_syscall_entry(regs))
495 /*
496 * Tracing decided this syscall should not happen.
497 * We'll return a bogus call number to get an ENOSYS
498 * error, but leave the original number in regs->regs[0].
499 */
500 ret = -1L;
Yuichi Nakamura1322b9d2007-11-10 19:21:34 +0900501
Paul Mundta74f7e02009-09-16 14:30:34 +0900502 if (unlikely(test_thread_flag(TIF_SYSCALL_TRACEPOINT)))
503 trace_sys_enter(regs, regs->regs[0]);
Matt Flemingc652d782009-07-06 20:16:33 +0900504
Eric Paris91397402014-03-11 13:29:28 -0400505 audit_syscall_entry(regs->regs[3], regs->regs[4], regs->regs[5],
Eric Parisb05d8442012-01-03 14:23:06 -0500506 regs->regs[6], regs->regs[7]);
Yuichi Nakamura1322b9d2007-11-10 19:21:34 +0900507
Paul Mundtab99c732008-07-30 19:55:30 +0900508 return ret ?: regs->regs[0];
509}
510
511asmlinkage void do_syscall_trace_leave(struct pt_regs *regs)
512{
513 int step;
514
Eric Parisd7e75282012-01-03 14:23:06 -0500515 audit_syscall_exit(regs);
Paul Mundtab99c732008-07-30 19:55:30 +0900516
Paul Mundta74f7e02009-09-16 14:30:34 +0900517 if (unlikely(test_thread_flag(TIF_SYSCALL_TRACEPOINT)))
518 trace_sys_exit(regs, regs->regs[0]);
Matt Flemingc652d782009-07-06 20:16:33 +0900519
Paul Mundtab99c732008-07-30 19:55:30 +0900520 step = test_thread_flag(TIF_SINGLESTEP);
521 if (step || test_thread_flag(TIF_SYSCALL_TRACE))
522 tracehook_report_syscall_exit(regs, step);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523}