sys_ptrace_common.c revision 1.39 1 /* $NetBSD: sys_ptrace_common.c,v 1.39 2018/05/01 14:09:53 kamil Exp $ */
2
3 /*-
4 * Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Andrew Doran.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
30 */
31
32 /*-
33 * Copyright (c) 1982, 1986, 1989, 1993
34 * The Regents of the University of California. All rights reserved.
35 * (c) UNIX System Laboratories, Inc.
36 * All or some portions of this file are derived from material licensed
37 * to the University of California by American Telephone and Telegraph
38 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
39 * the permission of UNIX System Laboratories, Inc.
40 *
41 * This code is derived from software contributed to Berkeley by
42 * Jan-Simon Pendry.
43 *
44 * Redistribution and use in source and binary forms, with or without
45 * modification, are permitted provided that the following conditions
46 * are met:
47 * 1. Redistributions of source code must retain the above copyright
48 * notice, this list of conditions and the following disclaimer.
49 * 2. Redistributions in binary form must reproduce the above copyright
50 * notice, this list of conditions and the following disclaimer in the
51 * documentation and/or other materials provided with the distribution.
52 * 3. Neither the name of the University nor the names of its contributors
53 * may be used to endorse or promote products derived from this software
54 * without specific prior written permission.
55 *
56 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
57 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
58 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
59 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
60 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
61 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
62 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
63 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
64 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
65 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
66 * SUCH DAMAGE.
67 *
68 * from: @(#)sys_process.c 8.1 (Berkeley) 6/10/93
69 */
70
71 /*-
72 * Copyright (c) 1993 Jan-Simon Pendry.
73 * Copyright (c) 1994 Christopher G. Demetriou. All rights reserved.
74 *
75 * This code is derived from software contributed to Berkeley by
76 * Jan-Simon Pendry.
77 *
78 * Redistribution and use in source and binary forms, with or without
79 * modification, are permitted provided that the following conditions
80 * are met:
81 * 1. Redistributions of source code must retain the above copyright
82 * notice, this list of conditions and the following disclaimer.
83 * 2. Redistributions in binary form must reproduce the above copyright
84 * notice, this list of conditions and the following disclaimer in the
85 * documentation and/or other materials provided with the distribution.
86 * 3. All advertising materials mentioning features or use of this software
87 * must display the following acknowledgement:
88 * This product includes software developed by the University of
89 * California, Berkeley and its contributors.
90 * 4. Neither the name of the University nor the names of its contributors
91 * may be used to endorse or promote products derived from this software
92 * without specific prior written permission.
93 *
94 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
95 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
96 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
97 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
98 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
99 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
100 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
101 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
102 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
103 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
104 * SUCH DAMAGE.
105 *
106 * from: @(#)sys_process.c 8.1 (Berkeley) 6/10/93
107 */
108
109 /*
110 * References:
111 * (1) Bach's "The Design of the UNIX Operating System",
112 * (2) sys/miscfs/procfs from UCB's 4.4BSD-Lite distribution,
113 * (3) the "4.4BSD Programmer's Reference Manual" published
114 * by USENIX and O'Reilly & Associates.
115 * The 4.4BSD PRM does a reasonably good job of documenting what the various
116 * ptrace() requests should actually do, and its text is quoted several times
117 * in this file.
118 */
119
120 #include <sys/cdefs.h>
121 __KERNEL_RCSID(0, "$NetBSD: sys_ptrace_common.c,v 1.39 2018/05/01 14:09:53 kamil Exp $");
122
123 #ifdef _KERNEL_OPT
124 #include "opt_ptrace.h"
125 #include "opt_ktrace.h"
126 #include "opt_pax.h"
127 #include "opt_compat_netbsd32.h"
128 #endif
129
130 #if defined(__HAVE_COMPAT_NETBSD32) && !defined(COMPAT_NETBSD32) \
131 && !defined(_RUMPKERNEL)
132 #define COMPAT_NETBSD32
133 #endif
134
135 #include <sys/param.h>
136 #include <sys/systm.h>
137 #include <sys/proc.h>
138 #include <sys/errno.h>
139 #include <sys/exec.h>
140 #include <sys/pax.h>
141 #include <sys/ptrace.h>
142 #include <sys/uio.h>
143 #include <sys/ras.h>
144 #include <sys/kmem.h>
145 #include <sys/kauth.h>
146 #include <sys/mount.h>
147 #include <sys/syscallargs.h>
148 #include <sys/module.h>
149 #include <sys/condvar.h>
150 #include <sys/mutex.h>
151
152 #include <uvm/uvm_extern.h>
153
154 #include <machine/reg.h>
155
156 #ifdef PTRACE
157
158 # ifdef DEBUG
159 # define DPRINTF(a) uprintf a
160 # else
161 # define DPRINTF(a)
162 # endif
163
164 static kauth_listener_t ptrace_listener;
165 static int process_auxv_offset(struct proc *, struct uio *);
166
167 #if 0
168 static int ptrace_cbref;
169 static kmutex_t ptrace_mtx;
170 static kcondvar_t ptrace_cv;
171 #endif
172
173 #ifdef PT_GETREGS
174 # define case_PT_GETREGS case PT_GETREGS:
175 #else
176 # define case_PT_GETREGS
177 #endif
178
179 #ifdef PT_SETREGS
180 # define case_PT_SETREGS case PT_SETREGS:
181 #else
182 # define case_PT_SETREGS
183 #endif
184
185 #ifdef PT_GETFPREGS
186 # define case_PT_GETFPREGS case PT_GETFPREGS:
187 #else
188 # define case_PT_GETFPREGS
189 #endif
190
191 #ifdef PT_SETFPREGS
192 # define case_PT_SETFPREGS case PT_SETFPREGS:
193 #else
194 # define case_PT_SETFPREGS
195 #endif
196
197 #ifdef PT_GETDBREGS
198 # define case_PT_GETDBREGS case PT_GETDBREGS:
199 #else
200 # define case_PT_GETDBREGS
201 #endif
202
203 #ifdef PT_SETDBREGS
204 # define case_PT_SETDBREGS case PT_SETDBREGS:
205 #else
206 # define case_PT_SETDBREGS
207 #endif
208
209 #if defined(PT_SETREGS) || defined(PT_GETREGS) || \
210 defined(PT_SETFPREGS) || defined(PT_GETFOREGS) || \
211 defined(PT_SETDBREGS) || defined(PT_GETDBREGS)
212 # define PT_REGISTERS
213 #endif
214
215 static int
216 ptrace_listener_cb(kauth_cred_t cred, kauth_action_t action, void *cookie,
217 void *arg0, void *arg1, void *arg2, void *arg3)
218 {
219 struct proc *p;
220 int result;
221 #ifdef PT_SETDBREGS
222 extern int user_set_dbregs;
223 #endif
224
225 result = KAUTH_RESULT_DEFER;
226 p = arg0;
227
228 #if 0
229 mutex_enter(&ptrace_mtx);
230 ptrace_cbref++;
231 mutex_exit(&ptrace_mtx);
232 #endif
233 if (action != KAUTH_PROCESS_PTRACE)
234 goto out;
235
236 switch ((u_long)arg1) {
237 #ifdef PT_SETDBREGS
238 case_PT_SETDBREGS
239 if (kauth_cred_getuid(cred) != 0 && user_set_dbregs == 0) {
240 result = KAUTH_RESULT_DENY;
241 break;
242 }
243 #endif
244 case PT_TRACE_ME:
245 case PT_ATTACH:
246 case PT_WRITE_I:
247 case PT_WRITE_D:
248 case PT_READ_I:
249 case PT_READ_D:
250 case PT_IO:
251 case_PT_GETREGS
252 case_PT_SETREGS
253 case_PT_GETFPREGS
254 case_PT_SETFPREGS
255 case_PT_GETDBREGS
256 case PT_SET_EVENT_MASK:
257 case PT_GET_EVENT_MASK:
258 case PT_GET_PROCESS_STATE:
259 case PT_SET_SIGINFO:
260 case PT_GET_SIGINFO:
261 #ifdef __HAVE_PTRACE_MACHDEP
262 PTRACE_MACHDEP_REQUEST_CASES
263 #endif
264 if (kauth_cred_getuid(cred) != kauth_cred_getuid(p->p_cred) ||
265 ISSET(p->p_flag, PK_SUGID)) {
266 break;
267 }
268
269 result = KAUTH_RESULT_ALLOW;
270
271 break;
272
273 #ifdef PT_STEP
274 case PT_STEP:
275 case PT_SETSTEP:
276 case PT_CLEARSTEP:
277 #endif
278 case PT_CONTINUE:
279 case PT_KILL:
280 case PT_DETACH:
281 case PT_LWPINFO:
282 case PT_SYSCALL:
283 case PT_SYSCALLEMU:
284 case PT_DUMPCORE:
285 case PT_RESUME:
286 case PT_SUSPEND:
287 result = KAUTH_RESULT_ALLOW;
288 break;
289
290 default:
291 break;
292 }
293
294 out:
295 #if 0
296 mutex_enter(&ptrace_mtx);
297 if (--ptrace_cbref == 0)
298 cv_broadcast(&ptrace_cv);
299 mutex_exit(&ptrace_mtx);
300 #endif
301
302 return result;
303 }
304
305 int
306 ptrace_init(void)
307 {
308
309 #if 0
310 mutex_init(&ptrace_mtx, MUTEX_DEFAULT, IPL_NONE);
311 cv_init(&ptrace_cv, "ptracecb");
312 ptrace_cbref = 0;
313 #endif
314 ptrace_listener = kauth_listen_scope(KAUTH_SCOPE_PROCESS,
315 ptrace_listener_cb, NULL);
316 return 0;
317 }
318
319 int
320 ptrace_fini(void)
321 {
322
323 kauth_unlisten_scope(ptrace_listener);
324
325 #if 0
326 /* Make sure no-one is executing our kauth listener */
327
328 mutex_enter(&ptrace_mtx);
329 while (ptrace_cbref != 0)
330 cv_wait(&ptrace_cv, &ptrace_mtx);
331 mutex_exit(&ptrace_mtx);
332 mutex_destroy(&ptrace_mtx);
333 cv_destroy(&ptrace_cv);
334 #endif
335
336 return 0;
337 }
338
339 static struct proc *
340 ptrace_find(struct lwp *l, int req, pid_t pid)
341 {
342 struct proc *t;
343
344 /* "A foolish consistency..." XXX */
345 if (req == PT_TRACE_ME) {
346 t = l->l_proc;
347 mutex_enter(t->p_lock);
348 return t;
349 }
350
351 /* Find the process we're supposed to be operating on. */
352 t = proc_find(pid);
353 if (t == NULL)
354 return NULL;
355
356 /* XXX-elad */
357 mutex_enter(t->p_lock);
358 int error = kauth_authorize_process(l->l_cred, KAUTH_PROCESS_CANSEE,
359 t, KAUTH_ARG(KAUTH_REQ_PROCESS_CANSEE_ENTRY), NULL, NULL);
360 if (error) {
361 mutex_exit(t->p_lock);
362 return NULL;
363 }
364 return t;
365 }
366
367 static int
368 ptrace_allowed(struct lwp *l, int req, struct proc *t, struct proc *p)
369 {
370 /*
371 * Grab a reference on the process to prevent it from execing or
372 * exiting.
373 */
374 if (!rw_tryenter(&t->p_reflock, RW_READER))
375 return EBUSY;
376
377 /* Make sure we can operate on it. */
378 switch (req) {
379 case PT_TRACE_ME:
380 /*
381 * You can't say to the parent of a process to start tracing if:
382 * (1) the parent is initproc,
383 */
384 if (p->p_pptr == initproc)
385 return EPERM;
386
387 /*
388 * (2) the process is initproc, or
389 */
390 if (p == initproc)
391 return EPERM;
392
393 /*
394 * (3) the child is already traced.
395 */
396 if (ISSET(p->p_slflag, PSL_TRACED))
397 return EBUSY;
398
399 return 0;
400
401 case PT_ATTACH:
402 /*
403 * You can't attach to a process if:
404 * (1) it's the process that's doing the attaching,
405 */
406 if (t->p_pid == p->p_pid)
407 return EINVAL;
408
409 /*
410 * (2) it's a system process,
411 */
412 if (t->p_flag & PK_SYSTEM)
413 return EPERM;
414
415 /*
416 * (3) the tracer is initproc,
417 */
418 if (p == initproc)
419 return EPERM;
420
421 /*
422 * (4) it's already being traced, or
423 */
424 if (ISSET(t->p_slflag, PSL_TRACED))
425 return EBUSY;
426
427 /*
428 * (5) the tracer is chrooted, and its root directory is
429 * not at or above the root directory of the tracee
430 */
431 mutex_exit(t->p_lock); /* XXXSMP */
432 int tmp = proc_isunder(t, l);
433 mutex_enter(t->p_lock); /* XXXSMP */
434 if (!tmp)
435 return EPERM;
436 return 0;
437
438 case PT_READ_I:
439 case PT_READ_D:
440 case PT_WRITE_I:
441 case PT_WRITE_D:
442 case PT_IO:
443 case PT_SET_SIGINFO:
444 case PT_GET_SIGINFO:
445 case_PT_GETREGS
446 case_PT_SETREGS
447 case_PT_GETFPREGS
448 case_PT_SETFPREGS
449 case_PT_GETDBREGS
450 case_PT_SETDBREGS
451 #ifdef __HAVE_PTRACE_MACHDEP
452 PTRACE_MACHDEP_REQUEST_CASES
453 #endif
454 /*
455 * You can't read/write the memory or registers of a process
456 * if the tracer is chrooted, and its root directory is not at
457 * or above the root directory of the tracee.
458 */
459 mutex_exit(t->p_lock); /* XXXSMP */
460 tmp = proc_isunder(t, l);
461 mutex_enter(t->p_lock); /* XXXSMP */
462 if (!tmp)
463 return EPERM;
464 /*FALLTHROUGH*/
465
466 case PT_CONTINUE:
467 case PT_KILL:
468 case PT_DETACH:
469 case PT_LWPINFO:
470 case PT_SYSCALL:
471 case PT_SYSCALLEMU:
472 case PT_DUMPCORE:
473 #ifdef PT_STEP
474 case PT_STEP:
475 case PT_SETSTEP:
476 case PT_CLEARSTEP:
477 #endif
478 case PT_SET_EVENT_MASK:
479 case PT_GET_EVENT_MASK:
480 case PT_GET_PROCESS_STATE:
481 case PT_RESUME:
482 case PT_SUSPEND:
483 /*
484 * You can't do what you want to the process if:
485 * (1) It's not being traced at all,
486 */
487 if (!ISSET(t->p_slflag, PSL_TRACED))
488 return EPERM;
489
490 /*
491 * (2) it's not being traced by _you_, or
492 */
493 if (t->p_pptr != p) {
494 DPRINTF(("parent %d != %d\n", t->p_pptr->p_pid,
495 p->p_pid));
496 return EBUSY;
497 }
498
499 /*
500 * (3) it's not currently stopped.
501 */
502 if (t->p_stat != SSTOP || !t->p_waited /* XXXSMP */) {
503 DPRINTF(("stat %d flag %d\n", t->p_stat,
504 !t->p_waited));
505 return EBUSY;
506 }
507 return 0;
508
509 default: /* It was not a legal request. */
510 return EINVAL;
511 }
512 }
513
514 static int
515 ptrace_needs_hold(int req)
516 {
517 switch (req) {
518 #ifdef PT_STEP
519 case PT_STEP:
520 #endif
521 case PT_CONTINUE:
522 case PT_DETACH:
523 case PT_KILL:
524 case PT_SYSCALL:
525 case PT_SYSCALLEMU:
526 case PT_ATTACH:
527 case PT_TRACE_ME:
528 case PT_GET_SIGINFO:
529 case PT_SET_SIGINFO:
530 return 1;
531 default:
532 return 0;
533 }
534 }
535
536 static int
537 ptrace_update_lwp(struct proc *t, struct lwp **lt, lwpid_t lid)
538 {
539 if (lid == 0 || lid == (*lt)->l_lid || t->p_nlwps == 1)
540 return 0;
541
542 lwp_delref(*lt);
543
544 mutex_enter(t->p_lock);
545 *lt = lwp_find(t, lid);
546 if (*lt == NULL) {
547 mutex_exit(t->p_lock);
548 return ESRCH;
549 }
550
551 if ((*lt)->l_flag & LW_SYSTEM) {
552 *lt = NULL;
553 return EINVAL;
554 }
555
556 lwp_addref(*lt);
557 mutex_exit(t->p_lock);
558
559 return 0;
560 }
561
562 static int
563 ptrace_get_siginfo(struct proc *t, struct ptrace_methods *ptm, void *addr,
564 size_t data)
565 {
566 struct ptrace_siginfo psi;
567
568 psi.psi_siginfo._info = t->p_sigctx.ps_info;
569 psi.psi_lwpid = t->p_sigctx.ps_lwp;
570
571 return ptm->ptm_copyout_siginfo(&psi, addr, data);
572 }
573
574 static int
575 ptrace_set_siginfo(struct proc *t, struct lwp **lt, struct ptrace_methods *ptm,
576 void *addr, size_t data)
577 {
578 struct ptrace_siginfo psi;
579
580 int error = ptm->ptm_copyin_siginfo(&psi, addr, data);
581 if (error)
582 return error;
583
584 /* Check that the data is a valid signal number or zero. */
585 if (psi.psi_siginfo.si_signo < 0 || psi.psi_siginfo.si_signo >= NSIG)
586 return EINVAL;
587
588 if ((error = ptrace_update_lwp(t, lt, psi.psi_lwpid)) != 0)
589 return error;
590
591 t->p_sigctx.ps_faked = true;
592 t->p_sigctx.ps_info = psi.psi_siginfo._info;
593 t->p_sigctx.ps_lwp = psi.psi_lwpid;
594 return 0;
595 }
596
597 static int
598 ptrace_get_event_mask(struct proc *t, void *addr, size_t data)
599 {
600 struct ptrace_event pe;
601
602 if (data != sizeof(pe)) {
603 DPRINTF(("%s: %zu != %zu\n", __func__, data, sizeof(pe)));
604 return EINVAL;
605 }
606 memset(&pe, 0, sizeof(pe));
607 pe.pe_set_event = ISSET(t->p_slflag, PSL_TRACEFORK) ?
608 PTRACE_FORK : 0;
609 pe.pe_set_event |= ISSET(t->p_slflag, PSL_TRACEVFORK) ?
610 PTRACE_VFORK : 0;
611 pe.pe_set_event |= ISSET(t->p_slflag, PSL_TRACEVFORK_DONE) ?
612 PTRACE_VFORK_DONE : 0;
613 pe.pe_set_event |= ISSET(t->p_slflag, PSL_TRACELWP_CREATE) ?
614 PTRACE_LWP_CREATE : 0;
615 pe.pe_set_event |= ISSET(t->p_slflag, PSL_TRACELWP_EXIT) ?
616 PTRACE_LWP_EXIT : 0;
617 return copyout(&pe, addr, sizeof(pe));
618 }
619
620 static int
621 ptrace_set_event_mask(struct proc *t, void *addr, size_t data)
622 {
623 struct ptrace_event pe;
624 int error;
625
626 if (data != sizeof(pe)) {
627 DPRINTF(("%s: %zu != %zu\n", __func__, data, sizeof(pe)));
628 return EINVAL;
629 }
630 if ((error = copyin(addr, &pe, sizeof(pe))) != 0)
631 return error;
632
633 if (pe.pe_set_event & PTRACE_FORK)
634 SET(t->p_slflag, PSL_TRACEFORK);
635 else
636 CLR(t->p_slflag, PSL_TRACEFORK);
637 #if notyet
638 if (pe.pe_set_event & PTRACE_VFORK)
639 SET(t->p_slflag, PSL_TRACEVFORK);
640 else
641 CLR(t->p_slflag, PSL_TRACEVFORK);
642 #else
643 if (pe.pe_set_event & PTRACE_VFORK)
644 return ENOTSUP;
645 #endif
646 if (pe.pe_set_event & PTRACE_VFORK_DONE)
647 SET(t->p_slflag, PSL_TRACEVFORK_DONE);
648 else
649 CLR(t->p_slflag, PSL_TRACEVFORK_DONE);
650 if (pe.pe_set_event & PTRACE_LWP_CREATE)
651 SET(t->p_slflag, PSL_TRACELWP_CREATE);
652 else
653 CLR(t->p_slflag, PSL_TRACELWP_CREATE);
654 if (pe.pe_set_event & PTRACE_LWP_EXIT)
655 SET(t->p_slflag, PSL_TRACELWP_EXIT);
656 else
657 CLR(t->p_slflag, PSL_TRACELWP_EXIT);
658 return 0;
659 }
660
661 static int
662 ptrace_get_process_state(struct proc *t, void *addr, size_t data)
663 {
664 struct ptrace_state ps;
665
666 if (data != sizeof(ps)) {
667 DPRINTF(("%s: %zu != %zu\n", __func__, data, sizeof(ps)));
668 return EINVAL;
669 }
670 memset(&ps, 0, sizeof(ps));
671
672 if (t->p_fpid) {
673 ps.pe_report_event = PTRACE_FORK;
674 ps.pe_other_pid = t->p_fpid;
675 } else if (t->p_vfpid) {
676 ps.pe_report_event = PTRACE_VFORK;
677 ps.pe_other_pid = t->p_vfpid;
678 } else if (t->p_vfpid_done) {
679 ps.pe_report_event = PTRACE_VFORK_DONE;
680 ps.pe_other_pid = t->p_vfpid_done;
681 } else if (t->p_lwp_created) {
682 ps.pe_report_event = PTRACE_LWP_CREATE;
683 ps.pe_lwp = t->p_lwp_created;
684 } else if (t->p_lwp_exited) {
685 ps.pe_report_event = PTRACE_LWP_EXIT;
686 ps.pe_lwp = t->p_lwp_exited;
687 }
688 return copyout(&ps, addr, sizeof(ps));
689 }
690
691 static int
692 ptrace_lwpinfo(struct proc *t, struct lwp **lt, void *addr, size_t data)
693 {
694 struct ptrace_lwpinfo pl;
695
696 if (data != sizeof(pl)) {
697 DPRINTF(("%s: %zu != %zu\n", __func__, data, sizeof(pl)));
698 return EINVAL;
699 }
700 int error = copyin(addr, &pl, sizeof(pl));
701 if (error)
702 return error;
703
704 lwpid_t tmp = pl.pl_lwpid;
705 lwp_delref(*lt);
706 mutex_enter(t->p_lock);
707 if (tmp == 0)
708 *lt = lwp_find_first(t);
709 else {
710 *lt = lwp_find(t, tmp);
711 if (*lt == NULL) {
712 mutex_exit(t->p_lock);
713 return ESRCH;
714 }
715 *lt = LIST_NEXT(*lt, l_sibling);
716 }
717
718 while (*lt != NULL && !lwp_alive(*lt))
719 *lt = LIST_NEXT(*lt, l_sibling);
720
721 pl.pl_lwpid = 0;
722 pl.pl_event = 0;
723 if (*lt) {
724 lwp_addref(*lt);
725 pl.pl_lwpid = (*lt)->l_lid;
726
727 if ((*lt)->l_flag & LW_WSUSPEND)
728 pl.pl_event = PL_EVENT_SUSPENDED;
729 /*
730 * If we match the lwp, or it was sent to every lwp,
731 * we set PL_EVENT_SIGNAL.
732 * XXX: ps_lwp == 0 means everyone and noone, so
733 * check ps_signo too.
734 */
735 else if ((*lt)->l_lid == t->p_sigctx.ps_lwp
736 || (t->p_sigctx.ps_lwp == 0 &&
737 t->p_sigctx.ps_info._signo))
738 pl.pl_event = PL_EVENT_SIGNAL;
739 }
740 mutex_exit(t->p_lock);
741
742 return copyout(&pl, addr, sizeof(pl));
743 }
744
745 static int
746 ptrace_startstop(struct proc *t, struct lwp **lt, int rq, void *addr,
747 size_t data)
748 {
749 int error;
750
751 if ((error = ptrace_update_lwp(t, lt, data)) != 0)
752 return error;
753
754 lwp_lock(*lt);
755 if (rq == PT_SUSPEND)
756 (*lt)->l_flag |= LW_WSUSPEND;
757 else
758 (*lt)->l_flag &= ~LW_WSUSPEND;
759 lwp_unlock(*lt);
760 return 0;
761 }
762
763 #ifdef PT_REGISTERS
764 static int
765 ptrace_uio_dir(int req)
766 {
767 switch (req) {
768 case_PT_GETREGS
769 case_PT_GETFPREGS
770 case_PT_GETDBREGS
771 return UIO_READ;
772 case_PT_SETREGS
773 case_PT_SETFPREGS
774 case_PT_SETDBREGS
775 return UIO_WRITE;
776 default:
777 return -1;
778 }
779 }
780
781 static int
782 ptrace_regs(struct lwp *l, struct lwp **lt, int rq, struct ptrace_methods *ptm,
783 void *addr, size_t data)
784 {
785 int error;
786 struct proc *t = (*lt)->l_proc;
787 struct vmspace *vm;
788
789 if ((error = ptrace_update_lwp(t, lt, data)) != 0)
790 return error;
791
792 int dir = ptrace_uio_dir(rq);
793 size_t size;
794 int (*func)(struct lwp *, struct lwp *, struct uio *);
795
796 switch (rq) {
797 #if defined(PT_SETREGS) || defined(PT_GETREGS)
798 case_PT_GETREGS
799 case_PT_SETREGS
800 if (!process_validregs(*lt))
801 return EINVAL;
802 size = PROC_REGSZ(t);
803 func = ptm->ptm_doregs;
804 break;
805 #endif
806 #if defined(PT_SETFPREGS) || defined(PT_GETFPREGS)
807 case_PT_GETFPREGS
808 case_PT_SETFPREGS
809 if (!process_validfpregs(*lt))
810 return EINVAL;
811 size = PROC_FPREGSZ(t);
812 func = ptm->ptm_dofpregs;
813 break;
814 #endif
815 #if defined(PT_SETDBREGS) || defined(PT_GETDBREGS)
816 case_PT_GETDBREGS
817 case_PT_SETDBREGS
818 if (!process_validdbregs(*lt))
819 return EINVAL;
820 size = PROC_DBREGSZ(t);
821 func = ptm->ptm_dodbregs;
822 break;
823 #endif
824 default:
825 return EINVAL;
826 }
827
828 error = proc_vmspace_getref(l->l_proc, &vm);
829 if (error)
830 return error;
831
832 struct uio uio;
833 struct iovec iov;
834
835 iov.iov_base = addr;
836 iov.iov_len = size;
837 uio.uio_iov = &iov;
838 uio.uio_iovcnt = 1;
839 uio.uio_offset = 0;
840 uio.uio_resid = iov.iov_len;
841 uio.uio_rw = dir;
842 uio.uio_vmspace = vm;
843
844 error = (*func)(l, *lt, &uio);
845 uvmspace_free(vm);
846 return error;
847 }
848 #endif
849
850 static int
851 ptrace_sendsig(struct proc *t, struct lwp *lt, int signo, int resume_all)
852 {
853 ksiginfo_t ksi;
854
855 t->p_fpid = 0;
856 t->p_vfpid = 0;
857 t->p_vfpid_done = 0;
858 t->p_lwp_created = 0;
859 t->p_lwp_exited = 0;
860
861 /* Finally, deliver the requested signal (or none). */
862 if (t->p_stat == SSTOP) {
863 /*
864 * Unstop the process. If it needs to take a
865 * signal, make all efforts to ensure that at
866 * an LWP runs to see it.
867 */
868 t->p_xsig = signo;
869 if (resume_all)
870 proc_unstop(t);
871 else
872 lwp_unstop(lt);
873 return 0;
874 }
875
876 KSI_INIT_EMPTY(&ksi);
877 if (t->p_sigctx.ps_faked) {
878 if (signo != t->p_sigctx.ps_info._signo)
879 return EINVAL;
880 t->p_sigctx.ps_faked = false;
881 ksi.ksi_info = t->p_sigctx.ps_info;
882 ksi.ksi_lid = t->p_sigctx.ps_lwp;
883 } else if (signo == 0) {
884 return 0;
885 } else {
886 ksi.ksi_signo = signo;
887 }
888
889 kpsignal2(t, &ksi);
890 return 0;
891 }
892
893 static int
894 ptrace_dumpcore(struct lwp *lt, char *path, size_t len)
895 {
896 int error;
897 if (path != NULL) {
898
899 if (len >= MAXPATHLEN)
900 return EINVAL;
901
902 char *src = path;
903 path = kmem_alloc(len + 1, KM_SLEEP);
904 error = copyin(src, path, len);
905 if (error)
906 goto out;
907 path[len] = '\0';
908 }
909 error = (*coredump_vec)(lt, path);
910 out:
911 if (path)
912 kmem_free(path, len + 1);
913 return error;
914 }
915
916 static int
917 ptrace_doio(struct lwp *l, struct proc *t, struct lwp *lt,
918 struct ptrace_io_desc *piod, void *addr, bool sysspace)
919 {
920 struct uio uio;
921 struct iovec iov;
922 int error, tmp;
923
924 error = 0;
925 iov.iov_base = piod->piod_addr;
926 iov.iov_len = piod->piod_len;
927 uio.uio_iov = &iov;
928 uio.uio_iovcnt = 1;
929 uio.uio_offset = (off_t)(unsigned long)piod->piod_offs;
930 uio.uio_resid = piod->piod_len;
931
932 switch (piod->piod_op) {
933 case PIOD_READ_D:
934 case PIOD_READ_I:
935 uio.uio_rw = UIO_READ;
936 break;
937 case PIOD_WRITE_D:
938 case PIOD_WRITE_I:
939 /*
940 * Can't write to a RAS
941 */
942 if (ras_lookup(t, addr) != (void *)-1) {
943 return EACCES;
944 }
945 uio.uio_rw = UIO_WRITE;
946 break;
947 case PIOD_READ_AUXV:
948 uio.uio_rw = UIO_READ;
949 tmp = t->p_execsw->es_arglen;
950 if (uio.uio_offset > tmp)
951 return EIO;
952 if (uio.uio_resid > tmp - uio.uio_offset)
953 uio.uio_resid = tmp - uio.uio_offset;
954 piod->piod_len = iov.iov_len = uio.uio_resid;
955 error = process_auxv_offset(t, &uio);
956 break;
957 default:
958 error = EINVAL;
959 break;
960 }
961
962 if (error)
963 return error;
964
965 if (sysspace) {
966 uio.uio_vmspace = vmspace_kernel();
967 } else {
968 error = proc_vmspace_getref(l->l_proc, &uio.uio_vmspace);
969 if (error)
970 return error;
971 }
972
973 error = process_domem(l, lt, &uio);
974 if (!sysspace)
975 uvmspace_free(uio.uio_vmspace);
976 if (error)
977 return error;
978 piod->piod_len -= uio.uio_resid;
979 return 0;
980 }
981
982 int
983 do_ptrace(struct ptrace_methods *ptm, struct lwp *l, int req, pid_t pid,
984 void *addr, int data, register_t *retval)
985 {
986 struct proc *p = l->l_proc;
987 struct lwp *lt = NULL;
988 struct lwp *lt2;
989 struct proc *t; /* target process */
990 struct ptrace_io_desc piod;
991 int error, write, tmp, pheld;
992 int signo = 0;
993 int resume_all;
994 error = 0;
995
996 /*
997 * If attaching or detaching, we need to get a write hold on the
998 * proclist lock so that we can re-parent the target process.
999 */
1000 mutex_enter(proc_lock);
1001
1002 t = ptrace_find(l, req, pid);
1003 if (t == NULL) {
1004 mutex_exit(proc_lock);
1005 return ESRCH;
1006 }
1007
1008 pheld = 1;
1009 if ((error = ptrace_allowed(l, req, t, p)) != 0)
1010 goto out;
1011
1012 if ((error = kauth_authorize_process(l->l_cred,
1013 KAUTH_PROCESS_PTRACE, t, KAUTH_ARG(req), NULL, NULL)) != 0)
1014 goto out;
1015
1016 if ((lt = lwp_find_first(t)) == NULL) {
1017 error = ESRCH;
1018 goto out;
1019 }
1020
1021 /* Do single-step fixup if needed. */
1022 FIX_SSTEP(t);
1023 KASSERT(lt != NULL);
1024 lwp_addref(lt);
1025
1026 /*
1027 * Which locks do we need held? XXX Ugly.
1028 */
1029 if ((pheld = ptrace_needs_hold(req)) == 0) {
1030 mutex_exit(t->p_lock);
1031 mutex_exit(proc_lock);
1032 }
1033
1034 /* Now do the operation. */
1035 write = 0;
1036 *retval = 0;
1037 tmp = 0;
1038 resume_all = 1;
1039
1040 switch (req) {
1041 case PT_TRACE_ME:
1042 /* Just set the trace flag. */
1043 SET(t->p_slflag, PSL_TRACED);
1044 t->p_opptr = t->p_pptr;
1045 break;
1046
1047 /*
1048 * The I and D separate address space has been inherited from PDP-11.
1049 * The 16-bit UNIX started with a single address space per program,
1050 * but was extended to two 16-bit (2 x 64kb) address spaces.
1051 *
1052 * We no longer maintain this feature in maintained architectures, but
1053 * we keep the API for backward compatiblity. Currently the I and D
1054 * operations are exactly the same and not distinguished in debuggers.
1055 */
1056 case PT_WRITE_I:
1057 case PT_WRITE_D:
1058 write = 1;
1059 tmp = data;
1060 /* FALLTHROUGH */
1061 case PT_READ_I:
1062 case PT_READ_D:
1063 piod.piod_addr = &tmp;
1064 piod.piod_len = sizeof(tmp);
1065 piod.piod_offs = addr;
1066 piod.piod_op = write ? PIOD_WRITE_D : PIOD_READ_D;
1067 if ((error = ptrace_doio(l, t, lt, &piod, addr, true)) != 0)
1068 break;
1069 if (!write)
1070 *retval = tmp;
1071 break;
1072
1073 case PT_IO:
1074 if ((error = ptm->ptm_copyin_piod(&piod, addr, data)) != 0)
1075 break;
1076 if ((error = ptrace_doio(l, t, lt, &piod, addr, false)) != 0)
1077 break;
1078 error = ptm->ptm_copyout_piod(&piod, addr, data);
1079 break;
1080
1081 case PT_DUMPCORE:
1082 error = ptrace_dumpcore(lt, addr, data);
1083 break;
1084
1085 #ifdef PT_STEP
1086 case PT_STEP:
1087 /*
1088 * From the 4.4BSD PRM:
1089 * "Execution continues as in request PT_CONTINUE; however
1090 * as soon as possible after execution of at least one
1091 * instruction, execution stops again. [ ... ]"
1092 */
1093 #endif
1094 case PT_CONTINUE:
1095 case PT_SYSCALL:
1096 case PT_DETACH:
1097 if (req == PT_SYSCALL) {
1098 if (!ISSET(t->p_slflag, PSL_SYSCALL)) {
1099 SET(t->p_slflag, PSL_SYSCALL);
1100 #ifdef __HAVE_SYSCALL_INTERN
1101 (*t->p_emul->e_syscall_intern)(t);
1102 #endif
1103 }
1104 } else {
1105 if (ISSET(t->p_slflag, PSL_SYSCALL)) {
1106 CLR(t->p_slflag, PSL_SYSCALL);
1107 #ifdef __HAVE_SYSCALL_INTERN
1108 (*t->p_emul->e_syscall_intern)(t);
1109 #endif
1110 }
1111 }
1112 t->p_trace_enabled = trace_is_enabled(t);
1113
1114 /*
1115 * Pick up the LWPID, if supplied. There are two cases:
1116 * data < 0 : step or continue single thread, lwp = -data
1117 * data > 0 in PT_STEP : step this thread, continue others
1118 * For operations other than PT_STEP, data > 0 means
1119 * data is the signo to deliver to the process.
1120 */
1121 tmp = data;
1122 if (tmp >= 0) {
1123 #ifdef PT_STEP
1124 if (req == PT_STEP)
1125 signo = 0;
1126 else
1127 #endif
1128 {
1129 signo = tmp;
1130 tmp = 0; /* don't search for LWP */
1131 }
1132 } else
1133 tmp = -tmp;
1134
1135 if (tmp > 0) {
1136 if (req == PT_DETACH) {
1137 error = EINVAL;
1138 break;
1139 }
1140 lwp_delref2 (lt);
1141 lt = lwp_find(t, tmp);
1142 if (lt == NULL) {
1143 error = ESRCH;
1144 break;
1145 }
1146 lwp_addref(lt);
1147 resume_all = 0;
1148 signo = 0;
1149 }
1150
1151 /*
1152 * From the 4.4BSD PRM:
1153 * "The data argument is taken as a signal number and the
1154 * child's execution continues at location addr as if it
1155 * incurred that signal. Normally the signal number will
1156 * be either 0 to indicate that the signal that caused the
1157 * stop should be ignored, or that value fetched out of
1158 * the process's image indicating which signal caused
1159 * the stop. If addr is (int *)1 then execution continues
1160 * from where it stopped."
1161 */
1162
1163 /* Check that the data is a valid signal number or zero. */
1164 if (signo < 0 || signo >= NSIG) {
1165 error = EINVAL;
1166 break;
1167 }
1168
1169 /* Prevent process deadlock */
1170 if (resume_all) {
1171 #ifdef PT_STEP
1172 if (req == PT_STEP) {
1173 if (lt->l_flag & LW_WSUSPEND) {
1174 error = EDEADLK;
1175 break;
1176 }
1177 } else
1178 #endif
1179 {
1180 error = EDEADLK;
1181 LIST_FOREACH(lt2, &t->p_lwps, l_sibling) {
1182 if ((lt2->l_flag & LW_WSUSPEND) == 0) {
1183 error = 0;
1184 break;
1185 }
1186 }
1187 if (error != 0)
1188 break;
1189 }
1190 } else {
1191 if (lt->l_flag & LW_WSUSPEND) {
1192 error = EDEADLK;
1193 break;
1194 }
1195 }
1196
1197 /* If the address parameter is not (int *)1, set the pc. */
1198 if ((int *)addr != (int *)1) {
1199 error = process_set_pc(lt, addr);
1200 if (error != 0)
1201 break;
1202 }
1203 #ifdef PT_STEP
1204 /*
1205 * Arrange for a single-step, if that's requested and possible.
1206 * More precisely, set the single step status as requested for
1207 * the requested thread, and clear it for other threads.
1208 */
1209 LIST_FOREACH(lt2, &t->p_lwps, l_sibling) {
1210 if (ISSET(lt2->l_pflag, LP_SINGLESTEP)) {
1211 lwp_lock(lt2);
1212 process_sstep(lt2, 1);
1213 lwp_unlock(lt2);
1214 } else if (lt != lt2) {
1215 lwp_lock(lt2);
1216 process_sstep(lt2, 0);
1217 lwp_unlock(lt2);
1218 }
1219 }
1220 error = process_sstep(lt,
1221 ISSET(lt->l_pflag, LP_SINGLESTEP) || req == PT_STEP);
1222 if (error)
1223 break;
1224 #endif
1225 if (req == PT_DETACH) {
1226 CLR(t->p_slflag, PSL_TRACED|PSL_SYSCALL);
1227
1228 /* give process back to original parent or init */
1229 if (t->p_opptr != t->p_pptr) {
1230 struct proc *pp = t->p_opptr;
1231 proc_reparent(t, pp ? pp : initproc);
1232 }
1233
1234 /* not being traced any more */
1235 t->p_opptr = NULL;
1236
1237 /* clear single step */
1238 LIST_FOREACH(lt2, &t->p_lwps, l_sibling) {
1239 CLR(lt2->l_pflag, LP_SINGLESTEP);
1240 }
1241 CLR(lt->l_pflag, LP_SINGLESTEP);
1242 }
1243 sendsig:
1244 error = ptrace_sendsig(t, lt, signo, resume_all);
1245 break;
1246
1247 case PT_SYSCALLEMU:
1248 if (!ISSET(t->p_slflag, PSL_SYSCALL) || t->p_stat != SSTOP) {
1249 error = EINVAL;
1250 break;
1251 }
1252 SET(t->p_slflag, PSL_SYSCALLEMU);
1253 break;
1254
1255 #ifdef PT_STEP
1256 case PT_SETSTEP:
1257 write = 1;
1258
1259 case PT_CLEARSTEP:
1260 /* write = 0 done above. */
1261 if ((error = ptrace_update_lwp(t, <, data)) != 0)
1262 break;
1263
1264 if (write)
1265 SET(lt->l_pflag, LP_SINGLESTEP);
1266 else
1267 CLR(lt->l_pflag, LP_SINGLESTEP);
1268 break;
1269 #endif
1270
1271 case PT_KILL:
1272 /* just send the process a KILL signal. */
1273 signo = SIGKILL;
1274 goto sendsig; /* in PT_CONTINUE, above. */
1275
1276 case PT_ATTACH:
1277 /*
1278 * Go ahead and set the trace flag.
1279 * Save the old parent (it's reset in
1280 * _DETACH, and also in kern_exit.c:wait4()
1281 * Reparent the process so that the tracing
1282 * proc gets to see all the action.
1283 * Stop the target.
1284 */
1285 proc_changeparent(t, p);
1286 signo = SIGSTOP;
1287 goto sendsig;
1288
1289 case PT_GET_EVENT_MASK:
1290 error = ptrace_get_event_mask(t, addr, data);
1291 break;
1292
1293 case PT_SET_EVENT_MASK:
1294 error = ptrace_set_event_mask(t, addr, data);
1295 break;
1296
1297 case PT_GET_PROCESS_STATE:
1298 error = ptrace_get_process_state(t, addr, data);
1299 break;
1300
1301 case PT_LWPINFO:
1302 error = ptrace_lwpinfo(t, <, addr, data);
1303 break;
1304
1305 case PT_SET_SIGINFO:
1306 error = ptrace_set_siginfo(t, <, ptm, addr, data);
1307 break;
1308
1309 case PT_GET_SIGINFO:
1310 error = ptrace_get_siginfo(t, ptm, addr, data);
1311 break;
1312
1313 case PT_RESUME:
1314 case PT_SUSPEND:
1315 error = ptrace_startstop(t, <, req, addr, data);
1316 break;
1317
1318 #ifdef PT_REGISTERS
1319 case_PT_SETREGS
1320 case_PT_GETREGS
1321 case_PT_SETFPREGS
1322 case_PT_GETFPREGS
1323 case_PT_SETDBREGS
1324 case_PT_GETDBREGS
1325 error = ptrace_regs(l, <, req, ptm, addr, data);
1326 break;
1327 #endif
1328
1329 #ifdef __HAVE_PTRACE_MACHDEP
1330 PTRACE_MACHDEP_REQUEST_CASES
1331 error = ptrace_machdep_dorequest(l, lt, req, addr, data);
1332 break;
1333 #endif
1334 }
1335
1336 out:
1337 if (pheld) {
1338 mutex_exit(t->p_lock);
1339 mutex_exit(proc_lock);
1340 }
1341 if (lt != NULL)
1342 lwp_delref(lt);
1343 rw_exit(&t->p_reflock);
1344
1345 return error;
1346 }
1347
1348 typedef int (*regrfunc_t)(struct lwp *, void *, size_t *);
1349 typedef int (*regwfunc_t)(struct lwp *, void *, size_t);
1350
1351 #ifdef PT_REGISTERS
1352 static int
1353 proc_regio(struct lwp *l, struct uio *uio, size_t ks, regrfunc_t r,
1354 regwfunc_t w)
1355 {
1356 char buf[1024];
1357 int error;
1358 char *kv;
1359 size_t kl;
1360
1361 if (ks > sizeof(buf))
1362 return E2BIG;
1363
1364 if (uio->uio_offset < 0 || uio->uio_offset > (off_t)ks)
1365 return EINVAL;
1366
1367 kv = buf + uio->uio_offset;
1368 kl = ks - uio->uio_offset;
1369
1370 if (kl > uio->uio_resid)
1371 kl = uio->uio_resid;
1372
1373 error = (*r)(l, buf, &ks);
1374 if (error == 0)
1375 error = uiomove(kv, kl, uio);
1376 if (error == 0 && uio->uio_rw == UIO_WRITE) {
1377 if (l->l_stat != LSSTOP)
1378 error = EBUSY;
1379 else
1380 error = (*w)(l, buf, ks);
1381 }
1382
1383 uio->uio_offset = 0;
1384 return error;
1385 }
1386 #endif
1387
1388 int
1389 process_doregs(struct lwp *curl /*tracer*/,
1390 struct lwp *l /*traced*/,
1391 struct uio *uio)
1392 {
1393 #if defined(PT_GETREGS) || defined(PT_SETREGS)
1394 size_t s;
1395 regrfunc_t r;
1396 regwfunc_t w;
1397
1398 #ifdef COMPAT_NETBSD32
1399 const bool pk32 = (l->l_proc->p_flag & PK_32) != 0;
1400
1401 if (__predict_false(pk32)) {
1402 s = sizeof(process_reg32);
1403 r = (regrfunc_t)process_read_regs32;
1404 w = (regwfunc_t)process_write_regs32;
1405 } else
1406 #endif
1407 {
1408 s = sizeof(struct reg);
1409 r = (regrfunc_t)process_read_regs;
1410 w = (regwfunc_t)process_write_regs;
1411 }
1412 return proc_regio(l, uio, s, r, w);
1413 #else
1414 return EINVAL;
1415 #endif
1416 }
1417
1418 int
1419 process_validregs(struct lwp *l)
1420 {
1421
1422 #if defined(PT_SETREGS) || defined(PT_GETREGS)
1423 return (l->l_flag & LW_SYSTEM) == 0;
1424 #else
1425 return 0;
1426 #endif
1427 }
1428
1429 int
1430 process_dofpregs(struct lwp *curl /*tracer*/,
1431 struct lwp *l /*traced*/,
1432 struct uio *uio)
1433 {
1434 #if defined(PT_GETFPREGS) || defined(PT_SETFPREGS)
1435 size_t s;
1436 regrfunc_t r;
1437 regwfunc_t w;
1438
1439 #ifdef COMPAT_NETBSD32
1440 const bool pk32 = (l->l_proc->p_flag & PK_32) != 0;
1441
1442 if (__predict_false(pk32)) {
1443 s = sizeof(process_fpreg32);
1444 r = (regrfunc_t)process_read_fpregs32;
1445 w = (regwfunc_t)process_write_fpregs32;
1446 } else
1447 #endif
1448 {
1449 s = sizeof(struct fpreg);
1450 r = (regrfunc_t)process_read_fpregs;
1451 w = (regwfunc_t)process_write_fpregs;
1452 }
1453 return proc_regio(l, uio, s, r, w);
1454 #else
1455 return EINVAL;
1456 #endif
1457 }
1458
1459 int
1460 process_validfpregs(struct lwp *l)
1461 {
1462
1463 #if defined(PT_SETFPREGS) || defined(PT_GETFPREGS)
1464 return (l->l_flag & LW_SYSTEM) == 0;
1465 #else
1466 return 0;
1467 #endif
1468 }
1469
1470 int
1471 process_dodbregs(struct lwp *curl /*tracer*/,
1472 struct lwp *l /*traced*/,
1473 struct uio *uio)
1474 {
1475 #if defined(PT_GETDBREGS) || defined(PT_SETDBREGS)
1476 size_t s;
1477 regrfunc_t r;
1478 regwfunc_t w;
1479
1480 #ifdef COMPAT_NETBSD32
1481 const bool pk32 = (l->l_proc->p_flag & PK_32) != 0;
1482
1483 if (__predict_false(pk32)) {
1484 s = sizeof(process_dbreg32);
1485 r = (regrfunc_t)process_read_dbregs32;
1486 w = (regwfunc_t)process_write_dbregs32;
1487 } else
1488 #endif
1489 {
1490 s = sizeof(struct dbreg);
1491 r = (regrfunc_t)process_read_dbregs;
1492 w = (regwfunc_t)process_write_dbregs;
1493 }
1494 return proc_regio(l, uio, s, r, w);
1495 #else
1496 return EINVAL;
1497 #endif
1498 }
1499
1500 int
1501 process_validdbregs(struct lwp *l)
1502 {
1503
1504 #if defined(PT_SETDBREGS) || defined(PT_GETDBREGS)
1505 return (l->l_flag & LW_SYSTEM) == 0;
1506 #else
1507 return 0;
1508 #endif
1509 }
1510
1511 static int
1512 process_auxv_offset(struct proc *p, struct uio *uio)
1513 {
1514 struct ps_strings pss;
1515 int error;
1516 off_t off = (off_t)p->p_psstrp;
1517
1518 if ((error = copyin_psstrings(p, &pss)) != 0)
1519 return error;
1520
1521 if (pss.ps_envstr == NULL)
1522 return EIO;
1523
1524 uio->uio_offset += (off_t)(vaddr_t)(pss.ps_envstr + pss.ps_nenvstr + 1);
1525 #ifdef __MACHINE_STACK_GROWS_UP
1526 if (uio->uio_offset < off)
1527 return EIO;
1528 #else
1529 if (uio->uio_offset > off)
1530 return EIO;
1531 if ((uio->uio_offset + uio->uio_resid) > off)
1532 uio->uio_resid = off - uio->uio_offset;
1533 #endif
1534 return 0;
1535 }
1536 #endif /* PTRACE */
1537
1538 MODULE(MODULE_CLASS_EXEC, ptrace_common, "");
1539
1540 static int
1541 ptrace_common_modcmd(modcmd_t cmd, void *arg)
1542 {
1543 int error;
1544
1545 switch (cmd) {
1546 case MODULE_CMD_INIT:
1547 error = ptrace_init();
1548 break;
1549 case MODULE_CMD_FINI:
1550 error = ptrace_fini();
1551 break;
1552 default:
1553 ptrace_hooks();
1554 error = ENOTTY;
1555 break;
1556 }
1557 return error;
1558 }
1559