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