c496418391f769937ee8dc2fba1011ce9d473e72
[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  */
40
41 /*
42  * /dev/fd Filesystem
43  */
44
45 #include <sys/param.h>
46 #include <sys/systm.h>
47 #include <sys/filedesc.h>
48 #include <sys/kernel.h>
49 #include <sys/lock.h>
50 #include <sys/malloc.h>
51 #include <sys/mount.h>
52 #include <sys/proc.h>
53 #include <sys/resourcevar.h>
54 #include <sys/socket.h>
55 #include <sys/vnode.h>
56
57 #include "fdesc.h"
58
59 extern struct vop_ops fdesc_vnode_vops;
60
61 static MALLOC_DEFINE(M_FDESCMNT, "FDESC mount", "FDESC mount structure");
62
63 static int      fdesc_mount (struct mount *mp, char *path, caddr_t data,
64                                 struct ucred *cred);
65 static int      fdesc_unmount (struct mount *mp, int mntflags);
66 static int      fdesc_statfs (struct mount *mp, struct statfs *sbp,
67                                 struct ucred *cred);
68   
69 /*
70  * Mount the per-process file descriptors (/dev/fd)
71  */
72 static int
73 fdesc_mount(struct mount *mp, char *path, caddr_t data, struct ucred *cred)
74 {
75         int error = 0;
76         struct fdescmount *fmp;
77         struct vnode *rvp;
78
79         if (path == NULL)
80                 panic("fdesc_mount: cannot mount as root");
81
82         /*
83          * Update is a no-op
84          */
85         if (mp->mnt_flag & MNT_UPDATE)
86                 return (EOPNOTSUPP);
87
88         vfs_add_vnodeops(mp, &fdesc_vnode_vops, &mp->mnt_vn_norm_ops);
89
90         error = fdesc_allocvp(Froot, FD_ROOT, mp, &rvp);
91         if (error)
92                 return (error);
93
94         fmp = kmalloc(sizeof(struct fdescmount), M_FDESCMNT, M_WAITOK); /* XXX */
95         rvp->v_type = VDIR;
96         vsetflags(rvp, VROOT);
97         fmp->f_root = rvp;
98         /* XXX -- don't mark as local to work around fts() problems */
99         /*mp->mnt_flag |= MNT_LOCAL;*/
100         mp->mnt_data = (qaddr_t) fmp;
101         vfs_getnewfsid(mp);
102
103         bzero(mp->mnt_stat.f_mntfromname, MNAMELEN);
104         bcopy("fdesc", mp->mnt_stat.f_mntfromname, sizeof("fdesc"));
105         fdesc_statfs(mp, &mp->mnt_stat, cred);
106         return (0);
107 }
108
109 static int
110 fdesc_unmount(struct mount *mp, int mntflags)
111 {
112         int error;
113         int flags = 0;
114
115         if (mntflags & MNT_FORCE)
116                 flags |= FORCECLOSE;
117
118         /*
119          * Clear out buffer cache.  I don't think we
120          * ever get anything cached at this level at the
121          * moment, but who knows...
122          *
123          * There is 1 extra root vnode reference corresponding
124          * to f_root.
125          */
126         if ((error = vflush(mp, 1, flags)) != 0)
127                 return (error);
128
129         /*
130          * Finally, throw away the fdescmount structure
131          */
132         kfree(mp->mnt_data, M_FDESCMNT);        /* XXX */
133         mp->mnt_data = NULL;
134
135         return (0);
136 }
137
138 int
139 fdesc_root(struct mount *mp, struct vnode **vpp)
140 {
141         struct vnode *vp;
142         int error;
143
144         /*
145          * Return locked reference to root.
146          */
147         vp = VFSTOFDESC(mp)->f_root;
148         error = vget(vp, LK_EXCLUSIVE | LK_RETRY);
149         if (error == 0)
150                 *vpp = vp;
151         return (error);
152 }
153
154 static int
155 fdesc_statfs(struct mount *mp, struct statfs *sbp, struct ucred *cred)
156 {
157         sbp->f_flags = 0;
158         sbp->f_bsize = DEV_BSIZE;
159         sbp->f_iosize = DEV_BSIZE;
160         sbp->f_blocks = 2;              /* 1K to keep df happy */
161         sbp->f_bfree = 0;
162         sbp->f_bavail = 0;
163         sbp->f_files = 0;               /* dummy up these fields */
164         sbp->f_ffree = 0;
165         if (sbp != &mp->mnt_stat) {
166                 sbp->f_type = mp->mnt_vfc->vfc_typenum;
167                 bcopy(&mp->mnt_stat.f_fsid, &sbp->f_fsid, sizeof(sbp->f_fsid));
168                 bcopy(mp->mnt_stat.f_mntfromname, sbp->f_mntfromname, MNAMELEN);
169         }
170         return (0);
171 }
172
173 static struct vfsops fdesc_vfsops = {
174         .vfs_mount =            fdesc_mount,
175         .vfs_unmount =          fdesc_unmount,
176         .vfs_root =             fdesc_root,
177         .vfs_statfs =           fdesc_statfs,
178         .vfs_sync =             vfs_stdsync,
179         .vfs_init =             fdesc_init,
180         .vfs_uninit =           fdesc_uninit
181 };
182
183 VFS_SET(fdesc_vfsops, fdesc, VFCF_SYNTHETIC);
184 MODULE_VERSION(fdesc, 1);