blob: eee436646989e39e4b3ed025b3c2c5bc46a08a0d [file] [log] [blame]
David Howells955d00912009-04-03 16:42:38 +01001/* netfs cookie management
2 *
3 * Copyright (C) 2004-2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
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.
David Howellsccc4fc32009-04-03 16:42:38 +010010 *
11 * See Documentation/filesystems/caching/netfs-api.txt for more information on
12 * the netfs API.
David Howells955d00912009-04-03 16:42:38 +010013 */
14
15#define FSCACHE_DEBUG_LEVEL COOKIE
16#include <linux/module.h>
17#include <linux/slab.h>
18#include "internal.h"
19
20struct kmem_cache *fscache_cookie_jar;
21
David Howellsccc4fc32009-04-03 16:42:38 +010022static atomic_t fscache_object_debug_id = ATOMIC_INIT(0);
23
24static int fscache_acquire_non_index_cookie(struct fscache_cookie *cookie);
25static int fscache_alloc_object(struct fscache_cache *cache,
26 struct fscache_cookie *cookie);
27static int fscache_attach_object(struct fscache_cookie *cookie,
28 struct fscache_object *object);
29
David Howells955d00912009-04-03 16:42:38 +010030/*
31 * initialise an cookie jar slab element prior to any use
32 */
33void fscache_cookie_init_once(void *_cookie)
34{
35 struct fscache_cookie *cookie = _cookie;
36
37 memset(cookie, 0, sizeof(*cookie));
38 spin_lock_init(&cookie->lock);
David Howells1bccf512009-11-19 18:11:25 +000039 spin_lock_init(&cookie->stores_lock);
David Howells955d00912009-04-03 16:42:38 +010040 INIT_HLIST_HEAD(&cookie->backing_objects);
41}
42
43/*
David Howellsccc4fc32009-04-03 16:42:38 +010044 * request a cookie to represent an object (index, datafile, xattr, etc)
45 * - parent specifies the parent object
46 * - the top level index cookie for each netfs is stored in the fscache_netfs
47 * struct upon registration
48 * - def points to the definition
49 * - the netfs_data will be passed to the functions pointed to in *def
50 * - all attached caches will be searched to see if they contain this object
51 * - index objects aren't stored on disk until there's a dependent file that
52 * needs storing
53 * - other objects are stored in a selected cache immediately, and all the
54 * indices forming the path to it are instantiated if necessary
55 * - we never let on to the netfs about errors
56 * - we may set a negative cookie pointer, but that's okay
57 */
58struct fscache_cookie *__fscache_acquire_cookie(
59 struct fscache_cookie *parent,
60 const struct fscache_cookie_def *def,
61 void *netfs_data)
62{
63 struct fscache_cookie *cookie;
64
65 BUG_ON(!def);
66
67 _enter("{%s},{%s},%p",
68 parent ? (char *) parent->def->name : "<no-parent>",
69 def->name, netfs_data);
70
71 fscache_stat(&fscache_n_acquires);
72
73 /* if there's no parent cookie, then we don't create one here either */
74 if (!parent) {
75 fscache_stat(&fscache_n_acquires_null);
76 _leave(" [no parent]");
77 return NULL;
78 }
79
80 /* validate the definition */
81 BUG_ON(!def->get_key);
82 BUG_ON(!def->name[0]);
83
84 BUG_ON(def->type == FSCACHE_COOKIE_TYPE_INDEX &&
85 parent->def->type != FSCACHE_COOKIE_TYPE_INDEX);
86
87 /* allocate and initialise a cookie */
88 cookie = kmem_cache_alloc(fscache_cookie_jar, GFP_KERNEL);
89 if (!cookie) {
90 fscache_stat(&fscache_n_acquires_oom);
91 _leave(" [ENOMEM]");
92 return NULL;
93 }
94
95 atomic_set(&cookie->usage, 1);
96 atomic_set(&cookie->n_children, 0);
97
98 atomic_inc(&parent->usage);
99 atomic_inc(&parent->n_children);
100
101 cookie->def = def;
102 cookie->parent = parent;
103 cookie->netfs_data = netfs_data;
104 cookie->flags = 0;
105
David Howellsb34df792009-11-19 18:11:14 +0000106 /* radix tree insertion won't use the preallocation pool unless it's
107 * told it may not wait */
108 INIT_RADIX_TREE(&cookie->stores, GFP_NOFS & ~__GFP_WAIT);
David Howellsccc4fc32009-04-03 16:42:38 +0100109
110 switch (cookie->def->type) {
111 case FSCACHE_COOKIE_TYPE_INDEX:
112 fscache_stat(&fscache_n_cookie_index);
113 break;
114 case FSCACHE_COOKIE_TYPE_DATAFILE:
115 fscache_stat(&fscache_n_cookie_data);
116 break;
117 default:
118 fscache_stat(&fscache_n_cookie_special);
119 break;
120 }
121
122 /* if the object is an index then we need do nothing more here - we
123 * create indices on disk when we need them as an index may exist in
124 * multiple caches */
125 if (cookie->def->type != FSCACHE_COOKIE_TYPE_INDEX) {
126 if (fscache_acquire_non_index_cookie(cookie) < 0) {
127 atomic_dec(&parent->n_children);
128 __fscache_cookie_put(cookie);
129 fscache_stat(&fscache_n_acquires_nobufs);
130 _leave(" = NULL");
131 return NULL;
132 }
133 }
134
135 fscache_stat(&fscache_n_acquires_ok);
136 _leave(" = %p", cookie);
137 return cookie;
138}
139EXPORT_SYMBOL(__fscache_acquire_cookie);
140
141/*
142 * acquire a non-index cookie
143 * - this must make sure the index chain is instantiated and instantiate the
144 * object representation too
145 */
146static int fscache_acquire_non_index_cookie(struct fscache_cookie *cookie)
147{
148 struct fscache_object *object;
149 struct fscache_cache *cache;
150 uint64_t i_size;
151 int ret;
152
153 _enter("");
154
155 cookie->flags = 1 << FSCACHE_COOKIE_UNAVAILABLE;
156
157 /* now we need to see whether the backing objects for this cookie yet
158 * exist, if not there'll be nothing to search */
159 down_read(&fscache_addremove_sem);
160
161 if (list_empty(&fscache_cache_list)) {
162 up_read(&fscache_addremove_sem);
163 _leave(" = 0 [no caches]");
164 return 0;
165 }
166
167 /* select a cache in which to store the object */
168 cache = fscache_select_cache_for_object(cookie->parent);
169 if (!cache) {
170 up_read(&fscache_addremove_sem);
171 fscache_stat(&fscache_n_acquires_no_cache);
172 _leave(" = -ENOMEDIUM [no cache]");
173 return -ENOMEDIUM;
174 }
175
176 _debug("cache %s", cache->tag->name);
177
178 cookie->flags =
179 (1 << FSCACHE_COOKIE_LOOKING_UP) |
180 (1 << FSCACHE_COOKIE_CREATING) |
181 (1 << FSCACHE_COOKIE_NO_DATA_YET);
182
183 /* ask the cache to allocate objects for this cookie and its parent
184 * chain */
185 ret = fscache_alloc_object(cache, cookie);
186 if (ret < 0) {
187 up_read(&fscache_addremove_sem);
188 _leave(" = %d", ret);
189 return ret;
190 }
191
192 /* pass on how big the object we're caching is supposed to be */
193 cookie->def->get_attr(cookie->netfs_data, &i_size);
194
195 spin_lock(&cookie->lock);
196 if (hlist_empty(&cookie->backing_objects)) {
197 spin_unlock(&cookie->lock);
198 goto unavailable;
199 }
200
201 object = hlist_entry(cookie->backing_objects.first,
202 struct fscache_object, cookie_link);
203
204 fscache_set_store_limit(object, i_size);
205
206 /* initiate the process of looking up all the objects in the chain
207 * (done by fscache_initialise_object()) */
David Howellscaaef692013-05-10 19:50:26 +0100208 fscache_raise_event(object, FSCACHE_OBJECT_EV_NEW_CHILD);
David Howellsccc4fc32009-04-03 16:42:38 +0100209
210 spin_unlock(&cookie->lock);
211
212 /* we may be required to wait for lookup to complete at this point */
213 if (!fscache_defer_lookup) {
214 _debug("non-deferred lookup %p", &cookie->flags);
215 wait_on_bit(&cookie->flags, FSCACHE_COOKIE_LOOKING_UP,
216 fscache_wait_bit, TASK_UNINTERRUPTIBLE);
217 _debug("complete");
218 if (test_bit(FSCACHE_COOKIE_UNAVAILABLE, &cookie->flags))
219 goto unavailable;
220 }
221
222 up_read(&fscache_addremove_sem);
223 _leave(" = 0 [deferred]");
224 return 0;
225
226unavailable:
227 up_read(&fscache_addremove_sem);
228 _leave(" = -ENOBUFS");
229 return -ENOBUFS;
230}
231
232/*
233 * recursively allocate cache object records for a cookie/cache combination
234 * - caller must be holding the addremove sem
235 */
236static int fscache_alloc_object(struct fscache_cache *cache,
237 struct fscache_cookie *cookie)
238{
239 struct fscache_object *object;
David Howellsccc4fc32009-04-03 16:42:38 +0100240 int ret;
241
242 _enter("%p,%p{%s}", cache, cookie, cookie->def->name);
243
244 spin_lock(&cookie->lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800245 hlist_for_each_entry(object, &cookie->backing_objects,
David Howellsccc4fc32009-04-03 16:42:38 +0100246 cookie_link) {
247 if (object->cache == cache)
248 goto object_already_extant;
249 }
250 spin_unlock(&cookie->lock);
251
252 /* ask the cache to allocate an object (we may end up with duplicate
253 * objects at this stage, but we sort that out later) */
David Howells52bd75f2009-11-19 18:11:08 +0000254 fscache_stat(&fscache_n_cop_alloc_object);
David Howellsccc4fc32009-04-03 16:42:38 +0100255 object = cache->ops->alloc_object(cache, cookie);
David Howells52bd75f2009-11-19 18:11:08 +0000256 fscache_stat_d(&fscache_n_cop_alloc_object);
David Howellsccc4fc32009-04-03 16:42:38 +0100257 if (IS_ERR(object)) {
258 fscache_stat(&fscache_n_object_no_alloc);
259 ret = PTR_ERR(object);
260 goto error;
261 }
262
263 fscache_stat(&fscache_n_object_alloc);
264
265 object->debug_id = atomic_inc_return(&fscache_object_debug_id);
266
267 _debug("ALLOC OBJ%x: %s {%lx}",
268 object->debug_id, cookie->def->name, object->events);
269
270 ret = fscache_alloc_object(cache, cookie->parent);
271 if (ret < 0)
272 goto error_put;
273
274 /* only attach if we managed to allocate all we needed, otherwise
275 * discard the object we just allocated and instead use the one
276 * attached to the cookie */
David Howells52bd75f2009-11-19 18:11:08 +0000277 if (fscache_attach_object(cookie, object) < 0) {
278 fscache_stat(&fscache_n_cop_put_object);
David Howellsccc4fc32009-04-03 16:42:38 +0100279 cache->ops->put_object(object);
David Howells52bd75f2009-11-19 18:11:08 +0000280 fscache_stat_d(&fscache_n_cop_put_object);
281 }
David Howellsccc4fc32009-04-03 16:42:38 +0100282
283 _leave(" = 0");
284 return 0;
285
286object_already_extant:
287 ret = -ENOBUFS;
David Howells493f7bc2013-05-10 19:50:26 +0100288 if (fscache_object_is_dead(object)) {
David Howellsccc4fc32009-04-03 16:42:38 +0100289 spin_unlock(&cookie->lock);
290 goto error;
291 }
292 spin_unlock(&cookie->lock);
293 _leave(" = 0 [found]");
294 return 0;
295
296error_put:
David Howells52bd75f2009-11-19 18:11:08 +0000297 fscache_stat(&fscache_n_cop_put_object);
David Howellsccc4fc32009-04-03 16:42:38 +0100298 cache->ops->put_object(object);
David Howells52bd75f2009-11-19 18:11:08 +0000299 fscache_stat_d(&fscache_n_cop_put_object);
David Howellsccc4fc32009-04-03 16:42:38 +0100300error:
301 _leave(" = %d", ret);
302 return ret;
303}
304
305/*
306 * attach a cache object to a cookie
307 */
308static int fscache_attach_object(struct fscache_cookie *cookie,
309 struct fscache_object *object)
310{
311 struct fscache_object *p;
312 struct fscache_cache *cache = object->cache;
David Howellsccc4fc32009-04-03 16:42:38 +0100313 int ret;
314
315 _enter("{%s},{OBJ%x}", cookie->def->name, object->debug_id);
316
317 spin_lock(&cookie->lock);
318
319 /* there may be multiple initial creations of this object, but we only
320 * want one */
321 ret = -EEXIST;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800322 hlist_for_each_entry(p, &cookie->backing_objects, cookie_link) {
David Howellsccc4fc32009-04-03 16:42:38 +0100323 if (p->cache == object->cache) {
David Howells493f7bc2013-05-10 19:50:26 +0100324 if (fscache_object_is_dying(p))
David Howellsccc4fc32009-04-03 16:42:38 +0100325 ret = -ENOBUFS;
326 goto cant_attach_object;
327 }
328 }
329
330 /* pin the parent object */
331 spin_lock_nested(&cookie->parent->lock, 1);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800332 hlist_for_each_entry(p, &cookie->parent->backing_objects,
David Howellsccc4fc32009-04-03 16:42:38 +0100333 cookie_link) {
334 if (p->cache == object->cache) {
David Howells493f7bc2013-05-10 19:50:26 +0100335 if (fscache_object_is_dying(p)) {
David Howellsccc4fc32009-04-03 16:42:38 +0100336 ret = -ENOBUFS;
337 spin_unlock(&cookie->parent->lock);
338 goto cant_attach_object;
339 }
340 object->parent = p;
341 spin_lock(&p->lock);
342 p->n_children++;
343 spin_unlock(&p->lock);
344 break;
345 }
346 }
347 spin_unlock(&cookie->parent->lock);
348
349 /* attach to the cache's object list */
350 if (list_empty(&object->cache_link)) {
351 spin_lock(&cache->object_list_lock);
352 list_add(&object->cache_link, &cache->object_list);
353 spin_unlock(&cache->object_list_lock);
354 }
355
356 /* attach to the cookie */
357 object->cookie = cookie;
358 atomic_inc(&cookie->usage);
359 hlist_add_head(&object->cookie_link, &cookie->backing_objects);
David Howells4fbf4292009-11-19 18:11:04 +0000360
361 fscache_objlist_add(object);
David Howellsccc4fc32009-04-03 16:42:38 +0100362 ret = 0;
363
364cant_attach_object:
365 spin_unlock(&cookie->lock);
366 _leave(" = %d", ret);
367 return ret;
368}
369
370/*
David Howellsef778e72012-12-20 21:52:36 +0000371 * Invalidate an object. Callable with spinlocks held.
372 */
373void __fscache_invalidate(struct fscache_cookie *cookie)
374{
375 struct fscache_object *object;
376
377 _enter("{%s}", cookie->def->name);
378
379 fscache_stat(&fscache_n_invalidates);
380
381 /* Only permit invalidation of data files. Invalidating an index will
382 * require the caller to release all its attachments to the tree rooted
383 * there, and if it's doing that, it may as well just retire the
384 * cookie.
385 */
386 ASSERTCMP(cookie->def->type, ==, FSCACHE_COOKIE_TYPE_DATAFILE);
387
388 /* We will be updating the cookie too. */
389 BUG_ON(!cookie->def->get_aux);
390
391 /* If there's an object, we tell the object state machine to handle the
392 * invalidation on our behalf, otherwise there's nothing to do.
393 */
394 if (!hlist_empty(&cookie->backing_objects)) {
395 spin_lock(&cookie->lock);
396
397 if (!hlist_empty(&cookie->backing_objects) &&
398 !test_and_set_bit(FSCACHE_COOKIE_INVALIDATING,
399 &cookie->flags)) {
400 object = hlist_entry(cookie->backing_objects.first,
401 struct fscache_object,
402 cookie_link);
David Howells493f7bc2013-05-10 19:50:26 +0100403 if (fscache_object_is_live(object))
David Howellsef778e72012-12-20 21:52:36 +0000404 fscache_raise_event(
405 object, FSCACHE_OBJECT_EV_INVALIDATE);
406 }
407
408 spin_unlock(&cookie->lock);
409 }
410
411 _leave("");
412}
413EXPORT_SYMBOL(__fscache_invalidate);
414
415/*
416 * Wait for object invalidation to complete.
417 */
418void __fscache_wait_on_invalidate(struct fscache_cookie *cookie)
419{
420 _enter("%p", cookie);
421
422 wait_on_bit(&cookie->flags, FSCACHE_COOKIE_INVALIDATING,
423 fscache_wait_bit_interruptible,
424 TASK_UNINTERRUPTIBLE);
425
426 _leave("");
427}
428EXPORT_SYMBOL(__fscache_wait_on_invalidate);
429
430/*
David Howellsccc4fc32009-04-03 16:42:38 +0100431 * update the index entries backing a cookie
432 */
433void __fscache_update_cookie(struct fscache_cookie *cookie)
434{
435 struct fscache_object *object;
David Howellsccc4fc32009-04-03 16:42:38 +0100436
437 fscache_stat(&fscache_n_updates);
438
439 if (!cookie) {
440 fscache_stat(&fscache_n_updates_null);
441 _leave(" [no cookie]");
442 return;
443 }
444
445 _enter("{%s}", cookie->def->name);
446
447 BUG_ON(!cookie->def->get_aux);
448
449 spin_lock(&cookie->lock);
450
451 /* update the index entry on disk in each cache backing this cookie */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800452 hlist_for_each_entry(object,
David Howellsccc4fc32009-04-03 16:42:38 +0100453 &cookie->backing_objects, cookie_link) {
454 fscache_raise_event(object, FSCACHE_OBJECT_EV_UPDATE);
455 }
456
457 spin_unlock(&cookie->lock);
458 _leave("");
459}
460EXPORT_SYMBOL(__fscache_update_cookie);
461
462/*
463 * release a cookie back to the cache
464 * - the object will be marked as recyclable on disk if retire is true
465 * - all dependents of this cookie must have already been unregistered
466 * (indices/files/pages)
467 */
468void __fscache_relinquish_cookie(struct fscache_cookie *cookie, int retire)
469{
470 struct fscache_cache *cache;
471 struct fscache_object *object;
David Howellsccc4fc32009-04-03 16:42:38 +0100472
473 fscache_stat(&fscache_n_relinquishes);
David Howells2175bb02009-11-19 18:11:38 +0000474 if (retire)
475 fscache_stat(&fscache_n_relinquishes_retire);
David Howellsccc4fc32009-04-03 16:42:38 +0100476
477 if (!cookie) {
478 fscache_stat(&fscache_n_relinquishes_null);
479 _leave(" [no cookie]");
480 return;
481 }
482
483 _enter("%p{%s,%p},%d",
484 cookie, cookie->def->name, cookie->netfs_data, retire);
485
486 if (atomic_read(&cookie->n_children) != 0) {
487 printk(KERN_ERR "FS-Cache: Cookie '%s' still has children\n",
488 cookie->def->name);
489 BUG();
490 }
491
492 /* wait for the cookie to finish being instantiated (or to fail) */
493 if (test_bit(FSCACHE_COOKIE_CREATING, &cookie->flags)) {
494 fscache_stat(&fscache_n_relinquishes_waitcrt);
495 wait_on_bit(&cookie->flags, FSCACHE_COOKIE_CREATING,
496 fscache_wait_bit, TASK_UNINTERRUPTIBLE);
497 }
498
David Howellsef46ed82012-12-20 21:52:35 +0000499try_again:
David Howellsccc4fc32009-04-03 16:42:38 +0100500 spin_lock(&cookie->lock);
501
David Howellsccc4fc32009-04-03 16:42:38 +0100502 /* break links with all the active objects */
503 while (!hlist_empty(&cookie->backing_objects)) {
David Howellsef46ed82012-12-20 21:52:35 +0000504 int n_reads;
David Howellsccc4fc32009-04-03 16:42:38 +0100505 object = hlist_entry(cookie->backing_objects.first,
506 struct fscache_object,
507 cookie_link);
508
509 _debug("RELEASE OBJ%x", object->debug_id);
510
David Howellsef46ed82012-12-20 21:52:35 +0000511 set_bit(FSCACHE_COOKIE_WAITING_ON_READS, &cookie->flags);
512 n_reads = atomic_read(&object->n_reads);
513 if (n_reads) {
514 int n_ops = object->n_ops;
515 int n_in_progress = object->n_in_progress;
David Howells0f972b52012-12-20 21:52:33 +0000516 spin_unlock(&cookie->lock);
517 printk(KERN_ERR "FS-Cache:"
David Howellsef46ed82012-12-20 21:52:35 +0000518 " Cookie '%s' still has %d outstanding reads (%d,%d)\n",
519 cookie->def->name,
520 n_reads, n_ops, n_in_progress);
521 wait_on_bit(&cookie->flags, FSCACHE_COOKIE_WAITING_ON_READS,
522 fscache_wait_bit, TASK_UNINTERRUPTIBLE);
523 printk("Wait finished\n");
524 goto try_again;
David Howells0f972b52012-12-20 21:52:33 +0000525 }
526
David Howellsccc4fc32009-04-03 16:42:38 +0100527 /* detach each cache object from the object cookie */
528 spin_lock(&object->lock);
529 hlist_del_init(&object->cookie_link);
530
531 cache = object->cache;
532 object->cookie = NULL;
David Howellscaaef692013-05-10 19:50:26 +0100533 if (retire)
534 set_bit(FSCACHE_OBJECT_RETIRE, &object->flags);
535 fscache_raise_event(object, FSCACHE_OBJECT_EV_KILL);
David Howellsccc4fc32009-04-03 16:42:38 +0100536 spin_unlock(&object->lock);
537
538 if (atomic_dec_and_test(&cookie->usage))
539 /* the cookie refcount shouldn't be reduced to 0 yet */
540 BUG();
541 }
542
David Howells7e311a22009-11-19 18:11:11 +0000543 /* detach pointers back to the netfs */
544 cookie->netfs_data = NULL;
545 cookie->def = NULL;
546
David Howellsccc4fc32009-04-03 16:42:38 +0100547 spin_unlock(&cookie->lock);
548
549 if (cookie->parent) {
550 ASSERTCMP(atomic_read(&cookie->parent->usage), >, 0);
551 ASSERTCMP(atomic_read(&cookie->parent->n_children), >, 0);
552 atomic_dec(&cookie->parent->n_children);
553 }
554
555 /* finally dispose of the cookie */
556 ASSERTCMP(atomic_read(&cookie->usage), >, 0);
557 fscache_cookie_put(cookie);
558
559 _leave("");
560}
561EXPORT_SYMBOL(__fscache_relinquish_cookie);
562
563/*
David Howells955d00912009-04-03 16:42:38 +0100564 * destroy a cookie
565 */
566void __fscache_cookie_put(struct fscache_cookie *cookie)
567{
568 struct fscache_cookie *parent;
569
570 _enter("%p", cookie);
571
572 for (;;) {
573 _debug("FREE COOKIE %p", cookie);
574 parent = cookie->parent;
575 BUG_ON(!hlist_empty(&cookie->backing_objects));
576 kmem_cache_free(fscache_cookie_jar, cookie);
577
578 if (!parent)
579 break;
580
581 cookie = parent;
582 BUG_ON(atomic_read(&cookie->usage) <= 0);
583 if (!atomic_dec_and_test(&cookie->usage))
584 break;
585 }
586
587 _leave("");
588}