1 /* -*- c -*- --------------------------------------------------------------- *
3 * linux/fs/autofs/inode.c
5 * Copyright 1997-1998 Transmeta Corporation -- All Rights Reserved
6 * Copyright 2005-2006 Ian Kent <raven@themaw.net>
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.
12 * ------------------------------------------------------------------------- */
14 #include <linux/kernel.h>
15 #include <linux/slab.h>
16 #include <linux/file.h>
17 #include <linux/seq_file.h>
18 #include <linux/pagemap.h>
19 #include <linux/parser.h>
20 #include <linux/bitops.h>
21 #include <linux/smp_lock.h>
22 #include <linux/magic.h>
24 #include <linux/module.h>
26 static void ino_lnkfree(struct autofs_info
*ino
)
28 kfree(ino
->u
.symlink
);
29 ino
->u
.symlink
= NULL
;
32 struct autofs_info
*autofs4_init_ino(struct autofs_info
*ino
,
33 struct autofs_sb_info
*sbi
, mode_t mode
)
39 ino
= kmalloc(sizeof(*ino
), GFP_KERNEL
);
51 ino
->last_used
= jiffies
;
52 atomic_set(&ino
->count
, 0);
56 if (reinit
&& ino
->free
)
59 memset(&ino
->u
, 0, sizeof(ino
->u
));
64 ino
->free
= ino_lnkfree
;
69 void autofs4_free_ino(struct autofs_info
*ino
)
71 struct autofs_info
*p_ino
;
74 ino
->dentry
->d_fsdata
= NULL
;
75 if (ino
->dentry
->d_inode
) {
76 struct dentry
*parent
= ino
->dentry
->d_parent
;
77 if (atomic_dec_and_test(&ino
->count
)) {
78 p_ino
= autofs4_dentry_ino(parent
);
79 if (p_ino
&& parent
!= ino
->dentry
)
80 atomic_dec(&p_ino
->count
);
92 * Deal with the infamous "Busy inodes after umount ..." message.
94 * Clean up the dentry tree. This happens with autofs if the user
95 * space program goes away due to a SIGKILL, SIGSEGV etc.
97 static void autofs4_force_release(struct autofs_sb_info
*sbi
)
99 struct dentry
*this_parent
= sbi
->sb
->s_root
;
100 struct list_head
*next
;
102 if (!sbi
->sb
->s_root
)
105 spin_lock(&dcache_lock
);
107 next
= this_parent
->d_subdirs
.next
;
109 while (next
!= &this_parent
->d_subdirs
) {
110 struct dentry
*dentry
= list_entry(next
, struct dentry
, d_u
.d_child
);
112 /* Negative dentry - don`t care */
113 if (!simple_positive(dentry
)) {
118 if (!list_empty(&dentry
->d_subdirs
)) {
119 this_parent
= dentry
;
124 spin_unlock(&dcache_lock
);
126 DPRINTK("dentry %p %.*s",
127 dentry
, (int)dentry
->d_name
.len
, dentry
->d_name
.name
);
130 spin_lock(&dcache_lock
);
133 if (this_parent
!= sbi
->sb
->s_root
) {
134 struct dentry
*dentry
= this_parent
;
136 next
= this_parent
->d_u
.d_child
.next
;
137 this_parent
= this_parent
->d_parent
;
138 spin_unlock(&dcache_lock
);
139 DPRINTK("parent dentry %p %.*s",
140 dentry
, (int)dentry
->d_name
.len
, dentry
->d_name
.name
);
142 spin_lock(&dcache_lock
);
145 spin_unlock(&dcache_lock
);
148 void autofs4_kill_sb(struct super_block
*sb
)
150 struct autofs_sb_info
*sbi
= autofs4_sbi(sb
);
153 * In the event of a failure in get_sb_nodev the superblock
154 * info is not present so nothing else has been setup, so
155 * just exit when we are called from deactivate_super.
160 sb
->s_fs_info
= NULL
;
162 if ( !sbi
->catatonic
)
163 autofs4_catatonic_mode(sbi
); /* Free wait queues, close pipe */
165 /* Clean up and release dangling references */
166 autofs4_force_release(sbi
);
170 DPRINTK("shutting down");
174 static int autofs4_show_options(struct seq_file
*m
, struct vfsmount
*mnt
)
176 struct autofs_sb_info
*sbi
= autofs4_sbi(mnt
->mnt_sb
);
181 seq_printf(m
, ",fd=%d", sbi
->pipefd
);
182 seq_printf(m
, ",pgrp=%d", sbi
->oz_pgrp
);
183 seq_printf(m
, ",timeout=%lu", sbi
->exp_timeout
/HZ
);
184 seq_printf(m
, ",minproto=%d", sbi
->min_proto
);
185 seq_printf(m
, ",maxproto=%d", sbi
->max_proto
);
187 if (sbi
->type
& AUTOFS_TYPE_OFFSET
)
188 seq_printf(m
, ",offset");
189 else if (sbi
->type
& AUTOFS_TYPE_DIRECT
)
190 seq_printf(m
, ",direct");
192 seq_printf(m
, ",indirect");
197 static struct super_operations autofs4_sops
= {
198 .statfs
= simple_statfs
,
199 .show_options
= autofs4_show_options
,
202 enum {Opt_err
, Opt_fd
, Opt_uid
, Opt_gid
, Opt_pgrp
, Opt_minproto
, Opt_maxproto
,
203 Opt_indirect
, Opt_direct
, Opt_offset
};
205 static match_table_t tokens
= {
209 {Opt_pgrp
, "pgrp=%u"},
210 {Opt_minproto
, "minproto=%u"},
211 {Opt_maxproto
, "maxproto=%u"},
212 {Opt_indirect
, "indirect"},
213 {Opt_direct
, "direct"},
214 {Opt_offset
, "offset"},
218 static int parse_options(char *options
, int *pipefd
, uid_t
*uid
, gid_t
*gid
,
219 pid_t
*pgrp
, unsigned int *type
,
220 int *minproto
, int *maxproto
)
223 substring_t args
[MAX_OPT_ARGS
];
228 *pgrp
= process_group(current
);
230 *minproto
= AUTOFS_MIN_PROTO_VERSION
;
231 *maxproto
= AUTOFS_MAX_PROTO_VERSION
;
238 while ((p
= strsep(&options
, ",")) != NULL
) {
243 token
= match_token(p
, tokens
, args
);
246 if (match_int(args
, pipefd
))
250 if (match_int(args
, &option
))
255 if (match_int(args
, &option
))
260 if (match_int(args
, &option
))
265 if (match_int(args
, &option
))
270 if (match_int(args
, &option
))
275 *type
= AUTOFS_TYPE_INDIRECT
;
278 *type
= AUTOFS_TYPE_DIRECT
;
281 *type
= AUTOFS_TYPE_DIRECT
| AUTOFS_TYPE_OFFSET
;
287 return (*pipefd
< 0);
290 static struct autofs_info
*autofs4_mkroot(struct autofs_sb_info
*sbi
)
292 struct autofs_info
*ino
;
294 ino
= autofs4_init_ino(NULL
, sbi
, S_IFDIR
| 0755);
301 static struct dentry_operations autofs4_sb_dentry_operations
= {
302 .d_release
= autofs4_dentry_release
,
305 int autofs4_fill_super(struct super_block
*s
, void *data
, int silent
)
307 struct inode
* root_inode
;
308 struct dentry
* root
;
311 struct autofs_sb_info
*sbi
;
312 struct autofs_info
*ino
;
314 sbi
= (struct autofs_sb_info
*) kmalloc(sizeof(*sbi
), GFP_KERNEL
);
317 DPRINTK("starting up, sbi = %p",sbi
);
319 memset(sbi
, 0, sizeof(*sbi
));
322 sbi
->magic
= AUTOFS_SBI_MAGIC
;
326 sbi
->exp_timeout
= 0;
327 sbi
->oz_pgrp
= process_group(current
);
330 sbi
->sub_version
= 0;
334 mutex_init(&sbi
->wq_mutex
);
335 spin_lock_init(&sbi
->fs_lock
);
337 s
->s_blocksize
= 1024;
338 s
->s_blocksize_bits
= 10;
339 s
->s_magic
= AUTOFS_SUPER_MAGIC
;
340 s
->s_op
= &autofs4_sops
;
344 * Get the root inode and dentry, but defer checking for errors.
346 ino
= autofs4_mkroot(sbi
);
349 root_inode
= autofs4_get_inode(s
, ino
);
353 root
= d_alloc_root(root_inode
);
358 root
->d_op
= &autofs4_sb_dentry_operations
;
359 root
->d_fsdata
= ino
;
361 /* Can this call block? */
362 if (parse_options(data
, &pipefd
,
363 &root_inode
->i_uid
, &root_inode
->i_gid
,
364 &sbi
->oz_pgrp
, &sbi
->type
,
365 &sbi
->min_proto
, &sbi
->max_proto
)) {
366 printk("autofs: called with bogus options\n");
370 root_inode
->i_fop
= &autofs4_root_operations
;
371 root_inode
->i_op
= sbi
->type
& AUTOFS_TYPE_DIRECT
?
372 &autofs4_direct_root_inode_operations
:
373 &autofs4_indirect_root_inode_operations
;
375 /* Couldn't this be tested earlier? */
376 if (sbi
->max_proto
< AUTOFS_MIN_PROTO_VERSION
||
377 sbi
->min_proto
> AUTOFS_MAX_PROTO_VERSION
) {
378 printk("autofs: kernel does not match daemon version "
379 "daemon (%d, %d) kernel (%d, %d)\n",
380 sbi
->min_proto
, sbi
->max_proto
,
381 AUTOFS_MIN_PROTO_VERSION
, AUTOFS_MAX_PROTO_VERSION
);
385 /* Establish highest kernel protocol version */
386 if (sbi
->max_proto
> AUTOFS_MAX_PROTO_VERSION
)
387 sbi
->version
= AUTOFS_MAX_PROTO_VERSION
;
389 sbi
->version
= sbi
->max_proto
;
390 sbi
->sub_version
= AUTOFS_PROTO_SUBVERSION
;
392 DPRINTK("pipe fd = %d, pgrp = %u", pipefd
, sbi
->oz_pgrp
);
396 printk("autofs: could not open pipe file descriptor\n");
399 if ( !pipe
->f_op
|| !pipe
->f_op
->write
)
402 sbi
->pipefd
= pipefd
;
406 * Success! Install the root dentry now to indicate completion.
412 * Failure ... clean up.
415 printk("autofs: pipe file descriptor does not contain proper ops\n");
422 printk("autofs: get root dentry failed\n");
434 struct inode
*autofs4_get_inode(struct super_block
*sb
,
435 struct autofs_info
*inf
)
437 struct inode
*inode
= new_inode(sb
);
443 inode
->i_mode
= inf
->mode
;
445 inode
->i_uid
= sb
->s_root
->d_inode
->i_uid
;
446 inode
->i_gid
= sb
->s_root
->d_inode
->i_gid
;
452 inode
->i_atime
= inode
->i_mtime
= inode
->i_ctime
= CURRENT_TIME
;
454 if (S_ISDIR(inf
->mode
)) {
456 inode
->i_op
= &autofs4_dir_inode_operations
;
457 inode
->i_fop
= &autofs4_dir_operations
;
458 } else if (S_ISLNK(inf
->mode
)) {
459 inode
->i_size
= inf
->size
;
460 inode
->i_op
= &autofs4_symlink_inode_operations
;