blob: e383bf0334f173c8c0a381ef2b2c50964931c62c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* -*- 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>
Ian Kent34ca9592006-03-27 01:14:54 -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
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080015#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/errno.h>
17#include <linux/stat.h>
18#include <linux/param.h>
19#include <linux/time.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#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);
Linus Torvalds1da177e2005-04-16 15:20:36 -070028static struct dentry *autofs4_lookup(struct inode *,struct dentry *, struct nameidata *);
Ian Kent34ca9592006-03-27 01:14:54 -080029static void *autofs4_follow_link(struct dentry *, struct nameidata *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Ian Kent6d5cb922008-07-23 21:30:15 -070031#define TRIGGER_FLAGS (LOOKUP_CONTINUE | LOOKUP_DIRECTORY)
32#define TRIGGER_INTENTS (LOOKUP_OPEN | LOOKUP_CREATE)
33
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080034const struct file_operations autofs4_root_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 .open = dcache_dir_open,
36 .release = dcache_dir_close,
37 .read = generic_read_dir,
Ian Kentaa55ddf2008-07-23 21:30:29 -070038 .readdir = dcache_readdir,
Al Viro59af1582008-08-24 07:24:41 -040039 .llseek = dcache_dir_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 .ioctl = autofs4_root_ioctl,
41};
42
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080043const struct file_operations autofs4_dir_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 .open = autofs4_dir_open,
Ian Kentff9cd492008-07-23 21:30:24 -070045 .release = dcache_dir_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 .read = generic_read_dir,
Ian Kentff9cd492008-07-23 21:30:24 -070047 .readdir = dcache_readdir,
Al Viro59af1582008-08-24 07:24:41 -040048 .llseek = dcache_dir_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -070049};
50
Arjan van de Ven754661f2007-02-12 00:55:38 -080051const struct inode_operations autofs4_indirect_root_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 .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
Arjan van de Ven754661f2007-02-12 00:55:38 -080059const struct inode_operations autofs4_direct_root_inode_operations = {
Ian Kent34ca9592006-03-27 01:14:54 -080060 .lookup = autofs4_lookup,
Ian Kent871f9432006-03-27 01:14:58 -080061 .unlink = autofs4_dir_unlink,
62 .mkdir = autofs4_dir_mkdir,
63 .rmdir = autofs4_dir_rmdir,
Ian Kent34ca9592006-03-27 01:14:54 -080064 .follow_link = autofs4_follow_link,
65};
66
Arjan van de Ven754661f2007-02-12 00:55:38 -080067const struct inode_operations autofs4_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 .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
Linus Torvalds1da177e2005-04-16 15:20:36 -070075static int autofs4_dir_open(struct inode *inode, struct file *file)
76{
Josef "Jeff" Sipeka4669ed2006-12-08 02:36:46 -080077 struct dentry *dentry = file->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
Ian Kentf360ce32006-03-27 01:14:43 -080079
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 DPRINTK("file=%p dentry=%p %.*s",
81 file, dentry, dentry->d_name.len, dentry->d_name.name);
82
83 if (autofs4_oz_mode(sbi))
84 goto out;
85
Ian Kentff9cd492008-07-23 21:30:24 -070086 /*
87 * An empty directory in an autofs file system is always a
88 * mount point. The daemon must have failed to mount this
89 * during lookup so it doesn't exist. This can happen, for
90 * example, if user space returns an incorrect status for a
91 * mount request. Otherwise we're doing a readdir on the
92 * autofs file system so just let the libfs routines handle
93 * it.
94 */
95 spin_lock(&dcache_lock);
96 if (!d_mountpoint(dentry) && __simple_empty(dentry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 spin_unlock(&dcache_lock);
Ian Kentff9cd492008-07-23 21:30:24 -070098 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 }
Ian Kentff9cd492008-07-23 21:30:24 -0700100 spin_unlock(&dcache_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Ian Kentf360ce32006-03-27 01:14:43 -0800102out:
Ian Kentff9cd492008-07-23 21:30:24 -0700103 return dcache_dir_open(inode, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
Ian Kent862b1102006-03-27 01:14:48 -0800106static int try_to_fill_dentry(struct dentry *dentry, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
Ian Kent862b1102006-03-27 01:14:48 -0800108 struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
Ian Kent718c6042006-03-27 01:14:42 -0800109 struct autofs_info *ino = autofs4_dentry_ino(dentry);
Jeff Moyer9d2de6a2008-05-01 04:35:09 -0700110 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 DPRINTK("dentry=%p %.*s ino=%p",
113 dentry, dentry->d_name.len, dentry->d_name.name, dentry->d_inode);
114
Ian Kent718c6042006-03-27 01:14:42 -0800115 /*
116 * Wait for a pending mount, triggering one if there
117 * isn't one already
118 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 if (dentry->d_inode == NULL) {
120 DPRINTK("waiting for mount name=%.*s",
121 dentry->d_name.len, dentry->d_name.name);
122
123 status = autofs4_wait(sbi, dentry, NFY_MOUNT);
Ian Kent718c6042006-03-27 01:14:42 -0800124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 DPRINTK("mount done status=%d", status);
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 /* Turn this into a real negative dentry? */
128 if (status == -ENOENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 spin_lock(&dentry->d_lock);
130 dentry->d_flags &= ~DCACHE_AUTOFS_PENDING;
131 spin_unlock(&dentry->d_lock);
Ian Kent34ca9592006-03-27 01:14:54 -0800132 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 } else if (status) {
134 /* Return a negative dentry, but leave it "pending" */
Ian Kent34ca9592006-03-27 01:14:54 -0800135 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 }
137 /* Trigger mount for path component or follow link */
Ian Kent26e81b32008-07-23 21:30:25 -0700138 } else if (dentry->d_flags & DCACHE_AUTOFS_PENDING ||
139 flags & (TRIGGER_FLAGS | TRIGGER_INTENTS) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 current->link_count) {
141 DPRINTK("waiting for mount name=%.*s",
142 dentry->d_name.len, dentry->d_name.name);
143
144 spin_lock(&dentry->d_lock);
145 dentry->d_flags |= DCACHE_AUTOFS_PENDING;
146 spin_unlock(&dentry->d_lock);
147 status = autofs4_wait(sbi, dentry, NFY_MOUNT);
148
149 DPRINTK("mount done status=%d", status);
150
151 if (status) {
152 spin_lock(&dentry->d_lock);
153 dentry->d_flags &= ~DCACHE_AUTOFS_PENDING;
154 spin_unlock(&dentry->d_lock);
Ian Kent34ca9592006-03-27 01:14:54 -0800155 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 }
157 }
158
Ian Kente0a7aae2006-03-27 01:14:47 -0800159 /* Initialize expiry counter after successful mount */
160 if (ino)
161 ino->last_used = jiffies;
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 spin_lock(&dentry->d_lock);
164 dentry->d_flags &= ~DCACHE_AUTOFS_PENDING;
165 spin_unlock(&dentry->d_lock);
Jeff Moyer03379042008-05-01 04:35:08 -0700166
Jeff Moyer9d2de6a2008-05-01 04:35:09 -0700167 return 0;
Ian Kent34ca9592006-03-27 01:14:54 -0800168}
169
170/* For autofs direct mounts the follow link triggers the mount */
171static void *autofs4_follow_link(struct dentry *dentry, struct nameidata *nd)
172{
173 struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
Ian Kenta5370552006-05-15 09:43:51 -0700174 struct autofs_info *ino = autofs4_dentry_ino(dentry);
Ian Kent34ca9592006-03-27 01:14:54 -0800175 int oz_mode = autofs4_oz_mode(sbi);
176 unsigned int lookup_type;
177 int status;
178
179 DPRINTK("dentry=%p %.*s oz_mode=%d nd->flags=%d",
180 dentry, dentry->d_name.len, dentry->d_name.name, oz_mode,
181 nd->flags);
Ian Kent6e60a9a2008-07-23 21:30:27 -0700182 /*
183 * For an expire of a covered direct or offset mount we need
184 * to beeak out of follow_down() at the autofs mount trigger
185 * (d_mounted--), so we can see the expiring flag, and manage
186 * the blocking and following here until the expire is completed.
187 */
188 if (oz_mode) {
189 spin_lock(&sbi->fs_lock);
190 if (ino->flags & AUTOFS_INF_EXPIRING) {
191 spin_unlock(&sbi->fs_lock);
192 /* Follow down to our covering mount. */
193 if (!follow_down(&nd->path.mnt, &nd->path.dentry))
194 goto done;
Ian Kentec6e8c72008-07-23 21:30:28 -0700195 goto follow;
Ian Kent6e60a9a2008-07-23 21:30:27 -0700196 }
197 spin_unlock(&sbi->fs_lock);
Ian Kent34ca9592006-03-27 01:14:54 -0800198 goto done;
Ian Kent6e60a9a2008-07-23 21:30:27 -0700199 }
Ian Kent34ca9592006-03-27 01:14:54 -0800200
Ian Kent6e60a9a2008-07-23 21:30:27 -0700201 /* If an expire request is pending everyone must wait. */
Ian Kent06a35982008-07-23 21:30:28 -0700202 autofs4_expire_wait(dentry);
Ian Kent97e74492008-07-23 21:30:26 -0700203
Ian Kent6e60a9a2008-07-23 21:30:27 -0700204 /* We trigger a mount for almost all flags */
205 lookup_type = nd->flags & (TRIGGER_FLAGS | TRIGGER_INTENTS);
206 if (!(lookup_type || dentry->d_flags & DCACHE_AUTOFS_PENDING))
Ian Kentec6e8c72008-07-23 21:30:28 -0700207 goto follow;
Ian Kent6e60a9a2008-07-23 21:30:27 -0700208
Ian Kent871f9432006-03-27 01:14:58 -0800209 /*
Ian Kent6e60a9a2008-07-23 21:30:27 -0700210 * If the dentry contains directories then it is an autofs
211 * multi-mount with no root mount offset. So don't try to
212 * mount it again.
Ian Kent871f9432006-03-27 01:14:58 -0800213 */
214 spin_lock(&dcache_lock);
Ian Kent26e81b32008-07-23 21:30:25 -0700215 if (dentry->d_flags & DCACHE_AUTOFS_PENDING ||
216 (!d_mountpoint(dentry) && __simple_empty(dentry))) {
Ian Kent871f9432006-03-27 01:14:58 -0800217 spin_unlock(&dcache_lock);
218
219 status = try_to_fill_dentry(dentry, 0);
220 if (status)
221 goto out_error;
222
Ian Kent6e60a9a2008-07-23 21:30:27 -0700223 goto follow;
Ian Kent871f9432006-03-27 01:14:58 -0800224 }
225 spin_unlock(&dcache_lock);
Ian Kent6e60a9a2008-07-23 21:30:27 -0700226follow:
227 /*
228 * If there is no root mount it must be an autofs
229 * multi-mount with no root offset so we don't need
230 * to follow it.
231 */
232 if (d_mountpoint(dentry)) {
233 if (!autofs4_follow_mount(&nd->path.mnt,
234 &nd->path.dentry)) {
235 status = -ENOENT;
236 goto out_error;
237 }
238 }
Ian Kent871f9432006-03-27 01:14:58 -0800239
Ian Kent34ca9592006-03-27 01:14:54 -0800240done:
241 return NULL;
242
243out_error:
Jan Blunck1d957f92008-02-14 19:34:35 -0800244 path_put(&nd->path);
Ian Kent34ca9592006-03-27 01:14:54 -0800245 return ERR_PTR(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246}
247
248/*
249 * Revalidate is called on every cache lookup. Some of those
250 * cache lookups may actually happen while the dentry is not
251 * yet completely filled in, and revalidate has to delay such
252 * lookups..
253 */
Ian Kent718c6042006-03-27 01:14:42 -0800254static int autofs4_revalidate(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
Ian Kent718c6042006-03-27 01:14:42 -0800256 struct inode *dir = dentry->d_parent->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 struct autofs_sb_info *sbi = autofs4_sbi(dir->i_sb);
258 int oz_mode = autofs4_oz_mode(sbi);
259 int flags = nd ? nd->flags : 0;
Ian Kentbcdc5e02006-09-27 01:50:44 -0700260 int status = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 /* Pending dentry */
Ian Kent97e74492008-07-23 21:30:26 -0700263 spin_lock(&sbi->fs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 if (autofs4_ispending(dentry)) {
Ian Kentbcdc5e02006-09-27 01:50:44 -0700265 /* The daemon never causes a mount to trigger */
Ian Kent97e74492008-07-23 21:30:26 -0700266 spin_unlock(&sbi->fs_lock);
267
Ian Kentbcdc5e02006-09-27 01:50:44 -0700268 if (oz_mode)
269 return 1;
270
271 /*
Ian Kent06a35982008-07-23 21:30:28 -0700272 * If the directory has gone away due to an expire
273 * we have been called as ->d_revalidate() and so
274 * we need to return false and proceed to ->lookup().
275 */
276 if (autofs4_expire_wait(dentry) == -EAGAIN)
277 return 0;
278
279 /*
Ian Kentbcdc5e02006-09-27 01:50:44 -0700280 * A zero status is success otherwise we have a
281 * negative error code.
282 */
283 status = try_to_fill_dentry(dentry, flags);
284 if (status == 0)
Ian Kentf50b6f82007-02-20 13:58:10 -0800285 return 1;
286
Ian Kentbcdc5e02006-09-27 01:50:44 -0700287 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 }
Ian Kent97e74492008-07-23 21:30:26 -0700289 spin_unlock(&sbi->fs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291 /* Negative dentry.. invalidate if "old" */
292 if (dentry->d_inode == NULL)
Ian Kent2d753e62006-03-27 01:14:44 -0800293 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
295 /* Check for a non-mountpoint directory with no contents */
296 spin_lock(&dcache_lock);
297 if (S_ISDIR(dentry->d_inode->i_mode) &&
298 !d_mountpoint(dentry) &&
Ian Kent90a59c72006-03-27 01:14:50 -0800299 __simple_empty(dentry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 DPRINTK("dentry=%p %.*s, emptydir",
301 dentry, dentry->d_name.len, dentry->d_name.name);
302 spin_unlock(&dcache_lock);
Ian Kent97e74492008-07-23 21:30:26 -0700303
Ian Kentbcdc5e02006-09-27 01:50:44 -0700304 /* The daemon never causes a mount to trigger */
305 if (oz_mode)
306 return 1;
307
308 /*
309 * A zero status is success otherwise we have a
310 * negative error code.
311 */
312 status = try_to_fill_dentry(dentry, flags);
313 if (status == 0)
314 return 1;
315
316 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 }
318 spin_unlock(&dcache_lock);
319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return 1;
321}
322
Ian Kent34ca9592006-03-27 01:14:54 -0800323void autofs4_dentry_release(struct dentry *de)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
325 struct autofs_info *inf;
326
327 DPRINTK("releasing %p", de);
328
329 inf = autofs4_dentry_ino(de);
330 de->d_fsdata = NULL;
331
332 if (inf) {
Ian Kentf50b6f82007-02-20 13:58:10 -0800333 struct autofs_sb_info *sbi = autofs4_sbi(de->d_sb);
334
Ian Kentf50b6f82007-02-20 13:58:10 -0800335 if (sbi) {
Ian Kent5f6f4f22008-07-23 21:30:09 -0700336 spin_lock(&sbi->lookup_lock);
Ian Kent25767372008-07-23 21:30:12 -0700337 if (!list_empty(&inf->active))
338 list_del(&inf->active);
Ian Kent5f6f4f22008-07-23 21:30:09 -0700339 if (!list_empty(&inf->expiring))
340 list_del(&inf->expiring);
341 spin_unlock(&sbi->lookup_lock);
Ian Kentf50b6f82007-02-20 13:58:10 -0800342 }
343
Jeff Mahoneyc3724b12007-04-11 23:28:46 -0700344 inf->dentry = NULL;
345 inf->inode = NULL;
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 autofs4_free_ino(inf);
348 }
349}
350
351/* For dentries of directories in the root dir */
Al Viro08f11512009-02-20 05:56:19 +0000352static const struct dentry_operations autofs4_root_dentry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 .d_revalidate = autofs4_revalidate,
354 .d_release = autofs4_dentry_release,
355};
356
357/* For other dentries */
Al Viro08f11512009-02-20 05:56:19 +0000358static const struct dentry_operations autofs4_dentry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 .d_revalidate = autofs4_revalidate,
360 .d_release = autofs4_dentry_release,
361};
362
Ian Kent25767372008-07-23 21:30:12 -0700363static struct dentry *autofs4_lookup_active(struct autofs_sb_info *sbi, struct dentry *parent, struct qstr *name)
364{
365 unsigned int len = name->len;
366 unsigned int hash = name->hash;
367 const unsigned char *str = name->name;
368 struct list_head *p, *head;
369
370 spin_lock(&dcache_lock);
371 spin_lock(&sbi->lookup_lock);
372 head = &sbi->active_list;
373 list_for_each(p, head) {
374 struct autofs_info *ino;
375 struct dentry *dentry;
376 struct qstr *qstr;
377
378 ino = list_entry(p, struct autofs_info, active);
379 dentry = ino->dentry;
380
381 spin_lock(&dentry->d_lock);
382
383 /* Already gone? */
384 if (atomic_read(&dentry->d_count) == 0)
385 goto next;
386
387 qstr = &dentry->d_name;
388
389 if (dentry->d_name.hash != hash)
390 goto next;
391 if (dentry->d_parent != parent)
392 goto next;
393
394 if (qstr->len != len)
395 goto next;
396 if (memcmp(qstr->name, str, len))
397 goto next;
398
399 if (d_unhashed(dentry)) {
400 dget(dentry);
401 spin_unlock(&dentry->d_lock);
402 spin_unlock(&sbi->lookup_lock);
403 spin_unlock(&dcache_lock);
404 return dentry;
405 }
406next:
407 spin_unlock(&dentry->d_lock);
408 }
409 spin_unlock(&sbi->lookup_lock);
410 spin_unlock(&dcache_lock);
411
412 return NULL;
413}
414
Ian Kent5f6f4f22008-07-23 21:30:09 -0700415static struct dentry *autofs4_lookup_expiring(struct autofs_sb_info *sbi, struct dentry *parent, struct qstr *name)
Ian Kentf50b6f82007-02-20 13:58:10 -0800416{
417 unsigned int len = name->len;
418 unsigned int hash = name->hash;
419 const unsigned char *str = name->name;
420 struct list_head *p, *head;
421
422 spin_lock(&dcache_lock);
Ian Kent5f6f4f22008-07-23 21:30:09 -0700423 spin_lock(&sbi->lookup_lock);
424 head = &sbi->expiring_list;
Ian Kentf50b6f82007-02-20 13:58:10 -0800425 list_for_each(p, head) {
426 struct autofs_info *ino;
427 struct dentry *dentry;
428 struct qstr *qstr;
429
Ian Kent5f6f4f22008-07-23 21:30:09 -0700430 ino = list_entry(p, struct autofs_info, expiring);
Ian Kentf50b6f82007-02-20 13:58:10 -0800431 dentry = ino->dentry;
432
433 spin_lock(&dentry->d_lock);
434
435 /* Bad luck, we've already been dentry_iput */
436 if (!dentry->d_inode)
437 goto next;
438
439 qstr = &dentry->d_name;
440
441 if (dentry->d_name.hash != hash)
442 goto next;
443 if (dentry->d_parent != parent)
444 goto next;
445
446 if (qstr->len != len)
447 goto next;
448 if (memcmp(qstr->name, str, len))
449 goto next;
450
451 if (d_unhashed(dentry)) {
Ian Kentf50b6f82007-02-20 13:58:10 -0800452 dget(dentry);
Ian Kentf50b6f82007-02-20 13:58:10 -0800453 spin_unlock(&dentry->d_lock);
Ian Kent5f6f4f22008-07-23 21:30:09 -0700454 spin_unlock(&sbi->lookup_lock);
Ian Kentf50b6f82007-02-20 13:58:10 -0800455 spin_unlock(&dcache_lock);
456 return dentry;
457 }
458next:
459 spin_unlock(&dentry->d_lock);
460 }
Ian Kent5f6f4f22008-07-23 21:30:09 -0700461 spin_unlock(&sbi->lookup_lock);
Ian Kentf50b6f82007-02-20 13:58:10 -0800462 spin_unlock(&dcache_lock);
463
464 return NULL;
465}
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467/* Lookups in the root directory */
468static struct dentry *autofs4_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
469{
470 struct autofs_sb_info *sbi;
Ian Kent25767372008-07-23 21:30:12 -0700471 struct autofs_info *ino;
472 struct dentry *expiring, *unhashed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 int oz_mode;
474
475 DPRINTK("name = %.*s",
476 dentry->d_name.len, dentry->d_name.name);
477
Ian Kent718c6042006-03-27 01:14:42 -0800478 /* File name too long to exist */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 if (dentry->d_name.len > NAME_MAX)
Ian Kent718c6042006-03-27 01:14:42 -0800480 return ERR_PTR(-ENAMETOOLONG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482 sbi = autofs4_sbi(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 oz_mode = autofs4_oz_mode(sbi);
Ian Kent718c6042006-03-27 01:14:42 -0800484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 DPRINTK("pid = %u, pgrp = %u, catatonic = %d, oz_mode = %d",
Pavel Emelianova47afb02007-10-18 23:39:46 -0700486 current->pid, task_pgrp_nr(current), sbi->catatonic, oz_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Ian Kent25767372008-07-23 21:30:12 -0700488 unhashed = autofs4_lookup_active(sbi, dentry->d_parent, &dentry->d_name);
489 if (unhashed)
490 dentry = unhashed;
491 else {
492 /*
493 * Mark the dentry incomplete but don't hash it. We do this
494 * to serialize our inode creation operations (symlink and
495 * mkdir) which prevents deadlock during the callback to
496 * the daemon. Subsequent user space lookups for the same
497 * dentry are placed on the wait queue while the daemon
498 * itself is allowed passage unresticted so the create
499 * operation itself can then hash the dentry. Finally,
500 * we check for the hashed dentry and return the newly
501 * hashed dentry.
502 */
503 dentry->d_op = &autofs4_root_dentry_operations;
Ian Kent5f6f4f22008-07-23 21:30:09 -0700504
Ian Kent25767372008-07-23 21:30:12 -0700505 /*
506 * And we need to ensure that the same dentry is used for
507 * all following lookup calls until it is hashed so that
508 * the dentry flags are persistent throughout the request.
509 */
510 ino = autofs4_init_ino(NULL, sbi, 0555);
511 if (!ino)
512 return ERR_PTR(-ENOMEM);
513
514 dentry->d_fsdata = ino;
515 ino->dentry = dentry;
516
517 spin_lock(&sbi->lookup_lock);
518 list_add(&ino->active, &sbi->active_list);
519 spin_unlock(&sbi->lookup_lock);
520
521 d_instantiate(dentry, NULL);
522 }
Ian Kent5f6f4f22008-07-23 21:30:09 -0700523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 if (!oz_mode) {
Ian Kent8f63aaa8b2009-03-31 15:24:45 -0700525 mutex_unlock(&dir->i_mutex);
526 expiring = autofs4_lookup_expiring(sbi,
527 dentry->d_parent,
528 &dentry->d_name);
529 if (expiring) {
530 /*
531 * If we are racing with expire the request might not
532 * be quite complete but the directory has been removed
533 * so it must have been successful, so just wait for it.
534 */
535 ino = autofs4_dentry_ino(expiring);
536 autofs4_expire_wait(expiring);
537 spin_lock(&sbi->lookup_lock);
538 if (!list_empty(&ino->expiring))
539 list_del_init(&ino->expiring);
540 spin_unlock(&sbi->lookup_lock);
541 dput(expiring);
542 }
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 spin_lock(&dentry->d_lock);
545 dentry->d_flags |= DCACHE_AUTOFS_PENDING;
546 spin_unlock(&dentry->d_lock);
Ian Kent8f63aaa8b2009-03-31 15:24:45 -0700547 if (dentry->d_op && dentry->d_op->d_revalidate)
Ian Kentc432c252008-07-23 21:30:14 -0700548 (dentry->d_op->d_revalidate)(dentry, nd);
Ian Kent8f63aaa8b2009-03-31 15:24:45 -0700549 mutex_lock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 }
551
552 /*
553 * If we are still pending, check if we had to handle
554 * a signal. If so we can force a restart..
555 */
556 if (dentry->d_flags & DCACHE_AUTOFS_PENDING) {
557 /* See if we were interrupted */
558 if (signal_pending(current)) {
559 sigset_t *sigset = &current->pending.signal;
560 if (sigismember (sigset, SIGKILL) ||
561 sigismember (sigset, SIGQUIT) ||
562 sigismember (sigset, SIGINT)) {
Ian Kent25767372008-07-23 21:30:12 -0700563 if (unhashed)
564 dput(unhashed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 return ERR_PTR(-ERESTARTNOINTR);
566 }
567 }
Ian Kent25767372008-07-23 21:30:12 -0700568 if (!oz_mode) {
569 spin_lock(&dentry->d_lock);
570 dentry->d_flags &= ~DCACHE_AUTOFS_PENDING;
571 spin_unlock(&dentry->d_lock);
572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 }
574
575 /*
576 * If this dentry is unhashed, then we shouldn't honour this
Ian Kentc9ffec42007-02-20 13:58:10 -0800577 * lookup. Returning ENOENT here doesn't do the right thing
578 * for all system calls, but it should be OK for the operations
579 * we permit from an autofs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 */
Ian Kent1864f7b2007-08-22 14:01:54 -0700581 if (!oz_mode && d_unhashed(dentry)) {
Ian Kentc9ffec42007-02-20 13:58:10 -0800582 /*
583 * A user space application can (and has done in the past)
584 * remove and re-create this directory during the callback.
585 * This can leave us with an unhashed dentry, but a
586 * successful mount! So we need to perform another
587 * cached lookup in case the dentry now exists.
588 */
589 struct dentry *parent = dentry->d_parent;
590 struct dentry *new = d_lookup(parent, &dentry->d_name);
591 if (new != NULL)
592 dentry = new;
593 else
594 dentry = ERR_PTR(-ENOENT);
595
Ian Kent25767372008-07-23 21:30:12 -0700596 if (unhashed)
597 dput(unhashed);
598
Ian Kentc9ffec42007-02-20 13:58:10 -0800599 return dentry;
Ian Kentf50b6f82007-02-20 13:58:10 -0800600 }
601
Ian Kent25767372008-07-23 21:30:12 -0700602 if (unhashed)
603 return unhashed;
604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 return NULL;
606}
607
608static int autofs4_dir_symlink(struct inode *dir,
609 struct dentry *dentry,
610 const char *symname)
611{
612 struct autofs_sb_info *sbi = autofs4_sbi(dir->i_sb);
613 struct autofs_info *ino = autofs4_dentry_ino(dentry);
Ian Kent1aff3c82006-03-27 01:14:46 -0800614 struct autofs_info *p_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 struct inode *inode;
616 char *cp;
617
618 DPRINTK("%s <- %.*s", symname,
619 dentry->d_name.len, dentry->d_name.name);
620
621 if (!autofs4_oz_mode(sbi))
622 return -EACCES;
623
624 ino = autofs4_init_ino(ino, sbi, S_IFLNK | 0555);
Ian Kent25767372008-07-23 21:30:12 -0700625 if (!ino)
626 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Ian Kent25767372008-07-23 21:30:12 -0700628 spin_lock(&sbi->lookup_lock);
629 if (!list_empty(&ino->active))
630 list_del_init(&ino->active);
631 spin_unlock(&sbi->lookup_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Ian Kentef581a72008-07-23 21:30:13 -0700633 ino->size = strlen(symname);
Ian Kent25767372008-07-23 21:30:12 -0700634 cp = kmalloc(ino->size + 1, GFP_KERNEL);
635 if (!cp) {
636 if (!dentry->d_fsdata)
637 kfree(ino);
638 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 }
640
641 strcpy(cp, symname);
642
643 inode = autofs4_get_inode(dir->i_sb, ino);
Ian Kent25767372008-07-23 21:30:12 -0700644 if (!inode) {
645 kfree(cp);
646 if (!dentry->d_fsdata)
647 kfree(ino);
648 return -ENOMEM;
649 }
Ian Kent1864f7b2007-08-22 14:01:54 -0700650 d_add(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652 if (dir == dir->i_sb->s_root->d_inode)
653 dentry->d_op = &autofs4_root_dentry_operations;
654 else
655 dentry->d_op = &autofs4_dentry_operations;
656
657 dentry->d_fsdata = ino;
658 ino->dentry = dget(dentry);
Ian Kent1aff3c82006-03-27 01:14:46 -0800659 atomic_inc(&ino->count);
660 p_ino = autofs4_dentry_ino(dentry->d_parent);
661 if (p_ino && dentry->d_parent != dentry)
662 atomic_inc(&p_ino->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 ino->inode = inode;
664
Ian Kent25767372008-07-23 21:30:12 -0700665 ino->u.symlink = cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 dir->i_mtime = CURRENT_TIME;
667
668 return 0;
669}
670
671/*
672 * NOTE!
673 *
674 * Normal filesystems would do a "d_delete()" to tell the VFS dcache
675 * that the file no longer exists. However, doing that means that the
676 * VFS layer can turn the dentry into a negative dentry. We don't want
Ian Kentf50b6f82007-02-20 13:58:10 -0800677 * this, because the unlink is probably the result of an expire.
Ian Kent5f6f4f22008-07-23 21:30:09 -0700678 * We simply d_drop it and add it to a expiring list in the super block,
679 * which allows the dentry lookup to check for an incomplete expire.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 *
681 * If a process is blocked on the dentry waiting for the expire to finish,
682 * it will invalidate the dentry and try to mount with a new one.
683 *
684 * Also see autofs4_dir_rmdir()..
685 */
686static int autofs4_dir_unlink(struct inode *dir, struct dentry *dentry)
687{
688 struct autofs_sb_info *sbi = autofs4_sbi(dir->i_sb);
689 struct autofs_info *ino = autofs4_dentry_ino(dentry);
Ian Kent1aff3c82006-03-27 01:14:46 -0800690 struct autofs_info *p_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
692 /* This allows root to remove symlinks */
Sukadev Bhattiprolud78e53c2007-05-10 22:23:06 -0700693 if (!autofs4_oz_mode(sbi) && !capable(CAP_SYS_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 return -EACCES;
695
Ian Kent1aff3c82006-03-27 01:14:46 -0800696 if (atomic_dec_and_test(&ino->count)) {
697 p_ino = autofs4_dentry_ino(dentry->d_parent);
698 if (p_ino && dentry->d_parent != dentry)
699 atomic_dec(&p_ino->count);
700 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 dput(ino->dentry);
702
703 dentry->d_inode->i_size = 0;
Dave Hansence71ec32006-09-30 23:29:06 -0700704 clear_nlink(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706 dir->i_mtime = CURRENT_TIME;
707
Ian Kentf50b6f82007-02-20 13:58:10 -0800708 spin_lock(&dcache_lock);
Ian Kent5f6f4f22008-07-23 21:30:09 -0700709 spin_lock(&sbi->lookup_lock);
Ian Kent25767372008-07-23 21:30:12 -0700710 if (list_empty(&ino->expiring))
711 list_add(&ino->expiring, &sbi->expiring_list);
Ian Kent5f6f4f22008-07-23 21:30:09 -0700712 spin_unlock(&sbi->lookup_lock);
Ian Kentf50b6f82007-02-20 13:58:10 -0800713 spin_lock(&dentry->d_lock);
714 __d_drop(dentry);
715 spin_unlock(&dentry->d_lock);
716 spin_unlock(&dcache_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
718 return 0;
719}
720
721static int autofs4_dir_rmdir(struct inode *dir, struct dentry *dentry)
722{
723 struct autofs_sb_info *sbi = autofs4_sbi(dir->i_sb);
724 struct autofs_info *ino = autofs4_dentry_ino(dentry);
Ian Kent1aff3c82006-03-27 01:14:46 -0800725 struct autofs_info *p_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Ian Kentf50b6f82007-02-20 13:58:10 -0800727 DPRINTK("dentry %p, removing %.*s",
728 dentry, dentry->d_name.len, dentry->d_name.name);
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 if (!autofs4_oz_mode(sbi))
731 return -EACCES;
732
733 spin_lock(&dcache_lock);
734 if (!list_empty(&dentry->d_subdirs)) {
735 spin_unlock(&dcache_lock);
736 return -ENOTEMPTY;
737 }
Ian Kent5f6f4f22008-07-23 21:30:09 -0700738 spin_lock(&sbi->lookup_lock);
Ian Kent25767372008-07-23 21:30:12 -0700739 if (list_empty(&ino->expiring))
740 list_add(&ino->expiring, &sbi->expiring_list);
Ian Kent5f6f4f22008-07-23 21:30:09 -0700741 spin_unlock(&sbi->lookup_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 spin_lock(&dentry->d_lock);
743 __d_drop(dentry);
744 spin_unlock(&dentry->d_lock);
745 spin_unlock(&dcache_lock);
746
Ian Kent1aff3c82006-03-27 01:14:46 -0800747 if (atomic_dec_and_test(&ino->count)) {
748 p_ino = autofs4_dentry_ino(dentry->d_parent);
749 if (p_ino && dentry->d_parent != dentry)
750 atomic_dec(&p_ino->count);
751 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 dput(ino->dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 dentry->d_inode->i_size = 0;
Dave Hansence71ec32006-09-30 23:29:06 -0700754 clear_nlink(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
756 if (dir->i_nlink)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700757 drop_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
759 return 0;
760}
761
762static int autofs4_dir_mkdir(struct inode *dir, struct dentry *dentry, int mode)
763{
764 struct autofs_sb_info *sbi = autofs4_sbi(dir->i_sb);
765 struct autofs_info *ino = autofs4_dentry_ino(dentry);
Ian Kent1aff3c82006-03-27 01:14:46 -0800766 struct autofs_info *p_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 struct inode *inode;
768
Sukadev Bhattiprolud78e53c2007-05-10 22:23:06 -0700769 if (!autofs4_oz_mode(sbi))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 return -EACCES;
771
772 DPRINTK("dentry %p, creating %.*s",
773 dentry, dentry->d_name.len, dentry->d_name.name);
774
775 ino = autofs4_init_ino(ino, sbi, S_IFDIR | 0555);
Ian Kent25767372008-07-23 21:30:12 -0700776 if (!ino)
777 return -ENOMEM;
778
779 spin_lock(&sbi->lookup_lock);
780 if (!list_empty(&ino->active))
781 list_del_init(&ino->active);
782 spin_unlock(&sbi->lookup_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
784 inode = autofs4_get_inode(dir->i_sb, ino);
Ian Kent25767372008-07-23 21:30:12 -0700785 if (!inode) {
786 if (!dentry->d_fsdata)
787 kfree(ino);
788 return -ENOMEM;
789 }
Ian Kent1864f7b2007-08-22 14:01:54 -0700790 d_add(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792 if (dir == dir->i_sb->s_root->d_inode)
793 dentry->d_op = &autofs4_root_dentry_operations;
794 else
795 dentry->d_op = &autofs4_dentry_operations;
796
797 dentry->d_fsdata = ino;
798 ino->dentry = dget(dentry);
Ian Kent1aff3c82006-03-27 01:14:46 -0800799 atomic_inc(&ino->count);
800 p_ino = autofs4_dentry_ino(dentry->d_parent);
801 if (p_ino && dentry->d_parent != dentry)
802 atomic_inc(&p_ino->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 ino->inode = inode;
Dave Hansend8c76e62006-09-30 23:29:04 -0700804 inc_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 dir->i_mtime = CURRENT_TIME;
806
807 return 0;
808}
809
810/* Get/set timeout ioctl() operation */
811static inline int autofs4_get_set_timeout(struct autofs_sb_info *sbi,
812 unsigned long __user *p)
813{
814 int rv;
815 unsigned long ntimeout;
816
Sukadev Bhattiprolud78e53c2007-05-10 22:23:06 -0700817 if ((rv = get_user(ntimeout, p)) ||
818 (rv = put_user(sbi->exp_timeout/HZ, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 return rv;
820
Sukadev Bhattiprolud78e53c2007-05-10 22:23:06 -0700821 if (ntimeout > ULONG_MAX/HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 sbi->exp_timeout = 0;
823 else
824 sbi->exp_timeout = ntimeout * HZ;
825
826 return 0;
827}
828
829/* Return protocol version */
830static inline int autofs4_get_protover(struct autofs_sb_info *sbi, int __user *p)
831{
832 return put_user(sbi->version, p);
833}
834
835/* Return protocol sub version */
836static inline int autofs4_get_protosubver(struct autofs_sb_info *sbi, int __user *p)
837{
838 return put_user(sbi->sub_version, p);
839}
840
841/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842* Tells the daemon whether it can umount the autofs mount.
843*/
844static inline int autofs4_ask_umount(struct vfsmount *mnt, int __user *p)
845{
846 int status = 0;
847
Ian Kente3474a82006-03-27 01:14:51 -0800848 if (may_umount(mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 status = 1;
850
851 DPRINTK("returning %d", status);
852
853 status = put_user(status, p);
854
855 return status;
856}
857
858/* Identify autofs4_dentries - this is so we can tell if there's
859 an extra dentry refcount or not. We only hold a refcount on the
860 dentry if its non-negative (ie, d_inode != NULL)
861*/
862int is_autofs4_dentry(struct dentry *dentry)
863{
864 return dentry && dentry->d_inode &&
865 (dentry->d_op == &autofs4_root_dentry_operations ||
866 dentry->d_op == &autofs4_dentry_operations) &&
867 dentry->d_fsdata != NULL;
868}
869
870/*
871 * ioctl()'s on the root directory is the chief method for the daemon to
872 * generate kernel reactions
873 */
874static int autofs4_root_ioctl(struct inode *inode, struct file *filp,
875 unsigned int cmd, unsigned long arg)
876{
877 struct autofs_sb_info *sbi = autofs4_sbi(inode->i_sb);
878 void __user *p = (void __user *)arg;
879
880 DPRINTK("cmd = 0x%08x, arg = 0x%08lx, sbi = %p, pgrp = %u",
Pavel Emelianova47afb02007-10-18 23:39:46 -0700881 cmd,arg,sbi,task_pgrp_nr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Sukadev Bhattiprolud78e53c2007-05-10 22:23:06 -0700883 if (_IOC_TYPE(cmd) != _IOC_TYPE(AUTOFS_IOC_FIRST) ||
884 _IOC_NR(cmd) - _IOC_NR(AUTOFS_IOC_FIRST) >= AUTOFS_IOC_COUNT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 return -ENOTTY;
886
Sukadev Bhattiprolud78e53c2007-05-10 22:23:06 -0700887 if (!autofs4_oz_mode(sbi) && !capable(CAP_SYS_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 return -EPERM;
889
890 switch(cmd) {
891 case AUTOFS_IOC_READY: /* Wait queue: go ahead and retry */
892 return autofs4_wait_release(sbi,(autofs_wqt_t)arg,0);
893 case AUTOFS_IOC_FAIL: /* Wait queue: fail with ENOENT */
894 return autofs4_wait_release(sbi,(autofs_wqt_t)arg,-ENOENT);
895 case AUTOFS_IOC_CATATONIC: /* Enter catatonic mode (daemon shutdown) */
896 autofs4_catatonic_mode(sbi);
897 return 0;
898 case AUTOFS_IOC_PROTOVER: /* Get protocol version */
899 return autofs4_get_protover(sbi, p);
900 case AUTOFS_IOC_PROTOSUBVER: /* Get protocol sub version */
901 return autofs4_get_protosubver(sbi, p);
902 case AUTOFS_IOC_SETTIMEOUT:
903 return autofs4_get_set_timeout(sbi, p);
904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 case AUTOFS_IOC_ASKUMOUNT:
Josef "Jeff" Sipeka4669ed2006-12-08 02:36:46 -0800906 return autofs4_ask_umount(filp->f_path.mnt, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
908 /* return a single thing to expire */
909 case AUTOFS_IOC_EXPIRE:
Josef "Jeff" Sipeka4669ed2006-12-08 02:36:46 -0800910 return autofs4_expire_run(inode->i_sb,filp->f_path.mnt,sbi, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 /* same as above, but can send multiple expires through pipe */
912 case AUTOFS_IOC_EXPIRE_MULTI:
Josef "Jeff" Sipeka4669ed2006-12-08 02:36:46 -0800913 return autofs4_expire_multi(inode->i_sb,filp->f_path.mnt,sbi, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
915 default:
916 return -ENOSYS;
917 }
918}