11da177e4SLinus Torvalds /* 21da177e4SLinus Torvalds * net/sunrpc/cache.c 31da177e4SLinus Torvalds * 41da177e4SLinus Torvalds * Generic code for various authentication-related caches 51da177e4SLinus Torvalds * used by sunrpc clients and servers. 61da177e4SLinus Torvalds * 71da177e4SLinus Torvalds * Copyright (C) 2002 Neil Brown <neilb@cse.unsw.edu.au> 81da177e4SLinus Torvalds * 91da177e4SLinus Torvalds * Released under terms in GPL version 2. See COPYING. 101da177e4SLinus Torvalds * 111da177e4SLinus Torvalds */ 121da177e4SLinus Torvalds 131da177e4SLinus Torvalds #include <linux/types.h> 141da177e4SLinus Torvalds #include <linux/fs.h> 151da177e4SLinus Torvalds #include <linux/file.h> 161da177e4SLinus Torvalds #include <linux/slab.h> 171da177e4SLinus Torvalds #include <linux/signal.h> 181da177e4SLinus Torvalds #include <linux/sched.h> 191da177e4SLinus Torvalds #include <linux/kmod.h> 201da177e4SLinus Torvalds #include <linux/list.h> 211da177e4SLinus Torvalds #include <linux/module.h> 221da177e4SLinus Torvalds #include <linux/ctype.h> 231da177e4SLinus Torvalds #include <asm/uaccess.h> 241da177e4SLinus Torvalds #include <linux/poll.h> 251da177e4SLinus Torvalds #include <linux/seq_file.h> 261da177e4SLinus Torvalds #include <linux/proc_fs.h> 271da177e4SLinus Torvalds #include <linux/net.h> 281da177e4SLinus Torvalds #include <linux/workqueue.h> 294a3e2f71SArjan van de Ven #include <linux/mutex.h> 30da77005fSTrond Myklebust #include <linux/pagemap.h> 311da177e4SLinus Torvalds #include <asm/ioctls.h> 321da177e4SLinus Torvalds #include <linux/sunrpc/types.h> 331da177e4SLinus Torvalds #include <linux/sunrpc/cache.h> 341da177e4SLinus Torvalds #include <linux/sunrpc/stats.h> 358854e82dSTrond Myklebust #include <linux/sunrpc/rpc_pipe_fs.h> 361da177e4SLinus Torvalds 371da177e4SLinus Torvalds #define RPCDBG_FACILITY RPCDBG_CACHE 381da177e4SLinus Torvalds 39e0bb89efSJ.Bruce Fields static int cache_defer_req(struct cache_req *req, struct cache_head *item); 401da177e4SLinus Torvalds static void cache_revisit_request(struct cache_head *item); 411da177e4SLinus Torvalds 4274cae61aSAdrian Bunk static void cache_init(struct cache_head *h) 431da177e4SLinus Torvalds { 441da177e4SLinus Torvalds time_t now = get_seconds(); 451da177e4SLinus Torvalds h->next = NULL; 461da177e4SLinus Torvalds h->flags = 0; 47baab935fSNeilBrown kref_init(&h->ref); 481da177e4SLinus Torvalds h->expiry_time = now + CACHE_NEW_EXPIRY; 491da177e4SLinus Torvalds h->last_refresh = now; 501da177e4SLinus Torvalds } 511da177e4SLinus Torvalds 5215a5f6bdSNeilBrown struct cache_head *sunrpc_cache_lookup(struct cache_detail *detail, 5315a5f6bdSNeilBrown struct cache_head *key, int hash) 5415a5f6bdSNeilBrown { 5515a5f6bdSNeilBrown struct cache_head **head, **hp; 5615a5f6bdSNeilBrown struct cache_head *new = NULL; 5715a5f6bdSNeilBrown 5815a5f6bdSNeilBrown head = &detail->hash_table[hash]; 5915a5f6bdSNeilBrown 6015a5f6bdSNeilBrown read_lock(&detail->hash_lock); 6115a5f6bdSNeilBrown 6215a5f6bdSNeilBrown for (hp=head; *hp != NULL ; hp = &(*hp)->next) { 6315a5f6bdSNeilBrown struct cache_head *tmp = *hp; 6415a5f6bdSNeilBrown if (detail->match(tmp, key)) { 6515a5f6bdSNeilBrown cache_get(tmp); 6615a5f6bdSNeilBrown read_unlock(&detail->hash_lock); 6715a5f6bdSNeilBrown return tmp; 6815a5f6bdSNeilBrown } 6915a5f6bdSNeilBrown } 7015a5f6bdSNeilBrown read_unlock(&detail->hash_lock); 7115a5f6bdSNeilBrown /* Didn't find anything, insert an empty entry */ 7215a5f6bdSNeilBrown 7315a5f6bdSNeilBrown new = detail->alloc(); 7415a5f6bdSNeilBrown if (!new) 7515a5f6bdSNeilBrown return NULL; 762f34931fSNeil Brown /* must fully initialise 'new', else 772f34931fSNeil Brown * we might get lose if we need to 782f34931fSNeil Brown * cache_put it soon. 792f34931fSNeil Brown */ 8015a5f6bdSNeilBrown cache_init(new); 812f34931fSNeil Brown detail->init(new, key); 8215a5f6bdSNeilBrown 8315a5f6bdSNeilBrown write_lock(&detail->hash_lock); 8415a5f6bdSNeilBrown 8515a5f6bdSNeilBrown /* check if entry appeared while we slept */ 8615a5f6bdSNeilBrown for (hp=head; *hp != NULL ; hp = &(*hp)->next) { 8715a5f6bdSNeilBrown struct cache_head *tmp = *hp; 8815a5f6bdSNeilBrown if (detail->match(tmp, key)) { 8915a5f6bdSNeilBrown cache_get(tmp); 9015a5f6bdSNeilBrown write_unlock(&detail->hash_lock); 91baab935fSNeilBrown cache_put(new, detail); 9215a5f6bdSNeilBrown return tmp; 9315a5f6bdSNeilBrown } 9415a5f6bdSNeilBrown } 9515a5f6bdSNeilBrown new->next = *head; 9615a5f6bdSNeilBrown *head = new; 9715a5f6bdSNeilBrown detail->entries++; 9815a5f6bdSNeilBrown cache_get(new); 9915a5f6bdSNeilBrown write_unlock(&detail->hash_lock); 10015a5f6bdSNeilBrown 10115a5f6bdSNeilBrown return new; 10215a5f6bdSNeilBrown } 10324c3767eSTrond Myklebust EXPORT_SYMBOL_GPL(sunrpc_cache_lookup); 10415a5f6bdSNeilBrown 105ebd0cb1aSNeilBrown 106f866a819SNeilBrown static void cache_dequeue(struct cache_detail *detail, struct cache_head *ch); 107ebd0cb1aSNeilBrown 108*908329f2SNeilBrown static void cache_fresh_locked(struct cache_head *head, time_t expiry) 109ebd0cb1aSNeilBrown { 110ebd0cb1aSNeilBrown head->expiry_time = expiry; 111ebd0cb1aSNeilBrown head->last_refresh = get_seconds(); 112*908329f2SNeilBrown set_bit(CACHE_VALID, &head->flags); 113ebd0cb1aSNeilBrown } 114ebd0cb1aSNeilBrown 115ebd0cb1aSNeilBrown static void cache_fresh_unlocked(struct cache_head *head, 116*908329f2SNeilBrown struct cache_detail *detail) 117ebd0cb1aSNeilBrown { 118ebd0cb1aSNeilBrown if (test_and_clear_bit(CACHE_PENDING, &head->flags)) { 119ebd0cb1aSNeilBrown cache_revisit_request(head); 120f866a819SNeilBrown cache_dequeue(detail, head); 121ebd0cb1aSNeilBrown } 122ebd0cb1aSNeilBrown } 123ebd0cb1aSNeilBrown 12415a5f6bdSNeilBrown struct cache_head *sunrpc_cache_update(struct cache_detail *detail, 12515a5f6bdSNeilBrown struct cache_head *new, struct cache_head *old, int hash) 12615a5f6bdSNeilBrown { 12715a5f6bdSNeilBrown /* The 'old' entry is to be replaced by 'new'. 12815a5f6bdSNeilBrown * If 'old' is not VALID, we update it directly, 12915a5f6bdSNeilBrown * otherwise we need to replace it 13015a5f6bdSNeilBrown */ 13115a5f6bdSNeilBrown struct cache_head **head; 13215a5f6bdSNeilBrown struct cache_head *tmp; 13315a5f6bdSNeilBrown 13415a5f6bdSNeilBrown if (!test_bit(CACHE_VALID, &old->flags)) { 13515a5f6bdSNeilBrown write_lock(&detail->hash_lock); 13615a5f6bdSNeilBrown if (!test_bit(CACHE_VALID, &old->flags)) { 13715a5f6bdSNeilBrown if (test_bit(CACHE_NEGATIVE, &new->flags)) 13815a5f6bdSNeilBrown set_bit(CACHE_NEGATIVE, &old->flags); 13915a5f6bdSNeilBrown else 14015a5f6bdSNeilBrown detail->update(old, new); 141*908329f2SNeilBrown cache_fresh_locked(old, new->expiry_time); 14215a5f6bdSNeilBrown write_unlock(&detail->hash_lock); 143*908329f2SNeilBrown cache_fresh_unlocked(old, detail); 14415a5f6bdSNeilBrown return old; 14515a5f6bdSNeilBrown } 14615a5f6bdSNeilBrown write_unlock(&detail->hash_lock); 14715a5f6bdSNeilBrown } 14815a5f6bdSNeilBrown /* We need to insert a new entry */ 14915a5f6bdSNeilBrown tmp = detail->alloc(); 15015a5f6bdSNeilBrown if (!tmp) { 151baab935fSNeilBrown cache_put(old, detail); 15215a5f6bdSNeilBrown return NULL; 15315a5f6bdSNeilBrown } 15415a5f6bdSNeilBrown cache_init(tmp); 15515a5f6bdSNeilBrown detail->init(tmp, old); 15615a5f6bdSNeilBrown head = &detail->hash_table[hash]; 15715a5f6bdSNeilBrown 15815a5f6bdSNeilBrown write_lock(&detail->hash_lock); 15915a5f6bdSNeilBrown if (test_bit(CACHE_NEGATIVE, &new->flags)) 16015a5f6bdSNeilBrown set_bit(CACHE_NEGATIVE, &tmp->flags); 16115a5f6bdSNeilBrown else 16215a5f6bdSNeilBrown detail->update(tmp, new); 16315a5f6bdSNeilBrown tmp->next = *head; 16415a5f6bdSNeilBrown *head = tmp; 165f2d39586SNeilBrown detail->entries++; 16615a5f6bdSNeilBrown cache_get(tmp); 167*908329f2SNeilBrown cache_fresh_locked(tmp, new->expiry_time); 168ebd0cb1aSNeilBrown cache_fresh_locked(old, 0); 16915a5f6bdSNeilBrown write_unlock(&detail->hash_lock); 170*908329f2SNeilBrown cache_fresh_unlocked(tmp, detail); 171*908329f2SNeilBrown cache_fresh_unlocked(old, detail); 172baab935fSNeilBrown cache_put(old, detail); 17315a5f6bdSNeilBrown return tmp; 17415a5f6bdSNeilBrown } 17524c3767eSTrond Myklebust EXPORT_SYMBOL_GPL(sunrpc_cache_update); 1761da177e4SLinus Torvalds 177bc74b4f5STrond Myklebust static int cache_make_upcall(struct cache_detail *cd, struct cache_head *h) 178bc74b4f5STrond Myklebust { 179bc74b4f5STrond Myklebust if (!cd->cache_upcall) 180bc74b4f5STrond Myklebust return -EINVAL; 181bc74b4f5STrond Myklebust return cd->cache_upcall(cd, h); 182bc74b4f5STrond Myklebust } 183989a19b9SNeilBrown 184989a19b9SNeilBrown static inline int cache_is_valid(struct cache_detail *detail, struct cache_head *h) 185989a19b9SNeilBrown { 186989a19b9SNeilBrown if (!test_bit(CACHE_VALID, &h->flags) || 187989a19b9SNeilBrown h->expiry_time < get_seconds()) 188989a19b9SNeilBrown return -EAGAIN; 189989a19b9SNeilBrown else if (detail->flush_time > h->last_refresh) 190989a19b9SNeilBrown return -EAGAIN; 191989a19b9SNeilBrown else { 192989a19b9SNeilBrown /* entry is valid */ 193989a19b9SNeilBrown if (test_bit(CACHE_NEGATIVE, &h->flags)) 194989a19b9SNeilBrown return -ENOENT; 195989a19b9SNeilBrown else 196989a19b9SNeilBrown return 0; 197989a19b9SNeilBrown } 198989a19b9SNeilBrown } 199e9dc1221SJ. Bruce Fields 2001da177e4SLinus Torvalds /* 2011da177e4SLinus Torvalds * This is the generic cache management routine for all 2021da177e4SLinus Torvalds * the authentication caches. 2031da177e4SLinus Torvalds * It checks the currency of a cache item and will (later) 2041da177e4SLinus Torvalds * initiate an upcall to fill it if needed. 2051da177e4SLinus Torvalds * 2061da177e4SLinus Torvalds * 2071da177e4SLinus Torvalds * Returns 0 if the cache_head can be used, or cache_puts it and returns 208989a19b9SNeilBrown * -EAGAIN if upcall is pending and request has been queued 209989a19b9SNeilBrown * -ETIMEDOUT if upcall failed or request could not be queue or 210989a19b9SNeilBrown * upcall completed but item is still invalid (implying that 211989a19b9SNeilBrown * the cache item has been replaced with a newer one). 2121da177e4SLinus Torvalds * -ENOENT if cache entry was negative 2131da177e4SLinus Torvalds */ 2141da177e4SLinus Torvalds int cache_check(struct cache_detail *detail, 2151da177e4SLinus Torvalds struct cache_head *h, struct cache_req *rqstp) 2161da177e4SLinus Torvalds { 2171da177e4SLinus Torvalds int rv; 2181da177e4SLinus Torvalds long refresh_age, age; 2191da177e4SLinus Torvalds 2201da177e4SLinus Torvalds /* First decide return status as best we can */ 221989a19b9SNeilBrown rv = cache_is_valid(detail, h); 2221da177e4SLinus Torvalds 2231da177e4SLinus Torvalds /* now see if we want to start an upcall */ 2241da177e4SLinus Torvalds refresh_age = (h->expiry_time - h->last_refresh); 2251da177e4SLinus Torvalds age = get_seconds() - h->last_refresh; 2261da177e4SLinus Torvalds 2271da177e4SLinus Torvalds if (rqstp == NULL) { 2281da177e4SLinus Torvalds if (rv == -EAGAIN) 2291da177e4SLinus Torvalds rv = -ENOENT; 2301da177e4SLinus Torvalds } else if (rv == -EAGAIN || age > refresh_age/2) { 23146121cf7SChuck Lever dprintk("RPC: Want update, refage=%ld, age=%ld\n", 23246121cf7SChuck Lever refresh_age, age); 2331da177e4SLinus Torvalds if (!test_and_set_bit(CACHE_PENDING, &h->flags)) { 2341da177e4SLinus Torvalds switch (cache_make_upcall(detail, h)) { 2351da177e4SLinus Torvalds case -EINVAL: 2361da177e4SLinus Torvalds clear_bit(CACHE_PENDING, &h->flags); 2375c4d2639SNeilBrown cache_revisit_request(h); 2381da177e4SLinus Torvalds if (rv == -EAGAIN) { 2391da177e4SLinus Torvalds set_bit(CACHE_NEGATIVE, &h->flags); 240*908329f2SNeilBrown cache_fresh_locked(h, get_seconds()+CACHE_NEW_EXPIRY); 241*908329f2SNeilBrown cache_fresh_unlocked(h, detail); 2421da177e4SLinus Torvalds rv = -ENOENT; 2431da177e4SLinus Torvalds } 2441da177e4SLinus Torvalds break; 2451da177e4SLinus Torvalds 2461da177e4SLinus Torvalds case -EAGAIN: 2471da177e4SLinus Torvalds clear_bit(CACHE_PENDING, &h->flags); 2481da177e4SLinus Torvalds cache_revisit_request(h); 2491da177e4SLinus Torvalds break; 2501da177e4SLinus Torvalds } 2511da177e4SLinus Torvalds } 2521da177e4SLinus Torvalds } 2531da177e4SLinus Torvalds 254989a19b9SNeilBrown if (rv == -EAGAIN) { 2559e4c6379SNeilBrown if (cache_defer_req(rqstp, h) < 0) { 256989a19b9SNeilBrown /* Request is not deferred */ 257989a19b9SNeilBrown rv = cache_is_valid(detail, h); 2581da177e4SLinus Torvalds if (rv == -EAGAIN) 259e0bb89efSJ.Bruce Fields rv = -ETIMEDOUT; 260989a19b9SNeilBrown } 261989a19b9SNeilBrown } 2624013edeaSNeilBrown if (rv) 263baab935fSNeilBrown cache_put(h, detail); 2641da177e4SLinus Torvalds return rv; 2651da177e4SLinus Torvalds } 26624c3767eSTrond Myklebust EXPORT_SYMBOL_GPL(cache_check); 2671da177e4SLinus Torvalds 2681da177e4SLinus Torvalds /* 2691da177e4SLinus Torvalds * caches need to be periodically cleaned. 2701da177e4SLinus Torvalds * For this we maintain a list of cache_detail and 2711da177e4SLinus Torvalds * a current pointer into that list and into the table 2721da177e4SLinus Torvalds * for that entry. 2731da177e4SLinus Torvalds * 2741da177e4SLinus Torvalds * Each time clean_cache is called it finds the next non-empty entry 2751da177e4SLinus Torvalds * in the current table and walks the list in that entry 2761da177e4SLinus Torvalds * looking for entries that can be removed. 2771da177e4SLinus Torvalds * 2781da177e4SLinus Torvalds * An entry gets removed if: 2791da177e4SLinus Torvalds * - The expiry is before current time 2801da177e4SLinus Torvalds * - The last_refresh time is before the flush_time for that cache 2811da177e4SLinus Torvalds * 2821da177e4SLinus Torvalds * later we might drop old entries with non-NEVER expiry if that table 2831da177e4SLinus Torvalds * is getting 'full' for some definition of 'full' 2841da177e4SLinus Torvalds * 2851da177e4SLinus Torvalds * The question of "how often to scan a table" is an interesting one 2861da177e4SLinus Torvalds * and is answered in part by the use of the "nextcheck" field in the 2871da177e4SLinus Torvalds * cache_detail. 2881da177e4SLinus Torvalds * When a scan of a table begins, the nextcheck field is set to a time 2891da177e4SLinus Torvalds * that is well into the future. 2901da177e4SLinus Torvalds * While scanning, if an expiry time is found that is earlier than the 2911da177e4SLinus Torvalds * current nextcheck time, nextcheck is set to that expiry time. 2921da177e4SLinus Torvalds * If the flush_time is ever set to a time earlier than the nextcheck 2931da177e4SLinus Torvalds * time, the nextcheck time is then set to that flush_time. 2941da177e4SLinus Torvalds * 2951da177e4SLinus Torvalds * A table is then only scanned if the current time is at least 2961da177e4SLinus Torvalds * the nextcheck time. 2971da177e4SLinus Torvalds * 2981da177e4SLinus Torvalds */ 2991da177e4SLinus Torvalds 3001da177e4SLinus Torvalds static LIST_HEAD(cache_list); 3011da177e4SLinus Torvalds static DEFINE_SPINLOCK(cache_list_lock); 3021da177e4SLinus Torvalds static struct cache_detail *current_detail; 3031da177e4SLinus Torvalds static int current_index; 3041da177e4SLinus Torvalds 30565f27f38SDavid Howells static void do_cache_clean(struct work_struct *work); 30665f27f38SDavid Howells static DECLARE_DELAYED_WORK(cache_cleaner, do_cache_clean); 3071da177e4SLinus Torvalds 3085b7a1b9fSTrond Myklebust static void sunrpc_init_cache_detail(struct cache_detail *cd) 3091da177e4SLinus Torvalds { 3101da177e4SLinus Torvalds rwlock_init(&cd->hash_lock); 3111da177e4SLinus Torvalds INIT_LIST_HEAD(&cd->queue); 3121da177e4SLinus Torvalds spin_lock(&cache_list_lock); 3131da177e4SLinus Torvalds cd->nextcheck = 0; 3141da177e4SLinus Torvalds cd->entries = 0; 3151da177e4SLinus Torvalds atomic_set(&cd->readers, 0); 3161da177e4SLinus Torvalds cd->last_close = 0; 3171da177e4SLinus Torvalds cd->last_warn = -1; 3181da177e4SLinus Torvalds list_add(&cd->others, &cache_list); 3191da177e4SLinus Torvalds spin_unlock(&cache_list_lock); 3201da177e4SLinus Torvalds 3211da177e4SLinus Torvalds /* start the cleaning process */ 32252bad64dSDavid Howells schedule_delayed_work(&cache_cleaner, 0); 3231da177e4SLinus Torvalds } 3241da177e4SLinus Torvalds 3255b7a1b9fSTrond Myklebust static void sunrpc_destroy_cache_detail(struct cache_detail *cd) 3261da177e4SLinus Torvalds { 3271da177e4SLinus Torvalds cache_purge(cd); 3281da177e4SLinus Torvalds spin_lock(&cache_list_lock); 3291da177e4SLinus Torvalds write_lock(&cd->hash_lock); 3301da177e4SLinus Torvalds if (cd->entries || atomic_read(&cd->inuse)) { 3311da177e4SLinus Torvalds write_unlock(&cd->hash_lock); 3321da177e4SLinus Torvalds spin_unlock(&cache_list_lock); 333df95a9d4SJ. Bruce Fields goto out; 3341da177e4SLinus Torvalds } 3351da177e4SLinus Torvalds if (current_detail == cd) 3361da177e4SLinus Torvalds current_detail = NULL; 3371da177e4SLinus Torvalds list_del_init(&cd->others); 3381da177e4SLinus Torvalds write_unlock(&cd->hash_lock); 3391da177e4SLinus Torvalds spin_unlock(&cache_list_lock); 3401da177e4SLinus Torvalds if (list_empty(&cache_list)) { 3411da177e4SLinus Torvalds /* module must be being unloaded so its safe to kill the worker */ 3424011cd97STrond Myklebust cancel_delayed_work_sync(&cache_cleaner); 3431da177e4SLinus Torvalds } 344df95a9d4SJ. Bruce Fields return; 345df95a9d4SJ. Bruce Fields out: 346df95a9d4SJ. Bruce Fields printk(KERN_ERR "nfsd: failed to unregister %s cache\n", cd->name); 3471da177e4SLinus Torvalds } 3481da177e4SLinus Torvalds 3491da177e4SLinus Torvalds /* clean cache tries to find something to clean 3501da177e4SLinus Torvalds * and cleans it. 3511da177e4SLinus Torvalds * It returns 1 if it cleaned something, 3521da177e4SLinus Torvalds * 0 if it didn't find anything this time 3531da177e4SLinus Torvalds * -1 if it fell off the end of the list. 3541da177e4SLinus Torvalds */ 3551da177e4SLinus Torvalds static int cache_clean(void) 3561da177e4SLinus Torvalds { 3571da177e4SLinus Torvalds int rv = 0; 3581da177e4SLinus Torvalds struct list_head *next; 3591da177e4SLinus Torvalds 3601da177e4SLinus Torvalds spin_lock(&cache_list_lock); 3611da177e4SLinus Torvalds 3621da177e4SLinus Torvalds /* find a suitable table if we don't already have one */ 3631da177e4SLinus Torvalds while (current_detail == NULL || 3641da177e4SLinus Torvalds current_index >= current_detail->hash_size) { 3651da177e4SLinus Torvalds if (current_detail) 3661da177e4SLinus Torvalds next = current_detail->others.next; 3671da177e4SLinus Torvalds else 3681da177e4SLinus Torvalds next = cache_list.next; 3691da177e4SLinus Torvalds if (next == &cache_list) { 3701da177e4SLinus Torvalds current_detail = NULL; 3711da177e4SLinus Torvalds spin_unlock(&cache_list_lock); 3721da177e4SLinus Torvalds return -1; 3731da177e4SLinus Torvalds } 3741da177e4SLinus Torvalds current_detail = list_entry(next, struct cache_detail, others); 3751da177e4SLinus Torvalds if (current_detail->nextcheck > get_seconds()) 3761da177e4SLinus Torvalds current_index = current_detail->hash_size; 3771da177e4SLinus Torvalds else { 3781da177e4SLinus Torvalds current_index = 0; 3791da177e4SLinus Torvalds current_detail->nextcheck = get_seconds()+30*60; 3801da177e4SLinus Torvalds } 3811da177e4SLinus Torvalds } 3821da177e4SLinus Torvalds 3831da177e4SLinus Torvalds /* find a non-empty bucket in the table */ 3841da177e4SLinus Torvalds while (current_detail && 3851da177e4SLinus Torvalds current_index < current_detail->hash_size && 3861da177e4SLinus Torvalds current_detail->hash_table[current_index] == NULL) 3871da177e4SLinus Torvalds current_index++; 3881da177e4SLinus Torvalds 3891da177e4SLinus Torvalds /* find a cleanable entry in the bucket and clean it, or set to next bucket */ 3901da177e4SLinus Torvalds 3911da177e4SLinus Torvalds if (current_detail && current_index < current_detail->hash_size) { 3921da177e4SLinus Torvalds struct cache_head *ch, **cp; 3931da177e4SLinus Torvalds struct cache_detail *d; 3941da177e4SLinus Torvalds 3951da177e4SLinus Torvalds write_lock(¤t_detail->hash_lock); 3961da177e4SLinus Torvalds 3971da177e4SLinus Torvalds /* Ok, now to clean this strand */ 3981da177e4SLinus Torvalds 3991da177e4SLinus Torvalds cp = & current_detail->hash_table[current_index]; 4001da177e4SLinus Torvalds ch = *cp; 4011da177e4SLinus Torvalds for (; ch; cp= & ch->next, ch= *cp) { 4021da177e4SLinus Torvalds if (current_detail->nextcheck > ch->expiry_time) 4031da177e4SLinus Torvalds current_detail->nextcheck = ch->expiry_time+1; 4041da177e4SLinus Torvalds if (ch->expiry_time >= get_seconds() 4051da177e4SLinus Torvalds && ch->last_refresh >= current_detail->flush_time 4061da177e4SLinus Torvalds ) 4071da177e4SLinus Torvalds continue; 4081da177e4SLinus Torvalds if (test_and_clear_bit(CACHE_PENDING, &ch->flags)) 409f866a819SNeilBrown cache_dequeue(current_detail, ch); 4101da177e4SLinus Torvalds 411baab935fSNeilBrown if (atomic_read(&ch->ref.refcount) == 1) 4121da177e4SLinus Torvalds break; 4131da177e4SLinus Torvalds } 4141da177e4SLinus Torvalds if (ch) { 4151da177e4SLinus Torvalds *cp = ch->next; 4161da177e4SLinus Torvalds ch->next = NULL; 4171da177e4SLinus Torvalds current_detail->entries--; 4181da177e4SLinus Torvalds rv = 1; 4191da177e4SLinus Torvalds } 4201da177e4SLinus Torvalds write_unlock(¤t_detail->hash_lock); 4211da177e4SLinus Torvalds d = current_detail; 4221da177e4SLinus Torvalds if (!ch) 4231da177e4SLinus Torvalds current_index ++; 4241da177e4SLinus Torvalds spin_unlock(&cache_list_lock); 4255c4d2639SNeilBrown if (ch) { 4265c4d2639SNeilBrown cache_revisit_request(ch); 427baab935fSNeilBrown cache_put(ch, d); 4285c4d2639SNeilBrown } 4291da177e4SLinus Torvalds } else 4301da177e4SLinus Torvalds spin_unlock(&cache_list_lock); 4311da177e4SLinus Torvalds 4321da177e4SLinus Torvalds return rv; 4331da177e4SLinus Torvalds } 4341da177e4SLinus Torvalds 4351da177e4SLinus Torvalds /* 4361da177e4SLinus Torvalds * We want to regularly clean the cache, so we need to schedule some work ... 4371da177e4SLinus Torvalds */ 43865f27f38SDavid Howells static void do_cache_clean(struct work_struct *work) 4391da177e4SLinus Torvalds { 4401da177e4SLinus Torvalds int delay = 5; 4411da177e4SLinus Torvalds if (cache_clean() == -1) 4426aad89c8SAnton Blanchard delay = round_jiffies_relative(30*HZ); 4431da177e4SLinus Torvalds 4441da177e4SLinus Torvalds if (list_empty(&cache_list)) 4451da177e4SLinus Torvalds delay = 0; 4461da177e4SLinus Torvalds 4471da177e4SLinus Torvalds if (delay) 4481da177e4SLinus Torvalds schedule_delayed_work(&cache_cleaner, delay); 4491da177e4SLinus Torvalds } 4501da177e4SLinus Torvalds 4511da177e4SLinus Torvalds 4521da177e4SLinus Torvalds /* 4531da177e4SLinus Torvalds * Clean all caches promptly. This just calls cache_clean 4541da177e4SLinus Torvalds * repeatedly until we are sure that every cache has had a chance to 4551da177e4SLinus Torvalds * be fully cleaned 4561da177e4SLinus Torvalds */ 4571da177e4SLinus Torvalds void cache_flush(void) 4581da177e4SLinus Torvalds { 4591da177e4SLinus Torvalds while (cache_clean() != -1) 4601da177e4SLinus Torvalds cond_resched(); 4611da177e4SLinus Torvalds while (cache_clean() != -1) 4621da177e4SLinus Torvalds cond_resched(); 4631da177e4SLinus Torvalds } 46424c3767eSTrond Myklebust EXPORT_SYMBOL_GPL(cache_flush); 4651da177e4SLinus Torvalds 4661da177e4SLinus Torvalds void cache_purge(struct cache_detail *detail) 4671da177e4SLinus Torvalds { 4681da177e4SLinus Torvalds detail->flush_time = LONG_MAX; 4691da177e4SLinus Torvalds detail->nextcheck = get_seconds(); 4701da177e4SLinus Torvalds cache_flush(); 4711da177e4SLinus Torvalds detail->flush_time = 1; 4721da177e4SLinus Torvalds } 47324c3767eSTrond Myklebust EXPORT_SYMBOL_GPL(cache_purge); 4741da177e4SLinus Torvalds 4751da177e4SLinus Torvalds 4761da177e4SLinus Torvalds /* 4771da177e4SLinus Torvalds * Deferral and Revisiting of Requests. 4781da177e4SLinus Torvalds * 4791da177e4SLinus Torvalds * If a cache lookup finds a pending entry, we 4801da177e4SLinus Torvalds * need to defer the request and revisit it later. 4811da177e4SLinus Torvalds * All deferred requests are stored in a hash table, 4821da177e4SLinus Torvalds * indexed by "struct cache_head *". 4831da177e4SLinus Torvalds * As it may be wasteful to store a whole request 4841da177e4SLinus Torvalds * structure, we allow the request to provide a 4851da177e4SLinus Torvalds * deferred form, which must contain a 4861da177e4SLinus Torvalds * 'struct cache_deferred_req' 4871da177e4SLinus Torvalds * This cache_deferred_req contains a method to allow 4881da177e4SLinus Torvalds * it to be revisited when cache info is available 4891da177e4SLinus Torvalds */ 4901da177e4SLinus Torvalds 4911da177e4SLinus Torvalds #define DFR_HASHSIZE (PAGE_SIZE/sizeof(struct list_head)) 4921da177e4SLinus Torvalds #define DFR_HASH(item) ((((long)item)>>4 ^ (((long)item)>>13)) % DFR_HASHSIZE) 4931da177e4SLinus Torvalds 4941da177e4SLinus Torvalds #define DFR_MAX 300 /* ??? */ 4951da177e4SLinus Torvalds 4961da177e4SLinus Torvalds static DEFINE_SPINLOCK(cache_defer_lock); 4971da177e4SLinus Torvalds static LIST_HEAD(cache_defer_list); 4981da177e4SLinus Torvalds static struct list_head cache_defer_hash[DFR_HASHSIZE]; 4991da177e4SLinus Torvalds static int cache_defer_cnt; 5001da177e4SLinus Torvalds 501e0bb89efSJ.Bruce Fields static int cache_defer_req(struct cache_req *req, struct cache_head *item) 5021da177e4SLinus Torvalds { 5031da177e4SLinus Torvalds struct cache_deferred_req *dreq; 5041da177e4SLinus Torvalds int hash = DFR_HASH(item); 5051da177e4SLinus Torvalds 50601f3bd1fSJ.Bruce Fields if (cache_defer_cnt >= DFR_MAX) { 50701f3bd1fSJ.Bruce Fields /* too much in the cache, randomly drop this one, 50801f3bd1fSJ.Bruce Fields * or continue and drop the oldest below 50901f3bd1fSJ.Bruce Fields */ 51001f3bd1fSJ.Bruce Fields if (net_random()&1) 5119e4c6379SNeilBrown return -ENOMEM; 51201f3bd1fSJ.Bruce Fields } 5131da177e4SLinus Torvalds dreq = req->defer(req); 5141da177e4SLinus Torvalds if (dreq == NULL) 5159e4c6379SNeilBrown return -ENOMEM; 5161da177e4SLinus Torvalds 5171da177e4SLinus Torvalds dreq->item = item; 5181da177e4SLinus Torvalds 5191da177e4SLinus Torvalds spin_lock(&cache_defer_lock); 5201da177e4SLinus Torvalds 5211da177e4SLinus Torvalds list_add(&dreq->recent, &cache_defer_list); 5221da177e4SLinus Torvalds 5231da177e4SLinus Torvalds if (cache_defer_hash[hash].next == NULL) 5241da177e4SLinus Torvalds INIT_LIST_HEAD(&cache_defer_hash[hash]); 5251da177e4SLinus Torvalds list_add(&dreq->hash, &cache_defer_hash[hash]); 5261da177e4SLinus Torvalds 5271da177e4SLinus Torvalds /* it is in, now maybe clean up */ 5281da177e4SLinus Torvalds dreq = NULL; 5291da177e4SLinus Torvalds if (++cache_defer_cnt > DFR_MAX) { 5301da177e4SLinus Torvalds dreq = list_entry(cache_defer_list.prev, 53101f3bd1fSJ.Bruce Fields struct cache_deferred_req, recent); 5321da177e4SLinus Torvalds list_del(&dreq->recent); 5331da177e4SLinus Torvalds list_del(&dreq->hash); 5341da177e4SLinus Torvalds cache_defer_cnt--; 5351da177e4SLinus Torvalds } 5361da177e4SLinus Torvalds spin_unlock(&cache_defer_lock); 5371da177e4SLinus Torvalds 5381da177e4SLinus Torvalds if (dreq) { 5391da177e4SLinus Torvalds /* there was one too many */ 5401da177e4SLinus Torvalds dreq->revisit(dreq, 1); 5411da177e4SLinus Torvalds } 5424013edeaSNeilBrown if (!test_bit(CACHE_PENDING, &item->flags)) { 5431da177e4SLinus Torvalds /* must have just been validated... */ 5441da177e4SLinus Torvalds cache_revisit_request(item); 5459e4c6379SNeilBrown return -EAGAIN; 5461da177e4SLinus Torvalds } 5479e4c6379SNeilBrown return 0; 548989a19b9SNeilBrown } 5491da177e4SLinus Torvalds 5501da177e4SLinus Torvalds static void cache_revisit_request(struct cache_head *item) 5511da177e4SLinus Torvalds { 5521da177e4SLinus Torvalds struct cache_deferred_req *dreq; 5531da177e4SLinus Torvalds struct list_head pending; 5541da177e4SLinus Torvalds 5551da177e4SLinus Torvalds struct list_head *lp; 5561da177e4SLinus Torvalds int hash = DFR_HASH(item); 5571da177e4SLinus Torvalds 5581da177e4SLinus Torvalds INIT_LIST_HEAD(&pending); 5591da177e4SLinus Torvalds spin_lock(&cache_defer_lock); 5601da177e4SLinus Torvalds 5611da177e4SLinus Torvalds lp = cache_defer_hash[hash].next; 5621da177e4SLinus Torvalds if (lp) { 5631da177e4SLinus Torvalds while (lp != &cache_defer_hash[hash]) { 5641da177e4SLinus Torvalds dreq = list_entry(lp, struct cache_deferred_req, hash); 5651da177e4SLinus Torvalds lp = lp->next; 5661da177e4SLinus Torvalds if (dreq->item == item) { 5671da177e4SLinus Torvalds list_del(&dreq->hash); 5681da177e4SLinus Torvalds list_move(&dreq->recent, &pending); 5691da177e4SLinus Torvalds cache_defer_cnt--; 5701da177e4SLinus Torvalds } 5711da177e4SLinus Torvalds } 5721da177e4SLinus Torvalds } 5731da177e4SLinus Torvalds spin_unlock(&cache_defer_lock); 5741da177e4SLinus Torvalds 5751da177e4SLinus Torvalds while (!list_empty(&pending)) { 5761da177e4SLinus Torvalds dreq = list_entry(pending.next, struct cache_deferred_req, recent); 5771da177e4SLinus Torvalds list_del_init(&dreq->recent); 5781da177e4SLinus Torvalds dreq->revisit(dreq, 0); 5791da177e4SLinus Torvalds } 5801da177e4SLinus Torvalds } 5811da177e4SLinus Torvalds 5821da177e4SLinus Torvalds void cache_clean_deferred(void *owner) 5831da177e4SLinus Torvalds { 5841da177e4SLinus Torvalds struct cache_deferred_req *dreq, *tmp; 5851da177e4SLinus Torvalds struct list_head pending; 5861da177e4SLinus Torvalds 5871da177e4SLinus Torvalds 5881da177e4SLinus Torvalds INIT_LIST_HEAD(&pending); 5891da177e4SLinus Torvalds spin_lock(&cache_defer_lock); 5901da177e4SLinus Torvalds 5911da177e4SLinus Torvalds list_for_each_entry_safe(dreq, tmp, &cache_defer_list, recent) { 5921da177e4SLinus Torvalds if (dreq->owner == owner) { 5931da177e4SLinus Torvalds list_del(&dreq->hash); 5941da177e4SLinus Torvalds list_move(&dreq->recent, &pending); 5951da177e4SLinus Torvalds cache_defer_cnt--; 5961da177e4SLinus Torvalds } 5971da177e4SLinus Torvalds } 5981da177e4SLinus Torvalds spin_unlock(&cache_defer_lock); 5991da177e4SLinus Torvalds 6001da177e4SLinus Torvalds while (!list_empty(&pending)) { 6011da177e4SLinus Torvalds dreq = list_entry(pending.next, struct cache_deferred_req, recent); 6021da177e4SLinus Torvalds list_del_init(&dreq->recent); 6031da177e4SLinus Torvalds dreq->revisit(dreq, 1); 6041da177e4SLinus Torvalds } 6051da177e4SLinus Torvalds } 6061da177e4SLinus Torvalds 6071da177e4SLinus Torvalds /* 6081da177e4SLinus Torvalds * communicate with user-space 6091da177e4SLinus Torvalds * 610a490c681SJ. Bruce Fields * We have a magic /proc file - /proc/sunrpc/<cachename>/channel. 611a490c681SJ. Bruce Fields * On read, you get a full request, or block. 612a490c681SJ. Bruce Fields * On write, an update request is processed. 613a490c681SJ. Bruce Fields * Poll works if anything to read, and always allows write. 6141da177e4SLinus Torvalds * 6151da177e4SLinus Torvalds * Implemented by linked list of requests. Each open file has 616a490c681SJ. Bruce Fields * a ->private that also exists in this list. New requests are added 6171da177e4SLinus Torvalds * to the end and may wakeup and preceding readers. 6181da177e4SLinus Torvalds * New readers are added to the head. If, on read, an item is found with 6191da177e4SLinus Torvalds * CACHE_UPCALLING clear, we free it from the list. 6201da177e4SLinus Torvalds * 6211da177e4SLinus Torvalds */ 6221da177e4SLinus Torvalds 6231da177e4SLinus Torvalds static DEFINE_SPINLOCK(queue_lock); 6244a3e2f71SArjan van de Ven static DEFINE_MUTEX(queue_io_mutex); 6251da177e4SLinus Torvalds 6261da177e4SLinus Torvalds struct cache_queue { 6271da177e4SLinus Torvalds struct list_head list; 6281da177e4SLinus Torvalds int reader; /* if 0, then request */ 6291da177e4SLinus Torvalds }; 6301da177e4SLinus Torvalds struct cache_request { 6311da177e4SLinus Torvalds struct cache_queue q; 6321da177e4SLinus Torvalds struct cache_head *item; 6331da177e4SLinus Torvalds char * buf; 6341da177e4SLinus Torvalds int len; 6351da177e4SLinus Torvalds int readers; 6361da177e4SLinus Torvalds }; 6371da177e4SLinus Torvalds struct cache_reader { 6381da177e4SLinus Torvalds struct cache_queue q; 6391da177e4SLinus Torvalds int offset; /* if non-0, we have a refcnt on next request */ 6401da177e4SLinus Torvalds }; 6411da177e4SLinus Torvalds 642173912a6STrond Myklebust static ssize_t cache_read(struct file *filp, char __user *buf, size_t count, 643173912a6STrond Myklebust loff_t *ppos, struct cache_detail *cd) 6441da177e4SLinus Torvalds { 6451da177e4SLinus Torvalds struct cache_reader *rp = filp->private_data; 6461da177e4SLinus Torvalds struct cache_request *rq; 647da77005fSTrond Myklebust struct inode *inode = filp->f_path.dentry->d_inode; 6481da177e4SLinus Torvalds int err; 6491da177e4SLinus Torvalds 6501da177e4SLinus Torvalds if (count == 0) 6511da177e4SLinus Torvalds return 0; 6521da177e4SLinus Torvalds 653da77005fSTrond Myklebust mutex_lock(&inode->i_mutex); /* protect against multiple concurrent 6541da177e4SLinus Torvalds * readers on this file */ 6551da177e4SLinus Torvalds again: 6561da177e4SLinus Torvalds spin_lock(&queue_lock); 6571da177e4SLinus Torvalds /* need to find next request */ 6581da177e4SLinus Torvalds while (rp->q.list.next != &cd->queue && 6591da177e4SLinus Torvalds list_entry(rp->q.list.next, struct cache_queue, list) 6601da177e4SLinus Torvalds ->reader) { 6611da177e4SLinus Torvalds struct list_head *next = rp->q.list.next; 6621da177e4SLinus Torvalds list_move(&rp->q.list, next); 6631da177e4SLinus Torvalds } 6641da177e4SLinus Torvalds if (rp->q.list.next == &cd->queue) { 6651da177e4SLinus Torvalds spin_unlock(&queue_lock); 666da77005fSTrond Myklebust mutex_unlock(&inode->i_mutex); 66709a62660SKris Katterjohn BUG_ON(rp->offset); 6681da177e4SLinus Torvalds return 0; 6691da177e4SLinus Torvalds } 6701da177e4SLinus Torvalds rq = container_of(rp->q.list.next, struct cache_request, q.list); 67109a62660SKris Katterjohn BUG_ON(rq->q.reader); 6721da177e4SLinus Torvalds if (rp->offset == 0) 6731da177e4SLinus Torvalds rq->readers++; 6741da177e4SLinus Torvalds spin_unlock(&queue_lock); 6751da177e4SLinus Torvalds 6761da177e4SLinus Torvalds if (rp->offset == 0 && !test_bit(CACHE_PENDING, &rq->item->flags)) { 6771da177e4SLinus Torvalds err = -EAGAIN; 6781da177e4SLinus Torvalds spin_lock(&queue_lock); 6791da177e4SLinus Torvalds list_move(&rp->q.list, &rq->q.list); 6801da177e4SLinus Torvalds spin_unlock(&queue_lock); 6811da177e4SLinus Torvalds } else { 6821da177e4SLinus Torvalds if (rp->offset + count > rq->len) 6831da177e4SLinus Torvalds count = rq->len - rp->offset; 6841da177e4SLinus Torvalds err = -EFAULT; 6851da177e4SLinus Torvalds if (copy_to_user(buf, rq->buf + rp->offset, count)) 6861da177e4SLinus Torvalds goto out; 6871da177e4SLinus Torvalds rp->offset += count; 6881da177e4SLinus Torvalds if (rp->offset >= rq->len) { 6891da177e4SLinus Torvalds rp->offset = 0; 6901da177e4SLinus Torvalds spin_lock(&queue_lock); 6911da177e4SLinus Torvalds list_move(&rp->q.list, &rq->q.list); 6921da177e4SLinus Torvalds spin_unlock(&queue_lock); 6931da177e4SLinus Torvalds } 6941da177e4SLinus Torvalds err = 0; 6951da177e4SLinus Torvalds } 6961da177e4SLinus Torvalds out: 6971da177e4SLinus Torvalds if (rp->offset == 0) { 6981da177e4SLinus Torvalds /* need to release rq */ 6991da177e4SLinus Torvalds spin_lock(&queue_lock); 7001da177e4SLinus Torvalds rq->readers--; 7011da177e4SLinus Torvalds if (rq->readers == 0 && 7021da177e4SLinus Torvalds !test_bit(CACHE_PENDING, &rq->item->flags)) { 7031da177e4SLinus Torvalds list_del(&rq->q.list); 7041da177e4SLinus Torvalds spin_unlock(&queue_lock); 705baab935fSNeilBrown cache_put(rq->item, cd); 7061da177e4SLinus Torvalds kfree(rq->buf); 7071da177e4SLinus Torvalds kfree(rq); 7081da177e4SLinus Torvalds } else 7091da177e4SLinus Torvalds spin_unlock(&queue_lock); 7101da177e4SLinus Torvalds } 7111da177e4SLinus Torvalds if (err == -EAGAIN) 7121da177e4SLinus Torvalds goto again; 713da77005fSTrond Myklebust mutex_unlock(&inode->i_mutex); 7141da177e4SLinus Torvalds return err ? err : count; 7151da177e4SLinus Torvalds } 7161da177e4SLinus Torvalds 717da77005fSTrond Myklebust static ssize_t cache_do_downcall(char *kaddr, const char __user *buf, 718da77005fSTrond Myklebust size_t count, struct cache_detail *cd) 7191da177e4SLinus Torvalds { 720da77005fSTrond Myklebust ssize_t ret; 7211da177e4SLinus Torvalds 722da77005fSTrond Myklebust if (copy_from_user(kaddr, buf, count)) 7231da177e4SLinus Torvalds return -EFAULT; 724da77005fSTrond Myklebust kaddr[count] = '\0'; 725da77005fSTrond Myklebust ret = cd->cache_parse(cd, kaddr, count); 726da77005fSTrond Myklebust if (!ret) 727da77005fSTrond Myklebust ret = count; 728da77005fSTrond Myklebust return ret; 7291da177e4SLinus Torvalds } 7301da177e4SLinus Torvalds 731da77005fSTrond Myklebust static ssize_t cache_slow_downcall(const char __user *buf, 732da77005fSTrond Myklebust size_t count, struct cache_detail *cd) 733da77005fSTrond Myklebust { 7341da177e4SLinus Torvalds static char write_buf[8192]; /* protected by queue_io_mutex */ 735da77005fSTrond Myklebust ssize_t ret = -EINVAL; 736da77005fSTrond Myklebust 737da77005fSTrond Myklebust if (count >= sizeof(write_buf)) 738da77005fSTrond Myklebust goto out; 739da77005fSTrond Myklebust mutex_lock(&queue_io_mutex); 740da77005fSTrond Myklebust ret = cache_do_downcall(write_buf, buf, count, cd); 7414a3e2f71SArjan van de Ven mutex_unlock(&queue_io_mutex); 742da77005fSTrond Myklebust out: 743da77005fSTrond Myklebust return ret; 744da77005fSTrond Myklebust } 745da77005fSTrond Myklebust 746da77005fSTrond Myklebust static ssize_t cache_downcall(struct address_space *mapping, 747da77005fSTrond Myklebust const char __user *buf, 748da77005fSTrond Myklebust size_t count, struct cache_detail *cd) 749da77005fSTrond Myklebust { 750da77005fSTrond Myklebust struct page *page; 751da77005fSTrond Myklebust char *kaddr; 752da77005fSTrond Myklebust ssize_t ret = -ENOMEM; 753da77005fSTrond Myklebust 754da77005fSTrond Myklebust if (count >= PAGE_CACHE_SIZE) 755da77005fSTrond Myklebust goto out_slow; 756da77005fSTrond Myklebust 757da77005fSTrond Myklebust page = find_or_create_page(mapping, 0, GFP_KERNEL); 758da77005fSTrond Myklebust if (!page) 759da77005fSTrond Myklebust goto out_slow; 760da77005fSTrond Myklebust 761da77005fSTrond Myklebust kaddr = kmap(page); 762da77005fSTrond Myklebust ret = cache_do_downcall(kaddr, buf, count, cd); 763da77005fSTrond Myklebust kunmap(page); 764da77005fSTrond Myklebust unlock_page(page); 765da77005fSTrond Myklebust page_cache_release(page); 766da77005fSTrond Myklebust return ret; 767da77005fSTrond Myklebust out_slow: 768da77005fSTrond Myklebust return cache_slow_downcall(buf, count, cd); 769da77005fSTrond Myklebust } 7701da177e4SLinus Torvalds 771173912a6STrond Myklebust static ssize_t cache_write(struct file *filp, const char __user *buf, 772173912a6STrond Myklebust size_t count, loff_t *ppos, 773173912a6STrond Myklebust struct cache_detail *cd) 7741da177e4SLinus Torvalds { 775da77005fSTrond Myklebust struct address_space *mapping = filp->f_mapping; 776da77005fSTrond Myklebust struct inode *inode = filp->f_path.dentry->d_inode; 777da77005fSTrond Myklebust ssize_t ret = -EINVAL; 7781da177e4SLinus Torvalds 779da77005fSTrond Myklebust if (!cd->cache_parse) 780da77005fSTrond Myklebust goto out; 7811da177e4SLinus Torvalds 782da77005fSTrond Myklebust mutex_lock(&inode->i_mutex); 783da77005fSTrond Myklebust ret = cache_downcall(mapping, buf, count, cd); 784da77005fSTrond Myklebust mutex_unlock(&inode->i_mutex); 785da77005fSTrond Myklebust out: 786da77005fSTrond Myklebust return ret; 7871da177e4SLinus Torvalds } 7881da177e4SLinus Torvalds 7891da177e4SLinus Torvalds static DECLARE_WAIT_QUEUE_HEAD(queue_wait); 7901da177e4SLinus Torvalds 791173912a6STrond Myklebust static unsigned int cache_poll(struct file *filp, poll_table *wait, 792173912a6STrond Myklebust struct cache_detail *cd) 7931da177e4SLinus Torvalds { 7941da177e4SLinus Torvalds unsigned int mask; 7951da177e4SLinus Torvalds struct cache_reader *rp = filp->private_data; 7961da177e4SLinus Torvalds struct cache_queue *cq; 7971da177e4SLinus Torvalds 7981da177e4SLinus Torvalds poll_wait(filp, &queue_wait, wait); 7991da177e4SLinus Torvalds 8001da177e4SLinus Torvalds /* alway allow write */ 8011da177e4SLinus Torvalds mask = POLL_OUT | POLLWRNORM; 8021da177e4SLinus Torvalds 8031da177e4SLinus Torvalds if (!rp) 8041da177e4SLinus Torvalds return mask; 8051da177e4SLinus Torvalds 8061da177e4SLinus Torvalds spin_lock(&queue_lock); 8071da177e4SLinus Torvalds 8081da177e4SLinus Torvalds for (cq= &rp->q; &cq->list != &cd->queue; 8091da177e4SLinus Torvalds cq = list_entry(cq->list.next, struct cache_queue, list)) 8101da177e4SLinus Torvalds if (!cq->reader) { 8111da177e4SLinus Torvalds mask |= POLLIN | POLLRDNORM; 8121da177e4SLinus Torvalds break; 8131da177e4SLinus Torvalds } 8141da177e4SLinus Torvalds spin_unlock(&queue_lock); 8151da177e4SLinus Torvalds return mask; 8161da177e4SLinus Torvalds } 8171da177e4SLinus Torvalds 818173912a6STrond Myklebust static int cache_ioctl(struct inode *ino, struct file *filp, 819173912a6STrond Myklebust unsigned int cmd, unsigned long arg, 820173912a6STrond Myklebust struct cache_detail *cd) 8211da177e4SLinus Torvalds { 8221da177e4SLinus Torvalds int len = 0; 8231da177e4SLinus Torvalds struct cache_reader *rp = filp->private_data; 8241da177e4SLinus Torvalds struct cache_queue *cq; 8251da177e4SLinus Torvalds 8261da177e4SLinus Torvalds if (cmd != FIONREAD || !rp) 8271da177e4SLinus Torvalds return -EINVAL; 8281da177e4SLinus Torvalds 8291da177e4SLinus Torvalds spin_lock(&queue_lock); 8301da177e4SLinus Torvalds 8311da177e4SLinus Torvalds /* only find the length remaining in current request, 8321da177e4SLinus Torvalds * or the length of the next request 8331da177e4SLinus Torvalds */ 8341da177e4SLinus Torvalds for (cq= &rp->q; &cq->list != &cd->queue; 8351da177e4SLinus Torvalds cq = list_entry(cq->list.next, struct cache_queue, list)) 8361da177e4SLinus Torvalds if (!cq->reader) { 8371da177e4SLinus Torvalds struct cache_request *cr = 8381da177e4SLinus Torvalds container_of(cq, struct cache_request, q); 8391da177e4SLinus Torvalds len = cr->len - rp->offset; 8401da177e4SLinus Torvalds break; 8411da177e4SLinus Torvalds } 8421da177e4SLinus Torvalds spin_unlock(&queue_lock); 8431da177e4SLinus Torvalds 8441da177e4SLinus Torvalds return put_user(len, (int __user *)arg); 8451da177e4SLinus Torvalds } 8461da177e4SLinus Torvalds 847173912a6STrond Myklebust static int cache_open(struct inode *inode, struct file *filp, 848173912a6STrond Myklebust struct cache_detail *cd) 8491da177e4SLinus Torvalds { 8501da177e4SLinus Torvalds struct cache_reader *rp = NULL; 8511da177e4SLinus Torvalds 852f7e86ab9STrond Myklebust if (!cd || !try_module_get(cd->owner)) 853f7e86ab9STrond Myklebust return -EACCES; 8541da177e4SLinus Torvalds nonseekable_open(inode, filp); 8551da177e4SLinus Torvalds if (filp->f_mode & FMODE_READ) { 8561da177e4SLinus Torvalds rp = kmalloc(sizeof(*rp), GFP_KERNEL); 8571da177e4SLinus Torvalds if (!rp) 8581da177e4SLinus Torvalds return -ENOMEM; 8591da177e4SLinus Torvalds rp->offset = 0; 8601da177e4SLinus Torvalds rp->q.reader = 1; 8611da177e4SLinus Torvalds atomic_inc(&cd->readers); 8621da177e4SLinus Torvalds spin_lock(&queue_lock); 8631da177e4SLinus Torvalds list_add(&rp->q.list, &cd->queue); 8641da177e4SLinus Torvalds spin_unlock(&queue_lock); 8651da177e4SLinus Torvalds } 8661da177e4SLinus Torvalds filp->private_data = rp; 8671da177e4SLinus Torvalds return 0; 8681da177e4SLinus Torvalds } 8691da177e4SLinus Torvalds 870173912a6STrond Myklebust static int cache_release(struct inode *inode, struct file *filp, 871173912a6STrond Myklebust struct cache_detail *cd) 8721da177e4SLinus Torvalds { 8731da177e4SLinus Torvalds struct cache_reader *rp = filp->private_data; 8741da177e4SLinus Torvalds 8751da177e4SLinus Torvalds if (rp) { 8761da177e4SLinus Torvalds spin_lock(&queue_lock); 8771da177e4SLinus Torvalds if (rp->offset) { 8781da177e4SLinus Torvalds struct cache_queue *cq; 8791da177e4SLinus Torvalds for (cq= &rp->q; &cq->list != &cd->queue; 8801da177e4SLinus Torvalds cq = list_entry(cq->list.next, struct cache_queue, list)) 8811da177e4SLinus Torvalds if (!cq->reader) { 8821da177e4SLinus Torvalds container_of(cq, struct cache_request, q) 8831da177e4SLinus Torvalds ->readers--; 8841da177e4SLinus Torvalds break; 8851da177e4SLinus Torvalds } 8861da177e4SLinus Torvalds rp->offset = 0; 8871da177e4SLinus Torvalds } 8881da177e4SLinus Torvalds list_del(&rp->q.list); 8891da177e4SLinus Torvalds spin_unlock(&queue_lock); 8901da177e4SLinus Torvalds 8911da177e4SLinus Torvalds filp->private_data = NULL; 8921da177e4SLinus Torvalds kfree(rp); 8931da177e4SLinus Torvalds 8941da177e4SLinus Torvalds cd->last_close = get_seconds(); 8951da177e4SLinus Torvalds atomic_dec(&cd->readers); 8961da177e4SLinus Torvalds } 897f7e86ab9STrond Myklebust module_put(cd->owner); 8981da177e4SLinus Torvalds return 0; 8991da177e4SLinus Torvalds } 9001da177e4SLinus Torvalds 9011da177e4SLinus Torvalds 9021da177e4SLinus Torvalds 903f866a819SNeilBrown static void cache_dequeue(struct cache_detail *detail, struct cache_head *ch) 9041da177e4SLinus Torvalds { 9051da177e4SLinus Torvalds struct cache_queue *cq; 9061da177e4SLinus Torvalds spin_lock(&queue_lock); 9071da177e4SLinus Torvalds list_for_each_entry(cq, &detail->queue, list) 9081da177e4SLinus Torvalds if (!cq->reader) { 9091da177e4SLinus Torvalds struct cache_request *cr = container_of(cq, struct cache_request, q); 9101da177e4SLinus Torvalds if (cr->item != ch) 9111da177e4SLinus Torvalds continue; 9121da177e4SLinus Torvalds if (cr->readers != 0) 9134013edeaSNeilBrown continue; 9141da177e4SLinus Torvalds list_del(&cr->q.list); 9151da177e4SLinus Torvalds spin_unlock(&queue_lock); 916baab935fSNeilBrown cache_put(cr->item, detail); 9171da177e4SLinus Torvalds kfree(cr->buf); 9181da177e4SLinus Torvalds kfree(cr); 9191da177e4SLinus Torvalds return; 9201da177e4SLinus Torvalds } 9211da177e4SLinus Torvalds spin_unlock(&queue_lock); 9221da177e4SLinus Torvalds } 9231da177e4SLinus Torvalds 9241da177e4SLinus Torvalds /* 9251da177e4SLinus Torvalds * Support routines for text-based upcalls. 9261da177e4SLinus Torvalds * Fields are separated by spaces. 9271da177e4SLinus Torvalds * Fields are either mangled to quote space tab newline slosh with slosh 9281da177e4SLinus Torvalds * or a hexified with a leading \x 9291da177e4SLinus Torvalds * Record is terminated with newline. 9301da177e4SLinus Torvalds * 9311da177e4SLinus Torvalds */ 9321da177e4SLinus Torvalds 9331da177e4SLinus Torvalds void qword_add(char **bpp, int *lp, char *str) 9341da177e4SLinus Torvalds { 9351da177e4SLinus Torvalds char *bp = *bpp; 9361da177e4SLinus Torvalds int len = *lp; 9371da177e4SLinus Torvalds char c; 9381da177e4SLinus Torvalds 9391da177e4SLinus Torvalds if (len < 0) return; 9401da177e4SLinus Torvalds 9411da177e4SLinus Torvalds while ((c=*str++) && len) 9421da177e4SLinus Torvalds switch(c) { 9431da177e4SLinus Torvalds case ' ': 9441da177e4SLinus Torvalds case '\t': 9451da177e4SLinus Torvalds case '\n': 9461da177e4SLinus Torvalds case '\\': 9471da177e4SLinus Torvalds if (len >= 4) { 9481da177e4SLinus Torvalds *bp++ = '\\'; 9491da177e4SLinus Torvalds *bp++ = '0' + ((c & 0300)>>6); 9501da177e4SLinus Torvalds *bp++ = '0' + ((c & 0070)>>3); 9511da177e4SLinus Torvalds *bp++ = '0' + ((c & 0007)>>0); 9521da177e4SLinus Torvalds } 9531da177e4SLinus Torvalds len -= 4; 9541da177e4SLinus Torvalds break; 9551da177e4SLinus Torvalds default: 9561da177e4SLinus Torvalds *bp++ = c; 9571da177e4SLinus Torvalds len--; 9581da177e4SLinus Torvalds } 9591da177e4SLinus Torvalds if (c || len <1) len = -1; 9601da177e4SLinus Torvalds else { 9611da177e4SLinus Torvalds *bp++ = ' '; 9621da177e4SLinus Torvalds len--; 9631da177e4SLinus Torvalds } 9641da177e4SLinus Torvalds *bpp = bp; 9651da177e4SLinus Torvalds *lp = len; 9661da177e4SLinus Torvalds } 96724c3767eSTrond Myklebust EXPORT_SYMBOL_GPL(qword_add); 9681da177e4SLinus Torvalds 9691da177e4SLinus Torvalds void qword_addhex(char **bpp, int *lp, char *buf, int blen) 9701da177e4SLinus Torvalds { 9711da177e4SLinus Torvalds char *bp = *bpp; 9721da177e4SLinus Torvalds int len = *lp; 9731da177e4SLinus Torvalds 9741da177e4SLinus Torvalds if (len < 0) return; 9751da177e4SLinus Torvalds 9761da177e4SLinus Torvalds if (len > 2) { 9771da177e4SLinus Torvalds *bp++ = '\\'; 9781da177e4SLinus Torvalds *bp++ = 'x'; 9791da177e4SLinus Torvalds len -= 2; 9801da177e4SLinus Torvalds while (blen && len >= 2) { 9811da177e4SLinus Torvalds unsigned char c = *buf++; 9821da177e4SLinus Torvalds *bp++ = '0' + ((c&0xf0)>>4) + (c>=0xa0)*('a'-'9'-1); 9831da177e4SLinus Torvalds *bp++ = '0' + (c&0x0f) + ((c&0x0f)>=0x0a)*('a'-'9'-1); 9841da177e4SLinus Torvalds len -= 2; 9851da177e4SLinus Torvalds blen--; 9861da177e4SLinus Torvalds } 9871da177e4SLinus Torvalds } 9881da177e4SLinus Torvalds if (blen || len<1) len = -1; 9891da177e4SLinus Torvalds else { 9901da177e4SLinus Torvalds *bp++ = ' '; 9911da177e4SLinus Torvalds len--; 9921da177e4SLinus Torvalds } 9931da177e4SLinus Torvalds *bpp = bp; 9941da177e4SLinus Torvalds *lp = len; 9951da177e4SLinus Torvalds } 99624c3767eSTrond Myklebust EXPORT_SYMBOL_GPL(qword_addhex); 9971da177e4SLinus Torvalds 9981da177e4SLinus Torvalds static void warn_no_listener(struct cache_detail *detail) 9991da177e4SLinus Torvalds { 10001da177e4SLinus Torvalds if (detail->last_warn != detail->last_close) { 10011da177e4SLinus Torvalds detail->last_warn = detail->last_close; 10021da177e4SLinus Torvalds if (detail->warn_no_listener) 10032da8ca26STrond Myklebust detail->warn_no_listener(detail, detail->last_close != 0); 10041da177e4SLinus Torvalds } 10051da177e4SLinus Torvalds } 10061da177e4SLinus Torvalds 10071da177e4SLinus Torvalds /* 1008bc74b4f5STrond Myklebust * register an upcall request to user-space and queue it up for read() by the 1009bc74b4f5STrond Myklebust * upcall daemon. 1010bc74b4f5STrond Myklebust * 10111da177e4SLinus Torvalds * Each request is at most one page long. 10121da177e4SLinus Torvalds */ 1013bc74b4f5STrond Myklebust int sunrpc_cache_pipe_upcall(struct cache_detail *detail, struct cache_head *h, 1014bc74b4f5STrond Myklebust void (*cache_request)(struct cache_detail *, 1015bc74b4f5STrond Myklebust struct cache_head *, 1016bc74b4f5STrond Myklebust char **, 1017bc74b4f5STrond Myklebust int *)) 10181da177e4SLinus Torvalds { 10191da177e4SLinus Torvalds 10201da177e4SLinus Torvalds char *buf; 10211da177e4SLinus Torvalds struct cache_request *crq; 10221da177e4SLinus Torvalds char *bp; 10231da177e4SLinus Torvalds int len; 10241da177e4SLinus Torvalds 10251da177e4SLinus Torvalds if (atomic_read(&detail->readers) == 0 && 10261da177e4SLinus Torvalds detail->last_close < get_seconds() - 30) { 10271da177e4SLinus Torvalds warn_no_listener(detail); 10281da177e4SLinus Torvalds return -EINVAL; 10291da177e4SLinus Torvalds } 10301da177e4SLinus Torvalds 10311da177e4SLinus Torvalds buf = kmalloc(PAGE_SIZE, GFP_KERNEL); 10321da177e4SLinus Torvalds if (!buf) 10331da177e4SLinus Torvalds return -EAGAIN; 10341da177e4SLinus Torvalds 10351da177e4SLinus Torvalds crq = kmalloc(sizeof (*crq), GFP_KERNEL); 10361da177e4SLinus Torvalds if (!crq) { 10371da177e4SLinus Torvalds kfree(buf); 10381da177e4SLinus Torvalds return -EAGAIN; 10391da177e4SLinus Torvalds } 10401da177e4SLinus Torvalds 10411da177e4SLinus Torvalds bp = buf; len = PAGE_SIZE; 10421da177e4SLinus Torvalds 1043bc74b4f5STrond Myklebust cache_request(detail, h, &bp, &len); 10441da177e4SLinus Torvalds 10451da177e4SLinus Torvalds if (len < 0) { 10461da177e4SLinus Torvalds kfree(buf); 10471da177e4SLinus Torvalds kfree(crq); 10481da177e4SLinus Torvalds return -EAGAIN; 10491da177e4SLinus Torvalds } 10501da177e4SLinus Torvalds crq->q.reader = 0; 10511da177e4SLinus Torvalds crq->item = cache_get(h); 10521da177e4SLinus Torvalds crq->buf = buf; 10531da177e4SLinus Torvalds crq->len = PAGE_SIZE - len; 10541da177e4SLinus Torvalds crq->readers = 0; 10551da177e4SLinus Torvalds spin_lock(&queue_lock); 10561da177e4SLinus Torvalds list_add_tail(&crq->q.list, &detail->queue); 10571da177e4SLinus Torvalds spin_unlock(&queue_lock); 10581da177e4SLinus Torvalds wake_up(&queue_wait); 10591da177e4SLinus Torvalds return 0; 10601da177e4SLinus Torvalds } 1061bc74b4f5STrond Myklebust EXPORT_SYMBOL_GPL(sunrpc_cache_pipe_upcall); 10621da177e4SLinus Torvalds 10631da177e4SLinus Torvalds /* 10641da177e4SLinus Torvalds * parse a message from user-space and pass it 10651da177e4SLinus Torvalds * to an appropriate cache 10661da177e4SLinus Torvalds * Messages are, like requests, separated into fields by 10671da177e4SLinus Torvalds * spaces and dequotes as \xHEXSTRING or embedded \nnn octal 10681da177e4SLinus Torvalds * 10691da177e4SLinus Torvalds * Message is 10701da177e4SLinus Torvalds * reply cachename expiry key ... content.... 10711da177e4SLinus Torvalds * 10721da177e4SLinus Torvalds * key and content are both parsed by cache 10731da177e4SLinus Torvalds */ 10741da177e4SLinus Torvalds 10751da177e4SLinus Torvalds #define isodigit(c) (isdigit(c) && c <= '7') 10761da177e4SLinus Torvalds int qword_get(char **bpp, char *dest, int bufsize) 10771da177e4SLinus Torvalds { 10781da177e4SLinus Torvalds /* return bytes copied, or -1 on error */ 10791da177e4SLinus Torvalds char *bp = *bpp; 10801da177e4SLinus Torvalds int len = 0; 10811da177e4SLinus Torvalds 10821da177e4SLinus Torvalds while (*bp == ' ') bp++; 10831da177e4SLinus Torvalds 10841da177e4SLinus Torvalds if (bp[0] == '\\' && bp[1] == 'x') { 10851da177e4SLinus Torvalds /* HEX STRING */ 10861da177e4SLinus Torvalds bp += 2; 10871da177e4SLinus Torvalds while (isxdigit(bp[0]) && isxdigit(bp[1]) && len < bufsize) { 10881da177e4SLinus Torvalds int byte = isdigit(*bp) ? *bp-'0' : toupper(*bp)-'A'+10; 10891da177e4SLinus Torvalds bp++; 10901da177e4SLinus Torvalds byte <<= 4; 10911da177e4SLinus Torvalds byte |= isdigit(*bp) ? *bp-'0' : toupper(*bp)-'A'+10; 10921da177e4SLinus Torvalds *dest++ = byte; 10931da177e4SLinus Torvalds bp++; 10941da177e4SLinus Torvalds len++; 10951da177e4SLinus Torvalds } 10961da177e4SLinus Torvalds } else { 10971da177e4SLinus Torvalds /* text with \nnn octal quoting */ 10981da177e4SLinus Torvalds while (*bp != ' ' && *bp != '\n' && *bp && len < bufsize-1) { 10991da177e4SLinus Torvalds if (*bp == '\\' && 11001da177e4SLinus Torvalds isodigit(bp[1]) && (bp[1] <= '3') && 11011da177e4SLinus Torvalds isodigit(bp[2]) && 11021da177e4SLinus Torvalds isodigit(bp[3])) { 11031da177e4SLinus Torvalds int byte = (*++bp -'0'); 11041da177e4SLinus Torvalds bp++; 11051da177e4SLinus Torvalds byte = (byte << 3) | (*bp++ - '0'); 11061da177e4SLinus Torvalds byte = (byte << 3) | (*bp++ - '0'); 11071da177e4SLinus Torvalds *dest++ = byte; 11081da177e4SLinus Torvalds len++; 11091da177e4SLinus Torvalds } else { 11101da177e4SLinus Torvalds *dest++ = *bp++; 11111da177e4SLinus Torvalds len++; 11121da177e4SLinus Torvalds } 11131da177e4SLinus Torvalds } 11141da177e4SLinus Torvalds } 11151da177e4SLinus Torvalds 11161da177e4SLinus Torvalds if (*bp != ' ' && *bp != '\n' && *bp != '\0') 11171da177e4SLinus Torvalds return -1; 11181da177e4SLinus Torvalds while (*bp == ' ') bp++; 11191da177e4SLinus Torvalds *bpp = bp; 11201da177e4SLinus Torvalds *dest = '\0'; 11211da177e4SLinus Torvalds return len; 11221da177e4SLinus Torvalds } 112324c3767eSTrond Myklebust EXPORT_SYMBOL_GPL(qword_get); 11241da177e4SLinus Torvalds 11251da177e4SLinus Torvalds 11261da177e4SLinus Torvalds /* 11271da177e4SLinus Torvalds * support /proc/sunrpc/cache/$CACHENAME/content 11281da177e4SLinus Torvalds * as a seqfile. 11291da177e4SLinus Torvalds * We call ->cache_show passing NULL for the item to 11301da177e4SLinus Torvalds * get a header, then pass each real item in the cache 11311da177e4SLinus Torvalds */ 11321da177e4SLinus Torvalds 11331da177e4SLinus Torvalds struct handle { 11341da177e4SLinus Torvalds struct cache_detail *cd; 11351da177e4SLinus Torvalds }; 11361da177e4SLinus Torvalds 11371da177e4SLinus Torvalds static void *c_start(struct seq_file *m, loff_t *pos) 11389a429c49SEric Dumazet __acquires(cd->hash_lock) 11391da177e4SLinus Torvalds { 11401da177e4SLinus Torvalds loff_t n = *pos; 11411da177e4SLinus Torvalds unsigned hash, entry; 11421da177e4SLinus Torvalds struct cache_head *ch; 11431da177e4SLinus Torvalds struct cache_detail *cd = ((struct handle*)m->private)->cd; 11441da177e4SLinus Torvalds 11451da177e4SLinus Torvalds 11461da177e4SLinus Torvalds read_lock(&cd->hash_lock); 11471da177e4SLinus Torvalds if (!n--) 11481da177e4SLinus Torvalds return SEQ_START_TOKEN; 11491da177e4SLinus Torvalds hash = n >> 32; 11501da177e4SLinus Torvalds entry = n & ((1LL<<32) - 1); 11511da177e4SLinus Torvalds 11521da177e4SLinus Torvalds for (ch=cd->hash_table[hash]; ch; ch=ch->next) 11531da177e4SLinus Torvalds if (!entry--) 11541da177e4SLinus Torvalds return ch; 11551da177e4SLinus Torvalds n &= ~((1LL<<32) - 1); 11561da177e4SLinus Torvalds do { 11571da177e4SLinus Torvalds hash++; 11581da177e4SLinus Torvalds n += 1LL<<32; 11591da177e4SLinus Torvalds } while(hash < cd->hash_size && 11601da177e4SLinus Torvalds cd->hash_table[hash]==NULL); 11611da177e4SLinus Torvalds if (hash >= cd->hash_size) 11621da177e4SLinus Torvalds return NULL; 11631da177e4SLinus Torvalds *pos = n+1; 11641da177e4SLinus Torvalds return cd->hash_table[hash]; 11651da177e4SLinus Torvalds } 11661da177e4SLinus Torvalds 11671da177e4SLinus Torvalds static void *c_next(struct seq_file *m, void *p, loff_t *pos) 11681da177e4SLinus Torvalds { 11691da177e4SLinus Torvalds struct cache_head *ch = p; 11701da177e4SLinus Torvalds int hash = (*pos >> 32); 11711da177e4SLinus Torvalds struct cache_detail *cd = ((struct handle*)m->private)->cd; 11721da177e4SLinus Torvalds 11731da177e4SLinus Torvalds if (p == SEQ_START_TOKEN) 11741da177e4SLinus Torvalds hash = 0; 11751da177e4SLinus Torvalds else if (ch->next == NULL) { 11761da177e4SLinus Torvalds hash++; 11771da177e4SLinus Torvalds *pos += 1LL<<32; 11781da177e4SLinus Torvalds } else { 11791da177e4SLinus Torvalds ++*pos; 11801da177e4SLinus Torvalds return ch->next; 11811da177e4SLinus Torvalds } 11821da177e4SLinus Torvalds *pos &= ~((1LL<<32) - 1); 11831da177e4SLinus Torvalds while (hash < cd->hash_size && 11841da177e4SLinus Torvalds cd->hash_table[hash] == NULL) { 11851da177e4SLinus Torvalds hash++; 11861da177e4SLinus Torvalds *pos += 1LL<<32; 11871da177e4SLinus Torvalds } 11881da177e4SLinus Torvalds if (hash >= cd->hash_size) 11891da177e4SLinus Torvalds return NULL; 11901da177e4SLinus Torvalds ++*pos; 11911da177e4SLinus Torvalds return cd->hash_table[hash]; 11921da177e4SLinus Torvalds } 11931da177e4SLinus Torvalds 11941da177e4SLinus Torvalds static void c_stop(struct seq_file *m, void *p) 11959a429c49SEric Dumazet __releases(cd->hash_lock) 11961da177e4SLinus Torvalds { 11971da177e4SLinus Torvalds struct cache_detail *cd = ((struct handle*)m->private)->cd; 11981da177e4SLinus Torvalds read_unlock(&cd->hash_lock); 11991da177e4SLinus Torvalds } 12001da177e4SLinus Torvalds 12011da177e4SLinus Torvalds static int c_show(struct seq_file *m, void *p) 12021da177e4SLinus Torvalds { 12031da177e4SLinus Torvalds struct cache_head *cp = p; 12041da177e4SLinus Torvalds struct cache_detail *cd = ((struct handle*)m->private)->cd; 12051da177e4SLinus Torvalds 12061da177e4SLinus Torvalds if (p == SEQ_START_TOKEN) 12071da177e4SLinus Torvalds return cd->cache_show(m, cd, NULL); 12081da177e4SLinus Torvalds 12091da177e4SLinus Torvalds ifdebug(CACHE) 12104013edeaSNeilBrown seq_printf(m, "# expiry=%ld refcnt=%d flags=%lx\n", 1211baab935fSNeilBrown cp->expiry_time, atomic_read(&cp->ref.refcount), cp->flags); 12121da177e4SLinus Torvalds cache_get(cp); 12131da177e4SLinus Torvalds if (cache_check(cd, cp, NULL)) 12141da177e4SLinus Torvalds /* cache_check does a cache_put on failure */ 12151da177e4SLinus Torvalds seq_printf(m, "# "); 12161da177e4SLinus Torvalds else 12171da177e4SLinus Torvalds cache_put(cp, cd); 12181da177e4SLinus Torvalds 12191da177e4SLinus Torvalds return cd->cache_show(m, cd, cp); 12201da177e4SLinus Torvalds } 12211da177e4SLinus Torvalds 122256b3d975SPhilippe De Muyter static const struct seq_operations cache_content_op = { 12231da177e4SLinus Torvalds .start = c_start, 12241da177e4SLinus Torvalds .next = c_next, 12251da177e4SLinus Torvalds .stop = c_stop, 12261da177e4SLinus Torvalds .show = c_show, 12271da177e4SLinus Torvalds }; 12281da177e4SLinus Torvalds 1229173912a6STrond Myklebust static int content_open(struct inode *inode, struct file *file, 1230173912a6STrond Myklebust struct cache_detail *cd) 12311da177e4SLinus Torvalds { 12321da177e4SLinus Torvalds struct handle *han; 12331da177e4SLinus Torvalds 1234f7e86ab9STrond Myklebust if (!cd || !try_module_get(cd->owner)) 1235f7e86ab9STrond Myklebust return -EACCES; 1236ec931035SPavel Emelyanov han = __seq_open_private(file, &cache_content_op, sizeof(*han)); 12371da177e4SLinus Torvalds if (han == NULL) 12381da177e4SLinus Torvalds return -ENOMEM; 12391da177e4SLinus Torvalds 12401da177e4SLinus Torvalds han->cd = cd; 1241ec931035SPavel Emelyanov return 0; 12421da177e4SLinus Torvalds } 12431da177e4SLinus Torvalds 1244f7e86ab9STrond Myklebust static int content_release(struct inode *inode, struct file *file, 1245f7e86ab9STrond Myklebust struct cache_detail *cd) 1246f7e86ab9STrond Myklebust { 1247f7e86ab9STrond Myklebust int ret = seq_release_private(inode, file); 1248f7e86ab9STrond Myklebust module_put(cd->owner); 1249f7e86ab9STrond Myklebust return ret; 1250f7e86ab9STrond Myklebust } 1251f7e86ab9STrond Myklebust 1252f7e86ab9STrond Myklebust static int open_flush(struct inode *inode, struct file *file, 1253f7e86ab9STrond Myklebust struct cache_detail *cd) 1254f7e86ab9STrond Myklebust { 1255f7e86ab9STrond Myklebust if (!cd || !try_module_get(cd->owner)) 1256f7e86ab9STrond Myklebust return -EACCES; 1257f7e86ab9STrond Myklebust return nonseekable_open(inode, file); 1258f7e86ab9STrond Myklebust } 1259f7e86ab9STrond Myklebust 1260f7e86ab9STrond Myklebust static int release_flush(struct inode *inode, struct file *file, 1261f7e86ab9STrond Myklebust struct cache_detail *cd) 1262f7e86ab9STrond Myklebust { 1263f7e86ab9STrond Myklebust module_put(cd->owner); 1264f7e86ab9STrond Myklebust return 0; 1265f7e86ab9STrond Myklebust } 12661da177e4SLinus Torvalds 12671da177e4SLinus Torvalds static ssize_t read_flush(struct file *file, char __user *buf, 1268173912a6STrond Myklebust size_t count, loff_t *ppos, 1269173912a6STrond Myklebust struct cache_detail *cd) 12701da177e4SLinus Torvalds { 12711da177e4SLinus Torvalds char tbuf[20]; 12721da177e4SLinus Torvalds unsigned long p = *ppos; 127301b2969aSChuck Lever size_t len; 12741da177e4SLinus Torvalds 12751da177e4SLinus Torvalds sprintf(tbuf, "%lu\n", cd->flush_time); 12761da177e4SLinus Torvalds len = strlen(tbuf); 12771da177e4SLinus Torvalds if (p >= len) 12781da177e4SLinus Torvalds return 0; 12791da177e4SLinus Torvalds len -= p; 128001b2969aSChuck Lever if (len > count) 128101b2969aSChuck Lever len = count; 12821da177e4SLinus Torvalds if (copy_to_user(buf, (void*)(tbuf+p), len)) 128301b2969aSChuck Lever return -EFAULT; 12841da177e4SLinus Torvalds *ppos += len; 12851da177e4SLinus Torvalds return len; 12861da177e4SLinus Torvalds } 12871da177e4SLinus Torvalds 12881da177e4SLinus Torvalds static ssize_t write_flush(struct file *file, const char __user *buf, 1289173912a6STrond Myklebust size_t count, loff_t *ppos, 1290173912a6STrond Myklebust struct cache_detail *cd) 12911da177e4SLinus Torvalds { 12921da177e4SLinus Torvalds char tbuf[20]; 12931da177e4SLinus Torvalds char *ep; 12941da177e4SLinus Torvalds long flushtime; 12951da177e4SLinus Torvalds if (*ppos || count > sizeof(tbuf)-1) 12961da177e4SLinus Torvalds return -EINVAL; 12971da177e4SLinus Torvalds if (copy_from_user(tbuf, buf, count)) 12981da177e4SLinus Torvalds return -EFAULT; 12991da177e4SLinus Torvalds tbuf[count] = 0; 13001da177e4SLinus Torvalds flushtime = simple_strtoul(tbuf, &ep, 0); 13011da177e4SLinus Torvalds if (*ep && *ep != '\n') 13021da177e4SLinus Torvalds return -EINVAL; 13031da177e4SLinus Torvalds 13041da177e4SLinus Torvalds cd->flush_time = flushtime; 13051da177e4SLinus Torvalds cd->nextcheck = get_seconds(); 13061da177e4SLinus Torvalds cache_flush(); 13071da177e4SLinus Torvalds 13081da177e4SLinus Torvalds *ppos += count; 13091da177e4SLinus Torvalds return count; 13101da177e4SLinus Torvalds } 13111da177e4SLinus Torvalds 1312173912a6STrond Myklebust static ssize_t cache_read_procfs(struct file *filp, char __user *buf, 1313173912a6STrond Myklebust size_t count, loff_t *ppos) 1314173912a6STrond Myklebust { 1315173912a6STrond Myklebust struct cache_detail *cd = PDE(filp->f_path.dentry->d_inode)->data; 1316173912a6STrond Myklebust 1317173912a6STrond Myklebust return cache_read(filp, buf, count, ppos, cd); 1318173912a6STrond Myklebust } 1319173912a6STrond Myklebust 1320173912a6STrond Myklebust static ssize_t cache_write_procfs(struct file *filp, const char __user *buf, 1321173912a6STrond Myklebust size_t count, loff_t *ppos) 1322173912a6STrond Myklebust { 1323173912a6STrond Myklebust struct cache_detail *cd = PDE(filp->f_path.dentry->d_inode)->data; 1324173912a6STrond Myklebust 1325173912a6STrond Myklebust return cache_write(filp, buf, count, ppos, cd); 1326173912a6STrond Myklebust } 1327173912a6STrond Myklebust 1328173912a6STrond Myklebust static unsigned int cache_poll_procfs(struct file *filp, poll_table *wait) 1329173912a6STrond Myklebust { 1330173912a6STrond Myklebust struct cache_detail *cd = PDE(filp->f_path.dentry->d_inode)->data; 1331173912a6STrond Myklebust 1332173912a6STrond Myklebust return cache_poll(filp, wait, cd); 1333173912a6STrond Myklebust } 1334173912a6STrond Myklebust 1335173912a6STrond Myklebust static int cache_ioctl_procfs(struct inode *inode, struct file *filp, 1336173912a6STrond Myklebust unsigned int cmd, unsigned long arg) 1337173912a6STrond Myklebust { 1338173912a6STrond Myklebust struct cache_detail *cd = PDE(inode)->data; 1339173912a6STrond Myklebust 1340173912a6STrond Myklebust return cache_ioctl(inode, filp, cmd, arg, cd); 1341173912a6STrond Myklebust } 1342173912a6STrond Myklebust 1343173912a6STrond Myklebust static int cache_open_procfs(struct inode *inode, struct file *filp) 1344173912a6STrond Myklebust { 1345173912a6STrond Myklebust struct cache_detail *cd = PDE(inode)->data; 1346173912a6STrond Myklebust 1347173912a6STrond Myklebust return cache_open(inode, filp, cd); 1348173912a6STrond Myklebust } 1349173912a6STrond Myklebust 1350173912a6STrond Myklebust static int cache_release_procfs(struct inode *inode, struct file *filp) 1351173912a6STrond Myklebust { 1352173912a6STrond Myklebust struct cache_detail *cd = PDE(inode)->data; 1353173912a6STrond Myklebust 1354173912a6STrond Myklebust return cache_release(inode, filp, cd); 1355173912a6STrond Myklebust } 1356173912a6STrond Myklebust 1357173912a6STrond Myklebust static const struct file_operations cache_file_operations_procfs = { 1358173912a6STrond Myklebust .owner = THIS_MODULE, 1359173912a6STrond Myklebust .llseek = no_llseek, 1360173912a6STrond Myklebust .read = cache_read_procfs, 1361173912a6STrond Myklebust .write = cache_write_procfs, 1362173912a6STrond Myklebust .poll = cache_poll_procfs, 1363173912a6STrond Myklebust .ioctl = cache_ioctl_procfs, /* for FIONREAD */ 1364173912a6STrond Myklebust .open = cache_open_procfs, 1365173912a6STrond Myklebust .release = cache_release_procfs, 13661da177e4SLinus Torvalds }; 1367173912a6STrond Myklebust 1368173912a6STrond Myklebust static int content_open_procfs(struct inode *inode, struct file *filp) 1369173912a6STrond Myklebust { 1370173912a6STrond Myklebust struct cache_detail *cd = PDE(inode)->data; 1371173912a6STrond Myklebust 1372173912a6STrond Myklebust return content_open(inode, filp, cd); 1373173912a6STrond Myklebust } 1374173912a6STrond Myklebust 1375f7e86ab9STrond Myklebust static int content_release_procfs(struct inode *inode, struct file *filp) 1376f7e86ab9STrond Myklebust { 1377f7e86ab9STrond Myklebust struct cache_detail *cd = PDE(inode)->data; 1378f7e86ab9STrond Myklebust 1379f7e86ab9STrond Myklebust return content_release(inode, filp, cd); 1380f7e86ab9STrond Myklebust } 1381f7e86ab9STrond Myklebust 1382173912a6STrond Myklebust static const struct file_operations content_file_operations_procfs = { 1383173912a6STrond Myklebust .open = content_open_procfs, 1384173912a6STrond Myklebust .read = seq_read, 1385173912a6STrond Myklebust .llseek = seq_lseek, 1386f7e86ab9STrond Myklebust .release = content_release_procfs, 1387173912a6STrond Myklebust }; 1388173912a6STrond Myklebust 1389f7e86ab9STrond Myklebust static int open_flush_procfs(struct inode *inode, struct file *filp) 1390f7e86ab9STrond Myklebust { 1391f7e86ab9STrond Myklebust struct cache_detail *cd = PDE(inode)->data; 1392f7e86ab9STrond Myklebust 1393f7e86ab9STrond Myklebust return open_flush(inode, filp, cd); 1394f7e86ab9STrond Myklebust } 1395f7e86ab9STrond Myklebust 1396f7e86ab9STrond Myklebust static int release_flush_procfs(struct inode *inode, struct file *filp) 1397f7e86ab9STrond Myklebust { 1398f7e86ab9STrond Myklebust struct cache_detail *cd = PDE(inode)->data; 1399f7e86ab9STrond Myklebust 1400f7e86ab9STrond Myklebust return release_flush(inode, filp, cd); 1401f7e86ab9STrond Myklebust } 1402f7e86ab9STrond Myklebust 1403173912a6STrond Myklebust static ssize_t read_flush_procfs(struct file *filp, char __user *buf, 1404173912a6STrond Myklebust size_t count, loff_t *ppos) 1405173912a6STrond Myklebust { 1406173912a6STrond Myklebust struct cache_detail *cd = PDE(filp->f_path.dentry->d_inode)->data; 1407173912a6STrond Myklebust 1408173912a6STrond Myklebust return read_flush(filp, buf, count, ppos, cd); 1409173912a6STrond Myklebust } 1410173912a6STrond Myklebust 1411173912a6STrond Myklebust static ssize_t write_flush_procfs(struct file *filp, 1412173912a6STrond Myklebust const char __user *buf, 1413173912a6STrond Myklebust size_t count, loff_t *ppos) 1414173912a6STrond Myklebust { 1415173912a6STrond Myklebust struct cache_detail *cd = PDE(filp->f_path.dentry->d_inode)->data; 1416173912a6STrond Myklebust 1417173912a6STrond Myklebust return write_flush(filp, buf, count, ppos, cd); 1418173912a6STrond Myklebust } 1419173912a6STrond Myklebust 1420173912a6STrond Myklebust static const struct file_operations cache_flush_operations_procfs = { 1421f7e86ab9STrond Myklebust .open = open_flush_procfs, 1422173912a6STrond Myklebust .read = read_flush_procfs, 1423173912a6STrond Myklebust .write = write_flush_procfs, 1424f7e86ab9STrond Myklebust .release = release_flush_procfs, 1425173912a6STrond Myklebust }; 1426173912a6STrond Myklebust 1427173912a6STrond Myklebust static void remove_cache_proc_entries(struct cache_detail *cd) 1428173912a6STrond Myklebust { 1429173912a6STrond Myklebust if (cd->u.procfs.proc_ent == NULL) 1430173912a6STrond Myklebust return; 1431173912a6STrond Myklebust if (cd->u.procfs.flush_ent) 1432173912a6STrond Myklebust remove_proc_entry("flush", cd->u.procfs.proc_ent); 1433173912a6STrond Myklebust if (cd->u.procfs.channel_ent) 1434173912a6STrond Myklebust remove_proc_entry("channel", cd->u.procfs.proc_ent); 1435173912a6STrond Myklebust if (cd->u.procfs.content_ent) 1436173912a6STrond Myklebust remove_proc_entry("content", cd->u.procfs.proc_ent); 1437173912a6STrond Myklebust cd->u.procfs.proc_ent = NULL; 1438173912a6STrond Myklebust remove_proc_entry(cd->name, proc_net_rpc); 1439173912a6STrond Myklebust } 1440173912a6STrond Myklebust 1441173912a6STrond Myklebust #ifdef CONFIG_PROC_FS 1442173912a6STrond Myklebust static int create_cache_proc_entries(struct cache_detail *cd) 1443173912a6STrond Myklebust { 1444173912a6STrond Myklebust struct proc_dir_entry *p; 1445173912a6STrond Myklebust 1446173912a6STrond Myklebust cd->u.procfs.proc_ent = proc_mkdir(cd->name, proc_net_rpc); 1447173912a6STrond Myklebust if (cd->u.procfs.proc_ent == NULL) 1448173912a6STrond Myklebust goto out_nomem; 1449173912a6STrond Myklebust cd->u.procfs.channel_ent = NULL; 1450173912a6STrond Myklebust cd->u.procfs.content_ent = NULL; 1451173912a6STrond Myklebust 1452173912a6STrond Myklebust p = proc_create_data("flush", S_IFREG|S_IRUSR|S_IWUSR, 1453173912a6STrond Myklebust cd->u.procfs.proc_ent, 1454173912a6STrond Myklebust &cache_flush_operations_procfs, cd); 1455173912a6STrond Myklebust cd->u.procfs.flush_ent = p; 1456173912a6STrond Myklebust if (p == NULL) 1457173912a6STrond Myklebust goto out_nomem; 1458173912a6STrond Myklebust 1459173912a6STrond Myklebust if (cd->cache_upcall || cd->cache_parse) { 1460173912a6STrond Myklebust p = proc_create_data("channel", S_IFREG|S_IRUSR|S_IWUSR, 1461173912a6STrond Myklebust cd->u.procfs.proc_ent, 1462173912a6STrond Myklebust &cache_file_operations_procfs, cd); 1463173912a6STrond Myklebust cd->u.procfs.channel_ent = p; 1464173912a6STrond Myklebust if (p == NULL) 1465173912a6STrond Myklebust goto out_nomem; 1466173912a6STrond Myklebust } 1467173912a6STrond Myklebust if (cd->cache_show) { 1468173912a6STrond Myklebust p = proc_create_data("content", S_IFREG|S_IRUSR|S_IWUSR, 1469173912a6STrond Myklebust cd->u.procfs.proc_ent, 1470173912a6STrond Myklebust &content_file_operations_procfs, cd); 1471173912a6STrond Myklebust cd->u.procfs.content_ent = p; 1472173912a6STrond Myklebust if (p == NULL) 1473173912a6STrond Myklebust goto out_nomem; 1474173912a6STrond Myklebust } 1475173912a6STrond Myklebust return 0; 1476173912a6STrond Myklebust out_nomem: 1477173912a6STrond Myklebust remove_cache_proc_entries(cd); 1478173912a6STrond Myklebust return -ENOMEM; 1479173912a6STrond Myklebust } 1480173912a6STrond Myklebust #else /* CONFIG_PROC_FS */ 1481173912a6STrond Myklebust static int create_cache_proc_entries(struct cache_detail *cd) 1482173912a6STrond Myklebust { 1483173912a6STrond Myklebust return 0; 1484173912a6STrond Myklebust } 1485173912a6STrond Myklebust #endif 1486173912a6STrond Myklebust 1487173912a6STrond Myklebust int cache_register(struct cache_detail *cd) 1488173912a6STrond Myklebust { 1489173912a6STrond Myklebust int ret; 1490173912a6STrond Myklebust 1491173912a6STrond Myklebust sunrpc_init_cache_detail(cd); 1492173912a6STrond Myklebust ret = create_cache_proc_entries(cd); 1493173912a6STrond Myklebust if (ret) 1494173912a6STrond Myklebust sunrpc_destroy_cache_detail(cd); 1495173912a6STrond Myklebust return ret; 1496173912a6STrond Myklebust } 1497173912a6STrond Myklebust EXPORT_SYMBOL_GPL(cache_register); 1498173912a6STrond Myklebust 1499173912a6STrond Myklebust void cache_unregister(struct cache_detail *cd) 1500173912a6STrond Myklebust { 1501173912a6STrond Myklebust remove_cache_proc_entries(cd); 1502173912a6STrond Myklebust sunrpc_destroy_cache_detail(cd); 1503173912a6STrond Myklebust } 1504173912a6STrond Myklebust EXPORT_SYMBOL_GPL(cache_unregister); 15058854e82dSTrond Myklebust 15068854e82dSTrond Myklebust static ssize_t cache_read_pipefs(struct file *filp, char __user *buf, 15078854e82dSTrond Myklebust size_t count, loff_t *ppos) 15088854e82dSTrond Myklebust { 15098854e82dSTrond Myklebust struct cache_detail *cd = RPC_I(filp->f_path.dentry->d_inode)->private; 15108854e82dSTrond Myklebust 15118854e82dSTrond Myklebust return cache_read(filp, buf, count, ppos, cd); 15128854e82dSTrond Myklebust } 15138854e82dSTrond Myklebust 15148854e82dSTrond Myklebust static ssize_t cache_write_pipefs(struct file *filp, const char __user *buf, 15158854e82dSTrond Myklebust size_t count, loff_t *ppos) 15168854e82dSTrond Myklebust { 15178854e82dSTrond Myklebust struct cache_detail *cd = RPC_I(filp->f_path.dentry->d_inode)->private; 15188854e82dSTrond Myklebust 15198854e82dSTrond Myklebust return cache_write(filp, buf, count, ppos, cd); 15208854e82dSTrond Myklebust } 15218854e82dSTrond Myklebust 15228854e82dSTrond Myklebust static unsigned int cache_poll_pipefs(struct file *filp, poll_table *wait) 15238854e82dSTrond Myklebust { 15248854e82dSTrond Myklebust struct cache_detail *cd = RPC_I(filp->f_path.dentry->d_inode)->private; 15258854e82dSTrond Myklebust 15268854e82dSTrond Myklebust return cache_poll(filp, wait, cd); 15278854e82dSTrond Myklebust } 15288854e82dSTrond Myklebust 15298854e82dSTrond Myklebust static int cache_ioctl_pipefs(struct inode *inode, struct file *filp, 15308854e82dSTrond Myklebust unsigned int cmd, unsigned long arg) 15318854e82dSTrond Myklebust { 15328854e82dSTrond Myklebust struct cache_detail *cd = RPC_I(inode)->private; 15338854e82dSTrond Myklebust 15348854e82dSTrond Myklebust return cache_ioctl(inode, filp, cmd, arg, cd); 15358854e82dSTrond Myklebust } 15368854e82dSTrond Myklebust 15378854e82dSTrond Myklebust static int cache_open_pipefs(struct inode *inode, struct file *filp) 15388854e82dSTrond Myklebust { 15398854e82dSTrond Myklebust struct cache_detail *cd = RPC_I(inode)->private; 15408854e82dSTrond Myklebust 15418854e82dSTrond Myklebust return cache_open(inode, filp, cd); 15428854e82dSTrond Myklebust } 15438854e82dSTrond Myklebust 15448854e82dSTrond Myklebust static int cache_release_pipefs(struct inode *inode, struct file *filp) 15458854e82dSTrond Myklebust { 15468854e82dSTrond Myklebust struct cache_detail *cd = RPC_I(inode)->private; 15478854e82dSTrond Myklebust 15488854e82dSTrond Myklebust return cache_release(inode, filp, cd); 15498854e82dSTrond Myklebust } 15508854e82dSTrond Myklebust 15518854e82dSTrond Myklebust const struct file_operations cache_file_operations_pipefs = { 15528854e82dSTrond Myklebust .owner = THIS_MODULE, 15538854e82dSTrond Myklebust .llseek = no_llseek, 15548854e82dSTrond Myklebust .read = cache_read_pipefs, 15558854e82dSTrond Myklebust .write = cache_write_pipefs, 15568854e82dSTrond Myklebust .poll = cache_poll_pipefs, 15578854e82dSTrond Myklebust .ioctl = cache_ioctl_pipefs, /* for FIONREAD */ 15588854e82dSTrond Myklebust .open = cache_open_pipefs, 15598854e82dSTrond Myklebust .release = cache_release_pipefs, 15608854e82dSTrond Myklebust }; 15618854e82dSTrond Myklebust 15628854e82dSTrond Myklebust static int content_open_pipefs(struct inode *inode, struct file *filp) 15638854e82dSTrond Myklebust { 15648854e82dSTrond Myklebust struct cache_detail *cd = RPC_I(inode)->private; 15658854e82dSTrond Myklebust 15668854e82dSTrond Myklebust return content_open(inode, filp, cd); 15678854e82dSTrond Myklebust } 15688854e82dSTrond Myklebust 1569f7e86ab9STrond Myklebust static int content_release_pipefs(struct inode *inode, struct file *filp) 1570f7e86ab9STrond Myklebust { 1571f7e86ab9STrond Myklebust struct cache_detail *cd = RPC_I(inode)->private; 1572f7e86ab9STrond Myklebust 1573f7e86ab9STrond Myklebust return content_release(inode, filp, cd); 1574f7e86ab9STrond Myklebust } 1575f7e86ab9STrond Myklebust 15768854e82dSTrond Myklebust const struct file_operations content_file_operations_pipefs = { 15778854e82dSTrond Myklebust .open = content_open_pipefs, 15788854e82dSTrond Myklebust .read = seq_read, 15798854e82dSTrond Myklebust .llseek = seq_lseek, 1580f7e86ab9STrond Myklebust .release = content_release_pipefs, 15818854e82dSTrond Myklebust }; 15828854e82dSTrond Myklebust 1583f7e86ab9STrond Myklebust static int open_flush_pipefs(struct inode *inode, struct file *filp) 1584f7e86ab9STrond Myklebust { 1585f7e86ab9STrond Myklebust struct cache_detail *cd = RPC_I(inode)->private; 1586f7e86ab9STrond Myklebust 1587f7e86ab9STrond Myklebust return open_flush(inode, filp, cd); 1588f7e86ab9STrond Myklebust } 1589f7e86ab9STrond Myklebust 1590f7e86ab9STrond Myklebust static int release_flush_pipefs(struct inode *inode, struct file *filp) 1591f7e86ab9STrond Myklebust { 1592f7e86ab9STrond Myklebust struct cache_detail *cd = RPC_I(inode)->private; 1593f7e86ab9STrond Myklebust 1594f7e86ab9STrond Myklebust return release_flush(inode, filp, cd); 1595f7e86ab9STrond Myklebust } 1596f7e86ab9STrond Myklebust 15978854e82dSTrond Myklebust static ssize_t read_flush_pipefs(struct file *filp, char __user *buf, 15988854e82dSTrond Myklebust size_t count, loff_t *ppos) 15998854e82dSTrond Myklebust { 16008854e82dSTrond Myklebust struct cache_detail *cd = RPC_I(filp->f_path.dentry->d_inode)->private; 16018854e82dSTrond Myklebust 16028854e82dSTrond Myklebust return read_flush(filp, buf, count, ppos, cd); 16038854e82dSTrond Myklebust } 16048854e82dSTrond Myklebust 16058854e82dSTrond Myklebust static ssize_t write_flush_pipefs(struct file *filp, 16068854e82dSTrond Myklebust const char __user *buf, 16078854e82dSTrond Myklebust size_t count, loff_t *ppos) 16088854e82dSTrond Myklebust { 16098854e82dSTrond Myklebust struct cache_detail *cd = RPC_I(filp->f_path.dentry->d_inode)->private; 16108854e82dSTrond Myklebust 16118854e82dSTrond Myklebust return write_flush(filp, buf, count, ppos, cd); 16128854e82dSTrond Myklebust } 16138854e82dSTrond Myklebust 16148854e82dSTrond Myklebust const struct file_operations cache_flush_operations_pipefs = { 1615f7e86ab9STrond Myklebust .open = open_flush_pipefs, 16168854e82dSTrond Myklebust .read = read_flush_pipefs, 16178854e82dSTrond Myklebust .write = write_flush_pipefs, 1618f7e86ab9STrond Myklebust .release = release_flush_pipefs, 16198854e82dSTrond Myklebust }; 16208854e82dSTrond Myklebust 16218854e82dSTrond Myklebust int sunrpc_cache_register_pipefs(struct dentry *parent, 16228854e82dSTrond Myklebust const char *name, mode_t umode, 16238854e82dSTrond Myklebust struct cache_detail *cd) 16248854e82dSTrond Myklebust { 16258854e82dSTrond Myklebust struct qstr q; 16268854e82dSTrond Myklebust struct dentry *dir; 16278854e82dSTrond Myklebust int ret = 0; 16288854e82dSTrond Myklebust 16298854e82dSTrond Myklebust sunrpc_init_cache_detail(cd); 16308854e82dSTrond Myklebust q.name = name; 16318854e82dSTrond Myklebust q.len = strlen(name); 16328854e82dSTrond Myklebust q.hash = full_name_hash(q.name, q.len); 16338854e82dSTrond Myklebust dir = rpc_create_cache_dir(parent, &q, umode, cd); 16348854e82dSTrond Myklebust if (!IS_ERR(dir)) 16358854e82dSTrond Myklebust cd->u.pipefs.dir = dir; 16368854e82dSTrond Myklebust else { 16378854e82dSTrond Myklebust sunrpc_destroy_cache_detail(cd); 16388854e82dSTrond Myklebust ret = PTR_ERR(dir); 16398854e82dSTrond Myklebust } 16408854e82dSTrond Myklebust return ret; 16418854e82dSTrond Myklebust } 16428854e82dSTrond Myklebust EXPORT_SYMBOL_GPL(sunrpc_cache_register_pipefs); 16438854e82dSTrond Myklebust 16448854e82dSTrond Myklebust void sunrpc_cache_unregister_pipefs(struct cache_detail *cd) 16458854e82dSTrond Myklebust { 16468854e82dSTrond Myklebust rpc_remove_cache_dir(cd->u.pipefs.dir); 16478854e82dSTrond Myklebust cd->u.pipefs.dir = NULL; 16488854e82dSTrond Myklebust sunrpc_destroy_cache_detail(cd); 16498854e82dSTrond Myklebust } 16508854e82dSTrond Myklebust EXPORT_SYMBOL_GPL(sunrpc_cache_unregister_pipefs); 16518854e82dSTrond Myklebust 1652