blob: 54effed1ce59c47315aff867f2d87b9b60e2d4a7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* -*- c -*- --------------------------------------------------------------- *
2 *
3 * linux/fs/autofs/expire.c
4 *
5 * Copyright 1997-1998 Transmeta Corporation -- All Rights Reserved
6 * Copyright 1999-2000 Jeremy Fitzhardinge <jeremy@goop.org>
Ian Kent3a15e2a2006-03-27 01:14:55 -08007 * Copyright 2001-2006 Ian Kent <raven@themaw.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * This file is part of the Linux kernel and is made available under
10 * the terms of the GNU General Public License, version 2, or at your
11 * option, any later version, incorporated herein by reference.
12 *
13 * ------------------------------------------------------------------------- */
14
15#include "autofs_i.h"
16
17static unsigned long now;
18
Ian Kent1f5f2c32006-03-27 01:14:44 -080019/* Check if a dentry can be expired */
Linus Torvalds1da177e2005-04-16 15:20:36 -070020static inline int autofs4_can_expire(struct dentry *dentry,
21 unsigned long timeout, int do_now)
22{
23 struct autofs_info *ino = autofs4_dentry_ino(dentry);
24
25 /* dentry in the process of being deleted */
26 if (ino == NULL)
27 return 0;
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 if (!do_now) {
30 /* Too young to die */
Ian Kentc0ba7e52006-09-25 16:24:16 -070031 if (!timeout || time_after(ino->last_used + timeout, now))
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 return 0;
33
34 /* update last_used here :-
35 - obviously makes sense if it is in use now
36 - less obviously, prevents rapid-fire expire
37 attempts if expire fails the first time */
38 ino->last_used = now;
39 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 return 1;
41}
42
Ian Kent1f5f2c32006-03-27 01:14:44 -080043/* Check a mount point for busyness */
44static int autofs4_mount_busy(struct vfsmount *mnt, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045{
Ian Kente0a7aae2006-03-27 01:14:47 -080046 struct dentry *top = dentry;
Al Viro9393bd02009-04-18 13:58:15 -040047 struct path path = {.mnt = mnt, .dentry = dentry};
Ian Kent1f5f2c32006-03-27 01:14:44 -080048 int status = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50 DPRINTK("dentry %p %.*s",
51 dentry, (int)dentry->d_name.len, dentry->d_name.name);
52
Al Viro9393bd02009-04-18 13:58:15 -040053 path_get(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
David Howellscc53ce52011-01-14 18:45:26 +000055 if (!follow_down_one(&path))
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 goto done;
57
Al Viro9393bd02009-04-18 13:58:15 -040058 if (is_autofs4_dentry(path.dentry)) {
59 struct autofs_sb_info *sbi = autofs4_sbi(path.dentry->d_sb);
Ian Kentbc9c4062008-11-06 12:53:22 -080060
61 /* This is an autofs submount, we can't expire it */
Ian Kenta92daf62009-01-06 14:42:08 -080062 if (autofs_type_indirect(sbi->type))
Ian Kentbc9c4062008-11-06 12:53:22 -080063 goto done;
Ian Kentbc9c4062008-11-06 12:53:22 -080064 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Ian Kente0a7aae2006-03-27 01:14:47 -080066 /* Update the expiry counter if fs is busy */
Ian Kent37d08922009-09-01 11:26:22 +080067 if (!may_umount_tree(path.mnt)) {
Ian Kente0a7aae2006-03-27 01:14:47 -080068 struct autofs_info *ino = autofs4_dentry_ino(top);
69 ino->last_used = jiffies;
70 goto done;
71 }
72
73 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074done:
75 DPRINTK("returning = %d", status);
Al Viro9393bd02009-04-18 13:58:15 -040076 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 return status;
78}
79
Ian Kent1ce12ba2006-03-27 01:14:45 -080080/*
Ian Kentd4a85e32011-03-25 01:51:20 +080081 * Calculate and dget next entry in the subdirs list under root.
82 */
83static struct dentry *get_next_positive_subdir(struct dentry *prev,
84 struct dentry *root)
85{
Ian Kente7854722011-03-25 01:51:31 +080086 struct autofs_sb_info *sbi = autofs4_sbi(root->d_sb);
Ian Kentd4a85e32011-03-25 01:51:20 +080087 struct list_head *next;
88 struct dentry *p, *q;
89
Ian Kente7854722011-03-25 01:51:31 +080090 spin_lock(&sbi->lookup_lock);
Ian Kentd4a85e32011-03-25 01:51:20 +080091
92 if (prev == NULL) {
93 spin_lock(&root->d_lock);
94 prev = dget_dlock(root);
95 next = prev->d_subdirs.next;
96 p = prev;
97 goto start;
98 }
99
100 p = prev;
101 spin_lock(&p->d_lock);
102again:
Al Viroa7cca092014-10-26 19:19:16 -0400103 next = p->d_child.next;
Ian Kentd4a85e32011-03-25 01:51:20 +0800104start:
105 if (next == &root->d_subdirs) {
106 spin_unlock(&p->d_lock);
Ian Kente7854722011-03-25 01:51:31 +0800107 spin_unlock(&sbi->lookup_lock);
Ian Kentd4a85e32011-03-25 01:51:20 +0800108 dput(prev);
109 return NULL;
110 }
111
Al Viroa7cca092014-10-26 19:19:16 -0400112 q = list_entry(next, struct dentry, d_child);
Ian Kentd4a85e32011-03-25 01:51:20 +0800113
114 spin_lock_nested(&q->d_lock, DENTRY_D_LOCK_NESTED);
115 /* Negative dentry - try next */
116 if (!simple_positive(q)) {
117 spin_unlock(&p->d_lock);
Steven Rostedt1d6f2092011-08-22 11:52:28 +0800118 lock_set_subclass(&q->d_lock.dep_map, 0, _RET_IP_);
Ian Kentd4a85e32011-03-25 01:51:20 +0800119 p = q;
120 goto again;
121 }
122 dget_dlock(q);
123 spin_unlock(&q->d_lock);
124 spin_unlock(&p->d_lock);
Ian Kente7854722011-03-25 01:51:31 +0800125 spin_unlock(&sbi->lookup_lock);
Ian Kentd4a85e32011-03-25 01:51:20 +0800126
127 dput(prev);
128
129 return q;
130}
131
132/*
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100133 * Calculate and dget next entry in top down tree traversal.
Ian Kent1ce12ba2006-03-27 01:14:45 -0800134 */
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100135static struct dentry *get_next_positive_dentry(struct dentry *prev,
136 struct dentry *root)
Ian Kent1ce12ba2006-03-27 01:14:45 -0800137{
Ian Kente7854722011-03-25 01:51:31 +0800138 struct autofs_sb_info *sbi = autofs4_sbi(root->d_sb);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100139 struct list_head *next;
140 struct dentry *p, *ret;
Ian Kent1ce12ba2006-03-27 01:14:45 -0800141
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100142 if (prev == NULL)
Ian Kentc14cc632011-01-18 12:06:04 +0800143 return dget(root);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100144
Ian Kente7854722011-03-25 01:51:31 +0800145 spin_lock(&sbi->lookup_lock);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100146relock:
147 p = prev;
148 spin_lock(&p->d_lock);
149again:
150 next = p->d_subdirs.next;
Ian Kent1ce12ba2006-03-27 01:14:45 -0800151 if (next == &p->d_subdirs) {
152 while (1) {
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100153 struct dentry *parent;
154
155 if (p == root) {
156 spin_unlock(&p->d_lock);
Ian Kente7854722011-03-25 01:51:31 +0800157 spin_unlock(&sbi->lookup_lock);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100158 dput(prev);
Ian Kent1ce12ba2006-03-27 01:14:45 -0800159 return NULL;
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100160 }
161
162 parent = p->d_parent;
163 if (!spin_trylock(&parent->d_lock)) {
164 spin_unlock(&p->d_lock);
165 cpu_relax();
166 goto relock;
167 }
168 spin_unlock(&p->d_lock);
Al Viroa7cca092014-10-26 19:19:16 -0400169 next = p->d_child.next;
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100170 p = parent;
171 if (next != &parent->d_subdirs)
Ian Kent1ce12ba2006-03-27 01:14:45 -0800172 break;
Ian Kent1ce12ba2006-03-27 01:14:45 -0800173 }
174 }
Al Viroa7cca092014-10-26 19:19:16 -0400175 ret = list_entry(next, struct dentry, d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100176
177 spin_lock_nested(&ret->d_lock, DENTRY_D_LOCK_NESTED);
178 /* Negative dentry - try next */
179 if (!simple_positive(ret)) {
Ian Kentc14cc632011-01-18 12:06:04 +0800180 spin_unlock(&p->d_lock);
Steven Rostedt1d6f2092011-08-22 11:52:28 +0800181 lock_set_subclass(&ret->d_lock.dep_map, 0, _RET_IP_);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100182 p = ret;
183 goto again;
184 }
185 dget_dlock(ret);
186 spin_unlock(&ret->d_lock);
187 spin_unlock(&p->d_lock);
Ian Kente7854722011-03-25 01:51:31 +0800188 spin_unlock(&sbi->lookup_lock);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100189
190 dput(prev);
191
192 return ret;
Ian Kent1ce12ba2006-03-27 01:14:45 -0800193}
194
Ian Kent3a15e2a2006-03-27 01:14:55 -0800195/*
196 * Check a direct mount point for busyness.
197 * Direct mounts have similar expiry semantics to tree mounts.
198 * The tree is not busy iff no mountpoints are busy and there are no
199 * autofs submounts.
200 */
201static int autofs4_direct_busy(struct vfsmount *mnt,
202 struct dentry *top,
203 unsigned long timeout,
204 int do_now)
205{
206 DPRINTK("top %p %.*s",
207 top, (int) top->d_name.len, top->d_name.name);
208
Ian Kent3a15e2a2006-03-27 01:14:55 -0800209 /* If it's busy update the expiry counters */
210 if (!may_umount_tree(mnt)) {
211 struct autofs_info *ino = autofs4_dentry_ino(top);
212 if (ino)
213 ino->last_used = jiffies;
214 return 1;
215 }
216
217 /* Timeout of a direct mount is determined by its top dentry */
218 if (!autofs4_can_expire(top, timeout, do_now))
219 return 1;
220
221 return 0;
222}
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224/* Check a directory tree of mount points for busyness
225 * The tree is not busy iff no mountpoints are busy
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 */
Ian Kent1f5f2c32006-03-27 01:14:44 -0800227static int autofs4_tree_busy(struct vfsmount *mnt,
228 struct dentry *top,
229 unsigned long timeout,
230 int do_now)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
Ian Kente0a7aae2006-03-27 01:14:47 -0800232 struct autofs_info *top_ino = autofs4_dentry_ino(top);
Ian Kent1ce12ba2006-03-27 01:14:45 -0800233 struct dentry *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Ian Kent1f5f2c32006-03-27 01:14:44 -0800235 DPRINTK("top %p %.*s",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 top, (int)top->d_name.len, top->d_name.name);
237
238 /* Negative dentry - give up */
239 if (!simple_positive(top))
Ian Kent1f5f2c32006-03-27 01:14:44 -0800240 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100242 p = NULL;
243 while ((p = get_next_positive_dentry(p, top))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 DPRINTK("dentry %p %.*s",
Ian Kent1ce12ba2006-03-27 01:14:45 -0800245 p, (int) p->d_name.len, p->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Ian Kent1aff3c82006-03-27 01:14:46 -0800247 /*
248 * Is someone visiting anywhere in the subtree ?
249 * If there's no mount we need to check the usage
250 * count for the autofs dentry.
Ian Kente0a7aae2006-03-27 01:14:47 -0800251 * If the fs is busy update the expiry counter.
Ian Kent1aff3c82006-03-27 01:14:46 -0800252 */
Ian Kent1ce12ba2006-03-27 01:14:45 -0800253 if (d_mountpoint(p)) {
Ian Kent1ce12ba2006-03-27 01:14:45 -0800254 if (autofs4_mount_busy(mnt, p)) {
Ian Kente0a7aae2006-03-27 01:14:47 -0800255 top_ino->last_used = jiffies;
Ian Kent1ce12ba2006-03-27 01:14:45 -0800256 dput(p);
Ian Kent1f5f2c32006-03-27 01:14:44 -0800257 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 }
Ian Kent1aff3c82006-03-27 01:14:46 -0800259 } else {
Ian Kente0a7aae2006-03-27 01:14:47 -0800260 struct autofs_info *ino = autofs4_dentry_ino(p);
Ian Kent1aff3c82006-03-27 01:14:46 -0800261 unsigned int ino_count = atomic_read(&ino->count);
262
Ian Kentf9022f62006-06-25 05:48:47 -0700263 /*
264 * Clean stale dentries below that have not been
265 * invalidated after a mount fail during lookup
266 */
267 d_invalidate(p);
268
Ian Kent1aff3c82006-03-27 01:14:46 -0800269 /* allow for dget above and top is already dgot */
270 if (p == top)
271 ino_count += 2;
272 else
273 ino_count++;
274
Nick Pigginb7ab39f2011-01-07 17:49:32 +1100275 if (p->d_count > ino_count) {
Ian Kente0a7aae2006-03-27 01:14:47 -0800276 top_ino->last_used = jiffies;
Ian Kent1aff3c82006-03-27 01:14:46 -0800277 dput(p);
278 return 1;
279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 }
Ian Kent1aff3c82006-03-27 01:14:46 -0800282
283 /* Timeout of a tree mount is ultimately determined by its top dentry */
284 if (!autofs4_can_expire(top, timeout, do_now))
285 return 1;
286
Ian Kent1f5f2c32006-03-27 01:14:44 -0800287 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
290static struct dentry *autofs4_check_leaves(struct vfsmount *mnt,
291 struct dentry *parent,
292 unsigned long timeout,
293 int do_now)
294{
Ian Kent1ce12ba2006-03-27 01:14:45 -0800295 struct dentry *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297 DPRINTK("parent %p %.*s",
298 parent, (int)parent->d_name.len, parent->d_name.name);
299
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100300 p = NULL;
301 while ((p = get_next_positive_dentry(p, parent))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 DPRINTK("dentry %p %.*s",
Ian Kent1ce12ba2006-03-27 01:14:45 -0800303 p, (int) p->d_name.len, p->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Ian Kent1ce12ba2006-03-27 01:14:45 -0800305 if (d_mountpoint(p)) {
Ian Kente0a7aae2006-03-27 01:14:47 -0800306 /* Can we umount this guy */
307 if (autofs4_mount_busy(mnt, p))
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100308 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Ian Kente0a7aae2006-03-27 01:14:47 -0800310 /* Can we expire this guy */
311 if (autofs4_can_expire(p, timeout, do_now))
Ian Kent1ce12ba2006-03-27 01:14:45 -0800312 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 return NULL;
316}
317
Ian Kent3a15e2a2006-03-27 01:14:55 -0800318/* Check if we can expire a direct mount (possibly a tree) */
Ian Kent8d7b48e2008-10-15 22:02:54 -0700319struct dentry *autofs4_expire_direct(struct super_block *sb,
320 struct vfsmount *mnt,
321 struct autofs_sb_info *sbi,
322 int how)
Ian Kent3a15e2a2006-03-27 01:14:55 -0800323{
324 unsigned long timeout;
325 struct dentry *root = dget(sb->s_root);
326 int do_now = how & AUTOFS_EXP_IMMEDIATE;
Ian Kentb5b80172011-01-14 18:46:03 +0000327 struct autofs_info *ino;
Ian Kent3a15e2a2006-03-27 01:14:55 -0800328
Ian Kentc0ba7e52006-09-25 16:24:16 -0700329 if (!root)
Ian Kent3a15e2a2006-03-27 01:14:55 -0800330 return NULL;
331
332 now = jiffies;
333 timeout = sbi->exp_timeout;
334
Ian Kent3a15e2a2006-03-27 01:14:55 -0800335 spin_lock(&sbi->fs_lock);
Ian Kentb5b80172011-01-14 18:46:03 +0000336 ino = autofs4_dentry_ino(root);
337 /* No point expiring a pending mount */
Ian Kentf9398c22011-03-25 01:51:14 +0800338 if (ino->flags & AUTOFS_INF_PENDING)
339 goto out;
Ian Kent3a15e2a2006-03-27 01:14:55 -0800340 if (!autofs4_direct_busy(mnt, root, timeout, do_now)) {
341 struct autofs_info *ino = autofs4_dentry_ino(root);
Ian Kent3a15e2a2006-03-27 01:14:55 -0800342 ino->flags |= AUTOFS_INF_EXPIRING;
Ian Kent6e60a9a2008-07-23 21:30:27 -0700343 init_completion(&ino->expire_complete);
Ian Kent3a15e2a2006-03-27 01:14:55 -0800344 spin_unlock(&sbi->fs_lock);
345 return root;
346 }
Ian Kentf9398c22011-03-25 01:51:14 +0800347out:
Ian Kent3a15e2a2006-03-27 01:14:55 -0800348 spin_unlock(&sbi->fs_lock);
349 dput(root);
350
351 return NULL;
352}
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354/*
355 * Find an eligible tree to time-out
356 * A tree is eligible if :-
357 * - it is unused by any user process
358 * - it has been unused for exp_timeout time
359 */
Ian Kent8d7b48e2008-10-15 22:02:54 -0700360struct dentry *autofs4_expire_indirect(struct super_block *sb,
361 struct vfsmount *mnt,
362 struct autofs_sb_info *sbi,
363 int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
365 unsigned long timeout;
366 struct dentry *root = sb->s_root;
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100367 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 struct dentry *expired = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 int do_now = how & AUTOFS_EXP_IMMEDIATE;
370 int exp_leaves = how & AUTOFS_EXP_LEAVES;
Ian Kent97e74492008-07-23 21:30:26 -0700371 struct autofs_info *ino;
372 unsigned int ino_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Ian Kentc0ba7e52006-09-25 16:24:16 -0700374 if (!root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 return NULL;
376
377 now = jiffies;
378 timeout = sbi->exp_timeout;
379
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100380 dentry = NULL;
Ian Kentd4a85e32011-03-25 01:51:20 +0800381 while ((dentry = get_next_positive_subdir(dentry, root))) {
Ian Kent97e74492008-07-23 21:30:26 -0700382 spin_lock(&sbi->fs_lock);
383 ino = autofs4_dentry_ino(dentry);
Ian Kentb5b80172011-01-14 18:46:03 +0000384 /* No point expiring a pending mount */
385 if (ino->flags & AUTOFS_INF_PENDING)
Ian Kent3c319982011-03-25 01:51:08 +0800386 goto next;
Ian Kent97e74492008-07-23 21:30:26 -0700387
Ian Kent3a15e2a2006-03-27 01:14:55 -0800388 /*
389 * Case 1: (i) indirect mount or top level pseudo direct mount
390 * (autofs-4.1).
391 * (ii) indirect mount with offset mount, check the "/"
392 * offset (autofs-5.0+).
393 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 if (d_mountpoint(dentry)) {
395 DPRINTK("checking mountpoint %p %.*s",
396 dentry, (int)dentry->d_name.len, dentry->d_name.name);
397
Ian Kent97e74492008-07-23 21:30:26 -0700398 /* Path walk currently on this dentry? */
399 ino_count = atomic_read(&ino->count) + 2;
Nick Pigginb7ab39f2011-01-07 17:49:32 +1100400 if (dentry->d_count > ino_count)
Ian Kent97e74492008-07-23 21:30:26 -0700401 goto next;
402
Ian Kente0a7aae2006-03-27 01:14:47 -0800403 /* Can we umount this guy */
404 if (autofs4_mount_busy(mnt, dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 goto next;
406
Ian Kente0a7aae2006-03-27 01:14:47 -0800407 /* Can we expire this guy */
408 if (autofs4_can_expire(dentry, timeout, do_now)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 expired = dentry;
Ian Kentafec5702008-05-01 04:35:06 -0700410 goto found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 }
412 goto next;
413 }
414
Ian Kent1f5f2c32006-03-27 01:14:44 -0800415 if (simple_empty(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 goto next;
417
418 /* Case 2: tree mount, expire iff entire tree is not busy */
419 if (!exp_leaves) {
Ian Kent97e74492008-07-23 21:30:26 -0700420 /* Path walk currently on this dentry? */
421 ino_count = atomic_read(&ino->count) + 1;
Nick Pigginb7ab39f2011-01-07 17:49:32 +1100422 if (dentry->d_count > ino_count)
Ian Kent97e74492008-07-23 21:30:26 -0700423 goto next;
Ian Kent3a9720c2005-05-01 08:59:17 -0700424
Ian Kent97e74492008-07-23 21:30:26 -0700425 if (!autofs4_tree_busy(mnt, dentry, timeout, do_now)) {
Ian Kent3a9720c2005-05-01 08:59:17 -0700426 expired = dentry;
Ian Kentafec5702008-05-01 04:35:06 -0700427 goto found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 }
Ian Kent3a15e2a2006-03-27 01:14:55 -0800429 /*
430 * Case 3: pseudo direct mount, expire individual leaves
431 * (autofs-4.1).
432 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 } else {
Ian Kent97e74492008-07-23 21:30:26 -0700434 /* Path walk currently on this dentry? */
435 ino_count = atomic_read(&ino->count) + 1;
Nick Pigginb7ab39f2011-01-07 17:49:32 +1100436 if (dentry->d_count > ino_count)
Ian Kent97e74492008-07-23 21:30:26 -0700437 goto next;
438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 expired = autofs4_check_leaves(mnt, dentry, timeout, do_now);
440 if (expired) {
441 dput(dentry);
Ian Kentafec5702008-05-01 04:35:06 -0700442 goto found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
444 }
445next:
Ian Kent97e74492008-07-23 21:30:26 -0700446 spin_unlock(&sbi->fs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 return NULL;
Ian Kentafec5702008-05-01 04:35:06 -0700449
450found:
451 DPRINTK("returning %p %.*s",
452 expired, (int)expired->d_name.len, expired->d_name.name);
Ian Kent97e74492008-07-23 21:30:26 -0700453 ino = autofs4_dentry_ino(expired);
454 ino->flags |= AUTOFS_INF_EXPIRING;
Ian Kent6e60a9a2008-07-23 21:30:27 -0700455 init_completion(&ino->expire_complete);
Ian Kent97e74492008-07-23 21:30:26 -0700456 spin_unlock(&sbi->fs_lock);
Ian Kente7854722011-03-25 01:51:31 +0800457 spin_lock(&sbi->lookup_lock);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100458 spin_lock(&expired->d_parent->d_lock);
459 spin_lock_nested(&expired->d_lock, DENTRY_D_LOCK_NESTED);
Al Viroa7cca092014-10-26 19:19:16 -0400460 list_move(&expired->d_parent->d_subdirs, &expired->d_child);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100461 spin_unlock(&expired->d_lock);
462 spin_unlock(&expired->d_parent->d_lock);
Ian Kente7854722011-03-25 01:51:31 +0800463 spin_unlock(&sbi->lookup_lock);
Ian Kentafec5702008-05-01 04:35:06 -0700464 return expired;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
466
Ian Kent06a35982008-07-23 21:30:28 -0700467int autofs4_expire_wait(struct dentry *dentry)
468{
469 struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
470 struct autofs_info *ino = autofs4_dentry_ino(dentry);
471 int status;
472
473 /* Block on any pending expire */
474 spin_lock(&sbi->fs_lock);
475 if (ino->flags & AUTOFS_INF_EXPIRING) {
476 spin_unlock(&sbi->fs_lock);
477
478 DPRINTK("waiting for expire %p name=%.*s",
479 dentry, dentry->d_name.len, dentry->d_name.name);
480
481 status = autofs4_wait(sbi, dentry, NFY_NONE);
482 wait_for_completion(&ino->expire_complete);
483
484 DPRINTK("expire done status=%d", status);
485
Al Viro4b1ae272010-03-03 12:58:31 -0500486 if (d_unhashed(dentry))
Ian Kent06a35982008-07-23 21:30:28 -0700487 return -EAGAIN;
488
489 return status;
490 }
491 spin_unlock(&sbi->fs_lock);
492
493 return 0;
494}
495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496/* Perform an expiry operation */
497int autofs4_expire_run(struct super_block *sb,
498 struct vfsmount *mnt,
499 struct autofs_sb_info *sbi,
500 struct autofs_packet_expire __user *pkt_p)
501{
502 struct autofs_packet_expire pkt;
Ian Kent97e74492008-07-23 21:30:26 -0700503 struct autofs_info *ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 struct dentry *dentry;
Ian Kent97e74492008-07-23 21:30:26 -0700505 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 memset(&pkt,0,sizeof pkt);
508
509 pkt.hdr.proto_version = sbi->version;
510 pkt.hdr.type = autofs_ptype_expire;
511
Ian Kent3a15e2a2006-03-27 01:14:55 -0800512 if ((dentry = autofs4_expire_indirect(sb, mnt, sbi, 0)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 return -EAGAIN;
514
515 pkt.len = dentry->d_name.len;
516 memcpy(pkt.name, dentry->d_name.name, pkt.len);
517 pkt.name[pkt.len] = '\0';
518 dput(dentry);
519
520 if ( copy_to_user(pkt_p, &pkt, sizeof(struct autofs_packet_expire)) )
Ian Kent97e74492008-07-23 21:30:26 -0700521 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Ian Kent97e74492008-07-23 21:30:26 -0700523 spin_lock(&sbi->fs_lock);
524 ino = autofs4_dentry_ino(dentry);
525 ino->flags &= ~AUTOFS_INF_EXPIRING;
Ian Kent6e60a9a2008-07-23 21:30:27 -0700526 complete_all(&ino->expire_complete);
Ian Kent97e74492008-07-23 21:30:26 -0700527 spin_unlock(&sbi->fs_lock);
528
529 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530}
531
Ian Kent56fcef72009-03-31 15:24:43 -0700532int autofs4_do_expire_multi(struct super_block *sb, struct vfsmount *mnt,
533 struct autofs_sb_info *sbi, int when)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
535 struct dentry *dentry;
536 int ret = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Ian Kenta92daf62009-01-06 14:42:08 -0800538 if (autofs_type_trigger(sbi->type))
Ian Kent56fcef72009-03-31 15:24:43 -0700539 dentry = autofs4_expire_direct(sb, mnt, sbi, when);
Ian Kent3a15e2a2006-03-27 01:14:55 -0800540 else
Ian Kent56fcef72009-03-31 15:24:43 -0700541 dentry = autofs4_expire_indirect(sb, mnt, sbi, when);
Ian Kent3a15e2a2006-03-27 01:14:55 -0800542
543 if (dentry) {
Ian Kent1f5f2c32006-03-27 01:14:44 -0800544 struct autofs_info *ino = autofs4_dentry_ino(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 /* This is synchronous because it makes the daemon a
547 little easier */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 ret = autofs4_wait(sbi, dentry, NFY_EXPIRE);
Ian Kent6e60a9a2008-07-23 21:30:27 -0700549
Ian Kent97e74492008-07-23 21:30:26 -0700550 spin_lock(&sbi->fs_lock);
Ian Kent1f5f2c32006-03-27 01:14:44 -0800551 ino->flags &= ~AUTOFS_INF_EXPIRING;
Ian Kentb5b80172011-01-14 18:46:03 +0000552 spin_lock(&dentry->d_lock);
Ian Kent3c319982011-03-25 01:51:08 +0800553 if (!ret) {
Ian Kentb5b80172011-01-14 18:46:03 +0000554 if ((IS_ROOT(dentry) ||
555 (autofs_type_indirect(sbi->type) &&
556 IS_ROOT(dentry->d_parent))) &&
557 !(dentry->d_flags & DCACHE_NEED_AUTOMOUNT))
558 __managed_dentry_set_automount(dentry);
559 }
560 spin_unlock(&dentry->d_lock);
Ian Kent6e60a9a2008-07-23 21:30:27 -0700561 complete_all(&ino->expire_complete);
Ian Kent97e74492008-07-23 21:30:26 -0700562 spin_unlock(&sbi->fs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 dput(dentry);
564 }
Ian Kent1f5f2c32006-03-27 01:14:44 -0800565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 return ret;
567}
568
Ian Kent56fcef72009-03-31 15:24:43 -0700569/* Call repeatedly until it returns -EAGAIN, meaning there's nothing
570 more to be done */
571int autofs4_expire_multi(struct super_block *sb, struct vfsmount *mnt,
572 struct autofs_sb_info *sbi, int __user *arg)
573{
574 int do_now = 0;
575
576 if (arg && get_user(do_now, arg))
577 return -EFAULT;
578
579 return autofs4_do_expire_multi(sb, mnt, sbi, do_now);
580}
581