Merge branch 'master' of ssh://crater.dragonflybsd.org/repository/git/dragonfly
[dragonfly.git] / sys / kern / kern_descrip.c
1 /*
2  * Copyright (c) 2005 The DragonFly Project.  All rights reserved.
3  * 
4  * This code is derived from software contributed to The DragonFly Project
5  * by Jeffrey Hsu.
6  * 
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in
15  *    the documentation and/or other materials provided with the
16  *    distribution.
17  * 3. Neither the name of The DragonFly Project nor the names of its
18  *    contributors may be used to endorse or promote products derived
19  *    from this software without specific, prior written permission.
20  * 
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
25  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  *
34  *
35  * Copyright (c) 1982, 1986, 1989, 1991, 1993
36  *      The Regents of the University of California.  All rights reserved.
37  * (c) UNIX System Laboratories, Inc.
38  * All or some portions of this file are derived from material licensed
39  * to the University of California by American Telephone and Telegraph
40  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
41  * the permission of UNIX System Laboratories, Inc.
42  *
43  * Redistribution and use in source and binary forms, with or without
44  * modification, are permitted provided that the following conditions
45  * are met:
46  * 1. Redistributions of source code must retain the above copyright
47  *    notice, this list of conditions and the following disclaimer.
48  * 2. Redistributions in binary form must reproduce the above copyright
49  *    notice, this list of conditions and the following disclaimer in the
50  *    documentation and/or other materials provided with the distribution.
51  * 3. All advertising materials mentioning features or use of this software
52  *    must display the following acknowledgement:
53  *      This product includes software developed by the University of
54  *      California, Berkeley and its contributors.
55  * 4. Neither the name of the University nor the names of its contributors
56  *    may be used to endorse or promote products derived from this software
57  *    without specific prior written permission.
58  *
59  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
60  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
61  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
62  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
63  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
64  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
65  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
66  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
67  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
68  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
69  * SUCH DAMAGE.
70  *
71  *      @(#)kern_descrip.c      8.6 (Berkeley) 4/19/94
72  * $FreeBSD: src/sys/kern/kern_descrip.c,v 1.81.2.19 2004/02/28 00:43:31 tegge Exp $
73  */
74
75 #include "opt_compat.h"
76 #include <sys/param.h>
77 #include <sys/systm.h>
78 #include <sys/malloc.h>
79 #include <sys/sysproto.h>
80 #include <sys/conf.h>
81 #include <sys/device.h>
82 #include <sys/file.h>
83 #include <sys/filedesc.h>
84 #include <sys/kernel.h>
85 #include <sys/sysctl.h>
86 #include <sys/vnode.h>
87 #include <sys/proc.h>
88 #include <sys/nlookup.h>
89 #include <sys/file.h>
90 #include <sys/stat.h>
91 #include <sys/filio.h>
92 #include <sys/fcntl.h>
93 #include <sys/unistd.h>
94 #include <sys/resourcevar.h>
95 #include <sys/event.h>
96 #include <sys/kern_syscall.h>
97 #include <sys/kcore.h>
98 #include <sys/kinfo.h>
99 #include <sys/un.h>
100
101 #include <vm/vm.h>
102 #include <vm/vm_extern.h>
103
104 #include <sys/thread2.h>
105 #include <sys/file2.h>
106 #include <sys/spinlock2.h>
107
108 static void fsetfd_locked(struct filedesc *fdp, struct file *fp, int fd);
109 static void fdreserve_locked (struct filedesc *fdp, int fd0, int incr);
110 static struct file *funsetfd_locked (struct filedesc *fdp, int fd);
111 static void ffree(struct file *fp);
112
113 static MALLOC_DEFINE(M_FILEDESC, "file desc", "Open file descriptor table");
114 static MALLOC_DEFINE(M_FILEDESC_TO_LEADER, "file desc to leader",
115                      "file desc to leader structures");
116 MALLOC_DEFINE(M_FILE, "file", "Open file structure");
117 static MALLOC_DEFINE(M_SIGIO, "sigio", "sigio structures");
118
119 static struct krate krate_uidinfo = { .freq = 1 };
120
121 static   d_open_t  fdopen;
122 #define NUMFDESC 64
123
124 #define CDEV_MAJOR 22
125 static struct dev_ops fildesc_ops = {
126         { "FD", 0, 0 },
127         .d_open =       fdopen,
128 };
129
130 /*
131  * Descriptor management.
132  */
133 static struct filelist filehead = LIST_HEAD_INITIALIZER(&filehead);
134 static struct spinlock filehead_spin = SPINLOCK_INITIALIZER(&filehead_spin);
135 static int nfiles;              /* actual number of open files */
136 extern int cmask;       
137
138 /*
139  * Fixup fd_freefile and fd_lastfile after a descriptor has been cleared.
140  *
141  * MPSAFE - must be called with fdp->fd_spin exclusively held
142  */
143 static __inline
144 void
145 fdfixup_locked(struct filedesc *fdp, int fd)
146 {
147         if (fd < fdp->fd_freefile) {
148                fdp->fd_freefile = fd;
149         }
150         while (fdp->fd_lastfile >= 0 &&
151                fdp->fd_files[fdp->fd_lastfile].fp == NULL &&
152                fdp->fd_files[fdp->fd_lastfile].reserved == 0
153         ) {
154                 --fdp->fd_lastfile;
155         }
156 }
157
158 /*
159  * System calls on descriptors.
160  *
161  * MPSAFE
162  */
163 int
164 sys_getdtablesize(struct getdtablesize_args *uap) 
165 {
166         struct proc *p = curproc;
167         struct plimit *limit = p->p_limit;
168         int dtsize;
169
170         spin_lock(&limit->p_spin);
171         if (limit->pl_rlimit[RLIMIT_NOFILE].rlim_cur > INT_MAX)
172                 dtsize = INT_MAX;
173         else
174                 dtsize = (int)limit->pl_rlimit[RLIMIT_NOFILE].rlim_cur;
175         spin_unlock(&limit->p_spin);
176
177         if (dtsize > maxfilesperproc)
178                 dtsize = maxfilesperproc;
179         if (dtsize < minfilesperproc)
180                 dtsize = minfilesperproc;
181         if (p->p_ucred->cr_uid && dtsize > maxfilesperuser)
182                 dtsize = maxfilesperuser;
183         uap->sysmsg_result = dtsize;
184         return (0);
185 }
186
187 /*
188  * Duplicate a file descriptor to a particular value.
189  *
190  * note: keep in mind that a potential race condition exists when closing
191  * descriptors from a shared descriptor table (via rfork).
192  *
193  * MPSAFE
194  */
195 int
196 sys_dup2(struct dup2_args *uap)
197 {
198         int error;
199         int fd = 0;
200
201         error = kern_dup(DUP_FIXED, uap->from, uap->to, &fd);
202         uap->sysmsg_fds[0] = fd;
203
204         return (error);
205 }
206
207 /*
208  * Duplicate a file descriptor.
209  *
210  * MPSAFE
211  */
212 int
213 sys_dup(struct dup_args *uap)
214 {
215         int error;
216         int fd = 0;
217
218         error = kern_dup(DUP_VARIABLE, uap->fd, 0, &fd);
219         uap->sysmsg_fds[0] = fd;
220
221         return (error);
222 }
223
224 /*
225  * MPALMOSTSAFE - acquires mplock for fp operations
226  */
227 int
228 kern_fcntl(int fd, int cmd, union fcntl_dat *dat, struct ucred *cred)
229 {
230         struct thread *td = curthread;
231         struct proc *p = td->td_proc;
232         struct file *fp;
233         struct vnode *vp;
234         u_int newmin;
235         u_int oflags;
236         u_int nflags;
237         int tmp, error, flg = F_POSIX;
238
239         KKASSERT(p);
240
241         /*
242          * Operations on file descriptors that do not require a file pointer.
243          */
244         switch (cmd) {
245         case F_GETFD:
246                 error = fgetfdflags(p->p_fd, fd, &tmp);
247                 if (error == 0)
248                         dat->fc_cloexec = (tmp & UF_EXCLOSE) ? FD_CLOEXEC : 0;
249                 return (error);
250
251         case F_SETFD:
252                 if (dat->fc_cloexec & FD_CLOEXEC)
253                         error = fsetfdflags(p->p_fd, fd, UF_EXCLOSE);
254                 else
255                         error = fclrfdflags(p->p_fd, fd, UF_EXCLOSE);
256                 return (error);
257         case F_DUPFD:
258                 newmin = dat->fc_fd;
259                 error = kern_dup(DUP_VARIABLE, fd, newmin, &dat->fc_fd);
260                 return (error);
261         default:
262                 break;
263         }
264
265         /*
266          * Operations on file pointers
267          */
268         if ((fp = holdfp(p->p_fd, fd, -1)) == NULL)
269                 return (EBADF);
270
271         switch (cmd) {
272         case F_GETFL:
273                 dat->fc_flags = OFLAGS(fp->f_flag);
274                 error = 0;
275                 break;
276
277         case F_SETFL:
278                 oflags = fp->f_flag;
279                 nflags = FFLAGS(dat->fc_flags & ~O_ACCMODE) & FCNTLFLAGS;
280                 nflags |= oflags & ~FCNTLFLAGS;
281
282                 error = 0;
283                 if (((nflags ^ oflags) & O_APPEND) && (oflags & FAPPENDONLY))
284                         error = EINVAL;
285                 if (error == 0 && ((nflags ^ oflags) & FASYNC)) {
286                         tmp = nflags & FASYNC;
287                         error = fo_ioctl(fp, FIOASYNC, (caddr_t)&tmp,
288                                          cred, NULL);
289                 }
290                 if (error == 0)
291                         fp->f_flag = nflags;
292                 break;
293
294         case F_GETOWN:
295                 error = fo_ioctl(fp, FIOGETOWN, (caddr_t)&dat->fc_owner,
296                                  cred, NULL);
297                 break;
298
299         case F_SETOWN:
300                 error = fo_ioctl(fp, FIOSETOWN, (caddr_t)&dat->fc_owner,
301                                  cred, NULL);
302                 break;
303
304         case F_SETLKW:
305                 flg |= F_WAIT;
306                 /* Fall into F_SETLK */
307
308         case F_SETLK:
309                 if (fp->f_type != DTYPE_VNODE) {
310                         error = EBADF;
311                         break;
312                 }
313                 vp = (struct vnode *)fp->f_data;
314
315                 /*
316                  * copyin/lockop may block
317                  */
318                 if (dat->fc_flock.l_whence == SEEK_CUR)
319                         dat->fc_flock.l_start += fp->f_offset;
320
321                 switch (dat->fc_flock.l_type) {
322                 case F_RDLCK:
323                         if ((fp->f_flag & FREAD) == 0) {
324                                 error = EBADF;
325                                 break;
326                         }
327                         p->p_leader->p_flag |= P_ADVLOCK;
328                         error = VOP_ADVLOCK(vp, (caddr_t)p->p_leader, F_SETLK,
329                             &dat->fc_flock, flg);
330                         break;
331                 case F_WRLCK:
332                         if ((fp->f_flag & FWRITE) == 0) {
333                                 error = EBADF;
334                                 break;
335                         }
336                         p->p_leader->p_flag |= P_ADVLOCK;
337                         error = VOP_ADVLOCK(vp, (caddr_t)p->p_leader, F_SETLK,
338                             &dat->fc_flock, flg);
339                         break;
340                 case F_UNLCK:
341                         error = VOP_ADVLOCK(vp, (caddr_t)p->p_leader, F_UNLCK,
342                                 &dat->fc_flock, F_POSIX);
343                         break;
344                 default:
345                         error = EINVAL;
346                         break;
347                 }
348
349                 /*
350                  * It is possible to race a close() on the descriptor while
351                  * we were blocked getting the lock.  If this occurs the
352                  * close might not have caught the lock.
353                  */
354                 if (checkfdclosed(p->p_fd, fd, fp)) {
355                         dat->fc_flock.l_whence = SEEK_SET;
356                         dat->fc_flock.l_start = 0;
357                         dat->fc_flock.l_len = 0;
358                         dat->fc_flock.l_type = F_UNLCK;
359                         (void) VOP_ADVLOCK(vp, (caddr_t)p->p_leader,
360                                            F_UNLCK, &dat->fc_flock, F_POSIX);
361                 }
362                 break;
363
364         case F_GETLK:
365                 if (fp->f_type != DTYPE_VNODE) {
366                         error = EBADF;
367                         break;
368                 }
369                 vp = (struct vnode *)fp->f_data;
370                 /*
371                  * copyin/lockop may block
372                  */
373                 if (dat->fc_flock.l_type != F_RDLCK &&
374                     dat->fc_flock.l_type != F_WRLCK &&
375                     dat->fc_flock.l_type != F_UNLCK) {
376                         error = EINVAL;
377                         break;
378                 }
379                 if (dat->fc_flock.l_whence == SEEK_CUR)
380                         dat->fc_flock.l_start += fp->f_offset;
381                 error = VOP_ADVLOCK(vp, (caddr_t)p->p_leader, F_GETLK,
382                             &dat->fc_flock, F_POSIX);
383                 break;
384         default:
385                 error = EINVAL;
386                 break;
387         }
388
389         fdrop(fp);
390         return (error);
391 }
392
393 /*
394  * The file control system call.
395  *
396  * MPSAFE
397  */
398 int
399 sys_fcntl(struct fcntl_args *uap)
400 {
401         union fcntl_dat dat;
402         int error;
403
404         switch (uap->cmd) {
405         case F_DUPFD:
406                 dat.fc_fd = uap->arg;
407                 break;
408         case F_SETFD:
409                 dat.fc_cloexec = uap->arg;
410                 break;
411         case F_SETFL:
412                 dat.fc_flags = uap->arg;
413                 break;
414         case F_SETOWN:
415                 dat.fc_owner = uap->arg;
416                 break;
417         case F_SETLKW:
418         case F_SETLK:
419         case F_GETLK:
420                 error = copyin((caddr_t)uap->arg, &dat.fc_flock,
421                                sizeof(struct flock));
422                 if (error)
423                         return (error);
424                 break;
425         }
426
427         error = kern_fcntl(uap->fd, uap->cmd, &dat, curthread->td_ucred);
428
429         if (error == 0) {
430                 switch (uap->cmd) {
431                 case F_DUPFD:
432                         uap->sysmsg_result = dat.fc_fd;
433                         break;
434                 case F_GETFD:
435                         uap->sysmsg_result = dat.fc_cloexec;
436                         break;
437                 case F_GETFL:
438                         uap->sysmsg_result = dat.fc_flags;
439                         break;
440                 case F_GETOWN:
441                         uap->sysmsg_result = dat.fc_owner;
442                 case F_GETLK:
443                         error = copyout(&dat.fc_flock, (caddr_t)uap->arg,
444                             sizeof(struct flock));
445                         break;
446                 }
447         }
448
449         return (error);
450 }
451
452 /*
453  * Common code for dup, dup2, and fcntl(F_DUPFD).
454  *
455  * The type flag can be either DUP_FIXED or DUP_VARIABLE.  DUP_FIXED tells
456  * kern_dup() to destructively dup over an existing file descriptor if new
457  * is already open.  DUP_VARIABLE tells kern_dup() to find the lowest
458  * unused file descriptor that is greater than or equal to new.
459  *
460  * MPSAFE
461  */
462 int
463 kern_dup(enum dup_type type, int old, int new, int *res)
464 {
465         struct thread *td = curthread;
466         struct proc *p = td->td_proc;
467         struct filedesc *fdp = p->p_fd;
468         struct file *fp;
469         struct file *delfp;
470         int oldflags;
471         int holdleaders;
472         int dtsize;
473         int error, newfd;
474
475         /*
476          * Verify that we have a valid descriptor to dup from and
477          * possibly to dup to.
478          *
479          * NOTE: maxfilesperuser is not applicable to dup()
480          */
481 retry:
482         if (p->p_rlimit[RLIMIT_NOFILE].rlim_cur > INT_MAX)
483                 dtsize = INT_MAX;
484         else
485                 dtsize = (int)p->p_rlimit[RLIMIT_NOFILE].rlim_cur;
486         if (dtsize > maxfilesperproc)
487                 dtsize = maxfilesperproc;
488         if (dtsize < minfilesperproc)
489                 dtsize = minfilesperproc;
490
491         if (new < 0 || new > dtsize)
492                 return (EINVAL);
493
494         spin_lock(&fdp->fd_spin);
495         if ((unsigned)old >= fdp->fd_nfiles || fdp->fd_files[old].fp == NULL) {
496                 spin_unlock(&fdp->fd_spin);
497                 return (EBADF);
498         }
499         if (type == DUP_FIXED && old == new) {
500                 *res = new;
501                 spin_unlock(&fdp->fd_spin);
502                 return (0);
503         }
504         fp = fdp->fd_files[old].fp;
505         oldflags = fdp->fd_files[old].fileflags;
506         fhold(fp);      /* MPSAFE - can be called with a spinlock held */
507
508         /*
509          * Allocate a new descriptor if DUP_VARIABLE, or expand the table
510          * if the requested descriptor is beyond the current table size.
511          *
512          * This can block.  Retry if the source descriptor no longer matches
513          * or if our expectation in the expansion case races.
514          *
515          * If we are not expanding or allocating a new decriptor, then reset
516          * the target descriptor to a reserved state so we have a uniform
517          * setup for the next code block.
518          */
519         if (type == DUP_VARIABLE || new >= fdp->fd_nfiles) {
520                 spin_unlock(&fdp->fd_spin);
521                 error = fdalloc(p, new, &newfd);
522                 spin_lock(&fdp->fd_spin);
523                 if (error) {
524                         spin_unlock(&fdp->fd_spin);
525                         fdrop(fp);
526                         return (error);
527                 }
528                 /*
529                  * Check for ripout
530                  */
531                 if (old >= fdp->fd_nfiles || fdp->fd_files[old].fp != fp) {
532                         fsetfd_locked(fdp, NULL, newfd);
533                         spin_unlock(&fdp->fd_spin);
534                         fdrop(fp);
535                         goto retry;
536                 }
537                 /*
538                  * Check for expansion race
539                  */
540                 if (type != DUP_VARIABLE && new != newfd) {
541                         fsetfd_locked(fdp, NULL, newfd);
542                         spin_unlock(&fdp->fd_spin);
543                         fdrop(fp);
544                         goto retry;
545                 }
546                 /*
547                  * Check for ripout, newfd reused old (this case probably
548                  * can't occur).
549                  */
550                 if (old == newfd) {
551                         fsetfd_locked(fdp, NULL, newfd);
552                         spin_unlock(&fdp->fd_spin);
553                         fdrop(fp);
554                         goto retry;
555                 }
556                 new = newfd;
557                 delfp = NULL;
558         } else {
559                 if (fdp->fd_files[new].reserved) {
560                         spin_unlock(&fdp->fd_spin);
561                         fdrop(fp);
562                         kprintf("Warning: dup(): target descriptor %d is reserved, waiting for it to be resolved\n", new);
563                         tsleep(fdp, 0, "fdres", hz);
564                         goto retry;
565                 }
566
567                 /*
568                  * If the target descriptor was never allocated we have
569                  * to allocate it.  If it was we have to clean out the
570                  * old descriptor.  delfp inherits the ref from the 
571                  * descriptor table.
572                  */
573                 delfp = fdp->fd_files[new].fp;
574                 fdp->fd_files[new].fp = NULL;
575                 fdp->fd_files[new].reserved = 1;
576                 if (delfp == NULL) {
577                         fdreserve_locked(fdp, new, 1);
578                         if (new > fdp->fd_lastfile)
579                                 fdp->fd_lastfile = new;
580                 }
581
582         }
583
584         /*
585          * NOTE: still holding an exclusive spinlock
586          */
587
588         /*
589          * If a descriptor is being overwritten we may hve to tell 
590          * fdfree() to sleep to ensure that all relevant process
591          * leaders can be traversed in closef().
592          */
593         if (delfp != NULL && p->p_fdtol != NULL) {
594                 fdp->fd_holdleaderscount++;
595                 holdleaders = 1;
596         } else {
597                 holdleaders = 0;
598         }
599         KASSERT(delfp == NULL || type == DUP_FIXED,
600                 ("dup() picked an open file"));
601
602         /*
603          * Duplicate the source descriptor, update lastfile.  If the new
604          * descriptor was not allocated and we aren't replacing an existing
605          * descriptor we have to mark the descriptor as being in use.
606          *
607          * The fd_files[] array inherits fp's hold reference.
608          */
609         fsetfd_locked(fdp, fp, new);
610         fdp->fd_files[new].fileflags = oldflags & ~UF_EXCLOSE;
611         spin_unlock(&fdp->fd_spin);
612         fdrop(fp);
613         *res = new;
614
615         /*
616          * If we dup'd over a valid file, we now own the reference to it
617          * and must dispose of it using closef() semantics (as if a
618          * close() were performed on it).
619          */
620         if (delfp) {
621                 if (SLIST_FIRST(&delfp->f_klist))
622                         knote_fdclose(delfp, fdp, new);
623                 closef(delfp, p);
624                 if (holdleaders) {
625                         spin_lock(&fdp->fd_spin);
626                         fdp->fd_holdleaderscount--;
627                         if (fdp->fd_holdleaderscount == 0 &&
628                             fdp->fd_holdleaderswakeup != 0) {
629                                 fdp->fd_holdleaderswakeup = 0;
630                                 spin_unlock(&fdp->fd_spin);
631                                 wakeup(&fdp->fd_holdleaderscount);
632                         } else {
633                                 spin_unlock(&fdp->fd_spin);
634                         }
635                 }
636         }
637         return (0);
638 }
639
640 /*
641  * If sigio is on the list associated with a process or process group,
642  * disable signalling from the device, remove sigio from the list and
643  * free sigio.
644  *
645  * MPSAFE
646  */
647 void
648 funsetown(struct sigio **sigiop)
649 {
650         struct pgrp *pgrp;
651         struct proc *p;
652         struct sigio *sigio;
653
654         if ((sigio = *sigiop) != NULL) {
655                 lwkt_gettoken(&proc_token);     /* protect sigio */
656                 KKASSERT(sigiop == sigio->sio_myref);
657                 sigio = *sigiop;
658                 *sigiop = NULL;
659                 lwkt_reltoken(&proc_token);
660         }
661         if (sigio == NULL)
662                 return;
663
664         if (sigio->sio_pgid < 0) {
665                 pgrp = sigio->sio_pgrp;
666                 sigio->sio_pgrp = NULL;
667                 lwkt_gettoken(&pgrp->pg_token);
668                 SLIST_REMOVE(&pgrp->pg_sigiolst, sigio, sigio, sio_pgsigio);
669                 lwkt_reltoken(&pgrp->pg_token);
670                 pgrel(pgrp);
671         } else /* if ((*sigiop)->sio_pgid > 0) */ {
672                 p = sigio->sio_proc;
673                 sigio->sio_proc = NULL;
674                 PHOLD(p);
675                 lwkt_gettoken(&p->p_token);
676                 SLIST_REMOVE(&p->p_sigiolst, sigio, sigio, sio_pgsigio);
677                 lwkt_reltoken(&p->p_token);
678                 PRELE(p);
679         }
680         crfree(sigio->sio_ucred);
681         sigio->sio_ucred = NULL;
682         kfree(sigio, M_SIGIO);
683 }
684
685 /*
686  * Free a list of sigio structures.  Caller is responsible for ensuring
687  * that the list is MPSAFE.
688  *
689  * MPSAFE
690  */
691 void
692 funsetownlst(struct sigiolst *sigiolst)
693 {
694         struct sigio *sigio;
695
696         while ((sigio = SLIST_FIRST(sigiolst)) != NULL)
697                 funsetown(sigio->sio_myref);
698 }
699
700 /*
701  * This is common code for FIOSETOWN ioctl called by fcntl(fd, F_SETOWN, arg).
702  *
703  * After permission checking, add a sigio structure to the sigio list for
704  * the process or process group.
705  *
706  * MPSAFE
707  */
708 int
709 fsetown(pid_t pgid, struct sigio **sigiop)
710 {
711         struct proc *proc = NULL;
712         struct pgrp *pgrp = NULL;
713         struct sigio *sigio;
714         int error;
715
716         if (pgid == 0) {
717                 funsetown(sigiop);
718                 return (0);
719         }
720
721         if (pgid > 0) {
722                 proc = pfind(pgid);
723                 if (proc == NULL) {
724                         error = ESRCH;
725                         goto done;
726                 }
727
728                 /*
729                  * Policy - Don't allow a process to FSETOWN a process
730                  * in another session.
731                  *
732                  * Remove this test to allow maximum flexibility or
733                  * restrict FSETOWN to the current process or process
734                  * group for maximum safety.
735                  */
736                 if (proc->p_session != curproc->p_session) {
737                         error = EPERM;
738                         goto done;
739                 }
740         } else /* if (pgid < 0) */ {
741                 pgrp = pgfind(-pgid);
742                 if (pgrp == NULL) {
743                         error = ESRCH;
744                         goto done;
745                 }
746
747                 /*
748                  * Policy - Don't allow a process to FSETOWN a process
749                  * in another session.
750                  *
751                  * Remove this test to allow maximum flexibility or
752                  * restrict FSETOWN to the current process or process
753                  * group for maximum safety.
754                  */
755                 if (pgrp->pg_session != curproc->p_session) {
756                         error = EPERM;
757                         goto done;
758                 }
759         }
760         sigio = kmalloc(sizeof(struct sigio), M_SIGIO, M_WAITOK | M_ZERO);
761         if (pgid > 0) {
762                 KKASSERT(pgrp == NULL);
763                 lwkt_gettoken(&proc->p_token);
764                 SLIST_INSERT_HEAD(&proc->p_sigiolst, sigio, sio_pgsigio);
765                 sigio->sio_proc = proc;
766                 lwkt_reltoken(&proc->p_token);
767         } else {
768                 KKASSERT(proc == NULL);
769                 lwkt_gettoken(&pgrp->pg_token);
770                 SLIST_INSERT_HEAD(&pgrp->pg_sigiolst, sigio, sio_pgsigio);
771                 sigio->sio_pgrp = pgrp;
772                 lwkt_reltoken(&pgrp->pg_token);
773                 pgrp = NULL;
774         }
775         sigio->sio_pgid = pgid;
776         sigio->sio_ucred = crhold(curthread->td_ucred);
777         /* It would be convenient if p_ruid was in ucred. */
778         sigio->sio_ruid = sigio->sio_ucred->cr_ruid;
779         sigio->sio_myref = sigiop;
780
781         lwkt_gettoken(&proc_token);
782         while (*sigiop)
783                 funsetown(sigiop);
784         *sigiop = sigio;
785         lwkt_reltoken(&proc_token);
786         error = 0;
787 done:
788         if (pgrp)
789                 pgrel(pgrp);
790         if (proc)
791                 PRELE(proc);
792         return (error);
793 }
794
795 /*
796  * This is common code for FIOGETOWN ioctl called by fcntl(fd, F_GETOWN, arg).
797  *
798  * MPSAFE
799  */
800 pid_t
801 fgetown(struct sigio **sigiop)
802 {
803         struct sigio *sigio;
804         pid_t own;
805
806         lwkt_gettoken(&proc_token);
807         sigio = *sigiop;
808         own = (sigio != NULL ? sigio->sio_pgid : 0);
809         lwkt_reltoken(&proc_token);
810
811         return (own);
812 }
813
814 /*
815  * Close many file descriptors.
816  *
817  * MPSAFE
818  */
819 int
820 sys_closefrom(struct closefrom_args *uap)
821 {
822         return(kern_closefrom(uap->fd));
823 }
824
825 /*
826  * Close all file descriptors greater then or equal to fd
827  *
828  * MPSAFE
829  */
830 int
831 kern_closefrom(int fd)
832 {
833         struct thread *td = curthread;
834         struct proc *p = td->td_proc;
835         struct filedesc *fdp;
836
837         KKASSERT(p);
838         fdp = p->p_fd;
839
840         if (fd < 0)
841                 return (EINVAL);
842
843         /*
844          * NOTE: This function will skip unassociated descriptors and
845          * reserved descriptors that have not yet been assigned.  
846          * fd_lastfile can change as a side effect of kern_close().
847          */
848         spin_lock(&fdp->fd_spin);
849         while (fd <= fdp->fd_lastfile) {
850                 if (fdp->fd_files[fd].fp != NULL) {
851                         spin_unlock(&fdp->fd_spin);
852                         /* ok if this races another close */
853                         if (kern_close(fd) == EINTR)
854                                 return (EINTR);
855                         spin_lock(&fdp->fd_spin);
856                 }
857                 ++fd;
858         }
859         spin_unlock(&fdp->fd_spin);
860         return (0);
861 }
862
863 /*
864  * Close a file descriptor.
865  *
866  * MPSAFE
867  */
868 int
869 sys_close(struct close_args *uap)
870 {
871         return(kern_close(uap->fd));
872 }
873
874 /*
875  * MPSAFE
876  */
877 int
878 kern_close(int fd)
879 {
880         struct thread *td = curthread;
881         struct proc *p = td->td_proc;
882         struct filedesc *fdp;
883         struct file *fp;
884         int error;
885         int holdleaders;
886
887         KKASSERT(p);
888         fdp = p->p_fd;
889
890         spin_lock(&fdp->fd_spin);
891         if ((fp = funsetfd_locked(fdp, fd)) == NULL) {
892                 spin_unlock(&fdp->fd_spin);
893                 return (EBADF);
894         }
895         holdleaders = 0;
896         if (p->p_fdtol != NULL) {
897                 /*
898                  * Ask fdfree() to sleep to ensure that all relevant
899                  * process leaders can be traversed in closef().
900                  */
901                 fdp->fd_holdleaderscount++;
902                 holdleaders = 1;
903         }
904
905         /*
906          * we now hold the fp reference that used to be owned by the descriptor
907          * array.
908          */
909         spin_unlock(&fdp->fd_spin);
910         if (SLIST_FIRST(&fp->f_klist))
911                 knote_fdclose(fp, fdp, fd);
912         error = closef(fp, p);
913         if (holdleaders) {
914                 spin_lock(&fdp->fd_spin);
915                 fdp->fd_holdleaderscount--;
916                 if (fdp->fd_holdleaderscount == 0 &&
917                     fdp->fd_holdleaderswakeup != 0) {
918                         fdp->fd_holdleaderswakeup = 0;
919                         spin_unlock(&fdp->fd_spin);
920                         wakeup(&fdp->fd_holdleaderscount);
921                 } else {
922                         spin_unlock(&fdp->fd_spin);
923                 }
924         }
925         return (error);
926 }
927
928 /*
929  * shutdown_args(int fd, int how)
930  */
931 int
932 kern_shutdown(int fd, int how)
933 {
934         struct thread *td = curthread;
935         struct proc *p = td->td_proc;
936         struct file *fp;
937         int error;
938
939         KKASSERT(p);
940
941         if ((fp = holdfp(p->p_fd, fd, -1)) == NULL)
942                 return (EBADF);
943         error = fo_shutdown(fp, how);
944         fdrop(fp);
945
946         return (error);
947 }
948
949 /*
950  * MPALMOSTSAFE
951  */
952 int
953 sys_shutdown(struct shutdown_args *uap)
954 {
955         int error;
956
957         error = kern_shutdown(uap->s, uap->how);
958
959         return (error);
960 }
961
962 /*
963  * MPSAFE
964  */
965 int
966 kern_fstat(int fd, struct stat *ub)
967 {
968         struct thread *td = curthread;
969         struct proc *p = td->td_proc;
970         struct file *fp;
971         int error;
972
973         KKASSERT(p);
974
975         if ((fp = holdfp(p->p_fd, fd, -1)) == NULL)
976                 return (EBADF);
977         error = fo_stat(fp, ub, td->td_ucred);
978         fdrop(fp);
979
980         return (error);
981 }
982
983 /*
984  * Return status information about a file descriptor.
985  *
986  * MPSAFE
987  */
988 int
989 sys_fstat(struct fstat_args *uap)
990 {
991         struct stat st;
992         int error;
993
994         error = kern_fstat(uap->fd, &st);
995
996         if (error == 0)
997                 error = copyout(&st, uap->sb, sizeof(st));
998         return (error);
999 }
1000
1001 /*
1002  * Return pathconf information about a file descriptor.
1003  *
1004  * MPALMOSTSAFE
1005  */
1006 int
1007 sys_fpathconf(struct fpathconf_args *uap)
1008 {
1009         struct thread *td = curthread;
1010         struct proc *p = td->td_proc;
1011         struct file *fp;
1012         struct vnode *vp;
1013         int error = 0;
1014
1015         if ((fp = holdfp(p->p_fd, uap->fd, -1)) == NULL)
1016                 return (EBADF);
1017
1018         switch (fp->f_type) {
1019         case DTYPE_PIPE:
1020         case DTYPE_SOCKET:
1021                 if (uap->name != _PC_PIPE_BUF) {
1022                         error = EINVAL;
1023                 } else {
1024                         uap->sysmsg_result = PIPE_BUF;
1025                         error = 0;
1026                 }
1027                 break;
1028         case DTYPE_FIFO:
1029         case DTYPE_VNODE:
1030                 vp = (struct vnode *)fp->f_data;
1031                 error = VOP_PATHCONF(vp, uap->name, &uap->sysmsg_reg);
1032                 break;
1033         default:
1034                 error = EOPNOTSUPP;
1035                 break;
1036         }
1037         fdrop(fp);
1038         return(error);
1039 }
1040
1041 static int fdexpand;
1042 SYSCTL_INT(_debug, OID_AUTO, fdexpand, CTLFLAG_RD, &fdexpand, 0,
1043     "Number of times a file table has been expanded");
1044
1045 /*
1046  * Grow the file table so it can hold through descriptor (want).
1047  *
1048  * The fdp's spinlock must be held exclusively on entry and may be held
1049  * exclusively on return.  The spinlock may be cycled by the routine.
1050  *
1051  * MPSAFE
1052  */
1053 static void
1054 fdgrow_locked(struct filedesc *fdp, int want)
1055 {
1056         struct fdnode *newfiles;
1057         struct fdnode *oldfiles;
1058         int nf, extra;
1059
1060         nf = fdp->fd_nfiles;
1061         do {
1062                 /* nf has to be of the form 2^n - 1 */
1063                 nf = 2 * nf + 1;
1064         } while (nf <= want);
1065
1066         spin_unlock(&fdp->fd_spin);
1067         newfiles = kmalloc(nf * sizeof(struct fdnode), M_FILEDESC, M_WAITOK);
1068         spin_lock(&fdp->fd_spin);
1069
1070         /*
1071          * We could have raced another extend while we were not holding
1072          * the spinlock.
1073          */
1074         if (fdp->fd_nfiles >= nf) {
1075                 spin_unlock(&fdp->fd_spin);
1076                 kfree(newfiles, M_FILEDESC);
1077                 spin_lock(&fdp->fd_spin);
1078                 return;
1079         }
1080         /*
1081          * Copy the existing ofile and ofileflags arrays
1082          * and zero the new portion of each array.
1083          */
1084         extra = nf - fdp->fd_nfiles;
1085         bcopy(fdp->fd_files, newfiles, fdp->fd_nfiles * sizeof(struct fdnode));
1086         bzero(&newfiles[fdp->fd_nfiles], extra * sizeof(struct fdnode));
1087
1088         oldfiles = fdp->fd_files;
1089         fdp->fd_files = newfiles;
1090         fdp->fd_nfiles = nf;
1091
1092         if (oldfiles != fdp->fd_builtin_files) {
1093                 spin_unlock(&fdp->fd_spin);
1094                 kfree(oldfiles, M_FILEDESC);
1095                 spin_lock(&fdp->fd_spin);
1096         }
1097         fdexpand++;
1098 }
1099
1100 /*
1101  * Number of nodes in right subtree, including the root.
1102  */
1103 static __inline int
1104 right_subtree_size(int n)
1105 {
1106         return (n ^ (n | (n + 1)));
1107 }
1108
1109 /*
1110  * Bigger ancestor.
1111  */
1112 static __inline int
1113 right_ancestor(int n)
1114 {
1115         return (n | (n + 1));
1116 }
1117
1118 /*
1119  * Smaller ancestor.
1120  */
1121 static __inline int
1122 left_ancestor(int n)
1123 {
1124         return ((n & (n + 1)) - 1);
1125 }
1126
1127 /*
1128  * Traverse the in-place binary tree buttom-up adjusting the allocation
1129  * count so scans can determine where free descriptors are located.
1130  *
1131  * MPSAFE - caller must be holding an exclusive spinlock on fdp
1132  */
1133 static
1134 void
1135 fdreserve_locked(struct filedesc *fdp, int fd, int incr)
1136 {
1137         while (fd >= 0) {
1138                 fdp->fd_files[fd].allocated += incr;
1139                 KKASSERT(fdp->fd_files[fd].allocated >= 0);
1140                 fd = left_ancestor(fd);
1141         }
1142 }
1143
1144 /*
1145  * Reserve a file descriptor for the process.  If no error occurs, the
1146  * caller MUST at some point call fsetfd() or assign a file pointer
1147  * or dispose of the reservation.
1148  *
1149  * MPSAFE
1150  */
1151 int
1152 fdalloc(struct proc *p, int want, int *result)
1153 {
1154         struct filedesc *fdp = p->p_fd;
1155         struct uidinfo *uip;
1156         int fd, rsize, rsum, node, lim;
1157
1158         /*
1159          * Check dtable size limit
1160          */
1161         spin_lock(&p->p_limit->p_spin);
1162         if (p->p_rlimit[RLIMIT_NOFILE].rlim_cur > INT_MAX)
1163                 lim = INT_MAX;
1164         else
1165                 lim = (int)p->p_rlimit[RLIMIT_NOFILE].rlim_cur;
1166         spin_unlock(&p->p_limit->p_spin);
1167
1168         if (lim > maxfilesperproc)
1169                 lim = maxfilesperproc;
1170         if (lim < minfilesperproc)
1171                 lim = minfilesperproc;
1172         if (want >= lim)
1173                 return (EMFILE);
1174
1175         /*
1176          * Check that the user has not run out of descriptors (non-root only).
1177          * As a safety measure the dtable is allowed to have at least
1178          * minfilesperproc open fds regardless of the maxfilesperuser limit.
1179          */
1180         if (p->p_ucred->cr_uid && fdp->fd_nfiles >= minfilesperproc) {
1181                 uip = p->p_ucred->cr_uidinfo;
1182                 if (uip->ui_openfiles > maxfilesperuser) {
1183                         krateprintf(&krate_uidinfo,
1184                                     "Warning: user %d pid %d (%s) ran out of "
1185                                     "file descriptors (%d/%d)\n",
1186                                     p->p_ucred->cr_uid, (int)p->p_pid,
1187                                     p->p_comm,
1188                                     uip->ui_openfiles, maxfilesperuser);
1189                         return(ENFILE);
1190                 }
1191         }
1192
1193         /*
1194          * Grow the dtable if necessary
1195          */
1196         spin_lock(&fdp->fd_spin);
1197         if (want >= fdp->fd_nfiles)
1198                 fdgrow_locked(fdp, want);
1199
1200         /*
1201          * Search for a free descriptor starting at the higher
1202          * of want or fd_freefile.  If that fails, consider
1203          * expanding the ofile array.
1204          *
1205          * NOTE! the 'allocated' field is a cumulative recursive allocation
1206          * count.  If we happen to see a value of 0 then we can shortcut
1207          * our search.  Otherwise we run through through the tree going
1208          * down branches we know have free descriptor(s) until we hit a
1209          * leaf node.  The leaf node will be free but will not necessarily
1210          * have an allocated field of 0.
1211          */
1212 retry:
1213         /* move up the tree looking for a subtree with a free node */
1214         for (fd = max(want, fdp->fd_freefile); fd < min(fdp->fd_nfiles, lim);
1215              fd = right_ancestor(fd)) {
1216                 if (fdp->fd_files[fd].allocated == 0)
1217                         goto found;
1218
1219                 rsize = right_subtree_size(fd);
1220                 if (fdp->fd_files[fd].allocated == rsize)
1221                         continue;       /* right subtree full */
1222
1223                 /*
1224                  * Free fd is in the right subtree of the tree rooted at fd.
1225                  * Call that subtree R.  Look for the smallest (leftmost)
1226                  * subtree of R with an unallocated fd: continue moving
1227                  * down the left branch until encountering a full left
1228                  * subtree, then move to the right.
1229                  */
1230                 for (rsum = 0, rsize /= 2; rsize > 0; rsize /= 2) {
1231                         node = fd + rsize;
1232                         rsum += fdp->fd_files[node].allocated;
1233                         if (fdp->fd_files[fd].allocated == rsum + rsize) {
1234                                 fd = node;      /* move to the right */
1235                                 if (fdp->fd_files[node].allocated == 0)
1236                                         goto found;
1237                                 rsum = 0;
1238                         }
1239                 }
1240                 goto found;
1241         }
1242
1243         /*
1244          * No space in current array.  Expand?
1245          */
1246         if (fdp->fd_nfiles >= lim) {
1247                 spin_unlock(&fdp->fd_spin);
1248                 return (EMFILE);
1249         }
1250         fdgrow_locked(fdp, want);
1251         goto retry;
1252
1253 found:
1254         KKASSERT(fd < fdp->fd_nfiles);
1255         if (fd > fdp->fd_lastfile)
1256                 fdp->fd_lastfile = fd;
1257         if (want <= fdp->fd_freefile)
1258                 fdp->fd_freefile = fd;
1259         *result = fd;
1260         KKASSERT(fdp->fd_files[fd].fp == NULL);
1261         KKASSERT(fdp->fd_files[fd].reserved == 0);
1262         fdp->fd_files[fd].fileflags = 0;
1263         fdp->fd_files[fd].reserved = 1;
1264         fdreserve_locked(fdp, fd, 1);
1265         spin_unlock(&fdp->fd_spin);
1266         return (0);
1267 }
1268
1269 /*
1270  * Check to see whether n user file descriptors
1271  * are available to the process p.
1272  *
1273  * MPSAFE
1274  */
1275 int
1276 fdavail(struct proc *p, int n)
1277 {
1278         struct filedesc *fdp = p->p_fd;
1279         struct fdnode *fdnode;
1280         int i, lim, last;
1281
1282         spin_lock(&p->p_limit->p_spin);
1283         if (p->p_rlimit[RLIMIT_NOFILE].rlim_cur > INT_MAX)
1284                 lim = INT_MAX;
1285         else
1286                 lim = (int)p->p_rlimit[RLIMIT_NOFILE].rlim_cur;
1287         spin_unlock(&p->p_limit->p_spin);
1288
1289         if (lim > maxfilesperproc)
1290                 lim = maxfilesperproc;
1291         if (lim < minfilesperproc)
1292                 lim = minfilesperproc;
1293
1294         spin_lock(&fdp->fd_spin);
1295         if ((i = lim - fdp->fd_nfiles) > 0 && (n -= i) <= 0) {
1296                 spin_unlock(&fdp->fd_spin);
1297                 return (1);
1298         }
1299         last = min(fdp->fd_nfiles, lim);
1300         fdnode = &fdp->fd_files[fdp->fd_freefile];
1301         for (i = last - fdp->fd_freefile; --i >= 0; ++fdnode) {
1302                 if (fdnode->fp == NULL && --n <= 0) {
1303                         spin_unlock(&fdp->fd_spin);
1304                         return (1);
1305                 }
1306         }
1307         spin_unlock(&fdp->fd_spin);
1308         return (0);
1309 }
1310
1311 /*
1312  * Revoke open descriptors referencing (f_data, f_type)
1313  *
1314  * Any revoke executed within a prison is only able to
1315  * revoke descriptors for processes within that prison.
1316  *
1317  * Returns 0 on success or an error code.
1318  */
1319 struct fdrevoke_info {
1320         void *data;
1321         short type;
1322         short unused;
1323         int count;
1324         int intransit;
1325         struct ucred *cred;
1326         struct file *nfp;
1327 };
1328
1329 static int fdrevoke_check_callback(struct file *fp, void *vinfo);
1330 static int fdrevoke_proc_callback(struct proc *p, void *vinfo);
1331
1332 int
1333 fdrevoke(void *f_data, short f_type, struct ucred *cred)
1334 {
1335         struct fdrevoke_info info;
1336         int error;
1337
1338         bzero(&info, sizeof(info));
1339         info.data = f_data;
1340         info.type = f_type;
1341         info.cred = cred;
1342         error = falloc(NULL, &info.nfp, NULL);
1343         if (error)
1344                 return (error);
1345
1346         /*
1347          * Scan the file pointer table once.  dups do not dup file pointers,
1348          * only descriptors, so there is no leak.  Set FREVOKED on the fps
1349          * being revoked.
1350          */
1351         allfiles_scan_exclusive(fdrevoke_check_callback, &info);
1352
1353         /*
1354          * If any fps were marked track down the related descriptors
1355          * and close them.  Any dup()s at this point will notice
1356          * the FREVOKED already set in the fp and do the right thing.
1357          *
1358          * Any fps with non-zero msgcounts (aka sent over a unix-domain
1359          * socket) bumped the intransit counter and will require a
1360          * scan.  Races against fps leaving the socket are closed by
1361          * the socket code checking for FREVOKED.
1362          */
1363         if (info.count)
1364                 allproc_scan(fdrevoke_proc_callback, &info);
1365         if (info.intransit)
1366                 unp_revoke_gc(info.nfp);
1367         fdrop(info.nfp);
1368         return(0);
1369 }
1370
1371 /*
1372  * Locate matching file pointers directly.
1373  *
1374  * WARNING: allfiles_scan_exclusive() holds a spinlock through these calls!
1375  */
1376 static int
1377 fdrevoke_check_callback(struct file *fp, void *vinfo)
1378 {
1379         struct fdrevoke_info *info = vinfo;
1380
1381         /*
1382          * File pointers already flagged for revokation are skipped.
1383          */
1384         if (fp->f_flag & FREVOKED)
1385                 return(0);
1386
1387         /*
1388          * If revoking from a prison file pointers created outside of
1389          * that prison, or file pointers without creds, cannot be revoked.
1390          */
1391         if (info->cred->cr_prison &&
1392             (fp->f_cred == NULL ||
1393              info->cred->cr_prison != fp->f_cred->cr_prison)) {
1394                 return(0);
1395         }
1396
1397         /*
1398          * If the file pointer matches then mark it for revocation.  The
1399          * flag is currently only used by unp_revoke_gc().
1400          *
1401          * info->count is a heuristic and can race in a SMP environment.
1402          */
1403         if (info->data == fp->f_data && info->type == fp->f_type) {
1404                 atomic_set_int(&fp->f_flag, FREVOKED);
1405                 info->count += fp->f_count;
1406                 if (fp->f_msgcount)
1407                         ++info->intransit;
1408         }
1409         return(0);
1410 }
1411
1412 /*
1413  * Locate matching file pointers via process descriptor tables.
1414  */
1415 static int
1416 fdrevoke_proc_callback(struct proc *p, void *vinfo)
1417 {
1418         struct fdrevoke_info *info = vinfo;
1419         struct filedesc *fdp;
1420         struct file *fp;
1421         int n;
1422
1423         if (p->p_stat == SIDL || p->p_stat == SZOMB)
1424                 return(0);
1425         if (info->cred->cr_prison &&
1426             info->cred->cr_prison != p->p_ucred->cr_prison) {
1427                 return(0);
1428         }
1429
1430         /*
1431          * If the controlling terminal of the process matches the
1432          * vnode being revoked we clear the controlling terminal.
1433          *
1434          * The normal spec_close() may not catch this because it
1435          * uses curproc instead of p.
1436          */
1437         if (p->p_session && info->type == DTYPE_VNODE &&
1438             info->data == p->p_session->s_ttyvp) {
1439                 p->p_session->s_ttyvp = NULL;
1440                 vrele(info->data);
1441         }
1442
1443         /*
1444          * Softref the fdp to prevent it from being destroyed
1445          */
1446         spin_lock(&p->p_spin);
1447         if ((fdp = p->p_fd) == NULL) {
1448                 spin_unlock(&p->p_spin);
1449                 return(0);
1450         }
1451         atomic_add_int(&fdp->fd_softrefs, 1);
1452         spin_unlock(&p->p_spin);
1453
1454         /*
1455          * Locate and close any matching file descriptors.
1456          */
1457         spin_lock(&fdp->fd_spin);
1458         for (n = 0; n < fdp->fd_nfiles; ++n) {
1459                 if ((fp = fdp->fd_files[n].fp) == NULL)
1460                         continue;
1461                 if (fp->f_flag & FREVOKED) {
1462                         fhold(info->nfp);
1463                         fdp->fd_files[n].fp = info->nfp;
1464                         spin_unlock(&fdp->fd_spin);
1465                         knote_fdclose(fp, fdp, n);      /* XXX */
1466                         closef(fp, p);
1467                         spin_lock(&fdp->fd_spin);
1468                         --info->count;
1469                 }
1470         }
1471         spin_unlock(&fdp->fd_spin);
1472         atomic_subtract_int(&fdp->fd_softrefs, 1);
1473         return(0);
1474 }
1475
1476 /*
1477  * falloc:
1478  *      Create a new open file structure and reserve a file decriptor
1479  *      for the process that refers to it.
1480  *
1481  *      Root creds are checked using lp, or assumed if lp is NULL.  If
1482  *      resultfd is non-NULL then lp must also be non-NULL.  No file
1483  *      descriptor is reserved (and no process context is needed) if
1484  *      resultfd is NULL.
1485  *
1486  *      A file pointer with a refcount of 1 is returned.  Note that the
1487  *      file pointer is NOT associated with the descriptor.  If falloc
1488  *      returns success, fsetfd() MUST be called to either associate the
1489  *      file pointer or clear the reservation.
1490  *
1491  * MPSAFE
1492  */
1493 int
1494 falloc(struct lwp *lp, struct file **resultfp, int *resultfd)
1495 {
1496         static struct timeval lastfail;
1497         static int curfail;
1498         struct file *fp;
1499         struct ucred *cred = lp ? lp->lwp_thread->td_ucred : proc0.p_ucred;
1500         int error;
1501
1502         fp = NULL;
1503
1504         /*
1505          * Handle filetable full issues and root overfill.
1506          */
1507         if (nfiles >= maxfiles - maxfilesrootres &&
1508             (cred->cr_ruid != 0 || nfiles >= maxfiles)) {
1509                 if (ppsratecheck(&lastfail, &curfail, 1)) {
1510                         kprintf("kern.maxfiles limit exceeded by uid %d, "
1511                                 "please see tuning(7).\n",
1512                                 cred->cr_ruid);
1513                 }
1514                 error = ENFILE;
1515                 goto done;
1516         }
1517
1518         /*
1519          * Allocate a new file descriptor.
1520          */
1521         fp = kmalloc(sizeof(struct file), M_FILE, M_WAITOK | M_ZERO);
1522         spin_init(&fp->f_spin);
1523         SLIST_INIT(&fp->f_klist);
1524         fp->f_count = 1;
1525         fp->f_ops = &badfileops;
1526         fp->f_seqcount = 1;
1527         fsetcred(fp, cred);
1528         spin_lock(&filehead_spin);
1529         nfiles++;
1530         LIST_INSERT_HEAD(&filehead, fp, f_list);
1531         spin_unlock(&filehead_spin);
1532         if (resultfd) {
1533                 if ((error = fdalloc(lp->lwp_proc, 0, resultfd)) != 0) {
1534                         fdrop(fp);
1535                         fp = NULL;
1536                 }
1537         } else {
1538                 error = 0;
1539         }
1540 done:
1541         *resultfp = fp;
1542         return (error);
1543 }
1544
1545 /*
1546  * Check for races against a file descriptor by determining that the
1547  * file pointer is still associated with the specified file descriptor,
1548  * and a close is not currently in progress.
1549  *
1550  * MPSAFE
1551  */
1552 int
1553 checkfdclosed(struct filedesc *fdp, int fd, struct file *fp)
1554 {
1555         int error;
1556
1557         spin_lock(&fdp->fd_spin);
1558         if ((unsigned)fd >= fdp->fd_nfiles || fp != fdp->fd_files[fd].fp)
1559                 error = EBADF;
1560         else
1561                 error = 0;
1562         spin_unlock(&fdp->fd_spin);
1563         return (error);
1564 }
1565
1566 /*
1567  * Associate a file pointer with a previously reserved file descriptor.
1568  * This function always succeeds.
1569  *
1570  * If fp is NULL, the file descriptor is returned to the pool.
1571  */
1572
1573 /*
1574  * MPSAFE (exclusive spinlock must be held on call)
1575  */
1576 static void
1577 fsetfd_locked(struct filedesc *fdp, struct file *fp, int fd)
1578 {
1579         KKASSERT((unsigned)fd < fdp->fd_nfiles);
1580         KKASSERT(fdp->fd_files[fd].reserved != 0);
1581         if (fp) {
1582                 fhold(fp);
1583                 fdp->fd_files[fd].fp = fp;
1584                 fdp->fd_files[fd].reserved = 0;
1585         } else {
1586                 fdp->fd_files[fd].reserved = 0;
1587                 fdreserve_locked(fdp, fd, -1);
1588                 fdfixup_locked(fdp, fd);
1589         }
1590 }
1591
1592 /*
1593  * MPSAFE
1594  */
1595 void
1596 fsetfd(struct filedesc *fdp, struct file *fp, int fd)
1597 {
1598         spin_lock(&fdp->fd_spin);
1599         fsetfd_locked(fdp, fp, fd);
1600         spin_unlock(&fdp->fd_spin);
1601 }
1602
1603 /*
1604  * MPSAFE (exclusive spinlock must be held on call)
1605  */
1606 static 
1607 struct file *
1608 funsetfd_locked(struct filedesc *fdp, int fd)
1609 {
1610         struct file *fp;
1611
1612         if ((unsigned)fd >= fdp->fd_nfiles)
1613                 return (NULL);
1614         if ((fp = fdp->fd_files[fd].fp) == NULL)
1615                 return (NULL);
1616         fdp->fd_files[fd].fp = NULL;
1617         fdp->fd_files[fd].fileflags = 0;
1618
1619         fdreserve_locked(fdp, fd, -1);
1620         fdfixup_locked(fdp, fd);
1621         return(fp);
1622 }
1623
1624 /*
1625  * MPSAFE
1626  */
1627 int
1628 fgetfdflags(struct filedesc *fdp, int fd, int *flagsp)
1629 {
1630         int error;
1631
1632         spin_lock(&fdp->fd_spin);
1633         if (((u_int)fd) >= fdp->fd_nfiles) {
1634                 error = EBADF;
1635         } else if (fdp->fd_files[fd].fp == NULL) {
1636                 error = EBADF;
1637         } else {
1638                 *flagsp = fdp->fd_files[fd].fileflags;
1639                 error = 0;
1640         }
1641         spin_unlock(&fdp->fd_spin);
1642         return (error);
1643 }
1644
1645 /*
1646  * MPSAFE
1647  */
1648 int
1649 fsetfdflags(struct filedesc *fdp, int fd, int add_flags)
1650 {
1651         int error;
1652
1653         spin_lock(&fdp->fd_spin);
1654         if (((u_int)fd) >= fdp->fd_nfiles) {
1655                 error = EBADF;
1656         } else if (fdp->fd_files[fd].fp == NULL) {
1657                 error = EBADF;
1658         } else {
1659                 fdp->fd_files[fd].fileflags |= add_flags;
1660                 error = 0;
1661         }
1662         spin_unlock(&fdp->fd_spin);
1663         return (error);
1664 }
1665
1666 /*
1667  * MPSAFE
1668  */
1669 int
1670 fclrfdflags(struct filedesc *fdp, int fd, int rem_flags)
1671 {
1672         int error;
1673
1674         spin_lock(&fdp->fd_spin);
1675         if (((u_int)fd) >= fdp->fd_nfiles) {
1676                 error = EBADF;
1677         } else if (fdp->fd_files[fd].fp == NULL) {
1678                 error = EBADF;
1679         } else {
1680                 fdp->fd_files[fd].fileflags &= ~rem_flags;
1681                 error = 0;
1682         }
1683         spin_unlock(&fdp->fd_spin);
1684         return (error);
1685 }
1686
1687 /*
1688  * Set/Change/Clear the creds for a fp and synchronize the uidinfo.
1689  */
1690 void
1691 fsetcred(struct file *fp, struct ucred *ncr)
1692 {
1693         struct ucred *ocr;
1694         struct uidinfo *uip;
1695
1696         ocr = fp->f_cred;
1697         if (ocr == NULL || ncr == NULL || ocr->cr_uidinfo != ncr->cr_uidinfo) {
1698                 if (ocr) {
1699                         uip = ocr->cr_uidinfo;
1700                         atomic_add_int(&uip->ui_openfiles, -1);
1701                 }
1702                 if (ncr) {
1703                         uip = ncr->cr_uidinfo;
1704                         atomic_add_int(&uip->ui_openfiles, 1);
1705                 }
1706         }
1707         if (ncr)
1708                 crhold(ncr);
1709         fp->f_cred = ncr;
1710         if (ocr)
1711                 crfree(ocr);
1712 }
1713
1714 /*
1715  * Free a file descriptor.
1716  */
1717 static
1718 void
1719 ffree(struct file *fp)
1720 {
1721         KASSERT((fp->f_count == 0), ("ffree: fp_fcount not 0!"));
1722         spin_lock(&filehead_spin);
1723         LIST_REMOVE(fp, f_list);
1724         nfiles--;
1725         spin_unlock(&filehead_spin);
1726         fsetcred(fp, NULL);
1727         if (fp->f_nchandle.ncp)
1728             cache_drop(&fp->f_nchandle);
1729         kfree(fp, M_FILE);
1730 }
1731
1732 /*
1733  * called from init_main, initialize filedesc0 for proc0.
1734  */
1735 void
1736 fdinit_bootstrap(struct proc *p0, struct filedesc *fdp0, int cmask)
1737 {
1738         p0->p_fd = fdp0;
1739         p0->p_fdtol = NULL;
1740         fdp0->fd_refcnt = 1;
1741         fdp0->fd_cmask = cmask;
1742         fdp0->fd_files = fdp0->fd_builtin_files;
1743         fdp0->fd_nfiles = NDFILE;
1744         fdp0->fd_lastfile = -1;
1745         spin_init(&fdp0->fd_spin);
1746 }
1747
1748 /*
1749  * Build a new filedesc structure.
1750  *
1751  * NOT MPSAFE (vref)
1752  */
1753 struct filedesc *
1754 fdinit(struct proc *p)
1755 {
1756         struct filedesc *newfdp;
1757         struct filedesc *fdp = p->p_fd;
1758
1759         newfdp = kmalloc(sizeof(struct filedesc), M_FILEDESC, M_WAITOK|M_ZERO);
1760         spin_lock(&fdp->fd_spin);
1761         if (fdp->fd_cdir) {
1762                 newfdp->fd_cdir = fdp->fd_cdir;
1763                 vref(newfdp->fd_cdir);
1764                 cache_copy(&fdp->fd_ncdir, &newfdp->fd_ncdir);
1765         }
1766
1767         /*
1768          * rdir may not be set in e.g. proc0 or anything vm_fork'd off of
1769          * proc0, but should unconditionally exist in other processes.
1770          */
1771         if (fdp->fd_rdir) {
1772                 newfdp->fd_rdir = fdp->fd_rdir;
1773                 vref(newfdp->fd_rdir);
1774                 cache_copy(&fdp->fd_nrdir, &newfdp->fd_nrdir);
1775         }
1776         if (fdp->fd_jdir) {
1777                 newfdp->fd_jdir = fdp->fd_jdir;
1778                 vref(newfdp->fd_jdir);
1779                 cache_copy(&fdp->fd_njdir, &newfdp->fd_njdir);
1780         }
1781         spin_unlock(&fdp->fd_spin);
1782
1783         /* Create the file descriptor table. */
1784         newfdp->fd_refcnt = 1;
1785         newfdp->fd_cmask = cmask;
1786         newfdp->fd_files = newfdp->fd_builtin_files;
1787         newfdp->fd_nfiles = NDFILE;
1788         newfdp->fd_lastfile = -1;
1789         spin_init(&newfdp->fd_spin);
1790
1791         return (newfdp);
1792 }
1793
1794 /*
1795  * Share a filedesc structure.
1796  *
1797  * MPSAFE
1798  */
1799 struct filedesc *
1800 fdshare(struct proc *p)
1801 {
1802         struct filedesc *fdp;
1803
1804         fdp = p->p_fd;
1805         spin_lock(&fdp->fd_spin);
1806         fdp->fd_refcnt++;
1807         spin_unlock(&fdp->fd_spin);
1808         return (fdp);
1809 }
1810
1811 /*
1812  * Copy a filedesc structure.
1813  *
1814  * MPSAFE
1815  */
1816 struct filedesc *
1817 fdcopy(struct proc *p)
1818 {
1819         struct filedesc *fdp = p->p_fd;
1820         struct filedesc *newfdp;
1821         struct fdnode *fdnode;
1822         int i;
1823         int ni;
1824
1825         /*
1826          * Certain daemons might not have file descriptors. 
1827          */
1828         if (fdp == NULL)
1829                 return (NULL);
1830
1831         /*
1832          * Allocate the new filedesc and fd_files[] array.  This can race
1833          * with operations by other threads on the fdp so we have to be
1834          * careful.
1835          */
1836         newfdp = kmalloc(sizeof(struct filedesc), M_FILEDESC, M_WAITOK | M_ZERO);
1837 again:
1838         spin_lock(&fdp->fd_spin);
1839         if (fdp->fd_lastfile < NDFILE) {
1840                 newfdp->fd_files = newfdp->fd_builtin_files;
1841                 i = NDFILE;
1842         } else {
1843                 /*
1844                  * We have to allocate (N^2-1) entries for our in-place
1845                  * binary tree.  Allow the table to shrink.
1846                  */
1847                 i = fdp->fd_nfiles;
1848                 ni = (i - 1) / 2;
1849                 while (ni > fdp->fd_lastfile && ni > NDFILE) {
1850                         i = ni;
1851                         ni = (i - 1) / 2;
1852                 }
1853                 spin_unlock(&fdp->fd_spin);
1854                 newfdp->fd_files = kmalloc(i * sizeof(struct fdnode),
1855                                           M_FILEDESC, M_WAITOK | M_ZERO);
1856
1857                 /*
1858                  * Check for race, retry
1859                  */
1860                 spin_lock(&fdp->fd_spin);
1861                 if (i <= fdp->fd_lastfile) {
1862                         spin_unlock(&fdp->fd_spin);
1863                         kfree(newfdp->fd_files, M_FILEDESC);
1864                         goto again;
1865                 }
1866         }
1867
1868         /*
1869          * Dup the remaining fields. vref() and cache_hold() can be
1870          * safely called while holding the read spinlock on fdp.
1871          *
1872          * The read spinlock on fdp is still being held.
1873          *
1874          * NOTE: vref and cache_hold calls for the case where the vnode
1875          * or cache entry already has at least one ref may be called
1876          * while holding spin locks.
1877          */
1878         if ((newfdp->fd_cdir = fdp->fd_cdir) != NULL) {
1879                 vref(newfdp->fd_cdir);
1880                 cache_copy(&fdp->fd_ncdir, &newfdp->fd_ncdir);
1881         }
1882         /*
1883          * We must check for fd_rdir here, at least for now because
1884          * the init process is created before we have access to the
1885          * rootvode to take a reference to it.
1886          */
1887         if ((newfdp->fd_rdir = fdp->fd_rdir) != NULL) {
1888                 vref(newfdp->fd_rdir);
1889                 cache_copy(&fdp->fd_nrdir, &newfdp->fd_nrdir);
1890         }
1891         if ((newfdp->fd_jdir = fdp->fd_jdir) != NULL) {
1892                 vref(newfdp->fd_jdir);
1893                 cache_copy(&fdp->fd_njdir, &newfdp->fd_njdir);
1894         }
1895         newfdp->fd_refcnt = 1;
1896         newfdp->fd_nfiles = i;
1897         newfdp->fd_lastfile = fdp->fd_lastfile;
1898         newfdp->fd_freefile = fdp->fd_freefile;
1899         newfdp->fd_cmask = fdp->fd_cmask;
1900         spin_init(&newfdp->fd_spin);
1901
1902         /*
1903          * Copy the descriptor table through (i).  This also copies the
1904          * allocation state.   Then go through and ref the file pointers
1905          * and clean up any KQ descriptors.
1906          *
1907          * kq descriptors cannot be copied.  Since we haven't ref'd the
1908          * copied files yet we can ignore the return value from funsetfd().
1909          *
1910          * The read spinlock on fdp is still being held.
1911          */
1912         bcopy(fdp->fd_files, newfdp->fd_files, i * sizeof(struct fdnode));
1913         for (i = 0 ; i < newfdp->fd_nfiles; ++i) {
1914                 fdnode = &newfdp->fd_files[i];
1915                 if (fdnode->reserved) {
1916                         fdreserve_locked(newfdp, i, -1);
1917                         fdnode->reserved = 0;
1918                         fdfixup_locked(newfdp, i);
1919                 } else if (fdnode->fp) {
1920                         if (fdnode->fp->f_type == DTYPE_KQUEUE) {
1921                                 (void)funsetfd_locked(newfdp, i);
1922                         } else {
1923                                 fhold(fdnode->fp);
1924                         }
1925                 }
1926         }
1927         spin_unlock(&fdp->fd_spin);
1928         return (newfdp);
1929 }
1930
1931 /*
1932  * Release a filedesc structure.
1933  *
1934  * NOT MPSAFE (MPSAFE for refs > 1, but the final cleanup code is not MPSAFE)
1935  */
1936 void
1937 fdfree(struct proc *p, struct filedesc *repl)
1938 {
1939         struct filedesc *fdp;
1940         struct fdnode *fdnode;
1941         int i;
1942         struct filedesc_to_leader *fdtol;
1943         struct file *fp;
1944         struct vnode *vp;
1945         struct flock lf;
1946
1947         /*
1948          * Certain daemons might not have file descriptors.
1949          */
1950         fdp = p->p_fd;
1951         if (fdp == NULL) {
1952                 p->p_fd = repl;
1953                 return;
1954         }
1955
1956         /*
1957          * Severe messing around to follow.
1958          */
1959         spin_lock(&fdp->fd_spin);
1960
1961         /* Check for special need to clear POSIX style locks */
1962         fdtol = p->p_fdtol;
1963         if (fdtol != NULL) {
1964                 KASSERT(fdtol->fdl_refcount > 0,
1965                         ("filedesc_to_refcount botch: fdl_refcount=%d",
1966                          fdtol->fdl_refcount));
1967                 if (fdtol->fdl_refcount == 1 &&
1968                     (p->p_leader->p_flag & P_ADVLOCK) != 0) {
1969                         for (i = 0; i <= fdp->fd_lastfile; ++i) {
1970                                 fdnode = &fdp->fd_files[i];
1971                                 if (fdnode->fp == NULL ||
1972                                     fdnode->fp->f_type != DTYPE_VNODE) {
1973                                         continue;
1974                                 }
1975                                 fp = fdnode->fp;
1976                                 fhold(fp);
1977                                 spin_unlock(&fdp->fd_spin);
1978
1979                                 lf.l_whence = SEEK_SET;
1980                                 lf.l_start = 0;
1981                                 lf.l_len = 0;
1982                                 lf.l_type = F_UNLCK;
1983                                 vp = (struct vnode *)fp->f_data;
1984                                 (void) VOP_ADVLOCK(vp,
1985                                                    (caddr_t)p->p_leader,
1986                                                    F_UNLCK,
1987                                                    &lf,
1988                                                    F_POSIX);
1989                                 fdrop(fp);
1990                                 spin_lock(&fdp->fd_spin);
1991                         }
1992                 }
1993         retry:
1994                 if (fdtol->fdl_refcount == 1) {
1995                         if (fdp->fd_holdleaderscount > 0 &&
1996                             (p->p_leader->p_flag & P_ADVLOCK) != 0) {
1997                                 /*
1998                                  * close() or do_dup() has cleared a reference
1999                                  * in a shared file descriptor table.
2000                                  */
2001                                 fdp->fd_holdleaderswakeup = 1;
2002                                 ssleep(&fdp->fd_holdleaderscount,
2003                                        &fdp->fd_spin, 0, "fdlhold", 0);
2004                                 goto retry;
2005                         }
2006                         if (fdtol->fdl_holdcount > 0) {
2007                                 /* 
2008                                  * Ensure that fdtol->fdl_leader
2009                                  * remains valid in closef().
2010                                  */
2011                                 fdtol->fdl_wakeup = 1;
2012                                 ssleep(fdtol, &fdp->fd_spin, 0, "fdlhold", 0);
2013                                 goto retry;
2014                         }
2015                 }
2016                 fdtol->fdl_refcount--;
2017                 if (fdtol->fdl_refcount == 0 &&
2018                     fdtol->fdl_holdcount == 0) {
2019                         fdtol->fdl_next->fdl_prev = fdtol->fdl_prev;
2020                         fdtol->fdl_prev->fdl_next = fdtol->fdl_next;
2021                 } else {
2022                         fdtol = NULL;
2023                 }
2024                 p->p_fdtol = NULL;
2025                 if (fdtol != NULL) {
2026                         spin_unlock(&fdp->fd_spin);
2027                         kfree(fdtol, M_FILEDESC_TO_LEADER);
2028                         spin_lock(&fdp->fd_spin);
2029                 }
2030         }
2031         if (--fdp->fd_refcnt > 0) {
2032                 spin_unlock(&fdp->fd_spin);
2033                 spin_lock(&p->p_spin);
2034                 p->p_fd = repl;
2035                 spin_unlock(&p->p_spin);
2036                 return;
2037         }
2038
2039         /*
2040          * Even though we are the last reference to the structure allproc
2041          * scans may still reference the structure.  Maintain proper
2042          * locks until we can replace p->p_fd.
2043          *
2044          * Also note that kqueue's closef still needs to reference the
2045          * fdp via p->p_fd, so we have to close the descriptors before
2046          * we replace p->p_fd.
2047          */
2048         for (i = 0; i <= fdp->fd_lastfile; ++i) {
2049                 if (fdp->fd_files[i].fp) {
2050                         fp = funsetfd_locked(fdp, i);
2051                         if (fp) {
2052                                 spin_unlock(&fdp->fd_spin);
2053                                 if (SLIST_FIRST(&fp->f_klist))
2054                                         knote_fdclose(fp, fdp, i);
2055                                 closef(fp, p);
2056                                 spin_lock(&fdp->fd_spin);
2057                         }
2058                 }
2059         }
2060         spin_unlock(&fdp->fd_spin);
2061
2062         /*
2063          * Interlock against an allproc scan operations (typically frevoke).
2064          */
2065         spin_lock(&p->p_spin);
2066         p->p_fd = repl;
2067         spin_unlock(&p->p_spin);
2068
2069         /*
2070          * Wait for any softrefs to go away.  This race rarely occurs so
2071          * we can use a non-critical-path style poll/sleep loop.  The
2072          * race only occurs against allproc scans.
2073          *
2074          * No new softrefs can occur with the fdp disconnected from the
2075          * process.
2076          */
2077         if (fdp->fd_softrefs) {
2078                 kprintf("pid %d: Warning, fdp race avoided\n", p->p_pid);
2079                 while (fdp->fd_softrefs)
2080                         tsleep(&fdp->fd_softrefs, 0, "fdsoft", 1);
2081         }
2082
2083         if (fdp->fd_files != fdp->fd_builtin_files)
2084                 kfree(fdp->fd_files, M_FILEDESC);
2085         if (fdp->fd_cdir) {
2086                 cache_drop(&fdp->fd_ncdir);
2087                 vrele(fdp->fd_cdir);
2088         }
2089         if (fdp->fd_rdir) {
2090                 cache_drop(&fdp->fd_nrdir);
2091                 vrele(fdp->fd_rdir);
2092         }
2093         if (fdp->fd_jdir) {
2094                 cache_drop(&fdp->fd_njdir);
2095                 vrele(fdp->fd_jdir);
2096         }
2097         kfree(fdp, M_FILEDESC);
2098 }
2099
2100 /*
2101  * Retrieve and reference the file pointer associated with a descriptor.
2102  *
2103  * MPSAFE
2104  */
2105 struct file *
2106 holdfp(struct filedesc *fdp, int fd, int flag)
2107 {
2108         struct file* fp;
2109
2110         spin_lock(&fdp->fd_spin);
2111         if (((u_int)fd) >= fdp->fd_nfiles) {
2112                 fp = NULL;
2113                 goto done;
2114         }
2115         if ((fp = fdp->fd_files[fd].fp) == NULL)
2116                 goto done;
2117         if ((fp->f_flag & flag) == 0 && flag != -1) {
2118                 fp = NULL;
2119                 goto done;
2120         }
2121         fhold(fp);
2122 done:
2123         spin_unlock(&fdp->fd_spin);
2124         return (fp);
2125 }
2126
2127 /*
2128  * holdsock() - load the struct file pointer associated
2129  * with a socket into *fpp.  If an error occurs, non-zero
2130  * will be returned and *fpp will be set to NULL.
2131  *
2132  * MPSAFE
2133  */
2134 int
2135 holdsock(struct filedesc *fdp, int fd, struct file **fpp)
2136 {
2137         struct file *fp;
2138         int error;
2139
2140         spin_lock(&fdp->fd_spin);
2141         if ((unsigned)fd >= fdp->fd_nfiles) {
2142                 error = EBADF;
2143                 fp = NULL;
2144                 goto done;
2145         }
2146         if ((fp = fdp->fd_files[fd].fp) == NULL) {
2147                 error = EBADF;
2148                 goto done;
2149         }
2150         if (fp->f_type != DTYPE_SOCKET) {
2151                 error = ENOTSOCK;
2152                 goto done;
2153         }
2154         fhold(fp);
2155         error = 0;
2156 done:
2157         spin_unlock(&fdp->fd_spin);
2158         *fpp = fp;
2159         return (error);
2160 }
2161
2162 /*
2163  * Convert a user file descriptor to a held file pointer.
2164  *
2165  * MPSAFE
2166  */
2167 int
2168 holdvnode(struct filedesc *fdp, int fd, struct file **fpp)
2169 {
2170         struct file *fp;
2171         int error;
2172
2173         spin_lock(&fdp->fd_spin);
2174         if ((unsigned)fd >= fdp->fd_nfiles) {
2175                 error = EBADF;
2176                 fp = NULL;
2177                 goto done;
2178         }
2179         if ((fp = fdp->fd_files[fd].fp) == NULL) {
2180                 error = EBADF;
2181                 goto done;
2182         }
2183         if (fp->f_type != DTYPE_VNODE && fp->f_type != DTYPE_FIFO) {
2184                 fp = NULL;
2185                 error = EINVAL;
2186                 goto done;
2187         }
2188         fhold(fp);
2189         error = 0;
2190 done:
2191         spin_unlock(&fdp->fd_spin);
2192         *fpp = fp;
2193         return (error);
2194 }
2195
2196 /*
2197  * For setugid programs, we don't want to people to use that setugidness
2198  * to generate error messages which write to a file which otherwise would
2199  * otherwise be off-limits to the process.
2200  *
2201  * This is a gross hack to plug the hole.  A better solution would involve
2202  * a special vop or other form of generalized access control mechanism.  We
2203  * go ahead and just reject all procfs file systems accesses as dangerous.
2204  *
2205  * Since setugidsafety calls this only for fd 0, 1 and 2, this check is
2206  * sufficient.  We also don't for check setugidness since we know we are.
2207  */
2208 static int
2209 is_unsafe(struct file *fp)
2210 {
2211         if (fp->f_type == DTYPE_VNODE && 
2212             ((struct vnode *)(fp->f_data))->v_tag == VT_PROCFS)
2213                 return (1);
2214         return (0);
2215 }
2216
2217 /*
2218  * Make this setguid thing safe, if at all possible.
2219  *
2220  * NOT MPSAFE - scans fdp without spinlocks, calls knote_fdclose()
2221  */
2222 void
2223 setugidsafety(struct proc *p)
2224 {
2225         struct filedesc *fdp = p->p_fd;
2226         int i;
2227
2228         /* Certain daemons might not have file descriptors. */
2229         if (fdp == NULL)
2230                 return;
2231
2232         /*
2233          * note: fdp->fd_files may be reallocated out from under us while
2234          * we are blocked in a close.  Be careful!
2235          */
2236         for (i = 0; i <= fdp->fd_lastfile; i++) {
2237                 if (i > 2)
2238                         break;
2239                 if (fdp->fd_files[i].fp && is_unsafe(fdp->fd_files[i].fp)) {
2240                         struct file *fp;
2241
2242                         /*
2243                          * NULL-out descriptor prior to close to avoid
2244                          * a race while close blocks.
2245                          */
2246                         if ((fp = funsetfd_locked(fdp, i)) != NULL) {
2247                                 knote_fdclose(fp, fdp, i);
2248                                 closef(fp, p);
2249                         }
2250                 }
2251         }
2252 }
2253
2254 /*
2255  * Close any files on exec?
2256  *
2257  * NOT MPSAFE - scans fdp without spinlocks, calls knote_fdclose()
2258  */
2259 void
2260 fdcloseexec(struct proc *p)
2261 {
2262         struct filedesc *fdp = p->p_fd;
2263         int i;
2264
2265         /* Certain daemons might not have file descriptors. */
2266         if (fdp == NULL)
2267                 return;
2268
2269         /*
2270          * We cannot cache fd_files since operations may block and rip
2271          * them out from under us.
2272          */
2273         for (i = 0; i <= fdp->fd_lastfile; i++) {
2274                 if (fdp->fd_files[i].fp != NULL &&
2275                     (fdp->fd_files[i].fileflags & UF_EXCLOSE)) {
2276                         struct file *fp;
2277
2278                         /*
2279                          * NULL-out descriptor prior to close to avoid
2280                          * a race while close blocks.
2281                          */
2282                         if ((fp = funsetfd_locked(fdp, i)) != NULL) {
2283                                 knote_fdclose(fp, fdp, i);
2284                                 closef(fp, p);
2285                         }
2286                 }
2287         }
2288 }
2289
2290 /*
2291  * It is unsafe for set[ug]id processes to be started with file
2292  * descriptors 0..2 closed, as these descriptors are given implicit
2293  * significance in the Standard C library.  fdcheckstd() will create a
2294  * descriptor referencing /dev/null for each of stdin, stdout, and
2295  * stderr that is not already open.
2296  *
2297  * NOT MPSAFE - calls falloc, vn_open, etc
2298  */
2299 int
2300 fdcheckstd(struct lwp *lp)
2301 {
2302         struct nlookupdata nd;
2303         struct filedesc *fdp;
2304         struct file *fp;
2305         int retval;
2306         int i, error, flags, devnull;
2307
2308         fdp = lp->lwp_proc->p_fd;
2309         if (fdp == NULL)
2310                 return (0);
2311         devnull = -1;
2312         error = 0;
2313         for (i = 0; i < 3; i++) {
2314                 if (fdp->fd_files[i].fp != NULL)
2315                         continue;
2316                 if (devnull < 0) {
2317                         if ((error = falloc(lp, &fp, &devnull)) != 0)
2318                                 break;
2319
2320                         error = nlookup_init(&nd, "/dev/null", UIO_SYSSPACE,
2321                                                 NLC_FOLLOW|NLC_LOCKVP);
2322                         flags = FREAD | FWRITE;
2323                         if (error == 0)
2324                                 error = vn_open(&nd, fp, flags, 0);
2325                         if (error == 0)
2326                                 fsetfd(fdp, fp, devnull);
2327                         else
2328                                 fsetfd(fdp, NULL, devnull);
2329                         fdrop(fp);
2330                         nlookup_done(&nd);
2331                         if (error)
2332                                 break;
2333                         KKASSERT(i == devnull);
2334                 } else {
2335                         error = kern_dup(DUP_FIXED, devnull, i, &retval);
2336                         if (error != 0)
2337                                 break;
2338                 }
2339         }
2340         return (error);
2341 }
2342
2343 /*
2344  * Internal form of close.
2345  * Decrement reference count on file structure.
2346  * Note: td and/or p may be NULL when closing a file
2347  * that was being passed in a message.
2348  *
2349  * MPALMOSTSAFE - acquires mplock for VOP operations
2350  */
2351 int
2352 closef(struct file *fp, struct proc *p)
2353 {
2354         struct vnode *vp;
2355         struct flock lf;
2356         struct filedesc_to_leader *fdtol;
2357
2358         if (fp == NULL)
2359                 return (0);
2360
2361         /*
2362          * POSIX record locking dictates that any close releases ALL
2363          * locks owned by this process.  This is handled by setting
2364          * a flag in the unlock to free ONLY locks obeying POSIX
2365          * semantics, and not to free BSD-style file locks.
2366          * If the descriptor was in a message, POSIX-style locks
2367          * aren't passed with the descriptor.
2368          */
2369         if (p != NULL && fp->f_type == DTYPE_VNODE &&
2370             (((struct vnode *)fp->f_data)->v_flag & VMAYHAVELOCKS)
2371         ) {
2372                 if ((p->p_leader->p_flag & P_ADVLOCK) != 0) {
2373                         lf.l_whence = SEEK_SET;
2374                         lf.l_start = 0;
2375                         lf.l_len = 0;
2376                         lf.l_type = F_UNLCK;
2377                         vp = (struct vnode *)fp->f_data;
2378                         (void) VOP_ADVLOCK(vp, (caddr_t)p->p_leader, F_UNLCK,
2379                                            &lf, F_POSIX);
2380                 }
2381                 fdtol = p->p_fdtol;
2382                 if (fdtol != NULL) {
2383                         lwkt_gettoken(&p->p_token);
2384                         /*
2385                          * Handle special case where file descriptor table
2386                          * is shared between multiple process leaders.
2387                          */
2388                         for (fdtol = fdtol->fdl_next;
2389                              fdtol != p->p_fdtol;
2390                              fdtol = fdtol->fdl_next) {
2391                                 if ((fdtol->fdl_leader->p_flag &
2392                                      P_ADVLOCK) == 0)
2393                                         continue;
2394                                 fdtol->fdl_holdcount++;
2395                                 lf.l_whence = SEEK_SET;
2396                                 lf.l_start = 0;
2397                                 lf.l_len = 0;
2398                                 lf.l_type = F_UNLCK;
2399                                 vp = (struct vnode *)fp->f_data;
2400                                 (void) VOP_ADVLOCK(vp,
2401                                                    (caddr_t)fdtol->fdl_leader,
2402                                                    F_UNLCK, &lf, F_POSIX);
2403                                 fdtol->fdl_holdcount--;
2404                                 if (fdtol->fdl_holdcount == 0 &&
2405                                     fdtol->fdl_wakeup != 0) {
2406                                         fdtol->fdl_wakeup = 0;
2407                                         wakeup(fdtol);
2408                                 }
2409                         }
2410                         lwkt_reltoken(&p->p_token);
2411                 }
2412         }
2413         return (fdrop(fp));
2414 }
2415
2416 /*
2417  * MPSAFE
2418  *
2419  * fhold() can only be called if f_count is already at least 1 (i.e. the
2420  * caller of fhold() already has a reference to the file pointer in some
2421  * manner or other). 
2422  *
2423  * f_count is not spin-locked.  Instead, atomic ops are used for
2424  * incrementing, decrementing, and handling the 1->0 transition.
2425  */
2426 void
2427 fhold(struct file *fp)
2428 {
2429         atomic_add_int(&fp->f_count, 1);
2430 }
2431
2432 /*
2433  * fdrop() - drop a reference to a descriptor
2434  *
2435  * MPALMOSTSAFE - acquires mplock for final close sequence
2436  */
2437 int
2438 fdrop(struct file *fp)
2439 {
2440         struct flock lf;
2441         struct vnode *vp;
2442         int error;
2443
2444         /*
2445          * A combined fetch and subtract is needed to properly detect
2446          * 1->0 transitions, otherwise two cpus dropping from a ref
2447          * count of 2 might both try to run the 1->0 code.
2448          */
2449         if (atomic_fetchadd_int(&fp->f_count, -1) > 1)
2450                 return (0);
2451
2452         KKASSERT(SLIST_FIRST(&fp->f_klist) == NULL);
2453
2454         /*
2455          * The last reference has gone away, we own the fp structure free
2456          * and clear.
2457          */
2458         if (fp->f_count < 0)
2459                 panic("fdrop: count < 0");
2460         if ((fp->f_flag & FHASLOCK) && fp->f_type == DTYPE_VNODE &&
2461             (((struct vnode *)fp->f_data)->v_flag & VMAYHAVELOCKS)
2462         ) {
2463                 lf.l_whence = SEEK_SET;
2464                 lf.l_start = 0;
2465                 lf.l_len = 0;
2466                 lf.l_type = F_UNLCK;
2467                 vp = (struct vnode *)fp->f_data;
2468                 (void) VOP_ADVLOCK(vp, (caddr_t)fp, F_UNLCK, &lf, 0);
2469         }
2470         if (fp->f_ops != &badfileops)
2471                 error = fo_close(fp);
2472         else
2473                 error = 0;
2474         ffree(fp);
2475         return (error);
2476 }
2477
2478 /*
2479  * Apply an advisory lock on a file descriptor.
2480  *
2481  * Just attempt to get a record lock of the requested type on
2482  * the entire file (l_whence = SEEK_SET, l_start = 0, l_len = 0).
2483  *
2484  * MPALMOSTSAFE
2485  */
2486 int
2487 sys_flock(struct flock_args *uap)
2488 {
2489         struct proc *p = curproc;
2490         struct file *fp;
2491         struct vnode *vp;
2492         struct flock lf;
2493         int error;
2494
2495         if ((fp = holdfp(p->p_fd, uap->fd, -1)) == NULL)
2496                 return (EBADF);
2497         if (fp->f_type != DTYPE_VNODE) {
2498                 error = EOPNOTSUPP;
2499                 goto done;
2500         }
2501         vp = (struct vnode *)fp->f_data;
2502         lf.l_whence = SEEK_SET;
2503         lf.l_start = 0;
2504         lf.l_len = 0;
2505         if (uap->how & LOCK_UN) {
2506                 lf.l_type = F_UNLCK;
2507                 fp->f_flag &= ~FHASLOCK;
2508                 error = VOP_ADVLOCK(vp, (caddr_t)fp, F_UNLCK, &lf, 0);
2509                 goto done;
2510         }
2511         if (uap->how & LOCK_EX)
2512                 lf.l_type = F_WRLCK;
2513         else if (uap->how & LOCK_SH)
2514                 lf.l_type = F_RDLCK;
2515         else {
2516                 error = EBADF;
2517                 goto done;
2518         }
2519         fp->f_flag |= FHASLOCK;
2520         if (uap->how & LOCK_NB)
2521                 error = VOP_ADVLOCK(vp, (caddr_t)fp, F_SETLK, &lf, 0);
2522         else
2523                 error = VOP_ADVLOCK(vp, (caddr_t)fp, F_SETLK, &lf, F_WAIT);
2524 done:
2525         fdrop(fp);
2526         return (error);
2527 }
2528
2529 /*
2530  * File Descriptor pseudo-device driver (/dev/fd/).
2531  *
2532  * Opening minor device N dup()s the file (if any) connected to file
2533  * descriptor N belonging to the calling process.  Note that this driver
2534  * consists of only the ``open()'' routine, because all subsequent
2535  * references to this file will be direct to the other driver.
2536  */
2537 static int
2538 fdopen(struct dev_open_args *ap)
2539 {
2540         thread_t td = curthread;
2541
2542         KKASSERT(td->td_lwp != NULL);
2543
2544         /*
2545          * XXX Kludge: set curlwp->lwp_dupfd to contain the value of the
2546          * the file descriptor being sought for duplication. The error
2547          * return ensures that the vnode for this device will be released
2548          * by vn_open. Open will detect this special error and take the
2549          * actions in dupfdopen below. Other callers of vn_open or VOP_OPEN
2550          * will simply report the error.
2551          */
2552         td->td_lwp->lwp_dupfd = minor(ap->a_head.a_dev);
2553         return (ENODEV);
2554 }
2555
2556 /*
2557  * The caller has reserved the file descriptor dfd for us.  On success we
2558  * must fsetfd() it.  On failure the caller will clean it up.
2559  *
2560  * MPSAFE
2561  */
2562 int
2563 dupfdopen(struct filedesc *fdp, int dfd, int sfd, int mode, int error)
2564 {
2565         struct file *wfp;
2566         struct file *xfp;
2567         int werror;
2568
2569         if ((wfp = holdfp(fdp, sfd, -1)) == NULL)
2570                 return (EBADF);
2571
2572         /*
2573          * Close a revoke/dup race.  Duping a descriptor marked as revoked
2574          * will dup a dummy descriptor instead of the real one.
2575          */
2576         if (wfp->f_flag & FREVOKED) {
2577                 kprintf("Warning: attempt to dup() a revoked descriptor\n");
2578                 fdrop(wfp);
2579                 wfp = NULL;
2580                 werror = falloc(NULL, &wfp, NULL);
2581                 if (werror)
2582                         return (werror);
2583         }
2584
2585         /*
2586          * There are two cases of interest here.
2587          *
2588          * For ENODEV simply dup sfd to file descriptor dfd and return.
2589          *
2590          * For ENXIO steal away the file structure from sfd and store it
2591          * dfd.  sfd is effectively closed by this operation.
2592          *
2593          * Any other error code is just returned.
2594          */
2595         switch (error) {
2596         case ENODEV:
2597                 /*
2598                  * Check that the mode the file is being opened for is a
2599                  * subset of the mode of the existing descriptor.
2600                  */
2601                 if (((mode & (FREAD|FWRITE)) | wfp->f_flag) != wfp->f_flag) {
2602                         error = EACCES;
2603                         break;
2604                 }
2605                 spin_lock(&fdp->fd_spin);
2606                 fdp->fd_files[dfd].fileflags = fdp->fd_files[sfd].fileflags;
2607                 fsetfd_locked(fdp, wfp, dfd);
2608                 spin_unlock(&fdp->fd_spin);
2609                 error = 0;
2610                 break;
2611         case ENXIO:
2612                 /*
2613                  * Steal away the file pointer from dfd, and stuff it into indx.
2614                  */
2615                 spin_lock(&fdp->fd_spin);
2616                 fdp->fd_files[dfd].fileflags = fdp->fd_files[sfd].fileflags;
2617                 fsetfd(fdp, wfp, dfd);
2618                 if ((xfp = funsetfd_locked(fdp, sfd)) != NULL) {
2619                         spin_unlock(&fdp->fd_spin);
2620                         fdrop(xfp);
2621                 } else {
2622                         spin_unlock(&fdp->fd_spin);
2623                 }
2624                 error = 0;
2625                 break;
2626         default:
2627                 break;
2628         }
2629         fdrop(wfp);
2630         return (error);
2631 }
2632
2633 /*
2634  * NOT MPSAFE - I think these refer to a common file descriptor table
2635  * and we need to spinlock that to link fdtol in.
2636  */
2637 struct filedesc_to_leader *
2638 filedesc_to_leader_alloc(struct filedesc_to_leader *old,
2639                          struct proc *leader)
2640 {
2641         struct filedesc_to_leader *fdtol;
2642         
2643         fdtol = kmalloc(sizeof(struct filedesc_to_leader), 
2644                         M_FILEDESC_TO_LEADER, M_WAITOK | M_ZERO);
2645         fdtol->fdl_refcount = 1;
2646         fdtol->fdl_holdcount = 0;
2647         fdtol->fdl_wakeup = 0;
2648         fdtol->fdl_leader = leader;
2649         if (old != NULL) {
2650                 fdtol->fdl_next = old->fdl_next;
2651                 fdtol->fdl_prev = old;
2652                 old->fdl_next = fdtol;
2653                 fdtol->fdl_next->fdl_prev = fdtol;
2654         } else {
2655                 fdtol->fdl_next = fdtol;
2656                 fdtol->fdl_prev = fdtol;
2657         }
2658         return fdtol;
2659 }
2660
2661 /*
2662  * Scan all file pointers in the system.  The callback is made with
2663  * the master list spinlock held exclusively.
2664  *
2665  * MPSAFE
2666  */
2667 void
2668 allfiles_scan_exclusive(int (*callback)(struct file *, void *), void *data)
2669 {
2670         struct file *fp;
2671         int res;
2672
2673         spin_lock(&filehead_spin);
2674         LIST_FOREACH(fp, &filehead, f_list) {
2675                 res = callback(fp, data);
2676                 if (res < 0)
2677                         break;
2678         }
2679         spin_unlock(&filehead_spin);
2680 }
2681
2682 /*
2683  * Get file structures.
2684  *
2685  * NOT MPSAFE - process list scan, SYSCTL_OUT (probably not mpsafe)
2686  */
2687
2688 struct sysctl_kern_file_info {
2689         int count;
2690         int error;
2691         struct sysctl_req *req;
2692 };
2693
2694 static int sysctl_kern_file_callback(struct proc *p, void *data);
2695
2696 static int
2697 sysctl_kern_file(SYSCTL_HANDLER_ARGS)
2698 {
2699         struct sysctl_kern_file_info info;
2700
2701         /*
2702          * Note: because the number of file descriptors is calculated
2703          * in different ways for sizing vs returning the data,
2704          * there is information leakage from the first loop.  However,
2705          * it is of a similar order of magnitude to the leakage from
2706          * global system statistics such as kern.openfiles.
2707          *
2708          * When just doing a count, note that we cannot just count
2709          * the elements and add f_count via the filehead list because 
2710          * threaded processes share their descriptor table and f_count might
2711          * still be '1' in that case.
2712          *
2713          * Since the SYSCTL op can block, we must hold the process to
2714          * prevent it being ripped out from under us either in the 
2715          * file descriptor loop or in the greater LIST_FOREACH.  The
2716          * process may be in varying states of disrepair.  If the process
2717          * is in SZOMB we may have caught it just as it is being removed
2718          * from the allproc list, we must skip it in that case to maintain
2719          * an unbroken chain through the allproc list.
2720          */
2721         info.count = 0;
2722         info.error = 0;
2723         info.req = req;
2724         allproc_scan(sysctl_kern_file_callback, &info);
2725
2726         /*
2727          * When just calculating the size, overestimate a bit to try to
2728          * prevent system activity from causing the buffer-fill call 
2729          * to fail later on.
2730          */
2731         if (req->oldptr == NULL) {
2732                 info.count = (info.count + 16) + (info.count / 10);
2733                 info.error = SYSCTL_OUT(req, NULL,
2734                                         info.count * sizeof(struct kinfo_file));
2735         }
2736         return (info.error);
2737 }
2738
2739 static int
2740 sysctl_kern_file_callback(struct proc *p, void *data)
2741 {
2742         struct sysctl_kern_file_info *info = data;
2743         struct kinfo_file kf;
2744         struct filedesc *fdp;
2745         struct file *fp;
2746         uid_t uid;
2747         int n;
2748
2749         if (p->p_stat == SIDL || p->p_stat == SZOMB)
2750                 return(0);
2751         if (!PRISON_CHECK(info->req->td->td_ucred, p->p_ucred) != 0)
2752                 return(0);
2753
2754         /*
2755          * Softref the fdp to prevent it from being destroyed
2756          */
2757         spin_lock(&p->p_spin);
2758         if ((fdp = p->p_fd) == NULL) {
2759                 spin_unlock(&p->p_spin);
2760                 return(0);
2761         }
2762         atomic_add_int(&fdp->fd_softrefs, 1);
2763         spin_unlock(&p->p_spin);
2764
2765         /*
2766          * The fdp's own spinlock prevents the contents from being
2767          * modified.
2768          */
2769         spin_lock(&fdp->fd_spin);
2770         for (n = 0; n < fdp->fd_nfiles; ++n) {
2771                 if ((fp = fdp->fd_files[n].fp) == NULL)
2772                         continue;
2773                 if (info->req->oldptr == NULL) {
2774                         ++info->count;
2775                 } else {
2776                         uid = p->p_ucred ? p->p_ucred->cr_uid : -1;
2777                         kcore_make_file(&kf, fp, p->p_pid, uid, n);
2778                         spin_unlock(&fdp->fd_spin);
2779                         info->error = SYSCTL_OUT(info->req, &kf, sizeof(kf));
2780                         spin_lock(&fdp->fd_spin);
2781                         if (info->error)
2782                                 break;
2783                 }
2784         }
2785         spin_unlock(&fdp->fd_spin);
2786         atomic_subtract_int(&fdp->fd_softrefs, 1);
2787         if (info->error)
2788                 return(-1);
2789         return(0);
2790 }
2791
2792 SYSCTL_PROC(_kern, KERN_FILE, file, CTLTYPE_OPAQUE|CTLFLAG_RD,
2793     0, 0, sysctl_kern_file, "S,file", "Entire file table");
2794
2795 SYSCTL_INT(_kern, OID_AUTO, minfilesperproc, CTLFLAG_RW,
2796     &minfilesperproc, 0, "Minimum files allowed open per process");
2797 SYSCTL_INT(_kern, KERN_MAXFILESPERPROC, maxfilesperproc, CTLFLAG_RW, 
2798     &maxfilesperproc, 0, "Maximum files allowed open per process");
2799 SYSCTL_INT(_kern, OID_AUTO, maxfilesperuser, CTLFLAG_RW,
2800     &maxfilesperuser, 0, "Maximum files allowed open per user");
2801
2802 SYSCTL_INT(_kern, KERN_MAXFILES, maxfiles, CTLFLAG_RW, 
2803     &maxfiles, 0, "Maximum number of files");
2804
2805 SYSCTL_INT(_kern, OID_AUTO, maxfilesrootres, CTLFLAG_RW, 
2806     &maxfilesrootres, 0, "Descriptors reserved for root use");
2807
2808 SYSCTL_INT(_kern, OID_AUTO, openfiles, CTLFLAG_RD, 
2809         &nfiles, 0, "System-wide number of open files");
2810
2811 static void
2812 fildesc_drvinit(void *unused)
2813 {
2814         int fd;
2815
2816         for (fd = 0; fd < NUMFDESC; fd++) {
2817                 make_dev(&fildesc_ops, fd,
2818                          UID_BIN, GID_BIN, 0666, "fd/%d", fd);
2819         }
2820
2821         make_dev(&fildesc_ops, 0, UID_ROOT, GID_WHEEL, 0666, "stdin");
2822         make_dev(&fildesc_ops, 1, UID_ROOT, GID_WHEEL, 0666, "stdout");
2823         make_dev(&fildesc_ops, 2, UID_ROOT, GID_WHEEL, 0666, "stderr");
2824 }
2825
2826 /*
2827  * MPSAFE
2828  */
2829 struct fileops badfileops = {
2830         .fo_read = badfo_readwrite,
2831         .fo_write = badfo_readwrite,
2832         .fo_ioctl = badfo_ioctl,
2833         .fo_kqfilter = badfo_kqfilter,
2834         .fo_stat = badfo_stat,
2835         .fo_close = badfo_close,
2836         .fo_shutdown = badfo_shutdown
2837 };
2838
2839 int
2840 badfo_readwrite(
2841         struct file *fp,
2842         struct uio *uio,
2843         struct ucred *cred,
2844         int flags
2845 ) {
2846         return (EBADF);
2847 }
2848
2849 int
2850 badfo_ioctl(struct file *fp, u_long com, caddr_t data,
2851             struct ucred *cred, struct sysmsg *msgv)
2852 {
2853         return (EBADF);
2854 }
2855
2856 /*
2857  * Must return an error to prevent registration, typically
2858  * due to a revoked descriptor (file_filtops assigned).
2859  */
2860 int
2861 badfo_kqfilter(struct file *fp, struct knote *kn)
2862 {
2863         return (EOPNOTSUPP);
2864 }
2865
2866 /*
2867  * MPSAFE
2868  */
2869 int
2870 badfo_stat(struct file *fp, struct stat *sb, struct ucred *cred)
2871 {
2872         return (EBADF);
2873 }
2874
2875 /*
2876  * MPSAFE
2877  */
2878 int
2879 badfo_close(struct file *fp)
2880 {
2881         return (EBADF);
2882 }
2883
2884 /*
2885  * MPSAFE
2886  */
2887 int
2888 badfo_shutdown(struct file *fp, int how)
2889 {
2890         return (EBADF);
2891 }
2892
2893 /*
2894  * MPSAFE
2895  */
2896 int
2897 nofo_shutdown(struct file *fp, int how)
2898 {
2899         return (EOPNOTSUPP);
2900 }
2901
2902 SYSINIT(fildescdev,SI_SUB_DRIVERS,SI_ORDER_MIDDLE+CDEV_MAJOR,
2903                                         fildesc_drvinit,NULL)