xref: /freebsd/sys/kern/sys_process.c (revision 4ed925457ab06e83238a5db33e89ccc94b99a713)
1 /*-
2  * Copyright (c) 1994, Sean Eric Fagan
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *	This product includes software developed by Sean Eric Fagan.
16  * 4. The name of the author may not be used to endorse or promote products
17  *    derived from this software without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  */
31 
32 #include <sys/cdefs.h>
33 __FBSDID("$FreeBSD$");
34 
35 #include "opt_compat.h"
36 
37 #include <sys/param.h>
38 #include <sys/systm.h>
39 #include <sys/lock.h>
40 #include <sys/mutex.h>
41 #include <sys/syscallsubr.h>
42 #include <sys/sysent.h>
43 #include <sys/sysproto.h>
44 #include <sys/proc.h>
45 #include <sys/vnode.h>
46 #include <sys/ptrace.h>
47 #include <sys/sx.h>
48 #include <sys/malloc.h>
49 #include <sys/signalvar.h>
50 
51 #include <machine/reg.h>
52 
53 #include <security/audit/audit.h>
54 
55 #include <vm/vm.h>
56 #include <vm/pmap.h>
57 #include <vm/vm_extern.h>
58 #include <vm/vm_map.h>
59 #include <vm/vm_kern.h>
60 #include <vm/vm_object.h>
61 #include <vm/vm_page.h>
62 #include <vm/vm_pager.h>
63 #include <vm/vm_param.h>
64 
65 #ifdef COMPAT_IA32
66 #include <sys/procfs.h>
67 #include <machine/fpu.h>
68 #include <compat/ia32/ia32_reg.h>
69 
70 struct ptrace_io_desc32 {
71 	int		piod_op;
72 	u_int32_t	piod_offs;
73 	u_int32_t	piod_addr;
74 	u_int32_t	piod_len;
75 };
76 
77 struct ptrace_vm_entry32 {
78 	int		pve_entry;
79 	int		pve_timestamp;
80 	uint32_t	pve_start;
81 	uint32_t	pve_end;
82 	uint32_t	pve_offset;
83 	u_int		pve_prot;
84 	u_int		pve_pathlen;
85 	int32_t		pve_fileid;
86 	u_int		pve_fsid;
87 	uint32_t	pve_path;
88 };
89 
90 #endif
91 
92 /*
93  * Functions implemented using PROC_ACTION():
94  *
95  * proc_read_regs(proc, regs)
96  *	Get the current user-visible register set from the process
97  *	and copy it into the regs structure (<machine/reg.h>).
98  *	The process is stopped at the time read_regs is called.
99  *
100  * proc_write_regs(proc, regs)
101  *	Update the current register set from the passed in regs
102  *	structure.  Take care to avoid clobbering special CPU
103  *	registers or privileged bits in the PSL.
104  *	Depending on the architecture this may have fix-up work to do,
105  *	especially if the IAR or PCW are modified.
106  *	The process is stopped at the time write_regs is called.
107  *
108  * proc_read_fpregs, proc_write_fpregs
109  *	deal with the floating point register set, otherwise as above.
110  *
111  * proc_read_dbregs, proc_write_dbregs
112  *	deal with the processor debug register set, otherwise as above.
113  *
114  * proc_sstep(proc)
115  *	Arrange for the process to trap after executing a single instruction.
116  */
117 
118 #define	PROC_ACTION(action) do {					\
119 	int error;							\
120 									\
121 	PROC_LOCK_ASSERT(td->td_proc, MA_OWNED);			\
122 	if ((td->td_proc->p_flag & P_INMEM) == 0)			\
123 		error = EIO;						\
124 	else								\
125 		error = (action);					\
126 	return (error);							\
127 } while(0)
128 
129 int
130 proc_read_regs(struct thread *td, struct reg *regs)
131 {
132 
133 	PROC_ACTION(fill_regs(td, regs));
134 }
135 
136 int
137 proc_write_regs(struct thread *td, struct reg *regs)
138 {
139 
140 	PROC_ACTION(set_regs(td, regs));
141 }
142 
143 int
144 proc_read_dbregs(struct thread *td, struct dbreg *dbregs)
145 {
146 
147 	PROC_ACTION(fill_dbregs(td, dbregs));
148 }
149 
150 int
151 proc_write_dbregs(struct thread *td, struct dbreg *dbregs)
152 {
153 
154 	PROC_ACTION(set_dbregs(td, dbregs));
155 }
156 
157 /*
158  * Ptrace doesn't support fpregs at all, and there are no security holes
159  * or translations for fpregs, so we can just copy them.
160  */
161 int
162 proc_read_fpregs(struct thread *td, struct fpreg *fpregs)
163 {
164 
165 	PROC_ACTION(fill_fpregs(td, fpregs));
166 }
167 
168 int
169 proc_write_fpregs(struct thread *td, struct fpreg *fpregs)
170 {
171 
172 	PROC_ACTION(set_fpregs(td, fpregs));
173 }
174 
175 #ifdef COMPAT_IA32
176 /* For 32 bit binaries, we need to expose the 32 bit regs layouts. */
177 int
178 proc_read_regs32(struct thread *td, struct reg32 *regs32)
179 {
180 
181 	PROC_ACTION(fill_regs32(td, regs32));
182 }
183 
184 int
185 proc_write_regs32(struct thread *td, struct reg32 *regs32)
186 {
187 
188 	PROC_ACTION(set_regs32(td, regs32));
189 }
190 
191 int
192 proc_read_dbregs32(struct thread *td, struct dbreg32 *dbregs32)
193 {
194 
195 	PROC_ACTION(fill_dbregs32(td, dbregs32));
196 }
197 
198 int
199 proc_write_dbregs32(struct thread *td, struct dbreg32 *dbregs32)
200 {
201 
202 	PROC_ACTION(set_dbregs32(td, dbregs32));
203 }
204 
205 int
206 proc_read_fpregs32(struct thread *td, struct fpreg32 *fpregs32)
207 {
208 
209 	PROC_ACTION(fill_fpregs32(td, fpregs32));
210 }
211 
212 int
213 proc_write_fpregs32(struct thread *td, struct fpreg32 *fpregs32)
214 {
215 
216 	PROC_ACTION(set_fpregs32(td, fpregs32));
217 }
218 #endif
219 
220 int
221 proc_sstep(struct thread *td)
222 {
223 
224 	PROC_ACTION(ptrace_single_step(td));
225 }
226 
227 int
228 proc_rwmem(struct proc *p, struct uio *uio)
229 {
230 	vm_map_t map;
231 	vm_object_t backing_object, object;
232 	vm_offset_t pageno;		/* page number */
233 	vm_prot_t reqprot;
234 	int error, writing;
235 
236 	/*
237 	 * Assert that someone has locked this vmspace.  (Should be
238 	 * curthread but we can't assert that.)  This keeps the process
239 	 * from exiting out from under us until this operation completes.
240 	 */
241 	KASSERT(p->p_lock >= 1, ("%s: process %p (pid %d) not held", __func__,
242 	    p, p->p_pid));
243 
244 	/*
245 	 * The map we want...
246 	 */
247 	map = &p->p_vmspace->vm_map;
248 
249 	writing = uio->uio_rw == UIO_WRITE;
250 	reqprot = writing ? VM_PROT_COPY | VM_PROT_READ : VM_PROT_READ;
251 
252 	/*
253 	 * Only map in one page at a time.  We don't have to, but it
254 	 * makes things easier.  This way is trivial - right?
255 	 */
256 	do {
257 		vm_map_t tmap;
258 		vm_offset_t uva;
259 		int page_offset;		/* offset into page */
260 		vm_map_entry_t out_entry;
261 		vm_prot_t out_prot;
262 		boolean_t wired;
263 		vm_pindex_t pindex;
264 		u_int len;
265 		vm_page_t m;
266 
267 		object = NULL;
268 
269 		uva = (vm_offset_t)uio->uio_offset;
270 
271 		/*
272 		 * Get the page number of this segment.
273 		 */
274 		pageno = trunc_page(uva);
275 		page_offset = uva - pageno;
276 
277 		/*
278 		 * How many bytes to copy
279 		 */
280 		len = min(PAGE_SIZE - page_offset, uio->uio_resid);
281 
282 		/*
283 		 * Fault the page on behalf of the process
284 		 */
285 		error = vm_fault(map, pageno, reqprot, VM_FAULT_NORMAL);
286 		if (error) {
287 			if (error == KERN_RESOURCE_SHORTAGE)
288 				error = ENOMEM;
289 			else
290 				error = EFAULT;
291 			break;
292 		}
293 
294 		/*
295 		 * Now we need to get the page.  out_entry and wired
296 		 * aren't used.  One would think the vm code
297 		 * would be a *bit* nicer...  We use tmap because
298 		 * vm_map_lookup() can change the map argument.
299 		 */
300 		tmap = map;
301 		error = vm_map_lookup(&tmap, pageno, reqprot, &out_entry,
302 		    &object, &pindex, &out_prot, &wired);
303 		if (error) {
304 			error = EFAULT;
305 			break;
306 		}
307 		VM_OBJECT_LOCK(object);
308 		while ((m = vm_page_lookup(object, pindex)) == NULL &&
309 		    !writing &&
310 		    (backing_object = object->backing_object) != NULL) {
311 			/*
312 			 * Allow fallback to backing objects if we are reading.
313 			 */
314 			VM_OBJECT_LOCK(backing_object);
315 			pindex += OFF_TO_IDX(object->backing_object_offset);
316 			VM_OBJECT_UNLOCK(object);
317 			object = backing_object;
318 		}
319 		if (writing && m != NULL) {
320 			vm_page_dirty(m);
321 			vm_pager_page_unswapped(m);
322 		}
323 		VM_OBJECT_UNLOCK(object);
324 		if (m == NULL) {
325 			vm_map_lookup_done(tmap, out_entry);
326 			error = EFAULT;
327 			break;
328 		}
329 
330 		/*
331 		 * Hold the page in memory.
332 		 */
333 		vm_page_lock_queues();
334 		vm_page_hold(m);
335 		vm_page_unlock_queues();
336 
337 		/*
338 		 * We're done with tmap now.
339 		 */
340 		vm_map_lookup_done(tmap, out_entry);
341 
342 		/*
343 		 * Now do the i/o move.
344 		 */
345 		error = uiomove_fromphys(&m, page_offset, len, uio);
346 
347 		/* Make the I-cache coherent for breakpoints. */
348 		if (!error && writing && (out_prot & VM_PROT_EXECUTE))
349 			vm_sync_icache(map, uva, len);
350 
351 		/*
352 		 * Release the page.
353 		 */
354 		vm_page_lock_queues();
355 		vm_page_unhold(m);
356 		vm_page_unlock_queues();
357 
358 	} while (error == 0 && uio->uio_resid > 0);
359 
360 	return (error);
361 }
362 
363 static int
364 ptrace_vm_entry(struct thread *td, struct proc *p, struct ptrace_vm_entry *pve)
365 {
366 	struct vattr vattr;
367 	vm_map_t map;
368 	vm_map_entry_t entry;
369 	vm_object_t obj, tobj, lobj;
370 	struct vmspace *vm;
371 	struct vnode *vp;
372 	char *freepath, *fullpath;
373 	u_int pathlen;
374 	int error, index, vfslocked;
375 
376 	error = 0;
377 	obj = NULL;
378 
379 	vm = vmspace_acquire_ref(p);
380 	map = &vm->vm_map;
381 	vm_map_lock_read(map);
382 
383 	do {
384 		entry = map->header.next;
385 		index = 0;
386 		while (index < pve->pve_entry && entry != &map->header) {
387 			entry = entry->next;
388 			index++;
389 		}
390 		if (index != pve->pve_entry) {
391 			error = EINVAL;
392 			break;
393 		}
394 		while (entry != &map->header &&
395 		    (entry->eflags & MAP_ENTRY_IS_SUB_MAP) != 0) {
396 			entry = entry->next;
397 			index++;
398 		}
399 		if (entry == &map->header) {
400 			error = ENOENT;
401 			break;
402 		}
403 
404 		/* We got an entry. */
405 		pve->pve_entry = index + 1;
406 		pve->pve_timestamp = map->timestamp;
407 		pve->pve_start = entry->start;
408 		pve->pve_end = entry->end - 1;
409 		pve->pve_offset = entry->offset;
410 		pve->pve_prot = entry->protection;
411 
412 		/* Backing object's path needed? */
413 		if (pve->pve_pathlen == 0)
414 			break;
415 
416 		pathlen = pve->pve_pathlen;
417 		pve->pve_pathlen = 0;
418 
419 		obj = entry->object.vm_object;
420 		if (obj != NULL)
421 			VM_OBJECT_LOCK(obj);
422 	} while (0);
423 
424 	vm_map_unlock_read(map);
425 	vmspace_free(vm);
426 
427 	pve->pve_fsid = VNOVAL;
428 	pve->pve_fileid = VNOVAL;
429 
430 	if (error == 0 && obj != NULL) {
431 		lobj = obj;
432 		for (tobj = obj; tobj != NULL; tobj = tobj->backing_object) {
433 			if (tobj != obj)
434 				VM_OBJECT_LOCK(tobj);
435 			if (lobj != obj)
436 				VM_OBJECT_UNLOCK(lobj);
437 			lobj = tobj;
438 			pve->pve_offset += tobj->backing_object_offset;
439 		}
440 		vp = (lobj->type == OBJT_VNODE) ? lobj->handle : NULL;
441 		if (vp != NULL)
442 			vref(vp);
443 		if (lobj != obj)
444 			VM_OBJECT_UNLOCK(lobj);
445 		VM_OBJECT_UNLOCK(obj);
446 
447 		if (vp != NULL) {
448 			freepath = NULL;
449 			fullpath = NULL;
450 			vn_fullpath(td, vp, &fullpath, &freepath);
451 			vfslocked = VFS_LOCK_GIANT(vp->v_mount);
452 			vn_lock(vp, LK_SHARED | LK_RETRY);
453 			if (VOP_GETATTR(vp, &vattr, td->td_ucred) == 0) {
454 				pve->pve_fileid = vattr.va_fileid;
455 				pve->pve_fsid = vattr.va_fsid;
456 			}
457 			vput(vp);
458 			VFS_UNLOCK_GIANT(vfslocked);
459 
460 			if (fullpath != NULL) {
461 				pve->pve_pathlen = strlen(fullpath) + 1;
462 				if (pve->pve_pathlen <= pathlen) {
463 					error = copyout(fullpath, pve->pve_path,
464 					    pve->pve_pathlen);
465 				} else
466 					error = ENAMETOOLONG;
467 			}
468 			if (freepath != NULL)
469 				free(freepath, M_TEMP);
470 		}
471 	}
472 
473 	return (error);
474 }
475 
476 #ifdef COMPAT_IA32
477 static int
478 ptrace_vm_entry32(struct thread *td, struct proc *p,
479     struct ptrace_vm_entry32 *pve32)
480 {
481 	struct ptrace_vm_entry pve;
482 	int error;
483 
484 	pve.pve_entry = pve32->pve_entry;
485 	pve.pve_pathlen = pve32->pve_pathlen;
486 	pve.pve_path = (void *)(uintptr_t)pve32->pve_path;
487 
488 	error = ptrace_vm_entry(td, p, &pve);
489 	if (error == 0) {
490 		pve32->pve_entry = pve.pve_entry;
491 		pve32->pve_timestamp = pve.pve_timestamp;
492 		pve32->pve_start = pve.pve_start;
493 		pve32->pve_end = pve.pve_end;
494 		pve32->pve_offset = pve.pve_offset;
495 		pve32->pve_prot = pve.pve_prot;
496 		pve32->pve_fileid = pve.pve_fileid;
497 		pve32->pve_fsid = pve.pve_fsid;
498 	}
499 
500 	pve32->pve_pathlen = pve.pve_pathlen;
501 	return (error);
502 }
503 #endif /* COMPAT_IA32 */
504 
505 /*
506  * Process debugging system call.
507  */
508 #ifndef _SYS_SYSPROTO_H_
509 struct ptrace_args {
510 	int	req;
511 	pid_t	pid;
512 	caddr_t	addr;
513 	int	data;
514 };
515 #endif
516 
517 #ifdef COMPAT_IA32
518 /*
519  * This CPP subterfuge is to try and reduce the number of ifdefs in
520  * the body of the code.
521  *   COPYIN(uap->addr, &r.reg, sizeof r.reg);
522  * becomes either:
523  *   copyin(uap->addr, &r.reg, sizeof r.reg);
524  * or
525  *   copyin(uap->addr, &r.reg32, sizeof r.reg32);
526  * .. except this is done at runtime.
527  */
528 #define	COPYIN(u, k, s)		wrap32 ? \
529 	copyin(u, k ## 32, s ## 32) : \
530 	copyin(u, k, s)
531 #define	COPYOUT(k, u, s)	wrap32 ? \
532 	copyout(k ## 32, u, s ## 32) : \
533 	copyout(k, u, s)
534 #else
535 #define	COPYIN(u, k, s)		copyin(u, k, s)
536 #define	COPYOUT(k, u, s)	copyout(k, u, s)
537 #endif
538 int
539 ptrace(struct thread *td, struct ptrace_args *uap)
540 {
541 	/*
542 	 * XXX this obfuscation is to reduce stack usage, but the register
543 	 * structs may be too large to put on the stack anyway.
544 	 */
545 	union {
546 		struct ptrace_io_desc piod;
547 		struct ptrace_lwpinfo pl;
548 		struct ptrace_vm_entry pve;
549 		struct dbreg dbreg;
550 		struct fpreg fpreg;
551 		struct reg reg;
552 #ifdef COMPAT_IA32
553 		struct dbreg32 dbreg32;
554 		struct fpreg32 fpreg32;
555 		struct reg32 reg32;
556 		struct ptrace_io_desc32 piod32;
557 		struct ptrace_vm_entry32 pve32;
558 #endif
559 	} r;
560 	void *addr;
561 	int error = 0;
562 #ifdef COMPAT_IA32
563 	int wrap32 = 0;
564 
565 	if (SV_CURPROC_FLAG(SV_ILP32))
566 		wrap32 = 1;
567 #endif
568 	AUDIT_ARG_PID(uap->pid);
569 	AUDIT_ARG_CMD(uap->req);
570 	AUDIT_ARG_VALUE(uap->data);
571 	addr = &r;
572 	switch (uap->req) {
573 	case PT_GETREGS:
574 	case PT_GETFPREGS:
575 	case PT_GETDBREGS:
576 	case PT_LWPINFO:
577 		break;
578 	case PT_SETREGS:
579 		error = COPYIN(uap->addr, &r.reg, sizeof r.reg);
580 		break;
581 	case PT_SETFPREGS:
582 		error = COPYIN(uap->addr, &r.fpreg, sizeof r.fpreg);
583 		break;
584 	case PT_SETDBREGS:
585 		error = COPYIN(uap->addr, &r.dbreg, sizeof r.dbreg);
586 		break;
587 	case PT_IO:
588 		error = COPYIN(uap->addr, &r.piod, sizeof r.piod);
589 		break;
590 	case PT_VM_ENTRY:
591 		error = COPYIN(uap->addr, &r.pve, sizeof r.pve);
592 		break;
593 	default:
594 		addr = uap->addr;
595 		break;
596 	}
597 	if (error)
598 		return (error);
599 
600 	error = kern_ptrace(td, uap->req, uap->pid, addr, uap->data);
601 	if (error)
602 		return (error);
603 
604 	switch (uap->req) {
605 	case PT_VM_ENTRY:
606 		error = COPYOUT(&r.pve, uap->addr, sizeof r.pve);
607 		break;
608 	case PT_IO:
609 		error = COPYOUT(&r.piod, uap->addr, sizeof r.piod);
610 		break;
611 	case PT_GETREGS:
612 		error = COPYOUT(&r.reg, uap->addr, sizeof r.reg);
613 		break;
614 	case PT_GETFPREGS:
615 		error = COPYOUT(&r.fpreg, uap->addr, sizeof r.fpreg);
616 		break;
617 	case PT_GETDBREGS:
618 		error = COPYOUT(&r.dbreg, uap->addr, sizeof r.dbreg);
619 		break;
620 	case PT_LWPINFO:
621 		error = copyout(&r.pl, uap->addr, uap->data);
622 		break;
623 	}
624 
625 	return (error);
626 }
627 #undef COPYIN
628 #undef COPYOUT
629 
630 #ifdef COMPAT_IA32
631 /*
632  *   PROC_READ(regs, td2, addr);
633  * becomes either:
634  *   proc_read_regs(td2, addr);
635  * or
636  *   proc_read_regs32(td2, addr);
637  * .. except this is done at runtime.  There is an additional
638  * complication in that PROC_WRITE disallows 32 bit consumers
639  * from writing to 64 bit address space targets.
640  */
641 #define	PROC_READ(w, t, a)	wrap32 ? \
642 	proc_read_ ## w ## 32(t, a) : \
643 	proc_read_ ## w (t, a)
644 #define	PROC_WRITE(w, t, a)	wrap32 ? \
645 	(safe ? proc_write_ ## w ## 32(t, a) : EINVAL ) : \
646 	proc_write_ ## w (t, a)
647 #else
648 #define	PROC_READ(w, t, a)	proc_read_ ## w (t, a)
649 #define	PROC_WRITE(w, t, a)	proc_write_ ## w (t, a)
650 #endif
651 
652 int
653 kern_ptrace(struct thread *td, int req, pid_t pid, void *addr, int data)
654 {
655 	struct iovec iov;
656 	struct uio uio;
657 	struct proc *curp, *p, *pp;
658 	struct thread *td2 = NULL;
659 	struct ptrace_io_desc *piod = NULL;
660 	struct ptrace_lwpinfo *pl;
661 	int error, write, tmp, num;
662 	int proctree_locked = 0;
663 	lwpid_t tid = 0, *buf;
664 #ifdef COMPAT_IA32
665 	int wrap32 = 0, safe = 0;
666 	struct ptrace_io_desc32 *piod32 = NULL;
667 #endif
668 
669 	curp = td->td_proc;
670 
671 	/* Lock proctree before locking the process. */
672 	switch (req) {
673 	case PT_TRACE_ME:
674 	case PT_ATTACH:
675 	case PT_STEP:
676 	case PT_CONTINUE:
677 	case PT_TO_SCE:
678 	case PT_TO_SCX:
679 	case PT_SYSCALL:
680 	case PT_DETACH:
681 		sx_xlock(&proctree_lock);
682 		proctree_locked = 1;
683 		break;
684 	default:
685 		break;
686 	}
687 
688 	write = 0;
689 	if (req == PT_TRACE_ME) {
690 		p = td->td_proc;
691 		PROC_LOCK(p);
692 	} else {
693 		if (pid <= PID_MAX) {
694 			if ((p = pfind(pid)) == NULL) {
695 				if (proctree_locked)
696 					sx_xunlock(&proctree_lock);
697 				return (ESRCH);
698 			}
699 		} else {
700 			/* this is slow, should be optimized */
701 			sx_slock(&allproc_lock);
702 			FOREACH_PROC_IN_SYSTEM(p) {
703 				PROC_LOCK(p);
704 				FOREACH_THREAD_IN_PROC(p, td2) {
705 					if (td2->td_tid == pid)
706 						break;
707 				}
708 				if (td2 != NULL)
709 					break; /* proc lock held */
710 				PROC_UNLOCK(p);
711 			}
712 			sx_sunlock(&allproc_lock);
713 			if (p == NULL) {
714 				if (proctree_locked)
715 					sx_xunlock(&proctree_lock);
716 				return (ESRCH);
717 			}
718 			tid = pid;
719 			pid = p->p_pid;
720 		}
721 	}
722 	AUDIT_ARG_PROCESS(p);
723 
724 	if ((p->p_flag & P_WEXIT) != 0) {
725 		error = ESRCH;
726 		goto fail;
727 	}
728 	if ((error = p_cansee(td, p)) != 0)
729 		goto fail;
730 
731 	if ((error = p_candebug(td, p)) != 0)
732 		goto fail;
733 
734 	/*
735 	 * System processes can't be debugged.
736 	 */
737 	if ((p->p_flag & P_SYSTEM) != 0) {
738 		error = EINVAL;
739 		goto fail;
740 	}
741 
742 	if (tid == 0) {
743 		if ((p->p_flag & P_STOPPED_TRACE) != 0) {
744 			KASSERT(p->p_xthread != NULL, ("NULL p_xthread"));
745 			td2 = p->p_xthread;
746 		} else {
747 			td2 = FIRST_THREAD_IN_PROC(p);
748 		}
749 		tid = td2->td_tid;
750 	}
751 
752 #ifdef COMPAT_IA32
753 	/*
754 	 * Test if we're a 32 bit client and what the target is.
755 	 * Set the wrap controls accordingly.
756 	 */
757 	if (SV_CURPROC_FLAG(SV_ILP32)) {
758 		if (td2->td_proc->p_sysent->sv_flags & SV_ILP32)
759 			safe = 1;
760 		wrap32 = 1;
761 	}
762 #endif
763 	/*
764 	 * Permissions check
765 	 */
766 	switch (req) {
767 	case PT_TRACE_ME:
768 		/* Always legal. */
769 		break;
770 
771 	case PT_ATTACH:
772 		/* Self */
773 		if (p->p_pid == td->td_proc->p_pid) {
774 			error = EINVAL;
775 			goto fail;
776 		}
777 
778 		/* Already traced */
779 		if (p->p_flag & P_TRACED) {
780 			error = EBUSY;
781 			goto fail;
782 		}
783 
784 		/* Can't trace an ancestor if you're being traced. */
785 		if (curp->p_flag & P_TRACED) {
786 			for (pp = curp->p_pptr; pp != NULL; pp = pp->p_pptr) {
787 				if (pp == p) {
788 					error = EINVAL;
789 					goto fail;
790 				}
791 			}
792 		}
793 
794 
795 		/* OK */
796 		break;
797 
798 	case PT_CLEARSTEP:
799 		/* Allow thread to clear single step for itself */
800 		if (td->td_tid == tid)
801 			break;
802 
803 		/* FALLTHROUGH */
804 	default:
805 		/* not being traced... */
806 		if ((p->p_flag & P_TRACED) == 0) {
807 			error = EPERM;
808 			goto fail;
809 		}
810 
811 		/* not being traced by YOU */
812 		if (p->p_pptr != td->td_proc) {
813 			error = EBUSY;
814 			goto fail;
815 		}
816 
817 		/* not currently stopped */
818 		if ((p->p_flag & (P_STOPPED_SIG | P_STOPPED_TRACE)) == 0 ||
819 		    p->p_suspcount != p->p_numthreads  ||
820 		    (p->p_flag & P_WAITED) == 0) {
821 			error = EBUSY;
822 			goto fail;
823 		}
824 
825 		if ((p->p_flag & P_STOPPED_TRACE) == 0) {
826 			static int count = 0;
827 			if (count++ == 0)
828 				printf("P_STOPPED_TRACE not set.\n");
829 		}
830 
831 		/* OK */
832 		break;
833 	}
834 
835 	/* Keep this process around until we finish this request. */
836 	_PHOLD(p);
837 
838 #ifdef FIX_SSTEP
839 	/*
840 	 * Single step fixup ala procfs
841 	 */
842 	FIX_SSTEP(td2);
843 #endif
844 
845 	/*
846 	 * Actually do the requests
847 	 */
848 
849 	td->td_retval[0] = 0;
850 
851 	switch (req) {
852 	case PT_TRACE_ME:
853 		/* set my trace flag and "owner" so it can read/write me */
854 		p->p_flag |= P_TRACED;
855 		p->p_oppid = p->p_pptr->p_pid;
856 		break;
857 
858 	case PT_ATTACH:
859 		/* security check done above */
860 		p->p_flag |= P_TRACED;
861 		p->p_oppid = p->p_pptr->p_pid;
862 		if (p->p_pptr != td->td_proc)
863 			proc_reparent(p, td->td_proc);
864 		data = SIGSTOP;
865 		goto sendsig;	/* in PT_CONTINUE below */
866 
867 	case PT_CLEARSTEP:
868 		error = ptrace_clear_single_step(td2);
869 		break;
870 
871 	case PT_SETSTEP:
872 		error = ptrace_single_step(td2);
873 		break;
874 
875 	case PT_SUSPEND:
876 		td2->td_dbgflags |= TDB_SUSPEND;
877 		thread_lock(td2);
878 		td2->td_flags |= TDF_NEEDSUSPCHK;
879 		thread_unlock(td2);
880 		break;
881 
882 	case PT_RESUME:
883 		td2->td_dbgflags &= ~TDB_SUSPEND;
884 		break;
885 
886 	case PT_STEP:
887 	case PT_CONTINUE:
888 	case PT_TO_SCE:
889 	case PT_TO_SCX:
890 	case PT_SYSCALL:
891 	case PT_DETACH:
892 		/* Zero means do not send any signal */
893 		if (data < 0 || data > _SIG_MAXSIG) {
894 			error = EINVAL;
895 			break;
896 		}
897 
898 		switch (req) {
899 		case PT_STEP:
900 			error = ptrace_single_step(td2);
901 			if (error)
902 				goto out;
903 			break;
904 		case PT_TO_SCE:
905 			p->p_stops |= S_PT_SCE;
906 			break;
907 		case PT_TO_SCX:
908 			p->p_stops |= S_PT_SCX;
909 			break;
910 		case PT_SYSCALL:
911 			p->p_stops |= S_PT_SCE | S_PT_SCX;
912 			break;
913 		}
914 
915 		if (addr != (void *)1) {
916 			error = ptrace_set_pc(td2, (u_long)(uintfptr_t)addr);
917 			if (error)
918 				break;
919 		}
920 
921 		if (req == PT_DETACH) {
922 			/* reset process parent */
923 			if (p->p_oppid != p->p_pptr->p_pid) {
924 				struct proc *pp;
925 
926 				PROC_LOCK(p->p_pptr);
927 				sigqueue_take(p->p_ksi);
928 				PROC_UNLOCK(p->p_pptr);
929 
930 				PROC_UNLOCK(p);
931 				pp = pfind(p->p_oppid);
932 				if (pp == NULL)
933 					pp = initproc;
934 				else
935 					PROC_UNLOCK(pp);
936 				PROC_LOCK(p);
937 				proc_reparent(p, pp);
938 				if (pp == initproc)
939 					p->p_sigparent = SIGCHLD;
940 			}
941 			p->p_flag &= ~(P_TRACED | P_WAITED);
942 			p->p_oppid = 0;
943 
944 			/* should we send SIGCHLD? */
945 			/* childproc_continued(p); */
946 		}
947 
948 	sendsig:
949 		if (proctree_locked) {
950 			sx_xunlock(&proctree_lock);
951 			proctree_locked = 0;
952 		}
953 		p->p_xstat = data;
954 		p->p_xthread = NULL;
955 		if ((p->p_flag & (P_STOPPED_SIG | P_STOPPED_TRACE)) != 0) {
956 			/* deliver or queue signal */
957 			td2->td_dbgflags &= ~TDB_XSIG;
958 			td2->td_xsig = data;
959 
960 			if (req == PT_DETACH) {
961 				struct thread *td3;
962 				FOREACH_THREAD_IN_PROC(p, td3) {
963 					td3->td_dbgflags &= ~TDB_SUSPEND;
964 				}
965 			}
966 			/*
967 			 * unsuspend all threads, to not let a thread run,
968 			 * you should use PT_SUSPEND to suspend it before
969 			 * continuing process.
970 			 */
971 			PROC_SLOCK(p);
972 			p->p_flag &= ~(P_STOPPED_TRACE|P_STOPPED_SIG|P_WAITED);
973 			thread_unsuspend(p);
974 			PROC_SUNLOCK(p);
975 		} else {
976 			if (data)
977 				psignal(p, data);
978 		}
979 		break;
980 
981 	case PT_WRITE_I:
982 	case PT_WRITE_D:
983 		td2->td_dbgflags |= TDB_USERWR;
984 		write = 1;
985 		/* FALLTHROUGH */
986 	case PT_READ_I:
987 	case PT_READ_D:
988 		PROC_UNLOCK(p);
989 		tmp = 0;
990 		/* write = 0 set above */
991 		iov.iov_base = write ? (caddr_t)&data : (caddr_t)&tmp;
992 		iov.iov_len = sizeof(int);
993 		uio.uio_iov = &iov;
994 		uio.uio_iovcnt = 1;
995 		uio.uio_offset = (off_t)(uintptr_t)addr;
996 		uio.uio_resid = sizeof(int);
997 		uio.uio_segflg = UIO_SYSSPACE;	/* i.e.: the uap */
998 		uio.uio_rw = write ? UIO_WRITE : UIO_READ;
999 		uio.uio_td = td;
1000 		error = proc_rwmem(p, &uio);
1001 		if (uio.uio_resid != 0) {
1002 			/*
1003 			 * XXX proc_rwmem() doesn't currently return ENOSPC,
1004 			 * so I think write() can bogusly return 0.
1005 			 * XXX what happens for short writes?  We don't want
1006 			 * to write partial data.
1007 			 * XXX proc_rwmem() returns EPERM for other invalid
1008 			 * addresses.  Convert this to EINVAL.  Does this
1009 			 * clobber returns of EPERM for other reasons?
1010 			 */
1011 			if (error == 0 || error == ENOSPC || error == EPERM)
1012 				error = EINVAL;	/* EOF */
1013 		}
1014 		if (!write)
1015 			td->td_retval[0] = tmp;
1016 		PROC_LOCK(p);
1017 		break;
1018 
1019 	case PT_IO:
1020 #ifdef COMPAT_IA32
1021 		if (wrap32) {
1022 			piod32 = addr;
1023 			iov.iov_base = (void *)(uintptr_t)piod32->piod_addr;
1024 			iov.iov_len = piod32->piod_len;
1025 			uio.uio_offset = (off_t)(uintptr_t)piod32->piod_offs;
1026 			uio.uio_resid = piod32->piod_len;
1027 		} else
1028 #endif
1029 		{
1030 			piod = addr;
1031 			iov.iov_base = piod->piod_addr;
1032 			iov.iov_len = piod->piod_len;
1033 			uio.uio_offset = (off_t)(uintptr_t)piod->piod_offs;
1034 			uio.uio_resid = piod->piod_len;
1035 		}
1036 		uio.uio_iov = &iov;
1037 		uio.uio_iovcnt = 1;
1038 		uio.uio_segflg = UIO_USERSPACE;
1039 		uio.uio_td = td;
1040 #ifdef COMPAT_IA32
1041 		tmp = wrap32 ? piod32->piod_op : piod->piod_op;
1042 #else
1043 		tmp = piod->piod_op;
1044 #endif
1045 		switch (tmp) {
1046 		case PIOD_READ_D:
1047 		case PIOD_READ_I:
1048 			uio.uio_rw = UIO_READ;
1049 			break;
1050 		case PIOD_WRITE_D:
1051 		case PIOD_WRITE_I:
1052 			td2->td_dbgflags |= TDB_USERWR;
1053 			uio.uio_rw = UIO_WRITE;
1054 			break;
1055 		default:
1056 			error = EINVAL;
1057 			goto out;
1058 		}
1059 		PROC_UNLOCK(p);
1060 		error = proc_rwmem(p, &uio);
1061 #ifdef COMPAT_IA32
1062 		if (wrap32)
1063 			piod32->piod_len -= uio.uio_resid;
1064 		else
1065 #endif
1066 			piod->piod_len -= uio.uio_resid;
1067 		PROC_LOCK(p);
1068 		break;
1069 
1070 	case PT_KILL:
1071 		data = SIGKILL;
1072 		goto sendsig;	/* in PT_CONTINUE above */
1073 
1074 	case PT_SETREGS:
1075 		td2->td_dbgflags |= TDB_USERWR;
1076 		error = PROC_WRITE(regs, td2, addr);
1077 		break;
1078 
1079 	case PT_GETREGS:
1080 		error = PROC_READ(regs, td2, addr);
1081 		break;
1082 
1083 	case PT_SETFPREGS:
1084 		td2->td_dbgflags |= TDB_USERWR;
1085 		error = PROC_WRITE(fpregs, td2, addr);
1086 		break;
1087 
1088 	case PT_GETFPREGS:
1089 		error = PROC_READ(fpregs, td2, addr);
1090 		break;
1091 
1092 	case PT_SETDBREGS:
1093 		td2->td_dbgflags |= TDB_USERWR;
1094 		error = PROC_WRITE(dbregs, td2, addr);
1095 		break;
1096 
1097 	case PT_GETDBREGS:
1098 		error = PROC_READ(dbregs, td2, addr);
1099 		break;
1100 
1101 	case PT_LWPINFO:
1102 		if (data <= 0 || data > sizeof(*pl)) {
1103 			error = EINVAL;
1104 			break;
1105 		}
1106 		pl = addr;
1107 		pl->pl_lwpid = td2->td_tid;
1108 		if (td2->td_dbgflags & TDB_XSIG)
1109 			pl->pl_event = PL_EVENT_SIGNAL;
1110 		else
1111 			pl->pl_event = 0;
1112 		pl->pl_flags = 0;
1113 		pl->pl_sigmask = td2->td_sigmask;
1114 		pl->pl_siglist = td2->td_siglist;
1115 		break;
1116 
1117 	case PT_GETNUMLWPS:
1118 		td->td_retval[0] = p->p_numthreads;
1119 		break;
1120 
1121 	case PT_GETLWPLIST:
1122 		if (data <= 0) {
1123 			error = EINVAL;
1124 			break;
1125 		}
1126 		num = imin(p->p_numthreads, data);
1127 		PROC_UNLOCK(p);
1128 		buf = malloc(num * sizeof(lwpid_t), M_TEMP, M_WAITOK);
1129 		tmp = 0;
1130 		PROC_LOCK(p);
1131 		FOREACH_THREAD_IN_PROC(p, td2) {
1132 			if (tmp >= num)
1133 				break;
1134 			buf[tmp++] = td2->td_tid;
1135 		}
1136 		PROC_UNLOCK(p);
1137 		error = copyout(buf, addr, tmp * sizeof(lwpid_t));
1138 		free(buf, M_TEMP);
1139 		if (!error)
1140 			td->td_retval[0] = tmp;
1141 		PROC_LOCK(p);
1142 		break;
1143 
1144 	case PT_VM_TIMESTAMP:
1145 		td->td_retval[0] = p->p_vmspace->vm_map.timestamp;
1146 		break;
1147 
1148 	case PT_VM_ENTRY:
1149 		PROC_UNLOCK(p);
1150 #ifdef COMPAT_IA32
1151 		if (wrap32)
1152 			error = ptrace_vm_entry32(td, p, addr);
1153 		else
1154 #endif
1155 		error = ptrace_vm_entry(td, p, addr);
1156 		PROC_LOCK(p);
1157 		break;
1158 
1159 	default:
1160 #ifdef __HAVE_PTRACE_MACHDEP
1161 		if (req >= PT_FIRSTMACH) {
1162 			PROC_UNLOCK(p);
1163 			error = cpu_ptrace(td2, req, addr, data);
1164 			PROC_LOCK(p);
1165 		} else
1166 #endif
1167 			/* Unknown request. */
1168 			error = EINVAL;
1169 		break;
1170 	}
1171 
1172 out:
1173 	/* Drop our hold on this process now that the request has completed. */
1174 	_PRELE(p);
1175 fail:
1176 	PROC_UNLOCK(p);
1177 	if (proctree_locked)
1178 		sx_xunlock(&proctree_lock);
1179 	return (error);
1180 }
1181 #undef PROC_READ
1182 #undef PROC_WRITE
1183 
1184 /*
1185  * Stop a process because of a debugging event;
1186  * stay stopped until p->p_step is cleared
1187  * (cleared by PIOCCONT in procfs).
1188  */
1189 void
1190 stopevent(struct proc *p, unsigned int event, unsigned int val)
1191 {
1192 
1193 	PROC_LOCK_ASSERT(p, MA_OWNED);
1194 	p->p_step = 1;
1195 	do {
1196 		p->p_xstat = val;
1197 		p->p_xthread = NULL;
1198 		p->p_stype = event;	/* Which event caused the stop? */
1199 		wakeup(&p->p_stype);	/* Wake up any PIOCWAIT'ing procs */
1200 		msleep(&p->p_step, &p->p_mtx, PWAIT, "stopevent", 0);
1201 	} while (p->p_step);
1202 }
1203