3af7e13618e2ef2b8800671c68dbae0bd5509007
[dragonfly.git] / sys / vfs / portal / portal_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  *      @(#)portal_vfsops.c     8.11 (Berkeley) 5/14/95
37  *
38  * $FreeBSD: src/sys/miscfs/portal/portal_vfsops.c,v 1.26.2.2 2001/07/26 20:37:16 iedowse Exp $
39  */
40
41 /*
42  * Portal Filesystem
43  */
44
45 #include <sys/param.h>
46 #include <sys/systm.h>
47 #include <sys/kernel.h>
48 #include <sys/proc.h>
49 #include <sys/filedesc.h>
50 #include <sys/file.h>
51 #include <sys/vnode.h>
52 #include <sys/mount.h>
53 #include <sys/malloc.h>
54 #include <sys/socket.h>
55 #include <sys/socketvar.h>
56 #include <sys/protosw.h>
57 #include <sys/domain.h>
58 #include "portal.h"
59
60 extern struct vop_ops portal_vnode_vops;
61
62 static MALLOC_DEFINE(M_PORTALFSMNT, "PORTAL mount", "PORTAL mount structure");
63
64 static int      portal_mount (struct mount *mp, char *path, caddr_t data,
65                                   struct ucred *cred);
66 static int      portal_unmount (struct mount *mp, int mntflags);
67 static int      portal_root (struct mount *mp, struct vnode **vpp);
68 static int      portal_statfs (struct mount *mp, struct statfs *sbp,
69                                 struct ucred *);
70
71 /*
72  * Mount the per-process file descriptors (/dev/fd)
73  */
74 static int
75 portal_mount(struct mount *mp, char *path, caddr_t data, struct ucred *cred)
76 {
77         struct file *fp;
78         struct portal_args args;
79         struct portalmount *fmp;
80         struct socket *so;
81         struct vnode *rvp;
82         struct portalnode *pn;
83         size_t size;
84         int error;
85
86         /*
87          * Update is a no-op
88          */
89         if (mp->mnt_flag & MNT_UPDATE)
90                 return (EOPNOTSUPP);
91
92         error = copyin(data, (caddr_t) &args, sizeof(struct portal_args));
93         if (error)
94                 return (error);
95
96         KKASSERT(curproc != NULL);
97         error = holdsock(curproc->p_fd, args.pa_socket, &fp);
98         if (error)
99                 return (error);
100         so = (struct socket *) fp->f_data;
101         if (so->so_proto->pr_domain->dom_family != AF_UNIX) {
102                 fdrop(fp);
103                 return (ESOCKTNOSUPPORT);
104         }
105
106         pn = kmalloc(sizeof(struct portalnode), M_TEMP, M_WAITOK);
107
108         fmp = kmalloc(sizeof(struct portalmount), M_PORTALFSMNT, M_WAITOK);     /* XXX */
109
110          
111         vfs_add_vnodeops(mp, &portal_vnode_vops, &mp->mnt_vn_norm_ops);
112
113         error = getnewvnode(VT_PORTAL, mp, &rvp, 0, 0);
114         if (error) {
115                 kfree(fmp, M_PORTALFSMNT);
116                 kfree(pn, M_TEMP);
117                 fdrop(fp);
118                 return (error);
119         }
120
121         rvp->v_data = pn;
122         rvp->v_type = VDIR;
123         vsetflags(rvp, VROOT);
124         VTOPORTAL(rvp)->pt_arg = 0;
125         VTOPORTAL(rvp)->pt_size = 0;
126         VTOPORTAL(rvp)->pt_fileid = PORTAL_ROOTFILEID;
127         fmp->pm_root = rvp;
128         fmp->pm_server = fp; fp->f_count++;
129
130         mp->mnt_flag |= MNT_LOCAL;
131         mp->mnt_data = (qaddr_t) fmp;
132         vfs_getnewfsid(mp);
133
134         (void)copyinstr(args.pa_config,
135             mp->mnt_stat.f_mntfromname, MNAMELEN - 1, &size);
136         bzero(mp->mnt_stat.f_mntfromname + size, MNAMELEN - size);
137
138 #ifdef notdef
139         bzero(mp->mnt_stat.f_mntfromname, MNAMELEN);
140         bcopy("portal", mp->mnt_stat.f_mntfromname, sizeof("portal"));
141 #endif
142         vx_unlock(rvp);
143
144         (void)portal_statfs(mp, &mp->mnt_stat, cred);
145         fdrop(fp);
146         return (0);
147 }
148
149 static int
150 portal_unmount(struct mount *mp, int mntflags)
151 {
152         int error, flags = 0;
153
154
155         if (mntflags & MNT_FORCE)
156                 flags |= FORCECLOSE;
157
158         /*
159          * Clear out buffer cache.  I don't think we
160          * ever get anything cached at this level at the
161          * moment, but who knows...
162          */
163 #ifdef notyet
164         mntflushbuf(mp, 0);
165         if (mntinvalbuf(mp, 1))
166                 return (EBUSY);
167 #endif
168         /* There is 1 extra root vnode reference (pm_root). */
169         error = vflush(mp, 1, flags);
170         if (error)
171                 return (error);
172
173         /*
174          * Shutdown the socket.  This will cause the select in the
175          * daemon to wake up, and then the accept will get ECONNABORTED
176          * which it interprets as a request to go and bury itself.
177          */
178         soshutdown((struct socket *) VFSTOPORTAL(mp)->pm_server->f_data,
179                 SHUT_RDWR);
180         /*
181          * Discard reference to underlying file.  Must call closef because
182          * this may be the last reference.
183          */
184         closef(VFSTOPORTAL(mp)->pm_server, NULL);
185         /*
186          * Finally, throw away the portalmount structure
187          */
188         kfree(mp->mnt_data, M_PORTALFSMNT);     /* XXX */
189         mp->mnt_data = 0;
190         return (0);
191 }
192
193 static int
194 portal_root(struct mount *mp, struct vnode **vpp)
195 {
196         struct vnode *vp;
197         int error;
198
199         /*
200          * Return locked reference to root.
201          */
202         vp = VFSTOPORTAL(mp)->pm_root;
203         error = vget(vp, LK_EXCLUSIVE | LK_RETRY);
204         if (error == 0)
205                 *vpp = vp;
206         return (error);
207 }
208
209 static int
210 portal_statfs(struct mount *mp, struct statfs *sbp, struct ucred *cred)
211 {
212         sbp->f_flags = 0;
213         sbp->f_bsize = DEV_BSIZE;
214         sbp->f_iosize = DEV_BSIZE;
215         sbp->f_blocks = 2;              /* 1K to keep df happy */
216         sbp->f_bfree = 0;
217         sbp->f_bavail = 0;
218         sbp->f_files = 1;               /* Allow for "." */
219         sbp->f_ffree = 0;               /* See comments above */
220         if (sbp != &mp->mnt_stat) {
221                 sbp->f_type = mp->mnt_vfc->vfc_typenum;
222                 bcopy(&mp->mnt_stat.f_fsid, &sbp->f_fsid, sizeof(sbp->f_fsid));
223                 bcopy(mp->mnt_stat.f_mntfromname, sbp->f_mntfromname, MNAMELEN);
224         }
225         return (0);
226 }
227
228 static struct vfsops portal_vfsops = {
229         .vfs_mount =            portal_mount,
230         .vfs_unmount =          portal_unmount,
231         .vfs_root =             portal_root,
232         .vfs_statfs =           portal_statfs,
233         .vfs_sync =             vfs_stdsync
234 };
235
236 VFS_SET(portal_vfsops, portal, VFCF_SYNTHETIC);
237 MODULE_VERSION(portal, 1);