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> 3199df95a2SFrederic Weisbecker #include <linux/smp_lock.h> 321da177e4SLinus Torvalds #include <asm/ioctls.h> 331da177e4SLinus Torvalds #include <linux/sunrpc/types.h> 341da177e4SLinus Torvalds #include <linux/sunrpc/cache.h> 351da177e4SLinus Torvalds #include <linux/sunrpc/stats.h> 368854e82dSTrond Myklebust #include <linux/sunrpc/rpc_pipe_fs.h> 371da177e4SLinus Torvalds 381da177e4SLinus Torvalds #define RPCDBG_FACILITY RPCDBG_CACHE 391da177e4SLinus Torvalds 40e0bb89efSJ.Bruce Fields static int cache_defer_req(struct cache_req *req, struct cache_head *item); 411da177e4SLinus Torvalds static void cache_revisit_request(struct cache_head *item); 421da177e4SLinus Torvalds 4374cae61aSAdrian Bunk static void cache_init(struct cache_head *h) 441da177e4SLinus Torvalds { 451da177e4SLinus Torvalds time_t now = get_seconds(); 461da177e4SLinus Torvalds h->next = NULL; 471da177e4SLinus Torvalds h->flags = 0; 48baab935fSNeilBrown kref_init(&h->ref); 491da177e4SLinus Torvalds h->expiry_time = now + CACHE_NEW_EXPIRY; 501da177e4SLinus Torvalds h->last_refresh = now; 511da177e4SLinus Torvalds } 521da177e4SLinus Torvalds 532f50d8b6SNeilBrown static inline int cache_is_expired(struct cache_detail *detail, struct cache_head *h) 542f50d8b6SNeilBrown { 552f50d8b6SNeilBrown return (h->expiry_time < get_seconds()) || 562f50d8b6SNeilBrown (detail->flush_time > h->last_refresh); 572f50d8b6SNeilBrown } 582f50d8b6SNeilBrown 5915a5f6bdSNeilBrown struct cache_head *sunrpc_cache_lookup(struct cache_detail *detail, 6015a5f6bdSNeilBrown struct cache_head *key, int hash) 6115a5f6bdSNeilBrown { 6215a5f6bdSNeilBrown struct cache_head **head, **hp; 63d202cce8SNeilBrown struct cache_head *new = NULL, *freeme = NULL; 6415a5f6bdSNeilBrown 6515a5f6bdSNeilBrown head = &detail->hash_table[hash]; 6615a5f6bdSNeilBrown 6715a5f6bdSNeilBrown read_lock(&detail->hash_lock); 6815a5f6bdSNeilBrown 6915a5f6bdSNeilBrown for (hp=head; *hp != NULL ; hp = &(*hp)->next) { 7015a5f6bdSNeilBrown struct cache_head *tmp = *hp; 7115a5f6bdSNeilBrown if (detail->match(tmp, key)) { 72d202cce8SNeilBrown if (cache_is_expired(detail, tmp)) 73d202cce8SNeilBrown /* This entry is expired, we will discard it. */ 74d202cce8SNeilBrown break; 7515a5f6bdSNeilBrown cache_get(tmp); 7615a5f6bdSNeilBrown read_unlock(&detail->hash_lock); 7715a5f6bdSNeilBrown return tmp; 7815a5f6bdSNeilBrown } 7915a5f6bdSNeilBrown } 8015a5f6bdSNeilBrown read_unlock(&detail->hash_lock); 8115a5f6bdSNeilBrown /* Didn't find anything, insert an empty entry */ 8215a5f6bdSNeilBrown 8315a5f6bdSNeilBrown new = detail->alloc(); 8415a5f6bdSNeilBrown if (!new) 8515a5f6bdSNeilBrown return NULL; 862f34931fSNeil Brown /* must fully initialise 'new', else 872f34931fSNeil Brown * we might get lose if we need to 882f34931fSNeil Brown * cache_put it soon. 892f34931fSNeil Brown */ 9015a5f6bdSNeilBrown cache_init(new); 912f34931fSNeil Brown detail->init(new, key); 9215a5f6bdSNeilBrown 9315a5f6bdSNeilBrown write_lock(&detail->hash_lock); 9415a5f6bdSNeilBrown 9515a5f6bdSNeilBrown /* check if entry appeared while we slept */ 9615a5f6bdSNeilBrown for (hp=head; *hp != NULL ; hp = &(*hp)->next) { 9715a5f6bdSNeilBrown struct cache_head *tmp = *hp; 9815a5f6bdSNeilBrown if (detail->match(tmp, key)) { 99d202cce8SNeilBrown if (cache_is_expired(detail, tmp)) { 100d202cce8SNeilBrown *hp = tmp->next; 101d202cce8SNeilBrown tmp->next = NULL; 102d202cce8SNeilBrown detail->entries --; 103d202cce8SNeilBrown freeme = tmp; 104d202cce8SNeilBrown break; 105d202cce8SNeilBrown } 10615a5f6bdSNeilBrown cache_get(tmp); 10715a5f6bdSNeilBrown write_unlock(&detail->hash_lock); 108baab935fSNeilBrown cache_put(new, detail); 10915a5f6bdSNeilBrown return tmp; 11015a5f6bdSNeilBrown } 11115a5f6bdSNeilBrown } 11215a5f6bdSNeilBrown new->next = *head; 11315a5f6bdSNeilBrown *head = new; 11415a5f6bdSNeilBrown detail->entries++; 11515a5f6bdSNeilBrown cache_get(new); 11615a5f6bdSNeilBrown write_unlock(&detail->hash_lock); 11715a5f6bdSNeilBrown 118d202cce8SNeilBrown if (freeme) 119d202cce8SNeilBrown cache_put(freeme, detail); 12015a5f6bdSNeilBrown return new; 12115a5f6bdSNeilBrown } 12224c3767eSTrond Myklebust EXPORT_SYMBOL_GPL(sunrpc_cache_lookup); 12315a5f6bdSNeilBrown 124ebd0cb1aSNeilBrown 125f866a819SNeilBrown static void cache_dequeue(struct cache_detail *detail, struct cache_head *ch); 126ebd0cb1aSNeilBrown 127908329f2SNeilBrown static void cache_fresh_locked(struct cache_head *head, time_t expiry) 128ebd0cb1aSNeilBrown { 129ebd0cb1aSNeilBrown head->expiry_time = expiry; 130ebd0cb1aSNeilBrown head->last_refresh = get_seconds(); 131908329f2SNeilBrown set_bit(CACHE_VALID, &head->flags); 132ebd0cb1aSNeilBrown } 133ebd0cb1aSNeilBrown 134ebd0cb1aSNeilBrown static void cache_fresh_unlocked(struct cache_head *head, 135908329f2SNeilBrown struct cache_detail *detail) 136ebd0cb1aSNeilBrown { 137ebd0cb1aSNeilBrown if (test_and_clear_bit(CACHE_PENDING, &head->flags)) { 138ebd0cb1aSNeilBrown cache_revisit_request(head); 139f866a819SNeilBrown cache_dequeue(detail, head); 140ebd0cb1aSNeilBrown } 141ebd0cb1aSNeilBrown } 142ebd0cb1aSNeilBrown 14315a5f6bdSNeilBrown struct cache_head *sunrpc_cache_update(struct cache_detail *detail, 14415a5f6bdSNeilBrown struct cache_head *new, struct cache_head *old, int hash) 14515a5f6bdSNeilBrown { 14615a5f6bdSNeilBrown /* The 'old' entry is to be replaced by 'new'. 14715a5f6bdSNeilBrown * If 'old' is not VALID, we update it directly, 14815a5f6bdSNeilBrown * otherwise we need to replace it 14915a5f6bdSNeilBrown */ 15015a5f6bdSNeilBrown struct cache_head **head; 15115a5f6bdSNeilBrown struct cache_head *tmp; 15215a5f6bdSNeilBrown 15315a5f6bdSNeilBrown if (!test_bit(CACHE_VALID, &old->flags)) { 15415a5f6bdSNeilBrown write_lock(&detail->hash_lock); 15515a5f6bdSNeilBrown if (!test_bit(CACHE_VALID, &old->flags)) { 15615a5f6bdSNeilBrown if (test_bit(CACHE_NEGATIVE, &new->flags)) 15715a5f6bdSNeilBrown set_bit(CACHE_NEGATIVE, &old->flags); 15815a5f6bdSNeilBrown else 15915a5f6bdSNeilBrown detail->update(old, new); 160908329f2SNeilBrown cache_fresh_locked(old, new->expiry_time); 16115a5f6bdSNeilBrown write_unlock(&detail->hash_lock); 162908329f2SNeilBrown cache_fresh_unlocked(old, detail); 16315a5f6bdSNeilBrown return old; 16415a5f6bdSNeilBrown } 16515a5f6bdSNeilBrown write_unlock(&detail->hash_lock); 16615a5f6bdSNeilBrown } 16715a5f6bdSNeilBrown /* We need to insert a new entry */ 16815a5f6bdSNeilBrown tmp = detail->alloc(); 16915a5f6bdSNeilBrown if (!tmp) { 170baab935fSNeilBrown cache_put(old, detail); 17115a5f6bdSNeilBrown return NULL; 17215a5f6bdSNeilBrown } 17315a5f6bdSNeilBrown cache_init(tmp); 17415a5f6bdSNeilBrown detail->init(tmp, old); 17515a5f6bdSNeilBrown head = &detail->hash_table[hash]; 17615a5f6bdSNeilBrown 17715a5f6bdSNeilBrown write_lock(&detail->hash_lock); 17815a5f6bdSNeilBrown if (test_bit(CACHE_NEGATIVE, &new->flags)) 17915a5f6bdSNeilBrown set_bit(CACHE_NEGATIVE, &tmp->flags); 18015a5f6bdSNeilBrown else 18115a5f6bdSNeilBrown detail->update(tmp, new); 18215a5f6bdSNeilBrown tmp->next = *head; 18315a5f6bdSNeilBrown *head = tmp; 184f2d39586SNeilBrown detail->entries++; 18515a5f6bdSNeilBrown cache_get(tmp); 186908329f2SNeilBrown cache_fresh_locked(tmp, new->expiry_time); 187ebd0cb1aSNeilBrown cache_fresh_locked(old, 0); 18815a5f6bdSNeilBrown write_unlock(&detail->hash_lock); 189908329f2SNeilBrown cache_fresh_unlocked(tmp, detail); 190908329f2SNeilBrown cache_fresh_unlocked(old, detail); 191baab935fSNeilBrown cache_put(old, detail); 19215a5f6bdSNeilBrown return tmp; 19315a5f6bdSNeilBrown } 19424c3767eSTrond Myklebust EXPORT_SYMBOL_GPL(sunrpc_cache_update); 1951da177e4SLinus Torvalds 196bc74b4f5STrond Myklebust static int cache_make_upcall(struct cache_detail *cd, struct cache_head *h) 197bc74b4f5STrond Myklebust { 198bc74b4f5STrond Myklebust if (!cd->cache_upcall) 199bc74b4f5STrond Myklebust return -EINVAL; 200bc74b4f5STrond Myklebust return cd->cache_upcall(cd, h); 201bc74b4f5STrond Myklebust } 202989a19b9SNeilBrown 203989a19b9SNeilBrown static inline int cache_is_valid(struct cache_detail *detail, struct cache_head *h) 204989a19b9SNeilBrown { 205d202cce8SNeilBrown if (!test_bit(CACHE_VALID, &h->flags)) 206989a19b9SNeilBrown return -EAGAIN; 207989a19b9SNeilBrown else { 208989a19b9SNeilBrown /* entry is valid */ 209989a19b9SNeilBrown if (test_bit(CACHE_NEGATIVE, &h->flags)) 210989a19b9SNeilBrown return -ENOENT; 211989a19b9SNeilBrown else 212989a19b9SNeilBrown return 0; 213989a19b9SNeilBrown } 214989a19b9SNeilBrown } 215e9dc1221SJ. Bruce Fields 2161da177e4SLinus Torvalds /* 2171da177e4SLinus Torvalds * This is the generic cache management routine for all 2181da177e4SLinus Torvalds * the authentication caches. 2191da177e4SLinus Torvalds * It checks the currency of a cache item and will (later) 2201da177e4SLinus Torvalds * initiate an upcall to fill it if needed. 2211da177e4SLinus Torvalds * 2221da177e4SLinus Torvalds * 2231da177e4SLinus Torvalds * Returns 0 if the cache_head can be used, or cache_puts it and returns 224989a19b9SNeilBrown * -EAGAIN if upcall is pending and request has been queued 225989a19b9SNeilBrown * -ETIMEDOUT if upcall failed or request could not be queue or 226989a19b9SNeilBrown * upcall completed but item is still invalid (implying that 227989a19b9SNeilBrown * the cache item has been replaced with a newer one). 2281da177e4SLinus Torvalds * -ENOENT if cache entry was negative 2291da177e4SLinus Torvalds */ 2301da177e4SLinus Torvalds int cache_check(struct cache_detail *detail, 2311da177e4SLinus Torvalds struct cache_head *h, struct cache_req *rqstp) 2321da177e4SLinus Torvalds { 2331da177e4SLinus Torvalds int rv; 2341da177e4SLinus Torvalds long refresh_age, age; 2351da177e4SLinus Torvalds 2361da177e4SLinus Torvalds /* First decide return status as best we can */ 237989a19b9SNeilBrown rv = cache_is_valid(detail, h); 2381da177e4SLinus Torvalds 2391da177e4SLinus Torvalds /* now see if we want to start an upcall */ 2401da177e4SLinus Torvalds refresh_age = (h->expiry_time - h->last_refresh); 2411da177e4SLinus Torvalds age = get_seconds() - h->last_refresh; 2421da177e4SLinus Torvalds 2431da177e4SLinus Torvalds if (rqstp == NULL) { 2441da177e4SLinus Torvalds if (rv == -EAGAIN) 2451da177e4SLinus Torvalds rv = -ENOENT; 2461da177e4SLinus Torvalds } else if (rv == -EAGAIN || age > refresh_age/2) { 24746121cf7SChuck Lever dprintk("RPC: Want update, refage=%ld, age=%ld\n", 24846121cf7SChuck Lever refresh_age, age); 2491da177e4SLinus Torvalds if (!test_and_set_bit(CACHE_PENDING, &h->flags)) { 2501da177e4SLinus Torvalds switch (cache_make_upcall(detail, h)) { 2511da177e4SLinus Torvalds case -EINVAL: 2521da177e4SLinus Torvalds clear_bit(CACHE_PENDING, &h->flags); 2535c4d2639SNeilBrown cache_revisit_request(h); 2541da177e4SLinus Torvalds if (rv == -EAGAIN) { 2551da177e4SLinus Torvalds set_bit(CACHE_NEGATIVE, &h->flags); 256908329f2SNeilBrown cache_fresh_locked(h, get_seconds()+CACHE_NEW_EXPIRY); 257908329f2SNeilBrown cache_fresh_unlocked(h, detail); 2581da177e4SLinus Torvalds rv = -ENOENT; 2591da177e4SLinus Torvalds } 2601da177e4SLinus Torvalds break; 2611da177e4SLinus Torvalds 2621da177e4SLinus Torvalds case -EAGAIN: 2631da177e4SLinus Torvalds clear_bit(CACHE_PENDING, &h->flags); 2641da177e4SLinus Torvalds cache_revisit_request(h); 2651da177e4SLinus Torvalds break; 2661da177e4SLinus Torvalds } 2671da177e4SLinus Torvalds } 2681da177e4SLinus Torvalds } 2691da177e4SLinus Torvalds 270989a19b9SNeilBrown if (rv == -EAGAIN) { 2719e4c6379SNeilBrown if (cache_defer_req(rqstp, h) < 0) { 272989a19b9SNeilBrown /* Request is not deferred */ 273989a19b9SNeilBrown rv = cache_is_valid(detail, h); 2741da177e4SLinus Torvalds if (rv == -EAGAIN) 275e0bb89efSJ.Bruce Fields rv = -ETIMEDOUT; 276989a19b9SNeilBrown } 277989a19b9SNeilBrown } 2784013edeaSNeilBrown if (rv) 279baab935fSNeilBrown cache_put(h, detail); 2801da177e4SLinus Torvalds return rv; 2811da177e4SLinus Torvalds } 28224c3767eSTrond Myklebust EXPORT_SYMBOL_GPL(cache_check); 2831da177e4SLinus Torvalds 2841da177e4SLinus Torvalds /* 2851da177e4SLinus Torvalds * caches need to be periodically cleaned. 2861da177e4SLinus Torvalds * For this we maintain a list of cache_detail and 2871da177e4SLinus Torvalds * a current pointer into that list and into the table 2881da177e4SLinus Torvalds * for that entry. 2891da177e4SLinus Torvalds * 2901da177e4SLinus Torvalds * Each time clean_cache is called it finds the next non-empty entry 2911da177e4SLinus Torvalds * in the current table and walks the list in that entry 2921da177e4SLinus Torvalds * looking for entries that can be removed. 2931da177e4SLinus Torvalds * 2941da177e4SLinus Torvalds * An entry gets removed if: 2951da177e4SLinus Torvalds * - The expiry is before current time 2961da177e4SLinus Torvalds * - The last_refresh time is before the flush_time for that cache 2971da177e4SLinus Torvalds * 2981da177e4SLinus Torvalds * later we might drop old entries with non-NEVER expiry if that table 2991da177e4SLinus Torvalds * is getting 'full' for some definition of 'full' 3001da177e4SLinus Torvalds * 3011da177e4SLinus Torvalds * The question of "how often to scan a table" is an interesting one 3021da177e4SLinus Torvalds * and is answered in part by the use of the "nextcheck" field in the 3031da177e4SLinus Torvalds * cache_detail. 3041da177e4SLinus Torvalds * When a scan of a table begins, the nextcheck field is set to a time 3051da177e4SLinus Torvalds * that is well into the future. 3061da177e4SLinus Torvalds * While scanning, if an expiry time is found that is earlier than the 3071da177e4SLinus Torvalds * current nextcheck time, nextcheck is set to that expiry time. 3081da177e4SLinus Torvalds * If the flush_time is ever set to a time earlier than the nextcheck 3091da177e4SLinus Torvalds * time, the nextcheck time is then set to that flush_time. 3101da177e4SLinus Torvalds * 3111da177e4SLinus Torvalds * A table is then only scanned if the current time is at least 3121da177e4SLinus Torvalds * the nextcheck time. 3131da177e4SLinus Torvalds * 3141da177e4SLinus Torvalds */ 3151da177e4SLinus Torvalds 3161da177e4SLinus Torvalds static LIST_HEAD(cache_list); 3171da177e4SLinus Torvalds static DEFINE_SPINLOCK(cache_list_lock); 3181da177e4SLinus Torvalds static struct cache_detail *current_detail; 3191da177e4SLinus Torvalds static int current_index; 3201da177e4SLinus Torvalds 32165f27f38SDavid Howells static void do_cache_clean(struct work_struct *work); 3228eab945cSArtem Bityutskiy static struct delayed_work cache_cleaner; 3231da177e4SLinus Torvalds 3245b7a1b9fSTrond Myklebust static void sunrpc_init_cache_detail(struct cache_detail *cd) 3251da177e4SLinus Torvalds { 3261da177e4SLinus Torvalds rwlock_init(&cd->hash_lock); 3271da177e4SLinus Torvalds INIT_LIST_HEAD(&cd->queue); 3281da177e4SLinus Torvalds spin_lock(&cache_list_lock); 3291da177e4SLinus Torvalds cd->nextcheck = 0; 3301da177e4SLinus Torvalds cd->entries = 0; 3311da177e4SLinus Torvalds atomic_set(&cd->readers, 0); 3321da177e4SLinus Torvalds cd->last_close = 0; 3331da177e4SLinus Torvalds cd->last_warn = -1; 3341da177e4SLinus Torvalds list_add(&cd->others, &cache_list); 3351da177e4SLinus Torvalds spin_unlock(&cache_list_lock); 3361da177e4SLinus Torvalds 3371da177e4SLinus Torvalds /* start the cleaning process */ 33852bad64dSDavid Howells schedule_delayed_work(&cache_cleaner, 0); 3391da177e4SLinus Torvalds } 3401da177e4SLinus Torvalds 3415b7a1b9fSTrond Myklebust static void sunrpc_destroy_cache_detail(struct cache_detail *cd) 3421da177e4SLinus Torvalds { 3431da177e4SLinus Torvalds cache_purge(cd); 3441da177e4SLinus Torvalds spin_lock(&cache_list_lock); 3451da177e4SLinus Torvalds write_lock(&cd->hash_lock); 3461da177e4SLinus Torvalds if (cd->entries || atomic_read(&cd->inuse)) { 3471da177e4SLinus Torvalds write_unlock(&cd->hash_lock); 3481da177e4SLinus Torvalds spin_unlock(&cache_list_lock); 349df95a9d4SJ. Bruce Fields goto out; 3501da177e4SLinus Torvalds } 3511da177e4SLinus Torvalds if (current_detail == cd) 3521da177e4SLinus Torvalds current_detail = NULL; 3531da177e4SLinus Torvalds list_del_init(&cd->others); 3541da177e4SLinus Torvalds write_unlock(&cd->hash_lock); 3551da177e4SLinus Torvalds spin_unlock(&cache_list_lock); 3561da177e4SLinus Torvalds if (list_empty(&cache_list)) { 3571da177e4SLinus Torvalds /* module must be being unloaded so its safe to kill the worker */ 3584011cd97STrond Myklebust cancel_delayed_work_sync(&cache_cleaner); 3591da177e4SLinus Torvalds } 360df95a9d4SJ. Bruce Fields return; 361df95a9d4SJ. Bruce Fields out: 362df95a9d4SJ. Bruce Fields printk(KERN_ERR "nfsd: failed to unregister %s cache\n", cd->name); 3631da177e4SLinus Torvalds } 3641da177e4SLinus Torvalds 3651da177e4SLinus Torvalds /* clean cache tries to find something to clean 3661da177e4SLinus Torvalds * and cleans it. 3671da177e4SLinus Torvalds * It returns 1 if it cleaned something, 3681da177e4SLinus Torvalds * 0 if it didn't find anything this time 3691da177e4SLinus Torvalds * -1 if it fell off the end of the list. 3701da177e4SLinus Torvalds */ 3711da177e4SLinus Torvalds static int cache_clean(void) 3721da177e4SLinus Torvalds { 3731da177e4SLinus Torvalds int rv = 0; 3741da177e4SLinus Torvalds struct list_head *next; 3751da177e4SLinus Torvalds 3761da177e4SLinus Torvalds spin_lock(&cache_list_lock); 3771da177e4SLinus Torvalds 3781da177e4SLinus Torvalds /* find a suitable table if we don't already have one */ 3791da177e4SLinus Torvalds while (current_detail == NULL || 3801da177e4SLinus Torvalds current_index >= current_detail->hash_size) { 3811da177e4SLinus Torvalds if (current_detail) 3821da177e4SLinus Torvalds next = current_detail->others.next; 3831da177e4SLinus Torvalds else 3841da177e4SLinus Torvalds next = cache_list.next; 3851da177e4SLinus Torvalds if (next == &cache_list) { 3861da177e4SLinus Torvalds current_detail = NULL; 3871da177e4SLinus Torvalds spin_unlock(&cache_list_lock); 3881da177e4SLinus Torvalds return -1; 3891da177e4SLinus Torvalds } 3901da177e4SLinus Torvalds current_detail = list_entry(next, struct cache_detail, others); 3911da177e4SLinus Torvalds if (current_detail->nextcheck > get_seconds()) 3921da177e4SLinus Torvalds current_index = current_detail->hash_size; 3931da177e4SLinus Torvalds else { 3941da177e4SLinus Torvalds current_index = 0; 3951da177e4SLinus Torvalds current_detail->nextcheck = get_seconds()+30*60; 3961da177e4SLinus Torvalds } 3971da177e4SLinus Torvalds } 3981da177e4SLinus Torvalds 3991da177e4SLinus Torvalds /* find a non-empty bucket in the table */ 4001da177e4SLinus Torvalds while (current_detail && 4011da177e4SLinus Torvalds current_index < current_detail->hash_size && 4021da177e4SLinus Torvalds current_detail->hash_table[current_index] == NULL) 4031da177e4SLinus Torvalds current_index++; 4041da177e4SLinus Torvalds 4051da177e4SLinus Torvalds /* find a cleanable entry in the bucket and clean it, or set to next bucket */ 4061da177e4SLinus Torvalds 4071da177e4SLinus Torvalds if (current_detail && current_index < current_detail->hash_size) { 4081da177e4SLinus Torvalds struct cache_head *ch, **cp; 4091da177e4SLinus Torvalds struct cache_detail *d; 4101da177e4SLinus Torvalds 4111da177e4SLinus Torvalds write_lock(¤t_detail->hash_lock); 4121da177e4SLinus Torvalds 4131da177e4SLinus Torvalds /* Ok, now to clean this strand */ 4141da177e4SLinus Torvalds 4151da177e4SLinus Torvalds cp = & current_detail->hash_table[current_index]; 4163af4974eSNeilBrown for (ch = *cp ; ch ; cp = & ch->next, ch = *cp) { 4171da177e4SLinus Torvalds if (current_detail->nextcheck > ch->expiry_time) 4181da177e4SLinus Torvalds current_detail->nextcheck = ch->expiry_time+1; 4192f50d8b6SNeilBrown if (!cache_is_expired(current_detail, ch)) 4201da177e4SLinus Torvalds continue; 4211da177e4SLinus Torvalds 4221da177e4SLinus Torvalds *cp = ch->next; 4231da177e4SLinus Torvalds ch->next = NULL; 4241da177e4SLinus Torvalds current_detail->entries--; 4251da177e4SLinus Torvalds rv = 1; 4263af4974eSNeilBrown break; 4271da177e4SLinus Torvalds } 4283af4974eSNeilBrown 4291da177e4SLinus Torvalds write_unlock(¤t_detail->hash_lock); 4301da177e4SLinus Torvalds d = current_detail; 4311da177e4SLinus Torvalds if (!ch) 4321da177e4SLinus Torvalds current_index ++; 4331da177e4SLinus Torvalds spin_unlock(&cache_list_lock); 4345c4d2639SNeilBrown if (ch) { 4353af4974eSNeilBrown if (test_and_clear_bit(CACHE_PENDING, &ch->flags)) 4363af4974eSNeilBrown cache_dequeue(current_detail, ch); 4375c4d2639SNeilBrown cache_revisit_request(ch); 438baab935fSNeilBrown cache_put(ch, d); 4395c4d2639SNeilBrown } 4401da177e4SLinus Torvalds } else 4411da177e4SLinus Torvalds spin_unlock(&cache_list_lock); 4421da177e4SLinus Torvalds 4431da177e4SLinus Torvalds return rv; 4441da177e4SLinus Torvalds } 4451da177e4SLinus Torvalds 4461da177e4SLinus Torvalds /* 4471da177e4SLinus Torvalds * We want to regularly clean the cache, so we need to schedule some work ... 4481da177e4SLinus Torvalds */ 44965f27f38SDavid Howells static void do_cache_clean(struct work_struct *work) 4501da177e4SLinus Torvalds { 4511da177e4SLinus Torvalds int delay = 5; 4521da177e4SLinus Torvalds if (cache_clean() == -1) 4536aad89c8SAnton Blanchard delay = round_jiffies_relative(30*HZ); 4541da177e4SLinus Torvalds 4551da177e4SLinus Torvalds if (list_empty(&cache_list)) 4561da177e4SLinus Torvalds delay = 0; 4571da177e4SLinus Torvalds 4581da177e4SLinus Torvalds if (delay) 4591da177e4SLinus Torvalds schedule_delayed_work(&cache_cleaner, delay); 4601da177e4SLinus Torvalds } 4611da177e4SLinus Torvalds 4621da177e4SLinus Torvalds 4631da177e4SLinus Torvalds /* 4641da177e4SLinus Torvalds * Clean all caches promptly. This just calls cache_clean 4651da177e4SLinus Torvalds * repeatedly until we are sure that every cache has had a chance to 4661da177e4SLinus Torvalds * be fully cleaned 4671da177e4SLinus Torvalds */ 4681da177e4SLinus Torvalds void cache_flush(void) 4691da177e4SLinus Torvalds { 4701da177e4SLinus Torvalds while (cache_clean() != -1) 4711da177e4SLinus Torvalds cond_resched(); 4721da177e4SLinus Torvalds while (cache_clean() != -1) 4731da177e4SLinus Torvalds cond_resched(); 4741da177e4SLinus Torvalds } 47524c3767eSTrond Myklebust EXPORT_SYMBOL_GPL(cache_flush); 4761da177e4SLinus Torvalds 4771da177e4SLinus Torvalds void cache_purge(struct cache_detail *detail) 4781da177e4SLinus Torvalds { 4791da177e4SLinus Torvalds detail->flush_time = LONG_MAX; 4801da177e4SLinus Torvalds detail->nextcheck = get_seconds(); 4811da177e4SLinus Torvalds cache_flush(); 4821da177e4SLinus Torvalds detail->flush_time = 1; 4831da177e4SLinus Torvalds } 48424c3767eSTrond Myklebust EXPORT_SYMBOL_GPL(cache_purge); 4851da177e4SLinus Torvalds 4861da177e4SLinus Torvalds 4871da177e4SLinus Torvalds /* 4881da177e4SLinus Torvalds * Deferral and Revisiting of Requests. 4891da177e4SLinus Torvalds * 4901da177e4SLinus Torvalds * If a cache lookup finds a pending entry, we 4911da177e4SLinus Torvalds * need to defer the request and revisit it later. 4921da177e4SLinus Torvalds * All deferred requests are stored in a hash table, 4931da177e4SLinus Torvalds * indexed by "struct cache_head *". 4941da177e4SLinus Torvalds * As it may be wasteful to store a whole request 4951da177e4SLinus Torvalds * structure, we allow the request to provide a 4961da177e4SLinus Torvalds * deferred form, which must contain a 4971da177e4SLinus Torvalds * 'struct cache_deferred_req' 4981da177e4SLinus Torvalds * This cache_deferred_req contains a method to allow 4991da177e4SLinus Torvalds * it to be revisited when cache info is available 5001da177e4SLinus Torvalds */ 5011da177e4SLinus Torvalds 5021da177e4SLinus Torvalds #define DFR_HASHSIZE (PAGE_SIZE/sizeof(struct list_head)) 5031da177e4SLinus Torvalds #define DFR_HASH(item) ((((long)item)>>4 ^ (((long)item)>>13)) % DFR_HASHSIZE) 5041da177e4SLinus Torvalds 5051da177e4SLinus Torvalds #define DFR_MAX 300 /* ??? */ 5061da177e4SLinus Torvalds 5071da177e4SLinus Torvalds static DEFINE_SPINLOCK(cache_defer_lock); 5081da177e4SLinus Torvalds static LIST_HEAD(cache_defer_list); 5091da177e4SLinus Torvalds static struct list_head cache_defer_hash[DFR_HASHSIZE]; 5101da177e4SLinus Torvalds static int cache_defer_cnt; 5111da177e4SLinus Torvalds 512e0bb89efSJ.Bruce Fields static int cache_defer_req(struct cache_req *req, struct cache_head *item) 5131da177e4SLinus Torvalds { 514cd68c374SNeilBrown struct cache_deferred_req *dreq, *discard; 5151da177e4SLinus Torvalds int hash = DFR_HASH(item); 5161da177e4SLinus Torvalds 51701f3bd1fSJ.Bruce Fields if (cache_defer_cnt >= DFR_MAX) { 51801f3bd1fSJ.Bruce Fields /* too much in the cache, randomly drop this one, 51901f3bd1fSJ.Bruce Fields * or continue and drop the oldest below 52001f3bd1fSJ.Bruce Fields */ 52101f3bd1fSJ.Bruce Fields if (net_random()&1) 5229e4c6379SNeilBrown return -ENOMEM; 52301f3bd1fSJ.Bruce Fields } 5241da177e4SLinus Torvalds dreq = req->defer(req); 5251da177e4SLinus Torvalds if (dreq == NULL) 5269e4c6379SNeilBrown return -ENOMEM; 5271da177e4SLinus Torvalds 5281da177e4SLinus Torvalds dreq->item = item; 5291da177e4SLinus Torvalds 5301da177e4SLinus Torvalds spin_lock(&cache_defer_lock); 5311da177e4SLinus Torvalds 5321da177e4SLinus Torvalds list_add(&dreq->recent, &cache_defer_list); 5331da177e4SLinus Torvalds 5341da177e4SLinus Torvalds if (cache_defer_hash[hash].next == NULL) 5351da177e4SLinus Torvalds INIT_LIST_HEAD(&cache_defer_hash[hash]); 5361da177e4SLinus Torvalds list_add(&dreq->hash, &cache_defer_hash[hash]); 5371da177e4SLinus Torvalds 5381da177e4SLinus Torvalds /* it is in, now maybe clean up */ 539cd68c374SNeilBrown discard = NULL; 5401da177e4SLinus Torvalds if (++cache_defer_cnt > DFR_MAX) { 541cd68c374SNeilBrown discard = list_entry(cache_defer_list.prev, 54201f3bd1fSJ.Bruce Fields struct cache_deferred_req, recent); 543cd68c374SNeilBrown list_del_init(&discard->recent); 544cd68c374SNeilBrown list_del_init(&discard->hash); 5451da177e4SLinus Torvalds cache_defer_cnt--; 5461da177e4SLinus Torvalds } 5471da177e4SLinus Torvalds spin_unlock(&cache_defer_lock); 5481da177e4SLinus Torvalds 549cd68c374SNeilBrown if (discard) 5501da177e4SLinus Torvalds /* there was one too many */ 551cd68c374SNeilBrown discard->revisit(discard, 1); 552cd68c374SNeilBrown 5534013edeaSNeilBrown if (!test_bit(CACHE_PENDING, &item->flags)) { 5541da177e4SLinus Torvalds /* must have just been validated... */ 5551da177e4SLinus Torvalds cache_revisit_request(item); 5569e4c6379SNeilBrown return -EAGAIN; 5571da177e4SLinus Torvalds } 5589e4c6379SNeilBrown return 0; 559989a19b9SNeilBrown } 5601da177e4SLinus Torvalds 5611da177e4SLinus Torvalds static void cache_revisit_request(struct cache_head *item) 5621da177e4SLinus Torvalds { 5631da177e4SLinus Torvalds struct cache_deferred_req *dreq; 5641da177e4SLinus Torvalds struct list_head pending; 5651da177e4SLinus Torvalds 5661da177e4SLinus Torvalds struct list_head *lp; 5671da177e4SLinus Torvalds int hash = DFR_HASH(item); 5681da177e4SLinus Torvalds 5691da177e4SLinus Torvalds INIT_LIST_HEAD(&pending); 5701da177e4SLinus Torvalds spin_lock(&cache_defer_lock); 5711da177e4SLinus Torvalds 5721da177e4SLinus Torvalds lp = cache_defer_hash[hash].next; 5731da177e4SLinus Torvalds if (lp) { 5741da177e4SLinus Torvalds while (lp != &cache_defer_hash[hash]) { 5751da177e4SLinus Torvalds dreq = list_entry(lp, struct cache_deferred_req, hash); 5761da177e4SLinus Torvalds lp = lp->next; 5771da177e4SLinus Torvalds if (dreq->item == item) { 57867e7328fSNeilBrown list_del_init(&dreq->hash); 5791da177e4SLinus Torvalds list_move(&dreq->recent, &pending); 5801da177e4SLinus Torvalds cache_defer_cnt--; 5811da177e4SLinus Torvalds } 5821da177e4SLinus Torvalds } 5831da177e4SLinus Torvalds } 5841da177e4SLinus Torvalds spin_unlock(&cache_defer_lock); 5851da177e4SLinus Torvalds 5861da177e4SLinus Torvalds while (!list_empty(&pending)) { 5871da177e4SLinus Torvalds dreq = list_entry(pending.next, struct cache_deferred_req, recent); 5881da177e4SLinus Torvalds list_del_init(&dreq->recent); 5891da177e4SLinus Torvalds dreq->revisit(dreq, 0); 5901da177e4SLinus Torvalds } 5911da177e4SLinus Torvalds } 5921da177e4SLinus Torvalds 5931da177e4SLinus Torvalds void cache_clean_deferred(void *owner) 5941da177e4SLinus Torvalds { 5951da177e4SLinus Torvalds struct cache_deferred_req *dreq, *tmp; 5961da177e4SLinus Torvalds struct list_head pending; 5971da177e4SLinus Torvalds 5981da177e4SLinus Torvalds 5991da177e4SLinus Torvalds INIT_LIST_HEAD(&pending); 6001da177e4SLinus Torvalds spin_lock(&cache_defer_lock); 6011da177e4SLinus Torvalds 6021da177e4SLinus Torvalds list_for_each_entry_safe(dreq, tmp, &cache_defer_list, recent) { 6031da177e4SLinus Torvalds if (dreq->owner == owner) { 60467e7328fSNeilBrown list_del_init(&dreq->hash); 6051da177e4SLinus Torvalds list_move(&dreq->recent, &pending); 6061da177e4SLinus Torvalds cache_defer_cnt--; 6071da177e4SLinus Torvalds } 6081da177e4SLinus Torvalds } 6091da177e4SLinus Torvalds spin_unlock(&cache_defer_lock); 6101da177e4SLinus Torvalds 6111da177e4SLinus Torvalds while (!list_empty(&pending)) { 6121da177e4SLinus Torvalds dreq = list_entry(pending.next, struct cache_deferred_req, recent); 6131da177e4SLinus Torvalds list_del_init(&dreq->recent); 6141da177e4SLinus Torvalds dreq->revisit(dreq, 1); 6151da177e4SLinus Torvalds } 6161da177e4SLinus Torvalds } 6171da177e4SLinus Torvalds 6181da177e4SLinus Torvalds /* 6191da177e4SLinus Torvalds * communicate with user-space 6201da177e4SLinus Torvalds * 621a490c681SJ. Bruce Fields * We have a magic /proc file - /proc/sunrpc/<cachename>/channel. 622a490c681SJ. Bruce Fields * On read, you get a full request, or block. 623a490c681SJ. Bruce Fields * On write, an update request is processed. 624a490c681SJ. Bruce Fields * Poll works if anything to read, and always allows write. 6251da177e4SLinus Torvalds * 6261da177e4SLinus Torvalds * Implemented by linked list of requests. Each open file has 627a490c681SJ. Bruce Fields * a ->private that also exists in this list. New requests are added 6281da177e4SLinus Torvalds * to the end and may wakeup and preceding readers. 6291da177e4SLinus Torvalds * New readers are added to the head. If, on read, an item is found with 6301da177e4SLinus Torvalds * CACHE_UPCALLING clear, we free it from the list. 6311da177e4SLinus Torvalds * 6321da177e4SLinus Torvalds */ 6331da177e4SLinus Torvalds 6341da177e4SLinus Torvalds static DEFINE_SPINLOCK(queue_lock); 6354a3e2f71SArjan van de Ven static DEFINE_MUTEX(queue_io_mutex); 6361da177e4SLinus Torvalds 6371da177e4SLinus Torvalds struct cache_queue { 6381da177e4SLinus Torvalds struct list_head list; 6391da177e4SLinus Torvalds int reader; /* if 0, then request */ 6401da177e4SLinus Torvalds }; 6411da177e4SLinus Torvalds struct cache_request { 6421da177e4SLinus Torvalds struct cache_queue q; 6431da177e4SLinus Torvalds struct cache_head *item; 6441da177e4SLinus Torvalds char * buf; 6451da177e4SLinus Torvalds int len; 6461da177e4SLinus Torvalds int readers; 6471da177e4SLinus Torvalds }; 6481da177e4SLinus Torvalds struct cache_reader { 6491da177e4SLinus Torvalds struct cache_queue q; 6501da177e4SLinus Torvalds int offset; /* if non-0, we have a refcnt on next request */ 6511da177e4SLinus Torvalds }; 6521da177e4SLinus Torvalds 653173912a6STrond Myklebust static ssize_t cache_read(struct file *filp, char __user *buf, size_t count, 654173912a6STrond Myklebust loff_t *ppos, struct cache_detail *cd) 6551da177e4SLinus Torvalds { 6561da177e4SLinus Torvalds struct cache_reader *rp = filp->private_data; 6571da177e4SLinus Torvalds struct cache_request *rq; 658da77005fSTrond Myklebust struct inode *inode = filp->f_path.dentry->d_inode; 6591da177e4SLinus Torvalds int err; 6601da177e4SLinus Torvalds 6611da177e4SLinus Torvalds if (count == 0) 6621da177e4SLinus Torvalds return 0; 6631da177e4SLinus Torvalds 664da77005fSTrond Myklebust mutex_lock(&inode->i_mutex); /* protect against multiple concurrent 6651da177e4SLinus Torvalds * readers on this file */ 6661da177e4SLinus Torvalds again: 6671da177e4SLinus Torvalds spin_lock(&queue_lock); 6681da177e4SLinus Torvalds /* need to find next request */ 6691da177e4SLinus Torvalds while (rp->q.list.next != &cd->queue && 6701da177e4SLinus Torvalds list_entry(rp->q.list.next, struct cache_queue, list) 6711da177e4SLinus Torvalds ->reader) { 6721da177e4SLinus Torvalds struct list_head *next = rp->q.list.next; 6731da177e4SLinus Torvalds list_move(&rp->q.list, next); 6741da177e4SLinus Torvalds } 6751da177e4SLinus Torvalds if (rp->q.list.next == &cd->queue) { 6761da177e4SLinus Torvalds spin_unlock(&queue_lock); 677da77005fSTrond Myklebust mutex_unlock(&inode->i_mutex); 67809a62660SKris Katterjohn BUG_ON(rp->offset); 6791da177e4SLinus Torvalds return 0; 6801da177e4SLinus Torvalds } 6811da177e4SLinus Torvalds rq = container_of(rp->q.list.next, struct cache_request, q.list); 68209a62660SKris Katterjohn BUG_ON(rq->q.reader); 6831da177e4SLinus Torvalds if (rp->offset == 0) 6841da177e4SLinus Torvalds rq->readers++; 6851da177e4SLinus Torvalds spin_unlock(&queue_lock); 6861da177e4SLinus Torvalds 6871da177e4SLinus Torvalds if (rp->offset == 0 && !test_bit(CACHE_PENDING, &rq->item->flags)) { 6881da177e4SLinus Torvalds err = -EAGAIN; 6891da177e4SLinus Torvalds spin_lock(&queue_lock); 6901da177e4SLinus Torvalds list_move(&rp->q.list, &rq->q.list); 6911da177e4SLinus Torvalds spin_unlock(&queue_lock); 6921da177e4SLinus Torvalds } else { 6931da177e4SLinus Torvalds if (rp->offset + count > rq->len) 6941da177e4SLinus Torvalds count = rq->len - rp->offset; 6951da177e4SLinus Torvalds err = -EFAULT; 6961da177e4SLinus Torvalds if (copy_to_user(buf, rq->buf + rp->offset, count)) 6971da177e4SLinus Torvalds goto out; 6981da177e4SLinus Torvalds rp->offset += count; 6991da177e4SLinus Torvalds if (rp->offset >= rq->len) { 7001da177e4SLinus Torvalds rp->offset = 0; 7011da177e4SLinus Torvalds spin_lock(&queue_lock); 7021da177e4SLinus Torvalds list_move(&rp->q.list, &rq->q.list); 7031da177e4SLinus Torvalds spin_unlock(&queue_lock); 7041da177e4SLinus Torvalds } 7051da177e4SLinus Torvalds err = 0; 7061da177e4SLinus Torvalds } 7071da177e4SLinus Torvalds out: 7081da177e4SLinus Torvalds if (rp->offset == 0) { 7091da177e4SLinus Torvalds /* need to release rq */ 7101da177e4SLinus Torvalds spin_lock(&queue_lock); 7111da177e4SLinus Torvalds rq->readers--; 7121da177e4SLinus Torvalds if (rq->readers == 0 && 7131da177e4SLinus Torvalds !test_bit(CACHE_PENDING, &rq->item->flags)) { 7141da177e4SLinus Torvalds list_del(&rq->q.list); 7151da177e4SLinus Torvalds spin_unlock(&queue_lock); 716baab935fSNeilBrown cache_put(rq->item, cd); 7171da177e4SLinus Torvalds kfree(rq->buf); 7181da177e4SLinus Torvalds kfree(rq); 7191da177e4SLinus Torvalds } else 7201da177e4SLinus Torvalds spin_unlock(&queue_lock); 7211da177e4SLinus Torvalds } 7221da177e4SLinus Torvalds if (err == -EAGAIN) 7231da177e4SLinus Torvalds goto again; 724da77005fSTrond Myklebust mutex_unlock(&inode->i_mutex); 7251da177e4SLinus Torvalds return err ? err : count; 7261da177e4SLinus Torvalds } 7271da177e4SLinus Torvalds 728da77005fSTrond Myklebust static ssize_t cache_do_downcall(char *kaddr, const char __user *buf, 729da77005fSTrond Myklebust size_t count, struct cache_detail *cd) 7301da177e4SLinus Torvalds { 731da77005fSTrond Myklebust ssize_t ret; 7321da177e4SLinus Torvalds 733da77005fSTrond Myklebust if (copy_from_user(kaddr, buf, count)) 7341da177e4SLinus Torvalds return -EFAULT; 735da77005fSTrond Myklebust kaddr[count] = '\0'; 736da77005fSTrond Myklebust ret = cd->cache_parse(cd, kaddr, count); 737da77005fSTrond Myklebust if (!ret) 738da77005fSTrond Myklebust ret = count; 739da77005fSTrond Myklebust return ret; 7401da177e4SLinus Torvalds } 7411da177e4SLinus Torvalds 742da77005fSTrond Myklebust static ssize_t cache_slow_downcall(const char __user *buf, 743da77005fSTrond Myklebust size_t count, struct cache_detail *cd) 744da77005fSTrond Myklebust { 7451da177e4SLinus Torvalds static char write_buf[8192]; /* protected by queue_io_mutex */ 746da77005fSTrond Myklebust ssize_t ret = -EINVAL; 747da77005fSTrond Myklebust 748da77005fSTrond Myklebust if (count >= sizeof(write_buf)) 749da77005fSTrond Myklebust goto out; 750da77005fSTrond Myklebust mutex_lock(&queue_io_mutex); 751da77005fSTrond Myklebust ret = cache_do_downcall(write_buf, buf, count, cd); 7524a3e2f71SArjan van de Ven mutex_unlock(&queue_io_mutex); 753da77005fSTrond Myklebust out: 754da77005fSTrond Myklebust return ret; 755da77005fSTrond Myklebust } 756da77005fSTrond Myklebust 757da77005fSTrond Myklebust static ssize_t cache_downcall(struct address_space *mapping, 758da77005fSTrond Myklebust const char __user *buf, 759da77005fSTrond Myklebust size_t count, struct cache_detail *cd) 760da77005fSTrond Myklebust { 761da77005fSTrond Myklebust struct page *page; 762da77005fSTrond Myklebust char *kaddr; 763da77005fSTrond Myklebust ssize_t ret = -ENOMEM; 764da77005fSTrond Myklebust 765da77005fSTrond Myklebust if (count >= PAGE_CACHE_SIZE) 766da77005fSTrond Myklebust goto out_slow; 767da77005fSTrond Myklebust 768da77005fSTrond Myklebust page = find_or_create_page(mapping, 0, GFP_KERNEL); 769da77005fSTrond Myklebust if (!page) 770da77005fSTrond Myklebust goto out_slow; 771da77005fSTrond Myklebust 772da77005fSTrond Myklebust kaddr = kmap(page); 773da77005fSTrond Myklebust ret = cache_do_downcall(kaddr, buf, count, cd); 774da77005fSTrond Myklebust kunmap(page); 775da77005fSTrond Myklebust unlock_page(page); 776da77005fSTrond Myklebust page_cache_release(page); 777da77005fSTrond Myklebust return ret; 778da77005fSTrond Myklebust out_slow: 779da77005fSTrond Myklebust return cache_slow_downcall(buf, count, cd); 780da77005fSTrond Myklebust } 7811da177e4SLinus Torvalds 782173912a6STrond Myklebust static ssize_t cache_write(struct file *filp, const char __user *buf, 783173912a6STrond Myklebust size_t count, loff_t *ppos, 784173912a6STrond Myklebust struct cache_detail *cd) 7851da177e4SLinus Torvalds { 786da77005fSTrond Myklebust struct address_space *mapping = filp->f_mapping; 787da77005fSTrond Myklebust struct inode *inode = filp->f_path.dentry->d_inode; 788da77005fSTrond Myklebust ssize_t ret = -EINVAL; 7891da177e4SLinus Torvalds 790da77005fSTrond Myklebust if (!cd->cache_parse) 791da77005fSTrond Myklebust goto out; 7921da177e4SLinus Torvalds 793da77005fSTrond Myklebust mutex_lock(&inode->i_mutex); 794da77005fSTrond Myklebust ret = cache_downcall(mapping, buf, count, cd); 795da77005fSTrond Myklebust mutex_unlock(&inode->i_mutex); 796da77005fSTrond Myklebust out: 797da77005fSTrond Myklebust return ret; 7981da177e4SLinus Torvalds } 7991da177e4SLinus Torvalds 8001da177e4SLinus Torvalds static DECLARE_WAIT_QUEUE_HEAD(queue_wait); 8011da177e4SLinus Torvalds 802173912a6STrond Myklebust static unsigned int cache_poll(struct file *filp, poll_table *wait, 803173912a6STrond Myklebust struct cache_detail *cd) 8041da177e4SLinus Torvalds { 8051da177e4SLinus Torvalds unsigned int mask; 8061da177e4SLinus Torvalds struct cache_reader *rp = filp->private_data; 8071da177e4SLinus Torvalds struct cache_queue *cq; 8081da177e4SLinus Torvalds 8091da177e4SLinus Torvalds poll_wait(filp, &queue_wait, wait); 8101da177e4SLinus Torvalds 8111da177e4SLinus Torvalds /* alway allow write */ 8121da177e4SLinus Torvalds mask = POLL_OUT | POLLWRNORM; 8131da177e4SLinus Torvalds 8141da177e4SLinus Torvalds if (!rp) 8151da177e4SLinus Torvalds return mask; 8161da177e4SLinus Torvalds 8171da177e4SLinus Torvalds spin_lock(&queue_lock); 8181da177e4SLinus Torvalds 8191da177e4SLinus Torvalds for (cq= &rp->q; &cq->list != &cd->queue; 8201da177e4SLinus Torvalds cq = list_entry(cq->list.next, struct cache_queue, list)) 8211da177e4SLinus Torvalds if (!cq->reader) { 8221da177e4SLinus Torvalds mask |= POLLIN | POLLRDNORM; 8231da177e4SLinus Torvalds break; 8241da177e4SLinus Torvalds } 8251da177e4SLinus Torvalds spin_unlock(&queue_lock); 8261da177e4SLinus Torvalds return mask; 8271da177e4SLinus Torvalds } 8281da177e4SLinus Torvalds 829173912a6STrond Myklebust static int cache_ioctl(struct inode *ino, struct file *filp, 830173912a6STrond Myklebust unsigned int cmd, unsigned long arg, 831173912a6STrond Myklebust struct cache_detail *cd) 8321da177e4SLinus Torvalds { 8331da177e4SLinus Torvalds int len = 0; 8341da177e4SLinus Torvalds struct cache_reader *rp = filp->private_data; 8351da177e4SLinus Torvalds struct cache_queue *cq; 8361da177e4SLinus Torvalds 8371da177e4SLinus Torvalds if (cmd != FIONREAD || !rp) 8381da177e4SLinus Torvalds return -EINVAL; 8391da177e4SLinus Torvalds 8401da177e4SLinus Torvalds spin_lock(&queue_lock); 8411da177e4SLinus Torvalds 8421da177e4SLinus Torvalds /* only find the length remaining in current request, 8431da177e4SLinus Torvalds * or the length of the next request 8441da177e4SLinus Torvalds */ 8451da177e4SLinus Torvalds for (cq= &rp->q; &cq->list != &cd->queue; 8461da177e4SLinus Torvalds cq = list_entry(cq->list.next, struct cache_queue, list)) 8471da177e4SLinus Torvalds if (!cq->reader) { 8481da177e4SLinus Torvalds struct cache_request *cr = 8491da177e4SLinus Torvalds container_of(cq, struct cache_request, q); 8501da177e4SLinus Torvalds len = cr->len - rp->offset; 8511da177e4SLinus Torvalds break; 8521da177e4SLinus Torvalds } 8531da177e4SLinus Torvalds spin_unlock(&queue_lock); 8541da177e4SLinus Torvalds 8551da177e4SLinus Torvalds return put_user(len, (int __user *)arg); 8561da177e4SLinus Torvalds } 8571da177e4SLinus Torvalds 858173912a6STrond Myklebust static int cache_open(struct inode *inode, struct file *filp, 859173912a6STrond Myklebust struct cache_detail *cd) 8601da177e4SLinus Torvalds { 8611da177e4SLinus Torvalds struct cache_reader *rp = NULL; 8621da177e4SLinus Torvalds 863f7e86ab9STrond Myklebust if (!cd || !try_module_get(cd->owner)) 864f7e86ab9STrond Myklebust return -EACCES; 8651da177e4SLinus Torvalds nonseekable_open(inode, filp); 8661da177e4SLinus Torvalds if (filp->f_mode & FMODE_READ) { 8671da177e4SLinus Torvalds rp = kmalloc(sizeof(*rp), GFP_KERNEL); 8681da177e4SLinus Torvalds if (!rp) 8691da177e4SLinus Torvalds return -ENOMEM; 8701da177e4SLinus Torvalds rp->offset = 0; 8711da177e4SLinus Torvalds rp->q.reader = 1; 8721da177e4SLinus Torvalds atomic_inc(&cd->readers); 8731da177e4SLinus Torvalds spin_lock(&queue_lock); 8741da177e4SLinus Torvalds list_add(&rp->q.list, &cd->queue); 8751da177e4SLinus Torvalds spin_unlock(&queue_lock); 8761da177e4SLinus Torvalds } 8771da177e4SLinus Torvalds filp->private_data = rp; 8781da177e4SLinus Torvalds return 0; 8791da177e4SLinus Torvalds } 8801da177e4SLinus Torvalds 881173912a6STrond Myklebust static int cache_release(struct inode *inode, struct file *filp, 882173912a6STrond Myklebust struct cache_detail *cd) 8831da177e4SLinus Torvalds { 8841da177e4SLinus Torvalds struct cache_reader *rp = filp->private_data; 8851da177e4SLinus Torvalds 8861da177e4SLinus Torvalds if (rp) { 8871da177e4SLinus Torvalds spin_lock(&queue_lock); 8881da177e4SLinus Torvalds if (rp->offset) { 8891da177e4SLinus Torvalds struct cache_queue *cq; 8901da177e4SLinus Torvalds for (cq= &rp->q; &cq->list != &cd->queue; 8911da177e4SLinus Torvalds cq = list_entry(cq->list.next, struct cache_queue, list)) 8921da177e4SLinus Torvalds if (!cq->reader) { 8931da177e4SLinus Torvalds container_of(cq, struct cache_request, q) 8941da177e4SLinus Torvalds ->readers--; 8951da177e4SLinus Torvalds break; 8961da177e4SLinus Torvalds } 8971da177e4SLinus Torvalds rp->offset = 0; 8981da177e4SLinus Torvalds } 8991da177e4SLinus Torvalds list_del(&rp->q.list); 9001da177e4SLinus Torvalds spin_unlock(&queue_lock); 9011da177e4SLinus Torvalds 9021da177e4SLinus Torvalds filp->private_data = NULL; 9031da177e4SLinus Torvalds kfree(rp); 9041da177e4SLinus Torvalds 9051da177e4SLinus Torvalds cd->last_close = get_seconds(); 9061da177e4SLinus Torvalds atomic_dec(&cd->readers); 9071da177e4SLinus Torvalds } 908f7e86ab9STrond Myklebust module_put(cd->owner); 9091da177e4SLinus Torvalds return 0; 9101da177e4SLinus Torvalds } 9111da177e4SLinus Torvalds 9121da177e4SLinus Torvalds 9131da177e4SLinus Torvalds 914f866a819SNeilBrown static void cache_dequeue(struct cache_detail *detail, struct cache_head *ch) 9151da177e4SLinus Torvalds { 9161da177e4SLinus Torvalds struct cache_queue *cq; 9171da177e4SLinus Torvalds spin_lock(&queue_lock); 9181da177e4SLinus Torvalds list_for_each_entry(cq, &detail->queue, list) 9191da177e4SLinus Torvalds if (!cq->reader) { 9201da177e4SLinus Torvalds struct cache_request *cr = container_of(cq, struct cache_request, q); 9211da177e4SLinus Torvalds if (cr->item != ch) 9221da177e4SLinus Torvalds continue; 9231da177e4SLinus Torvalds if (cr->readers != 0) 9244013edeaSNeilBrown continue; 9251da177e4SLinus Torvalds list_del(&cr->q.list); 9261da177e4SLinus Torvalds spin_unlock(&queue_lock); 927baab935fSNeilBrown cache_put(cr->item, detail); 9281da177e4SLinus Torvalds kfree(cr->buf); 9291da177e4SLinus Torvalds kfree(cr); 9301da177e4SLinus Torvalds return; 9311da177e4SLinus Torvalds } 9321da177e4SLinus Torvalds spin_unlock(&queue_lock); 9331da177e4SLinus Torvalds } 9341da177e4SLinus Torvalds 9351da177e4SLinus Torvalds /* 9361da177e4SLinus Torvalds * Support routines for text-based upcalls. 9371da177e4SLinus Torvalds * Fields are separated by spaces. 9381da177e4SLinus Torvalds * Fields are either mangled to quote space tab newline slosh with slosh 9391da177e4SLinus Torvalds * or a hexified with a leading \x 9401da177e4SLinus Torvalds * Record is terminated with newline. 9411da177e4SLinus Torvalds * 9421da177e4SLinus Torvalds */ 9431da177e4SLinus Torvalds 9441da177e4SLinus Torvalds void qword_add(char **bpp, int *lp, char *str) 9451da177e4SLinus Torvalds { 9461da177e4SLinus Torvalds char *bp = *bpp; 9471da177e4SLinus Torvalds int len = *lp; 9481da177e4SLinus Torvalds char c; 9491da177e4SLinus Torvalds 9501da177e4SLinus Torvalds if (len < 0) return; 9511da177e4SLinus Torvalds 9521da177e4SLinus Torvalds while ((c=*str++) && len) 9531da177e4SLinus Torvalds switch(c) { 9541da177e4SLinus Torvalds case ' ': 9551da177e4SLinus Torvalds case '\t': 9561da177e4SLinus Torvalds case '\n': 9571da177e4SLinus Torvalds case '\\': 9581da177e4SLinus Torvalds if (len >= 4) { 9591da177e4SLinus Torvalds *bp++ = '\\'; 9601da177e4SLinus Torvalds *bp++ = '0' + ((c & 0300)>>6); 9611da177e4SLinus Torvalds *bp++ = '0' + ((c & 0070)>>3); 9621da177e4SLinus Torvalds *bp++ = '0' + ((c & 0007)>>0); 9631da177e4SLinus Torvalds } 9641da177e4SLinus Torvalds len -= 4; 9651da177e4SLinus Torvalds break; 9661da177e4SLinus Torvalds default: 9671da177e4SLinus Torvalds *bp++ = c; 9681da177e4SLinus Torvalds len--; 9691da177e4SLinus Torvalds } 9701da177e4SLinus Torvalds if (c || len <1) len = -1; 9711da177e4SLinus Torvalds else { 9721da177e4SLinus Torvalds *bp++ = ' '; 9731da177e4SLinus Torvalds len--; 9741da177e4SLinus Torvalds } 9751da177e4SLinus Torvalds *bpp = bp; 9761da177e4SLinus Torvalds *lp = len; 9771da177e4SLinus Torvalds } 97824c3767eSTrond Myklebust EXPORT_SYMBOL_GPL(qword_add); 9791da177e4SLinus Torvalds 9801da177e4SLinus Torvalds void qword_addhex(char **bpp, int *lp, char *buf, int blen) 9811da177e4SLinus Torvalds { 9821da177e4SLinus Torvalds char *bp = *bpp; 9831da177e4SLinus Torvalds int len = *lp; 9841da177e4SLinus Torvalds 9851da177e4SLinus Torvalds if (len < 0) return; 9861da177e4SLinus Torvalds 9871da177e4SLinus Torvalds if (len > 2) { 9881da177e4SLinus Torvalds *bp++ = '\\'; 9891da177e4SLinus Torvalds *bp++ = 'x'; 9901da177e4SLinus Torvalds len -= 2; 9911da177e4SLinus Torvalds while (blen && len >= 2) { 9921da177e4SLinus Torvalds unsigned char c = *buf++; 9931da177e4SLinus Torvalds *bp++ = '0' + ((c&0xf0)>>4) + (c>=0xa0)*('a'-'9'-1); 9941da177e4SLinus Torvalds *bp++ = '0' + (c&0x0f) + ((c&0x0f)>=0x0a)*('a'-'9'-1); 9951da177e4SLinus Torvalds len -= 2; 9961da177e4SLinus Torvalds blen--; 9971da177e4SLinus Torvalds } 9981da177e4SLinus Torvalds } 9991da177e4SLinus Torvalds if (blen || len<1) len = -1; 10001da177e4SLinus Torvalds else { 10011da177e4SLinus Torvalds *bp++ = ' '; 10021da177e4SLinus Torvalds len--; 10031da177e4SLinus Torvalds } 10041da177e4SLinus Torvalds *bpp = bp; 10051da177e4SLinus Torvalds *lp = len; 10061da177e4SLinus Torvalds } 100724c3767eSTrond Myklebust EXPORT_SYMBOL_GPL(qword_addhex); 10081da177e4SLinus Torvalds 10091da177e4SLinus Torvalds static void warn_no_listener(struct cache_detail *detail) 10101da177e4SLinus Torvalds { 10111da177e4SLinus Torvalds if (detail->last_warn != detail->last_close) { 10121da177e4SLinus Torvalds detail->last_warn = detail->last_close; 10131da177e4SLinus Torvalds if (detail->warn_no_listener) 10142da8ca26STrond Myklebust detail->warn_no_listener(detail, detail->last_close != 0); 10151da177e4SLinus Torvalds } 10161da177e4SLinus Torvalds } 10171da177e4SLinus Torvalds 10181da177e4SLinus Torvalds /* 1019bc74b4f5STrond Myklebust * register an upcall request to user-space and queue it up for read() by the 1020bc74b4f5STrond Myklebust * upcall daemon. 1021bc74b4f5STrond Myklebust * 10221da177e4SLinus Torvalds * Each request is at most one page long. 10231da177e4SLinus Torvalds */ 1024bc74b4f5STrond Myklebust int sunrpc_cache_pipe_upcall(struct cache_detail *detail, struct cache_head *h, 1025bc74b4f5STrond Myklebust void (*cache_request)(struct cache_detail *, 1026bc74b4f5STrond Myklebust struct cache_head *, 1027bc74b4f5STrond Myklebust char **, 1028bc74b4f5STrond Myklebust int *)) 10291da177e4SLinus Torvalds { 10301da177e4SLinus Torvalds 10311da177e4SLinus Torvalds char *buf; 10321da177e4SLinus Torvalds struct cache_request *crq; 10331da177e4SLinus Torvalds char *bp; 10341da177e4SLinus Torvalds int len; 10351da177e4SLinus Torvalds 10361da177e4SLinus Torvalds if (atomic_read(&detail->readers) == 0 && 10371da177e4SLinus Torvalds detail->last_close < get_seconds() - 30) { 10381da177e4SLinus Torvalds warn_no_listener(detail); 10391da177e4SLinus Torvalds return -EINVAL; 10401da177e4SLinus Torvalds } 10411da177e4SLinus Torvalds 10421da177e4SLinus Torvalds buf = kmalloc(PAGE_SIZE, GFP_KERNEL); 10431da177e4SLinus Torvalds if (!buf) 10441da177e4SLinus Torvalds return -EAGAIN; 10451da177e4SLinus Torvalds 10461da177e4SLinus Torvalds crq = kmalloc(sizeof (*crq), GFP_KERNEL); 10471da177e4SLinus Torvalds if (!crq) { 10481da177e4SLinus Torvalds kfree(buf); 10491da177e4SLinus Torvalds return -EAGAIN; 10501da177e4SLinus Torvalds } 10511da177e4SLinus Torvalds 10521da177e4SLinus Torvalds bp = buf; len = PAGE_SIZE; 10531da177e4SLinus Torvalds 1054bc74b4f5STrond Myklebust cache_request(detail, h, &bp, &len); 10551da177e4SLinus Torvalds 10561da177e4SLinus Torvalds if (len < 0) { 10571da177e4SLinus Torvalds kfree(buf); 10581da177e4SLinus Torvalds kfree(crq); 10591da177e4SLinus Torvalds return -EAGAIN; 10601da177e4SLinus Torvalds } 10611da177e4SLinus Torvalds crq->q.reader = 0; 10621da177e4SLinus Torvalds crq->item = cache_get(h); 10631da177e4SLinus Torvalds crq->buf = buf; 10641da177e4SLinus Torvalds crq->len = PAGE_SIZE - len; 10651da177e4SLinus Torvalds crq->readers = 0; 10661da177e4SLinus Torvalds spin_lock(&queue_lock); 10671da177e4SLinus Torvalds list_add_tail(&crq->q.list, &detail->queue); 10681da177e4SLinus Torvalds spin_unlock(&queue_lock); 10691da177e4SLinus Torvalds wake_up(&queue_wait); 10701da177e4SLinus Torvalds return 0; 10711da177e4SLinus Torvalds } 1072bc74b4f5STrond Myklebust EXPORT_SYMBOL_GPL(sunrpc_cache_pipe_upcall); 10731da177e4SLinus Torvalds 10741da177e4SLinus Torvalds /* 10751da177e4SLinus Torvalds * parse a message from user-space and pass it 10761da177e4SLinus Torvalds * to an appropriate cache 10771da177e4SLinus Torvalds * Messages are, like requests, separated into fields by 10781da177e4SLinus Torvalds * spaces and dequotes as \xHEXSTRING or embedded \nnn octal 10791da177e4SLinus Torvalds * 10801da177e4SLinus Torvalds * Message is 10811da177e4SLinus Torvalds * reply cachename expiry key ... content.... 10821da177e4SLinus Torvalds * 10831da177e4SLinus Torvalds * key and content are both parsed by cache 10841da177e4SLinus Torvalds */ 10851da177e4SLinus Torvalds 10861da177e4SLinus Torvalds #define isodigit(c) (isdigit(c) && c <= '7') 10871da177e4SLinus Torvalds int qword_get(char **bpp, char *dest, int bufsize) 10881da177e4SLinus Torvalds { 10891da177e4SLinus Torvalds /* return bytes copied, or -1 on error */ 10901da177e4SLinus Torvalds char *bp = *bpp; 10911da177e4SLinus Torvalds int len = 0; 10921da177e4SLinus Torvalds 10931da177e4SLinus Torvalds while (*bp == ' ') bp++; 10941da177e4SLinus Torvalds 10951da177e4SLinus Torvalds if (bp[0] == '\\' && bp[1] == 'x') { 10961da177e4SLinus Torvalds /* HEX STRING */ 10971da177e4SLinus Torvalds bp += 2; 10981da177e4SLinus Torvalds while (isxdigit(bp[0]) && isxdigit(bp[1]) && len < bufsize) { 10991da177e4SLinus Torvalds int byte = isdigit(*bp) ? *bp-'0' : toupper(*bp)-'A'+10; 11001da177e4SLinus Torvalds bp++; 11011da177e4SLinus Torvalds byte <<= 4; 11021da177e4SLinus Torvalds byte |= isdigit(*bp) ? *bp-'0' : toupper(*bp)-'A'+10; 11031da177e4SLinus Torvalds *dest++ = byte; 11041da177e4SLinus Torvalds bp++; 11051da177e4SLinus Torvalds len++; 11061da177e4SLinus Torvalds } 11071da177e4SLinus Torvalds } else { 11081da177e4SLinus Torvalds /* text with \nnn octal quoting */ 11091da177e4SLinus Torvalds while (*bp != ' ' && *bp != '\n' && *bp && len < bufsize-1) { 11101da177e4SLinus Torvalds if (*bp == '\\' && 11111da177e4SLinus Torvalds isodigit(bp[1]) && (bp[1] <= '3') && 11121da177e4SLinus Torvalds isodigit(bp[2]) && 11131da177e4SLinus Torvalds isodigit(bp[3])) { 11141da177e4SLinus Torvalds int byte = (*++bp -'0'); 11151da177e4SLinus Torvalds bp++; 11161da177e4SLinus Torvalds byte = (byte << 3) | (*bp++ - '0'); 11171da177e4SLinus Torvalds byte = (byte << 3) | (*bp++ - '0'); 11181da177e4SLinus Torvalds *dest++ = byte; 11191da177e4SLinus Torvalds len++; 11201da177e4SLinus Torvalds } else { 11211da177e4SLinus Torvalds *dest++ = *bp++; 11221da177e4SLinus Torvalds len++; 11231da177e4SLinus Torvalds } 11241da177e4SLinus Torvalds } 11251da177e4SLinus Torvalds } 11261da177e4SLinus Torvalds 11271da177e4SLinus Torvalds if (*bp != ' ' && *bp != '\n' && *bp != '\0') 11281da177e4SLinus Torvalds return -1; 11291da177e4SLinus Torvalds while (*bp == ' ') bp++; 11301da177e4SLinus Torvalds *bpp = bp; 11311da177e4SLinus Torvalds *dest = '\0'; 11321da177e4SLinus Torvalds return len; 11331da177e4SLinus Torvalds } 113424c3767eSTrond Myklebust EXPORT_SYMBOL_GPL(qword_get); 11351da177e4SLinus Torvalds 11361da177e4SLinus Torvalds 11371da177e4SLinus Torvalds /* 11381da177e4SLinus Torvalds * support /proc/sunrpc/cache/$CACHENAME/content 11391da177e4SLinus Torvalds * as a seqfile. 11401da177e4SLinus Torvalds * We call ->cache_show passing NULL for the item to 11411da177e4SLinus Torvalds * get a header, then pass each real item in the cache 11421da177e4SLinus Torvalds */ 11431da177e4SLinus Torvalds 11441da177e4SLinus Torvalds struct handle { 11451da177e4SLinus Torvalds struct cache_detail *cd; 11461da177e4SLinus Torvalds }; 11471da177e4SLinus Torvalds 11481da177e4SLinus Torvalds static void *c_start(struct seq_file *m, loff_t *pos) 11499a429c49SEric Dumazet __acquires(cd->hash_lock) 11501da177e4SLinus Torvalds { 11511da177e4SLinus Torvalds loff_t n = *pos; 11521da177e4SLinus Torvalds unsigned hash, entry; 11531da177e4SLinus Torvalds struct cache_head *ch; 11541da177e4SLinus Torvalds struct cache_detail *cd = ((struct handle*)m->private)->cd; 11551da177e4SLinus Torvalds 11561da177e4SLinus Torvalds 11571da177e4SLinus Torvalds read_lock(&cd->hash_lock); 11581da177e4SLinus Torvalds if (!n--) 11591da177e4SLinus Torvalds return SEQ_START_TOKEN; 11601da177e4SLinus Torvalds hash = n >> 32; 11611da177e4SLinus Torvalds entry = n & ((1LL<<32) - 1); 11621da177e4SLinus Torvalds 11631da177e4SLinus Torvalds for (ch=cd->hash_table[hash]; ch; ch=ch->next) 11641da177e4SLinus Torvalds if (!entry--) 11651da177e4SLinus Torvalds return ch; 11661da177e4SLinus Torvalds n &= ~((1LL<<32) - 1); 11671da177e4SLinus Torvalds do { 11681da177e4SLinus Torvalds hash++; 11691da177e4SLinus Torvalds n += 1LL<<32; 11701da177e4SLinus Torvalds } while(hash < cd->hash_size && 11711da177e4SLinus Torvalds cd->hash_table[hash]==NULL); 11721da177e4SLinus Torvalds if (hash >= cd->hash_size) 11731da177e4SLinus Torvalds return NULL; 11741da177e4SLinus Torvalds *pos = n+1; 11751da177e4SLinus Torvalds return cd->hash_table[hash]; 11761da177e4SLinus Torvalds } 11771da177e4SLinus Torvalds 11781da177e4SLinus Torvalds static void *c_next(struct seq_file *m, void *p, loff_t *pos) 11791da177e4SLinus Torvalds { 11801da177e4SLinus Torvalds struct cache_head *ch = p; 11811da177e4SLinus Torvalds int hash = (*pos >> 32); 11821da177e4SLinus Torvalds struct cache_detail *cd = ((struct handle*)m->private)->cd; 11831da177e4SLinus Torvalds 11841da177e4SLinus Torvalds if (p == SEQ_START_TOKEN) 11851da177e4SLinus Torvalds hash = 0; 11861da177e4SLinus Torvalds else if (ch->next == NULL) { 11871da177e4SLinus Torvalds hash++; 11881da177e4SLinus Torvalds *pos += 1LL<<32; 11891da177e4SLinus Torvalds } else { 11901da177e4SLinus Torvalds ++*pos; 11911da177e4SLinus Torvalds return ch->next; 11921da177e4SLinus Torvalds } 11931da177e4SLinus Torvalds *pos &= ~((1LL<<32) - 1); 11941da177e4SLinus Torvalds while (hash < cd->hash_size && 11951da177e4SLinus Torvalds cd->hash_table[hash] == NULL) { 11961da177e4SLinus Torvalds hash++; 11971da177e4SLinus Torvalds *pos += 1LL<<32; 11981da177e4SLinus Torvalds } 11991da177e4SLinus Torvalds if (hash >= cd->hash_size) 12001da177e4SLinus Torvalds return NULL; 12011da177e4SLinus Torvalds ++*pos; 12021da177e4SLinus Torvalds return cd->hash_table[hash]; 12031da177e4SLinus Torvalds } 12041da177e4SLinus Torvalds 12051da177e4SLinus Torvalds static void c_stop(struct seq_file *m, void *p) 12069a429c49SEric Dumazet __releases(cd->hash_lock) 12071da177e4SLinus Torvalds { 12081da177e4SLinus Torvalds struct cache_detail *cd = ((struct handle*)m->private)->cd; 12091da177e4SLinus Torvalds read_unlock(&cd->hash_lock); 12101da177e4SLinus Torvalds } 12111da177e4SLinus Torvalds 12121da177e4SLinus Torvalds static int c_show(struct seq_file *m, void *p) 12131da177e4SLinus Torvalds { 12141da177e4SLinus Torvalds struct cache_head *cp = p; 12151da177e4SLinus Torvalds struct cache_detail *cd = ((struct handle*)m->private)->cd; 12161da177e4SLinus Torvalds 12171da177e4SLinus Torvalds if (p == SEQ_START_TOKEN) 12181da177e4SLinus Torvalds return cd->cache_show(m, cd, NULL); 12191da177e4SLinus Torvalds 12201da177e4SLinus Torvalds ifdebug(CACHE) 12214013edeaSNeilBrown seq_printf(m, "# expiry=%ld refcnt=%d flags=%lx\n", 1222baab935fSNeilBrown cp->expiry_time, atomic_read(&cp->ref.refcount), cp->flags); 12231da177e4SLinus Torvalds cache_get(cp); 12241da177e4SLinus Torvalds if (cache_check(cd, cp, NULL)) 12251da177e4SLinus Torvalds /* cache_check does a cache_put on failure */ 12261da177e4SLinus Torvalds seq_printf(m, "# "); 12271da177e4SLinus Torvalds else 12281da177e4SLinus Torvalds cache_put(cp, cd); 12291da177e4SLinus Torvalds 12301da177e4SLinus Torvalds return cd->cache_show(m, cd, cp); 12311da177e4SLinus Torvalds } 12321da177e4SLinus Torvalds 123356b3d975SPhilippe De Muyter static const struct seq_operations cache_content_op = { 12341da177e4SLinus Torvalds .start = c_start, 12351da177e4SLinus Torvalds .next = c_next, 12361da177e4SLinus Torvalds .stop = c_stop, 12371da177e4SLinus Torvalds .show = c_show, 12381da177e4SLinus Torvalds }; 12391da177e4SLinus Torvalds 1240173912a6STrond Myklebust static int content_open(struct inode *inode, struct file *file, 1241173912a6STrond Myklebust struct cache_detail *cd) 12421da177e4SLinus Torvalds { 12431da177e4SLinus Torvalds struct handle *han; 12441da177e4SLinus Torvalds 1245f7e86ab9STrond Myklebust if (!cd || !try_module_get(cd->owner)) 1246f7e86ab9STrond Myklebust return -EACCES; 1247ec931035SPavel Emelyanov han = __seq_open_private(file, &cache_content_op, sizeof(*han)); 1248a5990ea1SLi Zefan if (han == NULL) { 1249a5990ea1SLi Zefan module_put(cd->owner); 12501da177e4SLinus Torvalds return -ENOMEM; 1251a5990ea1SLi Zefan } 12521da177e4SLinus Torvalds 12531da177e4SLinus Torvalds han->cd = cd; 1254ec931035SPavel Emelyanov return 0; 12551da177e4SLinus Torvalds } 12561da177e4SLinus Torvalds 1257f7e86ab9STrond Myklebust static int content_release(struct inode *inode, struct file *file, 1258f7e86ab9STrond Myklebust struct cache_detail *cd) 1259f7e86ab9STrond Myklebust { 1260f7e86ab9STrond Myklebust int ret = seq_release_private(inode, file); 1261f7e86ab9STrond Myklebust module_put(cd->owner); 1262f7e86ab9STrond Myklebust return ret; 1263f7e86ab9STrond Myklebust } 1264f7e86ab9STrond Myklebust 1265f7e86ab9STrond Myklebust static int open_flush(struct inode *inode, struct file *file, 1266f7e86ab9STrond Myklebust struct cache_detail *cd) 1267f7e86ab9STrond Myklebust { 1268f7e86ab9STrond Myklebust if (!cd || !try_module_get(cd->owner)) 1269f7e86ab9STrond Myklebust return -EACCES; 1270f7e86ab9STrond Myklebust return nonseekable_open(inode, file); 1271f7e86ab9STrond Myklebust } 1272f7e86ab9STrond Myklebust 1273f7e86ab9STrond Myklebust static int release_flush(struct inode *inode, struct file *file, 1274f7e86ab9STrond Myklebust struct cache_detail *cd) 1275f7e86ab9STrond Myklebust { 1276f7e86ab9STrond Myklebust module_put(cd->owner); 1277f7e86ab9STrond Myklebust return 0; 1278f7e86ab9STrond Myklebust } 12791da177e4SLinus Torvalds 12801da177e4SLinus Torvalds static ssize_t read_flush(struct file *file, char __user *buf, 1281173912a6STrond Myklebust size_t count, loff_t *ppos, 1282173912a6STrond Myklebust struct cache_detail *cd) 12831da177e4SLinus Torvalds { 12841da177e4SLinus Torvalds char tbuf[20]; 12851da177e4SLinus Torvalds unsigned long p = *ppos; 128601b2969aSChuck Lever size_t len; 12871da177e4SLinus Torvalds 12881da177e4SLinus Torvalds sprintf(tbuf, "%lu\n", cd->flush_time); 12891da177e4SLinus Torvalds len = strlen(tbuf); 12901da177e4SLinus Torvalds if (p >= len) 12911da177e4SLinus Torvalds return 0; 12921da177e4SLinus Torvalds len -= p; 129301b2969aSChuck Lever if (len > count) 129401b2969aSChuck Lever len = count; 12951da177e4SLinus Torvalds if (copy_to_user(buf, (void*)(tbuf+p), len)) 129601b2969aSChuck Lever return -EFAULT; 12971da177e4SLinus Torvalds *ppos += len; 12981da177e4SLinus Torvalds return len; 12991da177e4SLinus Torvalds } 13001da177e4SLinus Torvalds 13011da177e4SLinus Torvalds static ssize_t write_flush(struct file *file, const char __user *buf, 1302173912a6STrond Myklebust size_t count, loff_t *ppos, 1303173912a6STrond Myklebust struct cache_detail *cd) 13041da177e4SLinus Torvalds { 13051da177e4SLinus Torvalds char tbuf[20]; 13061da177e4SLinus Torvalds char *ep; 13071da177e4SLinus Torvalds long flushtime; 13081da177e4SLinus Torvalds if (*ppos || count > sizeof(tbuf)-1) 13091da177e4SLinus Torvalds return -EINVAL; 13101da177e4SLinus Torvalds if (copy_from_user(tbuf, buf, count)) 13111da177e4SLinus Torvalds return -EFAULT; 13121da177e4SLinus Torvalds tbuf[count] = 0; 13131da177e4SLinus Torvalds flushtime = simple_strtoul(tbuf, &ep, 0); 13141da177e4SLinus Torvalds if (*ep && *ep != '\n') 13151da177e4SLinus Torvalds return -EINVAL; 13161da177e4SLinus Torvalds 13171da177e4SLinus Torvalds cd->flush_time = flushtime; 13181da177e4SLinus Torvalds cd->nextcheck = get_seconds(); 13191da177e4SLinus Torvalds cache_flush(); 13201da177e4SLinus Torvalds 13211da177e4SLinus Torvalds *ppos += count; 13221da177e4SLinus Torvalds return count; 13231da177e4SLinus Torvalds } 13241da177e4SLinus Torvalds 1325173912a6STrond Myklebust static ssize_t cache_read_procfs(struct file *filp, char __user *buf, 1326173912a6STrond Myklebust size_t count, loff_t *ppos) 1327173912a6STrond Myklebust { 1328173912a6STrond Myklebust struct cache_detail *cd = PDE(filp->f_path.dentry->d_inode)->data; 1329173912a6STrond Myklebust 1330173912a6STrond Myklebust return cache_read(filp, buf, count, ppos, cd); 1331173912a6STrond Myklebust } 1332173912a6STrond Myklebust 1333173912a6STrond Myklebust static ssize_t cache_write_procfs(struct file *filp, const char __user *buf, 1334173912a6STrond Myklebust size_t count, loff_t *ppos) 1335173912a6STrond Myklebust { 1336173912a6STrond Myklebust struct cache_detail *cd = PDE(filp->f_path.dentry->d_inode)->data; 1337173912a6STrond Myklebust 1338173912a6STrond Myklebust return cache_write(filp, buf, count, ppos, cd); 1339173912a6STrond Myklebust } 1340173912a6STrond Myklebust 1341173912a6STrond Myklebust static unsigned int cache_poll_procfs(struct file *filp, poll_table *wait) 1342173912a6STrond Myklebust { 1343173912a6STrond Myklebust struct cache_detail *cd = PDE(filp->f_path.dentry->d_inode)->data; 1344173912a6STrond Myklebust 1345173912a6STrond Myklebust return cache_poll(filp, wait, cd); 1346173912a6STrond Myklebust } 1347173912a6STrond Myklebust 1348d79b6f4dSFrederic Weisbecker static long cache_ioctl_procfs(struct file *filp, 1349173912a6STrond Myklebust unsigned int cmd, unsigned long arg) 1350173912a6STrond Myklebust { 1351d79b6f4dSFrederic Weisbecker long ret; 1352d79b6f4dSFrederic Weisbecker struct inode *inode = filp->f_path.dentry->d_inode; 1353173912a6STrond Myklebust struct cache_detail *cd = PDE(inode)->data; 1354173912a6STrond Myklebust 1355d79b6f4dSFrederic Weisbecker lock_kernel(); 1356d79b6f4dSFrederic Weisbecker ret = cache_ioctl(inode, filp, cmd, arg, cd); 1357d79b6f4dSFrederic Weisbecker unlock_kernel(); 1358d79b6f4dSFrederic Weisbecker 1359d79b6f4dSFrederic Weisbecker return ret; 1360173912a6STrond Myklebust } 1361173912a6STrond Myklebust 1362173912a6STrond Myklebust static int cache_open_procfs(struct inode *inode, struct file *filp) 1363173912a6STrond Myklebust { 1364173912a6STrond Myklebust struct cache_detail *cd = PDE(inode)->data; 1365173912a6STrond Myklebust 1366173912a6STrond Myklebust return cache_open(inode, filp, cd); 1367173912a6STrond Myklebust } 1368173912a6STrond Myklebust 1369173912a6STrond Myklebust static int cache_release_procfs(struct inode *inode, struct file *filp) 1370173912a6STrond Myklebust { 1371173912a6STrond Myklebust struct cache_detail *cd = PDE(inode)->data; 1372173912a6STrond Myklebust 1373173912a6STrond Myklebust return cache_release(inode, filp, cd); 1374173912a6STrond Myklebust } 1375173912a6STrond Myklebust 1376173912a6STrond Myklebust static const struct file_operations cache_file_operations_procfs = { 1377173912a6STrond Myklebust .owner = THIS_MODULE, 1378173912a6STrond Myklebust .llseek = no_llseek, 1379173912a6STrond Myklebust .read = cache_read_procfs, 1380173912a6STrond Myklebust .write = cache_write_procfs, 1381173912a6STrond Myklebust .poll = cache_poll_procfs, 1382d79b6f4dSFrederic Weisbecker .unlocked_ioctl = cache_ioctl_procfs, /* for FIONREAD */ 1383173912a6STrond Myklebust .open = cache_open_procfs, 1384173912a6STrond Myklebust .release = cache_release_procfs, 13851da177e4SLinus Torvalds }; 1386173912a6STrond Myklebust 1387173912a6STrond Myklebust static int content_open_procfs(struct inode *inode, struct file *filp) 1388173912a6STrond Myklebust { 1389173912a6STrond Myklebust struct cache_detail *cd = PDE(inode)->data; 1390173912a6STrond Myklebust 1391173912a6STrond Myklebust return content_open(inode, filp, cd); 1392173912a6STrond Myklebust } 1393173912a6STrond Myklebust 1394f7e86ab9STrond Myklebust static int content_release_procfs(struct inode *inode, struct file *filp) 1395f7e86ab9STrond Myklebust { 1396f7e86ab9STrond Myklebust struct cache_detail *cd = PDE(inode)->data; 1397f7e86ab9STrond Myklebust 1398f7e86ab9STrond Myklebust return content_release(inode, filp, cd); 1399f7e86ab9STrond Myklebust } 1400f7e86ab9STrond Myklebust 1401173912a6STrond Myklebust static const struct file_operations content_file_operations_procfs = { 1402173912a6STrond Myklebust .open = content_open_procfs, 1403173912a6STrond Myklebust .read = seq_read, 1404173912a6STrond Myklebust .llseek = seq_lseek, 1405f7e86ab9STrond Myklebust .release = content_release_procfs, 1406173912a6STrond Myklebust }; 1407173912a6STrond Myklebust 1408f7e86ab9STrond Myklebust static int open_flush_procfs(struct inode *inode, struct file *filp) 1409f7e86ab9STrond Myklebust { 1410f7e86ab9STrond Myklebust struct cache_detail *cd = PDE(inode)->data; 1411f7e86ab9STrond Myklebust 1412f7e86ab9STrond Myklebust return open_flush(inode, filp, cd); 1413f7e86ab9STrond Myklebust } 1414f7e86ab9STrond Myklebust 1415f7e86ab9STrond Myklebust static int release_flush_procfs(struct inode *inode, struct file *filp) 1416f7e86ab9STrond Myklebust { 1417f7e86ab9STrond Myklebust struct cache_detail *cd = PDE(inode)->data; 1418f7e86ab9STrond Myklebust 1419f7e86ab9STrond Myklebust return release_flush(inode, filp, cd); 1420f7e86ab9STrond Myklebust } 1421f7e86ab9STrond Myklebust 1422173912a6STrond Myklebust static ssize_t read_flush_procfs(struct file *filp, char __user *buf, 1423173912a6STrond Myklebust size_t count, loff_t *ppos) 1424173912a6STrond Myklebust { 1425173912a6STrond Myklebust struct cache_detail *cd = PDE(filp->f_path.dentry->d_inode)->data; 1426173912a6STrond Myklebust 1427173912a6STrond Myklebust return read_flush(filp, buf, count, ppos, cd); 1428173912a6STrond Myklebust } 1429173912a6STrond Myklebust 1430173912a6STrond Myklebust static ssize_t write_flush_procfs(struct file *filp, 1431173912a6STrond Myklebust const char __user *buf, 1432173912a6STrond Myklebust size_t count, loff_t *ppos) 1433173912a6STrond Myklebust { 1434173912a6STrond Myklebust struct cache_detail *cd = PDE(filp->f_path.dentry->d_inode)->data; 1435173912a6STrond Myklebust 1436173912a6STrond Myklebust return write_flush(filp, buf, count, ppos, cd); 1437173912a6STrond Myklebust } 1438173912a6STrond Myklebust 1439173912a6STrond Myklebust static const struct file_operations cache_flush_operations_procfs = { 1440f7e86ab9STrond Myklebust .open = open_flush_procfs, 1441173912a6STrond Myklebust .read = read_flush_procfs, 1442173912a6STrond Myklebust .write = write_flush_procfs, 1443f7e86ab9STrond Myklebust .release = release_flush_procfs, 1444*6038f373SArnd Bergmann .llseek = no_llseek, 1445173912a6STrond Myklebust }; 1446173912a6STrond Myklebust 1447173912a6STrond Myklebust static void remove_cache_proc_entries(struct cache_detail *cd) 1448173912a6STrond Myklebust { 1449173912a6STrond Myklebust if (cd->u.procfs.proc_ent == NULL) 1450173912a6STrond Myklebust return; 1451173912a6STrond Myklebust if (cd->u.procfs.flush_ent) 1452173912a6STrond Myklebust remove_proc_entry("flush", cd->u.procfs.proc_ent); 1453173912a6STrond Myklebust if (cd->u.procfs.channel_ent) 1454173912a6STrond Myklebust remove_proc_entry("channel", cd->u.procfs.proc_ent); 1455173912a6STrond Myklebust if (cd->u.procfs.content_ent) 1456173912a6STrond Myklebust remove_proc_entry("content", cd->u.procfs.proc_ent); 1457173912a6STrond Myklebust cd->u.procfs.proc_ent = NULL; 1458173912a6STrond Myklebust remove_proc_entry(cd->name, proc_net_rpc); 1459173912a6STrond Myklebust } 1460173912a6STrond Myklebust 1461173912a6STrond Myklebust #ifdef CONFIG_PROC_FS 1462173912a6STrond Myklebust static int create_cache_proc_entries(struct cache_detail *cd) 1463173912a6STrond Myklebust { 1464173912a6STrond Myklebust struct proc_dir_entry *p; 1465173912a6STrond Myklebust 1466173912a6STrond Myklebust cd->u.procfs.proc_ent = proc_mkdir(cd->name, proc_net_rpc); 1467173912a6STrond Myklebust if (cd->u.procfs.proc_ent == NULL) 1468173912a6STrond Myklebust goto out_nomem; 1469173912a6STrond Myklebust cd->u.procfs.channel_ent = NULL; 1470173912a6STrond Myklebust cd->u.procfs.content_ent = NULL; 1471173912a6STrond Myklebust 1472173912a6STrond Myklebust p = proc_create_data("flush", S_IFREG|S_IRUSR|S_IWUSR, 1473173912a6STrond Myklebust cd->u.procfs.proc_ent, 1474173912a6STrond Myklebust &cache_flush_operations_procfs, cd); 1475173912a6STrond Myklebust cd->u.procfs.flush_ent = p; 1476173912a6STrond Myklebust if (p == NULL) 1477173912a6STrond Myklebust goto out_nomem; 1478173912a6STrond Myklebust 1479173912a6STrond Myklebust if (cd->cache_upcall || cd->cache_parse) { 1480173912a6STrond Myklebust p = proc_create_data("channel", S_IFREG|S_IRUSR|S_IWUSR, 1481173912a6STrond Myklebust cd->u.procfs.proc_ent, 1482173912a6STrond Myklebust &cache_file_operations_procfs, cd); 1483173912a6STrond Myklebust cd->u.procfs.channel_ent = p; 1484173912a6STrond Myklebust if (p == NULL) 1485173912a6STrond Myklebust goto out_nomem; 1486173912a6STrond Myklebust } 1487173912a6STrond Myklebust if (cd->cache_show) { 1488173912a6STrond Myklebust p = proc_create_data("content", S_IFREG|S_IRUSR|S_IWUSR, 1489173912a6STrond Myklebust cd->u.procfs.proc_ent, 1490173912a6STrond Myklebust &content_file_operations_procfs, cd); 1491173912a6STrond Myklebust cd->u.procfs.content_ent = p; 1492173912a6STrond Myklebust if (p == NULL) 1493173912a6STrond Myklebust goto out_nomem; 1494173912a6STrond Myklebust } 1495173912a6STrond Myklebust return 0; 1496173912a6STrond Myklebust out_nomem: 1497173912a6STrond Myklebust remove_cache_proc_entries(cd); 1498173912a6STrond Myklebust return -ENOMEM; 1499173912a6STrond Myklebust } 1500173912a6STrond Myklebust #else /* CONFIG_PROC_FS */ 1501173912a6STrond Myklebust static int create_cache_proc_entries(struct cache_detail *cd) 1502173912a6STrond Myklebust { 1503173912a6STrond Myklebust return 0; 1504173912a6STrond Myklebust } 1505173912a6STrond Myklebust #endif 1506173912a6STrond Myklebust 15078eab945cSArtem Bityutskiy void __init cache_initialize(void) 15088eab945cSArtem Bityutskiy { 15098eab945cSArtem Bityutskiy INIT_DELAYED_WORK_DEFERRABLE(&cache_cleaner, do_cache_clean); 15108eab945cSArtem Bityutskiy } 15118eab945cSArtem Bityutskiy 1512173912a6STrond Myklebust int cache_register(struct cache_detail *cd) 1513173912a6STrond Myklebust { 1514173912a6STrond Myklebust int ret; 1515173912a6STrond Myklebust 1516173912a6STrond Myklebust sunrpc_init_cache_detail(cd); 1517173912a6STrond Myklebust ret = create_cache_proc_entries(cd); 1518173912a6STrond Myklebust if (ret) 1519173912a6STrond Myklebust sunrpc_destroy_cache_detail(cd); 1520173912a6STrond Myklebust return ret; 1521173912a6STrond Myklebust } 1522173912a6STrond Myklebust EXPORT_SYMBOL_GPL(cache_register); 1523173912a6STrond Myklebust 1524173912a6STrond Myklebust void cache_unregister(struct cache_detail *cd) 1525173912a6STrond Myklebust { 1526173912a6STrond Myklebust remove_cache_proc_entries(cd); 1527173912a6STrond Myklebust sunrpc_destroy_cache_detail(cd); 1528173912a6STrond Myklebust } 1529173912a6STrond Myklebust EXPORT_SYMBOL_GPL(cache_unregister); 15308854e82dSTrond Myklebust 15318854e82dSTrond Myklebust static ssize_t cache_read_pipefs(struct file *filp, char __user *buf, 15328854e82dSTrond Myklebust size_t count, loff_t *ppos) 15338854e82dSTrond Myklebust { 15348854e82dSTrond Myklebust struct cache_detail *cd = RPC_I(filp->f_path.dentry->d_inode)->private; 15358854e82dSTrond Myklebust 15368854e82dSTrond Myklebust return cache_read(filp, buf, count, ppos, cd); 15378854e82dSTrond Myklebust } 15388854e82dSTrond Myklebust 15398854e82dSTrond Myklebust static ssize_t cache_write_pipefs(struct file *filp, const char __user *buf, 15408854e82dSTrond Myklebust size_t count, loff_t *ppos) 15418854e82dSTrond Myklebust { 15428854e82dSTrond Myklebust struct cache_detail *cd = RPC_I(filp->f_path.dentry->d_inode)->private; 15438854e82dSTrond Myklebust 15448854e82dSTrond Myklebust return cache_write(filp, buf, count, ppos, cd); 15458854e82dSTrond Myklebust } 15468854e82dSTrond Myklebust 15478854e82dSTrond Myklebust static unsigned int cache_poll_pipefs(struct file *filp, poll_table *wait) 15488854e82dSTrond Myklebust { 15498854e82dSTrond Myklebust struct cache_detail *cd = RPC_I(filp->f_path.dentry->d_inode)->private; 15508854e82dSTrond Myklebust 15518854e82dSTrond Myklebust return cache_poll(filp, wait, cd); 15528854e82dSTrond Myklebust } 15538854e82dSTrond Myklebust 15549918ff26SFrederic Weisbecker static long cache_ioctl_pipefs(struct file *filp, 15558854e82dSTrond Myklebust unsigned int cmd, unsigned long arg) 15568854e82dSTrond Myklebust { 15579918ff26SFrederic Weisbecker struct inode *inode = filp->f_dentry->d_inode; 15588854e82dSTrond Myklebust struct cache_detail *cd = RPC_I(inode)->private; 15599918ff26SFrederic Weisbecker long ret; 15608854e82dSTrond Myklebust 15619918ff26SFrederic Weisbecker lock_kernel(); 15629918ff26SFrederic Weisbecker ret = cache_ioctl(inode, filp, cmd, arg, cd); 15639918ff26SFrederic Weisbecker unlock_kernel(); 15649918ff26SFrederic Weisbecker 15659918ff26SFrederic Weisbecker return ret; 15668854e82dSTrond Myklebust } 15678854e82dSTrond Myklebust 15688854e82dSTrond Myklebust static int cache_open_pipefs(struct inode *inode, struct file *filp) 15698854e82dSTrond Myklebust { 15708854e82dSTrond Myklebust struct cache_detail *cd = RPC_I(inode)->private; 15718854e82dSTrond Myklebust 15728854e82dSTrond Myklebust return cache_open(inode, filp, cd); 15738854e82dSTrond Myklebust } 15748854e82dSTrond Myklebust 15758854e82dSTrond Myklebust static int cache_release_pipefs(struct inode *inode, struct file *filp) 15768854e82dSTrond Myklebust { 15778854e82dSTrond Myklebust struct cache_detail *cd = RPC_I(inode)->private; 15788854e82dSTrond Myklebust 15798854e82dSTrond Myklebust return cache_release(inode, filp, cd); 15808854e82dSTrond Myklebust } 15818854e82dSTrond Myklebust 15828854e82dSTrond Myklebust const struct file_operations cache_file_operations_pipefs = { 15838854e82dSTrond Myklebust .owner = THIS_MODULE, 15848854e82dSTrond Myklebust .llseek = no_llseek, 15858854e82dSTrond Myklebust .read = cache_read_pipefs, 15868854e82dSTrond Myklebust .write = cache_write_pipefs, 15878854e82dSTrond Myklebust .poll = cache_poll_pipefs, 15889918ff26SFrederic Weisbecker .unlocked_ioctl = cache_ioctl_pipefs, /* for FIONREAD */ 15898854e82dSTrond Myklebust .open = cache_open_pipefs, 15908854e82dSTrond Myklebust .release = cache_release_pipefs, 15918854e82dSTrond Myklebust }; 15928854e82dSTrond Myklebust 15938854e82dSTrond Myklebust static int content_open_pipefs(struct inode *inode, struct file *filp) 15948854e82dSTrond Myklebust { 15958854e82dSTrond Myklebust struct cache_detail *cd = RPC_I(inode)->private; 15968854e82dSTrond Myklebust 15978854e82dSTrond Myklebust return content_open(inode, filp, cd); 15988854e82dSTrond Myklebust } 15998854e82dSTrond Myklebust 1600f7e86ab9STrond Myklebust static int content_release_pipefs(struct inode *inode, struct file *filp) 1601f7e86ab9STrond Myklebust { 1602f7e86ab9STrond Myklebust struct cache_detail *cd = RPC_I(inode)->private; 1603f7e86ab9STrond Myklebust 1604f7e86ab9STrond Myklebust return content_release(inode, filp, cd); 1605f7e86ab9STrond Myklebust } 1606f7e86ab9STrond Myklebust 16078854e82dSTrond Myklebust const struct file_operations content_file_operations_pipefs = { 16088854e82dSTrond Myklebust .open = content_open_pipefs, 16098854e82dSTrond Myklebust .read = seq_read, 16108854e82dSTrond Myklebust .llseek = seq_lseek, 1611f7e86ab9STrond Myklebust .release = content_release_pipefs, 16128854e82dSTrond Myklebust }; 16138854e82dSTrond Myklebust 1614f7e86ab9STrond Myklebust static int open_flush_pipefs(struct inode *inode, struct file *filp) 1615f7e86ab9STrond Myklebust { 1616f7e86ab9STrond Myklebust struct cache_detail *cd = RPC_I(inode)->private; 1617f7e86ab9STrond Myklebust 1618f7e86ab9STrond Myklebust return open_flush(inode, filp, cd); 1619f7e86ab9STrond Myklebust } 1620f7e86ab9STrond Myklebust 1621f7e86ab9STrond Myklebust static int release_flush_pipefs(struct inode *inode, struct file *filp) 1622f7e86ab9STrond Myklebust { 1623f7e86ab9STrond Myklebust struct cache_detail *cd = RPC_I(inode)->private; 1624f7e86ab9STrond Myklebust 1625f7e86ab9STrond Myklebust return release_flush(inode, filp, cd); 1626f7e86ab9STrond Myklebust } 1627f7e86ab9STrond Myklebust 16288854e82dSTrond Myklebust static ssize_t read_flush_pipefs(struct file *filp, char __user *buf, 16298854e82dSTrond Myklebust size_t count, loff_t *ppos) 16308854e82dSTrond Myklebust { 16318854e82dSTrond Myklebust struct cache_detail *cd = RPC_I(filp->f_path.dentry->d_inode)->private; 16328854e82dSTrond Myklebust 16338854e82dSTrond Myklebust return read_flush(filp, buf, count, ppos, cd); 16348854e82dSTrond Myklebust } 16358854e82dSTrond Myklebust 16368854e82dSTrond Myklebust static ssize_t write_flush_pipefs(struct file *filp, 16378854e82dSTrond Myklebust const char __user *buf, 16388854e82dSTrond Myklebust size_t count, loff_t *ppos) 16398854e82dSTrond Myklebust { 16408854e82dSTrond Myklebust struct cache_detail *cd = RPC_I(filp->f_path.dentry->d_inode)->private; 16418854e82dSTrond Myklebust 16428854e82dSTrond Myklebust return write_flush(filp, buf, count, ppos, cd); 16438854e82dSTrond Myklebust } 16448854e82dSTrond Myklebust 16458854e82dSTrond Myklebust const struct file_operations cache_flush_operations_pipefs = { 1646f7e86ab9STrond Myklebust .open = open_flush_pipefs, 16478854e82dSTrond Myklebust .read = read_flush_pipefs, 16488854e82dSTrond Myklebust .write = write_flush_pipefs, 1649f7e86ab9STrond Myklebust .release = release_flush_pipefs, 1650*6038f373SArnd Bergmann .llseek = no_llseek, 16518854e82dSTrond Myklebust }; 16528854e82dSTrond Myklebust 16538854e82dSTrond Myklebust int sunrpc_cache_register_pipefs(struct dentry *parent, 16548854e82dSTrond Myklebust const char *name, mode_t umode, 16558854e82dSTrond Myklebust struct cache_detail *cd) 16568854e82dSTrond Myklebust { 16578854e82dSTrond Myklebust struct qstr q; 16588854e82dSTrond Myklebust struct dentry *dir; 16598854e82dSTrond Myklebust int ret = 0; 16608854e82dSTrond Myklebust 16618854e82dSTrond Myklebust sunrpc_init_cache_detail(cd); 16628854e82dSTrond Myklebust q.name = name; 16638854e82dSTrond Myklebust q.len = strlen(name); 16648854e82dSTrond Myklebust q.hash = full_name_hash(q.name, q.len); 16658854e82dSTrond Myklebust dir = rpc_create_cache_dir(parent, &q, umode, cd); 16668854e82dSTrond Myklebust if (!IS_ERR(dir)) 16678854e82dSTrond Myklebust cd->u.pipefs.dir = dir; 16688854e82dSTrond Myklebust else { 16698854e82dSTrond Myklebust sunrpc_destroy_cache_detail(cd); 16708854e82dSTrond Myklebust ret = PTR_ERR(dir); 16718854e82dSTrond Myklebust } 16728854e82dSTrond Myklebust return ret; 16738854e82dSTrond Myklebust } 16748854e82dSTrond Myklebust EXPORT_SYMBOL_GPL(sunrpc_cache_register_pipefs); 16758854e82dSTrond Myklebust 16768854e82dSTrond Myklebust void sunrpc_cache_unregister_pipefs(struct cache_detail *cd) 16778854e82dSTrond Myklebust { 16788854e82dSTrond Myklebust rpc_remove_cache_dir(cd->u.pipefs.dir); 16798854e82dSTrond Myklebust cd->u.pipefs.dir = NULL; 16808854e82dSTrond Myklebust sunrpc_destroy_cache_detail(cd); 16818854e82dSTrond Myklebust } 16828854e82dSTrond Myklebust EXPORT_SYMBOL_GPL(sunrpc_cache_unregister_pipefs); 16838854e82dSTrond Myklebust 1684