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