2 * Copyright (c) 1992, 1993, 1995
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software donated to Berkeley by
6 * the UCLA Ficus project.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
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.
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
36 * @(#)umap_vfsops.c 8.8 (Berkeley) 5/14/95
38 * $FreeBSD: src/sys/miscfs/umapfs/umap_vfsops.c,v 1.31.2.2 2001/09/11 09:49:53 kris Exp $
39 * $DragonFly: src/sys/vfs/umapfs/Attic/umap_vfsops.c,v 1.8 2003/09/23 05:03:54 dillon Exp $
44 * (See mount_umap(8) for a description of this layer.)
47 #include <sys/param.h>
48 #include <sys/systm.h>
49 #include <sys/kernel.h>
51 #include <sys/vnode.h>
52 #include <sys/mount.h>
53 #include <sys/namei.h>
54 #include <sys/malloc.h>
56 #include <vm/vm_zone.h>
58 static MALLOC_DEFINE(M_UMAPFSMNT, "UMAP mount", "UMAP mount structure");
60 static int umapfs_fhtovp (struct mount *mp, struct fid *fidp,
62 static int umapfs_checkexp (struct mount *mp, struct sockaddr *nam,
63 int *extflagsp, struct ucred **credanonp);
64 static int umapfs_mount (struct mount *mp, char *path, caddr_t data,
65 struct nameidata *ndp, struct thread *td);
66 static int umapfs_quotactl (struct mount *mp, int cmd, uid_t uid,
67 caddr_t arg, struct thread *td);
68 static int umapfs_root (struct mount *mp, struct vnode **vpp);
69 static int umapfs_start (struct mount *mp, int flags, struct thread *td);
70 static int umapfs_statfs (struct mount *mp, struct statfs *sbp,
72 static int umapfs_sync (struct mount *mp, int waitfor,
74 static int umapfs_unmount (struct mount *mp, int mntflags,
76 static int umapfs_vget (struct mount *mp, ino_t ino,
78 static int umapfs_vptofh (struct vnode *vp, struct fid *fhp);
79 static int umapfs_extattrctl (struct mount *mp, int cmd,
80 const char *attrname, caddr_t arg,
87 umapfs_mount(struct mount *mp, char *path, caddr_t data,
88 struct nameidata *ndp, struct thread *td)
90 struct umap_args args;
91 struct vnode *lowerrootvp, *vp;
92 struct vnode *umapm_rootvp;
93 struct umap_mount *amp;
103 if ((error = suser(td)) != 0)
107 printf("umapfs_mount(mp = %p)\n", (void *)mp);
113 if (mp->mnt_flag & MNT_UPDATE) {
115 /* return (VFS_MOUNT(MOUNTTOUMAPMOUNT(mp)->umapm_vfs, path, data, ndp, td));*/
121 error = copyin(data, (caddr_t)&args, sizeof(struct umap_args));
128 NDINIT(ndp, NAMEI_LOOKUP, CNP_FOLLOW | CNP_WANTPARENT | CNP_LOCKLEAF,
129 UIO_USERSPACE, args.target, td);
133 NDFREE(ndp, NDF_ONLY_PNBUF);
136 * Sanity check on lower vnode
138 lowerrootvp = ndp->ni_vp;
140 printf("vp = %p, check for VDIR...\n", (void *)lowerrootvp);
145 if (lowerrootvp->v_type != VDIR) {
151 printf("mp = %p\n", (void *)mp);
154 amp = (struct umap_mount *) malloc(sizeof(struct umap_mount),
155 M_UMAPFSMNT, M_WAITOK); /* XXX */
158 * Save reference to underlying FS
160 amp->umapm_vfs = lowerrootvp->v_mount;
163 * Now copy in the number of entries and maps for umap mapping.
165 if (args.nentries > MAPFILEENTRIES || args.gnentries >
171 amp->info_nentries = args.nentries;
172 amp->info_gnentries = args.gnentries;
173 error = copyin(args.mapdata, (caddr_t)amp->info_mapdata,
174 2*sizeof(u_long)*args.nentries);
179 printf("umap_mount:nentries %d\n",args.nentries);
180 for (i = 0; i < args.nentries; i++)
181 printf(" %lu maps to %lu\n", amp->info_mapdata[i][0],
182 amp->info_mapdata[i][1]);
185 error = copyin(args.gmapdata, (caddr_t)amp->info_gmapdata,
186 2*sizeof(u_long)*args.gnentries);
191 printf("umap_mount:gnentries %d\n",args.gnentries);
192 for (i = 0; i < args.gnentries; i++)
193 printf(" group %lu maps to %lu\n",
194 amp->info_gmapdata[i][0],
195 amp->info_gmapdata[i][1]);
200 * Save reference. Each mount also holds
201 * a reference on the root vnode.
203 error = umap_node_create(mp, lowerrootvp, &vp);
205 * Unlock the node (either the lower or the alias)
207 VOP_UNLOCK(vp, 0, td);
209 * Make sure the node alias worked
213 free(amp, M_UMAPFSMNT); /* XXX */
218 * Keep a held reference to the root vnode.
219 * It is vrele'd in umapfs_unmount.
222 umapm_rootvp->v_flag |= VROOT;
223 amp->umapm_rootvp = umapm_rootvp;
224 if (UMAPVPTOLOWERVP(umapm_rootvp)->v_mount->mnt_flag & MNT_LOCAL)
225 mp->mnt_flag |= MNT_LOCAL;
226 mp->mnt_data = (qaddr_t) amp;
229 (void) copyinstr(path, mp->mnt_stat.f_mntonname, MNAMELEN - 1, &size);
230 bzero(mp->mnt_stat.f_mntonname + size, MNAMELEN - size);
231 (void) copyinstr(args.target, mp->mnt_stat.f_mntfromname, MNAMELEN - 1,
233 bzero(mp->mnt_stat.f_mntfromname + size, MNAMELEN - size);
234 (void)umapfs_statfs(mp, &mp->mnt_stat, td);
236 printf("umapfs_mount: lower %s, alias at %s\n",
237 mp->mnt_stat.f_mntfromname, mp->mnt_stat.f_mntonname);
243 * VFS start. Nothing needed here - the start routine
244 * on the underlying filesystem will have been called
245 * when that filesystem was mounted.
248 umapfs_start(struct mount *mp, int flags, struct thread *td)
251 /* return (VFS_START(MOUNTTOUMAPMOUNT(mp)->umapm_vfs, flags, p)); */
255 * Free reference to umap layer
258 umapfs_unmount(struct mount *mp, int mntflags, struct thread *td)
264 printf("umapfs_unmount(mp = %p)\n", (void *)mp);
267 if (mntflags & MNT_FORCE)
271 * Clear out buffer cache. I don't think we
272 * ever get anything cached at this level at the
273 * moment, but who knows...
277 if (mntinvalbuf(mp, 1))
280 /* There is 1 extra root vnode reference (umapm_rootvp). */
281 error = vflush(mp, 1, flags);
286 * Finally, throw away the umap_mount structure
288 free(mp->mnt_data, M_UMAPFSMNT); /* XXX */
294 umapfs_root(struct mount *mp, struct vnode **vpp)
296 struct thread *td = curthread; /* XXX */
300 printf("umapfs_root(mp = %p, vp = %p->%p)\n",
301 (void *)mp, (void *)MOUNTTOUMAPMOUNT(mp)->umapm_rootvp,
302 (void *)UMAPVPTOLOWERVP(MOUNTTOUMAPMOUNT(mp)->umapm_rootvp));
306 * Return locked reference to root.
308 vp = MOUNTTOUMAPMOUNT(mp)->umapm_rootvp;
310 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td);
316 umapfs_quotactl(struct mount *mp, int cmd, uid_t uid,
317 caddr_t arg, struct thread *td)
319 return (VFS_QUOTACTL(MOUNTTOUMAPMOUNT(mp)->umapm_vfs, cmd, uid, arg, td));
323 umapfs_statfs(struct mount *mp, struct statfs *sbp, struct thread *td)
329 printf("umapfs_statfs(mp = %p, vp = %p->%p)\n",
330 (void *)mp, (void *)MOUNTTOUMAPMOUNT(mp)->umapm_rootvp,
331 (void *)UMAPVPTOLOWERVP(MOUNTTOUMAPMOUNT(mp)->umapm_rootvp));
334 bzero(&mstat, sizeof(mstat));
336 error = VFS_STATFS(MOUNTTOUMAPMOUNT(mp)->umapm_vfs, &mstat, td);
340 /* now copy across the "interesting" information and fake the rest */
341 sbp->f_type = mstat.f_type;
342 sbp->f_flags = mstat.f_flags;
343 sbp->f_bsize = mstat.f_bsize;
344 sbp->f_iosize = mstat.f_iosize;
345 sbp->f_blocks = mstat.f_blocks;
346 sbp->f_bfree = mstat.f_bfree;
347 sbp->f_bavail = mstat.f_bavail;
348 sbp->f_files = mstat.f_files;
349 sbp->f_ffree = mstat.f_ffree;
350 if (sbp != &mp->mnt_stat) {
351 bcopy(&mp->mnt_stat.f_fsid, &sbp->f_fsid, sizeof(sbp->f_fsid));
352 bcopy(mp->mnt_stat.f_mntonname, sbp->f_mntonname, MNAMELEN);
353 bcopy(mp->mnt_stat.f_mntfromname, sbp->f_mntfromname, MNAMELEN);
359 umapfs_sync(struct mount *mp, int waitfor, struct thread *td)
362 * XXX - Assumes no data cached at umap layer.
368 umapfs_vget(struct mount *mp, ino_t ino, struct vnode **vpp)
371 return (VFS_VGET(MOUNTTOUMAPMOUNT(mp)->umapm_vfs, ino, vpp));
375 umapfs_fhtovp(struct mount *mp, struct fid *fidp, struct vnode **vpp)
378 return (VFS_FHTOVP(MOUNTTOUMAPMOUNT(mp)->umapm_vfs, fidp, vpp));
382 umapfs_checkexp(struct mount *mp, struct sockaddr *nam, int *exflagsp,
383 struct ucred **credanonp)
386 return (VFS_CHECKEXP(MOUNTTOUMAPMOUNT(mp)->umapm_vfs, nam,
387 exflagsp, credanonp));
391 umapfs_vptofh(struct vnode *vp, struct fid *fhp)
393 return (VFS_VPTOFH(UMAPVPTOLOWERVP(vp), fhp));
397 umapfs_extattrctl(struct mount *mp, int cmd, const char *attrname,
398 caddr_t arg, struct thread *td)
400 return (VFS_EXTATTRCTL(MOUNTTOUMAPMOUNT(mp)->umapm_vfs, cmd, attrname,
405 static struct vfsops umap_vfsops = {
422 VFS_SET(umap_vfsops, umap, VFCF_LOOPBACK);