blob: 4670a7818eac1c5feb953a1dbc0d019cce6087a5 [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>
Jeff Garzike18fa702006-09-24 11:13:19 -040021#include <linux/magic.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{
Ian Kent25767372008-07-23 21:30:12 -070027 if (ino->u.symlink) {
28 kfree(ino->u.symlink);
29 ino->u.symlink = NULL;
30 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070031}
32
33struct autofs_info *autofs4_init_ino(struct autofs_info *ino,
34 struct autofs_sb_info *sbi, mode_t mode)
35{
36 int reinit = 1;
37
38 if (ino == NULL) {
39 reinit = 0;
40 ino = kmalloc(sizeof(*ino), GFP_KERNEL);
41 }
42
43 if (ino == NULL)
44 return NULL;
45
Ian Kent25767372008-07-23 21:30:12 -070046 if (!reinit) {
47 ino->flags = 0;
48 ino->inode = NULL;
49 ino->dentry = NULL;
50 ino->size = 0;
51 INIT_LIST_HEAD(&ino->active);
Ian Kent4f8427d2009-12-15 16:45:42 -080052 ino->active_count = 0;
Ian Kent25767372008-07-23 21:30:12 -070053 INIT_LIST_HEAD(&ino->expiring);
54 atomic_set(&ino->count, 0);
55 }
56
Ian Kentc0f54d32008-10-15 22:02:52 -070057 ino->uid = 0;
58 ino->gid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 ino->mode = mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 ino->last_used = jiffies;
61
62 ino->sbi = sbi;
63
64 if (reinit && ino->free)
65 (ino->free)(ino);
66
67 memset(&ino->u, 0, sizeof(ino->u));
68
69 ino->free = NULL;
70
71 if (S_ISLNK(mode))
72 ino->free = ino_lnkfree;
73
74 return ino;
75}
76
77void autofs4_free_ino(struct autofs_info *ino)
78{
Ian Kent1aff3c82006-03-27 01:14:46 -080079 struct autofs_info *p_ino;
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 if (ino->dentry) {
82 ino->dentry->d_fsdata = NULL;
Ian Kent1aff3c82006-03-27 01:14:46 -080083 if (ino->dentry->d_inode) {
84 struct dentry *parent = ino->dentry->d_parent;
85 if (atomic_dec_and_test(&ino->count)) {
86 p_ino = autofs4_dentry_ino(parent);
87 if (p_ino && parent != ino->dentry)
88 atomic_dec(&p_ino->count);
89 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 dput(ino->dentry);
Ian Kent1aff3c82006-03-27 01:14:46 -080091 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 ino->dentry = NULL;
93 }
94 if (ino->free)
95 (ino->free)(ino);
96 kfree(ino);
97}
98
Ian Kent104e49f2005-07-27 11:43:45 -070099/*
100 * Deal with the infamous "Busy inodes after umount ..." message.
101 *
102 * Clean up the dentry tree. This happens with autofs if the user
103 * space program goes away due to a SIGKILL, SIGSEGV etc.
104 */
105static void autofs4_force_release(struct autofs_sb_info *sbi)
106{
David Howells6ce31522006-10-11 01:22:15 -0700107 struct dentry *this_parent = sbi->sb->s_root;
Ian Kent104e49f2005-07-27 11:43:45 -0700108 struct list_head *next;
109
Ian Kentba8df432006-11-14 02:03:29 -0800110 if (!sbi->sb->s_root)
111 return;
112
Ian Kent104e49f2005-07-27 11:43:45 -0700113 spin_lock(&dcache_lock);
114repeat:
115 next = this_parent->d_subdirs.next;
116resume:
117 while (next != &this_parent->d_subdirs) {
Eric Dumazet5160ee62006-01-08 01:03:32 -0800118 struct dentry *dentry = list_entry(next, struct dentry, d_u.d_child);
Ian Kent104e49f2005-07-27 11:43:45 -0700119
120 /* Negative dentry - don`t care */
121 if (!simple_positive(dentry)) {
122 next = next->next;
123 continue;
124 }
125
126 if (!list_empty(&dentry->d_subdirs)) {
127 this_parent = dentry;
128 goto repeat;
129 }
130
131 next = next->next;
132 spin_unlock(&dcache_lock);
133
134 DPRINTK("dentry %p %.*s",
135 dentry, (int)dentry->d_name.len, dentry->d_name.name);
136
137 dput(dentry);
138 spin_lock(&dcache_lock);
139 }
140
David Howells6ce31522006-10-11 01:22:15 -0700141 if (this_parent != sbi->sb->s_root) {
Ian Kent104e49f2005-07-27 11:43:45 -0700142 struct dentry *dentry = this_parent;
143
Eric Dumazet5160ee62006-01-08 01:03:32 -0800144 next = this_parent->d_u.d_child.next;
Ian Kent104e49f2005-07-27 11:43:45 -0700145 this_parent = this_parent->d_parent;
146 spin_unlock(&dcache_lock);
147 DPRINTK("parent dentry %p %.*s",
148 dentry, (int)dentry->d_name.len, dentry->d_name.name);
149 dput(dentry);
150 spin_lock(&dcache_lock);
151 goto resume;
152 }
153 spin_unlock(&dcache_lock);
Ian Kent104e49f2005-07-27 11:43:45 -0700154}
155
David Howells6ce31522006-10-11 01:22:15 -0700156void autofs4_kill_sb(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
158 struct autofs_sb_info *sbi = autofs4_sbi(sb);
159
Ian Kentba8df432006-11-14 02:03:29 -0800160 /*
161 * In the event of a failure in get_sb_nodev the superblock
162 * info is not present so nothing else has been setup, so
Jiri Kosinac949d4e2006-12-06 20:39:38 -0800163 * just call kill_anon_super when we are called from
164 * deactivate_super.
Ian Kentba8df432006-11-14 02:03:29 -0800165 */
166 if (!sbi)
Jiri Kosinac949d4e2006-12-06 20:39:38 -0800167 goto out_kill_sb;
Ian Kentba8df432006-11-14 02:03:29 -0800168
Ian Kent5a11d4d2008-07-23 21:30:17 -0700169 /* Free wait queues, close pipe */
170 autofs4_catatonic_mode(sbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Ian Kent104e49f2005-07-27 11:43:45 -0700172 /* Clean up and release dangling references */
Dave Jones3370c742006-03-27 01:14:57 -0800173 autofs4_force_release(sbi);
Ian Kent104e49f2005-07-27 11:43:45 -0700174
Ian Kentf50b6f82007-02-20 13:58:10 -0800175 sb->s_fs_info = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 kfree(sbi);
177
Jiri Kosinac949d4e2006-12-06 20:39:38 -0800178out_kill_sb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 DPRINTK("shutting down");
David Howells6ce31522006-10-11 01:22:15 -0700180 kill_anon_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181}
182
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800183static int autofs4_show_options(struct seq_file *m, struct vfsmount *mnt)
184{
185 struct autofs_sb_info *sbi = autofs4_sbi(mnt->mnt_sb);
Miklos Szerediaef97cb2008-02-08 04:21:37 -0800186 struct inode *root_inode = mnt->mnt_sb->s_root->d_inode;
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800187
188 if (!sbi)
189 return 0;
190
191 seq_printf(m, ",fd=%d", sbi->pipefd);
Miklos Szerediaef97cb2008-02-08 04:21:37 -0800192 if (root_inode->i_uid != 0)
193 seq_printf(m, ",uid=%u", root_inode->i_uid);
194 if (root_inode->i_gid != 0)
195 seq_printf(m, ",gid=%u", root_inode->i_gid);
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800196 seq_printf(m, ",pgrp=%d", sbi->oz_pgrp);
197 seq_printf(m, ",timeout=%lu", sbi->exp_timeout/HZ);
198 seq_printf(m, ",minproto=%d", sbi->min_proto);
199 seq_printf(m, ",maxproto=%d", sbi->max_proto);
200
Ian Kenta92daf62009-01-06 14:42:08 -0800201 if (autofs_type_offset(sbi->type))
Ian Kent34ca9592006-03-27 01:14:54 -0800202 seq_printf(m, ",offset");
Ian Kenta92daf62009-01-06 14:42:08 -0800203 else if (autofs_type_direct(sbi->type))
Ian Kent34ca9592006-03-27 01:14:54 -0800204 seq_printf(m, ",direct");
205 else
206 seq_printf(m, ",indirect");
207
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800208 return 0;
209}
210
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800211static const struct super_operations autofs4_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 .statfs = simple_statfs,
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800213 .show_options = autofs4_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214};
215
Ian Kent34ca9592006-03-27 01:14:54 -0800216enum {Opt_err, Opt_fd, Opt_uid, Opt_gid, Opt_pgrp, Opt_minproto, Opt_maxproto,
217 Opt_indirect, Opt_direct, Opt_offset};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Steven Whitehousea447c092008-10-13 10:46:57 +0100219static const match_table_t tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 {Opt_fd, "fd=%u"},
221 {Opt_uid, "uid=%u"},
222 {Opt_gid, "gid=%u"},
223 {Opt_pgrp, "pgrp=%u"},
224 {Opt_minproto, "minproto=%u"},
225 {Opt_maxproto, "maxproto=%u"},
Ian Kent34ca9592006-03-27 01:14:54 -0800226 {Opt_indirect, "indirect"},
227 {Opt_direct, "direct"},
228 {Opt_offset, "offset"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 {Opt_err, NULL}
230};
231
232static int parse_options(char *options, int *pipefd, uid_t *uid, gid_t *gid,
Sukadev Bhattiprolud78e53c2007-05-10 22:23:06 -0700233 pid_t *pgrp, unsigned int *type, int *minproto, int *maxproto)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
235 char *p;
236 substring_t args[MAX_OPT_ARGS];
237 int option;
238
David Howells0eb790e2008-11-14 10:38:46 +1100239 *uid = current_uid();
240 *gid = current_gid();
Pavel Emelianova47afb02007-10-18 23:39:46 -0700241 *pgrp = task_pgrp_nr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243 *minproto = AUTOFS_MIN_PROTO_VERSION;
244 *maxproto = AUTOFS_MAX_PROTO_VERSION;
245
246 *pipefd = -1;
247
248 if (!options)
249 return 1;
250
251 while ((p = strsep(&options, ",")) != NULL) {
252 int token;
253 if (!*p)
254 continue;
255
256 token = match_token(p, tokens, args);
257 switch (token) {
258 case Opt_fd:
259 if (match_int(args, pipefd))
260 return 1;
261 break;
262 case Opt_uid:
263 if (match_int(args, &option))
264 return 1;
265 *uid = option;
266 break;
267 case Opt_gid:
268 if (match_int(args, &option))
269 return 1;
270 *gid = option;
271 break;
272 case Opt_pgrp:
273 if (match_int(args, &option))
274 return 1;
275 *pgrp = option;
276 break;
277 case Opt_minproto:
278 if (match_int(args, &option))
279 return 1;
280 *minproto = option;
281 break;
282 case Opt_maxproto:
283 if (match_int(args, &option))
284 return 1;
285 *maxproto = option;
286 break;
Ian Kent34ca9592006-03-27 01:14:54 -0800287 case Opt_indirect:
Ian Kenta92daf62009-01-06 14:42:08 -0800288 set_autofs_type_indirect(type);
Ian Kent34ca9592006-03-27 01:14:54 -0800289 break;
290 case Opt_direct:
Ian Kenta92daf62009-01-06 14:42:08 -0800291 set_autofs_type_direct(type);
Ian Kent34ca9592006-03-27 01:14:54 -0800292 break;
293 case Opt_offset:
Ian Kenta92daf62009-01-06 14:42:08 -0800294 set_autofs_type_offset(type);
Ian Kent34ca9592006-03-27 01:14:54 -0800295 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 default:
297 return 1;
298 }
299 }
300 return (*pipefd < 0);
301}
302
303static struct autofs_info *autofs4_mkroot(struct autofs_sb_info *sbi)
304{
305 struct autofs_info *ino;
306
307 ino = autofs4_init_ino(NULL, sbi, S_IFDIR | 0755);
308 if (!ino)
309 return NULL;
310
311 return ino;
312}
313
Al Viro08f11512009-02-20 05:56:19 +0000314static const struct dentry_operations autofs4_sb_dentry_operations = {
Ian Kent34ca9592006-03-27 01:14:54 -0800315 .d_release = autofs4_dentry_release,
316};
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318int autofs4_fill_super(struct super_block *s, void *data, int silent)
319{
320 struct inode * root_inode;
321 struct dentry * root;
322 struct file * pipe;
323 int pipefd;
324 struct autofs_sb_info *sbi;
325 struct autofs_info *ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Mariusz Kozlowskib63d50c2007-10-16 23:26:44 -0700327 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
Sukadev Bhattiprolud78e53c2007-05-10 22:23:06 -0700328 if (!sbi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 goto fail_unlock;
330 DPRINTK("starting up, sbi = %p",sbi);
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 s->s_fs_info = sbi;
333 sbi->magic = AUTOFS_SBI_MAGIC;
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800334 sbi->pipefd = -1;
Ian Kentba8df432006-11-14 02:03:29 -0800335 sbi->pipe = NULL;
336 sbi->catatonic = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 sbi->exp_timeout = 0;
Pavel Emelianova47afb02007-10-18 23:39:46 -0700338 sbi->oz_pgrp = task_pgrp_nr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 sbi->sb = s;
340 sbi->version = 0;
341 sbi->sub_version = 0;
Ian Kenta92daf62009-01-06 14:42:08 -0800342 set_autofs_type_indirect(&sbi->type);
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800343 sbi->min_proto = 0;
344 sbi->max_proto = 0;
Ingo Molnar1d5599e2006-03-23 03:00:41 -0800345 mutex_init(&sbi->wq_mutex);
Ian Kent3a9720c2005-05-01 08:59:17 -0700346 spin_lock_init(&sbi->fs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 sbi->queues = NULL;
Ian Kent5f6f4f22008-07-23 21:30:09 -0700348 spin_lock_init(&sbi->lookup_lock);
Ian Kent25767372008-07-23 21:30:12 -0700349 INIT_LIST_HEAD(&sbi->active_list);
Ian Kent5f6f4f22008-07-23 21:30:09 -0700350 INIT_LIST_HEAD(&sbi->expiring_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 s->s_blocksize = 1024;
352 s->s_blocksize_bits = 10;
353 s->s_magic = AUTOFS_SUPER_MAGIC;
354 s->s_op = &autofs4_sops;
355 s->s_time_gran = 1;
356
357 /*
358 * Get the root inode and dentry, but defer checking for errors.
359 */
360 ino = autofs4_mkroot(sbi);
361 if (!ino)
362 goto fail_free;
363 root_inode = autofs4_get_inode(s, ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 if (!root_inode)
Ian Kent34ca9592006-03-27 01:14:54 -0800365 goto fail_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 root = d_alloc_root(root_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 if (!root)
369 goto fail_iput;
Ian Kent34ca9592006-03-27 01:14:54 -0800370 pipe = NULL;
371
372 root->d_op = &autofs4_sb_dentry_operations;
373 root->d_fsdata = ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375 /* Can this call block? */
Sukadev Bhattiprolud78e53c2007-05-10 22:23:06 -0700376 if (parse_options(data, &pipefd, &root_inode->i_uid, &root_inode->i_gid,
377 &sbi->oz_pgrp, &sbi->type, &sbi->min_proto,
378 &sbi->max_proto)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 printk("autofs: called with bogus options\n");
380 goto fail_dput;
381 }
382
Ian Kent34ca9592006-03-27 01:14:54 -0800383 root_inode->i_fop = &autofs4_root_operations;
Ian Kenta92daf62009-01-06 14:42:08 -0800384 root_inode->i_op = autofs_type_trigger(sbi->type) ?
Ian Kent34ca9592006-03-27 01:14:54 -0800385 &autofs4_direct_root_inode_operations :
386 &autofs4_indirect_root_inode_operations;
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 /* Couldn't this be tested earlier? */
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800389 if (sbi->max_proto < AUTOFS_MIN_PROTO_VERSION ||
390 sbi->min_proto > AUTOFS_MAX_PROTO_VERSION) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 printk("autofs: kernel does not match daemon version "
392 "daemon (%d, %d) kernel (%d, %d)\n",
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800393 sbi->min_proto, sbi->max_proto,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 AUTOFS_MIN_PROTO_VERSION, AUTOFS_MAX_PROTO_VERSION);
395 goto fail_dput;
396 }
397
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800398 /* Establish highest kernel protocol version */
399 if (sbi->max_proto > AUTOFS_MAX_PROTO_VERSION)
400 sbi->version = AUTOFS_MAX_PROTO_VERSION;
401 else
402 sbi->version = sbi->max_proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 sbi->sub_version = AUTOFS_PROTO_SUBVERSION;
404
405 DPRINTK("pipe fd = %d, pgrp = %u", pipefd, sbi->oz_pgrp);
406 pipe = fget(pipefd);
407
Sukadev Bhattiprolud78e53c2007-05-10 22:23:06 -0700408 if (!pipe) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 printk("autofs: could not open pipe file descriptor\n");
410 goto fail_dput;
411 }
Sukadev Bhattiprolud78e53c2007-05-10 22:23:06 -0700412 if (!pipe->f_op || !pipe->f_op->write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 goto fail_fput;
414 sbi->pipe = pipe;
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800415 sbi->pipefd = pipefd;
Ian Kentba8df432006-11-14 02:03:29 -0800416 sbi->catatonic = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 * Success! Install the root dentry now to indicate completion.
420 */
421 s->s_root = root;
422 return 0;
423
424 /*
425 * Failure ... clean up.
426 */
427fail_fput:
428 printk("autofs: pipe file descriptor does not contain proper ops\n");
429 fput(pipe);
430 /* fall through */
431fail_dput:
432 dput(root);
433 goto fail_free;
434fail_iput:
435 printk("autofs: get root dentry failed\n");
436 iput(root_inode);
Ian Kent34ca9592006-03-27 01:14:54 -0800437fail_ino:
438 kfree(ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439fail_free:
440 kfree(sbi);
Ian Kentba8df432006-11-14 02:03:29 -0800441 s->s_fs_info = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442fail_unlock:
443 return -EINVAL;
444}
445
446struct inode *autofs4_get_inode(struct super_block *sb,
447 struct autofs_info *inf)
448{
449 struct inode *inode = new_inode(sb);
450
451 if (inode == NULL)
452 return NULL;
453
454 inf->inode = inode;
455 inode->i_mode = inf->mode;
456 if (sb->s_root) {
457 inode->i_uid = sb->s_root->d_inode->i_uid;
458 inode->i_gid = sb->s_root->d_inode->i_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
461
462 if (S_ISDIR(inf->mode)) {
463 inode->i_nlink = 2;
464 inode->i_op = &autofs4_dir_inode_operations;
465 inode->i_fop = &autofs4_dir_operations;
466 } else if (S_ISLNK(inf->mode)) {
467 inode->i_size = inf->size;
468 inode->i_op = &autofs4_symlink_inode_operations;
469 }
470
471 return inode;
472}