blob: 053d92a745b91c9624cc585f54b718bb8dc22c63 [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>
7 * Copyright 2001-2003 Ian Kent <raven@themaw.net>
8 *
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
29 /* No point expiring a pending mount */
30 if (dentry->d_flags & DCACHE_AUTOFS_PENDING)
31 return 0;
32
33 if (!do_now) {
34 /* Too young to die */
35 if (time_after(ino->last_used + timeout, now))
36 return 0;
37
38 /* update last_used here :-
39 - obviously makes sense if it is in use now
40 - less obviously, prevents rapid-fire expire
41 attempts if expire fails the first time */
42 ino->last_used = now;
43 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 return 1;
45}
46
Ian Kent1f5f2c32006-03-27 01:14:44 -080047/* Check a mount point for busyness */
48static int autofs4_mount_busy(struct vfsmount *mnt, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
Ian Kent1f5f2c32006-03-27 01:14:44 -080050 int status = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52 DPRINTK("dentry %p %.*s",
53 dentry, (int)dentry->d_name.len, dentry->d_name.name);
54
55 mntget(mnt);
56 dget(dentry);
57
Ian Kent9b1e3af2005-06-21 17:16:38 -070058 if (!autofs4_follow_mount(&mnt, &dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 goto done;
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 /* This is an autofs submount, we can't expire it */
62 if (is_autofs4_dentry(dentry))
63 goto done;
64
65 /* The big question */
66 if (may_umount_tree(mnt) == 0)
Ian Kent1f5f2c32006-03-27 01:14:44 -080067 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068done:
69 DPRINTK("returning = %d", status);
70 mntput(mnt);
71 dput(dentry);
72 return status;
73}
74
Ian Kent1ce12ba2006-03-27 01:14:45 -080075/*
76 * Calculate next entry in top down tree traversal.
77 * From next_mnt in namespace.c - elegant.
78 */
79static struct dentry *next_dentry(struct dentry *p, struct dentry *root)
80{
81 struct list_head *next = p->d_subdirs.next;
82
83 if (next == &p->d_subdirs) {
84 while (1) {
85 if (p == root)
86 return NULL;
87 next = p->d_u.d_child.next;
88 if (next != &p->d_parent->d_subdirs)
89 break;
90 p = p->d_parent;
91 }
92 }
93 return list_entry(next, struct dentry, d_u.d_child);
94}
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096/* Check a directory tree of mount points for busyness
97 * The tree is not busy iff no mountpoints are busy
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 */
Ian Kent1f5f2c32006-03-27 01:14:44 -080099static int autofs4_tree_busy(struct vfsmount *mnt,
100 struct dentry *top,
101 unsigned long timeout,
102 int do_now)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
Ian Kent1aff3c82006-03-27 01:14:46 -0800104 struct autofs_info *ino;
Ian Kent1ce12ba2006-03-27 01:14:45 -0800105 struct dentry *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Ian Kent1f5f2c32006-03-27 01:14:44 -0800107 DPRINTK("top %p %.*s",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 top, (int)top->d_name.len, top->d_name.name);
109
110 /* Negative dentry - give up */
111 if (!simple_positive(top))
Ian Kent1f5f2c32006-03-27 01:14:44 -0800112 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 spin_lock(&dcache_lock);
Ian Kent1ce12ba2006-03-27 01:14:45 -0800115 for (p = top; p; p = next_dentry(p, top)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 /* Negative dentry - give up */
Ian Kent1ce12ba2006-03-27 01:14:45 -0800117 if (!simple_positive(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 DPRINTK("dentry %p %.*s",
Ian Kent1ce12ba2006-03-27 01:14:45 -0800121 p, (int) p->d_name.len, p->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Ian Kent1ce12ba2006-03-27 01:14:45 -0800123 p = dget(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 spin_unlock(&dcache_lock);
125
Ian Kent1aff3c82006-03-27 01:14:46 -0800126 /*
127 * Is someone visiting anywhere in the subtree ?
128 * If there's no mount we need to check the usage
129 * count for the autofs dentry.
130 */
131 ino = autofs4_dentry_ino(p);
Ian Kent1ce12ba2006-03-27 01:14:45 -0800132 if (d_mountpoint(p)) {
Ian Kent1ce12ba2006-03-27 01:14:45 -0800133 if (autofs4_mount_busy(mnt, p)) {
134 dput(p);
Ian Kent1f5f2c32006-03-27 01:14:44 -0800135 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 }
Ian Kent1aff3c82006-03-27 01:14:46 -0800137 } else {
138 unsigned int ino_count = atomic_read(&ino->count);
139
140 /* allow for dget above and top is already dgot */
141 if (p == top)
142 ino_count += 2;
143 else
144 ino_count++;
145
146 if (atomic_read(&p->d_count) > ino_count) {
147 dput(p);
148 return 1;
149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 }
Ian Kent1ce12ba2006-03-27 01:14:45 -0800151 dput(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 spin_lock(&dcache_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 }
154 spin_unlock(&dcache_lock);
Ian Kent1aff3c82006-03-27 01:14:46 -0800155
156 /* Timeout of a tree mount is ultimately determined by its top dentry */
157 if (!autofs4_can_expire(top, timeout, do_now))
158 return 1;
159
Ian Kent1f5f2c32006-03-27 01:14:44 -0800160 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161}
162
163static struct dentry *autofs4_check_leaves(struct vfsmount *mnt,
164 struct dentry *parent,
165 unsigned long timeout,
166 int do_now)
167{
Ian Kent1ce12ba2006-03-27 01:14:45 -0800168 struct dentry *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 DPRINTK("parent %p %.*s",
171 parent, (int)parent->d_name.len, parent->d_name.name);
172
173 spin_lock(&dcache_lock);
Ian Kent1ce12ba2006-03-27 01:14:45 -0800174 for (p = parent; p; p = next_dentry(p, parent)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 /* Negative dentry - give up */
Ian Kent1ce12ba2006-03-27 01:14:45 -0800176 if (!simple_positive(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 DPRINTK("dentry %p %.*s",
Ian Kent1ce12ba2006-03-27 01:14:45 -0800180 p, (int) p->d_name.len, p->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Ian Kent1ce12ba2006-03-27 01:14:45 -0800182 p = dget(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 spin_unlock(&dcache_lock);
184
Ian Kent1ce12ba2006-03-27 01:14:45 -0800185 if (d_mountpoint(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 /* Can we expire this guy */
Ian Kent1ce12ba2006-03-27 01:14:45 -0800187 if (!autofs4_can_expire(p, timeout, do_now))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 goto cont;
189
190 /* Can we umount this guy */
Ian Kent1ce12ba2006-03-27 01:14:45 -0800191 if (!autofs4_mount_busy(mnt, p))
192 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 }
195cont:
Ian Kent1ce12ba2006-03-27 01:14:45 -0800196 dput(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 spin_lock(&dcache_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 }
199 spin_unlock(&dcache_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 return NULL;
201}
202
203/*
204 * Find an eligible tree to time-out
205 * A tree is eligible if :-
206 * - it is unused by any user process
207 * - it has been unused for exp_timeout time
208 */
209static struct dentry *autofs4_expire(struct super_block *sb,
210 struct vfsmount *mnt,
211 struct autofs_sb_info *sbi,
212 int how)
213{
214 unsigned long timeout;
215 struct dentry *root = sb->s_root;
216 struct dentry *expired = NULL;
217 struct list_head *next;
218 int do_now = how & AUTOFS_EXP_IMMEDIATE;
219 int exp_leaves = how & AUTOFS_EXP_LEAVES;
220
221 if ( !sbi->exp_timeout || !root )
222 return NULL;
223
224 now = jiffies;
225 timeout = sbi->exp_timeout;
226
227 spin_lock(&dcache_lock);
228 next = root->d_subdirs.next;
229
230 /* On exit from the loop expire is set to a dgot dentry
231 * to expire or it's NULL */
232 while ( next != &root->d_subdirs ) {
Eric Dumazet5160ee62006-01-08 01:03:32 -0800233 struct dentry *dentry = list_entry(next, struct dentry, d_u.d_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235 /* Negative dentry - give up */
Ian Kent1f5f2c32006-03-27 01:14:44 -0800236 if (!simple_positive(dentry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 next = next->next;
238 continue;
239 }
240
241 dentry = dget(dentry);
242 spin_unlock(&dcache_lock);
243
244 /* Case 1: indirect mount or top level direct mount */
245 if (d_mountpoint(dentry)) {
246 DPRINTK("checking mountpoint %p %.*s",
247 dentry, (int)dentry->d_name.len, dentry->d_name.name);
248
249 /* Can we expire this guy */
250 if (!autofs4_can_expire(dentry, timeout, do_now))
251 goto next;
252
253 /* Can we umount this guy */
Ian Kent1f5f2c32006-03-27 01:14:44 -0800254 if (!autofs4_mount_busy(mnt, dentry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 expired = dentry;
256 break;
257 }
258 goto next;
259 }
260
Ian Kent1f5f2c32006-03-27 01:14:44 -0800261 if (simple_empty(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 goto next;
263
264 /* Case 2: tree mount, expire iff entire tree is not busy */
265 if (!exp_leaves) {
Ian Kent3a9720c2005-05-01 08:59:17 -0700266 /* Lock the tree as we must expire as a whole */
267 spin_lock(&sbi->fs_lock);
Ian Kent1f5f2c32006-03-27 01:14:44 -0800268 if (!autofs4_tree_busy(mnt, dentry, timeout, do_now)) {
Ian Kent3a9720c2005-05-01 08:59:17 -0700269 struct autofs_info *inf = autofs4_dentry_ino(dentry);
270
271 /* Set this flag early to catch sys_chdir and the like */
272 inf->flags |= AUTOFS_INF_EXPIRING;
273 spin_unlock(&sbi->fs_lock);
274 expired = dentry;
275 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 }
Ian Kent3a9720c2005-05-01 08:59:17 -0700277 spin_unlock(&sbi->fs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 /* Case 3: direct mount, expire individual leaves */
279 } else {
280 expired = autofs4_check_leaves(mnt, dentry, timeout, do_now);
281 if (expired) {
282 dput(dentry);
283 break;
284 }
285 }
286next:
287 dput(dentry);
288 spin_lock(&dcache_lock);
289 next = next->next;
290 }
291
Ian Kent1f5f2c32006-03-27 01:14:44 -0800292 if (expired) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 DPRINTK("returning %p %.*s",
294 expired, (int)expired->d_name.len, expired->d_name.name);
295 spin_lock(&dcache_lock);
296 list_del(&expired->d_parent->d_subdirs);
Eric Dumazet5160ee62006-01-08 01:03:32 -0800297 list_add(&expired->d_parent->d_subdirs, &expired->d_u.d_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 spin_unlock(&dcache_lock);
299 return expired;
300 }
301 spin_unlock(&dcache_lock);
302
303 return NULL;
304}
305
306/* Perform an expiry operation */
307int autofs4_expire_run(struct super_block *sb,
308 struct vfsmount *mnt,
309 struct autofs_sb_info *sbi,
310 struct autofs_packet_expire __user *pkt_p)
311{
312 struct autofs_packet_expire pkt;
313 struct dentry *dentry;
314
315 memset(&pkt,0,sizeof pkt);
316
317 pkt.hdr.proto_version = sbi->version;
318 pkt.hdr.type = autofs_ptype_expire;
319
320 if ((dentry = autofs4_expire(sb, mnt, sbi, 0)) == NULL)
321 return -EAGAIN;
322
323 pkt.len = dentry->d_name.len;
324 memcpy(pkt.name, dentry->d_name.name, pkt.len);
325 pkt.name[pkt.len] = '\0';
326 dput(dentry);
327
328 if ( copy_to_user(pkt_p, &pkt, sizeof(struct autofs_packet_expire)) )
329 return -EFAULT;
330
331 return 0;
332}
333
334/* Call repeatedly until it returns -EAGAIN, meaning there's nothing
335 more to be done */
336int autofs4_expire_multi(struct super_block *sb, struct vfsmount *mnt,
337 struct autofs_sb_info *sbi, int __user *arg)
338{
339 struct dentry *dentry;
340 int ret = -EAGAIN;
341 int do_now = 0;
342
343 if (arg && get_user(do_now, arg))
344 return -EFAULT;
345
346 if ((dentry = autofs4_expire(sb, mnt, sbi, do_now)) != NULL) {
Ian Kent1f5f2c32006-03-27 01:14:44 -0800347 struct autofs_info *ino = autofs4_dentry_ino(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 /* This is synchronous because it makes the daemon a
350 little easier */
Ian Kent1f5f2c32006-03-27 01:14:44 -0800351 ino->flags |= AUTOFS_INF_EXPIRING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 ret = autofs4_wait(sbi, dentry, NFY_EXPIRE);
Ian Kent1f5f2c32006-03-27 01:14:44 -0800353 ino->flags &= ~AUTOFS_INF_EXPIRING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 dput(dentry);
355 }
Ian Kent1f5f2c32006-03-27 01:14:44 -0800356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 return ret;
358}
359