blob: 3077d8f16523010a5aaaf90d017900bd723aa12a [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
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 */
Ian Kentc0ba7e52006-09-25 16:24:16 -070035 if (!timeout || time_after(ino->last_used + timeout, now))
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 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 Kente0a7aae2006-03-27 01:14:47 -080050 struct dentry *top = dentry;
Ian Kent1f5f2c32006-03-27 01:14:44 -080051 int status = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53 DPRINTK("dentry %p %.*s",
54 dentry, (int)dentry->d_name.len, dentry->d_name.name);
55
56 mntget(mnt);
57 dget(dentry);
58
Ian Kentbc9c4062008-11-06 12:53:22 -080059 if (!follow_down(&mnt, &dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 goto done;
61
Ian Kentbc9c4062008-11-06 12:53:22 -080062 if (is_autofs4_dentry(dentry)) {
63 struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
64
65 /* This is an autofs submount, we can't expire it */
Ian Kenta92daf62009-01-06 14:42:08 -080066 if (autofs_type_indirect(sbi->type))
Ian Kentbc9c4062008-11-06 12:53:22 -080067 goto done;
68
69 /*
70 * Otherwise it's an offset mount and we need to check
71 * if we can umount its mount, if there is one.
72 */
Ian Kenta8985f32009-04-30 15:08:09 -070073 if (!d_mountpoint(dentry)) {
74 status = 0;
Ian Kentbc9c4062008-11-06 12:53:22 -080075 goto done;
Ian Kenta8985f32009-04-30 15:08:09 -070076 }
Ian Kentbc9c4062008-11-06 12:53:22 -080077 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Ian Kente0a7aae2006-03-27 01:14:47 -080079 /* Update the expiry counter if fs is busy */
Ian Kente3474a82006-03-27 01:14:51 -080080 if (!may_umount_tree(mnt)) {
Ian Kente0a7aae2006-03-27 01:14:47 -080081 struct autofs_info *ino = autofs4_dentry_ino(top);
82 ino->last_used = jiffies;
83 goto done;
84 }
85
86 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087done:
88 DPRINTK("returning = %d", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 dput(dentry);
Jan Blunck868eb7a2008-05-01 04:35:10 -070090 mntput(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 return status;
92}
93
Ian Kent1ce12ba2006-03-27 01:14:45 -080094/*
95 * Calculate next entry in top down tree traversal.
96 * From next_mnt in namespace.c - elegant.
97 */
98static struct dentry *next_dentry(struct dentry *p, struct dentry *root)
99{
100 struct list_head *next = p->d_subdirs.next;
101
102 if (next == &p->d_subdirs) {
103 while (1) {
104 if (p == root)
105 return NULL;
106 next = p->d_u.d_child.next;
107 if (next != &p->d_parent->d_subdirs)
108 break;
109 p = p->d_parent;
110 }
111 }
112 return list_entry(next, struct dentry, d_u.d_child);
113}
114
Ian Kent3a15e2a2006-03-27 01:14:55 -0800115/*
116 * Check a direct mount point for busyness.
117 * Direct mounts have similar expiry semantics to tree mounts.
118 * The tree is not busy iff no mountpoints are busy and there are no
119 * autofs submounts.
120 */
121static int autofs4_direct_busy(struct vfsmount *mnt,
122 struct dentry *top,
123 unsigned long timeout,
124 int do_now)
125{
126 DPRINTK("top %p %.*s",
127 top, (int) top->d_name.len, top->d_name.name);
128
Ian Kent3a15e2a2006-03-27 01:14:55 -0800129 /* If it's busy update the expiry counters */
130 if (!may_umount_tree(mnt)) {
131 struct autofs_info *ino = autofs4_dentry_ino(top);
132 if (ino)
133 ino->last_used = jiffies;
134 return 1;
135 }
136
137 /* Timeout of a direct mount is determined by its top dentry */
138 if (!autofs4_can_expire(top, timeout, do_now))
139 return 1;
140
141 return 0;
142}
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144/* Check a directory tree of mount points for busyness
145 * The tree is not busy iff no mountpoints are busy
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 */
Ian Kent1f5f2c32006-03-27 01:14:44 -0800147static int autofs4_tree_busy(struct vfsmount *mnt,
148 struct dentry *top,
149 unsigned long timeout,
150 int do_now)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
Ian Kente0a7aae2006-03-27 01:14:47 -0800152 struct autofs_info *top_ino = autofs4_dentry_ino(top);
Ian Kent1ce12ba2006-03-27 01:14:45 -0800153 struct dentry *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Ian Kent1f5f2c32006-03-27 01:14:44 -0800155 DPRINTK("top %p %.*s",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 top, (int)top->d_name.len, top->d_name.name);
157
158 /* Negative dentry - give up */
159 if (!simple_positive(top))
Ian Kent1f5f2c32006-03-27 01:14:44 -0800160 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 spin_lock(&dcache_lock);
Ian Kent1ce12ba2006-03-27 01:14:45 -0800163 for (p = top; p; p = next_dentry(p, top)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 /* Negative dentry - give up */
Ian Kent1ce12ba2006-03-27 01:14:45 -0800165 if (!simple_positive(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168 DPRINTK("dentry %p %.*s",
Ian Kent1ce12ba2006-03-27 01:14:45 -0800169 p, (int) p->d_name.len, p->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Ian Kent1ce12ba2006-03-27 01:14:45 -0800171 p = dget(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 spin_unlock(&dcache_lock);
173
Ian Kent1aff3c82006-03-27 01:14:46 -0800174 /*
175 * Is someone visiting anywhere in the subtree ?
176 * If there's no mount we need to check the usage
177 * count for the autofs dentry.
Ian Kente0a7aae2006-03-27 01:14:47 -0800178 * If the fs is busy update the expiry counter.
Ian Kent1aff3c82006-03-27 01:14:46 -0800179 */
Ian Kent1ce12ba2006-03-27 01:14:45 -0800180 if (d_mountpoint(p)) {
Ian Kent1ce12ba2006-03-27 01:14:45 -0800181 if (autofs4_mount_busy(mnt, p)) {
Ian Kente0a7aae2006-03-27 01:14:47 -0800182 top_ino->last_used = jiffies;
Ian Kent1ce12ba2006-03-27 01:14:45 -0800183 dput(p);
Ian Kent1f5f2c32006-03-27 01:14:44 -0800184 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 }
Ian Kent1aff3c82006-03-27 01:14:46 -0800186 } else {
Ian Kente0a7aae2006-03-27 01:14:47 -0800187 struct autofs_info *ino = autofs4_dentry_ino(p);
Ian Kent1aff3c82006-03-27 01:14:46 -0800188 unsigned int ino_count = atomic_read(&ino->count);
189
Ian Kentf9022f62006-06-25 05:48:47 -0700190 /*
191 * Clean stale dentries below that have not been
192 * invalidated after a mount fail during lookup
193 */
194 d_invalidate(p);
195
Ian Kent1aff3c82006-03-27 01:14:46 -0800196 /* allow for dget above and top is already dgot */
197 if (p == top)
198 ino_count += 2;
199 else
200 ino_count++;
201
202 if (atomic_read(&p->d_count) > ino_count) {
Ian Kente0a7aae2006-03-27 01:14:47 -0800203 top_ino->last_used = jiffies;
Ian Kent1aff3c82006-03-27 01:14:46 -0800204 dput(p);
205 return 1;
206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 }
Ian Kent1ce12ba2006-03-27 01:14:45 -0800208 dput(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 spin_lock(&dcache_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 }
211 spin_unlock(&dcache_lock);
Ian Kent1aff3c82006-03-27 01:14:46 -0800212
213 /* Timeout of a tree mount is ultimately determined by its top dentry */
214 if (!autofs4_can_expire(top, timeout, do_now))
215 return 1;
216
Ian Kent1f5f2c32006-03-27 01:14:44 -0800217 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
220static struct dentry *autofs4_check_leaves(struct vfsmount *mnt,
221 struct dentry *parent,
222 unsigned long timeout,
223 int do_now)
224{
Ian Kent1ce12ba2006-03-27 01:14:45 -0800225 struct dentry *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 DPRINTK("parent %p %.*s",
228 parent, (int)parent->d_name.len, parent->d_name.name);
229
230 spin_lock(&dcache_lock);
Ian Kent1ce12ba2006-03-27 01:14:45 -0800231 for (p = parent; p; p = next_dentry(p, parent)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 /* Negative dentry - give up */
Ian Kent1ce12ba2006-03-27 01:14:45 -0800233 if (!simple_positive(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236 DPRINTK("dentry %p %.*s",
Ian Kent1ce12ba2006-03-27 01:14:45 -0800237 p, (int) p->d_name.len, p->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Ian Kent1ce12ba2006-03-27 01:14:45 -0800239 p = dget(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 spin_unlock(&dcache_lock);
241
Ian Kent1ce12ba2006-03-27 01:14:45 -0800242 if (d_mountpoint(p)) {
Ian Kente0a7aae2006-03-27 01:14:47 -0800243 /* Can we umount this guy */
244 if (autofs4_mount_busy(mnt, p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 goto cont;
246
Ian Kente0a7aae2006-03-27 01:14:47 -0800247 /* Can we expire this guy */
248 if (autofs4_can_expire(p, timeout, do_now))
Ian Kent1ce12ba2006-03-27 01:14:45 -0800249 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 }
251cont:
Ian Kent1ce12ba2006-03-27 01:14:45 -0800252 dput(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 spin_lock(&dcache_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 }
255 spin_unlock(&dcache_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 return NULL;
257}
258
Ian Kent3a15e2a2006-03-27 01:14:55 -0800259/* Check if we can expire a direct mount (possibly a tree) */
Ian Kent8d7b48e2008-10-15 22:02:54 -0700260struct dentry *autofs4_expire_direct(struct super_block *sb,
261 struct vfsmount *mnt,
262 struct autofs_sb_info *sbi,
263 int how)
Ian Kent3a15e2a2006-03-27 01:14:55 -0800264{
265 unsigned long timeout;
266 struct dentry *root = dget(sb->s_root);
267 int do_now = how & AUTOFS_EXP_IMMEDIATE;
268
Ian Kentc0ba7e52006-09-25 16:24:16 -0700269 if (!root)
Ian Kent3a15e2a2006-03-27 01:14:55 -0800270 return NULL;
271
272 now = jiffies;
273 timeout = sbi->exp_timeout;
274
Ian Kent3a15e2a2006-03-27 01:14:55 -0800275 spin_lock(&sbi->fs_lock);
276 if (!autofs4_direct_busy(mnt, root, timeout, do_now)) {
277 struct autofs_info *ino = autofs4_dentry_ino(root);
Ian Kent6e60a9a2008-07-23 21:30:27 -0700278 if (d_mountpoint(root)) {
279 ino->flags |= AUTOFS_INF_MOUNTPOINT;
280 root->d_mounted--;
281 }
Ian Kent3a15e2a2006-03-27 01:14:55 -0800282 ino->flags |= AUTOFS_INF_EXPIRING;
Ian Kent6e60a9a2008-07-23 21:30:27 -0700283 init_completion(&ino->expire_complete);
Ian Kent3a15e2a2006-03-27 01:14:55 -0800284 spin_unlock(&sbi->fs_lock);
285 return root;
286 }
287 spin_unlock(&sbi->fs_lock);
288 dput(root);
289
290 return NULL;
291}
292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293/*
294 * Find an eligible tree to time-out
295 * A tree is eligible if :-
296 * - it is unused by any user process
297 * - it has been unused for exp_timeout time
298 */
Ian Kent8d7b48e2008-10-15 22:02:54 -0700299struct dentry *autofs4_expire_indirect(struct super_block *sb,
300 struct vfsmount *mnt,
301 struct autofs_sb_info *sbi,
302 int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
304 unsigned long timeout;
305 struct dentry *root = sb->s_root;
306 struct dentry *expired = NULL;
307 struct list_head *next;
308 int do_now = how & AUTOFS_EXP_IMMEDIATE;
309 int exp_leaves = how & AUTOFS_EXP_LEAVES;
Ian Kent97e74492008-07-23 21:30:26 -0700310 struct autofs_info *ino;
311 unsigned int ino_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Ian Kentc0ba7e52006-09-25 16:24:16 -0700313 if (!root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 return NULL;
315
316 now = jiffies;
317 timeout = sbi->exp_timeout;
318
319 spin_lock(&dcache_lock);
320 next = root->d_subdirs.next;
321
322 /* On exit from the loop expire is set to a dgot dentry
323 * to expire or it's NULL */
324 while ( next != &root->d_subdirs ) {
Eric Dumazet5160ee62006-01-08 01:03:32 -0800325 struct dentry *dentry = list_entry(next, struct dentry, d_u.d_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 /* Negative dentry - give up */
Ian Kent1f5f2c32006-03-27 01:14:44 -0800328 if (!simple_positive(dentry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 next = next->next;
330 continue;
331 }
332
333 dentry = dget(dentry);
334 spin_unlock(&dcache_lock);
335
Ian Kent97e74492008-07-23 21:30:26 -0700336 spin_lock(&sbi->fs_lock);
337 ino = autofs4_dentry_ino(dentry);
338
Ian Kent3a15e2a2006-03-27 01:14:55 -0800339 /*
340 * Case 1: (i) indirect mount or top level pseudo direct mount
341 * (autofs-4.1).
342 * (ii) indirect mount with offset mount, check the "/"
343 * offset (autofs-5.0+).
344 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 if (d_mountpoint(dentry)) {
346 DPRINTK("checking mountpoint %p %.*s",
347 dentry, (int)dentry->d_name.len, dentry->d_name.name);
348
Ian Kent97e74492008-07-23 21:30:26 -0700349 /* Path walk currently on this dentry? */
350 ino_count = atomic_read(&ino->count) + 2;
351 if (atomic_read(&dentry->d_count) > ino_count)
352 goto next;
353
Ian Kente0a7aae2006-03-27 01:14:47 -0800354 /* Can we umount this guy */
355 if (autofs4_mount_busy(mnt, dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 goto next;
357
Ian Kente0a7aae2006-03-27 01:14:47 -0800358 /* Can we expire this guy */
359 if (autofs4_can_expire(dentry, timeout, do_now)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 expired = dentry;
Ian Kentafec5702008-05-01 04:35:06 -0700361 goto found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 }
363 goto next;
364 }
365
Ian Kent1f5f2c32006-03-27 01:14:44 -0800366 if (simple_empty(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 goto next;
368
369 /* Case 2: tree mount, expire iff entire tree is not busy */
370 if (!exp_leaves) {
Ian Kent97e74492008-07-23 21:30:26 -0700371 /* Path walk currently on this dentry? */
372 ino_count = atomic_read(&ino->count) + 1;
373 if (atomic_read(&dentry->d_count) > ino_count)
374 goto next;
Ian Kent3a9720c2005-05-01 08:59:17 -0700375
Ian Kent97e74492008-07-23 21:30:26 -0700376 if (!autofs4_tree_busy(mnt, dentry, timeout, do_now)) {
Ian Kent3a9720c2005-05-01 08:59:17 -0700377 expired = dentry;
Ian Kentafec5702008-05-01 04:35:06 -0700378 goto found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 }
Ian Kent3a15e2a2006-03-27 01:14:55 -0800380 /*
381 * Case 3: pseudo direct mount, expire individual leaves
382 * (autofs-4.1).
383 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 } else {
Ian Kent97e74492008-07-23 21:30:26 -0700385 /* Path walk currently on this dentry? */
386 ino_count = atomic_read(&ino->count) + 1;
387 if (atomic_read(&dentry->d_count) > ino_count)
388 goto next;
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 expired = autofs4_check_leaves(mnt, dentry, timeout, do_now);
391 if (expired) {
392 dput(dentry);
Ian Kentafec5702008-05-01 04:35:06 -0700393 goto found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 }
395 }
396next:
Ian Kent97e74492008-07-23 21:30:26 -0700397 spin_unlock(&sbi->fs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 dput(dentry);
399 spin_lock(&dcache_lock);
400 next = next->next;
401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 spin_unlock(&dcache_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 return NULL;
Ian Kentafec5702008-05-01 04:35:06 -0700404
405found:
406 DPRINTK("returning %p %.*s",
407 expired, (int)expired->d_name.len, expired->d_name.name);
Ian Kent97e74492008-07-23 21:30:26 -0700408 ino = autofs4_dentry_ino(expired);
409 ino->flags |= AUTOFS_INF_EXPIRING;
Ian Kent6e60a9a2008-07-23 21:30:27 -0700410 init_completion(&ino->expire_complete);
Ian Kent97e74492008-07-23 21:30:26 -0700411 spin_unlock(&sbi->fs_lock);
Ian Kentafec5702008-05-01 04:35:06 -0700412 spin_lock(&dcache_lock);
413 list_move(&expired->d_parent->d_subdirs, &expired->d_u.d_child);
414 spin_unlock(&dcache_lock);
415 return expired;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
417
Ian Kent06a35982008-07-23 21:30:28 -0700418int autofs4_expire_wait(struct dentry *dentry)
419{
420 struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
421 struct autofs_info *ino = autofs4_dentry_ino(dentry);
422 int status;
423
424 /* Block on any pending expire */
425 spin_lock(&sbi->fs_lock);
426 if (ino->flags & AUTOFS_INF_EXPIRING) {
427 spin_unlock(&sbi->fs_lock);
428
429 DPRINTK("waiting for expire %p name=%.*s",
430 dentry, dentry->d_name.len, dentry->d_name.name);
431
432 status = autofs4_wait(sbi, dentry, NFY_NONE);
433 wait_for_completion(&ino->expire_complete);
434
435 DPRINTK("expire done status=%d", status);
436
437 if (d_unhashed(dentry))
438 return -EAGAIN;
439
440 return status;
441 }
442 spin_unlock(&sbi->fs_lock);
443
444 return 0;
445}
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447/* Perform an expiry operation */
448int autofs4_expire_run(struct super_block *sb,
449 struct vfsmount *mnt,
450 struct autofs_sb_info *sbi,
451 struct autofs_packet_expire __user *pkt_p)
452{
453 struct autofs_packet_expire pkt;
Ian Kent97e74492008-07-23 21:30:26 -0700454 struct autofs_info *ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 struct dentry *dentry;
Ian Kent97e74492008-07-23 21:30:26 -0700456 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458 memset(&pkt,0,sizeof pkt);
459
460 pkt.hdr.proto_version = sbi->version;
461 pkt.hdr.type = autofs_ptype_expire;
462
Ian Kent3a15e2a2006-03-27 01:14:55 -0800463 if ((dentry = autofs4_expire_indirect(sb, mnt, sbi, 0)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 return -EAGAIN;
465
466 pkt.len = dentry->d_name.len;
467 memcpy(pkt.name, dentry->d_name.name, pkt.len);
468 pkt.name[pkt.len] = '\0';
469 dput(dentry);
470
471 if ( copy_to_user(pkt_p, &pkt, sizeof(struct autofs_packet_expire)) )
Ian Kent97e74492008-07-23 21:30:26 -0700472 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Ian Kent97e74492008-07-23 21:30:26 -0700474 spin_lock(&sbi->fs_lock);
475 ino = autofs4_dentry_ino(dentry);
476 ino->flags &= ~AUTOFS_INF_EXPIRING;
Ian Kent6e60a9a2008-07-23 21:30:27 -0700477 complete_all(&ino->expire_complete);
Ian Kent97e74492008-07-23 21:30:26 -0700478 spin_unlock(&sbi->fs_lock);
479
480 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481}
482
Ian Kent56fcef72009-03-31 15:24:43 -0700483int autofs4_do_expire_multi(struct super_block *sb, struct vfsmount *mnt,
484 struct autofs_sb_info *sbi, int when)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
486 struct dentry *dentry;
487 int ret = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Ian Kenta92daf62009-01-06 14:42:08 -0800489 if (autofs_type_trigger(sbi->type))
Ian Kent56fcef72009-03-31 15:24:43 -0700490 dentry = autofs4_expire_direct(sb, mnt, sbi, when);
Ian Kent3a15e2a2006-03-27 01:14:55 -0800491 else
Ian Kent56fcef72009-03-31 15:24:43 -0700492 dentry = autofs4_expire_indirect(sb, mnt, sbi, when);
Ian Kent3a15e2a2006-03-27 01:14:55 -0800493
494 if (dentry) {
Ian Kent1f5f2c32006-03-27 01:14:44 -0800495 struct autofs_info *ino = autofs4_dentry_ino(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497 /* This is synchronous because it makes the daemon a
498 little easier */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 ret = autofs4_wait(sbi, dentry, NFY_EXPIRE);
Ian Kent6e60a9a2008-07-23 21:30:27 -0700500
Ian Kent97e74492008-07-23 21:30:26 -0700501 spin_lock(&sbi->fs_lock);
Ian Kent6e60a9a2008-07-23 21:30:27 -0700502 if (ino->flags & AUTOFS_INF_MOUNTPOINT) {
503 sb->s_root->d_mounted++;
504 ino->flags &= ~AUTOFS_INF_MOUNTPOINT;
505 }
Ian Kent1f5f2c32006-03-27 01:14:44 -0800506 ino->flags &= ~AUTOFS_INF_EXPIRING;
Ian Kent6e60a9a2008-07-23 21:30:27 -0700507 complete_all(&ino->expire_complete);
Ian Kent97e74492008-07-23 21:30:26 -0700508 spin_unlock(&sbi->fs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 dput(dentry);
510 }
Ian Kent1f5f2c32006-03-27 01:14:44 -0800511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 return ret;
513}
514
Ian Kent56fcef72009-03-31 15:24:43 -0700515/* Call repeatedly until it returns -EAGAIN, meaning there's nothing
516 more to be done */
517int autofs4_expire_multi(struct super_block *sb, struct vfsmount *mnt,
518 struct autofs_sb_info *sbi, int __user *arg)
519{
520 int do_now = 0;
521
522 if (arg && get_user(do_now, arg))
523 return -EFAULT;
524
525 return autofs4_do_expire_multi(sb, mnt, sbi, do_now);
526}
527