blob: a3e651563763aaabf76818e68729a53bc98aeaf7 [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>
31#include <asm/system.h>
32#include <asm/processor.h>
33#include <asm/mmu_context.h>
Paul Mundtfa439722008-09-04 18:53:58 +090034#include <asm/syscalls.h>
Paul Mundte7ab3cd2008-09-21 19:04:55 +090035#include <asm/fpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Paul Mundta74f7e02009-09-16 14:30:34 +090037#define CREATE_TRACE_POINTS
38#include <trace/events/syscalls.h>
Matt Flemingc652d782009-07-06 20:16:33 +090039
Linus Torvalds1da177e2005-04-16 15:20:36 -070040/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 * This routine will get a word off of the process kernel stack.
42 */
43static inline int get_stack_long(struct task_struct *task, int offset)
44{
45 unsigned char *stack;
46
Al Viro3cf0f4e2006-01-12 01:05:44 -080047 stack = (unsigned char *)task_pt_regs(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 stack += offset;
49 return (*((int *)stack));
50}
51
52/*
53 * This routine will put a word on the process kernel stack.
54 */
55static inline int put_stack_long(struct task_struct *task, int offset,
56 unsigned long data)
57{
58 unsigned char *stack;
59
Al Viro3cf0f4e2006-01-12 01:05:44 -080060 stack = (unsigned char *)task_pt_regs(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 stack += offset;
62 *(unsigned long *) stack = data;
63 return 0;
64}
65
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +020066void ptrace_triggered(struct perf_event *bp,
Paul Mundt34d0b5a2009-12-28 17:53:47 +090067 struct perf_sample_data *data, struct pt_regs *regs)
68{
69 struct perf_event_attr attr;
70
71 /*
72 * Disable the breakpoint request here since ptrace has defined a
73 * one-shot behaviour for breakpoint exceptions.
74 */
75 attr = bp->attr;
76 attr.disabled = true;
77 modify_user_hw_breakpoint(bp, &attr);
78}
79
80static int set_single_step(struct task_struct *tsk, unsigned long addr)
81{
82 struct thread_struct *thread = &tsk->thread;
83 struct perf_event *bp;
84 struct perf_event_attr attr;
85
86 bp = thread->ptrace_bps[0];
87 if (!bp) {
Frederic Weisbecker73266fc2010-04-22 05:05:45 +020088 ptrace_breakpoint_init(&attr);
Paul Mundt34d0b5a2009-12-28 17:53:47 +090089
90 attr.bp_addr = addr;
91 attr.bp_len = HW_BREAKPOINT_LEN_2;
92 attr.bp_type = HW_BREAKPOINT_R;
93
Avi Kivity4dc0da82011-06-29 18:42:35 +030094 bp = register_user_hw_breakpoint(&attr, ptrace_triggered,
95 NULL, tsk);
Paul Mundt34d0b5a2009-12-28 17:53:47 +090096 if (IS_ERR(bp))
97 return PTR_ERR(bp);
98
99 thread->ptrace_bps[0] = bp;
100 } else {
101 int err;
102
103 attr = bp->attr;
104 attr.bp_addr = addr;
David Engraffb7f0452011-03-23 11:35:42 +0000105 /* reenable breakpoint */
106 attr.disabled = false;
Paul Mundt34d0b5a2009-12-28 17:53:47 +0900107 err = modify_user_hw_breakpoint(bp, &attr);
108 if (unlikely(err))
109 return err;
110 }
111
112 return 0;
113}
114
Paul Mundtc459dbf2008-07-30 19:09:31 +0900115void user_enable_single_step(struct task_struct *child)
116{
Paul Mundt34d0b5a2009-12-28 17:53:47 +0900117 unsigned long pc = get_stack_long(child, offsetof(struct pt_regs, pc));
Paul Mundtc459dbf2008-07-30 19:09:31 +0900118
119 set_tsk_thread_flag(child, TIF_SINGLESTEP);
Paul Mundt34d0b5a2009-12-28 17:53:47 +0900120
Frederic Weisbeckere0ac8452011-04-08 17:29:36 +0200121 if (ptrace_get_breakpoints(child) < 0)
122 return;
123
Paul Mundt34d0b5a2009-12-28 17:53:47 +0900124 set_single_step(child, pc);
Frederic Weisbeckere0ac8452011-04-08 17:29:36 +0200125 ptrace_put_breakpoints(child);
Paul Mundtc459dbf2008-07-30 19:09:31 +0900126}
127
128void user_disable_single_step(struct task_struct *child)
Stuart Menefy9432f962007-02-23 13:22:17 +0900129{
130 clear_tsk_thread_flag(child, TIF_SINGLESTEP);
Stuart Menefy9432f962007-02-23 13:22:17 +0900131}
132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133/*
134 * Called by kernel/ptrace.c when detaching..
135 *
136 * Make sure single step bits etc are not set.
137 */
138void ptrace_disable(struct task_struct *child)
139{
Paul Mundtc459dbf2008-07-30 19:09:31 +0900140 user_disable_single_step(child);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
Paul Mundt934135c2008-09-12 19:52:36 +0900143static int genregs_get(struct task_struct *target,
144 const struct user_regset *regset,
145 unsigned int pos, unsigned int count,
146 void *kbuf, void __user *ubuf)
147{
148 const struct pt_regs *regs = task_pt_regs(target);
149 int ret;
150
151 ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf,
152 regs->regs,
153 0, 16 * sizeof(unsigned long));
154 if (!ret)
155 /* PC, PR, SR, GBR, MACH, MACL, TRA */
156 ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf,
157 &regs->pc,
158 offsetof(struct pt_regs, pc),
159 sizeof(struct pt_regs));
160 if (!ret)
161 ret = user_regset_copyout_zero(&pos, &count, &kbuf, &ubuf,
162 sizeof(struct pt_regs), -1);
163
164 return ret;
165}
166
167static int genregs_set(struct task_struct *target,
168 const struct user_regset *regset,
169 unsigned int pos, unsigned int count,
170 const void *kbuf, const void __user *ubuf)
171{
172 struct pt_regs *regs = task_pt_regs(target);
173 int ret;
174
175 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
176 regs->regs,
177 0, 16 * sizeof(unsigned long));
178 if (!ret && count > 0)
179 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
180 &regs->pc,
181 offsetof(struct pt_regs, pc),
182 sizeof(struct pt_regs));
183 if (!ret)
184 ret = user_regset_copyin_ignore(&pos, &count, &kbuf, &ubuf,
185 sizeof(struct pt_regs), -1);
186
187 return ret;
188}
189
Paul Mundte7ab3cd2008-09-21 19:04:55 +0900190#ifdef CONFIG_SH_FPU
191int fpregs_get(struct task_struct *target,
192 const struct user_regset *regset,
193 unsigned int pos, unsigned int count,
194 void *kbuf, void __user *ubuf)
195{
196 int ret;
197
198 ret = init_fpu(target);
199 if (ret)
200 return ret;
201
202 if ((boot_cpu_data.flags & CPU_HAS_FPU))
203 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
Paul Mundt0ea820c2010-01-13 12:51:40 +0900204 &target->thread.xstate->hardfpu, 0, -1);
Paul Mundte7ab3cd2008-09-21 19:04:55 +0900205
206 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
Paul Mundt0ea820c2010-01-13 12:51:40 +0900207 &target->thread.xstate->softfpu, 0, -1);
Paul Mundte7ab3cd2008-09-21 19:04:55 +0900208}
209
210static int fpregs_set(struct task_struct *target,
211 const struct user_regset *regset,
212 unsigned int pos, unsigned int count,
213 const void *kbuf, const void __user *ubuf)
214{
215 int ret;
216
217 ret = init_fpu(target);
218 if (ret)
219 return ret;
220
221 set_stopped_child_used_math(target);
222
223 if ((boot_cpu_data.flags & CPU_HAS_FPU))
224 return user_regset_copyin(&pos, &count, &kbuf, &ubuf,
Paul Mundt0ea820c2010-01-13 12:51:40 +0900225 &target->thread.xstate->hardfpu, 0, -1);
Paul Mundte7ab3cd2008-09-21 19:04:55 +0900226
227 return user_regset_copyin(&pos, &count, &kbuf, &ubuf,
Paul Mundt0ea820c2010-01-13 12:51:40 +0900228 &target->thread.xstate->softfpu, 0, -1);
Paul Mundte7ab3cd2008-09-21 19:04:55 +0900229}
230
231static int fpregs_active(struct task_struct *target,
232 const struct user_regset *regset)
233{
234 return tsk_used_math(target) ? regset->n : 0;
235}
236#endif
237
Paul Mundt5dadb342008-09-12 22:42:10 +0900238#ifdef CONFIG_SH_DSP
239static int dspregs_get(struct task_struct *target,
240 const struct user_regset *regset,
241 unsigned int pos, unsigned int count,
242 void *kbuf, void __user *ubuf)
243{
Michael Trimarchi01ab1032009-04-03 17:32:33 +0000244 const struct pt_dspregs *regs =
245 (struct pt_dspregs *)&target->thread.dsp_status.dsp_regs;
Paul Mundt5dadb342008-09-12 22:42:10 +0900246 int ret;
247
248 ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf, regs,
249 0, sizeof(struct pt_dspregs));
250 if (!ret)
251 ret = user_regset_copyout_zero(&pos, &count, &kbuf, &ubuf,
252 sizeof(struct pt_dspregs), -1);
253
254 return ret;
255}
256
257static int dspregs_set(struct task_struct *target,
258 const struct user_regset *regset,
259 unsigned int pos, unsigned int count,
260 const void *kbuf, const void __user *ubuf)
261{
Michael Trimarchi01ab1032009-04-03 17:32:33 +0000262 struct pt_dspregs *regs =
263 (struct pt_dspregs *)&target->thread.dsp_status.dsp_regs;
Paul Mundt5dadb342008-09-12 22:42:10 +0900264 int ret;
265
266 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, regs,
267 0, sizeof(struct pt_dspregs));
268 if (!ret)
269 ret = user_regset_copyin_ignore(&pos, &count, &kbuf, &ubuf,
270 sizeof(struct pt_dspregs), -1);
271
272 return ret;
273}
Paul Mundt72461992008-09-12 22:56:35 +0900274
275static int dspregs_active(struct task_struct *target,
276 const struct user_regset *regset)
277{
278 struct pt_regs *regs = task_pt_regs(target);
279
280 return regs->sr & SR_DSP ? regset->n : 0;
281}
Paul Mundt5dadb342008-09-12 22:42:10 +0900282#endif
283
Paul Mundteaaaeef2010-06-14 15:16:53 +0900284const struct pt_regs_offset regoffset_table[] = {
285 REGS_OFFSET_NAME(0),
286 REGS_OFFSET_NAME(1),
287 REGS_OFFSET_NAME(2),
288 REGS_OFFSET_NAME(3),
289 REGS_OFFSET_NAME(4),
290 REGS_OFFSET_NAME(5),
291 REGS_OFFSET_NAME(6),
292 REGS_OFFSET_NAME(7),
293 REGS_OFFSET_NAME(8),
294 REGS_OFFSET_NAME(9),
295 REGS_OFFSET_NAME(10),
296 REGS_OFFSET_NAME(11),
297 REGS_OFFSET_NAME(12),
298 REGS_OFFSET_NAME(13),
299 REGS_OFFSET_NAME(14),
300 REGS_OFFSET_NAME(15),
301 REG_OFFSET_NAME(pc),
302 REG_OFFSET_NAME(pr),
303 REG_OFFSET_NAME(sr),
304 REG_OFFSET_NAME(gbr),
305 REG_OFFSET_NAME(mach),
306 REG_OFFSET_NAME(macl),
307 REG_OFFSET_NAME(tra),
308 REG_OFFSET_END,
309};
310
Paul Mundt934135c2008-09-12 19:52:36 +0900311/*
312 * These are our native regset flavours.
313 */
314enum sh_regset {
315 REGSET_GENERAL,
Paul Mundte7ab3cd2008-09-21 19:04:55 +0900316#ifdef CONFIG_SH_FPU
317 REGSET_FPU,
318#endif
Paul Mundt5dadb342008-09-12 22:42:10 +0900319#ifdef CONFIG_SH_DSP
320 REGSET_DSP,
321#endif
Paul Mundt934135c2008-09-12 19:52:36 +0900322};
323
324static const struct user_regset sh_regsets[] = {
325 /*
326 * Format is:
327 * R0 --> R15
328 * PC, PR, SR, GBR, MACH, MACL, TRA
329 */
330 [REGSET_GENERAL] = {
331 .core_note_type = NT_PRSTATUS,
332 .n = ELF_NGREG,
333 .size = sizeof(long),
334 .align = sizeof(long),
335 .get = genregs_get,
336 .set = genregs_set,
337 },
Paul Mundt5dadb342008-09-12 22:42:10 +0900338
Paul Mundte7ab3cd2008-09-21 19:04:55 +0900339#ifdef CONFIG_SH_FPU
340 [REGSET_FPU] = {
341 .core_note_type = NT_PRFPREG,
342 .n = sizeof(struct user_fpu_struct) / sizeof(long),
343 .size = sizeof(long),
344 .align = sizeof(long),
345 .get = fpregs_get,
346 .set = fpregs_set,
347 .active = fpregs_active,
348 },
349#endif
350
Paul Mundt5dadb342008-09-12 22:42:10 +0900351#ifdef CONFIG_SH_DSP
352 [REGSET_DSP] = {
353 .n = sizeof(struct pt_dspregs) / sizeof(long),
354 .size = sizeof(long),
355 .align = sizeof(long),
356 .get = dspregs_get,
357 .set = dspregs_set,
Paul Mundt72461992008-09-12 22:56:35 +0900358 .active = dspregs_active,
Paul Mundt5dadb342008-09-12 22:42:10 +0900359 },
360#endif
Paul Mundt934135c2008-09-12 19:52:36 +0900361};
362
363static const struct user_regset_view user_sh_native_view = {
364 .name = "sh",
365 .e_machine = EM_SH,
366 .regsets = sh_regsets,
367 .n = ARRAY_SIZE(sh_regsets),
368};
369
Paul Mundtf9540ec2008-09-12 22:42:43 +0900370const struct user_regset_view *task_user_regset_view(struct task_struct *task)
371{
372 return &user_sh_native_view;
373}
374
Namhyung Kim9b05a692010-10-27 15:33:47 -0700375long arch_ptrace(struct task_struct *child, long request,
376 unsigned long addr, unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
Paul Mundtfa439722008-09-04 18:53:58 +0900378 unsigned long __user *datap = (unsigned long __user *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 int ret;
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 switch (request) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 /* read the word at location addr in the USER area. */
383 case PTRACE_PEEKUSR: {
384 unsigned long tmp;
385
386 ret = -EIO;
Stuart Menefy9432f962007-02-23 13:22:17 +0900387 if ((addr & 3) || addr < 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 addr > sizeof(struct user) - 3)
389 break;
390
391 if (addr < sizeof(struct pt_regs))
392 tmp = get_stack_long(child, addr);
Namhyung Kim9e1cb202010-10-27 15:34:03 -0700393 else if (addr >= offsetof(struct user, fpu) &&
394 addr < offsetof(struct user, u_fpvalid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 if (!tsk_used_math(child)) {
Namhyung Kim9e1cb202010-10-27 15:34:03 -0700396 if (addr == offsetof(struct user, fpu.fpscr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 tmp = FPSCR_INIT;
398 else
399 tmp = 0;
Namhyung Kim9e1cb202010-10-27 15:34:03 -0700400 } else {
401 unsigned long index;
Phil Edworthyc49b6ec2011-03-18 14:16:31 +0000402 ret = init_fpu(child);
403 if (ret)
404 break;
Namhyung Kim9e1cb202010-10-27 15:34:03 -0700405 index = addr - offsetof(struct user, fpu);
Namhyung Kim9b05a692010-10-27 15:33:47 -0700406 tmp = ((unsigned long *)child->thread.xstate)
Namhyung Kim9e1cb202010-10-27 15:34:03 -0700407 [index >> 2];
408 }
409 } else if (addr == offsetof(struct user, u_fpvalid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 tmp = !!tsk_used_math(child);
Peter Griffinba0d4742009-05-08 15:50:54 +0100411 else if (addr == PT_TEXT_ADDR)
412 tmp = child->mm->start_code;
413 else if (addr == PT_DATA_ADDR)
414 tmp = child->mm->start_data;
415 else if (addr == PT_TEXT_END_ADDR)
416 tmp = child->mm->end_code;
417 else if (addr == PT_TEXT_LEN)
418 tmp = child->mm->end_code - child->mm->start_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 else
420 tmp = 0;
Paul Mundtfa439722008-09-04 18:53:58 +0900421 ret = put_user(tmp, datap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 break;
423 }
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 case PTRACE_POKEUSR: /* write the word at location addr in the USER area */
426 ret = -EIO;
Stuart Menefy9432f962007-02-23 13:22:17 +0900427 if ((addr & 3) || addr < 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 addr > sizeof(struct user) - 3)
429 break;
430
431 if (addr < sizeof(struct pt_regs))
432 ret = put_stack_long(child, addr, data);
Namhyung Kim9e1cb202010-10-27 15:34:03 -0700433 else if (addr >= offsetof(struct user, fpu) &&
434 addr < offsetof(struct user, u_fpvalid)) {
435 unsigned long index;
Phil Edworthyc49b6ec2011-03-18 14:16:31 +0000436 ret = init_fpu(child);
437 if (ret)
438 break;
Namhyung Kim9e1cb202010-10-27 15:34:03 -0700439 index = addr - offsetof(struct user, fpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 set_stopped_child_used_math(child);
Namhyung Kim9b05a692010-10-27 15:33:47 -0700441 ((unsigned long *)child->thread.xstate)
Namhyung Kim9e1cb202010-10-27 15:34:03 -0700442 [index >> 2] = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 ret = 0;
Namhyung Kim9e1cb202010-10-27 15:34:03 -0700444 } else if (addr == offsetof(struct user, u_fpvalid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 conditional_stopped_child_used_math(data, child);
446 ret = 0;
447 }
448 break;
449
Paul Mundt934135c2008-09-12 19:52:36 +0900450 case PTRACE_GETREGS:
451 return copy_regset_to_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 Mundt934135c2008-09-12 19:52:36 +0900455 case PTRACE_SETREGS:
456 return copy_regset_from_user(child, &user_sh_native_view,
457 REGSET_GENERAL,
458 0, sizeof(struct pt_regs),
Namhyung Kim9e1cb202010-10-27 15:34:03 -0700459 datap);
Paul Mundte7ab3cd2008-09-21 19:04:55 +0900460#ifdef CONFIG_SH_FPU
461 case PTRACE_GETFPREGS:
462 return copy_regset_to_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 case PTRACE_SETFPREGS:
467 return copy_regset_from_user(child, &user_sh_native_view,
468 REGSET_FPU,
469 0, sizeof(struct user_fpu_struct),
Namhyung Kim9e1cb202010-10-27 15:34:03 -0700470 datap);
Paul Mundte7ab3cd2008-09-21 19:04:55 +0900471#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472#ifdef CONFIG_SH_DSP
Paul Mundt5dadb342008-09-12 22:42:10 +0900473 case PTRACE_GETDSPREGS:
474 return copy_regset_to_user(child, &user_sh_native_view,
475 REGSET_DSP,
476 0, sizeof(struct pt_dspregs),
Namhyung Kim9e1cb202010-10-27 15:34:03 -0700477 datap);
Paul Mundt5dadb342008-09-12 22:42:10 +0900478 case PTRACE_SETDSPREGS:
479 return copy_regset_from_user(child, &user_sh_native_view,
480 REGSET_DSP,
481 0, sizeof(struct pt_dspregs),
Namhyung Kim9e1cb202010-10-27 15:34:03 -0700482 datap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483#endif
484 default:
485 ret = ptrace_request(child, request, addr, data);
486 break;
487 }
Christoph Hellwig481bed42005-11-07 00:59:47 -0800488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 return ret;
490}
491
Paul Mundt9e5e2112008-07-30 20:05:35 +0900492static inline int audit_arch(void)
493{
494 int arch = EM_SH;
495
496#ifdef CONFIG_CPU_LITTLE_ENDIAN
497 arch |= __AUDIT_ARCH_LE;
498#endif
499
500 return arch;
501}
502
Paul Mundtab99c732008-07-30 19:55:30 +0900503asmlinkage long do_syscall_trace_enter(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
Paul Mundtab99c732008-07-30 19:55:30 +0900505 long ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Paul Mundtc4637d42008-07-30 15:30:52 +0900507 secure_computing(regs->regs[0]);
508
Paul Mundtab99c732008-07-30 19:55:30 +0900509 if (test_thread_flag(TIF_SYSCALL_TRACE) &&
510 tracehook_report_syscall_entry(regs))
511 /*
512 * Tracing decided this syscall should not happen.
513 * We'll return a bogus call number to get an ENOSYS
514 * error, but leave the original number in regs->regs[0].
515 */
516 ret = -1L;
Yuichi Nakamura1322b9d2007-11-10 19:21:34 +0900517
Paul Mundta74f7e02009-09-16 14:30:34 +0900518 if (unlikely(test_thread_flag(TIF_SYSCALL_TRACEPOINT)))
519 trace_sys_enter(regs, regs->regs[0]);
Matt Flemingc652d782009-07-06 20:16:33 +0900520
Eric Parisb05d8442012-01-03 14:23:06 -0500521 audit_syscall_entry(audit_arch(), regs->regs[3],
522 regs->regs[4], regs->regs[5],
523 regs->regs[6], regs->regs[7]);
Yuichi Nakamura1322b9d2007-11-10 19:21:34 +0900524
Paul Mundtab99c732008-07-30 19:55:30 +0900525 return ret ?: regs->regs[0];
526}
527
528asmlinkage void do_syscall_trace_leave(struct pt_regs *regs)
529{
530 int step;
531
Eric Parisd7e75282012-01-03 14:23:06 -0500532 audit_syscall_exit(regs);
Paul Mundtab99c732008-07-30 19:55:30 +0900533
Paul Mundta74f7e02009-09-16 14:30:34 +0900534 if (unlikely(test_thread_flag(TIF_SYSCALL_TRACEPOINT)))
535 trace_sys_exit(regs, regs->regs[0]);
Matt Flemingc652d782009-07-06 20:16:33 +0900536
Paul Mundtab99c732008-07-30 19:55:30 +0900537 step = test_thread_flag(TIF_SINGLESTEP);
538 if (step || test_thread_flag(TIF_SYSCALL_TRACE))
539 tracehook_report_syscall_exit(regs, step);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540}