xref: /freebsd/sys/kern/sys_process.c (revision daf1cffce2e07931f27c6c6998652e90df6ba87e)
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  * $FreeBSD$
32  */
33 
34 #include <sys/param.h>
35 #include <sys/systm.h>
36 #include <sys/sysproto.h>
37 #include <sys/proc.h>
38 #include <sys/vnode.h>
39 #include <sys/ptrace.h>
40 
41 #include <machine/reg.h>
42 #include <vm/vm.h>
43 #include <sys/lock.h>
44 #include <vm/pmap.h>
45 #include <vm/vm_map.h>
46 #include <vm/vm_page.h>
47 
48 #include <sys/user.h>
49 #include <miscfs/procfs/procfs.h>
50 
51 /* use the equivalent procfs code */
52 #if 0
53 static int
54 pread (struct proc *procp, unsigned int addr, unsigned int *retval) {
55 	int		rv;
56 	vm_map_t	map, tmap;
57 	vm_object_t	object;
58 	vm_offset_t	kva = 0;
59 	int		page_offset;	/* offset into page */
60 	vm_offset_t	pageno;		/* page number */
61 	vm_map_entry_t	out_entry;
62 	vm_prot_t	out_prot;
63 	boolean_t	wired;
64 	vm_pindex_t	pindex;
65 
66 	/* Map page into kernel space */
67 
68 	map = &procp->p_vmspace->vm_map;
69 
70 	page_offset = addr - trunc_page(addr);
71 	pageno = trunc_page(addr);
72 
73 	tmap = map;
74 	rv = vm_map_lookup (&tmap, pageno, VM_PROT_READ, &out_entry,
75 		&object, &pindex, &out_prot, &wired);
76 
77 	if (rv != KERN_SUCCESS)
78 		return EINVAL;
79 
80 	vm_map_lookup_done (tmap, out_entry);
81 
82 	/* Find space in kernel_map for the page we're interested in */
83 	rv = vm_map_find (kernel_map, object, IDX_TO_OFF(pindex),
84 		&kva, PAGE_SIZE, 0, VM_PROT_ALL, VM_PROT_ALL, 0);
85 
86 	if (!rv) {
87 		vm_object_reference (object);
88 
89 		rv = vm_map_pageable (kernel_map, kva, kva + PAGE_SIZE, 0);
90 		if (!rv) {
91 			*retval = 0;
92 			bcopy ((caddr_t)kva + page_offset,
93 			       retval, sizeof *retval);
94 		}
95 		vm_map_remove (kernel_map, kva, kva + PAGE_SIZE);
96 	}
97 
98 	return rv;
99 }
100 
101 static int
102 pwrite (struct proc *procp, unsigned int addr, unsigned int datum) {
103 	int		rv;
104 	vm_map_t	map, tmap;
105 	vm_object_t	object;
106 	vm_offset_t	kva = 0;
107 	int		page_offset;	/* offset into page */
108 	vm_offset_t	pageno;		/* page number */
109 	vm_map_entry_t	out_entry;
110 	vm_prot_t	out_prot;
111 	boolean_t	wired;
112 	vm_pindex_t	pindex;
113 	boolean_t	fix_prot = 0;
114 
115 	/* Map page into kernel space */
116 
117 	map = &procp->p_vmspace->vm_map;
118 
119 	page_offset = addr - trunc_page(addr);
120 	pageno = trunc_page(addr);
121 
122 	/*
123 	 * Check the permissions for the area we're interested in.
124 	 */
125 
126 	if (vm_map_check_protection (map, pageno, pageno + PAGE_SIZE,
127 		VM_PROT_WRITE) == FALSE) {
128 		/*
129 		 * If the page was not writable, we make it so.
130 		 * XXX It is possible a page may *not* be read/executable,
131 		 * if a process changes that!
132 		 */
133 		fix_prot = 1;
134 		/* The page isn't writable, so let's try making it so... */
135 		if ((rv = vm_map_protect (map, pageno, pageno + PAGE_SIZE,
136 			VM_PROT_ALL, 0)) != KERN_SUCCESS)
137 		  return EFAULT;	/* I guess... */
138 	}
139 
140 	/*
141 	 * Now we need to get the page.  out_entry, out_prot, wired, and
142 	 * single_use aren't used.  One would think the vm code would be
143 	 * a *bit* nicer...  We use tmap because vm_map_lookup() can
144 	 * change the map argument.
145 	 */
146 
147 	tmap = map;
148 	rv = vm_map_lookup (&tmap, pageno, VM_PROT_WRITE, &out_entry,
149 		&object, &pindex, &out_prot, &wired);
150 	if (rv != KERN_SUCCESS) {
151 		return EINVAL;
152 	}
153 
154 	/*
155 	 * Okay, we've got the page.  Let's release tmap.
156 	 */
157 
158 	vm_map_lookup_done (tmap, out_entry);
159 
160 	/*
161 	 * Fault the page in...
162 	 */
163 
164 	rv = vm_fault(map, pageno, VM_PROT_WRITE|VM_PROT_READ, FALSE);
165 	if (rv != KERN_SUCCESS)
166 		return EFAULT;
167 
168 	/* Find space in kernel_map for the page we're interested in */
169 	rv = vm_map_find (kernel_map, object, IDX_TO_OFF(pindex),
170 		&kva, PAGE_SIZE, 0,
171 		VM_PROT_ALL, VM_PROT_ALL, 0);
172 	if (!rv) {
173 		vm_object_reference (object);
174 
175 		rv = vm_map_pageable (kernel_map, kva, kva + PAGE_SIZE, 0);
176 		if (!rv) {
177 		  bcopy (&datum, (caddr_t)kva + page_offset, sizeof datum);
178 		}
179 		vm_map_remove (kernel_map, kva, kva + PAGE_SIZE);
180 	}
181 
182 	if (fix_prot)
183 		vm_map_protect (map, pageno, pageno + PAGE_SIZE,
184 			VM_PROT_READ|VM_PROT_EXECUTE, 0);
185 	return rv;
186 }
187 #endif
188 
189 /*
190  * Process debugging system call.
191  */
192 #ifndef _SYS_SYSPROTO_H_
193 struct ptrace_args {
194 	int	req;
195 	pid_t	pid;
196 	caddr_t	addr;
197 	int	data;
198 };
199 #endif
200 
201 int
202 ptrace(curp, uap)
203 	struct proc *curp;
204 	struct ptrace_args *uap;
205 {
206 	struct proc *p;
207 	struct iovec iov;
208 	struct uio uio;
209 	int error = 0;
210 	int write;
211 	int s;
212 
213 	write = 0;
214 	if (uap->req == PT_TRACE_ME)
215 		p = curp;
216 	else {
217 		if ((p = pfind(uap->pid)) == NULL)
218 			return ESRCH;
219 	}
220 	if (!PRISON_CHECK(curp, p))
221 		return (ESRCH);
222 
223 	/*
224 	 * Permissions check
225 	 */
226 	switch (uap->req) {
227 	case PT_TRACE_ME:
228 		/* Always legal. */
229 		break;
230 
231 	case PT_ATTACH:
232 		/* Self */
233 		if (p->p_pid == curp->p_pid)
234 			return EINVAL;
235 
236 		/* Already traced */
237 		if (p->p_flag & P_TRACED)
238 			return EBUSY;
239 
240 		/* not owned by you, has done setuid (unless you're root) */
241 		if ((p->p_cred->p_ruid != curp->p_cred->p_ruid) ||
242 		     (p->p_flag & P_SUGID)) {
243 			if ((error = suser(curp)) != 0)
244 				return error;
245 		}
246 
247 		/* can't trace init when securelevel > 0 */
248 		if (securelevel > 0 && p->p_pid == 1)
249 			return EPERM;
250 
251 		/* OK */
252 		break;
253 
254 	case PT_READ_I:
255 	case PT_READ_D:
256 	case PT_READ_U:
257 	case PT_WRITE_I:
258 	case PT_WRITE_D:
259 	case PT_WRITE_U:
260 	case PT_CONTINUE:
261 	case PT_KILL:
262 	case PT_STEP:
263 	case PT_DETACH:
264 #ifdef PT_GETREGS
265 	case PT_GETREGS:
266 #endif
267 #ifdef PT_SETREGS
268 	case PT_SETREGS:
269 #endif
270 #ifdef PT_GETFPREGS
271 	case PT_GETFPREGS:
272 #endif
273 #ifdef PT_SETFPREGS
274 	case PT_SETFPREGS:
275 #endif
276 #ifdef PT_GETDBREGS
277 	case PT_GETDBREGS:
278 #endif
279 #ifdef PT_SETDBREGS
280 	case PT_SETDBREGS:
281 #endif
282 		/* not being traced... */
283 		if ((p->p_flag & P_TRACED) == 0)
284 			return EPERM;
285 
286 		/* not being traced by YOU */
287 		if (p->p_pptr != curp)
288 			return EBUSY;
289 
290 		/* not currently stopped */
291 		if (p->p_stat != SSTOP || (p->p_flag & P_WAITED) == 0)
292 			return EBUSY;
293 
294 		/* OK */
295 		break;
296 
297 	default:
298 		return EINVAL;
299 	}
300 
301 #ifdef FIX_SSTEP
302 	/*
303 	 * Single step fixup ala procfs
304 	 */
305 	FIX_SSTEP(p);
306 #endif
307 
308 	/*
309 	 * Actually do the requests
310 	 */
311 
312 	curp->p_retval[0] = 0;
313 
314 	switch (uap->req) {
315 	case PT_TRACE_ME:
316 		/* set my trace flag and "owner" so it can read/write me */
317 		p->p_flag |= P_TRACED;
318 		p->p_oppid = p->p_pptr->p_pid;
319 		return 0;
320 
321 	case PT_ATTACH:
322 		/* security check done above */
323 		p->p_flag |= P_TRACED;
324 		p->p_oppid = p->p_pptr->p_pid;
325 		if (p->p_pptr != curp)
326 			proc_reparent(p, curp);
327 		uap->data = SIGSTOP;
328 		goto sendsig;	/* in PT_CONTINUE below */
329 
330 	case PT_STEP:
331 	case PT_CONTINUE:
332 	case PT_DETACH:
333 		if ((unsigned)uap->data >= NSIG)
334 			return EINVAL;
335 
336 		PHOLD(p);
337 
338 		if (uap->req == PT_STEP) {
339 			if ((error = ptrace_single_step (p))) {
340 				PRELE(p);
341 				return error;
342 			}
343 		}
344 
345 		if (uap->addr != (caddr_t)1) {
346 			fill_eproc (p, &p->p_addr->u_kproc.kp_eproc);
347 			if ((error = ptrace_set_pc (p,
348 			    (u_long)(uintfptr_t)uap->addr))) {
349 				PRELE(p);
350 				return error;
351 			}
352 		}
353 		PRELE(p);
354 
355 		if (uap->req == PT_DETACH) {
356 			/* reset process parent */
357 			if (p->p_oppid != p->p_pptr->p_pid) {
358 				struct proc *pp;
359 
360 				pp = pfind(p->p_oppid);
361 				proc_reparent(p, pp ? pp : initproc);
362 			}
363 
364 			p->p_flag &= ~(P_TRACED | P_WAITED);
365 			p->p_oppid = 0;
366 
367 			/* should we send SIGCHLD? */
368 
369 		}
370 
371 	sendsig:
372 		/* deliver or queue signal */
373 		s = splhigh();
374 		if (p->p_stat == SSTOP) {
375 			p->p_xstat = uap->data;
376 			setrunnable(p);
377 		} else if (uap->data) {
378 			psignal(p, uap->data);
379 		}
380 		splx(s);
381 		return 0;
382 
383 	case PT_WRITE_I:
384 	case PT_WRITE_D:
385 		write = 1;
386 		/* fallthrough */
387 	case PT_READ_I:
388 	case PT_READ_D:
389 		/* write = 0 set above */
390 		iov.iov_base = write ? (caddr_t)&uap->data : (caddr_t)curp->p_retval;
391 		iov.iov_len = sizeof(int);
392 		uio.uio_iov = &iov;
393 		uio.uio_iovcnt = 1;
394 		uio.uio_offset = (off_t)(uintptr_t)uap->addr;
395 		uio.uio_resid = sizeof(int);
396 		uio.uio_segflg = UIO_SYSSPACE;	/* ie: the uap */
397 		uio.uio_rw = write ? UIO_WRITE : UIO_READ;
398 		uio.uio_procp = p;
399 		error = procfs_domem(curp, p, NULL, &uio);
400 		if (uio.uio_resid != 0) {
401 			/*
402 			 * XXX procfs_domem() doesn't currently return ENOSPC,
403 			 * so I think write() can bogusly return 0.
404 			 * XXX what happens for short writes?  We don't want
405 			 * to write partial data.
406 			 * XXX procfs_domem() returns EPERM for other invalid
407 			 * addresses.  Convert this to EINVAL.  Does this
408 			 * clobber returns of EPERM for other reasons?
409 			 */
410 			if (error == 0 || error == ENOSPC || error == EPERM)
411 				error = EINVAL;	/* EOF */
412 		}
413 		return (error);
414 
415 	case PT_READ_U:
416 		if ((uintptr_t)uap->addr > UPAGES * PAGE_SIZE - sizeof(int)) {
417 			return EFAULT;
418 		}
419 		if ((uintptr_t)uap->addr & (sizeof(int) - 1)) {
420 			return EFAULT;
421 		}
422 		if (ptrace_read_u_check(p,(vm_offset_t) uap->addr,
423 					sizeof(int))) {
424 			return EFAULT;
425 		}
426 		error = 0;
427 		PHOLD(p);	/* user had damn well better be incore! */
428 		if (p->p_flag & P_INMEM) {
429 			p->p_addr->u_kproc.kp_proc = *p;
430 			fill_eproc (p, &p->p_addr->u_kproc.kp_eproc);
431 			curp->p_retval[0] = *(int *)
432 			    ((uintptr_t)p->p_addr + (uintptr_t)uap->addr);
433 		} else {
434 			curp->p_retval[0] = 0;
435 			error = EFAULT;
436 		}
437 		PRELE(p);
438 		return error;
439 
440 	case PT_WRITE_U:
441 		PHOLD(p);	/* user had damn well better be incore! */
442 		if (p->p_flag & P_INMEM) {
443 			p->p_addr->u_kproc.kp_proc = *p;
444 			fill_eproc (p, &p->p_addr->u_kproc.kp_eproc);
445 			error = ptrace_write_u(p, (vm_offset_t)uap->addr, uap->data);
446 		} else {
447 			error = EFAULT;
448 		}
449 		PRELE(p);
450 		return error;
451 
452 	case PT_KILL:
453 		uap->data = SIGKILL;
454 		goto sendsig;	/* in PT_CONTINUE above */
455 
456 #ifdef PT_SETREGS
457 	case PT_SETREGS:
458 		write = 1;
459 		/* fallthrough */
460 #endif /* PT_SETREGS */
461 #ifdef PT_GETREGS
462 	case PT_GETREGS:
463 		/* write = 0 above */
464 #endif /* PT_SETREGS */
465 #if defined(PT_SETREGS) || defined(PT_GETREGS)
466 		if (!procfs_validregs(p))	/* no P_SYSTEM procs please */
467 			return EINVAL;
468 		else {
469 			iov.iov_base = uap->addr;
470 			iov.iov_len = sizeof(struct reg);
471 			uio.uio_iov = &iov;
472 			uio.uio_iovcnt = 1;
473 			uio.uio_offset = 0;
474 			uio.uio_resid = sizeof(struct reg);
475 			uio.uio_segflg = UIO_USERSPACE;
476 			uio.uio_rw = write ? UIO_WRITE : UIO_READ;
477 			uio.uio_procp = curp;
478 			return (procfs_doregs(curp, p, NULL, &uio));
479 		}
480 #endif /* defined(PT_SETREGS) || defined(PT_GETREGS) */
481 
482 #ifdef PT_SETFPREGS
483 	case PT_SETFPREGS:
484 		write = 1;
485 		/* fallthrough */
486 #endif /* PT_SETFPREGS */
487 #ifdef PT_GETFPREGS
488 	case PT_GETFPREGS:
489 		/* write = 0 above */
490 #endif /* PT_SETFPREGS */
491 #if defined(PT_SETFPREGS) || defined(PT_GETFPREGS)
492 		if (!procfs_validfpregs(p))	/* no P_SYSTEM procs please */
493 			return EINVAL;
494 		else {
495 			iov.iov_base = uap->addr;
496 			iov.iov_len = sizeof(struct fpreg);
497 			uio.uio_iov = &iov;
498 			uio.uio_iovcnt = 1;
499 			uio.uio_offset = 0;
500 			uio.uio_resid = sizeof(struct fpreg);
501 			uio.uio_segflg = UIO_USERSPACE;
502 			uio.uio_rw = write ? UIO_WRITE : UIO_READ;
503 			uio.uio_procp = curp;
504 			return (procfs_dofpregs(curp, p, NULL, &uio));
505 		}
506 #endif /* defined(PT_SETFPREGS) || defined(PT_GETFPREGS) */
507 
508 #ifdef PT_SETDBREGS
509 	case PT_SETDBREGS:
510 		write = 1;
511 		/* fallthrough */
512 #endif /* PT_SETDBREGS */
513 #ifdef PT_GETDBREGS
514 	case PT_GETDBREGS:
515 		/* write = 0 above */
516 #endif /* PT_SETDBREGS */
517 #if defined(PT_SETDBREGS) || defined(PT_GETDBREGS)
518 		if (!procfs_validdbregs(p))	/* no P_SYSTEM procs please */
519 			return EINVAL;
520 		else {
521 			iov.iov_base = uap->addr;
522 			iov.iov_len = sizeof(struct dbreg);
523 			uio.uio_iov = &iov;
524 			uio.uio_iovcnt = 1;
525 			uio.uio_offset = 0;
526 			uio.uio_resid = sizeof(struct dbreg);
527 			uio.uio_segflg = UIO_USERSPACE;
528 			uio.uio_rw = write ? UIO_WRITE : UIO_READ;
529 			uio.uio_procp = curp;
530 			return (procfs_dodbregs(curp, p, NULL, &uio));
531 		}
532 #endif /* defined(PT_SETDBREGS) || defined(PT_GETDBREGS) */
533 
534 	default:
535 		break;
536 	}
537 
538 	return 0;
539 }
540 
541 int
542 trace_req(p)
543 	struct proc *p;
544 {
545 	return 1;
546 }
547 
548 /*
549  * stopevent()
550  * Stop a process because of a procfs event;
551  * stay stopped until p->p_step is cleared
552  * (cleared by PIOCCONT in procfs).
553  */
554 
555 void
556 stopevent(struct proc *p, unsigned int event, unsigned int val) {
557 	p->p_step = 1;
558 
559 	do {
560 		p->p_xstat = val;
561 		p->p_stype = event;	/* Which event caused the stop? */
562 		wakeup(&p->p_stype);	/* Wake up any PIOCWAIT'ing procs */
563 		tsleep(&p->p_step, PWAIT, "stopevent", 0);
564 	} while (p->p_step);
565 }
566