Home | History | Annotate | Line # | Download | only in kern
kern_descrip.c revision 1.177
      1  1.177        ad /*	$NetBSD: kern_descrip.c,v 1.177 2008/04/24 18:39:23 ad Exp $	*/
      2  1.173        ad 
      3  1.173        ad /*-
      4  1.173        ad  * Copyright (c) 2008 The NetBSD Foundation, Inc.
      5  1.173        ad  * All rights reserved.
      6  1.173        ad  *
      7  1.173        ad  * Redistribution and use in source and binary forms, with or without
      8  1.173        ad  * modification, are permitted provided that the following conditions
      9  1.173        ad  * are met:
     10  1.173        ad  * 1. Redistributions of source code must retain the above copyright
     11  1.173        ad  *    notice, this list of conditions and the following disclaimer.
     12  1.173        ad  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.173        ad  *    notice, this list of conditions and the following disclaimer in the
     14  1.173        ad  *    documentation and/or other materials provided with the distribution.
     15  1.173        ad  * 3. All advertising materials mentioning features or use of this software
     16  1.173        ad  *    must display the following acknowledgement:
     17  1.173        ad  *	This product includes software developed by the NetBSD
     18  1.173        ad  *	Foundation, Inc. and its contributors.
     19  1.173        ad  * 4. Neither the name of The NetBSD Foundation nor the names of its
     20  1.173        ad  *    contributors may be used to endorse or promote products derived
     21  1.173        ad  *    from this software without specific prior written permission.
     22  1.173        ad  *
     23  1.173        ad  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     24  1.173        ad  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     25  1.173        ad  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     26  1.173        ad  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     27  1.173        ad  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     28  1.173        ad  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     29  1.173        ad  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     30  1.173        ad  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     31  1.173        ad  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     32  1.173        ad  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     33  1.173        ad  * POSSIBILITY OF SUCH DAMAGE.
     34  1.173        ad  */
     35   1.22       cgd 
     36   1.16       cgd /*
     37   1.17       cgd  * Copyright (c) 1982, 1986, 1989, 1991, 1993
     38   1.17       cgd  *	The Regents of the University of California.  All rights reserved.
     39   1.16       cgd  * (c) UNIX System Laboratories, Inc.
     40   1.16       cgd  * All or some portions of this file are derived from material licensed
     41   1.16       cgd  * to the University of California by American Telephone and Telegraph
     42   1.16       cgd  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
     43   1.16       cgd  * the permission of UNIX System Laboratories, Inc.
     44   1.16       cgd  *
     45   1.16       cgd  * Redistribution and use in source and binary forms, with or without
     46   1.16       cgd  * modification, are permitted provided that the following conditions
     47   1.16       cgd  * are met:
     48   1.16       cgd  * 1. Redistributions of source code must retain the above copyright
     49   1.16       cgd  *    notice, this list of conditions and the following disclaimer.
     50   1.16       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     51   1.16       cgd  *    notice, this list of conditions and the following disclaimer in the
     52   1.16       cgd  *    documentation and/or other materials provided with the distribution.
     53  1.111       agc  * 3. Neither the name of the University nor the names of its contributors
     54   1.16       cgd  *    may be used to endorse or promote products derived from this software
     55   1.16       cgd  *    without specific prior written permission.
     56   1.16       cgd  *
     57   1.16       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     58   1.16       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     59   1.16       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     60   1.16       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     61   1.16       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     62   1.16       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     63   1.16       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     64   1.16       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     65   1.16       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     66   1.16       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     67   1.16       cgd  * SUCH DAMAGE.
     68   1.16       cgd  *
     69   1.51      fvdl  *	@(#)kern_descrip.c	8.8 (Berkeley) 2/14/95
     70   1.16       cgd  */
     71   1.81     lukem 
     72  1.173        ad /*
     73  1.173        ad  * File descriptor management.
     74  1.173        ad  */
     75  1.173        ad 
     76   1.81     lukem #include <sys/cdefs.h>
     77  1.177        ad __KERNEL_RCSID(0, "$NetBSD: kern_descrip.c,v 1.177 2008/04/24 18:39:23 ad Exp $");
     78   1.50       mrg 
     79   1.16       cgd #include <sys/param.h>
     80   1.16       cgd #include <sys/systm.h>
     81   1.16       cgd #include <sys/filedesc.h>
     82   1.16       cgd #include <sys/kernel.h>
     83   1.16       cgd #include <sys/vnode.h>
     84   1.16       cgd #include <sys/proc.h>
     85   1.16       cgd #include <sys/file.h>
     86   1.86  christos #include <sys/namei.h>
     87   1.16       cgd #include <sys/socket.h>
     88   1.16       cgd #include <sys/socketvar.h>
     89   1.16       cgd #include <sys/stat.h>
     90   1.16       cgd #include <sys/ioctl.h>
     91   1.16       cgd #include <sys/fcntl.h>
     92   1.16       cgd #include <sys/malloc.h>
     93   1.55   thorpej #include <sys/pool.h>
     94   1.16       cgd #include <sys/syslog.h>
     95   1.17       cgd #include <sys/unistd.h>
     96   1.16       cgd #include <sys/resourcevar.h>
     97   1.42  christos #include <sys/conf.h>
     98   1.96  jdolecek #include <sys/event.h>
     99  1.143      elad #include <sys/kauth.h>
    100  1.163        ad #include <sys/atomic.h>
    101   1.25       cgd #include <sys/mount.h>
    102   1.25       cgd #include <sys/syscallargs.h>
    103  1.176        ad #include <sys/cpu.h>
    104   1.38  christos 
    105  1.162        ad static int	cwdi_ctor(void *, void *, int);
    106  1.162        ad static void	cwdi_dtor(void *, void *);
    107  1.167        ad static int	file_ctor(void *, void *, int);
    108  1.167        ad static void	file_dtor(void *, void *);
    109  1.173        ad static int	fdfile_ctor(void *, void *, int);
    110  1.173        ad static void	fdfile_dtor(void *, void *);
    111  1.173        ad static int	filedesc_ctor(void *, void *, int);
    112  1.173        ad static void	filedesc_dtor(void *, void *);
    113  1.173        ad static int	filedescopen(dev_t, int, int, lwp_t *);
    114  1.162        ad 
    115  1.173        ad kmutex_t	filelist_lock;	/* lock on filehead */
    116   1.72     lukem struct filelist	filehead;	/* head of list of open files */
    117  1.167        ad u_int		nfiles;		/* actual number of open files */
    118  1.161        ad 
    119  1.162        ad static pool_cache_t cwdi_cache;
    120  1.173        ad static pool_cache_t filedesc_cache;
    121  1.162        ad static pool_cache_t file_cache;
    122  1.173        ad static pool_cache_t fdfile_cache;
    123  1.101   thorpej 
    124  1.173        ad MALLOC_DEFINE(M_FILEDESC, "file desc", "Open file descriptor table");
    125  1.102        pk 
    126  1.173        ad const struct cdevsw filedesc_cdevsw = {
    127  1.173        ad 	filedescopen, noclose, noread, nowrite, noioctl,
    128  1.173        ad 	nostop, notty, nopoll, nommap, nokqfilter, D_OTHER | D_MPSAFE,
    129  1.173        ad };
    130  1.173        ad 
    131  1.173        ad /* For ease of reading. */
    132  1.173        ad __strong_alias(fd_putvnode,fd_putfile)
    133  1.173        ad __strong_alias(fd_putsock,fd_putfile)
    134  1.173        ad 
    135  1.173        ad /*
    136  1.173        ad  * Initialize the descriptor system.
    137  1.173        ad  */
    138  1.173        ad void
    139  1.173        ad fd_sys_init(void)
    140  1.173        ad {
    141  1.173        ad 
    142  1.173        ad 	mutex_init(&filelist_lock, MUTEX_DEFAULT, IPL_NONE);
    143  1.173        ad 
    144  1.174        ad 	file_cache = pool_cache_init(sizeof(file_t), coherency_unit, 0,
    145  1.173        ad 	    0, "file", NULL, IPL_NONE, file_ctor, file_dtor, NULL);
    146  1.173        ad 	KASSERT(file_cache != NULL);
    147  1.173        ad 
    148  1.174        ad 	fdfile_cache = pool_cache_init(sizeof(fdfile_t), coherency_unit, 0,
    149  1.173        ad 	    PR_LARGECACHE, "fdfile", NULL, IPL_NONE, fdfile_ctor, fdfile_dtor,
    150  1.173        ad 	    NULL);
    151  1.173        ad 	KASSERT(fdfile_cache != NULL);
    152  1.173        ad 
    153  1.174        ad 	cwdi_cache = pool_cache_init(sizeof(struct cwdinfo), coherency_unit,
    154  1.173        ad 	    0, 0, "cwdi", NULL, IPL_NONE, cwdi_ctor, cwdi_dtor, NULL);
    155  1.173        ad 	KASSERT(cwdi_cache != NULL);
    156  1.173        ad 
    157  1.174        ad 	filedesc_cache = pool_cache_init(sizeof(filedesc_t), coherency_unit,
    158  1.173        ad 	    0, 0, "filedesc", NULL, IPL_NONE, filedesc_ctor, filedesc_dtor,
    159  1.173        ad 	    NULL);
    160  1.173        ad 	KASSERT(filedesc_cache != NULL);
    161  1.173        ad }
    162   1.72     lukem 
    163  1.173        ad static int
    164  1.173        ad fd_next_zero(filedesc_t *fdp, uint32_t *bitmap, int want, u_int bits)
    165  1.115    provos {
    166  1.115    provos 	int i, off, maxoff;
    167  1.115    provos 	uint32_t sub;
    168  1.115    provos 
    169  1.173        ad 	KASSERT(mutex_owned(&fdp->fd_lock));
    170  1.173        ad 
    171  1.115    provos 	if (want > bits)
    172  1.115    provos 		return -1;
    173  1.115    provos 
    174  1.115    provos 	off = want >> NDENTRYSHIFT;
    175  1.115    provos 	i = want & NDENTRYMASK;
    176  1.115    provos 	if (i) {
    177  1.115    provos 		sub = bitmap[off] | ((u_int)~0 >> (NDENTRIES - i));
    178  1.115    provos 		if (sub != ~0)
    179  1.115    provos 			goto found;
    180  1.115    provos 		off++;
    181  1.115    provos 	}
    182  1.115    provos 
    183  1.115    provos 	maxoff = NDLOSLOTS(bits);
    184  1.115    provos 	while (off < maxoff) {
    185  1.115    provos 		if ((sub = bitmap[off]) != ~0)
    186  1.115    provos 			goto found;
    187  1.115    provos 		off++;
    188  1.115    provos 	}
    189  1.115    provos 
    190  1.115    provos 	return (-1);
    191  1.115    provos 
    192  1.115    provos  found:
    193  1.115    provos 	return (off << NDENTRYSHIFT) + ffs(~sub) - 1;
    194  1.115    provos }
    195  1.115    provos 
    196  1.134   thorpej static int
    197  1.173        ad fd_last_set(filedesc_t *fd, int last)
    198  1.115    provos {
    199  1.115    provos 	int off, i;
    200  1.173        ad 	fdfile_t **ofiles = fd->fd_ofiles;
    201  1.115    provos 	uint32_t *bitmap = fd->fd_lomap;
    202  1.115    provos 
    203  1.173        ad 	KASSERT(mutex_owned(&fd->fd_lock));
    204  1.173        ad 
    205  1.115    provos 	off = (last - 1) >> NDENTRYSHIFT;
    206  1.115    provos 
    207  1.121    provos 	while (off >= 0 && !bitmap[off])
    208  1.115    provos 		off--;
    209  1.115    provos 
    210  1.115    provos 	if (off < 0)
    211  1.128      cube 		return (-1);
    212  1.131     perry 
    213  1.115    provos 	i = ((off + 1) << NDENTRYSHIFT) - 1;
    214  1.115    provos 	if (i >= last)
    215  1.115    provos 		i = last - 1;
    216  1.115    provos 
    217  1.173        ad 	/* XXX should use bitmap */
    218  1.173        ad 	/* XXXAD does not work for fd_copy() */
    219  1.173        ad 	while (i > 0 && (ofiles[i] == NULL || !ofiles[i]->ff_allocated))
    220  1.115    provos 		i--;
    221  1.115    provos 
    222  1.115    provos 	return (i);
    223  1.115    provos }
    224  1.115    provos 
    225  1.173        ad void
    226  1.173        ad fd_used(filedesc_t *fdp, unsigned fd)
    227   1.27   mycroft {
    228  1.115    provos 	u_int off = fd >> NDENTRYSHIFT;
    229  1.173        ad 	fdfile_t *ff;
    230  1.173        ad 
    231  1.173        ad 	ff = fdp->fd_ofiles[fd];
    232  1.115    provos 
    233  1.173        ad 	KASSERT(mutex_owned(&fdp->fd_lock));
    234  1.173        ad 	KASSERT((fdp->fd_lomap[off] & (1 << (fd & NDENTRYMASK))) == 0);
    235  1.173        ad 	KASSERT(ff != NULL);
    236  1.173        ad 	KASSERT(ff->ff_file == NULL);
    237  1.173        ad    	KASSERT(!ff->ff_allocated);
    238  1.124      yamt 
    239  1.173        ad    	ff->ff_allocated = 1;
    240  1.115    provos 	fdp->fd_lomap[off] |= 1 << (fd & NDENTRYMASK);
    241  1.124      yamt 	if (fdp->fd_lomap[off] == ~0) {
    242  1.173        ad 		KASSERT((fdp->fd_himap[off >> NDENTRYSHIFT] &
    243  1.124      yamt 		    (1 << (off & NDENTRYMASK))) == 0);
    244  1.115    provos 		fdp->fd_himap[off >> NDENTRYSHIFT] |= 1 << (off & NDENTRYMASK);
    245  1.124      yamt 	}
    246   1.27   mycroft 
    247  1.173        ad 	if ((int)fd > fdp->fd_lastfile) {
    248   1.27   mycroft 		fdp->fd_lastfile = fd;
    249  1.173        ad 	}
    250  1.173        ad 
    251  1.173        ad 	if (fd >= NDFDFILE) {
    252  1.173        ad 		fdp->fd_nused++;
    253  1.173        ad 	} else {
    254  1.173        ad 		KASSERT(ff == (fdfile_t *)fdp->fd_dfdfile[fd]);
    255  1.173        ad 	}
    256   1.27   mycroft }
    257   1.27   mycroft 
    258  1.173        ad void
    259  1.173        ad fd_unused(filedesc_t *fdp, unsigned fd)
    260   1.27   mycroft {
    261  1.115    provos 	u_int off = fd >> NDENTRYSHIFT;
    262  1.173        ad 	fdfile_t *ff;
    263   1.27   mycroft 
    264  1.173        ad 	ff = fdp->fd_ofiles[fd];
    265  1.173        ad 
    266  1.173        ad 	/*
    267  1.173        ad 	 * Don't assert the lock is held here, as we may be copying
    268  1.173        ad 	 * the table during exec() and it is not needed there.
    269  1.173        ad 	 * procfs and sysctl are locked out by proc::p_reflock.
    270  1.173        ad 	 *
    271  1.173        ad 	 * KASSERT(mutex_owned(&fdp->fd_lock));
    272  1.173        ad 	 */
    273  1.173        ad 	KASSERT(ff != NULL);
    274  1.173        ad 	KASSERT(ff->ff_file == NULL);
    275  1.173        ad    	KASSERT(ff->ff_allocated);
    276  1.173        ad 
    277  1.173        ad 	if (fd < fdp->fd_freefile) {
    278   1.27   mycroft 		fdp->fd_freefile = fd;
    279  1.173        ad 	}
    280  1.115    provos 
    281  1.124      yamt 	if (fdp->fd_lomap[off] == ~0) {
    282  1.173        ad 		KASSERT((fdp->fd_himap[off >> NDENTRYSHIFT] &
    283  1.124      yamt 		    (1 << (off & NDENTRYMASK))) != 0);
    284  1.124      yamt 		fdp->fd_himap[off >> NDENTRYSHIFT] &=
    285  1.124      yamt 		    ~(1 << (off & NDENTRYMASK));
    286  1.124      yamt 	}
    287  1.173        ad 	KASSERT((fdp->fd_lomap[off] & (1 << (fd & NDENTRYMASK))) != 0);
    288  1.115    provos 	fdp->fd_lomap[off] &= ~(1 << (fd & NDENTRYMASK));
    289  1.173        ad 	ff->ff_allocated = 0;
    290  1.115    provos 
    291  1.173        ad 	KASSERT(fd <= fdp->fd_lastfile);
    292  1.173        ad 	if (fd == fdp->fd_lastfile) {
    293  1.173        ad 		fdp->fd_lastfile = fd_last_set(fdp, fd);
    294  1.173        ad 	}
    295  1.173        ad 
    296  1.173        ad 	if (fd >= NDFDFILE) {
    297  1.173        ad 		KASSERT(fdp->fd_nused > 0);
    298  1.173        ad 		fdp->fd_nused--;
    299  1.173        ad 	} else {
    300  1.173        ad 		KASSERT(ff == (fdfile_t *)fdp->fd_dfdfile[fd]);
    301  1.173        ad 	}
    302   1.27   mycroft }
    303   1.27   mycroft 
    304  1.103        pk /*
    305  1.173        ad  * Custom version of fd_unused() for fd_copy(), where the descriptor
    306  1.173        ad  * table is not yet fully initialized.
    307  1.103        pk  */
    308  1.173        ad static inline void
    309  1.173        ad fd_zap(filedesc_t *fdp, unsigned fd)
    310   1.77   thorpej {
    311  1.173        ad 	u_int off = fd >> NDENTRYSHIFT;
    312   1.77   thorpej 
    313  1.173        ad 	if (fd < fdp->fd_freefile) {
    314  1.173        ad 		fdp->fd_freefile = fd;
    315  1.161        ad 	}
    316   1.77   thorpej 
    317  1.173        ad 	if (fdp->fd_lomap[off] == ~0) {
    318  1.173        ad 		KASSERT((fdp->fd_himap[off >> NDENTRYSHIFT] &
    319  1.173        ad 		    (1 << (off & NDENTRYMASK))) != 0);
    320  1.173        ad 		fdp->fd_himap[off >> NDENTRYSHIFT] &=
    321  1.173        ad 		    ~(1 << (off & NDENTRYMASK));
    322  1.103        pk 	}
    323  1.173        ad 	KASSERT((fdp->fd_lomap[off] & (1 << (fd & NDENTRYMASK))) != 0);
    324  1.173        ad 	fdp->fd_lomap[off] &= ~(1 << (fd & NDENTRYMASK));
    325  1.173        ad }
    326  1.173        ad 
    327  1.173        ad bool
    328  1.173        ad fd_isused(filedesc_t *fdp, unsigned fd)
    329  1.173        ad {
    330  1.173        ad 	u_int off = fd >> NDENTRYSHIFT;
    331  1.173        ad 
    332  1.173        ad 	KASSERT(fd < fdp->fd_nfiles);
    333   1.77   thorpej 
    334  1.173        ad 	return (fdp->fd_lomap[off] & (1 << (fd & NDENTRYMASK))) != 0;
    335   1.77   thorpej }
    336   1.77   thorpej 
    337   1.16       cgd /*
    338  1.173        ad  * Look up the file structure corresponding to a file descriptor
    339  1.173        ad  * and return the file, holding a reference on the descriptor.
    340  1.134   thorpej  */
    341  1.173        ad inline file_t *
    342  1.173        ad fd_getfile(unsigned fd)
    343  1.134   thorpej {
    344  1.173        ad 	filedesc_t *fdp;
    345  1.173        ad 	fdfile_t *ff;
    346  1.173        ad 	file_t *fp;
    347  1.134   thorpej 
    348  1.173        ad 	fdp = curlwp->l_fd;
    349  1.134   thorpej 
    350  1.134   thorpej 	/*
    351  1.173        ad 	 * Look up the fdfile structure representing this descriptor.
    352  1.173        ad 	 * Ensure that we see fd_nfiles before fd_ofiles since we
    353  1.173        ad 	 * are doing this unlocked.  See fd_tryexpand().
    354  1.134   thorpej 	 */
    355  1.173        ad 	if (__predict_false(fd >= fdp->fd_nfiles)) {
    356  1.173        ad 		return NULL;
    357  1.173        ad 	}
    358  1.173        ad 	membar_consumer();
    359  1.173        ad 	ff = fdp->fd_ofiles[fd];
    360  1.173        ad 	KASSERT(fd >= NDFDFILE || ff == (fdfile_t *)fdp->fd_dfdfile[fd]);
    361  1.173        ad 	if (__predict_false(ff == NULL)) {
    362  1.173        ad 		return NULL;
    363  1.173        ad 	}
    364  1.134   thorpej 
    365  1.173        ad 	/*
    366  1.173        ad 	 * Now get a reference to the descriptor.   Issue a memory
    367  1.173        ad 	 * barrier to ensure that we acquire the file pointer _after_
    368  1.173        ad 	 * adding a reference.  If no memory barrier, we could fetch
    369  1.173        ad 	 * a stale pointer.
    370  1.173        ad 	 */
    371  1.173        ad 	atomic_inc_uint(&ff->ff_refcnt);
    372  1.173        ad #ifndef __HAVE_ATOMIC_AS_MEMBAR
    373  1.173        ad 	membar_enter();
    374  1.173        ad #endif
    375  1.134   thorpej 
    376  1.173        ad 	/*
    377  1.173        ad 	 * If the file is not open or is being closed then put the
    378  1.173        ad 	 * reference back.
    379  1.173        ad 	 */
    380  1.173        ad 	fp = ff->ff_file;
    381  1.173        ad 	if (__predict_true(fp != NULL)) {
    382  1.173        ad 		return fp;
    383  1.134   thorpej 	}
    384  1.173        ad 	fd_putfile(fd);
    385  1.173        ad 	return NULL;
    386  1.134   thorpej }
    387  1.134   thorpej 
    388  1.134   thorpej /*
    389  1.173        ad  * Release a reference to a file descriptor acquired with fd_getfile().
    390  1.161        ad  */
    391  1.161        ad void
    392  1.173        ad fd_putfile(unsigned fd)
    393  1.161        ad {
    394  1.173        ad 	filedesc_t *fdp;
    395  1.173        ad 	fdfile_t *ff;
    396  1.173        ad 	u_int u, v;
    397  1.173        ad 
    398  1.173        ad 	fdp = curlwp->l_fd;
    399  1.173        ad 	ff = fdp->fd_ofiles[fd];
    400  1.173        ad 
    401  1.173        ad 	KASSERT(fd < fdp->fd_nfiles);
    402  1.173        ad 	KASSERT(ff != NULL);
    403  1.173        ad 	KASSERT((ff->ff_refcnt & FR_MASK) > 0);
    404  1.173        ad 	KASSERT(fd >= NDFDFILE || ff == (fdfile_t *)fdp->fd_dfdfile[fd]);
    405  1.161        ad 
    406  1.173        ad 	/*
    407  1.173        ad 	 * Ensure that any use of the file is complete and globally
    408  1.173        ad 	 * visible before dropping the final reference.  If no membar,
    409  1.173        ad 	 * the current CPU could still access memory associated with
    410  1.173        ad 	 * the file after it has been freed or recycled by another
    411  1.173        ad 	 * CPU.
    412  1.173        ad 	 */
    413  1.173        ad #ifndef __HAVE_ATOMIC_AS_MEMBAR
    414  1.173        ad 	membar_exit();
    415  1.173        ad #endif
    416  1.161        ad 
    417  1.173        ad 	/*
    418  1.173        ad 	 * Be optimistic and start out with the assumption that no other
    419  1.173        ad 	 * threads are trying to close the descriptor.  If the CAS fails,
    420  1.173        ad 	 * we lost a race and/or it's being closed.
    421  1.173        ad 	 */
    422  1.173        ad 	for (u = ff->ff_refcnt & FR_MASK;; u = v) {
    423  1.173        ad 		v = atomic_cas_uint(&ff->ff_refcnt, u, u - 1);
    424  1.173        ad 		if (__predict_true(u == v)) {
    425  1.173        ad 			return;
    426  1.173        ad 		}
    427  1.173        ad 		if (__predict_false((v & FR_CLOSING) != 0)) {
    428  1.173        ad 			break;
    429  1.173        ad 		}
    430  1.173        ad 	}
    431  1.162        ad 
    432  1.173        ad 	/* Another thread is waiting to close the file: join it. */
    433  1.173        ad 	(void)fd_close(fd);
    434  1.161        ad }
    435  1.161        ad 
    436  1.161        ad /*
    437  1.173        ad  * Convenience wrapper around fd_getfile() that returns reference
    438  1.173        ad  * to a vnode.
    439   1.16       cgd  */
    440   1.38  christos int
    441  1.173        ad fd_getvnode(unsigned fd, file_t **fpp)
    442   1.36   thorpej {
    443  1.173        ad 	vnode_t *vp;
    444  1.173        ad 	file_t *fp;
    445   1.72     lukem 
    446  1.173        ad 	fp = fd_getfile(fd);
    447  1.173        ad 	if (__predict_false(fp == NULL)) {
    448  1.173        ad 		return EBADF;
    449  1.173        ad 	}
    450  1.173        ad 	if (__predict_false(fp->f_type != DTYPE_VNODE)) {
    451  1.173        ad 		fd_putfile(fd);
    452  1.173        ad 		return EINVAL;
    453  1.173        ad 	}
    454  1.173        ad 	vp = fp->f_data;
    455  1.173        ad 	if (__predict_false(vp->v_type == VBAD)) {
    456  1.173        ad 		/* XXX Is this case really necessary? */
    457  1.173        ad 		fd_putfile(fd);
    458  1.173        ad 		return EBADF;
    459   1.59   thorpej 	}
    460  1.173        ad 	*fpp = fp;
    461  1.173        ad 	return 0;
    462   1.16       cgd }
    463   1.16       cgd 
    464   1.16       cgd /*
    465  1.173        ad  * Convenience wrapper around fd_getfile() that returns reference
    466  1.173        ad  * to a socket.
    467   1.16       cgd  */
    468   1.38  christos int
    469  1.173        ad fd_getsock(unsigned fd, struct socket **sop)
    470   1.36   thorpej {
    471  1.173        ad 	file_t *fp;
    472   1.72     lukem 
    473  1.173        ad 	fp = fd_getfile(fd);
    474  1.173        ad 	if (__predict_false(fp == NULL)) {
    475  1.173        ad 		return EBADF;
    476  1.103        pk 	}
    477  1.173        ad 	if (__predict_false(fp->f_type != DTYPE_SOCKET)) {
    478  1.173        ad 		fd_putfile(fd);
    479  1.173        ad 		return ENOTSOCK;
    480   1.17       cgd 	}
    481  1.173        ad 	*sop = fp->f_data;
    482  1.173        ad 	return 0;
    483   1.16       cgd }
    484   1.16       cgd 
    485   1.16       cgd /*
    486  1.173        ad  * Look up the file structure corresponding to a file descriptor
    487  1.173        ad  * and return it with a reference held on the file, not the
    488  1.173        ad  * descriptor.
    489  1.173        ad  *
    490  1.173        ad  * This is heavyweight and only used when accessing descriptors
    491  1.173        ad  * from a foreign process.  The caller must ensure that `p' does
    492  1.173        ad  * not exit or fork across this call.
    493  1.173        ad  *
    494  1.173        ad  * To release the file (not descriptor) reference, use closef().
    495  1.134   thorpej  */
    496  1.173        ad file_t *
    497  1.173        ad fd_getfile2(proc_t *p, unsigned fd)
    498  1.134   thorpej {
    499  1.173        ad 	filedesc_t *fdp;
    500  1.173        ad 	fdfile_t *ff;
    501  1.173        ad 	file_t *fp;
    502  1.134   thorpej 
    503  1.173        ad 	fdp = p->p_fd;
    504  1.173        ad 	mutex_enter(&fdp->fd_lock);
    505  1.173        ad 	if (fd > fdp->fd_nfiles) {
    506  1.173        ad 		mutex_exit(&fdp->fd_lock);
    507  1.173        ad 		return NULL;
    508  1.173        ad 	}
    509  1.173        ad 	if ((ff = fdp->fd_ofiles[fd]) == NULL) {
    510  1.173        ad 		mutex_exit(&fdp->fd_lock);
    511  1.173        ad 		return NULL;
    512  1.173        ad 	}
    513  1.173        ad 	mutex_enter(&ff->ff_lock);
    514  1.173        ad 	if ((fp = ff->ff_file) == NULL) {
    515  1.173        ad 		mutex_exit(&ff->ff_lock);
    516  1.173        ad 		mutex_exit(&fdp->fd_lock);
    517  1.173        ad 		return NULL;
    518  1.158       dsl 	}
    519  1.173        ad 	mutex_enter(&fp->f_lock);
    520  1.173        ad 	fp->f_count++;
    521  1.173        ad 	mutex_exit(&fp->f_lock);
    522  1.173        ad 	mutex_exit(&ff->ff_lock);
    523  1.173        ad 	mutex_exit(&fdp->fd_lock);
    524  1.158       dsl 
    525  1.173        ad 	return fp;
    526  1.158       dsl }
    527  1.158       dsl 
    528  1.134   thorpej /*
    529  1.173        ad  * Internal form of close.  Must be called with a reference to the
    530  1.173        ad  * descriptor, and will drop the reference.  When all descriptor
    531  1.173        ad  * references are dropped, releases the descriptor slot and a single
    532  1.173        ad  * reference to the file structure.
    533  1.173        ad  */
    534  1.173        ad int
    535  1.173        ad fd_close(unsigned fd)
    536  1.173        ad {
    537  1.173        ad 	struct flock lf;
    538  1.173        ad 	filedesc_t *fdp;
    539  1.173        ad 	fdfile_t *ff;
    540  1.173        ad 	file_t *fp;
    541  1.173        ad 	proc_t *p;
    542  1.173        ad 	lwp_t *l;
    543   1.72     lukem 
    544  1.173        ad 	l = curlwp;
    545   1.99   thorpej 	p = l->l_proc;
    546  1.173        ad 	fdp = l->l_fd;
    547  1.173        ad 	ff = fdp->fd_ofiles[fd];
    548   1.16       cgd 
    549  1.173        ad 	KASSERT(fd >= NDFDFILE || ff == (fdfile_t *)fdp->fd_dfdfile[fd]);
    550  1.122  christos 
    551  1.173        ad 	mutex_enter(&ff->ff_lock);
    552  1.173        ad 	KASSERT((ff->ff_refcnt & FR_MASK) > 0);
    553  1.173        ad 	if (ff->ff_file == NULL) {
    554  1.173        ad 		/*
    555  1.173        ad 		 * Another user of the file is already closing, and is
    556  1.173        ad 		 * waiting for other users of the file to drain.  Release
    557  1.173        ad 		 * our reference, and wake up the closer.
    558  1.173        ad 		 */
    559  1.173        ad 		atomic_dec_uint(&ff->ff_refcnt);
    560  1.173        ad 		cv_broadcast(&ff->ff_closing);
    561  1.173        ad 		mutex_exit(&ff->ff_lock);
    562  1.122  christos 
    563  1.173        ad 		/*
    564  1.173        ad 		 * An application error, so pretend that the descriptor
    565  1.173        ad 		 * was already closed.  We can't safely wait for it to
    566  1.173        ad 		 * be closed without potentially deadlocking.
    567  1.173        ad 		 */
    568   1.16       cgd 		return (EBADF);
    569   1.61  wrstuden 	}
    570  1.173        ad 	KASSERT((ff->ff_refcnt & FR_CLOSING) == 0);
    571   1.61  wrstuden 
    572  1.173        ad 	/*
    573  1.173        ad 	 * There may be multiple users of this file within the process.
    574  1.173        ad 	 * Notify existing and new users that the file is closing.  This
    575  1.173        ad 	 * will prevent them from adding additional uses to this file
    576  1.173        ad 	 * while we are closing it.
    577  1.173        ad 	 */
    578  1.173        ad 	fp = ff->ff_file;
    579  1.173        ad 	ff->ff_file = NULL;
    580  1.173        ad 	ff->ff_exclose = 0;
    581   1.17       cgd 
    582  1.173        ad 	/*
    583  1.173        ad 	 * We expect the caller to hold a descriptor reference - drop it.
    584  1.173        ad 	 * The reference count may increase beyond zero at this point due
    585  1.173        ad 	 * to an erroneous descriptor reference by an application, but
    586  1.173        ad 	 * fd_getfile() will notice that the file is being closed and drop
    587  1.173        ad 	 * the reference again.
    588  1.173        ad 	 */
    589  1.173        ad #ifndef __HAVE_ATOMIC_AS_MEMBAR
    590  1.173        ad 	membar_producer();
    591  1.173        ad #endif
    592  1.173        ad 	if (__predict_false(atomic_dec_uint_nv(&ff->ff_refcnt) != 0)) {
    593  1.173        ad 		/*
    594  1.173        ad 		 * Wait for other references to drain.  This is typically
    595  1.173        ad 		 * an application error - the descriptor is being closed
    596  1.173        ad 		 * while still in use.
    597  1.173        ad 		 *
    598  1.173        ad 		 */
    599  1.173        ad 		atomic_or_uint(&ff->ff_refcnt, FR_CLOSING);
    600  1.173        ad 		/*
    601  1.173        ad 		 * Remove any knotes attached to the file.  A knote
    602  1.173        ad 		 * attached to the descriptor can hold references on it.
    603  1.173        ad 		 */
    604  1.173        ad 		if (!SLIST_EMPTY(&ff->ff_knlist)) {
    605  1.173        ad 			mutex_exit(&ff->ff_lock);
    606  1.173        ad 			knote_fdclose(fd);
    607  1.173        ad 			mutex_enter(&ff->ff_lock);
    608   1.75   thorpej 		}
    609  1.173        ad 		/*
    610  1.173        ad 		 * We need to see the count drop to zero at least once,
    611  1.173        ad 		 * in order to ensure that all pre-existing references
    612  1.173        ad 		 * have been drained.  New references past this point are
    613  1.173        ad 		 * of no interest.
    614  1.173        ad 		 */
    615  1.173        ad 		while ((ff->ff_refcnt & FR_MASK) != 0) {
    616  1.173        ad 			cv_wait(&ff->ff_closing, &ff->ff_lock);
    617  1.107       dsl 		}
    618  1.173        ad 		atomic_and_uint(&ff->ff_refcnt, ~FR_CLOSING);
    619  1.173        ad 	} else {
    620  1.173        ad 		/* If no references, there must be no knotes. */
    621  1.173        ad 		KASSERT(SLIST_EMPTY(&ff->ff_knlist));
    622   1.16       cgd 	}
    623  1.173        ad 	mutex_exit(&ff->ff_lock);
    624   1.59   thorpej 
    625  1.173        ad 	/*
    626  1.173        ad 	 * POSIX record locking dictates that any close releases ALL
    627  1.173        ad 	 * locks owned by this process.  This is handled by setting
    628  1.173        ad 	 * a flag in the unlock to free ONLY locks obeying POSIX
    629  1.173        ad 	 * semantics, and not to free BSD-style file locks.
    630  1.173        ad 	 * If the descriptor was in a message, POSIX-style locks
    631  1.173        ad 	 * aren't passed with the descriptor.
    632  1.173        ad 	 */
    633  1.173        ad 	if ((p->p_flag & PK_ADVLOCK) != 0 && fp->f_type == DTYPE_VNODE) {
    634  1.173        ad 		lf.l_whence = SEEK_SET;
    635  1.173        ad 		lf.l_start = 0;
    636  1.173        ad 		lf.l_len = 0;
    637  1.173        ad 		lf.l_type = F_UNLCK;
    638  1.173        ad 		(void)VOP_ADVLOCK(fp->f_data, p, F_UNLCK, &lf, F_POSIX);
    639  1.103        pk 	}
    640  1.103        pk 
    641   1.59   thorpej 
    642  1.173        ad 	/* Free descriptor slot. */
    643  1.173        ad 	mutex_enter(&fdp->fd_lock);
    644  1.126        pk 	fd_unused(fdp, fd);
    645  1.173        ad 	mutex_exit(&fdp->fd_lock);
    646  1.126        pk 
    647  1.173        ad 	/* Now drop reference to the file itself. */
    648  1.173        ad 	return closef(fp);
    649   1.27   mycroft }
    650   1.27   mycroft 
    651   1.17       cgd /*
    652  1.173        ad  * Duplicate a file descriptor.
    653   1.16       cgd  */
    654   1.38  christos int
    655  1.173        ad fd_dup(file_t *fp, int minfd, int *newp, int exclose)
    656   1.36   thorpej {
    657  1.173        ad 	proc_t *p;
    658  1.173        ad 	int error;
    659   1.16       cgd 
    660  1.173        ad 	p = curproc;
    661   1.79   thorpej 
    662  1.173        ad 	while ((error = fd_alloc(p, minfd, newp)) != 0) {
    663  1.173        ad 		if (error != ENOSPC) {
    664  1.173        ad 			return error;
    665  1.173        ad 		}
    666  1.173        ad 		fd_tryexpand(p);
    667  1.173        ad 	}
    668   1.79   thorpej 
    669  1.173        ad 	curlwp->l_fd->fd_ofiles[*newp]->ff_exclose = exclose;
    670  1.173        ad 	fd_affix(p, fp, *newp);
    671  1.173        ad 	return 0;
    672   1.16       cgd }
    673   1.16       cgd 
    674   1.17       cgd /*
    675  1.173        ad  * dup2 operation.
    676  1.153       dsl  */
    677  1.153       dsl int
    678  1.173        ad fd_dup2(file_t *fp, unsigned new)
    679  1.153       dsl {
    680  1.173        ad 	filedesc_t *fdp;
    681  1.173        ad 	fdfile_t *ff;
    682  1.153       dsl 
    683  1.173        ad 	fdp = curlwp->l_fd;
    684  1.153       dsl 
    685  1.173        ad 	/*
    686  1.173        ad 	 * Ensure there are enough slots in the descriptor table,
    687  1.173        ad 	 * and allocate an fdfile_t up front in case we need it.
    688  1.173        ad 	 */
    689  1.173        ad 	while (new >= fdp->fd_nfiles) {
    690  1.173        ad 		fd_tryexpand(curproc);
    691  1.173        ad 	}
    692  1.173        ad 	ff = pool_cache_get(fdfile_cache, PR_WAITOK);
    693  1.153       dsl 
    694  1.173        ad 	/*
    695  1.173        ad 	 * If there is already a file open, close it.  If the file is
    696  1.173        ad 	 * half open, wait for it to be constructed before closing it.
    697  1.173        ad 	 * XXX Potential for deadlock here?
    698  1.173        ad 	 */
    699  1.173        ad 	mutex_enter(&fdp->fd_lock);
    700  1.173        ad 	while (fd_isused(fdp, new)) {
    701  1.173        ad 		mutex_exit(&fdp->fd_lock);
    702  1.173        ad 		if (fd_getfile(new) != NULL) {
    703  1.173        ad 			(void)fd_close(new);
    704  1.173        ad 		} else {
    705  1.173        ad 			/* XXX Crummy, but unlikely to happen. */
    706  1.173        ad 			kpause("dup2", false, 1, NULL);
    707  1.173        ad 		}
    708  1.173        ad 		mutex_enter(&fdp->fd_lock);
    709  1.173        ad 	}
    710  1.173        ad 	if (fdp->fd_ofiles[new] == NULL) {
    711  1.173        ad 		KASSERT(new >= NDFDFILE);
    712  1.173        ad 		fdp->fd_ofiles[new] = ff;
    713  1.173        ad 		ff = NULL;
    714  1.173        ad 	}
    715  1.173        ad 	fd_used(fdp, new);
    716  1.173        ad 	mutex_exit(&fdp->fd_lock);
    717  1.173        ad 
    718  1.173        ad 	/* Slot is now allocated.  Insert copy of the file. */
    719  1.173        ad 	fd_affix(curproc, fp, new);
    720  1.173        ad 	if (ff != NULL) {
    721  1.173        ad 		pool_cache_put(fdfile_cache, ff);
    722  1.173        ad 	}
    723  1.173        ad 	return 0;
    724  1.153       dsl }
    725  1.153       dsl 
    726  1.153       dsl /*
    727  1.173        ad  * Drop reference to a file structure.
    728   1.17       cgd  */
    729   1.38  christos int
    730  1.173        ad closef(file_t *fp)
    731   1.36   thorpej {
    732  1.173        ad 	struct flock lf;
    733  1.173        ad 	int error;
    734   1.16       cgd 
    735  1.173        ad 	/*
    736  1.173        ad 	 * Drop reference.  If referenced elsewhere it's still open
    737  1.173        ad 	 * and we have nothing more to do.
    738  1.173        ad 	 */
    739  1.173        ad 	mutex_enter(&fp->f_lock);
    740  1.173        ad 	KASSERT(fp->f_count > 0);
    741  1.173        ad 	if (--fp->f_count > 0) {
    742  1.173        ad 		mutex_exit(&fp->f_lock);
    743  1.173        ad 		return 0;
    744  1.173        ad 	}
    745  1.173        ad 	KASSERT(fp->f_count == 0);
    746  1.173        ad 	mutex_exit(&fp->f_lock);
    747   1.59   thorpej 
    748  1.173        ad 	/* We held the last reference - release locks, close and free. */
    749  1.173        ad         if ((fp->f_flag & FHASLOCK) && fp->f_type == DTYPE_VNODE) {
    750  1.173        ad         	lf.l_whence = SEEK_SET;
    751  1.173        ad 		lf.l_start = 0;
    752  1.173        ad 		lf.l_len = 0;
    753  1.173        ad 		lf.l_type = F_UNLCK;
    754  1.173        ad 		(void)VOP_ADVLOCK(fp->f_data, fp, F_UNLCK, &lf, F_FLOCK);
    755  1.173        ad 	}
    756  1.173        ad 	if (fp->f_ops != NULL) {
    757  1.173        ad 		error = (*fp->f_ops->fo_close)(fp);
    758  1.173        ad 	} else {
    759  1.173        ad 		error = 0;
    760   1.17       cgd 	}
    761  1.173        ad 	ffree(fp);
    762   1.59   thorpej 
    763  1.173        ad 	return error;
    764   1.16       cgd }
    765   1.16       cgd 
    766   1.16       cgd /*
    767   1.16       cgd  * Allocate a file descriptor for the process.
    768   1.16       cgd  */
    769   1.38  christos int
    770  1.173        ad fd_alloc(proc_t *p, int want, int *result)
    771   1.72     lukem {
    772  1.173        ad 	filedesc_t *fdp;
    773  1.126        pk 	int i, lim, last, error;
    774  1.115    provos 	u_int off, new;
    775  1.173        ad 	fdfile_t *ff;
    776  1.173        ad 
    777  1.173        ad 	KASSERT(p == curproc || p == &proc0);
    778   1.72     lukem 
    779   1.72     lukem 	fdp = p->p_fd;
    780  1.173        ad 	ff = pool_cache_get(fdfile_cache, PR_WAITOK);
    781  1.173        ad 	KASSERT(ff->ff_refcnt == 0);
    782  1.173        ad 	KASSERT(ff->ff_file == NULL);
    783   1.16       cgd 
    784   1.16       cgd 	/*
    785   1.16       cgd 	 * Search for a free descriptor starting at the higher
    786  1.173        ad 	 * of want or fd_freefile.
    787   1.16       cgd 	 */
    788  1.173        ad 	mutex_enter(&fdp->fd_lock);
    789  1.173        ad 	KASSERT(fdp->fd_ofiles[0] == (fdfile_t *)fdp->fd_dfdfile[0]);
    790   1.17       cgd 	lim = min((int)p->p_rlimit[RLIMIT_NOFILE].rlim_cur, maxfiles);
    791   1.90     enami 	last = min(fdp->fd_nfiles, lim);
    792  1.173        ad 	for (;;) {
    793  1.173        ad 		if ((i = want) < fdp->fd_freefile)
    794  1.173        ad 			i = fdp->fd_freefile;
    795  1.173        ad 		off = i >> NDENTRYSHIFT;
    796  1.173        ad 		new = fd_next_zero(fdp, fdp->fd_himap, off,
    797  1.173        ad 		    (last + NDENTRIES - 1) >> NDENTRYSHIFT);
    798  1.173        ad 		if (new == -1)
    799  1.173        ad 			break;
    800  1.173        ad 		i = fd_next_zero(fdp, &fdp->fd_lomap[new],
    801  1.115    provos 		    new > off ? 0 : i & NDENTRYMASK, NDENTRIES);
    802  1.115    provos 		if (i == -1) {
    803  1.131     perry 			/*
    804  1.173        ad 			 * Free file descriptor in this block was
    805  1.115    provos 			 * below want, try again with higher want.
    806  1.115    provos 			 */
    807  1.115    provos 			want = (new + 1) << NDENTRYSHIFT;
    808  1.173        ad 			continue;
    809  1.115    provos 		}
    810  1.115    provos 		i += (new << NDENTRYSHIFT);
    811  1.173        ad 		if (i >= last) {
    812  1.173        ad 			break;
    813  1.173        ad 		}
    814  1.173        ad 		if (fdp->fd_ofiles[i] == NULL) {
    815  1.173        ad 			KASSERT(i >= NDFDFILE);
    816  1.173        ad 			fdp->fd_ofiles[i] = ff;
    817  1.173        ad 		} else {
    818  1.173        ad 		   	pool_cache_put(fdfile_cache, ff);
    819  1.173        ad 		}
    820  1.173        ad 		KASSERT(fdp->fd_ofiles[i]->ff_file == NULL);
    821  1.173        ad 		fd_used(fdp, i);
    822  1.173        ad 		if (want <= fdp->fd_freefile) {
    823  1.173        ad 			fdp->fd_freefile = i;
    824   1.16       cgd 		}
    825  1.173        ad 		*result = i;
    826  1.173        ad 		mutex_exit(&fdp->fd_lock);
    827  1.173        ad 		KASSERT(i >= NDFDFILE ||
    828  1.173        ad 		    fdp->fd_ofiles[i] == (fdfile_t *)fdp->fd_dfdfile[i]);
    829  1.173        ad 		return 0;
    830   1.90     enami 	}
    831   1.16       cgd 
    832  1.173        ad 	/* No space in current array.  Let the caller expand and retry. */
    833  1.126        pk 	error = (fdp->fd_nfiles >= lim) ? EMFILE : ENOSPC;
    834  1.173        ad 	mutex_exit(&fdp->fd_lock);
    835  1.173        ad 	pool_cache_put(fdfile_cache, ff);
    836  1.173        ad 	return error;
    837   1.16       cgd }
    838   1.16       cgd 
    839  1.173        ad /*
    840  1.173        ad  * Expand a process' descriptor table.
    841  1.173        ad  */
    842   1.76   thorpej void
    843  1.173        ad fd_tryexpand(proc_t *p)
    844   1.76   thorpej {
    845  1.173        ad 	filedesc_t *fdp;
    846  1.173        ad 	int i, numfiles, oldnfiles;
    847  1.173        ad 	fdfile_t **newofile;
    848  1.173        ad 	uint32_t *newhimap, *newlomap;
    849  1.173        ad 
    850  1.173        ad 	KASSERT(p == curproc || p == &proc0);
    851   1.76   thorpej 
    852   1.76   thorpej 	fdp = p->p_fd;
    853  1.173        ad 	newhimap = NULL;
    854  1.173        ad 	newlomap = NULL;
    855  1.126        pk 	oldnfiles = fdp->fd_nfiles;
    856  1.126        pk 
    857  1.126        pk 	if (oldnfiles < NDEXTENT)
    858  1.133  christos 		numfiles = NDEXTENT;
    859   1.76   thorpej 	else
    860  1.133  christos 		numfiles = 2 * oldnfiles;
    861  1.126        pk 
    862  1.173        ad 	newofile = malloc(numfiles * sizeof(fdfile_t *), M_FILEDESC, M_WAITOK);
    863  1.133  christos 	if (NDHISLOTS(numfiles) > NDHISLOTS(oldnfiles)) {
    864  1.173        ad 		newhimap = malloc(NDHISLOTS(numfiles) *
    865  1.173        ad 		    sizeof(uint32_t), M_FILEDESC, M_WAITOK);
    866  1.173        ad 		newlomap = malloc(NDLOSLOTS(numfiles) *
    867  1.173        ad 		    sizeof(uint32_t), M_FILEDESC, M_WAITOK);
    868  1.126        pk 	}
    869  1.126        pk 
    870  1.173        ad 	mutex_enter(&fdp->fd_lock);
    871  1.173        ad 	KASSERT(fdp->fd_ofiles[0] == (fdfile_t *)fdp->fd_dfdfile[0]);
    872  1.126        pk 	if (fdp->fd_nfiles != oldnfiles) {
    873  1.173        ad 		/* fdp changed; caller must retry */
    874  1.173        ad 		mutex_exit(&fdp->fd_lock);
    875  1.126        pk 		free(newofile, M_FILEDESC);
    876  1.173        ad 		if (newhimap != NULL)
    877  1.173        ad 			free(newhimap, M_FILEDESC);
    878  1.173        ad 		if (newlomap != NULL)
    879  1.173        ad 			free(newlomap, M_FILEDESC);
    880  1.173        ad 		return;
    881  1.173        ad 	}
    882  1.173        ad 
    883  1.173        ad 	/* Copy the existing ofile array and zero the new portion. */
    884  1.173        ad 	i = sizeof(fdfile_t *) * fdp->fd_nfiles;
    885  1.173        ad 	memcpy(newofile, fdp->fd_ofiles, i);
    886  1.173        ad 	memset((uint8_t *)newofile + i, 0, numfiles * sizeof(fdfile_t *) - i);
    887  1.173        ad 
    888  1.173        ad 	/*
    889  1.173        ad 	 * Link old ofiles array into list to be discarded.  We defer
    890  1.173        ad 	 * freeing until process exit if the descriptor table is visble
    891  1.173        ad 	 * to other threads.
    892  1.173        ad 	 */
    893  1.173        ad 	if (oldnfiles > NDFILE) {
    894  1.173        ad 		if ((fdp->fd_refcnt | p->p_nlwps) > 1) {
    895  1.173        ad 			*(void **)fdp->fd_ofiles = fdp->fd_discard;
    896  1.173        ad 			fdp->fd_discard = fdp->fd_ofiles;
    897  1.173        ad 		} else {
    898  1.173        ad 			free(fdp->fd_ofiles, M_FILEDESC);
    899  1.173        ad 		}
    900  1.173        ad 	}
    901  1.115    provos 
    902  1.133  christos 	if (NDHISLOTS(numfiles) > NDHISLOTS(oldnfiles)) {
    903  1.173        ad 		i = NDHISLOTS(oldnfiles) * sizeof(uint32_t);
    904  1.173        ad 		memcpy(newhimap, fdp->fd_himap, i);
    905  1.173        ad 		memset((uint8_t *)newhimap + i, 0,
    906  1.133  christos 		    NDHISLOTS(numfiles) * sizeof(uint32_t) - i);
    907  1.115    provos 
    908  1.173        ad 		i = NDLOSLOTS(oldnfiles) * sizeof(uint32_t);
    909  1.173        ad 		memcpy(newlomap, fdp->fd_lomap, i);
    910  1.173        ad 		memset((uint8_t *)newlomap + i, 0,
    911  1.133  christos 		    NDLOSLOTS(numfiles) * sizeof(uint32_t) - i);
    912  1.115    provos 
    913  1.126        pk 		if (NDHISLOTS(oldnfiles) > NDHISLOTS(NDFILE)) {
    914  1.115    provos 			free(fdp->fd_himap, M_FILEDESC);
    915  1.115    provos 			free(fdp->fd_lomap, M_FILEDESC);
    916  1.115    provos 		}
    917  1.115    provos 		fdp->fd_himap = newhimap;
    918  1.115    provos 		fdp->fd_lomap = newlomap;
    919  1.115    provos 	}
    920  1.115    provos 
    921  1.173        ad 	/*
    922  1.173        ad 	 * All other modifications must become globally visible before
    923  1.173        ad 	 * the change to fd_nfiles.  See fd_getfile().
    924  1.173        ad 	 */
    925   1.76   thorpej 	fdp->fd_ofiles = newofile;
    926  1.173        ad 	membar_producer();
    927  1.133  christos 	fdp->fd_nfiles = numfiles;
    928  1.173        ad 	mutex_exit(&fdp->fd_lock);
    929  1.126        pk 
    930  1.173        ad 	KASSERT(fdp->fd_ofiles[0] == (fdfile_t *)fdp->fd_dfdfile[0]);
    931   1.76   thorpej }
    932   1.76   thorpej 
    933   1.16       cgd /*
    934  1.173        ad  * Create a new open file structure and allocate a file descriptor
    935  1.173        ad  * for the current process.
    936   1.16       cgd  */
    937   1.38  christos int
    938  1.173        ad fd_allocfile(file_t **resultfp, int *resultfd)
    939   1.16       cgd {
    940  1.173        ad 	file_t *fp;
    941  1.173        ad 	proc_t *p;
    942  1.173        ad 	int error;
    943   1.16       cgd 
    944  1.173        ad 	p = curproc;
    945  1.144        ad 
    946  1.173        ad 	while ((error = fd_alloc(p, 0, resultfd)) != 0) {
    947  1.173        ad 		if (error != ENOSPC) {
    948  1.173        ad 			return error;
    949   1.76   thorpej 		}
    950  1.173        ad 		fd_tryexpand(p);
    951   1.75   thorpej 	}
    952  1.102        pk 
    953  1.162        ad 	fp = pool_cache_get(file_cache, PR_WAITOK);
    954  1.173        ad 	KASSERT(fp->f_count == 0);
    955  1.173        ad 	fp->f_cred = kauth_cred_get();
    956  1.173        ad 	kauth_cred_hold(fp->f_cred);
    957  1.167        ad 
    958  1.173        ad 	if (__predict_false(atomic_inc_uint_nv(&nfiles) >= maxfiles)) {
    959  1.173        ad 		fd_abort(p, fp, *resultfd);
    960   1.69  jdolecek 		tablefull("file", "increase kern.maxfiles or MAXFILES");
    961  1.173        ad 		return ENFILE;
    962   1.16       cgd 	}
    963  1.167        ad 
    964  1.167        ad 	fp->f_advice = 0;
    965  1.167        ad 	fp->f_msgcount = 0;
    966  1.167        ad 	fp->f_offset = 0;
    967  1.173        ad 	fp->f_iflags = 0;
    968  1.173        ad 	*resultfp = fp;
    969  1.173        ad 
    970  1.173        ad 	return 0;
    971  1.173        ad }
    972  1.173        ad 
    973  1.173        ad /*
    974  1.173        ad  * Successful creation of a new descriptor: make visible to the process.
    975  1.173        ad  */
    976  1.173        ad void
    977  1.173        ad fd_affix(proc_t *p, file_t *fp, unsigned fd)
    978  1.173        ad {
    979  1.173        ad 	fdfile_t *ff;
    980  1.173        ad 	filedesc_t *fdp;
    981  1.173        ad 
    982  1.173        ad 	KASSERT(p == curproc || p == &proc0);
    983  1.173        ad 
    984  1.173        ad 	/* Add a reference to the file structure. */
    985  1.173        ad 	mutex_enter(&fp->f_lock);
    986  1.173        ad 	fp->f_count++;
    987  1.173        ad 	mutex_exit(&fp->f_lock);
    988  1.167        ad 
    989   1.16       cgd 	/*
    990  1.173        ad 	 * Insert the new file into the descriptor slot.
    991  1.173        ad 	 *
    992  1.173        ad 	 * The memory barriers provided by lock activity in this routine
    993  1.173        ad 	 * ensure that any updates to the file structure become globally
    994  1.173        ad 	 * visible before the file becomes visible to other LWPs in the
    995  1.173        ad 	 * current process.
    996   1.16       cgd 	 */
    997  1.173        ad 	fdp = p->p_fd;
    998  1.173        ad 	ff = fdp->fd_ofiles[fd];
    999  1.173        ad 
   1000  1.173        ad 	KASSERT(ff != NULL);
   1001  1.173        ad 	KASSERT(ff->ff_file == NULL);
   1002  1.173        ad 	KASSERT(ff->ff_allocated);
   1003  1.173        ad 	KASSERT(fd_isused(fdp, fd));
   1004  1.173        ad 	KASSERT(fd >= NDFDFILE ||
   1005  1.173        ad 	    fdp->fd_ofiles[fd] == (fdfile_t *)fdp->fd_dfdfile[fd]);
   1006  1.173        ad 
   1007  1.173        ad 	/* No need to lock in order to make file initially visible. */
   1008  1.173        ad 	ff->ff_file = fp;
   1009  1.173        ad }
   1010  1.173        ad 
   1011  1.173        ad /*
   1012  1.173        ad  * Abort creation of a new descriptor: free descriptor slot and file.
   1013  1.173        ad  */
   1014  1.173        ad void
   1015  1.173        ad fd_abort(proc_t *p, file_t *fp, unsigned fd)
   1016  1.173        ad {
   1017  1.173        ad 	filedesc_t *fdp;
   1018  1.173        ad 	fdfile_t *ff;
   1019  1.173        ad 
   1020  1.173        ad 	KASSERT(p == curproc || p == &proc0);
   1021  1.173        ad 
   1022  1.173        ad 	fdp = p->p_fd;
   1023  1.173        ad 	ff = fdp->fd_ofiles[fd];
   1024  1.173        ad 
   1025  1.173        ad 	KASSERT(fd >= NDFDFILE ||
   1026  1.173        ad 	    fdp->fd_ofiles[fd] == (fdfile_t *)fdp->fd_dfdfile[fd]);
   1027  1.173        ad 
   1028  1.173        ad 	mutex_enter(&fdp->fd_lock);
   1029  1.173        ad 	KASSERT(fd_isused(fdp, fd));
   1030  1.173        ad 	fd_unused(fdp, fd);
   1031  1.173        ad 	mutex_exit(&fdp->fd_lock);
   1032  1.167        ad 
   1033  1.173        ad 	if (fp != NULL) {
   1034  1.173        ad 		ffree(fp);
   1035   1.59   thorpej 	}
   1036   1.16       cgd }
   1037   1.16       cgd 
   1038   1.16       cgd /*
   1039   1.16       cgd  * Free a file descriptor.
   1040   1.16       cgd  */
   1041   1.38  christos void
   1042  1.173        ad ffree(file_t *fp)
   1043   1.16       cgd {
   1044   1.59   thorpej 
   1045  1.173        ad 	KASSERT(fp->f_count == 0);
   1046   1.59   thorpej 
   1047  1.167        ad 	atomic_dec_uint(&nfiles);
   1048  1.167        ad 	kauth_cred_free(fp->f_cred);
   1049  1.162        ad 	pool_cache_put(file_cache, fp);
   1050   1.48   thorpej }
   1051   1.48   thorpej 
   1052   1.48   thorpej /*
   1053   1.58   thorpej  * Create an initial cwdinfo structure, using the same current and root
   1054  1.173        ad  * directories as curproc.
   1055   1.58   thorpej  */
   1056   1.58   thorpej struct cwdinfo *
   1057  1.173        ad cwdinit(void)
   1058   1.58   thorpej {
   1059   1.58   thorpej 	struct cwdinfo *cwdi;
   1060  1.161        ad 	struct cwdinfo *copy;
   1061   1.58   thorpej 
   1062  1.162        ad 	cwdi = pool_cache_get(cwdi_cache, PR_WAITOK);
   1063  1.173        ad 	copy = curproc->p_cwdi;
   1064   1.58   thorpej 
   1065  1.161        ad 	rw_enter(&copy->cwdi_lock, RW_READER);
   1066  1.173        ad 	cwdi->cwdi_cdir = copy->cwdi_cdir;
   1067   1.63   thorpej 	if (cwdi->cwdi_cdir)
   1068   1.63   thorpej 		VREF(cwdi->cwdi_cdir);
   1069  1.173        ad 	cwdi->cwdi_rdir = copy->cwdi_rdir;
   1070   1.58   thorpej 	if (cwdi->cwdi_rdir)
   1071   1.58   thorpej 		VREF(cwdi->cwdi_rdir);
   1072  1.173        ad 	cwdi->cwdi_edir = copy->cwdi_edir;
   1073  1.157       dsl 	if (cwdi->cwdi_edir)
   1074  1.157       dsl 		VREF(cwdi->cwdi_edir);
   1075  1.173        ad 	cwdi->cwdi_cmask =  copy->cwdi_cmask;
   1076   1.58   thorpej 	cwdi->cwdi_refcnt = 1;
   1077  1.161        ad 	rw_exit(&copy->cwdi_lock);
   1078   1.58   thorpej 
   1079   1.58   thorpej 	return (cwdi);
   1080   1.58   thorpej }
   1081   1.58   thorpej 
   1082  1.162        ad static int
   1083  1.162        ad cwdi_ctor(void *arg, void *obj, int flags)
   1084  1.162        ad {
   1085  1.167        ad 	struct cwdinfo *cwdi = obj;
   1086  1.162        ad 
   1087  1.162        ad 	rw_init(&cwdi->cwdi_lock);
   1088  1.162        ad 
   1089  1.162        ad 	return 0;
   1090  1.162        ad }
   1091  1.162        ad 
   1092  1.162        ad static void
   1093  1.162        ad cwdi_dtor(void *arg, void *obj)
   1094  1.162        ad {
   1095  1.167        ad 	struct cwdinfo *cwdi = obj;
   1096  1.162        ad 
   1097  1.162        ad 	rw_destroy(&cwdi->cwdi_lock);
   1098  1.162        ad }
   1099  1.162        ad 
   1100  1.167        ad static int
   1101  1.167        ad file_ctor(void *arg, void *obj, int flags)
   1102  1.167        ad {
   1103  1.173        ad 	file_t *fp = obj;
   1104  1.167        ad 
   1105  1.167        ad 	memset(fp, 0, sizeof(*fp));
   1106  1.167        ad 	mutex_init(&fp->f_lock, MUTEX_DEFAULT, IPL_NONE);
   1107  1.167        ad 
   1108  1.167        ad 	mutex_enter(&filelist_lock);
   1109  1.167        ad 	LIST_INSERT_HEAD(&filehead, fp, f_list);
   1110  1.167        ad 	mutex_exit(&filelist_lock);
   1111  1.167        ad 
   1112  1.167        ad 	return 0;
   1113  1.167        ad }
   1114  1.167        ad 
   1115  1.167        ad static void
   1116  1.167        ad file_dtor(void *arg, void *obj)
   1117  1.167        ad {
   1118  1.173        ad 	file_t *fp = obj;
   1119  1.167        ad 
   1120  1.167        ad 	mutex_enter(&filelist_lock);
   1121  1.167        ad 	LIST_REMOVE(fp, f_list);
   1122  1.167        ad 	mutex_exit(&filelist_lock);
   1123  1.167        ad 
   1124  1.167        ad 	mutex_destroy(&fp->f_lock);
   1125  1.167        ad }
   1126  1.167        ad 
   1127  1.173        ad static int
   1128  1.173        ad fdfile_ctor(void *arg, void *obj, int flags)
   1129  1.173        ad {
   1130  1.173        ad 	fdfile_t *ff = obj;
   1131  1.173        ad 
   1132  1.173        ad 	memset(ff, 0, sizeof(*ff));
   1133  1.173        ad 	mutex_init(&ff->ff_lock, MUTEX_DEFAULT, IPL_NONE);
   1134  1.173        ad 	cv_init(&ff->ff_closing, "fdclose");
   1135  1.173        ad 
   1136  1.173        ad 	return 0;
   1137  1.173        ad }
   1138  1.173        ad 
   1139  1.173        ad static void
   1140  1.173        ad fdfile_dtor(void *arg, void *obj)
   1141  1.173        ad {
   1142  1.173        ad 	fdfile_t *ff = obj;
   1143  1.173        ad 
   1144  1.173        ad 	mutex_destroy(&ff->ff_lock);
   1145  1.173        ad 	cv_destroy(&ff->ff_closing);
   1146  1.173        ad }
   1147  1.173        ad 
   1148  1.173        ad file_t *
   1149  1.169        ad fgetdummy(void)
   1150  1.169        ad {
   1151  1.173        ad 	file_t *fp;
   1152  1.169        ad 
   1153  1.169        ad 	fp = kmem_alloc(sizeof(*fp), KM_SLEEP);
   1154  1.169        ad 	if (fp != NULL) {
   1155  1.169        ad 		memset(fp, 0, sizeof(*fp));
   1156  1.169        ad 		mutex_init(&fp->f_lock, MUTEX_DEFAULT, IPL_NONE);
   1157  1.169        ad 	}
   1158  1.169        ad 	return fp;
   1159  1.169        ad }
   1160  1.169        ad 
   1161  1.169        ad void
   1162  1.173        ad fputdummy(file_t *fp)
   1163   1.58   thorpej {
   1164   1.58   thorpej 
   1165  1.173        ad 	mutex_destroy(&fp->f_lock);
   1166  1.173        ad 	kmem_free(fp, sizeof(*fp));
   1167   1.58   thorpej }
   1168   1.58   thorpej 
   1169   1.58   thorpej /*
   1170  1.173        ad  * Make p2 share p1's cwdinfo.
   1171   1.58   thorpej  */
   1172   1.58   thorpej void
   1173  1.173        ad cwdshare(struct proc *p2)
   1174   1.58   thorpej {
   1175  1.173        ad 	struct cwdinfo *cwdi;
   1176   1.58   thorpej 
   1177  1.173        ad 	cwdi = curproc->p_cwdi;
   1178   1.58   thorpej 
   1179  1.173        ad 	atomic_inc_uint(&cwdi->cwdi_refcnt);
   1180  1.173        ad 	p2->p_cwdi = cwdi;
   1181   1.58   thorpej }
   1182   1.58   thorpej 
   1183   1.58   thorpej /*
   1184   1.58   thorpej  * Release a cwdinfo structure.
   1185   1.58   thorpej  */
   1186   1.58   thorpej void
   1187  1.126        pk cwdfree(struct cwdinfo *cwdi)
   1188   1.58   thorpej {
   1189   1.58   thorpej 
   1190  1.163        ad 	if (atomic_dec_uint_nv(&cwdi->cwdi_refcnt) > 0)
   1191   1.58   thorpej 		return;
   1192   1.58   thorpej 
   1193   1.58   thorpej 	vrele(cwdi->cwdi_cdir);
   1194   1.58   thorpej 	if (cwdi->cwdi_rdir)
   1195   1.58   thorpej 		vrele(cwdi->cwdi_rdir);
   1196  1.156       dsl 	if (cwdi->cwdi_edir)
   1197  1.156       dsl 		vrele(cwdi->cwdi_edir);
   1198  1.162        ad 	pool_cache_put(cwdi_cache, cwdi);
   1199   1.58   thorpej }
   1200   1.58   thorpej 
   1201   1.58   thorpej /*
   1202  1.173        ad  * Create an initial filedesc structure.
   1203   1.48   thorpej  */
   1204  1.173        ad filedesc_t *
   1205  1.173        ad fd_init(filedesc_t *fdp)
   1206   1.48   thorpej {
   1207  1.173        ad 	unsigned fd;
   1208  1.173        ad 
   1209  1.173        ad 	if (fdp == NULL) {
   1210  1.173        ad 		fdp = pool_cache_get(filedesc_cache, PR_WAITOK);
   1211  1.173        ad 	} else {
   1212  1.173        ad 		filedesc_ctor(NULL, fdp, PR_WAITOK);
   1213  1.173        ad 	}
   1214   1.48   thorpej 
   1215  1.173        ad 	fdp->fd_refcnt = 1;
   1216  1.173        ad 	fdp->fd_ofiles = fdp->fd_dfiles;
   1217  1.173        ad 	fdp->fd_nfiles = NDFILE;
   1218  1.173        ad 	fdp->fd_himap = fdp->fd_dhimap;
   1219  1.173        ad 	fdp->fd_lomap = fdp->fd_dlomap;
   1220  1.173        ad 	KASSERT(fdp->fd_lastfile == -1);
   1221  1.173        ad 	KASSERT(fdp->fd_lastkqfile == -1);
   1222  1.173        ad 	KASSERT(fdp->fd_knhash == NULL);
   1223   1.48   thorpej 
   1224  1.173        ad 	memset(&fdp->fd_startzero, 0, sizeof(*fdp) -
   1225  1.173        ad 	    offsetof(filedesc_t, fd_startzero));
   1226  1.173        ad 	for (fd = 0; fd < NDFDFILE; fd++) {
   1227  1.173        ad 		fdp->fd_ofiles[fd] = (fdfile_t *)fdp->fd_dfdfile[fd];
   1228  1.173        ad 	}
   1229   1.48   thorpej 
   1230  1.173        ad 	return fdp;
   1231   1.48   thorpej }
   1232   1.48   thorpej 
   1233   1.48   thorpej /*
   1234   1.48   thorpej  * Initialize a file descriptor table.
   1235   1.48   thorpej  */
   1236  1.173        ad static int
   1237  1.173        ad filedesc_ctor(void *arg, void *obj, int flag)
   1238   1.48   thorpej {
   1239  1.173        ad 	filedesc_t *fdp = obj;
   1240  1.173        ad 	int i;
   1241   1.48   thorpej 
   1242  1.173        ad 	memset(fdp, 0, sizeof(*fdp));
   1243  1.173        ad 	mutex_init(&fdp->fd_lock, MUTEX_DEFAULT, IPL_NONE);
   1244  1.173        ad 	fdp->fd_lastfile = -1;
   1245  1.173        ad 	fdp->fd_lastkqfile = -1;
   1246  1.173        ad 
   1247  1.173        ad 	KASSERT(sizeof(fdp->fd_dfdfile[0]) >= sizeof(fdfile_t));
   1248  1.173        ad 	for (i = 0; i < NDFDFILE; i++) {
   1249  1.173        ad 		fdfile_ctor(NULL, fdp->fd_dfdfile[i], PR_WAITOK);
   1250  1.173        ad 	}
   1251   1.48   thorpej 
   1252  1.173        ad 	return 0;
   1253   1.48   thorpej }
   1254   1.48   thorpej 
   1255  1.173        ad static void
   1256  1.173        ad filedesc_dtor(void *arg, void *obj)
   1257   1.48   thorpej {
   1258  1.173        ad 	filedesc_t *fdp = obj;
   1259  1.173        ad 	int i;
   1260   1.48   thorpej 
   1261  1.173        ad 	for (i = 0; i < NDFDFILE; i++) {
   1262  1.173        ad 		fdfile_dtor(NULL, fdp->fd_dfdfile[i]);
   1263  1.173        ad 	}
   1264   1.48   thorpej 
   1265  1.173        ad 	mutex_destroy(&fdp->fd_lock);
   1266   1.48   thorpej }
   1267   1.48   thorpej 
   1268   1.48   thorpej /*
   1269  1.173        ad  * Make p2 share p1's filedesc structure.
   1270   1.48   thorpej  */
   1271   1.48   thorpej void
   1272  1.173        ad fd_share(struct proc *p2)
   1273   1.48   thorpej {
   1274  1.173        ad 	filedesc_t *fdp;
   1275   1.48   thorpej 
   1276  1.173        ad 	fdp = curlwp->l_fd;
   1277  1.173        ad 	p2->p_fd = fdp;
   1278  1.173        ad 	atomic_inc_uint(&fdp->fd_refcnt);
   1279   1.16       cgd }
   1280   1.16       cgd 
   1281   1.16       cgd /*
   1282   1.16       cgd  * Copy a filedesc structure.
   1283   1.16       cgd  */
   1284  1.173        ad filedesc_t *
   1285  1.173        ad fd_copy(void)
   1286   1.16       cgd {
   1287  1.173        ad 	filedesc_t *newfdp, *fdp;
   1288  1.173        ad 	fdfile_t *ff, *fflist, **ffp, **nffp, *ff2;
   1289  1.173        ad 	int i, nused, numfiles, lastfile, j, newlast;
   1290  1.173        ad 	file_t *fp;
   1291   1.16       cgd 
   1292  1.173        ad 	fdp = curproc->p_fd;
   1293  1.173        ad 	newfdp = pool_cache_get(filedesc_cache, PR_WAITOK);
   1294   1.16       cgd 	newfdp->fd_refcnt = 1;
   1295  1.126        pk 
   1296  1.173        ad 	KASSERT(newfdp->fd_knhash == NULL);
   1297  1.173        ad 	KASSERT(newfdp->fd_knhashmask == 0);
   1298  1.173        ad 	KASSERT(newfdp->fd_discard == NULL);
   1299  1.173        ad 
   1300  1.173        ad 	for (;;) {
   1301  1.173        ad 		numfiles = fdp->fd_nfiles;
   1302  1.173        ad 		lastfile = fdp->fd_lastfile;
   1303  1.173        ad 
   1304  1.173        ad 		/*
   1305  1.173        ad 		 * If the number of open files fits in the internal arrays
   1306  1.173        ad 		 * of the open file structure, use them, otherwise allocate
   1307  1.173        ad 		 * additional memory for the number of descriptors currently
   1308  1.173        ad 		 * in use.
   1309  1.173        ad 		 */
   1310  1.173        ad 		if (lastfile < NDFILE) {
   1311  1.173        ad 			i = NDFILE;
   1312  1.173        ad 			newfdp->fd_ofiles = newfdp->fd_dfiles;
   1313  1.173        ad 		} else {
   1314  1.173        ad 			/*
   1315  1.173        ad 			 * Compute the smallest multiple of NDEXTENT needed
   1316  1.173        ad 			 * for the file descriptors currently in use,
   1317  1.173        ad 			 * allowing the table to shrink.
   1318  1.173        ad 			 */
   1319  1.173        ad 			i = numfiles;
   1320  1.173        ad 			while (i >= 2 * NDEXTENT && i > lastfile * 2) {
   1321  1.173        ad 				i /= 2;
   1322  1.173        ad 			}
   1323  1.173        ad 			newfdp->fd_ofiles = malloc(i * sizeof(fdfile_t *),
   1324  1.173        ad 			    M_FILEDESC, M_WAITOK);
   1325  1.173        ad 			KASSERT(i >= NDFILE);
   1326  1.173        ad 		}
   1327  1.173        ad 		if (NDHISLOTS(i) <= NDHISLOTS(NDFILE)) {
   1328  1.173        ad 			newfdp->fd_himap = newfdp->fd_dhimap;
   1329  1.173        ad 			newfdp->fd_lomap = newfdp->fd_dlomap;
   1330  1.173        ad 		} else {
   1331  1.173        ad 			newfdp->fd_himap = malloc(NDHISLOTS(i) *
   1332  1.173        ad 			    sizeof(uint32_t), M_FILEDESC, M_WAITOK);
   1333  1.173        ad 			newfdp->fd_lomap = malloc(NDLOSLOTS(i) *
   1334  1.173        ad 			    sizeof(uint32_t), M_FILEDESC, M_WAITOK);
   1335  1.173        ad 		}
   1336   1.16       cgd 
   1337   1.16       cgd 		/*
   1338  1.173        ad 		 * Allocate and string together fdfile structures.
   1339  1.173        ad 		 * We abuse fdfile_t::ff_file here, but it will be
   1340  1.173        ad 		 * cleared before this routine returns.
   1341   1.16       cgd 		 */
   1342  1.173        ad 		nused = fdp->fd_nused;
   1343  1.173        ad 		fflist = NULL;
   1344  1.173        ad 		for (j = nused; j != 0; j--) {
   1345  1.173        ad 			ff = pool_cache_get(fdfile_cache, PR_WAITOK);
   1346  1.173        ad 			ff->ff_file = (void *)fflist;
   1347  1.173        ad 			fflist = ff;
   1348  1.173        ad 		}
   1349  1.173        ad 
   1350  1.173        ad 		mutex_enter(&fdp->fd_lock);
   1351  1.173        ad 		if (numfiles == fdp->fd_nfiles && nused == fdp->fd_nused &&
   1352  1.173        ad 		    lastfile == fdp->fd_lastfile) {
   1353  1.173        ad 			break;
   1354  1.173        ad 		}
   1355  1.173        ad 		mutex_exit(&fdp->fd_lock);
   1356  1.173        ad 		if (i >= NDFILE) {
   1357  1.126        pk 			free(newfdp->fd_ofiles, M_FILEDESC);
   1358  1.173        ad 		}
   1359  1.126        pk 		if (NDHISLOTS(i) > NDHISLOTS(NDFILE)) {
   1360  1.126        pk 			free(newfdp->fd_himap, M_FILEDESC);
   1361  1.126        pk 			free(newfdp->fd_lomap, M_FILEDESC);
   1362  1.126        pk 		}
   1363  1.173        ad 		while (fflist != NULL) {
   1364  1.173        ad 			ff = fflist;
   1365  1.173        ad 			fflist = (void *)ff->ff_file;
   1366  1.173        ad 			ff->ff_file = NULL;
   1367  1.173        ad 			pool_cache_put(fdfile_cache, ff);
   1368  1.173        ad 		}
   1369  1.115    provos 	}
   1370  1.115    provos 
   1371   1.16       cgd 	newfdp->fd_nfiles = i;
   1372  1.126        pk 	newfdp->fd_freefile = fdp->fd_freefile;
   1373  1.173        ad 	newfdp->fd_exclose = fdp->fd_exclose;
   1374  1.126        pk 
   1375  1.173        ad 	/*
   1376  1.173        ad 	 * Clear the entries that will not be copied over.
   1377  1.173        ad 	 * Avoid calling memset with 0 size.
   1378  1.173        ad 	 */
   1379  1.173        ad 	if (lastfile < (i-1)) {
   1380  1.128      cube 		memset(newfdp->fd_ofiles + lastfile + 1, 0,
   1381  1.173        ad 		    (i - lastfile - 1) * sizeof(file_t **));
   1382  1.173        ad 	}
   1383  1.173        ad 	if (i < NDENTRIES * NDENTRIES) {
   1384  1.120      yamt 		i = NDENTRIES * NDENTRIES; /* size of inlined bitmaps */
   1385  1.173        ad 	}
   1386  1.115    provos 	memcpy(newfdp->fd_himap, fdp->fd_himap, NDHISLOTS(i)*sizeof(uint32_t));
   1387  1.115    provos 	memcpy(newfdp->fd_lomap, fdp->fd_lomap, NDLOSLOTS(i)*sizeof(uint32_t));
   1388  1.126        pk 
   1389  1.173        ad 	ffp = fdp->fd_ofiles;
   1390  1.173        ad 	nffp = newfdp->fd_ofiles;
   1391  1.173        ad 	j = imax(lastfile, (NDFDFILE - 1));
   1392  1.173        ad 	newlast = -1;
   1393  1.173        ad 	KASSERT(j < fdp->fd_nfiles);
   1394  1.173        ad 	for (i = 0; i <= j; i++, ffp++, *nffp++ = ff2) {
   1395  1.173        ad 		ff = *ffp;
   1396  1.173        ad 		/* Install built-in fdfiles even if unused here. */
   1397  1.173        ad 		if (i < NDFDFILE) {
   1398  1.173        ad 			ff2 = (fdfile_t *)newfdp->fd_dfdfile[i];
   1399  1.173        ad 		} else {
   1400  1.173        ad 			ff2 = NULL;
   1401  1.173        ad 		}
   1402  1.173        ad 		/* Determine if descriptor is active in parent. */
   1403  1.173        ad 		if (ff == NULL || !fd_isused(fdp, i)) {
   1404  1.173        ad 			KASSERT(ff != NULL || i >= NDFDFILE);
   1405  1.173        ad 			continue;
   1406  1.173        ad 		}
   1407  1.173        ad 		mutex_enter(&ff->ff_lock);
   1408  1.173        ad 		fp = ff->ff_file;
   1409  1.173        ad 		if (fp == NULL) {
   1410  1.173        ad 			/* Descriptor is half-open: free slot. */
   1411  1.173        ad 			fd_zap(newfdp, i);
   1412  1.173        ad 			mutex_exit(&ff->ff_lock);
   1413  1.173        ad 			continue;
   1414  1.173        ad 		}
   1415  1.173        ad 		if (fp->f_type == DTYPE_KQUEUE) {
   1416  1.173        ad 			/* kqueue descriptors cannot be copied. */
   1417  1.173        ad 			fd_zap(newfdp, i);
   1418  1.173        ad 			mutex_exit(&ff->ff_lock);
   1419  1.126        pk 			continue;
   1420  1.173        ad 		}
   1421  1.173        ad 		/* It's active: add a reference to the file. */
   1422  1.173        ad 		mutex_enter(&fp->f_lock);
   1423  1.173        ad 		fp->f_count++;
   1424  1.173        ad 		mutex_exit(&fp->f_lock);
   1425  1.173        ad 		/* Consume one fdfile_t to represent it. */
   1426  1.173        ad 		if (i >= NDFDFILE) {
   1427  1.173        ad 			ff2 = fflist;
   1428  1.173        ad 			fflist = (void *)ff2->ff_file;
   1429  1.173        ad 		}
   1430  1.173        ad 		ff2->ff_file = fp;
   1431  1.173        ad 		ff2->ff_exclose = ff->ff_exclose;
   1432  1.173        ad 		ff2->ff_allocated = 1;
   1433  1.173        ad 		mutex_exit(&ff->ff_lock);
   1434  1.173        ad 		if (i > newlast) {
   1435  1.173        ad 			newlast = i;
   1436  1.173        ad 		}
   1437  1.173        ad 	}
   1438  1.173        ad 	mutex_exit(&fdp->fd_lock);
   1439  1.126        pk 
   1440  1.173        ad 	/* Discard unused fdfile_t structures. */
   1441  1.173        ad 	while (__predict_false(fflist != NULL)) {
   1442  1.173        ad 		ff = fflist;
   1443  1.173        ad 		fflist = (void *)ff->ff_file;
   1444  1.173        ad 		ff->ff_file = NULL;
   1445  1.173        ad 		pool_cache_put(fdfile_cache, ff);
   1446  1.173        ad 		nused--;
   1447  1.126        pk 	}
   1448  1.173        ad 	KASSERT(nused >= 0);
   1449  1.173        ad 	KASSERT(newfdp->fd_ofiles[0] == (fdfile_t *)newfdp->fd_dfdfile[0]);
   1450  1.126        pk 
   1451  1.173        ad 	newfdp->fd_nused = nused;
   1452  1.173        ad 	newfdp->fd_lastfile = newlast;
   1453  1.126        pk 
   1454   1.16       cgd 	return (newfdp);
   1455   1.16       cgd }
   1456   1.16       cgd 
   1457   1.16       cgd /*
   1458   1.16       cgd  * Release a filedesc structure.
   1459   1.16       cgd  */
   1460   1.16       cgd void
   1461  1.173        ad fd_free(void)
   1462   1.16       cgd {
   1463  1.173        ad 	filedesc_t *fdp;
   1464  1.173        ad 	fdfile_t *ff;
   1465  1.173        ad 	file_t *fp;
   1466  1.173        ad 	int fd, lastfd;
   1467  1.173        ad 	void *discard;
   1468  1.173        ad 
   1469  1.173        ad 	fdp = curlwp->l_fd;
   1470  1.173        ad 
   1471  1.173        ad 	KASSERT(fdp->fd_ofiles[0] == (fdfile_t *)fdp->fd_dfdfile[0]);
   1472   1.16       cgd 
   1473  1.164        ad 	if (atomic_dec_uint_nv(&fdp->fd_refcnt) > 0)
   1474   1.16       cgd 		return;
   1475  1.126        pk 
   1476   1.16       cgd 	/*
   1477  1.173        ad 	 * Close any files that the process holds open.
   1478   1.16       cgd 	 */
   1479  1.175       wiz 	for (fd = 0, lastfd = fdp->fd_nfiles - 1; fd <= lastfd; fd++) {
   1480  1.173        ad 		ff = fdp->fd_ofiles[fd];
   1481  1.173        ad 		KASSERT(fd >= NDFDFILE ||
   1482  1.173        ad 		    ff == (fdfile_t *)fdp->fd_dfdfile[fd]);
   1483  1.173        ad 		if ((ff = fdp->fd_ofiles[fd]) == NULL)
   1484  1.173        ad 			continue;
   1485  1.173        ad 		if ((fp = ff->ff_file) != NULL) {
   1486  1.173        ad 			/*
   1487  1.173        ad 			 * Must use fd_close() here as kqueue holds
   1488  1.173        ad 			 * long term references to descriptors.
   1489  1.173        ad 			 */
   1490  1.173        ad 			ff->ff_refcnt++;
   1491  1.173        ad 			fd_close(fd);
   1492  1.173        ad 		}
   1493  1.173        ad 		KASSERT(ff->ff_refcnt == 0);
   1494  1.173        ad 		KASSERT(ff->ff_file == NULL);
   1495  1.173        ad 		KASSERT(!ff->ff_exclose);
   1496  1.173        ad 		KASSERT(!ff->ff_allocated);
   1497  1.173        ad 		if (fd >= NDFDFILE) {
   1498  1.173        ad 			pool_cache_put(fdfile_cache, ff);
   1499  1.173        ad 		}
   1500   1.16       cgd 	}
   1501   1.59   thorpej 
   1502   1.59   thorpej 	/*
   1503  1.173        ad 	 * Clean out the descriptor table for the next user and return
   1504  1.173        ad 	 * to the cache.
   1505   1.59   thorpej 	 */
   1506  1.173        ad 	while ((discard = fdp->fd_discard) != NULL) {
   1507  1.173        ad 		KASSERT(discard != fdp->fd_ofiles);
   1508  1.173        ad 		fdp->fd_discard = *(void **)discard;
   1509  1.173        ad 		free(discard, M_FILEDESC);
   1510   1.59   thorpej 	}
   1511  1.173        ad 	if (NDHISLOTS(fdp->fd_nfiles) > NDHISLOTS(NDFILE)) {
   1512  1.173        ad 		KASSERT(fdp->fd_himap != fdp->fd_dhimap);
   1513  1.173        ad 		KASSERT(fdp->fd_lomap != fdp->fd_dlomap);
   1514  1.173        ad 		free(fdp->fd_himap, M_FILEDESC);
   1515  1.173        ad 		free(fdp->fd_lomap, M_FILEDESC);
   1516   1.16       cgd 	}
   1517  1.173        ad 	if (fdp->fd_nfiles > NDFILE) {
   1518  1.173        ad 		KASSERT(fdp->fd_ofiles != fdp->fd_dfiles);
   1519  1.173        ad 		free(fdp->fd_ofiles, M_FILEDESC);
   1520   1.59   thorpej 	}
   1521  1.173        ad 	if (fdp->fd_knhash != NULL) {
   1522  1.173        ad 		hashdone(fdp->fd_knhash, M_KEVENT);
   1523  1.173        ad 		fdp->fd_knhash = NULL;
   1524  1.173        ad 		fdp->fd_knhashmask = 0;
   1525  1.173        ad 	} else {
   1526  1.173        ad 		KASSERT(fdp->fd_knhashmask == 0);
   1527  1.137      yamt 	}
   1528  1.173        ad 	fdp->fd_lastkqfile = -1;
   1529  1.173        ad 	pool_cache_put(filedesc_cache, fdp);
   1530  1.170    martin }
   1531  1.170    martin 
   1532   1.16       cgd /*
   1533   1.16       cgd  * File Descriptor pseudo-device driver (/dev/fd/).
   1534   1.16       cgd  *
   1535   1.16       cgd  * Opening minor device N dup()s the file (if any) connected to file
   1536   1.16       cgd  * descriptor N belonging to the calling process.  Note that this driver
   1537   1.16       cgd  * consists of only the ``open()'' routine, because all subsequent
   1538   1.16       cgd  * references to this file will be direct to the other driver.
   1539   1.16       cgd  */
   1540  1.134   thorpej static int
   1541  1.173        ad filedescopen(dev_t dev, int mode, int type, lwp_t *l)
   1542   1.16       cgd {
   1543   1.16       cgd 
   1544   1.28   mycroft 	/*
   1545  1.112  jdolecek 	 * XXX Kludge: set dupfd to contain the value of the
   1546   1.89     enami 	 * the file descriptor being sought for duplication. The error
   1547   1.28   mycroft 	 * return ensures that the vnode for this device will be released
   1548   1.28   mycroft 	 * by vn_open. Open will detect this special error and take the
   1549   1.28   mycroft 	 * actions in dupfdopen below. Other callers of vn_open or VOP_OPEN
   1550   1.28   mycroft 	 * will simply report the error.
   1551   1.28   mycroft 	 */
   1552  1.138  christos 	l->l_dupfd = minor(dev);	/* XXX */
   1553  1.127  christos 	return EDUPFD;
   1554   1.27   mycroft }
   1555   1.27   mycroft 
   1556   1.28   mycroft /*
   1557   1.28   mycroft  * Duplicate the specified descriptor to a free descriptor.
   1558   1.28   mycroft  */
   1559   1.27   mycroft int
   1560  1.173        ad fd_dupopen(int old, int *new, int mode, int error)
   1561   1.72     lukem {
   1562  1.173        ad 	filedesc_t *fdp;
   1563  1.173        ad 	fdfile_t *ff;
   1564  1.173        ad 	file_t *fp;
   1565   1.27   mycroft 
   1566  1.173        ad 	if ((fp = fd_getfile(old)) == NULL) {
   1567  1.173        ad 		return EBADF;
   1568  1.173        ad 	}
   1569  1.173        ad 	fdp = curlwp->l_fd;
   1570  1.173        ad 	ff = fdp->fd_ofiles[old];
   1571   1.59   thorpej 
   1572   1.27   mycroft 	/*
   1573   1.28   mycroft 	 * There are two cases of interest here.
   1574   1.28   mycroft 	 *
   1575  1.127  christos 	 * For EDUPFD simply dup (dfd) to file descriptor
   1576   1.28   mycroft 	 * (indx) and return.
   1577   1.28   mycroft 	 *
   1578  1.127  christos 	 * For EMOVEFD steal away the file structure from (dfd) and
   1579   1.28   mycroft 	 * store it in (indx).  (dfd) is effectively closed by
   1580   1.28   mycroft 	 * this operation.
   1581   1.28   mycroft 	 *
   1582   1.28   mycroft 	 * Any other error code is just returned.
   1583   1.27   mycroft 	 */
   1584   1.28   mycroft 	switch (error) {
   1585  1.127  christos 	case EDUPFD:
   1586   1.28   mycroft 		/*
   1587   1.28   mycroft 		 * Check that the mode the file is being opened for is a
   1588   1.28   mycroft 		 * subset of the mode of the existing descriptor.
   1589   1.28   mycroft 		 */
   1590  1.173        ad 		if (((mode & (FREAD|FWRITE)) | fp->f_flag) != fp->f_flag) {
   1591  1.173        ad 			error = EACCES;
   1592  1.173        ad 			break;
   1593  1.173        ad 		}
   1594  1.173        ad 
   1595  1.173        ad 		/* Copy it. */
   1596  1.173        ad 		error = fd_dup(fp, 0, new, fdp->fd_ofiles[old]->ff_exclose);
   1597  1.173        ad 		break;
   1598   1.27   mycroft 
   1599  1.127  christos 	case EMOVEFD:
   1600  1.173        ad 		/* Copy it. */
   1601  1.173        ad 		error = fd_dup(fp, 0, new, fdp->fd_ofiles[old]->ff_exclose);
   1602  1.173        ad 		if (error != 0) {
   1603  1.173        ad 			break;
   1604  1.173        ad 		}
   1605   1.16       cgd 
   1606  1.173        ad 		/* Steal away the file pointer from 'old'. */
   1607  1.173        ad 		(void)fd_close(old);
   1608  1.173        ad 		return 0;
   1609   1.28   mycroft 	}
   1610  1.173        ad 
   1611  1.173        ad 	fd_putfile(old);
   1612  1.173        ad 	return error;
   1613   1.61  wrstuden }
   1614   1.61  wrstuden 
   1615   1.61  wrstuden /*
   1616  1.173        ad  * Close open files on exec.
   1617   1.27   mycroft  */
   1618   1.27   mycroft void
   1619  1.173        ad fd_closeexec(void)
   1620   1.27   mycroft {
   1621  1.173        ad 	struct cwdinfo *cwdi;
   1622  1.173        ad 	proc_t *p;
   1623  1.173        ad 	filedesc_t *fdp;
   1624  1.173        ad 	fdfile_t *ff;
   1625  1.173        ad 	lwp_t *l;
   1626  1.173        ad 	int fd;
   1627   1.80   thorpej 
   1628  1.173        ad 	l = curlwp;
   1629  1.173        ad 	p = l->l_proc;
   1630  1.173        ad 	fdp = p->p_fd;
   1631  1.173        ad 	cwdi = p->p_cwdi;
   1632   1.16       cgd 
   1633  1.173        ad 	if (cwdi->cwdi_refcnt > 1) {
   1634  1.173        ad 		cwdi = cwdinit();
   1635  1.173        ad 		cwdfree(p->p_cwdi);
   1636  1.173        ad 		p->p_cwdi = cwdi;
   1637  1.173        ad 	}
   1638  1.173        ad 	if (p->p_cwdi->cwdi_edir) {
   1639  1.156       dsl 		vrele(p->p_cwdi->cwdi_edir);
   1640  1.173        ad 	}
   1641  1.173        ad 
   1642  1.173        ad 	if (fdp->fd_refcnt > 1) {
   1643  1.173        ad 		fdp = fd_copy();
   1644  1.173        ad 		fd_free();
   1645  1.173        ad 		p->p_fd = fdp;
   1646  1.173        ad 		l->l_fd = fdp;
   1647  1.173        ad 	}
   1648  1.173        ad 	if (!fdp->fd_exclose) {
   1649  1.173        ad 		return;
   1650  1.173        ad 	}
   1651  1.173        ad 	fdp->fd_exclose = 0;
   1652  1.156       dsl 
   1653  1.173        ad 	for (fd = 0; fd <= fdp->fd_lastfile; fd++) {
   1654  1.173        ad 		if ((ff = fdp->fd_ofiles[fd]) == NULL) {
   1655  1.173        ad 			KASSERT(fd >= NDFDFILE);
   1656  1.173        ad 			continue;
   1657  1.173        ad 		}
   1658  1.173        ad 		KASSERT(fd >= NDFDFILE ||
   1659  1.173        ad 		    ff == (fdfile_t *)fdp->fd_dfdfile[fd]);
   1660  1.173        ad 		if (ff->ff_file == NULL)
   1661  1.173        ad 			continue;
   1662  1.173        ad 		if (ff->ff_exclose) {
   1663  1.173        ad 			/*
   1664  1.173        ad 			 * We need a reference to close the file.
   1665  1.173        ad 			 * No other threads can see the fdfile_t at
   1666  1.173        ad 			 * this point, so don't bother locking.
   1667  1.173        ad 			 */
   1668  1.173        ad 			KASSERT((ff->ff_refcnt & FR_CLOSING) == 0);
   1669  1.173        ad 			ff->ff_refcnt++;
   1670  1.173        ad 			fd_close(fd);
   1671  1.173        ad 		}
   1672  1.173        ad 	}
   1673   1.86  christos }
   1674   1.86  christos 
   1675   1.86  christos /*
   1676   1.86  christos  * It is unsafe for set[ug]id processes to be started with file
   1677   1.86  christos  * descriptors 0..2 closed, as these descriptors are given implicit
   1678   1.86  christos  * significance in the Standard C library.  fdcheckstd() will create a
   1679   1.86  christos  * descriptor referencing /dev/null for each of stdin, stdout, and
   1680   1.86  christos  * stderr that is not already open.
   1681   1.86  christos  */
   1682   1.92    atatat #define CHECK_UPTO 3
   1683   1.86  christos int
   1684  1.173        ad fd_checkstd(void)
   1685  1.138  christos {
   1686  1.110      fvdl 	struct proc *p;
   1687   1.86  christos 	struct nameidata nd;
   1688  1.173        ad 	filedesc_t *fdp;
   1689  1.173        ad 	file_t *fp;
   1690   1.91     enami 	struct proc *pp;
   1691  1.173        ad 	int fd, i, error, flags = FREAD|FWRITE;
   1692   1.92    atatat 	char closed[CHECK_UPTO * 3 + 1], which[3 + 1];
   1693   1.86  christos 
   1694  1.173        ad 	p = curproc;
   1695   1.92    atatat 	closed[0] = '\0';
   1696   1.86  christos 	if ((fdp = p->p_fd) == NULL)
   1697   1.89     enami 		return (0);
   1698   1.92    atatat 	for (i = 0; i < CHECK_UPTO; i++) {
   1699  1.173        ad 		KASSERT(i >= NDFDFILE ||
   1700  1.173        ad 		    fdp->fd_ofiles[i] == (fdfile_t *)fdp->fd_dfdfile[i]);
   1701  1.173        ad 		if (fdp->fd_ofiles[i]->ff_file != NULL)
   1702   1.86  christos 			continue;
   1703   1.92    atatat 		snprintf(which, sizeof(which), ",%d", i);
   1704  1.108    itojun 		strlcat(closed, which, sizeof(closed));
   1705  1.173        ad 		if ((error = fd_allocfile(&fp, &fd)) != 0)
   1706  1.173        ad 			return (error);
   1707  1.173        ad 		KASSERT(fd < CHECK_UPTO);
   1708  1.173        ad 		NDINIT(&nd, LOOKUP, FOLLOW, UIO_SYSSPACE, "/dev/null");
   1709  1.173        ad 		if ((error = vn_open(&nd, flags, 0)) != 0) {
   1710  1.173        ad 			fd_abort(p, fp, fd);
   1711  1.173        ad 			return (error);
   1712   1.86  christos 		}
   1713  1.173        ad 		fp->f_data = nd.ni_vp;
   1714  1.173        ad 		fp->f_flag = flags;
   1715  1.173        ad 		fp->f_ops = &vnops;
   1716  1.173        ad 		fp->f_type = DTYPE_VNODE;
   1717  1.173        ad 		VOP_UNLOCK(nd.ni_vp, 0);
   1718  1.173        ad 		fd_affix(p, fp, fd);
   1719   1.86  christos 	}
   1720   1.92    atatat 	if (closed[0] != '\0') {
   1721  1.176        ad 		mutex_enter(proc_lock);
   1722   1.92    atatat 		pp = p->p_pptr;
   1723  1.177        ad 		mutex_enter(pp->p_lock);
   1724   1.92    atatat 		log(LOG_WARNING, "set{u,g}id pid %d (%s) "
   1725   1.92    atatat 		    "was invoked by uid %d ppid %d (%s) "
   1726   1.92    atatat 		    "with fd %s closed\n",
   1727  1.143      elad 		    p->p_pid, p->p_comm, kauth_cred_geteuid(pp->p_cred),
   1728   1.92    atatat 		    pp->p_pid, pp->p_comm, &closed[1]);
   1729  1.177        ad 		mutex_exit(pp->p_lock);
   1730  1.176        ad 		mutex_exit(proc_lock);
   1731   1.92    atatat 	}
   1732   1.89     enami 	return (0);
   1733   1.16       cgd }
   1734   1.92    atatat #undef CHECK_UPTO
   1735  1.113  jdolecek 
   1736  1.113  jdolecek /*
   1737  1.113  jdolecek  * Sets descriptor owner. If the owner is a process, 'pgid'
   1738  1.113  jdolecek  * is set to positive value, process ID. If the owner is process group,
   1739  1.113  jdolecek  * 'pgid' is set to -pg_id.
   1740  1.113  jdolecek  */
   1741  1.113  jdolecek int
   1742  1.173        ad fsetown(pid_t *pgid, int cmd, const void *data)
   1743  1.113  jdolecek {
   1744  1.133  christos 	int id = *(const int *)data;
   1745  1.113  jdolecek 	int error;
   1746  1.113  jdolecek 
   1747  1.113  jdolecek 	switch (cmd) {
   1748  1.113  jdolecek 	case TIOCSPGRP:
   1749  1.113  jdolecek 		if (id < 0)
   1750  1.113  jdolecek 			return (EINVAL);
   1751  1.113  jdolecek 		id = -id;
   1752  1.113  jdolecek 		break;
   1753  1.113  jdolecek 	default:
   1754  1.113  jdolecek 		break;
   1755  1.113  jdolecek 	}
   1756  1.113  jdolecek 
   1757  1.113  jdolecek 	if (id > 0 && !pfind(id))
   1758  1.113  jdolecek 		return (ESRCH);
   1759  1.173        ad 	else if (id < 0 && (error = pgid_in_session(curproc, -id)))
   1760  1.113  jdolecek 		return (error);
   1761  1.113  jdolecek 
   1762  1.113  jdolecek 	*pgid = id;
   1763  1.113  jdolecek 	return (0);
   1764  1.113  jdolecek }
   1765  1.113  jdolecek 
   1766  1.113  jdolecek /*
   1767  1.113  jdolecek  * Return descriptor owner information. If the value is positive,
   1768  1.113  jdolecek  * it's process ID. If it's negative, it's process group ID and
   1769  1.113  jdolecek  * needs the sign removed before use.
   1770  1.113  jdolecek  */
   1771  1.113  jdolecek int
   1772  1.173        ad fgetown(pid_t pgid, int cmd, void *data)
   1773  1.113  jdolecek {
   1774  1.173        ad 
   1775  1.113  jdolecek 	switch (cmd) {
   1776  1.113  jdolecek 	case TIOCGPGRP:
   1777  1.113  jdolecek 		*(int *)data = -pgid;
   1778  1.113  jdolecek 		break;
   1779  1.113  jdolecek 	default:
   1780  1.113  jdolecek 		*(int *)data = pgid;
   1781  1.113  jdolecek 		break;
   1782  1.113  jdolecek 	}
   1783  1.113  jdolecek 	return (0);
   1784  1.113  jdolecek }
   1785  1.113  jdolecek 
   1786  1.113  jdolecek /*
   1787  1.113  jdolecek  * Send signal to descriptor owner, either process or process group.
   1788  1.113  jdolecek  */
   1789  1.113  jdolecek void
   1790  1.114  christos fownsignal(pid_t pgid, int signo, int code, int band, void *fdescdata)
   1791  1.113  jdolecek {
   1792  1.113  jdolecek 	struct proc *p1;
   1793  1.150        ad 	struct pgrp *pgrp;
   1794  1.131     perry 	ksiginfo_t ksi;
   1795  1.113  jdolecek 
   1796  1.176        ad 	KASSERT(!cpu_intr_p());
   1797  1.176        ad 
   1798  1.148      yamt 	KSI_INIT(&ksi);
   1799  1.114  christos 	ksi.ksi_signo = signo;
   1800  1.113  jdolecek 	ksi.ksi_code = code;
   1801  1.113  jdolecek 	ksi.ksi_band = band;
   1802  1.113  jdolecek 
   1803  1.176        ad 	mutex_enter(proc_lock);
   1804  1.150        ad 	if (pgid > 0 && (p1 = p_find(pgid, PFIND_LOCKED)))
   1805  1.113  jdolecek 		kpsignal(p1, &ksi, fdescdata);
   1806  1.150        ad 	else if (pgid < 0 && (pgrp = pg_find(-pgid, PFIND_LOCKED)))
   1807  1.150        ad 		kpgsignal(pgrp, &ksi, fdescdata, 0);
   1808  1.176        ad 	mutex_exit(proc_lock);
   1809  1.113  jdolecek }
   1810  1.127  christos 
   1811  1.127  christos int
   1812  1.173        ad fd_clone(file_t *fp, unsigned fd, int flag, const struct fileops *fops,
   1813  1.173        ad 	 void *data)
   1814  1.127  christos {
   1815  1.173        ad 
   1816  1.130  christos 	fp->f_flag = flag;
   1817  1.127  christos 	fp->f_type = DTYPE_MISC;
   1818  1.127  christos 	fp->f_ops = fops;
   1819  1.127  christos 	fp->f_data = data;
   1820  1.173        ad 	curlwp->l_dupfd = fd;
   1821  1.173        ad 	fd_affix(curproc, fp, fd);
   1822  1.127  christos 
   1823  1.127  christos 	return EMOVEFD;
   1824  1.127  christos }
   1825  1.127  christos 
   1826  1.127  christos int
   1827  1.173        ad fnullop_fcntl(file_t *fp, u_int cmd, void *data)
   1828  1.127  christos {
   1829  1.147      yamt 
   1830  1.127  christos 	if (cmd == F_SETFL)
   1831  1.127  christos 		return 0;
   1832  1.127  christos 
   1833  1.127  christos 	return EOPNOTSUPP;
   1834  1.127  christos }
   1835  1.127  christos 
   1836  1.127  christos int
   1837  1.173        ad fnullop_poll(file_t *fp, int which)
   1838  1.127  christos {
   1839  1.147      yamt 
   1840  1.127  christos 	return 0;
   1841  1.127  christos }
   1842  1.127  christos 
   1843  1.127  christos int
   1844  1.173        ad fnullop_kqfilter(file_t *fp, struct knote *kn)
   1845  1.127  christos {
   1846  1.127  christos 
   1847  1.127  christos 	return 0;
   1848  1.127  christos }
   1849  1.127  christos 
   1850  1.127  christos int
   1851  1.173        ad fbadop_read(file_t *fp, off_t *offset, struct uio *uio,
   1852  1.173        ad 	    kauth_cred_t cred, int flags)
   1853  1.160     rmind {
   1854  1.160     rmind 
   1855  1.160     rmind 	return EOPNOTSUPP;
   1856  1.160     rmind }
   1857  1.160     rmind 
   1858  1.160     rmind int
   1859  1.173        ad fbadop_write(file_t *fp, off_t *offset, struct uio *uio,
   1860  1.173        ad 	     kauth_cred_t cred, int flags)
   1861  1.160     rmind {
   1862  1.160     rmind 
   1863  1.160     rmind 	return EOPNOTSUPP;
   1864  1.160     rmind }
   1865  1.160     rmind 
   1866  1.160     rmind int
   1867  1.173        ad fbadop_ioctl(file_t *fp, u_long com, void *data)
   1868  1.160     rmind {
   1869  1.160     rmind 
   1870  1.160     rmind 	return EOPNOTSUPP;
   1871  1.160     rmind }
   1872  1.160     rmind 
   1873  1.160     rmind int
   1874  1.173        ad fbadop_stat(file_t *fp, struct stat *sb)
   1875  1.127  christos {
   1876  1.147      yamt 
   1877  1.127  christos 	return EOPNOTSUPP;
   1878  1.127  christos }
   1879  1.160     rmind 
   1880  1.160     rmind int
   1881  1.173        ad fbadop_close(file_t *fp)
   1882  1.160     rmind {
   1883  1.160     rmind 
   1884  1.160     rmind 	return EOPNOTSUPP;
   1885  1.160     rmind }
   1886