expire.c 13.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6
/* -*- c -*- --------------------------------------------------------------- *
 *
 * linux/fs/autofs/expire.c
 *
 *  Copyright 1997-1998 Transmeta Corporation -- All Rights Reserved
 *  Copyright 1999-2000 Jeremy Fitzhardinge <jeremy@goop.org>
I
Ian Kent 已提交
7
 *  Copyright 2001-2006 Ian Kent <raven@themaw.net>
L
Linus Torvalds 已提交
8 9 10 11 12 13 14 15 16 17 18
 *
 * This file is part of the Linux kernel and is made available under
 * the terms of the GNU General Public License, version 2, or at your
 * option, any later version, incorporated herein by reference.
 *
 * ------------------------------------------------------------------------- */

#include "autofs_i.h"

static unsigned long now;

19
/* Check if a dentry can be expired */
L
Linus Torvalds 已提交
20 21 22 23 24 25 26 27 28 29
static inline int autofs4_can_expire(struct dentry *dentry,
					unsigned long timeout, int do_now)
{
	struct autofs_info *ino = autofs4_dentry_ino(dentry);

	/* dentry in the process of being deleted */
	if (ino == NULL)
		return 0;

	/* No point expiring a pending mount */
30
	if (ino->flags & AUTOFS_INF_PENDING)
L
Linus Torvalds 已提交
31 32 33 34
		return 0;

	if (!do_now) {
		/* Too young to die */
35
		if (!timeout || time_after(ino->last_used + timeout, now))
L
Linus Torvalds 已提交
36 37 38 39 40 41 42 43 44 45 46
			return 0;

		/* update last_used here :-
		   - obviously makes sense if it is in use now
		   - less obviously, prevents rapid-fire expire
		     attempts if expire fails the first time */
		ino->last_used = now;
	}
	return 1;
}

47 48
/* Check a mount point for busyness */
static int autofs4_mount_busy(struct vfsmount *mnt, struct dentry *dentry)
L
Linus Torvalds 已提交
49
{
50
	struct dentry *top = dentry;
A
Al Viro 已提交
51
	struct path path = {.mnt = mnt, .dentry = dentry};
52
	int status = 1;
L
Linus Torvalds 已提交
53 54 55 56

	DPRINTK("dentry %p %.*s",
		dentry, (int)dentry->d_name.len, dentry->d_name.name);

A
Al Viro 已提交
57
	path_get(&path);
L
Linus Torvalds 已提交
58

59
	if (!follow_down_one(&path))
L
Linus Torvalds 已提交
60 61
		goto done;

A
Al Viro 已提交
62 63
	if (is_autofs4_dentry(path.dentry)) {
		struct autofs_sb_info *sbi = autofs4_sbi(path.dentry->d_sb);
64 65

		/* This is an autofs submount, we can't expire it */
66
		if (autofs_type_indirect(sbi->type))
67 68 69 70 71 72
			goto done;

		/*
		 * Otherwise it's an offset mount and we need to check
		 * if we can umount its mount, if there is one.
		 */
A
Al Viro 已提交
73
		if (!d_mountpoint(path.dentry)) {
74
			status = 0;
75
			goto done;
76
		}
77
	}
L
Linus Torvalds 已提交
78

79
	/* Update the expiry counter if fs is busy */
80
	if (!may_umount_tree(path.mnt)) {
81 82 83 84 85 86
		struct autofs_info *ino = autofs4_dentry_ino(top);
		ino->last_used = jiffies;
		goto done;
	}

	status = 0;
L
Linus Torvalds 已提交
87 88
done:
	DPRINTK("returning = %d", status);
A
Al Viro 已提交
89
	path_put(&path);
L
Linus Torvalds 已提交
90 91 92
	return status;
}

93
/*
N
Nick Piggin 已提交
94
 * Calculate and dget next entry in top down tree traversal.
95
 */
N
Nick Piggin 已提交
96 97
static struct dentry *get_next_positive_dentry(struct dentry *prev,
						struct dentry *root)
98
{
N
Nick Piggin 已提交
99 100 101 102 103
	struct list_head *next;
	struct dentry *p, *ret;

	if (prev == NULL)
		return dget(prev);
104

N
Nick Piggin 已提交
105
	spin_lock(&autofs4_lock);
N
Nick Piggin 已提交
106 107 108 109 110
relock:
	p = prev;
	spin_lock(&p->d_lock);
again:
	next = p->d_subdirs.next;
111 112
	if (next == &p->d_subdirs) {
		while (1) {
N
Nick Piggin 已提交
113 114 115 116
			struct dentry *parent;

			if (p == root) {
				spin_unlock(&p->d_lock);
N
Nick Piggin 已提交
117
				spin_unlock(&autofs4_lock);
N
Nick Piggin 已提交
118
				dput(prev);
119
				return NULL;
N
Nick Piggin 已提交
120 121 122 123 124 125 126 127 128
			}

			parent = p->d_parent;
			if (!spin_trylock(&parent->d_lock)) {
				spin_unlock(&p->d_lock);
				cpu_relax();
				goto relock;
			}
			spin_unlock(&p->d_lock);
129
			next = p->d_u.d_child.next;
N
Nick Piggin 已提交
130 131
			p = parent;
			if (next != &parent->d_subdirs)
132 133 134
				break;
		}
	}
N
Nick Piggin 已提交
135 136 137 138 139 140 141 142 143 144 145 146
	ret = list_entry(next, struct dentry, d_u.d_child);

	spin_lock_nested(&ret->d_lock, DENTRY_D_LOCK_NESTED);
	/* Negative dentry - try next */
	if (!simple_positive(ret)) {
		spin_unlock(&ret->d_lock);
		p = ret;
		goto again;
	}
	dget_dlock(ret);
	spin_unlock(&ret->d_lock);
	spin_unlock(&p->d_lock);
N
Nick Piggin 已提交
147
	spin_unlock(&autofs4_lock);
N
Nick Piggin 已提交
148 149 150 151

	dput(prev);

	return ret;
152 153
}

I
Ian Kent 已提交
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
/*
 * Check a direct mount point for busyness.
 * Direct mounts have similar expiry semantics to tree mounts.
 * The tree is not busy iff no mountpoints are busy and there are no
 * autofs submounts.
 */
static int autofs4_direct_busy(struct vfsmount *mnt,
				struct dentry *top,
				unsigned long timeout,
				int do_now)
{
	DPRINTK("top %p %.*s",
		top, (int) top->d_name.len, top->d_name.name);

	/* If it's busy update the expiry counters */
	if (!may_umount_tree(mnt)) {
		struct autofs_info *ino = autofs4_dentry_ino(top);
		if (ino)
			ino->last_used = jiffies;
		return 1;
	}

	/* Timeout of a direct mount is determined by its top dentry */
	if (!autofs4_can_expire(top, timeout, do_now))
		return 1;

	return 0;
}

L
Linus Torvalds 已提交
183 184 185
/* Check a directory tree of mount points for busyness
 * The tree is not busy iff no mountpoints are busy
 */
186 187 188 189
static int autofs4_tree_busy(struct vfsmount *mnt,
	       		     struct dentry *top,
			     unsigned long timeout,
			     int do_now)
L
Linus Torvalds 已提交
190
{
191
	struct autofs_info *top_ino = autofs4_dentry_ino(top);
192
	struct dentry *p;
L
Linus Torvalds 已提交
193

194
	DPRINTK("top %p %.*s",
L
Linus Torvalds 已提交
195 196 197 198
		top, (int)top->d_name.len, top->d_name.name);

	/* Negative dentry - give up */
	if (!simple_positive(top))
199
		return 1;
L
Linus Torvalds 已提交
200

N
Nick Piggin 已提交
201 202
	p = NULL;
	while ((p = get_next_positive_dentry(p, top))) {
L
Linus Torvalds 已提交
203
		DPRINTK("dentry %p %.*s",
204
			p, (int) p->d_name.len, p->d_name.name);
L
Linus Torvalds 已提交
205

206 207 208 209
		/*
		 * Is someone visiting anywhere in the subtree ?
		 * If there's no mount we need to check the usage
		 * count for the autofs dentry.
210
		 * If the fs is busy update the expiry counter.
211
		 */
212 213
		if (d_mountpoint(p)) {
			if (autofs4_mount_busy(mnt, p)) {
214
				top_ino->last_used = jiffies;
215
				dput(p);
216
				return 1;
L
Linus Torvalds 已提交
217
			}
218
		} else {
219
			struct autofs_info *ino = autofs4_dentry_ino(p);
220 221
			unsigned int ino_count = atomic_read(&ino->count);

222 223 224 225 226 227
			/*
			 * Clean stale dentries below that have not been
			 * invalidated after a mount fail during lookup
			 */
			d_invalidate(p);

228 229 230 231 232 233
			/* allow for dget above and top is already dgot */
			if (p == top)
				ino_count += 2;
			else
				ino_count++;

N
Nick Piggin 已提交
234
			if (p->d_count > ino_count) {
235
				top_ino->last_used = jiffies;
236 237 238
				dput(p);
				return 1;
			}
L
Linus Torvalds 已提交
239 240
		}
	}
241 242 243 244 245

	/* Timeout of a tree mount is ultimately determined by its top dentry */
	if (!autofs4_can_expire(top, timeout, do_now))
		return 1;

246
	return 0;
L
Linus Torvalds 已提交
247 248 249 250 251 252 253
}

static struct dentry *autofs4_check_leaves(struct vfsmount *mnt,
					   struct dentry *parent,
					   unsigned long timeout,
					   int do_now)
{
254
	struct dentry *p;
L
Linus Torvalds 已提交
255 256 257 258

	DPRINTK("parent %p %.*s",
		parent, (int)parent->d_name.len, parent->d_name.name);

N
Nick Piggin 已提交
259 260
	p = NULL;
	while ((p = get_next_positive_dentry(p, parent))) {
L
Linus Torvalds 已提交
261
		DPRINTK("dentry %p %.*s",
262
			p, (int) p->d_name.len, p->d_name.name);
L
Linus Torvalds 已提交
263

264
		if (d_mountpoint(p)) {
265 266
			/* Can we umount this guy */
			if (autofs4_mount_busy(mnt, p))
N
Nick Piggin 已提交
267
				continue;
L
Linus Torvalds 已提交
268

269 270
			/* Can we expire this guy */
			if (autofs4_can_expire(p, timeout, do_now))
271
				return p;
L
Linus Torvalds 已提交
272 273 274 275 276
		}
	}
	return NULL;
}

I
Ian Kent 已提交
277
/* Check if we can expire a direct mount (possibly a tree) */
278 279 280 281
struct dentry *autofs4_expire_direct(struct super_block *sb,
				     struct vfsmount *mnt,
				     struct autofs_sb_info *sbi,
				     int how)
I
Ian Kent 已提交
282 283 284 285 286
{
	unsigned long timeout;
	struct dentry *root = dget(sb->s_root);
	int do_now = how & AUTOFS_EXP_IMMEDIATE;

287
	if (!root)
I
Ian Kent 已提交
288 289 290 291 292 293 294 295
		return NULL;

	now = jiffies;
	timeout = sbi->exp_timeout;

	spin_lock(&sbi->fs_lock);
	if (!autofs4_direct_busy(mnt, root, timeout, do_now)) {
		struct autofs_info *ino = autofs4_dentry_ino(root);
296 297
		if (d_mountpoint(root)) {
			ino->flags |= AUTOFS_INF_MOUNTPOINT;
N
Nick Piggin 已提交
298 299 300
			spin_lock(&root->d_lock);
			root->d_flags &= ~DCACHE_MOUNTED;
			spin_unlock(&root->d_lock);
301
		}
I
Ian Kent 已提交
302
		ino->flags |= AUTOFS_INF_EXPIRING;
303
		managed_dentry_set_automount(root);
304
		init_completion(&ino->expire_complete);
I
Ian Kent 已提交
305 306 307 308 309 310 311 312 313
		spin_unlock(&sbi->fs_lock);
		return root;
	}
	spin_unlock(&sbi->fs_lock);
	dput(root);

	return NULL;
}

L
Linus Torvalds 已提交
314 315 316 317 318 319
/*
 * Find an eligible tree to time-out
 * A tree is eligible if :-
 *  - it is unused by any user process
 *  - it has been unused for exp_timeout time
 */
320 321 322 323
struct dentry *autofs4_expire_indirect(struct super_block *sb,
				       struct vfsmount *mnt,
				       struct autofs_sb_info *sbi,
				       int how)
L
Linus Torvalds 已提交
324 325 326
{
	unsigned long timeout;
	struct dentry *root = sb->s_root;
N
Nick Piggin 已提交
327
	struct dentry *dentry;
L
Linus Torvalds 已提交
328 329 330
	struct dentry *expired = NULL;
	int do_now = how & AUTOFS_EXP_IMMEDIATE;
	int exp_leaves = how & AUTOFS_EXP_LEAVES;
331 332
	struct autofs_info *ino;
	unsigned int ino_count;
L
Linus Torvalds 已提交
333

334
	if (!root)
L
Linus Torvalds 已提交
335 336 337 338 339
		return NULL;

	now = jiffies;
	timeout = sbi->exp_timeout;

N
Nick Piggin 已提交
340 341
	dentry = NULL;
	while ((dentry = get_next_positive_dentry(dentry, root))) {
342 343 344
		spin_lock(&sbi->fs_lock);
		ino = autofs4_dentry_ino(dentry);

I
Ian Kent 已提交
345 346 347 348 349 350
		/*
		 * Case 1: (i) indirect mount or top level pseudo direct mount
		 *	   (autofs-4.1).
		 *	   (ii) indirect mount with offset mount, check the "/"
		 *	   offset (autofs-5.0+).
		 */
L
Linus Torvalds 已提交
351 352 353 354
		if (d_mountpoint(dentry)) {
			DPRINTK("checking mountpoint %p %.*s",
				dentry, (int)dentry->d_name.len, dentry->d_name.name);

355 356
			/* Path walk currently on this dentry? */
			ino_count = atomic_read(&ino->count) + 2;
N
Nick Piggin 已提交
357
			if (dentry->d_count > ino_count)
358 359
				goto next;

360 361
			/* Can we umount this guy */
			if (autofs4_mount_busy(mnt, dentry))
L
Linus Torvalds 已提交
362 363
				goto next;

364 365
			/* Can we expire this guy */
			if (autofs4_can_expire(dentry, timeout, do_now)) {
L
Linus Torvalds 已提交
366
				expired = dentry;
367
				goto found;
L
Linus Torvalds 已提交
368 369 370 371
			}
			goto next;
		}

372
		if (simple_empty(dentry))
L
Linus Torvalds 已提交
373 374 375 376
			goto next;

		/* Case 2: tree mount, expire iff entire tree is not busy */
		if (!exp_leaves) {
377 378
			/* Path walk currently on this dentry? */
			ino_count = atomic_read(&ino->count) + 1;
N
Nick Piggin 已提交
379
			if (dentry->d_count > ino_count)
380
				goto next;
I
Ian Kent 已提交
381

382
			if (!autofs4_tree_busy(mnt, dentry, timeout, do_now)) {
I
Ian Kent 已提交
383
				expired = dentry;
384
				goto found;
L
Linus Torvalds 已提交
385
			}
I
Ian Kent 已提交
386 387 388 389
		/*
		 * Case 3: pseudo direct mount, expire individual leaves
		 *	   (autofs-4.1).
		 */
L
Linus Torvalds 已提交
390
		} else {
391 392
			/* Path walk currently on this dentry? */
			ino_count = atomic_read(&ino->count) + 1;
N
Nick Piggin 已提交
393
			if (dentry->d_count > ino_count)
394 395
				goto next;

L
Linus Torvalds 已提交
396 397 398
			expired = autofs4_check_leaves(mnt, dentry, timeout, do_now);
			if (expired) {
				dput(dentry);
399
				goto found;
L
Linus Torvalds 已提交
400 401 402
			}
		}
next:
403
		spin_unlock(&sbi->fs_lock);
L
Linus Torvalds 已提交
404 405
	}
	return NULL;
406 407 408 409

found:
	DPRINTK("returning %p %.*s",
		expired, (int)expired->d_name.len, expired->d_name.name);
410 411
	ino = autofs4_dentry_ino(expired);
	ino->flags |= AUTOFS_INF_EXPIRING;
412
	managed_dentry_set_automount(expired);
413
	init_completion(&ino->expire_complete);
414
	spin_unlock(&sbi->fs_lock);
N
Nick Piggin 已提交
415
	spin_lock(&autofs4_lock);
N
Nick Piggin 已提交
416 417
	spin_lock(&expired->d_parent->d_lock);
	spin_lock_nested(&expired->d_lock, DENTRY_D_LOCK_NESTED);
418
	list_move(&expired->d_parent->d_subdirs, &expired->d_u.d_child);
N
Nick Piggin 已提交
419 420
	spin_unlock(&expired->d_lock);
	spin_unlock(&expired->d_parent->d_lock);
N
Nick Piggin 已提交
421
	spin_unlock(&autofs4_lock);
422
	return expired;
L
Linus Torvalds 已提交
423 424
}

425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
int autofs4_expire_wait(struct dentry *dentry)
{
	struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
	struct autofs_info *ino = autofs4_dentry_ino(dentry);
	int status;

	/* Block on any pending expire */
	spin_lock(&sbi->fs_lock);
	if (ino->flags & AUTOFS_INF_EXPIRING) {
		spin_unlock(&sbi->fs_lock);

		DPRINTK("waiting for expire %p name=%.*s",
			 dentry, dentry->d_name.len, dentry->d_name.name);

		status = autofs4_wait(sbi, dentry, NFY_NONE);
		wait_for_completion(&ino->expire_complete);

		DPRINTK("expire done status=%d", status);

444
		if (d_unhashed(dentry))
445 446 447 448 449 450 451 452 453
			return -EAGAIN;

		return status;
	}
	spin_unlock(&sbi->fs_lock);

	return 0;
}

L
Linus Torvalds 已提交
454 455 456 457 458 459 460
/* Perform an expiry operation */
int autofs4_expire_run(struct super_block *sb,
		      struct vfsmount *mnt,
		      struct autofs_sb_info *sbi,
		      struct autofs_packet_expire __user *pkt_p)
{
	struct autofs_packet_expire pkt;
461
	struct autofs_info *ino;
L
Linus Torvalds 已提交
462
	struct dentry *dentry;
463
	int ret = 0;
L
Linus Torvalds 已提交
464 465 466 467 468 469

	memset(&pkt,0,sizeof pkt);

	pkt.hdr.proto_version = sbi->version;
	pkt.hdr.type = autofs_ptype_expire;

I
Ian Kent 已提交
470
	if ((dentry = autofs4_expire_indirect(sb, mnt, sbi, 0)) == NULL)
L
Linus Torvalds 已提交
471 472 473 474 475 476 477 478
		return -EAGAIN;

	pkt.len = dentry->d_name.len;
	memcpy(pkt.name, dentry->d_name.name, pkt.len);
	pkt.name[pkt.len] = '\0';
	dput(dentry);

	if ( copy_to_user(pkt_p, &pkt, sizeof(struct autofs_packet_expire)) )
479
		ret = -EFAULT;
L
Linus Torvalds 已提交
480

481 482 483
	spin_lock(&sbi->fs_lock);
	ino = autofs4_dentry_ino(dentry);
	ino->flags &= ~AUTOFS_INF_EXPIRING;
484 485
	if (!d_unhashed(dentry))
		managed_dentry_clear_automount(dentry);
486
	complete_all(&ino->expire_complete);
487 488 489
	spin_unlock(&sbi->fs_lock);

	return ret;
L
Linus Torvalds 已提交
490 491
}

492 493
int autofs4_do_expire_multi(struct super_block *sb, struct vfsmount *mnt,
			    struct autofs_sb_info *sbi, int when)
L
Linus Torvalds 已提交
494 495 496 497
{
	struct dentry *dentry;
	int ret = -EAGAIN;

498
	if (autofs_type_trigger(sbi->type))
499
		dentry = autofs4_expire_direct(sb, mnt, sbi, when);
I
Ian Kent 已提交
500
	else
501
		dentry = autofs4_expire_indirect(sb, mnt, sbi, when);
I
Ian Kent 已提交
502 503

	if (dentry) {
504
		struct autofs_info *ino = autofs4_dentry_ino(dentry);
L
Linus Torvalds 已提交
505 506 507 508

		/* This is synchronous because it makes the daemon a
                   little easier */
		ret = autofs4_wait(sbi, dentry, NFY_EXPIRE);
509

510
		spin_lock(&sbi->fs_lock);
511
		if (ino->flags & AUTOFS_INF_MOUNTPOINT) {
N
Nick Piggin 已提交
512 513 514 515 516 517 518 519
			spin_lock(&sb->s_root->d_lock);
			/*
			 * If we haven't been expired away, then reset
			 * mounted status.
			 */
			if (mnt->mnt_parent != mnt)
				sb->s_root->d_flags |= DCACHE_MOUNTED;
			spin_unlock(&sb->s_root->d_lock);
520 521
			ino->flags &= ~AUTOFS_INF_MOUNTPOINT;
		}
522
		ino->flags &= ~AUTOFS_INF_EXPIRING;
523 524
		if (ret)
			managed_dentry_clear_automount(dentry);
525
		complete_all(&ino->expire_complete);
526
		spin_unlock(&sbi->fs_lock);
L
Linus Torvalds 已提交
527 528
		dput(dentry);
	}
529

L
Linus Torvalds 已提交
530 531 532
	return ret;
}

533 534 535 536 537 538 539 540 541 542 543 544 545
/* Call repeatedly until it returns -EAGAIN, meaning there's nothing
   more to be done */
int autofs4_expire_multi(struct super_block *sb, struct vfsmount *mnt,
			struct autofs_sb_info *sbi, int __user *arg)
{
	int do_now = 0;

	if (arg && get_user(do_now, arg))
		return -EFAULT;

	return autofs4_do_expire_multi(sb, mnt, sbi, do_now);
}