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