Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* -*- 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/slab.h> |
| 15 | #include <linux/file.h> |
| 16 | #include <linux/pagemap.h> |
| 17 | #include <linux/parser.h> |
| 18 | #include <linux/bitops.h> |
| 19 | #include "autofs_i.h" |
| 20 | #include <linux/module.h> |
| 21 | |
| 22 | static void ino_lnkfree(struct autofs_info *ino) |
| 23 | { |
| 24 | if (ino->u.symlink) { |
| 25 | kfree(ino->u.symlink); |
| 26 | ino->u.symlink = NULL; |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | struct autofs_info *autofs4_init_ino(struct autofs_info *ino, |
| 31 | struct autofs_sb_info *sbi, mode_t mode) |
| 32 | { |
| 33 | int reinit = 1; |
| 34 | |
| 35 | if (ino == NULL) { |
| 36 | reinit = 0; |
| 37 | ino = kmalloc(sizeof(*ino), GFP_KERNEL); |
| 38 | } |
| 39 | |
| 40 | if (ino == NULL) |
| 41 | return NULL; |
| 42 | |
| 43 | ino->flags = 0; |
| 44 | ino->mode = mode; |
| 45 | ino->inode = NULL; |
| 46 | ino->dentry = NULL; |
| 47 | ino->size = 0; |
| 48 | |
| 49 | ino->last_used = jiffies; |
| 50 | |
| 51 | ino->sbi = sbi; |
| 52 | |
| 53 | if (reinit && ino->free) |
| 54 | (ino->free)(ino); |
| 55 | |
| 56 | memset(&ino->u, 0, sizeof(ino->u)); |
| 57 | |
| 58 | ino->free = NULL; |
| 59 | |
| 60 | if (S_ISLNK(mode)) |
| 61 | ino->free = ino_lnkfree; |
| 62 | |
| 63 | return ino; |
| 64 | } |
| 65 | |
| 66 | void autofs4_free_ino(struct autofs_info *ino) |
| 67 | { |
| 68 | if (ino->dentry) { |
| 69 | ino->dentry->d_fsdata = NULL; |
| 70 | if (ino->dentry->d_inode) |
| 71 | dput(ino->dentry); |
| 72 | ino->dentry = NULL; |
| 73 | } |
| 74 | if (ino->free) |
| 75 | (ino->free)(ino); |
| 76 | kfree(ino); |
| 77 | } |
| 78 | |
| 79 | static void autofs4_put_super(struct super_block *sb) |
| 80 | { |
| 81 | struct autofs_sb_info *sbi = autofs4_sbi(sb); |
| 82 | |
| 83 | sb->s_fs_info = NULL; |
| 84 | |
| 85 | if ( !sbi->catatonic ) |
| 86 | autofs4_catatonic_mode(sbi); /* Free wait queues, close pipe */ |
| 87 | |
| 88 | kfree(sbi); |
| 89 | |
| 90 | DPRINTK("shutting down"); |
| 91 | } |
| 92 | |
| 93 | static struct super_operations autofs4_sops = { |
| 94 | .put_super = autofs4_put_super, |
| 95 | .statfs = simple_statfs, |
| 96 | }; |
| 97 | |
| 98 | enum {Opt_err, Opt_fd, Opt_uid, Opt_gid, Opt_pgrp, Opt_minproto, Opt_maxproto}; |
| 99 | |
| 100 | static match_table_t tokens = { |
| 101 | {Opt_fd, "fd=%u"}, |
| 102 | {Opt_uid, "uid=%u"}, |
| 103 | {Opt_gid, "gid=%u"}, |
| 104 | {Opt_pgrp, "pgrp=%u"}, |
| 105 | {Opt_minproto, "minproto=%u"}, |
| 106 | {Opt_maxproto, "maxproto=%u"}, |
| 107 | {Opt_err, NULL} |
| 108 | }; |
| 109 | |
| 110 | static int parse_options(char *options, int *pipefd, uid_t *uid, gid_t *gid, |
| 111 | pid_t *pgrp, int *minproto, int *maxproto) |
| 112 | { |
| 113 | char *p; |
| 114 | substring_t args[MAX_OPT_ARGS]; |
| 115 | int option; |
| 116 | |
| 117 | *uid = current->uid; |
| 118 | *gid = current->gid; |
| 119 | *pgrp = process_group(current); |
| 120 | |
| 121 | *minproto = AUTOFS_MIN_PROTO_VERSION; |
| 122 | *maxproto = AUTOFS_MAX_PROTO_VERSION; |
| 123 | |
| 124 | *pipefd = -1; |
| 125 | |
| 126 | if (!options) |
| 127 | return 1; |
| 128 | |
| 129 | while ((p = strsep(&options, ",")) != NULL) { |
| 130 | int token; |
| 131 | if (!*p) |
| 132 | continue; |
| 133 | |
| 134 | token = match_token(p, tokens, args); |
| 135 | switch (token) { |
| 136 | case Opt_fd: |
| 137 | if (match_int(args, pipefd)) |
| 138 | return 1; |
| 139 | break; |
| 140 | case Opt_uid: |
| 141 | if (match_int(args, &option)) |
| 142 | return 1; |
| 143 | *uid = option; |
| 144 | break; |
| 145 | case Opt_gid: |
| 146 | if (match_int(args, &option)) |
| 147 | return 1; |
| 148 | *gid = option; |
| 149 | break; |
| 150 | case Opt_pgrp: |
| 151 | if (match_int(args, &option)) |
| 152 | return 1; |
| 153 | *pgrp = option; |
| 154 | break; |
| 155 | case Opt_minproto: |
| 156 | if (match_int(args, &option)) |
| 157 | return 1; |
| 158 | *minproto = option; |
| 159 | break; |
| 160 | case Opt_maxproto: |
| 161 | if (match_int(args, &option)) |
| 162 | return 1; |
| 163 | *maxproto = option; |
| 164 | break; |
| 165 | default: |
| 166 | return 1; |
| 167 | } |
| 168 | } |
| 169 | return (*pipefd < 0); |
| 170 | } |
| 171 | |
| 172 | static struct autofs_info *autofs4_mkroot(struct autofs_sb_info *sbi) |
| 173 | { |
| 174 | struct autofs_info *ino; |
| 175 | |
| 176 | ino = autofs4_init_ino(NULL, sbi, S_IFDIR | 0755); |
| 177 | if (!ino) |
| 178 | return NULL; |
| 179 | |
| 180 | return ino; |
| 181 | } |
| 182 | |
| 183 | int autofs4_fill_super(struct super_block *s, void *data, int silent) |
| 184 | { |
| 185 | struct inode * root_inode; |
| 186 | struct dentry * root; |
| 187 | struct file * pipe; |
| 188 | int pipefd; |
| 189 | struct autofs_sb_info *sbi; |
| 190 | struct autofs_info *ino; |
| 191 | int minproto, maxproto; |
| 192 | |
| 193 | sbi = (struct autofs_sb_info *) kmalloc(sizeof(*sbi), GFP_KERNEL); |
| 194 | if ( !sbi ) |
| 195 | goto fail_unlock; |
| 196 | DPRINTK("starting up, sbi = %p",sbi); |
| 197 | |
| 198 | memset(sbi, 0, sizeof(*sbi)); |
| 199 | |
| 200 | s->s_fs_info = sbi; |
| 201 | sbi->magic = AUTOFS_SBI_MAGIC; |
| 202 | sbi->catatonic = 0; |
| 203 | sbi->exp_timeout = 0; |
| 204 | sbi->oz_pgrp = process_group(current); |
| 205 | sbi->sb = s; |
| 206 | sbi->version = 0; |
| 207 | sbi->sub_version = 0; |
| 208 | init_MUTEX(&sbi->wq_sem); |
Ian Kent | 3a9720c | 2005-05-01 08:59:17 -0700 | [diff] [blame] | 209 | spin_lock_init(&sbi->fs_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | sbi->queues = NULL; |
| 211 | s->s_blocksize = 1024; |
| 212 | s->s_blocksize_bits = 10; |
| 213 | s->s_magic = AUTOFS_SUPER_MAGIC; |
| 214 | s->s_op = &autofs4_sops; |
| 215 | s->s_time_gran = 1; |
| 216 | |
| 217 | /* |
| 218 | * Get the root inode and dentry, but defer checking for errors. |
| 219 | */ |
| 220 | ino = autofs4_mkroot(sbi); |
| 221 | if (!ino) |
| 222 | goto fail_free; |
| 223 | root_inode = autofs4_get_inode(s, ino); |
| 224 | kfree(ino); |
| 225 | if (!root_inode) |
| 226 | goto fail_free; |
| 227 | |
| 228 | root_inode->i_op = &autofs4_root_inode_operations; |
| 229 | root_inode->i_fop = &autofs4_root_operations; |
| 230 | root = d_alloc_root(root_inode); |
| 231 | pipe = NULL; |
| 232 | |
| 233 | if (!root) |
| 234 | goto fail_iput; |
| 235 | |
| 236 | /* Can this call block? */ |
| 237 | if (parse_options(data, &pipefd, |
| 238 | &root_inode->i_uid, &root_inode->i_gid, |
| 239 | &sbi->oz_pgrp, |
| 240 | &minproto, &maxproto)) { |
| 241 | printk("autofs: called with bogus options\n"); |
| 242 | goto fail_dput; |
| 243 | } |
| 244 | |
| 245 | /* Couldn't this be tested earlier? */ |
| 246 | if (maxproto < AUTOFS_MIN_PROTO_VERSION || |
| 247 | minproto > AUTOFS_MAX_PROTO_VERSION) { |
| 248 | printk("autofs: kernel does not match daemon version " |
| 249 | "daemon (%d, %d) kernel (%d, %d)\n", |
| 250 | minproto, maxproto, |
| 251 | AUTOFS_MIN_PROTO_VERSION, AUTOFS_MAX_PROTO_VERSION); |
| 252 | goto fail_dput; |
| 253 | } |
| 254 | |
| 255 | sbi->version = maxproto > AUTOFS_MAX_PROTO_VERSION ? AUTOFS_MAX_PROTO_VERSION : maxproto; |
| 256 | sbi->sub_version = AUTOFS_PROTO_SUBVERSION; |
| 257 | |
| 258 | DPRINTK("pipe fd = %d, pgrp = %u", pipefd, sbi->oz_pgrp); |
| 259 | pipe = fget(pipefd); |
| 260 | |
| 261 | if ( !pipe ) { |
| 262 | printk("autofs: could not open pipe file descriptor\n"); |
| 263 | goto fail_dput; |
| 264 | } |
| 265 | if ( !pipe->f_op || !pipe->f_op->write ) |
| 266 | goto fail_fput; |
| 267 | sbi->pipe = pipe; |
| 268 | |
| 269 | /* |
| 270 | * Success! Install the root dentry now to indicate completion. |
| 271 | */ |
| 272 | s->s_root = root; |
| 273 | return 0; |
| 274 | |
| 275 | /* |
| 276 | * Failure ... clean up. |
| 277 | */ |
| 278 | fail_fput: |
| 279 | printk("autofs: pipe file descriptor does not contain proper ops\n"); |
| 280 | fput(pipe); |
| 281 | /* fall through */ |
| 282 | fail_dput: |
| 283 | dput(root); |
| 284 | goto fail_free; |
| 285 | fail_iput: |
| 286 | printk("autofs: get root dentry failed\n"); |
| 287 | iput(root_inode); |
| 288 | fail_free: |
| 289 | kfree(sbi); |
| 290 | fail_unlock: |
| 291 | return -EINVAL; |
| 292 | } |
| 293 | |
| 294 | struct inode *autofs4_get_inode(struct super_block *sb, |
| 295 | struct autofs_info *inf) |
| 296 | { |
| 297 | struct inode *inode = new_inode(sb); |
| 298 | |
| 299 | if (inode == NULL) |
| 300 | return NULL; |
| 301 | |
| 302 | inf->inode = inode; |
| 303 | inode->i_mode = inf->mode; |
| 304 | if (sb->s_root) { |
| 305 | inode->i_uid = sb->s_root->d_inode->i_uid; |
| 306 | inode->i_gid = sb->s_root->d_inode->i_gid; |
| 307 | } else { |
| 308 | inode->i_uid = 0; |
| 309 | inode->i_gid = 0; |
| 310 | } |
| 311 | inode->i_blksize = PAGE_CACHE_SIZE; |
| 312 | inode->i_blocks = 0; |
| 313 | inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME; |
| 314 | |
| 315 | if (S_ISDIR(inf->mode)) { |
| 316 | inode->i_nlink = 2; |
| 317 | inode->i_op = &autofs4_dir_inode_operations; |
| 318 | inode->i_fop = &autofs4_dir_operations; |
| 319 | } else if (S_ISLNK(inf->mode)) { |
| 320 | inode->i_size = inf->size; |
| 321 | inode->i_op = &autofs4_symlink_inode_operations; |
| 322 | } |
| 323 | |
| 324 | return inode; |
| 325 | } |