1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* CacheFiles path walking and related routines
4 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
8 #include <linux/module.h>
9 #include <linux/sched.h>
10 #include <linux/file.h>
12 #include <linux/fsnotify.h>
13 #include <linux/quotaops.h>
14 #include <linux/xattr.h>
15 #include <linux/mount.h>
16 #include <linux/namei.h>
17 #include <linux/security.h>
18 #include <linux/slab.h>
21 #define CACHEFILES_KEYBUF_SIZE 512
24 * dump debugging info about an object
27 void __cachefiles_printk_object(struct cachefiles_object *object,
30 struct fscache_cookie *cookie;
34 pr_err("%sobject: OBJ%x\n", prefix, object->fscache.debug_id);
35 pr_err("%sobjstate=%s fl=%lx wbusy=%x ev=%lx[%lx]\n",
36 prefix, object->fscache.state->name,
37 object->fscache.flags, work_busy(&object->fscache.work),
38 object->fscache.events, object->fscache.event_mask);
39 pr_err("%sops=%u inp=%u exc=%u\n",
40 prefix, object->fscache.n_ops, object->fscache.n_in_progress,
41 object->fscache.n_exclusive);
42 pr_err("%sparent=%x\n",
43 prefix, object->fscache.parent ? object->fscache.parent->debug_id : 0);
45 spin_lock(&object->fscache.lock);
46 cookie = object->fscache.cookie;
48 pr_err("%scookie=%x [pr=%x nd=%p fl=%lx]\n",
51 cookie->parent ? cookie->parent->debug_id : 0,
54 pr_err("%skey=[%u] '", prefix, cookie->key_len);
55 k = (cookie->key_len <= sizeof(cookie->inline_key)) ?
56 cookie->inline_key : cookie->key;
57 for (loop = 0; loop < cookie->key_len; loop++)
58 pr_cont("%02x", k[loop]);
61 pr_err("%scookie=NULL\n", prefix);
63 spin_unlock(&object->fscache.lock);
67 * dump debugging info about a pair of objects
69 static noinline void cachefiles_printk_object(struct cachefiles_object *object,
70 struct cachefiles_object *xobject)
73 __cachefiles_printk_object(object, "");
75 __cachefiles_printk_object(xobject, "x");
79 * mark the owner of a dentry, if there is one, to indicate that that dentry
80 * has been preemptively deleted
81 * - the caller must hold the i_mutex on the dentry's parent as required to
82 * call vfs_unlink(), vfs_rmdir() or vfs_rename()
84 static void cachefiles_mark_object_buried(struct cachefiles_cache *cache,
85 struct dentry *dentry,
86 enum fscache_why_object_killed why)
88 struct cachefiles_object *object;
91 _enter(",'%pd'", dentry);
93 write_lock(&cache->active_lock);
95 p = cache->active_nodes.rb_node;
97 object = rb_entry(p, struct cachefiles_object, active_node);
98 if (object->dentry > dentry)
100 else if (object->dentry < dentry)
106 write_unlock(&cache->active_lock);
107 trace_cachefiles_mark_buried(NULL, dentry, why);
108 _leave(" [no owner]");
111 /* found the dentry for */
113 kdebug("preemptive burial: OBJ%x [%s] %pd",
114 object->fscache.debug_id,
115 object->fscache.state->name,
118 trace_cachefiles_mark_buried(object, dentry, why);
120 if (fscache_object_is_live(&object->fscache)) {
122 pr_err("Error: Can't preemptively bury live object\n");
123 cachefiles_printk_object(object, NULL);
125 if (why != FSCACHE_OBJECT_IS_STALE)
126 fscache_object_mark_killed(&object->fscache, why);
129 write_unlock(&cache->active_lock);
130 _leave(" [owner marked]");
134 * record the fact that an object is now active
136 static int cachefiles_mark_object_active(struct cachefiles_cache *cache,
137 struct cachefiles_object *object)
139 struct cachefiles_object *xobject;
140 struct rb_node **_p, *_parent = NULL;
141 struct dentry *dentry;
143 _enter(",%x", object->fscache.debug_id);
146 write_lock(&cache->active_lock);
148 dentry = object->dentry;
149 trace_cachefiles_mark_active(object, dentry);
151 if (test_and_set_bit(CACHEFILES_OBJECT_ACTIVE, &object->flags)) {
152 pr_err("Error: Object already active\n");
153 cachefiles_printk_object(object, NULL);
157 _p = &cache->active_nodes.rb_node;
160 xobject = rb_entry(_parent,
161 struct cachefiles_object, active_node);
163 ASSERT(xobject != object);
165 if (xobject->dentry > dentry)
166 _p = &(*_p)->rb_left;
167 else if (xobject->dentry < dentry)
168 _p = &(*_p)->rb_right;
170 goto wait_for_old_object;
173 rb_link_node(&object->active_node, _parent, _p);
174 rb_insert_color(&object->active_node, &cache->active_nodes);
176 write_unlock(&cache->active_lock);
180 /* an old object from a previous incarnation is hogging the slot - we
181 * need to wait for it to be destroyed */
183 trace_cachefiles_wait_active(object, dentry, xobject);
184 clear_bit(CACHEFILES_OBJECT_ACTIVE, &object->flags);
186 if (fscache_object_is_live(&xobject->fscache)) {
188 pr_err("Error: Unexpected object collision\n");
189 cachefiles_printk_object(object, xobject);
191 atomic_inc(&xobject->usage);
192 write_unlock(&cache->active_lock);
194 if (test_bit(CACHEFILES_OBJECT_ACTIVE, &xobject->flags)) {
195 wait_queue_head_t *wq;
197 signed long timeout = 60 * HZ;
198 wait_queue_entry_t wait;
201 /* if the object we're waiting for is queued for processing,
202 * then just put ourselves on the queue behind it */
203 if (work_pending(&xobject->fscache.work)) {
204 _debug("queue OBJ%x behind OBJ%x immediately",
205 object->fscache.debug_id,
206 xobject->fscache.debug_id);
210 /* otherwise we sleep until either the object we're waiting for
211 * is done, or the fscache_object is congested */
212 wq = bit_waitqueue(&xobject->flags, CACHEFILES_OBJECT_ACTIVE);
216 prepare_to_wait(wq, &wait, TASK_UNINTERRUPTIBLE);
217 if (!test_bit(CACHEFILES_OBJECT_ACTIVE, &xobject->flags))
220 requeue = fscache_object_sleep_till_congested(&timeout);
221 } while (timeout > 0 && !requeue);
222 finish_wait(wq, &wait);
225 test_bit(CACHEFILES_OBJECT_ACTIVE, &xobject->flags)) {
226 _debug("queue OBJ%x behind OBJ%x after wait",
227 object->fscache.debug_id,
228 xobject->fscache.debug_id);
234 pr_err("Error: Overlong wait for old active object to go away\n");
235 cachefiles_printk_object(object, xobject);
240 ASSERT(!test_bit(CACHEFILES_OBJECT_ACTIVE, &xobject->flags));
242 cache->cache.ops->put_object(&xobject->fscache,
243 (enum fscache_obj_ref_trace)cachefiles_obj_put_wait_retry);
247 cache->cache.ops->put_object(&xobject->fscache,
248 (enum fscache_obj_ref_trace)cachefiles_obj_put_wait_timeo);
249 _leave(" = -ETIMEDOUT");
254 * Mark an object as being inactive.
256 void cachefiles_mark_object_inactive(struct cachefiles_cache *cache,
257 struct cachefiles_object *object,
260 struct dentry *dentry = object->dentry;
261 struct inode *inode = d_backing_inode(dentry);
263 trace_cachefiles_mark_inactive(object, dentry, inode);
265 write_lock(&cache->active_lock);
266 rb_erase(&object->active_node, &cache->active_nodes);
267 clear_bit(CACHEFILES_OBJECT_ACTIVE, &object->flags);
268 write_unlock(&cache->active_lock);
270 wake_up_bit(&object->flags, CACHEFILES_OBJECT_ACTIVE);
272 /* This object can now be culled, so we need to let the daemon know
273 * that there is something it can remove if it needs to.
275 atomic_long_add(i_blocks, &cache->b_released);
276 if (atomic_inc_return(&cache->f_released))
277 cachefiles_state_changed(cache);
281 * delete an object representation from the cache
282 * - file backed objects are unlinked
283 * - directory backed objects are stuffed into the graveyard for userspace to
285 * - unlocks the directory mutex
287 static int cachefiles_bury_object(struct cachefiles_cache *cache,
288 struct cachefiles_object *object,
292 enum fscache_why_object_killed why)
294 struct dentry *grave, *trap;
295 struct path path, path_to_graveyard;
296 char nbuffer[8 + 8 + 1];
299 _enter(",'%pd','%pd'", dir, rep);
301 /* non-directories can just be unlinked */
302 if (!d_is_dir(rep)) {
303 _debug("unlink stale object");
305 path.mnt = cache->mnt;
307 ret = security_path_unlink(&path, rep);
309 cachefiles_io_error(cache, "Unlink security error");
311 trace_cachefiles_unlink(object, rep, why);
312 ret = vfs_unlink(&init_user_ns, d_inode(dir), rep,
316 cachefiles_mark_object_buried(cache, rep, why);
319 inode_unlock(d_inode(dir));
322 cachefiles_io_error(cache, "Unlink failed");
324 _leave(" = %d", ret);
328 /* directories have to be moved to the graveyard */
329 _debug("move stale object to graveyard");
330 inode_unlock(d_inode(dir));
333 /* first step is to make up a grave dentry in the graveyard */
334 sprintf(nbuffer, "%08x%08x",
335 (uint32_t) ktime_get_real_seconds(),
336 (uint32_t) atomic_inc_return(&cache->gravecounter));
338 /* do the multiway lock magic */
339 trap = lock_rename(cache->graveyard, dir);
341 /* do some checks before getting the grave dentry */
342 if (rep->d_parent != dir || IS_DEADDIR(d_inode(rep))) {
343 /* the entry was probably culled when we dropped the parent dir
345 unlock_rename(cache->graveyard, dir);
346 _leave(" = 0 [culled?]");
350 if (!d_can_lookup(cache->graveyard)) {
351 unlock_rename(cache->graveyard, dir);
352 cachefiles_io_error(cache, "Graveyard no longer a directory");
357 unlock_rename(cache->graveyard, dir);
358 cachefiles_io_error(cache, "May not make directory loop");
362 if (d_mountpoint(rep)) {
363 unlock_rename(cache->graveyard, dir);
364 cachefiles_io_error(cache, "Mountpoint in cache");
368 grave = lookup_one_len(nbuffer, cache->graveyard, strlen(nbuffer));
370 unlock_rename(cache->graveyard, dir);
372 if (PTR_ERR(grave) == -ENOMEM) {
373 _leave(" = -ENOMEM");
377 cachefiles_io_error(cache, "Lookup error %ld",
382 if (d_is_positive(grave)) {
383 unlock_rename(cache->graveyard, dir);
390 if (d_mountpoint(grave)) {
391 unlock_rename(cache->graveyard, dir);
393 cachefiles_io_error(cache, "Mountpoint in graveyard");
397 /* target should not be an ancestor of source */
399 unlock_rename(cache->graveyard, dir);
401 cachefiles_io_error(cache, "May not make directory loop");
405 /* attempt the rename */
406 path.mnt = cache->mnt;
408 path_to_graveyard.mnt = cache->mnt;
409 path_to_graveyard.dentry = cache->graveyard;
410 ret = security_path_rename(&path, rep, &path_to_graveyard, grave, 0);
412 cachefiles_io_error(cache, "Rename security error %d", ret);
414 struct renamedata rd = {
415 .old_mnt_userns = &init_user_ns,
416 .old_dir = d_inode(dir),
418 .new_mnt_userns = &init_user_ns,
419 .new_dir = d_inode(cache->graveyard),
422 trace_cachefiles_rename(object, rep, grave, why);
423 ret = vfs_rename(&rd);
424 if (ret != 0 && ret != -ENOMEM)
425 cachefiles_io_error(cache,
426 "Rename failed with error %d", ret);
429 cachefiles_mark_object_buried(cache, rep, why);
432 unlock_rename(cache->graveyard, dir);
439 * delete an object representation from the cache
441 int cachefiles_delete_object(struct cachefiles_cache *cache,
442 struct cachefiles_object *object)
447 _enter(",OBJ%x{%pd}", object->fscache.debug_id, object->dentry);
449 ASSERT(object->dentry);
450 ASSERT(d_backing_inode(object->dentry));
451 ASSERT(object->dentry->d_parent);
453 dir = dget_parent(object->dentry);
455 inode_lock_nested(d_inode(dir), I_MUTEX_PARENT);
457 if (test_bit(FSCACHE_OBJECT_KILLED_BY_CACHE, &object->fscache.flags)) {
458 /* object allocation for the same key preemptively deleted this
459 * object's file so that it could create its own file */
460 _debug("object preemptively buried");
461 inode_unlock(d_inode(dir));
464 /* we need to check that our parent is _still_ our parent - it
465 * may have been renamed */
466 if (dir == object->dentry->d_parent) {
467 ret = cachefiles_bury_object(cache, object, dir,
468 object->dentry, false,
469 FSCACHE_OBJECT_WAS_RETIRED);
471 /* it got moved, presumably by cachefilesd culling it,
472 * so it's no longer in the key path and we can ignore
474 inode_unlock(d_inode(dir));
480 _leave(" = %d", ret);
485 * walk from the parent object to the child object through the backing
486 * filesystem, creating directories as we go
488 int cachefiles_walk_to_object(struct cachefiles_object *parent,
489 struct cachefiles_object *object,
491 struct cachefiles_xattr *auxdata)
493 struct cachefiles_cache *cache;
494 struct dentry *dir, *next = NULL;
500 _enter("OBJ%x{%pd},OBJ%x,%s,",
501 parent->fscache.debug_id, parent->dentry,
502 object->fscache.debug_id, key);
504 cache = container_of(parent->fscache.cache,
505 struct cachefiles_cache, cache);
506 path.mnt = cache->mnt;
508 ASSERT(parent->dentry);
509 ASSERT(d_backing_inode(parent->dentry));
511 if (!(d_is_dir(parent->dentry))) {
512 // TODO: convert file to dir
513 _leave("looking up in none directory");
517 dir = dget(parent->dentry);
520 /* attempt to transit the first directory component */
524 /* key ends in a double NUL */
525 key = key + nlen + 1;
530 /* search the current directory for the element name */
531 _debug("lookup '%s'", name);
533 inode_lock_nested(d_inode(dir), I_MUTEX_PARENT);
535 next = lookup_one_len(name, dir, nlen);
537 trace_cachefiles_lookup(object, next, NULL);
541 inode = d_backing_inode(next);
542 trace_cachefiles_lookup(object, next, inode);
543 _debug("next -> %pd %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);
566 ret = vfs_mkdir(&init_user_ns, d_inode(dir), next, 0);
568 trace_cachefiles_mkdir(object, next, ret);
572 if (unlikely(d_unhashed(next))) {
574 inode_unlock(d_inode(dir));
577 ASSERT(d_backing_inode(next));
579 _debug("mkdir -> %pd{ino=%lu}",
580 next, d_backing_inode(next)->i_ino);
582 } else if (!d_can_lookup(next)) {
583 pr_err("inode %lu is not a directory\n",
584 d_backing_inode(next)->i_ino);
590 /* non-index objects start out life as files */
591 if (d_is_negative(next)) {
592 ret = cachefiles_has_space(cache, 1, 0);
597 ret = security_path_mknod(&path, next, S_IFREG, 0);
600 ret = vfs_create(&init_user_ns, d_inode(dir), next,
602 trace_cachefiles_create(object, next, ret);
606 ASSERT(d_backing_inode(next));
608 _debug("create -> %pd{ino=%lu}",
609 next, d_backing_inode(next)->i_ino);
611 } else if (!d_can_lookup(next) &&
614 pr_err("inode %lu is not a file or directory\n",
615 d_backing_inode(next)->i_ino);
621 /* process the next component */
624 inode_unlock(d_inode(dir));
631 /* we've found the object we were looking for */
632 object->dentry = next;
634 /* if we've found that the terminal object exists, then we need to
635 * check its attributes and delete it if it's out of date */
637 _debug("validate '%pd'", next);
639 ret = cachefiles_check_object_xattr(object, auxdata);
640 if (ret == -ESTALE) {
641 /* delete the object (the deleter drops the directory
643 object->dentry = NULL;
645 ret = cachefiles_bury_object(cache, object, dir, next,
647 FSCACHE_OBJECT_IS_STALE);
654 _debug("redo lookup");
655 fscache_object_retrying_stale(&object->fscache);
660 /* note that we're now using this object */
661 ret = cachefiles_mark_object_active(cache, object);
663 inode_unlock(d_inode(dir));
667 if (ret == -ETIMEDOUT)
668 goto mark_active_timed_out;
670 _debug("=== OBTAINED_OBJECT ===");
673 /* attach data to a newly constructed terminal object */
674 ret = cachefiles_set_object_xattr(object, auxdata);
678 /* always update the atime on an object we've just looked up
679 * (this is used to keep track of culling, and atimes are only
680 * updated by read, write and readdir but not lookup or
686 /* open a file interface onto a data file */
687 if (object->type != FSCACHE_COOKIE_TYPE_INDEX) {
688 if (d_is_reg(object->dentry)) {
689 const struct address_space_operations *aops;
692 aops = d_backing_inode(object->dentry)->i_mapping->a_ops;
695 if (object->dentry->d_sb->s_blocksize > PAGE_SIZE)
698 object->backer = object->dentry;
700 BUG(); // TODO: open file in data-class subdir
705 fscache_obtained_object(&object->fscache);
707 _leave(" = 0 [%lu]", d_backing_inode(object->dentry)->i_ino);
711 fscache_object_mark_killed(&object->fscache, FSCACHE_OBJECT_NO_SPACE);
713 _debug("create error %d", ret);
715 cachefiles_io_error(cache, "Create/mkdir failed");
718 mark_active_timed_out:
719 _debug("mark active timed out");
723 _debug("check error %d", ret);
724 cachefiles_mark_object_inactive(
725 cache, object, d_backing_inode(object->dentry)->i_blocks);
727 dput(object->dentry);
728 object->dentry = NULL;
732 _debug("delete error %d", ret);
736 _debug("lookup error %ld", PTR_ERR(next));
739 cachefiles_io_error(cache, "Lookup failed");
742 inode_unlock(d_inode(dir));
747 _leave(" = error %d", -ret);
754 struct dentry *cachefiles_get_directory(struct cachefiles_cache *cache,
758 struct dentry *subdir;
762 _enter(",,%s", dirname);
764 /* search the current directory for the element name */
765 inode_lock(d_inode(dir));
768 subdir = lookup_one_len(dirname, dir, strlen(dirname));
769 if (IS_ERR(subdir)) {
770 if (PTR_ERR(subdir) == -ENOMEM)
775 _debug("subdir -> %pd %s",
776 subdir, d_backing_inode(subdir) ? "positive" : "negative");
778 /* we need to create the subdir if it doesn't exist yet */
779 if (d_is_negative(subdir)) {
780 ret = cachefiles_has_space(cache, 1, 0);
784 _debug("attempt mkdir");
786 path.mnt = cache->mnt;
788 ret = security_path_mkdir(&path, subdir, 0700);
791 ret = vfs_mkdir(&init_user_ns, d_inode(dir), subdir, 0700);
795 if (unlikely(d_unhashed(subdir))) {
799 ASSERT(d_backing_inode(subdir));
801 _debug("mkdir -> %pd{ino=%lu}",
802 subdir, d_backing_inode(subdir)->i_ino);
805 inode_unlock(d_inode(dir));
807 /* we need to make sure the subdir is a directory */
808 ASSERT(d_backing_inode(subdir));
810 if (!d_can_lookup(subdir)) {
811 pr_err("%s is not a directory\n", dirname);
817 if (!(d_backing_inode(subdir)->i_opflags & IOP_XATTR) ||
818 !d_backing_inode(subdir)->i_op->lookup ||
819 !d_backing_inode(subdir)->i_op->mkdir ||
820 !d_backing_inode(subdir)->i_op->create ||
821 !d_backing_inode(subdir)->i_op->rename ||
822 !d_backing_inode(subdir)->i_op->rmdir ||
823 !d_backing_inode(subdir)->i_op->unlink)
826 _leave(" = [%lu]", d_backing_inode(subdir)->i_ino);
831 _leave(" = %d [check]", ret);
835 inode_unlock(d_inode(dir));
837 pr_err("mkdir %s failed with error %d\n", dirname, ret);
841 inode_unlock(d_inode(dir));
842 ret = PTR_ERR(subdir);
843 pr_err("Lookup %s failed with error %d\n", dirname, ret);
847 inode_unlock(d_inode(dir));
848 _leave(" = -ENOMEM");
849 return ERR_PTR(-ENOMEM);
853 * find out if an object is in use or not
854 * - if finds object and it's not in use:
855 * - returns a pointer to the object and a reference on it
856 * - returns with the directory locked
858 static struct dentry *cachefiles_check_active(struct cachefiles_cache *cache,
862 struct cachefiles_object *object;
864 struct dentry *victim;
870 /* look up the victim */
871 inode_lock_nested(d_inode(dir), I_MUTEX_PARENT);
873 victim = lookup_one_len(filename, dir, strlen(filename));
877 //_debug("victim -> %pd %s",
878 // victim, d_backing_inode(victim) ? "positive" : "negative");
880 /* if the object is no longer there then we probably retired the object
881 * at the netfs's request whilst the cull was in progress
883 if (d_is_negative(victim)) {
884 inode_unlock(d_inode(dir));
886 _leave(" = -ENOENT [absent]");
887 return ERR_PTR(-ENOENT);
890 /* check to see if we're using this object */
891 read_lock(&cache->active_lock);
893 _n = cache->active_nodes.rb_node;
896 object = rb_entry(_n, struct cachefiles_object, active_node);
898 if (object->dentry > victim)
900 else if (object->dentry < victim)
906 read_unlock(&cache->active_lock);
908 //_leave(" = %pd", victim);
912 read_unlock(&cache->active_lock);
913 inode_unlock(d_inode(dir));
915 //_leave(" = -EBUSY [in use]");
916 return ERR_PTR(-EBUSY);
919 inode_unlock(d_inode(dir));
920 ret = PTR_ERR(victim);
921 if (ret == -ENOENT) {
922 /* file or dir now absent - probably retired by netfs */
923 _leave(" = -ESTALE [absent]");
924 return ERR_PTR(-ESTALE);
928 cachefiles_io_error(cache, "Lookup failed");
929 } else if (ret != -ENOMEM) {
930 pr_err("Internal error: %d\n", ret);
934 _leave(" = %d", ret);
939 * cull an object if it's not in use
940 * - called only by cache manager daemon
942 int cachefiles_cull(struct cachefiles_cache *cache, struct dentry *dir,
945 struct dentry *victim;
948 _enter(",%pd/,%s", dir, filename);
950 victim = cachefiles_check_active(cache, dir, filename);
952 return PTR_ERR(victim);
954 _debug("victim -> %pd %s",
955 victim, d_backing_inode(victim) ? "positive" : "negative");
957 /* okay... the victim is not being used so we can cull it
958 * - start by marking it as stale
960 _debug("victim is cullable");
962 ret = cachefiles_remove_object_xattr(cache, victim);
966 /* actually remove the victim (drops the dir mutex) */
969 ret = cachefiles_bury_object(cache, NULL, dir, victim, false,
970 FSCACHE_OBJECT_WAS_CULLED);
979 inode_unlock(d_inode(dir));
982 if (ret == -ENOENT) {
983 /* file or dir now absent - probably retired by netfs */
984 _leave(" = -ESTALE [absent]");
988 if (ret != -ENOMEM) {
989 pr_err("Internal error: %d\n", ret);
993 _leave(" = %d", ret);
998 * find out if an object is in use or not
999 * - called only by cache manager daemon
1000 * - returns -EBUSY or 0 to indicate whether an object is in use or not
1002 int cachefiles_check_in_use(struct cachefiles_cache *cache, struct dentry *dir,
1005 struct dentry *victim;
1007 //_enter(",%pd/,%s",
1010 victim = cachefiles_check_active(cache, dir, filename);
1012 return PTR_ERR(victim);
1014 inode_unlock(d_inode(dir));