xref: /freebsd/sys/fs/nullfs/null_vfsops.c (revision dd0f9532f3d0bde69723ca713d8d17775c05a9b9)
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>
4557b4252eSKonstantin Belousov #include <sys/fcntl.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;
595e8c582aSPoul-Henning Kamp static vfs_mount_t	nullfs_mount;
607652131bSPoul-Henning Kamp static vfs_quotactl_t	nullfs_quotactl;
617652131bSPoul-Henning Kamp static vfs_root_t	nullfs_root;
627652131bSPoul-Henning Kamp static vfs_sync_t	nullfs_sync;
637652131bSPoul-Henning Kamp static vfs_statfs_t	nullfs_statfs;
647652131bSPoul-Henning Kamp static vfs_unmount_t	nullfs_unmount;
657652131bSPoul-Henning Kamp static vfs_vget_t	nullfs_vget;
667652131bSPoul-Henning Kamp static vfs_extattrctl_t	nullfs_extattrctl;
679b5e8b3aSBruce Evans 
68df8bae1dSRodney W. Grimes /*
69df8bae1dSRodney W. Grimes  * Mount null layer
70df8bae1dSRodney W. Grimes  */
71d4b7a369SPoul-Henning Kamp static int
72dfd233edSAttilio Rao nullfs_mount(struct mount *mp)
73df8bae1dSRodney W. Grimes {
74df8bae1dSRodney W. Grimes 	int error = 0;
75df8bae1dSRodney W. Grimes 	struct vnode *lowerrootvp, *vp;
76df8bae1dSRodney W. Grimes 	struct vnode *nullm_rootvp;
77df8bae1dSRodney W. Grimes 	struct null_mount *xmp;
789fcc512cSMaxime Henrion 	char *target;
799fcc512cSMaxime Henrion 	int isvnunlocked = 0, len;
805e8c582aSPoul-Henning Kamp 	struct nameidata nd, *ndp = &nd;
81df8bae1dSRodney W. Grimes 
828da80660SBoris Popov 	NULLFSDEBUG("nullfs_mount(mp = %p)\n", (void *)mp);
83df8bae1dSRodney W. Grimes 
8464042a76SPoul-Henning Kamp 	if (mp->mnt_flag & MNT_ROOTFS)
8564042a76SPoul-Henning Kamp 		return (EOPNOTSUPP);
86df8bae1dSRodney W. Grimes 	/*
87df8bae1dSRodney W. Grimes 	 * Update is a no-op
88df8bae1dSRodney W. Grimes 	 */
89df8bae1dSRodney W. Grimes 	if (mp->mnt_flag & MNT_UPDATE) {
90ebbf93fdSCraig Rodrigues 		/*
91ebbf93fdSCraig Rodrigues 		 * Only support update mounts for NFS export.
92ebbf93fdSCraig Rodrigues 		 */
93ebbf93fdSCraig Rodrigues 		if (vfs_flagopt(mp->mnt_optnew, "export", NULL, 0))
94ebbf93fdSCraig Rodrigues 			return (0);
95ebbf93fdSCraig Rodrigues 		else
96df8bae1dSRodney W. Grimes 			return (EOPNOTSUPP);
97df8bae1dSRodney W. Grimes 	}
98df8bae1dSRodney W. Grimes 
99df8bae1dSRodney W. Grimes 	/*
100df8bae1dSRodney W. Grimes 	 * Get argument
101df8bae1dSRodney W. Grimes 	 */
1029fcc512cSMaxime Henrion 	error = vfs_getopt(mp->mnt_optnew, "target", (void **)&target, &len);
1039fcc512cSMaxime Henrion 	if (error || target[len - 1] != '\0')
1049fcc512cSMaxime Henrion 		return (EINVAL);
105df8bae1dSRodney W. Grimes 
106df8bae1dSRodney W. Grimes 	/*
1079ce73797SPeter Holm 	 * Unlock lower node to avoid possible deadlock.
108f85e8fc5SKATO Takenori 	 */
109aec0fb7bSPoul-Henning Kamp 	if ((mp->mnt_vnodecovered->v_op == &null_vnodeops) &&
1109ce73797SPeter Holm 	    VOP_ISLOCKED(mp->mnt_vnodecovered) == LK_EXCLUSIVE) {
11122db15c0SAttilio Rao 		VOP_UNLOCK(mp->mnt_vnodecovered, 0);
112f85e8fc5SKATO Takenori 		isvnunlocked = 1;
113f85e8fc5SKATO Takenori 	}
114f85e8fc5SKATO Takenori 	/*
115df8bae1dSRodney W. Grimes 	 * Find lower node
116df8bae1dSRodney W. Grimes 	 */
117dfd233edSAttilio Rao 	NDINIT(ndp, LOOKUP, FOLLOW|LOCKLEAF, UIO_SYSSPACE, target, curthread);
1183a773ad0SPoul-Henning Kamp 	error = namei(ndp);
119f85e8fc5SKATO Takenori 	/*
120f85e8fc5SKATO Takenori 	 * Re-lock vnode.
121f85e8fc5SKATO Takenori 	 */
122ffa43617SKonstantin Belousov 	if (isvnunlocked)
123cb05b60aSAttilio Rao 		vn_lock(mp->mnt_vnodecovered, LK_EXCLUSIVE | LK_RETRY);
124f85e8fc5SKATO Takenori 
1253a773ad0SPoul-Henning Kamp 	if (error)
126df8bae1dSRodney W. Grimes 		return (error);
127762e6b85SEivind Eklund 	NDFREE(ndp, NDF_ONLY_PNBUF);
128df8bae1dSRodney W. Grimes 
129df8bae1dSRodney W. Grimes 	/*
130df8bae1dSRodney W. Grimes 	 * Sanity check on lower vnode
131df8bae1dSRodney W. Grimes 	 */
132df8bae1dSRodney W. Grimes 	lowerrootvp = ndp->ni_vp;
133df8bae1dSRodney W. Grimes 
134f85e8fc5SKATO Takenori 	/*
135f85e8fc5SKATO Takenori 	 * Check multi null mount to avoid `lock against myself' panic.
136f85e8fc5SKATO Takenori 	 */
137f85e8fc5SKATO Takenori 	if (lowerrootvp == VTONULL(mp->mnt_vnodecovered)->null_lowervp) {
1388da80660SBoris Popov 		NULLFSDEBUG("nullfs_mount: multi null mount?\n");
1396716c905SBoris Popov 		vput(lowerrootvp);
140747e9157SKATO Takenori 		return (EDEADLK);
141f85e8fc5SKATO Takenori 	}
142f85e8fc5SKATO Takenori 
143df8bae1dSRodney W. Grimes 	xmp = (struct null_mount *) malloc(sizeof(struct null_mount),
144a163d034SWarner Losh 				M_NULLFSMNT, M_WAITOK);	/* XXX */
145df8bae1dSRodney W. Grimes 
146df8bae1dSRodney W. Grimes 	/*
147df8bae1dSRodney W. Grimes 	 * Save reference to underlying FS
148df8bae1dSRodney W. Grimes 	 */
149df8bae1dSRodney W. Grimes 	xmp->nullm_vfs = lowerrootvp->v_mount;
150df8bae1dSRodney W. Grimes 
151df8bae1dSRodney W. Grimes 	/*
152df8bae1dSRodney W. Grimes 	 * Save reference.  Each mount also holds
153df8bae1dSRodney W. Grimes 	 * a reference on the root vnode.
154df8bae1dSRodney W. Grimes 	 */
1551cfdefbbSSemen Ustimenko 	error = null_nodeget(mp, lowerrootvp, &vp);
156df8bae1dSRodney W. Grimes 	/*
157df8bae1dSRodney W. Grimes 	 * Make sure the node alias worked
158df8bae1dSRodney W. Grimes 	 */
159df8bae1dSRodney W. Grimes 	if (error) {
160*dd0f9532SKonstantin Belousov 		free(xmp, M_NULLFSMNT);
161df8bae1dSRodney W. Grimes 		return (error);
162df8bae1dSRodney W. Grimes 	}
163df8bae1dSRodney W. Grimes 
164df8bae1dSRodney W. Grimes 	/*
165df8bae1dSRodney W. Grimes 	 * Keep a held reference to the root vnode.
166df8bae1dSRodney W. Grimes 	 * It is vrele'd in nullfs_unmount.
167df8bae1dSRodney W. Grimes 	 */
168df8bae1dSRodney W. Grimes 	nullm_rootvp = vp;
169e6e370a7SJeff Roberson 	nullm_rootvp->v_vflag |= VV_ROOT;
170df8bae1dSRodney W. Grimes 	xmp->nullm_rootvp = nullm_rootvp;
17175cabb63SJeff Roberson 
17275cabb63SJeff Roberson 	/*
17375cabb63SJeff Roberson 	 * Unlock the node (either the lower or the alias)
17475cabb63SJeff Roberson 	 */
17522db15c0SAttilio Rao 	VOP_UNLOCK(vp, 0);
17675cabb63SJeff Roberson 
1775da56ddbSTor Egge 	if (NULLVPTOLOWERVP(nullm_rootvp)->v_mount->mnt_flag & MNT_LOCAL) {
1785da56ddbSTor Egge 		MNT_ILOCK(mp);
179df8bae1dSRodney W. Grimes 		mp->mnt_flag |= MNT_LOCAL;
1805da56ddbSTor Egge 		MNT_IUNLOCK(mp);
1815da56ddbSTor Egge 	}
1825da56ddbSTor Egge 	MNT_ILOCK(mp);
183ccabcacbSJohn Baldwin 	mp->mnt_kern_flag |= lowerrootvp->v_mount->mnt_kern_flag & MNTK_MPSAFE;
1845da56ddbSTor Egge 	MNT_IUNLOCK(mp);
18577465d93SAlfred Perlstein 	mp->mnt_data =  xmp;
186996c772fSJohn Dyson 	vfs_getnewfsid(mp);
187df8bae1dSRodney W. Grimes 
1887ab8c8c0SPoul-Henning Kamp 	vfs_mountedfrom(mp, target);
1897ab8c8c0SPoul-Henning Kamp 
1908da80660SBoris Popov 	NULLFSDEBUG("nullfs_mount: lower %s, alias at %s\n",
191df8bae1dSRodney W. Grimes 		mp->mnt_stat.f_mntfromname, mp->mnt_stat.f_mntonname);
192df8bae1dSRodney W. Grimes 	return (0);
193df8bae1dSRodney W. Grimes }
194df8bae1dSRodney W. Grimes 
195df8bae1dSRodney W. Grimes /*
196df8bae1dSRodney W. Grimes  * Free reference to null layer
197df8bae1dSRodney W. Grimes  */
198d4b7a369SPoul-Henning Kamp static int
199dfd233edSAttilio Rao nullfs_unmount(mp, mntflags)
200df8bae1dSRodney W. Grimes 	struct mount *mp;
201df8bae1dSRodney W. Grimes 	int mntflags;
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). */
213dfd233edSAttilio Rao 	error = vflush(mp, 1, flags, curthread);
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
227dfd233edSAttilio Rao nullfs_root(mp, flags, vpp)
228df8bae1dSRodney W. Grimes 	struct mount *mp;
229d9b2d9f7SJeff Roberson 	int flags;
230df8bae1dSRodney W. Grimes 	struct vnode **vpp;
231df8bae1dSRodney W. Grimes {
232df8bae1dSRodney W. Grimes 	struct vnode *vp;
233df8bae1dSRodney W. Grimes 
2348da80660SBoris Popov 	NULLFSDEBUG("nullfs_root(mp = %p, vp = %p->%p)\n", (void *)mp,
23589785a16SBruce Evans 	    (void *)MOUNTTONULLMOUNT(mp)->nullm_rootvp,
23689785a16SBruce Evans 	    (void *)NULLVPTOLOWERVP(MOUNTTONULLMOUNT(mp)->nullm_rootvp));
237df8bae1dSRodney W. Grimes 
238df8bae1dSRodney W. Grimes 	/*
239df8bae1dSRodney W. Grimes 	 * Return locked reference to root.
240df8bae1dSRodney W. Grimes 	 */
241df8bae1dSRodney W. Grimes 	vp = MOUNTTONULLMOUNT(mp)->nullm_rootvp;
242df8bae1dSRodney W. Grimes 	VREF(vp);
2434451405fSBoris Popov 
24417edcd76SKonstantin Belousov 	ASSERT_VOP_UNLOCKED(vp, "root vnode is locked");
245cb05b60aSAttilio Rao 	vn_lock(vp, flags | LK_RETRY);
246df8bae1dSRodney W. Grimes 	*vpp = vp;
247df8bae1dSRodney W. Grimes 	return 0;
248df8bae1dSRodney W. Grimes }
249df8bae1dSRodney W. Grimes 
250d4b7a369SPoul-Henning Kamp static int
251dfd233edSAttilio Rao nullfs_quotactl(mp, cmd, uid, arg)
252df8bae1dSRodney W. Grimes 	struct mount *mp;
253df8bae1dSRodney W. Grimes 	int cmd;
254df8bae1dSRodney W. Grimes 	uid_t uid;
2550430a5e2SDag-Erling Smørgrav 	void *arg;
256df8bae1dSRodney W. Grimes {
257dfd233edSAttilio Rao 	return VFS_QUOTACTL(MOUNTTONULLMOUNT(mp)->nullm_vfs, cmd, uid, arg);
258df8bae1dSRodney W. Grimes }
259df8bae1dSRodney W. Grimes 
260d4b7a369SPoul-Henning Kamp static int
261dfd233edSAttilio Rao nullfs_statfs(mp, sbp)
262df8bae1dSRodney W. Grimes 	struct mount *mp;
263df8bae1dSRodney W. Grimes 	struct statfs *sbp;
264df8bae1dSRodney W. Grimes {
265df8bae1dSRodney W. Grimes 	int error;
266df8bae1dSRodney W. Grimes 	struct statfs mstat;
267df8bae1dSRodney W. Grimes 
2688da80660SBoris Popov 	NULLFSDEBUG("nullfs_statfs(mp = %p, vp = %p->%p)\n", (void *)mp,
26989785a16SBruce Evans 	    (void *)MOUNTTONULLMOUNT(mp)->nullm_rootvp,
27089785a16SBruce Evans 	    (void *)NULLVPTOLOWERVP(MOUNTTONULLMOUNT(mp)->nullm_rootvp));
271df8bae1dSRodney W. Grimes 
272df8bae1dSRodney W. Grimes 	bzero(&mstat, sizeof(mstat));
273df8bae1dSRodney W. Grimes 
274dfd233edSAttilio Rao 	error = VFS_STATFS(MOUNTTONULLMOUNT(mp)->nullm_vfs, &mstat);
275df8bae1dSRodney W. Grimes 	if (error)
276df8bae1dSRodney W. Grimes 		return (error);
277df8bae1dSRodney W. Grimes 
278df8bae1dSRodney W. Grimes 	/* now copy across the "interesting" information and fake the rest */
279df8bae1dSRodney W. Grimes 	sbp->f_type = mstat.f_type;
280df8bae1dSRodney W. Grimes 	sbp->f_flags = mstat.f_flags;
281df8bae1dSRodney W. Grimes 	sbp->f_bsize = mstat.f_bsize;
282df8bae1dSRodney W. Grimes 	sbp->f_iosize = mstat.f_iosize;
283df8bae1dSRodney W. Grimes 	sbp->f_blocks = mstat.f_blocks;
284df8bae1dSRodney W. Grimes 	sbp->f_bfree = mstat.f_bfree;
285df8bae1dSRodney W. Grimes 	sbp->f_bavail = mstat.f_bavail;
286df8bae1dSRodney W. Grimes 	sbp->f_files = mstat.f_files;
287df8bae1dSRodney W. Grimes 	sbp->f_ffree = mstat.f_ffree;
288df8bae1dSRodney W. Grimes 	return (0);
289df8bae1dSRodney W. Grimes }
290df8bae1dSRodney W. Grimes 
291d4b7a369SPoul-Henning Kamp static int
292dfd233edSAttilio Rao nullfs_sync(mp, waitfor)
293df8bae1dSRodney W. Grimes 	struct mount *mp;
294df8bae1dSRodney W. Grimes 	int waitfor;
295df8bae1dSRodney W. Grimes {
296df8bae1dSRodney W. Grimes 	/*
297df8bae1dSRodney W. Grimes 	 * XXX - Assumes no data cached at null layer.
298df8bae1dSRodney W. Grimes 	 */
299df8bae1dSRodney W. Grimes 	return (0);
300df8bae1dSRodney W. Grimes }
301df8bae1dSRodney W. Grimes 
302d4b7a369SPoul-Henning Kamp static int
303a0595d02SKirk McKusick nullfs_vget(mp, ino, flags, vpp)
304df8bae1dSRodney W. Grimes 	struct mount *mp;
305df8bae1dSRodney W. Grimes 	ino_t ino;
306a0595d02SKirk McKusick 	int flags;
307df8bae1dSRodney W. Grimes 	struct vnode **vpp;
308df8bae1dSRodney W. Grimes {
3094451405fSBoris Popov 	int error;
310a0595d02SKirk McKusick 	error = VFS_VGET(MOUNTTONULLMOUNT(mp)->nullm_vfs, ino, flags, vpp);
3114451405fSBoris Popov 	if (error)
3124451405fSBoris Popov 		return (error);
313df8bae1dSRodney W. Grimes 
3141cfdefbbSSemen Ustimenko 	return (null_nodeget(mp, *vpp, vpp));
315df8bae1dSRodney W. Grimes }
316df8bae1dSRodney W. Grimes 
317d4b7a369SPoul-Henning Kamp static int
318694a586aSRick Macklem nullfs_fhtovp(mp, fidp, flags, vpp)
319df8bae1dSRodney W. Grimes 	struct mount *mp;
320df8bae1dSRodney W. Grimes 	struct fid *fidp;
321694a586aSRick Macklem 	int flags;
322df8bae1dSRodney W. Grimes 	struct vnode **vpp;
323c24fda81SAlfred Perlstein {
3244451405fSBoris Popov 	int error;
325694a586aSRick Macklem 	error = VFS_FHTOVP(MOUNTTONULLMOUNT(mp)->nullm_vfs, fidp, LK_EXCLUSIVE,
326694a586aSRick Macklem 	    vpp);
3274451405fSBoris Popov 	if (error)
3284451405fSBoris Popov 		return (error);
329c24fda81SAlfred Perlstein 
3301cfdefbbSSemen Ustimenko 	return (null_nodeget(mp, *vpp, vpp));
331c24fda81SAlfred Perlstein }
332c24fda81SAlfred Perlstein 
333c24fda81SAlfred Perlstein static int
334dfd233edSAttilio Rao nullfs_extattrctl(mp, cmd, filename_vp, namespace, attrname)
33591f37dcbSRobert Watson 	struct mount *mp;
33691f37dcbSRobert Watson 	int cmd;
33770f36851SRobert Watson 	struct vnode *filename_vp;
33870f36851SRobert Watson 	int namespace;
3398f073875SRobert Watson 	const char *attrname;
34091f37dcbSRobert Watson {
34170f36851SRobert Watson 	return VFS_EXTATTRCTL(MOUNTTONULLMOUNT(mp)->nullm_vfs, cmd, filename_vp,
342dfd233edSAttilio Rao 	    namespace, attrname);
34391f37dcbSRobert Watson }
34491f37dcbSRobert Watson 
34591f37dcbSRobert Watson 
346d4b7a369SPoul-Henning Kamp static struct vfsops null_vfsops = {
3477652131bSPoul-Henning Kamp 	.vfs_extattrctl =	nullfs_extattrctl,
3487652131bSPoul-Henning Kamp 	.vfs_fhtovp =		nullfs_fhtovp,
3497652131bSPoul-Henning Kamp 	.vfs_init =		nullfs_init,
3505e8c582aSPoul-Henning Kamp 	.vfs_mount =		nullfs_mount,
3517652131bSPoul-Henning Kamp 	.vfs_quotactl =		nullfs_quotactl,
3527652131bSPoul-Henning Kamp 	.vfs_root =		nullfs_root,
3537652131bSPoul-Henning Kamp 	.vfs_statfs =		nullfs_statfs,
3547652131bSPoul-Henning Kamp 	.vfs_sync =		nullfs_sync,
3557652131bSPoul-Henning Kamp 	.vfs_uninit =		nullfs_uninit,
3567652131bSPoul-Henning Kamp 	.vfs_unmount =		nullfs_unmount,
3577652131bSPoul-Henning Kamp 	.vfs_vget =		nullfs_vget,
358df8bae1dSRodney W. Grimes };
359c901836cSGarrett Wollman 
3601b2fbe6fSSheldon Hearn VFS_SET(null_vfsops, nullfs, VFCF_LOOPBACK);
361