patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / fs / autofs4 / inode.c
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 <asm/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);
209         sbi->queues = NULL;
210         s->s_blocksize = 1024;
211         s->s_blocksize_bits = 10;
212         s->s_magic = AUTOFS_SUPER_MAGIC;
213         s->s_op = &autofs4_sops;
214
215         /*
216          * Get the root inode and dentry, but defer checking for errors.
217          */
218         ino = autofs4_mkroot(sbi);
219         if (!ino)
220                 goto fail_free;
221         root_inode = autofs4_get_inode(s, ino);
222         kfree(ino);
223         if (!root_inode)
224                 goto fail_free;
225
226         root_inode->i_op = &autofs4_root_inode_operations;
227         root_inode->i_fop = &autofs4_root_operations;
228         root = d_alloc_root(root_inode);
229         pipe = NULL;
230
231         if (!root)
232                 goto fail_iput;
233
234         /* Can this call block? */
235         if (parse_options(data, &pipefd,
236                           &root_inode->i_uid, &root_inode->i_gid,
237                           &sbi->oz_pgrp,
238                           &minproto, &maxproto)) {
239                 printk("autofs: called with bogus options\n");
240                 goto fail_dput;
241         }
242
243         /* Couldn't this be tested earlier? */
244         if (maxproto < AUTOFS_MIN_PROTO_VERSION ||
245             minproto > AUTOFS_MAX_PROTO_VERSION) {
246                 printk("autofs: kernel does not match daemon version "
247                        "daemon (%d, %d) kernel (%d, %d)\n",
248                         minproto, maxproto,
249                         AUTOFS_MIN_PROTO_VERSION, AUTOFS_MAX_PROTO_VERSION);
250                 goto fail_dput;
251         }
252
253         sbi->version = maxproto > AUTOFS_MAX_PROTO_VERSION ? AUTOFS_MAX_PROTO_VERSION : maxproto;
254         sbi->sub_version = AUTOFS_PROTO_SUBVERSION;
255
256         DPRINTK("pipe fd = %d, pgrp = %u", pipefd, sbi->oz_pgrp);
257         pipe = fget(pipefd);
258         
259         if ( !pipe ) {
260                 printk("autofs: could not open pipe file descriptor\n");
261                 goto fail_dput;
262         }
263         if ( !pipe->f_op || !pipe->f_op->write )
264                 goto fail_fput;
265         sbi->pipe = pipe;
266
267         /*
268          * Success! Install the root dentry now to indicate completion.
269          */
270         s->s_root = root;
271         return 0;
272         
273         /*
274          * Failure ... clean up.
275          */
276 fail_fput:
277         printk("autofs: pipe file descriptor does not contain proper ops\n");
278         fput(pipe);
279         /* fall through */
280 fail_dput:
281         dput(root);
282         goto fail_free;
283 fail_iput:
284         printk("autofs: get root dentry failed\n");
285         iput(root_inode);
286 fail_free:
287         kfree(sbi);
288 fail_unlock:
289         return -EINVAL;
290 }
291
292 struct inode *autofs4_get_inode(struct super_block *sb,
293                                 struct autofs_info *inf)
294 {
295         struct inode *inode = new_inode(sb);
296
297         if (inode == NULL)
298                 return NULL;
299
300         inf->inode = inode;
301         inode->i_mode = inf->mode;
302         if (sb->s_root) {
303                 inode->i_uid = sb->s_root->d_inode->i_uid;
304                 inode->i_gid = sb->s_root->d_inode->i_gid;
305         } else {
306                 inode->i_uid = 0;
307                 inode->i_gid = 0;
308         }
309         inode->i_blksize = PAGE_CACHE_SIZE;
310         inode->i_blocks = 0;
311         inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
312
313         if (S_ISDIR(inf->mode)) {
314                 inode->i_nlink = 2;
315                 inode->i_op = &autofs4_dir_inode_operations;
316                 inode->i_fop = &autofs4_dir_operations;
317         } else if (S_ISLNK(inf->mode)) {
318                 inode->i_size = inf->size;
319                 inode->i_op = &autofs4_symlink_inode_operations;
320         }
321
322         return inode;
323 }