autofs4: cleanup active and expire lookup
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / fs / autofs4 / root.c
CommitLineData
1da177e4
LT
1/* -*- c -*- --------------------------------------------------------------- *
2 *
3 * linux/fs/autofs/root.c
4 *
5 * Copyright 1997-1998 Transmeta Corporation -- All Rights Reserved
6 * Copyright 1999-2000 Jeremy Fitzhardinge <jeremy@goop.org>
34ca959c 7 * Copyright 2001-2006 Ian Kent <raven@themaw.net>
1da177e4
LT
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
16f7e0fe 15#include <linux/capability.h>
1da177e4
LT
16#include <linux/errno.h>
17#include <linux/stat.h>
18#include <linux/param.h>
19#include <linux/time.h>
1da177e4
LT
20#include "autofs_i.h"
21
22static int autofs4_dir_symlink(struct inode *,struct dentry *,const char *);
23static int autofs4_dir_unlink(struct inode *,struct dentry *);
24static int autofs4_dir_rmdir(struct inode *,struct dentry *);
25static int autofs4_dir_mkdir(struct inode *,struct dentry *,int);
26static int autofs4_root_ioctl(struct inode *, struct file *,unsigned int,unsigned long);
27static int autofs4_dir_open(struct inode *inode, struct file *file);
1da177e4 28static struct dentry *autofs4_lookup(struct inode *,struct dentry *, struct nameidata *);
34ca959c 29static void *autofs4_follow_link(struct dentry *, struct nameidata *);
1da177e4 30
6d5cb926
IK
31#define TRIGGER_FLAGS (LOOKUP_CONTINUE | LOOKUP_DIRECTORY)
32#define TRIGGER_INTENTS (LOOKUP_OPEN | LOOKUP_CREATE)
33
4b6f5d20 34const struct file_operations autofs4_root_operations = {
1da177e4
LT
35 .open = dcache_dir_open,
36 .release = dcache_dir_close,
37 .read = generic_read_dir,
aa55ddf3 38 .readdir = dcache_readdir,
59af1584 39 .llseek = dcache_dir_lseek,
1da177e4
LT
40 .ioctl = autofs4_root_ioctl,
41};
42
4b6f5d20 43const struct file_operations autofs4_dir_operations = {
1da177e4 44 .open = autofs4_dir_open,
ff9cd499 45 .release = dcache_dir_close,
1da177e4 46 .read = generic_read_dir,
ff9cd499 47 .readdir = dcache_readdir,
59af1584 48 .llseek = dcache_dir_lseek,
1da177e4
LT
49};
50
754661f1 51const struct inode_operations autofs4_indirect_root_inode_operations = {
1da177e4
LT
52 .lookup = autofs4_lookup,
53 .unlink = autofs4_dir_unlink,
54 .symlink = autofs4_dir_symlink,
55 .mkdir = autofs4_dir_mkdir,
56 .rmdir = autofs4_dir_rmdir,
57};
58
754661f1 59const struct inode_operations autofs4_direct_root_inode_operations = {
34ca959c 60 .lookup = autofs4_lookup,
871f9434
IK
61 .unlink = autofs4_dir_unlink,
62 .mkdir = autofs4_dir_mkdir,
63 .rmdir = autofs4_dir_rmdir,
34ca959c
IK
64 .follow_link = autofs4_follow_link,
65};
66
754661f1 67const struct inode_operations autofs4_dir_inode_operations = {
1da177e4
LT
68 .lookup = autofs4_lookup,
69 .unlink = autofs4_dir_unlink,
70 .symlink = autofs4_dir_symlink,
71 .mkdir = autofs4_dir_mkdir,
72 .rmdir = autofs4_dir_rmdir,
73};
74
4f8427d1
IK
75static void autofs4_add_active(struct dentry *dentry)
76{
77 struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
78 struct autofs_info *ino = autofs4_dentry_ino(dentry);
79 if (ino) {
80 spin_lock(&sbi->lookup_lock);
81 if (!ino->active_count) {
82 if (list_empty(&ino->active))
83 list_add(&ino->active, &sbi->active_list);
84 }
85 ino->active_count++;
86 spin_unlock(&sbi->lookup_lock);
87 }
88 return;
89}
90
91static void autofs4_del_active(struct dentry *dentry)
92{
93 struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
94 struct autofs_info *ino = autofs4_dentry_ino(dentry);
95 if (ino) {
96 spin_lock(&sbi->lookup_lock);
97 ino->active_count--;
98 if (!ino->active_count) {
99 if (!list_empty(&ino->active))
100 list_del_init(&ino->active);
101 }
102 spin_unlock(&sbi->lookup_lock);
103 }
104 return;
105}
106
36b6413e
IK
107static unsigned int autofs4_need_mount(unsigned int flags)
108{
109 unsigned int res = 0;
110 if (flags & (TRIGGER_FLAGS | TRIGGER_INTENTS))
111 res = 1;
112 return res;
113}
114
1da177e4
LT
115static int autofs4_dir_open(struct inode *inode, struct file *file)
116{
a4669ed8 117 struct dentry *dentry = file->f_path.dentry;
1da177e4 118 struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
f360ce3b 119
1da177e4
LT
120 DPRINTK("file=%p dentry=%p %.*s",
121 file, dentry, dentry->d_name.len, dentry->d_name.name);
122
123 if (autofs4_oz_mode(sbi))
124 goto out;
125
ff9cd499
IK
126 /*
127 * An empty directory in an autofs file system is always a
128 * mount point. The daemon must have failed to mount this
129 * during lookup so it doesn't exist. This can happen, for
130 * example, if user space returns an incorrect status for a
131 * mount request. Otherwise we're doing a readdir on the
132 * autofs file system so just let the libfs routines handle
133 * it.
134 */
135 spin_lock(&dcache_lock);
136 if (!d_mountpoint(dentry) && __simple_empty(dentry)) {
1da177e4 137 spin_unlock(&dcache_lock);
ff9cd499 138 return -ENOENT;
1da177e4 139 }
ff9cd499 140 spin_unlock(&dcache_lock);
1da177e4 141
1da177e4 142out:
ff9cd499 143 return dcache_dir_open(inode, file);
1da177e4
LT
144}
145
862b110f 146static int try_to_fill_dentry(struct dentry *dentry, int flags)
1da177e4 147{
862b110f 148 struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
718c604a 149 struct autofs_info *ino = autofs4_dentry_ino(dentry);
9d2de6ad 150 int status;
1da177e4 151
1da177e4
LT
152 DPRINTK("dentry=%p %.*s ino=%p",
153 dentry, dentry->d_name.len, dentry->d_name.name, dentry->d_inode);
154
718c604a
IK
155 /*
156 * Wait for a pending mount, triggering one if there
157 * isn't one already
158 */
1da177e4
LT
159 if (dentry->d_inode == NULL) {
160 DPRINTK("waiting for mount name=%.*s",
161 dentry->d_name.len, dentry->d_name.name);
162
163 status = autofs4_wait(sbi, dentry, NFY_MOUNT);
718c604a 164
1da177e4
LT
165 DPRINTK("mount done status=%d", status);
166
1da177e4
LT
167 /* Turn this into a real negative dentry? */
168 if (status == -ENOENT) {
aa952eb2
IK
169 spin_lock(&sbi->fs_lock);
170 ino->flags &= ~AUTOFS_INF_PENDING;
171 spin_unlock(&sbi->fs_lock);
34ca959c 172 return status;
1da177e4
LT
173 } else if (status) {
174 /* Return a negative dentry, but leave it "pending" */
34ca959c 175 return status;
1da177e4
LT
176 }
177 /* Trigger mount for path component or follow link */
aa952eb2 178 } else if (ino->flags & AUTOFS_INF_PENDING ||
36b6413e 179 autofs4_need_mount(flags) ||
1da177e4
LT
180 current->link_count) {
181 DPRINTK("waiting for mount name=%.*s",
182 dentry->d_name.len, dentry->d_name.name);
183
aa952eb2
IK
184 spin_lock(&sbi->fs_lock);
185 ino->flags |= AUTOFS_INF_PENDING;
186 spin_unlock(&sbi->fs_lock);
1da177e4
LT
187 status = autofs4_wait(sbi, dentry, NFY_MOUNT);
188
189 DPRINTK("mount done status=%d", status);
190
191 if (status) {
aa952eb2
IK
192 spin_lock(&sbi->fs_lock);
193 ino->flags &= ~AUTOFS_INF_PENDING;
194 spin_unlock(&sbi->fs_lock);
34ca959c 195 return status;
1da177e4
LT
196 }
197 }
198
e0a7aae9
IK
199 /* Initialize expiry counter after successful mount */
200 if (ino)
201 ino->last_used = jiffies;
202
aa952eb2
IK
203 spin_lock(&sbi->fs_lock);
204 ino->flags &= ~AUTOFS_INF_PENDING;
205 spin_unlock(&sbi->fs_lock);
03379044 206
9d2de6ad 207 return 0;
34ca959c
IK
208}
209
210/* For autofs direct mounts the follow link triggers the mount */
211static void *autofs4_follow_link(struct dentry *dentry, struct nameidata *nd)
212{
213 struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
a5370553 214 struct autofs_info *ino = autofs4_dentry_ino(dentry);
34ca959c
IK
215 int oz_mode = autofs4_oz_mode(sbi);
216 unsigned int lookup_type;
217 int status;
218
219 DPRINTK("dentry=%p %.*s oz_mode=%d nd->flags=%d",
220 dentry, dentry->d_name.len, dentry->d_name.name, oz_mode,
221 nd->flags);
6e60a9ab
IK
222 /*
223 * For an expire of a covered direct or offset mount we need
9393bd07 224 * to break out of follow_down() at the autofs mount trigger
6e60a9ab
IK
225 * (d_mounted--), so we can see the expiring flag, and manage
226 * the blocking and following here until the expire is completed.
227 */
228 if (oz_mode) {
229 spin_lock(&sbi->fs_lock);
230 if (ino->flags & AUTOFS_INF_EXPIRING) {
231 spin_unlock(&sbi->fs_lock);
232 /* Follow down to our covering mount. */
9393bd07 233 if (!follow_down(&nd->path))
6e60a9ab 234 goto done;
ec6e8c7d 235 goto follow;
6e60a9ab
IK
236 }
237 spin_unlock(&sbi->fs_lock);
34ca959c 238 goto done;
6e60a9ab 239 }
34ca959c 240
6e60a9ab 241 /* If an expire request is pending everyone must wait. */
06a35985 242 autofs4_expire_wait(dentry);
871f9434 243
6e60a9ab 244 /* We trigger a mount for almost all flags */
36b6413e 245 lookup_type = autofs4_need_mount(nd->flags);
aa952eb2
IK
246 spin_lock(&sbi->fs_lock);
247 spin_lock(&dcache_lock);
248 if (!(lookup_type || ino->flags & AUTOFS_INF_PENDING)) {
249 spin_unlock(&dcache_lock);
250 spin_unlock(&sbi->fs_lock);
ec6e8c7d 251 goto follow;
aa952eb2 252 }
6e60a9ab 253
871f9434 254 /*
6e60a9ab
IK
255 * If the dentry contains directories then it is an autofs
256 * multi-mount with no root mount offset. So don't try to
257 * mount it again.
871f9434 258 */
aa952eb2 259 if (ino->flags & AUTOFS_INF_PENDING ||
26e81b31 260 (!d_mountpoint(dentry) && __simple_empty(dentry))) {
871f9434 261 spin_unlock(&dcache_lock);
aa952eb2 262 spin_unlock(&sbi->fs_lock);
871f9434
IK
263
264 status = try_to_fill_dentry(dentry, 0);
265 if (status)
266 goto out_error;
267
6e60a9ab 268 goto follow;
34ca959c 269 }
871f9434 270 spin_unlock(&dcache_lock);
aa952eb2 271 spin_unlock(&sbi->fs_lock);
6e60a9ab
IK
272follow:
273 /*
274 * If there is no root mount it must be an autofs
275 * multi-mount with no root offset so we don't need
276 * to follow it.
277 */
278 if (d_mountpoint(dentry)) {
9393bd07 279 if (!autofs4_follow_mount(&nd->path)) {
6e60a9ab
IK
280 status = -ENOENT;
281 goto out_error;
282 }
283 }
34ca959c
IK
284
285done:
286 return NULL;
287
288out_error:
1d957f9b 289 path_put(&nd->path);
34ca959c 290 return ERR_PTR(status);
1da177e4
LT
291}
292
293/*
294 * Revalidate is called on every cache lookup. Some of those
295 * cache lookups may actually happen while the dentry is not
296 * yet completely filled in, and revalidate has to delay such
297 * lookups..
298 */
718c604a 299static int autofs4_revalidate(struct dentry *dentry, struct nameidata *nd)
1da177e4 300{
718c604a 301 struct inode *dir = dentry->d_parent->d_inode;
1da177e4
LT
302 struct autofs_sb_info *sbi = autofs4_sbi(dir->i_sb);
303 int oz_mode = autofs4_oz_mode(sbi);
304 int flags = nd ? nd->flags : 0;
bcdc5e01 305 int status = 1;
1da177e4
LT
306
307 /* Pending dentry */
97e7449a 308 spin_lock(&sbi->fs_lock);
1da177e4 309 if (autofs4_ispending(dentry)) {
bcdc5e01 310 /* The daemon never causes a mount to trigger */
97e7449a
IK
311 spin_unlock(&sbi->fs_lock);
312
bcdc5e01
IK
313 if (oz_mode)
314 return 1;
315
06a35985
IK
316 /*
317 * If the directory has gone away due to an expire
318 * we have been called as ->d_revalidate() and so
319 * we need to return false and proceed to ->lookup().
320 */
321 if (autofs4_expire_wait(dentry) == -EAGAIN)
322 return 0;
323
bcdc5e01
IK
324 /*
325 * A zero status is success otherwise we have a
326 * negative error code.
327 */
328 status = try_to_fill_dentry(dentry, flags);
329 if (status == 0)
f50b6f86
IK
330 return 1;
331
bcdc5e01 332 return status;
1da177e4 333 }
97e7449a 334 spin_unlock(&sbi->fs_lock);
1da177e4
LT
335
336 /* Negative dentry.. invalidate if "old" */
337 if (dentry->d_inode == NULL)
2d753e62 338 return 0;
1da177e4
LT
339
340 /* Check for a non-mountpoint directory with no contents */
341 spin_lock(&dcache_lock);
342 if (S_ISDIR(dentry->d_inode->i_mode) &&
343 !d_mountpoint(dentry) &&
90a59c7c 344 __simple_empty(dentry)) {
1da177e4
LT
345 DPRINTK("dentry=%p %.*s, emptydir",
346 dentry, dentry->d_name.len, dentry->d_name.name);
347 spin_unlock(&dcache_lock);
97e7449a 348
bcdc5e01
IK
349 /* The daemon never causes a mount to trigger */
350 if (oz_mode)
351 return 1;
352
353 /*
354 * A zero status is success otherwise we have a
355 * negative error code.
356 */
357 status = try_to_fill_dentry(dentry, flags);
358 if (status == 0)
359 return 1;
360
361 return status;
1da177e4
LT
362 }
363 spin_unlock(&dcache_lock);
364
1da177e4
LT
365 return 1;
366}
367
34ca959c 368void autofs4_dentry_release(struct dentry *de)
1da177e4
LT
369{
370 struct autofs_info *inf;
371
372 DPRINTK("releasing %p", de);
373
374 inf = autofs4_dentry_ino(de);
375 de->d_fsdata = NULL;
376
377 if (inf) {
f50b6f86
IK
378 struct autofs_sb_info *sbi = autofs4_sbi(de->d_sb);
379
f50b6f86 380 if (sbi) {
5f6f4f28 381 spin_lock(&sbi->lookup_lock);
25767378
IK
382 if (!list_empty(&inf->active))
383 list_del(&inf->active);
5f6f4f28
IK
384 if (!list_empty(&inf->expiring))
385 list_del(&inf->expiring);
386 spin_unlock(&sbi->lookup_lock);
f50b6f86
IK
387 }
388
c3724b12
JM
389 inf->dentry = NULL;
390 inf->inode = NULL;
391
1da177e4
LT
392 autofs4_free_ino(inf);
393 }
394}
395
396/* For dentries of directories in the root dir */
08f11513 397static const struct dentry_operations autofs4_root_dentry_operations = {
1da177e4
LT
398 .d_revalidate = autofs4_revalidate,
399 .d_release = autofs4_dentry_release,
400};
401
402/* For other dentries */
08f11513 403static const struct dentry_operations autofs4_dentry_operations = {
1da177e4
LT
404 .d_revalidate = autofs4_revalidate,
405 .d_release = autofs4_dentry_release,
406};
407
6510c9d8 408static struct dentry *autofs4_lookup_active(struct dentry *dentry)
25767378 409{
6510c9d8
IK
410 struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
411 struct dentry *parent = dentry->d_parent;
412 struct qstr *name = &dentry->d_name;
25767378
IK
413 unsigned int len = name->len;
414 unsigned int hash = name->hash;
415 const unsigned char *str = name->name;
416 struct list_head *p, *head;
417
418 spin_lock(&dcache_lock);
419 spin_lock(&sbi->lookup_lock);
420 head = &sbi->active_list;
421 list_for_each(p, head) {
422 struct autofs_info *ino;
423 struct dentry *dentry;
424 struct qstr *qstr;
425
426 ino = list_entry(p, struct autofs_info, active);
427 dentry = ino->dentry;
428
429 spin_lock(&dentry->d_lock);
430
431 /* Already gone? */
432 if (atomic_read(&dentry->d_count) == 0)
433 goto next;
434
435 qstr = &dentry->d_name;
436
437 if (dentry->d_name.hash != hash)
438 goto next;
439 if (dentry->d_parent != parent)
440 goto next;
441
442 if (qstr->len != len)
443 goto next;
444 if (memcmp(qstr->name, str, len))
445 goto next;
446
447 if (d_unhashed(dentry)) {
448 dget(dentry);
449 spin_unlock(&dentry->d_lock);
450 spin_unlock(&sbi->lookup_lock);
451 spin_unlock(&dcache_lock);
452 return dentry;
453 }
454next:
455 spin_unlock(&dentry->d_lock);
456 }
457 spin_unlock(&sbi->lookup_lock);
458 spin_unlock(&dcache_lock);
459
460 return NULL;
461}
462
6510c9d8 463static struct dentry *autofs4_lookup_expiring(struct dentry *dentry)
f50b6f86 464{
6510c9d8
IK
465 struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
466 struct dentry *parent = dentry->d_parent;
467 struct qstr *name = &dentry->d_name;
f50b6f86
IK
468 unsigned int len = name->len;
469 unsigned int hash = name->hash;
470 const unsigned char *str = name->name;
471 struct list_head *p, *head;
472
473 spin_lock(&dcache_lock);
5f6f4f28
IK
474 spin_lock(&sbi->lookup_lock);
475 head = &sbi->expiring_list;
f50b6f86
IK
476 list_for_each(p, head) {
477 struct autofs_info *ino;
478 struct dentry *dentry;
479 struct qstr *qstr;
480
5f6f4f28 481 ino = list_entry(p, struct autofs_info, expiring);
f50b6f86
IK
482 dentry = ino->dentry;
483
484 spin_lock(&dentry->d_lock);
485
486 /* Bad luck, we've already been dentry_iput */
487 if (!dentry->d_inode)
488 goto next;
489
490 qstr = &dentry->d_name;
491
492 if (dentry->d_name.hash != hash)
493 goto next;
494 if (dentry->d_parent != parent)
495 goto next;
496
497 if (qstr->len != len)
498 goto next;
499 if (memcmp(qstr->name, str, len))
500 goto next;
501
502 if (d_unhashed(dentry)) {
f50b6f86 503 dget(dentry);
f50b6f86 504 spin_unlock(&dentry->d_lock);
5f6f4f28 505 spin_unlock(&sbi->lookup_lock);
f50b6f86
IK
506 spin_unlock(&dcache_lock);
507 return dentry;
508 }
509next:
510 spin_unlock(&dentry->d_lock);
511 }
5f6f4f28 512 spin_unlock(&sbi->lookup_lock);
f50b6f86
IK
513 spin_unlock(&dcache_lock);
514
515 return NULL;
516}
517
1da177e4
LT
518/* Lookups in the root directory */
519static struct dentry *autofs4_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
520{
521 struct autofs_sb_info *sbi;
25767378 522 struct autofs_info *ino;
90387c9c 523 struct dentry *expiring, *active;
1da177e4
LT
524 int oz_mode;
525
526 DPRINTK("name = %.*s",
527 dentry->d_name.len, dentry->d_name.name);
528
718c604a 529 /* File name too long to exist */
1da177e4 530 if (dentry->d_name.len > NAME_MAX)
718c604a 531 return ERR_PTR(-ENAMETOOLONG);
1da177e4
LT
532
533 sbi = autofs4_sbi(dir->i_sb);
1da177e4 534 oz_mode = autofs4_oz_mode(sbi);
718c604a 535
1da177e4 536 DPRINTK("pid = %u, pgrp = %u, catatonic = %d, oz_mode = %d",
a47afb0f 537 current->pid, task_pgrp_nr(current), sbi->catatonic, oz_mode);
1da177e4 538
6510c9d8 539 active = autofs4_lookup_active(dentry);
90387c9c
IK
540 if (active) {
541 dentry = active;
aa952eb2
IK
542 ino = autofs4_dentry_ino(dentry);
543 } else {
25767378
IK
544 /*
545 * Mark the dentry incomplete but don't hash it. We do this
546 * to serialize our inode creation operations (symlink and
547 * mkdir) which prevents deadlock during the callback to
548 * the daemon. Subsequent user space lookups for the same
549 * dentry are placed on the wait queue while the daemon
550 * itself is allowed passage unresticted so the create
551 * operation itself can then hash the dentry. Finally,
552 * we check for the hashed dentry and return the newly
553 * hashed dentry.
554 */
555 dentry->d_op = &autofs4_root_dentry_operations;
556
557 /*
558 * And we need to ensure that the same dentry is used for
559 * all following lookup calls until it is hashed so that
560 * the dentry flags are persistent throughout the request.
561 */
562 ino = autofs4_init_ino(NULL, sbi, 0555);
563 if (!ino)
564 return ERR_PTR(-ENOMEM);
565
566 dentry->d_fsdata = ino;
567 ino->dentry = dentry;
568
4f8427d1 569 autofs4_add_active(dentry);
5f6f4f28 570
25767378
IK
571 d_instantiate(dentry, NULL);
572 }
5f6f4f28 573
1da177e4 574 if (!oz_mode) {
8f63aaa8 575 mutex_unlock(&dir->i_mutex);
6510c9d8 576 expiring = autofs4_lookup_expiring(dentry);
8f63aaa8
IK
577 if (expiring) {
578 /*
579 * If we are racing with expire the request might not
580 * be quite complete but the directory has been removed
581 * so it must have been successful, so just wait for it.
582 */
8f63aaa8 583 autofs4_expire_wait(expiring);
c4cd70b3 584 autofs4_del_expiring(expiring);
8f63aaa8
IK
585 dput(expiring);
586 }
587
aa952eb2
IK
588 spin_lock(&sbi->fs_lock);
589 ino->flags |= AUTOFS_INF_PENDING;
590 spin_unlock(&sbi->fs_lock);
8f63aaa8 591 if (dentry->d_op && dentry->d_op->d_revalidate)
c432c258 592 (dentry->d_op->d_revalidate)(dentry, nd);
8f63aaa8 593 mutex_lock(&dir->i_mutex);
1da177e4
LT
594 }
595
596 /*
597 * If we are still pending, check if we had to handle
598 * a signal. If so we can force a restart..
599 */
aa952eb2 600 if (ino->flags & AUTOFS_INF_PENDING) {
1da177e4
LT
601 /* See if we were interrupted */
602 if (signal_pending(current)) {
603 sigset_t *sigset = &current->pending.signal;
604 if (sigismember (sigset, SIGKILL) ||
605 sigismember (sigset, SIGQUIT) ||
606 sigismember (sigset, SIGINT)) {
90387c9c
IK
607 if (active)
608 dput(active);
1da177e4
LT
609 return ERR_PTR(-ERESTARTNOINTR);
610 }
611 }
25767378 612 if (!oz_mode) {
aa952eb2
IK
613 spin_lock(&sbi->fs_lock);
614 ino->flags &= ~AUTOFS_INF_PENDING;
615 spin_unlock(&sbi->fs_lock);
25767378 616 }
1da177e4
LT
617 }
618
619 /*
620 * If this dentry is unhashed, then we shouldn't honour this
c9ffec48
IK
621 * lookup. Returning ENOENT here doesn't do the right thing
622 * for all system calls, but it should be OK for the operations
623 * we permit from an autofs.
1da177e4 624 */
1864f7bd 625 if (!oz_mode && d_unhashed(dentry)) {
c9ffec48
IK
626 /*
627 * A user space application can (and has done in the past)
628 * remove and re-create this directory during the callback.
629 * This can leave us with an unhashed dentry, but a
630 * successful mount! So we need to perform another
631 * cached lookup in case the dentry now exists.
632 */
633 struct dentry *parent = dentry->d_parent;
634 struct dentry *new = d_lookup(parent, &dentry->d_name);
635 if (new != NULL)
636 dentry = new;
637 else
638 dentry = ERR_PTR(-ENOENT);
639
90387c9c
IK
640 if (active)
641 dput(active);
25767378 642
c9ffec48 643 return dentry;
f50b6f86
IK
644 }
645
90387c9c
IK
646 if (active)
647 return active;
25767378 648
1da177e4
LT
649 return NULL;
650}
651
652static int autofs4_dir_symlink(struct inode *dir,
653 struct dentry *dentry,
654 const char *symname)
655{
656 struct autofs_sb_info *sbi = autofs4_sbi(dir->i_sb);
657 struct autofs_info *ino = autofs4_dentry_ino(dentry);
1aff3c8b 658 struct autofs_info *p_ino;
1da177e4
LT
659 struct inode *inode;
660 char *cp;
661
662 DPRINTK("%s <- %.*s", symname,
663 dentry->d_name.len, dentry->d_name.name);
664
665 if (!autofs4_oz_mode(sbi))
666 return -EACCES;
667
668 ino = autofs4_init_ino(ino, sbi, S_IFLNK | 0555);
25767378
IK
669 if (!ino)
670 return -ENOMEM;
1da177e4 671
4f8427d1 672 autofs4_del_active(dentry);
1da177e4 673
ef581a74 674 ino->size = strlen(symname);
25767378
IK
675 cp = kmalloc(ino->size + 1, GFP_KERNEL);
676 if (!cp) {
677 if (!dentry->d_fsdata)
678 kfree(ino);
679 return -ENOMEM;
1da177e4
LT
680 }
681
682 strcpy(cp, symname);
683
684 inode = autofs4_get_inode(dir->i_sb, ino);
25767378
IK
685 if (!inode) {
686 kfree(cp);
687 if (!dentry->d_fsdata)
688 kfree(ino);
689 return -ENOMEM;
690 }
1864f7bd 691 d_add(dentry, inode);
1da177e4
LT
692
693 if (dir == dir->i_sb->s_root->d_inode)
694 dentry->d_op = &autofs4_root_dentry_operations;
695 else
696 dentry->d_op = &autofs4_dentry_operations;
697
698 dentry->d_fsdata = ino;
699 ino->dentry = dget(dentry);
1aff3c8b
IK
700 atomic_inc(&ino->count);
701 p_ino = autofs4_dentry_ino(dentry->d_parent);
702 if (p_ino && dentry->d_parent != dentry)
703 atomic_inc(&p_ino->count);
1da177e4
LT
704 ino->inode = inode;
705
25767378 706 ino->u.symlink = cp;
1da177e4
LT
707 dir->i_mtime = CURRENT_TIME;
708
709 return 0;
710}
711
712/*
713 * NOTE!
714 *
715 * Normal filesystems would do a "d_delete()" to tell the VFS dcache
716 * that the file no longer exists. However, doing that means that the
717 * VFS layer can turn the dentry into a negative dentry. We don't want
f50b6f86 718 * this, because the unlink is probably the result of an expire.
5f6f4f28
IK
719 * We simply d_drop it and add it to a expiring list in the super block,
720 * which allows the dentry lookup to check for an incomplete expire.
1da177e4
LT
721 *
722 * If a process is blocked on the dentry waiting for the expire to finish,
723 * it will invalidate the dentry and try to mount with a new one.
724 *
725 * Also see autofs4_dir_rmdir()..
726 */
727static int autofs4_dir_unlink(struct inode *dir, struct dentry *dentry)
728{
729 struct autofs_sb_info *sbi = autofs4_sbi(dir->i_sb);
730 struct autofs_info *ino = autofs4_dentry_ino(dentry);
1aff3c8b 731 struct autofs_info *p_ino;
1da177e4
LT
732
733 /* This allows root to remove symlinks */
d78e53c8 734 if (!autofs4_oz_mode(sbi) && !capable(CAP_SYS_ADMIN))
1da177e4
LT
735 return -EACCES;
736
1aff3c8b
IK
737 if (atomic_dec_and_test(&ino->count)) {
738 p_ino = autofs4_dentry_ino(dentry->d_parent);
739 if (p_ino && dentry->d_parent != dentry)
740 atomic_dec(&p_ino->count);
741 }
1da177e4
LT
742 dput(ino->dentry);
743
744 dentry->d_inode->i_size = 0;
ce71ec36 745 clear_nlink(dentry->d_inode);
1da177e4
LT
746
747 dir->i_mtime = CURRENT_TIME;
748
f50b6f86 749 spin_lock(&dcache_lock);
c4cd70b3 750 autofs4_add_expiring(dentry);
f50b6f86
IK
751 spin_lock(&dentry->d_lock);
752 __d_drop(dentry);
753 spin_unlock(&dentry->d_lock);
754 spin_unlock(&dcache_lock);
1da177e4
LT
755
756 return 0;
757}
758
759static int autofs4_dir_rmdir(struct inode *dir, struct dentry *dentry)
760{
761 struct autofs_sb_info *sbi = autofs4_sbi(dir->i_sb);
762 struct autofs_info *ino = autofs4_dentry_ino(dentry);
1aff3c8b 763 struct autofs_info *p_ino;
1da177e4 764
f50b6f86
IK
765 DPRINTK("dentry %p, removing %.*s",
766 dentry, dentry->d_name.len, dentry->d_name.name);
767
1da177e4
LT
768 if (!autofs4_oz_mode(sbi))
769 return -EACCES;
770
771 spin_lock(&dcache_lock);
772 if (!list_empty(&dentry->d_subdirs)) {
773 spin_unlock(&dcache_lock);
774 return -ENOTEMPTY;
775 }
c4cd70b3 776 autofs4_add_expiring(dentry);
1da177e4
LT
777 spin_lock(&dentry->d_lock);
778 __d_drop(dentry);
779 spin_unlock(&dentry->d_lock);
780 spin_unlock(&dcache_lock);
781
1aff3c8b
IK
782 if (atomic_dec_and_test(&ino->count)) {
783 p_ino = autofs4_dentry_ino(dentry->d_parent);
784 if (p_ino && dentry->d_parent != dentry)
785 atomic_dec(&p_ino->count);
786 }
1da177e4 787 dput(ino->dentry);
1da177e4 788 dentry->d_inode->i_size = 0;
ce71ec36 789 clear_nlink(dentry->d_inode);
1da177e4
LT
790
791 if (dir->i_nlink)
9a53c3a7 792 drop_nlink(dir);
1da177e4
LT
793
794 return 0;
795}
796
797static int autofs4_dir_mkdir(struct inode *dir, struct dentry *dentry, int mode)
798{
799 struct autofs_sb_info *sbi = autofs4_sbi(dir->i_sb);
800 struct autofs_info *ino = autofs4_dentry_ino(dentry);
1aff3c8b 801 struct autofs_info *p_ino;
1da177e4
LT
802 struct inode *inode;
803
d78e53c8 804 if (!autofs4_oz_mode(sbi))
1da177e4
LT
805 return -EACCES;
806
807 DPRINTK("dentry %p, creating %.*s",
808 dentry, dentry->d_name.len, dentry->d_name.name);
809
810 ino = autofs4_init_ino(ino, sbi, S_IFDIR | 0555);
25767378
IK
811 if (!ino)
812 return -ENOMEM;
813
4f8427d1 814 autofs4_del_active(dentry);
1da177e4
LT
815
816 inode = autofs4_get_inode(dir->i_sb, ino);
25767378
IK
817 if (!inode) {
818 if (!dentry->d_fsdata)
819 kfree(ino);
820 return -ENOMEM;
821 }
1864f7bd 822 d_add(dentry, inode);
1da177e4
LT
823
824 if (dir == dir->i_sb->s_root->d_inode)
825 dentry->d_op = &autofs4_root_dentry_operations;
826 else
827 dentry->d_op = &autofs4_dentry_operations;
828
829 dentry->d_fsdata = ino;
830 ino->dentry = dget(dentry);
1aff3c8b
IK
831 atomic_inc(&ino->count);
832 p_ino = autofs4_dentry_ino(dentry->d_parent);
833 if (p_ino && dentry->d_parent != dentry)
834 atomic_inc(&p_ino->count);
1da177e4 835 ino->inode = inode;
d8c76e6f 836 inc_nlink(dir);
1da177e4
LT
837 dir->i_mtime = CURRENT_TIME;
838
839 return 0;
840}
841
842/* Get/set timeout ioctl() operation */
843static inline int autofs4_get_set_timeout(struct autofs_sb_info *sbi,
844 unsigned long __user *p)
845{
846 int rv;
847 unsigned long ntimeout;
848
d78e53c8
SB
849 if ((rv = get_user(ntimeout, p)) ||
850 (rv = put_user(sbi->exp_timeout/HZ, p)))
1da177e4
LT
851 return rv;
852
d78e53c8 853 if (ntimeout > ULONG_MAX/HZ)
1da177e4
LT
854 sbi->exp_timeout = 0;
855 else
856 sbi->exp_timeout = ntimeout * HZ;
857
858 return 0;
859}
860
861/* Return protocol version */
862static inline int autofs4_get_protover(struct autofs_sb_info *sbi, int __user *p)
863{
864 return put_user(sbi->version, p);
865}
866
867/* Return protocol sub version */
868static inline int autofs4_get_protosubver(struct autofs_sb_info *sbi, int __user *p)
869{
870 return put_user(sbi->sub_version, p);
871}
872
1da177e4
LT
873/*
874* Tells the daemon whether it can umount the autofs mount.
875*/
876static inline int autofs4_ask_umount(struct vfsmount *mnt, int __user *p)
877{
878 int status = 0;
879
e3474a8e 880 if (may_umount(mnt))
1da177e4
LT
881 status = 1;
882
883 DPRINTK("returning %d", status);
884
885 status = put_user(status, p);
886
887 return status;
888}
889
890/* Identify autofs4_dentries - this is so we can tell if there's
891 an extra dentry refcount or not. We only hold a refcount on the
892 dentry if its non-negative (ie, d_inode != NULL)
893*/
894int is_autofs4_dentry(struct dentry *dentry)
895{
896 return dentry && dentry->d_inode &&
897 (dentry->d_op == &autofs4_root_dentry_operations ||
898 dentry->d_op == &autofs4_dentry_operations) &&
899 dentry->d_fsdata != NULL;
900}
901
902/*
903 * ioctl()'s on the root directory is the chief method for the daemon to
904 * generate kernel reactions
905 */
906static int autofs4_root_ioctl(struct inode *inode, struct file *filp,
907 unsigned int cmd, unsigned long arg)
908{
909 struct autofs_sb_info *sbi = autofs4_sbi(inode->i_sb);
910 void __user *p = (void __user *)arg;
911
912 DPRINTK("cmd = 0x%08x, arg = 0x%08lx, sbi = %p, pgrp = %u",
a47afb0f 913 cmd,arg,sbi,task_pgrp_nr(current));
1da177e4 914
d78e53c8
SB
915 if (_IOC_TYPE(cmd) != _IOC_TYPE(AUTOFS_IOC_FIRST) ||
916 _IOC_NR(cmd) - _IOC_NR(AUTOFS_IOC_FIRST) >= AUTOFS_IOC_COUNT)
1da177e4
LT
917 return -ENOTTY;
918
d78e53c8 919 if (!autofs4_oz_mode(sbi) && !capable(CAP_SYS_ADMIN))
1da177e4
LT
920 return -EPERM;
921
922 switch(cmd) {
923 case AUTOFS_IOC_READY: /* Wait queue: go ahead and retry */
924 return autofs4_wait_release(sbi,(autofs_wqt_t)arg,0);
925 case AUTOFS_IOC_FAIL: /* Wait queue: fail with ENOENT */
926 return autofs4_wait_release(sbi,(autofs_wqt_t)arg,-ENOENT);
927 case AUTOFS_IOC_CATATONIC: /* Enter catatonic mode (daemon shutdown) */
928 autofs4_catatonic_mode(sbi);
929 return 0;
930 case AUTOFS_IOC_PROTOVER: /* Get protocol version */
931 return autofs4_get_protover(sbi, p);
932 case AUTOFS_IOC_PROTOSUBVER: /* Get protocol sub version */
933 return autofs4_get_protosubver(sbi, p);
934 case AUTOFS_IOC_SETTIMEOUT:
935 return autofs4_get_set_timeout(sbi, p);
936
1da177e4 937 case AUTOFS_IOC_ASKUMOUNT:
a4669ed8 938 return autofs4_ask_umount(filp->f_path.mnt, p);
1da177e4
LT
939
940 /* return a single thing to expire */
941 case AUTOFS_IOC_EXPIRE:
a4669ed8 942 return autofs4_expire_run(inode->i_sb,filp->f_path.mnt,sbi, p);
1da177e4
LT
943 /* same as above, but can send multiple expires through pipe */
944 case AUTOFS_IOC_EXPIRE_MULTI:
a4669ed8 945 return autofs4_expire_multi(inode->i_sb,filp->f_path.mnt,sbi, p);
1da177e4
LT
946
947 default:
948 return -ENOSYS;
949 }
950}