xref: /freebsd/sys/kern/vfs_cache.c (revision b3aaa0cc21c63d388230c7ef2a80abd631ff20d5)
1 /*-
2  * Copyright (c) 1989, 1993, 1995
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Poul-Henning Kamp of the FreeBSD Project.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 4. Neither the name of the University nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  *
32  *	@(#)vfs_cache.c	8.5 (Berkeley) 3/22/95
33  */
34 
35 #include <sys/cdefs.h>
36 __FBSDID("$FreeBSD$");
37 
38 #include <sys/param.h>
39 #include <sys/filedesc.h>
40 #include <sys/fnv_hash.h>
41 #include <sys/kernel.h>
42 #include <sys/lock.h>
43 #include <sys/malloc.h>
44 #include <sys/mount.h>
45 #include <sys/namei.h>
46 #include <sys/proc.h>
47 #include <sys/rwlock.h>
48 #include <sys/syscallsubr.h>
49 #include <sys/sysctl.h>
50 #include <sys/sysproto.h>
51 #include <sys/systm.h>
52 #include <sys/vnode.h>
53 
54 #include <vm/uma.h>
55 
56 /*
57  * This structure describes the elements in the cache of recent
58  * names looked up by namei.
59  */
60 
61 struct	namecache {
62 	LIST_ENTRY(namecache) nc_hash;	/* hash chain */
63 	LIST_ENTRY(namecache) nc_src;	/* source vnode list */
64 	TAILQ_ENTRY(namecache) nc_dst;	/* destination vnode list */
65 	struct	vnode *nc_dvp;		/* vnode of parent of name */
66 	struct	vnode *nc_vp;		/* vnode the name refers to */
67 	u_char	nc_flag;		/* flag bits */
68 	u_char	nc_nlen;		/* length of name */
69 	char	nc_name[0];		/* segment name */
70 };
71 
72 /*
73  * Name caching works as follows:
74  *
75  * Names found by directory scans are retained in a cache
76  * for future reference.  It is managed LRU, so frequently
77  * used names will hang around.  Cache is indexed by hash value
78  * obtained from (vp, name) where vp refers to the directory
79  * containing name.
80  *
81  * If it is a "negative" entry, (i.e. for a name that is known NOT to
82  * exist) the vnode pointer will be NULL.
83  *
84  * Upon reaching the last segment of a path, if the reference
85  * is for DELETE, or NOCACHE is set (rewrite), and the
86  * name is located in the cache, it will be dropped.
87  */
88 
89 /*
90  * Structures associated with name cacheing.
91  */
92 #define NCHHASH(hash) \
93 	(&nchashtbl[(hash) & nchash])
94 static LIST_HEAD(nchashhead, namecache) *nchashtbl;	/* Hash Table */
95 static TAILQ_HEAD(, namecache) ncneg;	/* Hash Table */
96 static u_long	nchash;			/* size of hash table */
97 SYSCTL_ULONG(_debug, OID_AUTO, nchash, CTLFLAG_RD, &nchash, 0, "");
98 static u_long	ncnegfactor = 16;	/* ratio of negative entries */
99 SYSCTL_ULONG(_debug, OID_AUTO, ncnegfactor, CTLFLAG_RW, &ncnegfactor, 0, "");
100 static u_long	numneg;			/* number of cache entries allocated */
101 SYSCTL_ULONG(_debug, OID_AUTO, numneg, CTLFLAG_RD, &numneg, 0, "");
102 static u_long	numcache;		/* number of cache entries allocated */
103 SYSCTL_ULONG(_debug, OID_AUTO, numcache, CTLFLAG_RD, &numcache, 0, "");
104 static u_long	numcachehv;		/* number of cache entries with vnodes held */
105 SYSCTL_ULONG(_debug, OID_AUTO, numcachehv, CTLFLAG_RD, &numcachehv, 0, "");
106 #if 0
107 static u_long	numcachepl;		/* number of cache purge for leaf entries */
108 SYSCTL_ULONG(_debug, OID_AUTO, numcachepl, CTLFLAG_RD, &numcachepl, 0, "");
109 #endif
110 struct	nchstats nchstats;		/* cache effectiveness statistics */
111 
112 static struct rwlock cache_lock;
113 RW_SYSINIT(vfscache, &cache_lock, "Name Cache");
114 
115 #define	CACHE_UPGRADE_LOCK()	rw_try_upgrade(&cache_lock)
116 #define	CACHE_RLOCK()		rw_rlock(&cache_lock)
117 #define	CACHE_RUNLOCK()		rw_runlock(&cache_lock)
118 #define	CACHE_WLOCK()		rw_wlock(&cache_lock)
119 #define	CACHE_WUNLOCK()		rw_wunlock(&cache_lock)
120 
121 /*
122  * UMA zones for the VFS cache.
123  *
124  * The small cache is used for entries with short names, which are the
125  * most common.  The large cache is used for entries which are too big to
126  * fit in the small cache.
127  */
128 static uma_zone_t cache_zone_small;
129 static uma_zone_t cache_zone_large;
130 
131 #define	CACHE_PATH_CUTOFF	32
132 #define	CACHE_ZONE_SMALL	(sizeof(struct namecache) + CACHE_PATH_CUTOFF)
133 #define	CACHE_ZONE_LARGE	(sizeof(struct namecache) + NAME_MAX)
134 
135 #define cache_alloc(len)	uma_zalloc(((len) <= CACHE_PATH_CUTOFF) ? \
136 	cache_zone_small : cache_zone_large, M_WAITOK)
137 #define cache_free(ncp)		do { \
138 	if (ncp != NULL) \
139 		uma_zfree(((ncp)->nc_nlen <= CACHE_PATH_CUTOFF) ? \
140 		    cache_zone_small : cache_zone_large, (ncp)); \
141 } while (0)
142 
143 static int	doingcache = 1;		/* 1 => enable the cache */
144 SYSCTL_INT(_debug, OID_AUTO, vfscache, CTLFLAG_RW, &doingcache, 0, "");
145 
146 /* Export size information to userland */
147 SYSCTL_INT(_debug_sizeof, OID_AUTO, namecache, CTLFLAG_RD, 0,
148 	sizeof(struct namecache), "");
149 
150 /*
151  * The new name cache statistics
152  */
153 static SYSCTL_NODE(_vfs, OID_AUTO, cache, CTLFLAG_RW, 0, "Name cache statistics");
154 #define STATNODE(mode, name, var) \
155 	SYSCTL_ULONG(_vfs_cache, OID_AUTO, name, mode, var, 0, "");
156 STATNODE(CTLFLAG_RD, numneg, &numneg);
157 STATNODE(CTLFLAG_RD, numcache, &numcache);
158 static u_long numcalls; STATNODE(CTLFLAG_RD, numcalls, &numcalls);
159 static u_long dothits; STATNODE(CTLFLAG_RD, dothits, &dothits);
160 static u_long dotdothits; STATNODE(CTLFLAG_RD, dotdothits, &dotdothits);
161 static u_long numchecks; STATNODE(CTLFLAG_RD, numchecks, &numchecks);
162 static u_long nummiss; STATNODE(CTLFLAG_RD, nummiss, &nummiss);
163 static u_long nummisszap; STATNODE(CTLFLAG_RD, nummisszap, &nummisszap);
164 static u_long numposzaps; STATNODE(CTLFLAG_RD, numposzaps, &numposzaps);
165 static u_long numposhits; STATNODE(CTLFLAG_RD, numposhits, &numposhits);
166 static u_long numnegzaps; STATNODE(CTLFLAG_RD, numnegzaps, &numnegzaps);
167 static u_long numneghits; STATNODE(CTLFLAG_RD, numneghits, &numneghits);
168 static u_long numupgrades; STATNODE(CTLFLAG_RD, numupgrades, &numupgrades);
169 
170 SYSCTL_OPAQUE(_vfs_cache, OID_AUTO, nchstats, CTLFLAG_RD | CTLFLAG_MPSAFE,
171 	&nchstats, sizeof(nchstats), "LU", "VFS cache effectiveness statistics");
172 
173 
174 
175 static void cache_zap(struct namecache *ncp);
176 static int vn_vptocnp(struct vnode **vp, char **bp, char *buf, u_int *buflen);
177 static int vn_fullpath1(struct thread *td, struct vnode *vp, struct vnode *rdir,
178     char *buf, char **retbuf, u_int buflen);
179 
180 static MALLOC_DEFINE(M_VFSCACHE, "vfscache", "VFS name cache entries");
181 
182 /*
183  * Flags in namecache.nc_flag
184  */
185 #define NCF_WHITE	1
186 
187 /*
188  * Grab an atomic snapshot of the name cache hash chain lengths
189  */
190 SYSCTL_NODE(_debug, OID_AUTO, hashstat, CTLFLAG_RW, NULL, "hash table stats");
191 
192 static int
193 sysctl_debug_hashstat_rawnchash(SYSCTL_HANDLER_ARGS)
194 {
195 	int error;
196 	struct nchashhead *ncpp;
197 	struct namecache *ncp;
198 	int n_nchash;
199 	int count;
200 
201 	n_nchash = nchash + 1;	/* nchash is max index, not count */
202 	if (!req->oldptr)
203 		return SYSCTL_OUT(req, 0, n_nchash * sizeof(int));
204 
205 	/* Scan hash tables for applicable entries */
206 	for (ncpp = nchashtbl; n_nchash > 0; n_nchash--, ncpp++) {
207 		CACHE_RLOCK();
208 		count = 0;
209 		LIST_FOREACH(ncp, ncpp, nc_hash) {
210 			count++;
211 		}
212 		CACHE_RUNLOCK();
213 		error = SYSCTL_OUT(req, &count, sizeof(count));
214 		if (error)
215 			return (error);
216 	}
217 	return (0);
218 }
219 SYSCTL_PROC(_debug_hashstat, OID_AUTO, rawnchash, CTLTYPE_INT|CTLFLAG_RD|
220 	CTLFLAG_MPSAFE, 0, 0, sysctl_debug_hashstat_rawnchash, "S,int",
221 	"nchash chain lengths");
222 
223 static int
224 sysctl_debug_hashstat_nchash(SYSCTL_HANDLER_ARGS)
225 {
226 	int error;
227 	struct nchashhead *ncpp;
228 	struct namecache *ncp;
229 	int n_nchash;
230 	int count, maxlength, used, pct;
231 
232 	if (!req->oldptr)
233 		return SYSCTL_OUT(req, 0, 4 * sizeof(int));
234 
235 	n_nchash = nchash + 1;	/* nchash is max index, not count */
236 	used = 0;
237 	maxlength = 0;
238 
239 	/* Scan hash tables for applicable entries */
240 	for (ncpp = nchashtbl; n_nchash > 0; n_nchash--, ncpp++) {
241 		count = 0;
242 		CACHE_RLOCK();
243 		LIST_FOREACH(ncp, ncpp, nc_hash) {
244 			count++;
245 		}
246 		CACHE_RUNLOCK();
247 		if (count)
248 			used++;
249 		if (maxlength < count)
250 			maxlength = count;
251 	}
252 	n_nchash = nchash + 1;
253 	pct = (used * 100 * 100) / n_nchash;
254 	error = SYSCTL_OUT(req, &n_nchash, sizeof(n_nchash));
255 	if (error)
256 		return (error);
257 	error = SYSCTL_OUT(req, &used, sizeof(used));
258 	if (error)
259 		return (error);
260 	error = SYSCTL_OUT(req, &maxlength, sizeof(maxlength));
261 	if (error)
262 		return (error);
263 	error = SYSCTL_OUT(req, &pct, sizeof(pct));
264 	if (error)
265 		return (error);
266 	return (0);
267 }
268 SYSCTL_PROC(_debug_hashstat, OID_AUTO, nchash, CTLTYPE_INT|CTLFLAG_RD|
269 	CTLFLAG_MPSAFE, 0, 0, sysctl_debug_hashstat_nchash, "I",
270 	"nchash chain lengths");
271 
272 /*
273  * cache_zap():
274  *
275  *   Removes a namecache entry from cache, whether it contains an actual
276  *   pointer to a vnode or if it is just a negative cache entry.
277  */
278 static void
279 cache_zap(ncp)
280 	struct namecache *ncp;
281 {
282 	struct vnode *vp;
283 
284 	rw_assert(&cache_lock, RA_WLOCKED);
285 	CTR2(KTR_VFS, "cache_zap(%p) vp %p", ncp, ncp->nc_vp);
286 	vp = NULL;
287 	LIST_REMOVE(ncp, nc_hash);
288 	LIST_REMOVE(ncp, nc_src);
289 	if (LIST_EMPTY(&ncp->nc_dvp->v_cache_src)) {
290 		vp = ncp->nc_dvp;
291 		numcachehv--;
292 	}
293 	if (ncp->nc_vp) {
294 		TAILQ_REMOVE(&ncp->nc_vp->v_cache_dst, ncp, nc_dst);
295 		ncp->nc_vp->v_dd = NULL;
296 	} else {
297 		TAILQ_REMOVE(&ncneg, ncp, nc_dst);
298 		numneg--;
299 	}
300 	numcache--;
301 	cache_free(ncp);
302 	if (vp)
303 		vdrop(vp);
304 }
305 
306 /*
307  * Lookup an entry in the cache
308  *
309  * Lookup is called with dvp pointing to the directory to search,
310  * cnp pointing to the name of the entry being sought. If the lookup
311  * succeeds, the vnode is returned in *vpp, and a status of -1 is
312  * returned. If the lookup determines that the name does not exist
313  * (negative cacheing), a status of ENOENT is returned. If the lookup
314  * fails, a status of zero is returned.  If the directory vnode is
315  * recycled out from under us due to a forced unmount, a status of
316  * EBADF is returned.
317  *
318  * vpp is locked and ref'd on return.  If we're looking up DOTDOT, dvp is
319  * unlocked.  If we're looking up . an extra ref is taken, but the lock is
320  * not recursively acquired.
321  */
322 
323 int
324 cache_lookup(dvp, vpp, cnp)
325 	struct vnode *dvp;
326 	struct vnode **vpp;
327 	struct componentname *cnp;
328 {
329 	struct namecache *ncp;
330 	u_int32_t hash;
331 	int error, ltype, wlocked;
332 
333 	if (!doingcache) {
334 		cnp->cn_flags &= ~MAKEENTRY;
335 		return (0);
336 	}
337 retry:
338 	CACHE_RLOCK();
339 	wlocked = 0;
340 	numcalls++;
341 	error = 0;
342 
343 retry_wlocked:
344 	if (cnp->cn_nameptr[0] == '.') {
345 		if (cnp->cn_namelen == 1) {
346 			*vpp = dvp;
347 			CTR2(KTR_VFS, "cache_lookup(%p, %s) found via .",
348 			    dvp, cnp->cn_nameptr);
349 			dothits++;
350 			goto success;
351 		}
352 		if (cnp->cn_namelen == 2 && cnp->cn_nameptr[1] == '.') {
353 			dotdothits++;
354 			if (dvp->v_dd == NULL ||
355 			    (cnp->cn_flags & MAKEENTRY) == 0) {
356 				goto unlock;
357 			}
358 			*vpp = dvp->v_dd;
359 			CTR3(KTR_VFS, "cache_lookup(%p, %s) found %p via ..",
360 			    dvp, cnp->cn_nameptr, *vpp);
361 			goto success;
362 		}
363 	}
364 
365 	hash = fnv_32_buf(cnp->cn_nameptr, cnp->cn_namelen, FNV1_32_INIT);
366 	hash = fnv_32_buf(&dvp, sizeof(dvp), hash);
367 	LIST_FOREACH(ncp, (NCHHASH(hash)), nc_hash) {
368 		numchecks++;
369 		if (ncp->nc_dvp == dvp && ncp->nc_nlen == cnp->cn_namelen &&
370 		    !bcmp(ncp->nc_name, cnp->cn_nameptr, ncp->nc_nlen))
371 			break;
372 	}
373 
374 	/* We failed to find an entry */
375 	if (ncp == NULL) {
376 		if ((cnp->cn_flags & MAKEENTRY) == 0) {
377 			nummisszap++;
378 		} else {
379 			nummiss++;
380 		}
381 		nchstats.ncs_miss++;
382 		goto unlock;
383 	}
384 
385 	/* We don't want to have an entry, so dump it */
386 	if ((cnp->cn_flags & MAKEENTRY) == 0) {
387 		numposzaps++;
388 		nchstats.ncs_badhits++;
389 		if (!wlocked && !CACHE_UPGRADE_LOCK())
390 			goto wlock;
391 		cache_zap(ncp);
392 		CACHE_WUNLOCK();
393 		return (0);
394 	}
395 
396 	/* We found a "positive" match, return the vnode */
397 	if (ncp->nc_vp) {
398 		numposhits++;
399 		nchstats.ncs_goodhits++;
400 		*vpp = ncp->nc_vp;
401 		CTR4(KTR_VFS, "cache_lookup(%p, %s) found %p via ncp %p",
402 		    dvp, cnp->cn_nameptr, *vpp, ncp);
403 		goto success;
404 	}
405 
406 	/* We found a negative match, and want to create it, so purge */
407 	if (cnp->cn_nameiop == CREATE) {
408 		numnegzaps++;
409 		nchstats.ncs_badhits++;
410 		if (!wlocked && !CACHE_UPGRADE_LOCK())
411 			goto wlock;
412 		cache_zap(ncp);
413 		CACHE_WUNLOCK();
414 		return (0);
415 	}
416 
417 	if (!wlocked && !CACHE_UPGRADE_LOCK())
418 		goto wlock;
419 	numneghits++;
420 	/*
421 	 * We found a "negative" match, so we shift it to the end of
422 	 * the "negative" cache entries queue to satisfy LRU.  Also,
423 	 * check to see if the entry is a whiteout; indicate this to
424 	 * the componentname, if so.
425 	 */
426 	TAILQ_REMOVE(&ncneg, ncp, nc_dst);
427 	TAILQ_INSERT_TAIL(&ncneg, ncp, nc_dst);
428 	nchstats.ncs_neghits++;
429 	if (ncp->nc_flag & NCF_WHITE)
430 		cnp->cn_flags |= ISWHITEOUT;
431 	CACHE_WUNLOCK();
432 	return (ENOENT);
433 
434 wlock:
435 	/*
436 	 * We need to update the cache after our lookup, so upgrade to
437 	 * a write lock and retry the operation.
438 	 */
439 	CACHE_RUNLOCK();
440 	CACHE_WLOCK();
441 	numupgrades++;
442 	wlocked = 1;
443 	goto retry_wlocked;
444 
445 success:
446 	/*
447 	 * On success we return a locked and ref'd vnode as per the lookup
448 	 * protocol.
449 	 */
450 	if (dvp == *vpp) {   /* lookup on "." */
451 		VREF(*vpp);
452 		if (wlocked)
453 			CACHE_WUNLOCK();
454 		else
455 			CACHE_RUNLOCK();
456 		/*
457 		 * When we lookup "." we still can be asked to lock it
458 		 * differently...
459 		 */
460 		ltype = cnp->cn_lkflags & LK_TYPE_MASK;
461 		if (ltype != VOP_ISLOCKED(*vpp)) {
462 			if (ltype == LK_EXCLUSIVE) {
463 				vn_lock(*vpp, LK_UPGRADE | LK_RETRY);
464 				if ((*vpp)->v_iflag & VI_DOOMED) {
465 					/* forced unmount */
466 					vrele(*vpp);
467 					*vpp = NULL;
468 					return (EBADF);
469 				}
470 			} else
471 				vn_lock(*vpp, LK_DOWNGRADE | LK_RETRY);
472 		}
473 		return (-1);
474 	}
475 	ltype = 0;	/* silence gcc warning */
476 	if (cnp->cn_flags & ISDOTDOT) {
477 		ltype = VOP_ISLOCKED(dvp);
478 		VOP_UNLOCK(dvp, 0);
479 	}
480 	VI_LOCK(*vpp);
481 	if (wlocked)
482 		CACHE_WUNLOCK();
483 	else
484 		CACHE_RUNLOCK();
485 	error = vget(*vpp, cnp->cn_lkflags | LK_INTERLOCK, cnp->cn_thread);
486 	if (cnp->cn_flags & ISDOTDOT)
487 		vn_lock(dvp, ltype | LK_RETRY);
488 	if (error) {
489 		*vpp = NULL;
490 		goto retry;
491 	}
492 	if ((cnp->cn_flags & ISLASTCN) &&
493 	    (cnp->cn_lkflags & LK_TYPE_MASK) == LK_EXCLUSIVE) {
494 		ASSERT_VOP_ELOCKED(*vpp, "cache_lookup");
495 	}
496 	return (-1);
497 
498 unlock:
499 	if (wlocked)
500 		CACHE_WUNLOCK();
501 	else
502 		CACHE_RUNLOCK();
503 	return (0);
504 }
505 
506 /*
507  * Add an entry to the cache.
508  */
509 void
510 cache_enter(dvp, vp, cnp)
511 	struct vnode *dvp;
512 	struct vnode *vp;
513 	struct componentname *cnp;
514 {
515 	struct namecache *ncp, *n2;
516 	struct nchashhead *ncpp;
517 	u_int32_t hash;
518 	int hold;
519 	int zap;
520 	int len;
521 
522 	CTR3(KTR_VFS, "cache_enter(%p, %p, %s)", dvp, vp, cnp->cn_nameptr);
523 	VNASSERT(vp == NULL || (vp->v_iflag & VI_DOOMED) == 0, vp,
524 	    ("cahe_enter: Adding a doomed vnode"));
525 
526 	if (!doingcache)
527 		return;
528 
529 	/*
530 	 * Avoid blowout in namecache entries.
531 	 */
532 	if (numcache >= desiredvnodes * 2)
533 		return;
534 
535 	if (cnp->cn_nameptr[0] == '.') {
536 		if (cnp->cn_namelen == 1) {
537 			return;
538 		}
539 		/*
540 		 * For dotdot lookups only cache the v_dd pointer if the
541 		 * directory has a link back to its parent via v_cache_dst.
542 		 * Without this an unlinked directory would keep a soft
543 		 * reference to its parent which could not be NULLd at
544 		 * cache_purge() time.
545 		 */
546 		if (cnp->cn_namelen == 2 && cnp->cn_nameptr[1] == '.') {
547 			CACHE_WLOCK();
548 			if (!TAILQ_EMPTY(&dvp->v_cache_dst))
549 				dvp->v_dd = vp;
550 			CACHE_WUNLOCK();
551 			return;
552 		}
553 	}
554 
555 	hold = 0;
556 	zap = 0;
557 
558 	/*
559 	 * Calculate the hash key and setup as much of the new
560 	 * namecache entry as possible before acquiring the lock.
561 	 */
562 	ncp = cache_alloc(cnp->cn_namelen);
563 	ncp->nc_vp = vp;
564 	ncp->nc_dvp = dvp;
565 	len = ncp->nc_nlen = cnp->cn_namelen;
566 	hash = fnv_32_buf(cnp->cn_nameptr, len, FNV1_32_INIT);
567 	bcopy(cnp->cn_nameptr, ncp->nc_name, len);
568 	hash = fnv_32_buf(&dvp, sizeof(dvp), hash);
569 	CACHE_WLOCK();
570 
571 	/*
572 	 * See if this vnode or negative entry is already in the cache
573 	 * with this name.  This can happen with concurrent lookups of
574 	 * the same path name.
575 	 */
576 	ncpp = NCHHASH(hash);
577 	LIST_FOREACH(n2, ncpp, nc_hash) {
578 		if (n2->nc_dvp == dvp &&
579 		    n2->nc_nlen == cnp->cn_namelen &&
580 		    !bcmp(n2->nc_name, cnp->cn_nameptr, n2->nc_nlen)) {
581 			CACHE_WUNLOCK();
582 			cache_free(ncp);
583 			return;
584 		}
585 	}
586 
587 	numcache++;
588 	if (!vp) {
589 		numneg++;
590 		ncp->nc_flag = cnp->cn_flags & ISWHITEOUT ? NCF_WHITE : 0;
591 	} else if (vp->v_type == VDIR) {
592 		vp->v_dd = dvp;
593 	} else {
594 		vp->v_dd = NULL;
595 	}
596 
597 	/*
598 	 * Insert the new namecache entry into the appropriate chain
599 	 * within the cache entries table.
600 	 */
601 	LIST_INSERT_HEAD(ncpp, ncp, nc_hash);
602 	if (LIST_EMPTY(&dvp->v_cache_src)) {
603 		hold = 1;
604 		numcachehv++;
605 	}
606 	LIST_INSERT_HEAD(&dvp->v_cache_src, ncp, nc_src);
607 	/*
608 	 * If the entry is "negative", we place it into the
609 	 * "negative" cache queue, otherwise, we place it into the
610 	 * destination vnode's cache entries queue.
611 	 */
612 	if (vp) {
613 		TAILQ_INSERT_HEAD(&vp->v_cache_dst, ncp, nc_dst);
614 	} else {
615 		TAILQ_INSERT_TAIL(&ncneg, ncp, nc_dst);
616 	}
617 	if (numneg * ncnegfactor > numcache) {
618 		ncp = TAILQ_FIRST(&ncneg);
619 		zap = 1;
620 	}
621 	if (hold)
622 		vhold(dvp);
623 	if (zap)
624 		cache_zap(ncp);
625 	CACHE_WUNLOCK();
626 }
627 
628 /*
629  * Name cache initialization, from vfs_init() when we are booting
630  */
631 static void
632 nchinit(void *dummy __unused)
633 {
634 
635 	TAILQ_INIT(&ncneg);
636 
637 	cache_zone_small = uma_zcreate("S VFS Cache", CACHE_ZONE_SMALL, NULL,
638 	    NULL, NULL, NULL, UMA_ALIGN_PTR, UMA_ZONE_ZINIT);
639 	cache_zone_large = uma_zcreate("L VFS Cache", CACHE_ZONE_LARGE, NULL,
640 	    NULL, NULL, NULL, UMA_ALIGN_PTR, UMA_ZONE_ZINIT);
641 
642 	nchashtbl = hashinit(desiredvnodes * 2, M_VFSCACHE, &nchash);
643 }
644 SYSINIT(vfs, SI_SUB_VFS, SI_ORDER_SECOND, nchinit, NULL);
645 
646 
647 /*
648  * Invalidate all entries to a particular vnode.
649  */
650 void
651 cache_purge(vp)
652 	struct vnode *vp;
653 {
654 
655 	CTR1(KTR_VFS, "cache_purge(%p)", vp);
656 	CACHE_WLOCK();
657 	while (!LIST_EMPTY(&vp->v_cache_src))
658 		cache_zap(LIST_FIRST(&vp->v_cache_src));
659 	while (!TAILQ_EMPTY(&vp->v_cache_dst))
660 		cache_zap(TAILQ_FIRST(&vp->v_cache_dst));
661 	vp->v_dd = NULL;
662 	CACHE_WUNLOCK();
663 }
664 
665 /*
666  * Invalidate all negative entries for a particular directory vnode.
667  */
668 void
669 cache_purge_negative(vp)
670 	struct vnode *vp;
671 {
672 	struct namecache *cp, *ncp;
673 
674 	CTR1(KTR_VFS, "cache_purge_negative(%p)", vp);
675 	CACHE_WLOCK();
676 	LIST_FOREACH_SAFE(cp, &vp->v_cache_src, nc_src, ncp) {
677 		if (cp->nc_vp == NULL)
678 			cache_zap(cp);
679 	}
680 	CACHE_WUNLOCK();
681 }
682 
683 /*
684  * Flush all entries referencing a particular filesystem.
685  */
686 void
687 cache_purgevfs(mp)
688 	struct mount *mp;
689 {
690 	struct nchashhead *ncpp;
691 	struct namecache *ncp, *nnp;
692 
693 	/* Scan hash tables for applicable entries */
694 	CACHE_WLOCK();
695 	for (ncpp = &nchashtbl[nchash]; ncpp >= nchashtbl; ncpp--) {
696 		LIST_FOREACH_SAFE(ncp, ncpp, nc_hash, nnp) {
697 			if (ncp->nc_dvp->v_mount == mp)
698 				cache_zap(ncp);
699 		}
700 	}
701 	CACHE_WUNLOCK();
702 }
703 
704 /*
705  * Perform canonical checks and cache lookup and pass on to filesystem
706  * through the vop_cachedlookup only if needed.
707  */
708 
709 int
710 vfs_cache_lookup(ap)
711 	struct vop_lookup_args /* {
712 		struct vnode *a_dvp;
713 		struct vnode **a_vpp;
714 		struct componentname *a_cnp;
715 	} */ *ap;
716 {
717 	struct vnode *dvp;
718 	int error;
719 	struct vnode **vpp = ap->a_vpp;
720 	struct componentname *cnp = ap->a_cnp;
721 	struct ucred *cred = cnp->cn_cred;
722 	int flags = cnp->cn_flags;
723 	struct thread *td = cnp->cn_thread;
724 
725 	*vpp = NULL;
726 	dvp = ap->a_dvp;
727 
728 	if (dvp->v_type != VDIR)
729 		return (ENOTDIR);
730 
731 	if ((flags & ISLASTCN) && (dvp->v_mount->mnt_flag & MNT_RDONLY) &&
732 	    (cnp->cn_nameiop == DELETE || cnp->cn_nameiop == RENAME))
733 		return (EROFS);
734 
735 	error = VOP_ACCESS(dvp, VEXEC, cred, td);
736 	if (error)
737 		return (error);
738 
739 	error = cache_lookup(dvp, vpp, cnp);
740 	if (error == 0)
741 		return (VOP_CACHEDLOOKUP(dvp, vpp, cnp));
742 	if (error == -1)
743 		return (0);
744 	return (error);
745 }
746 
747 
748 #ifndef _SYS_SYSPROTO_H_
749 struct  __getcwd_args {
750 	u_char	*buf;
751 	u_int	buflen;
752 };
753 #endif
754 
755 /*
756  * XXX All of these sysctls would probably be more productive dead.
757  */
758 static int disablecwd;
759 SYSCTL_INT(_debug, OID_AUTO, disablecwd, CTLFLAG_RW, &disablecwd, 0,
760    "Disable the getcwd syscall");
761 
762 /* Implementation of the getcwd syscall. */
763 int
764 __getcwd(td, uap)
765 	struct thread *td;
766 	struct __getcwd_args *uap;
767 {
768 
769 	return (kern___getcwd(td, uap->buf, UIO_USERSPACE, uap->buflen));
770 }
771 
772 int
773 kern___getcwd(struct thread *td, u_char *buf, enum uio_seg bufseg, u_int buflen)
774 {
775 	char *bp, *tmpbuf;
776 	struct filedesc *fdp;
777 	struct vnode *cdir, *rdir;
778 	int error, vfslocked;
779 
780 	if (disablecwd)
781 		return (ENODEV);
782 	if (buflen < 2)
783 		return (EINVAL);
784 	if (buflen > MAXPATHLEN)
785 		buflen = MAXPATHLEN;
786 
787 	tmpbuf = malloc(buflen, M_TEMP, M_WAITOK);
788 	fdp = td->td_proc->p_fd;
789 	FILEDESC_SLOCK(fdp);
790 	cdir = fdp->fd_cdir;
791 	VREF(cdir);
792 	rdir = fdp->fd_rdir;
793 	VREF(rdir);
794 	FILEDESC_SUNLOCK(fdp);
795 	error = vn_fullpath1(td, cdir, rdir, tmpbuf, &bp, buflen);
796 	vfslocked = VFS_LOCK_GIANT(rdir->v_mount);
797 	vrele(rdir);
798 	VFS_UNLOCK_GIANT(vfslocked);
799 	vfslocked = VFS_LOCK_GIANT(cdir->v_mount);
800 	vrele(cdir);
801 	VFS_UNLOCK_GIANT(vfslocked);
802 
803 	if (!error) {
804 		if (bufseg == UIO_SYSSPACE)
805 			bcopy(bp, buf, strlen(bp) + 1);
806 		else
807 			error = copyout(bp, buf, strlen(bp) + 1);
808 	}
809 	free(tmpbuf, M_TEMP);
810 	return (error);
811 }
812 
813 /*
814  * Thus begins the fullpath magic.
815  */
816 
817 #undef STATNODE
818 #define STATNODE(name)							\
819 	static u_int name;						\
820 	SYSCTL_UINT(_vfs_cache, OID_AUTO, name, CTLFLAG_RD, &name, 0, "")
821 
822 static int disablefullpath;
823 SYSCTL_INT(_debug, OID_AUTO, disablefullpath, CTLFLAG_RW, &disablefullpath, 0,
824 	"Disable the vn_fullpath function");
825 
826 /* These count for kern___getcwd(), too. */
827 STATNODE(numfullpathcalls);
828 STATNODE(numfullpathfail1);
829 STATNODE(numfullpathfail2);
830 STATNODE(numfullpathfail4);
831 STATNODE(numfullpathfound);
832 
833 /*
834  * Retrieve the full filesystem path that correspond to a vnode from the name
835  * cache (if available)
836  */
837 int
838 vn_fullpath(struct thread *td, struct vnode *vn, char **retbuf, char **freebuf)
839 {
840 	char *buf;
841 	struct filedesc *fdp;
842 	struct vnode *rdir;
843 	int error, vfslocked;
844 
845 	if (disablefullpath)
846 		return (ENODEV);
847 	if (vn == NULL)
848 		return (EINVAL);
849 
850 	buf = malloc(MAXPATHLEN, M_TEMP, M_WAITOK);
851 	fdp = td->td_proc->p_fd;
852 	FILEDESC_SLOCK(fdp);
853 	rdir = fdp->fd_rdir;
854 	VREF(rdir);
855 	FILEDESC_SUNLOCK(fdp);
856 	error = vn_fullpath1(td, vn, rdir, buf, retbuf, MAXPATHLEN);
857 	vfslocked = VFS_LOCK_GIANT(rdir->v_mount);
858 	vrele(rdir);
859 	VFS_UNLOCK_GIANT(vfslocked);
860 
861 	if (!error)
862 		*freebuf = buf;
863 	else
864 		free(buf, M_TEMP);
865 	return (error);
866 }
867 
868 /*
869  * This function is similar to vn_fullpath, but it attempts to lookup the
870  * pathname relative to the global root mount point.  This is required for the
871  * auditing sub-system, as audited pathnames must be absolute, relative to the
872  * global root mount point.
873  */
874 int
875 vn_fullpath_global(struct thread *td, struct vnode *vn,
876     char **retbuf, char **freebuf)
877 {
878 	char *buf;
879 	int error;
880 
881 	if (disablefullpath)
882 		return (ENODEV);
883 	if (vn == NULL)
884 		return (EINVAL);
885 	buf = malloc(MAXPATHLEN, M_TEMP, M_WAITOK);
886 	error = vn_fullpath1(td, vn, rootvnode, buf, retbuf, MAXPATHLEN);
887 	if (!error)
888 		*freebuf = buf;
889 	else
890 		free(buf, M_TEMP);
891 	return (error);
892 }
893 
894 static int
895 vn_vptocnp(struct vnode **vp, char **bp, char *buf, u_int *buflen)
896 {
897 	struct vnode *dvp;
898 	int error, vfslocked;
899 
900 	vhold(*vp);
901 	CACHE_RUNLOCK();
902 	vfslocked = VFS_LOCK_GIANT((*vp)->v_mount);
903 	vn_lock(*vp, LK_SHARED | LK_RETRY);
904 	error = VOP_VPTOCNP(*vp, &dvp, buf, buflen);
905 	VOP_UNLOCK(*vp, 0);
906 	vdrop(*vp);
907 	VFS_UNLOCK_GIANT(vfslocked);
908 	if (error) {
909 		numfullpathfail2++;
910 		return (error);
911 	}
912 	*bp = buf + *buflen;
913 	*vp = dvp;
914 	CACHE_RLOCK();
915 	if ((*vp)->v_iflag & VI_DOOMED) {
916 		/* forced unmount */
917 		CACHE_RUNLOCK();
918 		vdrop(*vp);
919 		return (ENOENT);
920 	}
921 	vdrop(*vp);
922 
923 	return (0);
924 }
925 
926 /*
927  * The magic behind kern___getcwd() and vn_fullpath().
928  */
929 static int
930 vn_fullpath1(struct thread *td, struct vnode *vp, struct vnode *rdir,
931     char *buf, char **retbuf, u_int buflen)
932 {
933 	char *bp;
934 	int error, i, slash_prefixed;
935 	struct namecache *ncp;
936 
937 	buflen--;
938 	bp = buf + buflen;
939 	*bp = '\0';
940 	error = 0;
941 	slash_prefixed = 0;
942 
943 	CACHE_RLOCK();
944 	numfullpathcalls++;
945 	if (vp->v_type != VDIR) {
946 		ncp = TAILQ_FIRST(&vp->v_cache_dst);
947 		if (ncp != NULL) {
948 			for (i = ncp->nc_nlen - 1; i >= 0 && bp > buf; i--)
949 				*--bp = ncp->nc_name[i];
950 			if (bp == buf) {
951 				numfullpathfail4++;
952 				CACHE_RUNLOCK();
953 				return (ENOMEM);
954 			}
955 			vp = ncp->nc_dvp;
956 		} else {
957 			error = vn_vptocnp(&vp, &bp, buf, &buflen);
958 			if (error) {
959 				return (error);
960 			}
961 		}
962 		*--bp = '/';
963 		buflen--;
964 		if (buflen < 0) {
965 			numfullpathfail4++;
966 			CACHE_RUNLOCK();
967 			return (ENOMEM);
968 		}
969 		slash_prefixed = 1;
970 	}
971 	while (vp != rdir && vp != rootvnode) {
972 		if (vp->v_vflag & VV_ROOT) {
973 			if (vp->v_iflag & VI_DOOMED) {	/* forced unmount */
974 				CACHE_RUNLOCK();
975 				error = EBADF;
976 				break;
977 			}
978 			vp = vp->v_mount->mnt_vnodecovered;
979 			continue;
980 		}
981 		if (vp->v_type != VDIR) {
982 			numfullpathfail1++;
983 			CACHE_RUNLOCK();
984 			error = ENOTDIR;
985 			break;
986 		}
987 		ncp = TAILQ_FIRST(&vp->v_cache_dst);
988 		if (ncp != NULL) {
989 			MPASS(vp->v_dd == NULL || ncp->nc_dvp == vp->v_dd);
990 			buflen -= ncp->nc_nlen - 1;
991 			for (i = ncp->nc_nlen - 1; i >= 0 && bp != buf; i--)
992 				*--bp = ncp->nc_name[i];
993 			if (bp == buf) {
994 				numfullpathfail4++;
995 				CACHE_RUNLOCK();
996 				error = ENOMEM;
997 				break;
998 			}
999 			vp = ncp->nc_dvp;
1000 		} else {
1001 			error = vn_vptocnp(&vp, &bp, buf, &buflen);
1002 			if (error) {
1003 				break;
1004 			}
1005 		}
1006 		*--bp = '/';
1007 		buflen--;
1008 		if (buflen < 0) {
1009 			numfullpathfail4++;
1010 			CACHE_RUNLOCK();
1011 			error = ENOMEM;
1012 			break;
1013 		}
1014 		slash_prefixed = 1;
1015 	}
1016 	if (error)
1017 		return (error);
1018 	if (!slash_prefixed) {
1019 		if (bp == buf) {
1020 			numfullpathfail4++;
1021 			CACHE_RUNLOCK();
1022 			return (ENOMEM);
1023 		} else {
1024 			*--bp = '/';
1025 		}
1026 	}
1027 	numfullpathfound++;
1028 	CACHE_RUNLOCK();
1029 
1030 	*retbuf = bp;
1031 	return (0);
1032 }
1033 
1034 int
1035 vn_commname(struct vnode *vp, char *buf, u_int buflen)
1036 {
1037 	struct namecache *ncp;
1038 	int l;
1039 
1040 	CACHE_RLOCK();
1041 	ncp = TAILQ_FIRST(&vp->v_cache_dst);
1042 	if (!ncp) {
1043 		CACHE_RUNLOCK();
1044 		return (ENOENT);
1045 	}
1046 	l = min(ncp->nc_nlen, buflen - 1);
1047 	memcpy(buf, ncp->nc_name, l);
1048 	CACHE_RUNLOCK();
1049 	buf[l] = '\0';
1050 	return (0);
1051 }
1052