sys/vfs/hammer: cleanup using existing macro
[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. Neither the name of the University nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  *
32  *      @(#)fdesc_vfsops.c      8.4 (Berkeley) 1/21/94
33  *
34  * $FreeBSD: src/sys/miscfs/fdesc/fdesc_vfsops.c,v 1.22.2.3 2002/08/23 17:42:39 njl Exp $
35  */
36
37 /*
38  * /dev/fd Filesystem
39  */
40
41 #include <sys/param.h>
42 #include <sys/systm.h>
43 #include <sys/filedesc.h>
44 #include <sys/kernel.h>
45 #include <sys/lock.h>
46 #include <sys/malloc.h>
47 #include <sys/mount.h>
48 #include <sys/proc.h>
49 #include <sys/resourcevar.h>
50 #include <sys/socket.h>
51 #include <sys/vnode.h>
52
53 #include "fdesc.h"
54
55 extern struct vop_ops fdesc_vnode_vops;
56
57 static MALLOC_DEFINE(M_FDESCMNT, "FDESC mount", "FDESC mount structure");
58
59 static int      fdesc_mount (struct mount *mp, char *path, caddr_t data,
60                                 struct ucred *cred);
61 static int      fdesc_unmount (struct mount *mp, int mntflags);
62 static int      fdesc_statfs (struct mount *mp, struct statfs *sbp,
63                                 struct ucred *cred);
64   
65 /*
66  * Mount the per-process file descriptors (/dev/fd)
67  */
68 static int
69 fdesc_mount(struct mount *mp, char *path, caddr_t data, struct ucred *cred)
70 {
71         int error = 0;
72         struct fdescmount *fmp;
73         struct vnode *rvp;
74
75         if (path == NULL)
76                 panic("fdesc_mount: cannot mount as root");
77
78         /*
79          * Update is a no-op
80          */
81         if (mp->mnt_flag & MNT_UPDATE)
82                 return (EOPNOTSUPP);
83
84         vfs_add_vnodeops(mp, &fdesc_vnode_vops, &mp->mnt_vn_norm_ops);
85
86         error = fdesc_allocvp(Froot, FD_ROOT, mp, &rvp);
87         if (error)
88                 return (error);
89
90         fmp = kmalloc(sizeof(struct fdescmount), M_FDESCMNT, M_WAITOK); /* XXX */
91         rvp->v_type = VDIR;
92         vsetflags(rvp, VROOT);
93         fmp->f_root = rvp;
94         /* XXX -- don't mark as local to work around fts() problems */
95         /*mp->mnt_flag |= MNT_LOCAL;*/
96         mp->mnt_data = (qaddr_t) fmp;
97         vfs_getnewfsid(mp);
98
99         bzero(mp->mnt_stat.f_mntfromname, MNAMELEN);
100         bcopy("fdesc", mp->mnt_stat.f_mntfromname, sizeof("fdesc"));
101         fdesc_statfs(mp, &mp->mnt_stat, cred);
102         return (0);
103 }
104
105 static int
106 fdesc_unmount(struct mount *mp, int mntflags)
107 {
108         int error;
109         int flags = 0;
110
111         if (mntflags & MNT_FORCE)
112                 flags |= FORCECLOSE;
113
114         /*
115          * Clear out buffer cache.  I don't think we
116          * ever get anything cached at this level at the
117          * moment, but who knows...
118          *
119          * There is 1 extra root vnode reference corresponding
120          * to f_root.
121          */
122         if ((error = vflush(mp, 1, flags)) != 0)
123                 return (error);
124
125         /*
126          * Finally, throw away the fdescmount structure
127          */
128         kfree(mp->mnt_data, M_FDESCMNT);        /* XXX */
129         mp->mnt_data = NULL;
130
131         return (0);
132 }
133
134 int
135 fdesc_root(struct mount *mp, struct vnode **vpp)
136 {
137         struct vnode *vp;
138         int error;
139
140         /*
141          * Return locked reference to root.
142          */
143         vp = VFSTOFDESC(mp)->f_root;
144         error = vget(vp, LK_EXCLUSIVE | LK_RETRY);
145         if (error == 0)
146                 *vpp = vp;
147         return (error);
148 }
149
150 static int
151 fdesc_statfs(struct mount *mp, struct statfs *sbp, struct ucred *cred)
152 {
153         sbp->f_flags = 0;
154         sbp->f_bsize = DEV_BSIZE;
155         sbp->f_iosize = DEV_BSIZE;
156         sbp->f_blocks = 2;              /* 1K to keep df happy */
157         sbp->f_bfree = 0;
158         sbp->f_bavail = 0;
159         sbp->f_files = 0;               /* dummy up these fields */
160         sbp->f_ffree = 0;
161         if (sbp != &mp->mnt_stat) {
162                 sbp->f_type = mp->mnt_vfc->vfc_typenum;
163                 bcopy(&mp->mnt_stat.f_fsid, &sbp->f_fsid, sizeof(sbp->f_fsid));
164                 bcopy(mp->mnt_stat.f_mntfromname, sbp->f_mntfromname, MNAMELEN);
165         }
166         return (0);
167 }
168
169 static struct vfsops fdesc_vfsops = {
170         .vfs_mount =            fdesc_mount,
171         .vfs_unmount =          fdesc_unmount,
172         .vfs_root =             fdesc_root,
173         .vfs_statfs =           fdesc_statfs,
174         .vfs_sync =             vfs_stdsync,
175         .vfs_init =             fdesc_init,
176         .vfs_uninit =           fdesc_uninit
177 };
178
179 VFS_SET(fdesc_vfsops, fdesc, VFCF_SYNTHETIC);
180 MODULE_VERSION(fdesc, 1);