xref: /NextBSD/sys/kern/sys_process.c (revision fb5720f7be0d2eab3253696e244c058a229b5473)
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 #include "opt_compat_mach.h"
37 
38 #include <sys/param.h>
39 #include <sys/systm.h>
40 #include <sys/lock.h>
41 #include <sys/mutex.h>
42 #include <sys/syscallsubr.h>
43 #include <sys/sysent.h>
44 #include <sys/sysproto.h>
45 #include <sys/pioctl.h>
46 #include <sys/priv.h>
47 #include <sys/proc.h>
48 #include <sys/vnode.h>
49 #include <sys/ptrace.h>
50 #include <sys/rwlock.h>
51 #include <sys/sx.h>
52 #include <sys/malloc.h>
53 #include <sys/signalvar.h>
54 
55 #include <machine/reg.h>
56 
57 #include <security/audit/audit.h>
58 
59 #include <vm/vm.h>
60 #include <vm/pmap.h>
61 #include <vm/vm_extern.h>
62 #include <vm/vm_map.h>
63 #include <vm/vm_kern.h>
64 #include <vm/vm_object.h>
65 #include <vm/vm_page.h>
66 #include <vm/vm_param.h>
67 
68 #ifdef COMPAT_FREEBSD32
69 #include <sys/procfs.h>
70 #include <compat/freebsd32/freebsd32_signal.h>
71 
72 struct ptrace_io_desc32 {
73 	int		piod_op;
74 	uint32_t	piod_offs;
75 	uint32_t	piod_addr;
76 	uint32_t	piod_len;
77 };
78 
79 struct ptrace_vm_entry32 {
80 	int		pve_entry;
81 	int		pve_timestamp;
82 	uint32_t	pve_start;
83 	uint32_t	pve_end;
84 	uint32_t	pve_offset;
85 	u_int		pve_prot;
86 	u_int		pve_pathlen;
87 	int32_t		pve_fileid;
88 	u_int		pve_fsid;
89 	uint32_t	pve_path;
90 };
91 
92 struct ptrace_lwpinfo32 {
93 	lwpid_t	pl_lwpid;	/* LWP described. */
94 	int	pl_event;	/* Event that stopped the LWP. */
95 	int	pl_flags;	/* LWP flags. */
96 	sigset_t	pl_sigmask;	/* LWP signal mask */
97 	sigset_t	pl_siglist;	/* LWP pending signal */
98 	struct siginfo32 pl_siginfo;	/* siginfo for signal */
99 	char	pl_tdname[MAXCOMLEN + 1];	/* LWP name. */
100 	pid_t	pl_child_pid;		/* New child pid */
101 	u_int		pl_syscall_code;
102 	u_int		pl_syscall_narg;
103 };
104 
105 #endif
106 
107 /*
108  * Functions implemented using PROC_ACTION():
109  *
110  * proc_read_regs(proc, regs)
111  *	Get the current user-visible register set from the process
112  *	and copy it into the regs structure (<machine/reg.h>).
113  *	The process is stopped at the time read_regs is called.
114  *
115  * proc_write_regs(proc, regs)
116  *	Update the current register set from the passed in regs
117  *	structure.  Take care to avoid clobbering special CPU
118  *	registers or privileged bits in the PSL.
119  *	Depending on the architecture this may have fix-up work to do,
120  *	especially if the IAR or PCW are modified.
121  *	The process is stopped at the time write_regs is called.
122  *
123  * proc_read_fpregs, proc_write_fpregs
124  *	deal with the floating point register set, otherwise as above.
125  *
126  * proc_read_dbregs, proc_write_dbregs
127  *	deal with the processor debug register set, otherwise as above.
128  *
129  * proc_sstep(proc)
130  *	Arrange for the process to trap after executing a single instruction.
131  */
132 
133 #define	PROC_ACTION(action) do {					\
134 	int error;							\
135 									\
136 	PROC_LOCK_ASSERT(td->td_proc, MA_OWNED);			\
137 	if ((td->td_proc->p_flag & P_INMEM) == 0)			\
138 		error = EIO;						\
139 	else								\
140 		error = (action);					\
141 	return (error);							\
142 } while(0)
143 
144 int
proc_read_regs(struct thread * td,struct reg * regs)145 proc_read_regs(struct thread *td, struct reg *regs)
146 {
147 
148 	PROC_ACTION(fill_regs(td, regs));
149 }
150 
151 int
proc_write_regs(struct thread * td,struct reg * regs)152 proc_write_regs(struct thread *td, struct reg *regs)
153 {
154 
155 	PROC_ACTION(set_regs(td, regs));
156 }
157 
158 int
proc_read_dbregs(struct thread * td,struct dbreg * dbregs)159 proc_read_dbregs(struct thread *td, struct dbreg *dbregs)
160 {
161 
162 	PROC_ACTION(fill_dbregs(td, dbregs));
163 }
164 
165 int
proc_write_dbregs(struct thread * td,struct dbreg * dbregs)166 proc_write_dbregs(struct thread *td, struct dbreg *dbregs)
167 {
168 
169 	PROC_ACTION(set_dbregs(td, dbregs));
170 }
171 
172 /*
173  * Ptrace doesn't support fpregs at all, and there are no security holes
174  * or translations for fpregs, so we can just copy them.
175  */
176 int
proc_read_fpregs(struct thread * td,struct fpreg * fpregs)177 proc_read_fpregs(struct thread *td, struct fpreg *fpregs)
178 {
179 
180 	PROC_ACTION(fill_fpregs(td, fpregs));
181 }
182 
183 int
proc_write_fpregs(struct thread * td,struct fpreg * fpregs)184 proc_write_fpregs(struct thread *td, struct fpreg *fpregs)
185 {
186 
187 	PROC_ACTION(set_fpregs(td, fpregs));
188 }
189 
190 #ifdef COMPAT_FREEBSD32
191 /* For 32 bit binaries, we need to expose the 32 bit regs layouts. */
192 int
proc_read_regs32(struct thread * td,struct reg32 * regs32)193 proc_read_regs32(struct thread *td, struct reg32 *regs32)
194 {
195 
196 	PROC_ACTION(fill_regs32(td, regs32));
197 }
198 
199 int
proc_write_regs32(struct thread * td,struct reg32 * regs32)200 proc_write_regs32(struct thread *td, struct reg32 *regs32)
201 {
202 
203 	PROC_ACTION(set_regs32(td, regs32));
204 }
205 
206 int
proc_read_dbregs32(struct thread * td,struct dbreg32 * dbregs32)207 proc_read_dbregs32(struct thread *td, struct dbreg32 *dbregs32)
208 {
209 
210 	PROC_ACTION(fill_dbregs32(td, dbregs32));
211 }
212 
213 int
proc_write_dbregs32(struct thread * td,struct dbreg32 * dbregs32)214 proc_write_dbregs32(struct thread *td, struct dbreg32 *dbregs32)
215 {
216 
217 	PROC_ACTION(set_dbregs32(td, dbregs32));
218 }
219 
220 int
proc_read_fpregs32(struct thread * td,struct fpreg32 * fpregs32)221 proc_read_fpregs32(struct thread *td, struct fpreg32 *fpregs32)
222 {
223 
224 	PROC_ACTION(fill_fpregs32(td, fpregs32));
225 }
226 
227 int
proc_write_fpregs32(struct thread * td,struct fpreg32 * fpregs32)228 proc_write_fpregs32(struct thread *td, struct fpreg32 *fpregs32)
229 {
230 
231 	PROC_ACTION(set_fpregs32(td, fpregs32));
232 }
233 #endif
234 
235 int
proc_sstep(struct thread * td)236 proc_sstep(struct thread *td)
237 {
238 
239 	PROC_ACTION(ptrace_single_step(td));
240 }
241 
242 int
proc_rwmem(struct proc * p,struct uio * uio)243 proc_rwmem(struct proc *p, struct uio *uio)
244 {
245 	vm_map_t map;
246 	vm_offset_t pageno;		/* page number */
247 	vm_prot_t reqprot;
248 	int error, fault_flags, page_offset, writing;
249 
250 	/*
251 	 * Assert that someone has locked this vmspace.  (Should be
252 	 * curthread but we can't assert that.)  This keeps the process
253 	 * from exiting out from under us until this operation completes.
254 	 */
255 	PROC_ASSERT_HELD(p);
256 	PROC_LOCK_ASSERT(p, MA_NOTOWNED);
257 
258 	/*
259 	 * The map we want...
260 	 */
261 	map = &p->p_vmspace->vm_map;
262 
263 	/*
264 	 * If we are writing, then we request vm_fault() to create a private
265 	 * copy of each page.  Since these copies will not be writeable by the
266 	 * process, we must explicity request that they be dirtied.
267 	 */
268 	writing = uio->uio_rw == UIO_WRITE;
269 	reqprot = writing ? VM_PROT_COPY | VM_PROT_READ : VM_PROT_READ;
270 	fault_flags = writing ? VM_FAULT_DIRTY : VM_FAULT_NORMAL;
271 
272 	/*
273 	 * Only map in one page at a time.  We don't have to, but it
274 	 * makes things easier.  This way is trivial - right?
275 	 */
276 	do {
277 		vm_offset_t uva;
278 		u_int len;
279 		vm_page_t m;
280 
281 		uva = (vm_offset_t)uio->uio_offset;
282 
283 		/*
284 		 * Get the page number of this segment.
285 		 */
286 		pageno = trunc_page(uva);
287 		page_offset = uva - pageno;
288 
289 		/*
290 		 * How many bytes to copy
291 		 */
292 		len = min(PAGE_SIZE - page_offset, uio->uio_resid);
293 
294 		/*
295 		 * Fault and hold the page on behalf of the process.
296 		 */
297 		error = vm_fault_hold(map, pageno, reqprot, fault_flags, &m);
298 		if (error != KERN_SUCCESS) {
299 			if (error == KERN_RESOURCE_SHORTAGE)
300 				error = ENOMEM;
301 			else
302 				error = EFAULT;
303 			break;
304 		}
305 
306 		/*
307 		 * Now do the i/o move.
308 		 */
309 		error = uiomove_fromphys(&m, page_offset, len, uio);
310 
311 		/* Make the I-cache coherent for breakpoints. */
312 		if (writing && error == 0) {
313 			vm_map_lock_read(map);
314 			if (vm_map_check_protection(map, pageno, pageno +
315 			    PAGE_SIZE, VM_PROT_EXECUTE))
316 				vm_sync_icache(map, uva, len);
317 			vm_map_unlock_read(map);
318 		}
319 
320 		/*
321 		 * Release the page.
322 		 */
323 		vm_page_lock(m);
324 		vm_page_unhold(m);
325 		vm_page_unlock(m);
326 
327 	} while (error == 0 && uio->uio_resid > 0);
328 
329 	return (error);
330 }
331 
332 static ssize_t
proc_iop(struct thread * td,struct proc * p,vm_offset_t va,void * buf,size_t len,enum uio_rw rw)333 proc_iop(struct thread *td, struct proc *p, vm_offset_t va, void *buf,
334     size_t len, enum uio_rw rw)
335 {
336 	struct iovec iov;
337 	struct uio uio;
338 	ssize_t slen;
339 	int error;
340 
341 	MPASS(len < SSIZE_MAX);
342 	slen = (ssize_t)len;
343 
344 	iov.iov_base = (caddr_t)buf;
345 	iov.iov_len = len;
346 	uio.uio_iov = &iov;
347 	uio.uio_iovcnt = 1;
348 	uio.uio_offset = va;
349 	uio.uio_resid = slen;
350 	uio.uio_segflg = UIO_SYSSPACE;
351 	uio.uio_rw = rw;
352 	uio.uio_td = td;
353 	error = proc_rwmem(p, &uio);
354 	if (uio.uio_resid == slen)
355 		return (-1);
356 	return (slen - uio.uio_resid);
357 }
358 
359 ssize_t
proc_readmem(struct thread * td,struct proc * p,vm_offset_t va,void * buf,size_t len)360 proc_readmem(struct thread *td, struct proc *p, vm_offset_t va, void *buf,
361     size_t len)
362 {
363 
364 	return (proc_iop(td, p, va, buf, len, UIO_READ));
365 }
366 
367 ssize_t
proc_writemem(struct thread * td,struct proc * p,vm_offset_t va,void * buf,size_t len)368 proc_writemem(struct thread *td, struct proc *p, vm_offset_t va, void *buf,
369     size_t len)
370 {
371 
372 	return (proc_iop(td, p, va, buf, len, UIO_WRITE));
373 }
374 
375 static int
ptrace_vm_entry(struct thread * td,struct proc * p,struct ptrace_vm_entry * pve)376 ptrace_vm_entry(struct thread *td, struct proc *p, struct ptrace_vm_entry *pve)
377 {
378 	struct vattr vattr;
379 	vm_map_t map;
380 	vm_map_entry_t entry;
381 	vm_object_t obj, tobj, lobj;
382 	struct vmspace *vm;
383 	struct vnode *vp;
384 	char *freepath, *fullpath;
385 	u_int pathlen;
386 	int error, index;
387 
388 	error = 0;
389 	obj = NULL;
390 
391 	vm = vmspace_acquire_ref(p);
392 	map = &vm->vm_map;
393 	vm_map_lock_read(map);
394 
395 	do {
396 		entry = map->header.next;
397 		index = 0;
398 		while (index < pve->pve_entry && entry != &map->header) {
399 			entry = entry->next;
400 			index++;
401 		}
402 		if (index != pve->pve_entry) {
403 			error = EINVAL;
404 			break;
405 		}
406 		while (entry != &map->header &&
407 		    (entry->eflags & MAP_ENTRY_IS_SUB_MAP) != 0) {
408 			entry = entry->next;
409 			index++;
410 		}
411 		if (entry == &map->header) {
412 			error = ENOENT;
413 			break;
414 		}
415 
416 		/* We got an entry. */
417 		pve->pve_entry = index + 1;
418 		pve->pve_timestamp = map->timestamp;
419 		pve->pve_start = entry->start;
420 		pve->pve_end = entry->end - 1;
421 		pve->pve_offset = entry->offset;
422 		pve->pve_prot = entry->protection;
423 
424 		/* Backing object's path needed? */
425 		if (pve->pve_pathlen == 0)
426 			break;
427 
428 		pathlen = pve->pve_pathlen;
429 		pve->pve_pathlen = 0;
430 
431 		obj = entry->object.vm_object;
432 		if (obj != NULL)
433 			VM_OBJECT_RLOCK(obj);
434 	} while (0);
435 
436 	vm_map_unlock_read(map);
437 	vmspace_free(vm);
438 
439 	pve->pve_fsid = VNOVAL;
440 	pve->pve_fileid = VNOVAL;
441 
442 	if (error == 0 && obj != NULL) {
443 		lobj = obj;
444 		for (tobj = obj; tobj != NULL; tobj = tobj->backing_object) {
445 			if (tobj != obj)
446 				VM_OBJECT_RLOCK(tobj);
447 			if (lobj != obj)
448 				VM_OBJECT_RUNLOCK(lobj);
449 			lobj = tobj;
450 			pve->pve_offset += tobj->backing_object_offset;
451 		}
452 		vp = vm_object_vnode(lobj);
453 		if (vp != NULL)
454 			vref(vp);
455 		if (lobj != obj)
456 			VM_OBJECT_RUNLOCK(lobj);
457 		VM_OBJECT_RUNLOCK(obj);
458 
459 		if (vp != NULL) {
460 			freepath = NULL;
461 			fullpath = NULL;
462 			vn_fullpath(td, vp, &fullpath, &freepath);
463 			vn_lock(vp, LK_SHARED | LK_RETRY);
464 			if (VOP_GETATTR(vp, &vattr, td->td_ucred) == 0) {
465 				pve->pve_fileid = vattr.va_fileid;
466 				pve->pve_fsid = vattr.va_fsid;
467 			}
468 			vput(vp);
469 
470 			if (fullpath != NULL) {
471 				pve->pve_pathlen = strlen(fullpath) + 1;
472 				if (pve->pve_pathlen <= pathlen) {
473 					error = copyout(fullpath, pve->pve_path,
474 					    pve->pve_pathlen);
475 				} else
476 					error = ENAMETOOLONG;
477 			}
478 			if (freepath != NULL)
479 				free(freepath, M_TEMP);
480 		}
481 	}
482 	if (error == 0)
483 		CTR3(KTR_PTRACE, "PT_VM_ENTRY: pid %d, entry %d, start %p",
484 		    p->p_pid, pve->pve_entry, pve->pve_start);
485 
486 	return (error);
487 }
488 
489 #ifdef COMPAT_FREEBSD32
490 static int
ptrace_vm_entry32(struct thread * td,struct proc * p,struct ptrace_vm_entry32 * pve32)491 ptrace_vm_entry32(struct thread *td, struct proc *p,
492     struct ptrace_vm_entry32 *pve32)
493 {
494 	struct ptrace_vm_entry pve;
495 	int error;
496 
497 	pve.pve_entry = pve32->pve_entry;
498 	pve.pve_pathlen = pve32->pve_pathlen;
499 	pve.pve_path = (void *)(uintptr_t)pve32->pve_path;
500 
501 	error = ptrace_vm_entry(td, p, &pve);
502 	if (error == 0) {
503 		pve32->pve_entry = pve.pve_entry;
504 		pve32->pve_timestamp = pve.pve_timestamp;
505 		pve32->pve_start = pve.pve_start;
506 		pve32->pve_end = pve.pve_end;
507 		pve32->pve_offset = pve.pve_offset;
508 		pve32->pve_prot = pve.pve_prot;
509 		pve32->pve_fileid = pve.pve_fileid;
510 		pve32->pve_fsid = pve.pve_fsid;
511 	}
512 
513 	pve32->pve_pathlen = pve.pve_pathlen;
514 	return (error);
515 }
516 
517 static void
ptrace_lwpinfo_to32(const struct ptrace_lwpinfo * pl,struct ptrace_lwpinfo32 * pl32)518 ptrace_lwpinfo_to32(const struct ptrace_lwpinfo *pl,
519     struct ptrace_lwpinfo32 *pl32)
520 {
521 
522 	pl32->pl_lwpid = pl->pl_lwpid;
523 	pl32->pl_event = pl->pl_event;
524 	pl32->pl_flags = pl->pl_flags;
525 	pl32->pl_sigmask = pl->pl_sigmask;
526 	pl32->pl_siglist = pl->pl_siglist;
527 	siginfo_to_siginfo32(&pl->pl_siginfo, &pl32->pl_siginfo);
528 	strcpy(pl32->pl_tdname, pl->pl_tdname);
529 	pl32->pl_child_pid = pl->pl_child_pid;
530 	pl32->pl_syscall_code = pl->pl_syscall_code;
531 	pl32->pl_syscall_narg = pl->pl_syscall_narg;
532 }
533 #endif /* COMPAT_FREEBSD32 */
534 
535 /*
536  * Process debugging system call.
537  */
538 #ifndef _SYS_SYSPROTO_H_
539 struct ptrace_args {
540 	int	req;
541 	pid_t	pid;
542 	caddr_t	addr;
543 	int	data;
544 };
545 #endif
546 
547 #ifdef COMPAT_FREEBSD32
548 /*
549  * This CPP subterfuge is to try and reduce the number of ifdefs in
550  * the body of the code.
551  *   COPYIN(uap->addr, &r.reg, sizeof r.reg);
552  * becomes either:
553  *   copyin(uap->addr, &r.reg, sizeof r.reg);
554  * or
555  *   copyin(uap->addr, &r.reg32, sizeof r.reg32);
556  * .. except this is done at runtime.
557  */
558 #define	COPYIN(u, k, s)		wrap32 ? \
559 	copyin(u, k ## 32, s ## 32) : \
560 	copyin(u, k, s)
561 #define	COPYOUT(k, u, s)	wrap32 ? \
562 	copyout(k ## 32, u, s ## 32) : \
563 	copyout(k, u, s)
564 #else
565 #define	COPYIN(u, k, s)		copyin(u, k, s)
566 #define	COPYOUT(k, u, s)	copyout(k, u, s)
567 #endif
568 int
sys_ptrace(struct thread * td,struct ptrace_args * uap)569 sys_ptrace(struct thread *td, struct ptrace_args *uap)
570 {
571 	/*
572 	 * XXX this obfuscation is to reduce stack usage, but the register
573 	 * structs may be too large to put on the stack anyway.
574 	 */
575 	union {
576 		struct ptrace_io_desc piod;
577 		struct ptrace_lwpinfo pl;
578 		struct ptrace_vm_entry pve;
579 		struct dbreg dbreg;
580 		struct fpreg fpreg;
581 		struct reg reg;
582 #ifdef COMPAT_FREEBSD32
583 		struct dbreg32 dbreg32;
584 		struct fpreg32 fpreg32;
585 		struct reg32 reg32;
586 		struct ptrace_io_desc32 piod32;
587 		struct ptrace_lwpinfo32 pl32;
588 		struct ptrace_vm_entry32 pve32;
589 #endif
590 	} r;
591 	void *addr;
592 	int error = 0;
593 #ifdef COMPAT_FREEBSD32
594 	int wrap32 = 0;
595 
596 	if (SV_CURPROC_FLAG(SV_ILP32))
597 		wrap32 = 1;
598 #endif
599 	AUDIT_ARG_PID(uap->pid);
600 	AUDIT_ARG_CMD(uap->req);
601 	AUDIT_ARG_VALUE(uap->data);
602 	addr = &r;
603 	switch (uap->req) {
604 	case PT_GETREGS:
605 	case PT_GETFPREGS:
606 	case PT_GETDBREGS:
607 	case PT_LWPINFO:
608 		break;
609 	case PT_SETREGS:
610 		error = COPYIN(uap->addr, &r.reg, sizeof r.reg);
611 		break;
612 	case PT_SETFPREGS:
613 		error = COPYIN(uap->addr, &r.fpreg, sizeof r.fpreg);
614 		break;
615 	case PT_SETDBREGS:
616 		error = COPYIN(uap->addr, &r.dbreg, sizeof r.dbreg);
617 		break;
618 	case PT_IO:
619 		error = COPYIN(uap->addr, &r.piod, sizeof r.piod);
620 		break;
621 	case PT_VM_ENTRY:
622 		error = COPYIN(uap->addr, &r.pve, sizeof r.pve);
623 		break;
624 	default:
625 		addr = uap->addr;
626 		break;
627 	}
628 	if (error)
629 		return (error);
630 
631 	error = kern_ptrace(td, uap->req, uap->pid, addr, uap->data);
632 	if (error)
633 		return (error);
634 
635 	switch (uap->req) {
636 	case PT_VM_ENTRY:
637 		error = COPYOUT(&r.pve, uap->addr, sizeof r.pve);
638 		break;
639 	case PT_IO:
640 		error = COPYOUT(&r.piod, uap->addr, sizeof r.piod);
641 		break;
642 	case PT_GETREGS:
643 		error = COPYOUT(&r.reg, uap->addr, sizeof r.reg);
644 		break;
645 	case PT_GETFPREGS:
646 		error = COPYOUT(&r.fpreg, uap->addr, sizeof r.fpreg);
647 		break;
648 	case PT_GETDBREGS:
649 		error = COPYOUT(&r.dbreg, uap->addr, sizeof r.dbreg);
650 		break;
651 	case PT_LWPINFO:
652 		error = copyout(&r.pl, uap->addr, uap->data);
653 		break;
654 	}
655 
656 	return (error);
657 }
658 #undef COPYIN
659 #undef COPYOUT
660 
661 #ifdef COMPAT_FREEBSD32
662 /*
663  *   PROC_READ(regs, td2, addr);
664  * becomes either:
665  *   proc_read_regs(td2, addr);
666  * or
667  *   proc_read_regs32(td2, addr);
668  * .. except this is done at runtime.  There is an additional
669  * complication in that PROC_WRITE disallows 32 bit consumers
670  * from writing to 64 bit address space targets.
671  */
672 #define	PROC_READ(w, t, a)	wrap32 ? \
673 	proc_read_ ## w ## 32(t, a) : \
674 	proc_read_ ## w (t, a)
675 #define	PROC_WRITE(w, t, a)	wrap32 ? \
676 	(safe ? proc_write_ ## w ## 32(t, a) : EINVAL ) : \
677 	proc_write_ ## w (t, a)
678 #else
679 #define	PROC_READ(w, t, a)	proc_read_ ## w (t, a)
680 #define	PROC_WRITE(w, t, a)	proc_write_ ## w (t, a)
681 #endif
682 
683 int
kern_ptrace(struct thread * td,int req,pid_t pid,void * addr,int data)684 kern_ptrace(struct thread *td, int req, pid_t pid, void *addr, int data)
685 {
686 	struct iovec iov;
687 	struct uio uio;
688 	struct proc *curp, *p, *pp;
689 	struct thread *td2 = NULL, *td3;
690 	struct ptrace_io_desc *piod = NULL;
691 	struct ptrace_lwpinfo *pl;
692 	int error, num, tmp;
693 	int proctree_locked = 0;
694 	lwpid_t tid = 0, *buf;
695 #ifdef COMPAT_FREEBSD32
696 	int wrap32 = 0, safe = 0;
697 	struct ptrace_io_desc32 *piod32 = NULL;
698 	struct ptrace_lwpinfo32 *pl32 = NULL;
699 	struct ptrace_lwpinfo plr;
700 #endif
701 
702 	curp = td->td_proc;
703 
704 	/* Lock proctree before locking the process. */
705 	switch (req) {
706 	case PT_TRACE_ME:
707 	case PT_ATTACH:
708 	case PT_STEP:
709 	case PT_CONTINUE:
710 	case PT_TO_SCE:
711 	case PT_TO_SCX:
712 	case PT_SYSCALL:
713 	case PT_FOLLOW_FORK:
714 	case PT_LWP_EVENTS:
715 	case PT_DETACH:
716 		sx_xlock(&proctree_lock);
717 		proctree_locked = 1;
718 		break;
719 	default:
720 		break;
721 	}
722 
723 	if (req == PT_TRACE_ME) {
724 		p = td->td_proc;
725 		PROC_LOCK(p);
726 	} else {
727 		if (pid <= PID_MAX) {
728 			if ((p = pfind(pid)) == NULL) {
729 				if (proctree_locked)
730 					sx_xunlock(&proctree_lock);
731 				return (ESRCH);
732 			}
733 		} else {
734 			td2 = tdfind(pid, -1);
735 			if (td2 == NULL) {
736 				if (proctree_locked)
737 					sx_xunlock(&proctree_lock);
738 				return (ESRCH);
739 			}
740 			p = td2->td_proc;
741 			tid = pid;
742 			pid = p->p_pid;
743 		}
744 	}
745 	AUDIT_ARG_PROCESS(p);
746 
747 	if ((p->p_flag & P_WEXIT) != 0) {
748 		error = ESRCH;
749 		goto fail;
750 	}
751 	if ((error = p_cansee(td, p)) != 0)
752 		goto fail;
753 
754 	if ((error = p_candebug(td, p)) != 0)
755 		goto fail;
756 
757 	/*
758 	 * System processes can't be debugged.
759 	 */
760 	if ((p->p_flag & P_SYSTEM) != 0) {
761 		error = EINVAL;
762 		goto fail;
763 	}
764 
765 	if (tid == 0) {
766 		if ((p->p_flag & P_STOPPED_TRACE) != 0) {
767 			KASSERT(p->p_xthread != NULL, ("NULL p_xthread"));
768 			td2 = p->p_xthread;
769 		} else {
770 			td2 = FIRST_THREAD_IN_PROC(p);
771 		}
772 		tid = td2->td_tid;
773 	}
774 
775 #ifdef COMPAT_FREEBSD32
776 	/*
777 	 * Test if we're a 32 bit client and what the target is.
778 	 * Set the wrap controls accordingly.
779 	 */
780 	if (SV_CURPROC_FLAG(SV_ILP32)) {
781 		if (SV_PROC_FLAG(td2->td_proc, SV_ILP32))
782 			safe = 1;
783 		wrap32 = 1;
784 	}
785 #endif
786 	/*
787 	 * Permissions check
788 	 */
789 	switch (req) {
790 	case PT_TRACE_ME:
791 		/*
792 		 * Always legal, when there is a parent process which
793 		 * could trace us.  Otherwise, reject.
794 		 */
795 		if ((p->p_flag & P_TRACED) != 0) {
796 			error = EBUSY;
797 			goto fail;
798 		}
799 		if (p->p_pptr == initproc) {
800 			error = EPERM;
801 			goto fail;
802 		}
803 		break;
804 
805 	case PT_ATTACH:
806 		/* Self */
807 		if (p == td->td_proc) {
808 			error = EINVAL;
809 			goto fail;
810 		}
811 
812 		/* Already traced */
813 		if (p->p_flag & P_TRACED) {
814 			error = EBUSY;
815 			goto fail;
816 		}
817 
818 		/* Can't trace an ancestor if you're being traced. */
819 		if (curp->p_flag & P_TRACED) {
820 			for (pp = curp->p_pptr; pp != NULL; pp = pp->p_pptr) {
821 				if (pp == p) {
822 					error = EINVAL;
823 					goto fail;
824 				}
825 			}
826 		}
827 
828 
829 		/* OK */
830 		break;
831 
832 	case PT_CLEARSTEP:
833 		/* Allow thread to clear single step for itself */
834 		if (td->td_tid == tid)
835 			break;
836 
837 		/* FALLTHROUGH */
838 	default:
839 		/* not being traced... */
840 		if ((p->p_flag & P_TRACED) == 0) {
841 			error = EPERM;
842 			goto fail;
843 		}
844 
845 		/* not being traced by YOU */
846 		if (p->p_pptr != td->td_proc) {
847 			error = EBUSY;
848 			goto fail;
849 		}
850 
851 		/* not currently stopped */
852 		if ((p->p_flag & (P_STOPPED_SIG | P_STOPPED_TRACE)) == 0 ||
853 		    p->p_suspcount != p->p_numthreads  ||
854 		    (p->p_flag & P_WAITED) == 0) {
855 			error = EBUSY;
856 			goto fail;
857 		}
858 
859 		if ((p->p_flag & P_STOPPED_TRACE) == 0) {
860 			static int count = 0;
861 			if (count++ == 0)
862 				printf("P_STOPPED_TRACE not set.\n");
863 		}
864 
865 		/* OK */
866 		break;
867 	}
868 
869 	/* Keep this process around until we finish this request. */
870 	_PHOLD(p);
871 
872 #ifdef FIX_SSTEP
873 	/*
874 	 * Single step fixup ala procfs
875 	 */
876 	FIX_SSTEP(td2);
877 #endif
878 
879 	/*
880 	 * Actually do the requests
881 	 */
882 
883 	td->td_retval[0] = 0;
884 
885 	switch (req) {
886 	case PT_TRACE_ME:
887 		/* set my trace flag and "owner" so it can read/write me */
888 		p->p_flag |= P_TRACED;
889 		if (p->p_flag & P_PPWAIT)
890 			p->p_flag |= P_PPTRACE;
891 		p->p_oppid = p->p_pptr->p_pid;
892 		CTR1(KTR_PTRACE, "PT_TRACE_ME: pid %d", p->p_pid);
893 		break;
894 
895 	case PT_ATTACH:
896 		/* security check done above */
897 		/*
898 		 * It would be nice if the tracing relationship was separate
899 		 * from the parent relationship but that would require
900 		 * another set of links in the proc struct or for "wait"
901 		 * to scan the entire proc table.  To make life easier,
902 		 * we just re-parent the process we're trying to trace.
903 		 * The old parent is remembered so we can put things back
904 		 * on a "detach".
905 		 */
906 		p->p_flag |= P_TRACED;
907 		p->p_oppid = p->p_pptr->p_pid;
908 		if (p->p_pptr != td->td_proc) {
909 			proc_reparent(p, td->td_proc);
910 		}
911 		data = SIGSTOP;
912 		CTR2(KTR_PTRACE, "PT_ATTACH: pid %d, oppid %d", p->p_pid,
913 		    p->p_oppid);
914 		goto sendsig;	/* in PT_CONTINUE below */
915 
916 	case PT_CLEARSTEP:
917 		CTR2(KTR_PTRACE, "PT_CLEARSTEP: tid %d (pid %d)", td2->td_tid,
918 		    p->p_pid);
919 		error = ptrace_clear_single_step(td2);
920 		break;
921 
922 	case PT_SETSTEP:
923 		CTR2(KTR_PTRACE, "PT_SETSTEP: tid %d (pid %d)", td2->td_tid,
924 		    p->p_pid);
925 		error = ptrace_single_step(td2);
926 		break;
927 
928 	case PT_SUSPEND:
929 		CTR2(KTR_PTRACE, "PT_SUSPEND: tid %d (pid %d)", td2->td_tid,
930 		    p->p_pid);
931 		td2->td_dbgflags |= TDB_SUSPEND;
932 		thread_lock(td2);
933 		td2->td_flags |= TDF_NEEDSUSPCHK;
934 		thread_unlock(td2);
935 		break;
936 
937 	case PT_RESUME:
938 		CTR2(KTR_PTRACE, "PT_RESUME: tid %d (pid %d)", td2->td_tid,
939 		    p->p_pid);
940 		td2->td_dbgflags &= ~TDB_SUSPEND;
941 		break;
942 
943 	case PT_FOLLOW_FORK:
944 		CTR3(KTR_PTRACE, "PT_FOLLOW_FORK: pid %d %s -> %s", p->p_pid,
945 		    p->p_flag & P_FOLLOWFORK ? "enabled" : "disabled",
946 		    data ? "enabled" : "disabled");
947 		if (data)
948 			p->p_flag |= P_FOLLOWFORK;
949 		else
950 			p->p_flag &= ~P_FOLLOWFORK;
951 		break;
952 
953 	case PT_LWP_EVENTS:
954 		CTR3(KTR_PTRACE, "PT_LWP_EVENTS: pid %d %s -> %s", p->p_pid,
955 		    p->p_flag2 & P2_LWP_EVENTS ? "enabled" : "disabled",
956 		    data ? "enabled" : "disabled");
957 		if (data)
958 			p->p_flag2 |= P2_LWP_EVENTS;
959 		else
960 			p->p_flag2 &= ~P2_LWP_EVENTS;
961 		break;
962 
963 	case PT_STEP:
964 	case PT_CONTINUE:
965 	case PT_TO_SCE:
966 	case PT_TO_SCX:
967 	case PT_SYSCALL:
968 	case PT_DETACH:
969 		/* Zero means do not send any signal */
970 		if (data < 0 || data > _SIG_MAXSIG) {
971 			error = EINVAL;
972 			break;
973 		}
974 
975 		switch (req) {
976 		case PT_STEP:
977 			CTR2(KTR_PTRACE, "PT_STEP: tid %d (pid %d)",
978 			    td2->td_tid, p->p_pid);
979 			error = ptrace_single_step(td2);
980 			if (error)
981 				goto out;
982 			break;
983 		case PT_CONTINUE:
984 		case PT_TO_SCE:
985 		case PT_TO_SCX:
986 		case PT_SYSCALL:
987 			if (addr != (void *)1) {
988 				error = ptrace_set_pc(td2,
989 				    (u_long)(uintfptr_t)addr);
990 				if (error)
991 					goto out;
992 			}
993 			switch (req) {
994 			case PT_TO_SCE:
995 				p->p_stops |= S_PT_SCE;
996 				CTR4(KTR_PTRACE,
997 		    "PT_TO_SCE: pid %d, stops = %#x, PC = %#lx, sig = %d",
998 				    p->p_pid, p->p_stops,
999 				    (u_long)(uintfptr_t)addr, data);
1000 				break;
1001 			case PT_TO_SCX:
1002 				p->p_stops |= S_PT_SCX;
1003 				CTR4(KTR_PTRACE,
1004 		    "PT_TO_SCX: pid %d, stops = %#x, PC = %#lx, sig = %d",
1005 				    p->p_pid, p->p_stops,
1006 				    (u_long)(uintfptr_t)addr, data);
1007 				break;
1008 			case PT_SYSCALL:
1009 				p->p_stops |= S_PT_SCE | S_PT_SCX;
1010 				CTR4(KTR_PTRACE,
1011 		    "PT_SYSCALL: pid %d, stops = %#x, PC = %#lx, sig = %d",
1012 				    p->p_pid, p->p_stops,
1013 				    (u_long)(uintfptr_t)addr, data);
1014 				break;
1015 			case PT_CONTINUE:
1016 				CTR3(KTR_PTRACE,
1017 				    "PT_CONTINUE: pid %d, PC = %#lx, sig = %d",
1018 				    p->p_pid, (u_long)(uintfptr_t)addr, data);
1019 				break;
1020 			}
1021 			break;
1022 		case PT_DETACH:
1023 			/*
1024 			 * Reset the process parent.
1025 			 *
1026 			 * NB: This clears P_TRACED before reparenting
1027 			 * a detached process back to its original
1028 			 * parent.  Otherwise the debugee will be set
1029 			 * as an orphan of the debugger.
1030 			 */
1031 			p->p_flag &= ~(P_TRACED | P_WAITED | P_FOLLOWFORK);
1032 			if (p->p_oppid != p->p_pptr->p_pid) {
1033 				PROC_LOCK(p->p_pptr);
1034 				sigqueue_take(p->p_ksi);
1035 				PROC_UNLOCK(p->p_pptr);
1036 
1037 				pp = proc_realparent(p);
1038 				proc_reparent(p, pp);
1039 				if (pp == initproc)
1040 					p->p_sigparent = SIGCHLD;
1041 				CTR3(KTR_PTRACE,
1042 			    "PT_DETACH: pid %d reparented to pid %d, sig %d",
1043 				    p->p_pid, pp->p_pid, data);
1044 			} else
1045 				CTR2(KTR_PTRACE, "PT_DETACH: pid %d, sig %d",
1046 				    p->p_pid, data);
1047 			p->p_oppid = 0;
1048 			p->p_stops = 0;
1049 
1050 			/* should we send SIGCHLD? */
1051 			/* childproc_continued(p); */
1052 			break;
1053 		}
1054 
1055 	sendsig:
1056 		if (proctree_locked) {
1057 			sx_xunlock(&proctree_lock);
1058 			proctree_locked = 0;
1059 		}
1060 		p->p_xsig = data;
1061 		p->p_xthread = NULL;
1062 		if ((p->p_flag & (P_STOPPED_SIG | P_STOPPED_TRACE)) != 0) {
1063 			/* deliver or queue signal */
1064 			td2->td_dbgflags &= ~TDB_XSIG;
1065 			td2->td_xsig = data;
1066 
1067 			if (req == PT_DETACH) {
1068 				FOREACH_THREAD_IN_PROC(p, td3)
1069 					td3->td_dbgflags &= ~TDB_SUSPEND;
1070 			}
1071 			/*
1072 			 * unsuspend all threads, to not let a thread run,
1073 			 * you should use PT_SUSPEND to suspend it before
1074 			 * continuing process.
1075 			 */
1076 			PROC_SLOCK(p);
1077 			p->p_flag &= ~(P_STOPPED_TRACE|P_STOPPED_SIG|P_WAITED);
1078 			thread_unsuspend(p);
1079 			PROC_SUNLOCK(p);
1080 			if (req == PT_ATTACH)
1081 				kern_psignal(p, data);
1082 		} else {
1083 			if (data)
1084 				kern_psignal(p, data);
1085 		}
1086 		break;
1087 
1088 	case PT_WRITE_I:
1089 	case PT_WRITE_D:
1090 		td2->td_dbgflags |= TDB_USERWR;
1091 		PROC_UNLOCK(p);
1092 		error = 0;
1093 		if (proc_writemem(td, p, (off_t)(uintptr_t)addr, &data,
1094 		    sizeof(int)) != sizeof(int))
1095 			error = ENOMEM;
1096 		else
1097 			CTR3(KTR_PTRACE, "PT_WRITE: pid %d: %p <= %#x",
1098 			    p->p_pid, addr, data);
1099 		PROC_LOCK(p);
1100 		break;
1101 
1102 	case PT_READ_I:
1103 	case PT_READ_D:
1104 		PROC_UNLOCK(p);
1105 		error = tmp = 0;
1106 		if (proc_readmem(td, p, (off_t)(uintptr_t)addr, &tmp,
1107 		    sizeof(int)) != sizeof(int))
1108 			error = ENOMEM;
1109 		else
1110 			CTR3(KTR_PTRACE, "PT_READ: pid %d: %p >= %#x",
1111 			    p->p_pid, addr, tmp);
1112 		td->td_retval[0] = tmp;
1113 		PROC_LOCK(p);
1114 		break;
1115 
1116 	case PT_IO:
1117 #ifdef COMPAT_FREEBSD32
1118 		if (wrap32) {
1119 			piod32 = addr;
1120 			iov.iov_base = (void *)(uintptr_t)piod32->piod_addr;
1121 			iov.iov_len = piod32->piod_len;
1122 			uio.uio_offset = (off_t)(uintptr_t)piod32->piod_offs;
1123 			uio.uio_resid = piod32->piod_len;
1124 		} else
1125 #endif
1126 		{
1127 			piod = addr;
1128 			iov.iov_base = piod->piod_addr;
1129 			iov.iov_len = piod->piod_len;
1130 			uio.uio_offset = (off_t)(uintptr_t)piod->piod_offs;
1131 			uio.uio_resid = piod->piod_len;
1132 		}
1133 		uio.uio_iov = &iov;
1134 		uio.uio_iovcnt = 1;
1135 		uio.uio_segflg = UIO_USERSPACE;
1136 		uio.uio_td = td;
1137 #ifdef COMPAT_FREEBSD32
1138 		tmp = wrap32 ? piod32->piod_op : piod->piod_op;
1139 #else
1140 		tmp = piod->piod_op;
1141 #endif
1142 		switch (tmp) {
1143 		case PIOD_READ_D:
1144 		case PIOD_READ_I:
1145 			CTR3(KTR_PTRACE, "PT_IO: pid %d: READ (%p, %#x)",
1146 			    p->p_pid, (uintptr_t)uio.uio_offset, uio.uio_resid);
1147 			uio.uio_rw = UIO_READ;
1148 			break;
1149 		case PIOD_WRITE_D:
1150 		case PIOD_WRITE_I:
1151 			CTR3(KTR_PTRACE, "PT_IO: pid %d: WRITE (%p, %#x)",
1152 			    p->p_pid, (uintptr_t)uio.uio_offset, uio.uio_resid);
1153 			td2->td_dbgflags |= TDB_USERWR;
1154 			uio.uio_rw = UIO_WRITE;
1155 			break;
1156 		default:
1157 			error = EINVAL;
1158 			goto out;
1159 		}
1160 		PROC_UNLOCK(p);
1161 		error = proc_rwmem(p, &uio);
1162 #ifdef COMPAT_FREEBSD32
1163 		if (wrap32)
1164 			piod32->piod_len -= uio.uio_resid;
1165 		else
1166 #endif
1167 			piod->piod_len -= uio.uio_resid;
1168 		PROC_LOCK(p);
1169 		break;
1170 
1171 	case PT_KILL:
1172 		CTR1(KTR_PTRACE, "PT_KILL: pid %d", p->p_pid);
1173 		data = SIGKILL;
1174 		goto sendsig;	/* in PT_CONTINUE above */
1175 
1176 	case PT_SETREGS:
1177 		CTR2(KTR_PTRACE, "PT_SETREGS: tid %d (pid %d)", td2->td_tid,
1178 		    p->p_pid);
1179 		td2->td_dbgflags |= TDB_USERWR;
1180 		error = PROC_WRITE(regs, td2, addr);
1181 		break;
1182 
1183 	case PT_GETREGS:
1184 		CTR2(KTR_PTRACE, "PT_GETREGS: tid %d (pid %d)", td2->td_tid,
1185 		    p->p_pid);
1186 		error = PROC_READ(regs, td2, addr);
1187 		break;
1188 
1189 	case PT_SETFPREGS:
1190 		CTR2(KTR_PTRACE, "PT_SETFPREGS: tid %d (pid %d)", td2->td_tid,
1191 		    p->p_pid);
1192 		td2->td_dbgflags |= TDB_USERWR;
1193 		error = PROC_WRITE(fpregs, td2, addr);
1194 		break;
1195 
1196 	case PT_GETFPREGS:
1197 		CTR2(KTR_PTRACE, "PT_GETFPREGS: tid %d (pid %d)", td2->td_tid,
1198 		    p->p_pid);
1199 		error = PROC_READ(fpregs, td2, addr);
1200 		break;
1201 
1202 	case PT_SETDBREGS:
1203 		CTR2(KTR_PTRACE, "PT_SETDBREGS: tid %d (pid %d)", td2->td_tid,
1204 		    p->p_pid);
1205 		td2->td_dbgflags |= TDB_USERWR;
1206 		error = PROC_WRITE(dbregs, td2, addr);
1207 		break;
1208 
1209 	case PT_GETDBREGS:
1210 		CTR2(KTR_PTRACE, "PT_GETDBREGS: tid %d (pid %d)", td2->td_tid,
1211 		    p->p_pid);
1212 		error = PROC_READ(dbregs, td2, addr);
1213 		break;
1214 
1215 	case PT_LWPINFO:
1216 		if (data <= 0 ||
1217 #ifdef COMPAT_FREEBSD32
1218 		    (!wrap32 && data > sizeof(*pl)) ||
1219 		    (wrap32 && data > sizeof(*pl32))) {
1220 #else
1221 		    data > sizeof(*pl)) {
1222 #endif
1223 			error = EINVAL;
1224 			break;
1225 		}
1226 #ifdef COMPAT_FREEBSD32
1227 		if (wrap32) {
1228 			pl = &plr;
1229 			pl32 = addr;
1230 		} else
1231 #endif
1232 		pl = addr;
1233 		pl->pl_lwpid = td2->td_tid;
1234 		pl->pl_event = PL_EVENT_NONE;
1235 		pl->pl_flags = 0;
1236 		if (td2->td_dbgflags & TDB_XSIG) {
1237 			pl->pl_event = PL_EVENT_SIGNAL;
1238 			if (td2->td_dbgksi.ksi_signo != 0 &&
1239 #ifdef COMPAT_FREEBSD32
1240 			    ((!wrap32 && data >= offsetof(struct ptrace_lwpinfo,
1241 			    pl_siginfo) + sizeof(pl->pl_siginfo)) ||
1242 			    (wrap32 && data >= offsetof(struct ptrace_lwpinfo32,
1243 			    pl_siginfo) + sizeof(struct siginfo32)))
1244 #else
1245 			    data >= offsetof(struct ptrace_lwpinfo, pl_siginfo)
1246 			    + sizeof(pl->pl_siginfo)
1247 #endif
1248 			){
1249 				pl->pl_flags |= PL_FLAG_SI;
1250 				pl->pl_siginfo = td2->td_dbgksi.ksi_info;
1251 			}
1252 		}
1253 		if ((pl->pl_flags & PL_FLAG_SI) == 0)
1254 			bzero(&pl->pl_siginfo, sizeof(pl->pl_siginfo));
1255 		if (td2->td_dbgflags & TDB_SCE)
1256 			pl->pl_flags |= PL_FLAG_SCE;
1257 		else if (td2->td_dbgflags & TDB_SCX)
1258 			pl->pl_flags |= PL_FLAG_SCX;
1259 		if (td2->td_dbgflags & TDB_EXEC)
1260 			pl->pl_flags |= PL_FLAG_EXEC;
1261 		if (td2->td_dbgflags & TDB_FORK) {
1262 			pl->pl_flags |= PL_FLAG_FORKED;
1263 			pl->pl_child_pid = td2->td_dbg_forked;
1264 		}
1265 		if (td2->td_dbgflags & TDB_CHILD)
1266 			pl->pl_flags |= PL_FLAG_CHILD;
1267 		if (td2->td_dbgflags & TDB_BORN)
1268 			pl->pl_flags |= PL_FLAG_BORN;
1269 		if (td2->td_dbgflags & TDB_EXIT)
1270 			pl->pl_flags |= PL_FLAG_EXITED;
1271 		pl->pl_sigmask = td2->td_sigmask;
1272 		pl->pl_siglist = td2->td_siglist;
1273 		strcpy(pl->pl_tdname, td2->td_name);
1274 		if ((td2->td_dbgflags & (TDB_SCE | TDB_SCX)) != 0) {
1275 			pl->pl_syscall_code = td2->td_dbg_sc_code;
1276 			pl->pl_syscall_narg = td2->td_dbg_sc_narg;
1277 		} else {
1278 			pl->pl_syscall_code = 0;
1279 			pl->pl_syscall_narg = 0;
1280 		}
1281 #ifdef COMPAT_FREEBSD32
1282 		if (wrap32)
1283 			ptrace_lwpinfo_to32(pl, pl32);
1284 #endif
1285 		CTR6(KTR_PTRACE,
1286     "PT_LWPINFO: tid %d (pid %d) event %d flags %#x child pid %d syscall %d",
1287 		    td2->td_tid, p->p_pid, pl->pl_event, pl->pl_flags,
1288 		    pl->pl_child_pid, pl->pl_syscall_code);
1289 		break;
1290 
1291 	case PT_GETNUMLWPS:
1292 		CTR2(KTR_PTRACE, "PT_GETNUMLWPS: pid %d: %d threads", p->p_pid,
1293 		    p->p_numthreads);
1294 		td->td_retval[0] = p->p_numthreads;
1295 		break;
1296 
1297 	case PT_GETLWPLIST:
1298 		CTR3(KTR_PTRACE, "PT_GETLWPLIST: pid %d: data %d, actual %d",
1299 		    p->p_pid, data, p->p_numthreads);
1300 		if (data <= 0) {
1301 			error = EINVAL;
1302 			break;
1303 		}
1304 		num = imin(p->p_numthreads, data);
1305 		PROC_UNLOCK(p);
1306 		buf = malloc(num * sizeof(lwpid_t), M_TEMP, M_WAITOK);
1307 		tmp = 0;
1308 		PROC_LOCK(p);
1309 		FOREACH_THREAD_IN_PROC(p, td2) {
1310 			if (tmp >= num)
1311 				break;
1312 			buf[tmp++] = td2->td_tid;
1313 		}
1314 		PROC_UNLOCK(p);
1315 		error = copyout(buf, addr, tmp * sizeof(lwpid_t));
1316 		free(buf, M_TEMP);
1317 		if (!error)
1318 			td->td_retval[0] = tmp;
1319 		PROC_LOCK(p);
1320 		break;
1321 
1322 	case PT_VM_TIMESTAMP:
1323 		CTR2(KTR_PTRACE, "PT_VM_TIMESTAMP: pid %d: timestamp %d",
1324 		    p->p_pid, p->p_vmspace->vm_map.timestamp);
1325 		td->td_retval[0] = p->p_vmspace->vm_map.timestamp;
1326 		break;
1327 
1328 	case PT_VM_ENTRY:
1329 		PROC_UNLOCK(p);
1330 #ifdef COMPAT_FREEBSD32
1331 		if (wrap32)
1332 			error = ptrace_vm_entry32(td, p, addr);
1333 		else
1334 #endif
1335 		error = ptrace_vm_entry(td, p, addr);
1336 		PROC_LOCK(p);
1337 		break;
1338 
1339 	default:
1340 #ifdef __HAVE_PTRACE_MACHDEP
1341 		if (req >= PT_FIRSTMACH) {
1342 			PROC_UNLOCK(p);
1343 			error = cpu_ptrace(td2, req, addr, data);
1344 			PROC_LOCK(p);
1345 		} else
1346 #endif
1347 			/* Unknown request. */
1348 			error = EINVAL;
1349 		break;
1350 	}
1351 
1352 out:
1353 	/* Drop our hold on this process now that the request has completed. */
1354 	_PRELE(p);
1355 fail:
1356 	PROC_UNLOCK(p);
1357 	if (proctree_locked)
1358 		sx_xunlock(&proctree_lock);
1359 	return (error);
1360 }
1361 #undef PROC_READ
1362 #undef PROC_WRITE
1363 
1364 /*
1365  * Stop a process because of a debugging event;
1366  * stay stopped until p->p_step is cleared
1367  * (cleared by PIOCCONT in procfs).
1368  */
1369 void
1370 stopevent(struct proc *p, unsigned int event, unsigned int val)
1371 {
1372 
1373 	PROC_LOCK_ASSERT(p, MA_OWNED);
1374 	p->p_step = 1;
1375 	CTR3(KTR_PTRACE, "stopevent: pid %d event %u val %u", p->p_pid, event,
1376 	    val);
1377 	do {
1378 		if (event != S_EXIT)
1379 			p->p_xsig = val;
1380 		p->p_xthread = NULL;
1381 		p->p_stype = event;	/* Which event caused the stop? */
1382 		wakeup(&p->p_stype);	/* Wake up any PIOCWAIT'ing procs */
1383 		msleep(&p->p_step, &p->p_mtx, PWAIT, "stopevent", 0);
1384 	} while (p->p_step);
1385 }
1386 
1387 
1388