blob: 527ce4c6576572e0f46d1ea460672727cc9a03ea [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Request reply cache. This is currently a global cache, but this may
4 * change in the future and be a per-client cache.
5 *
6 * This code is heavily inspired by the 44BSD implementation, although
7 * it does things a bit differently.
8 *
9 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
10 */
11
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Jeff Layton8f975142016-10-26 07:26:40 -040013#include <linux/vmalloc.h>
Jeff Layton59766872013-02-04 12:50:00 -050014#include <linux/sunrpc/addr.h>
Jeff Layton0338dd12013-02-04 08:18:02 -050015#include <linux/highmem.h>
Jeff Layton0733c7b2013-03-27 10:15:39 -040016#include <linux/log2.h>
17#include <linux/hash.h>
Jeff Layton01a7dec2013-02-04 11:57:27 -050018#include <net/checksum.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019
Boaz Harrosh9a74af22009-12-03 20:30:56 +020020#include "nfsd.h"
21#include "cache.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Jeff Layton0338dd12013-02-04 08:18:02 -050023#define NFSDDBG_FACILITY NFSDDBG_REPCACHE
24
Jeff Layton0733c7b2013-03-27 10:15:39 -040025/*
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.
29 */
30#define TARGET_BUCKET_SIZE 64
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Trond Myklebust7142b982014-08-06 13:44:20 -040032struct nfsd_drc_bucket {
Trond Myklebustbedd4b62014-08-06 13:44:21 -040033 struct list_head lru_head;
Trond Myklebust89a26b32014-08-06 13:44:24 -040034 spinlock_t cache_lock;
Trond Myklebust7142b982014-08-06 13:44:20 -040035};
36
37static struct nfsd_drc_bucket *drc_hashtbl;
Jeff Layton8a8bc402013-01-28 14:41:10 -050038static struct kmem_cache *drc_slab;
Jeff Layton9dc56142013-03-27 10:15:37 -040039
40/* max number of entries allowed in the cache */
Jeff Layton0338dd12013-02-04 08:18:02 -050041static unsigned int max_drc_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Jeff Layton0733c7b2013-03-27 10:15:39 -040043/* number of significant bits in the hash value */
44static unsigned int maskbits;
Trond Myklebustbedd4b62014-08-06 13:44:21 -040045static unsigned int drc_hashsize;
Jeff Layton0733c7b2013-03-27 10:15:39 -040046
Greg Banksfca42172009-04-01 07:28:13 +110047/*
Jeff Layton9dc56142013-03-27 10:15:37 -040048 * 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
50 */
51
52/* total number of entries */
Trond Myklebust31e60f52014-08-06 13:44:23 -040053static atomic_t num_drc_entries;
Jeff Layton9dc56142013-03-27 10:15:37 -040054
55/* cache misses due only to checksum comparison failures */
56static unsigned int payload_misses;
57
Jeff Layton6c6910c2013-03-27 10:15:38 -040058/* amount of memory (in bytes) currently consumed by the DRC */
59static unsigned int drc_mem_usage;
60
Jeff Layton98d821b2013-03-27 10:15:39 -040061/* longest hash chain seen */
62static unsigned int longest_chain;
63
64/* size of cache when we saw the longest hash chain */
65static unsigned int longest_chain_cachesize;
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067static int nfsd_cache_append(struct svc_rqst *rqstp, struct kvec *vec);
Dave Chinner1ab6c492013-08-28 10:18:09 +100068static unsigned long nfsd_reply_cache_count(struct shrinker *shrink,
69 struct shrink_control *sc);
70static unsigned long nfsd_reply_cache_scan(struct shrinker *shrink,
71 struct shrink_control *sc);
Jeff Laytonb4e7f2c2013-02-04 08:18:06 -050072
Wei Yongjunc8c797f2013-04-05 21:22:39 +080073static struct shrinker nfsd_reply_cache_shrinker = {
Dave Chinner1ab6c492013-08-28 10:18:09 +100074 .scan_objects = nfsd_reply_cache_scan,
75 .count_objects = nfsd_reply_cache_count,
Jeff Laytonb4e7f2c2013-02-04 08:18:06 -050076 .seeks = 1,
77};
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Greg Banksfca42172009-04-01 07:28:13 +110079/*
Jeff Layton0338dd12013-02-04 08:18:02 -050080 * Put a cap on the size of the DRC based on the amount of available
81 * low memory in the machine.
82 *
83 * 64MB: 8192
84 * 128MB: 11585
85 * 256MB: 16384
86 * 512MB: 23170
87 * 1GB: 32768
88 * 2GB: 46340
89 * 4GB: 65536
90 * 8GB: 92681
91 * 16GB: 131072
92 *
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
95 * used in k.
96 */
97static unsigned int
98nfsd_cache_size_limit(void)
99{
100 unsigned int limit;
101 unsigned long low_pages = totalram_pages - totalhigh_pages;
102
103 limit = (16 * int_sqrt(low_pages)) << (PAGE_SHIFT-10);
104 return min_t(unsigned int, limit, 256*1024);
105}
106
Jeff Layton0733c7b2013-03-27 10:15:39 -0400107/*
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.
110 */
111static unsigned int
112nfsd_hashsize(unsigned int limit)
113{
114 return roundup_pow_of_two(limit / TARGET_BUCKET_SIZE);
115}
116
Trond Myklebust7142b982014-08-06 13:44:20 -0400117static u32
118nfsd_cache_hash(__be32 xid)
119{
120 return hash_32(be32_to_cpu(xid), maskbits);
121}
122
Jeff Laytonf09841f2013-01-28 14:41:11 -0500123static struct svc_cacherep *
Trond Myklebust76ecec22018-10-01 10:41:55 -0400124nfsd_reply_cache_alloc(struct svc_rqst *rqstp, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
126 struct svc_cacherep *rp;
Jeff Laytonf09841f2013-01-28 14:41:11 -0500127
128 rp = kmem_cache_alloc(drc_slab, GFP_KERNEL);
129 if (rp) {
130 rp->c_state = RC_UNUSED;
131 rp->c_type = RC_NOCACHE;
132 INIT_LIST_HEAD(&rp->c_lru);
Trond Myklebust76ecec22018-10-01 10:41:55 -0400133
134 rp->c_xid = rqstp->rq_xid;
135 rp->c_proc = rqstp->rq_proc;
136 memset(&rp->c_addr, 0, sizeof(rp->c_addr));
137 rpc_copy_addr((struct sockaddr *)&rp->c_addr, svc_addr(rqstp));
138 rpc_set_port((struct sockaddr *)&rp->c_addr, rpc_get_port(svc_addr(rqstp)));
139 rp->c_prot = rqstp->rq_prot;
140 rp->c_vers = rqstp->rq_vers;
141 rp->c_len = rqstp->rq_arg.len;
142 rp->c_csum = csum;
Jeff Laytonf09841f2013-01-28 14:41:11 -0500143 }
144 return rp;
145}
146
147static void
148nfsd_reply_cache_free_locked(struct svc_cacherep *rp)
149{
Jeff Layton6c6910c2013-03-27 10:15:38 -0400150 if (rp->c_type == RC_REPLBUFF && rp->c_replvec.iov_base) {
151 drc_mem_usage -= rp->c_replvec.iov_len;
Jeff Laytonf09841f2013-01-28 14:41:11 -0500152 kfree(rp->c_replvec.iov_base);
Jeff Layton6c6910c2013-03-27 10:15:38 -0400153 }
Trond Myklebust76ecec22018-10-01 10:41:55 -0400154 if (rp->c_state != RC_UNUSED) {
155 list_del(&rp->c_lru);
156 atomic_dec(&num_drc_entries);
157 drc_mem_usage -= sizeof(*rp);
158 }
Jeff Laytonf09841f2013-01-28 14:41:11 -0500159 kmem_cache_free(drc_slab, rp);
160}
161
Jeff Layton2c6b6912013-02-04 08:18:04 -0500162static void
Trond Myklebust89a26b32014-08-06 13:44:24 -0400163nfsd_reply_cache_free(struct nfsd_drc_bucket *b, struct svc_cacherep *rp)
Jeff Layton2c6b6912013-02-04 08:18:04 -0500164{
Trond Myklebust89a26b32014-08-06 13:44:24 -0400165 spin_lock(&b->cache_lock);
Jeff Layton2c6b6912013-02-04 08:18:04 -0500166 nfsd_reply_cache_free_locked(rp);
Trond Myklebust89a26b32014-08-06 13:44:24 -0400167 spin_unlock(&b->cache_lock);
Jeff Layton2c6b6912013-02-04 08:18:04 -0500168}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170int nfsd_reply_cache_init(void)
171{
Jeff Layton0733c7b2013-03-27 10:15:39 -0400172 unsigned int hashsize;
Trond Myklebustbedd4b62014-08-06 13:44:21 -0400173 unsigned int i;
Kinglong Meea68465c2015-03-19 19:48:31 +0800174 int status = 0;
Jeff Layton0733c7b2013-03-27 10:15:39 -0400175
Jeff Laytonac534ff2013-03-15 09:16:29 -0400176 max_drc_entries = nfsd_cache_size_limit();
Trond Myklebust31e60f52014-08-06 13:44:23 -0400177 atomic_set(&num_drc_entries, 0);
Jeff Layton0733c7b2013-03-27 10:15:39 -0400178 hashsize = nfsd_hashsize(max_drc_entries);
179 maskbits = ilog2(hashsize);
Jeff Laytonac534ff2013-03-15 09:16:29 -0400180
Kinglong Meea68465c2015-03-19 19:48:31 +0800181 status = register_shrinker(&nfsd_reply_cache_shrinker);
182 if (status)
183 return status;
184
Jeff Layton8a8bc402013-01-28 14:41:10 -0500185 drc_slab = kmem_cache_create("nfsd_drc", sizeof(struct svc_cacherep),
186 0, 0, NULL);
187 if (!drc_slab)
188 goto out_nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Trond Myklebust7142b982014-08-06 13:44:20 -0400190 drc_hashtbl = kcalloc(hashsize, sizeof(*drc_hashtbl), GFP_KERNEL);
Jeff Layton8f975142016-10-26 07:26:40 -0400191 if (!drc_hashtbl) {
Kees Cookfad953c2018-06-12 14:27:37 -0700192 drc_hashtbl = vzalloc(array_size(hashsize,
193 sizeof(*drc_hashtbl)));
Jeff Layton8f975142016-10-26 07:26:40 -0400194 if (!drc_hashtbl)
195 goto out_nomem;
196 }
197
Trond Myklebust89a26b32014-08-06 13:44:24 -0400198 for (i = 0; i < hashsize; i++) {
Trond Myklebustbedd4b62014-08-06 13:44:21 -0400199 INIT_LIST_HEAD(&drc_hashtbl[i].lru_head);
Trond Myklebust89a26b32014-08-06 13:44:24 -0400200 spin_lock_init(&drc_hashtbl[i].cache_lock);
201 }
Trond Myklebustbedd4b62014-08-06 13:44:21 -0400202 drc_hashsize = hashsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
J. Bruce Fieldsd5c34282007-11-09 14:10:56 -0500204 return 0;
205out_nomem:
206 printk(KERN_ERR "nfsd: failed to allocate reply cache\n");
207 nfsd_reply_cache_shutdown();
208 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
210
J. Bruce Fieldsd5c34282007-11-09 14:10:56 -0500211void nfsd_reply_cache_shutdown(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
213 struct svc_cacherep *rp;
Trond Myklebustbedd4b62014-08-06 13:44:21 -0400214 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Jeff Laytonb4e7f2c2013-02-04 08:18:06 -0500216 unregister_shrinker(&nfsd_reply_cache_shrinker);
Jeff Laytonaca8a232013-02-04 08:18:05 -0500217
Trond Myklebustbedd4b62014-08-06 13:44:21 -0400218 for (i = 0; i < drc_hashsize; i++) {
219 struct list_head *head = &drc_hashtbl[i].lru_head;
220 while (!list_empty(head)) {
221 rp = list_first_entry(head, struct svc_cacherep, c_lru);
222 nfsd_reply_cache_free_locked(rp);
223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 }
225
Jeff Layton8f975142016-10-26 07:26:40 -0400226 kvfree(drc_hashtbl);
Trond Myklebust7142b982014-08-06 13:44:20 -0400227 drc_hashtbl = NULL;
Trond Myklebustbedd4b62014-08-06 13:44:21 -0400228 drc_hashsize = 0;
Jeff Layton8a8bc402013-01-28 14:41:10 -0500229
Julia Lawalle79017d2015-09-13 14:15:15 +0200230 kmem_cache_destroy(drc_slab);
231 drc_slab = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232}
233
234/*
Jeff Laytonaca8a232013-02-04 08:18:05 -0500235 * Move cache entry to end of LRU list, and queue the cleaner to run if it's
236 * not already scheduled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 */
238static void
Trond Myklebustbedd4b62014-08-06 13:44:21 -0400239lru_put_end(struct nfsd_drc_bucket *b, struct svc_cacherep *rp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
Jeff Layton56c25482013-02-04 08:18:00 -0500241 rp->c_timestamp = jiffies;
Trond Myklebustbedd4b62014-08-06 13:44:21 -0400242 list_move_tail(&rp->c_lru, &b->lru_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244
Dave Chinner1ab6c492013-08-28 10:18:09 +1000245static long
Trond Myklebustbedd4b62014-08-06 13:44:21 -0400246prune_bucket(struct nfsd_drc_bucket *b)
Jeff Laytonaca8a232013-02-04 08:18:05 -0500247{
248 struct svc_cacherep *rp, *tmp;
Dave Chinner1ab6c492013-08-28 10:18:09 +1000249 long freed = 0;
Jeff Laytonaca8a232013-02-04 08:18:05 -0500250
Trond Myklebustbedd4b62014-08-06 13:44:21 -0400251 list_for_each_entry_safe(rp, tmp, &b->lru_head, c_lru) {
Jeff Layton1b194532014-06-05 09:45:00 -0400252 /*
253 * Don't free entries attached to calls that are still
254 * in-progress, but do keep scanning the list.
255 */
256 if (rp->c_state == RC_INPROG)
257 continue;
Trond Myklebust31e60f52014-08-06 13:44:23 -0400258 if (atomic_read(&num_drc_entries) <= max_drc_entries &&
Jeff Layton1b194532014-06-05 09:45:00 -0400259 time_before(jiffies, rp->c_timestamp + RC_EXPIRE))
Jeff Laytonaca8a232013-02-04 08:18:05 -0500260 break;
261 nfsd_reply_cache_free_locked(rp);
Dave Chinner1ab6c492013-08-28 10:18:09 +1000262 freed++;
Jeff Laytonaca8a232013-02-04 08:18:05 -0500263 }
Trond Myklebustbedd4b62014-08-06 13:44:21 -0400264 return freed;
265}
266
267/*
268 * Walk the LRU list and prune off entries that are older than RC_EXPIRE.
269 * Also prune the oldest ones when the total exceeds the max number of entries.
270 */
271static long
272prune_cache_entries(void)
273{
274 unsigned int i;
275 long freed = 0;
Trond Myklebustbedd4b62014-08-06 13:44:21 -0400276
277 for (i = 0; i < drc_hashsize; i++) {
278 struct nfsd_drc_bucket *b = &drc_hashtbl[i];
279
Trond Myklebust89a26b32014-08-06 13:44:24 -0400280 if (list_empty(&b->lru_head))
281 continue;
282 spin_lock(&b->cache_lock);
Trond Myklebustbedd4b62014-08-06 13:44:21 -0400283 freed += prune_bucket(b);
Trond Myklebust89a26b32014-08-06 13:44:24 -0400284 spin_unlock(&b->cache_lock);
Trond Myklebustbedd4b62014-08-06 13:44:21 -0400285 }
Dave Chinner1ab6c492013-08-28 10:18:09 +1000286 return freed;
Jeff Laytonaca8a232013-02-04 08:18:05 -0500287}
288
Dave Chinner1ab6c492013-08-28 10:18:09 +1000289static unsigned long
290nfsd_reply_cache_count(struct shrinker *shrink, struct shrink_control *sc)
Jeff Laytonb4e7f2c2013-02-04 08:18:06 -0500291{
Trond Myklebust31e60f52014-08-06 13:44:23 -0400292 return atomic_read(&num_drc_entries);
Jeff Laytonb4e7f2c2013-02-04 08:18:06 -0500293}
294
Dave Chinner1ab6c492013-08-28 10:18:09 +1000295static unsigned long
296nfsd_reply_cache_scan(struct shrinker *shrink, struct shrink_control *sc)
297{
Trond Myklebust89a26b32014-08-06 13:44:24 -0400298 return prune_cache_entries();
Dave Chinner1ab6c492013-08-28 10:18:09 +1000299}
Jeff Laytonaca8a232013-02-04 08:18:05 -0500300/*
Jeff Layton01a7dec2013-02-04 11:57:27 -0500301 * Walk an xdr_buf and get a CRC for at most the first RC_CSUMLEN bytes
302 */
303static __wsum
304nfsd_cache_csum(struct svc_rqst *rqstp)
305{
306 int idx;
307 unsigned int base;
308 __wsum csum;
309 struct xdr_buf *buf = &rqstp->rq_arg;
310 const unsigned char *p = buf->head[0].iov_base;
311 size_t csum_len = min_t(size_t, buf->head[0].iov_len + buf->page_len,
312 RC_CSUMLEN);
313 size_t len = min(buf->head[0].iov_len, csum_len);
314
315 /* rq_arg.head first */
316 csum = csum_partial(p, len, 0);
317 csum_len -= len;
318
319 /* Continue into page array */
320 idx = buf->page_base / PAGE_SIZE;
321 base = buf->page_base & ~PAGE_MASK;
322 while (csum_len) {
323 p = page_address(buf->pages[idx]) + base;
Jeff Layton56edc862013-02-15 13:36:34 -0500324 len = min_t(size_t, PAGE_SIZE - base, csum_len);
Jeff Layton01a7dec2013-02-04 11:57:27 -0500325 csum = csum_partial(p, len, csum);
326 csum_len -= len;
327 base = 0;
328 ++idx;
329 }
330 return csum;
331}
332
Jeff Layton9dc56142013-03-27 10:15:37 -0400333static bool
Trond Myklebust76ecec22018-10-01 10:41:55 -0400334nfsd_cache_match(const struct svc_cacherep *key, const struct svc_cacherep *rp)
Jeff Layton9dc56142013-03-27 10:15:37 -0400335{
Trond Myklebustef9b16d2014-08-06 13:44:25 -0400336 /* Check RPC XID first */
Trond Myklebust76ecec22018-10-01 10:41:55 -0400337 if (key->c_xid != rp->c_xid)
Jeff Layton9dc56142013-03-27 10:15:37 -0400338 return false;
Jeff Layton9dc56142013-03-27 10:15:37 -0400339 /* compare checksum of NFS data */
Trond Myklebust76ecec22018-10-01 10:41:55 -0400340 if (key->c_csum != rp->c_csum) {
Jeff Layton9dc56142013-03-27 10:15:37 -0400341 ++payload_misses;
342 return false;
343 }
344
Trond Myklebustef9b16d2014-08-06 13:44:25 -0400345 /* Other discriminators */
Trond Myklebust76ecec22018-10-01 10:41:55 -0400346 if (key->c_proc != rp->c_proc ||
347 key->c_prot != rp->c_prot ||
348 key->c_vers != rp->c_vers ||
349 key->c_len != rp->c_len ||
350 memcmp(&key->c_addr, &rp->c_addr, sizeof(key->c_addr)) != 0)
Trond Myklebustef9b16d2014-08-06 13:44:25 -0400351 return false;
352
Jeff Layton9dc56142013-03-27 10:15:37 -0400353 return true;
354}
355
Jeff Layton01a7dec2013-02-04 11:57:27 -0500356/*
Jeff Laytona4a3ec32013-01-28 14:41:14 -0500357 * Search the request hash for an entry that matches the given rqstp.
358 * Must be called with cache_lock held. Returns the found entry or
Trond Myklebust76ecec22018-10-01 10:41:55 -0400359 * inserts an empty key on failure.
Jeff Laytona4a3ec32013-01-28 14:41:14 -0500360 */
361static struct svc_cacherep *
Trond Myklebust76ecec22018-10-01 10:41:55 -0400362nfsd_cache_insert(struct nfsd_drc_bucket *b, struct svc_cacherep *key)
Jeff Laytona4a3ec32013-01-28 14:41:14 -0500363{
Trond Myklebust76ecec22018-10-01 10:41:55 -0400364 struct svc_cacherep *rp, *ret = key;
Trond Myklebust11acf6e2014-08-06 13:44:22 -0400365 struct list_head *rh = &b->lru_head;
Jeff Layton98d821b2013-03-27 10:15:39 -0400366 unsigned int entries = 0;
Jeff Laytona4a3ec32013-01-28 14:41:14 -0500367
Trond Myklebust11acf6e2014-08-06 13:44:22 -0400368 list_for_each_entry(rp, rh, c_lru) {
Jeff Layton98d821b2013-03-27 10:15:39 -0400369 ++entries;
Trond Myklebust76ecec22018-10-01 10:41:55 -0400370 if (nfsd_cache_match(key, rp)) {
Jeff Layton98d821b2013-03-27 10:15:39 -0400371 ret = rp;
372 break;
373 }
Jeff Laytona4a3ec32013-01-28 14:41:14 -0500374 }
Jeff Layton98d821b2013-03-27 10:15:39 -0400375
376 /* tally hash chain length stats */
377 if (entries > longest_chain) {
378 longest_chain = entries;
Trond Myklebust31e60f52014-08-06 13:44:23 -0400379 longest_chain_cachesize = atomic_read(&num_drc_entries);
Jeff Layton98d821b2013-03-27 10:15:39 -0400380 } else if (entries == longest_chain) {
381 /* prefer to keep the smallest cachesize possible here */
Trond Myklebust31e60f52014-08-06 13:44:23 -0400382 longest_chain_cachesize = min_t(unsigned int,
383 longest_chain_cachesize,
384 atomic_read(&num_drc_entries));
Jeff Layton98d821b2013-03-27 10:15:39 -0400385 }
386
Trond Myklebust76ecec22018-10-01 10:41:55 -0400387 lru_put_end(b, ret);
Jeff Layton98d821b2013-03-27 10:15:39 -0400388 return ret;
Jeff Laytona4a3ec32013-01-28 14:41:14 -0500389}
390
391/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 * Try to find an entry matching the current call in the cache. When none
Jeff Layton1ac83622013-02-14 16:45:13 -0500393 * is found, we try to grab the oldest expired entry off the LRU list. If
394 * a suitable one isn't there, then drop the cache_lock and allocate a
395 * new one, then search again in case one got inserted while this thread
396 * didn't hold the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 */
398int
J. Bruce Fields10910062011-01-24 12:11:02 -0500399nfsd_cache_lookup(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
Jeff Layton0338dd12013-02-04 08:18:02 -0500401 struct svc_cacherep *rp, *found;
Al Viroc7afef12006-10-19 23:29:02 -0700402 __be32 xid = rqstp->rq_xid;
Jeff Layton01a7dec2013-02-04 11:57:27 -0500403 __wsum csum;
Trond Myklebust7142b982014-08-06 13:44:20 -0400404 u32 hash = nfsd_cache_hash(xid);
405 struct nfsd_drc_bucket *b = &drc_hashtbl[hash];
J. Bruce Fields10910062011-01-24 12:11:02 -0500406 int type = rqstp->rq_cachetype;
Jeff Layton0b9ea372013-03-27 10:15:37 -0400407 int rtn = RC_DOIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 rqstp->rq_cacherep = NULL;
Jeff Layton13cc8a72013-02-04 08:18:03 -0500410 if (type == RC_NOCACHE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 nfsdstats.rcnocache++;
Jeff Layton0b9ea372013-03-27 10:15:37 -0400412 return rtn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 }
414
Jeff Layton01a7dec2013-02-04 11:57:27 -0500415 csum = nfsd_cache_csum(rqstp);
416
Jeff Layton0b9ea372013-03-27 10:15:37 -0400417 /*
418 * Since the common case is a cache miss followed by an insert,
Jeff Laytona0ef5e192013-12-05 06:00:51 -0500419 * preallocate an entry.
Jeff Layton0b9ea372013-03-27 10:15:37 -0400420 */
Trond Myklebust76ecec22018-10-01 10:41:55 -0400421 rp = nfsd_reply_cache_alloc(rqstp, csum);
Jeff Layton0b9ea372013-03-27 10:15:37 -0400422 if (!rp) {
423 dprintk("nfsd: unable to allocate DRC entry!\n");
Trond Myklebust76ecec22018-10-01 10:41:55 -0400424 return rtn;
425 }
426
427 spin_lock(&b->cache_lock);
428 found = nfsd_cache_insert(b, rp);
429 if (found != rp) {
430 nfsd_reply_cache_free_locked(rp);
431 rp = found;
432 goto found_entry;
Jeff Layton0b9ea372013-03-27 10:15:37 -0400433 }
434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 nfsdstats.rcmisses++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 rqstp->rq_cacherep = rp;
437 rp->c_state = RC_INPROG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Trond Myklebust76ecec22018-10-01 10:41:55 -0400439 atomic_inc(&num_drc_entries);
440 drc_mem_usage += sizeof(*rp);
441
442 /* go ahead and prune the cache */
443 prune_bucket(b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 out:
Trond Myklebust89a26b32014-08-06 13:44:24 -0400445 spin_unlock(&b->cache_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 return rtn;
447
448found_entry:
449 /* We found a matching entry which is either in progress or done. */
Trond Myklebust76ecec22018-10-01 10:41:55 -0400450 nfsdstats.rchits++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 rtn = RC_DROPIT;
Trond Myklebust76ecec22018-10-01 10:41:55 -0400452
Trond Myklebust7e5d0e02018-03-28 12:18:01 -0400453 /* Request being processed */
454 if (rp->c_state == RC_INPROG)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 goto out;
456
457 /* From the hall of fame of impractical attacks:
458 * Is this a user who tries to snoop on the cache? */
459 rtn = RC_DOIT;
Jeff Layton4d152e22014-11-19 07:51:14 -0500460 if (!test_bit(RQ_SECURE, &rqstp->rq_flags) && rp->c_secure)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 goto out;
462
463 /* Compose RPC reply header */
464 switch (rp->c_type) {
465 case RC_NOCACHE:
466 break;
467 case RC_REPLSTAT:
468 svc_putu32(&rqstp->rq_res.head[0], rp->c_replstat);
469 rtn = RC_REPLY;
470 break;
471 case RC_REPLBUFF:
472 if (!nfsd_cache_append(rqstp, &rp->c_replvec))
473 goto out; /* should not happen */
474 rtn = RC_REPLY;
475 break;
476 default:
477 printk(KERN_WARNING "nfsd: bad repcache type %d\n", rp->c_type);
Jeff Layton0338dd12013-02-04 08:18:02 -0500478 nfsd_reply_cache_free_locked(rp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
480
481 goto out;
482}
483
484/*
485 * Update a cache entry. This is called from nfsd_dispatch when
486 * the procedure has been executed and the complete reply is in
487 * rqstp->rq_res.
488 *
489 * We're copying around data here rather than swapping buffers because
490 * the toplevel loop requires max-sized buffers, which would be a waste
491 * of memory for a cache with a max reply size of 100 bytes (diropokres).
492 *
493 * If we should start to use different types of cache entries tailored
494 * specifically for attrstat and fh's, we may save even more space.
495 *
496 * Also note that a cachetype of RC_NOCACHE can legally be passed when
497 * nfsd failed to encode a reply that otherwise would have been cached.
498 * In this case, nfsd_cache_update is called with statp == NULL.
499 */
500void
Al Viroc7afef12006-10-19 23:29:02 -0700501nfsd_cache_update(struct svc_rqst *rqstp, int cachetype, __be32 *statp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
Jeff Layton13cc8a72013-02-04 08:18:03 -0500503 struct svc_cacherep *rp = rqstp->rq_cacherep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 struct kvec *resv = &rqstp->rq_res.head[0], *cachv;
Trond Myklebustbedd4b62014-08-06 13:44:21 -0400505 u32 hash;
506 struct nfsd_drc_bucket *b;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 int len;
Jeff Layton6c6910c2013-03-27 10:15:38 -0400508 size_t bufsize = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Jeff Layton13cc8a72013-02-04 08:18:03 -0500510 if (!rp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 return;
512
Trond Myklebustbedd4b62014-08-06 13:44:21 -0400513 hash = nfsd_cache_hash(rp->c_xid);
514 b = &drc_hashtbl[hash];
515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 len = resv->iov_len - ((char*)statp - (char*)resv->iov_base);
517 len >>= 2;
Greg Banksfca42172009-04-01 07:28:13 +1100518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 /* Don't cache excessive amounts of data and XDR failures */
520 if (!statp || len > (256 >> 2)) {
Trond Myklebust89a26b32014-08-06 13:44:24 -0400521 nfsd_reply_cache_free(b, rp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 return;
523 }
524
525 switch (cachetype) {
526 case RC_REPLSTAT:
527 if (len != 1)
528 printk("nfsd: RC_REPLSTAT/reply len %d!\n",len);
529 rp->c_replstat = *statp;
530 break;
531 case RC_REPLBUFF:
532 cachv = &rp->c_replvec;
Jeff Layton6c6910c2013-03-27 10:15:38 -0400533 bufsize = len << 2;
534 cachv->iov_base = kmalloc(bufsize, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 if (!cachv->iov_base) {
Trond Myklebust89a26b32014-08-06 13:44:24 -0400536 nfsd_reply_cache_free(b, rp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 return;
538 }
Jeff Layton6c6910c2013-03-27 10:15:38 -0400539 cachv->iov_len = bufsize;
540 memcpy(cachv->iov_base, statp, bufsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 break;
Jeff Layton2c6b6912013-02-04 08:18:04 -0500542 case RC_NOCACHE:
Trond Myklebust89a26b32014-08-06 13:44:24 -0400543 nfsd_reply_cache_free(b, rp);
Jeff Layton2c6b6912013-02-04 08:18:04 -0500544 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 }
Trond Myklebust89a26b32014-08-06 13:44:24 -0400546 spin_lock(&b->cache_lock);
Jeff Layton6c6910c2013-03-27 10:15:38 -0400547 drc_mem_usage += bufsize;
Trond Myklebustbedd4b62014-08-06 13:44:21 -0400548 lru_put_end(b, rp);
Jeff Layton4d152e22014-11-19 07:51:14 -0500549 rp->c_secure = test_bit(RQ_SECURE, &rqstp->rq_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 rp->c_type = cachetype;
551 rp->c_state = RC_DONE;
Trond Myklebust89a26b32014-08-06 13:44:24 -0400552 spin_unlock(&b->cache_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 return;
554}
555
556/*
557 * Copy cached reply to current reply buffer. Should always fit.
558 * FIXME as reply is in a page, we should just attach the page, and
559 * keep a refcount....
560 */
561static int
562nfsd_cache_append(struct svc_rqst *rqstp, struct kvec *data)
563{
564 struct kvec *vec = &rqstp->rq_res.head[0];
565
566 if (vec->iov_len + data->iov_len > PAGE_SIZE) {
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -0800567 printk(KERN_WARNING "nfsd: cached reply too large (%zd).\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 data->iov_len);
569 return 0;
570 }
571 memcpy((char*)vec->iov_base + vec->iov_len, data->iov_base, data->iov_len);
572 vec->iov_len += data->iov_len;
573 return 1;
574}
Jeff Laytona2f999a2013-03-27 10:15:38 -0400575
576/*
577 * Note that fields may be added, removed or reordered in the future. Programs
578 * scraping this file for info should test the labels to ensure they're
579 * getting the correct field.
580 */
581static int nfsd_reply_cache_stats_show(struct seq_file *m, void *v)
582{
Jeff Laytona2f999a2013-03-27 10:15:38 -0400583 seq_printf(m, "max entries: %u\n", max_drc_entries);
Trond Myklebust31e60f52014-08-06 13:44:23 -0400584 seq_printf(m, "num entries: %u\n",
585 atomic_read(&num_drc_entries));
Jeff Layton0733c7b2013-03-27 10:15:39 -0400586 seq_printf(m, "hash buckets: %u\n", 1 << maskbits);
Jeff Laytona2f999a2013-03-27 10:15:38 -0400587 seq_printf(m, "mem usage: %u\n", drc_mem_usage);
588 seq_printf(m, "cache hits: %u\n", nfsdstats.rchits);
589 seq_printf(m, "cache misses: %u\n", nfsdstats.rcmisses);
590 seq_printf(m, "not cached: %u\n", nfsdstats.rcnocache);
591 seq_printf(m, "payload misses: %u\n", payload_misses);
Jeff Layton98d821b2013-03-27 10:15:39 -0400592 seq_printf(m, "longest chain len: %u\n", longest_chain);
593 seq_printf(m, "cachesize at longest: %u\n", longest_chain_cachesize);
Jeff Laytona2f999a2013-03-27 10:15:38 -0400594 return 0;
595}
596
597int nfsd_reply_cache_stats_open(struct inode *inode, struct file *file)
598{
599 return single_open(file, nfsd_reply_cache_stats_show, NULL);
600}