linux_ptrace.c revision 1.20 1 1.20 kamil /* $NetBSD: linux_ptrace.c,v 1.20 2017/08/28 00:46:07 kamil 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.20 kamil __KERNEL_RCSID(0, "$NetBSD: linux_ptrace.c,v 1.20 2017/08/28 00:46:07 kamil Exp $");
35 1.1 bjh21
36 1.1 bjh21 #include <sys/param.h>
37 1.2 bjh21 #include <sys/mount.h>
38 1.2 bjh21 #include <sys/proc.h>
39 1.2 bjh21 #include <sys/ptrace.h>
40 1.2 bjh21 #include <sys/systm.h>
41 1.2 bjh21 #include <sys/syscallargs.h>
42 1.2 bjh21 #include <uvm/uvm_extern.h>
43 1.2 bjh21
44 1.2 bjh21 #include <machine/reg.h>
45 1.17 matt #include <machine/pcb.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.16 chs #ifdef _ARM_ARCH_6
105 1.16 chs struct pcb *pcb;
106 1.16 chs void *val;
107 1.16 chs #endif
108 1.2 bjh21 struct reg *regs = NULL;
109 1.2 bjh21 struct linux_reg *linux_regs = NULL;
110 1.15 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.15 rmind error = 0;
116 1.2 bjh21 request = SCARG(uap, request);
117 1.15 rmind regs = kmem_alloc(sizeof(struct reg), KM_SLEEP);
118 1.15 rmind linux_regs = kmem_alloc(sizeof(struct linux_reg), KM_SLEEP);
119 1.2 bjh21
120 1.15 rmind switch (request) {
121 1.15 rmind case LINUX_PTRACE_GETREGS:
122 1.15 rmind break;
123 1.15 rmind case LINUX_PTRACE_SETREGS:
124 1.15 rmind error = copyin((void *)SCARG(uap, data), linux_regs,
125 1.15 rmind sizeof(struct linux_reg));
126 1.15 rmind if (error) {
127 1.15 rmind goto out;
128 1.15 rmind }
129 1.15 rmind break;
130 1.15 rmind default:
131 1.15 rmind error = EIO;
132 1.15 rmind goto out;
133 1.15 rmind }
134 1.2 bjh21
135 1.15 rmind /* Find the process we are supposed to be operating on. */
136 1.15 rmind mutex_enter(proc_lock);
137 1.15 rmind if ((t = proc_find(SCARG(uap, pid))) == NULL) {
138 1.15 rmind mutex_exit(proc_lock);
139 1.15 rmind error = ESRCH;
140 1.15 rmind goto out;
141 1.15 rmind }
142 1.15 rmind mutex_enter(t->p_lock);
143 1.2 bjh21
144 1.2 bjh21 /*
145 1.15 rmind * You cannot do what you want to the process if:
146 1.15 rmind * 1. It is not being traced at all,
147 1.2 bjh21 */
148 1.15 rmind if (!ISSET(t->p_slflag, PSL_TRACED)) {
149 1.15 rmind mutex_exit(t->p_lock);
150 1.19 pgoyette mutex_exit(proc_lock);
151 1.15 rmind error = EPERM;
152 1.15 rmind goto out;
153 1.15 rmind }
154 1.2 bjh21 /*
155 1.15 rmind * 2. It is being traced by procfs (which has different signal
156 1.15 rmind * delivery semantics),
157 1.15 rmind * 3. It is not being traced by _you_, or
158 1.15 rmind * 4. It is not currently stopped.
159 1.2 bjh21 */
160 1.20 kamil if (t->p_pptr != p || t->p_stat != SSTOP || !t->p_waited) {
161 1.15 rmind mutex_exit(t->p_lock);
162 1.19 pgoyette mutex_exit(proc_lock);
163 1.15 rmind error = EBUSY;
164 1.15 rmind goto out;
165 1.15 rmind }
166 1.19 pgoyette mutex_exit(proc_lock);
167 1.15 rmind /* XXX: ptrace needs revamp for multi-threading support. */
168 1.15 rmind if (t->p_nlwps > 1) {
169 1.15 rmind mutex_exit(t->p_lock);
170 1.15 rmind error = ENOSYS;
171 1.15 rmind goto out;
172 1.15 rmind }
173 1.3 thorpej lt = LIST_FIRST(&t->p_lwps);
174 1.2 bjh21 *retval = 0;
175 1.2 bjh21
176 1.2 bjh21 switch (request) {
177 1.15 rmind case LINUX_PTRACE_GETREGS:
178 1.3 thorpej error = process_read_regs(lt, regs);
179 1.15 rmind mutex_exit(t->p_lock);
180 1.15 rmind if (error) {
181 1.15 rmind break;
182 1.15 rmind }
183 1.2 bjh21 memcpy(linux_regs->uregs, regs->r, 13 * sizeof(register_t));
184 1.2 bjh21 linux_regs->uregs[LINUX_REG_SP] = regs->r_sp;
185 1.2 bjh21 linux_regs->uregs[LINUX_REG_LR] = regs->r_lr;
186 1.2 bjh21 linux_regs->uregs[LINUX_REG_PC] = regs->r_pc;
187 1.2 bjh21 linux_regs->uregs[LINUX_REG_CPSR] = regs->r_cpsr;
188 1.2 bjh21 linux_regs->uregs[LINUX_REG_ORIG_R0] = regs->r[0];
189 1.2 bjh21
190 1.9 christos error = copyout(linux_regs, (void *)SCARG(uap, data),
191 1.2 bjh21 sizeof(struct linux_reg));
192 1.15 rmind break;
193 1.2 bjh21
194 1.15 rmind case LINUX_PTRACE_SETREGS:
195 1.2 bjh21 memcpy(regs->r, linux_regs->uregs, 13 * sizeof(register_t));
196 1.2 bjh21 regs->r_sp = linux_regs->uregs[LINUX_REG_SP];
197 1.2 bjh21 regs->r_lr = linux_regs->uregs[LINUX_REG_LR];
198 1.2 bjh21 regs->r_pc = linux_regs->uregs[LINUX_REG_PC];
199 1.2 bjh21 regs->r_cpsr = linux_regs->uregs[LINUX_REG_CPSR];
200 1.3 thorpej error = process_write_regs(lt, regs);
201 1.16 chs mutex_exit(t->p_lock);
202 1.16 chs break;
203 1.16 chs
204 1.16 chs #ifdef _ARM_ARCH_6
205 1.16 chs #define LINUX_PTRACE_GET_THREAD_AREA 22
206 1.16 chs case LINUX_PTRACE_GET_THREAD_AREA:
207 1.16 chs mutex_exit(t->p_lock);
208 1.16 chs pcb = lwp_getpcb(l);
209 1.16 chs val = (void *)pcb->pcb_un.un_32.pcb32_user_pid_ro;
210 1.16 chs error = copyout(&val, (void *)SCARG(uap, data), sizeof(val));
211 1.16 chs break;
212 1.16 chs #endif
213 1.16 chs
214 1.2 bjh21 default:
215 1.15 rmind mutex_exit(t->p_lock);
216 1.2 bjh21 }
217 1.15 rmind out:
218 1.2 bjh21 if (regs)
219 1.15 rmind kmem_free(regs, sizeof(*regs));
220 1.2 bjh21 if (linux_regs)
221 1.15 rmind kmem_free(linux_regs, sizeof(*linux_regs));
222 1.15 rmind return error;
223 1.1 bjh21
224 1.1 bjh21 }
225