1 // SPDX-License-Identifier: GPL-2.0
3 * Request reply cache. This is currently a global cache, but this may
4 * change in the future and be a per-client cache.
6 * This code is heavily inspired by the 44BSD implementation, although
7 * it does things a bit differently.
9 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
12 #include <linux/slab.h>
13 #include <linux/vmalloc.h>
14 #include <linux/sunrpc/addr.h>
15 #include <linux/highmem.h>
16 #include <linux/log2.h>
17 #include <linux/hash.h>
18 #include <net/checksum.h>
23 #define NFSDDBG_FACILITY NFSDDBG_REPCACHE
26 * We use this value to determine the number of hash buckets from the max
27 * cache size, the idea being that when the cache is at its maximum number
28 * of entries, then this should be the average number of entries per bucket.
30 #define TARGET_BUCKET_SIZE 64
32 struct nfsd_drc_bucket
{
33 struct list_head lru_head
;
34 spinlock_t cache_lock
;
37 static struct nfsd_drc_bucket
*drc_hashtbl
;
38 static struct kmem_cache
*drc_slab
;
40 /* max number of entries allowed in the cache */
41 static unsigned int max_drc_entries
;
43 /* number of significant bits in the hash value */
44 static unsigned int maskbits
;
45 static unsigned int drc_hashsize
;
48 * Stats and other tracking of on the duplicate reply cache. All of these and
49 * the "rc" fields in nfsdstats are protected by the cache_lock
52 /* total number of entries */
53 static atomic_t num_drc_entries
;
55 /* cache misses due only to checksum comparison failures */
56 static unsigned int payload_misses
;
58 /* amount of memory (in bytes) currently consumed by the DRC */
59 static unsigned int drc_mem_usage
;
61 /* longest hash chain seen */
62 static unsigned int longest_chain
;
64 /* size of cache when we saw the longest hash chain */
65 static unsigned int longest_chain_cachesize
;
67 static int nfsd_cache_append(struct svc_rqst
*rqstp
, struct kvec
*vec
);
68 static unsigned long nfsd_reply_cache_count(struct shrinker
*shrink
,
69 struct shrink_control
*sc
);
70 static unsigned long nfsd_reply_cache_scan(struct shrinker
*shrink
,
71 struct shrink_control
*sc
);
73 static struct shrinker nfsd_reply_cache_shrinker
= {
74 .scan_objects
= nfsd_reply_cache_scan
,
75 .count_objects
= nfsd_reply_cache_count
,
80 * Put a cap on the size of the DRC based on the amount of available
81 * low memory in the machine.
93 * ...with a hard cap of 256k entries. In the worst case, each entry will be
94 * ~1k, so the above numbers should give a rough max of the amount of memory
98 nfsd_cache_size_limit(void)
101 unsigned long low_pages
= totalram_pages
- totalhigh_pages
;
103 limit
= (16 * int_sqrt(low_pages
)) << (PAGE_SHIFT
-10);
104 return min_t(unsigned int, limit
, 256*1024);
108 * Compute the number of hash buckets we need. Divide the max cachesize by
109 * the "target" max bucket size, and round up to next power of two.
112 nfsd_hashsize(unsigned int limit
)
114 return roundup_pow_of_two(limit
/ TARGET_BUCKET_SIZE
);
118 nfsd_cache_hash(__be32 xid
)
120 return hash_32(be32_to_cpu(xid
), maskbits
);
123 static struct svc_cacherep
*
124 nfsd_reply_cache_alloc(void)
126 struct svc_cacherep
*rp
;
128 rp
= kmem_cache_alloc(drc_slab
, GFP_KERNEL
);
130 rp
->c_state
= RC_UNUSED
;
131 rp
->c_type
= RC_NOCACHE
;
132 INIT_LIST_HEAD(&rp
->c_lru
);
138 nfsd_reply_cache_free_locked(struct svc_cacherep
*rp
)
140 if (rp
->c_type
== RC_REPLBUFF
&& rp
->c_replvec
.iov_base
) {
141 drc_mem_usage
-= rp
->c_replvec
.iov_len
;
142 kfree(rp
->c_replvec
.iov_base
);
144 list_del(&rp
->c_lru
);
145 atomic_dec(&num_drc_entries
);
146 drc_mem_usage
-= sizeof(*rp
);
147 kmem_cache_free(drc_slab
, rp
);
151 nfsd_reply_cache_free(struct nfsd_drc_bucket
*b
, struct svc_cacherep
*rp
)
153 spin_lock(&b
->cache_lock
);
154 nfsd_reply_cache_free_locked(rp
);
155 spin_unlock(&b
->cache_lock
);
158 int nfsd_reply_cache_init(void)
160 unsigned int hashsize
;
164 max_drc_entries
= nfsd_cache_size_limit();
165 atomic_set(&num_drc_entries
, 0);
166 hashsize
= nfsd_hashsize(max_drc_entries
);
167 maskbits
= ilog2(hashsize
);
169 status
= register_shrinker(&nfsd_reply_cache_shrinker
);
173 drc_slab
= kmem_cache_create("nfsd_drc", sizeof(struct svc_cacherep
),
178 drc_hashtbl
= kcalloc(hashsize
, sizeof(*drc_hashtbl
), GFP_KERNEL
);
180 drc_hashtbl
= vzalloc(hashsize
* sizeof(*drc_hashtbl
));
185 for (i
= 0; i
< hashsize
; i
++) {
186 INIT_LIST_HEAD(&drc_hashtbl
[i
].lru_head
);
187 spin_lock_init(&drc_hashtbl
[i
].cache_lock
);
189 drc_hashsize
= hashsize
;
193 printk(KERN_ERR
"nfsd: failed to allocate reply cache\n");
194 nfsd_reply_cache_shutdown();
198 void nfsd_reply_cache_shutdown(void)
200 struct svc_cacherep
*rp
;
203 unregister_shrinker(&nfsd_reply_cache_shrinker
);
205 for (i
= 0; i
< drc_hashsize
; i
++) {
206 struct list_head
*head
= &drc_hashtbl
[i
].lru_head
;
207 while (!list_empty(head
)) {
208 rp
= list_first_entry(head
, struct svc_cacherep
, c_lru
);
209 nfsd_reply_cache_free_locked(rp
);
217 kmem_cache_destroy(drc_slab
);
222 * Move cache entry to end of LRU list, and queue the cleaner to run if it's
223 * not already scheduled.
226 lru_put_end(struct nfsd_drc_bucket
*b
, struct svc_cacherep
*rp
)
228 rp
->c_timestamp
= jiffies
;
229 list_move_tail(&rp
->c_lru
, &b
->lru_head
);
233 prune_bucket(struct nfsd_drc_bucket
*b
)
235 struct svc_cacherep
*rp
, *tmp
;
238 list_for_each_entry_safe(rp
, tmp
, &b
->lru_head
, c_lru
) {
240 * Don't free entries attached to calls that are still
241 * in-progress, but do keep scanning the list.
243 if (rp
->c_state
== RC_INPROG
)
245 if (atomic_read(&num_drc_entries
) <= max_drc_entries
&&
246 time_before(jiffies
, rp
->c_timestamp
+ RC_EXPIRE
))
248 nfsd_reply_cache_free_locked(rp
);
255 * Walk the LRU list and prune off entries that are older than RC_EXPIRE.
256 * Also prune the oldest ones when the total exceeds the max number of entries.
259 prune_cache_entries(void)
264 for (i
= 0; i
< drc_hashsize
; i
++) {
265 struct nfsd_drc_bucket
*b
= &drc_hashtbl
[i
];
267 if (list_empty(&b
->lru_head
))
269 spin_lock(&b
->cache_lock
);
270 freed
+= prune_bucket(b
);
271 spin_unlock(&b
->cache_lock
);
277 nfsd_reply_cache_count(struct shrinker
*shrink
, struct shrink_control
*sc
)
279 return atomic_read(&num_drc_entries
);
283 nfsd_reply_cache_scan(struct shrinker
*shrink
, struct shrink_control
*sc
)
285 return prune_cache_entries();
288 * Walk an xdr_buf and get a CRC for at most the first RC_CSUMLEN bytes
291 nfsd_cache_csum(struct svc_rqst
*rqstp
)
296 struct xdr_buf
*buf
= &rqstp
->rq_arg
;
297 const unsigned char *p
= buf
->head
[0].iov_base
;
298 size_t csum_len
= min_t(size_t, buf
->head
[0].iov_len
+ buf
->page_len
,
300 size_t len
= min(buf
->head
[0].iov_len
, csum_len
);
302 /* rq_arg.head first */
303 csum
= csum_partial(p
, len
, 0);
306 /* Continue into page array */
307 idx
= buf
->page_base
/ PAGE_SIZE
;
308 base
= buf
->page_base
& ~PAGE_MASK
;
310 p
= page_address(buf
->pages
[idx
]) + base
;
311 len
= min_t(size_t, PAGE_SIZE
- base
, csum_len
);
312 csum
= csum_partial(p
, len
, csum
);
321 nfsd_cache_match(struct svc_rqst
*rqstp
, __wsum csum
, struct svc_cacherep
*rp
)
323 /* Check RPC XID first */
324 if (rqstp
->rq_xid
!= rp
->c_xid
)
326 /* compare checksum of NFS data */
327 if (csum
!= rp
->c_csum
) {
332 /* Other discriminators */
333 if (rqstp
->rq_proc
!= rp
->c_proc
||
334 rqstp
->rq_prot
!= rp
->c_prot
||
335 rqstp
->rq_vers
!= rp
->c_vers
||
336 rqstp
->rq_arg
.len
!= rp
->c_len
||
337 !rpc_cmp_addr(svc_addr(rqstp
), (struct sockaddr
*)&rp
->c_addr
) ||
338 rpc_get_port(svc_addr(rqstp
)) != rpc_get_port((struct sockaddr
*)&rp
->c_addr
))
345 * Search the request hash for an entry that matches the given rqstp.
346 * Must be called with cache_lock held. Returns the found entry or
349 static struct svc_cacherep
*
350 nfsd_cache_search(struct nfsd_drc_bucket
*b
, struct svc_rqst
*rqstp
,
353 struct svc_cacherep
*rp
, *ret
= NULL
;
354 struct list_head
*rh
= &b
->lru_head
;
355 unsigned int entries
= 0;
357 list_for_each_entry(rp
, rh
, c_lru
) {
359 if (nfsd_cache_match(rqstp
, csum
, rp
)) {
365 /* tally hash chain length stats */
366 if (entries
> longest_chain
) {
367 longest_chain
= entries
;
368 longest_chain_cachesize
= atomic_read(&num_drc_entries
);
369 } else if (entries
== longest_chain
) {
370 /* prefer to keep the smallest cachesize possible here */
371 longest_chain_cachesize
= min_t(unsigned int,
372 longest_chain_cachesize
,
373 atomic_read(&num_drc_entries
));
380 * Try to find an entry matching the current call in the cache. When none
381 * is found, we try to grab the oldest expired entry off the LRU list. If
382 * a suitable one isn't there, then drop the cache_lock and allocate a
383 * new one, then search again in case one got inserted while this thread
384 * didn't hold the lock.
387 nfsd_cache_lookup(struct svc_rqst
*rqstp
)
389 struct svc_cacherep
*rp
, *found
;
390 __be32 xid
= rqstp
->rq_xid
;
391 u32 proto
= rqstp
->rq_prot
,
392 vers
= rqstp
->rq_vers
,
393 proc
= rqstp
->rq_proc
;
395 u32 hash
= nfsd_cache_hash(xid
);
396 struct nfsd_drc_bucket
*b
= &drc_hashtbl
[hash
];
398 int type
= rqstp
->rq_cachetype
;
401 rqstp
->rq_cacherep
= NULL
;
402 if (type
== RC_NOCACHE
) {
403 nfsdstats
.rcnocache
++;
407 csum
= nfsd_cache_csum(rqstp
);
410 * Since the common case is a cache miss followed by an insert,
411 * preallocate an entry.
413 rp
= nfsd_reply_cache_alloc();
414 spin_lock(&b
->cache_lock
);
416 atomic_inc(&num_drc_entries
);
417 drc_mem_usage
+= sizeof(*rp
);
420 /* go ahead and prune the cache */
423 found
= nfsd_cache_search(b
, rqstp
, csum
);
426 nfsd_reply_cache_free_locked(rp
);
432 dprintk("nfsd: unable to allocate DRC entry!\n");
436 nfsdstats
.rcmisses
++;
437 rqstp
->rq_cacherep
= rp
;
438 rp
->c_state
= RC_INPROG
;
441 rpc_copy_addr((struct sockaddr
*)&rp
->c_addr
, svc_addr(rqstp
));
442 rpc_set_port((struct sockaddr
*)&rp
->c_addr
, rpc_get_port(svc_addr(rqstp
)));
445 rp
->c_len
= rqstp
->rq_arg
.len
;
450 /* release any buffer */
451 if (rp
->c_type
== RC_REPLBUFF
) {
452 drc_mem_usage
-= rp
->c_replvec
.iov_len
;
453 kfree(rp
->c_replvec
.iov_base
);
454 rp
->c_replvec
.iov_base
= NULL
;
456 rp
->c_type
= RC_NOCACHE
;
458 spin_unlock(&b
->cache_lock
);
463 /* We found a matching entry which is either in progress or done. */
464 age
= jiffies
- rp
->c_timestamp
;
468 /* Request being processed or excessive rexmits */
469 if (rp
->c_state
== RC_INPROG
|| age
< RC_DELAY
)
472 /* From the hall of fame of impractical attacks:
473 * Is this a user who tries to snoop on the cache? */
475 if (!test_bit(RQ_SECURE
, &rqstp
->rq_flags
) && rp
->c_secure
)
478 /* Compose RPC reply header */
479 switch (rp
->c_type
) {
483 svc_putu32(&rqstp
->rq_res
.head
[0], rp
->c_replstat
);
487 if (!nfsd_cache_append(rqstp
, &rp
->c_replvec
))
488 goto out
; /* should not happen */
492 printk(KERN_WARNING
"nfsd: bad repcache type %d\n", rp
->c_type
);
493 nfsd_reply_cache_free_locked(rp
);
500 * Update a cache entry. This is called from nfsd_dispatch when
501 * the procedure has been executed and the complete reply is in
504 * We're copying around data here rather than swapping buffers because
505 * the toplevel loop requires max-sized buffers, which would be a waste
506 * of memory for a cache with a max reply size of 100 bytes (diropokres).
508 * If we should start to use different types of cache entries tailored
509 * specifically for attrstat and fh's, we may save even more space.
511 * Also note that a cachetype of RC_NOCACHE can legally be passed when
512 * nfsd failed to encode a reply that otherwise would have been cached.
513 * In this case, nfsd_cache_update is called with statp == NULL.
516 nfsd_cache_update(struct svc_rqst
*rqstp
, int cachetype
, __be32
*statp
)
518 struct svc_cacherep
*rp
= rqstp
->rq_cacherep
;
519 struct kvec
*resv
= &rqstp
->rq_res
.head
[0], *cachv
;
521 struct nfsd_drc_bucket
*b
;
528 hash
= nfsd_cache_hash(rp
->c_xid
);
529 b
= &drc_hashtbl
[hash
];
531 len
= resv
->iov_len
- ((char*)statp
- (char*)resv
->iov_base
);
534 /* Don't cache excessive amounts of data and XDR failures */
535 if (!statp
|| len
> (256 >> 2)) {
536 nfsd_reply_cache_free(b
, rp
);
543 printk("nfsd: RC_REPLSTAT/reply len %d!\n",len
);
544 rp
->c_replstat
= *statp
;
547 cachv
= &rp
->c_replvec
;
549 cachv
->iov_base
= kmalloc(bufsize
, GFP_KERNEL
);
550 if (!cachv
->iov_base
) {
551 nfsd_reply_cache_free(b
, rp
);
554 cachv
->iov_len
= bufsize
;
555 memcpy(cachv
->iov_base
, statp
, bufsize
);
558 nfsd_reply_cache_free(b
, rp
);
561 spin_lock(&b
->cache_lock
);
562 drc_mem_usage
+= bufsize
;
564 rp
->c_secure
= test_bit(RQ_SECURE
, &rqstp
->rq_flags
);
565 rp
->c_type
= cachetype
;
566 rp
->c_state
= RC_DONE
;
567 spin_unlock(&b
->cache_lock
);
572 * Copy cached reply to current reply buffer. Should always fit.
573 * FIXME as reply is in a page, we should just attach the page, and
574 * keep a refcount....
577 nfsd_cache_append(struct svc_rqst
*rqstp
, struct kvec
*data
)
579 struct kvec
*vec
= &rqstp
->rq_res
.head
[0];
581 if (vec
->iov_len
+ data
->iov_len
> PAGE_SIZE
) {
582 printk(KERN_WARNING
"nfsd: cached reply too large (%zd).\n",
586 memcpy((char*)vec
->iov_base
+ vec
->iov_len
, data
->iov_base
, data
->iov_len
);
587 vec
->iov_len
+= data
->iov_len
;
592 * Note that fields may be added, removed or reordered in the future. Programs
593 * scraping this file for info should test the labels to ensure they're
594 * getting the correct field.
596 static int nfsd_reply_cache_stats_show(struct seq_file
*m
, void *v
)
598 seq_printf(m
, "max entries: %u\n", max_drc_entries
);
599 seq_printf(m
, "num entries: %u\n",
600 atomic_read(&num_drc_entries
));
601 seq_printf(m
, "hash buckets: %u\n", 1 << maskbits
);
602 seq_printf(m
, "mem usage: %u\n", drc_mem_usage
);
603 seq_printf(m
, "cache hits: %u\n", nfsdstats
.rchits
);
604 seq_printf(m
, "cache misses: %u\n", nfsdstats
.rcmisses
);
605 seq_printf(m
, "not cached: %u\n", nfsdstats
.rcnocache
);
606 seq_printf(m
, "payload misses: %u\n", payload_misses
);
607 seq_printf(m
, "longest chain len: %u\n", longest_chain
);
608 seq_printf(m
, "cachesize at longest: %u\n", longest_chain_cachesize
);
612 int nfsd_reply_cache_stats_open(struct inode
*inode
, struct file
*file
)
614 return single_open(file
, nfsd_reply_cache_stats_show
, NULL
);