1 /* CacheFiles path walking and related routines
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/module.h>
13 #include <linux/sched.h>
14 #include <linux/file.h>
16 #include <linux/fsnotify.h>
17 #include <linux/quotaops.h>
18 #include <linux/xattr.h>
19 #include <linux/mount.h>
20 #include <linux/namei.h>
21 #include <linux/security.h>
22 #include <linux/slab.h>
23 #include <linux/xattr.h>
26 #define CACHEFILES_KEYBUF_SIZE 512
29 * dump debugging info about an object
32 void __cachefiles_printk_object(struct cachefiles_object
*object
,
35 struct fscache_cookie
*cookie
;
39 pr_err("%sobject: OBJ%x\n", prefix
, object
->fscache
.debug_id
);
40 pr_err("%sobjstate=%s fl=%lx wbusy=%x ev=%lx[%lx]\n",
41 prefix
, object
->fscache
.state
->name
,
42 object
->fscache
.flags
, work_busy(&object
->fscache
.work
),
43 object
->fscache
.events
, object
->fscache
.event_mask
);
44 pr_err("%sops=%u inp=%u exc=%u\n",
45 prefix
, object
->fscache
.n_ops
, object
->fscache
.n_in_progress
,
46 object
->fscache
.n_exclusive
);
47 pr_err("%sparent=%p\n",
48 prefix
, object
->fscache
.parent
);
50 spin_lock(&object
->fscache
.lock
);
51 cookie
= object
->fscache
.cookie
;
53 pr_err("%scookie=%p [pr=%p nd=%p fl=%lx]\n",
55 object
->fscache
.cookie
,
56 object
->fscache
.cookie
->parent
,
57 object
->fscache
.cookie
->netfs_data
,
58 object
->fscache
.cookie
->flags
);
59 pr_err("%skey=[%u] '", prefix
, cookie
->key_len
);
60 k
= (cookie
->key_len
<= sizeof(cookie
->inline_key
)) ?
61 cookie
->inline_key
: cookie
->key
;
62 for (loop
= 0; loop
< cookie
->key_len
; loop
++)
63 pr_cont("%02x", k
[loop
]);
66 pr_err("%scookie=NULL\n", prefix
);
68 spin_unlock(&object
->fscache
.lock
);
72 * dump debugging info about a pair of objects
74 static noinline
void cachefiles_printk_object(struct cachefiles_object
*object
,
75 struct cachefiles_object
*xobject
)
78 __cachefiles_printk_object(object
, "");
80 __cachefiles_printk_object(xobject
, "x");
84 * mark the owner of a dentry, if there is one, to indicate that that dentry
85 * has been preemptively deleted
86 * - the caller must hold the i_mutex on the dentry's parent as required to
87 * call vfs_unlink(), vfs_rmdir() or vfs_rename()
89 static void cachefiles_mark_object_buried(struct cachefiles_cache
*cache
,
90 struct dentry
*dentry
,
91 enum fscache_why_object_killed why
)
93 struct cachefiles_object
*object
;
96 _enter(",'%pd'", dentry
);
98 write_lock(&cache
->active_lock
);
100 p
= cache
->active_nodes
.rb_node
;
102 object
= rb_entry(p
, struct cachefiles_object
, active_node
);
103 if (object
->dentry
> dentry
)
105 else if (object
->dentry
< dentry
)
111 write_unlock(&cache
->active_lock
);
112 trace_cachefiles_mark_buried(NULL
, dentry
, why
);
113 _leave(" [no owner]");
116 /* found the dentry for */
118 kdebug("preemptive burial: OBJ%x [%s] %p",
119 object
->fscache
.debug_id
,
120 object
->fscache
.state
->name
,
123 trace_cachefiles_mark_buried(object
, dentry
, why
);
125 if (fscache_object_is_live(&object
->fscache
)) {
127 pr_err("Error: Can't preemptively bury live object\n");
128 cachefiles_printk_object(object
, NULL
);
130 if (why
!= FSCACHE_OBJECT_IS_STALE
)
131 fscache_object_mark_killed(&object
->fscache
, why
);
134 write_unlock(&cache
->active_lock
);
135 _leave(" [owner marked]");
139 * record the fact that an object is now active
141 static int cachefiles_mark_object_active(struct cachefiles_cache
*cache
,
142 struct cachefiles_object
*object
)
144 struct cachefiles_object
*xobject
;
145 struct rb_node
**_p
, *_parent
= NULL
;
146 struct dentry
*dentry
;
148 _enter(",%p", object
);
151 write_lock(&cache
->active_lock
);
153 dentry
= object
->dentry
;
154 trace_cachefiles_mark_active(object
, dentry
);
156 if (test_and_set_bit(CACHEFILES_OBJECT_ACTIVE
, &object
->flags
)) {
157 pr_err("Error: Object already active\n");
158 cachefiles_printk_object(object
, NULL
);
162 _p
= &cache
->active_nodes
.rb_node
;
165 xobject
= rb_entry(_parent
,
166 struct cachefiles_object
, active_node
);
168 ASSERT(xobject
!= object
);
170 if (xobject
->dentry
> dentry
)
171 _p
= &(*_p
)->rb_left
;
172 else if (xobject
->dentry
< dentry
)
173 _p
= &(*_p
)->rb_right
;
175 goto wait_for_old_object
;
178 rb_link_node(&object
->active_node
, _parent
, _p
);
179 rb_insert_color(&object
->active_node
, &cache
->active_nodes
);
181 write_unlock(&cache
->active_lock
);
185 /* an old object from a previous incarnation is hogging the slot - we
186 * need to wait for it to be destroyed */
188 trace_cachefiles_wait_active(object
, dentry
, xobject
);
189 clear_bit(CACHEFILES_OBJECT_ACTIVE
, &object
->flags
);
191 if (fscache_object_is_live(&xobject
->fscache
)) {
193 pr_err("Error: Unexpected object collision\n");
194 cachefiles_printk_object(object
, xobject
);
196 atomic_inc(&xobject
->usage
);
197 write_unlock(&cache
->active_lock
);
199 if (test_bit(CACHEFILES_OBJECT_ACTIVE
, &xobject
->flags
)) {
200 wait_queue_head_t
*wq
;
202 signed long timeout
= 60 * HZ
;
203 wait_queue_entry_t wait
;
206 /* if the object we're waiting for is queued for processing,
207 * then just put ourselves on the queue behind it */
208 if (work_pending(&xobject
->fscache
.work
)) {
209 _debug("queue OBJ%x behind OBJ%x immediately",
210 object
->fscache
.debug_id
,
211 xobject
->fscache
.debug_id
);
215 /* otherwise we sleep until either the object we're waiting for
216 * is done, or the fscache_object is congested */
217 wq
= bit_waitqueue(&xobject
->flags
, CACHEFILES_OBJECT_ACTIVE
);
221 prepare_to_wait(wq
, &wait
, TASK_UNINTERRUPTIBLE
);
222 if (!test_bit(CACHEFILES_OBJECT_ACTIVE
, &xobject
->flags
))
225 requeue
= fscache_object_sleep_till_congested(&timeout
);
226 } while (timeout
> 0 && !requeue
);
227 finish_wait(wq
, &wait
);
230 test_bit(CACHEFILES_OBJECT_ACTIVE
, &xobject
->flags
)) {
231 _debug("queue OBJ%x behind OBJ%x after wait",
232 object
->fscache
.debug_id
,
233 xobject
->fscache
.debug_id
);
239 pr_err("Error: Overlong wait for old active object to go away\n");
240 cachefiles_printk_object(object
, xobject
);
245 ASSERT(!test_bit(CACHEFILES_OBJECT_ACTIVE
, &xobject
->flags
));
247 cache
->cache
.ops
->put_object(&xobject
->fscache
, cachefiles_obj_put_wait_retry
);
251 cache
->cache
.ops
->put_object(&xobject
->fscache
, cachefiles_obj_put_wait_timeo
);
252 _leave(" = -ETIMEDOUT");
257 * Mark an object as being inactive.
259 void cachefiles_mark_object_inactive(struct cachefiles_cache
*cache
,
260 struct cachefiles_object
*object
,
263 struct dentry
*dentry
= object
->dentry
;
264 struct inode
*inode
= d_backing_inode(dentry
);
266 trace_cachefiles_mark_inactive(object
, dentry
, inode
);
268 write_lock(&cache
->active_lock
);
269 rb_erase(&object
->active_node
, &cache
->active_nodes
);
270 clear_bit(CACHEFILES_OBJECT_ACTIVE
, &object
->flags
);
271 write_unlock(&cache
->active_lock
);
273 wake_up_bit(&object
->flags
, CACHEFILES_OBJECT_ACTIVE
);
275 /* This object can now be culled, so we need to let the daemon know
276 * that there is something it can remove if it needs to.
278 atomic_long_add(i_blocks
, &cache
->b_released
);
279 if (atomic_inc_return(&cache
->f_released
))
280 cachefiles_state_changed(cache
);
284 * delete an object representation from the cache
285 * - file backed objects are unlinked
286 * - directory backed objects are stuffed into the graveyard for userspace to
288 * - unlocks the directory mutex
290 static int cachefiles_bury_object(struct cachefiles_cache
*cache
,
291 struct cachefiles_object
*object
,
295 enum fscache_why_object_killed why
)
297 struct dentry
*grave
, *trap
;
298 struct path path
, path_to_graveyard
;
299 char nbuffer
[8 + 8 + 1];
302 _enter(",'%pd','%pd'", dir
, rep
);
304 _debug("remove %p from %p", rep
, dir
);
306 /* non-directories can just be unlinked */
307 if (!d_is_dir(rep
)) {
308 _debug("unlink stale object");
310 path
.mnt
= cache
->mnt
;
312 ret
= security_path_unlink(&path
, rep
);
314 cachefiles_io_error(cache
, "Unlink security error");
316 trace_cachefiles_unlink(object
, rep
, why
);
317 ret
= vfs_unlink(d_inode(dir
), rep
, NULL
);
320 cachefiles_mark_object_buried(cache
, rep
, why
);
323 inode_unlock(d_inode(dir
));
326 cachefiles_io_error(cache
, "Unlink failed");
328 _leave(" = %d", ret
);
332 /* directories have to be moved to the graveyard */
333 _debug("move stale object to graveyard");
334 inode_unlock(d_inode(dir
));
337 /* first step is to make up a grave dentry in the graveyard */
338 sprintf(nbuffer
, "%08x%08x",
339 (uint32_t) get_seconds(),
340 (uint32_t) atomic_inc_return(&cache
->gravecounter
));
342 /* do the multiway lock magic */
343 trap
= lock_rename(cache
->graveyard
, dir
);
345 /* do some checks before getting the grave dentry */
346 if (rep
->d_parent
!= dir
|| IS_DEADDIR(d_inode(rep
))) {
347 /* the entry was probably culled when we dropped the parent dir
349 unlock_rename(cache
->graveyard
, dir
);
350 _leave(" = 0 [culled?]");
354 if (!d_can_lookup(cache
->graveyard
)) {
355 unlock_rename(cache
->graveyard
, dir
);
356 cachefiles_io_error(cache
, "Graveyard no longer a directory");
361 unlock_rename(cache
->graveyard
, dir
);
362 cachefiles_io_error(cache
, "May not make directory loop");
366 if (d_mountpoint(rep
)) {
367 unlock_rename(cache
->graveyard
, dir
);
368 cachefiles_io_error(cache
, "Mountpoint in cache");
372 grave
= lookup_one_len(nbuffer
, cache
->graveyard
, strlen(nbuffer
));
374 unlock_rename(cache
->graveyard
, dir
);
376 if (PTR_ERR(grave
) == -ENOMEM
) {
377 _leave(" = -ENOMEM");
381 cachefiles_io_error(cache
, "Lookup error %ld",
386 if (d_is_positive(grave
)) {
387 unlock_rename(cache
->graveyard
, dir
);
394 if (d_mountpoint(grave
)) {
395 unlock_rename(cache
->graveyard
, dir
);
397 cachefiles_io_error(cache
, "Mountpoint in graveyard");
401 /* target should not be an ancestor of source */
403 unlock_rename(cache
->graveyard
, dir
);
405 cachefiles_io_error(cache
, "May not make directory loop");
409 /* attempt the rename */
410 path
.mnt
= cache
->mnt
;
412 path_to_graveyard
.mnt
= cache
->mnt
;
413 path_to_graveyard
.dentry
= cache
->graveyard
;
414 ret
= security_path_rename(&path
, rep
, &path_to_graveyard
, grave
, 0);
416 cachefiles_io_error(cache
, "Rename security error %d", ret
);
418 trace_cachefiles_rename(object
, rep
, grave
, why
);
419 ret
= vfs_rename(d_inode(dir
), rep
,
420 d_inode(cache
->graveyard
), grave
, NULL
, 0);
421 if (ret
!= 0 && ret
!= -ENOMEM
)
422 cachefiles_io_error(cache
,
423 "Rename failed with error %d", ret
);
426 cachefiles_mark_object_buried(cache
, rep
, why
);
429 unlock_rename(cache
->graveyard
, dir
);
436 * delete an object representation from the cache
438 int cachefiles_delete_object(struct cachefiles_cache
*cache
,
439 struct cachefiles_object
*object
)
444 _enter(",OBJ%x{%p}", object
->fscache
.debug_id
, object
->dentry
);
446 ASSERT(object
->dentry
);
447 ASSERT(d_backing_inode(object
->dentry
));
448 ASSERT(object
->dentry
->d_parent
);
450 dir
= dget_parent(object
->dentry
);
452 inode_lock_nested(d_inode(dir
), I_MUTEX_PARENT
);
454 if (test_bit(FSCACHE_OBJECT_KILLED_BY_CACHE
, &object
->fscache
.flags
)) {
455 /* object allocation for the same key preemptively deleted this
456 * object's file so that it could create its own file */
457 _debug("object preemptively buried");
458 inode_unlock(d_inode(dir
));
461 /* we need to check that our parent is _still_ our parent - it
462 * may have been renamed */
463 if (dir
== object
->dentry
->d_parent
) {
464 ret
= cachefiles_bury_object(cache
, object
, dir
,
465 object
->dentry
, false,
466 FSCACHE_OBJECT_WAS_RETIRED
);
468 /* it got moved, presumably by cachefilesd culling it,
469 * so it's no longer in the key path and we can ignore
471 inode_unlock(d_inode(dir
));
477 _leave(" = %d", ret
);
482 * walk from the parent object to the child object through the backing
483 * filesystem, creating directories as we go
485 int cachefiles_walk_to_object(struct cachefiles_object
*parent
,
486 struct cachefiles_object
*object
,
488 struct cachefiles_xattr
*auxdata
)
490 struct cachefiles_cache
*cache
;
491 struct dentry
*dir
, *next
= NULL
;
498 _enter("OBJ%x{%p},OBJ%x,%s,",
499 parent
->fscache
.debug_id
, parent
->dentry
,
500 object
->fscache
.debug_id
, key
);
502 cache
= container_of(parent
->fscache
.cache
,
503 struct cachefiles_cache
, cache
);
504 path
.mnt
= cache
->mnt
;
506 ASSERT(parent
->dentry
);
507 ASSERT(d_backing_inode(parent
->dentry
));
509 if (!(d_is_dir(parent
->dentry
))) {
510 // TODO: convert file to dir
511 _leave("looking up in none directory");
515 dir
= dget(parent
->dentry
);
518 /* attempt to transit the first directory component */
522 /* key ends in a double NUL */
523 key
= key
+ nlen
+ 1;
528 /* search the current directory for the element name */
529 _debug("lookup '%s'", name
);
531 inode_lock_nested(d_inode(dir
), I_MUTEX_PARENT
);
534 next
= lookup_one_len(name
, dir
, nlen
);
535 cachefiles_hist(cachefiles_lookup_histogram
, start
);
537 trace_cachefiles_lookup(object
, next
, NULL
);
541 inode
= d_backing_inode(next
);
542 trace_cachefiles_lookup(object
, next
, inode
);
543 _debug("next -> %p %s", next
, inode
? "positive" : "negative");
546 object
->new = !inode
;
548 /* if this element of the path doesn't exist, then the lookup phase
549 * failed, and we can release any readers in the certain knowledge that
550 * there's nothing for them to actually read */
551 if (d_is_negative(next
))
552 fscache_object_lookup_negative(&object
->fscache
);
554 /* we need to create the object if it's negative */
555 if (key
|| object
->type
== FSCACHE_COOKIE_TYPE_INDEX
) {
556 /* index objects and intervening tree levels must be subdirs */
557 if (d_is_negative(next
)) {
558 ret
= cachefiles_has_space(cache
, 1, 0);
563 ret
= security_path_mkdir(&path
, next
, 0);
567 ret
= vfs_mkdir(d_inode(dir
), next
, 0);
568 cachefiles_hist(cachefiles_mkdir_histogram
, start
);
570 trace_cachefiles_mkdir(object
, next
, ret
);
574 if (unlikely(d_unhashed(next
))) {
576 inode_unlock(d_inode(dir
));
579 ASSERT(d_backing_inode(next
));
581 _debug("mkdir -> %p{%p{ino=%lu}}",
582 next
, d_backing_inode(next
), d_backing_inode(next
)->i_ino
);
584 } else if (!d_can_lookup(next
)) {
585 pr_err("inode %lu is not a directory\n",
586 d_backing_inode(next
)->i_ino
);
592 /* non-index objects start out life as files */
593 if (d_is_negative(next
)) {
594 ret
= cachefiles_has_space(cache
, 1, 0);
599 ret
= security_path_mknod(&path
, next
, S_IFREG
, 0);
603 ret
= vfs_create(d_inode(dir
), next
, S_IFREG
, true);
604 cachefiles_hist(cachefiles_create_histogram
, start
);
605 trace_cachefiles_create(object
, next
, ret
);
609 ASSERT(d_backing_inode(next
));
611 _debug("create -> %p{%p{ino=%lu}}",
612 next
, d_backing_inode(next
), d_backing_inode(next
)->i_ino
);
614 } else if (!d_can_lookup(next
) &&
617 pr_err("inode %lu is not a file or directory\n",
618 d_backing_inode(next
)->i_ino
);
624 /* process the next component */
627 inode_unlock(d_inode(dir
));
634 /* we've found the object we were looking for */
635 object
->dentry
= next
;
637 /* if we've found that the terminal object exists, then we need to
638 * check its attributes and delete it if it's out of date */
640 _debug("validate '%pd'", next
);
642 ret
= cachefiles_check_object_xattr(object
, auxdata
);
643 if (ret
== -ESTALE
) {
644 /* delete the object (the deleter drops the directory
646 object
->dentry
= NULL
;
648 ret
= cachefiles_bury_object(cache
, object
, dir
, next
,
650 FSCACHE_OBJECT_IS_STALE
);
657 _debug("redo lookup");
658 fscache_object_retrying_stale(&object
->fscache
);
663 /* note that we're now using this object */
664 ret
= cachefiles_mark_object_active(cache
, object
);
666 inode_unlock(d_inode(dir
));
670 if (ret
== -ETIMEDOUT
)
671 goto mark_active_timed_out
;
673 _debug("=== OBTAINED_OBJECT ===");
676 /* attach data to a newly constructed terminal object */
677 ret
= cachefiles_set_object_xattr(object
, auxdata
);
681 /* always update the atime on an object we've just looked up
682 * (this is used to keep track of culling, and atimes are only
683 * updated by read, write and readdir but not lookup or
689 /* open a file interface onto a data file */
690 if (object
->type
!= FSCACHE_COOKIE_TYPE_INDEX
) {
691 if (d_is_reg(object
->dentry
)) {
692 const struct address_space_operations
*aops
;
695 aops
= d_backing_inode(object
->dentry
)->i_mapping
->a_ops
;
698 if (object
->dentry
->d_sb
->s_blocksize
> PAGE_SIZE
)
701 object
->backer
= object
->dentry
;
703 BUG(); // TODO: open file in data-class subdir
708 fscache_obtained_object(&object
->fscache
);
710 _leave(" = 0 [%lu]", d_backing_inode(object
->dentry
)->i_ino
);
714 fscache_object_mark_killed(&object
->fscache
, FSCACHE_OBJECT_NO_SPACE
);
716 _debug("create error %d", ret
);
718 cachefiles_io_error(cache
, "Create/mkdir failed");
721 mark_active_timed_out
:
722 _debug("mark active timed out");
726 _debug("check error %d", ret
);
727 cachefiles_mark_object_inactive(
728 cache
, object
, d_backing_inode(object
->dentry
)->i_blocks
);
730 dput(object
->dentry
);
731 object
->dentry
= NULL
;
735 _debug("delete error %d", ret
);
739 _debug("lookup error %ld", PTR_ERR(next
));
742 cachefiles_io_error(cache
, "Lookup failed");
745 inode_unlock(d_inode(dir
));
750 _leave(" = error %d", -ret
);
757 struct dentry
*cachefiles_get_directory(struct cachefiles_cache
*cache
,
761 struct dentry
*subdir
;
766 _enter(",,%s", dirname
);
768 /* search the current directory for the element name */
769 inode_lock(d_inode(dir
));
773 subdir
= lookup_one_len(dirname
, dir
, strlen(dirname
));
774 cachefiles_hist(cachefiles_lookup_histogram
, start
);
775 if (IS_ERR(subdir
)) {
776 if (PTR_ERR(subdir
) == -ENOMEM
)
781 _debug("subdir -> %p %s",
782 subdir
, d_backing_inode(subdir
) ? "positive" : "negative");
784 /* we need to create the subdir if it doesn't exist yet */
785 if (d_is_negative(subdir
)) {
786 ret
= cachefiles_has_space(cache
, 1, 0);
790 _debug("attempt mkdir");
792 path
.mnt
= cache
->mnt
;
794 ret
= security_path_mkdir(&path
, subdir
, 0700);
797 ret
= vfs_mkdir(d_inode(dir
), subdir
, 0700);
801 if (unlikely(d_unhashed(subdir
))) {
805 ASSERT(d_backing_inode(subdir
));
807 _debug("mkdir -> %p{%p{ino=%lu}}",
809 d_backing_inode(subdir
),
810 d_backing_inode(subdir
)->i_ino
);
813 inode_unlock(d_inode(dir
));
815 /* we need to make sure the subdir is a directory */
816 ASSERT(d_backing_inode(subdir
));
818 if (!d_can_lookup(subdir
)) {
819 pr_err("%s is not a directory\n", dirname
);
825 if (!(d_backing_inode(subdir
)->i_opflags
& IOP_XATTR
) ||
826 !d_backing_inode(subdir
)->i_op
->lookup
||
827 !d_backing_inode(subdir
)->i_op
->mkdir
||
828 !d_backing_inode(subdir
)->i_op
->create
||
829 !d_backing_inode(subdir
)->i_op
->rename
||
830 !d_backing_inode(subdir
)->i_op
->rmdir
||
831 !d_backing_inode(subdir
)->i_op
->unlink
)
834 _leave(" = [%lu]", d_backing_inode(subdir
)->i_ino
);
839 _leave(" = %d [check]", ret
);
843 inode_unlock(d_inode(dir
));
845 pr_err("mkdir %s failed with error %d\n", dirname
, ret
);
849 inode_unlock(d_inode(dir
));
850 ret
= PTR_ERR(subdir
);
851 pr_err("Lookup %s failed with error %d\n", dirname
, ret
);
855 inode_unlock(d_inode(dir
));
856 _leave(" = -ENOMEM");
857 return ERR_PTR(-ENOMEM
);
861 * find out if an object is in use or not
862 * - if finds object and it's not in use:
863 * - returns a pointer to the object and a reference on it
864 * - returns with the directory locked
866 static struct dentry
*cachefiles_check_active(struct cachefiles_cache
*cache
,
870 struct cachefiles_object
*object
;
872 struct dentry
*victim
;
879 /* look up the victim */
880 inode_lock_nested(d_inode(dir
), I_MUTEX_PARENT
);
883 victim
= lookup_one_len(filename
, dir
, strlen(filename
));
884 cachefiles_hist(cachefiles_lookup_histogram
, start
);
888 //_debug("victim -> %p %s",
889 // victim, d_backing_inode(victim) ? "positive" : "negative");
891 /* if the object is no longer there then we probably retired the object
892 * at the netfs's request whilst the cull was in progress
894 if (d_is_negative(victim
)) {
895 inode_unlock(d_inode(dir
));
897 _leave(" = -ENOENT [absent]");
898 return ERR_PTR(-ENOENT
);
901 /* check to see if we're using this object */
902 read_lock(&cache
->active_lock
);
904 _n
= cache
->active_nodes
.rb_node
;
907 object
= rb_entry(_n
, struct cachefiles_object
, active_node
);
909 if (object
->dentry
> victim
)
911 else if (object
->dentry
< victim
)
917 read_unlock(&cache
->active_lock
);
919 //_leave(" = %p", victim);
923 read_unlock(&cache
->active_lock
);
924 inode_unlock(d_inode(dir
));
926 //_leave(" = -EBUSY [in use]");
927 return ERR_PTR(-EBUSY
);
930 inode_unlock(d_inode(dir
));
931 ret
= PTR_ERR(victim
);
932 if (ret
== -ENOENT
) {
933 /* file or dir now absent - probably retired by netfs */
934 _leave(" = -ESTALE [absent]");
935 return ERR_PTR(-ESTALE
);
939 cachefiles_io_error(cache
, "Lookup failed");
940 } else if (ret
!= -ENOMEM
) {
941 pr_err("Internal error: %d\n", ret
);
945 _leave(" = %d", ret
);
950 * cull an object if it's not in use
951 * - called only by cache manager daemon
953 int cachefiles_cull(struct cachefiles_cache
*cache
, struct dentry
*dir
,
956 struct dentry
*victim
;
959 _enter(",%pd/,%s", dir
, filename
);
961 victim
= cachefiles_check_active(cache
, dir
, filename
);
963 return PTR_ERR(victim
);
965 _debug("victim -> %p %s",
966 victim
, d_backing_inode(victim
) ? "positive" : "negative");
968 /* okay... the victim is not being used so we can cull it
969 * - start by marking it as stale
971 _debug("victim is cullable");
973 ret
= cachefiles_remove_object_xattr(cache
, victim
);
977 /* actually remove the victim (drops the dir mutex) */
980 ret
= cachefiles_bury_object(cache
, NULL
, dir
, victim
, false,
981 FSCACHE_OBJECT_WAS_CULLED
);
990 inode_unlock(d_inode(dir
));
993 if (ret
== -ENOENT
) {
994 /* file or dir now absent - probably retired by netfs */
995 _leave(" = -ESTALE [absent]");
999 if (ret
!= -ENOMEM
) {
1000 pr_err("Internal error: %d\n", ret
);
1004 _leave(" = %d", ret
);
1009 * find out if an object is in use or not
1010 * - called only by cache manager daemon
1011 * - returns -EBUSY or 0 to indicate whether an object is in use or not
1013 int cachefiles_check_in_use(struct cachefiles_cache
*cache
, struct dentry
*dir
,
1016 struct dentry
*victim
;
1018 //_enter(",%pd/,%s",
1021 victim
= cachefiles_check_active(cache
, dir
, filename
);
1023 return PTR_ERR(victim
);
1025 inode_unlock(d_inode(dir
));