ptrace.c 7.49 KB
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/* 
 * Copyright (C) 2000 Jeff Dike (jdike@karaya.com)
 * Licensed under the GPL
 */

#include "linux/sched.h"
#include "linux/mm.h"
#include "linux/errno.h"
#include "linux/smp_lock.h"
#include "linux/security.h"
#include "linux/ptrace.h"
#include "linux/audit.h"
#ifdef CONFIG_PROC_MM
#include "linux/proc_mm.h"
#endif
#include "asm/ptrace.h"
#include "asm/uaccess.h"
#include "kern_util.h"
#include "skas_ptrace.h"
#include "sysdep/ptrace.h"
Jeff Dike's avatar
Jeff Dike committed
21
#include "os.h"
Linus Torvalds's avatar
Linus Torvalds committed
22

23 24 25 26 27 28 29 30 31
static inline void set_singlestepping(struct task_struct *child, int on)
{
        if (on)
                child->ptrace |= PT_DTRACE;
        else
                child->ptrace &= ~PT_DTRACE;
        child->thread.singlestep_syscall = 0;

#ifdef SUBARCH_SET_SINGLESTEPPING
32
        SUBARCH_SET_SINGLESTEPPING(child, on);
33
#endif
34
}
35

Linus Torvalds's avatar
Linus Torvalds committed
36 37 38 39 40
/*
 * Called by kernel/ptrace.c when detaching..
 */
void ptrace_disable(struct task_struct *child)
{ 
41
        set_singlestepping(child,0);
Linus Torvalds's avatar
Linus Torvalds committed
42 43
}

44 45 46
extern int peek_user(struct task_struct * child, long addr, long data);
extern int poke_user(struct task_struct * child, long addr, long data);

47
long arch_ptrace(struct task_struct *child, long request, long addr, long data)
Linus Torvalds's avatar
Linus Torvalds committed
48 49
{
	int i, ret;
Al Viro's avatar
Al Viro committed
50
	unsigned long __user *p = (void __user *)(unsigned long)data;
Linus Torvalds's avatar
Linus Torvalds committed
51 52 53 54

	switch (request) {
		/* when I and D space are separate, these will need to be fixed. */
	case PTRACE_PEEKTEXT: /* read word at location addr. */ 
55 56
	case PTRACE_PEEKDATA:
		ret = generic_ptrace_peekdata(child, addr, data);
Linus Torvalds's avatar
Linus Torvalds committed
57 58 59
		break;

	/* read the word at location addr in the USER area. */
60 61 62
        case PTRACE_PEEKUSR:
                ret = peek_user(child, addr, data);
                break;
Linus Torvalds's avatar
Linus Torvalds committed
63 64 65 66

	/* when I and D space are separate, this will have to be fixed. */
	case PTRACE_POKETEXT: /* write the word at location addr. */
	case PTRACE_POKEDATA:
67
		ret = generic_ptrace_pokedata(child, addr, data);
Linus Torvalds's avatar
Linus Torvalds committed
68 69 70
		break;

	case PTRACE_POKEUSR: /* write the word at location addr in the USER area */
71 72
                ret = poke_user(child, addr, data);
                break;
Linus Torvalds's avatar
Linus Torvalds committed
73 74 75 76

	case PTRACE_SYSCALL: /* continue and stop at next (return from) syscall */
	case PTRACE_CONT: { /* restart after signal. */
		ret = -EIO;
77
		if (!valid_signal(data))
Linus Torvalds's avatar
Linus Torvalds committed
78 79
			break;

80
                set_singlestepping(child, 0);
Linus Torvalds's avatar
Linus Torvalds committed
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
		if (request == PTRACE_SYSCALL) {
			set_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
		}
		else {
			clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
		}
		child->exit_code = data;
		wake_up_process(child);
		ret = 0;
		break;
	}

/*
 * make the child exit.  Best I can do is send it a sigkill. 
 * perhaps it should be put in the status that it wants to 
 * exit.
 */
	case PTRACE_KILL: {
		ret = 0;
		if (child->exit_state == EXIT_ZOMBIE)	/* already dead */
			break;

103
                set_singlestepping(child, 0);
Linus Torvalds's avatar
Linus Torvalds committed
104 105 106 107 108 109 110
		child->exit_code = SIGKILL;
		wake_up_process(child);
		break;
	}

	case PTRACE_SINGLESTEP: {  /* set the trap flag. */
		ret = -EIO;
111
		if (!valid_signal(data))
Linus Torvalds's avatar
Linus Torvalds committed
112 113
			break;
		clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
114
                set_singlestepping(child, 1);
Linus Torvalds's avatar
Linus Torvalds committed
115 116 117 118 119 120 121 122 123 124 125 126 127 128
		child->exit_code = data;
		/* give it a chance to run. */
		wake_up_process(child);
		ret = 0;
		break;
	}

	case PTRACE_DETACH:
		/* detach a process that was attached. */
		ret = ptrace_detach(child, data);
 		break;

#ifdef PTRACE_GETREGS
	case PTRACE_GETREGS: { /* Get all gp regs from the child. */
Al Viro's avatar
Al Viro committed
129
		if (!access_ok(VERIFY_WRITE, p, MAX_REG_OFFSET)) {
Linus Torvalds's avatar
Linus Torvalds committed
130 131 132 133
			ret = -EIO;
			break;
		}
		for ( i = 0; i < MAX_REG_OFFSET; i += sizeof(long) ) {
Al Viro's avatar
Al Viro committed
134 135
			__put_user(getreg(child, i), p);
			p++;
Linus Torvalds's avatar
Linus Torvalds committed
136 137 138 139 140 141 142 143
		}
		ret = 0;
		break;
	}
#endif
#ifdef PTRACE_SETREGS
	case PTRACE_SETREGS: { /* Set all gp regs in the child. */
		unsigned long tmp = 0;
Al Viro's avatar
Al Viro committed
144
		if (!access_ok(VERIFY_READ, p, MAX_REG_OFFSET)) {
Linus Torvalds's avatar
Linus Torvalds committed
145 146 147 148
			ret = -EIO;
			break;
		}
		for ( i = 0; i < MAX_REG_OFFSET; i += sizeof(long) ) {
Al Viro's avatar
Al Viro committed
149
			__get_user(tmp, p);
Linus Torvalds's avatar
Linus Torvalds committed
150
			putreg(child, i, tmp);
Al Viro's avatar
Al Viro committed
151
			p++;
Linus Torvalds's avatar
Linus Torvalds committed
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
		}
		ret = 0;
		break;
	}
#endif
#ifdef PTRACE_GETFPREGS
	case PTRACE_GETFPREGS: /* Get the child FPU state. */
		ret = get_fpregs(data, child);
		break;
#endif
#ifdef PTRACE_SETFPREGS
	case PTRACE_SETFPREGS: /* Set the child FPU state. */
	        ret = set_fpregs(data, child);
		break;
#endif
#ifdef PTRACE_GETFPXREGS
	case PTRACE_GETFPXREGS: /* Get the child FPU state. */
		ret = get_fpxregs(data, child);
		break;
#endif
#ifdef PTRACE_SETFPXREGS
	case PTRACE_SETFPXREGS: /* Set the child FPU state. */
		ret = set_fpxregs(data, child);
		break;
#endif
177 178 179 180 181 182 183 184 185 186
	case PTRACE_GET_THREAD_AREA:
		ret = ptrace_get_thread_area(child, addr,
					     (struct user_desc __user *) data);
		break;

	case PTRACE_SET_THREAD_AREA:
		ret = ptrace_set_thread_area(child, addr,
					     (struct user_desc __user *) data);
		break;

Linus Torvalds's avatar
Linus Torvalds committed
187
	case PTRACE_FAULTINFO: {
Al Viro's avatar
Al Viro committed
188 189 190 191 192 193
		/* Take the info from thread->arch->faultinfo,
		 * but transfer max. sizeof(struct ptrace_faultinfo).
		 * On i386, ptrace_faultinfo is smaller!
		 */
		ret = copy_to_user(p, &child->thread.arch.faultinfo,
				   sizeof(struct ptrace_faultinfo));
Linus Torvalds's avatar
Linus Torvalds committed
194 195 196 197 198
		if(ret)
			break;
		break;
	}

199
#ifdef PTRACE_LDT
Linus Torvalds's avatar
Linus Torvalds committed
200 201 202
	case PTRACE_LDT: {
		struct ptrace_ldt ldt;

Al Viro's avatar
Al Viro committed
203
		if(copy_from_user(&ldt, p, sizeof(ldt))){
Linus Torvalds's avatar
Linus Torvalds committed
204 205 206 207 208 209 210 211 212 213
			ret = -EIO;
			break;
		}

		/* This one is confusing, so just punt and return -EIO for 
		 * now
		 */
		ret = -EIO;
		break;
	}
214
#endif
Linus Torvalds's avatar
Linus Torvalds committed
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
#ifdef CONFIG_PROC_MM
	case PTRACE_SWITCH_MM: {
		struct mm_struct *old = child->mm;
		struct mm_struct *new = proc_mm_get_mm(data);

		if(IS_ERR(new)){
			ret = PTR_ERR(new);
			break;
		}

		atomic_inc(&new->mm_users);
		child->mm = new;
		child->active_mm = new;
		mmput(old);
		ret = 0;
		break;
	}
Jeff Dike's avatar
Jeff Dike committed
232 233 234 235 236 237
#endif
#ifdef PTRACE_ARCH_PRCTL
        case PTRACE_ARCH_PRCTL:
                /* XXX Calls ptrace on the host - needs some SMP thinking */
                ret = arch_prctl_skas(child, data, (void *) addr);
                break;
Linus Torvalds's avatar
Linus Torvalds committed
238 239 240 241 242
#endif
	default:
		ret = ptrace_request(child, request, addr, data);
		break;
	}
243

Linus Torvalds's avatar
Linus Torvalds committed
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
	return ret;
}

void send_sigtrap(struct task_struct *tsk, union uml_pt_regs *regs,
		  int error_code)
{
	struct siginfo info;

	memset(&info, 0, sizeof(info));
	info.si_signo = SIGTRAP;
	info.si_code = TRAP_BRKPT;

	/* User-mode eip? */
	info.si_addr = UPT_IS_USER(regs) ? (void __user *) UPT_IP(regs) : NULL;

	/* Send us the fakey SIGTRAP */
	force_sig_info(SIGTRAP, &info, tsk);
}

/* XXX Check PT_DTRACE vs TIF_SINGLESTEP for singlestepping check and
 * PT_PTRACED vs TIF_SYSCALL_TRACE for syscall tracing check
 */
void syscall_trace(union uml_pt_regs *regs, int entryexit)
{
	int is_singlestep = (current->ptrace & PT_DTRACE) && entryexit;
	int tracesysgood;

	if (unlikely(current->audit_context)) {
		if (!entryexit)
273
			audit_syscall_entry(HOST_AUDIT_ARCH,
274 275 276 277 278
					    UPT_SYSCALL_NR(regs),
					    UPT_SYSCALL_ARG1(regs),
					    UPT_SYSCALL_ARG2(regs),
					    UPT_SYSCALL_ARG3(regs),
					    UPT_SYSCALL_ARG4(regs));
279
		else audit_syscall_exit(AUDITSC_RESULT(UPT_SYSCALL_RET(regs)),
280
                                        UPT_SYSCALL_RET(regs));
Linus Torvalds's avatar
Linus Torvalds committed
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309
	}

	/* Fake a debug trap */
	if (is_singlestep)
		send_sigtrap(current, regs, 0);

	if (!test_thread_flag(TIF_SYSCALL_TRACE))
		return;

	if (!(current->ptrace & PT_PTRACED))
		return;

	/* the 0x80 provides a way for the tracing parent to distinguish
	   between a syscall stop and SIGTRAP delivery */
	tracesysgood = (current->ptrace & PT_TRACESYSGOOD);
	ptrace_notify(SIGTRAP | (tracesysgood ? 0x80 : 0));

	if (entryexit) /* force do_signal() --> is_syscall() */
		set_thread_flag(TIF_SIGPENDING);

	/* 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 (current->exit_code) {
		send_sig(current->exit_code, current, 1);
		current->exit_code = 0;
	}
}