1 /* mountpoint management
3 * Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
12 #include <linux/kernel.h>
13 #include <linux/module.h>
14 #include <linux/init.h>
16 #include <linux/pagemap.h>
17 #include <linux/mount.h>
18 #include <linux/namei.h>
19 #include <linux/gfp.h>
23 static struct dentry
*afs_mntpt_lookup(struct inode
*dir
,
24 struct dentry
*dentry
,
26 static int afs_mntpt_open(struct inode
*inode
, struct file
*file
);
27 static void afs_mntpt_expiry_timed_out(struct work_struct
*work
);
29 const struct file_operations afs_mntpt_file_operations
= {
30 .open
= afs_mntpt_open
,
31 .llseek
= noop_llseek
,
34 const struct inode_operations afs_mntpt_inode_operations
= {
35 .lookup
= afs_mntpt_lookup
,
36 .readlink
= page_readlink
,
37 .getattr
= afs_getattr
,
38 .listxattr
= afs_listxattr
,
41 const struct inode_operations afs_autocell_inode_operations
= {
42 .getattr
= afs_getattr
,
45 static LIST_HEAD(afs_vfsmounts
);
46 static DECLARE_DELAYED_WORK(afs_mntpt_expiry_timer
, afs_mntpt_expiry_timed_out
);
48 static unsigned long afs_mntpt_expiry_timeout
= 10 * 60;
51 * no valid lookup procedure on this sort of dir
53 static struct dentry
*afs_mntpt_lookup(struct inode
*dir
,
54 struct dentry
*dentry
,
57 _enter("%p,%p{%pd2}", dir
, dentry
, dentry
);
58 return ERR_PTR(-EREMOTE
);
62 * no valid open procedure on this sort of dir
64 static int afs_mntpt_open(struct inode
*inode
, struct file
*file
)
66 _enter("%p,%p{%pD2}", inode
, file
, file
);
71 * create a vfsmount to be automounted
73 static struct vfsmount
*afs_mntpt_do_automount(struct dentry
*mntpt
)
75 struct afs_super_info
*as
;
77 struct afs_vnode
*vnode
;
79 char *devname
, *options
;
83 _enter("{%pd}", mntpt
);
85 BUG_ON(!d_inode(mntpt
));
88 devname
= (char *) get_zeroed_page(GFP_KERNEL
);
90 goto error_no_devname
;
92 options
= (char *) get_zeroed_page(GFP_KERNEL
);
94 goto error_no_options
;
96 vnode
= AFS_FS_I(d_inode(mntpt
));
97 if (test_bit(AFS_VNODE_PSEUDODIR
, &vnode
->flags
)) {
98 /* if the directory is a pseudo directory, use the d_name */
99 static const char afs_root_cell
[] = ":root.cell.";
100 unsigned size
= mntpt
->d_name
.len
;
103 if (size
< 2 || size
> AFS_MAXCELLNAME
)
106 if (mntpt
->d_name
.name
[0] == '.') {
108 memcpy(devname
+ 1, mntpt
->d_name
.name
+ 1, size
- 1);
109 memcpy(devname
+ size
, afs_root_cell
,
110 sizeof(afs_root_cell
));
114 memcpy(devname
+ 1, mntpt
->d_name
.name
, size
);
115 memcpy(devname
+ size
+ 1, afs_root_cell
,
116 sizeof(afs_root_cell
));
119 /* read the contents of the AFS special symlink */
120 loff_t size
= i_size_read(d_inode(mntpt
));
124 if (size
> PAGE_SIZE
- 1)
127 page
= read_mapping_page(d_inode(mntpt
)->i_mapping
, 0, NULL
);
133 if (PageError(page
)) {
134 ret
= afs_bad(AFS_FS_I(d_inode(mntpt
)), afs_file_error_mntpt
);
138 buf
= kmap_atomic(page
);
139 memcpy(devname
, buf
, size
);
145 /* work out what options we want */
146 as
= AFS_FS_S(mntpt
->d_sb
);
148 memcpy(options
, "cell=", 5);
149 strcpy(options
+ 5, as
->cell
->name
);
150 if ((as
->volume
&& as
->volume
->type
== AFSVL_RWVOL
) || rwpath
)
151 strcat(options
, ",rwpath");
154 /* try and do the mount */
155 _debug("--- attempting mount %s -o %s ---", devname
, options
);
156 mnt
= vfs_submount(mntpt
, &afs_fs_type
, devname
, options
);
157 _debug("--- mount result %p ---", mnt
);
159 free_page((unsigned long) devname
);
160 free_page((unsigned long) options
);
161 _leave(" = %p", mnt
);
167 free_page((unsigned long) options
);
169 free_page((unsigned long) devname
);
171 _leave(" = %d", ret
);
176 * handle an automount point
178 struct vfsmount
*afs_d_automount(struct path
*path
)
180 struct vfsmount
*newmnt
;
182 _enter("{%pd}", path
->dentry
);
184 newmnt
= afs_mntpt_do_automount(path
->dentry
);
188 mntget(newmnt
); /* prevent immediate expiration */
189 mnt_set_expiry(newmnt
, &afs_vfsmounts
);
190 queue_delayed_work(afs_wq
, &afs_mntpt_expiry_timer
,
191 afs_mntpt_expiry_timeout
* HZ
);
192 _leave(" = %p", newmnt
);
197 * handle mountpoint expiry timer going off
199 static void afs_mntpt_expiry_timed_out(struct work_struct
*work
)
203 if (!list_empty(&afs_vfsmounts
)) {
204 mark_mounts_for_expiry(&afs_vfsmounts
);
205 queue_delayed_work(afs_wq
, &afs_mntpt_expiry_timer
,
206 afs_mntpt_expiry_timeout
* HZ
);
213 * kill the AFS mountpoint timer if it's still running
215 void afs_mntpt_kill_timer(void)
219 ASSERT(list_empty(&afs_vfsmounts
));
220 cancel_delayed_work_sync(&afs_mntpt_expiry_timer
);