xref: /freebsd/sys/fs/nullfs/null_vfsops.c (revision 5bb84bc84b1d1f978dd93aa02acef9936e79abc0)
1d167cf6fSWarner Losh /*-
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 
565bb84bc8SRobert Watson 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_sync_t	nullfs_sync;
647652131bSPoul-Henning Kamp static vfs_statfs_t	nullfs_statfs;
657652131bSPoul-Henning Kamp static vfs_unmount_t	nullfs_unmount;
667652131bSPoul-Henning Kamp static vfs_vget_t	nullfs_vget;
677652131bSPoul-Henning Kamp static vfs_vptofh_t	nullfs_vptofh;
687652131bSPoul-Henning Kamp static vfs_extattrctl_t	nullfs_extattrctl;
699b5e8b3aSBruce Evans 
70df8bae1dSRodney W. Grimes /*
71df8bae1dSRodney W. Grimes  * Mount null layer
72df8bae1dSRodney W. Grimes  */
73d4b7a369SPoul-Henning Kamp static int
745e8c582aSPoul-Henning Kamp nullfs_mount(struct mount *mp, struct thread *td)
75df8bae1dSRodney W. Grimes {
76df8bae1dSRodney W. Grimes 	int error = 0;
77df8bae1dSRodney W. Grimes 	struct vnode *lowerrootvp, *vp;
78df8bae1dSRodney W. Grimes 	struct vnode *nullm_rootvp;
79df8bae1dSRodney W. Grimes 	struct null_mount *xmp;
809fcc512cSMaxime Henrion 	char *target;
819fcc512cSMaxime Henrion 	int isvnunlocked = 0, len;
825e8c582aSPoul-Henning Kamp 	struct nameidata nd, *ndp = &nd;
83df8bae1dSRodney W. Grimes 
848da80660SBoris Popov 	NULLFSDEBUG("nullfs_mount(mp = %p)\n", (void *)mp);
85df8bae1dSRodney W. Grimes 
8664042a76SPoul-Henning Kamp 	if (mp->mnt_flag & MNT_ROOTFS)
8764042a76SPoul-Henning Kamp 		return (EOPNOTSUPP);
88df8bae1dSRodney W. Grimes 	/*
89df8bae1dSRodney W. Grimes 	 * Update is a no-op
90df8bae1dSRodney W. Grimes 	 */
91df8bae1dSRodney W. Grimes 	if (mp->mnt_flag & MNT_UPDATE) {
92df8bae1dSRodney W. Grimes 		return (EOPNOTSUPP);
93b40ce416SJulian Elischer 		/* return VFS_MOUNT(MOUNTTONULLMOUNT(mp)->nullm_vfs, path, data, ndp, td);*/
94df8bae1dSRodney W. Grimes 	}
95df8bae1dSRodney W. Grimes 
96df8bae1dSRodney W. Grimes 	/*
97df8bae1dSRodney W. Grimes 	 * Get argument
98df8bae1dSRodney W. Grimes 	 */
999fcc512cSMaxime Henrion 	error = vfs_getopt(mp->mnt_optnew, "target", (void **)&target, &len);
1009fcc512cSMaxime Henrion 	if (error || target[len - 1] != '\0')
1019fcc512cSMaxime Henrion 		return (EINVAL);
102df8bae1dSRodney W. Grimes 
103df8bae1dSRodney W. Grimes 	/*
104f85e8fc5SKATO Takenori 	 * Unlock lower node to avoid deadlock.
105f85e8fc5SKATO Takenori 	 * (XXX) VOP_ISLOCKED is needed?
106f85e8fc5SKATO Takenori 	 */
107aec0fb7bSPoul-Henning Kamp 	if ((mp->mnt_vnodecovered->v_op == &null_vnodeops) &&
1086bdfe06aSEivind Eklund 		VOP_ISLOCKED(mp->mnt_vnodecovered, NULL)) {
109b40ce416SJulian Elischer 		VOP_UNLOCK(mp->mnt_vnodecovered, 0, td);
110f85e8fc5SKATO Takenori 		isvnunlocked = 1;
111f85e8fc5SKATO Takenori 	}
112f85e8fc5SKATO Takenori 	/*
113df8bae1dSRodney W. Grimes 	 * Find lower node
114df8bae1dSRodney W. Grimes 	 */
115df8bae1dSRodney W. Grimes 	NDINIT(ndp, LOOKUP, FOLLOW|WANTPARENT|LOCKLEAF,
1169fcc512cSMaxime Henrion 		UIO_SYSSPACE, target, td);
1173a773ad0SPoul-Henning Kamp 	error = namei(ndp);
118f85e8fc5SKATO Takenori 	/*
119f85e8fc5SKATO Takenori 	 * Re-lock vnode.
120f85e8fc5SKATO Takenori 	 */
1216bdfe06aSEivind Eklund 	if (isvnunlocked && !VOP_ISLOCKED(mp->mnt_vnodecovered, NULL))
122b40ce416SJulian Elischer 		vn_lock(mp->mnt_vnodecovered, LK_EXCLUSIVE | LK_RETRY, td);
123f85e8fc5SKATO Takenori 
1243a773ad0SPoul-Henning Kamp 	if (error)
125df8bae1dSRodney W. Grimes 		return (error);
126762e6b85SEivind Eklund 	NDFREE(ndp, NDF_ONLY_PNBUF);
127df8bae1dSRodney W. Grimes 
128df8bae1dSRodney W. Grimes 	/*
129df8bae1dSRodney W. Grimes 	 * Sanity check on lower vnode
130df8bae1dSRodney W. Grimes 	 */
131df8bae1dSRodney W. Grimes 	lowerrootvp = ndp->ni_vp;
132df8bae1dSRodney W. Grimes 
133df8bae1dSRodney W. Grimes 	vrele(ndp->ni_dvp);
134c5e17d9eSKATO Takenori 	ndp->ni_dvp = NULLVP;
135df8bae1dSRodney W. Grimes 
136f85e8fc5SKATO Takenori 	/*
137f85e8fc5SKATO Takenori 	 * Check multi null mount to avoid `lock against myself' panic.
138f85e8fc5SKATO Takenori 	 */
139f85e8fc5SKATO Takenori 	if (lowerrootvp == VTONULL(mp->mnt_vnodecovered)->null_lowervp) {
1408da80660SBoris Popov 		NULLFSDEBUG("nullfs_mount: multi null mount?\n");
1416716c905SBoris Popov 		vput(lowerrootvp);
142747e9157SKATO Takenori 		return (EDEADLK);
143f85e8fc5SKATO Takenori 	}
144f85e8fc5SKATO Takenori 
145df8bae1dSRodney W. Grimes 	xmp = (struct null_mount *) malloc(sizeof(struct null_mount),
146a163d034SWarner Losh 				M_NULLFSMNT, M_WAITOK);	/* XXX */
147df8bae1dSRodney W. Grimes 
148df8bae1dSRodney W. Grimes 	/*
149df8bae1dSRodney W. Grimes 	 * Save reference to underlying FS
150df8bae1dSRodney W. Grimes 	 */
151df8bae1dSRodney W. Grimes 	xmp->nullm_vfs = lowerrootvp->v_mount;
152df8bae1dSRodney W. Grimes 
153df8bae1dSRodney W. Grimes 	/*
154df8bae1dSRodney W. Grimes 	 * Save reference.  Each mount also holds
155df8bae1dSRodney W. Grimes 	 * a reference on the root vnode.
156df8bae1dSRodney W. Grimes 	 */
1571cfdefbbSSemen Ustimenko 	error = null_nodeget(mp, lowerrootvp, &vp);
158df8bae1dSRodney W. Grimes 	/*
159df8bae1dSRodney W. Grimes 	 * Make sure the node alias worked
160df8bae1dSRodney W. Grimes 	 */
161df8bae1dSRodney W. Grimes 	if (error) {
16275cabb63SJeff Roberson 		VOP_UNLOCK(vp, 0, td);
163df8bae1dSRodney W. Grimes 		vrele(lowerrootvp);
164a1c995b6SPoul-Henning Kamp 		free(xmp, M_NULLFSMNT);	/* XXX */
165df8bae1dSRodney W. Grimes 		return (error);
166df8bae1dSRodney W. Grimes 	}
167df8bae1dSRodney W. Grimes 
168df8bae1dSRodney W. Grimes 	/*
169df8bae1dSRodney W. Grimes 	 * Keep a held reference to the root vnode.
170df8bae1dSRodney W. Grimes 	 * It is vrele'd in nullfs_unmount.
171df8bae1dSRodney W. Grimes 	 */
172df8bae1dSRodney W. Grimes 	nullm_rootvp = vp;
173e6e370a7SJeff Roberson 	nullm_rootvp->v_vflag |= VV_ROOT;
174df8bae1dSRodney W. Grimes 	xmp->nullm_rootvp = nullm_rootvp;
17575cabb63SJeff Roberson 
17675cabb63SJeff Roberson 	/*
17775cabb63SJeff Roberson 	 * Unlock the node (either the lower or the alias)
17875cabb63SJeff Roberson 	 */
17975cabb63SJeff Roberson 	VOP_UNLOCK(vp, 0, td);
18075cabb63SJeff Roberson 
181df8bae1dSRodney W. Grimes 	if (NULLVPTOLOWERVP(nullm_rootvp)->v_mount->mnt_flag & MNT_LOCAL)
182df8bae1dSRodney W. Grimes 		mp->mnt_flag |= MNT_LOCAL;
1833554cddbSKris Kennaway 	mp->mnt_kern_flag |= lowerrootvp->v_mount->mnt_kern_flag | MNTK_MPSAFE;
184df8bae1dSRodney W. Grimes 	mp->mnt_data = (qaddr_t) xmp;
185996c772fSJohn Dyson 	vfs_getnewfsid(mp);
186df8bae1dSRodney W. Grimes 
1877ab8c8c0SPoul-Henning Kamp 	vfs_mountedfrom(mp, target);
1887ab8c8c0SPoul-Henning Kamp 
1898da80660SBoris Popov 	NULLFSDEBUG("nullfs_mount: lower %s, alias at %s\n",
190df8bae1dSRodney W. Grimes 		mp->mnt_stat.f_mntfromname, mp->mnt_stat.f_mntonname);
191df8bae1dSRodney W. Grimes 	return (0);
192df8bae1dSRodney W. Grimes }
193df8bae1dSRodney W. Grimes 
194df8bae1dSRodney W. Grimes /*
195df8bae1dSRodney W. Grimes  * Free reference to null layer
196df8bae1dSRodney W. Grimes  */
197d4b7a369SPoul-Henning Kamp static int
198b40ce416SJulian Elischer nullfs_unmount(mp, mntflags, td)
199df8bae1dSRodney W. Grimes 	struct mount *mp;
200df8bae1dSRodney W. Grimes 	int mntflags;
201b40ce416SJulian Elischer 	struct thread *td;
202df8bae1dSRodney W. Grimes {
2038da80660SBoris Popov 	void *mntdata;
204df8bae1dSRodney W. Grimes 	int error;
205df8bae1dSRodney W. Grimes 	int flags = 0;
206df8bae1dSRodney W. Grimes 
2078da80660SBoris Popov 	NULLFSDEBUG("nullfs_unmount: mp = %p\n", (void *)mp);
208df8bae1dSRodney W. Grimes 
209996c772fSJohn Dyson 	if (mntflags & MNT_FORCE)
210df8bae1dSRodney W. Grimes 		flags |= FORCECLOSE;
211df8bae1dSRodney W. Grimes 
2120864ef1eSIan Dowse 	/* There is 1 extra root vnode reference (nullm_rootvp). */
213f257b7a5SAlfred Perlstein 	error = vflush(mp, 1, flags, td);
2143a773ad0SPoul-Henning Kamp 	if (error)
215df8bae1dSRodney W. Grimes 		return (error);
216df8bae1dSRodney W. Grimes 
217df8bae1dSRodney W. Grimes 	/*
218df8bae1dSRodney W. Grimes 	 * Finally, throw away the null_mount structure
219df8bae1dSRodney W. Grimes 	 */
2208da80660SBoris Popov 	mntdata = mp->mnt_data;
221df8bae1dSRodney W. Grimes 	mp->mnt_data = 0;
2224451405fSBoris Popov 	free(mntdata, M_NULLFSMNT);
223df8bae1dSRodney W. Grimes 	return 0;
224df8bae1dSRodney W. Grimes }
225df8bae1dSRodney W. Grimes 
226d4b7a369SPoul-Henning Kamp static int
227d9b2d9f7SJeff Roberson nullfs_root(mp, flags, vpp, td)
228df8bae1dSRodney W. Grimes 	struct mount *mp;
229d9b2d9f7SJeff Roberson 	int flags;
230df8bae1dSRodney W. Grimes 	struct vnode **vpp;
231f257b7a5SAlfred Perlstein 	struct thread *td;
232df8bae1dSRodney W. Grimes {
233df8bae1dSRodney W. Grimes 	struct vnode *vp;
234df8bae1dSRodney W. Grimes 
2358da80660SBoris Popov 	NULLFSDEBUG("nullfs_root(mp = %p, vp = %p->%p)\n", (void *)mp,
23689785a16SBruce Evans 	    (void *)MOUNTTONULLMOUNT(mp)->nullm_rootvp,
23789785a16SBruce Evans 	    (void *)NULLVPTOLOWERVP(MOUNTTONULLMOUNT(mp)->nullm_rootvp));
238df8bae1dSRodney W. Grimes 
239df8bae1dSRodney W. Grimes 	/*
240df8bae1dSRodney W. Grimes 	 * Return locked reference to root.
241df8bae1dSRodney W. Grimes 	 */
242df8bae1dSRodney W. Grimes 	vp = MOUNTTONULLMOUNT(mp)->nullm_rootvp;
243df8bae1dSRodney W. Grimes 	VREF(vp);
2444451405fSBoris Popov 
2458da80660SBoris Popov #ifdef NULLFS_DEBUG
2466bdfe06aSEivind Eklund 	if (VOP_ISLOCKED(vp, NULL)) {
2474ea4f1f9SMarcel Moolenaar 		kdb_enter("root vnode is locked.\n");
248747e9157SKATO Takenori 		vrele(vp);
249747e9157SKATO Takenori 		return (EDEADLK);
2508da80660SBoris Popov 	}
2518da80660SBoris Popov #endif
252316ec7bbSJeff Roberson 	vn_lock(vp, flags | LK_RETRY, td);
253df8bae1dSRodney W. Grimes 	*vpp = vp;
254df8bae1dSRodney W. Grimes 	return 0;
255df8bae1dSRodney W. Grimes }
256df8bae1dSRodney W. Grimes 
257d4b7a369SPoul-Henning Kamp static int
258b40ce416SJulian Elischer nullfs_quotactl(mp, cmd, uid, arg, td)
259df8bae1dSRodney W. Grimes 	struct mount *mp;
260df8bae1dSRodney W. Grimes 	int cmd;
261df8bae1dSRodney W. Grimes 	uid_t uid;
262df8bae1dSRodney W. Grimes 	caddr_t arg;
263b40ce416SJulian Elischer 	struct thread *td;
264df8bae1dSRodney W. Grimes {
265b40ce416SJulian Elischer 	return VFS_QUOTACTL(MOUNTTONULLMOUNT(mp)->nullm_vfs, cmd, uid, arg, td);
266df8bae1dSRodney W. Grimes }
267df8bae1dSRodney W. Grimes 
268d4b7a369SPoul-Henning Kamp static int
269b40ce416SJulian Elischer nullfs_statfs(mp, sbp, td)
270df8bae1dSRodney W. Grimes 	struct mount *mp;
271df8bae1dSRodney W. Grimes 	struct statfs *sbp;
272b40ce416SJulian Elischer 	struct thread *td;
273df8bae1dSRodney W. Grimes {
274df8bae1dSRodney W. Grimes 	int error;
275df8bae1dSRodney W. Grimes 	struct statfs mstat;
276df8bae1dSRodney W. Grimes 
2778da80660SBoris Popov 	NULLFSDEBUG("nullfs_statfs(mp = %p, vp = %p->%p)\n", (void *)mp,
27889785a16SBruce Evans 	    (void *)MOUNTTONULLMOUNT(mp)->nullm_rootvp,
27989785a16SBruce Evans 	    (void *)NULLVPTOLOWERVP(MOUNTTONULLMOUNT(mp)->nullm_rootvp));
280df8bae1dSRodney W. Grimes 
281df8bae1dSRodney W. Grimes 	bzero(&mstat, sizeof(mstat));
282df8bae1dSRodney W. Grimes 
283b40ce416SJulian Elischer 	error = VFS_STATFS(MOUNTTONULLMOUNT(mp)->nullm_vfs, &mstat, td);
284df8bae1dSRodney W. Grimes 	if (error)
285df8bae1dSRodney W. Grimes 		return (error);
286df8bae1dSRodney W. Grimes 
287df8bae1dSRodney W. Grimes 	/* now copy across the "interesting" information and fake the rest */
288df8bae1dSRodney W. Grimes 	sbp->f_type = mstat.f_type;
289df8bae1dSRodney W. Grimes 	sbp->f_flags = mstat.f_flags;
290df8bae1dSRodney W. Grimes 	sbp->f_bsize = mstat.f_bsize;
291df8bae1dSRodney W. Grimes 	sbp->f_iosize = mstat.f_iosize;
292df8bae1dSRodney W. Grimes 	sbp->f_blocks = mstat.f_blocks;
293df8bae1dSRodney W. Grimes 	sbp->f_bfree = mstat.f_bfree;
294df8bae1dSRodney W. Grimes 	sbp->f_bavail = mstat.f_bavail;
295df8bae1dSRodney W. Grimes 	sbp->f_files = mstat.f_files;
296df8bae1dSRodney W. Grimes 	sbp->f_ffree = mstat.f_ffree;
297df8bae1dSRodney W. Grimes 	return (0);
298df8bae1dSRodney W. Grimes }
299df8bae1dSRodney W. Grimes 
300d4b7a369SPoul-Henning Kamp static int
3018df6bac4SPoul-Henning Kamp nullfs_sync(mp, waitfor, td)
302df8bae1dSRodney W. Grimes 	struct mount *mp;
303df8bae1dSRodney W. Grimes 	int waitfor;
304b40ce416SJulian Elischer 	struct thread *td;
305df8bae1dSRodney W. Grimes {
306df8bae1dSRodney W. Grimes 	/*
307df8bae1dSRodney W. Grimes 	 * XXX - Assumes no data cached at null layer.
308df8bae1dSRodney W. Grimes 	 */
309df8bae1dSRodney W. Grimes 	return (0);
310df8bae1dSRodney W. Grimes }
311df8bae1dSRodney W. Grimes 
312d4b7a369SPoul-Henning Kamp static int
313a0595d02SKirk McKusick nullfs_vget(mp, ino, flags, vpp)
314df8bae1dSRodney W. Grimes 	struct mount *mp;
315df8bae1dSRodney W. Grimes 	ino_t ino;
316a0595d02SKirk McKusick 	int flags;
317df8bae1dSRodney W. Grimes 	struct vnode **vpp;
318df8bae1dSRodney W. Grimes {
3194451405fSBoris Popov 	int error;
320a0595d02SKirk McKusick 	error = VFS_VGET(MOUNTTONULLMOUNT(mp)->nullm_vfs, ino, flags, vpp);
3214451405fSBoris Popov 	if (error)
3224451405fSBoris Popov 		return (error);
323df8bae1dSRodney W. Grimes 
3241cfdefbbSSemen Ustimenko 	return (null_nodeget(mp, *vpp, vpp));
325df8bae1dSRodney W. Grimes }
326df8bae1dSRodney W. Grimes 
327d4b7a369SPoul-Henning Kamp static int
328c24fda81SAlfred Perlstein nullfs_fhtovp(mp, fidp, vpp)
329df8bae1dSRodney W. Grimes 	struct mount *mp;
330df8bae1dSRodney W. Grimes 	struct fid *fidp;
331df8bae1dSRodney W. Grimes 	struct vnode **vpp;
332c24fda81SAlfred Perlstein {
3334451405fSBoris Popov 	int error;
3344451405fSBoris Popov 	error = VFS_FHTOVP(MOUNTTONULLMOUNT(mp)->nullm_vfs, fidp, vpp);
3354451405fSBoris Popov 	if (error)
3364451405fSBoris Popov 		return (error);
337c24fda81SAlfred Perlstein 
3381cfdefbbSSemen Ustimenko 	return (null_nodeget(mp, *vpp, vpp));
339c24fda81SAlfred Perlstein }
340c24fda81SAlfred Perlstein 
341c24fda81SAlfred Perlstein static int
342c24fda81SAlfred Perlstein nullfs_checkexp(mp, nam, extflagsp, credanonp)
343c24fda81SAlfred Perlstein 	struct mount *mp;
344c24fda81SAlfred Perlstein 	struct sockaddr *nam;
345c24fda81SAlfred Perlstein 	int *extflagsp;
346df8bae1dSRodney W. Grimes 	struct ucred **credanonp;
347df8bae1dSRodney W. Grimes {
348df8bae1dSRodney W. Grimes 
349c24fda81SAlfred Perlstein 	return VFS_CHECKEXP(MOUNTTONULLMOUNT(mp)->nullm_vfs, nam,
350c24fda81SAlfred Perlstein 		extflagsp, credanonp);
351df8bae1dSRodney W. Grimes }
352df8bae1dSRodney W. Grimes 
353d4b7a369SPoul-Henning Kamp static int
354df8bae1dSRodney W. Grimes nullfs_vptofh(vp, fhp)
355df8bae1dSRodney W. Grimes 	struct vnode *vp;
356df8bae1dSRodney W. Grimes 	struct fid *fhp;
357df8bae1dSRodney W. Grimes {
358ff81e317SPoul-Henning Kamp 	struct vnode *lvp;
359ff81e317SPoul-Henning Kamp 
360ff81e317SPoul-Henning Kamp 	lvp = NULLVPTOLOWERVP(vp);
361ff81e317SPoul-Henning Kamp 	return VFS_VPTOFH(lvp, fhp);
362df8bae1dSRodney W. Grimes }
363df8bae1dSRodney W. Grimes 
36491f37dcbSRobert Watson static int
365b40ce416SJulian Elischer nullfs_extattrctl(mp, cmd, filename_vp, namespace, attrname, td)
36691f37dcbSRobert Watson 	struct mount *mp;
36791f37dcbSRobert Watson 	int cmd;
36870f36851SRobert Watson 	struct vnode *filename_vp;
36970f36851SRobert Watson 	int namespace;
3708f073875SRobert Watson 	const char *attrname;
371b40ce416SJulian Elischer 	struct thread *td;
37291f37dcbSRobert Watson {
37370f36851SRobert Watson 	return VFS_EXTATTRCTL(MOUNTTONULLMOUNT(mp)->nullm_vfs, cmd, filename_vp,
374b40ce416SJulian Elischer 	    namespace, attrname, td);
37591f37dcbSRobert Watson }
37691f37dcbSRobert Watson 
37791f37dcbSRobert Watson 
378d4b7a369SPoul-Henning Kamp static struct vfsops null_vfsops = {
3797652131bSPoul-Henning Kamp 	.vfs_checkexp =		nullfs_checkexp,
3807652131bSPoul-Henning Kamp 	.vfs_extattrctl =	nullfs_extattrctl,
3817652131bSPoul-Henning Kamp 	.vfs_fhtovp =		nullfs_fhtovp,
3827652131bSPoul-Henning Kamp 	.vfs_init =		nullfs_init,
3835e8c582aSPoul-Henning Kamp 	.vfs_mount =		nullfs_mount,
3847652131bSPoul-Henning Kamp 	.vfs_quotactl =		nullfs_quotactl,
3857652131bSPoul-Henning Kamp 	.vfs_root =		nullfs_root,
3867652131bSPoul-Henning Kamp 	.vfs_statfs =		nullfs_statfs,
3877652131bSPoul-Henning Kamp 	.vfs_sync =		nullfs_sync,
3887652131bSPoul-Henning Kamp 	.vfs_uninit =		nullfs_uninit,
3897652131bSPoul-Henning Kamp 	.vfs_unmount =		nullfs_unmount,
3907652131bSPoul-Henning Kamp 	.vfs_vget =		nullfs_vget,
3917652131bSPoul-Henning Kamp 	.vfs_vptofh =		nullfs_vptofh,
392df8bae1dSRodney W. Grimes };
393c901836cSGarrett Wollman 
3941b2fbe6fSSheldon Hearn VFS_SET(null_vfsops, nullfs, VFCF_LOOPBACK);
395