]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/sunrpc/cache.c
nfsd: fail init on /proc/fs/nfs/exports creation failure
[mirror_ubuntu-artful-kernel.git] / net / sunrpc / cache.c
CommitLineData
1da177e4
LT
1/*
2 * net/sunrpc/cache.c
3 *
4 * Generic code for various authentication-related caches
5 * used by sunrpc clients and servers.
6 *
7 * Copyright (C) 2002 Neil Brown <neilb@cse.unsw.edu.au>
8 *
9 * Released under terms in GPL version 2. See COPYING.
10 *
11 */
12
13#include <linux/types.h>
14#include <linux/fs.h>
15#include <linux/file.h>
16#include <linux/slab.h>
17#include <linux/signal.h>
18#include <linux/sched.h>
19#include <linux/kmod.h>
20#include <linux/list.h>
21#include <linux/module.h>
22#include <linux/ctype.h>
23#include <asm/uaccess.h>
24#include <linux/poll.h>
25#include <linux/seq_file.h>
26#include <linux/proc_fs.h>
27#include <linux/net.h>
28#include <linux/workqueue.h>
4a3e2f71 29#include <linux/mutex.h>
1da177e4
LT
30#include <asm/ioctls.h>
31#include <linux/sunrpc/types.h>
32#include <linux/sunrpc/cache.h>
33#include <linux/sunrpc/stats.h>
34
35#define RPCDBG_FACILITY RPCDBG_CACHE
36
e0bb89ef 37static int cache_defer_req(struct cache_req *req, struct cache_head *item);
1da177e4
LT
38static void cache_revisit_request(struct cache_head *item);
39
74cae61a 40static void cache_init(struct cache_head *h)
1da177e4
LT
41{
42 time_t now = get_seconds();
43 h->next = NULL;
44 h->flags = 0;
baab935f 45 kref_init(&h->ref);
1da177e4
LT
46 h->expiry_time = now + CACHE_NEW_EXPIRY;
47 h->last_refresh = now;
48}
49
15a5f6bd
N
50struct cache_head *sunrpc_cache_lookup(struct cache_detail *detail,
51 struct cache_head *key, int hash)
52{
53 struct cache_head **head, **hp;
54 struct cache_head *new = NULL;
55
56 head = &detail->hash_table[hash];
57
58 read_lock(&detail->hash_lock);
59
60 for (hp=head; *hp != NULL ; hp = &(*hp)->next) {
61 struct cache_head *tmp = *hp;
62 if (detail->match(tmp, key)) {
63 cache_get(tmp);
64 read_unlock(&detail->hash_lock);
65 return tmp;
66 }
67 }
68 read_unlock(&detail->hash_lock);
69 /* Didn't find anything, insert an empty entry */
70
71 new = detail->alloc();
72 if (!new)
73 return NULL;
2f34931f
NB
74 /* must fully initialise 'new', else
75 * we might get lose if we need to
76 * cache_put it soon.
77 */
15a5f6bd 78 cache_init(new);
2f34931f 79 detail->init(new, key);
15a5f6bd
N
80
81 write_lock(&detail->hash_lock);
82
83 /* check if entry appeared while we slept */
84 for (hp=head; *hp != NULL ; hp = &(*hp)->next) {
85 struct cache_head *tmp = *hp;
86 if (detail->match(tmp, key)) {
87 cache_get(tmp);
88 write_unlock(&detail->hash_lock);
baab935f 89 cache_put(new, detail);
15a5f6bd
N
90 return tmp;
91 }
92 }
15a5f6bd
N
93 new->next = *head;
94 *head = new;
95 detail->entries++;
96 cache_get(new);
97 write_unlock(&detail->hash_lock);
98
99 return new;
100}
101EXPORT_SYMBOL(sunrpc_cache_lookup);
102
ebd0cb1a
N
103
104static void queue_loose(struct cache_detail *detail, struct cache_head *ch);
105
106static int cache_fresh_locked(struct cache_head *head, time_t expiry)
107{
108 head->expiry_time = expiry;
109 head->last_refresh = get_seconds();
110 return !test_and_set_bit(CACHE_VALID, &head->flags);
111}
112
113static void cache_fresh_unlocked(struct cache_head *head,
114 struct cache_detail *detail, int new)
115{
116 if (new)
117 cache_revisit_request(head);
118 if (test_and_clear_bit(CACHE_PENDING, &head->flags)) {
119 cache_revisit_request(head);
120 queue_loose(detail, head);
121 }
122}
123
15a5f6bd
N
124struct cache_head *sunrpc_cache_update(struct cache_detail *detail,
125 struct cache_head *new, struct cache_head *old, int hash)
126{
127 /* The 'old' entry is to be replaced by 'new'.
128 * If 'old' is not VALID, we update it directly,
129 * otherwise we need to replace it
130 */
131 struct cache_head **head;
132 struct cache_head *tmp;
ebd0cb1a 133 int is_new;
15a5f6bd
N
134
135 if (!test_bit(CACHE_VALID, &old->flags)) {
136 write_lock(&detail->hash_lock);
137 if (!test_bit(CACHE_VALID, &old->flags)) {
138 if (test_bit(CACHE_NEGATIVE, &new->flags))
139 set_bit(CACHE_NEGATIVE, &old->flags);
140 else
141 detail->update(old, new);
ebd0cb1a 142 is_new = cache_fresh_locked(old, new->expiry_time);
15a5f6bd 143 write_unlock(&detail->hash_lock);
ebd0cb1a 144 cache_fresh_unlocked(old, detail, is_new);
15a5f6bd
N
145 return old;
146 }
147 write_unlock(&detail->hash_lock);
148 }
149 /* We need to insert a new entry */
150 tmp = detail->alloc();
151 if (!tmp) {
baab935f 152 cache_put(old, detail);
15a5f6bd
N
153 return NULL;
154 }
155 cache_init(tmp);
156 detail->init(tmp, old);
157 head = &detail->hash_table[hash];
158
159 write_lock(&detail->hash_lock);
160 if (test_bit(CACHE_NEGATIVE, &new->flags))
161 set_bit(CACHE_NEGATIVE, &tmp->flags);
162 else
163 detail->update(tmp, new);
164 tmp->next = *head;
165 *head = tmp;
f2d39586 166 detail->entries++;
15a5f6bd 167 cache_get(tmp);
ebd0cb1a
N
168 is_new = cache_fresh_locked(tmp, new->expiry_time);
169 cache_fresh_locked(old, 0);
15a5f6bd 170 write_unlock(&detail->hash_lock);
ebd0cb1a
N
171 cache_fresh_unlocked(tmp, detail, is_new);
172 cache_fresh_unlocked(old, detail, 0);
baab935f 173 cache_put(old, detail);
15a5f6bd
N
174 return tmp;
175}
176EXPORT_SYMBOL(sunrpc_cache_update);
1da177e4
LT
177
178static int cache_make_upcall(struct cache_detail *detail, struct cache_head *h);
179/*
180 * This is the generic cache management routine for all
181 * the authentication caches.
182 * It checks the currency of a cache item and will (later)
183 * initiate an upcall to fill it if needed.
184 *
185 *
186 * Returns 0 if the cache_head can be used, or cache_puts it and returns
187 * -EAGAIN if upcall is pending,
e0bb89ef 188 * -ETIMEDOUT if upcall failed and should be retried,
1da177e4
LT
189 * -ENOENT if cache entry was negative
190 */
191int cache_check(struct cache_detail *detail,
192 struct cache_head *h, struct cache_req *rqstp)
193{
194 int rv;
195 long refresh_age, age;
196
197 /* First decide return status as best we can */
198 if (!test_bit(CACHE_VALID, &h->flags) ||
199 h->expiry_time < get_seconds())
200 rv = -EAGAIN;
201 else if (detail->flush_time > h->last_refresh)
202 rv = -EAGAIN;
203 else {
204 /* entry is valid */
205 if (test_bit(CACHE_NEGATIVE, &h->flags))
206 rv = -ENOENT;
207 else rv = 0;
208 }
209
210 /* now see if we want to start an upcall */
211 refresh_age = (h->expiry_time - h->last_refresh);
212 age = get_seconds() - h->last_refresh;
213
214 if (rqstp == NULL) {
215 if (rv == -EAGAIN)
216 rv = -ENOENT;
217 } else if (rv == -EAGAIN || age > refresh_age/2) {
46121cf7
CL
218 dprintk("RPC: Want update, refage=%ld, age=%ld\n",
219 refresh_age, age);
1da177e4
LT
220 if (!test_and_set_bit(CACHE_PENDING, &h->flags)) {
221 switch (cache_make_upcall(detail, h)) {
222 case -EINVAL:
223 clear_bit(CACHE_PENDING, &h->flags);
224 if (rv == -EAGAIN) {
225 set_bit(CACHE_NEGATIVE, &h->flags);
ebd0cb1a
N
226 cache_fresh_unlocked(h, detail,
227 cache_fresh_locked(h, get_seconds()+CACHE_NEW_EXPIRY));
1da177e4
LT
228 rv = -ENOENT;
229 }
230 break;
231
232 case -EAGAIN:
233 clear_bit(CACHE_PENDING, &h->flags);
234 cache_revisit_request(h);
235 break;
236 }
237 }
238 }
239
240 if (rv == -EAGAIN)
e0bb89ef
BF
241 if (cache_defer_req(rqstp, h) != 0)
242 rv = -ETIMEDOUT;
1da177e4 243
4013edea 244 if (rv)
baab935f 245 cache_put(h, detail);
1da177e4
LT
246 return rv;
247}
248
1da177e4
LT
249/*
250 * caches need to be periodically cleaned.
251 * For this we maintain a list of cache_detail and
252 * a current pointer into that list and into the table
253 * for that entry.
254 *
255 * Each time clean_cache is called it finds the next non-empty entry
256 * in the current table and walks the list in that entry
257 * looking for entries that can be removed.
258 *
259 * An entry gets removed if:
260 * - The expiry is before current time
261 * - The last_refresh time is before the flush_time for that cache
262 *
263 * later we might drop old entries with non-NEVER expiry if that table
264 * is getting 'full' for some definition of 'full'
265 *
266 * The question of "how often to scan a table" is an interesting one
267 * and is answered in part by the use of the "nextcheck" field in the
268 * cache_detail.
269 * When a scan of a table begins, the nextcheck field is set to a time
270 * that is well into the future.
271 * While scanning, if an expiry time is found that is earlier than the
272 * current nextcheck time, nextcheck is set to that expiry time.
273 * If the flush_time is ever set to a time earlier than the nextcheck
274 * time, the nextcheck time is then set to that flush_time.
275 *
276 * A table is then only scanned if the current time is at least
277 * the nextcheck time.
cca5172a 278 *
1da177e4
LT
279 */
280
281static LIST_HEAD(cache_list);
282static DEFINE_SPINLOCK(cache_list_lock);
283static struct cache_detail *current_detail;
284static int current_index;
285
da7071d7
AV
286static const struct file_operations cache_file_operations;
287static const struct file_operations content_file_operations;
288static const struct file_operations cache_flush_operations;
1da177e4 289
65f27f38
DH
290static void do_cache_clean(struct work_struct *work);
291static DECLARE_DELAYED_WORK(cache_cleaner, do_cache_clean);
1da177e4
LT
292
293void cache_register(struct cache_detail *cd)
294{
295 cd->proc_ent = proc_mkdir(cd->name, proc_net_rpc);
296 if (cd->proc_ent) {
297 struct proc_dir_entry *p;
f35279d3 298 cd->proc_ent->owner = cd->owner;
1da177e4 299 cd->channel_ent = cd->content_ent = NULL;
cca5172a
YH
300
301 p = create_proc_entry("flush", S_IFREG|S_IRUSR|S_IWUSR,
302 cd->proc_ent);
1da177e4 303 cd->flush_ent = p;
cca5172a
YH
304 if (p) {
305 p->proc_fops = &cache_flush_operations;
306 p->owner = cd->owner;
307 p->data = cd;
308 }
309
1da177e4
LT
310 if (cd->cache_request || cd->cache_parse) {
311 p = create_proc_entry("channel", S_IFREG|S_IRUSR|S_IWUSR,
312 cd->proc_ent);
313 cd->channel_ent = p;
314 if (p) {
315 p->proc_fops = &cache_file_operations;
f35279d3 316 p->owner = cd->owner;
1da177e4
LT
317 p->data = cd;
318 }
319 }
cca5172a
YH
320 if (cd->cache_show) {
321 p = create_proc_entry("content", S_IFREG|S_IRUSR|S_IWUSR,
322 cd->proc_ent);
1da177e4 323 cd->content_ent = p;
cca5172a
YH
324 if (p) {
325 p->proc_fops = &content_file_operations;
326 p->owner = cd->owner;
327 p->data = cd;
328 }
329 }
1da177e4
LT
330 }
331 rwlock_init(&cd->hash_lock);
332 INIT_LIST_HEAD(&cd->queue);
333 spin_lock(&cache_list_lock);
334 cd->nextcheck = 0;
335 cd->entries = 0;
336 atomic_set(&cd->readers, 0);
337 cd->last_close = 0;
338 cd->last_warn = -1;
339 list_add(&cd->others, &cache_list);
340 spin_unlock(&cache_list_lock);
341
342 /* start the cleaning process */
52bad64d 343 schedule_delayed_work(&cache_cleaner, 0);
1da177e4
LT
344}
345
df95a9d4 346void cache_unregister(struct cache_detail *cd)
1da177e4
LT
347{
348 cache_purge(cd);
349 spin_lock(&cache_list_lock);
350 write_lock(&cd->hash_lock);
351 if (cd->entries || atomic_read(&cd->inuse)) {
352 write_unlock(&cd->hash_lock);
353 spin_unlock(&cache_list_lock);
df95a9d4 354 goto out;
1da177e4
LT
355 }
356 if (current_detail == cd)
357 current_detail = NULL;
358 list_del_init(&cd->others);
359 write_unlock(&cd->hash_lock);
360 spin_unlock(&cache_list_lock);
361 if (cd->proc_ent) {
362 if (cd->flush_ent)
363 remove_proc_entry("flush", cd->proc_ent);
364 if (cd->channel_ent)
365 remove_proc_entry("channel", cd->proc_ent);
366 if (cd->content_ent)
367 remove_proc_entry("content", cd->proc_ent);
368
369 cd->proc_ent = NULL;
370 remove_proc_entry(cd->name, proc_net_rpc);
371 }
372 if (list_empty(&cache_list)) {
373 /* module must be being unloaded so its safe to kill the worker */
4011cd97 374 cancel_delayed_work_sync(&cache_cleaner);
1da177e4 375 }
df95a9d4
BF
376 return;
377out:
378 printk(KERN_ERR "nfsd: failed to unregister %s cache\n", cd->name);
1da177e4
LT
379}
380
381/* clean cache tries to find something to clean
382 * and cleans it.
383 * It returns 1 if it cleaned something,
384 * 0 if it didn't find anything this time
385 * -1 if it fell off the end of the list.
386 */
387static int cache_clean(void)
388{
389 int rv = 0;
390 struct list_head *next;
391
392 spin_lock(&cache_list_lock);
393
394 /* find a suitable table if we don't already have one */
395 while (current_detail == NULL ||
396 current_index >= current_detail->hash_size) {
397 if (current_detail)
398 next = current_detail->others.next;
399 else
400 next = cache_list.next;
401 if (next == &cache_list) {
402 current_detail = NULL;
403 spin_unlock(&cache_list_lock);
404 return -1;
405 }
406 current_detail = list_entry(next, struct cache_detail, others);
407 if (current_detail->nextcheck > get_seconds())
408 current_index = current_detail->hash_size;
409 else {
410 current_index = 0;
411 current_detail->nextcheck = get_seconds()+30*60;
412 }
413 }
414
415 /* find a non-empty bucket in the table */
416 while (current_detail &&
417 current_index < current_detail->hash_size &&
418 current_detail->hash_table[current_index] == NULL)
419 current_index++;
420
421 /* find a cleanable entry in the bucket and clean it, or set to next bucket */
cca5172a 422
1da177e4
LT
423 if (current_detail && current_index < current_detail->hash_size) {
424 struct cache_head *ch, **cp;
425 struct cache_detail *d;
cca5172a 426
1da177e4
LT
427 write_lock(&current_detail->hash_lock);
428
429 /* Ok, now to clean this strand */
cca5172a 430
1da177e4
LT
431 cp = & current_detail->hash_table[current_index];
432 ch = *cp;
433 for (; ch; cp= & ch->next, ch= *cp) {
434 if (current_detail->nextcheck > ch->expiry_time)
435 current_detail->nextcheck = ch->expiry_time+1;
436 if (ch->expiry_time >= get_seconds()
437 && ch->last_refresh >= current_detail->flush_time
438 )
439 continue;
440 if (test_and_clear_bit(CACHE_PENDING, &ch->flags))
441 queue_loose(current_detail, ch);
442
baab935f 443 if (atomic_read(&ch->ref.refcount) == 1)
1da177e4
LT
444 break;
445 }
446 if (ch) {
447 *cp = ch->next;
448 ch->next = NULL;
449 current_detail->entries--;
450 rv = 1;
451 }
452 write_unlock(&current_detail->hash_lock);
453 d = current_detail;
454 if (!ch)
455 current_index ++;
456 spin_unlock(&cache_list_lock);
457 if (ch)
baab935f 458 cache_put(ch, d);
1da177e4
LT
459 } else
460 spin_unlock(&cache_list_lock);
461
462 return rv;
463}
464
465/*
466 * We want to regularly clean the cache, so we need to schedule some work ...
467 */
65f27f38 468static void do_cache_clean(struct work_struct *work)
1da177e4
LT
469{
470 int delay = 5;
471 if (cache_clean() == -1)
472 delay = 30*HZ;
473
474 if (list_empty(&cache_list))
475 delay = 0;
476
477 if (delay)
478 schedule_delayed_work(&cache_cleaner, delay);
479}
480
481
cca5172a 482/*
1da177e4 483 * Clean all caches promptly. This just calls cache_clean
cca5172a 484 * repeatedly until we are sure that every cache has had a chance to
1da177e4
LT
485 * be fully cleaned
486 */
487void cache_flush(void)
488{
489 while (cache_clean() != -1)
490 cond_resched();
491 while (cache_clean() != -1)
492 cond_resched();
493}
494
495void cache_purge(struct cache_detail *detail)
496{
497 detail->flush_time = LONG_MAX;
498 detail->nextcheck = get_seconds();
499 cache_flush();
500 detail->flush_time = 1;
501}
502
503
504
505/*
506 * Deferral and Revisiting of Requests.
507 *
508 * If a cache lookup finds a pending entry, we
509 * need to defer the request and revisit it later.
510 * All deferred requests are stored in a hash table,
511 * indexed by "struct cache_head *".
512 * As it may be wasteful to store a whole request
cca5172a 513 * structure, we allow the request to provide a
1da177e4
LT
514 * deferred form, which must contain a
515 * 'struct cache_deferred_req'
516 * This cache_deferred_req contains a method to allow
517 * it to be revisited when cache info is available
518 */
519
520#define DFR_HASHSIZE (PAGE_SIZE/sizeof(struct list_head))
521#define DFR_HASH(item) ((((long)item)>>4 ^ (((long)item)>>13)) % DFR_HASHSIZE)
522
523#define DFR_MAX 300 /* ??? */
524
525static DEFINE_SPINLOCK(cache_defer_lock);
526static LIST_HEAD(cache_defer_list);
527static struct list_head cache_defer_hash[DFR_HASHSIZE];
528static int cache_defer_cnt;
529
e0bb89ef 530static int cache_defer_req(struct cache_req *req, struct cache_head *item)
1da177e4
LT
531{
532 struct cache_deferred_req *dreq;
533 int hash = DFR_HASH(item);
534
01f3bd1f
BF
535 if (cache_defer_cnt >= DFR_MAX) {
536 /* too much in the cache, randomly drop this one,
537 * or continue and drop the oldest below
538 */
539 if (net_random()&1)
540 return -ETIMEDOUT;
541 }
1da177e4
LT
542 dreq = req->defer(req);
543 if (dreq == NULL)
e0bb89ef 544 return -ETIMEDOUT;
1da177e4
LT
545
546 dreq->item = item;
547 dreq->recv_time = get_seconds();
548
549 spin_lock(&cache_defer_lock);
550
551 list_add(&dreq->recent, &cache_defer_list);
552
553 if (cache_defer_hash[hash].next == NULL)
554 INIT_LIST_HEAD(&cache_defer_hash[hash]);
555 list_add(&dreq->hash, &cache_defer_hash[hash]);
556
557 /* it is in, now maybe clean up */
558 dreq = NULL;
559 if (++cache_defer_cnt > DFR_MAX) {
01f3bd1f
BF
560 dreq = list_entry(cache_defer_list.prev,
561 struct cache_deferred_req, recent);
1da177e4
LT
562 list_del(&dreq->recent);
563 list_del(&dreq->hash);
564 cache_defer_cnt--;
565 }
566 spin_unlock(&cache_defer_lock);
567
568 if (dreq) {
569 /* there was one too many */
570 dreq->revisit(dreq, 1);
571 }
4013edea 572 if (!test_bit(CACHE_PENDING, &item->flags)) {
1da177e4
LT
573 /* must have just been validated... */
574 cache_revisit_request(item);
575 }
e0bb89ef 576 return 0;
1da177e4
LT
577}
578
579static void cache_revisit_request(struct cache_head *item)
580{
581 struct cache_deferred_req *dreq;
582 struct list_head pending;
583
584 struct list_head *lp;
585 int hash = DFR_HASH(item);
586
587 INIT_LIST_HEAD(&pending);
588 spin_lock(&cache_defer_lock);
cca5172a 589
1da177e4
LT
590 lp = cache_defer_hash[hash].next;
591 if (lp) {
592 while (lp != &cache_defer_hash[hash]) {
593 dreq = list_entry(lp, struct cache_deferred_req, hash);
594 lp = lp->next;
595 if (dreq->item == item) {
596 list_del(&dreq->hash);
597 list_move(&dreq->recent, &pending);
598 cache_defer_cnt--;
599 }
600 }
601 }
602 spin_unlock(&cache_defer_lock);
603
604 while (!list_empty(&pending)) {
605 dreq = list_entry(pending.next, struct cache_deferred_req, recent);
606 list_del_init(&dreq->recent);
607 dreq->revisit(dreq, 0);
608 }
609}
610
611void cache_clean_deferred(void *owner)
612{
613 struct cache_deferred_req *dreq, *tmp;
614 struct list_head pending;
615
616
617 INIT_LIST_HEAD(&pending);
618 spin_lock(&cache_defer_lock);
cca5172a 619
1da177e4
LT
620 list_for_each_entry_safe(dreq, tmp, &cache_defer_list, recent) {
621 if (dreq->owner == owner) {
622 list_del(&dreq->hash);
623 list_move(&dreq->recent, &pending);
624 cache_defer_cnt--;
625 }
626 }
627 spin_unlock(&cache_defer_lock);
628
629 while (!list_empty(&pending)) {
630 dreq = list_entry(pending.next, struct cache_deferred_req, recent);
631 list_del_init(&dreq->recent);
632 dreq->revisit(dreq, 1);
633 }
634}
635
636/*
637 * communicate with user-space
638 *
a490c681
BF
639 * We have a magic /proc file - /proc/sunrpc/<cachename>/channel.
640 * On read, you get a full request, or block.
641 * On write, an update request is processed.
642 * Poll works if anything to read, and always allows write.
1da177e4 643 *
cca5172a 644 * Implemented by linked list of requests. Each open file has
a490c681 645 * a ->private that also exists in this list. New requests are added
1da177e4
LT
646 * to the end and may wakeup and preceding readers.
647 * New readers are added to the head. If, on read, an item is found with
648 * CACHE_UPCALLING clear, we free it from the list.
649 *
650 */
651
652static DEFINE_SPINLOCK(queue_lock);
4a3e2f71 653static DEFINE_MUTEX(queue_io_mutex);
1da177e4
LT
654
655struct cache_queue {
656 struct list_head list;
657 int reader; /* if 0, then request */
658};
659struct cache_request {
660 struct cache_queue q;
661 struct cache_head *item;
662 char * buf;
663 int len;
664 int readers;
665};
666struct cache_reader {
667 struct cache_queue q;
668 int offset; /* if non-0, we have a refcnt on next request */
669};
670
671static ssize_t
672cache_read(struct file *filp, char __user *buf, size_t count, loff_t *ppos)
673{
674 struct cache_reader *rp = filp->private_data;
675 struct cache_request *rq;
303b46bb 676 struct cache_detail *cd = PDE(filp->f_path.dentry->d_inode)->data;
1da177e4
LT
677 int err;
678
679 if (count == 0)
680 return 0;
681
4a3e2f71 682 mutex_lock(&queue_io_mutex); /* protect against multiple concurrent
1da177e4
LT
683 * readers on this file */
684 again:
685 spin_lock(&queue_lock);
686 /* need to find next request */
687 while (rp->q.list.next != &cd->queue &&
688 list_entry(rp->q.list.next, struct cache_queue, list)
689 ->reader) {
690 struct list_head *next = rp->q.list.next;
691 list_move(&rp->q.list, next);
692 }
693 if (rp->q.list.next == &cd->queue) {
694 spin_unlock(&queue_lock);
4a3e2f71 695 mutex_unlock(&queue_io_mutex);
09a62660 696 BUG_ON(rp->offset);
1da177e4
LT
697 return 0;
698 }
699 rq = container_of(rp->q.list.next, struct cache_request, q.list);
09a62660 700 BUG_ON(rq->q.reader);
1da177e4
LT
701 if (rp->offset == 0)
702 rq->readers++;
703 spin_unlock(&queue_lock);
704
705 if (rp->offset == 0 && !test_bit(CACHE_PENDING, &rq->item->flags)) {
706 err = -EAGAIN;
707 spin_lock(&queue_lock);
708 list_move(&rp->q.list, &rq->q.list);
709 spin_unlock(&queue_lock);
710 } else {
711 if (rp->offset + count > rq->len)
712 count = rq->len - rp->offset;
713 err = -EFAULT;
714 if (copy_to_user(buf, rq->buf + rp->offset, count))
715 goto out;
716 rp->offset += count;
717 if (rp->offset >= rq->len) {
718 rp->offset = 0;
719 spin_lock(&queue_lock);
720 list_move(&rp->q.list, &rq->q.list);
721 spin_unlock(&queue_lock);
722 }
723 err = 0;
724 }
725 out:
726 if (rp->offset == 0) {
727 /* need to release rq */
728 spin_lock(&queue_lock);
729 rq->readers--;
730 if (rq->readers == 0 &&
731 !test_bit(CACHE_PENDING, &rq->item->flags)) {
732 list_del(&rq->q.list);
733 spin_unlock(&queue_lock);
baab935f 734 cache_put(rq->item, cd);
1da177e4
LT
735 kfree(rq->buf);
736 kfree(rq);
737 } else
738 spin_unlock(&queue_lock);
739 }
740 if (err == -EAGAIN)
741 goto again;
4a3e2f71 742 mutex_unlock(&queue_io_mutex);
1da177e4
LT
743 return err ? err : count;
744}
745
4a3e2f71 746static char write_buf[8192]; /* protected by queue_io_mutex */
1da177e4
LT
747
748static ssize_t
749cache_write(struct file *filp, const char __user *buf, size_t count,
750 loff_t *ppos)
751{
752 int err;
303b46bb 753 struct cache_detail *cd = PDE(filp->f_path.dentry->d_inode)->data;
1da177e4
LT
754
755 if (count == 0)
756 return 0;
757 if (count >= sizeof(write_buf))
758 return -EINVAL;
759
4a3e2f71 760 mutex_lock(&queue_io_mutex);
1da177e4
LT
761
762 if (copy_from_user(write_buf, buf, count)) {
4a3e2f71 763 mutex_unlock(&queue_io_mutex);
1da177e4
LT
764 return -EFAULT;
765 }
766 write_buf[count] = '\0';
767 if (cd->cache_parse)
768 err = cd->cache_parse(cd, write_buf, count);
769 else
770 err = -EINVAL;
771
4a3e2f71 772 mutex_unlock(&queue_io_mutex);
1da177e4
LT
773 return err ? err : count;
774}
775
776static DECLARE_WAIT_QUEUE_HEAD(queue_wait);
777
778static unsigned int
779cache_poll(struct file *filp, poll_table *wait)
780{
781 unsigned int mask;
782 struct cache_reader *rp = filp->private_data;
783 struct cache_queue *cq;
303b46bb 784 struct cache_detail *cd = PDE(filp->f_path.dentry->d_inode)->data;
1da177e4
LT
785
786 poll_wait(filp, &queue_wait, wait);
787
788 /* alway allow write */
789 mask = POLL_OUT | POLLWRNORM;
790
791 if (!rp)
792 return mask;
793
794 spin_lock(&queue_lock);
795
796 for (cq= &rp->q; &cq->list != &cd->queue;
797 cq = list_entry(cq->list.next, struct cache_queue, list))
798 if (!cq->reader) {
799 mask |= POLLIN | POLLRDNORM;
800 break;
801 }
802 spin_unlock(&queue_lock);
803 return mask;
804}
805
806static int
807cache_ioctl(struct inode *ino, struct file *filp,
808 unsigned int cmd, unsigned long arg)
809{
810 int len = 0;
811 struct cache_reader *rp = filp->private_data;
812 struct cache_queue *cq;
813 struct cache_detail *cd = PDE(ino)->data;
814
815 if (cmd != FIONREAD || !rp)
816 return -EINVAL;
817
818 spin_lock(&queue_lock);
819
820 /* only find the length remaining in current request,
821 * or the length of the next request
822 */
823 for (cq= &rp->q; &cq->list != &cd->queue;
824 cq = list_entry(cq->list.next, struct cache_queue, list))
825 if (!cq->reader) {
826 struct cache_request *cr =
827 container_of(cq, struct cache_request, q);
828 len = cr->len - rp->offset;
829 break;
830 }
831 spin_unlock(&queue_lock);
832
833 return put_user(len, (int __user *)arg);
834}
835
836static int
837cache_open(struct inode *inode, struct file *filp)
838{
839 struct cache_reader *rp = NULL;
840
841 nonseekable_open(inode, filp);
842 if (filp->f_mode & FMODE_READ) {
843 struct cache_detail *cd = PDE(inode)->data;
844
845 rp = kmalloc(sizeof(*rp), GFP_KERNEL);
846 if (!rp)
847 return -ENOMEM;
848 rp->offset = 0;
849 rp->q.reader = 1;
850 atomic_inc(&cd->readers);
851 spin_lock(&queue_lock);
852 list_add(&rp->q.list, &cd->queue);
853 spin_unlock(&queue_lock);
854 }
855 filp->private_data = rp;
856 return 0;
857}
858
859static int
860cache_release(struct inode *inode, struct file *filp)
861{
862 struct cache_reader *rp = filp->private_data;
863 struct cache_detail *cd = PDE(inode)->data;
864
865 if (rp) {
866 spin_lock(&queue_lock);
867 if (rp->offset) {
868 struct cache_queue *cq;
869 for (cq= &rp->q; &cq->list != &cd->queue;
870 cq = list_entry(cq->list.next, struct cache_queue, list))
871 if (!cq->reader) {
872 container_of(cq, struct cache_request, q)
873 ->readers--;
874 break;
875 }
876 rp->offset = 0;
877 }
878 list_del(&rp->q.list);
879 spin_unlock(&queue_lock);
880
881 filp->private_data = NULL;
882 kfree(rp);
883
884 cd->last_close = get_seconds();
885 atomic_dec(&cd->readers);
886 }
887 return 0;
888}
889
890
891
da7071d7 892static const struct file_operations cache_file_operations = {
1da177e4
LT
893 .owner = THIS_MODULE,
894 .llseek = no_llseek,
895 .read = cache_read,
896 .write = cache_write,
897 .poll = cache_poll,
898 .ioctl = cache_ioctl, /* for FIONREAD */
899 .open = cache_open,
900 .release = cache_release,
901};
902
903
904static void queue_loose(struct cache_detail *detail, struct cache_head *ch)
905{
906 struct cache_queue *cq;
907 spin_lock(&queue_lock);
908 list_for_each_entry(cq, &detail->queue, list)
909 if (!cq->reader) {
910 struct cache_request *cr = container_of(cq, struct cache_request, q);
911 if (cr->item != ch)
912 continue;
913 if (cr->readers != 0)
4013edea 914 continue;
1da177e4
LT
915 list_del(&cr->q.list);
916 spin_unlock(&queue_lock);
baab935f 917 cache_put(cr->item, detail);
1da177e4
LT
918 kfree(cr->buf);
919 kfree(cr);
920 return;
921 }
922 spin_unlock(&queue_lock);
923}
924
925/*
926 * Support routines for text-based upcalls.
927 * Fields are separated by spaces.
928 * Fields are either mangled to quote space tab newline slosh with slosh
929 * or a hexified with a leading \x
930 * Record is terminated with newline.
931 *
932 */
933
934void qword_add(char **bpp, int *lp, char *str)
935{
936 char *bp = *bpp;
937 int len = *lp;
938 char c;
939
940 if (len < 0) return;
941
942 while ((c=*str++) && len)
943 switch(c) {
944 case ' ':
945 case '\t':
946 case '\n':
947 case '\\':
948 if (len >= 4) {
949 *bp++ = '\\';
950 *bp++ = '0' + ((c & 0300)>>6);
951 *bp++ = '0' + ((c & 0070)>>3);
952 *bp++ = '0' + ((c & 0007)>>0);
953 }
954 len -= 4;
955 break;
956 default:
957 *bp++ = c;
958 len--;
959 }
960 if (c || len <1) len = -1;
961 else {
962 *bp++ = ' ';
963 len--;
964 }
965 *bpp = bp;
966 *lp = len;
967}
968
969void qword_addhex(char **bpp, int *lp, char *buf, int blen)
970{
971 char *bp = *bpp;
972 int len = *lp;
973
974 if (len < 0) return;
975
976 if (len > 2) {
977 *bp++ = '\\';
978 *bp++ = 'x';
979 len -= 2;
980 while (blen && len >= 2) {
981 unsigned char c = *buf++;
982 *bp++ = '0' + ((c&0xf0)>>4) + (c>=0xa0)*('a'-'9'-1);
983 *bp++ = '0' + (c&0x0f) + ((c&0x0f)>=0x0a)*('a'-'9'-1);
984 len -= 2;
985 blen--;
986 }
987 }
988 if (blen || len<1) len = -1;
989 else {
990 *bp++ = ' ';
991 len--;
992 }
993 *bpp = bp;
994 *lp = len;
995}
996
997static void warn_no_listener(struct cache_detail *detail)
998{
999 if (detail->last_warn != detail->last_close) {
1000 detail->last_warn = detail->last_close;
1001 if (detail->warn_no_listener)
1002 detail->warn_no_listener(detail);
1003 }
1004}
1005
1006/*
1007 * register an upcall request to user-space.
1008 * Each request is at most one page long.
1009 */
1010static int cache_make_upcall(struct cache_detail *detail, struct cache_head *h)
1011{
1012
1013 char *buf;
1014 struct cache_request *crq;
1015 char *bp;
1016 int len;
1017
1018 if (detail->cache_request == NULL)
1019 return -EINVAL;
1020
1021 if (atomic_read(&detail->readers) == 0 &&
1022 detail->last_close < get_seconds() - 30) {
1023 warn_no_listener(detail);
1024 return -EINVAL;
1025 }
1026
1027 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
1028 if (!buf)
1029 return -EAGAIN;
1030
1031 crq = kmalloc(sizeof (*crq), GFP_KERNEL);
1032 if (!crq) {
1033 kfree(buf);
1034 return -EAGAIN;
1035 }
1036
1037 bp = buf; len = PAGE_SIZE;
1038
1039 detail->cache_request(detail, h, &bp, &len);
1040
1041 if (len < 0) {
1042 kfree(buf);
1043 kfree(crq);
1044 return -EAGAIN;
1045 }
1046 crq->q.reader = 0;
1047 crq->item = cache_get(h);
1048 crq->buf = buf;
1049 crq->len = PAGE_SIZE - len;
1050 crq->readers = 0;
1051 spin_lock(&queue_lock);
1052 list_add_tail(&crq->q.list, &detail->queue);
1053 spin_unlock(&queue_lock);
1054 wake_up(&queue_wait);
1055 return 0;
1056}
1057
1058/*
1059 * parse a message from user-space and pass it
1060 * to an appropriate cache
1061 * Messages are, like requests, separated into fields by
1062 * spaces and dequotes as \xHEXSTRING or embedded \nnn octal
1063 *
cca5172a 1064 * Message is
1da177e4
LT
1065 * reply cachename expiry key ... content....
1066 *
cca5172a 1067 * key and content are both parsed by cache
1da177e4
LT
1068 */
1069
1070#define isodigit(c) (isdigit(c) && c <= '7')
1071int qword_get(char **bpp, char *dest, int bufsize)
1072{
1073 /* return bytes copied, or -1 on error */
1074 char *bp = *bpp;
1075 int len = 0;
1076
1077 while (*bp == ' ') bp++;
1078
1079 if (bp[0] == '\\' && bp[1] == 'x') {
1080 /* HEX STRING */
1081 bp += 2;
1082 while (isxdigit(bp[0]) && isxdigit(bp[1]) && len < bufsize) {
1083 int byte = isdigit(*bp) ? *bp-'0' : toupper(*bp)-'A'+10;
1084 bp++;
1085 byte <<= 4;
1086 byte |= isdigit(*bp) ? *bp-'0' : toupper(*bp)-'A'+10;
1087 *dest++ = byte;
1088 bp++;
1089 len++;
1090 }
1091 } else {
1092 /* text with \nnn octal quoting */
1093 while (*bp != ' ' && *bp != '\n' && *bp && len < bufsize-1) {
1094 if (*bp == '\\' &&
1095 isodigit(bp[1]) && (bp[1] <= '3') &&
1096 isodigit(bp[2]) &&
1097 isodigit(bp[3])) {
1098 int byte = (*++bp -'0');
1099 bp++;
1100 byte = (byte << 3) | (*bp++ - '0');
1101 byte = (byte << 3) | (*bp++ - '0');
1102 *dest++ = byte;
1103 len++;
1104 } else {
1105 *dest++ = *bp++;
1106 len++;
1107 }
1108 }
1109 }
1110
1111 if (*bp != ' ' && *bp != '\n' && *bp != '\0')
1112 return -1;
1113 while (*bp == ' ') bp++;
1114 *bpp = bp;
1115 *dest = '\0';
1116 return len;
1117}
1118
1119
1120/*
1121 * support /proc/sunrpc/cache/$CACHENAME/content
1122 * as a seqfile.
1123 * We call ->cache_show passing NULL for the item to
1124 * get a header, then pass each real item in the cache
1125 */
1126
1127struct handle {
1128 struct cache_detail *cd;
1129};
1130
1131static void *c_start(struct seq_file *m, loff_t *pos)
9a429c49 1132 __acquires(cd->hash_lock)
1da177e4
LT
1133{
1134 loff_t n = *pos;
1135 unsigned hash, entry;
1136 struct cache_head *ch;
1137 struct cache_detail *cd = ((struct handle*)m->private)->cd;
cca5172a 1138
1da177e4
LT
1139
1140 read_lock(&cd->hash_lock);
1141 if (!n--)
1142 return SEQ_START_TOKEN;
1143 hash = n >> 32;
1144 entry = n & ((1LL<<32) - 1);
1145
1146 for (ch=cd->hash_table[hash]; ch; ch=ch->next)
1147 if (!entry--)
1148 return ch;
1149 n &= ~((1LL<<32) - 1);
1150 do {
1151 hash++;
1152 n += 1LL<<32;
cca5172a 1153 } while(hash < cd->hash_size &&
1da177e4
LT
1154 cd->hash_table[hash]==NULL);
1155 if (hash >= cd->hash_size)
1156 return NULL;
1157 *pos = n+1;
1158 return cd->hash_table[hash];
1159}
1160
1161static void *c_next(struct seq_file *m, void *p, loff_t *pos)
1162{
1163 struct cache_head *ch = p;
1164 int hash = (*pos >> 32);
1165 struct cache_detail *cd = ((struct handle*)m->private)->cd;
1166
1167 if (p == SEQ_START_TOKEN)
1168 hash = 0;
1169 else if (ch->next == NULL) {
1170 hash++;
1171 *pos += 1LL<<32;
1172 } else {
1173 ++*pos;
1174 return ch->next;
1175 }
1176 *pos &= ~((1LL<<32) - 1);
1177 while (hash < cd->hash_size &&
1178 cd->hash_table[hash] == NULL) {
1179 hash++;
1180 *pos += 1LL<<32;
1181 }
1182 if (hash >= cd->hash_size)
1183 return NULL;
1184 ++*pos;
1185 return cd->hash_table[hash];
1186}
1187
1188static void c_stop(struct seq_file *m, void *p)
9a429c49 1189 __releases(cd->hash_lock)
1da177e4
LT
1190{
1191 struct cache_detail *cd = ((struct handle*)m->private)->cd;
1192 read_unlock(&cd->hash_lock);
1193}
1194
1195static int c_show(struct seq_file *m, void *p)
1196{
1197 struct cache_head *cp = p;
1198 struct cache_detail *cd = ((struct handle*)m->private)->cd;
1199
1200 if (p == SEQ_START_TOKEN)
1201 return cd->cache_show(m, cd, NULL);
1202
1203 ifdebug(CACHE)
4013edea 1204 seq_printf(m, "# expiry=%ld refcnt=%d flags=%lx\n",
baab935f 1205 cp->expiry_time, atomic_read(&cp->ref.refcount), cp->flags);
1da177e4
LT
1206 cache_get(cp);
1207 if (cache_check(cd, cp, NULL))
1208 /* cache_check does a cache_put on failure */
1209 seq_printf(m, "# ");
1210 else
1211 cache_put(cp, cd);
1212
1213 return cd->cache_show(m, cd, cp);
1214}
1215
56b3d975 1216static const struct seq_operations cache_content_op = {
1da177e4
LT
1217 .start = c_start,
1218 .next = c_next,
1219 .stop = c_stop,
1220 .show = c_show,
1221};
1222
1223static int content_open(struct inode *inode, struct file *file)
1224{
1da177e4
LT
1225 struct handle *han;
1226 struct cache_detail *cd = PDE(inode)->data;
1227
ec931035 1228 han = __seq_open_private(file, &cache_content_op, sizeof(*han));
1da177e4
LT
1229 if (han == NULL)
1230 return -ENOMEM;
1231
1232 han->cd = cd;
ec931035 1233 return 0;
1da177e4 1234}
1da177e4 1235
da7071d7 1236static const struct file_operations content_file_operations = {
1da177e4
LT
1237 .open = content_open,
1238 .read = seq_read,
1239 .llseek = seq_lseek,
14690fc6 1240 .release = seq_release_private,
1da177e4
LT
1241};
1242
1243static ssize_t read_flush(struct file *file, char __user *buf,
1244 size_t count, loff_t *ppos)
1245{
303b46bb 1246 struct cache_detail *cd = PDE(file->f_path.dentry->d_inode)->data;
1da177e4
LT
1247 char tbuf[20];
1248 unsigned long p = *ppos;
01b2969a 1249 size_t len;
1da177e4
LT
1250
1251 sprintf(tbuf, "%lu\n", cd->flush_time);
1252 len = strlen(tbuf);
1253 if (p >= len)
1254 return 0;
1255 len -= p;
01b2969a
CL
1256 if (len > count)
1257 len = count;
1da177e4 1258 if (copy_to_user(buf, (void*)(tbuf+p), len))
01b2969a
CL
1259 return -EFAULT;
1260 *ppos += len;
1da177e4
LT
1261 return len;
1262}
1263
1264static ssize_t write_flush(struct file * file, const char __user * buf,
1265 size_t count, loff_t *ppos)
1266{
303b46bb 1267 struct cache_detail *cd = PDE(file->f_path.dentry->d_inode)->data;
1da177e4
LT
1268 char tbuf[20];
1269 char *ep;
1270 long flushtime;
1271 if (*ppos || count > sizeof(tbuf)-1)
1272 return -EINVAL;
1273 if (copy_from_user(tbuf, buf, count))
1274 return -EFAULT;
1275 tbuf[count] = 0;
1276 flushtime = simple_strtoul(tbuf, &ep, 0);
1277 if (*ep && *ep != '\n')
1278 return -EINVAL;
1279
1280 cd->flush_time = flushtime;
1281 cd->nextcheck = get_seconds();
1282 cache_flush();
1283
1284 *ppos += count;
1285 return count;
1286}
1287
da7071d7 1288static const struct file_operations cache_flush_operations = {
1da177e4
LT
1289 .open = nonseekable_open,
1290 .read = read_flush,
1291 .write = write_flush,
1292};