1 /* FS-Cache interface to CacheFiles
3 * Copyright (C) 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 Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
12 #include <linux/slab.h>
13 #include <linux/mount.h>
16 struct cachefiles_lookup_data
{
17 struct cachefiles_xattr
*auxdata
; /* auxiliary data */
18 char *key
; /* key path */
21 static int cachefiles_attr_changed(struct fscache_object
*_object
);
24 * allocate an object record for a cookie lookup and prepare the lookup data
26 static struct fscache_object
*cachefiles_alloc_object(
27 struct fscache_cache
*_cache
,
28 struct fscache_cookie
*cookie
)
30 struct cachefiles_lookup_data
*lookup_data
;
31 struct cachefiles_object
*object
;
32 struct cachefiles_cache
*cache
;
33 struct cachefiles_xattr
*auxdata
;
34 unsigned keylen
, auxlen
;
38 cache
= container_of(_cache
, struct cachefiles_cache
, cache
);
40 _enter("{%s},%p,", cache
->cache
.identifier
, cookie
);
42 lookup_data
= kmalloc(sizeof(*lookup_data
), cachefiles_gfp
);
44 goto nomem_lookup_data
;
46 /* create a new object record and a temporary leaf image */
47 object
= kmem_cache_alloc(cachefiles_object_jar
, cachefiles_gfp
);
51 ASSERTCMP(object
->backer
, ==, NULL
);
53 BUG_ON(test_bit(CACHEFILES_OBJECT_ACTIVE
, &object
->flags
));
54 atomic_set(&object
->usage
, 1);
56 fscache_object_init(&object
->fscache
, cookie
, &cache
->cache
);
58 object
->type
= cookie
->def
->type
;
60 /* get hold of the raw key
61 * - stick the length on the front and leave space on the back for the
64 buffer
= kmalloc((2 + 512) + 3, cachefiles_gfp
);
68 keylen
= cookie
->def
->get_key(cookie
->netfs_data
, buffer
+ 2, 512);
69 ASSERTCMP(keylen
, <, 512);
71 *(uint16_t *)buffer
= keylen
;
72 ((char *)buffer
)[keylen
+ 2] = 0;
73 ((char *)buffer
)[keylen
+ 3] = 0;
74 ((char *)buffer
)[keylen
+ 4] = 0;
76 /* turn the raw key into something that can work with as a filename */
77 key
= cachefiles_cook_key(buffer
, keylen
+ 2, object
->type
);
81 /* get hold of the auxiliary data and prepend the object type */
84 if (cookie
->def
->get_aux
) {
85 auxlen
= cookie
->def
->get_aux(cookie
->netfs_data
,
87 ASSERTCMP(auxlen
, <, 511);
90 auxdata
->len
= auxlen
+ 1;
91 auxdata
->type
= cookie
->def
->type
;
93 lookup_data
->auxdata
= auxdata
;
94 lookup_data
->key
= key
;
95 object
->lookup_data
= lookup_data
;
97 _leave(" = %p [%p]", &object
->fscache
, lookup_data
);
98 return &object
->fscache
;
103 BUG_ON(test_bit(CACHEFILES_OBJECT_ACTIVE
, &object
->flags
));
104 kmem_cache_free(cachefiles_object_jar
, object
);
105 fscache_object_destroyed(&cache
->cache
);
109 _leave(" = -ENOMEM");
110 return ERR_PTR(-ENOMEM
);
114 * attempt to look up the nominated node in this cache
115 * - return -ETIMEDOUT to be scheduled again
117 static int cachefiles_lookup_object(struct fscache_object
*_object
)
119 struct cachefiles_lookup_data
*lookup_data
;
120 struct cachefiles_object
*parent
, *object
;
121 struct cachefiles_cache
*cache
;
122 const struct cred
*saved_cred
;
125 _enter("{OBJ%x}", _object
->debug_id
);
127 cache
= container_of(_object
->cache
, struct cachefiles_cache
, cache
);
128 parent
= container_of(_object
->parent
,
129 struct cachefiles_object
, fscache
);
130 object
= container_of(_object
, struct cachefiles_object
, fscache
);
131 lookup_data
= object
->lookup_data
;
133 ASSERTCMP(lookup_data
, !=, NULL
);
135 /* look up the key, creating any missing bits */
136 cachefiles_begin_secure(cache
, &saved_cred
);
137 ret
= cachefiles_walk_to_object(parent
, object
,
139 lookup_data
->auxdata
);
140 cachefiles_end_secure(cache
, saved_cred
);
142 /* polish off by setting the attributes of non-index files */
144 object
->fscache
.cookie
->def
->type
!= FSCACHE_COOKIE_TYPE_INDEX
)
145 cachefiles_attr_changed(&object
->fscache
);
147 if (ret
< 0 && ret
!= -ETIMEDOUT
) {
149 pr_warn("Lookup failed error %d\n", ret
);
150 fscache_object_lookup_error(&object
->fscache
);
153 _leave(" [%d]", ret
);
158 * indication of lookup completion
160 static void cachefiles_lookup_complete(struct fscache_object
*_object
)
162 struct cachefiles_object
*object
;
164 object
= container_of(_object
, struct cachefiles_object
, fscache
);
166 _enter("{OBJ%x,%p}", object
->fscache
.debug_id
, object
->lookup_data
);
168 if (object
->lookup_data
) {
169 kfree(object
->lookup_data
->key
);
170 kfree(object
->lookup_data
->auxdata
);
171 kfree(object
->lookup_data
);
172 object
->lookup_data
= NULL
;
177 * increment the usage count on an inode object (may fail if unmounting)
180 struct fscache_object
*cachefiles_grab_object(struct fscache_object
*_object
)
182 struct cachefiles_object
*object
=
183 container_of(_object
, struct cachefiles_object
, fscache
);
185 _enter("{OBJ%x,%d}", _object
->debug_id
, atomic_read(&object
->usage
));
187 #ifdef CACHEFILES_DEBUG_SLAB
188 ASSERT((atomic_read(&object
->usage
) & 0xffff0000) != 0x6b6b0000);
191 atomic_inc(&object
->usage
);
192 return &object
->fscache
;
196 * update the auxiliary data for an object object on disk
198 static void cachefiles_update_object(struct fscache_object
*_object
)
200 struct cachefiles_object
*object
;
201 struct cachefiles_xattr
*auxdata
;
202 struct cachefiles_cache
*cache
;
203 struct fscache_cookie
*cookie
;
204 const struct cred
*saved_cred
;
207 _enter("{OBJ%x}", _object
->debug_id
);
209 object
= container_of(_object
, struct cachefiles_object
, fscache
);
210 cache
= container_of(object
->fscache
.cache
, struct cachefiles_cache
,
213 if (!fscache_use_cookie(_object
)) {
218 cookie
= object
->fscache
.cookie
;
220 if (!cookie
->def
->get_aux
) {
221 fscache_unuse_cookie(_object
);
226 auxdata
= kmalloc(2 + 512 + 3, cachefiles_gfp
);
228 fscache_unuse_cookie(_object
);
233 auxlen
= cookie
->def
->get_aux(cookie
->netfs_data
, auxdata
->data
, 511);
234 fscache_unuse_cookie(_object
);
235 ASSERTCMP(auxlen
, <, 511);
237 auxdata
->len
= auxlen
+ 1;
238 auxdata
->type
= cookie
->def
->type
;
240 cachefiles_begin_secure(cache
, &saved_cred
);
241 cachefiles_update_object_xattr(object
, auxdata
);
242 cachefiles_end_secure(cache
, saved_cred
);
248 * discard the resources pinned by an object and effect retirement if
251 static void cachefiles_drop_object(struct fscache_object
*_object
)
253 struct cachefiles_object
*object
;
254 struct cachefiles_cache
*cache
;
255 const struct cred
*saved_cred
;
259 object
= container_of(_object
, struct cachefiles_object
, fscache
);
262 object
->fscache
.debug_id
, atomic_read(&object
->usage
));
264 cache
= container_of(object
->fscache
.cache
,
265 struct cachefiles_cache
, cache
);
267 #ifdef CACHEFILES_DEBUG_SLAB
268 ASSERT((atomic_read(&object
->usage
) & 0xffff0000) != 0x6b6b0000);
271 /* We need to tidy the object up if we did in fact manage to open it.
272 * It's possible for us to get here before the object is fully
273 * initialised if the parent goes away or the object gets retired
274 * before we set it up.
276 if (object
->dentry
) {
277 /* delete retired objects */
278 if (test_bit(FSCACHE_OBJECT_RETIRED
, &object
->fscache
.flags
) &&
279 _object
!= cache
->cache
.fsdef
281 _debug("- retire object OBJ%x", object
->fscache
.debug_id
);
282 cachefiles_begin_secure(cache
, &saved_cred
);
283 cachefiles_delete_object(cache
, object
);
284 cachefiles_end_secure(cache
, saved_cred
);
287 /* close the filesystem stuff attached to the object */
288 if (object
->backer
!= object
->dentry
)
289 dput(object
->backer
);
290 object
->backer
= NULL
;
293 /* note that the object is now inactive */
294 if (test_bit(CACHEFILES_OBJECT_ACTIVE
, &object
->flags
)) {
295 write_lock(&cache
->active_lock
);
296 if (!test_and_clear_bit(CACHEFILES_OBJECT_ACTIVE
,
299 rb_erase(&object
->active_node
, &cache
->active_nodes
);
300 wake_up_bit(&object
->flags
, CACHEFILES_OBJECT_ACTIVE
);
301 write_unlock(&cache
->active_lock
);
304 dput(object
->dentry
);
305 object
->dentry
= NULL
;
311 * dispose of a reference to an object
313 static void cachefiles_put_object(struct fscache_object
*_object
)
315 struct cachefiles_object
*object
;
316 struct fscache_cache
*cache
;
320 object
= container_of(_object
, struct cachefiles_object
, fscache
);
323 object
->fscache
.debug_id
, atomic_read(&object
->usage
));
325 #ifdef CACHEFILES_DEBUG_SLAB
326 ASSERT((atomic_read(&object
->usage
) & 0xffff0000) != 0x6b6b0000);
329 ASSERTIFCMP(object
->fscache
.parent
,
330 object
->fscache
.parent
->n_children
, >, 0);
332 if (atomic_dec_and_test(&object
->usage
)) {
333 _debug("- kill object OBJ%x", object
->fscache
.debug_id
);
335 ASSERT(!test_bit(CACHEFILES_OBJECT_ACTIVE
, &object
->flags
));
336 ASSERTCMP(object
->fscache
.parent
, ==, NULL
);
337 ASSERTCMP(object
->backer
, ==, NULL
);
338 ASSERTCMP(object
->dentry
, ==, NULL
);
339 ASSERTCMP(object
->fscache
.n_ops
, ==, 0);
340 ASSERTCMP(object
->fscache
.n_children
, ==, 0);
342 if (object
->lookup_data
) {
343 kfree(object
->lookup_data
->key
);
344 kfree(object
->lookup_data
->auxdata
);
345 kfree(object
->lookup_data
);
346 object
->lookup_data
= NULL
;
349 cache
= object
->fscache
.cache
;
350 fscache_object_destroy(&object
->fscache
);
351 kmem_cache_free(cachefiles_object_jar
, object
);
352 fscache_object_destroyed(cache
);
361 static void cachefiles_sync_cache(struct fscache_cache
*_cache
)
363 struct cachefiles_cache
*cache
;
364 const struct cred
*saved_cred
;
367 _enter("%p", _cache
);
369 cache
= container_of(_cache
, struct cachefiles_cache
, cache
);
371 /* make sure all pages pinned by operations on behalf of the netfs are
373 cachefiles_begin_secure(cache
, &saved_cred
);
374 down_read(&cache
->mnt
->mnt_sb
->s_umount
);
375 ret
= sync_filesystem(cache
->mnt
->mnt_sb
);
376 up_read(&cache
->mnt
->mnt_sb
->s_umount
);
377 cachefiles_end_secure(cache
, saved_cred
);
380 cachefiles_io_error(cache
,
381 "Attempt to sync backing fs superblock"
382 " returned error %d",
387 * check if the backing cache is updated to FS-Cache
388 * - called by FS-Cache when evaluates if need to invalidate the cache
390 static bool cachefiles_check_consistency(struct fscache_operation
*op
)
392 struct cachefiles_object
*object
;
393 struct cachefiles_cache
*cache
;
394 const struct cred
*saved_cred
;
397 _enter("{OBJ%x}", op
->object
->debug_id
);
399 object
= container_of(op
->object
, struct cachefiles_object
, fscache
);
400 cache
= container_of(object
->fscache
.cache
,
401 struct cachefiles_cache
, cache
);
403 cachefiles_begin_secure(cache
, &saved_cred
);
404 ret
= cachefiles_check_auxdata(object
);
405 cachefiles_end_secure(cache
, saved_cred
);
407 _leave(" = %d", ret
);
412 * notification the attributes on an object have changed
413 * - called with reads/writes excluded by FS-Cache
415 static int cachefiles_attr_changed(struct fscache_object
*_object
)
417 struct cachefiles_object
*object
;
418 struct cachefiles_cache
*cache
;
419 const struct cred
*saved_cred
;
420 struct iattr newattrs
;
425 _object
->cookie
->def
->get_attr(_object
->cookie
->netfs_data
, &ni_size
);
427 _enter("{OBJ%x},[%llu]",
428 _object
->debug_id
, (unsigned long long) ni_size
);
430 object
= container_of(_object
, struct cachefiles_object
, fscache
);
431 cache
= container_of(object
->fscache
.cache
,
432 struct cachefiles_cache
, cache
);
434 if (ni_size
== object
->i_size
)
440 ASSERT(d_is_reg(object
->backer
));
442 fscache_set_store_limit(&object
->fscache
, ni_size
);
444 oi_size
= i_size_read(d_backing_inode(object
->backer
));
445 if (oi_size
== ni_size
)
448 cachefiles_begin_secure(cache
, &saved_cred
);
449 mutex_lock(&d_inode(object
->backer
)->i_mutex
);
451 /* if there's an extension to a partial page at the end of the backing
452 * file, we need to discard the partial page so that we pick up new
454 if (oi_size
& ~PAGE_MASK
&& ni_size
> oi_size
) {
455 _debug("discard tail %llx", oi_size
);
456 newattrs
.ia_valid
= ATTR_SIZE
;
457 newattrs
.ia_size
= oi_size
& PAGE_MASK
;
458 ret
= notify_change(object
->backer
, &newattrs
, NULL
);
460 goto truncate_failed
;
463 newattrs
.ia_valid
= ATTR_SIZE
;
464 newattrs
.ia_size
= ni_size
;
465 ret
= notify_change(object
->backer
, &newattrs
, NULL
);
468 mutex_unlock(&d_inode(object
->backer
)->i_mutex
);
469 cachefiles_end_secure(cache
, saved_cred
);
472 fscache_set_store_limit(&object
->fscache
, 0);
473 cachefiles_io_error_obj(object
, "Size set failed");
477 _leave(" = %d", ret
);
482 * Invalidate an object
484 static void cachefiles_invalidate_object(struct fscache_operation
*op
)
486 struct cachefiles_object
*object
;
487 struct cachefiles_cache
*cache
;
488 const struct cred
*saved_cred
;
493 object
= container_of(op
->object
, struct cachefiles_object
, fscache
);
494 cache
= container_of(object
->fscache
.cache
,
495 struct cachefiles_cache
, cache
);
497 op
->object
->cookie
->def
->get_attr(op
->object
->cookie
->netfs_data
,
500 _enter("{OBJ%x},[%llu]",
501 op
->object
->debug_id
, (unsigned long long)ni_size
);
503 if (object
->backer
) {
504 ASSERT(d_is_reg(object
->backer
));
506 fscache_set_store_limit(&object
->fscache
, ni_size
);
508 path
.dentry
= object
->backer
;
509 path
.mnt
= cache
->mnt
;
511 cachefiles_begin_secure(cache
, &saved_cred
);
512 ret
= vfs_truncate(&path
, 0);
514 ret
= vfs_truncate(&path
, ni_size
);
515 cachefiles_end_secure(cache
, saved_cred
);
518 fscache_set_store_limit(&object
->fscache
, 0);
520 cachefiles_io_error_obj(object
,
521 "Invalidate failed");
525 fscache_op_complete(op
, true);
530 * dissociate a cache from all the pages it was backing
532 static void cachefiles_dissociate_pages(struct fscache_cache
*cache
)
537 const struct fscache_cache_ops cachefiles_cache_ops
= {
538 .name
= "cachefiles",
539 .alloc_object
= cachefiles_alloc_object
,
540 .lookup_object
= cachefiles_lookup_object
,
541 .lookup_complete
= cachefiles_lookup_complete
,
542 .grab_object
= cachefiles_grab_object
,
543 .update_object
= cachefiles_update_object
,
544 .invalidate_object
= cachefiles_invalidate_object
,
545 .drop_object
= cachefiles_drop_object
,
546 .put_object
= cachefiles_put_object
,
547 .sync_cache
= cachefiles_sync_cache
,
548 .attr_changed
= cachefiles_attr_changed
,
549 .read_or_alloc_page
= cachefiles_read_or_alloc_page
,
550 .read_or_alloc_pages
= cachefiles_read_or_alloc_pages
,
551 .allocate_page
= cachefiles_allocate_page
,
552 .allocate_pages
= cachefiles_allocate_pages
,
553 .write_page
= cachefiles_write_page
,
554 .uncache_page
= cachefiles_uncache_page
,
555 .dissociate_pages
= cachefiles_dissociate_pages
,
556 .check_consistency
= cachefiles_check_consistency
,