Merge from vendor branch OPENSSL:
[dragonfly.git] / sys / vfs / fdesc / fdesc_vfsops.c
1 /*
2  * Copyright (c) 1992, 1993, 1995
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software donated to Berkeley by
6  * Jan-Simon Pendry.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
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 the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgement:
18  *      This product includes software developed by the University of
19  *      California, Berkeley and its contributors.
20  * 4. Neither the name of the University nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  *
36  *      @(#)fdesc_vfsops.c      8.4 (Berkeley) 1/21/94
37  *
38  * $FreeBSD: src/sys/miscfs/fdesc/fdesc_vfsops.c,v 1.22.2.3 2002/08/23 17:42:39 njl Exp $
39  * $DragonFly: src/sys/vfs/fdesc/fdesc_vfsops.c,v 1.14 2005/06/22 01:33:32 dillon Exp $
40  */
41
42 /*
43  * /dev/fd Filesystem
44  */
45
46 #include <sys/param.h>
47 #include <sys/systm.h>
48 #include <sys/filedesc.h>
49 #include <sys/kernel.h>
50 #include <sys/lock.h>
51 #include <sys/malloc.h>
52 #include <sys/mount.h>
53 #include <sys/proc.h>
54 #include <sys/resourcevar.h>
55 #include <sys/socket.h>
56 #include <sys/vnode.h>
57
58 #include "fdesc.h"
59
60 extern struct vnodeopv_entry_desc fdesc_vnodeop_entries[];
61
62 static MALLOC_DEFINE(M_FDESCMNT, "FDESC mount", "FDESC mount structure");
63
64 static int      fdesc_mount (struct mount *mp, char *path, caddr_t data,
65                                  struct thread *td);
66 static int      fdesc_unmount (struct mount *mp, int mntflags,
67                                    struct thread *td);
68 static int      fdesc_statfs (struct mount *mp, struct statfs *sbp,
69                                   struct thread *td);
70   
71 /*
72  * Mount the per-process file descriptors (/dev/fd)
73  */
74 static int
75 fdesc_mount(struct mount *mp, char *path, caddr_t data, struct thread *td)
76 {
77         int error = 0;
78         struct fdescmount *fmp;
79         struct vnode *rvp;
80
81         if (path == NULL)
82                 panic("fdesc_mount: cannot mount as root");
83
84         /*
85          * Update is a no-op
86          */
87         if (mp->mnt_flag & MNT_UPDATE)
88                 return (EOPNOTSUPP);
89
90         vfs_add_vnodeops(mp, &mp->mnt_vn_norm_ops, fdesc_vnodeop_entries);
91
92         error = fdesc_allocvp(Froot, FD_ROOT, mp, &rvp, td);
93         if (error)
94                 return (error);
95
96         MALLOC(fmp, struct fdescmount *, sizeof(struct fdescmount),
97                                 M_FDESCMNT, M_WAITOK);  /* XXX */
98         rvp->v_type = VDIR;
99         rvp->v_flag |= VROOT;
100         fmp->f_root = rvp;
101         /* XXX -- don't mark as local to work around fts() problems */
102         /*mp->mnt_flag |= MNT_LOCAL;*/
103         mp->mnt_data = (qaddr_t) fmp;
104         vfs_getnewfsid(mp);
105
106         bzero(mp->mnt_stat.f_mntfromname, MNAMELEN);
107         bcopy("fdesc", mp->mnt_stat.f_mntfromname, sizeof("fdesc"));
108         (void)fdesc_statfs(mp, &mp->mnt_stat, td);
109         return (0);
110 }
111
112 static int
113 fdesc_unmount(struct mount *mp, int mntflags, struct thread *td)
114 {
115         int error;
116         int flags = 0;
117
118         if (mntflags & MNT_FORCE)
119                 flags |= FORCECLOSE;
120
121         /*
122          * Clear out buffer cache.  I don't think we
123          * ever get anything cached at this level at the
124          * moment, but who knows...
125          *
126          * There is 1 extra root vnode reference corresponding
127          * to f_root.
128          */
129         if ((error = vflush(mp, 1, flags)) != 0)
130                 return (error);
131
132         /*
133          * Finally, throw away the fdescmount structure
134          */
135         free(mp->mnt_data, M_FDESCMNT); /* XXX */
136         mp->mnt_data = 0;
137
138         return (0);
139 }
140
141 int
142 fdesc_root(struct mount *mp, struct vnode **vpp)
143 {
144         struct thread *td = curthread;  /* XXX */
145         struct vnode *vp;
146
147         /*
148          * Return locked reference to root.
149          */
150         vp = VFSTOFDESC(mp)->f_root;
151         vref(vp);
152         vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td);
153         *vpp = vp;
154         return (0);
155 }
156
157 static int
158 fdesc_statfs(struct mount *mp, struct statfs *sbp, struct thread *td)
159 {
160         struct proc *p = td->td_proc;
161         struct filedesc *fdp;
162         int lim;
163         int i;
164         int last;
165         int freefd;
166
167         KKASSERT(p);
168
169         /*
170          * Compute number of free file descriptors.
171          * [ Strange results will ensue if the open file
172          * limit is ever reduced below the current number
173          * of open files... ]
174          */
175         lim = p->p_rlimit[RLIMIT_NOFILE].rlim_cur;
176         fdp = p->p_fd;
177         last = min(fdp->fd_nfiles, lim);
178         freefd = 0;
179         for (i = fdp->fd_freefile; i < last; i++)
180                 if (fdp->fd_files[i].fp == NULL)
181                         freefd++;
182
183         /*
184          * Adjust for the fact that the fdesc array may not
185          * have been fully allocated yet.
186          */
187         if (fdp->fd_nfiles < lim)
188                 freefd += (lim - fdp->fd_nfiles);
189
190         sbp->f_flags = 0;
191         sbp->f_bsize = DEV_BSIZE;
192         sbp->f_iosize = DEV_BSIZE;
193         sbp->f_blocks = 2;              /* 1K to keep df happy */
194         sbp->f_bfree = 0;
195         sbp->f_bavail = 0;
196         sbp->f_files = lim + 1;         /* Allow for "." */
197         sbp->f_ffree = freefd;          /* See comments above */
198         if (sbp != &mp->mnt_stat) {
199                 sbp->f_type = mp->mnt_vfc->vfc_typenum;
200                 bcopy(&mp->mnt_stat.f_fsid, &sbp->f_fsid, sizeof(sbp->f_fsid));
201                 bcopy(mp->mnt_stat.f_mntfromname, sbp->f_mntfromname, MNAMELEN);
202         }
203         return (0);
204 }
205
206 static struct vfsops fdesc_vfsops = {
207         fdesc_mount,
208         vfs_stdstart,
209         fdesc_unmount,
210         fdesc_root,
211         vfs_stdquotactl,
212         fdesc_statfs,
213         vfs_stdsync,
214         vfs_stdvget,
215         vfs_stdfhtovp,
216         vfs_stdcheckexp,
217         vfs_stdvptofh,
218         fdesc_init,
219         vfs_stduninit,
220         vfs_stdextattrctl,
221 };
222
223 VFS_SET(fdesc_vfsops, fdesc, VFCF_SYNTHETIC);