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/magic.h>
23 #include <linux/module.h>
25 static void ino_lnkfree(struct autofs_info
*ino
)
28 kfree(ino
->u
.symlink
);
29 ino
->u
.symlink
= NULL
;
33 struct autofs_info
*autofs4_init_ino(struct autofs_info
*ino
,
34 struct autofs_sb_info
*sbi
, mode_t mode
)
40 ino
= kmalloc(sizeof(*ino
), GFP_KERNEL
);
51 INIT_LIST_HEAD(&ino
->active
);
52 INIT_LIST_HEAD(&ino
->expiring
);
53 atomic_set(&ino
->count
, 0);
57 ino
->last_used
= jiffies
;
61 if (reinit
&& ino
->free
)
64 memset(&ino
->u
, 0, sizeof(ino
->u
));
69 ino
->free
= ino_lnkfree
;
74 void autofs4_free_ino(struct autofs_info
*ino
)
76 struct autofs_info
*p_ino
;
79 ino
->dentry
->d_fsdata
= NULL
;
80 if (ino
->dentry
->d_inode
) {
81 struct dentry
*parent
= ino
->dentry
->d_parent
;
82 if (atomic_dec_and_test(&ino
->count
)) {
83 p_ino
= autofs4_dentry_ino(parent
);
84 if (p_ino
&& parent
!= ino
->dentry
)
85 atomic_dec(&p_ino
->count
);
97 * Deal with the infamous "Busy inodes after umount ..." message.
99 * Clean up the dentry tree. This happens with autofs if the user
100 * space program goes away due to a SIGKILL, SIGSEGV etc.
102 static void autofs4_force_release(struct autofs_sb_info
*sbi
)
104 struct dentry
*this_parent
= sbi
->sb
->s_root
;
105 struct list_head
*next
;
107 if (!sbi
->sb
->s_root
)
110 spin_lock(&dcache_lock
);
112 next
= this_parent
->d_subdirs
.next
;
114 while (next
!= &this_parent
->d_subdirs
) {
115 struct dentry
*dentry
= list_entry(next
, struct dentry
, d_u
.d_child
);
117 /* Negative dentry - don`t care */
118 if (!simple_positive(dentry
)) {
123 if (!list_empty(&dentry
->d_subdirs
)) {
124 this_parent
= dentry
;
129 spin_unlock(&dcache_lock
);
131 DPRINTK("dentry %p %.*s",
132 dentry
, (int)dentry
->d_name
.len
, dentry
->d_name
.name
);
135 spin_lock(&dcache_lock
);
138 if (this_parent
!= sbi
->sb
->s_root
) {
139 struct dentry
*dentry
= this_parent
;
141 next
= this_parent
->d_u
.d_child
.next
;
142 this_parent
= this_parent
->d_parent
;
143 spin_unlock(&dcache_lock
);
144 DPRINTK("parent dentry %p %.*s",
145 dentry
, (int)dentry
->d_name
.len
, dentry
->d_name
.name
);
147 spin_lock(&dcache_lock
);
150 spin_unlock(&dcache_lock
);
153 void autofs4_kill_sb(struct super_block
*sb
)
155 struct autofs_sb_info
*sbi
= autofs4_sbi(sb
);
158 * In the event of a failure in get_sb_nodev the superblock
159 * info is not present so nothing else has been setup, so
160 * just call kill_anon_super when we are called from
166 /* Free wait queues, close pipe */
167 autofs4_catatonic_mode(sbi
);
169 /* Clean up and release dangling references */
170 autofs4_force_release(sbi
);
172 sb
->s_fs_info
= NULL
;
176 DPRINTK("shutting down");
180 static int autofs4_show_options(struct seq_file
*m
, struct vfsmount
*mnt
)
182 struct autofs_sb_info
*sbi
= autofs4_sbi(mnt
->mnt_sb
);
183 struct inode
*root_inode
= mnt
->mnt_sb
->s_root
->d_inode
;
188 seq_printf(m
, ",fd=%d", sbi
->pipefd
);
189 if (root_inode
->i_uid
!= 0)
190 seq_printf(m
, ",uid=%u", root_inode
->i_uid
);
191 if (root_inode
->i_gid
!= 0)
192 seq_printf(m
, ",gid=%u", root_inode
->i_gid
);
193 seq_printf(m
, ",pgrp=%d", sbi
->oz_pgrp
);
194 seq_printf(m
, ",timeout=%lu", sbi
->exp_timeout
/HZ
);
195 seq_printf(m
, ",minproto=%d", sbi
->min_proto
);
196 seq_printf(m
, ",maxproto=%d", sbi
->max_proto
);
198 if (sbi
->type
& AUTOFS_TYPE_OFFSET
)
199 seq_printf(m
, ",offset");
200 else if (sbi
->type
& AUTOFS_TYPE_DIRECT
)
201 seq_printf(m
, ",direct");
203 seq_printf(m
, ",indirect");
208 static const struct super_operations autofs4_sops
= {
209 .statfs
= simple_statfs
,
210 .show_options
= autofs4_show_options
,
213 enum {Opt_err
, Opt_fd
, Opt_uid
, Opt_gid
, Opt_pgrp
, Opt_minproto
, Opt_maxproto
,
214 Opt_indirect
, Opt_direct
, Opt_offset
};
216 static match_table_t tokens
= {
220 {Opt_pgrp
, "pgrp=%u"},
221 {Opt_minproto
, "minproto=%u"},
222 {Opt_maxproto
, "maxproto=%u"},
223 {Opt_indirect
, "indirect"},
224 {Opt_direct
, "direct"},
225 {Opt_offset
, "offset"},
229 static int parse_options(char *options
, int *pipefd
, uid_t
*uid
, gid_t
*gid
,
230 pid_t
*pgrp
, unsigned int *type
, int *minproto
, int *maxproto
)
233 substring_t args
[MAX_OPT_ARGS
];
238 *pgrp
= task_pgrp_nr(current
);
240 *minproto
= AUTOFS_MIN_PROTO_VERSION
;
241 *maxproto
= AUTOFS_MAX_PROTO_VERSION
;
248 while ((p
= strsep(&options
, ",")) != NULL
) {
253 token
= match_token(p
, tokens
, args
);
256 if (match_int(args
, pipefd
))
260 if (match_int(args
, &option
))
265 if (match_int(args
, &option
))
270 if (match_int(args
, &option
))
275 if (match_int(args
, &option
))
280 if (match_int(args
, &option
))
285 *type
= AUTOFS_TYPE_INDIRECT
;
288 *type
= AUTOFS_TYPE_DIRECT
;
291 *type
= AUTOFS_TYPE_DIRECT
| AUTOFS_TYPE_OFFSET
;
297 return (*pipefd
< 0);
300 static struct autofs_info
*autofs4_mkroot(struct autofs_sb_info
*sbi
)
302 struct autofs_info
*ino
;
304 ino
= autofs4_init_ino(NULL
, sbi
, S_IFDIR
| 0755);
311 static struct dentry_operations autofs4_sb_dentry_operations
= {
312 .d_release
= autofs4_dentry_release
,
315 int autofs4_fill_super(struct super_block
*s
, void *data
, int silent
)
317 struct inode
* root_inode
;
318 struct dentry
* root
;
321 struct autofs_sb_info
*sbi
;
322 struct autofs_info
*ino
;
324 sbi
= kzalloc(sizeof(*sbi
), GFP_KERNEL
);
327 DPRINTK("starting up, sbi = %p",sbi
);
330 sbi
->magic
= AUTOFS_SBI_MAGIC
;
334 sbi
->exp_timeout
= 0;
335 sbi
->oz_pgrp
= task_pgrp_nr(current
);
338 sbi
->sub_version
= 0;
342 mutex_init(&sbi
->wq_mutex
);
343 spin_lock_init(&sbi
->fs_lock
);
345 spin_lock_init(&sbi
->lookup_lock
);
346 INIT_LIST_HEAD(&sbi
->active_list
);
347 INIT_LIST_HEAD(&sbi
->expiring_list
);
348 s
->s_blocksize
= 1024;
349 s
->s_blocksize_bits
= 10;
350 s
->s_magic
= AUTOFS_SUPER_MAGIC
;
351 s
->s_op
= &autofs4_sops
;
355 * Get the root inode and dentry, but defer checking for errors.
357 ino
= autofs4_mkroot(sbi
);
360 root_inode
= autofs4_get_inode(s
, ino
);
364 root
= d_alloc_root(root_inode
);
369 root
->d_op
= &autofs4_sb_dentry_operations
;
370 root
->d_fsdata
= ino
;
372 /* Can this call block? */
373 if (parse_options(data
, &pipefd
, &root_inode
->i_uid
, &root_inode
->i_gid
,
374 &sbi
->oz_pgrp
, &sbi
->type
, &sbi
->min_proto
,
376 printk("autofs: called with bogus options\n");
380 root_inode
->i_fop
= &autofs4_root_operations
;
381 root_inode
->i_op
= sbi
->type
& AUTOFS_TYPE_DIRECT
?
382 &autofs4_direct_root_inode_operations
:
383 &autofs4_indirect_root_inode_operations
;
385 /* Couldn't this be tested earlier? */
386 if (sbi
->max_proto
< AUTOFS_MIN_PROTO_VERSION
||
387 sbi
->min_proto
> AUTOFS_MAX_PROTO_VERSION
) {
388 printk("autofs: kernel does not match daemon version "
389 "daemon (%d, %d) kernel (%d, %d)\n",
390 sbi
->min_proto
, sbi
->max_proto
,
391 AUTOFS_MIN_PROTO_VERSION
, AUTOFS_MAX_PROTO_VERSION
);
395 /* Establish highest kernel protocol version */
396 if (sbi
->max_proto
> AUTOFS_MAX_PROTO_VERSION
)
397 sbi
->version
= AUTOFS_MAX_PROTO_VERSION
;
399 sbi
->version
= sbi
->max_proto
;
400 sbi
->sub_version
= AUTOFS_PROTO_SUBVERSION
;
402 DPRINTK("pipe fd = %d, pgrp = %u", pipefd
, sbi
->oz_pgrp
);
406 printk("autofs: could not open pipe file descriptor\n");
409 if (!pipe
->f_op
|| !pipe
->f_op
->write
)
412 sbi
->pipefd
= pipefd
;
416 * Success! Install the root dentry now to indicate completion.
422 * Failure ... clean up.
425 printk("autofs: pipe file descriptor does not contain proper ops\n");
432 printk("autofs: get root dentry failed\n");
443 struct inode
*autofs4_get_inode(struct super_block
*sb
,
444 struct autofs_info
*inf
)
446 struct inode
*inode
= new_inode(sb
);
452 inode
->i_mode
= inf
->mode
;
454 inode
->i_uid
= sb
->s_root
->d_inode
->i_uid
;
455 inode
->i_gid
= sb
->s_root
->d_inode
->i_gid
;
461 inode
->i_atime
= inode
->i_mtime
= inode
->i_ctime
= CURRENT_TIME
;
463 if (S_ISDIR(inf
->mode
)) {
465 inode
->i_op
= &autofs4_dir_inode_operations
;
466 inode
->i_fop
= &autofs4_dir_operations
;
467 } else if (S_ISLNK(inf
->mode
)) {
468 inode
->i_size
= inf
->size
;
469 inode
->i_op
= &autofs4_symlink_inode_operations
;