Home | History | Annotate | Line # | Download | only in procfs
procfs_subr.c revision 1.100
      1  1.100  jmcneill /*	$NetBSD: procfs_subr.c,v 1.100 2011/09/04 17:32:10 jmcneill Exp $	*/
      2   1.75        ad 
      3   1.75        ad /*-
      4   1.86        ad  * Copyright (c) 2006, 2007, 2008 The NetBSD Foundation, Inc.
      5   1.75        ad  * All rights reserved.
      6   1.75        ad  *
      7   1.75        ad  * This code is derived from software contributed to The NetBSD Foundation
      8   1.75        ad  * by Andrew Doran.
      9   1.75        ad  *
     10   1.75        ad  * Redistribution and use in source and binary forms, with or without
     11   1.75        ad  * modification, are permitted provided that the following conditions
     12   1.75        ad  * are met:
     13   1.75        ad  * 1. Redistributions of source code must retain the above copyright
     14   1.75        ad  *    notice, this list of conditions and the following disclaimer.
     15   1.75        ad  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.75        ad  *    notice, this list of conditions and the following disclaimer in the
     17   1.75        ad  *    documentation and/or other materials provided with the distribution.
     18   1.75        ad  *
     19   1.75        ad  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20   1.75        ad  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21   1.75        ad  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22   1.75        ad  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23   1.75        ad  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24   1.75        ad  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25   1.75        ad  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26   1.75        ad  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27   1.75        ad  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28   1.75        ad  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29   1.75        ad  * POSSIBILITY OF SUCH DAMAGE.
     30   1.75        ad  */
     31   1.57       agc 
     32   1.57       agc /*
     33   1.57       agc  * Copyright (c) 1993
     34   1.57       agc  *	The Regents of the University of California.  All rights reserved.
     35   1.57       agc  *
     36   1.57       agc  * This code is derived from software contributed to Berkeley by
     37   1.57       agc  * Jan-Simon Pendry.
     38   1.57       agc  *
     39   1.57       agc  * Redistribution and use in source and binary forms, with or without
     40   1.57       agc  * modification, are permitted provided that the following conditions
     41   1.57       agc  * are met:
     42   1.57       agc  * 1. Redistributions of source code must retain the above copyright
     43   1.57       agc  *    notice, this list of conditions and the following disclaimer.
     44   1.57       agc  * 2. Redistributions in binary form must reproduce the above copyright
     45   1.57       agc  *    notice, this list of conditions and the following disclaimer in the
     46   1.57       agc  *    documentation and/or other materials provided with the distribution.
     47   1.57       agc  * 3. Neither the name of the University nor the names of its contributors
     48   1.57       agc  *    may be used to endorse or promote products derived from this software
     49   1.57       agc  *    without specific prior written permission.
     50   1.57       agc  *
     51   1.57       agc  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     52   1.57       agc  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     53   1.57       agc  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     54   1.57       agc  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     55   1.57       agc  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     56   1.57       agc  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     57   1.57       agc  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     58   1.57       agc  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     59   1.57       agc  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     60   1.57       agc  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     61   1.57       agc  * SUCH DAMAGE.
     62   1.57       agc  *
     63   1.57       agc  *	@(#)procfs_subr.c	8.6 (Berkeley) 5/14/95
     64   1.57       agc  */
     65   1.13       cgd 
     66    1.1        pk /*
     67   1.20   thorpej  * Copyright (c) 1994 Christopher G. Demetriou.  All rights reserved.
     68    1.5       cgd  * Copyright (c) 1993 Jan-Simon Pendry
     69    1.2        pk  *
     70    1.5       cgd  * This code is derived from software contributed to Berkeley by
     71    1.5       cgd  * Jan-Simon Pendry.
     72    1.5       cgd  *
     73    1.2        pk  * Redistribution and use in source and binary forms, with or without
     74    1.2        pk  * modification, are permitted provided that the following conditions
     75    1.2        pk  * are met:
     76    1.2        pk  * 1. Redistributions of source code must retain the above copyright
     77    1.2        pk  *    notice, this list of conditions and the following disclaimer.
     78    1.2        pk  * 2. Redistributions in binary form must reproduce the above copyright
     79    1.2        pk  *    notice, this list of conditions and the following disclaimer in the
     80    1.2        pk  *    documentation and/or other materials provided with the distribution.
     81    1.2        pk  * 3. All advertising materials mentioning features or use of this software
     82    1.2        pk  *    must display the following acknowledgement:
     83    1.5       cgd  *	This product includes software developed by the University of
     84    1.5       cgd  *	California, Berkeley and its contributors.
     85    1.5       cgd  * 4. Neither the name of the University nor the names of its contributors
     86    1.5       cgd  *    may be used to endorse or promote products derived from this software
     87    1.5       cgd  *    without specific prior written permission.
     88    1.5       cgd  *
     89    1.5       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     90    1.5       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     91    1.5       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     92    1.5       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     93    1.5       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     94    1.5       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     95    1.5       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     96    1.5       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     97    1.5       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     98    1.5       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     99    1.5       cgd  * SUCH DAMAGE.
    100    1.2        pk  *
    101   1.23      fvdl  *	@(#)procfs_subr.c	8.6 (Berkeley) 5/14/95
    102    1.1        pk  */
    103   1.39     lukem 
    104   1.39     lukem #include <sys/cdefs.h>
    105  1.100  jmcneill __KERNEL_RCSID(0, "$NetBSD: procfs_subr.c,v 1.100 2011/09/04 17:32:10 jmcneill Exp $");
    106    1.5       cgd 
    107    1.4   mycroft #include <sys/param.h>
    108    1.4   mycroft #include <sys/systm.h>
    109    1.4   mycroft #include <sys/time.h>
    110    1.4   mycroft #include <sys/kernel.h>
    111    1.4   mycroft #include <sys/proc.h>
    112    1.4   mycroft #include <sys/vnode.h>
    113   1.11   mycroft #include <sys/malloc.h>
    114   1.18   mycroft #include <sys/stat.h>
    115   1.42  christos #include <sys/file.h>
    116   1.42  christos #include <sys/filedesc.h>
    117   1.73      elad #include <sys/kauth.h>
    118   1.18   mycroft 
    119    1.5       cgd #include <miscfs/procfs/procfs.h>
    120    1.1        pk 
    121   1.65   xtraeme void procfs_hashins(struct pfsnode *);
    122   1.65   xtraeme void procfs_hashrem(struct pfsnode *);
    123   1.82        ad struct vnode *procfs_hashget(pid_t, pfstype, int, struct mount *, int);
    124   1.29      fvdl 
    125   1.29      fvdl LIST_HEAD(pfs_hashhead, pfsnode) *pfs_hashtbl;
    126   1.30      fvdl u_long	pfs_ihash;	/* size of hash table - 1 */
    127   1.38       chs #define PFSPIDHASH(pid)	((pid) & pfs_ihash)
    128   1.29      fvdl 
    129   1.76        ad kmutex_t pfs_hashlock;
    130   1.76        ad kmutex_t pfs_ihash_lock;
    131    1.1        pk 
    132   1.20   thorpej #define	ISSET(t, f)	((t) & (f))
    133   1.20   thorpej 
    134    1.1        pk /*
    135    1.5       cgd  * allocate a pfsnode/vnode pair.  the vnode is
    136   1.27  wrstuden  * referenced, and locked.
    137    1.5       cgd  *
    138    1.5       cgd  * the pid, pfs_type, and mount point uniquely
    139    1.5       cgd  * identify a pfsnode.  the mount point is needed
    140    1.5       cgd  * because someone might mount this filesystem
    141    1.5       cgd  * twice.
    142    1.5       cgd  *
    143    1.5       cgd  * all pfsnodes are maintained on a singly-linked
    144    1.5       cgd  * list.  new nodes are only allocated when they cannot
    145    1.5       cgd  * be found on this list.  entries on the list are
    146    1.5       cgd  * removed when the vfs reclaim entry is called.
    147    1.5       cgd  *
    148    1.5       cgd  * a single lock is kept for the entire list.  this is
    149    1.5       cgd  * needed because the getnewvnode() function can block
    150    1.5       cgd  * waiting for a vnode to become free, in which case there
    151    1.5       cgd  * may be more than one process trying to get the same
    152    1.5       cgd  * vnode.  this lock is only taken if we are going to
    153    1.5       cgd  * call getnewvnode, since the kernel itself is single-threaded.
    154    1.5       cgd  *
    155    1.5       cgd  * if an entry is found on the list, then call vget() to
    156    1.5       cgd  * take a reference.  this is done because there may be
    157    1.5       cgd  * zero references to it and so it needs to removed from
    158    1.5       cgd  * the vnode free list.
    159    1.1        pk  */
    160   1.11   mycroft int
    161   1.99     rmind procfs_allocvp(struct mount *mp, struct vnode **vpp, pid_t pid,
    162   1.99     rmind     pfstype pfs_type, int fd, struct proc *p)
    163    1.1        pk {
    164   1.12   mycroft 	struct pfsnode *pfs;
    165   1.12   mycroft 	struct vnode *vp;
    166    1.5       cgd 	int error;
    167    1.5       cgd 
    168   1.82        ad  retry:
    169   1.82        ad 	*vpp = procfs_hashget(pid, pfs_type, fd, mp, LK_EXCLUSIVE);
    170   1.82        ad 	if (*vpp != NULL)
    171   1.76        ad 		return (0);
    172    1.1        pk 
    173   1.99     rmind 	error = getnewvnode(VT_PROCFS, mp, procfs_vnodeop_p, NULL, &vp);
    174   1.99     rmind 	if (error) {
    175   1.29      fvdl 		*vpp = NULL;
    176   1.29      fvdl 		return (error);
    177    1.5       cgd 	}
    178   1.93    cegger 	pfs = malloc(sizeof(struct pfsnode), M_TEMP, M_WAITOK);
    179   1.76        ad 
    180   1.76        ad 	mutex_enter(&pfs_hashlock);
    181   1.82        ad 	if ((*vpp = procfs_hashget(pid, pfs_type, fd, mp, 0)) != NULL) {
    182   1.76        ad 		mutex_exit(&pfs_hashlock);
    183   1.76        ad 		ungetnewvnode(vp);
    184   1.93    cegger 		free(pfs, M_TEMP);
    185   1.82        ad 		goto retry;
    186   1.76        ad 	}
    187    1.5       cgd 
    188   1.11   mycroft 	vp->v_data = pfs;
    189   1.42  christos 	pfs->pfs_pid = pid;
    190    1.5       cgd 	pfs->pfs_type = pfs_type;
    191   1.11   mycroft 	pfs->pfs_vnode = vp;
    192    1.5       cgd 	pfs->pfs_flags = 0;
    193   1.42  christos 	pfs->pfs_fileno = PROCFS_FILENO(pid, pfs_type, fd);
    194   1.42  christos 	pfs->pfs_fd = fd;
    195    1.5       cgd 
    196    1.5       cgd 	switch (pfs_type) {
    197   1.58     darcy 	case PFSroot:	/* /proc = dr-xr-xr-x */
    198   1.82        ad 		vp->v_vflag |= VV_ROOT;
    199   1.74  christos 		/*FALLTHROUGH*/
    200   1.74  christos 	case PFSproc:	/* /proc/N = dr-xr-xr-x */
    201   1.17   mycroft 		pfs->pfs_mode = S_IRUSR|S_IXUSR|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH;
    202   1.11   mycroft 		vp->v_type = VDIR;
    203   1.11   mycroft 		break;
    204   1.11   mycroft 
    205   1.58     darcy 	case PFScurproc:	/* /proc/curproc = lr-xr-xr-x */
    206   1.58     darcy 	case PFSself:	/* /proc/self    = lr-xr-xr-x */
    207   1.66    atatat 	case PFScwd:	/* /proc/N/cwd = lr-xr-xr-x */
    208   1.66    atatat 	case PFSchroot:	/* /proc/N/chroot = lr-xr-xr-x */
    209   1.70  christos 	case PFSexe:	/* /proc/N/exe = lr-xr-xr-x */
    210   1.22   mycroft 		pfs->pfs_mode = S_IRUSR|S_IXUSR|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH;
    211   1.11   mycroft 		vp->v_type = VLNK;
    212    1.5       cgd 		break;
    213    1.5       cgd 
    214   1.58     darcy 	case PFSfd:
    215   1.42  christos 		if (fd == -1) {	/* /proc/N/fd = dr-xr-xr-x */
    216   1.52  christos 			pfs->pfs_mode = S_IRUSR|S_IXUSR;
    217   1.42  christos 			vp->v_type = VDIR;
    218   1.42  christos 		} else {	/* /proc/N/fd/M = [ps-]rw------- */
    219   1.86        ad 			file_t *fp;
    220   1.86        ad 			vnode_t *vxp;
    221   1.44  jdolecek 
    222   1.86        ad 			if ((fp = fd_getfile2(p, pfs->pfs_fd)) == NULL) {
    223   1.75        ad 				error = EBADF;
    224   1.44  jdolecek 				goto bad;
    225   1.75        ad 			}
    226   1.44  jdolecek 
    227   1.42  christos 			pfs->pfs_mode = S_IRUSR|S_IWUSR;
    228   1.42  christos 			switch (fp->f_type) {
    229   1.42  christos 			case DTYPE_VNODE:
    230   1.86        ad 				vxp = fp->f_data;
    231   1.50  jdolecek 
    232   1.51  christos 				/*
    233   1.63     perry 				 * We make symlinks for directories
    234   1.51  christos 				 * to avoid cycles.
    235   1.51  christos 				 */
    236   1.51  christos 				if (vxp->v_type == VDIR)
    237   1.51  christos 					goto symlink;
    238   1.42  christos 				vp->v_type = vxp->v_type;
    239   1.42  christos 				break;
    240   1.42  christos 			case DTYPE_PIPE:
    241   1.42  christos 				vp->v_type = VFIFO;
    242   1.42  christos 				break;
    243   1.42  christos 			case DTYPE_SOCKET:
    244   1.42  christos 				vp->v_type = VSOCK;
    245   1.51  christos 				break;
    246   1.51  christos 			case DTYPE_KQUEUE:
    247   1.51  christos 			case DTYPE_MISC:
    248   1.51  christos 			symlink:
    249   1.51  christos 				pfs->pfs_mode = S_IRUSR|S_IXUSR|S_IRGRP|
    250   1.51  christos 				    S_IXGRP|S_IROTH|S_IXOTH;
    251   1.51  christos 				vp->v_type = VLNK;
    252   1.42  christos 				break;
    253   1.45  jdolecek 			default:
    254   1.44  jdolecek 				error = EOPNOTSUPP;
    255   1.86        ad 				closef(fp);
    256   1.44  jdolecek 				goto bad;
    257   1.42  christos 			}
    258   1.86        ad 			closef(fp);
    259   1.42  christos 		}
    260    1.5       cgd 		break;
    261    1.5       cgd 
    262   1.58     darcy 	case PFSfile:	/* /proc/N/file = -rw------- */
    263   1.58     darcy 	case PFSmem:	/* /proc/N/mem = -rw------- */
    264   1.58     darcy 	case PFSregs:	/* /proc/N/regs = -rw------- */
    265   1.58     darcy 	case PFSfpregs:	/* /proc/N/fpregs = -rw------- */
    266   1.17   mycroft 		pfs->pfs_mode = S_IRUSR|S_IWUSR;
    267    1.9       cgd 		vp->v_type = VREG;
    268    1.9       cgd 		break;
    269    1.9       cgd 
    270   1.58     darcy 	case PFSctl:	/* /proc/N/ctl = --w------ */
    271   1.58     darcy 	case PFSnote:	/* /proc/N/note = --w------ */
    272   1.58     darcy 	case PFSnotepg:	/* /proc/N/notepg = --w------ */
    273   1.17   mycroft 		pfs->pfs_mode = S_IWUSR;
    274    1.6        ws 		vp->v_type = VREG;
    275    1.5       cgd 		break;
    276    1.5       cgd 
    277   1.58     darcy 	case PFSmap:	/* /proc/N/map = -r--r--r-- */
    278   1.58     darcy 	case PFSmaps:	/* /proc/N/maps = -r--r--r-- */
    279   1.58     darcy 	case PFSstatus:	/* /proc/N/status = -r--r--r-- */
    280   1.58     darcy 	case PFSstat:	/* /proc/N/stat = -r--r--r-- */
    281   1.58     darcy 	case PFScmdline:	/* /proc/N/cmdline = -r--r--r-- */
    282   1.71  christos 	case PFSemul:	/* /proc/N/emul = -r--r--r-- */
    283   1.58     darcy 	case PFSmeminfo:	/* /proc/meminfo = -r--r--r-- */
    284   1.80       agc 	case PFScpustat:	/* /proc/stat = -r--r--r-- */
    285   1.69      manu 	case PFSdevices:	/* /proc/devices = -r--r--r-- */
    286   1.58     darcy 	case PFScpuinfo:	/* /proc/cpuinfo = -r--r--r-- */
    287   1.58     darcy 	case PFSuptime:	/* /proc/uptime = -r--r--r-- */
    288   1.62  jdolecek 	case PFSmounts:	/* /proc/mounts = -r--r--r-- */
    289   1.80       agc 	case PFSloadavg:	/* /proc/loadavg = -r--r--r-- */
    290   1.80       agc 	case PFSstatm:	/* /proc/N/statm = -r--r--r-- */
    291  1.100  jmcneill 	case PFSversion:	/* /proc/version = -r--r--r-- */
    292   1.17   mycroft 		pfs->pfs_mode = S_IRUSR|S_IRGRP|S_IROTH;
    293    1.6        ws 		vp->v_type = VREG;
    294    1.5       cgd 		break;
    295    1.5       cgd 
    296   1.40   thorpej #ifdef __HAVE_PROCFS_MACHDEP
    297   1.40   thorpej 	PROCFS_MACHDEP_NODETYPE_CASES
    298   1.40   thorpej 		procfs_machdep_allocvp(vp);
    299   1.40   thorpej 		break;
    300   1.40   thorpej #endif
    301   1.40   thorpej 
    302    1.5       cgd 	default:
    303   1.11   mycroft 		panic("procfs_allocvp");
    304    1.5       cgd 	}
    305   1.27  wrstuden 
    306   1.29      fvdl 	procfs_hashins(pfs);
    307   1.34       chs 	uvm_vnp_setsize(vp, 0);
    308   1.76        ad 	mutex_exit(&pfs_hashlock);
    309    1.1        pk 
    310   1.44  jdolecek 	*vpp = vp;
    311   1.44  jdolecek 	return (0);
    312   1.44  jdolecek 
    313   1.44  jdolecek  bad:
    314   1.76        ad 	mutex_exit(&pfs_hashlock);
    315   1.93    cegger 	free(pfs, M_TEMP);
    316   1.82        ad 	vp->v_data = NULL;
    317   1.44  jdolecek 	ungetnewvnode(vp);
    318    1.5       cgd 	return (error);
    319    1.1        pk }
    320    1.1        pk 
    321   1.11   mycroft int
    322   1.94       dsl procfs_freevp(struct vnode *vp)
    323    1.1        pk {
    324    1.5       cgd 	struct pfsnode *pfs = VTOPFS(vp);
    325    1.5       cgd 
    326   1.29      fvdl 	procfs_hashrem(pfs);
    327    1.1        pk 
    328   1.93    cegger 	free(vp->v_data, M_TEMP);
    329   1.93    cegger 	vp->v_data = NULL;
    330    1.5       cgd 	return (0);
    331    1.1        pk }
    332    1.1        pk 
    333   1.11   mycroft int
    334   1.94       dsl procfs_rw(void *v)
    335    1.1        pk {
    336   1.15  christos 	struct vop_read_args *ap = v;
    337   1.11   mycroft 	struct vnode *vp = ap->a_vp;
    338   1.11   mycroft 	struct uio *uio = ap->a_uio;
    339   1.67  christos 	struct lwp *curl;
    340   1.67  christos 	struct lwp *l;
    341   1.56      fvdl 	struct pfsnode *pfs = VTOPFS(vp);
    342    1.5       cgd 	struct proc *p;
    343   1.73      elad 	int error;
    344    1.5       cgd 
    345   1.59  christos 	if (uio->uio_offset < 0)
    346   1.59  christos 		return EINVAL;
    347   1.73      elad 
    348   1.75        ad 	if ((error = procfs_proc_lock(pfs->pfs_pid, &p, ESRCH)) != 0)
    349   1.75        ad 		return error;
    350   1.73      elad 
    351   1.73      elad 	curl = curlwp;
    352   1.73      elad 
    353   1.59  christos 	/*
    354   1.59  christos 	 * Do not allow init to be modified while in secure mode; it
    355   1.59  christos 	 * could be duped into changing the security level.
    356   1.59  christos 	 */
    357   1.84      elad #define	M2K(m)	((m) == UIO_READ ? KAUTH_REQ_PROCESS_PROCFS_READ : \
    358   1.84      elad 		 KAUTH_REQ_PROCESS_PROCFS_WRITE)
    359   1.88        ad 	mutex_enter(p->p_lock);
    360   1.84      elad 	error = kauth_authorize_process(curl->l_cred, KAUTH_PROCESS_PROCFS,
    361   1.73      elad 	    p, pfs, KAUTH_ARG(M2K(uio->uio_rw)), NULL);
    362   1.88        ad 	mutex_exit(p->p_lock);
    363   1.75        ad 	if (error) {
    364   1.75        ad 		procfs_proc_unlock(p);
    365   1.73      elad 		return (error);
    366   1.75        ad 	}
    367   1.73      elad #undef	M2K
    368   1.67  christos 
    369   1.88        ad 	mutex_enter(p->p_lock);
    370   1.92     skrll 	LIST_FOREACH(l, &p->p_lwps, l_sibling) {
    371   1.92     skrll 		if (l->l_stat != LSZOMB)
    372   1.92     skrll 			break;
    373   1.92     skrll 	}
    374   1.92     skrll 	/* Process is exiting if no-LWPS or all LWPs are LSZOMB */
    375   1.92     skrll 	if (l == NULL) {
    376   1.92     skrll 		mutex_exit(p->p_lock);
    377   1.92     skrll 		procfs_proc_unlock(p);
    378   1.92     skrll 		return ESRCH;
    379   1.92     skrll 	}
    380   1.92     skrll 
    381   1.75        ad 	lwp_addref(l);
    382   1.88        ad 	mutex_exit(p->p_lock);
    383   1.63     perry 
    384   1.19   mycroft 	switch (pfs->pfs_type) {
    385   1.58     darcy 	case PFSnote:
    386   1.58     darcy 	case PFSnotepg:
    387   1.75        ad 		error = procfs_donote(curl, p, pfs, uio);
    388   1.75        ad 		break;
    389    1.5       cgd 
    390   1.58     darcy 	case PFSregs:
    391   1.75        ad 		error = procfs_doregs(curl, l, pfs, uio);
    392   1.75        ad 		break;
    393    1.9       cgd 
    394   1.58     darcy 	case PFSfpregs:
    395   1.75        ad 		error = procfs_dofpregs(curl, l, pfs, uio);
    396   1.75        ad 		break;
    397    1.5       cgd 
    398   1.58     darcy 	case PFSctl:
    399   1.75        ad 		error = procfs_doctl(curl, l, pfs, uio);
    400   1.75        ad 		break;
    401    1.5       cgd 
    402   1.58     darcy 	case PFSstatus:
    403   1.75        ad 		error = procfs_dostatus(curl, l, pfs, uio);
    404   1.75        ad 		break;
    405   1.53  christos 
    406   1.58     darcy 	case PFSstat:
    407   1.75        ad 		error = procfs_do_pid_stat(curl, l, pfs, uio);
    408   1.75        ad 		break;
    409   1.25   msaitoh 
    410   1.58     darcy 	case PFSmap:
    411   1.75        ad 		error = procfs_domap(curl, p, pfs, uio, 0);
    412   1.75        ad 		break;
    413   1.37      fvdl 
    414   1.58     darcy 	case PFSmaps:
    415   1.75        ad 		error = procfs_domap(curl, p, pfs, uio, 1);
    416   1.75        ad 		break;
    417    1.1        pk 
    418   1.58     darcy 	case PFSmem:
    419   1.75        ad 		error = procfs_domem(curl, l, pfs, uio);
    420   1.75        ad 		break;
    421   1.26  christos 
    422   1.58     darcy 	case PFScmdline:
    423   1.75        ad 		error = procfs_docmdline(curl, p, pfs, uio);
    424   1.75        ad 		break;
    425   1.35      fvdl 
    426   1.58     darcy 	case PFSmeminfo:
    427   1.75        ad 		error = procfs_domeminfo(curl, p, pfs, uio);
    428   1.75        ad 		break;
    429   1.40   thorpej 
    430   1.69      manu 	case PFSdevices:
    431   1.75        ad 		error = procfs_dodevices(curl, p, pfs, uio);
    432   1.75        ad 		break;
    433   1.69      manu 
    434   1.58     darcy 	case PFScpuinfo:
    435   1.75        ad 		error = procfs_docpuinfo(curl, p, pfs, uio);
    436   1.75        ad 		break;
    437   1.40   thorpej 
    438   1.80       agc 	case PFScpustat:
    439   1.80       agc 		error = procfs_docpustat(curl, p, pfs, uio);
    440   1.80       agc 		break;
    441   1.80       agc 
    442   1.80       agc 	case PFSloadavg:
    443   1.80       agc 		error = procfs_doloadavg(curl, p, pfs, uio);
    444   1.80       agc 		break;
    445   1.80       agc 
    446   1.80       agc 	case PFSstatm:
    447   1.80       agc 		error = procfs_do_pid_statm(curl, l, pfs, uio);
    448   1.80       agc 		break;
    449   1.80       agc 
    450   1.58     darcy 	case PFSfd:
    451   1.75        ad 		error = procfs_dofd(curl, p, pfs, uio);
    452   1.75        ad 		break;
    453   1.46       jrf 
    454   1.58     darcy 	case PFSuptime:
    455   1.75        ad 		error = procfs_douptime(curl, p, pfs, uio);
    456   1.75        ad 		break;
    457   1.42  christos 
    458   1.62  jdolecek 	case PFSmounts:
    459   1.75        ad 		error = procfs_domounts(curl, p, pfs, uio);
    460   1.75        ad 		break;
    461   1.62  jdolecek 
    462   1.71  christos 	case PFSemul:
    463   1.75        ad 		error = procfs_doemul(curl, p, pfs, uio);
    464   1.75        ad 		break;
    465   1.71  christos 
    466  1.100  jmcneill 	case PFSversion:
    467  1.100  jmcneill 		error = procfs_doversion(curl, p, pfs, uio);
    468  1.100  jmcneill 		break;
    469  1.100  jmcneill 
    470   1.40   thorpej #ifdef __HAVE_PROCFS_MACHDEP
    471   1.40   thorpej 	PROCFS_MACHDEP_NODETYPE_CASES
    472   1.75        ad 		error = procfs_machdep_rw(curl, l, pfs, uio);
    473   1.75        ad 		break;
    474   1.40   thorpej #endif
    475    1.1        pk 
    476    1.5       cgd 	default:
    477   1.75        ad 		error = EOPNOTSUPP;
    478   1.75        ad 		break;
    479    1.5       cgd 	}
    480   1.75        ad 
    481   1.75        ad 	/*
    482   1.75        ad 	 * Release the references that we acquired earlier.
    483   1.75        ad 	 */
    484   1.75        ad 	lwp_delref(l);
    485   1.75        ad 	procfs_proc_unlock(p);
    486   1.75        ad 
    487   1.75        ad 	return (error);
    488    1.1        pk }
    489    1.1        pk 
    490    1.5       cgd /*
    491   1.64  christos  * Get a string from userland into (bf).  Strip a trailing
    492    1.5       cgd  * nl character (to allow easy access from the shell).
    493   1.11   mycroft  * The buffer should be *buflenp + 1 chars long.  vfs_getuserstr
    494    1.5       cgd  * will automatically add a nul char at the end.
    495    1.5       cgd  *
    496    1.5       cgd  * Returns 0 on success or the following errors
    497    1.5       cgd  *
    498    1.5       cgd  * EINVAL:    file offset is non-zero.
    499    1.5       cgd  * EMSGSIZE:  message is longer than kernel buffer
    500    1.5       cgd  * EFAULT:    user i/o buffer is not addressable
    501    1.5       cgd  */
    502   1.11   mycroft int
    503   1.94       dsl vfs_getuserstr(struct uio *uio, char *bf, int *buflenp)
    504    1.1        pk {
    505    1.5       cgd 	int xlen;
    506    1.5       cgd 	int error;
    507    1.5       cgd 
    508   1.11   mycroft 	if (uio->uio_offset != 0)
    509   1.11   mycroft 		return (EINVAL);
    510   1.11   mycroft 
    511    1.5       cgd 	xlen = *buflenp;
    512    1.1        pk 
    513    1.5       cgd 	/* must be able to read the whole string in one go */
    514    1.5       cgd 	if (xlen < uio->uio_resid)
    515    1.5       cgd 		return (EMSGSIZE);
    516    1.5       cgd 	xlen = uio->uio_resid;
    517    1.5       cgd 
    518   1.64  christos 	if ((error = uiomove(bf, xlen, uio)) != 0)
    519    1.5       cgd 		return (error);
    520    1.5       cgd 
    521   1.11   mycroft 	/* allow multiple writes without seeks */
    522   1.11   mycroft 	uio->uio_offset = 0;
    523   1.11   mycroft 
    524    1.5       cgd 	/* cleanup string and remove trailing newline */
    525   1.64  christos 	bf[xlen] = '\0';
    526   1.64  christos 	xlen = strlen(bf);
    527   1.64  christos 	if (xlen > 0 && bf[xlen-1] == '\n')
    528   1.64  christos 		bf[--xlen] = '\0';
    529    1.5       cgd 	*buflenp = xlen;
    530    1.1        pk 
    531    1.5       cgd 	return (0);
    532    1.1        pk }
    533    1.1        pk 
    534   1.36  jdolecek const vfs_namemap_t *
    535   1.94       dsl vfs_findname(const vfs_namemap_t *nm, const char *bf, int buflen)
    536    1.1        pk {
    537   1.11   mycroft 
    538    1.5       cgd 	for (; nm->nm_name; nm++)
    539   1.64  christos 		if (memcmp(bf, nm->nm_name, buflen+1) == 0)
    540    1.5       cgd 			return (nm);
    541    1.5       cgd 
    542    1.5       cgd 	return (0);
    543   1.29      fvdl }
    544   1.29      fvdl 
    545   1.29      fvdl /*
    546   1.29      fvdl  * Initialize pfsnode hash table.
    547   1.29      fvdl  */
    548   1.29      fvdl void
    549   1.95    cegger procfs_hashinit(void)
    550   1.29      fvdl {
    551   1.76        ad 	mutex_init(&pfs_hashlock, MUTEX_DEFAULT, IPL_NONE);
    552   1.76        ad 	mutex_init(&pfs_ihash_lock, MUTEX_DEFAULT, IPL_NONE);
    553   1.90        ad 	pfs_hashtbl = hashinit(desiredvnodes / 4, HASH_LIST, true, &pfs_ihash);
    554   1.31  jdolecek }
    555   1.31  jdolecek 
    556   1.38       chs void
    557   1.95    cegger procfs_hashreinit(void)
    558   1.38       chs {
    559   1.38       chs 	struct pfsnode *pp;
    560   1.38       chs 	struct pfs_hashhead *oldhash, *hash;
    561   1.41   thorpej 	u_long i, oldmask, mask, val;
    562   1.38       chs 
    563   1.90        ad 	hash = hashinit(desiredvnodes / 4, HASH_LIST, true, &mask);
    564   1.38       chs 
    565   1.76        ad 	mutex_enter(&pfs_ihash_lock);
    566   1.38       chs 	oldhash = pfs_hashtbl;
    567   1.38       chs 	oldmask = pfs_ihash;
    568   1.38       chs 	pfs_hashtbl = hash;
    569   1.38       chs 	pfs_ihash = mask;
    570   1.38       chs 	for (i = 0; i <= oldmask; i++) {
    571   1.38       chs 		while ((pp = LIST_FIRST(&oldhash[i])) != NULL) {
    572   1.38       chs 			LIST_REMOVE(pp, pfs_hash);
    573   1.38       chs 			val = PFSPIDHASH(pp->pfs_pid);
    574   1.38       chs 			LIST_INSERT_HEAD(&hash[val], pp, pfs_hash);
    575   1.38       chs 		}
    576   1.38       chs 	}
    577   1.76        ad 	mutex_exit(&pfs_ihash_lock);
    578   1.90        ad 	hashdone(oldhash, HASH_LIST, oldmask);
    579   1.38       chs }
    580   1.38       chs 
    581   1.31  jdolecek /*
    582   1.31  jdolecek  * Free pfsnode hash table.
    583   1.31  jdolecek  */
    584   1.31  jdolecek void
    585   1.95    cegger procfs_hashdone(void)
    586   1.31  jdolecek {
    587   1.90        ad 	hashdone(pfs_hashtbl, HASH_LIST, pfs_ihash);
    588   1.78        ad 	mutex_destroy(&pfs_hashlock);
    589   1.78        ad 	mutex_destroy(&pfs_ihash_lock);
    590   1.29      fvdl }
    591   1.29      fvdl 
    592   1.29      fvdl struct vnode *
    593   1.94       dsl procfs_hashget(pid_t pid, pfstype type, int fd, struct mount *mp, int flags)
    594   1.29      fvdl {
    595   1.38       chs 	struct pfs_hashhead *ppp;
    596   1.29      fvdl 	struct pfsnode *pp;
    597   1.29      fvdl 	struct vnode *vp;
    598   1.29      fvdl 
    599   1.29      fvdl loop:
    600   1.76        ad 	mutex_enter(&pfs_ihash_lock);
    601   1.38       chs 	ppp = &pfs_hashtbl[PFSPIDHASH(pid)];
    602   1.38       chs 	LIST_FOREACH(pp, ppp, pfs_hash) {
    603   1.29      fvdl 		vp = PFSTOV(pp);
    604   1.29      fvdl 		if (pid == pp->pfs_pid && pp->pfs_type == type &&
    605   1.42  christos 		    pp->pfs_fd == fd && vp->v_mount == mp) {
    606   1.82        ad 		    	if (flags == 0) {
    607   1.82        ad 				mutex_exit(&pfs_ihash_lock);
    608   1.82        ad 			} else {
    609   1.99     rmind 				mutex_enter(vp->v_interlock);
    610   1.82        ad 				mutex_exit(&pfs_ihash_lock);
    611   1.98   hannken 				if (vget(vp, flags))
    612   1.82        ad 					goto loop;
    613   1.82        ad 			}
    614   1.29      fvdl 			return (vp);
    615   1.29      fvdl 		}
    616   1.29      fvdl 	}
    617   1.76        ad 	mutex_exit(&pfs_ihash_lock);
    618   1.29      fvdl 	return (NULL);
    619   1.29      fvdl }
    620   1.29      fvdl 
    621   1.29      fvdl /*
    622   1.29      fvdl  * Insert the pfsnode into the hash table and lock it.
    623   1.29      fvdl  */
    624   1.29      fvdl void
    625   1.94       dsl procfs_hashins(struct pfsnode *pp)
    626   1.29      fvdl {
    627   1.29      fvdl 	struct pfs_hashhead *ppp;
    628   1.29      fvdl 
    629   1.29      fvdl 	/* lock the pfsnode, then put it on the appropriate hash list */
    630   1.97   hannken 	VOP_LOCK(PFSTOV(pp), LK_EXCLUSIVE);
    631   1.29      fvdl 
    632   1.76        ad 	mutex_enter(&pfs_ihash_lock);
    633   1.38       chs 	ppp = &pfs_hashtbl[PFSPIDHASH(pp->pfs_pid)];
    634   1.29      fvdl 	LIST_INSERT_HEAD(ppp, pp, pfs_hash);
    635   1.76        ad 	mutex_exit(&pfs_ihash_lock);
    636   1.29      fvdl }
    637   1.29      fvdl 
    638   1.29      fvdl /*
    639   1.29      fvdl  * Remove the pfsnode from the hash table.
    640   1.29      fvdl  */
    641   1.29      fvdl void
    642   1.94       dsl procfs_hashrem(struct pfsnode *pp)
    643   1.29      fvdl {
    644   1.76        ad 	mutex_enter(&pfs_ihash_lock);
    645   1.29      fvdl 	LIST_REMOVE(pp, pfs_hash);
    646   1.76        ad 	mutex_exit(&pfs_ihash_lock);
    647   1.29      fvdl }
    648   1.29      fvdl 
    649   1.29      fvdl void
    650   1.94       dsl procfs_revoke_vnodes(struct proc *p, void *arg)
    651   1.29      fvdl {
    652   1.29      fvdl 	struct pfsnode *pfs, *pnext;
    653   1.29      fvdl 	struct vnode *vp;
    654   1.29      fvdl 	struct mount *mp = (struct mount *)arg;
    655   1.38       chs 	struct pfs_hashhead *ppp;
    656   1.29      fvdl 
    657   1.77     pavel 	if (!(p->p_flag & PK_SUGID))
    658   1.29      fvdl 		return;
    659   1.29      fvdl 
    660   1.82        ad 	mutex_enter(&pfs_ihash_lock);
    661   1.38       chs 	ppp = &pfs_hashtbl[PFSPIDHASH(p->p_pid)];
    662   1.38       chs 	for (pfs = LIST_FIRST(ppp); pfs; pfs = pnext) {
    663   1.29      fvdl 		vp = PFSTOV(pfs);
    664   1.38       chs 		pnext = LIST_NEXT(pfs, pfs_hash);
    665   1.99     rmind 		mutex_enter(vp->v_interlock);
    666   1.29      fvdl 		if (vp->v_usecount > 0 && pfs->pfs_pid == p->p_pid &&
    667   1.82        ad 		    vp->v_mount == mp) {
    668   1.82        ad 		    	vp->v_usecount++;
    669   1.99     rmind 		    	mutex_exit(vp->v_interlock);
    670   1.82        ad 			mutex_exit(&pfs_ihash_lock);
    671   1.29      fvdl 			VOP_REVOKE(vp, REVOKEALL);
    672   1.82        ad 			vrele(vp);
    673   1.82        ad 			mutex_enter(&pfs_ihash_lock);
    674   1.82        ad 		} else {
    675   1.99     rmind 			mutex_exit(vp->v_interlock);
    676   1.82        ad 		}
    677   1.29      fvdl 	}
    678   1.82        ad 	mutex_exit(&pfs_ihash_lock);
    679   1.42  christos }
    680   1.42  christos 
    681   1.42  christos int
    682   1.75        ad procfs_proc_lock(int pid, struct proc **bunghole, int notfound)
    683   1.42  christos {
    684   1.75        ad 	struct proc *tp;
    685   1.75        ad 	int error = 0;
    686   1.42  christos 
    687   1.87        ad 	mutex_enter(proc_lock);
    688   1.42  christos 
    689   1.75        ad 	if (pid == 0)
    690   1.75        ad 		tp = &proc0;
    691   1.96     rmind 	else if ((tp = proc_find(pid)) == NULL)
    692   1.75        ad 		error = notfound;
    693   1.82        ad 	if (tp != NULL && !rw_tryenter(&tp->p_reflock, RW_READER))
    694   1.82        ad 		error = EBUSY;
    695   1.75        ad 
    696   1.87        ad 	mutex_exit(proc_lock);
    697   1.42  christos 
    698   1.75        ad 	*bunghole = tp;
    699   1.75        ad 	return error;
    700   1.75        ad }
    701   1.49  jdolecek 
    702   1.75        ad void
    703   1.75        ad procfs_proc_unlock(struct proc *p)
    704   1.75        ad {
    705   1.82        ad 
    706   1.82        ad 	rw_exit(&p->p_reflock);
    707    1.1        pk }
    708   1.71  christos 
    709   1.71  christos int
    710   1.72  christos procfs_doemul(struct lwp *curl, struct proc *p,
    711   1.72  christos     struct pfsnode *pfs, struct uio *uio)
    712   1.71  christos {
    713   1.71  christos 	const char *ename = p->p_emul->e_name;
    714   1.71  christos 	return uiomove_frombuf(__UNCONST(ename), strlen(ename), uio);
    715   1.71  christos }
    716