blob: 3801bed94e458197d43809f0ed921a39d1268c35 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* -*- c -*- --------------------------------------------------------------- *
2 *
3 * linux/fs/autofs/inode.c
4 *
5 * Copyright 1997-1998 Transmeta Corporation -- All Rights Reserved
Ian Kent34ca9592006-03-27 01:14:54 -08006 * Copyright 2005-2006 Ian Kent <raven@themaw.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * This file is part of the Linux kernel and is made available under
9 * the terms of the GNU General Public License, version 2, or at your
10 * option, any later version, incorporated herein by reference.
11 *
12 * ------------------------------------------------------------------------- */
13
14#include <linux/kernel.h>
15#include <linux/slab.h>
16#include <linux/file.h>
Ian Kentd7c4a5f2006-03-27 01:14:49 -080017#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/pagemap.h>
19#include <linux/parser.h>
20#include <linux/bitops.h>
Ian Kent104e49f2005-07-27 11:43:45 -070021#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "autofs_i.h"
23#include <linux/module.h>
24
25static void ino_lnkfree(struct autofs_info *ino)
26{
Jesper Juhlf99d49a2005-11-07 01:01:34 -080027 kfree(ino->u.symlink);
28 ino->u.symlink = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029}
30
31struct autofs_info *autofs4_init_ino(struct autofs_info *ino,
32 struct autofs_sb_info *sbi, mode_t mode)
33{
34 int reinit = 1;
35
36 if (ino == NULL) {
37 reinit = 0;
38 ino = kmalloc(sizeof(*ino), GFP_KERNEL);
39 }
40
41 if (ino == NULL)
42 return NULL;
43
44 ino->flags = 0;
45 ino->mode = mode;
46 ino->inode = NULL;
47 ino->dentry = NULL;
48 ino->size = 0;
49
50 ino->last_used = jiffies;
Ian Kent1aff3c82006-03-27 01:14:46 -080051 atomic_set(&ino->count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53 ino->sbi = sbi;
54
55 if (reinit && ino->free)
56 (ino->free)(ino);
57
58 memset(&ino->u, 0, sizeof(ino->u));
59
60 ino->free = NULL;
61
62 if (S_ISLNK(mode))
63 ino->free = ino_lnkfree;
64
65 return ino;
66}
67
68void autofs4_free_ino(struct autofs_info *ino)
69{
Ian Kent1aff3c82006-03-27 01:14:46 -080070 struct autofs_info *p_ino;
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 if (ino->dentry) {
73 ino->dentry->d_fsdata = NULL;
Ian Kent1aff3c82006-03-27 01:14:46 -080074 if (ino->dentry->d_inode) {
75 struct dentry *parent = ino->dentry->d_parent;
76 if (atomic_dec_and_test(&ino->count)) {
77 p_ino = autofs4_dentry_ino(parent);
78 if (p_ino && parent != ino->dentry)
79 atomic_dec(&p_ino->count);
80 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 dput(ino->dentry);
Ian Kent1aff3c82006-03-27 01:14:46 -080082 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 ino->dentry = NULL;
84 }
85 if (ino->free)
86 (ino->free)(ino);
87 kfree(ino);
88}
89
Ian Kent104e49f2005-07-27 11:43:45 -070090/*
91 * Deal with the infamous "Busy inodes after umount ..." message.
92 *
93 * Clean up the dentry tree. This happens with autofs if the user
94 * space program goes away due to a SIGKILL, SIGSEGV etc.
95 */
96static void autofs4_force_release(struct autofs_sb_info *sbi)
97{
98 struct dentry *this_parent = sbi->root;
99 struct list_head *next;
100
101 spin_lock(&dcache_lock);
102repeat:
103 next = this_parent->d_subdirs.next;
104resume:
105 while (next != &this_parent->d_subdirs) {
Eric Dumazet5160ee62006-01-08 01:03:32 -0800106 struct dentry *dentry = list_entry(next, struct dentry, d_u.d_child);
Ian Kent104e49f2005-07-27 11:43:45 -0700107
108 /* Negative dentry - don`t care */
109 if (!simple_positive(dentry)) {
110 next = next->next;
111 continue;
112 }
113
114 if (!list_empty(&dentry->d_subdirs)) {
115 this_parent = dentry;
116 goto repeat;
117 }
118
119 next = next->next;
120 spin_unlock(&dcache_lock);
121
122 DPRINTK("dentry %p %.*s",
123 dentry, (int)dentry->d_name.len, dentry->d_name.name);
124
125 dput(dentry);
126 spin_lock(&dcache_lock);
127 }
128
129 if (this_parent != sbi->root) {
130 struct dentry *dentry = this_parent;
131
Eric Dumazet5160ee62006-01-08 01:03:32 -0800132 next = this_parent->d_u.d_child.next;
Ian Kent104e49f2005-07-27 11:43:45 -0700133 this_parent = this_parent->d_parent;
134 spin_unlock(&dcache_lock);
135 DPRINTK("parent dentry %p %.*s",
136 dentry, (int)dentry->d_name.len, dentry->d_name.name);
137 dput(dentry);
138 spin_lock(&dcache_lock);
139 goto resume;
140 }
141 spin_unlock(&dcache_lock);
142
143 dput(sbi->root);
144 sbi->root = NULL;
145 shrink_dcache_sb(sbi->sb);
146
147 return;
148}
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150static void autofs4_put_super(struct super_block *sb)
151{
152 struct autofs_sb_info *sbi = autofs4_sbi(sb);
153
154 sb->s_fs_info = NULL;
155
156 if ( !sbi->catatonic )
157 autofs4_catatonic_mode(sbi); /* Free wait queues, close pipe */
158
Ian Kent104e49f2005-07-27 11:43:45 -0700159 /* Clean up and release dangling references */
160 if (sbi)
161 autofs4_force_release(sbi);
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 kfree(sbi);
164
165 DPRINTK("shutting down");
166}
167
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800168static int autofs4_show_options(struct seq_file *m, struct vfsmount *mnt)
169{
170 struct autofs_sb_info *sbi = autofs4_sbi(mnt->mnt_sb);
171
172 if (!sbi)
173 return 0;
174
175 seq_printf(m, ",fd=%d", sbi->pipefd);
176 seq_printf(m, ",pgrp=%d", sbi->oz_pgrp);
177 seq_printf(m, ",timeout=%lu", sbi->exp_timeout/HZ);
178 seq_printf(m, ",minproto=%d", sbi->min_proto);
179 seq_printf(m, ",maxproto=%d", sbi->max_proto);
180
Ian Kent34ca9592006-03-27 01:14:54 -0800181 if (sbi->type & AUTOFS_TYP_OFFSET)
182 seq_printf(m, ",offset");
183 else if (sbi->type & AUTOFS_TYP_DIRECT)
184 seq_printf(m, ",direct");
185 else
186 seq_printf(m, ",indirect");
187
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800188 return 0;
189}
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191static struct super_operations autofs4_sops = {
192 .put_super = autofs4_put_super,
193 .statfs = simple_statfs,
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800194 .show_options = autofs4_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195};
196
Ian Kent34ca9592006-03-27 01:14:54 -0800197enum {Opt_err, Opt_fd, Opt_uid, Opt_gid, Opt_pgrp, Opt_minproto, Opt_maxproto,
198 Opt_indirect, Opt_direct, Opt_offset};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200static match_table_t tokens = {
201 {Opt_fd, "fd=%u"},
202 {Opt_uid, "uid=%u"},
203 {Opt_gid, "gid=%u"},
204 {Opt_pgrp, "pgrp=%u"},
205 {Opt_minproto, "minproto=%u"},
206 {Opt_maxproto, "maxproto=%u"},
Ian Kent34ca9592006-03-27 01:14:54 -0800207 {Opt_indirect, "indirect"},
208 {Opt_direct, "direct"},
209 {Opt_offset, "offset"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 {Opt_err, NULL}
211};
212
213static int parse_options(char *options, int *pipefd, uid_t *uid, gid_t *gid,
Ian Kent34ca9592006-03-27 01:14:54 -0800214 pid_t *pgrp, unsigned int *type,
215 int *minproto, int *maxproto)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
217 char *p;
218 substring_t args[MAX_OPT_ARGS];
219 int option;
220
221 *uid = current->uid;
222 *gid = current->gid;
223 *pgrp = process_group(current);
224
225 *minproto = AUTOFS_MIN_PROTO_VERSION;
226 *maxproto = AUTOFS_MAX_PROTO_VERSION;
227
228 *pipefd = -1;
229
230 if (!options)
231 return 1;
232
233 while ((p = strsep(&options, ",")) != NULL) {
234 int token;
235 if (!*p)
236 continue;
237
238 token = match_token(p, tokens, args);
239 switch (token) {
240 case Opt_fd:
241 if (match_int(args, pipefd))
242 return 1;
243 break;
244 case Opt_uid:
245 if (match_int(args, &option))
246 return 1;
247 *uid = option;
248 break;
249 case Opt_gid:
250 if (match_int(args, &option))
251 return 1;
252 *gid = option;
253 break;
254 case Opt_pgrp:
255 if (match_int(args, &option))
256 return 1;
257 *pgrp = option;
258 break;
259 case Opt_minproto:
260 if (match_int(args, &option))
261 return 1;
262 *minproto = option;
263 break;
264 case Opt_maxproto:
265 if (match_int(args, &option))
266 return 1;
267 *maxproto = option;
268 break;
Ian Kent34ca9592006-03-27 01:14:54 -0800269 case Opt_indirect:
270 *type = AUTOFS_TYP_INDIRECT;
271 break;
272 case Opt_direct:
273 *type = AUTOFS_TYP_DIRECT;
274 break;
275 case Opt_offset:
276 *type = AUTOFS_TYP_DIRECT | AUTOFS_TYP_OFFSET;
277 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 default:
279 return 1;
280 }
281 }
282 return (*pipefd < 0);
283}
284
285static struct autofs_info *autofs4_mkroot(struct autofs_sb_info *sbi)
286{
287 struct autofs_info *ino;
288
289 ino = autofs4_init_ino(NULL, sbi, S_IFDIR | 0755);
290 if (!ino)
291 return NULL;
292
293 return ino;
294}
295
Ian Kent34ca9592006-03-27 01:14:54 -0800296void autofs4_dentry_release(struct dentry *);
297static struct dentry_operations autofs4_sb_dentry_operations = {
298 .d_release = autofs4_dentry_release,
299};
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301int autofs4_fill_super(struct super_block *s, void *data, int silent)
302{
303 struct inode * root_inode;
304 struct dentry * root;
305 struct file * pipe;
306 int pipefd;
307 struct autofs_sb_info *sbi;
308 struct autofs_info *ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 sbi = (struct autofs_sb_info *) kmalloc(sizeof(*sbi), GFP_KERNEL);
311 if ( !sbi )
312 goto fail_unlock;
313 DPRINTK("starting up, sbi = %p",sbi);
314
315 memset(sbi, 0, sizeof(*sbi));
316
317 s->s_fs_info = sbi;
318 sbi->magic = AUTOFS_SBI_MAGIC;
Ian Kent104e49f2005-07-27 11:43:45 -0700319 sbi->root = NULL;
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800320 sbi->pipefd = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 sbi->catatonic = 0;
322 sbi->exp_timeout = 0;
323 sbi->oz_pgrp = process_group(current);
324 sbi->sb = s;
325 sbi->version = 0;
326 sbi->sub_version = 0;
Ian Kent34ca9592006-03-27 01:14:54 -0800327 sbi->type = 0;
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800328 sbi->min_proto = 0;
329 sbi->max_proto = 0;
Ingo Molnar1d5599e2006-03-23 03:00:41 -0800330 mutex_init(&sbi->wq_mutex);
Ian Kent3a9720c2005-05-01 08:59:17 -0700331 spin_lock_init(&sbi->fs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 sbi->queues = NULL;
333 s->s_blocksize = 1024;
334 s->s_blocksize_bits = 10;
335 s->s_magic = AUTOFS_SUPER_MAGIC;
336 s->s_op = &autofs4_sops;
337 s->s_time_gran = 1;
338
339 /*
340 * Get the root inode and dentry, but defer checking for errors.
341 */
342 ino = autofs4_mkroot(sbi);
343 if (!ino)
344 goto fail_free;
345 root_inode = autofs4_get_inode(s, ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 if (!root_inode)
Ian Kent34ca9592006-03-27 01:14:54 -0800347 goto fail_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 root = d_alloc_root(root_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 if (!root)
351 goto fail_iput;
Ian Kent34ca9592006-03-27 01:14:54 -0800352 pipe = NULL;
353
354 root->d_op = &autofs4_sb_dentry_operations;
355 root->d_fsdata = ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 /* Can this call block? */
358 if (parse_options(data, &pipefd,
359 &root_inode->i_uid, &root_inode->i_gid,
Ian Kent34ca9592006-03-27 01:14:54 -0800360 &sbi->oz_pgrp, &sbi->type,
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800361 &sbi->min_proto, &sbi->max_proto)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 printk("autofs: called with bogus options\n");
363 goto fail_dput;
364 }
365
Ian Kent34ca9592006-03-27 01:14:54 -0800366 root_inode->i_fop = &autofs4_root_operations;
367 root_inode->i_op = sbi->type & AUTOFS_TYP_DIRECT ?
368 &autofs4_direct_root_inode_operations :
369 &autofs4_indirect_root_inode_operations;
370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 /* Couldn't this be tested earlier? */
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800372 if (sbi->max_proto < AUTOFS_MIN_PROTO_VERSION ||
373 sbi->min_proto > AUTOFS_MAX_PROTO_VERSION) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 printk("autofs: kernel does not match daemon version "
375 "daemon (%d, %d) kernel (%d, %d)\n",
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800376 sbi->min_proto, sbi->max_proto,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 AUTOFS_MIN_PROTO_VERSION, AUTOFS_MAX_PROTO_VERSION);
378 goto fail_dput;
379 }
380
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800381 /* Establish highest kernel protocol version */
382 if (sbi->max_proto > AUTOFS_MAX_PROTO_VERSION)
383 sbi->version = AUTOFS_MAX_PROTO_VERSION;
384 else
385 sbi->version = sbi->max_proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 sbi->sub_version = AUTOFS_PROTO_SUBVERSION;
387
388 DPRINTK("pipe fd = %d, pgrp = %u", pipefd, sbi->oz_pgrp);
389 pipe = fget(pipefd);
390
391 if ( !pipe ) {
392 printk("autofs: could not open pipe file descriptor\n");
393 goto fail_dput;
394 }
395 if ( !pipe->f_op || !pipe->f_op->write )
396 goto fail_fput;
397 sbi->pipe = pipe;
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800398 sbi->pipefd = pipefd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400 /*
Ian Kent104e49f2005-07-27 11:43:45 -0700401 * Take a reference to the root dentry so we get a chance to
402 * clean up the dentry tree on umount.
403 * See autofs4_force_release.
404 */
405 sbi->root = dget(root);
406
407 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 * Success! Install the root dentry now to indicate completion.
409 */
410 s->s_root = root;
411 return 0;
412
413 /*
414 * Failure ... clean up.
415 */
416fail_fput:
417 printk("autofs: pipe file descriptor does not contain proper ops\n");
418 fput(pipe);
419 /* fall through */
420fail_dput:
421 dput(root);
422 goto fail_free;
423fail_iput:
424 printk("autofs: get root dentry failed\n");
425 iput(root_inode);
Ian Kent34ca9592006-03-27 01:14:54 -0800426fail_ino:
427 kfree(ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428fail_free:
429 kfree(sbi);
430fail_unlock:
431 return -EINVAL;
432}
433
434struct inode *autofs4_get_inode(struct super_block *sb,
435 struct autofs_info *inf)
436{
437 struct inode *inode = new_inode(sb);
438
439 if (inode == NULL)
440 return NULL;
441
442 inf->inode = inode;
443 inode->i_mode = inf->mode;
444 if (sb->s_root) {
445 inode->i_uid = sb->s_root->d_inode->i_uid;
446 inode->i_gid = sb->s_root->d_inode->i_gid;
447 } else {
448 inode->i_uid = 0;
449 inode->i_gid = 0;
450 }
451 inode->i_blksize = PAGE_CACHE_SIZE;
452 inode->i_blocks = 0;
453 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
454
455 if (S_ISDIR(inf->mode)) {
456 inode->i_nlink = 2;
457 inode->i_op = &autofs4_dir_inode_operations;
458 inode->i_fop = &autofs4_dir_operations;
459 } else if (S_ISLNK(inf->mode)) {
460 inode->i_size = inf->size;
461 inode->i_op = &autofs4_symlink_inode_operations;
462 }
463
464 return inode;
465}