locking/refcounts: Include fewer headers in <linux/refcount.h>
[linux/fpc-iii.git] / fs / fscache / cookie.c
blob97137d7ec5ee8bfe21796abde94144d726785d29
1 /* netfs cookie management
3 * Copyright (C) 2004-2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
11 * See Documentation/filesystems/caching/netfs-api.txt for more information on
12 * the netfs API.
15 #define FSCACHE_DEBUG_LEVEL COOKIE
16 #include <linux/module.h>
17 #include <linux/slab.h>
18 #include "internal.h"
20 struct kmem_cache *fscache_cookie_jar;
22 static atomic_t fscache_object_debug_id = ATOMIC_INIT(0);
24 #define fscache_cookie_hash_shift 15
25 static struct hlist_bl_head fscache_cookie_hash[1 << fscache_cookie_hash_shift];
27 static int fscache_acquire_non_index_cookie(struct fscache_cookie *cookie,
28 loff_t object_size);
29 static int fscache_alloc_object(struct fscache_cache *cache,
30 struct fscache_cookie *cookie);
31 static int fscache_attach_object(struct fscache_cookie *cookie,
32 struct fscache_object *object);
34 static void fscache_print_cookie(struct fscache_cookie *cookie, char prefix)
36 struct hlist_node *object;
37 const u8 *k;
38 unsigned loop;
40 pr_err("%c-cookie c=%p [p=%p fl=%lx nc=%u na=%u]\n",
41 prefix, cookie, cookie->parent, cookie->flags,
42 atomic_read(&cookie->n_children),
43 atomic_read(&cookie->n_active));
44 pr_err("%c-cookie d=%p n=%p\n",
45 prefix, cookie->def, cookie->netfs_data);
47 object = READ_ONCE(cookie->backing_objects.first);
48 if (object)
49 pr_err("%c-cookie o=%p\n",
50 prefix, hlist_entry(object, struct fscache_object, cookie_link));
52 pr_err("%c-key=[%u] '", prefix, cookie->key_len);
53 k = (cookie->key_len <= sizeof(cookie->inline_key)) ?
54 cookie->inline_key : cookie->key;
55 for (loop = 0; loop < cookie->key_len; loop++)
56 pr_cont("%02x", k[loop]);
57 pr_cont("'\n");
60 void fscache_free_cookie(struct fscache_cookie *cookie)
62 if (cookie) {
63 BUG_ON(!hlist_empty(&cookie->backing_objects));
64 if (cookie->aux_len > sizeof(cookie->inline_aux))
65 kfree(cookie->aux);
66 if (cookie->key_len > sizeof(cookie->inline_key))
67 kfree(cookie->key);
68 kmem_cache_free(fscache_cookie_jar, cookie);
73 * initialise an cookie jar slab element prior to any use
75 void fscache_cookie_init_once(void *_cookie)
77 struct fscache_cookie *cookie = _cookie;
79 memset(cookie, 0, sizeof(*cookie));
80 spin_lock_init(&cookie->lock);
81 spin_lock_init(&cookie->stores_lock);
82 INIT_HLIST_HEAD(&cookie->backing_objects);
86 * Set the index key in a cookie. The cookie struct has space for a 12-byte
87 * key plus length and hash, but if that's not big enough, it's instead a
88 * pointer to a buffer containing 3 bytes of hash, 1 byte of length and then
89 * the key data.
91 static int fscache_set_key(struct fscache_cookie *cookie,
92 const void *index_key, size_t index_key_len)
94 unsigned long long h;
95 u32 *buf;
96 int i;
98 cookie->key_len = index_key_len;
100 if (index_key_len > sizeof(cookie->inline_key)) {
101 buf = kzalloc(index_key_len, GFP_KERNEL);
102 if (!buf)
103 return -ENOMEM;
104 cookie->key = buf;
105 } else {
106 buf = (u32 *)cookie->inline_key;
107 buf[0] = 0;
108 buf[1] = 0;
109 buf[2] = 0;
112 memcpy(buf, index_key, index_key_len);
114 /* Calculate a hash and combine this with the length in the first word
115 * or first half word
117 h = (unsigned long)cookie->parent;
118 h += index_key_len + cookie->type;
119 for (i = 0; i < (index_key_len + sizeof(u32) - 1) / sizeof(u32); i++)
120 h += buf[i];
122 cookie->key_hash = h ^ (h >> 32);
123 return 0;
126 static long fscache_compare_cookie(const struct fscache_cookie *a,
127 const struct fscache_cookie *b)
129 const void *ka, *kb;
131 if (a->key_hash != b->key_hash)
132 return (long)a->key_hash - (long)b->key_hash;
133 if (a->parent != b->parent)
134 return (long)a->parent - (long)b->parent;
135 if (a->key_len != b->key_len)
136 return (long)a->key_len - (long)b->key_len;
137 if (a->type != b->type)
138 return (long)a->type - (long)b->type;
140 if (a->key_len <= sizeof(a->inline_key)) {
141 ka = &a->inline_key;
142 kb = &b->inline_key;
143 } else {
144 ka = a->key;
145 kb = b->key;
147 return memcmp(ka, kb, a->key_len);
151 * Allocate a cookie.
153 struct fscache_cookie *fscache_alloc_cookie(
154 struct fscache_cookie *parent,
155 const struct fscache_cookie_def *def,
156 const void *index_key, size_t index_key_len,
157 const void *aux_data, size_t aux_data_len,
158 void *netfs_data,
159 loff_t object_size)
161 struct fscache_cookie *cookie;
163 /* allocate and initialise a cookie */
164 cookie = kmem_cache_alloc(fscache_cookie_jar, GFP_KERNEL);
165 if (!cookie)
166 return NULL;
168 cookie->key_len = index_key_len;
169 cookie->aux_len = aux_data_len;
171 if (fscache_set_key(cookie, index_key, index_key_len) < 0)
172 goto nomem;
174 if (cookie->aux_len <= sizeof(cookie->inline_aux)) {
175 memcpy(cookie->inline_aux, aux_data, cookie->aux_len);
176 } else {
177 cookie->aux = kmemdup(aux_data, cookie->aux_len, GFP_KERNEL);
178 if (!cookie->aux)
179 goto nomem;
182 atomic_set(&cookie->usage, 1);
183 atomic_set(&cookie->n_children, 0);
185 /* We keep the active count elevated until relinquishment to prevent an
186 * attempt to wake up every time the object operations queue quiesces.
188 atomic_set(&cookie->n_active, 1);
190 cookie->def = def;
191 cookie->parent = parent;
192 cookie->netfs_data = netfs_data;
193 cookie->flags = (1 << FSCACHE_COOKIE_NO_DATA_YET);
194 cookie->type = def->type;
196 /* radix tree insertion won't use the preallocation pool unless it's
197 * told it may not wait */
198 INIT_RADIX_TREE(&cookie->stores, GFP_NOFS & ~__GFP_DIRECT_RECLAIM);
199 return cookie;
201 nomem:
202 fscache_free_cookie(cookie);
203 return NULL;
207 * Attempt to insert the new cookie into the hash. If there's a collision, we
208 * return the old cookie if it's not in use and an error otherwise.
210 struct fscache_cookie *fscache_hash_cookie(struct fscache_cookie *candidate)
212 struct fscache_cookie *cursor;
213 struct hlist_bl_head *h;
214 struct hlist_bl_node *p;
215 unsigned int bucket;
217 bucket = candidate->key_hash & (ARRAY_SIZE(fscache_cookie_hash) - 1);
218 h = &fscache_cookie_hash[bucket];
220 hlist_bl_lock(h);
221 hlist_bl_for_each_entry(cursor, p, h, hash_link) {
222 if (fscache_compare_cookie(candidate, cursor) == 0)
223 goto collision;
226 __set_bit(FSCACHE_COOKIE_ACQUIRED, &candidate->flags);
227 fscache_cookie_get(candidate->parent, fscache_cookie_get_acquire_parent);
228 atomic_inc(&candidate->parent->n_children);
229 hlist_bl_add_head(&candidate->hash_link, h);
230 hlist_bl_unlock(h);
231 return candidate;
233 collision:
234 if (test_and_set_bit(FSCACHE_COOKIE_ACQUIRED, &cursor->flags)) {
235 trace_fscache_cookie(cursor, fscache_cookie_collision,
236 atomic_read(&cursor->usage));
237 pr_err("Duplicate cookie detected\n");
238 fscache_print_cookie(cursor, 'O');
239 fscache_print_cookie(candidate, 'N');
240 hlist_bl_unlock(h);
241 return NULL;
244 fscache_cookie_get(cursor, fscache_cookie_get_reacquire);
245 hlist_bl_unlock(h);
246 return cursor;
250 * request a cookie to represent an object (index, datafile, xattr, etc)
251 * - parent specifies the parent object
252 * - the top level index cookie for each netfs is stored in the fscache_netfs
253 * struct upon registration
254 * - def points to the definition
255 * - the netfs_data will be passed to the functions pointed to in *def
256 * - all attached caches will be searched to see if they contain this object
257 * - index objects aren't stored on disk until there's a dependent file that
258 * needs storing
259 * - other objects are stored in a selected cache immediately, and all the
260 * indices forming the path to it are instantiated if necessary
261 * - we never let on to the netfs about errors
262 * - we may set a negative cookie pointer, but that's okay
264 struct fscache_cookie *__fscache_acquire_cookie(
265 struct fscache_cookie *parent,
266 const struct fscache_cookie_def *def,
267 const void *index_key, size_t index_key_len,
268 const void *aux_data, size_t aux_data_len,
269 void *netfs_data,
270 loff_t object_size,
271 bool enable)
273 struct fscache_cookie *candidate, *cookie;
275 BUG_ON(!def);
277 _enter("{%s},{%s},%p,%u",
278 parent ? (char *) parent->def->name : "<no-parent>",
279 def->name, netfs_data, enable);
281 if (!index_key || !index_key_len || index_key_len > 255 || aux_data_len > 255)
282 return NULL;
283 if (!aux_data || !aux_data_len) {
284 aux_data = NULL;
285 aux_data_len = 0;
288 fscache_stat(&fscache_n_acquires);
290 /* if there's no parent cookie, then we don't create one here either */
291 if (!parent) {
292 fscache_stat(&fscache_n_acquires_null);
293 _leave(" [no parent]");
294 return NULL;
297 /* validate the definition */
298 BUG_ON(!def->name[0]);
300 BUG_ON(def->type == FSCACHE_COOKIE_TYPE_INDEX &&
301 parent->type != FSCACHE_COOKIE_TYPE_INDEX);
303 candidate = fscache_alloc_cookie(parent, def,
304 index_key, index_key_len,
305 aux_data, aux_data_len,
306 netfs_data, object_size);
307 if (!candidate) {
308 fscache_stat(&fscache_n_acquires_oom);
309 _leave(" [ENOMEM]");
310 return NULL;
313 cookie = fscache_hash_cookie(candidate);
314 if (!cookie) {
315 trace_fscache_cookie(candidate, fscache_cookie_discard, 1);
316 goto out;
319 if (cookie == candidate)
320 candidate = NULL;
322 switch (cookie->type) {
323 case FSCACHE_COOKIE_TYPE_INDEX:
324 fscache_stat(&fscache_n_cookie_index);
325 break;
326 case FSCACHE_COOKIE_TYPE_DATAFILE:
327 fscache_stat(&fscache_n_cookie_data);
328 break;
329 default:
330 fscache_stat(&fscache_n_cookie_special);
331 break;
334 trace_fscache_acquire(cookie);
336 if (enable) {
337 /* if the object is an index then we need do nothing more here
338 * - we create indices on disk when we need them as an index
339 * may exist in multiple caches */
340 if (cookie->type != FSCACHE_COOKIE_TYPE_INDEX) {
341 if (fscache_acquire_non_index_cookie(cookie, object_size) == 0) {
342 set_bit(FSCACHE_COOKIE_ENABLED, &cookie->flags);
343 } else {
344 atomic_dec(&parent->n_children);
345 fscache_cookie_put(cookie,
346 fscache_cookie_put_acquire_nobufs);
347 fscache_stat(&fscache_n_acquires_nobufs);
348 _leave(" = NULL");
349 return NULL;
351 } else {
352 set_bit(FSCACHE_COOKIE_ENABLED, &cookie->flags);
356 fscache_stat(&fscache_n_acquires_ok);
358 out:
359 fscache_free_cookie(candidate);
360 return cookie;
362 EXPORT_SYMBOL(__fscache_acquire_cookie);
365 * Enable a cookie to permit it to accept new operations.
367 void __fscache_enable_cookie(struct fscache_cookie *cookie,
368 const void *aux_data,
369 loff_t object_size,
370 bool (*can_enable)(void *data),
371 void *data)
373 _enter("%p", cookie);
375 trace_fscache_enable(cookie);
377 wait_on_bit_lock(&cookie->flags, FSCACHE_COOKIE_ENABLEMENT_LOCK,
378 TASK_UNINTERRUPTIBLE);
380 fscache_update_aux(cookie, aux_data);
382 if (test_bit(FSCACHE_COOKIE_ENABLED, &cookie->flags))
383 goto out_unlock;
385 if (can_enable && !can_enable(data)) {
386 /* The netfs decided it didn't want to enable after all */
387 } else if (cookie->type != FSCACHE_COOKIE_TYPE_INDEX) {
388 /* Wait for outstanding disablement to complete */
389 __fscache_wait_on_invalidate(cookie);
391 if (fscache_acquire_non_index_cookie(cookie, object_size) == 0)
392 set_bit(FSCACHE_COOKIE_ENABLED, &cookie->flags);
393 } else {
394 set_bit(FSCACHE_COOKIE_ENABLED, &cookie->flags);
397 out_unlock:
398 clear_bit_unlock(FSCACHE_COOKIE_ENABLEMENT_LOCK, &cookie->flags);
399 wake_up_bit(&cookie->flags, FSCACHE_COOKIE_ENABLEMENT_LOCK);
401 EXPORT_SYMBOL(__fscache_enable_cookie);
404 * acquire a non-index cookie
405 * - this must make sure the index chain is instantiated and instantiate the
406 * object representation too
408 static int fscache_acquire_non_index_cookie(struct fscache_cookie *cookie,
409 loff_t object_size)
411 struct fscache_object *object;
412 struct fscache_cache *cache;
413 int ret;
415 _enter("");
417 set_bit(FSCACHE_COOKIE_UNAVAILABLE, &cookie->flags);
419 /* now we need to see whether the backing objects for this cookie yet
420 * exist, if not there'll be nothing to search */
421 down_read(&fscache_addremove_sem);
423 if (list_empty(&fscache_cache_list)) {
424 up_read(&fscache_addremove_sem);
425 _leave(" = 0 [no caches]");
426 return 0;
429 /* select a cache in which to store the object */
430 cache = fscache_select_cache_for_object(cookie->parent);
431 if (!cache) {
432 up_read(&fscache_addremove_sem);
433 fscache_stat(&fscache_n_acquires_no_cache);
434 _leave(" = -ENOMEDIUM [no cache]");
435 return -ENOMEDIUM;
438 _debug("cache %s", cache->tag->name);
440 set_bit(FSCACHE_COOKIE_LOOKING_UP, &cookie->flags);
442 /* ask the cache to allocate objects for this cookie and its parent
443 * chain */
444 ret = fscache_alloc_object(cache, cookie);
445 if (ret < 0) {
446 up_read(&fscache_addremove_sem);
447 _leave(" = %d", ret);
448 return ret;
451 spin_lock(&cookie->lock);
452 if (hlist_empty(&cookie->backing_objects)) {
453 spin_unlock(&cookie->lock);
454 goto unavailable;
457 object = hlist_entry(cookie->backing_objects.first,
458 struct fscache_object, cookie_link);
460 fscache_set_store_limit(object, object_size);
462 /* initiate the process of looking up all the objects in the chain
463 * (done by fscache_initialise_object()) */
464 fscache_raise_event(object, FSCACHE_OBJECT_EV_NEW_CHILD);
466 spin_unlock(&cookie->lock);
468 /* we may be required to wait for lookup to complete at this point */
469 if (!fscache_defer_lookup) {
470 _debug("non-deferred lookup %p", &cookie->flags);
471 wait_on_bit(&cookie->flags, FSCACHE_COOKIE_LOOKING_UP,
472 TASK_UNINTERRUPTIBLE);
473 _debug("complete");
474 if (test_bit(FSCACHE_COOKIE_UNAVAILABLE, &cookie->flags))
475 goto unavailable;
478 up_read(&fscache_addremove_sem);
479 _leave(" = 0 [deferred]");
480 return 0;
482 unavailable:
483 up_read(&fscache_addremove_sem);
484 _leave(" = -ENOBUFS");
485 return -ENOBUFS;
489 * recursively allocate cache object records for a cookie/cache combination
490 * - caller must be holding the addremove sem
492 static int fscache_alloc_object(struct fscache_cache *cache,
493 struct fscache_cookie *cookie)
495 struct fscache_object *object;
496 int ret;
498 _enter("%p,%p{%s}", cache, cookie, cookie->def->name);
500 spin_lock(&cookie->lock);
501 hlist_for_each_entry(object, &cookie->backing_objects,
502 cookie_link) {
503 if (object->cache == cache)
504 goto object_already_extant;
506 spin_unlock(&cookie->lock);
508 /* ask the cache to allocate an object (we may end up with duplicate
509 * objects at this stage, but we sort that out later) */
510 fscache_stat(&fscache_n_cop_alloc_object);
511 object = cache->ops->alloc_object(cache, cookie);
512 fscache_stat_d(&fscache_n_cop_alloc_object);
513 if (IS_ERR(object)) {
514 fscache_stat(&fscache_n_object_no_alloc);
515 ret = PTR_ERR(object);
516 goto error;
519 fscache_stat(&fscache_n_object_alloc);
521 object->debug_id = atomic_inc_return(&fscache_object_debug_id);
523 _debug("ALLOC OBJ%x: %s {%lx}",
524 object->debug_id, cookie->def->name, object->events);
526 ret = fscache_alloc_object(cache, cookie->parent);
527 if (ret < 0)
528 goto error_put;
530 /* only attach if we managed to allocate all we needed, otherwise
531 * discard the object we just allocated and instead use the one
532 * attached to the cookie */
533 if (fscache_attach_object(cookie, object) < 0) {
534 fscache_stat(&fscache_n_cop_put_object);
535 cache->ops->put_object(object, fscache_obj_put_attach_fail);
536 fscache_stat_d(&fscache_n_cop_put_object);
539 _leave(" = 0");
540 return 0;
542 object_already_extant:
543 ret = -ENOBUFS;
544 if (fscache_object_is_dying(object) ||
545 fscache_cache_is_broken(object)) {
546 spin_unlock(&cookie->lock);
547 goto error;
549 spin_unlock(&cookie->lock);
550 _leave(" = 0 [found]");
551 return 0;
553 error_put:
554 fscache_stat(&fscache_n_cop_put_object);
555 cache->ops->put_object(object, fscache_obj_put_alloc_fail);
556 fscache_stat_d(&fscache_n_cop_put_object);
557 error:
558 _leave(" = %d", ret);
559 return ret;
563 * attach a cache object to a cookie
565 static int fscache_attach_object(struct fscache_cookie *cookie,
566 struct fscache_object *object)
568 struct fscache_object *p;
569 struct fscache_cache *cache = object->cache;
570 int ret;
572 _enter("{%s},{OBJ%x}", cookie->def->name, object->debug_id);
574 spin_lock(&cookie->lock);
576 /* there may be multiple initial creations of this object, but we only
577 * want one */
578 ret = -EEXIST;
579 hlist_for_each_entry(p, &cookie->backing_objects, cookie_link) {
580 if (p->cache == object->cache) {
581 if (fscache_object_is_dying(p))
582 ret = -ENOBUFS;
583 goto cant_attach_object;
587 /* pin the parent object */
588 spin_lock_nested(&cookie->parent->lock, 1);
589 hlist_for_each_entry(p, &cookie->parent->backing_objects,
590 cookie_link) {
591 if (p->cache == object->cache) {
592 if (fscache_object_is_dying(p)) {
593 ret = -ENOBUFS;
594 spin_unlock(&cookie->parent->lock);
595 goto cant_attach_object;
597 object->parent = p;
598 spin_lock(&p->lock);
599 p->n_children++;
600 spin_unlock(&p->lock);
601 break;
604 spin_unlock(&cookie->parent->lock);
606 /* attach to the cache's object list */
607 if (list_empty(&object->cache_link)) {
608 spin_lock(&cache->object_list_lock);
609 list_add(&object->cache_link, &cache->object_list);
610 spin_unlock(&cache->object_list_lock);
613 /* attach to the cookie */
614 object->cookie = cookie;
615 fscache_cookie_get(cookie, fscache_cookie_get_attach_object);
616 hlist_add_head(&object->cookie_link, &cookie->backing_objects);
618 fscache_objlist_add(object);
619 ret = 0;
621 cant_attach_object:
622 spin_unlock(&cookie->lock);
623 _leave(" = %d", ret);
624 return ret;
628 * Invalidate an object. Callable with spinlocks held.
630 void __fscache_invalidate(struct fscache_cookie *cookie)
632 struct fscache_object *object;
634 _enter("{%s}", cookie->def->name);
636 fscache_stat(&fscache_n_invalidates);
638 /* Only permit invalidation of data files. Invalidating an index will
639 * require the caller to release all its attachments to the tree rooted
640 * there, and if it's doing that, it may as well just retire the
641 * cookie.
643 ASSERTCMP(cookie->type, ==, FSCACHE_COOKIE_TYPE_DATAFILE);
645 /* If there's an object, we tell the object state machine to handle the
646 * invalidation on our behalf, otherwise there's nothing to do.
648 if (!hlist_empty(&cookie->backing_objects)) {
649 spin_lock(&cookie->lock);
651 if (fscache_cookie_enabled(cookie) &&
652 !hlist_empty(&cookie->backing_objects) &&
653 !test_and_set_bit(FSCACHE_COOKIE_INVALIDATING,
654 &cookie->flags)) {
655 object = hlist_entry(cookie->backing_objects.first,
656 struct fscache_object,
657 cookie_link);
658 if (fscache_object_is_live(object))
659 fscache_raise_event(
660 object, FSCACHE_OBJECT_EV_INVALIDATE);
663 spin_unlock(&cookie->lock);
666 _leave("");
668 EXPORT_SYMBOL(__fscache_invalidate);
671 * Wait for object invalidation to complete.
673 void __fscache_wait_on_invalidate(struct fscache_cookie *cookie)
675 _enter("%p", cookie);
677 wait_on_bit(&cookie->flags, FSCACHE_COOKIE_INVALIDATING,
678 TASK_UNINTERRUPTIBLE);
680 _leave("");
682 EXPORT_SYMBOL(__fscache_wait_on_invalidate);
685 * update the index entries backing a cookie
687 void __fscache_update_cookie(struct fscache_cookie *cookie, const void *aux_data)
689 struct fscache_object *object;
691 fscache_stat(&fscache_n_updates);
693 if (!cookie) {
694 fscache_stat(&fscache_n_updates_null);
695 _leave(" [no cookie]");
696 return;
699 _enter("{%s}", cookie->def->name);
701 spin_lock(&cookie->lock);
703 fscache_update_aux(cookie, aux_data);
705 if (fscache_cookie_enabled(cookie)) {
706 /* update the index entry on disk in each cache backing this
707 * cookie.
709 hlist_for_each_entry(object,
710 &cookie->backing_objects, cookie_link) {
711 fscache_raise_event(object, FSCACHE_OBJECT_EV_UPDATE);
715 spin_unlock(&cookie->lock);
716 _leave("");
718 EXPORT_SYMBOL(__fscache_update_cookie);
721 * Disable a cookie to stop it from accepting new requests from the netfs.
723 void __fscache_disable_cookie(struct fscache_cookie *cookie,
724 const void *aux_data,
725 bool invalidate)
727 struct fscache_object *object;
728 bool awaken = false;
730 _enter("%p,%u", cookie, invalidate);
732 trace_fscache_disable(cookie);
734 ASSERTCMP(atomic_read(&cookie->n_active), >, 0);
736 if (atomic_read(&cookie->n_children) != 0) {
737 pr_err("Cookie '%s' still has children\n",
738 cookie->def->name);
739 BUG();
742 wait_on_bit_lock(&cookie->flags, FSCACHE_COOKIE_ENABLEMENT_LOCK,
743 TASK_UNINTERRUPTIBLE);
745 fscache_update_aux(cookie, aux_data);
747 if (!test_and_clear_bit(FSCACHE_COOKIE_ENABLED, &cookie->flags))
748 goto out_unlock_enable;
750 /* If the cookie is being invalidated, wait for that to complete first
751 * so that we can reuse the flag.
753 __fscache_wait_on_invalidate(cookie);
755 /* Dispose of the backing objects */
756 set_bit(FSCACHE_COOKIE_INVALIDATING, &cookie->flags);
758 spin_lock(&cookie->lock);
759 if (!hlist_empty(&cookie->backing_objects)) {
760 hlist_for_each_entry(object, &cookie->backing_objects, cookie_link) {
761 if (invalidate)
762 set_bit(FSCACHE_OBJECT_RETIRED, &object->flags);
763 clear_bit(FSCACHE_OBJECT_PENDING_WRITE, &object->flags);
764 fscache_raise_event(object, FSCACHE_OBJECT_EV_KILL);
766 } else {
767 if (test_and_clear_bit(FSCACHE_COOKIE_INVALIDATING, &cookie->flags))
768 awaken = true;
770 spin_unlock(&cookie->lock);
771 if (awaken)
772 wake_up_bit(&cookie->flags, FSCACHE_COOKIE_INVALIDATING);
774 /* Wait for cessation of activity requiring access to the netfs (when
775 * n_active reaches 0). This makes sure outstanding reads and writes
776 * have completed.
778 if (!atomic_dec_and_test(&cookie->n_active)) {
779 wait_var_event(&cookie->n_active,
780 !atomic_read(&cookie->n_active));
783 /* Make sure any pending writes are cancelled. */
784 if (cookie->type != FSCACHE_COOKIE_TYPE_INDEX)
785 fscache_invalidate_writes(cookie);
787 /* Reset the cookie state if it wasn't relinquished */
788 if (!test_bit(FSCACHE_COOKIE_RELINQUISHED, &cookie->flags)) {
789 atomic_inc(&cookie->n_active);
790 set_bit(FSCACHE_COOKIE_NO_DATA_YET, &cookie->flags);
793 out_unlock_enable:
794 clear_bit_unlock(FSCACHE_COOKIE_ENABLEMENT_LOCK, &cookie->flags);
795 wake_up_bit(&cookie->flags, FSCACHE_COOKIE_ENABLEMENT_LOCK);
796 _leave("");
798 EXPORT_SYMBOL(__fscache_disable_cookie);
801 * release a cookie back to the cache
802 * - the object will be marked as recyclable on disk if retire is true
803 * - all dependents of this cookie must have already been unregistered
804 * (indices/files/pages)
806 void __fscache_relinquish_cookie(struct fscache_cookie *cookie,
807 const void *aux_data,
808 bool retire)
810 fscache_stat(&fscache_n_relinquishes);
811 if (retire)
812 fscache_stat(&fscache_n_relinquishes_retire);
814 if (!cookie) {
815 fscache_stat(&fscache_n_relinquishes_null);
816 _leave(" [no cookie]");
817 return;
820 _enter("%p{%s,%p,%d},%d",
821 cookie, cookie->def->name, cookie->netfs_data,
822 atomic_read(&cookie->n_active), retire);
824 trace_fscache_relinquish(cookie, retire);
826 /* No further netfs-accessing operations on this cookie permitted */
827 if (test_and_set_bit(FSCACHE_COOKIE_RELINQUISHED, &cookie->flags))
828 BUG();
830 __fscache_disable_cookie(cookie, aux_data, retire);
832 /* Clear pointers back to the netfs */
833 cookie->netfs_data = NULL;
834 cookie->def = NULL;
835 BUG_ON(!radix_tree_empty(&cookie->stores));
837 if (cookie->parent) {
838 ASSERTCMP(atomic_read(&cookie->parent->usage), >, 0);
839 ASSERTCMP(atomic_read(&cookie->parent->n_children), >, 0);
840 atomic_dec(&cookie->parent->n_children);
843 /* Dispose of the netfs's link to the cookie */
844 ASSERTCMP(atomic_read(&cookie->usage), >, 0);
845 fscache_cookie_put(cookie, fscache_cookie_put_relinquish);
847 _leave("");
849 EXPORT_SYMBOL(__fscache_relinquish_cookie);
852 * Remove a cookie from the hash table.
854 static void fscache_unhash_cookie(struct fscache_cookie *cookie)
856 struct hlist_bl_head *h;
857 unsigned int bucket;
859 bucket = cookie->key_hash & (ARRAY_SIZE(fscache_cookie_hash) - 1);
860 h = &fscache_cookie_hash[bucket];
862 hlist_bl_lock(h);
863 hlist_bl_del(&cookie->hash_link);
864 hlist_bl_unlock(h);
868 * Drop a reference to a cookie.
870 void fscache_cookie_put(struct fscache_cookie *cookie,
871 enum fscache_cookie_trace where)
873 struct fscache_cookie *parent;
874 int usage;
876 _enter("%p", cookie);
878 do {
879 usage = atomic_dec_return(&cookie->usage);
880 trace_fscache_cookie(cookie, where, usage);
882 if (usage > 0)
883 return;
884 BUG_ON(usage < 0);
886 parent = cookie->parent;
887 fscache_unhash_cookie(cookie);
888 fscache_free_cookie(cookie);
890 cookie = parent;
891 where = fscache_cookie_put_parent;
892 } while (cookie);
894 _leave("");
898 * check the consistency between the netfs inode and the backing cache
900 * NOTE: it only serves no-index type
902 int __fscache_check_consistency(struct fscache_cookie *cookie,
903 const void *aux_data)
905 struct fscache_operation *op;
906 struct fscache_object *object;
907 bool wake_cookie = false;
908 int ret;
910 _enter("%p,", cookie);
912 ASSERTCMP(cookie->type, ==, FSCACHE_COOKIE_TYPE_DATAFILE);
914 if (fscache_wait_for_deferred_lookup(cookie) < 0)
915 return -ERESTARTSYS;
917 if (hlist_empty(&cookie->backing_objects))
918 return 0;
920 op = kzalloc(sizeof(*op), GFP_NOIO | __GFP_NOMEMALLOC | __GFP_NORETRY);
921 if (!op)
922 return -ENOMEM;
924 fscache_operation_init(cookie, op, NULL, NULL, NULL);
925 op->flags = FSCACHE_OP_MYTHREAD |
926 (1 << FSCACHE_OP_WAITING) |
927 (1 << FSCACHE_OP_UNUSE_COOKIE);
928 trace_fscache_page_op(cookie, NULL, op, fscache_page_op_check_consistency);
930 spin_lock(&cookie->lock);
932 fscache_update_aux(cookie, aux_data);
934 if (!fscache_cookie_enabled(cookie) ||
935 hlist_empty(&cookie->backing_objects))
936 goto inconsistent;
937 object = hlist_entry(cookie->backing_objects.first,
938 struct fscache_object, cookie_link);
939 if (test_bit(FSCACHE_IOERROR, &object->cache->flags))
940 goto inconsistent;
942 op->debug_id = atomic_inc_return(&fscache_op_debug_id);
944 __fscache_use_cookie(cookie);
945 if (fscache_submit_op(object, op) < 0)
946 goto submit_failed;
948 /* the work queue now carries its own ref on the object */
949 spin_unlock(&cookie->lock);
951 ret = fscache_wait_for_operation_activation(object, op, NULL, NULL);
952 if (ret == 0) {
953 /* ask the cache to honour the operation */
954 ret = object->cache->ops->check_consistency(op);
955 fscache_op_complete(op, false);
956 } else if (ret == -ENOBUFS) {
957 ret = 0;
960 fscache_put_operation(op);
961 _leave(" = %d", ret);
962 return ret;
964 submit_failed:
965 wake_cookie = __fscache_unuse_cookie(cookie);
966 inconsistent:
967 spin_unlock(&cookie->lock);
968 if (wake_cookie)
969 __fscache_wake_unused_cookie(cookie);
970 kfree(op);
971 _leave(" = -ESTALE");
972 return -ESTALE;
974 EXPORT_SYMBOL(__fscache_check_consistency);