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