Home | History | Annotate | Line # | Download | only in arm
linux_ptrace.c revision 1.14.6.2
      1  1.14.6.2     rmind /*	$NetBSD: linux_ptrace.c,v 1.14.6.2 2011/03/05 20:52:43 rmind Exp $	*/
      2       1.2     bjh21 
      3       1.2     bjh21 /*-
      4       1.2     bjh21  * Copyright (c) 1999 The NetBSD Foundation, Inc.
      5       1.2     bjh21  * All rights reserved.
      6       1.2     bjh21  *
      7       1.2     bjh21  * This code is derived from software contributed to The NetBSD Foundation
      8       1.2     bjh21  * by Matthias Scheler.
      9       1.2     bjh21  *
     10       1.2     bjh21  * Redistribution and use in source and binary forms, with or without
     11       1.2     bjh21  * modification, are permitted provided that the following conditions
     12       1.2     bjh21  * are met:
     13       1.2     bjh21  * 1. Redistributions of source code must retain the above copyright
     14       1.2     bjh21  *    notice, this list of conditions and the following disclaimer.
     15       1.2     bjh21  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.2     bjh21  *    notice, this list of conditions and the following disclaimer in the
     17       1.2     bjh21  *    documentation and/or other materials provided with the distribution.
     18       1.2     bjh21  *
     19       1.2     bjh21  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20       1.2     bjh21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21       1.2     bjh21  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22       1.2     bjh21  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23       1.2     bjh21  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24       1.2     bjh21  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25       1.2     bjh21  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26       1.2     bjh21  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27       1.2     bjh21  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28       1.2     bjh21  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29       1.2     bjh21  * POSSIBILITY OF SUCH DAMAGE.
     30       1.2     bjh21  */
     31       1.2     bjh21 
     32       1.2     bjh21 
     33       1.2     bjh21 #include <sys/cdefs.h>
     34  1.14.6.2     rmind __KERNEL_RCSID(0, "$NetBSD: linux_ptrace.c,v 1.14.6.2 2011/03/05 20:52:43 rmind Exp $");
     35       1.1     bjh21 
     36       1.1     bjh21 #include <sys/param.h>
     37       1.2     bjh21 #include <sys/malloc.h>
     38       1.2     bjh21 #include <sys/mount.h>
     39       1.2     bjh21 #include <sys/proc.h>
     40       1.2     bjh21 #include <sys/ptrace.h>
     41       1.2     bjh21 #include <sys/systm.h>
     42       1.2     bjh21 #include <sys/syscallargs.h>
     43       1.2     bjh21 #include <uvm/uvm_extern.h>
     44       1.2     bjh21 
     45       1.2     bjh21 #include <machine/reg.h>
     46       1.2     bjh21 
     47       1.2     bjh21 #include <compat/linux/common/linux_types.h>
     48       1.2     bjh21 #include <compat/linux/common/linux_ptrace.h>
     49       1.2     bjh21 #include <compat/linux/common/linux_signal.h>
     50       1.2     bjh21 
     51       1.2     bjh21 #include <compat/linux/common/linux_util.h>
     52       1.2     bjh21 #include <compat/linux/common/linux_machdep.h>
     53       1.2     bjh21 #include <compat/linux/common/linux_emuldata.h>
     54       1.2     bjh21 #include <compat/linux/common/linux_exec.h>	/* for emul_linux */
     55       1.2     bjh21 
     56       1.2     bjh21 #include <compat/linux/linux_syscallargs.h>
     57       1.1     bjh21 
     58       1.2     bjh21 #include <lib/libkern/libkern.h>	/* for offsetof() */
     59       1.1     bjh21 
     60       1.2     bjh21 /*
     61       1.2     bjh21  * On ARMv2, uregs contains R0--R15, orig_R0.
     62       1.2     bjh21  * On ARMv3 and later, it's R0--R15, CPSR, orig_R0.
     63       1.2     bjh21  * As far as I can see, Linux doesn't initialise orig_R0 on ARMv2, so we
     64       1.2     bjh21  * just produce the ARMv3 version.
     65       1.2     bjh21  */
     66       1.2     bjh21 
     67       1.2     bjh21 struct linux_reg {
     68       1.2     bjh21 	long uregs[18];
     69       1.2     bjh21 };
     70       1.2     bjh21 
     71       1.2     bjh21 #define LINUX_REG_R0	0
     72       1.2     bjh21 #define LINUX_REG_R1	1
     73       1.2     bjh21 #define LINUX_REG_R2	2
     74       1.2     bjh21 #define LINUX_REG_R3	3
     75       1.2     bjh21 #define LINUX_REG_R4	4
     76       1.2     bjh21 #define LINUX_REG_R5	5
     77       1.2     bjh21 #define LINUX_REG_R6	6
     78       1.2     bjh21 #define LINUX_REG_R7	7
     79       1.2     bjh21 #define LINUX_REG_R8	8
     80       1.2     bjh21 #define LINUX_REG_R9	9
     81       1.2     bjh21 #define LINUX_REG_R10	10
     82       1.2     bjh21 #define LINUX_REG_FP	11
     83       1.2     bjh21 #define LINUX_REG_IP	12
     84       1.2     bjh21 #define LINUX_REG_SP	13
     85       1.2     bjh21 #define LINUX_REG_LR	14
     86       1.2     bjh21 #define LINUX_REG_PC	15
     87       1.2     bjh21 #define LINUX_REG_CPSR	16
     88       1.2     bjh21 #define LINUX_REG_ORIG_R0 17
     89       1.2     bjh21 
     90      1.12        ad int linux_ptrace_disabled = 1;	/* bitrotted */
     91      1.12        ad 
     92       1.1     bjh21 int
     93  1.14.6.1     rmind linux_sys_ptrace_arch(struct lwp *l, const struct linux_sys_ptrace_args *uap,
     94  1.14.6.1     rmind     register_t *retval)
     95       1.1     bjh21 {
     96      1.11       dsl 	/* {
     97       1.2     bjh21 		syscallarg(int) request;
     98       1.2     bjh21 		syscallarg(int) pid;
     99       1.2     bjh21 		syscallarg(int) addr;
    100       1.2     bjh21 		syscallarg(int) data;
    101      1.11       dsl 	} */
    102  1.14.6.1     rmind 	struct proc *p = l->l_proc, *t;
    103       1.3   thorpej 	struct lwp *lt;
    104  1.14.6.2     rmind #ifdef _ARM_ARCH_6
    105  1.14.6.2     rmind 	struct pcb *pcb;
    106  1.14.6.2     rmind 	void *val;
    107  1.14.6.2     rmind #endif
    108       1.2     bjh21 	struct reg *regs = NULL;
    109       1.2     bjh21 	struct linux_reg *linux_regs = NULL;
    110  1.14.6.1     rmind 	int request, error;
    111       1.2     bjh21 
    112      1.12        ad 	if (linux_ptrace_disabled)
    113      1.12        ad 		return ENOSYS;
    114      1.12        ad 
    115  1.14.6.1     rmind 	error = 0;
    116       1.2     bjh21 	request = SCARG(uap, request);
    117  1.14.6.1     rmind 	regs = kmem_alloc(sizeof(struct reg), KM_SLEEP);
    118  1.14.6.1     rmind 	linux_regs = kmem_alloc(sizeof(struct linux_reg), KM_SLEEP);
    119       1.2     bjh21 
    120  1.14.6.1     rmind 	switch (request) {
    121  1.14.6.1     rmind 	case LINUX_PTRACE_GETREGS:
    122  1.14.6.1     rmind 		break;
    123  1.14.6.1     rmind 	case LINUX_PTRACE_SETREGS:
    124  1.14.6.1     rmind 		error = copyin((void *)SCARG(uap, data), linux_regs,
    125  1.14.6.1     rmind 		    sizeof(struct linux_reg));
    126  1.14.6.1     rmind 		if (error) {
    127  1.14.6.1     rmind 			goto out;
    128  1.14.6.1     rmind 		}
    129  1.14.6.1     rmind 		break;
    130  1.14.6.1     rmind 	default:
    131  1.14.6.1     rmind 		error = EIO;
    132  1.14.6.1     rmind 		goto out;
    133  1.14.6.1     rmind 	}
    134       1.2     bjh21 
    135  1.14.6.1     rmind 	/* Find the process we are supposed to be operating on. */
    136  1.14.6.1     rmind 	mutex_enter(proc_lock);
    137  1.14.6.1     rmind 	if ((t = proc_find(SCARG(uap, pid))) == NULL) {
    138  1.14.6.1     rmind 		mutex_exit(proc_lock);
    139  1.14.6.1     rmind 		error = ESRCH;
    140  1.14.6.1     rmind 		goto out;
    141  1.14.6.1     rmind 	}
    142  1.14.6.1     rmind 	mutex_enter(t->p_lock);
    143  1.14.6.1     rmind 	mutex_exit(proc_lock);
    144       1.2     bjh21 
    145       1.2     bjh21 	/*
    146  1.14.6.1     rmind 	 * You cannot do what you want to the process if:
    147  1.14.6.1     rmind 	 * 1. It is not being traced at all,
    148       1.2     bjh21 	 */
    149  1.14.6.1     rmind 	if (!ISSET(t->p_slflag, PSL_TRACED)) {
    150  1.14.6.1     rmind 		mutex_exit(t->p_lock);
    151  1.14.6.1     rmind 		error = EPERM;
    152  1.14.6.1     rmind 		goto out;
    153  1.14.6.1     rmind 	}
    154       1.2     bjh21 	/*
    155  1.14.6.1     rmind 	 * 2. It is being traced by procfs (which has different signal
    156  1.14.6.1     rmind 	 *    delivery semantics),
    157  1.14.6.1     rmind 	 * 3. It is not being traced by _you_, or
    158  1.14.6.1     rmind 	 * 4. It is not currently stopped.
    159       1.3   thorpej 	 */
    160  1.14.6.1     rmind 	if (ISSET(t->p_slflag, PSL_FSTRACE) || t->p_pptr != p ||
    161  1.14.6.1     rmind 	    t->p_stat != SSTOP || !t->p_waited) {
    162  1.14.6.1     rmind 		mutex_exit(t->p_lock);
    163  1.14.6.1     rmind 		error = EBUSY;
    164  1.14.6.1     rmind 		goto out;
    165  1.14.6.1     rmind 	}
    166  1.14.6.1     rmind 	/* XXX: ptrace needs revamp for multi-threading support. */
    167  1.14.6.1     rmind 	if (t->p_nlwps > 1) {
    168  1.14.6.1     rmind 		mutex_exit(t->p_lock);
    169  1.14.6.1     rmind 		error = ENOSYS;
    170  1.14.6.1     rmind 		goto out;
    171  1.14.6.1     rmind 	}
    172       1.3   thorpej 	lt = LIST_FIRST(&t->p_lwps);
    173       1.2     bjh21 	*retval = 0;
    174       1.2     bjh21 
    175       1.2     bjh21 	switch (request) {
    176  1.14.6.1     rmind 	case LINUX_PTRACE_GETREGS:
    177       1.3   thorpej 		error = process_read_regs(lt, regs);
    178  1.14.6.1     rmind 		mutex_exit(t->p_lock);
    179  1.14.6.1     rmind 		if (error) {
    180  1.14.6.1     rmind 			break;
    181  1.14.6.1     rmind 		}
    182       1.2     bjh21 		memcpy(linux_regs->uregs, regs->r, 13 * sizeof(register_t));
    183       1.2     bjh21 		linux_regs->uregs[LINUX_REG_SP] = regs->r_sp;
    184       1.2     bjh21 		linux_regs->uregs[LINUX_REG_LR] = regs->r_lr;
    185       1.2     bjh21 		linux_regs->uregs[LINUX_REG_PC] = regs->r_pc;
    186       1.2     bjh21 		linux_regs->uregs[LINUX_REG_CPSR] = regs->r_cpsr;
    187       1.2     bjh21 		linux_regs->uregs[LINUX_REG_ORIG_R0] = regs->r[0];
    188       1.2     bjh21 
    189       1.9  christos 		error = copyout(linux_regs, (void *)SCARG(uap, data),
    190       1.2     bjh21 		    sizeof(struct linux_reg));
    191  1.14.6.1     rmind 		break;
    192       1.2     bjh21 
    193  1.14.6.1     rmind 	case LINUX_PTRACE_SETREGS:
    194       1.2     bjh21 		memcpy(regs->r, linux_regs->uregs, 13 * sizeof(register_t));
    195       1.2     bjh21 		regs->r_sp = linux_regs->uregs[LINUX_REG_SP];
    196       1.2     bjh21 		regs->r_lr = linux_regs->uregs[LINUX_REG_LR];
    197       1.2     bjh21 		regs->r_pc = linux_regs->uregs[LINUX_REG_PC];
    198       1.2     bjh21 		regs->r_cpsr = linux_regs->uregs[LINUX_REG_CPSR];
    199       1.3   thorpej 		error = process_write_regs(lt, regs);
    200  1.14.6.2     rmind 		mutex_exit(t->p_lock);
    201  1.14.6.2     rmind 		break;
    202  1.14.6.2     rmind 
    203  1.14.6.2     rmind #ifdef _ARM_ARCH_6
    204  1.14.6.2     rmind #define LINUX_PTRACE_GET_THREAD_AREA	22
    205  1.14.6.2     rmind 	case LINUX_PTRACE_GET_THREAD_AREA:
    206  1.14.6.2     rmind 		mutex_exit(t->p_lock);
    207  1.14.6.2     rmind 		pcb = lwp_getpcb(l);
    208  1.14.6.2     rmind 		val = (void *)pcb->pcb_un.un_32.pcb32_user_pid_ro;
    209  1.14.6.2     rmind 		error = copyout(&val, (void *)SCARG(uap, data), sizeof(val));
    210  1.14.6.2     rmind 		break;
    211  1.14.6.2     rmind #endif
    212  1.14.6.2     rmind 
    213       1.2     bjh21 	default:
    214  1.14.6.1     rmind 		mutex_exit(t->p_lock);
    215       1.2     bjh21 	}
    216  1.14.6.1     rmind out:
    217       1.2     bjh21 	if (regs)
    218  1.14.6.1     rmind 		kmem_free(regs, sizeof(*regs));
    219       1.2     bjh21 	if (linux_regs)
    220  1.14.6.1     rmind 		kmem_free(linux_regs, sizeof(*linux_regs));
    221  1.14.6.1     rmind 	return error;
    222       1.1     bjh21 
    223       1.1     bjh21 }
    224