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