null_vfsops.c revision 67882
176195Sbrian/*
276195Sbrian * Copyright (c) 1992, 1993, 1995
378412Sbrian *	The Regents of the University of California.  All rights reserved.
478412Sbrian *
578412Sbrian * This code is derived from software donated to Berkeley by
676195Sbrian * Jan-Simon Pendry.
776195Sbrian *
876195Sbrian * Redistribution and use in source and binary forms, with or without
976195Sbrian * modification, are permitted provided that the following conditions
1076195Sbrian * are met:
1176195Sbrian * 1. Redistributions of source code must retain the above copyright
1276195Sbrian *    notice, this list of conditions and the following disclaimer.
1376195Sbrian * 2. Redistributions in binary form must reproduce the above copyright
1476195Sbrian *    notice, this list of conditions and the following disclaimer in the
1576195Sbrian *    documentation and/or other materials provided with the distribution.
1676195Sbrian * 3. All advertising materials mentioning features or use of this software
1776195Sbrian *    must display the following acknowledgement:
1876195Sbrian *	This product includes software developed by the University of
1976195Sbrian *	California, Berkeley and its contributors.
2076195Sbrian * 4. Neither the name of the University nor the names of its contributors
2176195Sbrian *    may be used to endorse or promote products derived from this software
2276195Sbrian *    without specific prior written permission.
2376195Sbrian *
2476195Sbrian * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2576195Sbrian * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2676195Sbrian * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2776195Sbrian * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2876195Sbrian * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2976195Sbrian * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
3076195Sbrian * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
3176195Sbrian * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3276195Sbrian * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3376195Sbrian * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3476195Sbrian * SUCH DAMAGE.
3576195Sbrian *
3676195Sbrian *	@(#)null_vfsops.c	8.2 (Berkeley) 1/21/94
3776195Sbrian *
3876195Sbrian * @(#)lofs_vfsops.c	1.2 (Berkeley) 6/18/92
3976195Sbrian * $FreeBSD: head/sys/fs/nullfs/null_vfsops.c 67882 2000-10-29 13:57:19Z phk $
4076195Sbrian */
4176195Sbrian
4276195Sbrian/*
4376327Sbrian * Null Layer
4476327Sbrian * (See null_vnops.c for a description of what this does.)
4576196Sbrian */
4676195Sbrian
4776196Sbrian#include <sys/param.h>
4876195Sbrian#include <sys/systm.h>
4976195Sbrian#include <sys/kernel.h>
5076195Sbrian#include <sys/malloc.h>
5176195Sbrian#include <sys/vnode.h>
5276195Sbrian#include <sys/mount.h>
5376195Sbrian#include <sys/namei.h>
5476195Sbrian#include <miscfs/nullfs/null.h>
5576195Sbrian
5676195Sbrianstatic MALLOC_DEFINE(M_NULLFSMNT, "NULLFS mount", "NULLFS mount structure");
5776195Sbrian
5876195Sbrianstatic int	nullfs_fhtovp(struct mount *mp, struct fid *fidp,
5976195Sbrian				   struct vnode **vpp);
6076195Sbrianstatic int	nullfs_checkexp(struct mount *mp, struct sockaddr *nam,
6176195Sbrian				    int *extflagsp, struct ucred **credanonp);
6276195Sbrianstatic int	nullfs_mount(struct mount *mp, char *path, caddr_t data,
6376195Sbrian				  struct nameidata *ndp, struct proc *p);
6476195Sbrianstatic int	nullfs_quotactl(struct mount *mp, int cmd, uid_t uid,
6576195Sbrian				     caddr_t arg, struct proc *p);
6676195Sbrianstatic int	nullfs_root(struct mount *mp, struct vnode **vpp);
6776195Sbrianstatic int	nullfs_start(struct mount *mp, int flags, struct proc *p);
6876195Sbrianstatic int	nullfs_statfs(struct mount *mp, struct statfs *sbp,
6976195Sbrian				   struct proc *p);
7076195Sbrianstatic int	nullfs_sync(struct mount *mp, int waitfor,
7176195Sbrian				 struct ucred *cred, struct proc *p);
7276195Sbrianstatic int	nullfs_unmount(struct mount *mp, int mntflags, struct proc *p);
7376195Sbrianstatic int	nullfs_vget(struct mount *mp, ino_t ino, struct vnode **vpp);
7476195Sbrianstatic int	nullfs_vptofh(struct vnode *vp, struct fid *fhp);
7576195Sbrianstatic int	nullfs_extattrctl(struct mount *mp, int cmd,
7676195Sbrian			const char *attrname, caddr_t arg, struct proc *p);
7776195Sbrian
7876195Sbrian/*
7976195Sbrian * Mount null layer
8076195Sbrian */
8176195Sbrianstatic int
8276195Sbriannullfs_mount(mp, path, data, ndp, p)
8376195Sbrian	struct mount *mp;
8476195Sbrian	char *path;
8576195Sbrian	caddr_t data;
8676195Sbrian	struct nameidata *ndp;
8776195Sbrian	struct proc *p;
8876195Sbrian{
8976195Sbrian	int error = 0;
9076195Sbrian	struct null_args args;
9176195Sbrian	struct vnode *lowerrootvp, *vp;
9276195Sbrian	struct vnode *nullm_rootvp;
9376195Sbrian	struct null_mount *xmp;
9476195Sbrian	u_int size;
9576195Sbrian	int isvnunlocked = 0;
9676195Sbrian
9776195Sbrian	NULLFSDEBUG("nullfs_mount(mp = %p)\n", (void *)mp);
9876195Sbrian
9976195Sbrian	/*
10076195Sbrian	 * Update is a no-op
10176195Sbrian	 */
10276195Sbrian	if (mp->mnt_flag & MNT_UPDATE) {
10376195Sbrian		return (EOPNOTSUPP);
10476195Sbrian		/* return VFS_MOUNT(MOUNTTONULLMOUNT(mp)->nullm_vfs, path, data, ndp, p);*/
10576195Sbrian	}
10676195Sbrian
10776195Sbrian	/*
10876195Sbrian	 * Get argument
10976195Sbrian	 */
11076195Sbrian	error = copyin(data, (caddr_t)&args, sizeof(struct null_args));
11176195Sbrian	if (error)
11276195Sbrian		return (error);
11376195Sbrian
11476195Sbrian	/*
11576195Sbrian	 * Unlock lower node to avoid deadlock.
11676195Sbrian	 * (XXX) VOP_ISLOCKED is needed?
11776195Sbrian	 */
11876195Sbrian	if ((mp->mnt_vnodecovered->v_op == null_vnodeop_p) &&
11976195Sbrian		VOP_ISLOCKED(mp->mnt_vnodecovered, NULL)) {
12076195Sbrian		VOP_UNLOCK(mp->mnt_vnodecovered, 0, p);
12176195Sbrian		isvnunlocked = 1;
12276195Sbrian	}
12376195Sbrian	/*
12476195Sbrian	 * Find lower node
12576195Sbrian	 */
12676195Sbrian	NDINIT(ndp, LOOKUP, FOLLOW|WANTPARENT|LOCKLEAF,
12776195Sbrian		UIO_USERSPACE, args.target, p);
12876195Sbrian	error = namei(ndp);
12976195Sbrian	/*
13076195Sbrian	 * Re-lock vnode.
13176195Sbrian	 */
13276195Sbrian	if (isvnunlocked && !VOP_ISLOCKED(mp->mnt_vnodecovered, NULL))
13376195Sbrian		vn_lock(mp->mnt_vnodecovered, LK_EXCLUSIVE | LK_RETRY, p);
13476195Sbrian
13576195Sbrian	if (error)
13676195Sbrian		return (error);
13776195Sbrian	NDFREE(ndp, NDF_ONLY_PNBUF);
13876195Sbrian
13976195Sbrian	/*
14076195Sbrian	 * Sanity check on lower vnode
14176195Sbrian	 */
14276195Sbrian	lowerrootvp = ndp->ni_vp;
14376195Sbrian
14476195Sbrian	vrele(ndp->ni_dvp);
14576195Sbrian	ndp->ni_dvp = NULLVP;
14676195Sbrian
14776195Sbrian	/*
14876195Sbrian	 * Check multi null mount to avoid `lock against myself' panic.
14976195Sbrian	 */
15076195Sbrian	if (lowerrootvp == VTONULL(mp->mnt_vnodecovered)->null_lowervp) {
15176195Sbrian		NULLFSDEBUG("nullfs_mount: multi null mount?\n");
15276195Sbrian		vput(lowerrootvp);
15376195Sbrian		return (EDEADLK);
15476195Sbrian	}
15576195Sbrian
15676195Sbrian	xmp = (struct null_mount *) malloc(sizeof(struct null_mount),
15776195Sbrian				M_NULLFSMNT, M_WAITOK);	/* XXX */
15876195Sbrian
15976195Sbrian	/*
16076195Sbrian	 * Save reference to underlying FS
16176195Sbrian	 */
16276195Sbrian	xmp->nullm_vfs = lowerrootvp->v_mount;
16376195Sbrian
16476195Sbrian	/*
16576195Sbrian	 * Save reference.  Each mount also holds
16676195Sbrian	 * a reference on the root vnode.
16776195Sbrian	 */
16876195Sbrian	error = null_node_create(mp, lowerrootvp, &vp);
16976195Sbrian	/*
17076195Sbrian	 * Unlock the node (either the lower or the alias)
17176195Sbrian	 */
17276195Sbrian	VOP_UNLOCK(vp, 0, p);
17376195Sbrian	/*
17476195Sbrian	 * Make sure the node alias worked
17576195Sbrian	 */
17676195Sbrian	if (error) {
17776195Sbrian		vrele(lowerrootvp);
17876195Sbrian		free(xmp, M_NULLFSMNT);	/* XXX */
17976195Sbrian		return (error);
18076195Sbrian	}
18176195Sbrian
18276195Sbrian	/*
18376195Sbrian	 * Keep a held reference to the root vnode.
18476195Sbrian	 * It is vrele'd in nullfs_unmount.
18576195Sbrian	 */
18676705Sbrian	nullm_rootvp = vp;
18776195Sbrian	nullm_rootvp->v_flag |= VROOT;
18876195Sbrian	xmp->nullm_rootvp = nullm_rootvp;
18976195Sbrian	if (NULLVPTOLOWERVP(nullm_rootvp)->v_mount->mnt_flag & MNT_LOCAL)
19076195Sbrian		mp->mnt_flag |= MNT_LOCAL;
19176195Sbrian	mp->mnt_data = (qaddr_t) xmp;
19276195Sbrian	vfs_getnewfsid(mp);
19376195Sbrian
19476195Sbrian	(void) copyinstr(path, mp->mnt_stat.f_mntonname, MNAMELEN - 1, &size);
19576195Sbrian	bzero(mp->mnt_stat.f_mntonname + size, MNAMELEN - size);
19676195Sbrian	(void) copyinstr(args.target, mp->mnt_stat.f_mntfromname, MNAMELEN - 1,
19776195Sbrian	    &size);
19876195Sbrian	bzero(mp->mnt_stat.f_mntfromname + size, MNAMELEN - size);
19976195Sbrian	(void)nullfs_statfs(mp, &mp->mnt_stat, p);
20076195Sbrian	NULLFSDEBUG("nullfs_mount: lower %s, alias at %s\n",
20176195Sbrian		mp->mnt_stat.f_mntfromname, mp->mnt_stat.f_mntonname);
20276195Sbrian	return (0);
20376195Sbrian}
20476195Sbrian
20576195Sbrian/*
20676195Sbrian * VFS start.  Nothing needed here - the start routine
20776195Sbrian * on the underlying filesystem will have been called
20876195Sbrian * when that filesystem was mounted.
20976195Sbrian */
21076195Sbrianstatic int
21176195Sbriannullfs_start(mp, flags, p)
212	struct mount *mp;
213	int flags;
214	struct proc *p;
215{
216	return (0);
217	/* return VFS_START(MOUNTTONULLMOUNT(mp)->nullm_vfs, flags, p); */
218}
219
220/*
221 * Free reference to null layer
222 */
223static int
224nullfs_unmount(mp, mntflags, p)
225	struct mount *mp;
226	int mntflags;
227	struct proc *p;
228{
229	struct vnode *vp = MOUNTTONULLMOUNT(mp)->nullm_rootvp;
230	void *mntdata;
231	int error;
232	int flags = 0;
233
234	NULLFSDEBUG("nullfs_unmount: mp = %p\n", (void *)mp);
235
236	if (mntflags & MNT_FORCE)
237		flags |= FORCECLOSE;
238
239	error = VFS_ROOT(mp, &vp);
240	if (error)
241		return (error);
242	if (vp->v_usecount > 2) {
243		NULLFSDEBUG("nullfs_unmount: rootvp is busy(%d)\n",
244		    vp->v_usecount);
245		vput(vp);
246		return (EBUSY);
247	}
248	error = vflush(mp, vp, flags);
249	if (error)
250		return (error);
251
252#ifdef NULLFS_DEBUG
253	vprint("alias root of lower", vp);
254#endif
255	vput(vp);
256	/*
257	 * Release reference on underlying root vnode
258	 */
259	vrele(vp);
260	/*
261	 * And blow it away for future re-use
262	 */
263	vgone(vp);
264	/*
265	 * Finally, throw away the null_mount structure
266	 */
267	mntdata = mp->mnt_data;
268	mp->mnt_data = 0;
269	free(mntdata, M_NULLFSMNT);
270	return 0;
271}
272
273static int
274nullfs_root(mp, vpp)
275	struct mount *mp;
276	struct vnode **vpp;
277{
278	struct proc *p = curproc;	/* XXX */
279	struct vnode *vp;
280
281	NULLFSDEBUG("nullfs_root(mp = %p, vp = %p->%p)\n", (void *)mp,
282	    (void *)MOUNTTONULLMOUNT(mp)->nullm_rootvp,
283	    (void *)NULLVPTOLOWERVP(MOUNTTONULLMOUNT(mp)->nullm_rootvp));
284
285	/*
286	 * Return locked reference to root.
287	 */
288	vp = MOUNTTONULLMOUNT(mp)->nullm_rootvp;
289	VREF(vp);
290
291#ifdef NULLFS_DEBUG
292	if (VOP_ISLOCKED(vp, NULL)) {
293		Debugger("root vnode is locked.\n");
294		vrele(vp);
295		return (EDEADLK);
296	}
297#endif
298	vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, p);
299	*vpp = vp;
300	return 0;
301}
302
303static int
304nullfs_quotactl(mp, cmd, uid, arg, p)
305	struct mount *mp;
306	int cmd;
307	uid_t uid;
308	caddr_t arg;
309	struct proc *p;
310{
311	return VFS_QUOTACTL(MOUNTTONULLMOUNT(mp)->nullm_vfs, cmd, uid, arg, p);
312}
313
314static int
315nullfs_statfs(mp, sbp, p)
316	struct mount *mp;
317	struct statfs *sbp;
318	struct proc *p;
319{
320	int error;
321	struct statfs mstat;
322
323	NULLFSDEBUG("nullfs_statfs(mp = %p, vp = %p->%p)\n", (void *)mp,
324	    (void *)MOUNTTONULLMOUNT(mp)->nullm_rootvp,
325	    (void *)NULLVPTOLOWERVP(MOUNTTONULLMOUNT(mp)->nullm_rootvp));
326
327	bzero(&mstat, sizeof(mstat));
328
329	error = VFS_STATFS(MOUNTTONULLMOUNT(mp)->nullm_vfs, &mstat, p);
330	if (error)
331		return (error);
332
333	/* now copy across the "interesting" information and fake the rest */
334	sbp->f_type = mstat.f_type;
335	sbp->f_flags = mstat.f_flags;
336	sbp->f_bsize = mstat.f_bsize;
337	sbp->f_iosize = mstat.f_iosize;
338	sbp->f_blocks = mstat.f_blocks;
339	sbp->f_bfree = mstat.f_bfree;
340	sbp->f_bavail = mstat.f_bavail;
341	sbp->f_files = mstat.f_files;
342	sbp->f_ffree = mstat.f_ffree;
343	if (sbp != &mp->mnt_stat) {
344		bcopy(&mp->mnt_stat.f_fsid, &sbp->f_fsid, sizeof(sbp->f_fsid));
345		bcopy(mp->mnt_stat.f_mntonname, sbp->f_mntonname, MNAMELEN);
346		bcopy(mp->mnt_stat.f_mntfromname, sbp->f_mntfromname, MNAMELEN);
347	}
348	return (0);
349}
350
351static int
352nullfs_sync(mp, waitfor, cred, p)
353	struct mount *mp;
354	int waitfor;
355	struct ucred *cred;
356	struct proc *p;
357{
358	/*
359	 * XXX - Assumes no data cached at null layer.
360	 */
361	return (0);
362}
363
364static int
365nullfs_vget(mp, ino, vpp)
366	struct mount *mp;
367	ino_t ino;
368	struct vnode **vpp;
369{
370	int error;
371	error = VFS_VGET(MOUNTTONULLMOUNT(mp)->nullm_vfs, ino, vpp);
372	if (error)
373		return (error);
374
375	return (null_node_create(mp, *vpp, vpp));
376}
377
378static int
379nullfs_fhtovp(mp, fidp, vpp)
380	struct mount *mp;
381	struct fid *fidp;
382	struct vnode **vpp;
383{
384	int error;
385	error = VFS_FHTOVP(MOUNTTONULLMOUNT(mp)->nullm_vfs, fidp, vpp);
386	if (error)
387		return (error);
388
389	return (null_node_create(mp, *vpp, vpp));
390}
391
392static int
393nullfs_checkexp(mp, nam, extflagsp, credanonp)
394	struct mount *mp;
395	struct sockaddr *nam;
396	int *extflagsp;
397	struct ucred **credanonp;
398{
399
400	return VFS_CHECKEXP(MOUNTTONULLMOUNT(mp)->nullm_vfs, nam,
401		extflagsp, credanonp);
402}
403
404static int
405nullfs_vptofh(vp, fhp)
406	struct vnode *vp;
407	struct fid *fhp;
408{
409	return VFS_VPTOFH(NULLVPTOLOWERVP(vp), fhp);
410}
411
412static int
413nullfs_extattrctl(mp, cmd, attrname, arg, p)
414	struct mount *mp;
415	int cmd;
416	const char *attrname;
417	caddr_t arg;
418	struct proc *p;
419{
420	return VFS_EXTATTRCTL(MOUNTTONULLMOUNT(mp)->nullm_vfs, cmd, attrname,
421	    arg, p);
422}
423
424
425static struct vfsops null_vfsops = {
426	nullfs_mount,
427	nullfs_start,
428	nullfs_unmount,
429	nullfs_root,
430	nullfs_quotactl,
431	nullfs_statfs,
432	nullfs_sync,
433	nullfs_vget,
434	nullfs_fhtovp,
435	nullfs_checkexp,
436	nullfs_vptofh,
437	nullfs_init,
438	nullfs_uninit,
439	nullfs_extattrctl,
440};
441
442VFS_SET(null_vfsops, nullfs, VFCF_LOOPBACK);
443