blob: 27dc53e111fd19b77eddca15a2a5532f45cdcf62 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/param.h>
20#include <linux/time.h>
Arnd Bergmannc9243f52010-07-04 00:15:07 +020021#include <linux/compat.h>
Arnd Bergmann00e300e2010-09-14 23:00:34 +020022#include <linux/mutex.h>
Arnd Bergmannc9243f52010-07-04 00:15:07 +020023
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "autofs_i.h"
25
Nick Pigginb5c84bf2011-01-07 17:49:38 +110026DEFINE_SPINLOCK(autofs4_lock);
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028static int autofs4_dir_symlink(struct inode *,struct dentry *,const char *);
29static int autofs4_dir_unlink(struct inode *,struct dentry *);
30static int autofs4_dir_rmdir(struct inode *,struct dentry *);
31static int autofs4_dir_mkdir(struct inode *,struct dentry *,int);
Frederic Weisbecker3663df72010-05-19 15:08:17 +020032static long autofs4_root_ioctl(struct file *,unsigned int,unsigned long);
Felipe Contreras5a44a732010-09-24 15:22:23 +020033#ifdef CONFIG_COMPAT
Arnd Bergmannc9243f52010-07-04 00:15:07 +020034static long autofs4_root_compat_ioctl(struct file *,unsigned int,unsigned long);
Felipe Contreras5a44a732010-09-24 15:22:23 +020035#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070036static int autofs4_dir_open(struct inode *inode, struct file *file);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037static struct dentry *autofs4_lookup(struct inode *,struct dentry *, struct nameidata *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Ian Kent6d5cb922008-07-23 21:30:15 -070039#define TRIGGER_FLAGS (LOOKUP_CONTINUE | LOOKUP_DIRECTORY)
40#define TRIGGER_INTENTS (LOOKUP_OPEN | LOOKUP_CREATE)
41
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080042const struct file_operations autofs4_root_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 .open = dcache_dir_open,
44 .release = dcache_dir_close,
45 .read = generic_read_dir,
Ian Kentaa55ddf2008-07-23 21:30:29 -070046 .readdir = dcache_readdir,
Al Viro59af1582008-08-24 07:24:41 -040047 .llseek = dcache_dir_lseek,
Frederic Weisbecker3663df72010-05-19 15:08:17 +020048 .unlocked_ioctl = autofs4_root_ioctl,
Arnd Bergmannc9243f52010-07-04 00:15:07 +020049#ifdef CONFIG_COMPAT
50 .compat_ioctl = autofs4_root_compat_ioctl,
51#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070052};
53
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080054const struct file_operations autofs4_dir_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 .open = autofs4_dir_open,
Ian Kentff9cd492008-07-23 21:30:24 -070056 .release = dcache_dir_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 .read = generic_read_dir,
Ian Kentff9cd492008-07-23 21:30:24 -070058 .readdir = dcache_readdir,
Al Viro59af1582008-08-24 07:24:41 -040059 .llseek = dcache_dir_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -070060};
61
Arjan van de Ven754661f2007-02-12 00:55:38 -080062const struct inode_operations autofs4_indirect_root_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 .lookup = autofs4_lookup,
64 .unlink = autofs4_dir_unlink,
65 .symlink = autofs4_dir_symlink,
66 .mkdir = autofs4_dir_mkdir,
67 .rmdir = autofs4_dir_rmdir,
68};
69
Arjan van de Ven754661f2007-02-12 00:55:38 -080070const struct inode_operations autofs4_direct_root_inode_operations = {
Ian Kent34ca9592006-03-27 01:14:54 -080071 .lookup = autofs4_lookup,
Ian Kent871f9432006-03-27 01:14:58 -080072 .unlink = autofs4_dir_unlink,
73 .mkdir = autofs4_dir_mkdir,
74 .rmdir = autofs4_dir_rmdir,
Ian Kent34ca9592006-03-27 01:14:54 -080075};
76
Arjan van de Ven754661f2007-02-12 00:55:38 -080077const struct inode_operations autofs4_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 .lookup = autofs4_lookup,
79 .unlink = autofs4_dir_unlink,
80 .symlink = autofs4_dir_symlink,
81 .mkdir = autofs4_dir_mkdir,
82 .rmdir = autofs4_dir_rmdir,
83};
84
Ian Kent4f8427d2009-12-15 16:45:42 -080085static void autofs4_add_active(struct dentry *dentry)
86{
87 struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
88 struct autofs_info *ino = autofs4_dentry_ino(dentry);
89 if (ino) {
90 spin_lock(&sbi->lookup_lock);
91 if (!ino->active_count) {
92 if (list_empty(&ino->active))
93 list_add(&ino->active, &sbi->active_list);
94 }
95 ino->active_count++;
96 spin_unlock(&sbi->lookup_lock);
97 }
98 return;
99}
100
101static void autofs4_del_active(struct dentry *dentry)
102{
103 struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
104 struct autofs_info *ino = autofs4_dentry_ino(dentry);
105 if (ino) {
106 spin_lock(&sbi->lookup_lock);
107 ino->active_count--;
108 if (!ino->active_count) {
109 if (!list_empty(&ino->active))
110 list_del_init(&ino->active);
111 }
112 spin_unlock(&sbi->lookup_lock);
113 }
114 return;
115}
116
Ian Kent36b64132009-12-15 16:45:44 -0800117static unsigned int autofs4_need_mount(unsigned int flags)
118{
119 unsigned int res = 0;
120 if (flags & (TRIGGER_FLAGS | TRIGGER_INTENTS))
121 res = 1;
122 return res;
123}
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125static int autofs4_dir_open(struct inode *inode, struct file *file)
126{
Josef "Jeff" Sipeka4669ed2006-12-08 02:36:46 -0800127 struct dentry *dentry = file->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
Ian Kentf360ce32006-03-27 01:14:43 -0800129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 DPRINTK("file=%p dentry=%p %.*s",
131 file, dentry, dentry->d_name.len, dentry->d_name.name);
132
133 if (autofs4_oz_mode(sbi))
134 goto out;
135
Ian Kentff9cd492008-07-23 21:30:24 -0700136 /*
137 * An empty directory in an autofs file system is always a
138 * mount point. The daemon must have failed to mount this
139 * during lookup so it doesn't exist. This can happen, for
140 * example, if user space returns an incorrect status for a
141 * mount request. Otherwise we're doing a readdir on the
142 * autofs file system so just let the libfs routines handle
143 * it.
144 */
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100145 spin_lock(&autofs4_lock);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100146 spin_lock(&dentry->d_lock);
Ian Kentc42c7f72009-12-15 16:45:48 -0800147 if (!d_mountpoint(dentry) && list_empty(&dentry->d_subdirs)) {
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100148 spin_unlock(&dentry->d_lock);
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100149 spin_unlock(&autofs4_lock);
Ian Kentff9cd492008-07-23 21:30:24 -0700150 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 }
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100152 spin_unlock(&dentry->d_lock);
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100153 spin_unlock(&autofs4_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Ian Kentf360ce32006-03-27 01:14:43 -0800155out:
Ian Kentff9cd492008-07-23 21:30:24 -0700156 return dcache_dir_open(inode, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
Al Viro4b1ae272010-03-03 12:58:31 -0500159static int try_to_fill_dentry(struct dentry *dentry, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
Ian Kent862b1102006-03-27 01:14:48 -0800161 struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
Ian Kent718c6042006-03-27 01:14:42 -0800162 struct autofs_info *ino = autofs4_dentry_ino(dentry);
Jeff Moyer9d2de6a2008-05-01 04:35:09 -0700163 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 DPRINTK("dentry=%p %.*s ino=%p",
166 dentry, dentry->d_name.len, dentry->d_name.name, dentry->d_inode);
167
Ian Kent718c6042006-03-27 01:14:42 -0800168 /*
169 * Wait for a pending mount, triggering one if there
170 * isn't one already
171 */
Al Viro4b1ae272010-03-03 12:58:31 -0500172 if (dentry->d_inode == NULL) {
173 DPRINTK("waiting for mount name=%.*s",
174 dentry->d_name.len, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Al Viro4b1ae272010-03-03 12:58:31 -0500176 status = autofs4_wait(sbi, dentry, NFY_MOUNT);
Ian Kent718c6042006-03-27 01:14:42 -0800177
Al Viro4b1ae272010-03-03 12:58:31 -0500178 DPRINTK("mount done status=%d", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Al Viro4b1ae272010-03-03 12:58:31 -0500180 /* Turn this into a real negative dentry? */
181 if (status == -ENOENT) {
182 spin_lock(&sbi->fs_lock);
183 ino->flags &= ~AUTOFS_INF_PENDING;
184 spin_unlock(&sbi->fs_lock);
185 return status;
186 } else if (status) {
187 /* Return a negative dentry, but leave it "pending" */
188 return status;
189 }
190 /* Trigger mount for path component or follow link */
191 } else if (ino->flags & AUTOFS_INF_PENDING ||
Ian Kentf7422462010-05-10 16:46:08 +0800192 autofs4_need_mount(flags)) {
Al Viro4b1ae272010-03-03 12:58:31 -0500193 DPRINTK("waiting for mount name=%.*s",
194 dentry->d_name.len, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Al Viro4b1ae272010-03-03 12:58:31 -0500196 spin_lock(&sbi->fs_lock);
197 ino->flags |= AUTOFS_INF_PENDING;
198 spin_unlock(&sbi->fs_lock);
199 status = autofs4_wait(sbi, dentry, NFY_MOUNT);
200
201 DPRINTK("mount done status=%d", status);
202
203 if (status) {
204 spin_lock(&sbi->fs_lock);
205 ino->flags &= ~AUTOFS_INF_PENDING;
206 spin_unlock(&sbi->fs_lock);
207 return status;
208 }
209 }
210
211 /* Initialize expiry counter after successful mount */
Dan Carpenter5fc79d82010-08-10 18:02:04 -0700212 ino->last_used = jiffies;
Al Viro4b1ae272010-03-03 12:58:31 -0500213
214 spin_lock(&sbi->fs_lock);
215 ino->flags &= ~AUTOFS_INF_PENDING;
216 spin_unlock(&sbi->fs_lock);
217
218 return 0;
Ian Kent34ca9592006-03-27 01:14:54 -0800219}
220
221/* For autofs direct mounts the follow link triggers the mount */
222static void *autofs4_follow_link(struct dentry *dentry, struct nameidata *nd)
223{
224 struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
Ian Kenta5370552006-05-15 09:43:51 -0700225 struct autofs_info *ino = autofs4_dentry_ino(dentry);
Ian Kent34ca9592006-03-27 01:14:54 -0800226 int oz_mode = autofs4_oz_mode(sbi);
227 unsigned int lookup_type;
228 int status;
229
230 DPRINTK("dentry=%p %.*s oz_mode=%d nd->flags=%d",
231 dentry, dentry->d_name.len, dentry->d_name.name, oz_mode,
232 nd->flags);
Ian Kent6e60a9a2008-07-23 21:30:27 -0700233 /*
234 * For an expire of a covered direct or offset mount we need
David Howellscc53ce52011-01-14 18:45:26 +0000235 * to break out of follow_down_one() at the autofs mount trigger
Ian Kent6e60a9a2008-07-23 21:30:27 -0700236 * (d_mounted--), so we can see the expiring flag, and manage
237 * the blocking and following here until the expire is completed.
238 */
239 if (oz_mode) {
240 spin_lock(&sbi->fs_lock);
241 if (ino->flags & AUTOFS_INF_EXPIRING) {
242 spin_unlock(&sbi->fs_lock);
243 /* Follow down to our covering mount. */
David Howellscc53ce52011-01-14 18:45:26 +0000244 if (!follow_down_one(&nd->path))
Ian Kent6e60a9a2008-07-23 21:30:27 -0700245 goto done;
Ian Kentec6e8c72008-07-23 21:30:28 -0700246 goto follow;
Ian Kent6e60a9a2008-07-23 21:30:27 -0700247 }
248 spin_unlock(&sbi->fs_lock);
Ian Kent34ca9592006-03-27 01:14:54 -0800249 goto done;
Ian Kent6e60a9a2008-07-23 21:30:27 -0700250 }
Ian Kent34ca9592006-03-27 01:14:54 -0800251
Ian Kent6e60a9a2008-07-23 21:30:27 -0700252 /* If an expire request is pending everyone must wait. */
Ian Kent06a35982008-07-23 21:30:28 -0700253 autofs4_expire_wait(dentry);
Ian Kent97e74492008-07-23 21:30:26 -0700254
Ian Kent6e60a9a2008-07-23 21:30:27 -0700255 /* We trigger a mount for almost all flags */
Ian Kent36b64132009-12-15 16:45:44 -0800256 lookup_type = autofs4_need_mount(nd->flags);
Ian Kentaa952eb2009-12-15 16:45:45 -0800257 spin_lock(&sbi->fs_lock);
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100258 spin_lock(&autofs4_lock);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100259 spin_lock(&dentry->d_lock);
Ian Kentaa952eb2009-12-15 16:45:45 -0800260 if (!(lookup_type || ino->flags & AUTOFS_INF_PENDING)) {
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100261 spin_unlock(&dentry->d_lock);
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100262 spin_unlock(&autofs4_lock);
Ian Kentaa952eb2009-12-15 16:45:45 -0800263 spin_unlock(&sbi->fs_lock);
Ian Kentec6e8c72008-07-23 21:30:28 -0700264 goto follow;
Ian Kentaa952eb2009-12-15 16:45:45 -0800265 }
Ian Kent6e60a9a2008-07-23 21:30:27 -0700266
Ian Kent871f9432006-03-27 01:14:58 -0800267 /*
Ian Kent6e60a9a2008-07-23 21:30:27 -0700268 * If the dentry contains directories then it is an autofs
269 * multi-mount with no root mount offset. So don't try to
270 * mount it again.
Ian Kent871f9432006-03-27 01:14:58 -0800271 */
Ian Kentaa952eb2009-12-15 16:45:45 -0800272 if (ino->flags & AUTOFS_INF_PENDING ||
Ian Kentc42c7f72009-12-15 16:45:48 -0800273 (!d_mountpoint(dentry) && list_empty(&dentry->d_subdirs))) {
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100274 spin_unlock(&dentry->d_lock);
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100275 spin_unlock(&autofs4_lock);
Ian Kentaa952eb2009-12-15 16:45:45 -0800276 spin_unlock(&sbi->fs_lock);
Ian Kent871f9432006-03-27 01:14:58 -0800277
Ian Kentf7422462010-05-10 16:46:08 +0800278 status = try_to_fill_dentry(dentry, nd->flags);
Ian Kent871f9432006-03-27 01:14:58 -0800279 if (status)
280 goto out_error;
281
Ian Kent6e60a9a2008-07-23 21:30:27 -0700282 goto follow;
Ian Kent871f9432006-03-27 01:14:58 -0800283 }
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100284 spin_unlock(&dentry->d_lock);
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100285 spin_unlock(&autofs4_lock);
Ian Kentaa952eb2009-12-15 16:45:45 -0800286 spin_unlock(&sbi->fs_lock);
Ian Kent6e60a9a2008-07-23 21:30:27 -0700287follow:
288 /*
289 * If there is no root mount it must be an autofs
290 * multi-mount with no root offset so we don't need
291 * to follow it.
292 */
David Howellscc53ce52011-01-14 18:45:26 +0000293 if (d_managed(dentry)) {
294 status = follow_down(&nd->path, false);
295 if (status < 0)
Ian Kent6e60a9a2008-07-23 21:30:27 -0700296 goto out_error;
Ian Kent6e60a9a2008-07-23 21:30:27 -0700297 }
Ian Kent871f9432006-03-27 01:14:58 -0800298
Ian Kent34ca9592006-03-27 01:14:54 -0800299done:
300 return NULL;
301
302out_error:
Jan Blunck1d957f92008-02-14 19:34:35 -0800303 path_put(&nd->path);
Ian Kent34ca9592006-03-27 01:14:54 -0800304 return ERR_PTR(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
307/*
308 * Revalidate is called on every cache lookup. Some of those
309 * cache lookups may actually happen while the dentry is not
310 * yet completely filled in, and revalidate has to delay such
311 * lookups..
312 */
Ian Kent718c6042006-03-27 01:14:42 -0800313static int autofs4_revalidate(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Nick Piggin34286d62011-01-07 17:49:57 +1100315 struct inode *dir;
316 struct autofs_sb_info *sbi;
317 int oz_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 int flags = nd ? nd->flags : 0;
Al Viro4b1ae272010-03-03 12:58:31 -0500319 int status = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Nick Piggin34286d62011-01-07 17:49:57 +1100321 if (flags & LOOKUP_RCU)
322 return -ECHILD;
323
324 dir = dentry->d_parent->d_inode;
325 sbi = autofs4_sbi(dir->i_sb);
326 oz_mode = autofs4_oz_mode(sbi);
327
Ian Kent213614d2009-12-15 16:45:51 -0800328 /* Pending dentry */
Al Viro4b1ae272010-03-03 12:58:31 -0500329 spin_lock(&sbi->fs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 if (autofs4_ispending(dentry)) {
Al Viro4b1ae272010-03-03 12:58:31 -0500331 /* The daemon never causes a mount to trigger */
Ian Kent213614d2009-12-15 16:45:51 -0800332 spin_unlock(&sbi->fs_lock);
Al Viro4b1ae272010-03-03 12:58:31 -0500333
334 if (oz_mode)
335 return 1;
Ian Kentbcdc5e02006-09-27 01:50:44 -0700336
337 /*
Ian Kent06a35982008-07-23 21:30:28 -0700338 * If the directory has gone away due to an expire
339 * we have been called as ->d_revalidate() and so
340 * we need to return false and proceed to ->lookup().
341 */
342 if (autofs4_expire_wait(dentry) == -EAGAIN)
343 return 0;
344
345 /*
Ian Kentbcdc5e02006-09-27 01:50:44 -0700346 * A zero status is success otherwise we have a
347 * negative error code.
348 */
Al Viro4b1ae272010-03-03 12:58:31 -0500349 status = try_to_fill_dentry(dentry, flags);
Ian Kentbcdc5e02006-09-27 01:50:44 -0700350 if (status == 0)
Ian Kentf50b6f82007-02-20 13:58:10 -0800351 return 1;
352
Ian Kentbcdc5e02006-09-27 01:50:44 -0700353 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 }
Al Viro4b1ae272010-03-03 12:58:31 -0500355 spin_unlock(&sbi->fs_lock);
356
357 /* Negative dentry.. invalidate if "old" */
358 if (dentry->d_inode == NULL)
359 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 /* Check for a non-mountpoint directory with no contents */
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100362 spin_lock(&autofs4_lock);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100363 spin_lock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 if (S_ISDIR(dentry->d_inode->i_mode) &&
Ian Kentc42c7f72009-12-15 16:45:48 -0800365 !d_mountpoint(dentry) && list_empty(&dentry->d_subdirs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 DPRINTK("dentry=%p %.*s, emptydir",
367 dentry, dentry->d_name.len, dentry->d_name.name);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100368 spin_unlock(&dentry->d_lock);
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100369 spin_unlock(&autofs4_lock);
Ian Kent97e74492008-07-23 21:30:26 -0700370
Al Viro4b1ae272010-03-03 12:58:31 -0500371 /* The daemon never causes a mount to trigger */
372 if (oz_mode)
373 return 1;
Ian Kentbcdc5e02006-09-27 01:50:44 -0700374
Al Viro4b1ae272010-03-03 12:58:31 -0500375 /*
376 * A zero status is success otherwise we have a
377 * negative error code.
378 */
379 status = try_to_fill_dentry(dentry, flags);
380 if (status == 0)
381 return 1;
Ian Kentbcdc5e02006-09-27 01:50:44 -0700382
Al Viro4b1ae272010-03-03 12:58:31 -0500383 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 }
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100385 spin_unlock(&dentry->d_lock);
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100386 spin_unlock(&autofs4_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 return 1;
389}
390
Ian Kent34ca9592006-03-27 01:14:54 -0800391void autofs4_dentry_release(struct dentry *de)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
393 struct autofs_info *inf;
394
395 DPRINTK("releasing %p", de);
396
397 inf = autofs4_dentry_ino(de);
398 de->d_fsdata = NULL;
399
400 if (inf) {
Ian Kentf50b6f82007-02-20 13:58:10 -0800401 struct autofs_sb_info *sbi = autofs4_sbi(de->d_sb);
402
Ian Kentf50b6f82007-02-20 13:58:10 -0800403 if (sbi) {
Ian Kent5f6f4f22008-07-23 21:30:09 -0700404 spin_lock(&sbi->lookup_lock);
Ian Kent25767372008-07-23 21:30:12 -0700405 if (!list_empty(&inf->active))
406 list_del(&inf->active);
Ian Kent5f6f4f22008-07-23 21:30:09 -0700407 if (!list_empty(&inf->expiring))
408 list_del(&inf->expiring);
409 spin_unlock(&sbi->lookup_lock);
Ian Kentf50b6f82007-02-20 13:58:10 -0800410 }
411
Jeff Mahoneyc3724b12007-04-11 23:28:46 -0700412 inf->dentry = NULL;
413 inf->inode = NULL;
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 autofs4_free_ino(inf);
416 }
417}
418
419/* For dentries of directories in the root dir */
Al Viro08f11512009-02-20 05:56:19 +0000420static const struct dentry_operations autofs4_root_dentry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 .d_release = autofs4_dentry_release,
422};
423
424/* For other dentries */
Al Viro08f11512009-02-20 05:56:19 +0000425static const struct dentry_operations autofs4_dentry_operations = {
Ian Kent10584212011-01-14 18:45:58 +0000426 .d_automount = autofs4_d_automount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 .d_release = autofs4_dentry_release,
428};
429
Ian Kent6510c9d2009-12-15 16:45:47 -0800430static struct dentry *autofs4_lookup_active(struct dentry *dentry)
Ian Kent25767372008-07-23 21:30:12 -0700431{
Ian Kent6510c9d2009-12-15 16:45:47 -0800432 struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
433 struct dentry *parent = dentry->d_parent;
434 struct qstr *name = &dentry->d_name;
Ian Kent25767372008-07-23 21:30:12 -0700435 unsigned int len = name->len;
436 unsigned int hash = name->hash;
437 const unsigned char *str = name->name;
438 struct list_head *p, *head;
439
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100440 spin_lock(&autofs4_lock);
Ian Kent25767372008-07-23 21:30:12 -0700441 spin_lock(&sbi->lookup_lock);
442 head = &sbi->active_list;
443 list_for_each(p, head) {
444 struct autofs_info *ino;
Ian Kente4d5ade2009-12-15 16:45:49 -0800445 struct dentry *active;
Ian Kent25767372008-07-23 21:30:12 -0700446 struct qstr *qstr;
447
448 ino = list_entry(p, struct autofs_info, active);
Ian Kente4d5ade2009-12-15 16:45:49 -0800449 active = ino->dentry;
Ian Kent25767372008-07-23 21:30:12 -0700450
Ian Kente4d5ade2009-12-15 16:45:49 -0800451 spin_lock(&active->d_lock);
Ian Kent25767372008-07-23 21:30:12 -0700452
453 /* Already gone? */
Nick Pigginb7ab39f2011-01-07 17:49:32 +1100454 if (active->d_count == 0)
Ian Kent25767372008-07-23 21:30:12 -0700455 goto next;
456
Ian Kente4d5ade2009-12-15 16:45:49 -0800457 qstr = &active->d_name;
Ian Kent25767372008-07-23 21:30:12 -0700458
Ian Kente4d5ade2009-12-15 16:45:49 -0800459 if (active->d_name.hash != hash)
Ian Kent25767372008-07-23 21:30:12 -0700460 goto next;
Ian Kente4d5ade2009-12-15 16:45:49 -0800461 if (active->d_parent != parent)
Ian Kent25767372008-07-23 21:30:12 -0700462 goto next;
463
464 if (qstr->len != len)
465 goto next;
466 if (memcmp(qstr->name, str, len))
467 goto next;
468
Al Viro4b1ae272010-03-03 12:58:31 -0500469 if (d_unhashed(active)) {
Nick Pigginb7ab39f2011-01-07 17:49:32 +1100470 dget_dlock(active);
Al Viro4b1ae272010-03-03 12:58:31 -0500471 spin_unlock(&active->d_lock);
472 spin_unlock(&sbi->lookup_lock);
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100473 spin_unlock(&autofs4_lock);
Al Viro4b1ae272010-03-03 12:58:31 -0500474 return active;
475 }
Ian Kent25767372008-07-23 21:30:12 -0700476next:
Ian Kente4d5ade2009-12-15 16:45:49 -0800477 spin_unlock(&active->d_lock);
Ian Kent25767372008-07-23 21:30:12 -0700478 }
479 spin_unlock(&sbi->lookup_lock);
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100480 spin_unlock(&autofs4_lock);
Ian Kent25767372008-07-23 21:30:12 -0700481
482 return NULL;
483}
484
Ian Kent6510c9d2009-12-15 16:45:47 -0800485static struct dentry *autofs4_lookup_expiring(struct dentry *dentry)
Ian Kentf50b6f82007-02-20 13:58:10 -0800486{
Ian Kent6510c9d2009-12-15 16:45:47 -0800487 struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
488 struct dentry *parent = dentry->d_parent;
489 struct qstr *name = &dentry->d_name;
Ian Kentf50b6f82007-02-20 13:58:10 -0800490 unsigned int len = name->len;
491 unsigned int hash = name->hash;
492 const unsigned char *str = name->name;
493 struct list_head *p, *head;
494
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100495 spin_lock(&autofs4_lock);
Ian Kent5f6f4f22008-07-23 21:30:09 -0700496 spin_lock(&sbi->lookup_lock);
497 head = &sbi->expiring_list;
Ian Kentf50b6f82007-02-20 13:58:10 -0800498 list_for_each(p, head) {
499 struct autofs_info *ino;
Ian Kentcb4b4922009-12-15 16:45:50 -0800500 struct dentry *expiring;
Ian Kentf50b6f82007-02-20 13:58:10 -0800501 struct qstr *qstr;
502
Ian Kent5f6f4f22008-07-23 21:30:09 -0700503 ino = list_entry(p, struct autofs_info, expiring);
Ian Kentcb4b4922009-12-15 16:45:50 -0800504 expiring = ino->dentry;
Ian Kentf50b6f82007-02-20 13:58:10 -0800505
Ian Kentcb4b4922009-12-15 16:45:50 -0800506 spin_lock(&expiring->d_lock);
Ian Kentf50b6f82007-02-20 13:58:10 -0800507
508 /* Bad luck, we've already been dentry_iput */
Ian Kentcb4b4922009-12-15 16:45:50 -0800509 if (!expiring->d_inode)
Ian Kentf50b6f82007-02-20 13:58:10 -0800510 goto next;
511
Ian Kentcb4b4922009-12-15 16:45:50 -0800512 qstr = &expiring->d_name;
Ian Kentf50b6f82007-02-20 13:58:10 -0800513
Ian Kentcb4b4922009-12-15 16:45:50 -0800514 if (expiring->d_name.hash != hash)
Ian Kentf50b6f82007-02-20 13:58:10 -0800515 goto next;
Ian Kentcb4b4922009-12-15 16:45:50 -0800516 if (expiring->d_parent != parent)
Ian Kentf50b6f82007-02-20 13:58:10 -0800517 goto next;
518
519 if (qstr->len != len)
520 goto next;
521 if (memcmp(qstr->name, str, len))
522 goto next;
523
Al Viro4b1ae272010-03-03 12:58:31 -0500524 if (d_unhashed(expiring)) {
Nick Pigginb7ab39f2011-01-07 17:49:32 +1100525 dget_dlock(expiring);
Al Viro4b1ae272010-03-03 12:58:31 -0500526 spin_unlock(&expiring->d_lock);
527 spin_unlock(&sbi->lookup_lock);
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100528 spin_unlock(&autofs4_lock);
Al Viro4b1ae272010-03-03 12:58:31 -0500529 return expiring;
530 }
Ian Kentf50b6f82007-02-20 13:58:10 -0800531next:
Ian Kentcb4b4922009-12-15 16:45:50 -0800532 spin_unlock(&expiring->d_lock);
Ian Kentf50b6f82007-02-20 13:58:10 -0800533 }
Ian Kent5f6f4f22008-07-23 21:30:09 -0700534 spin_unlock(&sbi->lookup_lock);
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100535 spin_unlock(&autofs4_lock);
Ian Kentf50b6f82007-02-20 13:58:10 -0800536
537 return NULL;
538}
539
Ian Kent10584212011-01-14 18:45:58 +0000540static int autofs4_mount_wait(struct dentry *dentry)
541{
542 struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
543 struct autofs_info *ino = autofs4_dentry_ino(dentry);
544 int status;
545
546 if (ino->flags & AUTOFS_INF_PENDING) {
547 DPRINTK("waiting for mount name=%.*s",
548 dentry->d_name.len, dentry->d_name.name);
549 status = autofs4_wait(sbi, dentry, NFY_MOUNT);
550 DPRINTK("mount wait done status=%d", status);
551 ino->last_used = jiffies;
552 return status;
553 }
554 return 0;
555}
556
557static int do_expire_wait(struct dentry *dentry)
558{
559 struct dentry *expiring;
560
561 expiring = autofs4_lookup_expiring(dentry);
562 if (!expiring)
563 return autofs4_expire_wait(dentry);
564 else {
565 /*
566 * If we are racing with expire the request might not
567 * be quite complete, but the directory has been removed
568 * so it must have been successful, just wait for it.
569 */
570 autofs4_expire_wait(expiring);
571 autofs4_del_expiring(expiring);
572 dput(expiring);
573 }
574 return 0;
575}
576
577static struct dentry *autofs4_mountpoint_changed(struct path *path)
578{
579 struct dentry *dentry = path->dentry;
580 struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
581
582 /*
583 * If this is an indirect mount the dentry could have gone away
584 * as a result of an expire and a new one created.
585 */
586 if (autofs_type_indirect(sbi->type) && d_unhashed(dentry)) {
587 struct dentry *parent = dentry->d_parent;
588 struct dentry *new = d_lookup(parent, &dentry->d_name);
589 if (!new)
590 return NULL;
591 dput(path->dentry);
592 path->dentry = new;
593 }
594 return path->dentry;
595}
596
597struct vfsmount *autofs4_d_automount(struct path *path)
598{
599 struct dentry *dentry = path->dentry;
600 struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
601 struct autofs_info *ino = autofs4_dentry_ino(dentry);
602 int status;
603
604 DPRINTK("dentry=%p %.*s",
605 dentry, dentry->d_name.len, dentry->d_name.name);
606
607 /* The daemon never triggers a mount. */
608 if (autofs4_oz_mode(sbi))
609 return NULL;
610
611 /*
612 * If an expire request is pending everyone must wait.
613 * If the expire fails we're still mounted so continue
614 * the follow and return. A return of -EAGAIN (which only
615 * happens with indirect mounts) means the expire completed
616 * and the directory was removed, so just go ahead and try
617 * the mount.
618 */
619 status = do_expire_wait(dentry);
620 if (status && status != -EAGAIN)
621 return NULL;
622
623 /* Callback to the daemon to perform the mount or wait */
624 spin_lock(&sbi->fs_lock);
625 if (ino->flags & AUTOFS_INF_PENDING) {
626 spin_unlock(&sbi->fs_lock);
627 status = autofs4_mount_wait(dentry);
628 if (status)
629 return ERR_PTR(status);
630 spin_lock(&sbi->fs_lock);
631 goto done;
632 }
633
634 /*
635 * If the dentry is a symlink it's equivalent to a directory
636 * having d_mounted() true, so there's no need to call back
637 * to the daemon.
638 */
639 if (dentry->d_inode && S_ISLNK(dentry->d_inode->i_mode))
640 goto done;
641 spin_lock(&dentry->d_lock);
642 if (!d_mountpoint(dentry) && list_empty(&dentry->d_subdirs)) {
643 ino->flags |= AUTOFS_INF_PENDING;
644 spin_unlock(&dentry->d_lock);
645 spin_unlock(&sbi->fs_lock);
646 status = autofs4_mount_wait(dentry);
647 if (status)
648 return ERR_PTR(status);
649 spin_lock(&sbi->fs_lock);
650 ino->flags &= ~AUTOFS_INF_PENDING;
651 goto done;
652 }
653 spin_unlock(&dentry->d_lock);
654done:
655 /*
656 * Any needed mounting has been completed and the path updated
657 * so turn this into a normal dentry so we don't continually
658 * call ->d_automount().
659 */
660 managed_dentry_clear_automount(dentry);
661 spin_unlock(&sbi->fs_lock);
662
663 /* Mount succeeded, check if we ended up with a new dentry */
664 dentry = autofs4_mountpoint_changed(path);
665 if (!dentry)
666 return ERR_PTR(-ENOENT);
667
668 return NULL;
669}
670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671/* Lookups in the root directory */
672static struct dentry *autofs4_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
673{
674 struct autofs_sb_info *sbi;
Ian Kent25767372008-07-23 21:30:12 -0700675 struct autofs_info *ino;
Ian Kent10584212011-01-14 18:45:58 +0000676 struct dentry *active;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Ian Kent10584212011-01-14 18:45:58 +0000678 DPRINTK("name = %.*s", dentry->d_name.len, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Ian Kent718c6042006-03-27 01:14:42 -0800680 /* File name too long to exist */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 if (dentry->d_name.len > NAME_MAX)
Ian Kent718c6042006-03-27 01:14:42 -0800682 return ERR_PTR(-ENAMETOOLONG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
684 sbi = autofs4_sbi(dir->i_sb);
Ian Kent718c6042006-03-27 01:14:42 -0800685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 DPRINTK("pid = %u, pgrp = %u, catatonic = %d, oz_mode = %d",
Ian Kent10584212011-01-14 18:45:58 +0000687 current->pid, task_pgrp_nr(current), sbi->catatonic, oz_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Ian Kent6510c9d2009-12-15 16:45:47 -0800689 active = autofs4_lookup_active(dentry);
Ian Kent90387c92009-12-15 16:45:46 -0800690 if (active) {
Ian Kent10584212011-01-14 18:45:58 +0000691 return active;
Ian Kentaa952eb2009-12-15 16:45:45 -0800692 } else {
Nick Pigginfb045ad2011-01-07 17:49:55 +1100693 d_set_d_op(dentry, &autofs4_root_dentry_operations);
Al Viro4b1ae272010-03-03 12:58:31 -0500694
695 /*
Ian Kent10584212011-01-14 18:45:58 +0000696 * A dentry that is not within the root can never trigger a
697 * mount operation, unless the directory already exists, so we
698 * can return fail immediately. The daemon however does need
699 * to create directories within the file system.
Al Viro4b1ae272010-03-03 12:58:31 -0500700 */
Ian Kent10584212011-01-14 18:45:58 +0000701 if (!autofs4_oz_mode(sbi) && !IS_ROOT(dentry->d_parent))
702 return ERR_PTR(-ENOENT);
703
704 /* Mark entries in the root as mount triggers */
705 if (autofs_type_indirect(sbi->type) && IS_ROOT(dentry->d_parent)) {
706 d_set_d_op(dentry, &autofs4_dentry_operations);
707 managed_dentry_set_automount(dentry);
708 }
709
Al Viro4b1ae272010-03-03 12:58:31 -0500710 ino = autofs4_init_ino(NULL, sbi, 0555);
711 if (!ino)
712 return ERR_PTR(-ENOMEM);
713
714 dentry->d_fsdata = ino;
715 ino->dentry = dentry;
716
717 autofs4_add_active(dentry);
718
719 d_instantiate(dentry, NULL);
Ian Kent25767372008-07-23 21:30:12 -0700720 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 return NULL;
722}
723
724static int autofs4_dir_symlink(struct inode *dir,
725 struct dentry *dentry,
726 const char *symname)
727{
728 struct autofs_sb_info *sbi = autofs4_sbi(dir->i_sb);
729 struct autofs_info *ino = autofs4_dentry_ino(dentry);
Ian Kent1aff3c82006-03-27 01:14:46 -0800730 struct autofs_info *p_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 struct inode *inode;
732 char *cp;
733
734 DPRINTK("%s <- %.*s", symname,
735 dentry->d_name.len, dentry->d_name.name);
736
737 if (!autofs4_oz_mode(sbi))
738 return -EACCES;
739
740 ino = autofs4_init_ino(ino, sbi, S_IFLNK | 0555);
Ian Kent25767372008-07-23 21:30:12 -0700741 if (!ino)
742 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Al Viro4b1ae272010-03-03 12:58:31 -0500744 autofs4_del_active(dentry);
745
Ian Kentef581a72008-07-23 21:30:13 -0700746 ino->size = strlen(symname);
Ian Kent25767372008-07-23 21:30:12 -0700747 cp = kmalloc(ino->size + 1, GFP_KERNEL);
748 if (!cp) {
749 if (!dentry->d_fsdata)
750 kfree(ino);
751 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 }
753
754 strcpy(cp, symname);
755
756 inode = autofs4_get_inode(dir->i_sb, ino);
Ian Kent25767372008-07-23 21:30:12 -0700757 if (!inode) {
758 kfree(cp);
759 if (!dentry->d_fsdata)
760 kfree(ino);
761 return -ENOMEM;
762 }
Ian Kent1864f7b2007-08-22 14:01:54 -0700763 d_add(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 dentry->d_fsdata = ino;
766 ino->dentry = dget(dentry);
Ian Kent1aff3c82006-03-27 01:14:46 -0800767 atomic_inc(&ino->count);
768 p_ino = autofs4_dentry_ino(dentry->d_parent);
769 if (p_ino && dentry->d_parent != dentry)
770 atomic_inc(&p_ino->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 ino->inode = inode;
772
Ian Kent25767372008-07-23 21:30:12 -0700773 ino->u.symlink = cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 dir->i_mtime = CURRENT_TIME;
775
776 return 0;
777}
778
779/*
780 * NOTE!
781 *
782 * Normal filesystems would do a "d_delete()" to tell the VFS dcache
783 * that the file no longer exists. However, doing that means that the
784 * VFS layer can turn the dentry into a negative dentry. We don't want
Ian Kentf50b6f82007-02-20 13:58:10 -0800785 * this, because the unlink is probably the result of an expire.
Ian Kent5f6f4f22008-07-23 21:30:09 -0700786 * We simply d_drop it and add it to a expiring list in the super block,
787 * which allows the dentry lookup to check for an incomplete expire.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 *
789 * If a process is blocked on the dentry waiting for the expire to finish,
790 * it will invalidate the dentry and try to mount with a new one.
791 *
792 * Also see autofs4_dir_rmdir()..
793 */
794static int autofs4_dir_unlink(struct inode *dir, struct dentry *dentry)
795{
796 struct autofs_sb_info *sbi = autofs4_sbi(dir->i_sb);
797 struct autofs_info *ino = autofs4_dentry_ino(dentry);
Ian Kent1aff3c82006-03-27 01:14:46 -0800798 struct autofs_info *p_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800 /* This allows root to remove symlinks */
Sukadev Bhattiprolud78e53c2007-05-10 22:23:06 -0700801 if (!autofs4_oz_mode(sbi) && !capable(CAP_SYS_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 return -EACCES;
803
Ian Kent1aff3c82006-03-27 01:14:46 -0800804 if (atomic_dec_and_test(&ino->count)) {
805 p_ino = autofs4_dentry_ino(dentry->d_parent);
806 if (p_ino && dentry->d_parent != dentry)
807 atomic_dec(&p_ino->count);
808 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 dput(ino->dentry);
810
811 dentry->d_inode->i_size = 0;
Dave Hansence71ec32006-09-30 23:29:06 -0700812 clear_nlink(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814 dir->i_mtime = CURRENT_TIME;
815
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100816 spin_lock(&autofs4_lock);
Al Viro4b1ae272010-03-03 12:58:31 -0500817 autofs4_add_expiring(dentry);
Ian Kentf50b6f82007-02-20 13:58:10 -0800818 spin_lock(&dentry->d_lock);
819 __d_drop(dentry);
820 spin_unlock(&dentry->d_lock);
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100821 spin_unlock(&autofs4_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 return 0;
824}
825
826static int autofs4_dir_rmdir(struct inode *dir, struct dentry *dentry)
827{
828 struct autofs_sb_info *sbi = autofs4_sbi(dir->i_sb);
829 struct autofs_info *ino = autofs4_dentry_ino(dentry);
Ian Kent1aff3c82006-03-27 01:14:46 -0800830 struct autofs_info *p_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Ian Kentf50b6f82007-02-20 13:58:10 -0800832 DPRINTK("dentry %p, removing %.*s",
833 dentry, dentry->d_name.len, dentry->d_name.name);
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 if (!autofs4_oz_mode(sbi))
836 return -EACCES;
837
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100838 spin_lock(&autofs4_lock);
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100839 spin_lock(&sbi->lookup_lock);
840 spin_lock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 if (!list_empty(&dentry->d_subdirs)) {
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100842 spin_unlock(&dentry->d_lock);
843 spin_unlock(&sbi->lookup_lock);
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100844 spin_unlock(&autofs4_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 return -ENOTEMPTY;
846 }
Nick Piggin2fd6b7f2011-01-07 17:49:34 +1100847 __autofs4_add_expiring(dentry);
848 spin_unlock(&sbi->lookup_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 __d_drop(dentry);
850 spin_unlock(&dentry->d_lock);
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100851 spin_unlock(&autofs4_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Ian Kent1aff3c82006-03-27 01:14:46 -0800853 if (atomic_dec_and_test(&ino->count)) {
854 p_ino = autofs4_dentry_ino(dentry->d_parent);
855 if (p_ino && dentry->d_parent != dentry)
856 atomic_dec(&p_ino->count);
857 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 dput(ino->dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 dentry->d_inode->i_size = 0;
Dave Hansence71ec32006-09-30 23:29:06 -0700860 clear_nlink(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
862 if (dir->i_nlink)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700863 drop_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
865 return 0;
866}
867
868static int autofs4_dir_mkdir(struct inode *dir, struct dentry *dentry, int mode)
869{
870 struct autofs_sb_info *sbi = autofs4_sbi(dir->i_sb);
871 struct autofs_info *ino = autofs4_dentry_ino(dentry);
Ian Kent1aff3c82006-03-27 01:14:46 -0800872 struct autofs_info *p_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 struct inode *inode;
874
Sukadev Bhattiprolud78e53c2007-05-10 22:23:06 -0700875 if (!autofs4_oz_mode(sbi))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 return -EACCES;
877
878 DPRINTK("dentry %p, creating %.*s",
879 dentry, dentry->d_name.len, dentry->d_name.name);
880
881 ino = autofs4_init_ino(ino, sbi, S_IFDIR | 0555);
Ian Kent25767372008-07-23 21:30:12 -0700882 if (!ino)
883 return -ENOMEM;
884
Al Viro4b1ae272010-03-03 12:58:31 -0500885 autofs4_del_active(dentry);
886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 inode = autofs4_get_inode(dir->i_sb, ino);
Ian Kent25767372008-07-23 21:30:12 -0700888 if (!inode) {
889 if (!dentry->d_fsdata)
890 kfree(ino);
891 return -ENOMEM;
892 }
Ian Kent1864f7b2007-08-22 14:01:54 -0700893 d_add(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 dentry->d_fsdata = ino;
896 ino->dentry = dget(dentry);
Ian Kent1aff3c82006-03-27 01:14:46 -0800897 atomic_inc(&ino->count);
898 p_ino = autofs4_dentry_ino(dentry->d_parent);
899 if (p_ino && dentry->d_parent != dentry)
900 atomic_inc(&p_ino->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 ino->inode = inode;
Dave Hansend8c76e62006-09-30 23:29:04 -0700902 inc_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 dir->i_mtime = CURRENT_TIME;
904
905 return 0;
906}
907
908/* Get/set timeout ioctl() operation */
Arnd Bergmannc9243f52010-07-04 00:15:07 +0200909#ifdef CONFIG_COMPAT
910static inline int autofs4_compat_get_set_timeout(struct autofs_sb_info *sbi,
911 compat_ulong_t __user *p)
912{
913 int rv;
914 unsigned long ntimeout;
915
916 if ((rv = get_user(ntimeout, p)) ||
917 (rv = put_user(sbi->exp_timeout/HZ, p)))
918 return rv;
919
920 if (ntimeout > UINT_MAX/HZ)
921 sbi->exp_timeout = 0;
922 else
923 sbi->exp_timeout = ntimeout * HZ;
924
925 return 0;
926}
927#endif
928
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929static inline int autofs4_get_set_timeout(struct autofs_sb_info *sbi,
930 unsigned long __user *p)
931{
932 int rv;
933 unsigned long ntimeout;
934
Sukadev Bhattiprolud78e53c2007-05-10 22:23:06 -0700935 if ((rv = get_user(ntimeout, p)) ||
936 (rv = put_user(sbi->exp_timeout/HZ, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 return rv;
938
Sukadev Bhattiprolud78e53c2007-05-10 22:23:06 -0700939 if (ntimeout > ULONG_MAX/HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 sbi->exp_timeout = 0;
941 else
942 sbi->exp_timeout = ntimeout * HZ;
943
944 return 0;
945}
946
947/* Return protocol version */
948static inline int autofs4_get_protover(struct autofs_sb_info *sbi, int __user *p)
949{
950 return put_user(sbi->version, p);
951}
952
953/* Return protocol sub version */
954static inline int autofs4_get_protosubver(struct autofs_sb_info *sbi, int __user *p)
955{
956 return put_user(sbi->sub_version, p);
957}
958
959/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960* Tells the daemon whether it can umount the autofs mount.
961*/
962static inline int autofs4_ask_umount(struct vfsmount *mnt, int __user *p)
963{
964 int status = 0;
965
Ian Kente3474a82006-03-27 01:14:51 -0800966 if (may_umount(mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 status = 1;
968
969 DPRINTK("returning %d", status);
970
971 status = put_user(status, p);
972
973 return status;
974}
975
976/* Identify autofs4_dentries - this is so we can tell if there's
977 an extra dentry refcount or not. We only hold a refcount on the
978 dentry if its non-negative (ie, d_inode != NULL)
979*/
980int is_autofs4_dentry(struct dentry *dentry)
981{
982 return dentry && dentry->d_inode &&
983 (dentry->d_op == &autofs4_root_dentry_operations ||
984 dentry->d_op == &autofs4_dentry_operations) &&
985 dentry->d_fsdata != NULL;
986}
987
988/*
989 * ioctl()'s on the root directory is the chief method for the daemon to
990 * generate kernel reactions
991 */
Frederic Weisbecker3663df72010-05-19 15:08:17 +0200992static int autofs4_root_ioctl_unlocked(struct inode *inode, struct file *filp,
993 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994{
995 struct autofs_sb_info *sbi = autofs4_sbi(inode->i_sb);
996 void __user *p = (void __user *)arg;
997
998 DPRINTK("cmd = 0x%08x, arg = 0x%08lx, sbi = %p, pgrp = %u",
Pavel Emelianova47afb02007-10-18 23:39:46 -0700999 cmd,arg,sbi,task_pgrp_nr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Sukadev Bhattiprolud78e53c2007-05-10 22:23:06 -07001001 if (_IOC_TYPE(cmd) != _IOC_TYPE(AUTOFS_IOC_FIRST) ||
1002 _IOC_NR(cmd) - _IOC_NR(AUTOFS_IOC_FIRST) >= AUTOFS_IOC_COUNT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 return -ENOTTY;
1004
Sukadev Bhattiprolud78e53c2007-05-10 22:23:06 -07001005 if (!autofs4_oz_mode(sbi) && !capable(CAP_SYS_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 return -EPERM;
1007
1008 switch(cmd) {
1009 case AUTOFS_IOC_READY: /* Wait queue: go ahead and retry */
1010 return autofs4_wait_release(sbi,(autofs_wqt_t)arg,0);
1011 case AUTOFS_IOC_FAIL: /* Wait queue: fail with ENOENT */
1012 return autofs4_wait_release(sbi,(autofs_wqt_t)arg,-ENOENT);
1013 case AUTOFS_IOC_CATATONIC: /* Enter catatonic mode (daemon shutdown) */
1014 autofs4_catatonic_mode(sbi);
1015 return 0;
1016 case AUTOFS_IOC_PROTOVER: /* Get protocol version */
1017 return autofs4_get_protover(sbi, p);
1018 case AUTOFS_IOC_PROTOSUBVER: /* Get protocol sub version */
1019 return autofs4_get_protosubver(sbi, p);
1020 case AUTOFS_IOC_SETTIMEOUT:
1021 return autofs4_get_set_timeout(sbi, p);
Arnd Bergmannc9243f52010-07-04 00:15:07 +02001022#ifdef CONFIG_COMPAT
1023 case AUTOFS_IOC_SETTIMEOUT32:
1024 return autofs4_compat_get_set_timeout(sbi, p);
1025#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 case AUTOFS_IOC_ASKUMOUNT:
Josef "Jeff" Sipeka4669ed2006-12-08 02:36:46 -08001028 return autofs4_ask_umount(filp->f_path.mnt, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
1030 /* return a single thing to expire */
1031 case AUTOFS_IOC_EXPIRE:
Josef "Jeff" Sipeka4669ed2006-12-08 02:36:46 -08001032 return autofs4_expire_run(inode->i_sb,filp->f_path.mnt,sbi, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 /* same as above, but can send multiple expires through pipe */
1034 case AUTOFS_IOC_EXPIRE_MULTI:
Josef "Jeff" Sipeka4669ed2006-12-08 02:36:46 -08001035 return autofs4_expire_multi(inode->i_sb,filp->f_path.mnt,sbi, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
1037 default:
1038 return -ENOSYS;
1039 }
1040}
Frederic Weisbecker3663df72010-05-19 15:08:17 +02001041
1042static long autofs4_root_ioctl(struct file *filp,
1043 unsigned int cmd, unsigned long arg)
1044{
Frederic Weisbecker3663df72010-05-19 15:08:17 +02001045 struct inode *inode = filp->f_dentry->d_inode;
Ian Kentde47de72010-12-07 13:04:00 +08001046 return autofs4_root_ioctl_unlocked(inode, filp, cmd, arg);
Frederic Weisbecker3663df72010-05-19 15:08:17 +02001047}
Arnd Bergmannc9243f52010-07-04 00:15:07 +02001048
1049#ifdef CONFIG_COMPAT
1050static long autofs4_root_compat_ioctl(struct file *filp,
1051 unsigned int cmd, unsigned long arg)
1052{
1053 struct inode *inode = filp->f_path.dentry->d_inode;
1054 int ret;
1055
Arnd Bergmannc9243f52010-07-04 00:15:07 +02001056 if (cmd == AUTOFS_IOC_READY || cmd == AUTOFS_IOC_FAIL)
1057 ret = autofs4_root_ioctl_unlocked(inode, filp, cmd, arg);
1058 else
1059 ret = autofs4_root_ioctl_unlocked(inode, filp, cmd,
1060 (unsigned long)compat_ptr(arg));
Arnd Bergmannc9243f52010-07-04 00:15:07 +02001061
1062 return ret;
1063}
1064#endif