null_vfsops.c revision 38909
1219820Sjeff/*
2219820Sjeff * Copyright (c) 1992, 1993, 1995
3219820Sjeff *	The Regents of the University of California.  All rights reserved.
4219820Sjeff *
5219820Sjeff * This code is derived from software donated to Berkeley by
6219820Sjeff * Jan-Simon Pendry.
7219820Sjeff *
8219820Sjeff * Redistribution and use in source and binary forms, with or without
9219820Sjeff * modification, are permitted provided that the following conditions
10219820Sjeff * are met:
11219820Sjeff * 1. Redistributions of source code must retain the above copyright
12219820Sjeff *    notice, this list of conditions and the following disclaimer.
13219820Sjeff * 2. Redistributions in binary form must reproduce the above copyright
14219820Sjeff *    notice, this list of conditions and the following disclaimer in the
15219820Sjeff *    documentation and/or other materials provided with the distribution.
16219820Sjeff * 3. All advertising materials mentioning features or use of this software
17219820Sjeff *    must display the following acknowledgement:
18219820Sjeff *	This product includes software developed by the University of
19219820Sjeff *	California, Berkeley and its contributors.
20219820Sjeff * 4. Neither the name of the University nor the names of its contributors
21219820Sjeff *    may be used to endorse or promote products derived from this software
22219820Sjeff *    without specific prior written permission.
23219820Sjeff *
24219820Sjeff * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25219820Sjeff * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26219820Sjeff * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27219820Sjeff * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28219820Sjeff * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29219820Sjeff * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30219820Sjeff * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31219820Sjeff * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32219820Sjeff * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33219820Sjeff * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34219820Sjeff * SUCH DAMAGE.
35219820Sjeff *
36219820Sjeff *	@(#)null_vfsops.c	8.2 (Berkeley) 1/21/94
37219820Sjeff *
38219820Sjeff * @(#)lofs_vfsops.c	1.2 (Berkeley) 6/18/92
39219820Sjeff * $Id: null_vfsops.c,v 1.27 1998/07/30 17:40:45 bde Exp $
40219820Sjeff */
41219820Sjeff
42219820Sjeff/*
43219820Sjeff * Null Layer
44219820Sjeff * (See null_vnops.c for a description of what this does.)
45219820Sjeff */
46219820Sjeff
47219820Sjeff#include "opt_debug_nullfs.h"
48219820Sjeff
49219820Sjeff#include <sys/param.h>
50219820Sjeff#include <sys/systm.h>
51219820Sjeff#include <sys/kernel.h>
52219820Sjeff#include <sys/proc.h>
53219820Sjeff#include <sys/malloc.h>
54219820Sjeff#include <sys/vnode.h>
55219820Sjeff#include <sys/mount.h>
56219820Sjeff#include <sys/namei.h>
57219820Sjeff#include <miscfs/nullfs/null.h>
58219820Sjeff
59219820Sjeffstatic MALLOC_DEFINE(M_NULLFSMNT, "NULLFS mount", "NULLFS mount structure");
60219820Sjeff
61219820Sjeffstatic int	nullfs_fhtovp __P((struct mount *mp, struct fid *fidp,
62219820Sjeff				   struct sockaddr *nam, struct vnode **vpp,
63219820Sjeff				   int *exflagsp, struct ucred **credanonp));
64219820Sjeffstatic int	nullfs_mount __P((struct mount *mp, char *path, caddr_t data,
65219820Sjeff				  struct nameidata *ndp, struct proc *p));
66219820Sjeffstatic int	nullfs_quotactl __P((struct mount *mp, int cmd, uid_t uid,
67219820Sjeff				     caddr_t arg, struct proc *p));
68219820Sjeffstatic int	nullfs_root __P((struct mount *mp, struct vnode **vpp));
69219820Sjeffstatic int	nullfs_start __P((struct mount *mp, int flags, struct proc *p));
70219820Sjeffstatic int	nullfs_statfs __P((struct mount *mp, struct statfs *sbp,
71219820Sjeff				   struct proc *p));
72219820Sjeffstatic int	nullfs_sync __P((struct mount *mp, int waitfor,
73219820Sjeff				 struct ucred *cred, struct proc *p));
74219820Sjeffstatic int	nullfs_unmount __P((struct mount *mp, int mntflags,
75219820Sjeff				    struct proc *p));
76219820Sjeffstatic int	nullfs_vget __P((struct mount *mp, ino_t ino,
77219820Sjeff				 struct vnode **vpp));
78219820Sjeffstatic int	nullfs_vptofh __P((struct vnode *vp, struct fid *fhp));
79219820Sjeff
80219820Sjeff/*
81219820Sjeff * Mount null layer
82219820Sjeff */
83219820Sjeffstatic int
84219820Sjeffnullfs_mount(mp, path, data, ndp, p)
85219820Sjeff	struct mount *mp;
86219820Sjeff	char *path;
87219820Sjeff	caddr_t data;
88219820Sjeff	struct nameidata *ndp;
89219820Sjeff	struct proc *p;
90219820Sjeff{
91219820Sjeff	int error = 0;
92219820Sjeff	struct null_args args;
93219820Sjeff	struct vnode *lowerrootvp, *vp;
94	struct vnode *nullm_rootvp;
95	struct null_mount *xmp;
96	u_int size;
97	int isvnunlocked = 0;
98
99#ifdef NULLFS_DIAGNOSTIC
100	printf("nullfs_mount(mp = %p)\n", (void *)mp);
101#endif
102
103	/*
104	 * Update is a no-op
105	 */
106	if (mp->mnt_flag & MNT_UPDATE) {
107		return (EOPNOTSUPP);
108		/* return VFS_MOUNT(MOUNTTONULLMOUNT(mp)->nullm_vfs, path, data, ndp, p);*/
109	}
110
111	/*
112	 * Get argument
113	 */
114	error = copyin(data, (caddr_t)&args, sizeof(struct null_args));
115	if (error)
116		return (error);
117
118	/*
119	 * Unlock lower node to avoid deadlock.
120	 * (XXX) VOP_ISLOCKED is needed?
121	 */
122	if ((mp->mnt_vnodecovered->v_op == null_vnodeop_p) &&
123		VOP_ISLOCKED(mp->mnt_vnodecovered)) {
124		VOP_UNLOCK(mp->mnt_vnodecovered, 0, p);
125		isvnunlocked = 1;
126	}
127	/*
128	 * Find lower node
129	 */
130	NDINIT(ndp, LOOKUP, FOLLOW|WANTPARENT|LOCKLEAF,
131		UIO_USERSPACE, args.target, p);
132	error = namei(ndp);
133	/*
134	 * Re-lock vnode.
135	 */
136	if (isvnunlocked && !VOP_ISLOCKED(mp->mnt_vnodecovered))
137		vn_lock(mp->mnt_vnodecovered, LK_EXCLUSIVE | LK_RETRY, p);
138
139	if (error)
140		return (error);
141
142	/*
143	 * Sanity check on lower vnode
144	 */
145	lowerrootvp = ndp->ni_vp;
146
147	vrele(ndp->ni_dvp);
148	ndp->ni_dvp = NULLVP;
149
150	/*
151	 * Check multi null mount to avoid `lock against myself' panic.
152	 */
153	if (lowerrootvp == VTONULL(mp->mnt_vnodecovered)->null_lowervp) {
154#ifdef DIAGNOSTIC
155		printf("nullfs_mount: multi null mount?\n");
156#endif
157		return (EDEADLK);
158	}
159
160	xmp = (struct null_mount *) malloc(sizeof(struct null_mount),
161				M_NULLFSMNT, M_WAITOK);	/* XXX */
162
163	/*
164	 * Save reference to underlying FS
165	 */
166	xmp->nullm_vfs = lowerrootvp->v_mount;
167
168	/*
169	 * Save reference.  Each mount also holds
170	 * a reference on the root vnode.
171	 */
172	error = null_node_create(mp, lowerrootvp, &vp);
173	/*
174	 * Unlock the node (either the lower or the alias)
175	 */
176	VOP_UNLOCK(vp, 0, p);
177	/*
178	 * Make sure the node alias worked
179	 */
180	if (error) {
181		vrele(lowerrootvp);
182		free(xmp, M_NULLFSMNT);	/* XXX */
183		return (error);
184	}
185
186	/*
187	 * Keep a held reference to the root vnode.
188	 * It is vrele'd in nullfs_unmount.
189	 */
190	nullm_rootvp = vp;
191	nullm_rootvp->v_flag |= VROOT;
192	xmp->nullm_rootvp = nullm_rootvp;
193	if (NULLVPTOLOWERVP(nullm_rootvp)->v_mount->mnt_flag & MNT_LOCAL)
194		mp->mnt_flag |= MNT_LOCAL;
195	mp->mnt_data = (qaddr_t) xmp;
196	vfs_getnewfsid(mp);
197
198	(void) copyinstr(path, mp->mnt_stat.f_mntonname, MNAMELEN - 1, &size);
199	bzero(mp->mnt_stat.f_mntonname + size, MNAMELEN - size);
200	(void) copyinstr(args.target, mp->mnt_stat.f_mntfromname, MNAMELEN - 1,
201	    &size);
202	bzero(mp->mnt_stat.f_mntfromname + size, MNAMELEN - size);
203	(void)nullfs_statfs(mp, &mp->mnt_stat, p);
204#ifdef NULLFS_DIAGNOSTIC
205	printf("nullfs_mount: lower %s, alias at %s\n",
206		mp->mnt_stat.f_mntfromname, mp->mnt_stat.f_mntonname);
207#endif
208	return (0);
209}
210
211/*
212 * VFS start.  Nothing needed here - the start routine
213 * on the underlying filesystem will have been called
214 * when that filesystem was mounted.
215 */
216static int
217nullfs_start(mp, flags, p)
218	struct mount *mp;
219	int flags;
220	struct proc *p;
221{
222	return (0);
223	/* return VFS_START(MOUNTTONULLMOUNT(mp)->nullm_vfs, flags, p); */
224}
225
226/*
227 * Free reference to null layer
228 */
229static int
230nullfs_unmount(mp, mntflags, p)
231	struct mount *mp;
232	int mntflags;
233	struct proc *p;
234{
235	struct vnode *nullm_rootvp = MOUNTTONULLMOUNT(mp)->nullm_rootvp;
236	int error;
237	int flags = 0;
238
239#ifdef NULLFS_DIAGNOSTIC
240	printf("nullfs_unmount(mp = %p)\n", (void *)mp);
241#endif
242
243	if (mntflags & MNT_FORCE)
244		flags |= FORCECLOSE;
245
246	/*
247	 * Clear out buffer cache.  I don't think we
248	 * ever get anything cached at this level at the
249	 * moment, but who knows...
250	 */
251#if 0
252	mntflushbuf(mp, 0);
253	if (mntinvalbuf(mp, 1))
254		return (EBUSY);
255#endif
256	if (nullm_rootvp->v_usecount > 1)
257		return (EBUSY);
258	error = vflush(mp, nullm_rootvp, flags);
259	if (error)
260		return (error);
261
262#ifdef NULLFS_DIAGNOSTIC
263	vprint("alias root of lower", nullm_rootvp);
264#endif
265	/*
266	 * Release reference on underlying root vnode
267	 */
268	vrele(nullm_rootvp);
269	/*
270	 * And blow it away for future re-use
271	 */
272	vgone(nullm_rootvp);
273	/*
274	 * Finally, throw away the null_mount structure
275	 */
276	free(mp->mnt_data, M_NULLFSMNT);	/* XXX */
277	mp->mnt_data = 0;
278	return 0;
279}
280
281static int
282nullfs_root(mp, vpp)
283	struct mount *mp;
284	struct vnode **vpp;
285{
286	struct proc *p = curproc;	/* XXX */
287	struct vnode *vp;
288
289#ifdef NULLFS_DIAGNOSTIC
290	printf("nullfs_root(mp = %p, vp = %p->%p)\n", (void *)mp,
291	    (void *)MOUNTTONULLMOUNT(mp)->nullm_rootvp,
292	    (void *)NULLVPTOLOWERVP(MOUNTTONULLMOUNT(mp)->nullm_rootvp));
293#endif
294
295	/*
296	 * Return locked reference to root.
297	 */
298	vp = MOUNTTONULLMOUNT(mp)->nullm_rootvp;
299	VREF(vp);
300	if (VOP_ISLOCKED(vp)) {
301		/*
302		 * XXX
303		 * Should we check type of node?
304		 */
305#ifdef DIAGNOSTIC
306		printf("nullfs_root: multi null mount?\n");
307#endif
308		vrele(vp);
309		return (EDEADLK);
310	} else
311		vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, p);
312	*vpp = vp;
313	return 0;
314}
315
316static int
317nullfs_quotactl(mp, cmd, uid, arg, p)
318	struct mount *mp;
319	int cmd;
320	uid_t uid;
321	caddr_t arg;
322	struct proc *p;
323{
324	return VFS_QUOTACTL(MOUNTTONULLMOUNT(mp)->nullm_vfs, cmd, uid, arg, p);
325}
326
327static int
328nullfs_statfs(mp, sbp, p)
329	struct mount *mp;
330	struct statfs *sbp;
331	struct proc *p;
332{
333	int error;
334	struct statfs mstat;
335
336#ifdef NULLFS_DIAGNOSTIC
337	printf("nullfs_statfs(mp = %p, vp = %p->%p)\n", (void *)mp,
338	    (void *)MOUNTTONULLMOUNT(mp)->nullm_rootvp,
339	    (void *)NULLVPTOLOWERVP(MOUNTTONULLMOUNT(mp)->nullm_rootvp));
340#endif
341
342	bzero(&mstat, sizeof(mstat));
343
344	error = VFS_STATFS(MOUNTTONULLMOUNT(mp)->nullm_vfs, &mstat, p);
345	if (error)
346		return (error);
347
348	/* now copy across the "interesting" information and fake the rest */
349	sbp->f_type = mstat.f_type;
350	sbp->f_flags = mstat.f_flags;
351	sbp->f_bsize = mstat.f_bsize;
352	sbp->f_iosize = mstat.f_iosize;
353	sbp->f_blocks = mstat.f_blocks;
354	sbp->f_bfree = mstat.f_bfree;
355	sbp->f_bavail = mstat.f_bavail;
356	sbp->f_files = mstat.f_files;
357	sbp->f_ffree = mstat.f_ffree;
358	if (sbp != &mp->mnt_stat) {
359		bcopy(&mp->mnt_stat.f_fsid, &sbp->f_fsid, sizeof(sbp->f_fsid));
360		bcopy(mp->mnt_stat.f_mntonname, sbp->f_mntonname, MNAMELEN);
361		bcopy(mp->mnt_stat.f_mntfromname, sbp->f_mntfromname, MNAMELEN);
362	}
363	return (0);
364}
365
366static int
367nullfs_sync(mp, waitfor, cred, p)
368	struct mount *mp;
369	int waitfor;
370	struct ucred *cred;
371	struct proc *p;
372{
373	/*
374	 * XXX - Assumes no data cached at null layer.
375	 */
376	return (0);
377}
378
379static int
380nullfs_vget(mp, ino, vpp)
381	struct mount *mp;
382	ino_t ino;
383	struct vnode **vpp;
384{
385
386	return VFS_VGET(MOUNTTONULLMOUNT(mp)->nullm_vfs, ino, vpp);
387}
388
389static int
390nullfs_fhtovp(mp, fidp, nam, vpp, exflagsp, credanonp)
391	struct mount *mp;
392	struct fid *fidp;
393	struct sockaddr *nam;
394	struct vnode **vpp;
395	int *exflagsp;
396	struct ucred**credanonp;
397{
398
399	return VFS_FHTOVP(MOUNTTONULLMOUNT(mp)->nullm_vfs, fidp, nam,
400			  vpp, exflagsp, credanonp);
401}
402
403static int
404nullfs_vptofh(vp, fhp)
405	struct vnode *vp;
406	struct fid *fhp;
407{
408	return VFS_VPTOFH(NULLVPTOLOWERVP(vp), fhp);
409}
410
411static struct vfsops null_vfsops = {
412	nullfs_mount,
413	nullfs_start,
414	nullfs_unmount,
415	nullfs_root,
416	nullfs_quotactl,
417	nullfs_statfs,
418	nullfs_sync,
419	nullfs_vget,
420	nullfs_fhtovp,
421	nullfs_vptofh,
422	nullfs_init,
423};
424
425VFS_SET(null_vfsops, null, VFCF_LOOPBACK);
426