blob: 1645fcfd9691c33bb58114546c262911edfdf25c [file] [log] [blame]
David Howells9ae326a2009-04-03 16:42:41 +01001/* 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 Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +020023#include <linux/xattr.h>
David Howells9ae326a2009-04-03 16:42:41 +010024#include "internal.h"
25
David Howellsd0e27b72009-11-19 18:12:02 +000026#define CACHEFILES_KEYBUF_SIZE 512
27
28/*
29 * dump debugging info about an object
30 */
31static noinline
32void __cachefiles_printk_object(struct cachefiles_object *object,
David Howells402cb8d2018-04-04 13:41:28 +010033 const char *prefix)
David Howellsd0e27b72009-11-19 18:12:02 +000034{
35 struct fscache_cookie *cookie;
David Howells402cb8d2018-04-04 13:41:28 +010036 const u8 *k;
37 unsigned loop;
David Howellsd0e27b72009-11-19 18:12:02 +000038
Fabian Frederick4e1eb882014-06-06 14:37:32 -070039 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 Howellscaaef692013-05-10 19:50:26 +010041 prefix, object->fscache.state->name,
Tejun Heo8b8edef2010-07-20 22:09:01 +020042 object->fscache.flags, work_busy(&object->fscache.work),
David Howellsc2d35bf2012-12-05 13:34:47 +000043 object->fscache.events, object->fscache.event_mask);
Fabian Frederick4e1eb882014-06-06 14:37:32 -070044 pr_err("%sops=%u inp=%u exc=%u\n",
David Howellsd0e27b72009-11-19 18:12:02 +000045 prefix, object->fscache.n_ops, object->fscache.n_in_progress,
46 object->fscache.n_exclusive);
Fabian Frederick4e1eb882014-06-06 14:37:32 -070047 pr_err("%sparent=%p\n",
David Howellsd0e27b72009-11-19 18:12:02 +000048 prefix, object->fscache.parent);
49
50 spin_lock(&object->fscache.lock);
51 cookie = object->fscache.cookie;
52 if (cookie) {
Fabian Frederick4e1eb882014-06-06 14:37:32 -070053 pr_err("%scookie=%p [pr=%p nd=%p fl=%lx]\n",
David Howellsd0e27b72009-11-19 18:12:02 +000054 prefix,
55 object->fscache.cookie,
56 object->fscache.cookie->parent,
57 object->fscache.cookie->netfs_data,
58 object->fscache.cookie->flags);
David Howells402cb8d2018-04-04 13:41:28 +010059 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 Howellsd0e27b72009-11-19 18:12:02 +000065 } else {
Fabian Frederick4e1eb882014-06-06 14:37:32 -070066 pr_err("%scookie=NULL\n", prefix);
David Howellsd0e27b72009-11-19 18:12:02 +000067 }
68 spin_unlock(&object->fscache.lock);
David Howellsd0e27b72009-11-19 18:12:02 +000069}
70
71/*
72 * dump debugging info about a pair of objects
73 */
74static noinline void cachefiles_printk_object(struct cachefiles_object *object,
75 struct cachefiles_object *xobject)
76{
David Howellsd0e27b72009-11-19 18:12:02 +000077 if (object)
David Howells402cb8d2018-04-04 13:41:28 +010078 __cachefiles_printk_object(object, "");
David Howellsd0e27b72009-11-19 18:12:02 +000079 if (xobject)
David Howells402cb8d2018-04-04 13:41:28 +010080 __cachefiles_printk_object(xobject, "x");
David Howellsd0e27b72009-11-19 18:12:02 +000081}
82
David Howells9ae326a2009-04-03 16:42:41 +010083/*
David Howellsc61ea312010-05-11 16:51:39 +010084 * 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 */
89static void cachefiles_mark_object_buried(struct cachefiles_cache *cache,
David Howells182d9192015-02-19 23:47:31 +000090 struct dentry *dentry,
91 enum fscache_why_object_killed why)
David Howellsc61ea312010-05-11 16:51:39 +010092{
93 struct cachefiles_object *object;
94 struct rb_node *p;
95
Al Viroa4555892014-10-21 20:11:25 -040096 _enter(",'%pd'", dentry);
David Howellsc61ea312010-05-11 16:51:39 +010097
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 Howellsa18feb52018-04-04 13:41:27 +0100112 trace_cachefiles_mark_buried(NULL, dentry, why);
David Howellsc61ea312010-05-11 16:51:39 +0100113 _leave(" [no owner]");
114 return;
115
116 /* found the dentry for */
117found_dentry:
118 kdebug("preemptive burial: OBJ%x [%s] %p",
119 object->fscache.debug_id,
David Howellscaaef692013-05-10 19:50:26 +0100120 object->fscache.state->name,
David Howellsc61ea312010-05-11 16:51:39 +0100121 dentry);
122
David Howellsa18feb52018-04-04 13:41:27 +0100123 trace_cachefiles_mark_buried(object, dentry, why);
124
David Howells493f7bc2013-05-10 19:50:26 +0100125 if (fscache_object_is_live(&object->fscache)) {
Fabian Frederick4e1eb882014-06-06 14:37:32 -0700126 pr_err("\n");
Fabian Frederick0227d6ab2014-06-06 14:37:33 -0700127 pr_err("Error: Can't preemptively bury live object\n");
David Howellsc61ea312010-05-11 16:51:39 +0100128 cachefiles_printk_object(object, NULL);
David Howells182d9192015-02-19 23:47:31 +0000129 } else {
130 if (why != FSCACHE_OBJECT_IS_STALE)
131 fscache_object_mark_killed(&object->fscache, why);
David Howellsc61ea312010-05-11 16:51:39 +0100132 }
133
134 write_unlock(&cache->active_lock);
135 _leave(" [owner marked]");
136}
137
138/*
David Howells9ae326a2009-04-03 16:42:41 +0100139 * record the fact that an object is now active
140 */
David Howellsfee096d2009-11-19 18:12:05 +0000141static int cachefiles_mark_object_active(struct cachefiles_cache *cache,
142 struct cachefiles_object *object)
David Howells9ae326a2009-04-03 16:42:41 +0100143{
144 struct cachefiles_object *xobject;
145 struct rb_node **_p, *_parent = NULL;
146 struct dentry *dentry;
147
148 _enter(",%p", object);
149
150try_again:
151 write_lock(&cache->active_lock);
152
David Howellsa18feb52018-04-04 13:41:27 +0100153 dentry = object->dentry;
154 trace_cachefiles_mark_active(object, dentry);
155
David Howellsd0e27b72009-11-19 18:12:02 +0000156 if (test_and_set_bit(CACHEFILES_OBJECT_ACTIVE, &object->flags)) {
Fabian Frederick0227d6ab2014-06-06 14:37:33 -0700157 pr_err("Error: Object already active\n");
David Howellsd0e27b72009-11-19 18:12:02 +0000158 cachefiles_printk_object(object, NULL);
David Howells9ae326a2009-04-03 16:42:41 +0100159 BUG();
David Howellsd0e27b72009-11-19 18:12:02 +0000160 }
David Howells9ae326a2009-04-03 16:42:41 +0100161
David Howells9ae326a2009-04-03 16:42:41 +0100162 _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 Howellsfee096d2009-11-19 18:12:05 +0000182 _leave(" = 0");
183 return 0;
David Howells9ae326a2009-04-03 16:42:41 +0100184
185 /* an old object from a previous incarnation is hogging the slot - we
186 * need to wait for it to be destroyed */
187wait_for_old_object:
David Howellsa18feb52018-04-04 13:41:27 +0100188 trace_cachefiles_wait_active(object, dentry, xobject);
Kiran Kumar Modukuri5ce83d42018-06-21 13:25:53 -0700189 clear_bit(CACHEFILES_OBJECT_ACTIVE, &object->flags);
David Howellsa18feb52018-04-04 13:41:27 +0100190
David Howellsa30efe22014-09-30 14:50:30 +0100191 if (fscache_object_is_live(&xobject->fscache)) {
Fabian Frederick4e1eb882014-06-06 14:37:32 -0700192 pr_err("\n");
Fabian Frederick0227d6ab2014-06-06 14:37:33 -0700193 pr_err("Error: Unexpected object collision\n");
David Howellsd0e27b72009-11-19 18:12:02 +0000194 cachefiles_printk_object(object, xobject);
David Howells9ae326a2009-04-03 16:42:41 +0100195 }
196 atomic_inc(&xobject->usage);
197 write_unlock(&cache->active_lock);
198
David Howellsfee096d2009-11-19 18:12:05 +0000199 if (test_bit(CACHEFILES_OBJECT_ACTIVE, &xobject->flags)) {
200 wait_queue_head_t *wq;
201
202 signed long timeout = 60 * HZ;
Ingo Molnarac6424b2017-06-20 12:06:13 +0200203 wait_queue_entry_t wait;
David Howellsfee096d2009-11-19 18:12:05 +0000204 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 Heo8b8edef2010-07-20 22:09:01 +0200208 if (work_pending(&xobject->fscache.work)) {
David Howellsfee096d2009-11-19 18:12:05 +0000209 _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 Heo8b8edef2010-07-20 22:09:01 +0200216 * is done, or the fscache_object is congested */
David Howellsfee096d2009-11-19 18:12:05 +0000217 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 Heo8b8edef2010-07-20 22:09:01 +0200224
225 requeue = fscache_object_sleep_till_congested(&timeout);
David Howellsfee096d2009-11-19 18:12:05 +0000226 } 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 Frederick4e1eb882014-06-06 14:37:32 -0700238 pr_err("\n");
Fabian Frederick0227d6ab2014-06-06 14:37:33 -0700239 pr_err("Error: Overlong wait for old active object to go away\n");
David Howellsfee096d2009-11-19 18:12:05 +0000240 cachefiles_printk_object(object, xobject);
241 goto requeue;
242 }
243 }
244
245 ASSERT(!test_bit(CACHEFILES_OBJECT_ACTIVE, &xobject->flags));
David Howells9ae326a2009-04-03 16:42:41 +0100246
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_retry);
David Howells9ae326a2009-04-03 16:42:41 +0100249 goto try_again;
David Howellsfee096d2009-11-19 18:12:05 +0000250
251requeue:
Nathan Chancellorb7e768b2018-09-24 10:33:44 -0700252 cache->cache.ops->put_object(&xobject->fscache,
253 (enum fscache_obj_ref_trace)cachefiles_obj_put_wait_timeo);
David Howellsfee096d2009-11-19 18:12:05 +0000254 _leave(" = -ETIMEDOUT");
255 return -ETIMEDOUT;
David Howells9ae326a2009-04-03 16:42:41 +0100256}
257
258/*
David Howellsa5b3a802016-02-01 16:43:04 +0000259 * Mark an object as being inactive.
260 */
261void cachefiles_mark_object_inactive(struct cachefiles_cache *cache,
David Howellsa8181012016-08-09 17:41:16 +0100262 struct cachefiles_object *object,
263 blkcnt_t i_blocks)
David Howellsa5b3a802016-02-01 16:43:04 +0000264{
David Howellsa18feb52018-04-04 13:41:27 +0100265 struct dentry *dentry = object->dentry;
266 struct inode *inode = d_backing_inode(dentry);
267
268 trace_cachefiles_mark_inactive(object, dentry, inode);
269
David Howellsa5b3a802016-02-01 16:43:04 +0000270 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 Howellsdb20a892016-08-03 17:57:39 +0100280 atomic_long_add(i_blocks, &cache->b_released);
David Howellsa5b3a802016-02-01 16:43:04 +0000281 if (atomic_inc_return(&cache->f_released))
282 cachefiles_state_changed(cache);
283}
284
285/*
David Howells9ae326a2009-04-03 16:42:41 +0100286 * 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 */
292static int cachefiles_bury_object(struct cachefiles_cache *cache,
David Howellsa18feb52018-04-04 13:41:27 +0100293 struct cachefiles_object *object,
David Howells9ae326a2009-04-03 16:42:41 +0100294 struct dentry *dir,
David Howellsc61ea312010-05-11 16:51:39 +0100295 struct dentry *rep,
David Howells182d9192015-02-19 23:47:31 +0000296 bool preemptive,
297 enum fscache_why_object_killed why)
David Howells9ae326a2009-04-03 16:42:41 +0100298{
299 struct dentry *grave, *trap;
David Howells82140442010-12-24 14:48:35 +0000300 struct path path, path_to_graveyard;
David Howells9ae326a2009-04-03 16:42:41 +0100301 char nbuffer[8 + 8 + 1];
302 int ret;
303
Al Viroa4555892014-10-21 20:11:25 -0400304 _enter(",'%pd','%pd'", dir, rep);
David Howells9ae326a2009-04-03 16:42:41 +0100305
David Howellsc61ea312010-05-11 16:51:39 +0100306 _debug("remove %p from %p", rep, dir);
307
David Howells9ae326a2009-04-03 16:42:41 +0100308 /* non-directories can just be unlinked */
David Howellse36cb0b2015-01-29 12:02:35 +0000309 if (!d_is_dir(rep)) {
David Howells9ae326a2009-04-03 16:42:41 +0100310 _debug("unlink stale object");
David Howells9ae326a2009-04-03 16:42:41 +0100311
David Howells82140442010-12-24 14:48:35 +0000312 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 Howellsa18feb52018-04-04 13:41:27 +0100318 trace_cachefiles_unlink(object, rep, why);
David Howells5153bc82015-03-06 14:08:58 +0000319 ret = vfs_unlink(d_inode(dir), rep, NULL);
David Howells82140442010-12-24 14:48:35 +0000320
321 if (preemptive)
David Howells182d9192015-02-19 23:47:31 +0000322 cachefiles_mark_object_buried(cache, rep, why);
David Howells82140442010-12-24 14:48:35 +0000323 }
David Howellsc61ea312010-05-11 16:51:39 +0100324
Al Viro59551022016-01-22 15:40:57 -0500325 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100326
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 Viro59551022016-01-22 15:40:57 -0500336 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100337
338try_again:
339 /* first step is to make up a grave dentry in the graveyard */
340 sprintf(nbuffer, "%08x%08x",
Arnd Bergmann34e06fe2018-07-13 16:27:44 +0200341 (uint32_t) ktime_get_real_seconds(),
David Howells9ae326a2009-04-03 16:42:41 +0100342 (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 Viro169b8032018-10-17 15:23:26 +0100348 if (rep->d_parent != dir || IS_DEADDIR(d_inode(rep))) {
David Howells9ae326a2009-04-03 16:42:41 +0100349 /* 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 Howellsce40fa72015-01-29 12:02:36 +0000356 if (!d_can_lookup(cache->graveyard)) {
David Howells9ae326a2009-04-03 16:42:41 +0100357 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 Howells466b77b2015-03-17 22:26:21 +0000388 if (d_is_positive(grave)) {
David Howells9ae326a2009-04-03 16:42:41 +0100389 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 Howells82140442010-12-24 14:48:35 +0000412 path.mnt = cache->mnt;
413 path.dentry = dir;
414 path_to_graveyard.mnt = cache->mnt;
415 path_to_graveyard.dentry = cache->graveyard;
Miklos Szeredi0b3974e2014-04-01 17:08:43 +0200416 ret = security_path_rename(&path, rep, &path_to_graveyard, grave, 0);
David Howells82140442010-12-24 14:48:35 +0000417 if (ret < 0) {
418 cachefiles_io_error(cache, "Rename security error %d", ret);
419 } else {
David Howellsa18feb52018-04-04 13:41:27 +0100420 trace_cachefiles_rename(object, rep, grave, why);
David Howells5153bc82015-03-06 14:08:58 +0000421 ret = vfs_rename(d_inode(dir), rep,
422 d_inode(cache->graveyard), grave, NULL, 0);
David Howells82140442010-12-24 14:48:35 +0000423 if (ret != 0 && ret != -ENOMEM)
424 cachefiles_io_error(cache,
425 "Rename failed with error %d", ret);
David Howells9ae326a2009-04-03 16:42:41 +0100426
David Howells82140442010-12-24 14:48:35 +0000427 if (preemptive)
David Howells182d9192015-02-19 23:47:31 +0000428 cachefiles_mark_object_buried(cache, rep, why);
David Howells82140442010-12-24 14:48:35 +0000429 }
David Howellsc61ea312010-05-11 16:51:39 +0100430
David Howells9ae326a2009-04-03 16:42:41 +0100431 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 */
440int cachefiles_delete_object(struct cachefiles_cache *cache,
441 struct cachefiles_object *object)
442{
443 struct dentry *dir;
444 int ret;
445
David Howellsc61ea312010-05-11 16:51:39 +0100446 _enter(",OBJ%x{%p}", object->fscache.debug_id, object->dentry);
David Howells9ae326a2009-04-03 16:42:41 +0100447
448 ASSERT(object->dentry);
David Howells466b77b2015-03-17 22:26:21 +0000449 ASSERT(d_backing_inode(object->dentry));
David Howells9ae326a2009-04-03 16:42:41 +0100450 ASSERT(object->dentry->d_parent);
451
452 dir = dget_parent(object->dentry);
453
Al Viro59551022016-01-22 15:40:57 -0500454 inode_lock_nested(d_inode(dir), I_MUTEX_PARENT);
David Howells8f9941a2010-02-19 18:14:21 +0000455
David Howells182d9192015-02-19 23:47:31 +0000456 if (test_bit(FSCACHE_OBJECT_KILLED_BY_CACHE, &object->fscache.flags)) {
David Howellsc61ea312010-05-11 16:51:39 +0100457 /* 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 Viro59551022016-01-22 15:40:57 -0500460 inode_unlock(d_inode(dir));
David Howells8f9941a2010-02-19 18:14:21 +0000461 ret = 0;
David Howellsc61ea312010-05-11 16:51:39 +0100462 } 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 Howellsa18feb52018-04-04 13:41:27 +0100466 ret = cachefiles_bury_object(cache, object, dir,
David Howells182d9192015-02-19 23:47:31 +0000467 object->dentry, false,
468 FSCACHE_OBJECT_WAS_RETIRED);
David Howellsc61ea312010-05-11 16:51:39 +0100469 } 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 Viro59551022016-01-22 15:40:57 -0500473 inode_unlock(d_inode(dir));
David Howellsc61ea312010-05-11 16:51:39 +0100474 ret = 0;
475 }
David Howells8f9941a2010-02-19 18:14:21 +0000476 }
David Howells9ae326a2009-04-03 16:42:41 +0100477
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 */
487int 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 Howellsa18feb52018-04-04 13:41:27 +0100494 struct inode *inode;
David Howells82140442010-12-24 14:48:35 +0000495 struct path path;
David Howells9ae326a2009-04-03 16:42:41 +0100496 unsigned long start;
497 const char *name;
498 int ret, nlen;
499
David Howellsc61ea312010-05-11 16:51:39 +0100500 _enter("OBJ%x{%p},OBJ%x,%s,",
501 parent->fscache.debug_id, parent->dentry,
502 object->fscache.debug_id, key);
David Howells9ae326a2009-04-03 16:42:41 +0100503
504 cache = container_of(parent->fscache.cache,
505 struct cachefiles_cache, cache);
David Howells82140442010-12-24 14:48:35 +0000506 path.mnt = cache->mnt;
David Howells9ae326a2009-04-03 16:42:41 +0100507
508 ASSERT(parent->dentry);
David Howells466b77b2015-03-17 22:26:21 +0000509 ASSERT(d_backing_inode(parent->dentry));
David Howells9ae326a2009-04-03 16:42:41 +0100510
David Howellse36cb0b2015-01-29 12:02:35 +0000511 if (!(d_is_dir(parent->dentry))) {
David Howells9ae326a2009-04-03 16:42:41 +0100512 // TODO: convert file to dir
513 _leave("looking up in none directory");
514 return -ENOBUFS;
515 }
516
517 dir = dget(parent->dentry);
518
519advance:
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
529lookup_again:
530 /* search the current directory for the element name */
531 _debug("lookup '%s'", name);
532
Al Viro59551022016-01-22 15:40:57 -0500533 inode_lock_nested(d_inode(dir), I_MUTEX_PARENT);
David Howells9ae326a2009-04-03 16:42:41 +0100534
535 start = jiffies;
536 next = lookup_one_len(name, dir, nlen);
537 cachefiles_hist(cachefiles_lookup_histogram, start);
David Howellsa18feb52018-04-04 13:41:27 +0100538 if (IS_ERR(next)) {
539 trace_cachefiles_lookup(object, next, NULL);
David Howells9ae326a2009-04-03 16:42:41 +0100540 goto lookup_error;
David Howellsa18feb52018-04-04 13:41:27 +0100541 }
David Howells9ae326a2009-04-03 16:42:41 +0100542
David Howellsa18feb52018-04-04 13:41:27 +0100543 inode = d_backing_inode(next);
544 trace_cachefiles_lookup(object, next, inode);
545 _debug("next -> %p %s", next, inode ? "positive" : "negative");
David Howells9ae326a2009-04-03 16:42:41 +0100546
547 if (!key)
David Howellsa18feb52018-04-04 13:41:27 +0100548 object->new = !inode;
David Howells9ae326a2009-04-03 16:42:41 +0100549
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 Howells466b77b2015-03-17 22:26:21 +0000553 if (d_is_negative(next))
David Howells9ae326a2009-04-03 16:42:41 +0100554 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 Howells466b77b2015-03-17 22:26:21 +0000559 if (d_is_negative(next)) {
David Howells9ae326a2009-04-03 16:42:41 +0100560 ret = cachefiles_has_space(cache, 1, 0);
561 if (ret < 0)
David Howells182d9192015-02-19 23:47:31 +0000562 goto no_space_error;
David Howells9ae326a2009-04-03 16:42:41 +0100563
David Howells82140442010-12-24 14:48:35 +0000564 path.dentry = dir;
565 ret = security_path_mkdir(&path, next, 0);
566 if (ret < 0)
567 goto create_error;
David Howells9ae326a2009-04-03 16:42:41 +0100568 start = jiffies;
David Howells5153bc82015-03-06 14:08:58 +0000569 ret = vfs_mkdir(d_inode(dir), next, 0);
David Howells9ae326a2009-04-03 16:42:41 +0100570 cachefiles_hist(cachefiles_mkdir_histogram, start);
David Howellsa18feb52018-04-04 13:41:27 +0100571 if (!key)
572 trace_cachefiles_mkdir(object, next, ret);
David Howells9ae326a2009-04-03 16:42:41 +0100573 if (ret < 0)
574 goto create_error;
575
Al Viro9c3e9022018-05-10 22:59:45 -0400576 if (unlikely(d_unhashed(next))) {
577 dput(next);
578 inode_unlock(d_inode(dir));
579 goto lookup_again;
580 }
David Howells466b77b2015-03-17 22:26:21 +0000581 ASSERT(d_backing_inode(next));
David Howells9ae326a2009-04-03 16:42:41 +0100582
583 _debug("mkdir -> %p{%p{ino=%lu}}",
David Howells466b77b2015-03-17 22:26:21 +0000584 next, d_backing_inode(next), d_backing_inode(next)->i_ino);
David Howells9ae326a2009-04-03 16:42:41 +0100585
David Howellsce40fa72015-01-29 12:02:36 +0000586 } else if (!d_can_lookup(next)) {
Fabian Frederick6ff66ac2014-09-25 16:05:27 -0700587 pr_err("inode %lu is not a directory\n",
David Howells466b77b2015-03-17 22:26:21 +0000588 d_backing_inode(next)->i_ino);
David Howells9ae326a2009-04-03 16:42:41 +0100589 ret = -ENOBUFS;
590 goto error;
591 }
592
593 } else {
594 /* non-index objects start out life as files */
David Howells466b77b2015-03-17 22:26:21 +0000595 if (d_is_negative(next)) {
David Howells9ae326a2009-04-03 16:42:41 +0100596 ret = cachefiles_has_space(cache, 1, 0);
597 if (ret < 0)
David Howells182d9192015-02-19 23:47:31 +0000598 goto no_space_error;
David Howells9ae326a2009-04-03 16:42:41 +0100599
David Howells82140442010-12-24 14:48:35 +0000600 path.dentry = dir;
601 ret = security_path_mknod(&path, next, S_IFREG, 0);
602 if (ret < 0)
603 goto create_error;
David Howells9ae326a2009-04-03 16:42:41 +0100604 start = jiffies;
David Howells5153bc82015-03-06 14:08:58 +0000605 ret = vfs_create(d_inode(dir), next, S_IFREG, true);
David Howells9ae326a2009-04-03 16:42:41 +0100606 cachefiles_hist(cachefiles_create_histogram, start);
David Howellsa18feb52018-04-04 13:41:27 +0100607 trace_cachefiles_create(object, next, ret);
David Howells9ae326a2009-04-03 16:42:41 +0100608 if (ret < 0)
609 goto create_error;
610
David Howells466b77b2015-03-17 22:26:21 +0000611 ASSERT(d_backing_inode(next));
David Howells9ae326a2009-04-03 16:42:41 +0100612
613 _debug("create -> %p{%p{ino=%lu}}",
David Howells466b77b2015-03-17 22:26:21 +0000614 next, d_backing_inode(next), d_backing_inode(next)->i_ino);
David Howells9ae326a2009-04-03 16:42:41 +0100615
David Howellsce40fa72015-01-29 12:02:36 +0000616 } else if (!d_can_lookup(next) &&
David Howellse36cb0b2015-01-29 12:02:35 +0000617 !d_is_reg(next)
David Howells9ae326a2009-04-03 16:42:41 +0100618 ) {
Fabian Frederick6ff66ac2014-09-25 16:05:27 -0700619 pr_err("inode %lu is not a file or directory\n",
David Howells466b77b2015-03-17 22:26:21 +0000620 d_backing_inode(next)->i_ino);
David Howells9ae326a2009-04-03 16:42:41 +0100621 ret = -ENOBUFS;
622 goto error;
623 }
624 }
625
626 /* process the next component */
627 if (key) {
628 _debug("advance");
Al Viro59551022016-01-22 15:40:57 -0500629 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100630 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 Viroa4555892014-10-21 20:11:25 -0400642 _debug("validate '%pd'", next);
David Howells9ae326a2009-04-03 16:42:41 +0100643
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 Howellsa18feb52018-04-04 13:41:27 +0100650 ret = cachefiles_bury_object(cache, object, dir, next,
651 true,
David Howells182d9192015-02-19 23:47:31 +0000652 FSCACHE_OBJECT_IS_STALE);
David Howells9ae326a2009-04-03 16:42:41 +0100653 dput(next);
654 next = NULL;
655
656 if (ret < 0)
657 goto delete_error;
658
659 _debug("redo lookup");
David Howells182d9192015-02-19 23:47:31 +0000660 fscache_object_retrying_stale(&object->fscache);
David Howells9ae326a2009-04-03 16:42:41 +0100661 goto lookup_again;
662 }
663 }
664
665 /* note that we're now using this object */
David Howellsfee096d2009-11-19 18:12:05 +0000666 ret = cachefiles_mark_object_active(cache, object);
David Howells9ae326a2009-04-03 16:42:41 +0100667
Al Viro59551022016-01-22 15:40:57 -0500668 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100669 dput(dir);
670 dir = NULL;
671
David Howellsfee096d2009-11-19 18:12:05 +0000672 if (ret == -ETIMEDOUT)
673 goto mark_active_timed_out;
674
David Howells9ae326a2009-04-03 16:42:41 +0100675 _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 Viro68ac1232012-03-15 08:21:57 -0400687 path.dentry = next;
688 touch_atime(&path);
David Howells9ae326a2009-04-03 16:42:41 +0100689 }
690
691 /* open a file interface onto a data file */
692 if (object->type != FSCACHE_COOKIE_TYPE_INDEX) {
David Howellse36cb0b2015-01-29 12:02:35 +0000693 if (d_is_reg(object->dentry)) {
David Howells9ae326a2009-04-03 16:42:41 +0100694 const struct address_space_operations *aops;
695
696 ret = -EPERM;
David Howells466b77b2015-03-17 22:26:21 +0000697 aops = d_backing_inode(object->dentry)->i_mapping->a_ops;
David Howells9ae326a2009-04-03 16:42:41 +0100698 if (!aops->bmap)
699 goto check_error;
NeilBrown95201a42015-11-04 15:20:34 +0000700 if (object->dentry->d_sb->s_blocksize > PAGE_SIZE)
701 goto check_error;
David Howells9ae326a2009-04-03 16:42:41 +0100702
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 Howells466b77b2015-03-17 22:26:21 +0000712 _leave(" = 0 [%lu]", d_backing_inode(object->dentry)->i_ino);
David Howells9ae326a2009-04-03 16:42:41 +0100713 return 0;
714
David Howells182d9192015-02-19 23:47:31 +0000715no_space_error:
716 fscache_object_mark_killed(&object->fscache, FSCACHE_OBJECT_NO_SPACE);
David Howells9ae326a2009-04-03 16:42:41 +0100717create_error:
718 _debug("create error %d", ret);
719 if (ret == -EIO)
720 cachefiles_io_error(cache, "Create/mkdir failed");
721 goto error;
722
David Howellsfee096d2009-11-19 18:12:05 +0000723mark_active_timed_out:
724 _debug("mark active timed out");
725 goto release_dentry;
726
David Howells9ae326a2009-04-03 16:42:41 +0100727check_error:
728 _debug("check error %d", ret);
David Howellsa8181012016-08-09 17:41:16 +0100729 cachefiles_mark_object_inactive(
730 cache, object, d_backing_inode(object->dentry)->i_blocks);
David Howellsfee096d2009-11-19 18:12:05 +0000731release_dentry:
David Howells9ae326a2009-04-03 16:42:41 +0100732 dput(object->dentry);
733 object->dentry = NULL;
734 goto error_out;
735
736delete_error:
737 _debug("delete error %d", ret);
738 goto error_out2;
739
740lookup_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;
746error:
Al Viro59551022016-01-22 15:40:57 -0500747 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100748 dput(next);
749error_out2:
750 dput(dir);
751error_out:
David Howells9ae326a2009-04-03 16:42:41 +0100752 _leave(" = error %d", -ret);
753 return ret;
754}
755
756/*
757 * get a subdirectory
758 */
759struct 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 Howells82140442010-12-24 14:48:35 +0000765 struct path path;
David Howells9ae326a2009-04-03 16:42:41 +0100766 int ret;
767
768 _enter(",,%s", dirname);
769
770 /* search the current directory for the element name */
Al Viro59551022016-01-22 15:40:57 -0500771 inode_lock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100772
Al Viro9c3e9022018-05-10 22:59:45 -0400773retry:
David Howells9ae326a2009-04-03 16:42:41 +0100774 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 Howells466b77b2015-03-17 22:26:21 +0000784 subdir, d_backing_inode(subdir) ? "positive" : "negative");
David Howells9ae326a2009-04-03 16:42:41 +0100785
786 /* we need to create the subdir if it doesn't exist yet */
David Howells466b77b2015-03-17 22:26:21 +0000787 if (d_is_negative(subdir)) {
David Howells9ae326a2009-04-03 16:42:41 +0100788 ret = cachefiles_has_space(cache, 1, 0);
789 if (ret < 0)
790 goto mkdir_error;
791
792 _debug("attempt mkdir");
793
David Howells82140442010-12-24 14:48:35 +0000794 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 Howells5153bc82015-03-06 14:08:58 +0000799 ret = vfs_mkdir(d_inode(dir), subdir, 0700);
David Howells9ae326a2009-04-03 16:42:41 +0100800 if (ret < 0)
801 goto mkdir_error;
802
Al Viro9c3e9022018-05-10 22:59:45 -0400803 if (unlikely(d_unhashed(subdir))) {
804 dput(subdir);
805 goto retry;
806 }
David Howells466b77b2015-03-17 22:26:21 +0000807 ASSERT(d_backing_inode(subdir));
David Howells9ae326a2009-04-03 16:42:41 +0100808
809 _debug("mkdir -> %p{%p{ino=%lu}}",
810 subdir,
David Howells466b77b2015-03-17 22:26:21 +0000811 d_backing_inode(subdir),
812 d_backing_inode(subdir)->i_ino);
David Howells9ae326a2009-04-03 16:42:41 +0100813 }
814
Al Viro59551022016-01-22 15:40:57 -0500815 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100816
817 /* we need to make sure the subdir is a directory */
David Howells466b77b2015-03-17 22:26:21 +0000818 ASSERT(d_backing_inode(subdir));
David Howells9ae326a2009-04-03 16:42:41 +0100819
David Howellsce40fa72015-01-29 12:02:36 +0000820 if (!d_can_lookup(subdir)) {
Fabian Frederick6ff66ac2014-09-25 16:05:27 -0700821 pr_err("%s is not a directory\n", dirname);
David Howells9ae326a2009-04-03 16:42:41 +0100822 ret = -EIO;
823 goto check_error;
824 }
825
826 ret = -EPERM;
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200827 if (!(d_backing_inode(subdir)->i_opflags & IOP_XATTR) ||
David Howells466b77b2015-03-17 22:26:21 +0000828 !d_backing_inode(subdir)->i_op->lookup ||
829 !d_backing_inode(subdir)->i_op->mkdir ||
830 !d_backing_inode(subdir)->i_op->create ||
Miklos Szeredi2773bf02016-09-27 11:03:58 +0200831 !d_backing_inode(subdir)->i_op->rename ||
David Howells466b77b2015-03-17 22:26:21 +0000832 !d_backing_inode(subdir)->i_op->rmdir ||
833 !d_backing_inode(subdir)->i_op->unlink)
David Howells9ae326a2009-04-03 16:42:41 +0100834 goto check_error;
835
David Howells466b77b2015-03-17 22:26:21 +0000836 _leave(" = [%lu]", d_backing_inode(subdir)->i_ino);
David Howells9ae326a2009-04-03 16:42:41 +0100837 return subdir;
838
839check_error:
840 dput(subdir);
841 _leave(" = %d [check]", ret);
842 return ERR_PTR(ret);
843
844mkdir_error:
Al Viro59551022016-01-22 15:40:57 -0500845 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100846 dput(subdir);
Fabian Frederick6ff66ac2014-09-25 16:05:27 -0700847 pr_err("mkdir %s failed with error %d\n", dirname, ret);
David Howells9ae326a2009-04-03 16:42:41 +0100848 return ERR_PTR(ret);
849
850lookup_error:
Al Viro59551022016-01-22 15:40:57 -0500851 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100852 ret = PTR_ERR(subdir);
Fabian Frederick6ff66ac2014-09-25 16:05:27 -0700853 pr_err("Lookup %s failed with error %d\n", dirname, ret);
David Howells9ae326a2009-04-03 16:42:41 +0100854 return ERR_PTR(ret);
855
856nomem_d_alloc:
Al Viro59551022016-01-22 15:40:57 -0500857 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100858 _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 */
868static 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 Viroa4555892014-10-21 20:11:25 -0400878 //_enter(",%pd/,%s",
879 // dir, filename);
David Howells9ae326a2009-04-03 16:42:41 +0100880
881 /* look up the victim */
Al Viro59551022016-01-22 15:40:57 -0500882 inode_lock_nested(d_inode(dir), I_MUTEX_PARENT);
David Howells9ae326a2009-04-03 16:42:41 +0100883
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 Howells466b77b2015-03-17 22:26:21 +0000891 // victim, d_backing_inode(victim) ? "positive" : "negative");
David Howells9ae326a2009-04-03 16:42:41 +0100892
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 Howells466b77b2015-03-17 22:26:21 +0000896 if (d_is_negative(victim)) {
Al Viro59551022016-01-22 15:40:57 -0500897 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100898 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
924object_in_use:
925 read_unlock(&cache->active_lock);
Al Viro59551022016-01-22 15:40:57 -0500926 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100927 dput(victim);
928 //_leave(" = -EBUSY [in use]");
929 return ERR_PTR(-EBUSY);
930
931lookup_error:
Al Viro59551022016-01-22 15:40:57 -0500932 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100933 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 Frederick6ff66ac2014-09-25 16:05:27 -0700943 pr_err("Internal error: %d\n", ret);
David Howells9ae326a2009-04-03 16:42:41 +0100944 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 */
955int cachefiles_cull(struct cachefiles_cache *cache, struct dentry *dir,
956 char *filename)
957{
958 struct dentry *victim;
959 int ret;
960
Al Viroa4555892014-10-21 20:11:25 -0400961 _enter(",%pd/,%s", dir, filename);
David Howells9ae326a2009-04-03 16:42:41 +0100962
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 Howells466b77b2015-03-17 22:26:21 +0000968 victim, d_backing_inode(victim) ? "positive" : "negative");
David Howells9ae326a2009-04-03 16:42:41 +0100969
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 Howellsa18feb52018-04-04 13:41:27 +0100982 ret = cachefiles_bury_object(cache, NULL, dir, victim, false,
David Howells182d9192015-02-19 23:47:31 +0000983 FSCACHE_OBJECT_WAS_CULLED);
David Howells9ae326a2009-04-03 16:42:41 +0100984 if (ret < 0)
985 goto error;
986
987 dput(victim);
988 _leave(" = 0");
989 return 0;
990
991error_unlock:
Al Viro59551022016-01-22 15:40:57 -0500992 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100993error:
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 Frederick6ff66ac2014-09-25 16:05:27 -07001002 pr_err("Internal error: %d\n", ret);
David Howells9ae326a2009-04-03 16:42:41 +01001003 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 */
1015int cachefiles_check_in_use(struct cachefiles_cache *cache, struct dentry *dir,
1016 char *filename)
1017{
1018 struct dentry *victim;
1019
Al Viroa4555892014-10-21 20:11:25 -04001020 //_enter(",%pd/,%s",
1021 // dir, filename);
David Howells9ae326a2009-04-03 16:42:41 +01001022
1023 victim = cachefiles_check_active(cache, dir, filename);
1024 if (IS_ERR(victim))
1025 return PTR_ERR(victim);
1026
Al Viro59551022016-01-22 15:40:57 -05001027 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +01001028 dput(victim);
1029 //_leave(" = 0");
1030 return 0;
1031}