Home | History | Annotate | Line # | Download | only in arm
linux_ptrace.c revision 1.15
      1  1.15     rmind /*	$NetBSD: linux_ptrace.c,v 1.15 2010/07/01 02:38:28 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.15     rmind __KERNEL_RCSID(0, "$NetBSD: linux_ptrace.c,v 1.15 2010/07/01 02:38:28 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.15     rmind linux_sys_ptrace_arch(struct lwp *l, const struct linux_sys_ptrace_args *uap,
     94  1.15     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.15     rmind 	struct proc *p = l->l_proc, *t;
    103   1.3   thorpej 	struct lwp *lt;
    104   1.2     bjh21 	struct reg *regs = NULL;
    105   1.2     bjh21 	struct linux_reg *linux_regs = NULL;
    106  1.15     rmind 	int request, error;
    107   1.2     bjh21 
    108  1.12        ad 	if (linux_ptrace_disabled)
    109  1.12        ad 		return ENOSYS;
    110  1.12        ad 
    111  1.15     rmind 	error = 0;
    112   1.2     bjh21 	request = SCARG(uap, request);
    113  1.15     rmind 	regs = kmem_alloc(sizeof(struct reg), KM_SLEEP);
    114  1.15     rmind 	linux_regs = kmem_alloc(sizeof(struct linux_reg), KM_SLEEP);
    115   1.2     bjh21 
    116  1.15     rmind 	switch (request) {
    117  1.15     rmind 	case LINUX_PTRACE_GETREGS:
    118  1.15     rmind 		break;
    119  1.15     rmind 	case LINUX_PTRACE_SETREGS:
    120  1.15     rmind 		error = copyin((void *)SCARG(uap, data), linux_regs,
    121  1.15     rmind 		    sizeof(struct linux_reg));
    122  1.15     rmind 		if (error) {
    123  1.15     rmind 			goto out;
    124  1.15     rmind 		}
    125  1.15     rmind 		break;
    126  1.15     rmind 	default:
    127  1.15     rmind 		error = EIO;
    128  1.15     rmind 		goto out;
    129  1.15     rmind 	}
    130   1.2     bjh21 
    131  1.15     rmind 	/* Find the process we are supposed to be operating on. */
    132  1.15     rmind 	mutex_enter(proc_lock);
    133  1.15     rmind 	if ((t = proc_find(SCARG(uap, pid))) == NULL) {
    134  1.15     rmind 		mutex_exit(proc_lock);
    135  1.15     rmind 		error = ESRCH;
    136  1.15     rmind 		goto out;
    137  1.15     rmind 	}
    138  1.15     rmind 	mutex_enter(t->p_lock);
    139  1.15     rmind 	mutex_exit(proc_lock);
    140   1.2     bjh21 
    141   1.2     bjh21 	/*
    142  1.15     rmind 	 * You cannot do what you want to the process if:
    143  1.15     rmind 	 * 1. It is not being traced at all,
    144   1.2     bjh21 	 */
    145  1.15     rmind 	if (!ISSET(t->p_slflag, PSL_TRACED)) {
    146  1.15     rmind 		mutex_exit(t->p_lock);
    147  1.15     rmind 		error = EPERM;
    148  1.15     rmind 		goto out;
    149  1.15     rmind 	}
    150   1.2     bjh21 	/*
    151  1.15     rmind 	 * 2. It is being traced by procfs (which has different signal
    152  1.15     rmind 	 *    delivery semantics),
    153  1.15     rmind 	 * 3. It is not being traced by _you_, or
    154  1.15     rmind 	 * 4. It is not currently stopped.
    155   1.2     bjh21 	 */
    156  1.15     rmind 	if (ISSET(t->p_slflag, PSL_FSTRACE) || t->p_pptr != p ||
    157  1.15     rmind 	    t->p_stat != SSTOP || !t->p_waited) {
    158  1.15     rmind 		mutex_exit(t->p_lock);
    159  1.15     rmind 		error = EBUSY;
    160  1.15     rmind 		goto out;
    161  1.15     rmind 	}
    162  1.15     rmind 	/* XXX: ptrace needs revamp for multi-threading support. */
    163  1.15     rmind 	if (t->p_nlwps > 1) {
    164  1.15     rmind 		mutex_exit(t->p_lock);
    165  1.15     rmind 		error = ENOSYS;
    166  1.15     rmind 		goto out;
    167  1.15     rmind 	}
    168   1.3   thorpej 	lt = LIST_FIRST(&t->p_lwps);
    169   1.2     bjh21 	*retval = 0;
    170   1.2     bjh21 
    171   1.2     bjh21 	switch (request) {
    172  1.15     rmind 	case LINUX_PTRACE_GETREGS:
    173   1.3   thorpej 		error = process_read_regs(lt, regs);
    174  1.15     rmind 		mutex_exit(t->p_lock);
    175  1.15     rmind 		if (error) {
    176  1.15     rmind 			break;
    177  1.15     rmind 		}
    178   1.2     bjh21 		memcpy(linux_regs->uregs, regs->r, 13 * sizeof(register_t));
    179   1.2     bjh21 		linux_regs->uregs[LINUX_REG_SP] = regs->r_sp;
    180   1.2     bjh21 		linux_regs->uregs[LINUX_REG_LR] = regs->r_lr;
    181   1.2     bjh21 		linux_regs->uregs[LINUX_REG_PC] = regs->r_pc;
    182   1.2     bjh21 		linux_regs->uregs[LINUX_REG_CPSR] = regs->r_cpsr;
    183   1.2     bjh21 		linux_regs->uregs[LINUX_REG_ORIG_R0] = regs->r[0];
    184   1.2     bjh21 
    185   1.9  christos 		error = copyout(linux_regs, (void *)SCARG(uap, data),
    186   1.2     bjh21 		    sizeof(struct linux_reg));
    187  1.15     rmind 		break;
    188   1.2     bjh21 
    189  1.15     rmind 	case LINUX_PTRACE_SETREGS:
    190   1.2     bjh21 		memcpy(regs->r, linux_regs->uregs, 13 * sizeof(register_t));
    191   1.2     bjh21 		regs->r_sp = linux_regs->uregs[LINUX_REG_SP];
    192   1.2     bjh21 		regs->r_lr = linux_regs->uregs[LINUX_REG_LR];
    193   1.2     bjh21 		regs->r_pc = linux_regs->uregs[LINUX_REG_PC];
    194   1.2     bjh21 		regs->r_cpsr = linux_regs->uregs[LINUX_REG_CPSR];
    195   1.3   thorpej 		error = process_write_regs(lt, regs);
    196  1.15     rmind 		/* FALLTHROUGH */
    197   1.2     bjh21 	default:
    198  1.15     rmind 		mutex_exit(t->p_lock);
    199   1.2     bjh21 	}
    200  1.15     rmind out:
    201   1.2     bjh21 	if (regs)
    202  1.15     rmind 		kmem_free(regs, sizeof(*regs));
    203   1.2     bjh21 	if (linux_regs)
    204  1.15     rmind 		kmem_free(linux_regs, sizeof(*linux_regs));
    205  1.15     rmind 	return error;
    206   1.1     bjh21 
    207   1.1     bjh21 }
    208