| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* -*- linux-c -*- --------------------------------------------------------- * | 
|  | 2 | * | 
|  | 3 | * linux/fs/autofs/inode.c | 
|  | 4 | * | 
|  | 5 | *  Copyright 1997-1998 Transmeta Corporation -- All Rights Reserved | 
|  | 6 | * | 
|  | 7 | * This file is part of the Linux kernel and is made available under | 
|  | 8 | * the terms of the GNU General Public License, version 2, or at your | 
|  | 9 | * option, any later version, incorporated herein by reference. | 
|  | 10 | * | 
|  | 11 | * ------------------------------------------------------------------------- */ | 
|  | 12 |  | 
|  | 13 | #include <linux/kernel.h> | 
|  | 14 | #include <linux/mm.h> | 
|  | 15 | #include <linux/slab.h> | 
|  | 16 | #include <linux/file.h> | 
|  | 17 | #include <linux/parser.h> | 
|  | 18 | #include <linux/bitops.h> | 
| Jeff Garzik | e18fa70 | 2006-09-24 11:13:19 -0400 | [diff] [blame] | 19 | #include <linux/magic.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include "autofs_i.h" | 
|  | 21 | #include <linux/module.h> | 
|  | 22 |  | 
| David Howells | 0e7d738 | 2006-10-19 23:28:36 -0700 | [diff] [blame] | 23 | void autofs_kill_sb(struct super_block *sb) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | { | 
|  | 25 | struct autofs_sb_info *sbi = autofs_sbi(sb); | 
|  | 26 | unsigned int n; | 
|  | 27 |  | 
| Ian Kent | ba8df43 | 2006-11-14 02:03:29 -0800 | [diff] [blame] | 28 | /* | 
|  | 29 | * In the event of a failure in get_sb_nodev the superblock | 
|  | 30 | * info is not present so nothing else has been setup, so | 
| Jiri Kosina | c949d4e | 2006-12-06 20:39:38 -0800 | [diff] [blame] | 31 | * just call kill_anon_super when we are called from | 
|  | 32 | * deactivate_super. | 
| Ian Kent | ba8df43 | 2006-11-14 02:03:29 -0800 | [diff] [blame] | 33 | */ | 
|  | 34 | if (!sbi) | 
| Jiri Kosina | c949d4e | 2006-12-06 20:39:38 -0800 | [diff] [blame] | 35 | goto out_kill_sb; | 
| Ian Kent | ba8df43 | 2006-11-14 02:03:29 -0800 | [diff] [blame] | 36 |  | 
| Sukadev Bhattiprolu | d78e53c | 2007-05-10 22:23:06 -0700 | [diff] [blame] | 37 | if (!sbi->catatonic) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | autofs_catatonic_mode(sbi); /* Free wait queues, close pipe */ | 
|  | 39 |  | 
| Sukadev Bhattiprolu | fa0334f | 2007-05-10 22:23:08 -0700 | [diff] [blame] | 40 | put_pid(sbi->oz_pgrp); | 
|  | 41 |  | 
| Alexander Krizhanovsky | f76baf9 | 2005-09-09 13:01:59 -0700 | [diff] [blame] | 42 | autofs_hash_nuke(sbi); | 
| Sukadev Bhattiprolu | d78e53c | 2007-05-10 22:23:06 -0700 | [diff] [blame] | 43 | for (n = 0; n < AUTOFS_MAX_SYMLINKS; n++) { | 
|  | 44 | if (test_bit(n, sbi->symlink_bitmap)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | kfree(sbi->symlink[n].data); | 
|  | 46 | } | 
|  | 47 |  | 
|  | 48 | kfree(sb->s_fs_info); | 
|  | 49 |  | 
| Jiri Kosina | c949d4e | 2006-12-06 20:39:38 -0800 | [diff] [blame] | 50 | out_kill_sb: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | DPRINTK(("autofs: shutting down\n")); | 
| David Howells | 0e7d738 | 2006-10-19 23:28:36 -0700 | [diff] [blame] | 52 | kill_anon_super(sb); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | } | 
|  | 54 |  | 
| Josef 'Jeff' Sipek | ee9b6d6 | 2007-02-12 00:55:41 -0800 | [diff] [blame] | 55 | static const struct super_operations autofs_sops = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | .statfs		= simple_statfs, | 
| Miklos Szeredi | 979db75 | 2008-02-08 04:21:38 -0800 | [diff] [blame] | 57 | .show_options	= generic_show_options, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | }; | 
|  | 59 |  | 
|  | 60 | enum {Opt_err, Opt_fd, Opt_uid, Opt_gid, Opt_pgrp, Opt_minproto, Opt_maxproto}; | 
|  | 61 |  | 
|  | 62 | static match_table_t autofs_tokens = { | 
|  | 63 | {Opt_fd, "fd=%u"}, | 
|  | 64 | {Opt_uid, "uid=%u"}, | 
|  | 65 | {Opt_gid, "gid=%u"}, | 
|  | 66 | {Opt_pgrp, "pgrp=%u"}, | 
|  | 67 | {Opt_minproto, "minproto=%u"}, | 
|  | 68 | {Opt_maxproto, "maxproto=%u"}, | 
|  | 69 | {Opt_err, NULL} | 
|  | 70 | }; | 
|  | 71 |  | 
| Sukadev Bhattiprolu | d78e53c | 2007-05-10 22:23:06 -0700 | [diff] [blame] | 72 | static int parse_options(char *options, int *pipefd, uid_t *uid, gid_t *gid, | 
|  | 73 | pid_t *pgrp, int *minproto, int *maxproto) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | { | 
|  | 75 | char *p; | 
|  | 76 | substring_t args[MAX_OPT_ARGS]; | 
|  | 77 | int option; | 
|  | 78 |  | 
|  | 79 | *uid = current->uid; | 
|  | 80 | *gid = current->gid; | 
| Pavel Emelianov | a47afb0 | 2007-10-18 23:39:46 -0700 | [diff] [blame] | 81 | *pgrp = task_pgrp_nr(current); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 |  | 
|  | 83 | *minproto = *maxproto = AUTOFS_PROTO_VERSION; | 
|  | 84 |  | 
|  | 85 | *pipefd = -1; | 
|  | 86 |  | 
|  | 87 | if (!options) | 
|  | 88 | return 1; | 
|  | 89 |  | 
|  | 90 | while ((p = strsep(&options, ",")) != NULL) { | 
|  | 91 | int token; | 
|  | 92 | if (!*p) | 
|  | 93 | continue; | 
|  | 94 |  | 
|  | 95 | token = match_token(p, autofs_tokens, args); | 
|  | 96 | switch (token) { | 
|  | 97 | case Opt_fd: | 
|  | 98 | if (match_int(&args[0], &option)) | 
|  | 99 | return 1; | 
|  | 100 | *pipefd = option; | 
|  | 101 | break; | 
|  | 102 | case Opt_uid: | 
|  | 103 | if (match_int(&args[0], &option)) | 
|  | 104 | return 1; | 
|  | 105 | *uid = option; | 
|  | 106 | break; | 
|  | 107 | case Opt_gid: | 
|  | 108 | if (match_int(&args[0], &option)) | 
|  | 109 | return 1; | 
|  | 110 | *gid = option; | 
|  | 111 | break; | 
|  | 112 | case Opt_pgrp: | 
|  | 113 | if (match_int(&args[0], &option)) | 
|  | 114 | return 1; | 
|  | 115 | *pgrp = option; | 
|  | 116 | break; | 
|  | 117 | case Opt_minproto: | 
|  | 118 | if (match_int(&args[0], &option)) | 
|  | 119 | return 1; | 
|  | 120 | *minproto = option; | 
|  | 121 | break; | 
|  | 122 | case Opt_maxproto: | 
|  | 123 | if (match_int(&args[0], &option)) | 
|  | 124 | return 1; | 
|  | 125 | *maxproto = option; | 
|  | 126 | break; | 
|  | 127 | default: | 
|  | 128 | return 1; | 
|  | 129 | } | 
|  | 130 | } | 
|  | 131 | return (*pipefd < 0); | 
|  | 132 | } | 
|  | 133 |  | 
|  | 134 | int autofs_fill_super(struct super_block *s, void *data, int silent) | 
|  | 135 | { | 
|  | 136 | struct inode * root_inode; | 
|  | 137 | struct dentry * root; | 
|  | 138 | struct file * pipe; | 
|  | 139 | int pipefd; | 
|  | 140 | struct autofs_sb_info *sbi; | 
|  | 141 | int minproto, maxproto; | 
| Sukadev Bhattiprolu | fa0334f | 2007-05-10 22:23:08 -0700 | [diff] [blame] | 142 | pid_t pgid; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 |  | 
| Miklos Szeredi | 979db75 | 2008-02-08 04:21:38 -0800 | [diff] [blame] | 144 | save_mount_options(s, data); | 
|  | 145 |  | 
| Panagiotis Issaris | f8314dc | 2006-09-27 01:49:37 -0700 | [diff] [blame] | 146 | sbi = kzalloc(sizeof(*sbi), GFP_KERNEL); | 
| Sukadev Bhattiprolu | d78e53c | 2007-05-10 22:23:06 -0700 | [diff] [blame] | 147 | if (!sbi) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | goto fail_unlock; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | DPRINTK(("autofs: starting up, sbi = %p\n",sbi)); | 
|  | 150 |  | 
|  | 151 | s->s_fs_info = sbi; | 
|  | 152 | sbi->magic = AUTOFS_SBI_MAGIC; | 
| Ian Kent | ba8df43 | 2006-11-14 02:03:29 -0800 | [diff] [blame] | 153 | sbi->pipe = NULL; | 
|  | 154 | sbi->catatonic = 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | sbi->exp_timeout = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | autofs_initialize_hash(&sbi->dirhash); | 
|  | 157 | sbi->queues = NULL; | 
|  | 158 | memset(sbi->symlink_bitmap, 0, sizeof(long)*AUTOFS_SYMLINK_BITMAP_LEN); | 
|  | 159 | sbi->next_dir_ino = AUTOFS_FIRST_DIR_INO; | 
|  | 160 | s->s_blocksize = 1024; | 
|  | 161 | s->s_blocksize_bits = 10; | 
|  | 162 | s->s_magic = AUTOFS_SUPER_MAGIC; | 
|  | 163 | s->s_op = &autofs_sops; | 
|  | 164 | s->s_time_gran = 1; | 
| Alexander Krizhanovsky | f76baf9 | 2005-09-09 13:01:59 -0700 | [diff] [blame] | 165 | sbi->sb = s; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 |  | 
| David Howells | 62328a0 | 2008-02-07 00:15:30 -0800 | [diff] [blame] | 167 | root_inode = autofs_iget(s, AUTOFS_ROOT_INO); | 
|  | 168 | if (IS_ERR(root_inode)) | 
|  | 169 | goto fail_free; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | root = d_alloc_root(root_inode); | 
|  | 171 | pipe = NULL; | 
|  | 172 |  | 
|  | 173 | if (!root) | 
|  | 174 | goto fail_iput; | 
|  | 175 |  | 
|  | 176 | /* Can this call block?  - WTF cares? s is locked. */ | 
| Sukadev Bhattiprolu | d78e53c | 2007-05-10 22:23:06 -0700 | [diff] [blame] | 177 | if (parse_options(data, &pipefd, &root_inode->i_uid, | 
| Sukadev Bhattiprolu | fa0334f | 2007-05-10 22:23:08 -0700 | [diff] [blame] | 178 | &root_inode->i_gid, &pgid, &minproto, | 
| Sukadev Bhattiprolu | d78e53c | 2007-05-10 22:23:06 -0700 | [diff] [blame] | 179 | &maxproto)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | printk("autofs: called with bogus options\n"); | 
|  | 181 | goto fail_dput; | 
|  | 182 | } | 
|  | 183 |  | 
|  | 184 | /* Couldn't this be tested earlier? */ | 
| Sukadev Bhattiprolu | d78e53c | 2007-05-10 22:23:06 -0700 | [diff] [blame] | 185 | if (minproto > AUTOFS_PROTO_VERSION || | 
|  | 186 | maxproto < AUTOFS_PROTO_VERSION) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | printk("autofs: kernel does not match daemon version\n"); | 
|  | 188 | goto fail_dput; | 
|  | 189 | } | 
|  | 190 |  | 
| Sukadev Bhattiprolu | fa0334f | 2007-05-10 22:23:08 -0700 | [diff] [blame] | 191 | DPRINTK(("autofs: pipe fd = %d, pgrp = %u\n", pipefd, pgid)); | 
|  | 192 | sbi->oz_pgrp = find_get_pid(pgid); | 
|  | 193 |  | 
|  | 194 | if (!sbi->oz_pgrp) { | 
|  | 195 | printk("autofs: could not find process group %d\n", pgid); | 
|  | 196 | goto fail_dput; | 
|  | 197 | } | 
|  | 198 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | pipe = fget(pipefd); | 
|  | 200 |  | 
| Sukadev Bhattiprolu | d78e53c | 2007-05-10 22:23:06 -0700 | [diff] [blame] | 201 | if (!pipe) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | printk("autofs: could not open pipe file descriptor\n"); | 
| Sukadev Bhattiprolu | fa0334f | 2007-05-10 22:23:08 -0700 | [diff] [blame] | 203 | goto fail_put_pid; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | } | 
| Sukadev Bhattiprolu | fa0334f | 2007-05-10 22:23:08 -0700 | [diff] [blame] | 205 |  | 
| Sukadev Bhattiprolu | d78e53c | 2007-05-10 22:23:06 -0700 | [diff] [blame] | 206 | if (!pipe->f_op || !pipe->f_op->write) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | goto fail_fput; | 
|  | 208 | sbi->pipe = pipe; | 
| Ian Kent | ba8df43 | 2006-11-14 02:03:29 -0800 | [diff] [blame] | 209 | sbi->catatonic = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 |  | 
|  | 211 | /* | 
|  | 212 | * Success! Install the root dentry now to indicate completion. | 
|  | 213 | */ | 
|  | 214 | s->s_root = root; | 
|  | 215 | return 0; | 
|  | 216 |  | 
|  | 217 | fail_fput: | 
|  | 218 | printk("autofs: pipe file descriptor does not contain proper ops\n"); | 
|  | 219 | fput(pipe); | 
| Sukadev Bhattiprolu | fa0334f | 2007-05-10 22:23:08 -0700 | [diff] [blame] | 220 | fail_put_pid: | 
|  | 221 | put_pid(sbi->oz_pgrp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | fail_dput: | 
|  | 223 | dput(root); | 
|  | 224 | goto fail_free; | 
|  | 225 | fail_iput: | 
|  | 226 | printk("autofs: get root dentry failed\n"); | 
|  | 227 | iput(root_inode); | 
|  | 228 | fail_free: | 
|  | 229 | kfree(sbi); | 
| Ian Kent | ba8df43 | 2006-11-14 02:03:29 -0800 | [diff] [blame] | 230 | s->s_fs_info = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | fail_unlock: | 
|  | 232 | return -EINVAL; | 
|  | 233 | } | 
|  | 234 |  | 
| David Howells | 62328a0 | 2008-02-07 00:15:30 -0800 | [diff] [blame] | 235 | struct inode *autofs_iget(struct super_block *sb, unsigned long ino) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | unsigned int n; | 
| David Howells | 62328a0 | 2008-02-07 00:15:30 -0800 | [diff] [blame] | 238 | struct autofs_sb_info *sbi = autofs_sbi(sb); | 
|  | 239 | struct inode *inode; | 
|  | 240 |  | 
|  | 241 | inode = iget_locked(sb, ino); | 
|  | 242 | if (!inode) | 
|  | 243 | return ERR_PTR(-ENOMEM); | 
|  | 244 | if (!(inode->i_state & I_NEW)) | 
|  | 245 | return inode; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 |  | 
|  | 247 | /* Initialize to the default case (stub directory) */ | 
|  | 248 |  | 
|  | 249 | inode->i_op = &simple_dir_inode_operations; | 
|  | 250 | inode->i_fop = &simple_dir_operations; | 
|  | 251 | inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO; | 
|  | 252 | inode->i_nlink = 2; | 
|  | 253 | inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME; | 
|  | 254 | inode->i_blocks = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 |  | 
| Sukadev Bhattiprolu | d78e53c | 2007-05-10 22:23:06 -0700 | [diff] [blame] | 256 | if (ino == AUTOFS_ROOT_INO) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR; | 
|  | 258 | inode->i_op = &autofs_root_inode_operations; | 
|  | 259 | inode->i_fop = &autofs_root_operations; | 
|  | 260 | inode->i_uid = inode->i_gid = 0; /* Changed in read_super */ | 
| David Howells | 62328a0 | 2008-02-07 00:15:30 -0800 | [diff] [blame] | 261 | goto done; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | } | 
|  | 263 |  | 
|  | 264 | inode->i_uid = inode->i_sb->s_root->d_inode->i_uid; | 
|  | 265 | inode->i_gid = inode->i_sb->s_root->d_inode->i_gid; | 
|  | 266 |  | 
| Sukadev Bhattiprolu | d78e53c | 2007-05-10 22:23:06 -0700 | [diff] [blame] | 267 | if (ino >= AUTOFS_FIRST_SYMLINK && ino < AUTOFS_FIRST_DIR_INO) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | /* Symlink inode - should be in symlink list */ | 
|  | 269 | struct autofs_symlink *sl; | 
|  | 270 |  | 
|  | 271 | n = ino - AUTOFS_FIRST_SYMLINK; | 
| Sukadev Bhattiprolu | d78e53c | 2007-05-10 22:23:06 -0700 | [diff] [blame] | 272 | if (n >= AUTOFS_MAX_SYMLINKS || !test_bit(n,sbi->symlink_bitmap)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | printk("autofs: Looking for bad symlink inode %u\n", (unsigned int) ino); | 
| David Howells | 62328a0 | 2008-02-07 00:15:30 -0800 | [diff] [blame] | 274 | goto done; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | } | 
|  | 276 |  | 
|  | 277 | inode->i_op = &autofs_symlink_inode_operations; | 
|  | 278 | sl = &sbi->symlink[n]; | 
| Theodore Ts'o | 8e18e29 | 2006-09-27 01:50:46 -0700 | [diff] [blame] | 279 | inode->i_private = sl; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | inode->i_mode = S_IFLNK | S_IRWXUGO; | 
|  | 281 | inode->i_mtime.tv_sec = inode->i_ctime.tv_sec = sl->mtime; | 
|  | 282 | inode->i_mtime.tv_nsec = inode->i_ctime.tv_nsec = 0; | 
|  | 283 | inode->i_size = sl->len; | 
|  | 284 | inode->i_nlink = 1; | 
|  | 285 | } | 
| David Howells | 62328a0 | 2008-02-07 00:15:30 -0800 | [diff] [blame] | 286 |  | 
|  | 287 | done: | 
|  | 288 | unlock_new_inode(inode); | 
|  | 289 | return inode; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | } |