Thomas Gleixner | b4d0d23 | 2019-05-20 19:08:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 2 | /* CacheFiles path walking and related routines |
| 3 | * |
| 4 | * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. |
| 5 | * Written by David Howells (dhowells@redhat.com) |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <linux/module.h> |
| 9 | #include <linux/sched.h> |
| 10 | #include <linux/file.h> |
| 11 | #include <linux/fs.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> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 18 | #include <linux/slab.h> |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 19 | #include "internal.h" |
| 20 | |
David Howells | d0e27b7 | 2009-11-19 18:12:02 +0000 | [diff] [blame] | 21 | #define CACHEFILES_KEYBUF_SIZE 512 |
| 22 | |
| 23 | /* |
| 24 | * dump debugging info about an object |
| 25 | */ |
| 26 | static noinline |
| 27 | void __cachefiles_printk_object(struct cachefiles_object *object, |
David Howells | 402cb8d | 2018-04-04 13:41:28 +0100 | [diff] [blame] | 28 | const char *prefix) |
David Howells | d0e27b7 | 2009-11-19 18:12:02 +0000 | [diff] [blame] | 29 | { |
| 30 | struct fscache_cookie *cookie; |
David Howells | 402cb8d | 2018-04-04 13:41:28 +0100 | [diff] [blame] | 31 | const u8 *k; |
| 32 | unsigned loop; |
David Howells | d0e27b7 | 2009-11-19 18:12:02 +0000 | [diff] [blame] | 33 | |
Fabian Frederick | 4e1eb88 | 2014-06-06 14:37:32 -0700 | [diff] [blame] | 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", |
David Howells | caaef69 | 2013-05-10 19:50:26 +0100 | [diff] [blame] | 36 | prefix, object->fscache.state->name, |
Tejun Heo | 8b8edef | 2010-07-20 22:09:01 +0200 | [diff] [blame] | 37 | object->fscache.flags, work_busy(&object->fscache.work), |
David Howells | c2d35bf | 2012-12-05 13:34:47 +0000 | [diff] [blame] | 38 | object->fscache.events, object->fscache.event_mask); |
Fabian Frederick | 4e1eb88 | 2014-06-06 14:37:32 -0700 | [diff] [blame] | 39 | pr_err("%sops=%u inp=%u exc=%u\n", |
David Howells | d0e27b7 | 2009-11-19 18:12:02 +0000 | [diff] [blame] | 40 | prefix, object->fscache.n_ops, object->fscache.n_in_progress, |
| 41 | object->fscache.n_exclusive); |
Fabian Frederick | 4e1eb88 | 2014-06-06 14:37:32 -0700 | [diff] [blame] | 42 | pr_err("%sparent=%p\n", |
David Howells | d0e27b7 | 2009-11-19 18:12:02 +0000 | [diff] [blame] | 43 | prefix, object->fscache.parent); |
| 44 | |
| 45 | spin_lock(&object->fscache.lock); |
| 46 | cookie = object->fscache.cookie; |
| 47 | if (cookie) { |
Fabian Frederick | 4e1eb88 | 2014-06-06 14:37:32 -0700 | [diff] [blame] | 48 | pr_err("%scookie=%p [pr=%p nd=%p fl=%lx]\n", |
David Howells | d0e27b7 | 2009-11-19 18:12:02 +0000 | [diff] [blame] | 49 | prefix, |
| 50 | object->fscache.cookie, |
| 51 | object->fscache.cookie->parent, |
| 52 | object->fscache.cookie->netfs_data, |
| 53 | object->fscache.cookie->flags); |
David Howells | 402cb8d | 2018-04-04 13:41:28 +0100 | [diff] [blame] | 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]); |
| 59 | pr_cont("'\n"); |
David Howells | d0e27b7 | 2009-11-19 18:12:02 +0000 | [diff] [blame] | 60 | } else { |
Fabian Frederick | 4e1eb88 | 2014-06-06 14:37:32 -0700 | [diff] [blame] | 61 | pr_err("%scookie=NULL\n", prefix); |
David Howells | d0e27b7 | 2009-11-19 18:12:02 +0000 | [diff] [blame] | 62 | } |
| 63 | spin_unlock(&object->fscache.lock); |
David Howells | d0e27b7 | 2009-11-19 18:12:02 +0000 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | /* |
| 67 | * dump debugging info about a pair of objects |
| 68 | */ |
| 69 | static noinline void cachefiles_printk_object(struct cachefiles_object *object, |
| 70 | struct cachefiles_object *xobject) |
| 71 | { |
David Howells | d0e27b7 | 2009-11-19 18:12:02 +0000 | [diff] [blame] | 72 | if (object) |
David Howells | 402cb8d | 2018-04-04 13:41:28 +0100 | [diff] [blame] | 73 | __cachefiles_printk_object(object, ""); |
David Howells | d0e27b7 | 2009-11-19 18:12:02 +0000 | [diff] [blame] | 74 | if (xobject) |
David Howells | 402cb8d | 2018-04-04 13:41:28 +0100 | [diff] [blame] | 75 | __cachefiles_printk_object(xobject, "x"); |
David Howells | d0e27b7 | 2009-11-19 18:12:02 +0000 | [diff] [blame] | 76 | } |
| 77 | |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 78 | /* |
David Howells | c61ea31 | 2010-05-11 16:51:39 +0100 | [diff] [blame] | 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() |
| 83 | */ |
| 84 | static void cachefiles_mark_object_buried(struct cachefiles_cache *cache, |
David Howells | 182d919 | 2015-02-19 23:47:31 +0000 | [diff] [blame] | 85 | struct dentry *dentry, |
| 86 | enum fscache_why_object_killed why) |
David Howells | c61ea31 | 2010-05-11 16:51:39 +0100 | [diff] [blame] | 87 | { |
| 88 | struct cachefiles_object *object; |
| 89 | struct rb_node *p; |
| 90 | |
Al Viro | a455589 | 2014-10-21 20:11:25 -0400 | [diff] [blame] | 91 | _enter(",'%pd'", dentry); |
David Howells | c61ea31 | 2010-05-11 16:51:39 +0100 | [diff] [blame] | 92 | |
| 93 | write_lock(&cache->active_lock); |
| 94 | |
| 95 | p = cache->active_nodes.rb_node; |
| 96 | while (p) { |
| 97 | object = rb_entry(p, struct cachefiles_object, active_node); |
| 98 | if (object->dentry > dentry) |
| 99 | p = p->rb_left; |
| 100 | else if (object->dentry < dentry) |
| 101 | p = p->rb_right; |
| 102 | else |
| 103 | goto found_dentry; |
| 104 | } |
| 105 | |
| 106 | write_unlock(&cache->active_lock); |
David Howells | a18feb5 | 2018-04-04 13:41:27 +0100 | [diff] [blame] | 107 | trace_cachefiles_mark_buried(NULL, dentry, why); |
David Howells | c61ea31 | 2010-05-11 16:51:39 +0100 | [diff] [blame] | 108 | _leave(" [no owner]"); |
| 109 | return; |
| 110 | |
| 111 | /* found the dentry for */ |
| 112 | found_dentry: |
| 113 | kdebug("preemptive burial: OBJ%x [%s] %p", |
| 114 | object->fscache.debug_id, |
David Howells | caaef69 | 2013-05-10 19:50:26 +0100 | [diff] [blame] | 115 | object->fscache.state->name, |
David Howells | c61ea31 | 2010-05-11 16:51:39 +0100 | [diff] [blame] | 116 | dentry); |
| 117 | |
David Howells | a18feb5 | 2018-04-04 13:41:27 +0100 | [diff] [blame] | 118 | trace_cachefiles_mark_buried(object, dentry, why); |
| 119 | |
David Howells | 493f7bc | 2013-05-10 19:50:26 +0100 | [diff] [blame] | 120 | if (fscache_object_is_live(&object->fscache)) { |
Fabian Frederick | 4e1eb88 | 2014-06-06 14:37:32 -0700 | [diff] [blame] | 121 | pr_err("\n"); |
Fabian Frederick | 0227d6ab | 2014-06-06 14:37:33 -0700 | [diff] [blame] | 122 | pr_err("Error: Can't preemptively bury live object\n"); |
David Howells | c61ea31 | 2010-05-11 16:51:39 +0100 | [diff] [blame] | 123 | cachefiles_printk_object(object, NULL); |
David Howells | 182d919 | 2015-02-19 23:47:31 +0000 | [diff] [blame] | 124 | } else { |
| 125 | if (why != FSCACHE_OBJECT_IS_STALE) |
| 126 | fscache_object_mark_killed(&object->fscache, why); |
David Howells | c61ea31 | 2010-05-11 16:51:39 +0100 | [diff] [blame] | 127 | } |
| 128 | |
| 129 | write_unlock(&cache->active_lock); |
| 130 | _leave(" [owner marked]"); |
| 131 | } |
| 132 | |
| 133 | /* |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 134 | * record the fact that an object is now active |
| 135 | */ |
David Howells | fee096d | 2009-11-19 18:12:05 +0000 | [diff] [blame] | 136 | static int cachefiles_mark_object_active(struct cachefiles_cache *cache, |
| 137 | struct cachefiles_object *object) |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 138 | { |
| 139 | struct cachefiles_object *xobject; |
| 140 | struct rb_node **_p, *_parent = NULL; |
| 141 | struct dentry *dentry; |
| 142 | |
| 143 | _enter(",%p", object); |
| 144 | |
| 145 | try_again: |
| 146 | write_lock(&cache->active_lock); |
| 147 | |
David Howells | a18feb5 | 2018-04-04 13:41:27 +0100 | [diff] [blame] | 148 | dentry = object->dentry; |
| 149 | trace_cachefiles_mark_active(object, dentry); |
| 150 | |
David Howells | d0e27b7 | 2009-11-19 18:12:02 +0000 | [diff] [blame] | 151 | if (test_and_set_bit(CACHEFILES_OBJECT_ACTIVE, &object->flags)) { |
Fabian Frederick | 0227d6ab | 2014-06-06 14:37:33 -0700 | [diff] [blame] | 152 | pr_err("Error: Object already active\n"); |
David Howells | d0e27b7 | 2009-11-19 18:12:02 +0000 | [diff] [blame] | 153 | cachefiles_printk_object(object, NULL); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 154 | BUG(); |
David Howells | d0e27b7 | 2009-11-19 18:12:02 +0000 | [diff] [blame] | 155 | } |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 156 | |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 157 | _p = &cache->active_nodes.rb_node; |
| 158 | while (*_p) { |
| 159 | _parent = *_p; |
| 160 | xobject = rb_entry(_parent, |
| 161 | struct cachefiles_object, active_node); |
| 162 | |
| 163 | ASSERT(xobject != object); |
| 164 | |
| 165 | if (xobject->dentry > dentry) |
| 166 | _p = &(*_p)->rb_left; |
| 167 | else if (xobject->dentry < dentry) |
| 168 | _p = &(*_p)->rb_right; |
| 169 | else |
| 170 | goto wait_for_old_object; |
| 171 | } |
| 172 | |
| 173 | rb_link_node(&object->active_node, _parent, _p); |
| 174 | rb_insert_color(&object->active_node, &cache->active_nodes); |
| 175 | |
| 176 | write_unlock(&cache->active_lock); |
David Howells | fee096d | 2009-11-19 18:12:05 +0000 | [diff] [blame] | 177 | _leave(" = 0"); |
| 178 | return 0; |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 179 | |
| 180 | /* an old object from a previous incarnation is hogging the slot - we |
| 181 | * need to wait for it to be destroyed */ |
| 182 | wait_for_old_object: |
David Howells | a18feb5 | 2018-04-04 13:41:27 +0100 | [diff] [blame] | 183 | trace_cachefiles_wait_active(object, dentry, xobject); |
Kiran Kumar Modukuri | 5ce83d4 | 2018-06-21 13:25:53 -0700 | [diff] [blame] | 184 | clear_bit(CACHEFILES_OBJECT_ACTIVE, &object->flags); |
David Howells | a18feb5 | 2018-04-04 13:41:27 +0100 | [diff] [blame] | 185 | |
David Howells | a30efe2 | 2014-09-30 14:50:30 +0100 | [diff] [blame] | 186 | if (fscache_object_is_live(&xobject->fscache)) { |
Fabian Frederick | 4e1eb88 | 2014-06-06 14:37:32 -0700 | [diff] [blame] | 187 | pr_err("\n"); |
Fabian Frederick | 0227d6ab | 2014-06-06 14:37:33 -0700 | [diff] [blame] | 188 | pr_err("Error: Unexpected object collision\n"); |
David Howells | d0e27b7 | 2009-11-19 18:12:02 +0000 | [diff] [blame] | 189 | cachefiles_printk_object(object, xobject); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 190 | } |
| 191 | atomic_inc(&xobject->usage); |
| 192 | write_unlock(&cache->active_lock); |
| 193 | |
David Howells | fee096d | 2009-11-19 18:12:05 +0000 | [diff] [blame] | 194 | if (test_bit(CACHEFILES_OBJECT_ACTIVE, &xobject->flags)) { |
| 195 | wait_queue_head_t *wq; |
| 196 | |
| 197 | signed long timeout = 60 * HZ; |
Ingo Molnar | ac6424b | 2017-06-20 12:06:13 +0200 | [diff] [blame] | 198 | wait_queue_entry_t wait; |
David Howells | fee096d | 2009-11-19 18:12:05 +0000 | [diff] [blame] | 199 | bool requeue; |
| 200 | |
| 201 | /* if the object we're waiting for is queued for processing, |
| 202 | * then just put ourselves on the queue behind it */ |
Tejun Heo | 8b8edef | 2010-07-20 22:09:01 +0200 | [diff] [blame] | 203 | if (work_pending(&xobject->fscache.work)) { |
David Howells | fee096d | 2009-11-19 18:12:05 +0000 | [diff] [blame] | 204 | _debug("queue OBJ%x behind OBJ%x immediately", |
| 205 | object->fscache.debug_id, |
| 206 | xobject->fscache.debug_id); |
| 207 | goto requeue; |
| 208 | } |
| 209 | |
| 210 | /* otherwise we sleep until either the object we're waiting for |
Tejun Heo | 8b8edef | 2010-07-20 22:09:01 +0200 | [diff] [blame] | 211 | * is done, or the fscache_object is congested */ |
David Howells | fee096d | 2009-11-19 18:12:05 +0000 | [diff] [blame] | 212 | wq = bit_waitqueue(&xobject->flags, CACHEFILES_OBJECT_ACTIVE); |
| 213 | init_wait(&wait); |
| 214 | requeue = false; |
| 215 | do { |
| 216 | prepare_to_wait(wq, &wait, TASK_UNINTERRUPTIBLE); |
| 217 | if (!test_bit(CACHEFILES_OBJECT_ACTIVE, &xobject->flags)) |
| 218 | break; |
Tejun Heo | 8b8edef | 2010-07-20 22:09:01 +0200 | [diff] [blame] | 219 | |
| 220 | requeue = fscache_object_sleep_till_congested(&timeout); |
David Howells | fee096d | 2009-11-19 18:12:05 +0000 | [diff] [blame] | 221 | } while (timeout > 0 && !requeue); |
| 222 | finish_wait(wq, &wait); |
| 223 | |
| 224 | if (requeue && |
| 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); |
| 229 | goto requeue; |
| 230 | } |
| 231 | |
| 232 | if (timeout <= 0) { |
Fabian Frederick | 4e1eb88 | 2014-06-06 14:37:32 -0700 | [diff] [blame] | 233 | pr_err("\n"); |
Fabian Frederick | 0227d6ab | 2014-06-06 14:37:33 -0700 | [diff] [blame] | 234 | pr_err("Error: Overlong wait for old active object to go away\n"); |
David Howells | fee096d | 2009-11-19 18:12:05 +0000 | [diff] [blame] | 235 | cachefiles_printk_object(object, xobject); |
| 236 | goto requeue; |
| 237 | } |
| 238 | } |
| 239 | |
| 240 | ASSERT(!test_bit(CACHEFILES_OBJECT_ACTIVE, &xobject->flags)); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 241 | |
Nathan Chancellor | b7e768b | 2018-09-24 10:33:44 -0700 | [diff] [blame] | 242 | cache->cache.ops->put_object(&xobject->fscache, |
| 243 | (enum fscache_obj_ref_trace)cachefiles_obj_put_wait_retry); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 244 | goto try_again; |
David Howells | fee096d | 2009-11-19 18:12:05 +0000 | [diff] [blame] | 245 | |
| 246 | requeue: |
Nathan Chancellor | b7e768b | 2018-09-24 10:33:44 -0700 | [diff] [blame] | 247 | cache->cache.ops->put_object(&xobject->fscache, |
| 248 | (enum fscache_obj_ref_trace)cachefiles_obj_put_wait_timeo); |
David Howells | fee096d | 2009-11-19 18:12:05 +0000 | [diff] [blame] | 249 | _leave(" = -ETIMEDOUT"); |
| 250 | return -ETIMEDOUT; |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 251 | } |
| 252 | |
| 253 | /* |
David Howells | a5b3a80 | 2016-02-01 16:43:04 +0000 | [diff] [blame] | 254 | * Mark an object as being inactive. |
| 255 | */ |
| 256 | void cachefiles_mark_object_inactive(struct cachefiles_cache *cache, |
David Howells | a818101 | 2016-08-09 17:41:16 +0100 | [diff] [blame] | 257 | struct cachefiles_object *object, |
| 258 | blkcnt_t i_blocks) |
David Howells | a5b3a80 | 2016-02-01 16:43:04 +0000 | [diff] [blame] | 259 | { |
David Howells | a18feb5 | 2018-04-04 13:41:27 +0100 | [diff] [blame] | 260 | struct dentry *dentry = object->dentry; |
| 261 | struct inode *inode = d_backing_inode(dentry); |
| 262 | |
| 263 | trace_cachefiles_mark_inactive(object, dentry, inode); |
| 264 | |
David Howells | a5b3a80 | 2016-02-01 16:43:04 +0000 | [diff] [blame] | 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); |
| 269 | |
| 270 | wake_up_bit(&object->flags, CACHEFILES_OBJECT_ACTIVE); |
| 271 | |
| 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. |
| 274 | */ |
David Howells | db20a89 | 2016-08-03 17:57:39 +0100 | [diff] [blame] | 275 | atomic_long_add(i_blocks, &cache->b_released); |
David Howells | a5b3a80 | 2016-02-01 16:43:04 +0000 | [diff] [blame] | 276 | if (atomic_inc_return(&cache->f_released)) |
| 277 | cachefiles_state_changed(cache); |
| 278 | } |
| 279 | |
| 280 | /* |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 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 |
| 284 | * delete |
| 285 | * - unlocks the directory mutex |
| 286 | */ |
| 287 | static int cachefiles_bury_object(struct cachefiles_cache *cache, |
David Howells | a18feb5 | 2018-04-04 13:41:27 +0100 | [diff] [blame] | 288 | struct cachefiles_object *object, |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 289 | struct dentry *dir, |
David Howells | c61ea31 | 2010-05-11 16:51:39 +0100 | [diff] [blame] | 290 | struct dentry *rep, |
David Howells | 182d919 | 2015-02-19 23:47:31 +0000 | [diff] [blame] | 291 | bool preemptive, |
| 292 | enum fscache_why_object_killed why) |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 293 | { |
| 294 | struct dentry *grave, *trap; |
David Howells | 8214044 | 2010-12-24 14:48:35 +0000 | [diff] [blame] | 295 | struct path path, path_to_graveyard; |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 296 | char nbuffer[8 + 8 + 1]; |
| 297 | int ret; |
| 298 | |
Al Viro | a455589 | 2014-10-21 20:11:25 -0400 | [diff] [blame] | 299 | _enter(",'%pd','%pd'", dir, rep); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 300 | |
David Howells | c61ea31 | 2010-05-11 16:51:39 +0100 | [diff] [blame] | 301 | _debug("remove %p from %p", rep, dir); |
| 302 | |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 303 | /* non-directories can just be unlinked */ |
David Howells | e36cb0b | 2015-01-29 12:02:35 +0000 | [diff] [blame] | 304 | if (!d_is_dir(rep)) { |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 305 | _debug("unlink stale object"); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 306 | |
David Howells | 8214044 | 2010-12-24 14:48:35 +0000 | [diff] [blame] | 307 | path.mnt = cache->mnt; |
| 308 | path.dentry = dir; |
| 309 | ret = security_path_unlink(&path, rep); |
| 310 | if (ret < 0) { |
| 311 | cachefiles_io_error(cache, "Unlink security error"); |
| 312 | } else { |
David Howells | a18feb5 | 2018-04-04 13:41:27 +0100 | [diff] [blame] | 313 | trace_cachefiles_unlink(object, rep, why); |
David Howells | 5153bc8 | 2015-03-06 14:08:58 +0000 | [diff] [blame] | 314 | ret = vfs_unlink(d_inode(dir), rep, NULL); |
David Howells | 8214044 | 2010-12-24 14:48:35 +0000 | [diff] [blame] | 315 | |
| 316 | if (preemptive) |
David Howells | 182d919 | 2015-02-19 23:47:31 +0000 | [diff] [blame] | 317 | cachefiles_mark_object_buried(cache, rep, why); |
David Howells | 8214044 | 2010-12-24 14:48:35 +0000 | [diff] [blame] | 318 | } |
David Howells | c61ea31 | 2010-05-11 16:51:39 +0100 | [diff] [blame] | 319 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 320 | inode_unlock(d_inode(dir)); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 321 | |
| 322 | if (ret == -EIO) |
| 323 | cachefiles_io_error(cache, "Unlink failed"); |
| 324 | |
| 325 | _leave(" = %d", ret); |
| 326 | return ret; |
| 327 | } |
| 328 | |
| 329 | /* directories have to be moved to the graveyard */ |
| 330 | _debug("move stale object to graveyard"); |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 331 | inode_unlock(d_inode(dir)); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 332 | |
| 333 | try_again: |
| 334 | /* first step is to make up a grave dentry in the graveyard */ |
| 335 | sprintf(nbuffer, "%08x%08x", |
Arnd Bergmann | 34e06fe | 2018-07-13 16:27:44 +0200 | [diff] [blame] | 336 | (uint32_t) ktime_get_real_seconds(), |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 337 | (uint32_t) atomic_inc_return(&cache->gravecounter)); |
| 338 | |
| 339 | /* do the multiway lock magic */ |
| 340 | trap = lock_rename(cache->graveyard, dir); |
| 341 | |
| 342 | /* do some checks before getting the grave dentry */ |
Al Viro | 169b803 | 2018-10-17 15:23:26 +0100 | [diff] [blame] | 343 | if (rep->d_parent != dir || IS_DEADDIR(d_inode(rep))) { |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 344 | /* the entry was probably culled when we dropped the parent dir |
| 345 | * lock */ |
| 346 | unlock_rename(cache->graveyard, dir); |
| 347 | _leave(" = 0 [culled?]"); |
| 348 | return 0; |
| 349 | } |
| 350 | |
David Howells | ce40fa7 | 2015-01-29 12:02:36 +0000 | [diff] [blame] | 351 | if (!d_can_lookup(cache->graveyard)) { |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 352 | unlock_rename(cache->graveyard, dir); |
| 353 | cachefiles_io_error(cache, "Graveyard no longer a directory"); |
| 354 | return -EIO; |
| 355 | } |
| 356 | |
| 357 | if (trap == rep) { |
| 358 | unlock_rename(cache->graveyard, dir); |
| 359 | cachefiles_io_error(cache, "May not make directory loop"); |
| 360 | return -EIO; |
| 361 | } |
| 362 | |
| 363 | if (d_mountpoint(rep)) { |
| 364 | unlock_rename(cache->graveyard, dir); |
| 365 | cachefiles_io_error(cache, "Mountpoint in cache"); |
| 366 | return -EIO; |
| 367 | } |
| 368 | |
| 369 | grave = lookup_one_len(nbuffer, cache->graveyard, strlen(nbuffer)); |
| 370 | if (IS_ERR(grave)) { |
| 371 | unlock_rename(cache->graveyard, dir); |
| 372 | |
| 373 | if (PTR_ERR(grave) == -ENOMEM) { |
| 374 | _leave(" = -ENOMEM"); |
| 375 | return -ENOMEM; |
| 376 | } |
| 377 | |
| 378 | cachefiles_io_error(cache, "Lookup error %ld", |
| 379 | PTR_ERR(grave)); |
| 380 | return -EIO; |
| 381 | } |
| 382 | |
David Howells | 466b77b | 2015-03-17 22:26:21 +0000 | [diff] [blame] | 383 | if (d_is_positive(grave)) { |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 384 | unlock_rename(cache->graveyard, dir); |
| 385 | dput(grave); |
| 386 | grave = NULL; |
| 387 | cond_resched(); |
| 388 | goto try_again; |
| 389 | } |
| 390 | |
| 391 | if (d_mountpoint(grave)) { |
| 392 | unlock_rename(cache->graveyard, dir); |
| 393 | dput(grave); |
| 394 | cachefiles_io_error(cache, "Mountpoint in graveyard"); |
| 395 | return -EIO; |
| 396 | } |
| 397 | |
| 398 | /* target should not be an ancestor of source */ |
| 399 | if (trap == grave) { |
| 400 | unlock_rename(cache->graveyard, dir); |
| 401 | dput(grave); |
| 402 | cachefiles_io_error(cache, "May not make directory loop"); |
| 403 | return -EIO; |
| 404 | } |
| 405 | |
| 406 | /* attempt the rename */ |
David Howells | 8214044 | 2010-12-24 14:48:35 +0000 | [diff] [blame] | 407 | path.mnt = cache->mnt; |
| 408 | path.dentry = dir; |
| 409 | path_to_graveyard.mnt = cache->mnt; |
| 410 | path_to_graveyard.dentry = cache->graveyard; |
Miklos Szeredi | 0b3974e | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 411 | ret = security_path_rename(&path, rep, &path_to_graveyard, grave, 0); |
David Howells | 8214044 | 2010-12-24 14:48:35 +0000 | [diff] [blame] | 412 | if (ret < 0) { |
| 413 | cachefiles_io_error(cache, "Rename security error %d", ret); |
| 414 | } else { |
David Howells | a18feb5 | 2018-04-04 13:41:27 +0100 | [diff] [blame] | 415 | trace_cachefiles_rename(object, rep, grave, why); |
David Howells | 5153bc8 | 2015-03-06 14:08:58 +0000 | [diff] [blame] | 416 | ret = vfs_rename(d_inode(dir), rep, |
| 417 | d_inode(cache->graveyard), grave, NULL, 0); |
David Howells | 8214044 | 2010-12-24 14:48:35 +0000 | [diff] [blame] | 418 | if (ret != 0 && ret != -ENOMEM) |
| 419 | cachefiles_io_error(cache, |
| 420 | "Rename failed with error %d", ret); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 421 | |
David Howells | 8214044 | 2010-12-24 14:48:35 +0000 | [diff] [blame] | 422 | if (preemptive) |
David Howells | 182d919 | 2015-02-19 23:47:31 +0000 | [diff] [blame] | 423 | cachefiles_mark_object_buried(cache, rep, why); |
David Howells | 8214044 | 2010-12-24 14:48:35 +0000 | [diff] [blame] | 424 | } |
David Howells | c61ea31 | 2010-05-11 16:51:39 +0100 | [diff] [blame] | 425 | |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 426 | unlock_rename(cache->graveyard, dir); |
| 427 | dput(grave); |
| 428 | _leave(" = 0"); |
| 429 | return 0; |
| 430 | } |
| 431 | |
| 432 | /* |
| 433 | * delete an object representation from the cache |
| 434 | */ |
| 435 | int cachefiles_delete_object(struct cachefiles_cache *cache, |
| 436 | struct cachefiles_object *object) |
| 437 | { |
| 438 | struct dentry *dir; |
| 439 | int ret; |
| 440 | |
David Howells | c61ea31 | 2010-05-11 16:51:39 +0100 | [diff] [blame] | 441 | _enter(",OBJ%x{%p}", object->fscache.debug_id, object->dentry); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 442 | |
| 443 | ASSERT(object->dentry); |
David Howells | 466b77b | 2015-03-17 22:26:21 +0000 | [diff] [blame] | 444 | ASSERT(d_backing_inode(object->dentry)); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 445 | ASSERT(object->dentry->d_parent); |
| 446 | |
| 447 | dir = dget_parent(object->dentry); |
| 448 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 449 | inode_lock_nested(d_inode(dir), I_MUTEX_PARENT); |
David Howells | 8f9941a | 2010-02-19 18:14:21 +0000 | [diff] [blame] | 450 | |
David Howells | 182d919 | 2015-02-19 23:47:31 +0000 | [diff] [blame] | 451 | if (test_bit(FSCACHE_OBJECT_KILLED_BY_CACHE, &object->fscache.flags)) { |
David Howells | c61ea31 | 2010-05-11 16:51:39 +0100 | [diff] [blame] | 452 | /* object allocation for the same key preemptively deleted this |
| 453 | * object's file so that it could create its own file */ |
| 454 | _debug("object preemptively buried"); |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 455 | inode_unlock(d_inode(dir)); |
David Howells | 8f9941a | 2010-02-19 18:14:21 +0000 | [diff] [blame] | 456 | ret = 0; |
David Howells | c61ea31 | 2010-05-11 16:51:39 +0100 | [diff] [blame] | 457 | } else { |
| 458 | /* we need to check that our parent is _still_ our parent - it |
| 459 | * may have been renamed */ |
| 460 | if (dir == object->dentry->d_parent) { |
David Howells | a18feb5 | 2018-04-04 13:41:27 +0100 | [diff] [blame] | 461 | ret = cachefiles_bury_object(cache, object, dir, |
David Howells | 182d919 | 2015-02-19 23:47:31 +0000 | [diff] [blame] | 462 | object->dentry, false, |
| 463 | FSCACHE_OBJECT_WAS_RETIRED); |
David Howells | c61ea31 | 2010-05-11 16:51:39 +0100 | [diff] [blame] | 464 | } else { |
| 465 | /* it got moved, presumably by cachefilesd culling it, |
| 466 | * so it's no longer in the key path and we can ignore |
| 467 | * it */ |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 468 | inode_unlock(d_inode(dir)); |
David Howells | c61ea31 | 2010-05-11 16:51:39 +0100 | [diff] [blame] | 469 | ret = 0; |
| 470 | } |
David Howells | 8f9941a | 2010-02-19 18:14:21 +0000 | [diff] [blame] | 471 | } |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 472 | |
| 473 | dput(dir); |
| 474 | _leave(" = %d", ret); |
| 475 | return ret; |
| 476 | } |
| 477 | |
| 478 | /* |
| 479 | * walk from the parent object to the child object through the backing |
| 480 | * filesystem, creating directories as we go |
| 481 | */ |
| 482 | int cachefiles_walk_to_object(struct cachefiles_object *parent, |
| 483 | struct cachefiles_object *object, |
| 484 | const char *key, |
| 485 | struct cachefiles_xattr *auxdata) |
| 486 | { |
| 487 | struct cachefiles_cache *cache; |
| 488 | struct dentry *dir, *next = NULL; |
David Howells | a18feb5 | 2018-04-04 13:41:27 +0100 | [diff] [blame] | 489 | struct inode *inode; |
David Howells | 8214044 | 2010-12-24 14:48:35 +0000 | [diff] [blame] | 490 | struct path path; |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 491 | unsigned long start; |
| 492 | const char *name; |
| 493 | int ret, nlen; |
| 494 | |
David Howells | c61ea31 | 2010-05-11 16:51:39 +0100 | [diff] [blame] | 495 | _enter("OBJ%x{%p},OBJ%x,%s,", |
| 496 | parent->fscache.debug_id, parent->dentry, |
| 497 | object->fscache.debug_id, key); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 498 | |
| 499 | cache = container_of(parent->fscache.cache, |
| 500 | struct cachefiles_cache, cache); |
David Howells | 8214044 | 2010-12-24 14:48:35 +0000 | [diff] [blame] | 501 | path.mnt = cache->mnt; |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 502 | |
| 503 | ASSERT(parent->dentry); |
David Howells | 466b77b | 2015-03-17 22:26:21 +0000 | [diff] [blame] | 504 | ASSERT(d_backing_inode(parent->dentry)); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 505 | |
David Howells | e36cb0b | 2015-01-29 12:02:35 +0000 | [diff] [blame] | 506 | if (!(d_is_dir(parent->dentry))) { |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 507 | // TODO: convert file to dir |
| 508 | _leave("looking up in none directory"); |
| 509 | return -ENOBUFS; |
| 510 | } |
| 511 | |
| 512 | dir = dget(parent->dentry); |
| 513 | |
| 514 | advance: |
| 515 | /* attempt to transit the first directory component */ |
| 516 | name = key; |
| 517 | nlen = strlen(key); |
| 518 | |
| 519 | /* key ends in a double NUL */ |
| 520 | key = key + nlen + 1; |
| 521 | if (!*key) |
| 522 | key = NULL; |
| 523 | |
| 524 | lookup_again: |
| 525 | /* search the current directory for the element name */ |
| 526 | _debug("lookup '%s'", name); |
| 527 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 528 | inode_lock_nested(d_inode(dir), I_MUTEX_PARENT); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 529 | |
| 530 | start = jiffies; |
| 531 | next = lookup_one_len(name, dir, nlen); |
| 532 | cachefiles_hist(cachefiles_lookup_histogram, start); |
David Howells | a18feb5 | 2018-04-04 13:41:27 +0100 | [diff] [blame] | 533 | if (IS_ERR(next)) { |
| 534 | trace_cachefiles_lookup(object, next, NULL); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 535 | goto lookup_error; |
David Howells | a18feb5 | 2018-04-04 13:41:27 +0100 | [diff] [blame] | 536 | } |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 537 | |
David Howells | a18feb5 | 2018-04-04 13:41:27 +0100 | [diff] [blame] | 538 | inode = d_backing_inode(next); |
| 539 | trace_cachefiles_lookup(object, next, inode); |
| 540 | _debug("next -> %p %s", next, inode ? "positive" : "negative"); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 541 | |
| 542 | if (!key) |
David Howells | a18feb5 | 2018-04-04 13:41:27 +0100 | [diff] [blame] | 543 | object->new = !inode; |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 544 | |
| 545 | /* if this element of the path doesn't exist, then the lookup phase |
| 546 | * failed, and we can release any readers in the certain knowledge that |
| 547 | * there's nothing for them to actually read */ |
David Howells | 466b77b | 2015-03-17 22:26:21 +0000 | [diff] [blame] | 548 | if (d_is_negative(next)) |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 549 | fscache_object_lookup_negative(&object->fscache); |
| 550 | |
| 551 | /* we need to create the object if it's negative */ |
| 552 | if (key || object->type == FSCACHE_COOKIE_TYPE_INDEX) { |
| 553 | /* index objects and intervening tree levels must be subdirs */ |
David Howells | 466b77b | 2015-03-17 22:26:21 +0000 | [diff] [blame] | 554 | if (d_is_negative(next)) { |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 555 | ret = cachefiles_has_space(cache, 1, 0); |
| 556 | if (ret < 0) |
David Howells | 182d919 | 2015-02-19 23:47:31 +0000 | [diff] [blame] | 557 | goto no_space_error; |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 558 | |
David Howells | 8214044 | 2010-12-24 14:48:35 +0000 | [diff] [blame] | 559 | path.dentry = dir; |
| 560 | ret = security_path_mkdir(&path, next, 0); |
| 561 | if (ret < 0) |
| 562 | goto create_error; |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 563 | start = jiffies; |
David Howells | 5153bc8 | 2015-03-06 14:08:58 +0000 | [diff] [blame] | 564 | ret = vfs_mkdir(d_inode(dir), next, 0); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 565 | cachefiles_hist(cachefiles_mkdir_histogram, start); |
David Howells | a18feb5 | 2018-04-04 13:41:27 +0100 | [diff] [blame] | 566 | if (!key) |
| 567 | trace_cachefiles_mkdir(object, next, ret); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 568 | if (ret < 0) |
| 569 | goto create_error; |
| 570 | |
Al Viro | 9c3e902 | 2018-05-10 22:59:45 -0400 | [diff] [blame] | 571 | if (unlikely(d_unhashed(next))) { |
| 572 | dput(next); |
| 573 | inode_unlock(d_inode(dir)); |
| 574 | goto lookup_again; |
| 575 | } |
David Howells | 466b77b | 2015-03-17 22:26:21 +0000 | [diff] [blame] | 576 | ASSERT(d_backing_inode(next)); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 577 | |
| 578 | _debug("mkdir -> %p{%p{ino=%lu}}", |
David Howells | 466b77b | 2015-03-17 22:26:21 +0000 | [diff] [blame] | 579 | next, d_backing_inode(next), d_backing_inode(next)->i_ino); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 580 | |
David Howells | ce40fa7 | 2015-01-29 12:02:36 +0000 | [diff] [blame] | 581 | } else if (!d_can_lookup(next)) { |
Fabian Frederick | 6ff66ac | 2014-09-25 16:05:27 -0700 | [diff] [blame] | 582 | pr_err("inode %lu is not a directory\n", |
David Howells | 466b77b | 2015-03-17 22:26:21 +0000 | [diff] [blame] | 583 | d_backing_inode(next)->i_ino); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 584 | ret = -ENOBUFS; |
| 585 | goto error; |
| 586 | } |
| 587 | |
| 588 | } else { |
| 589 | /* non-index objects start out life as files */ |
David Howells | 466b77b | 2015-03-17 22:26:21 +0000 | [diff] [blame] | 590 | if (d_is_negative(next)) { |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 591 | ret = cachefiles_has_space(cache, 1, 0); |
| 592 | if (ret < 0) |
David Howells | 182d919 | 2015-02-19 23:47:31 +0000 | [diff] [blame] | 593 | goto no_space_error; |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 594 | |
David Howells | 8214044 | 2010-12-24 14:48:35 +0000 | [diff] [blame] | 595 | path.dentry = dir; |
| 596 | ret = security_path_mknod(&path, next, S_IFREG, 0); |
| 597 | if (ret < 0) |
| 598 | goto create_error; |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 599 | start = jiffies; |
David Howells | 5153bc8 | 2015-03-06 14:08:58 +0000 | [diff] [blame] | 600 | ret = vfs_create(d_inode(dir), next, S_IFREG, true); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 601 | cachefiles_hist(cachefiles_create_histogram, start); |
David Howells | a18feb5 | 2018-04-04 13:41:27 +0100 | [diff] [blame] | 602 | trace_cachefiles_create(object, next, ret); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 603 | if (ret < 0) |
| 604 | goto create_error; |
| 605 | |
David Howells | 466b77b | 2015-03-17 22:26:21 +0000 | [diff] [blame] | 606 | ASSERT(d_backing_inode(next)); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 607 | |
| 608 | _debug("create -> %p{%p{ino=%lu}}", |
David Howells | 466b77b | 2015-03-17 22:26:21 +0000 | [diff] [blame] | 609 | next, d_backing_inode(next), d_backing_inode(next)->i_ino); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 610 | |
David Howells | ce40fa7 | 2015-01-29 12:02:36 +0000 | [diff] [blame] | 611 | } else if (!d_can_lookup(next) && |
David Howells | e36cb0b | 2015-01-29 12:02:35 +0000 | [diff] [blame] | 612 | !d_is_reg(next) |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 613 | ) { |
Fabian Frederick | 6ff66ac | 2014-09-25 16:05:27 -0700 | [diff] [blame] | 614 | pr_err("inode %lu is not a file or directory\n", |
David Howells | 466b77b | 2015-03-17 22:26:21 +0000 | [diff] [blame] | 615 | d_backing_inode(next)->i_ino); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 616 | ret = -ENOBUFS; |
| 617 | goto error; |
| 618 | } |
| 619 | } |
| 620 | |
| 621 | /* process the next component */ |
| 622 | if (key) { |
| 623 | _debug("advance"); |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 624 | inode_unlock(d_inode(dir)); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 625 | dput(dir); |
| 626 | dir = next; |
| 627 | next = NULL; |
| 628 | goto advance; |
| 629 | } |
| 630 | |
| 631 | /* we've found the object we were looking for */ |
| 632 | object->dentry = next; |
| 633 | |
| 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 */ |
| 636 | if (!object->new) { |
Al Viro | a455589 | 2014-10-21 20:11:25 -0400 | [diff] [blame] | 637 | _debug("validate '%pd'", next); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 638 | |
| 639 | ret = cachefiles_check_object_xattr(object, auxdata); |
| 640 | if (ret == -ESTALE) { |
| 641 | /* delete the object (the deleter drops the directory |
| 642 | * mutex) */ |
| 643 | object->dentry = NULL; |
| 644 | |
David Howells | a18feb5 | 2018-04-04 13:41:27 +0100 | [diff] [blame] | 645 | ret = cachefiles_bury_object(cache, object, dir, next, |
| 646 | true, |
David Howells | 182d919 | 2015-02-19 23:47:31 +0000 | [diff] [blame] | 647 | FSCACHE_OBJECT_IS_STALE); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 648 | dput(next); |
| 649 | next = NULL; |
| 650 | |
| 651 | if (ret < 0) |
| 652 | goto delete_error; |
| 653 | |
| 654 | _debug("redo lookup"); |
David Howells | 182d919 | 2015-02-19 23:47:31 +0000 | [diff] [blame] | 655 | fscache_object_retrying_stale(&object->fscache); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 656 | goto lookup_again; |
| 657 | } |
| 658 | } |
| 659 | |
| 660 | /* note that we're now using this object */ |
David Howells | fee096d | 2009-11-19 18:12:05 +0000 | [diff] [blame] | 661 | ret = cachefiles_mark_object_active(cache, object); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 662 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 663 | inode_unlock(d_inode(dir)); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 664 | dput(dir); |
| 665 | dir = NULL; |
| 666 | |
David Howells | fee096d | 2009-11-19 18:12:05 +0000 | [diff] [blame] | 667 | if (ret == -ETIMEDOUT) |
| 668 | goto mark_active_timed_out; |
| 669 | |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 670 | _debug("=== OBTAINED_OBJECT ==="); |
| 671 | |
| 672 | if (object->new) { |
| 673 | /* attach data to a newly constructed terminal object */ |
| 674 | ret = cachefiles_set_object_xattr(object, auxdata); |
| 675 | if (ret < 0) |
| 676 | goto check_error; |
| 677 | } else { |
| 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 |
| 681 | * open) */ |
Al Viro | 68ac123 | 2012-03-15 08:21:57 -0400 | [diff] [blame] | 682 | path.dentry = next; |
| 683 | touch_atime(&path); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 684 | } |
| 685 | |
| 686 | /* open a file interface onto a data file */ |
| 687 | if (object->type != FSCACHE_COOKIE_TYPE_INDEX) { |
David Howells | e36cb0b | 2015-01-29 12:02:35 +0000 | [diff] [blame] | 688 | if (d_is_reg(object->dentry)) { |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 689 | const struct address_space_operations *aops; |
| 690 | |
| 691 | ret = -EPERM; |
David Howells | 466b77b | 2015-03-17 22:26:21 +0000 | [diff] [blame] | 692 | aops = d_backing_inode(object->dentry)->i_mapping->a_ops; |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 693 | if (!aops->bmap) |
| 694 | goto check_error; |
NeilBrown | 95201a4 | 2015-11-04 15:20:34 +0000 | [diff] [blame] | 695 | if (object->dentry->d_sb->s_blocksize > PAGE_SIZE) |
| 696 | goto check_error; |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 697 | |
| 698 | object->backer = object->dentry; |
| 699 | } else { |
| 700 | BUG(); // TODO: open file in data-class subdir |
| 701 | } |
| 702 | } |
| 703 | |
| 704 | object->new = 0; |
| 705 | fscache_obtained_object(&object->fscache); |
| 706 | |
David Howells | 466b77b | 2015-03-17 22:26:21 +0000 | [diff] [blame] | 707 | _leave(" = 0 [%lu]", d_backing_inode(object->dentry)->i_ino); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 708 | return 0; |
| 709 | |
David Howells | 182d919 | 2015-02-19 23:47:31 +0000 | [diff] [blame] | 710 | no_space_error: |
| 711 | fscache_object_mark_killed(&object->fscache, FSCACHE_OBJECT_NO_SPACE); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 712 | create_error: |
| 713 | _debug("create error %d", ret); |
| 714 | if (ret == -EIO) |
| 715 | cachefiles_io_error(cache, "Create/mkdir failed"); |
| 716 | goto error; |
| 717 | |
David Howells | fee096d | 2009-11-19 18:12:05 +0000 | [diff] [blame] | 718 | mark_active_timed_out: |
| 719 | _debug("mark active timed out"); |
| 720 | goto release_dentry; |
| 721 | |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 722 | check_error: |
| 723 | _debug("check error %d", ret); |
David Howells | a818101 | 2016-08-09 17:41:16 +0100 | [diff] [blame] | 724 | cachefiles_mark_object_inactive( |
| 725 | cache, object, d_backing_inode(object->dentry)->i_blocks); |
David Howells | fee096d | 2009-11-19 18:12:05 +0000 | [diff] [blame] | 726 | release_dentry: |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 727 | dput(object->dentry); |
| 728 | object->dentry = NULL; |
| 729 | goto error_out; |
| 730 | |
| 731 | delete_error: |
| 732 | _debug("delete error %d", ret); |
| 733 | goto error_out2; |
| 734 | |
| 735 | lookup_error: |
| 736 | _debug("lookup error %ld", PTR_ERR(next)); |
| 737 | ret = PTR_ERR(next); |
| 738 | if (ret == -EIO) |
| 739 | cachefiles_io_error(cache, "Lookup failed"); |
| 740 | next = NULL; |
| 741 | error: |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 742 | inode_unlock(d_inode(dir)); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 743 | dput(next); |
| 744 | error_out2: |
| 745 | dput(dir); |
| 746 | error_out: |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 747 | _leave(" = error %d", -ret); |
| 748 | return ret; |
| 749 | } |
| 750 | |
| 751 | /* |
| 752 | * get a subdirectory |
| 753 | */ |
| 754 | struct dentry *cachefiles_get_directory(struct cachefiles_cache *cache, |
| 755 | struct dentry *dir, |
| 756 | const char *dirname) |
| 757 | { |
| 758 | struct dentry *subdir; |
| 759 | unsigned long start; |
David Howells | 8214044 | 2010-12-24 14:48:35 +0000 | [diff] [blame] | 760 | struct path path; |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 761 | int ret; |
| 762 | |
| 763 | _enter(",,%s", dirname); |
| 764 | |
| 765 | /* search the current directory for the element name */ |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 766 | inode_lock(d_inode(dir)); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 767 | |
Al Viro | 9c3e902 | 2018-05-10 22:59:45 -0400 | [diff] [blame] | 768 | retry: |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 769 | start = jiffies; |
| 770 | subdir = lookup_one_len(dirname, dir, strlen(dirname)); |
| 771 | cachefiles_hist(cachefiles_lookup_histogram, start); |
| 772 | if (IS_ERR(subdir)) { |
| 773 | if (PTR_ERR(subdir) == -ENOMEM) |
| 774 | goto nomem_d_alloc; |
| 775 | goto lookup_error; |
| 776 | } |
| 777 | |
| 778 | _debug("subdir -> %p %s", |
David Howells | 466b77b | 2015-03-17 22:26:21 +0000 | [diff] [blame] | 779 | subdir, d_backing_inode(subdir) ? "positive" : "negative"); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 780 | |
| 781 | /* we need to create the subdir if it doesn't exist yet */ |
David Howells | 466b77b | 2015-03-17 22:26:21 +0000 | [diff] [blame] | 782 | if (d_is_negative(subdir)) { |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 783 | ret = cachefiles_has_space(cache, 1, 0); |
| 784 | if (ret < 0) |
| 785 | goto mkdir_error; |
| 786 | |
| 787 | _debug("attempt mkdir"); |
| 788 | |
David Howells | 8214044 | 2010-12-24 14:48:35 +0000 | [diff] [blame] | 789 | path.mnt = cache->mnt; |
| 790 | path.dentry = dir; |
| 791 | ret = security_path_mkdir(&path, subdir, 0700); |
| 792 | if (ret < 0) |
| 793 | goto mkdir_error; |
David Howells | 5153bc8 | 2015-03-06 14:08:58 +0000 | [diff] [blame] | 794 | ret = vfs_mkdir(d_inode(dir), subdir, 0700); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 795 | if (ret < 0) |
| 796 | goto mkdir_error; |
| 797 | |
Al Viro | 9c3e902 | 2018-05-10 22:59:45 -0400 | [diff] [blame] | 798 | if (unlikely(d_unhashed(subdir))) { |
| 799 | dput(subdir); |
| 800 | goto retry; |
| 801 | } |
David Howells | 466b77b | 2015-03-17 22:26:21 +0000 | [diff] [blame] | 802 | ASSERT(d_backing_inode(subdir)); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 803 | |
| 804 | _debug("mkdir -> %p{%p{ino=%lu}}", |
| 805 | subdir, |
David Howells | 466b77b | 2015-03-17 22:26:21 +0000 | [diff] [blame] | 806 | d_backing_inode(subdir), |
| 807 | d_backing_inode(subdir)->i_ino); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 808 | } |
| 809 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 810 | inode_unlock(d_inode(dir)); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 811 | |
| 812 | /* we need to make sure the subdir is a directory */ |
David Howells | 466b77b | 2015-03-17 22:26:21 +0000 | [diff] [blame] | 813 | ASSERT(d_backing_inode(subdir)); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 814 | |
David Howells | ce40fa7 | 2015-01-29 12:02:36 +0000 | [diff] [blame] | 815 | if (!d_can_lookup(subdir)) { |
Fabian Frederick | 6ff66ac | 2014-09-25 16:05:27 -0700 | [diff] [blame] | 816 | pr_err("%s is not a directory\n", dirname); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 817 | ret = -EIO; |
| 818 | goto check_error; |
| 819 | } |
| 820 | |
| 821 | ret = -EPERM; |
Andreas Gruenbacher | 5d6c319 | 2016-09-29 17:48:42 +0200 | [diff] [blame] | 822 | if (!(d_backing_inode(subdir)->i_opflags & IOP_XATTR) || |
David Howells | 466b77b | 2015-03-17 22:26:21 +0000 | [diff] [blame] | 823 | !d_backing_inode(subdir)->i_op->lookup || |
| 824 | !d_backing_inode(subdir)->i_op->mkdir || |
| 825 | !d_backing_inode(subdir)->i_op->create || |
Miklos Szeredi | 2773bf0 | 2016-09-27 11:03:58 +0200 | [diff] [blame] | 826 | !d_backing_inode(subdir)->i_op->rename || |
David Howells | 466b77b | 2015-03-17 22:26:21 +0000 | [diff] [blame] | 827 | !d_backing_inode(subdir)->i_op->rmdir || |
| 828 | !d_backing_inode(subdir)->i_op->unlink) |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 829 | goto check_error; |
| 830 | |
David Howells | 466b77b | 2015-03-17 22:26:21 +0000 | [diff] [blame] | 831 | _leave(" = [%lu]", d_backing_inode(subdir)->i_ino); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 832 | return subdir; |
| 833 | |
| 834 | check_error: |
| 835 | dput(subdir); |
| 836 | _leave(" = %d [check]", ret); |
| 837 | return ERR_PTR(ret); |
| 838 | |
| 839 | mkdir_error: |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 840 | inode_unlock(d_inode(dir)); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 841 | dput(subdir); |
Fabian Frederick | 6ff66ac | 2014-09-25 16:05:27 -0700 | [diff] [blame] | 842 | pr_err("mkdir %s failed with error %d\n", dirname, ret); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 843 | return ERR_PTR(ret); |
| 844 | |
| 845 | lookup_error: |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 846 | inode_unlock(d_inode(dir)); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 847 | ret = PTR_ERR(subdir); |
Fabian Frederick | 6ff66ac | 2014-09-25 16:05:27 -0700 | [diff] [blame] | 848 | pr_err("Lookup %s failed with error %d\n", dirname, ret); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 849 | return ERR_PTR(ret); |
| 850 | |
| 851 | nomem_d_alloc: |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 852 | inode_unlock(d_inode(dir)); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 853 | _leave(" = -ENOMEM"); |
| 854 | return ERR_PTR(-ENOMEM); |
| 855 | } |
| 856 | |
| 857 | /* |
| 858 | * find out if an object is in use or not |
| 859 | * - if finds object and it's not in use: |
| 860 | * - returns a pointer to the object and a reference on it |
| 861 | * - returns with the directory locked |
| 862 | */ |
| 863 | static struct dentry *cachefiles_check_active(struct cachefiles_cache *cache, |
| 864 | struct dentry *dir, |
| 865 | char *filename) |
| 866 | { |
| 867 | struct cachefiles_object *object; |
| 868 | struct rb_node *_n; |
| 869 | struct dentry *victim; |
| 870 | unsigned long start; |
| 871 | int ret; |
| 872 | |
Al Viro | a455589 | 2014-10-21 20:11:25 -0400 | [diff] [blame] | 873 | //_enter(",%pd/,%s", |
| 874 | // dir, filename); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 875 | |
| 876 | /* look up the victim */ |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 877 | inode_lock_nested(d_inode(dir), I_MUTEX_PARENT); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 878 | |
| 879 | start = jiffies; |
| 880 | victim = lookup_one_len(filename, dir, strlen(filename)); |
| 881 | cachefiles_hist(cachefiles_lookup_histogram, start); |
| 882 | if (IS_ERR(victim)) |
| 883 | goto lookup_error; |
| 884 | |
| 885 | //_debug("victim -> %p %s", |
David Howells | 466b77b | 2015-03-17 22:26:21 +0000 | [diff] [blame] | 886 | // victim, d_backing_inode(victim) ? "positive" : "negative"); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 887 | |
| 888 | /* if the object is no longer there then we probably retired the object |
| 889 | * at the netfs's request whilst the cull was in progress |
| 890 | */ |
David Howells | 466b77b | 2015-03-17 22:26:21 +0000 | [diff] [blame] | 891 | if (d_is_negative(victim)) { |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 892 | inode_unlock(d_inode(dir)); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 893 | dput(victim); |
| 894 | _leave(" = -ENOENT [absent]"); |
| 895 | return ERR_PTR(-ENOENT); |
| 896 | } |
| 897 | |
| 898 | /* check to see if we're using this object */ |
| 899 | read_lock(&cache->active_lock); |
| 900 | |
| 901 | _n = cache->active_nodes.rb_node; |
| 902 | |
| 903 | while (_n) { |
| 904 | object = rb_entry(_n, struct cachefiles_object, active_node); |
| 905 | |
| 906 | if (object->dentry > victim) |
| 907 | _n = _n->rb_left; |
| 908 | else if (object->dentry < victim) |
| 909 | _n = _n->rb_right; |
| 910 | else |
| 911 | goto object_in_use; |
| 912 | } |
| 913 | |
| 914 | read_unlock(&cache->active_lock); |
| 915 | |
| 916 | //_leave(" = %p", victim); |
| 917 | return victim; |
| 918 | |
| 919 | object_in_use: |
| 920 | read_unlock(&cache->active_lock); |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 921 | inode_unlock(d_inode(dir)); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 922 | dput(victim); |
| 923 | //_leave(" = -EBUSY [in use]"); |
| 924 | return ERR_PTR(-EBUSY); |
| 925 | |
| 926 | lookup_error: |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 927 | inode_unlock(d_inode(dir)); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 928 | ret = PTR_ERR(victim); |
| 929 | if (ret == -ENOENT) { |
| 930 | /* file or dir now absent - probably retired by netfs */ |
| 931 | _leave(" = -ESTALE [absent]"); |
| 932 | return ERR_PTR(-ESTALE); |
| 933 | } |
| 934 | |
| 935 | if (ret == -EIO) { |
| 936 | cachefiles_io_error(cache, "Lookup failed"); |
| 937 | } else if (ret != -ENOMEM) { |
Fabian Frederick | 6ff66ac | 2014-09-25 16:05:27 -0700 | [diff] [blame] | 938 | pr_err("Internal error: %d\n", ret); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 939 | ret = -EIO; |
| 940 | } |
| 941 | |
| 942 | _leave(" = %d", ret); |
| 943 | return ERR_PTR(ret); |
| 944 | } |
| 945 | |
| 946 | /* |
| 947 | * cull an object if it's not in use |
| 948 | * - called only by cache manager daemon |
| 949 | */ |
| 950 | int cachefiles_cull(struct cachefiles_cache *cache, struct dentry *dir, |
| 951 | char *filename) |
| 952 | { |
| 953 | struct dentry *victim; |
| 954 | int ret; |
| 955 | |
Al Viro | a455589 | 2014-10-21 20:11:25 -0400 | [diff] [blame] | 956 | _enter(",%pd/,%s", dir, filename); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 957 | |
| 958 | victim = cachefiles_check_active(cache, dir, filename); |
| 959 | if (IS_ERR(victim)) |
| 960 | return PTR_ERR(victim); |
| 961 | |
| 962 | _debug("victim -> %p %s", |
David Howells | 466b77b | 2015-03-17 22:26:21 +0000 | [diff] [blame] | 963 | victim, d_backing_inode(victim) ? "positive" : "negative"); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 964 | |
| 965 | /* okay... the victim is not being used so we can cull it |
| 966 | * - start by marking it as stale |
| 967 | */ |
| 968 | _debug("victim is cullable"); |
| 969 | |
| 970 | ret = cachefiles_remove_object_xattr(cache, victim); |
| 971 | if (ret < 0) |
| 972 | goto error_unlock; |
| 973 | |
| 974 | /* actually remove the victim (drops the dir mutex) */ |
| 975 | _debug("bury"); |
| 976 | |
David Howells | a18feb5 | 2018-04-04 13:41:27 +0100 | [diff] [blame] | 977 | ret = cachefiles_bury_object(cache, NULL, dir, victim, false, |
David Howells | 182d919 | 2015-02-19 23:47:31 +0000 | [diff] [blame] | 978 | FSCACHE_OBJECT_WAS_CULLED); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 979 | if (ret < 0) |
| 980 | goto error; |
| 981 | |
| 982 | dput(victim); |
| 983 | _leave(" = 0"); |
| 984 | return 0; |
| 985 | |
| 986 | error_unlock: |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 987 | inode_unlock(d_inode(dir)); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 988 | error: |
| 989 | dput(victim); |
| 990 | if (ret == -ENOENT) { |
| 991 | /* file or dir now absent - probably retired by netfs */ |
| 992 | _leave(" = -ESTALE [absent]"); |
| 993 | return -ESTALE; |
| 994 | } |
| 995 | |
| 996 | if (ret != -ENOMEM) { |
Fabian Frederick | 6ff66ac | 2014-09-25 16:05:27 -0700 | [diff] [blame] | 997 | pr_err("Internal error: %d\n", ret); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 998 | ret = -EIO; |
| 999 | } |
| 1000 | |
| 1001 | _leave(" = %d", ret); |
| 1002 | return ret; |
| 1003 | } |
| 1004 | |
| 1005 | /* |
| 1006 | * find out if an object is in use or not |
| 1007 | * - called only by cache manager daemon |
| 1008 | * - returns -EBUSY or 0 to indicate whether an object is in use or not |
| 1009 | */ |
| 1010 | int cachefiles_check_in_use(struct cachefiles_cache *cache, struct dentry *dir, |
| 1011 | char *filename) |
| 1012 | { |
| 1013 | struct dentry *victim; |
| 1014 | |
Al Viro | a455589 | 2014-10-21 20:11:25 -0400 | [diff] [blame] | 1015 | //_enter(",%pd/,%s", |
| 1016 | // dir, filename); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 1017 | |
| 1018 | victim = cachefiles_check_active(cache, dir, filename); |
| 1019 | if (IS_ERR(victim)) |
| 1020 | return PTR_ERR(victim); |
| 1021 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 1022 | inode_unlock(d_inode(dir)); |
David Howells | 9ae326a | 2009-04-03 16:42:41 +0100 | [diff] [blame] | 1023 | dput(victim); |
| 1024 | //_leave(" = 0"); |
| 1025 | return 0; |
| 1026 | } |