blob: 9828850d88de29bf748f1fc15c368fb2a47cdea0 [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>
David Howells9ae326a2009-04-03 16:42:41 +010023#include "internal.h"
24
David Howellsd0e27b72009-11-19 18:12:02 +000025#define CACHEFILES_KEYBUF_SIZE 512
26
27/*
28 * dump debugging info about an object
29 */
30static noinline
31void __cachefiles_printk_object(struct cachefiles_object *object,
32 const char *prefix,
33 u8 *keybuf)
34{
35 struct fscache_cookie *cookie;
36 unsigned keylen, loop;
37
Fabian Frederick4e1eb882014-06-06 14:37:32 -070038 pr_err("%sobject: OBJ%x\n", prefix, object->fscache.debug_id);
39 pr_err("%sobjstate=%s fl=%lx wbusy=%x ev=%lx[%lx]\n",
David Howellscaaef692013-05-10 19:50:26 +010040 prefix, object->fscache.state->name,
Tejun Heo8b8edef2010-07-20 22:09:01 +020041 object->fscache.flags, work_busy(&object->fscache.work),
David Howellsc2d35bf2012-12-05 13:34:47 +000042 object->fscache.events, object->fscache.event_mask);
Fabian Frederick4e1eb882014-06-06 14:37:32 -070043 pr_err("%sops=%u inp=%u exc=%u\n",
David Howellsd0e27b72009-11-19 18:12:02 +000044 prefix, object->fscache.n_ops, object->fscache.n_in_progress,
45 object->fscache.n_exclusive);
Fabian Frederick4e1eb882014-06-06 14:37:32 -070046 pr_err("%sparent=%p\n",
David Howellsd0e27b72009-11-19 18:12:02 +000047 prefix, object->fscache.parent);
48
49 spin_lock(&object->fscache.lock);
50 cookie = object->fscache.cookie;
51 if (cookie) {
Fabian Frederick4e1eb882014-06-06 14:37:32 -070052 pr_err("%scookie=%p [pr=%p nd=%p fl=%lx]\n",
David Howellsd0e27b72009-11-19 18:12:02 +000053 prefix,
54 object->fscache.cookie,
55 object->fscache.cookie->parent,
56 object->fscache.cookie->netfs_data,
57 object->fscache.cookie->flags);
David Howells509bf242013-09-20 14:18:00 +010058 if (keybuf && cookie->def)
David Howellsd0e27b72009-11-19 18:12:02 +000059 keylen = cookie->def->get_key(cookie->netfs_data, keybuf,
60 CACHEFILES_KEYBUF_SIZE);
61 else
62 keylen = 0;
63 } else {
Fabian Frederick4e1eb882014-06-06 14:37:32 -070064 pr_err("%scookie=NULL\n", prefix);
David Howellsd0e27b72009-11-19 18:12:02 +000065 keylen = 0;
66 }
67 spin_unlock(&object->fscache.lock);
68
69 if (keylen) {
Fabian Frederick4e1eb882014-06-06 14:37:32 -070070 pr_err("%skey=[%u] '", prefix, keylen);
David Howellsd0e27b72009-11-19 18:12:02 +000071 for (loop = 0; loop < keylen; loop++)
Fabian Frederick4e1eb882014-06-06 14:37:32 -070072 pr_cont("%02x", keybuf[loop]);
73 pr_cont("'\n");
David Howellsd0e27b72009-11-19 18:12:02 +000074 }
75}
76
77/*
78 * dump debugging info about a pair of objects
79 */
80static noinline void cachefiles_printk_object(struct cachefiles_object *object,
81 struct cachefiles_object *xobject)
82{
83 u8 *keybuf;
84
85 keybuf = kmalloc(CACHEFILES_KEYBUF_SIZE, GFP_NOIO);
86 if (object)
87 __cachefiles_printk_object(object, "", keybuf);
88 if (xobject)
89 __cachefiles_printk_object(xobject, "x", keybuf);
90 kfree(keybuf);
91}
92
David Howells9ae326a2009-04-03 16:42:41 +010093/*
David Howellsc61ea312010-05-11 16:51:39 +010094 * mark the owner of a dentry, if there is one, to indicate that that dentry
95 * has been preemptively deleted
96 * - the caller must hold the i_mutex on the dentry's parent as required to
97 * call vfs_unlink(), vfs_rmdir() or vfs_rename()
98 */
99static void cachefiles_mark_object_buried(struct cachefiles_cache *cache,
David Howells182d9192015-02-19 23:47:31 +0000100 struct dentry *dentry,
101 enum fscache_why_object_killed why)
David Howellsc61ea312010-05-11 16:51:39 +0100102{
103 struct cachefiles_object *object;
104 struct rb_node *p;
105
Al Viroa4555892014-10-21 20:11:25 -0400106 _enter(",'%pd'", dentry);
David Howellsc61ea312010-05-11 16:51:39 +0100107
108 write_lock(&cache->active_lock);
109
110 p = cache->active_nodes.rb_node;
111 while (p) {
112 object = rb_entry(p, struct cachefiles_object, active_node);
113 if (object->dentry > dentry)
114 p = p->rb_left;
115 else if (object->dentry < dentry)
116 p = p->rb_right;
117 else
118 goto found_dentry;
119 }
120
121 write_unlock(&cache->active_lock);
122 _leave(" [no owner]");
123 return;
124
125 /* found the dentry for */
126found_dentry:
127 kdebug("preemptive burial: OBJ%x [%s] %p",
128 object->fscache.debug_id,
David Howellscaaef692013-05-10 19:50:26 +0100129 object->fscache.state->name,
David Howellsc61ea312010-05-11 16:51:39 +0100130 dentry);
131
David Howells493f7bc2013-05-10 19:50:26 +0100132 if (fscache_object_is_live(&object->fscache)) {
Fabian Frederick4e1eb882014-06-06 14:37:32 -0700133 pr_err("\n");
Fabian Frederick0227d6ab2014-06-06 14:37:33 -0700134 pr_err("Error: Can't preemptively bury live object\n");
David Howellsc61ea312010-05-11 16:51:39 +0100135 cachefiles_printk_object(object, NULL);
David Howells182d9192015-02-19 23:47:31 +0000136 } else {
137 if (why != FSCACHE_OBJECT_IS_STALE)
138 fscache_object_mark_killed(&object->fscache, why);
David Howellsc61ea312010-05-11 16:51:39 +0100139 }
140
141 write_unlock(&cache->active_lock);
142 _leave(" [owner marked]");
143}
144
145/*
David Howells9ae326a2009-04-03 16:42:41 +0100146 * record the fact that an object is now active
147 */
David Howellsfee096d2009-11-19 18:12:05 +0000148static int cachefiles_mark_object_active(struct cachefiles_cache *cache,
149 struct cachefiles_object *object)
David Howells9ae326a2009-04-03 16:42:41 +0100150{
151 struct cachefiles_object *xobject;
152 struct rb_node **_p, *_parent = NULL;
153 struct dentry *dentry;
154
155 _enter(",%p", object);
156
157try_again:
158 write_lock(&cache->active_lock);
159
David Howellsd0e27b72009-11-19 18:12:02 +0000160 if (test_and_set_bit(CACHEFILES_OBJECT_ACTIVE, &object->flags)) {
Fabian Frederick0227d6ab2014-06-06 14:37:33 -0700161 pr_err("Error: Object already active\n");
David Howellsd0e27b72009-11-19 18:12:02 +0000162 cachefiles_printk_object(object, NULL);
David Howells9ae326a2009-04-03 16:42:41 +0100163 BUG();
David Howellsd0e27b72009-11-19 18:12:02 +0000164 }
David Howells9ae326a2009-04-03 16:42:41 +0100165
166 dentry = object->dentry;
167 _p = &cache->active_nodes.rb_node;
168 while (*_p) {
169 _parent = *_p;
170 xobject = rb_entry(_parent,
171 struct cachefiles_object, active_node);
172
173 ASSERT(xobject != object);
174
175 if (xobject->dentry > dentry)
176 _p = &(*_p)->rb_left;
177 else if (xobject->dentry < dentry)
178 _p = &(*_p)->rb_right;
179 else
180 goto wait_for_old_object;
181 }
182
183 rb_link_node(&object->active_node, _parent, _p);
184 rb_insert_color(&object->active_node, &cache->active_nodes);
185
186 write_unlock(&cache->active_lock);
David Howellsfee096d2009-11-19 18:12:05 +0000187 _leave(" = 0");
188 return 0;
David Howells9ae326a2009-04-03 16:42:41 +0100189
190 /* an old object from a previous incarnation is hogging the slot - we
191 * need to wait for it to be destroyed */
192wait_for_old_object:
David Howellsa30efe22014-09-30 14:50:30 +0100193 if (fscache_object_is_live(&xobject->fscache)) {
Fabian Frederick4e1eb882014-06-06 14:37:32 -0700194 pr_err("\n");
Fabian Frederick0227d6ab2014-06-06 14:37:33 -0700195 pr_err("Error: Unexpected object collision\n");
David Howellsd0e27b72009-11-19 18:12:02 +0000196 cachefiles_printk_object(object, xobject);
David Howells9ae326a2009-04-03 16:42:41 +0100197 BUG();
198 }
199 atomic_inc(&xobject->usage);
200 write_unlock(&cache->active_lock);
201
David Howellsfee096d2009-11-19 18:12:05 +0000202 if (test_bit(CACHEFILES_OBJECT_ACTIVE, &xobject->flags)) {
203 wait_queue_head_t *wq;
204
205 signed long timeout = 60 * HZ;
206 wait_queue_t wait;
207 bool requeue;
208
209 /* if the object we're waiting for is queued for processing,
210 * then just put ourselves on the queue behind it */
Tejun Heo8b8edef2010-07-20 22:09:01 +0200211 if (work_pending(&xobject->fscache.work)) {
David Howellsfee096d2009-11-19 18:12:05 +0000212 _debug("queue OBJ%x behind OBJ%x immediately",
213 object->fscache.debug_id,
214 xobject->fscache.debug_id);
215 goto requeue;
216 }
217
218 /* otherwise we sleep until either the object we're waiting for
Tejun Heo8b8edef2010-07-20 22:09:01 +0200219 * is done, or the fscache_object is congested */
David Howellsfee096d2009-11-19 18:12:05 +0000220 wq = bit_waitqueue(&xobject->flags, CACHEFILES_OBJECT_ACTIVE);
221 init_wait(&wait);
222 requeue = false;
223 do {
224 prepare_to_wait(wq, &wait, TASK_UNINTERRUPTIBLE);
225 if (!test_bit(CACHEFILES_OBJECT_ACTIVE, &xobject->flags))
226 break;
Tejun Heo8b8edef2010-07-20 22:09:01 +0200227
228 requeue = fscache_object_sleep_till_congested(&timeout);
David Howellsfee096d2009-11-19 18:12:05 +0000229 } while (timeout > 0 && !requeue);
230 finish_wait(wq, &wait);
231
232 if (requeue &&
233 test_bit(CACHEFILES_OBJECT_ACTIVE, &xobject->flags)) {
234 _debug("queue OBJ%x behind OBJ%x after wait",
235 object->fscache.debug_id,
236 xobject->fscache.debug_id);
237 goto requeue;
238 }
239
240 if (timeout <= 0) {
Fabian Frederick4e1eb882014-06-06 14:37:32 -0700241 pr_err("\n");
Fabian Frederick0227d6ab2014-06-06 14:37:33 -0700242 pr_err("Error: Overlong wait for old active object to go away\n");
David Howellsfee096d2009-11-19 18:12:05 +0000243 cachefiles_printk_object(object, xobject);
244 goto requeue;
245 }
246 }
247
248 ASSERT(!test_bit(CACHEFILES_OBJECT_ACTIVE, &xobject->flags));
David Howells9ae326a2009-04-03 16:42:41 +0100249
250 cache->cache.ops->put_object(&xobject->fscache);
251 goto try_again;
David Howellsfee096d2009-11-19 18:12:05 +0000252
253requeue:
254 clear_bit(CACHEFILES_OBJECT_ACTIVE, &object->flags);
255 cache->cache.ops->put_object(&xobject->fscache);
256 _leave(" = -ETIMEDOUT");
257 return -ETIMEDOUT;
David Howells9ae326a2009-04-03 16:42:41 +0100258}
259
260/*
David Howellsa5b3a802016-02-01 16:43:04 +0000261 * Mark an object as being inactive.
262 */
263void cachefiles_mark_object_inactive(struct cachefiles_cache *cache,
264 struct cachefiles_object *object)
265{
David Howellsdb20a892016-08-03 17:57:39 +0100266 blkcnt_t i_blocks = d_backing_inode(object->dentry)->i_blocks;
267
David Howellsa5b3a802016-02-01 16:43:04 +0000268 write_lock(&cache->active_lock);
269 rb_erase(&object->active_node, &cache->active_nodes);
270 clear_bit(CACHEFILES_OBJECT_ACTIVE, &object->flags);
271 write_unlock(&cache->active_lock);
272
273 wake_up_bit(&object->flags, CACHEFILES_OBJECT_ACTIVE);
274
275 /* This object can now be culled, so we need to let the daemon know
276 * that there is something it can remove if it needs to.
277 */
David Howellsdb20a892016-08-03 17:57:39 +0100278 atomic_long_add(i_blocks, &cache->b_released);
David Howellsa5b3a802016-02-01 16:43:04 +0000279 if (atomic_inc_return(&cache->f_released))
280 cachefiles_state_changed(cache);
281}
282
283/*
David Howells9ae326a2009-04-03 16:42:41 +0100284 * delete an object representation from the cache
285 * - file backed objects are unlinked
286 * - directory backed objects are stuffed into the graveyard for userspace to
287 * delete
288 * - unlocks the directory mutex
289 */
290static int cachefiles_bury_object(struct cachefiles_cache *cache,
291 struct dentry *dir,
David Howellsc61ea312010-05-11 16:51:39 +0100292 struct dentry *rep,
David Howells182d9192015-02-19 23:47:31 +0000293 bool preemptive,
294 enum fscache_why_object_killed why)
David Howells9ae326a2009-04-03 16:42:41 +0100295{
296 struct dentry *grave, *trap;
David Howells82140442010-12-24 14:48:35 +0000297 struct path path, path_to_graveyard;
David Howells9ae326a2009-04-03 16:42:41 +0100298 char nbuffer[8 + 8 + 1];
299 int ret;
300
Al Viroa4555892014-10-21 20:11:25 -0400301 _enter(",'%pd','%pd'", dir, rep);
David Howells9ae326a2009-04-03 16:42:41 +0100302
David Howellsc61ea312010-05-11 16:51:39 +0100303 _debug("remove %p from %p", rep, dir);
304
David Howells9ae326a2009-04-03 16:42:41 +0100305 /* non-directories can just be unlinked */
David Howellse36cb0b2015-01-29 12:02:35 +0000306 if (!d_is_dir(rep)) {
David Howells9ae326a2009-04-03 16:42:41 +0100307 _debug("unlink stale object");
David Howells9ae326a2009-04-03 16:42:41 +0100308
David Howells82140442010-12-24 14:48:35 +0000309 path.mnt = cache->mnt;
310 path.dentry = dir;
311 ret = security_path_unlink(&path, rep);
312 if (ret < 0) {
313 cachefiles_io_error(cache, "Unlink security error");
314 } else {
David Howells5153bc82015-03-06 14:08:58 +0000315 ret = vfs_unlink(d_inode(dir), rep, 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",
337 (uint32_t) get_seconds(),
338 (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 */
344 if (rep->d_parent != dir) {
345 /* 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 {
David Howells5153bc82015-03-06 14:08:58 +0000416 ret = vfs_rename(d_inode(dir), rep,
417 d_inode(cache->graveyard), grave, NULL, 0);
David Howells82140442010-12-24 14:48:35 +0000418 if (ret != 0 && ret != -ENOMEM)
419 cachefiles_io_error(cache,
420 "Rename failed with error %d", ret);
David Howells9ae326a2009-04-03 16:42:41 +0100421
David Howells82140442010-12-24 14:48:35 +0000422 if (preemptive)
David Howells182d9192015-02-19 23:47:31 +0000423 cachefiles_mark_object_buried(cache, rep, why);
David Howells82140442010-12-24 14:48:35 +0000424 }
David Howellsc61ea312010-05-11 16:51:39 +0100425
David Howells9ae326a2009-04-03 16:42:41 +0100426 unlock_rename(cache->graveyard, dir);
427 dput(grave);
428 _leave(" = 0");
429 return 0;
430}
431
432/*
433 * delete an object representation from the cache
434 */
435int cachefiles_delete_object(struct cachefiles_cache *cache,
436 struct cachefiles_object *object)
437{
438 struct dentry *dir;
439 int ret;
440
David Howellsc61ea312010-05-11 16:51:39 +0100441 _enter(",OBJ%x{%p}", object->fscache.debug_id, object->dentry);
David Howells9ae326a2009-04-03 16:42:41 +0100442
443 ASSERT(object->dentry);
David Howells466b77b2015-03-17 22:26:21 +0000444 ASSERT(d_backing_inode(object->dentry));
David Howells9ae326a2009-04-03 16:42:41 +0100445 ASSERT(object->dentry->d_parent);
446
447 dir = dget_parent(object->dentry);
448
Al Viro59551022016-01-22 15:40:57 -0500449 inode_lock_nested(d_inode(dir), I_MUTEX_PARENT);
David Howells8f9941a2010-02-19 18:14:21 +0000450
David Howells182d9192015-02-19 23:47:31 +0000451 if (test_bit(FSCACHE_OBJECT_KILLED_BY_CACHE, &object->fscache.flags)) {
David Howellsc61ea312010-05-11 16:51:39 +0100452 /* object allocation for the same key preemptively deleted this
453 * object's file so that it could create its own file */
454 _debug("object preemptively buried");
Al Viro59551022016-01-22 15:40:57 -0500455 inode_unlock(d_inode(dir));
David Howells8f9941a2010-02-19 18:14:21 +0000456 ret = 0;
David Howellsc61ea312010-05-11 16:51:39 +0100457 } else {
458 /* we need to check that our parent is _still_ our parent - it
459 * may have been renamed */
460 if (dir == object->dentry->d_parent) {
461 ret = cachefiles_bury_object(cache, dir,
David Howells182d9192015-02-19 23:47:31 +0000462 object->dentry, false,
463 FSCACHE_OBJECT_WAS_RETIRED);
David Howellsc61ea312010-05-11 16:51:39 +0100464 } else {
465 /* it got moved, presumably by cachefilesd culling it,
466 * so it's no longer in the key path and we can ignore
467 * it */
Al Viro59551022016-01-22 15:40:57 -0500468 inode_unlock(d_inode(dir));
David Howellsc61ea312010-05-11 16:51:39 +0100469 ret = 0;
470 }
David Howells8f9941a2010-02-19 18:14:21 +0000471 }
David Howells9ae326a2009-04-03 16:42:41 +0100472
473 dput(dir);
474 _leave(" = %d", ret);
475 return ret;
476}
477
478/*
479 * walk from the parent object to the child object through the backing
480 * filesystem, creating directories as we go
481 */
482int cachefiles_walk_to_object(struct cachefiles_object *parent,
483 struct cachefiles_object *object,
484 const char *key,
485 struct cachefiles_xattr *auxdata)
486{
487 struct cachefiles_cache *cache;
488 struct dentry *dir, *next = NULL;
David Howells82140442010-12-24 14:48:35 +0000489 struct path path;
David Howells9ae326a2009-04-03 16:42:41 +0100490 unsigned long start;
491 const char *name;
492 int ret, nlen;
493
David Howellsc61ea312010-05-11 16:51:39 +0100494 _enter("OBJ%x{%p},OBJ%x,%s,",
495 parent->fscache.debug_id, parent->dentry,
496 object->fscache.debug_id, key);
David Howells9ae326a2009-04-03 16:42:41 +0100497
498 cache = container_of(parent->fscache.cache,
499 struct cachefiles_cache, cache);
David Howells82140442010-12-24 14:48:35 +0000500 path.mnt = cache->mnt;
David Howells9ae326a2009-04-03 16:42:41 +0100501
502 ASSERT(parent->dentry);
David Howells466b77b2015-03-17 22:26:21 +0000503 ASSERT(d_backing_inode(parent->dentry));
David Howells9ae326a2009-04-03 16:42:41 +0100504
David Howellse36cb0b2015-01-29 12:02:35 +0000505 if (!(d_is_dir(parent->dentry))) {
David Howells9ae326a2009-04-03 16:42:41 +0100506 // TODO: convert file to dir
507 _leave("looking up in none directory");
508 return -ENOBUFS;
509 }
510
511 dir = dget(parent->dentry);
512
513advance:
514 /* attempt to transit the first directory component */
515 name = key;
516 nlen = strlen(key);
517
518 /* key ends in a double NUL */
519 key = key + nlen + 1;
520 if (!*key)
521 key = NULL;
522
523lookup_again:
524 /* search the current directory for the element name */
525 _debug("lookup '%s'", name);
526
Al Viro59551022016-01-22 15:40:57 -0500527 inode_lock_nested(d_inode(dir), I_MUTEX_PARENT);
David Howells9ae326a2009-04-03 16:42:41 +0100528
529 start = jiffies;
530 next = lookup_one_len(name, dir, nlen);
531 cachefiles_hist(cachefiles_lookup_histogram, start);
532 if (IS_ERR(next))
533 goto lookup_error;
534
David Howells466b77b2015-03-17 22:26:21 +0000535 _debug("next -> %p %s", next, d_backing_inode(next) ? "positive" : "negative");
David Howells9ae326a2009-04-03 16:42:41 +0100536
537 if (!key)
David Howells466b77b2015-03-17 22:26:21 +0000538 object->new = !d_backing_inode(next);
David Howells9ae326a2009-04-03 16:42:41 +0100539
540 /* if this element of the path doesn't exist, then the lookup phase
541 * failed, and we can release any readers in the certain knowledge that
542 * there's nothing for them to actually read */
David Howells466b77b2015-03-17 22:26:21 +0000543 if (d_is_negative(next))
David Howells9ae326a2009-04-03 16:42:41 +0100544 fscache_object_lookup_negative(&object->fscache);
545
546 /* we need to create the object if it's negative */
547 if (key || object->type == FSCACHE_COOKIE_TYPE_INDEX) {
548 /* index objects and intervening tree levels must be subdirs */
David Howells466b77b2015-03-17 22:26:21 +0000549 if (d_is_negative(next)) {
David Howells9ae326a2009-04-03 16:42:41 +0100550 ret = cachefiles_has_space(cache, 1, 0);
551 if (ret < 0)
David Howells182d9192015-02-19 23:47:31 +0000552 goto no_space_error;
David Howells9ae326a2009-04-03 16:42:41 +0100553
David Howells82140442010-12-24 14:48:35 +0000554 path.dentry = dir;
555 ret = security_path_mkdir(&path, next, 0);
556 if (ret < 0)
557 goto create_error;
David Howells9ae326a2009-04-03 16:42:41 +0100558 start = jiffies;
David Howells5153bc82015-03-06 14:08:58 +0000559 ret = vfs_mkdir(d_inode(dir), next, 0);
David Howells9ae326a2009-04-03 16:42:41 +0100560 cachefiles_hist(cachefiles_mkdir_histogram, start);
561 if (ret < 0)
562 goto create_error;
563
David Howells466b77b2015-03-17 22:26:21 +0000564 ASSERT(d_backing_inode(next));
David Howells9ae326a2009-04-03 16:42:41 +0100565
566 _debug("mkdir -> %p{%p{ino=%lu}}",
David Howells466b77b2015-03-17 22:26:21 +0000567 next, d_backing_inode(next), d_backing_inode(next)->i_ino);
David Howells9ae326a2009-04-03 16:42:41 +0100568
David Howellsce40fa72015-01-29 12:02:36 +0000569 } else if (!d_can_lookup(next)) {
Fabian Frederick6ff66ac2014-09-25 16:05:27 -0700570 pr_err("inode %lu is not a directory\n",
David Howells466b77b2015-03-17 22:26:21 +0000571 d_backing_inode(next)->i_ino);
David Howells9ae326a2009-04-03 16:42:41 +0100572 ret = -ENOBUFS;
573 goto error;
574 }
575
576 } else {
577 /* non-index objects start out life as files */
David Howells466b77b2015-03-17 22:26:21 +0000578 if (d_is_negative(next)) {
David Howells9ae326a2009-04-03 16:42:41 +0100579 ret = cachefiles_has_space(cache, 1, 0);
580 if (ret < 0)
David Howells182d9192015-02-19 23:47:31 +0000581 goto no_space_error;
David Howells9ae326a2009-04-03 16:42:41 +0100582
David Howells82140442010-12-24 14:48:35 +0000583 path.dentry = dir;
584 ret = security_path_mknod(&path, next, S_IFREG, 0);
585 if (ret < 0)
586 goto create_error;
David Howells9ae326a2009-04-03 16:42:41 +0100587 start = jiffies;
David Howells5153bc82015-03-06 14:08:58 +0000588 ret = vfs_create(d_inode(dir), next, S_IFREG, true);
David Howells9ae326a2009-04-03 16:42:41 +0100589 cachefiles_hist(cachefiles_create_histogram, start);
590 if (ret < 0)
591 goto create_error;
592
David Howells466b77b2015-03-17 22:26:21 +0000593 ASSERT(d_backing_inode(next));
David Howells9ae326a2009-04-03 16:42:41 +0100594
595 _debug("create -> %p{%p{ino=%lu}}",
David Howells466b77b2015-03-17 22:26:21 +0000596 next, d_backing_inode(next), d_backing_inode(next)->i_ino);
David Howells9ae326a2009-04-03 16:42:41 +0100597
David Howellsce40fa72015-01-29 12:02:36 +0000598 } else if (!d_can_lookup(next) &&
David Howellse36cb0b2015-01-29 12:02:35 +0000599 !d_is_reg(next)
David Howells9ae326a2009-04-03 16:42:41 +0100600 ) {
Fabian Frederick6ff66ac2014-09-25 16:05:27 -0700601 pr_err("inode %lu is not a file or directory\n",
David Howells466b77b2015-03-17 22:26:21 +0000602 d_backing_inode(next)->i_ino);
David Howells9ae326a2009-04-03 16:42:41 +0100603 ret = -ENOBUFS;
604 goto error;
605 }
606 }
607
608 /* process the next component */
609 if (key) {
610 _debug("advance");
Al Viro59551022016-01-22 15:40:57 -0500611 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100612 dput(dir);
613 dir = next;
614 next = NULL;
615 goto advance;
616 }
617
618 /* we've found the object we were looking for */
619 object->dentry = next;
620
621 /* if we've found that the terminal object exists, then we need to
622 * check its attributes and delete it if it's out of date */
623 if (!object->new) {
Al Viroa4555892014-10-21 20:11:25 -0400624 _debug("validate '%pd'", next);
David Howells9ae326a2009-04-03 16:42:41 +0100625
626 ret = cachefiles_check_object_xattr(object, auxdata);
627 if (ret == -ESTALE) {
628 /* delete the object (the deleter drops the directory
629 * mutex) */
630 object->dentry = NULL;
631
David Howells182d9192015-02-19 23:47:31 +0000632 ret = cachefiles_bury_object(cache, dir, next, true,
633 FSCACHE_OBJECT_IS_STALE);
David Howells9ae326a2009-04-03 16:42:41 +0100634 dput(next);
635 next = NULL;
636
637 if (ret < 0)
638 goto delete_error;
639
640 _debug("redo lookup");
David Howells182d9192015-02-19 23:47:31 +0000641 fscache_object_retrying_stale(&object->fscache);
David Howells9ae326a2009-04-03 16:42:41 +0100642 goto lookup_again;
643 }
644 }
645
646 /* note that we're now using this object */
David Howellsfee096d2009-11-19 18:12:05 +0000647 ret = cachefiles_mark_object_active(cache, object);
David Howells9ae326a2009-04-03 16:42:41 +0100648
Al Viro59551022016-01-22 15:40:57 -0500649 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100650 dput(dir);
651 dir = NULL;
652
David Howellsfee096d2009-11-19 18:12:05 +0000653 if (ret == -ETIMEDOUT)
654 goto mark_active_timed_out;
655
David Howells9ae326a2009-04-03 16:42:41 +0100656 _debug("=== OBTAINED_OBJECT ===");
657
658 if (object->new) {
659 /* attach data to a newly constructed terminal object */
660 ret = cachefiles_set_object_xattr(object, auxdata);
661 if (ret < 0)
662 goto check_error;
663 } else {
664 /* always update the atime on an object we've just looked up
665 * (this is used to keep track of culling, and atimes are only
666 * updated by read, write and readdir but not lookup or
667 * open) */
Al Viro68ac1232012-03-15 08:21:57 -0400668 path.dentry = next;
669 touch_atime(&path);
David Howells9ae326a2009-04-03 16:42:41 +0100670 }
671
672 /* open a file interface onto a data file */
673 if (object->type != FSCACHE_COOKIE_TYPE_INDEX) {
David Howellse36cb0b2015-01-29 12:02:35 +0000674 if (d_is_reg(object->dentry)) {
David Howells9ae326a2009-04-03 16:42:41 +0100675 const struct address_space_operations *aops;
676
677 ret = -EPERM;
David Howells466b77b2015-03-17 22:26:21 +0000678 aops = d_backing_inode(object->dentry)->i_mapping->a_ops;
David Howells9ae326a2009-04-03 16:42:41 +0100679 if (!aops->bmap)
680 goto check_error;
NeilBrown95201a42015-11-04 15:20:34 +0000681 if (object->dentry->d_sb->s_blocksize > PAGE_SIZE)
682 goto check_error;
David Howells9ae326a2009-04-03 16:42:41 +0100683
684 object->backer = object->dentry;
685 } else {
686 BUG(); // TODO: open file in data-class subdir
687 }
688 }
689
690 object->new = 0;
691 fscache_obtained_object(&object->fscache);
692
David Howells466b77b2015-03-17 22:26:21 +0000693 _leave(" = 0 [%lu]", d_backing_inode(object->dentry)->i_ino);
David Howells9ae326a2009-04-03 16:42:41 +0100694 return 0;
695
David Howells182d9192015-02-19 23:47:31 +0000696no_space_error:
697 fscache_object_mark_killed(&object->fscache, FSCACHE_OBJECT_NO_SPACE);
David Howells9ae326a2009-04-03 16:42:41 +0100698create_error:
699 _debug("create error %d", ret);
700 if (ret == -EIO)
701 cachefiles_io_error(cache, "Create/mkdir failed");
702 goto error;
703
David Howellsfee096d2009-11-19 18:12:05 +0000704mark_active_timed_out:
705 _debug("mark active timed out");
706 goto release_dentry;
707
David Howells9ae326a2009-04-03 16:42:41 +0100708check_error:
709 _debug("check error %d", ret);
David Howellsa5b3a802016-02-01 16:43:04 +0000710 cachefiles_mark_object_inactive(cache, object);
David Howellsfee096d2009-11-19 18:12:05 +0000711release_dentry:
David Howells9ae326a2009-04-03 16:42:41 +0100712 dput(object->dentry);
713 object->dentry = NULL;
714 goto error_out;
715
716delete_error:
717 _debug("delete error %d", ret);
718 goto error_out2;
719
720lookup_error:
721 _debug("lookup error %ld", PTR_ERR(next));
722 ret = PTR_ERR(next);
723 if (ret == -EIO)
724 cachefiles_io_error(cache, "Lookup failed");
725 next = NULL;
726error:
Al Viro59551022016-01-22 15:40:57 -0500727 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100728 dput(next);
729error_out2:
730 dput(dir);
731error_out:
David Howells9ae326a2009-04-03 16:42:41 +0100732 _leave(" = error %d", -ret);
733 return ret;
734}
735
736/*
737 * get a subdirectory
738 */
739struct dentry *cachefiles_get_directory(struct cachefiles_cache *cache,
740 struct dentry *dir,
741 const char *dirname)
742{
743 struct dentry *subdir;
744 unsigned long start;
David Howells82140442010-12-24 14:48:35 +0000745 struct path path;
David Howells9ae326a2009-04-03 16:42:41 +0100746 int ret;
747
748 _enter(",,%s", dirname);
749
750 /* search the current directory for the element name */
Al Viro59551022016-01-22 15:40:57 -0500751 inode_lock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100752
753 start = jiffies;
754 subdir = lookup_one_len(dirname, dir, strlen(dirname));
755 cachefiles_hist(cachefiles_lookup_histogram, start);
756 if (IS_ERR(subdir)) {
757 if (PTR_ERR(subdir) == -ENOMEM)
758 goto nomem_d_alloc;
759 goto lookup_error;
760 }
761
762 _debug("subdir -> %p %s",
David Howells466b77b2015-03-17 22:26:21 +0000763 subdir, d_backing_inode(subdir) ? "positive" : "negative");
David Howells9ae326a2009-04-03 16:42:41 +0100764
765 /* we need to create the subdir if it doesn't exist yet */
David Howells466b77b2015-03-17 22:26:21 +0000766 if (d_is_negative(subdir)) {
David Howells9ae326a2009-04-03 16:42:41 +0100767 ret = cachefiles_has_space(cache, 1, 0);
768 if (ret < 0)
769 goto mkdir_error;
770
771 _debug("attempt mkdir");
772
David Howells82140442010-12-24 14:48:35 +0000773 path.mnt = cache->mnt;
774 path.dentry = dir;
775 ret = security_path_mkdir(&path, subdir, 0700);
776 if (ret < 0)
777 goto mkdir_error;
David Howells5153bc82015-03-06 14:08:58 +0000778 ret = vfs_mkdir(d_inode(dir), subdir, 0700);
David Howells9ae326a2009-04-03 16:42:41 +0100779 if (ret < 0)
780 goto mkdir_error;
781
David Howells466b77b2015-03-17 22:26:21 +0000782 ASSERT(d_backing_inode(subdir));
David Howells9ae326a2009-04-03 16:42:41 +0100783
784 _debug("mkdir -> %p{%p{ino=%lu}}",
785 subdir,
David Howells466b77b2015-03-17 22:26:21 +0000786 d_backing_inode(subdir),
787 d_backing_inode(subdir)->i_ino);
David Howells9ae326a2009-04-03 16:42:41 +0100788 }
789
Al Viro59551022016-01-22 15:40:57 -0500790 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100791
792 /* we need to make sure the subdir is a directory */
David Howells466b77b2015-03-17 22:26:21 +0000793 ASSERT(d_backing_inode(subdir));
David Howells9ae326a2009-04-03 16:42:41 +0100794
David Howellsce40fa72015-01-29 12:02:36 +0000795 if (!d_can_lookup(subdir)) {
Fabian Frederick6ff66ac2014-09-25 16:05:27 -0700796 pr_err("%s is not a directory\n", dirname);
David Howells9ae326a2009-04-03 16:42:41 +0100797 ret = -EIO;
798 goto check_error;
799 }
800
801 ret = -EPERM;
David Howells466b77b2015-03-17 22:26:21 +0000802 if (!d_backing_inode(subdir)->i_op->setxattr ||
803 !d_backing_inode(subdir)->i_op->getxattr ||
804 !d_backing_inode(subdir)->i_op->lookup ||
805 !d_backing_inode(subdir)->i_op->mkdir ||
806 !d_backing_inode(subdir)->i_op->create ||
Miklos Szeredi2773bf02016-09-27 11:03:58 +0200807 !d_backing_inode(subdir)->i_op->rename ||
David Howells466b77b2015-03-17 22:26:21 +0000808 !d_backing_inode(subdir)->i_op->rmdir ||
809 !d_backing_inode(subdir)->i_op->unlink)
David Howells9ae326a2009-04-03 16:42:41 +0100810 goto check_error;
811
David Howells466b77b2015-03-17 22:26:21 +0000812 _leave(" = [%lu]", d_backing_inode(subdir)->i_ino);
David Howells9ae326a2009-04-03 16:42:41 +0100813 return subdir;
814
815check_error:
816 dput(subdir);
817 _leave(" = %d [check]", ret);
818 return ERR_PTR(ret);
819
820mkdir_error:
Al Viro59551022016-01-22 15:40:57 -0500821 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100822 dput(subdir);
Fabian Frederick6ff66ac2014-09-25 16:05:27 -0700823 pr_err("mkdir %s failed with error %d\n", dirname, ret);
David Howells9ae326a2009-04-03 16:42:41 +0100824 return ERR_PTR(ret);
825
826lookup_error:
Al Viro59551022016-01-22 15:40:57 -0500827 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100828 ret = PTR_ERR(subdir);
Fabian Frederick6ff66ac2014-09-25 16:05:27 -0700829 pr_err("Lookup %s failed with error %d\n", dirname, ret);
David Howells9ae326a2009-04-03 16:42:41 +0100830 return ERR_PTR(ret);
831
832nomem_d_alloc:
Al Viro59551022016-01-22 15:40:57 -0500833 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100834 _leave(" = -ENOMEM");
835 return ERR_PTR(-ENOMEM);
836}
837
838/*
839 * find out if an object is in use or not
840 * - if finds object and it's not in use:
841 * - returns a pointer to the object and a reference on it
842 * - returns with the directory locked
843 */
844static struct dentry *cachefiles_check_active(struct cachefiles_cache *cache,
845 struct dentry *dir,
846 char *filename)
847{
848 struct cachefiles_object *object;
849 struct rb_node *_n;
850 struct dentry *victim;
851 unsigned long start;
852 int ret;
853
Al Viroa4555892014-10-21 20:11:25 -0400854 //_enter(",%pd/,%s",
855 // dir, filename);
David Howells9ae326a2009-04-03 16:42:41 +0100856
857 /* look up the victim */
Al Viro59551022016-01-22 15:40:57 -0500858 inode_lock_nested(d_inode(dir), I_MUTEX_PARENT);
David Howells9ae326a2009-04-03 16:42:41 +0100859
860 start = jiffies;
861 victim = lookup_one_len(filename, dir, strlen(filename));
862 cachefiles_hist(cachefiles_lookup_histogram, start);
863 if (IS_ERR(victim))
864 goto lookup_error;
865
866 //_debug("victim -> %p %s",
David Howells466b77b2015-03-17 22:26:21 +0000867 // victim, d_backing_inode(victim) ? "positive" : "negative");
David Howells9ae326a2009-04-03 16:42:41 +0100868
869 /* if the object is no longer there then we probably retired the object
870 * at the netfs's request whilst the cull was in progress
871 */
David Howells466b77b2015-03-17 22:26:21 +0000872 if (d_is_negative(victim)) {
Al Viro59551022016-01-22 15:40:57 -0500873 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100874 dput(victim);
875 _leave(" = -ENOENT [absent]");
876 return ERR_PTR(-ENOENT);
877 }
878
879 /* check to see if we're using this object */
880 read_lock(&cache->active_lock);
881
882 _n = cache->active_nodes.rb_node;
883
884 while (_n) {
885 object = rb_entry(_n, struct cachefiles_object, active_node);
886
887 if (object->dentry > victim)
888 _n = _n->rb_left;
889 else if (object->dentry < victim)
890 _n = _n->rb_right;
891 else
892 goto object_in_use;
893 }
894
895 read_unlock(&cache->active_lock);
896
897 //_leave(" = %p", victim);
898 return victim;
899
900object_in_use:
901 read_unlock(&cache->active_lock);
Al Viro59551022016-01-22 15:40:57 -0500902 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100903 dput(victim);
904 //_leave(" = -EBUSY [in use]");
905 return ERR_PTR(-EBUSY);
906
907lookup_error:
Al Viro59551022016-01-22 15:40:57 -0500908 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100909 ret = PTR_ERR(victim);
910 if (ret == -ENOENT) {
911 /* file or dir now absent - probably retired by netfs */
912 _leave(" = -ESTALE [absent]");
913 return ERR_PTR(-ESTALE);
914 }
915
916 if (ret == -EIO) {
917 cachefiles_io_error(cache, "Lookup failed");
918 } else if (ret != -ENOMEM) {
Fabian Frederick6ff66ac2014-09-25 16:05:27 -0700919 pr_err("Internal error: %d\n", ret);
David Howells9ae326a2009-04-03 16:42:41 +0100920 ret = -EIO;
921 }
922
923 _leave(" = %d", ret);
924 return ERR_PTR(ret);
925}
926
927/*
928 * cull an object if it's not in use
929 * - called only by cache manager daemon
930 */
931int cachefiles_cull(struct cachefiles_cache *cache, struct dentry *dir,
932 char *filename)
933{
934 struct dentry *victim;
935 int ret;
936
Al Viroa4555892014-10-21 20:11:25 -0400937 _enter(",%pd/,%s", dir, filename);
David Howells9ae326a2009-04-03 16:42:41 +0100938
939 victim = cachefiles_check_active(cache, dir, filename);
940 if (IS_ERR(victim))
941 return PTR_ERR(victim);
942
943 _debug("victim -> %p %s",
David Howells466b77b2015-03-17 22:26:21 +0000944 victim, d_backing_inode(victim) ? "positive" : "negative");
David Howells9ae326a2009-04-03 16:42:41 +0100945
946 /* okay... the victim is not being used so we can cull it
947 * - start by marking it as stale
948 */
949 _debug("victim is cullable");
950
951 ret = cachefiles_remove_object_xattr(cache, victim);
952 if (ret < 0)
953 goto error_unlock;
954
955 /* actually remove the victim (drops the dir mutex) */
956 _debug("bury");
957
David Howells182d9192015-02-19 23:47:31 +0000958 ret = cachefiles_bury_object(cache, dir, victim, false,
959 FSCACHE_OBJECT_WAS_CULLED);
David Howells9ae326a2009-04-03 16:42:41 +0100960 if (ret < 0)
961 goto error;
962
963 dput(victim);
964 _leave(" = 0");
965 return 0;
966
967error_unlock:
Al Viro59551022016-01-22 15:40:57 -0500968 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +0100969error:
970 dput(victim);
971 if (ret == -ENOENT) {
972 /* file or dir now absent - probably retired by netfs */
973 _leave(" = -ESTALE [absent]");
974 return -ESTALE;
975 }
976
977 if (ret != -ENOMEM) {
Fabian Frederick6ff66ac2014-09-25 16:05:27 -0700978 pr_err("Internal error: %d\n", ret);
David Howells9ae326a2009-04-03 16:42:41 +0100979 ret = -EIO;
980 }
981
982 _leave(" = %d", ret);
983 return ret;
984}
985
986/*
987 * find out if an object is in use or not
988 * - called only by cache manager daemon
989 * - returns -EBUSY or 0 to indicate whether an object is in use or not
990 */
991int cachefiles_check_in_use(struct cachefiles_cache *cache, struct dentry *dir,
992 char *filename)
993{
994 struct dentry *victim;
995
Al Viroa4555892014-10-21 20:11:25 -0400996 //_enter(",%pd/,%s",
997 // dir, filename);
David Howells9ae326a2009-04-03 16:42:41 +0100998
999 victim = cachefiles_check_active(cache, dir, filename);
1000 if (IS_ERR(victim))
1001 return PTR_ERR(victim);
1002
Al Viro59551022016-01-22 15:40:57 -05001003 inode_unlock(d_inode(dir));
David Howells9ae326a2009-04-03 16:42:41 +01001004 dput(victim);
1005 //_leave(" = 0");
1006 return 0;
1007}