pseudofs_vncache.c revision 143592
1/*-
2 * Copyright (c) 2001 Dag-Erling Co�dan Sm�rgrav
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer
10 *    in this position and unchanged.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 *    notice, this list of conditions and the following disclaimer in the
13 *    documentation and/or other materials provided with the distribution.
14 * 3. The name of the author may not be used to endorse or promote products
15 *    derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include <sys/cdefs.h>
30__FBSDID("$FreeBSD: head/sys/fs/pseudofs/pseudofs_vncache.c 143592 2005-03-14 15:54:11Z des $");
31
32#include "opt_pseudofs.h"
33
34#include <sys/param.h>
35#include <sys/kernel.h>
36#include <sys/systm.h>
37#include <sys/eventhandler.h>
38#include <sys/lock.h>
39#include <sys/malloc.h>
40#include <sys/mutex.h>
41#include <sys/proc.h>
42#include <sys/sysctl.h>
43#include <sys/vnode.h>
44
45#include <fs/pseudofs/pseudofs.h>
46#include <fs/pseudofs/pseudofs_internal.h>
47
48static MALLOC_DEFINE(M_PFSVNCACHE, "pfs_vncache", "pseudofs vnode cache");
49
50static struct mtx pfs_vncache_mutex;
51static struct pfs_vdata *pfs_vncache;
52static eventhandler_tag pfs_exit_tag;
53static void pfs_exit(void *arg, struct proc *p);
54
55SYSCTL_NODE(_vfs_pfs, OID_AUTO, vncache, CTLFLAG_RW, 0,
56    "pseudofs vnode cache");
57
58static int pfs_vncache_entries;
59SYSCTL_INT(_vfs_pfs_vncache, OID_AUTO, entries, CTLFLAG_RD,
60    &pfs_vncache_entries, 0,
61    "number of entries in the vnode cache");
62
63static int pfs_vncache_maxentries;
64SYSCTL_INT(_vfs_pfs_vncache, OID_AUTO, maxentries, CTLFLAG_RD,
65    &pfs_vncache_maxentries, 0,
66    "highest number of entries in the vnode cache");
67
68static int pfs_vncache_hits;
69SYSCTL_INT(_vfs_pfs_vncache, OID_AUTO, hits, CTLFLAG_RD,
70    &pfs_vncache_hits, 0,
71    "number of cache hits since initialization");
72
73static int pfs_vncache_misses;
74SYSCTL_INT(_vfs_pfs_vncache, OID_AUTO, misses, CTLFLAG_RD,
75    &pfs_vncache_misses, 0,
76    "number of cache misses since initialization");
77
78extern struct vop_vector pfs_vnodeops;	/* XXX -> .h file */
79
80/*
81 * Initialize vnode cache
82 */
83void
84pfs_vncache_load(void)
85{
86	mtx_init(&pfs_vncache_mutex, "pseudofs_vncache", NULL, MTX_DEF);
87	pfs_exit_tag = EVENTHANDLER_REGISTER(process_exit, pfs_exit, NULL,
88	    EVENTHANDLER_PRI_ANY);
89}
90
91/*
92 * Tear down vnode cache
93 */
94void
95pfs_vncache_unload(void)
96{
97	EVENTHANDLER_DEREGISTER(process_exit, pfs_exit_tag);
98	if (pfs_vncache_entries != 0)
99		printf("pfs_vncache_unload(): %d entries remaining\n",
100		    pfs_vncache_entries);
101	mtx_destroy(&pfs_vncache_mutex);
102}
103
104/*
105 * Allocate a vnode
106 */
107int
108pfs_vncache_alloc(struct mount *mp, struct vnode **vpp,
109		  struct pfs_node *pn, pid_t pid)
110{
111	struct pfs_vdata *pvd;
112	int error;
113
114	/*
115	 * See if the vnode is in the cache.
116	 * XXX linear search is not very efficient.
117	 */
118	mtx_lock(&pfs_vncache_mutex);
119	for (pvd = pfs_vncache; pvd; pvd = pvd->pvd_next) {
120		if (pvd->pvd_pn == pn && pvd->pvd_pid == pid &&
121		    pvd->pvd_vnode->v_mount == mp) {
122			if (vget(pvd->pvd_vnode, 0, curthread) == 0) {
123				++pfs_vncache_hits;
124				*vpp = pvd->pvd_vnode;
125				mtx_unlock(&pfs_vncache_mutex);
126				/* XXX see comment at top of pfs_lookup() */
127				cache_purge(*vpp);
128				vn_lock(*vpp, LK_RETRY | LK_EXCLUSIVE,
129				    curthread);
130				return (0);
131			}
132			/* XXX if this can happen, we're in trouble */
133			break;
134		}
135	}
136	mtx_unlock(&pfs_vncache_mutex);
137	++pfs_vncache_misses;
138
139	/* nope, get a new one */
140	MALLOC(pvd, struct pfs_vdata *, sizeof *pvd, M_PFSVNCACHE, M_WAITOK);
141	if (++pfs_vncache_entries > pfs_vncache_maxentries)
142		pfs_vncache_maxentries = pfs_vncache_entries;
143	error = getnewvnode("pseudofs", mp, &pfs_vnodeops, vpp);
144	if (error) {
145		FREE(pvd, M_PFSVNCACHE);
146		return (error);
147	}
148	pvd->pvd_pn = pn;
149	pvd->pvd_pid = pid;
150	(*vpp)->v_data = pvd;
151	switch (pn->pn_type) {
152	case pfstype_root:
153		(*vpp)->v_vflag = VV_ROOT;
154#if 0
155		printf("root vnode allocated\n");
156#endif
157		/* fall through */
158	case pfstype_dir:
159	case pfstype_this:
160	case pfstype_parent:
161	case pfstype_procdir:
162		(*vpp)->v_type = VDIR;
163		break;
164	case pfstype_file:
165		(*vpp)->v_type = VREG;
166		break;
167	case pfstype_symlink:
168		(*vpp)->v_type = VLNK;
169		break;
170	case pfstype_none:
171		KASSERT(0, ("pfs_vncache_alloc called for null node\n"));
172	default:
173		panic("%s has unexpected type: %d", pn->pn_name, pn->pn_type);
174	}
175	/*
176	 * Propagate flag through to vnode so users know it can change
177	 * if the process changes (i.e. execve)
178	 */
179	if ((pn->pn_flags & PFS_PROCDEP) != 0)
180		(*vpp)->v_vflag |= VV_PROCDEP;
181	pvd->pvd_vnode = *vpp;
182	mtx_lock(&pfs_vncache_mutex);
183	pvd->pvd_prev = NULL;
184	pvd->pvd_next = pfs_vncache;
185	if (pvd->pvd_next)
186		pvd->pvd_next->pvd_prev = pvd;
187	pfs_vncache = pvd;
188	mtx_unlock(&pfs_vncache_mutex);
189        (*vpp)->v_vnlock->lk_flags |= LK_CANRECURSE;
190	vn_lock(*vpp, LK_RETRY | LK_EXCLUSIVE, curthread);
191	return (0);
192}
193
194/*
195 * Free a vnode
196 */
197int
198pfs_vncache_free(struct vnode *vp)
199{
200	struct pfs_vdata *pvd;
201
202	mtx_lock(&pfs_vncache_mutex);
203	pvd = (struct pfs_vdata *)vp->v_data;
204	KASSERT(pvd != NULL, ("pfs_vncache_free(): no vnode data\n"));
205	if (pvd->pvd_next)
206		pvd->pvd_next->pvd_prev = pvd->pvd_prev;
207	if (pvd->pvd_prev)
208		pvd->pvd_prev->pvd_next = pvd->pvd_next;
209	else
210		pfs_vncache = pvd->pvd_next;
211	mtx_unlock(&pfs_vncache_mutex);
212
213	--pfs_vncache_entries;
214	FREE(pvd, M_PFSVNCACHE);
215	vp->v_data = NULL;
216	return (0);
217}
218
219/*
220 * Free all vnodes associated with a defunct process
221 *
222 * XXXRW: It is unfortunate that pfs_exit() always acquires and releases two
223 * mutexes (one of which is Giant) for every process exit, even if procfs
224 * isn't mounted.
225 */
226static void
227pfs_exit(void *arg, struct proc *p)
228{
229	struct pfs_vdata *pvd;
230	struct vnode *vnp;
231
232	if (pfs_vncache == NULL)
233		return;
234	mtx_lock(&Giant);
235	/*
236	 * This is extremely inefficient due to the fact that vgone() not
237	 * only indirectly modifies the vnode cache, but may also sleep.
238	 * We can neither hold pfs_vncache_mutex across a vgone() call,
239	 * nor make any assumptions about the state of the cache after
240	 * vgone() returns.  In consequence, we must start over after
241	 * every vgone() call, and keep trying until we manage to traverse
242	 * the entire cache.
243	 *
244	 * The only way to improve this situation is to change the data
245	 * structure used to implement the cache.  An obvious choice in
246	 * this particular case would be a BST sorted by PID.
247	 */
248	mtx_lock(&pfs_vncache_mutex);
249	pvd = pfs_vncache;
250	while (pvd != NULL) {
251		if (pvd->pvd_pid == p->p_pid) {
252			vnp = pvd->pvd_vnode;
253			mtx_unlock(&pfs_vncache_mutex);
254			VOP_LOCK(vnp, LK_EXCLUSIVE, curthread);
255			vgone(vnp);
256			VOP_UNLOCK(vnp, 0, curthread);
257			mtx_lock(&pfs_vncache_mutex);
258			pvd = pfs_vncache;
259		} else {
260			pvd = pvd->pvd_next;
261		}
262	}
263	mtx_unlock(&pfs_vncache_mutex);
264	mtx_unlock(&Giant);
265}
266
267/*
268 * Disable a pseudofs node, and free all vnodes associated with it
269 */
270int
271pfs_disable(struct pfs_node *pn)
272{
273	struct pfs_vdata *pvd;
274	struct vnode *vnp;
275
276	if (pn->pn_flags & PFS_DISABLED)
277		return (0);
278	pn->pn_flags |= PFS_DISABLED;
279	/* XXX see comment above nearly identical code in pfs_exit() */
280	mtx_lock(&pfs_vncache_mutex);
281	pvd = pfs_vncache;
282	while (pvd != NULL) {
283		if (pvd->pvd_pn == pn) {
284			vnp = pvd->pvd_vnode;
285			mtx_unlock(&pfs_vncache_mutex);
286			VOP_LOCK(vnp, LK_EXCLUSIVE, curthread);
287			vgone(vnp);
288			VOP_UNLOCK(vnp, 0, curthread);
289			mtx_lock(&pfs_vncache_mutex);
290			pvd = pfs_vncache;
291		} else {
292			pvd = pvd->pvd_next;
293		}
294	}
295	mtx_unlock(&pfs_vncache_mutex);
296	return (0);
297}
298
299/*
300 * Re-enable a disabled pseudofs node
301 */
302int
303pfs_enable(struct pfs_node *pn)
304{
305	pn->pn_flags &= ~PFS_DISABLED;
306	return (0);
307}
308