ptrace_32.c 5.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8
/*
 * linux/arch/sh/kernel/ptrace.c
 *
 * Original x86 implementation:
 *	By Ross Biro 1/23/92
 *	edited by Linus Torvalds
 *
 * SuperH version:   Copyright (C) 1999, 2000  Kaz Kojima & Niibe Yutaka
Y
Yuichi Nakamura 已提交
9
 * Audit support: Yuichi Nakamura <ynakam@hitachisoft.jp>
L
Linus Torvalds 已提交
10 11 12 13 14 15 16 17 18 19
 */
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/mm.h>
#include <linux/smp.h>
#include <linux/errno.h>
#include <linux/ptrace.h>
#include <linux/user.h>
#include <linux/slab.h>
#include <linux/security.h>
20
#include <linux/signal.h>
S
Stuart Menefy 已提交
21
#include <linux/io.h>
Y
Yuichi Nakamura 已提交
22
#include <linux/audit.h>
P
Paul Mundt 已提交
23
#include <linux/seccomp.h>
L
Linus Torvalds 已提交
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
#include <asm/uaccess.h>
#include <asm/pgtable.h>
#include <asm/system.h>
#include <asm/processor.h>
#include <asm/mmu_context.h>

/*
 * does not yet catch signals sent when the child dies.
 * in exit.c or in signal.c.
 */

/*
 * This routine will get a word off of the process kernel stack.
 */
static inline int get_stack_long(struct task_struct *task, int offset)
{
	unsigned char *stack;

A
Al Viro 已提交
42
	stack = (unsigned char *)task_pt_regs(task);
L
Linus Torvalds 已提交
43 44 45 46 47 48 49 50 51 52 53 54
	stack += offset;
	return (*((int *)stack));
}

/*
 * This routine will put a word on the process kernel stack.
 */
static inline int put_stack_long(struct task_struct *task, int offset,
				 unsigned long data)
{
	unsigned char *stack;

A
Al Viro 已提交
55
	stack = (unsigned char *)task_pt_regs(task);
L
Linus Torvalds 已提交
56 57 58 59 60
	stack += offset;
	*(unsigned long *) stack = data;
	return 0;
}

61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
void user_enable_single_step(struct task_struct *child)
{
	struct pt_regs *regs = task_pt_regs(child);
	long pc;

	pc = get_stack_long(child, (long)&regs->pc);

	/* Next scheduling will set up UBC */
	if (child->thread.ubc_pc == 0)
		ubc_usercnt += 1;

	child->thread.ubc_pc = pc;

	set_tsk_thread_flag(child, TIF_SINGLESTEP);
}

void user_disable_single_step(struct task_struct *child)
S
Stuart Menefy 已提交
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
{
	clear_tsk_thread_flag(child, TIF_SINGLESTEP);

	/*
	 * Ensure the UBC is not programmed at the next context switch.
	 *
	 * Normally this is not needed but there are sequences such as
	 * singlestep, signal delivery, and continue that leave the
	 * ubc_pc non-zero leading to spurious SIGTRAPs.
	 */
	if (child->thread.ubc_pc != 0) {
		ubc_usercnt -= 1;
		child->thread.ubc_pc = 0;
	}
}

L
Linus Torvalds 已提交
94 95 96 97 98 99 100
/*
 * Called by kernel/ptrace.c when detaching..
 *
 * Make sure single step bits etc are not set.
 */
void ptrace_disable(struct task_struct *child)
{
101
	user_disable_single_step(child);
L
Linus Torvalds 已提交
102 103
}

104
long arch_ptrace(struct task_struct *child, long request, long addr, long data)
L
Linus Torvalds 已提交
105 106 107 108 109 110 111 112 113 114
{
	struct user * dummy = NULL;
	int ret;

	switch (request) {
	/* read the word at location addr in the USER area. */
	case PTRACE_PEEKUSR: {
		unsigned long tmp;

		ret = -EIO;
S
Stuart Menefy 已提交
115
		if ((addr & 3) || addr < 0 ||
L
Linus Torvalds 已提交
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
		    addr > sizeof(struct user) - 3)
			break;

		if (addr < sizeof(struct pt_regs))
			tmp = get_stack_long(child, addr);
		else if (addr >= (long) &dummy->fpu &&
			 addr < (long) &dummy->u_fpvalid) {
			if (!tsk_used_math(child)) {
				if (addr == (long)&dummy->fpu.fpscr)
					tmp = FPSCR_INIT;
				else
					tmp = 0;
			} else
				tmp = ((long *)&child->thread.fpu)
					[(addr - (long)&dummy->fpu) >> 2];
		} else if (addr == (long) &dummy->u_fpvalid)
			tmp = !!tsk_used_math(child);
		else
			tmp = 0;
135
		ret = put_user(tmp, (unsigned long __user *)data);
L
Linus Torvalds 已提交
136 137 138 139 140
		break;
	}

	case PTRACE_POKEUSR: /* write the word at location addr in the USER area */
		ret = -EIO;
S
Stuart Menefy 已提交
141
		if ((addr & 3) || addr < 0 ||
L
Linus Torvalds 已提交
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
		    addr > sizeof(struct user) - 3)
			break;

		if (addr < sizeof(struct pt_regs))
			ret = put_stack_long(child, addr, data);
		else if (addr >= (long) &dummy->fpu &&
			 addr < (long) &dummy->u_fpvalid) {
			set_stopped_child_used_math(child);
			((long *)&child->thread.fpu)
				[(addr - (long)&dummy->fpu) >> 2] = data;
			ret = 0;
		} else if (addr == (long) &dummy->u_fpvalid) {
			conditional_stopped_child_used_math(data, child);
			ret = 0;
		}
		break;

#ifdef CONFIG_SH_DSP
	case PTRACE_GETDSPREGS: {
		unsigned long dp;

		ret = -EIO;
		dp = ((unsigned long) child) + THREAD_SIZE -
			 sizeof(struct pt_dspregs);
		if (*((int *) (dp - 4)) == SR_FD) {
167
			copy_to_user((void *)addr, (void *) dp,
L
Linus Torvalds 已提交
168 169 170 171 172 173 174 175 176 177 178 179 180
				sizeof(struct pt_dspregs));
			ret = 0;
		}
		break;
	}

	case PTRACE_SETDSPREGS: {
		unsigned long dp;

		ret = -EIO;
		dp = ((unsigned long) child) + THREAD_SIZE -
			 sizeof(struct pt_dspregs);
		if (*((int *) (dp - 4)) == SR_FD) {
181
			copy_from_user((void *) dp, (void *)addr,
L
Linus Torvalds 已提交
182 183 184 185 186
				sizeof(struct pt_dspregs));
			ret = 0;
		}
		break;
	}
P
Paul Mundt 已提交
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
#endif
#ifdef CONFIG_BINFMT_ELF_FDPIC
	case PTRACE_GETFDPIC: {
		unsigned long tmp = 0;

		switch (addr) {
		case PTRACE_GETFDPIC_EXEC:
			tmp = child->mm->context.exec_fdpic_loadmap;
			break;
		case PTRACE_GETFDPIC_INTERP:
			tmp = child->mm->context.interp_fdpic_loadmap;
			break;
		default:
			break;
		}

		ret = 0;
		if (put_user(tmp, (unsigned long *) data)) {
			ret = -EFAULT;
			break;
		}
		break;
	}
L
Linus Torvalds 已提交
210 211 212 213 214
#endif
	default:
		ret = ptrace_request(child, request, addr, data);
		break;
	}
215

L
Linus Torvalds 已提交
216 217 218
	return ret;
}

Y
Yuichi Nakamura 已提交
219
asmlinkage void do_syscall_trace(struct pt_regs *regs, int entryexit)
L
Linus Torvalds 已提交
220 221 222
{
	struct task_struct *tsk = current;

P
Paul Mundt 已提交
223 224
	secure_computing(regs->regs[0]);

Y
Yuichi Nakamura 已提交
225 226 227 228
	if (unlikely(current->audit_context) && entryexit)
		audit_syscall_exit(AUDITSC_RESULT(regs->regs[0]),
				   regs->regs[0]);

S
Stuart Menefy 已提交
229 230
	if (!test_thread_flag(TIF_SYSCALL_TRACE) &&
	    !test_thread_flag(TIF_SINGLESTEP))
Y
Yuichi Nakamura 已提交
231
		goto out;
L
Linus Torvalds 已提交
232
	if (!(tsk->ptrace & PT_PTRACED))
Y
Yuichi Nakamura 已提交
233 234
		goto out;

L
Linus Torvalds 已提交
235 236
	/* the 0x80 provides a way for the tracing parent to distinguish
	   between a syscall stop and SIGTRAP delivery */
S
Stuart Menefy 已提交
237 238
	ptrace_notify(SIGTRAP | ((current->ptrace & PT_TRACESYSGOOD) &&
				 !test_thread_flag(TIF_SINGLESTEP) ? 0x80 : 0));
L
Linus Torvalds 已提交
239 240 241 242 243 244 245 246 247 248

	/*
	 * this isn't the same as continuing with a signal, but it will do
	 * for normal use.  strace only continues with a signal if the
	 * stopping signal is not SIGTRAP.  -brl
	 */
	if (tsk->exit_code) {
		send_sig(tsk->exit_code, tsk, 1);
		tsk->exit_code = 0;
	}
Y
Yuichi Nakamura 已提交
249 250 251 252 253 254 255

out:
	if (unlikely(current->audit_context) && !entryexit)
		audit_syscall_entry(AUDIT_ARCH_SH, regs->regs[3],
				    regs->regs[4], regs->regs[5],
				    regs->regs[6], regs->regs[7]);

L
Linus Torvalds 已提交
256
}