xref: /freebsd/sys/fs/nullfs/null_vfsops.c (revision 64042a76b6bf7e6b13ddca3c9f79e07bca3b3533)
1df8bae1dSRodney W. Grimes /*
2996c772fSJohn Dyson  * Copyright (c) 1992, 1993, 1995
3df8bae1dSRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
4df8bae1dSRodney W. Grimes  *
5df8bae1dSRodney W. Grimes  * This code is derived from software donated to Berkeley by
6df8bae1dSRodney W. Grimes  * Jan-Simon Pendry.
7df8bae1dSRodney W. Grimes  *
8df8bae1dSRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
9df8bae1dSRodney W. Grimes  * modification, are permitted provided that the following conditions
10df8bae1dSRodney W. Grimes  * are met:
11df8bae1dSRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
12df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
13df8bae1dSRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
14df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
15df8bae1dSRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
16df8bae1dSRodney W. Grimes  * 4. Neither the name of the University nor the names of its contributors
17df8bae1dSRodney W. Grimes  *    may be used to endorse or promote products derived from this software
18df8bae1dSRodney W. Grimes  *    without specific prior written permission.
19df8bae1dSRodney W. Grimes  *
20df8bae1dSRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21df8bae1dSRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22df8bae1dSRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23df8bae1dSRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24df8bae1dSRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25df8bae1dSRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26df8bae1dSRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27df8bae1dSRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28df8bae1dSRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29df8bae1dSRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30df8bae1dSRodney W. Grimes  * SUCH DAMAGE.
31df8bae1dSRodney W. Grimes  *
32df8bae1dSRodney W. Grimes  *	@(#)null_vfsops.c	8.2 (Berkeley) 1/21/94
33df8bae1dSRodney W. Grimes  *
34df8bae1dSRodney W. Grimes  * @(#)lofs_vfsops.c	1.2 (Berkeley) 6/18/92
35c3aac50fSPeter Wemm  * $FreeBSD$
36df8bae1dSRodney W. Grimes  */
37df8bae1dSRodney W. Grimes 
38df8bae1dSRodney W. Grimes /*
39df8bae1dSRodney W. Grimes  * Null Layer
40df8bae1dSRodney W. Grimes  * (See null_vnops.c for a description of what this does.)
41df8bae1dSRodney W. Grimes  */
42df8bae1dSRodney W. Grimes 
43df8bae1dSRodney W. Grimes #include <sys/param.h>
44df8bae1dSRodney W. Grimes #include <sys/systm.h>
454ea4f1f9SMarcel Moolenaar #include <sys/kdb.h>
46fdc0430eSMike Pritchard #include <sys/kernel.h>
47fb919e4dSMark Murray #include <sys/lock.h>
48a1c995b6SPoul-Henning Kamp #include <sys/malloc.h>
49df8bae1dSRodney W. Grimes #include <sys/mount.h>
50df8bae1dSRodney W. Grimes #include <sys/namei.h>
51fb919e4dSMark Murray #include <sys/proc.h>
52fb919e4dSMark Murray #include <sys/vnode.h>
53fb919e4dSMark Murray 
5499d300a1SRuslan Ermilov #include <fs/nullfs/null.h>
55df8bae1dSRodney W. Grimes 
56a1c995b6SPoul-Henning Kamp static MALLOC_DEFINE(M_NULLFSMNT, "NULLFS mount", "NULLFS mount structure");
57a1c995b6SPoul-Henning Kamp 
587652131bSPoul-Henning Kamp static vfs_fhtovp_t	nullfs_fhtovp;
597652131bSPoul-Henning Kamp static vfs_checkexp_t	nullfs_checkexp;
605e8c582aSPoul-Henning Kamp static vfs_mount_t	nullfs_mount;
617652131bSPoul-Henning Kamp static vfs_quotactl_t	nullfs_quotactl;
627652131bSPoul-Henning Kamp static vfs_root_t	nullfs_root;
637652131bSPoul-Henning Kamp static vfs_start_t	nullfs_start;
647652131bSPoul-Henning Kamp static vfs_sync_t	nullfs_sync;
657652131bSPoul-Henning Kamp static vfs_statfs_t	nullfs_statfs;
667652131bSPoul-Henning Kamp static vfs_unmount_t	nullfs_unmount;
677652131bSPoul-Henning Kamp static vfs_vget_t	nullfs_vget;
687652131bSPoul-Henning Kamp static vfs_vptofh_t	nullfs_vptofh;
697652131bSPoul-Henning Kamp static vfs_extattrctl_t	nullfs_extattrctl;
709b5e8b3aSBruce Evans 
71df8bae1dSRodney W. Grimes /*
72df8bae1dSRodney W. Grimes  * Mount null layer
73df8bae1dSRodney W. Grimes  */
74d4b7a369SPoul-Henning Kamp static int
755e8c582aSPoul-Henning Kamp nullfs_mount(struct mount *mp, struct thread *td)
76df8bae1dSRodney W. Grimes {
77df8bae1dSRodney W. Grimes 	int error = 0;
78df8bae1dSRodney W. Grimes 	struct vnode *lowerrootvp, *vp;
79df8bae1dSRodney W. Grimes 	struct vnode *nullm_rootvp;
80df8bae1dSRodney W. Grimes 	struct null_mount *xmp;
819fcc512cSMaxime Henrion 	char *target;
82aa56d911SMatt Jacob 	size_t size;
839fcc512cSMaxime Henrion 	int isvnunlocked = 0, len;
845e8c582aSPoul-Henning Kamp 	struct nameidata nd, *ndp = &nd;
85df8bae1dSRodney W. Grimes 
868da80660SBoris Popov 	NULLFSDEBUG("nullfs_mount(mp = %p)\n", (void *)mp);
87df8bae1dSRodney W. Grimes 
8864042a76SPoul-Henning Kamp 	if (mp->mnt_flag & MNT_ROOTFS)
8964042a76SPoul-Henning Kamp 		return (EOPNOTSUPP);
90df8bae1dSRodney W. Grimes 	/*
91df8bae1dSRodney W. Grimes 	 * Update is a no-op
92df8bae1dSRodney W. Grimes 	 */
93df8bae1dSRodney W. Grimes 	if (mp->mnt_flag & MNT_UPDATE) {
94df8bae1dSRodney W. Grimes 		return (EOPNOTSUPP);
95b40ce416SJulian Elischer 		/* return VFS_MOUNT(MOUNTTONULLMOUNT(mp)->nullm_vfs, path, data, ndp, td);*/
96df8bae1dSRodney W. Grimes 	}
97df8bae1dSRodney W. Grimes 
98df8bae1dSRodney W. Grimes 	/*
99df8bae1dSRodney W. Grimes 	 * Get argument
100df8bae1dSRodney W. Grimes 	 */
1019fcc512cSMaxime Henrion 	error = vfs_getopt(mp->mnt_optnew, "target", (void **)&target, &len);
1029fcc512cSMaxime Henrion 	if (error || target[len - 1] != '\0')
1039fcc512cSMaxime Henrion 		return (EINVAL);
104df8bae1dSRodney W. Grimes 
105df8bae1dSRodney W. Grimes 	/*
106f85e8fc5SKATO Takenori 	 * Unlock lower node to avoid deadlock.
107f85e8fc5SKATO Takenori 	 * (XXX) VOP_ISLOCKED is needed?
108f85e8fc5SKATO Takenori 	 */
109f85e8fc5SKATO Takenori 	if ((mp->mnt_vnodecovered->v_op == null_vnodeop_p) &&
1106bdfe06aSEivind Eklund 		VOP_ISLOCKED(mp->mnt_vnodecovered, NULL)) {
111b40ce416SJulian Elischer 		VOP_UNLOCK(mp->mnt_vnodecovered, 0, td);
112f85e8fc5SKATO Takenori 		isvnunlocked = 1;
113f85e8fc5SKATO Takenori 	}
114f85e8fc5SKATO Takenori 	/*
115df8bae1dSRodney W. Grimes 	 * Find lower node
116df8bae1dSRodney W. Grimes 	 */
117df8bae1dSRodney W. Grimes 	NDINIT(ndp, LOOKUP, FOLLOW|WANTPARENT|LOCKLEAF,
1189fcc512cSMaxime Henrion 		UIO_SYSSPACE, target, td);
1193a773ad0SPoul-Henning Kamp 	error = namei(ndp);
120f85e8fc5SKATO Takenori 	/*
121f85e8fc5SKATO Takenori 	 * Re-lock vnode.
122f85e8fc5SKATO Takenori 	 */
1236bdfe06aSEivind Eklund 	if (isvnunlocked && !VOP_ISLOCKED(mp->mnt_vnodecovered, NULL))
124b40ce416SJulian Elischer 		vn_lock(mp->mnt_vnodecovered, LK_EXCLUSIVE | LK_RETRY, td);
125f85e8fc5SKATO Takenori 
1263a773ad0SPoul-Henning Kamp 	if (error)
127df8bae1dSRodney W. Grimes 		return (error);
128762e6b85SEivind Eklund 	NDFREE(ndp, NDF_ONLY_PNBUF);
129df8bae1dSRodney W. Grimes 
130df8bae1dSRodney W. Grimes 	/*
131df8bae1dSRodney W. Grimes 	 * Sanity check on lower vnode
132df8bae1dSRodney W. Grimes 	 */
133df8bae1dSRodney W. Grimes 	lowerrootvp = ndp->ni_vp;
134df8bae1dSRodney W. Grimes 
135df8bae1dSRodney W. Grimes 	vrele(ndp->ni_dvp);
136c5e17d9eSKATO Takenori 	ndp->ni_dvp = NULLVP;
137df8bae1dSRodney W. Grimes 
138f85e8fc5SKATO Takenori 	/*
139f85e8fc5SKATO Takenori 	 * Check multi null mount to avoid `lock against myself' panic.
140f85e8fc5SKATO Takenori 	 */
141f85e8fc5SKATO Takenori 	if (lowerrootvp == VTONULL(mp->mnt_vnodecovered)->null_lowervp) {
1428da80660SBoris Popov 		NULLFSDEBUG("nullfs_mount: multi null mount?\n");
1436716c905SBoris Popov 		vput(lowerrootvp);
144747e9157SKATO Takenori 		return (EDEADLK);
145f85e8fc5SKATO Takenori 	}
146f85e8fc5SKATO Takenori 
147df8bae1dSRodney W. Grimes 	xmp = (struct null_mount *) malloc(sizeof(struct null_mount),
148a163d034SWarner Losh 				M_NULLFSMNT, M_WAITOK);	/* XXX */
149df8bae1dSRodney W. Grimes 
150df8bae1dSRodney W. Grimes 	/*
151df8bae1dSRodney W. Grimes 	 * Save reference to underlying FS
152df8bae1dSRodney W. Grimes 	 */
153df8bae1dSRodney W. Grimes 	xmp->nullm_vfs = lowerrootvp->v_mount;
154df8bae1dSRodney W. Grimes 
155df8bae1dSRodney W. Grimes 	/*
156df8bae1dSRodney W. Grimes 	 * Save reference.  Each mount also holds
157df8bae1dSRodney W. Grimes 	 * a reference on the root vnode.
158df8bae1dSRodney W. Grimes 	 */
1591cfdefbbSSemen Ustimenko 	error = null_nodeget(mp, lowerrootvp, &vp);
160df8bae1dSRodney W. Grimes 	/*
161df8bae1dSRodney W. Grimes 	 * Make sure the node alias worked
162df8bae1dSRodney W. Grimes 	 */
163df8bae1dSRodney W. Grimes 	if (error) {
16475cabb63SJeff Roberson 		VOP_UNLOCK(vp, 0, td);
165df8bae1dSRodney W. Grimes 		vrele(lowerrootvp);
166a1c995b6SPoul-Henning Kamp 		free(xmp, M_NULLFSMNT);	/* XXX */
167df8bae1dSRodney W. Grimes 		return (error);
168df8bae1dSRodney W. Grimes 	}
169df8bae1dSRodney W. Grimes 
170df8bae1dSRodney W. Grimes 	/*
171df8bae1dSRodney W. Grimes 	 * Keep a held reference to the root vnode.
172df8bae1dSRodney W. Grimes 	 * It is vrele'd in nullfs_unmount.
173df8bae1dSRodney W. Grimes 	 */
174df8bae1dSRodney W. Grimes 	nullm_rootvp = vp;
175e6e370a7SJeff Roberson 	nullm_rootvp->v_vflag |= VV_ROOT;
176df8bae1dSRodney W. Grimes 	xmp->nullm_rootvp = nullm_rootvp;
17775cabb63SJeff Roberson 
17875cabb63SJeff Roberson 	/*
17975cabb63SJeff Roberson 	 * Unlock the node (either the lower or the alias)
18075cabb63SJeff Roberson 	 */
18175cabb63SJeff Roberson 	VOP_UNLOCK(vp, 0, td);
18275cabb63SJeff Roberson 
183df8bae1dSRodney W. Grimes 	if (NULLVPTOLOWERVP(nullm_rootvp)->v_mount->mnt_flag & MNT_LOCAL)
184df8bae1dSRodney W. Grimes 		mp->mnt_flag |= MNT_LOCAL;
185df8bae1dSRodney W. Grimes 	mp->mnt_data = (qaddr_t) xmp;
186996c772fSJohn Dyson 	vfs_getnewfsid(mp);
187df8bae1dSRodney W. Grimes 
1889fcc512cSMaxime Henrion 	(void) copystr(target, mp->mnt_stat.f_mntfromname,
189aa56d911SMatt Jacob 	    MNAMELEN - 1, &size);
190df8bae1dSRodney W. Grimes 	bzero(mp->mnt_stat.f_mntfromname + size, MNAMELEN - size);
191b40ce416SJulian Elischer 	(void)nullfs_statfs(mp, &mp->mnt_stat, td);
1928da80660SBoris Popov 	NULLFSDEBUG("nullfs_mount: lower %s, alias at %s\n",
193df8bae1dSRodney W. Grimes 		mp->mnt_stat.f_mntfromname, mp->mnt_stat.f_mntonname);
194df8bae1dSRodney W. Grimes 	return (0);
195df8bae1dSRodney W. Grimes }
196df8bae1dSRodney W. Grimes 
197df8bae1dSRodney W. Grimes /*
198df8bae1dSRodney W. Grimes  * VFS start.  Nothing needed here - the start routine
199df8bae1dSRodney W. Grimes  * on the underlying filesystem will have been called
200df8bae1dSRodney W. Grimes  * when that filesystem was mounted.
201df8bae1dSRodney W. Grimes  */
202d4b7a369SPoul-Henning Kamp static int
203b40ce416SJulian Elischer nullfs_start(mp, flags, td)
204df8bae1dSRodney W. Grimes 	struct mount *mp;
205df8bae1dSRodney W. Grimes 	int flags;
206b40ce416SJulian Elischer 	struct thread *td;
207df8bae1dSRodney W. Grimes {
208df8bae1dSRodney W. Grimes 	return (0);
209b40ce416SJulian Elischer 	/* return VFS_START(MOUNTTONULLMOUNT(mp)->nullm_vfs, flags, td); */
210df8bae1dSRodney W. Grimes }
211df8bae1dSRodney W. Grimes 
212df8bae1dSRodney W. Grimes /*
213df8bae1dSRodney W. Grimes  * Free reference to null layer
214df8bae1dSRodney W. Grimes  */
215d4b7a369SPoul-Henning Kamp static int
216b40ce416SJulian Elischer nullfs_unmount(mp, mntflags, td)
217df8bae1dSRodney W. Grimes 	struct mount *mp;
218df8bae1dSRodney W. Grimes 	int mntflags;
219b40ce416SJulian Elischer 	struct thread *td;
220df8bae1dSRodney W. Grimes {
2218da80660SBoris Popov 	void *mntdata;
222df8bae1dSRodney W. Grimes 	int error;
223df8bae1dSRodney W. Grimes 	int flags = 0;
224df8bae1dSRodney W. Grimes 
2258da80660SBoris Popov 	NULLFSDEBUG("nullfs_unmount: mp = %p\n", (void *)mp);
226df8bae1dSRodney W. Grimes 
227996c772fSJohn Dyson 	if (mntflags & MNT_FORCE)
228df8bae1dSRodney W. Grimes 		flags |= FORCECLOSE;
229df8bae1dSRodney W. Grimes 
2300864ef1eSIan Dowse 	/* There is 1 extra root vnode reference (nullm_rootvp). */
231f257b7a5SAlfred Perlstein 	error = vflush(mp, 1, flags, td);
2323a773ad0SPoul-Henning Kamp 	if (error)
233df8bae1dSRodney W. Grimes 		return (error);
234df8bae1dSRodney W. Grimes 
235df8bae1dSRodney W. Grimes 	/*
236df8bae1dSRodney W. Grimes 	 * Finally, throw away the null_mount structure
237df8bae1dSRodney W. Grimes 	 */
2388da80660SBoris Popov 	mntdata = mp->mnt_data;
239df8bae1dSRodney W. Grimes 	mp->mnt_data = 0;
2404451405fSBoris Popov 	free(mntdata, M_NULLFSMNT);
241df8bae1dSRodney W. Grimes 	return 0;
242df8bae1dSRodney W. Grimes }
243df8bae1dSRodney W. Grimes 
244d4b7a369SPoul-Henning Kamp static int
245f257b7a5SAlfred Perlstein nullfs_root(mp, vpp, td)
246df8bae1dSRodney W. Grimes 	struct mount *mp;
247df8bae1dSRodney W. Grimes 	struct vnode **vpp;
248f257b7a5SAlfred Perlstein 	struct thread *td;
249df8bae1dSRodney W. Grimes {
250df8bae1dSRodney W. Grimes 	struct vnode *vp;
251df8bae1dSRodney W. Grimes 
2528da80660SBoris Popov 	NULLFSDEBUG("nullfs_root(mp = %p, vp = %p->%p)\n", (void *)mp,
25389785a16SBruce Evans 	    (void *)MOUNTTONULLMOUNT(mp)->nullm_rootvp,
25489785a16SBruce Evans 	    (void *)NULLVPTOLOWERVP(MOUNTTONULLMOUNT(mp)->nullm_rootvp));
255df8bae1dSRodney W. Grimes 
256df8bae1dSRodney W. Grimes 	/*
257df8bae1dSRodney W. Grimes 	 * Return locked reference to root.
258df8bae1dSRodney W. Grimes 	 */
259df8bae1dSRodney W. Grimes 	vp = MOUNTTONULLMOUNT(mp)->nullm_rootvp;
260df8bae1dSRodney W. Grimes 	VREF(vp);
2614451405fSBoris Popov 
2628da80660SBoris Popov #ifdef NULLFS_DEBUG
2636bdfe06aSEivind Eklund 	if (VOP_ISLOCKED(vp, NULL)) {
2644ea4f1f9SMarcel Moolenaar 		kdb_enter("root vnode is locked.\n");
265747e9157SKATO Takenori 		vrele(vp);
266747e9157SKATO Takenori 		return (EDEADLK);
2678da80660SBoris Popov 	}
2688da80660SBoris Popov #endif
269b40ce416SJulian Elischer 	vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td);
270df8bae1dSRodney W. Grimes 	*vpp = vp;
271df8bae1dSRodney W. Grimes 	return 0;
272df8bae1dSRodney W. Grimes }
273df8bae1dSRodney W. Grimes 
274d4b7a369SPoul-Henning Kamp static int
275b40ce416SJulian Elischer nullfs_quotactl(mp, cmd, uid, arg, td)
276df8bae1dSRodney W. Grimes 	struct mount *mp;
277df8bae1dSRodney W. Grimes 	int cmd;
278df8bae1dSRodney W. Grimes 	uid_t uid;
279df8bae1dSRodney W. Grimes 	caddr_t arg;
280b40ce416SJulian Elischer 	struct thread *td;
281df8bae1dSRodney W. Grimes {
282b40ce416SJulian Elischer 	return VFS_QUOTACTL(MOUNTTONULLMOUNT(mp)->nullm_vfs, cmd, uid, arg, td);
283df8bae1dSRodney W. Grimes }
284df8bae1dSRodney W. Grimes 
285d4b7a369SPoul-Henning Kamp static int
286b40ce416SJulian Elischer nullfs_statfs(mp, sbp, td)
287df8bae1dSRodney W. Grimes 	struct mount *mp;
288df8bae1dSRodney W. Grimes 	struct statfs *sbp;
289b40ce416SJulian Elischer 	struct thread *td;
290df8bae1dSRodney W. Grimes {
291df8bae1dSRodney W. Grimes 	int error;
292df8bae1dSRodney W. Grimes 	struct statfs mstat;
293df8bae1dSRodney W. Grimes 
2948da80660SBoris Popov 	NULLFSDEBUG("nullfs_statfs(mp = %p, vp = %p->%p)\n", (void *)mp,
29589785a16SBruce Evans 	    (void *)MOUNTTONULLMOUNT(mp)->nullm_rootvp,
29689785a16SBruce Evans 	    (void *)NULLVPTOLOWERVP(MOUNTTONULLMOUNT(mp)->nullm_rootvp));
297df8bae1dSRodney W. Grimes 
298df8bae1dSRodney W. Grimes 	bzero(&mstat, sizeof(mstat));
299df8bae1dSRodney W. Grimes 
300b40ce416SJulian Elischer 	error = VFS_STATFS(MOUNTTONULLMOUNT(mp)->nullm_vfs, &mstat, td);
301df8bae1dSRodney W. Grimes 	if (error)
302df8bae1dSRodney W. Grimes 		return (error);
303df8bae1dSRodney W. Grimes 
304df8bae1dSRodney W. Grimes 	/* now copy across the "interesting" information and fake the rest */
305df8bae1dSRodney W. Grimes 	sbp->f_type = mstat.f_type;
306df8bae1dSRodney W. Grimes 	sbp->f_flags = mstat.f_flags;
307df8bae1dSRodney W. Grimes 	sbp->f_bsize = mstat.f_bsize;
308df8bae1dSRodney W. Grimes 	sbp->f_iosize = mstat.f_iosize;
309df8bae1dSRodney W. Grimes 	sbp->f_blocks = mstat.f_blocks;
310df8bae1dSRodney W. Grimes 	sbp->f_bfree = mstat.f_bfree;
311df8bae1dSRodney W. Grimes 	sbp->f_bavail = mstat.f_bavail;
312df8bae1dSRodney W. Grimes 	sbp->f_files = mstat.f_files;
313df8bae1dSRodney W. Grimes 	sbp->f_ffree = mstat.f_ffree;
314df8bae1dSRodney W. Grimes 	if (sbp != &mp->mnt_stat) {
315df8bae1dSRodney W. Grimes 		bcopy(&mp->mnt_stat.f_fsid, &sbp->f_fsid, sizeof(sbp->f_fsid));
316df8bae1dSRodney W. Grimes 		bcopy(mp->mnt_stat.f_mntonname, sbp->f_mntonname, MNAMELEN);
317df8bae1dSRodney W. Grimes 		bcopy(mp->mnt_stat.f_mntfromname, sbp->f_mntfromname, MNAMELEN);
318df8bae1dSRodney W. Grimes 	}
319df8bae1dSRodney W. Grimes 	return (0);
320df8bae1dSRodney W. Grimes }
321df8bae1dSRodney W. Grimes 
322d4b7a369SPoul-Henning Kamp static int
323b40ce416SJulian Elischer nullfs_sync(mp, waitfor, cred, td)
324df8bae1dSRodney W. Grimes 	struct mount *mp;
325df8bae1dSRodney W. Grimes 	int waitfor;
326df8bae1dSRodney W. Grimes 	struct ucred *cred;
327b40ce416SJulian Elischer 	struct thread *td;
328df8bae1dSRodney W. Grimes {
329df8bae1dSRodney W. Grimes 	/*
330df8bae1dSRodney W. Grimes 	 * XXX - Assumes no data cached at null layer.
331df8bae1dSRodney W. Grimes 	 */
332df8bae1dSRodney W. Grimes 	return (0);
333df8bae1dSRodney W. Grimes }
334df8bae1dSRodney W. Grimes 
335d4b7a369SPoul-Henning Kamp static int
336a0595d02SKirk McKusick nullfs_vget(mp, ino, flags, vpp)
337df8bae1dSRodney W. Grimes 	struct mount *mp;
338df8bae1dSRodney W. Grimes 	ino_t ino;
339a0595d02SKirk McKusick 	int flags;
340df8bae1dSRodney W. Grimes 	struct vnode **vpp;
341df8bae1dSRodney W. Grimes {
3424451405fSBoris Popov 	int error;
343a0595d02SKirk McKusick 	error = VFS_VGET(MOUNTTONULLMOUNT(mp)->nullm_vfs, ino, flags, vpp);
3444451405fSBoris Popov 	if (error)
3454451405fSBoris Popov 		return (error);
346df8bae1dSRodney W. Grimes 
3471cfdefbbSSemen Ustimenko 	return (null_nodeget(mp, *vpp, vpp));
348df8bae1dSRodney W. Grimes }
349df8bae1dSRodney W. Grimes 
350d4b7a369SPoul-Henning Kamp static int
351c24fda81SAlfred Perlstein nullfs_fhtovp(mp, fidp, vpp)
352df8bae1dSRodney W. Grimes 	struct mount *mp;
353df8bae1dSRodney W. Grimes 	struct fid *fidp;
354df8bae1dSRodney W. Grimes 	struct vnode **vpp;
355c24fda81SAlfred Perlstein {
3564451405fSBoris Popov 	int error;
3574451405fSBoris Popov 	error = VFS_FHTOVP(MOUNTTONULLMOUNT(mp)->nullm_vfs, fidp, vpp);
3584451405fSBoris Popov 	if (error)
3594451405fSBoris Popov 		return (error);
360c24fda81SAlfred Perlstein 
3611cfdefbbSSemen Ustimenko 	return (null_nodeget(mp, *vpp, vpp));
362c24fda81SAlfred Perlstein }
363c24fda81SAlfred Perlstein 
364c24fda81SAlfred Perlstein static int
365c24fda81SAlfred Perlstein nullfs_checkexp(mp, nam, extflagsp, credanonp)
366c24fda81SAlfred Perlstein 	struct mount *mp;
367c24fda81SAlfred Perlstein 	struct sockaddr *nam;
368c24fda81SAlfred Perlstein 	int *extflagsp;
369df8bae1dSRodney W. Grimes 	struct ucred **credanonp;
370df8bae1dSRodney W. Grimes {
371df8bae1dSRodney W. Grimes 
372c24fda81SAlfred Perlstein 	return VFS_CHECKEXP(MOUNTTONULLMOUNT(mp)->nullm_vfs, nam,
373c24fda81SAlfred Perlstein 		extflagsp, credanonp);
374df8bae1dSRodney W. Grimes }
375df8bae1dSRodney W. Grimes 
376d4b7a369SPoul-Henning Kamp static int
377df8bae1dSRodney W. Grimes nullfs_vptofh(vp, fhp)
378df8bae1dSRodney W. Grimes 	struct vnode *vp;
379df8bae1dSRodney W. Grimes 	struct fid *fhp;
380df8bae1dSRodney W. Grimes {
381ff81e317SPoul-Henning Kamp 	struct vnode *lvp;
382ff81e317SPoul-Henning Kamp 
383ff81e317SPoul-Henning Kamp 	lvp = NULLVPTOLOWERVP(vp);
384ff81e317SPoul-Henning Kamp 	return VFS_VPTOFH(lvp, fhp);
385df8bae1dSRodney W. Grimes }
386df8bae1dSRodney W. Grimes 
38791f37dcbSRobert Watson static int
388b40ce416SJulian Elischer nullfs_extattrctl(mp, cmd, filename_vp, namespace, attrname, td)
38991f37dcbSRobert Watson 	struct mount *mp;
39091f37dcbSRobert Watson 	int cmd;
39170f36851SRobert Watson 	struct vnode *filename_vp;
39270f36851SRobert Watson 	int namespace;
3938f073875SRobert Watson 	const char *attrname;
394b40ce416SJulian Elischer 	struct thread *td;
39591f37dcbSRobert Watson {
39670f36851SRobert Watson 	return VFS_EXTATTRCTL(MOUNTTONULLMOUNT(mp)->nullm_vfs, cmd, filename_vp,
397b40ce416SJulian Elischer 	    namespace, attrname, td);
39891f37dcbSRobert Watson }
39991f37dcbSRobert Watson 
40091f37dcbSRobert Watson 
401d4b7a369SPoul-Henning Kamp static struct vfsops null_vfsops = {
4027652131bSPoul-Henning Kamp 	.vfs_checkexp =		nullfs_checkexp,
4037652131bSPoul-Henning Kamp 	.vfs_extattrctl =	nullfs_extattrctl,
4047652131bSPoul-Henning Kamp 	.vfs_fhtovp =		nullfs_fhtovp,
4057652131bSPoul-Henning Kamp 	.vfs_init =		nullfs_init,
4065e8c582aSPoul-Henning Kamp 	.vfs_mount =		nullfs_mount,
4077652131bSPoul-Henning Kamp 	.vfs_quotactl =		nullfs_quotactl,
4087652131bSPoul-Henning Kamp 	.vfs_root =		nullfs_root,
4097652131bSPoul-Henning Kamp 	.vfs_start =		nullfs_start,
4107652131bSPoul-Henning Kamp 	.vfs_statfs =		nullfs_statfs,
4117652131bSPoul-Henning Kamp 	.vfs_sync =		nullfs_sync,
4127652131bSPoul-Henning Kamp 	.vfs_uninit =		nullfs_uninit,
4137652131bSPoul-Henning Kamp 	.vfs_unmount =		nullfs_unmount,
4147652131bSPoul-Henning Kamp 	.vfs_vget =		nullfs_vget,
4157652131bSPoul-Henning Kamp 	.vfs_vptofh =		nullfs_vptofh,
416df8bae1dSRodney W. Grimes };
417c901836cSGarrett Wollman 
4181b2fbe6fSSheldon Hearn VFS_SET(null_vfsops, nullfs, VFCF_LOOPBACK);
419