blob: 7bf0732ae25cf74890301b30c6a6fbd22c640901 [file] [log] [blame]
Thomas Gleixnerb4d0d232019-05-20 19:08:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
David Howells9ae326a2009-04-03 16:42:41 +01002/* 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 Howells9ae326a2009-04-03 16:42:41 +01006 */
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 Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
David Howells9ae326a2009-04-03 16:42:41 +010019#include "internal.h"
20
David Howellsd0e27b72009-11-19 18:12:02 +000021#define CACHEFILES_KEYBUF_SIZE 512
22
23/*
24 * dump debugging info about an object
25 */
26static noinline
27void __cachefiles_printk_object(struct cachefiles_object *object,
David Howells402cb8d2018-04-04 13:41:28 +010028 const char *prefix)
David Howellsd0e27b72009-11-19 18:12:02 +000029{
30 struct fscache_cookie *cookie;
David Howells402cb8d2018-04-04 13:41:28 +010031 const u8 *k;
32 unsigned loop;
David Howellsd0e27b72009-11-19 18:12:02 +000033
Fabian Frederick4e1eb882014-06-06 14:37:32 -070034 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 Howellscaaef692013-05-10 19:50:26 +010036 prefix, object->fscache.state->name,
Tejun Heo8b8edef2010-07-20 22:09:01 +020037 object->fscache.flags, work_busy(&object->fscache.work),
David Howellsc2d35bf2012-12-05 13:34:47 +000038 object->fscache.events, object->fscache.event_mask);
Fabian Frederick4e1eb882014-06-06 14:37:32 -070039 pr_err("%sops=%u inp=%u exc=%u\n",
David Howellsd0e27b72009-11-19 18:12:02 +000040 prefix, object->fscache.n_ops, object->fscache.n_in_progress,
41 object->fscache.n_exclusive);
Fabian Frederick4e1eb882014-06-06 14:37:32 -070042 pr_err("%sparent=%p\n",
David Howellsd0e27b72009-11-19 18:12:02 +000043 prefix, object->fscache.parent);
44
45 spin_lock(&object->fscache.lock);
46 cookie = object->fscache.cookie;
47 if (cookie) {
Fabian Frederick4e1eb882014-06-06 14:37:32 -070048 pr_err("%scookie=%p [pr=%p nd=%p fl=%lx]\n",
David Howellsd0e27b72009-11-19 18:12:02 +000049 prefix,
50 object->fscache.cookie,
51 object->fscache.cookie->parent,
52 object->fscache.cookie->netfs_data,
53 object->fscache.cookie->flags);
David Howells402cb8d2018-04-04 13:41:28 +010054 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 Howellsd0e27b72009-11-19 18:12:02 +000060 } else {
Fabian Frederick4e1eb882014-06-06 14:37:32 -070061 pr_err("%scookie=NULL\n", prefix);
David Howellsd0e27b72009-11-19 18:12:02 +000062 }
63 spin_unlock(&object->fscache.lock);
David Howellsd0e27b72009-11-19 18:12:02 +000064}
65
66/*
67 * dump debugging info about a pair of objects
68 */
69static noinline void cachefiles_printk_object(struct cachefiles_object *object,
70 struct cachefiles_object *xobject)
71{
David Howellsd0e27b72009-11-19 18:12:02 +000072 if (object)
David Howells402cb8d2018-04-04 13:41:28 +010073 __cachefiles_printk_object(object, "");
David Howellsd0e27b72009-11-19 18:12:02 +000074 if (xobject)
David Howells402cb8d2018-04-04 13:41:28 +010075 __cachefiles_printk_object(xobject, "x");
David Howellsd0e27b72009-11-19 18:12:02 +000076}
77
David Howells9ae326a2009-04-03 16:42:41 +010078/*
David Howellsc61ea312010-05-11 16:51:39 +010079 * 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 */
84static void cachefiles_mark_object_buried(struct cachefiles_cache *cache,
David Howells182d9192015-02-19 23:47:31 +000085 struct dentry *dentry,
86 enum fscache_why_object_killed why)
David Howellsc61ea312010-05-11 16:51:39 +010087{
88 struct cachefiles_object *object;
89 struct rb_node *p;
90
Al Viroa4555892014-10-21 20:11:25 -040091 _enter(",'%pd'", dentry);
David Howellsc61ea312010-05-11 16:51:39 +010092
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 Howellsa18feb52018-04-04 13:41:27 +0100107 trace_cachefiles_mark_buried(NULL, dentry, why);
David Howellsc61ea312010-05-11 16:51:39 +0100108 _leave(" [no owner]");
109 return;
110
111 /* found the dentry for */
112found_dentry:
113 kdebug("preemptive burial: OBJ%x [%s] %p",
114 object->fscache.debug_id,
David Howellscaaef692013-05-10 19:50:26 +0100115 object->fscache.state->name,
David Howellsc61ea312010-05-11 16:51:39 +0100116 dentry);
117
David Howellsa18feb52018-04-04 13:41:27 +0100118 trace_cachefiles_mark_buried(object, dentry, why);
119
David Howells493f7bc2013-05-10 19:50:26 +0100120 if (fscache_object_is_live(&object->fscache)) {
Fabian Frederick4e1eb882014-06-06 14:37:32 -0700121 pr_err("\n");
Fabian Frederick0227d6ab2014-06-06 14:37:33 -0700122 pr_err("Error: Can't preemptively bury live object\n");
David Howellsc61ea312010-05-11 16:51:39 +0100123 cachefiles_printk_object(object, NULL);
David Howells182d9192015-02-19 23:47:31 +0000124 } else {
125 if (why != FSCACHE_OBJECT_IS_STALE)
126 fscache_object_mark_killed(&object->fscache, why);
David Howellsc61ea312010-05-11 16:51:39 +0100127 }
128
129 write_unlock(&cache->active_lock);
130 _leave(" [owner marked]");
131}
132
133/*
David Howells9ae326a2009-04-03 16:42:41 +0100134 * record the fact that an object is now active
135 */
David Howellsfee096d2009-11-19 18:12:05 +0000136static int cachefiles_mark_object_active(struct cachefiles_cache *cache,
137 struct cachefiles_object *object)
David Howells9ae326a2009-04-03 16:42:41 +0100138{
139 struct cachefiles_object *xobject;
140 struct rb_node **_p, *_parent = NULL;
141 struct dentry *dentry;
142
143 _enter(",%p", object);
144
145try_again:
146 write_lock(&cache->active_lock);
147
David Howellsa18feb52018-04-04 13:41:27 +0100148 dentry = object->dentry;
149 trace_cachefiles_mark_active(object, dentry);
150
David Howellsd0e27b72009-11-19 18:12:02 +0000151 if (test_and_set_bit(CACHEFILES_OBJECT_ACTIVE, &object->flags)) {
Fabian Frederick0227d6ab2014-06-06 14:37:33 -0700152 pr_err("Error: Object already active\n");
David Howellsd0e27b72009-11-19 18:12:02 +0000153 cachefiles_printk_object(object, NULL);
David Howells9ae326a2009-04-03 16:42:41 +0100154 BUG();
David Howellsd0e27b72009-11-19 18:12:02 +0000155 }
David Howells9ae326a2009-04-03 16:42:41 +0100156
David Howells9ae326a2009-04-03 16:42:41 +0100157 _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 Howellsfee096d2009-11-19 18:12:05 +0000177 _leave(" = 0");
178 return 0;
David Howells9ae326a2009-04-03 16:42:41 +0100179
180 /* an old object from a previous incarnation is hogging the slot - we
181 * need to wait for it to be destroyed */
182wait_for_old_object:
David Howellsa18feb52018-04-04 13:41:27 +0100183 trace_cachefiles_wait_active(object, dentry, xobject);
Kiran Kumar Modukuri5ce83d42018-06-21 13:25:53 -0700184 clear_bit(CACHEFILES_OBJECT_ACTIVE, &object->flags);
David Howellsa18feb52018-04-04 13:41:27 +0100185
David Howellsa30efe22014-09-30 14:50:30 +0100186 if (fscache_object_is_live(&xobject->fscache)) {
Fabian Frederick4e1eb882014-06-06 14:37:32 -0700187 pr_err("\n");
Fabian Frederick0227d6ab2014-06-06 14:37:33 -0700188 pr_err("Error: Unexpected object collision\n");
David Howellsd0e27b72009-11-19 18:12:02 +0000189 cachefiles_printk_object(object, xobject);
David Howells9ae326a2009-04-03 16:42:41 +0100190 }
191 atomic_inc(&xobject->usage);
192 write_unlock(&cache->active_lock);
193
David Howellsfee096d2009-11-19 18:12:05 +0000194 if (test_bit(CACHEFILES_OBJECT_ACTIVE, &xobject->flags)) {
195 wait_queue_head_t *wq;
196
197 signed long timeout = 60 * HZ;
Ingo Molnarac6424b2017-06-20 12:06:13 +0200198 wait_queue_entry_t wait;
David Howellsfee096d2009-11-19 18:12:05 +0000199 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 Heo8b8edef2010-07-20 22:09:01 +0200203 if (work_pending(&xobject->fscache.work)) {
David Howellsfee096d2009-11-19 18:12:05 +0000204 _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 Heo8b8edef2010-07-20 22:09:01 +0200211 * is done, or the fscache_object is congested */
David Howellsfee096d2009-11-19 18:12:05 +0000212 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 Heo8b8edef2010-07-20 22:09:01 +0200219
220 requeue = fscache_object_sleep_till_congested(&timeout);
David Howellsfee096d2009-11-19 18:12:05 +0000221 } 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 Frederick4e1eb882014-06-06 14:37:32 -0700233 pr_err("\n");
Fabian Frederick0227d6ab2014-06-06 14:37:33 -0700234 pr_err("Error: Overlong wait for old active object to go away\n");
David Howellsfee096d2009-11-19 18:12:05 +0000235 cachefiles_printk_object(object, xobject);
236 goto requeue;
237 }
238 }
239
240 ASSERT(!test_bit(CACHEFILES_OBJECT_ACTIVE, &xobject->flags));
David Howells9ae326a2009-04-03 16:42:41 +0100241
Nathan Chancellorb7e768b2018-09-24 10:33:44 -0700242 cache->cache.ops->put_object(&xobject->fscache,
243 (enum fscache_obj_ref_trace)cachefiles_obj_put_wait_retry);
David Howells9ae326a2009-04-03 16:42:41 +0100244 goto try_again;
David Howellsfee096d2009-11-19 18:12:05 +0000245
246requeue:
Nathan Chancellorb7e768b2018-09-24 10:33:44 -0700247 cache->cache.ops->put_object(&xobject->fscache,
248 (enum fscache_obj_ref_trace)cachefiles_obj_put_wait_timeo);
David Howellsfee096d2009-11-19 18:12:05 +0000249 _leave(" = -ETIMEDOUT");
250 return -ETIMEDOUT;
David Howells9ae326a2009-04-03 16:42:41 +0100251}
252
253/*
David Howellsa5b3a802016-02-01 16:43:04 +0000254 * Mark an object as being inactive.
255 */
256void cachefiles_mark_object_inactive(struct cachefiles_cache *cache,
David Howellsa8181012016-08-09 17:41:16 +0100257 struct cachefiles_object *object,
258 blkcnt_t i_blocks)
David Howellsa5b3a802016-02-01 16:43:04 +0000259{
David Howellsa18feb52018-04-04 13:41:27 +0100260 struct dentry *dentry = object->dentry;
261 struct inode *inode = d_backing_inode(dentry);
262
263 trace_cachefiles_mark_inactive(object, dentry, inode);
264
David Howellsa5b3a802016-02-01 16:43:04 +0000265 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 Howellsdb20a892016-08-03 17:57:39 +0100275 atomic_long_add(i_blocks, &cache->b_released);
David Howellsa5b3a802016-02-01 16:43:04 +0000276 if (atomic_inc_return(&cache->f_released))
277 cachefiles_state_changed(cache);
278}
279
280/*
David Howells9ae326a2009-04-03 16:42:41 +0100281 * 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 */
287static int cachefiles_bury_object(struct cachefiles_cache *cache,
David Howellsa18feb52018-04-04 13:41:27 +0100288 struct cachefiles_object *object,
David Howells9ae326a2009-04-03 16:42:41 +0100289 struct dentry *dir,
David Howellsc61ea312010-05-11 16:51:39 +0100290 struct dentry *rep,
David Howells182d9192015-02-19 23:47:31 +0000291 bool preemptive,
292 enum fscache_why_object_killed why)
David Howells9ae326a2009-04-03 16:42:41 +0100293{
294 struct dentry *grave, *trap;
David Howells82140442010-12-24 14:48:35 +0000295 struct path path, path_to_graveyard;
David Howells9ae326a2009-04-03 16:42:41 +0100296 char nbuffer[8 + 8 + 1];
297 int ret;
298
Al Viroa4555892014-10-21 20:11:25 -0400299 _enter(",'%pd','%pd'", dir, rep);
David Howells9ae326a2009-04-03 16:42:41 +0100300
David Howellsc61ea312010-05-11 16:51:39 +0100301 _debug("remove %p from %p", rep, dir);
302
David Howells9ae326a2009-04-03 16:42:41 +0100303 /* non-directories can just be unlinked */
David Howellse36cb0b2015-01-29 12:02:35 +0000304 if (!d_is_dir(rep)) {
David Howells9ae326a2009-04-03 16:42:41 +0100305 _debug("unlink stale object");
David Howells9ae326a2009-04-03 16:42:41 +0100306
David Howells82140442010-12-24 14:48:35 +0000307 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 Howellsa18feb52018-04-04 13:41:27 +0100313 trace_cachefiles_unlink(object, rep, why);
Christian Brauner6521f892021-01-21 14:19:33 +0100314 ret = vfs_unlink(&init_user_ns, d_inode(dir), rep,
315 NULL);
David Howells82140442010-12-24 14:48:35 +0000316
317 if (preemptive)
David Howells182d9192015-02-19 23:47:31 +0000318 cachefiles_mark_object_buried(cache, rep, why);
David Howells82140442010-12-24 14:48:35 +0000319 }
David Howellsc61ea312010-05-11 16:51:39 +0100320
Al Viro59551022016-01-22 15:40:57 -0500321 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100322
323 if (ret == -EIO)
324 cachefiles_io_error(cache, "Unlink failed");
325
326 _leave(" = %d", ret);
327 return ret;
328 }
329
330 /* directories have to be moved to the graveyard */
331 _debug("move stale object to graveyard");
Al Viro59551022016-01-22 15:40:57 -0500332 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100333
334try_again:
335 /* first step is to make up a grave dentry in the graveyard */
336 sprintf(nbuffer, "%08x%08x",
Arnd Bergmann34e06fe2018-07-13 16:27:44 +0200337 (uint32_t) ktime_get_real_seconds(),
David Howells9ae326a2009-04-03 16:42:41 +0100338 (uint32_t) atomic_inc_return(&cache->gravecounter));
339
340 /* do the multiway lock magic */
341 trap = lock_rename(cache->graveyard, dir);
342
343 /* do some checks before getting the grave dentry */
Al Viro169b8032018-10-17 15:23:26 +0100344 if (rep->d_parent != dir || IS_DEADDIR(d_inode(rep))) {
David Howells9ae326a2009-04-03 16:42:41 +0100345 /* the entry was probably culled when we dropped the parent dir
346 * lock */
347 unlock_rename(cache->graveyard, dir);
348 _leave(" = 0 [culled?]");
349 return 0;
350 }
351
David Howellsce40fa72015-01-29 12:02:36 +0000352 if (!d_can_lookup(cache->graveyard)) {
David Howells9ae326a2009-04-03 16:42:41 +0100353 unlock_rename(cache->graveyard, dir);
354 cachefiles_io_error(cache, "Graveyard no longer a directory");
355 return -EIO;
356 }
357
358 if (trap == rep) {
359 unlock_rename(cache->graveyard, dir);
360 cachefiles_io_error(cache, "May not make directory loop");
361 return -EIO;
362 }
363
364 if (d_mountpoint(rep)) {
365 unlock_rename(cache->graveyard, dir);
366 cachefiles_io_error(cache, "Mountpoint in cache");
367 return -EIO;
368 }
369
370 grave = lookup_one_len(nbuffer, cache->graveyard, strlen(nbuffer));
371 if (IS_ERR(grave)) {
372 unlock_rename(cache->graveyard, dir);
373
374 if (PTR_ERR(grave) == -ENOMEM) {
375 _leave(" = -ENOMEM");
376 return -ENOMEM;
377 }
378
379 cachefiles_io_error(cache, "Lookup error %ld",
380 PTR_ERR(grave));
381 return -EIO;
382 }
383
David Howells466b77b2015-03-17 22:26:21 +0000384 if (d_is_positive(grave)) {
David Howells9ae326a2009-04-03 16:42:41 +0100385 unlock_rename(cache->graveyard, dir);
386 dput(grave);
387 grave = NULL;
388 cond_resched();
389 goto try_again;
390 }
391
392 if (d_mountpoint(grave)) {
393 unlock_rename(cache->graveyard, dir);
394 dput(grave);
395 cachefiles_io_error(cache, "Mountpoint in graveyard");
396 return -EIO;
397 }
398
399 /* target should not be an ancestor of source */
400 if (trap == grave) {
401 unlock_rename(cache->graveyard, dir);
402 dput(grave);
403 cachefiles_io_error(cache, "May not make directory loop");
404 return -EIO;
405 }
406
407 /* attempt the rename */
David Howells82140442010-12-24 14:48:35 +0000408 path.mnt = cache->mnt;
409 path.dentry = dir;
410 path_to_graveyard.mnt = cache->mnt;
411 path_to_graveyard.dentry = cache->graveyard;
Miklos Szeredi0b3974e2014-04-01 17:08:43 +0200412 ret = security_path_rename(&path, rep, &path_to_graveyard, grave, 0);
David Howells82140442010-12-24 14:48:35 +0000413 if (ret < 0) {
414 cachefiles_io_error(cache, "Rename security error %d", ret);
415 } else {
Christian Brauner9fe61452021-01-21 14:19:32 +0100416 struct renamedata rd = {
Christian Brauner6521f892021-01-21 14:19:33 +0100417 .old_mnt_userns = &init_user_ns,
Christian Brauner9fe61452021-01-21 14:19:32 +0100418 .old_dir = d_inode(dir),
419 .old_dentry = rep,
Christian Brauner6521f892021-01-21 14:19:33 +0100420 .new_mnt_userns = &init_user_ns,
Christian Brauner9fe61452021-01-21 14:19:32 +0100421 .new_dir = d_inode(cache->graveyard),
422 .new_dentry = grave,
423 };
David Howellsa18feb52018-04-04 13:41:27 +0100424 trace_cachefiles_rename(object, rep, grave, why);
Christian Brauner9fe61452021-01-21 14:19:32 +0100425 ret = vfs_rename(&rd);
David Howells82140442010-12-24 14:48:35 +0000426 if (ret != 0 && ret != -ENOMEM)
427 cachefiles_io_error(cache,
428 "Rename failed with error %d", ret);
David Howells9ae326a2009-04-03 16:42:41 +0100429
David Howells82140442010-12-24 14:48:35 +0000430 if (preemptive)
David Howells182d9192015-02-19 23:47:31 +0000431 cachefiles_mark_object_buried(cache, rep, why);
David Howells82140442010-12-24 14:48:35 +0000432 }
David Howellsc61ea312010-05-11 16:51:39 +0100433
David Howells9ae326a2009-04-03 16:42:41 +0100434 unlock_rename(cache->graveyard, dir);
435 dput(grave);
436 _leave(" = 0");
437 return 0;
438}
439
440/*
441 * delete an object representation from the cache
442 */
443int cachefiles_delete_object(struct cachefiles_cache *cache,
444 struct cachefiles_object *object)
445{
446 struct dentry *dir;
447 int ret;
448
David Howellsc61ea312010-05-11 16:51:39 +0100449 _enter(",OBJ%x{%p}", object->fscache.debug_id, object->dentry);
David Howells9ae326a2009-04-03 16:42:41 +0100450
451 ASSERT(object->dentry);
David Howells466b77b2015-03-17 22:26:21 +0000452 ASSERT(d_backing_inode(object->dentry));
David Howells9ae326a2009-04-03 16:42:41 +0100453 ASSERT(object->dentry->d_parent);
454
455 dir = dget_parent(object->dentry);
456
Al Viro59551022016-01-22 15:40:57 -0500457 inode_lock_nested(d_inode(dir), I_MUTEX_PARENT);
David Howells8f9941a2010-02-19 18:14:21 +0000458
David Howells182d9192015-02-19 23:47:31 +0000459 if (test_bit(FSCACHE_OBJECT_KILLED_BY_CACHE, &object->fscache.flags)) {
David Howellsc61ea312010-05-11 16:51:39 +0100460 /* object allocation for the same key preemptively deleted this
461 * object's file so that it could create its own file */
462 _debug("object preemptively buried");
Al Viro59551022016-01-22 15:40:57 -0500463 inode_unlock(d_inode(dir));
David Howells8f9941a2010-02-19 18:14:21 +0000464 ret = 0;
David Howellsc61ea312010-05-11 16:51:39 +0100465 } else {
466 /* we need to check that our parent is _still_ our parent - it
467 * may have been renamed */
468 if (dir == object->dentry->d_parent) {
David Howellsa18feb52018-04-04 13:41:27 +0100469 ret = cachefiles_bury_object(cache, object, dir,
David Howells182d9192015-02-19 23:47:31 +0000470 object->dentry, false,
471 FSCACHE_OBJECT_WAS_RETIRED);
David Howellsc61ea312010-05-11 16:51:39 +0100472 } else {
473 /* it got moved, presumably by cachefilesd culling it,
474 * so it's no longer in the key path and we can ignore
475 * it */
Al Viro59551022016-01-22 15:40:57 -0500476 inode_unlock(d_inode(dir));
David Howellsc61ea312010-05-11 16:51:39 +0100477 ret = 0;
478 }
David Howells8f9941a2010-02-19 18:14:21 +0000479 }
David Howells9ae326a2009-04-03 16:42:41 +0100480
481 dput(dir);
482 _leave(" = %d", ret);
483 return ret;
484}
485
486/*
487 * walk from the parent object to the child object through the backing
488 * filesystem, creating directories as we go
489 */
490int cachefiles_walk_to_object(struct cachefiles_object *parent,
491 struct cachefiles_object *object,
492 const char *key,
493 struct cachefiles_xattr *auxdata)
494{
495 struct cachefiles_cache *cache;
496 struct dentry *dir, *next = NULL;
David Howellsa18feb52018-04-04 13:41:27 +0100497 struct inode *inode;
David Howells82140442010-12-24 14:48:35 +0000498 struct path path;
David Howells9ae326a2009-04-03 16:42:41 +0100499 unsigned long start;
500 const char *name;
501 int ret, nlen;
502
David Howellsc61ea312010-05-11 16:51:39 +0100503 _enter("OBJ%x{%p},OBJ%x,%s,",
504 parent->fscache.debug_id, parent->dentry,
505 object->fscache.debug_id, key);
David Howells9ae326a2009-04-03 16:42:41 +0100506
507 cache = container_of(parent->fscache.cache,
508 struct cachefiles_cache, cache);
David Howells82140442010-12-24 14:48:35 +0000509 path.mnt = cache->mnt;
David Howells9ae326a2009-04-03 16:42:41 +0100510
511 ASSERT(parent->dentry);
David Howells466b77b2015-03-17 22:26:21 +0000512 ASSERT(d_backing_inode(parent->dentry));
David Howells9ae326a2009-04-03 16:42:41 +0100513
David Howellse36cb0b2015-01-29 12:02:35 +0000514 if (!(d_is_dir(parent->dentry))) {
David Howells9ae326a2009-04-03 16:42:41 +0100515 // TODO: convert file to dir
516 _leave("looking up in none directory");
517 return -ENOBUFS;
518 }
519
520 dir = dget(parent->dentry);
521
522advance:
523 /* attempt to transit the first directory component */
524 name = key;
525 nlen = strlen(key);
526
527 /* key ends in a double NUL */
528 key = key + nlen + 1;
529 if (!*key)
530 key = NULL;
531
532lookup_again:
533 /* search the current directory for the element name */
534 _debug("lookup '%s'", name);
535
Al Viro59551022016-01-22 15:40:57 -0500536 inode_lock_nested(d_inode(dir), I_MUTEX_PARENT);
David Howells9ae326a2009-04-03 16:42:41 +0100537
538 start = jiffies;
539 next = lookup_one_len(name, dir, nlen);
540 cachefiles_hist(cachefiles_lookup_histogram, start);
David Howellsa18feb52018-04-04 13:41:27 +0100541 if (IS_ERR(next)) {
542 trace_cachefiles_lookup(object, next, NULL);
David Howells9ae326a2009-04-03 16:42:41 +0100543 goto lookup_error;
David Howellsa18feb52018-04-04 13:41:27 +0100544 }
David Howells9ae326a2009-04-03 16:42:41 +0100545
David Howellsa18feb52018-04-04 13:41:27 +0100546 inode = d_backing_inode(next);
547 trace_cachefiles_lookup(object, next, inode);
548 _debug("next -> %p %s", next, inode ? "positive" : "negative");
David Howells9ae326a2009-04-03 16:42:41 +0100549
550 if (!key)
David Howellsa18feb52018-04-04 13:41:27 +0100551 object->new = !inode;
David Howells9ae326a2009-04-03 16:42:41 +0100552
553 /* if this element of the path doesn't exist, then the lookup phase
554 * failed, and we can release any readers in the certain knowledge that
555 * there's nothing for them to actually read */
David Howells466b77b2015-03-17 22:26:21 +0000556 if (d_is_negative(next))
David Howells9ae326a2009-04-03 16:42:41 +0100557 fscache_object_lookup_negative(&object->fscache);
558
559 /* we need to create the object if it's negative */
560 if (key || object->type == FSCACHE_COOKIE_TYPE_INDEX) {
561 /* index objects and intervening tree levels must be subdirs */
David Howells466b77b2015-03-17 22:26:21 +0000562 if (d_is_negative(next)) {
David Howells9ae326a2009-04-03 16:42:41 +0100563 ret = cachefiles_has_space(cache, 1, 0);
564 if (ret < 0)
David Howells182d9192015-02-19 23:47:31 +0000565 goto no_space_error;
David Howells9ae326a2009-04-03 16:42:41 +0100566
David Howells82140442010-12-24 14:48:35 +0000567 path.dentry = dir;
568 ret = security_path_mkdir(&path, next, 0);
569 if (ret < 0)
570 goto create_error;
David Howells9ae326a2009-04-03 16:42:41 +0100571 start = jiffies;
Christian Brauner6521f892021-01-21 14:19:33 +0100572 ret = vfs_mkdir(&init_user_ns, d_inode(dir), next, 0);
David Howells9ae326a2009-04-03 16:42:41 +0100573 cachefiles_hist(cachefiles_mkdir_histogram, start);
David Howellsa18feb52018-04-04 13:41:27 +0100574 if (!key)
575 trace_cachefiles_mkdir(object, next, ret);
David Howells9ae326a2009-04-03 16:42:41 +0100576 if (ret < 0)
577 goto create_error;
578
Al Viro9c3e9022018-05-10 22:59:45 -0400579 if (unlikely(d_unhashed(next))) {
580 dput(next);
581 inode_unlock(d_inode(dir));
582 goto lookup_again;
583 }
David Howells466b77b2015-03-17 22:26:21 +0000584 ASSERT(d_backing_inode(next));
David Howells9ae326a2009-04-03 16:42:41 +0100585
586 _debug("mkdir -> %p{%p{ino=%lu}}",
David Howells466b77b2015-03-17 22:26:21 +0000587 next, d_backing_inode(next), d_backing_inode(next)->i_ino);
David Howells9ae326a2009-04-03 16:42:41 +0100588
David Howellsce40fa72015-01-29 12:02:36 +0000589 } else if (!d_can_lookup(next)) {
Fabian Frederick6ff66ac2014-09-25 16:05:27 -0700590 pr_err("inode %lu is not a directory\n",
David Howells466b77b2015-03-17 22:26:21 +0000591 d_backing_inode(next)->i_ino);
David Howells9ae326a2009-04-03 16:42:41 +0100592 ret = -ENOBUFS;
593 goto error;
594 }
595
596 } else {
597 /* non-index objects start out life as files */
David Howells466b77b2015-03-17 22:26:21 +0000598 if (d_is_negative(next)) {
David Howells9ae326a2009-04-03 16:42:41 +0100599 ret = cachefiles_has_space(cache, 1, 0);
600 if (ret < 0)
David Howells182d9192015-02-19 23:47:31 +0000601 goto no_space_error;
David Howells9ae326a2009-04-03 16:42:41 +0100602
David Howells82140442010-12-24 14:48:35 +0000603 path.dentry = dir;
604 ret = security_path_mknod(&path, next, S_IFREG, 0);
605 if (ret < 0)
606 goto create_error;
David Howells9ae326a2009-04-03 16:42:41 +0100607 start = jiffies;
Christian Brauner6521f892021-01-21 14:19:33 +0100608 ret = vfs_create(&init_user_ns, d_inode(dir), next,
609 S_IFREG, true);
David Howells9ae326a2009-04-03 16:42:41 +0100610 cachefiles_hist(cachefiles_create_histogram, start);
David Howellsa18feb52018-04-04 13:41:27 +0100611 trace_cachefiles_create(object, next, ret);
David Howells9ae326a2009-04-03 16:42:41 +0100612 if (ret < 0)
613 goto create_error;
614
David Howells466b77b2015-03-17 22:26:21 +0000615 ASSERT(d_backing_inode(next));
David Howells9ae326a2009-04-03 16:42:41 +0100616
617 _debug("create -> %p{%p{ino=%lu}}",
David Howells466b77b2015-03-17 22:26:21 +0000618 next, d_backing_inode(next), d_backing_inode(next)->i_ino);
David Howells9ae326a2009-04-03 16:42:41 +0100619
David Howellsce40fa72015-01-29 12:02:36 +0000620 } else if (!d_can_lookup(next) &&
David Howellse36cb0b2015-01-29 12:02:35 +0000621 !d_is_reg(next)
David Howells9ae326a2009-04-03 16:42:41 +0100622 ) {
Fabian Frederick6ff66ac2014-09-25 16:05:27 -0700623 pr_err("inode %lu is not a file or directory\n",
David Howells466b77b2015-03-17 22:26:21 +0000624 d_backing_inode(next)->i_ino);
David Howells9ae326a2009-04-03 16:42:41 +0100625 ret = -ENOBUFS;
626 goto error;
627 }
628 }
629
630 /* process the next component */
631 if (key) {
632 _debug("advance");
Al Viro59551022016-01-22 15:40:57 -0500633 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100634 dput(dir);
635 dir = next;
636 next = NULL;
637 goto advance;
638 }
639
640 /* we've found the object we were looking for */
641 object->dentry = next;
642
643 /* if we've found that the terminal object exists, then we need to
644 * check its attributes and delete it if it's out of date */
645 if (!object->new) {
Al Viroa4555892014-10-21 20:11:25 -0400646 _debug("validate '%pd'", next);
David Howells9ae326a2009-04-03 16:42:41 +0100647
648 ret = cachefiles_check_object_xattr(object, auxdata);
649 if (ret == -ESTALE) {
650 /* delete the object (the deleter drops the directory
651 * mutex) */
652 object->dentry = NULL;
653
David Howellsa18feb52018-04-04 13:41:27 +0100654 ret = cachefiles_bury_object(cache, object, dir, next,
655 true,
David Howells182d9192015-02-19 23:47:31 +0000656 FSCACHE_OBJECT_IS_STALE);
David Howells9ae326a2009-04-03 16:42:41 +0100657 dput(next);
658 next = NULL;
659
660 if (ret < 0)
661 goto delete_error;
662
663 _debug("redo lookup");
David Howells182d9192015-02-19 23:47:31 +0000664 fscache_object_retrying_stale(&object->fscache);
David Howells9ae326a2009-04-03 16:42:41 +0100665 goto lookup_again;
666 }
667 }
668
669 /* note that we're now using this object */
David Howellsfee096d2009-11-19 18:12:05 +0000670 ret = cachefiles_mark_object_active(cache, object);
David Howells9ae326a2009-04-03 16:42:41 +0100671
Al Viro59551022016-01-22 15:40:57 -0500672 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100673 dput(dir);
674 dir = NULL;
675
David Howellsfee096d2009-11-19 18:12:05 +0000676 if (ret == -ETIMEDOUT)
677 goto mark_active_timed_out;
678
David Howells9ae326a2009-04-03 16:42:41 +0100679 _debug("=== OBTAINED_OBJECT ===");
680
681 if (object->new) {
682 /* attach data to a newly constructed terminal object */
683 ret = cachefiles_set_object_xattr(object, auxdata);
684 if (ret < 0)
685 goto check_error;
686 } else {
687 /* always update the atime on an object we've just looked up
688 * (this is used to keep track of culling, and atimes are only
689 * updated by read, write and readdir but not lookup or
690 * open) */
Al Viro68ac1232012-03-15 08:21:57 -0400691 path.dentry = next;
692 touch_atime(&path);
David Howells9ae326a2009-04-03 16:42:41 +0100693 }
694
695 /* open a file interface onto a data file */
696 if (object->type != FSCACHE_COOKIE_TYPE_INDEX) {
David Howellse36cb0b2015-01-29 12:02:35 +0000697 if (d_is_reg(object->dentry)) {
David Howells9ae326a2009-04-03 16:42:41 +0100698 const struct address_space_operations *aops;
699
700 ret = -EPERM;
David Howells466b77b2015-03-17 22:26:21 +0000701 aops = d_backing_inode(object->dentry)->i_mapping->a_ops;
David Howells9ae326a2009-04-03 16:42:41 +0100702 if (!aops->bmap)
703 goto check_error;
NeilBrown95201a42015-11-04 15:20:34 +0000704 if (object->dentry->d_sb->s_blocksize > PAGE_SIZE)
705 goto check_error;
David Howells9ae326a2009-04-03 16:42:41 +0100706
707 object->backer = object->dentry;
708 } else {
709 BUG(); // TODO: open file in data-class subdir
710 }
711 }
712
713 object->new = 0;
714 fscache_obtained_object(&object->fscache);
715
David Howells466b77b2015-03-17 22:26:21 +0000716 _leave(" = 0 [%lu]", d_backing_inode(object->dentry)->i_ino);
David Howells9ae326a2009-04-03 16:42:41 +0100717 return 0;
718
David Howells182d9192015-02-19 23:47:31 +0000719no_space_error:
720 fscache_object_mark_killed(&object->fscache, FSCACHE_OBJECT_NO_SPACE);
David Howells9ae326a2009-04-03 16:42:41 +0100721create_error:
722 _debug("create error %d", ret);
723 if (ret == -EIO)
724 cachefiles_io_error(cache, "Create/mkdir failed");
725 goto error;
726
David Howellsfee096d2009-11-19 18:12:05 +0000727mark_active_timed_out:
728 _debug("mark active timed out");
729 goto release_dentry;
730
David Howells9ae326a2009-04-03 16:42:41 +0100731check_error:
732 _debug("check error %d", ret);
David Howellsa8181012016-08-09 17:41:16 +0100733 cachefiles_mark_object_inactive(
734 cache, object, d_backing_inode(object->dentry)->i_blocks);
David Howellsfee096d2009-11-19 18:12:05 +0000735release_dentry:
David Howells9ae326a2009-04-03 16:42:41 +0100736 dput(object->dentry);
737 object->dentry = NULL;
738 goto error_out;
739
740delete_error:
741 _debug("delete error %d", ret);
742 goto error_out2;
743
744lookup_error:
745 _debug("lookup error %ld", PTR_ERR(next));
746 ret = PTR_ERR(next);
747 if (ret == -EIO)
748 cachefiles_io_error(cache, "Lookup failed");
749 next = NULL;
750error:
Al Viro59551022016-01-22 15:40:57 -0500751 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100752 dput(next);
753error_out2:
754 dput(dir);
755error_out:
David Howells9ae326a2009-04-03 16:42:41 +0100756 _leave(" = error %d", -ret);
757 return ret;
758}
759
760/*
761 * get a subdirectory
762 */
763struct dentry *cachefiles_get_directory(struct cachefiles_cache *cache,
764 struct dentry *dir,
765 const char *dirname)
766{
767 struct dentry *subdir;
768 unsigned long start;
David Howells82140442010-12-24 14:48:35 +0000769 struct path path;
David Howells9ae326a2009-04-03 16:42:41 +0100770 int ret;
771
772 _enter(",,%s", dirname);
773
774 /* search the current directory for the element name */
Al Viro59551022016-01-22 15:40:57 -0500775 inode_lock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100776
Al Viro9c3e9022018-05-10 22:59:45 -0400777retry:
David Howells9ae326a2009-04-03 16:42:41 +0100778 start = jiffies;
779 subdir = lookup_one_len(dirname, dir, strlen(dirname));
780 cachefiles_hist(cachefiles_lookup_histogram, start);
781 if (IS_ERR(subdir)) {
782 if (PTR_ERR(subdir) == -ENOMEM)
783 goto nomem_d_alloc;
784 goto lookup_error;
785 }
786
787 _debug("subdir -> %p %s",
David Howells466b77b2015-03-17 22:26:21 +0000788 subdir, d_backing_inode(subdir) ? "positive" : "negative");
David Howells9ae326a2009-04-03 16:42:41 +0100789
790 /* we need to create the subdir if it doesn't exist yet */
David Howells466b77b2015-03-17 22:26:21 +0000791 if (d_is_negative(subdir)) {
David Howells9ae326a2009-04-03 16:42:41 +0100792 ret = cachefiles_has_space(cache, 1, 0);
793 if (ret < 0)
794 goto mkdir_error;
795
796 _debug("attempt mkdir");
797
David Howells82140442010-12-24 14:48:35 +0000798 path.mnt = cache->mnt;
799 path.dentry = dir;
800 ret = security_path_mkdir(&path, subdir, 0700);
801 if (ret < 0)
802 goto mkdir_error;
Christian Brauner6521f892021-01-21 14:19:33 +0100803 ret = vfs_mkdir(&init_user_ns, d_inode(dir), subdir, 0700);
David Howells9ae326a2009-04-03 16:42:41 +0100804 if (ret < 0)
805 goto mkdir_error;
806
Al Viro9c3e9022018-05-10 22:59:45 -0400807 if (unlikely(d_unhashed(subdir))) {
808 dput(subdir);
809 goto retry;
810 }
David Howells466b77b2015-03-17 22:26:21 +0000811 ASSERT(d_backing_inode(subdir));
David Howells9ae326a2009-04-03 16:42:41 +0100812
813 _debug("mkdir -> %p{%p{ino=%lu}}",
814 subdir,
David Howells466b77b2015-03-17 22:26:21 +0000815 d_backing_inode(subdir),
816 d_backing_inode(subdir)->i_ino);
David Howells9ae326a2009-04-03 16:42:41 +0100817 }
818
Al Viro59551022016-01-22 15:40:57 -0500819 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100820
821 /* we need to make sure the subdir is a directory */
David Howells466b77b2015-03-17 22:26:21 +0000822 ASSERT(d_backing_inode(subdir));
David Howells9ae326a2009-04-03 16:42:41 +0100823
David Howellsce40fa72015-01-29 12:02:36 +0000824 if (!d_can_lookup(subdir)) {
Fabian Frederick6ff66ac2014-09-25 16:05:27 -0700825 pr_err("%s is not a directory\n", dirname);
David Howells9ae326a2009-04-03 16:42:41 +0100826 ret = -EIO;
827 goto check_error;
828 }
829
830 ret = -EPERM;
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200831 if (!(d_backing_inode(subdir)->i_opflags & IOP_XATTR) ||
David Howells466b77b2015-03-17 22:26:21 +0000832 !d_backing_inode(subdir)->i_op->lookup ||
833 !d_backing_inode(subdir)->i_op->mkdir ||
834 !d_backing_inode(subdir)->i_op->create ||
Miklos Szeredi2773bf02016-09-27 11:03:58 +0200835 !d_backing_inode(subdir)->i_op->rename ||
David Howells466b77b2015-03-17 22:26:21 +0000836 !d_backing_inode(subdir)->i_op->rmdir ||
837 !d_backing_inode(subdir)->i_op->unlink)
David Howells9ae326a2009-04-03 16:42:41 +0100838 goto check_error;
839
David Howells466b77b2015-03-17 22:26:21 +0000840 _leave(" = [%lu]", d_backing_inode(subdir)->i_ino);
David Howells9ae326a2009-04-03 16:42:41 +0100841 return subdir;
842
843check_error:
844 dput(subdir);
845 _leave(" = %d [check]", ret);
846 return ERR_PTR(ret);
847
848mkdir_error:
Al Viro59551022016-01-22 15:40:57 -0500849 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100850 dput(subdir);
Fabian Frederick6ff66ac2014-09-25 16:05:27 -0700851 pr_err("mkdir %s failed with error %d\n", dirname, ret);
David Howells9ae326a2009-04-03 16:42:41 +0100852 return ERR_PTR(ret);
853
854lookup_error:
Al Viro59551022016-01-22 15:40:57 -0500855 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100856 ret = PTR_ERR(subdir);
Fabian Frederick6ff66ac2014-09-25 16:05:27 -0700857 pr_err("Lookup %s failed with error %d\n", dirname, ret);
David Howells9ae326a2009-04-03 16:42:41 +0100858 return ERR_PTR(ret);
859
860nomem_d_alloc:
Al Viro59551022016-01-22 15:40:57 -0500861 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100862 _leave(" = -ENOMEM");
863 return ERR_PTR(-ENOMEM);
864}
865
866/*
867 * find out if an object is in use or not
868 * - if finds object and it's not in use:
869 * - returns a pointer to the object and a reference on it
870 * - returns with the directory locked
871 */
872static struct dentry *cachefiles_check_active(struct cachefiles_cache *cache,
873 struct dentry *dir,
874 char *filename)
875{
876 struct cachefiles_object *object;
877 struct rb_node *_n;
878 struct dentry *victim;
879 unsigned long start;
880 int ret;
881
Al Viroa4555892014-10-21 20:11:25 -0400882 //_enter(",%pd/,%s",
883 // dir, filename);
David Howells9ae326a2009-04-03 16:42:41 +0100884
885 /* look up the victim */
Al Viro59551022016-01-22 15:40:57 -0500886 inode_lock_nested(d_inode(dir), I_MUTEX_PARENT);
David Howells9ae326a2009-04-03 16:42:41 +0100887
888 start = jiffies;
889 victim = lookup_one_len(filename, dir, strlen(filename));
890 cachefiles_hist(cachefiles_lookup_histogram, start);
891 if (IS_ERR(victim))
892 goto lookup_error;
893
894 //_debug("victim -> %p %s",
David Howells466b77b2015-03-17 22:26:21 +0000895 // victim, d_backing_inode(victim) ? "positive" : "negative");
David Howells9ae326a2009-04-03 16:42:41 +0100896
897 /* if the object is no longer there then we probably retired the object
898 * at the netfs's request whilst the cull was in progress
899 */
David Howells466b77b2015-03-17 22:26:21 +0000900 if (d_is_negative(victim)) {
Al Viro59551022016-01-22 15:40:57 -0500901 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100902 dput(victim);
903 _leave(" = -ENOENT [absent]");
904 return ERR_PTR(-ENOENT);
905 }
906
907 /* check to see if we're using this object */
908 read_lock(&cache->active_lock);
909
910 _n = cache->active_nodes.rb_node;
911
912 while (_n) {
913 object = rb_entry(_n, struct cachefiles_object, active_node);
914
915 if (object->dentry > victim)
916 _n = _n->rb_left;
917 else if (object->dentry < victim)
918 _n = _n->rb_right;
919 else
920 goto object_in_use;
921 }
922
923 read_unlock(&cache->active_lock);
924
925 //_leave(" = %p", victim);
926 return victim;
927
928object_in_use:
929 read_unlock(&cache->active_lock);
Al Viro59551022016-01-22 15:40:57 -0500930 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100931 dput(victim);
932 //_leave(" = -EBUSY [in use]");
933 return ERR_PTR(-EBUSY);
934
935lookup_error:
Al Viro59551022016-01-22 15:40:57 -0500936 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100937 ret = PTR_ERR(victim);
938 if (ret == -ENOENT) {
939 /* file or dir now absent - probably retired by netfs */
940 _leave(" = -ESTALE [absent]");
941 return ERR_PTR(-ESTALE);
942 }
943
944 if (ret == -EIO) {
945 cachefiles_io_error(cache, "Lookup failed");
946 } else if (ret != -ENOMEM) {
Fabian Frederick6ff66ac2014-09-25 16:05:27 -0700947 pr_err("Internal error: %d\n", ret);
David Howells9ae326a2009-04-03 16:42:41 +0100948 ret = -EIO;
949 }
950
951 _leave(" = %d", ret);
952 return ERR_PTR(ret);
953}
954
955/*
956 * cull an object if it's not in use
957 * - called only by cache manager daemon
958 */
959int cachefiles_cull(struct cachefiles_cache *cache, struct dentry *dir,
960 char *filename)
961{
962 struct dentry *victim;
963 int ret;
964
Al Viroa4555892014-10-21 20:11:25 -0400965 _enter(",%pd/,%s", dir, filename);
David Howells9ae326a2009-04-03 16:42:41 +0100966
967 victim = cachefiles_check_active(cache, dir, filename);
968 if (IS_ERR(victim))
969 return PTR_ERR(victim);
970
971 _debug("victim -> %p %s",
David Howells466b77b2015-03-17 22:26:21 +0000972 victim, d_backing_inode(victim) ? "positive" : "negative");
David Howells9ae326a2009-04-03 16:42:41 +0100973
974 /* okay... the victim is not being used so we can cull it
975 * - start by marking it as stale
976 */
977 _debug("victim is cullable");
978
979 ret = cachefiles_remove_object_xattr(cache, victim);
980 if (ret < 0)
981 goto error_unlock;
982
983 /* actually remove the victim (drops the dir mutex) */
984 _debug("bury");
985
David Howellsa18feb52018-04-04 13:41:27 +0100986 ret = cachefiles_bury_object(cache, NULL, dir, victim, false,
David Howells182d9192015-02-19 23:47:31 +0000987 FSCACHE_OBJECT_WAS_CULLED);
David Howells9ae326a2009-04-03 16:42:41 +0100988 if (ret < 0)
989 goto error;
990
991 dput(victim);
992 _leave(" = 0");
993 return 0;
994
995error_unlock:
Al Viro59551022016-01-22 15:40:57 -0500996 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100997error:
998 dput(victim);
999 if (ret == -ENOENT) {
1000 /* file or dir now absent - probably retired by netfs */
1001 _leave(" = -ESTALE [absent]");
1002 return -ESTALE;
1003 }
1004
1005 if (ret != -ENOMEM) {
Fabian Frederick6ff66ac2014-09-25 16:05:27 -07001006 pr_err("Internal error: %d\n", ret);
David Howells9ae326a2009-04-03 16:42:41 +01001007 ret = -EIO;
1008 }
1009
1010 _leave(" = %d", ret);
1011 return ret;
1012}
1013
1014/*
1015 * find out if an object is in use or not
1016 * - called only by cache manager daemon
1017 * - returns -EBUSY or 0 to indicate whether an object is in use or not
1018 */
1019int cachefiles_check_in_use(struct cachefiles_cache *cache, struct dentry *dir,
1020 char *filename)
1021{
1022 struct dentry *victim;
1023
Al Viroa4555892014-10-21 20:11:25 -04001024 //_enter(",%pd/,%s",
1025 // dir, filename);
David Howells9ae326a2009-04-03 16:42:41 +01001026
1027 victim = cachefiles_check_active(cache, dir, filename);
1028 if (IS_ERR(victim))
1029 return PTR_ERR(victim);
1030
Al Viro59551022016-01-22 15:40:57 -05001031 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +01001032 dput(victim);
1033 //_leave(" = 0");
1034 return 0;
1035}