blob: 26063dc84a2a623da272a92a5c323058eb63ebb2 [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>
Jeff Garzike18fa702006-09-24 11:13:19 -040022#include <linux/magic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "autofs_i.h"
24#include <linux/module.h>
25
26static void ino_lnkfree(struct autofs_info *ino)
27{
Jesper Juhlf99d49a2005-11-07 01:01:34 -080028 kfree(ino->u.symlink);
29 ino->u.symlink = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030}
31
32struct autofs_info *autofs4_init_ino(struct autofs_info *ino,
33 struct autofs_sb_info *sbi, mode_t mode)
34{
35 int reinit = 1;
36
37 if (ino == NULL) {
38 reinit = 0;
39 ino = kmalloc(sizeof(*ino), GFP_KERNEL);
40 }
41
42 if (ino == NULL)
43 return NULL;
44
45 ino->flags = 0;
46 ino->mode = mode;
47 ino->inode = NULL;
48 ino->dentry = NULL;
49 ino->size = 0;
50
Ian Kentf50b6f82007-02-20 13:58:10 -080051 INIT_LIST_HEAD(&ino->rehash);
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 ino->last_used = jiffies;
Ian Kent1aff3c82006-03-27 01:14:46 -080054 atomic_set(&ino->count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56 ino->sbi = sbi;
57
58 if (reinit && ino->free)
59 (ino->free)(ino);
60
61 memset(&ino->u, 0, sizeof(ino->u));
62
63 ino->free = NULL;
64
65 if (S_ISLNK(mode))
66 ino->free = ino_lnkfree;
67
68 return ino;
69}
70
71void autofs4_free_ino(struct autofs_info *ino)
72{
Ian Kent1aff3c82006-03-27 01:14:46 -080073 struct autofs_info *p_ino;
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 if (ino->dentry) {
76 ino->dentry->d_fsdata = NULL;
Ian Kent1aff3c82006-03-27 01:14:46 -080077 if (ino->dentry->d_inode) {
78 struct dentry *parent = ino->dentry->d_parent;
79 if (atomic_dec_and_test(&ino->count)) {
80 p_ino = autofs4_dentry_ino(parent);
81 if (p_ino && parent != ino->dentry)
82 atomic_dec(&p_ino->count);
83 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 dput(ino->dentry);
Ian Kent1aff3c82006-03-27 01:14:46 -080085 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 ino->dentry = NULL;
87 }
88 if (ino->free)
89 (ino->free)(ino);
90 kfree(ino);
91}
92
Ian Kent104e49f2005-07-27 11:43:45 -070093/*
94 * Deal with the infamous "Busy inodes after umount ..." message.
95 *
96 * Clean up the dentry tree. This happens with autofs if the user
97 * space program goes away due to a SIGKILL, SIGSEGV etc.
98 */
99static void autofs4_force_release(struct autofs_sb_info *sbi)
100{
David Howells6ce31522006-10-11 01:22:15 -0700101 struct dentry *this_parent = sbi->sb->s_root;
Ian Kent104e49f2005-07-27 11:43:45 -0700102 struct list_head *next;
103
Ian Kentba8df432006-11-14 02:03:29 -0800104 if (!sbi->sb->s_root)
105 return;
106
Ian Kent104e49f2005-07-27 11:43:45 -0700107 spin_lock(&dcache_lock);
108repeat:
109 next = this_parent->d_subdirs.next;
110resume:
111 while (next != &this_parent->d_subdirs) {
Eric Dumazet5160ee62006-01-08 01:03:32 -0800112 struct dentry *dentry = list_entry(next, struct dentry, d_u.d_child);
Ian Kent104e49f2005-07-27 11:43:45 -0700113
114 /* Negative dentry - don`t care */
115 if (!simple_positive(dentry)) {
116 next = next->next;
117 continue;
118 }
119
120 if (!list_empty(&dentry->d_subdirs)) {
121 this_parent = dentry;
122 goto repeat;
123 }
124
125 next = next->next;
126 spin_unlock(&dcache_lock);
127
128 DPRINTK("dentry %p %.*s",
129 dentry, (int)dentry->d_name.len, dentry->d_name.name);
130
131 dput(dentry);
132 spin_lock(&dcache_lock);
133 }
134
David Howells6ce31522006-10-11 01:22:15 -0700135 if (this_parent != sbi->sb->s_root) {
Ian Kent104e49f2005-07-27 11:43:45 -0700136 struct dentry *dentry = this_parent;
137
Eric Dumazet5160ee62006-01-08 01:03:32 -0800138 next = this_parent->d_u.d_child.next;
Ian Kent104e49f2005-07-27 11:43:45 -0700139 this_parent = this_parent->d_parent;
140 spin_unlock(&dcache_lock);
141 DPRINTK("parent dentry %p %.*s",
142 dentry, (int)dentry->d_name.len, dentry->d_name.name);
143 dput(dentry);
144 spin_lock(&dcache_lock);
145 goto resume;
146 }
147 spin_unlock(&dcache_lock);
Ian Kent104e49f2005-07-27 11:43:45 -0700148}
149
David Howells6ce31522006-10-11 01:22:15 -0700150void autofs4_kill_sb(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
152 struct autofs_sb_info *sbi = autofs4_sbi(sb);
153
Ian Kentba8df432006-11-14 02:03:29 -0800154 /*
155 * In the event of a failure in get_sb_nodev the superblock
156 * info is not present so nothing else has been setup, so
Jiri Kosinac949d4e2006-12-06 20:39:38 -0800157 * just call kill_anon_super when we are called from
158 * deactivate_super.
Ian Kentba8df432006-11-14 02:03:29 -0800159 */
160 if (!sbi)
Jiri Kosinac949d4e2006-12-06 20:39:38 -0800161 goto out_kill_sb;
Ian Kentba8df432006-11-14 02:03:29 -0800162
Ian Kentf50b6f82007-02-20 13:58:10 -0800163 if (!sbi->catatonic)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 autofs4_catatonic_mode(sbi); /* Free wait queues, close pipe */
165
Ian Kent104e49f2005-07-27 11:43:45 -0700166 /* Clean up and release dangling references */
Dave Jones3370c742006-03-27 01:14:57 -0800167 autofs4_force_release(sbi);
Ian Kent104e49f2005-07-27 11:43:45 -0700168
Ian Kentf50b6f82007-02-20 13:58:10 -0800169 sb->s_fs_info = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 kfree(sbi);
171
Jiri Kosinac949d4e2006-12-06 20:39:38 -0800172out_kill_sb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 DPRINTK("shutting down");
David Howells6ce31522006-10-11 01:22:15 -0700174 kill_anon_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
176
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800177static int autofs4_show_options(struct seq_file *m, struct vfsmount *mnt)
178{
179 struct autofs_sb_info *sbi = autofs4_sbi(mnt->mnt_sb);
180
181 if (!sbi)
182 return 0;
183
184 seq_printf(m, ",fd=%d", sbi->pipefd);
185 seq_printf(m, ",pgrp=%d", sbi->oz_pgrp);
186 seq_printf(m, ",timeout=%lu", sbi->exp_timeout/HZ);
187 seq_printf(m, ",minproto=%d", sbi->min_proto);
188 seq_printf(m, ",maxproto=%d", sbi->max_proto);
189
Ian Kent44d53eb2006-03-27 01:14:56 -0800190 if (sbi->type & AUTOFS_TYPE_OFFSET)
Ian Kent34ca9592006-03-27 01:14:54 -0800191 seq_printf(m, ",offset");
Ian Kent44d53eb2006-03-27 01:14:56 -0800192 else if (sbi->type & AUTOFS_TYPE_DIRECT)
Ian Kent34ca9592006-03-27 01:14:54 -0800193 seq_printf(m, ",direct");
194 else
195 seq_printf(m, ",indirect");
196
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800197 return 0;
198}
199
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800200static const struct super_operations autofs4_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 .statfs = simple_statfs,
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800202 .show_options = autofs4_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203};
204
Ian Kent34ca9592006-03-27 01:14:54 -0800205enum {Opt_err, Opt_fd, Opt_uid, Opt_gid, Opt_pgrp, Opt_minproto, Opt_maxproto,
206 Opt_indirect, Opt_direct, Opt_offset};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208static match_table_t tokens = {
209 {Opt_fd, "fd=%u"},
210 {Opt_uid, "uid=%u"},
211 {Opt_gid, "gid=%u"},
212 {Opt_pgrp, "pgrp=%u"},
213 {Opt_minproto, "minproto=%u"},
214 {Opt_maxproto, "maxproto=%u"},
Ian Kent34ca9592006-03-27 01:14:54 -0800215 {Opt_indirect, "indirect"},
216 {Opt_direct, "direct"},
217 {Opt_offset, "offset"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 {Opt_err, NULL}
219};
220
221static int parse_options(char *options, int *pipefd, uid_t *uid, gid_t *gid,
Ian Kent34ca9592006-03-27 01:14:54 -0800222 pid_t *pgrp, unsigned int *type,
223 int *minproto, int *maxproto)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
225 char *p;
226 substring_t args[MAX_OPT_ARGS];
227 int option;
228
229 *uid = current->uid;
230 *gid = current->gid;
231 *pgrp = process_group(current);
232
233 *minproto = AUTOFS_MIN_PROTO_VERSION;
234 *maxproto = AUTOFS_MAX_PROTO_VERSION;
235
236 *pipefd = -1;
237
238 if (!options)
239 return 1;
240
241 while ((p = strsep(&options, ",")) != NULL) {
242 int token;
243 if (!*p)
244 continue;
245
246 token = match_token(p, tokens, args);
247 switch (token) {
248 case Opt_fd:
249 if (match_int(args, pipefd))
250 return 1;
251 break;
252 case Opt_uid:
253 if (match_int(args, &option))
254 return 1;
255 *uid = option;
256 break;
257 case Opt_gid:
258 if (match_int(args, &option))
259 return 1;
260 *gid = option;
261 break;
262 case Opt_pgrp:
263 if (match_int(args, &option))
264 return 1;
265 *pgrp = option;
266 break;
267 case Opt_minproto:
268 if (match_int(args, &option))
269 return 1;
270 *minproto = option;
271 break;
272 case Opt_maxproto:
273 if (match_int(args, &option))
274 return 1;
275 *maxproto = option;
276 break;
Ian Kent34ca9592006-03-27 01:14:54 -0800277 case Opt_indirect:
Ian Kent44d53eb2006-03-27 01:14:56 -0800278 *type = AUTOFS_TYPE_INDIRECT;
Ian Kent34ca9592006-03-27 01:14:54 -0800279 break;
280 case Opt_direct:
Ian Kent44d53eb2006-03-27 01:14:56 -0800281 *type = AUTOFS_TYPE_DIRECT;
Ian Kent34ca9592006-03-27 01:14:54 -0800282 break;
283 case Opt_offset:
Ian Kent44d53eb2006-03-27 01:14:56 -0800284 *type = AUTOFS_TYPE_DIRECT | AUTOFS_TYPE_OFFSET;
Ian Kent34ca9592006-03-27 01:14:54 -0800285 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 default:
287 return 1;
288 }
289 }
290 return (*pipefd < 0);
291}
292
293static struct autofs_info *autofs4_mkroot(struct autofs_sb_info *sbi)
294{
295 struct autofs_info *ino;
296
297 ino = autofs4_init_ino(NULL, sbi, S_IFDIR | 0755);
298 if (!ino)
299 return NULL;
300
301 return ino;
302}
303
Ian Kent34ca9592006-03-27 01:14:54 -0800304static struct dentry_operations autofs4_sb_dentry_operations = {
305 .d_release = autofs4_dentry_release,
306};
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308int autofs4_fill_super(struct super_block *s, void *data, int silent)
309{
310 struct inode * root_inode;
311 struct dentry * root;
312 struct file * pipe;
313 int pipefd;
314 struct autofs_sb_info *sbi;
315 struct autofs_info *ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Robert P. J. Day5cbded52006-12-13 00:35:56 -0800317 sbi = kmalloc(sizeof(*sbi), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 if ( !sbi )
319 goto fail_unlock;
320 DPRINTK("starting up, sbi = %p",sbi);
321
322 memset(sbi, 0, sizeof(*sbi));
323
324 s->s_fs_info = sbi;
325 sbi->magic = AUTOFS_SBI_MAGIC;
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800326 sbi->pipefd = -1;
Ian Kentba8df432006-11-14 02:03:29 -0800327 sbi->pipe = NULL;
328 sbi->catatonic = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 sbi->exp_timeout = 0;
330 sbi->oz_pgrp = process_group(current);
331 sbi->sb = s;
332 sbi->version = 0;
333 sbi->sub_version = 0;
Ian Kent34ca9592006-03-27 01:14:54 -0800334 sbi->type = 0;
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800335 sbi->min_proto = 0;
336 sbi->max_proto = 0;
Ingo Molnar1d5599e2006-03-23 03:00:41 -0800337 mutex_init(&sbi->wq_mutex);
Ian Kent3a9720c2005-05-01 08:59:17 -0700338 spin_lock_init(&sbi->fs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 sbi->queues = NULL;
Ian Kentf50b6f82007-02-20 13:58:10 -0800340 spin_lock_init(&sbi->rehash_lock);
341 INIT_LIST_HEAD(&sbi->rehash_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 s->s_blocksize = 1024;
343 s->s_blocksize_bits = 10;
344 s->s_magic = AUTOFS_SUPER_MAGIC;
345 s->s_op = &autofs4_sops;
346 s->s_time_gran = 1;
347
348 /*
349 * Get the root inode and dentry, but defer checking for errors.
350 */
351 ino = autofs4_mkroot(sbi);
352 if (!ino)
353 goto fail_free;
354 root_inode = autofs4_get_inode(s, ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 if (!root_inode)
Ian Kent34ca9592006-03-27 01:14:54 -0800356 goto fail_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 root = d_alloc_root(root_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (!root)
360 goto fail_iput;
Ian Kent34ca9592006-03-27 01:14:54 -0800361 pipe = NULL;
362
363 root->d_op = &autofs4_sb_dentry_operations;
364 root->d_fsdata = ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 /* Can this call block? */
367 if (parse_options(data, &pipefd,
368 &root_inode->i_uid, &root_inode->i_gid,
Ian Kent34ca9592006-03-27 01:14:54 -0800369 &sbi->oz_pgrp, &sbi->type,
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800370 &sbi->min_proto, &sbi->max_proto)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 printk("autofs: called with bogus options\n");
372 goto fail_dput;
373 }
374
Ian Kent34ca9592006-03-27 01:14:54 -0800375 root_inode->i_fop = &autofs4_root_operations;
Ian Kent44d53eb2006-03-27 01:14:56 -0800376 root_inode->i_op = sbi->type & AUTOFS_TYPE_DIRECT ?
Ian Kent34ca9592006-03-27 01:14:54 -0800377 &autofs4_direct_root_inode_operations :
378 &autofs4_indirect_root_inode_operations;
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 /* Couldn't this be tested earlier? */
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800381 if (sbi->max_proto < AUTOFS_MIN_PROTO_VERSION ||
382 sbi->min_proto > AUTOFS_MAX_PROTO_VERSION) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 printk("autofs: kernel does not match daemon version "
384 "daemon (%d, %d) kernel (%d, %d)\n",
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800385 sbi->min_proto, sbi->max_proto,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 AUTOFS_MIN_PROTO_VERSION, AUTOFS_MAX_PROTO_VERSION);
387 goto fail_dput;
388 }
389
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800390 /* Establish highest kernel protocol version */
391 if (sbi->max_proto > AUTOFS_MAX_PROTO_VERSION)
392 sbi->version = AUTOFS_MAX_PROTO_VERSION;
393 else
394 sbi->version = sbi->max_proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 sbi->sub_version = AUTOFS_PROTO_SUBVERSION;
396
397 DPRINTK("pipe fd = %d, pgrp = %u", pipefd, sbi->oz_pgrp);
398 pipe = fget(pipefd);
399
400 if ( !pipe ) {
401 printk("autofs: could not open pipe file descriptor\n");
402 goto fail_dput;
403 }
404 if ( !pipe->f_op || !pipe->f_op->write )
405 goto fail_fput;
406 sbi->pipe = pipe;
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800407 sbi->pipefd = pipefd;
Ian Kentba8df432006-11-14 02:03:29 -0800408 sbi->catatonic = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 * Success! Install the root dentry now to indicate completion.
412 */
413 s->s_root = root;
414 return 0;
415
416 /*
417 * Failure ... clean up.
418 */
419fail_fput:
420 printk("autofs: pipe file descriptor does not contain proper ops\n");
421 fput(pipe);
422 /* fall through */
423fail_dput:
424 dput(root);
425 goto fail_free;
426fail_iput:
427 printk("autofs: get root dentry failed\n");
428 iput(root_inode);
Ian Kent34ca9592006-03-27 01:14:54 -0800429fail_ino:
430 kfree(ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431fail_free:
432 kfree(sbi);
Ian Kentba8df432006-11-14 02:03:29 -0800433 s->s_fs_info = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434fail_unlock:
435 return -EINVAL;
436}
437
438struct inode *autofs4_get_inode(struct super_block *sb,
439 struct autofs_info *inf)
440{
441 struct inode *inode = new_inode(sb);
442
443 if (inode == NULL)
444 return NULL;
445
446 inf->inode = inode;
447 inode->i_mode = inf->mode;
448 if (sb->s_root) {
449 inode->i_uid = sb->s_root->d_inode->i_uid;
450 inode->i_gid = sb->s_root->d_inode->i_gid;
451 } else {
452 inode->i_uid = 0;
453 inode->i_gid = 0;
454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 inode->i_blocks = 0;
456 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
457
458 if (S_ISDIR(inf->mode)) {
459 inode->i_nlink = 2;
460 inode->i_op = &autofs4_dir_inode_operations;
461 inode->i_fop = &autofs4_dir_operations;
462 } else if (S_ISLNK(inf->mode)) {
463 inode->i_size = inf->size;
464 inode->i_op = &autofs4_symlink_inode_operations;
465 }
466
467 return inode;
468}