1 /* -*- linux-c -*- --------------------------------------------------------- *
3 * linux/fs/autofs/inode.c
5 * Copyright 1997-1998 Transmeta Corporation -- All Rights Reserved
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.
11 * ------------------------------------------------------------------------- */
13 #include <linux/kernel.h>
15 #include <linux/slab.h>
16 #include <linux/file.h>
17 #include <linux/parser.h>
18 #include <linux/bitops.h>
19 #include <linux/magic.h>
21 #include <linux/module.h>
23 void autofs_kill_sb(struct super_block *sb)
25 struct autofs_sb_info *sbi = autofs_sbi(sb);
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
31 * just call kill_anon_super when we are called from
38 autofs_catatonic_mode(sbi); /* Free wait queues, close pipe */
40 put_pid(sbi->oz_pgrp);
42 autofs_hash_nuke(sbi);
43 for (n = 0; n < AUTOFS_MAX_SYMLINKS; n++) {
44 if (test_bit(n, sbi->symlink_bitmap))
45 kfree(sbi->symlink[n].data);
51 DPRINTK(("autofs: shutting down\n"));
55 static const struct super_operations autofs_sops = {
56 .statfs = simple_statfs,
57 .show_options = generic_show_options,
60 enum {Opt_err, Opt_fd, Opt_uid, Opt_gid, Opt_pgrp, Opt_minproto, Opt_maxproto};
62 static match_table_t autofs_tokens = {
66 {Opt_pgrp, "pgrp=%u"},
67 {Opt_minproto, "minproto=%u"},
68 {Opt_maxproto, "maxproto=%u"},
72 static int parse_options(char *options, int *pipefd, uid_t *uid, gid_t *gid,
73 pid_t *pgrp, int *minproto, int *maxproto)
76 substring_t args[MAX_OPT_ARGS];
81 *pgrp = task_pgrp_nr(current);
83 *minproto = *maxproto = AUTOFS_PROTO_VERSION;
90 while ((p = strsep(&options, ",")) != NULL) {
95 token = match_token(p, autofs_tokens, args);
98 if (match_int(&args[0], &option))
103 if (match_int(&args[0], &option))
108 if (match_int(&args[0], &option))
113 if (match_int(&args[0], &option))
118 if (match_int(&args[0], &option))
123 if (match_int(&args[0], &option))
131 return (*pipefd < 0);
134 int autofs_fill_super(struct super_block *s, void *data, int silent)
136 struct inode * root_inode;
137 struct dentry * root;
140 struct autofs_sb_info *sbi;
141 int minproto, maxproto;
144 save_mount_options(s, data);
146 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
149 DPRINTK(("autofs: starting up, sbi = %p\n",sbi));
152 sbi->magic = AUTOFS_SBI_MAGIC;
155 sbi->exp_timeout = 0;
156 autofs_initialize_hash(&sbi->dirhash);
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;
167 root_inode = autofs_iget(s, AUTOFS_ROOT_INO);
168 if (IS_ERR(root_inode))
170 root = d_alloc_root(root_inode);
176 /* Can this call block? - WTF cares? s is locked. */
177 if (parse_options(data, &pipefd, &root_inode->i_uid,
178 &root_inode->i_gid, &pgid, &minproto,
180 printk("autofs: called with bogus options\n");
184 /* Couldn't this be tested earlier? */
185 if (minproto > AUTOFS_PROTO_VERSION ||
186 maxproto < AUTOFS_PROTO_VERSION) {
187 printk("autofs: kernel does not match daemon version\n");
191 DPRINTK(("autofs: pipe fd = %d, pgrp = %u\n", pipefd, pgid));
192 sbi->oz_pgrp = find_get_pid(pgid);
195 printk("autofs: could not find process group %d\n", pgid);
202 printk("autofs: could not open pipe file descriptor\n");
206 if (!pipe->f_op || !pipe->f_op->write)
212 * Success! Install the root dentry now to indicate completion.
218 printk("autofs: pipe file descriptor does not contain proper ops\n");
221 put_pid(sbi->oz_pgrp);
226 printk("autofs: get root dentry failed\n");
235 struct inode *autofs_iget(struct super_block *sb, unsigned long ino)
238 struct autofs_sb_info *sbi = autofs_sbi(sb);
241 inode = iget_locked(sb, ino);
243 return ERR_PTR(-ENOMEM);
244 if (!(inode->i_state & I_NEW))
247 /* Initialize to the default case (stub directory) */
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;
253 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
256 if (ino == AUTOFS_ROOT_INO) {
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 */
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;
267 if (ino >= AUTOFS_FIRST_SYMLINK && ino < AUTOFS_FIRST_DIR_INO) {
268 /* Symlink inode - should be in symlink list */
269 struct autofs_symlink *sl;
271 n = ino - AUTOFS_FIRST_SYMLINK;
272 if (n >= AUTOFS_MAX_SYMLINKS || !test_bit(n,sbi->symlink_bitmap)) {
273 printk("autofs: Looking for bad symlink inode %u\n", (unsigned int) ino);
277 inode->i_op = &autofs_symlink_inode_operations;
278 sl = &sbi->symlink[n];
279 inode->i_private = sl;
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;
288 unlock_new_inode(inode);