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>
15 #include <linux/slab.h>
17 #include <linux/pagemap.h>
18 #include <linux/mount.h>
19 #include <linux/namei.h>
20 #include <linux/mnt_namespace.h>
24 static struct dentry
*afs_mntpt_lookup(struct inode
*dir
,
25 struct dentry
*dentry
,
26 struct nameidata
*nd
);
27 static int afs_mntpt_open(struct inode
*inode
, struct file
*file
);
28 static void *afs_mntpt_follow_link(struct dentry
*dentry
, struct nameidata
*nd
);
29 static void afs_mntpt_expiry_timed_out(struct work_struct
*work
);
31 const struct file_operations afs_mntpt_file_operations
= {
32 .open
= afs_mntpt_open
,
35 const struct inode_operations afs_mntpt_inode_operations
= {
36 .lookup
= afs_mntpt_lookup
,
37 .follow_link
= afs_mntpt_follow_link
,
38 .readlink
= page_readlink
,
39 .getattr
= afs_inode_getattr
,
42 static LIST_HEAD(afs_vfsmounts
);
43 static DECLARE_DELAYED_WORK(afs_mntpt_expiry_timer
, afs_mntpt_expiry_timed_out
);
45 unsigned long afs_mntpt_expiry_timeout
= 10 * 60;
48 * check a symbolic link to see whether it actually encodes a mountpoint
49 * - sets the AFS_VNODE_MOUNTPOINT flag on the vnode appropriately
51 int afs_mntpt_check_symlink(struct afs_vnode
*vnode
, struct key
*key
)
61 _enter("{%u,%u}", vnode
->fid
.vnode
, vnode
->fid
.unique
);
63 /* read the contents of the symlink into the pagecache */
64 page
= read_mapping_page(AFS_VNODE_TO_I(vnode
)->i_mapping
, 0, &file
);
71 wait_on_page_locked(page
);
73 if (!PageUptodate(page
))
78 /* examine the symlink's contents */
79 size
= vnode
->status
.size
;
80 _debug("symlink to %*.*s", (int) size
, (int) size
, buf
);
83 (buf
[0] == '%' || buf
[0] == '#') &&
86 _debug("symlink is a mountpoint");
87 spin_lock(&vnode
->lock
);
88 set_bit(AFS_VNODE_MOUNTPOINT
, &vnode
->flags
);
89 spin_unlock(&vnode
->lock
);
96 page_cache_release(page
);
103 * no valid lookup procedure on this sort of dir
105 static struct dentry
*afs_mntpt_lookup(struct inode
*dir
,
106 struct dentry
*dentry
,
107 struct nameidata
*nd
)
109 _enter("%p,%p{%p{%s},%s}",
114 dentry
->d_parent
->d_name
.name
: (const unsigned char *) "",
115 dentry
->d_name
.name
);
117 return ERR_PTR(-EREMOTE
);
121 * no valid open procedure on this sort of dir
123 static int afs_mntpt_open(struct inode
*inode
, struct file
*file
)
125 _enter("%p,%p{%p{%s},%s}",
127 file
->f_path
.dentry
->d_parent
,
128 file
->f_path
.dentry
->d_parent
?
129 file
->f_path
.dentry
->d_parent
->d_name
.name
:
130 (const unsigned char *) "",
131 file
->f_path
.dentry
->d_name
.name
);
137 * create a vfsmount to be automounted
139 static struct vfsmount
*afs_mntpt_do_automount(struct dentry
*mntpt
)
141 struct afs_super_info
*super
;
142 struct vfsmount
*mnt
;
143 struct page
*page
= NULL
;
145 char *buf
, *devname
= NULL
, *options
= NULL
;
148 _enter("{%s}", mntpt
->d_name
.name
);
150 BUG_ON(!mntpt
->d_inode
);
153 size
= mntpt
->d_inode
->i_size
;
154 if (size
> PAGE_SIZE
- 1)
158 devname
= (char *) get_zeroed_page(GFP_KERNEL
);
162 options
= (char *) get_zeroed_page(GFP_KERNEL
);
166 /* read the contents of the AFS special symlink */
167 page
= read_mapping_page(mntpt
->d_inode
->i_mapping
, 0, NULL
);
174 wait_on_page_locked(page
);
175 if (!PageUptodate(page
) || PageError(page
))
179 memcpy(devname
, buf
, size
);
181 page_cache_release(page
);
184 /* work out what options we want */
185 super
= AFS_FS_S(mntpt
->d_sb
);
186 memcpy(options
, "cell=", 5);
187 strcpy(options
+ 5, super
->volume
->cell
->name
);
188 if (super
->volume
->type
== AFSVL_RWVOL
)
189 strcat(options
, ",rwpath");
191 /* try and do the mount */
192 _debug("--- attempting mount %s -o %s ---", devname
, options
);
193 mnt
= vfs_kern_mount(&afs_fs_type
, 0, devname
, options
);
194 _debug("--- mount result %p ---", mnt
);
196 free_page((unsigned long) devname
);
197 free_page((unsigned long) options
);
198 _leave(" = %p", mnt
);
203 page_cache_release(page
);
205 free_page((unsigned long) devname
);
207 free_page((unsigned long) options
);
208 _leave(" = %d", ret
);
213 * follow a link from a mountpoint directory, thus causing it to be mounted
215 static void *afs_mntpt_follow_link(struct dentry
*dentry
, struct nameidata
*nd
)
217 struct vfsmount
*newmnt
;
220 _enter("%p{%s},{%s:%p{%s},}",
223 nd
->mnt
->mnt_devname
,
225 nd
->dentry
->d_name
.name
);
228 nd
->dentry
= dget(dentry
);
230 newmnt
= afs_mntpt_do_automount(nd
->dentry
);
231 if (IS_ERR(newmnt
)) {
233 return (void *)newmnt
;
237 err
= do_add_mount(newmnt
, nd
, MNT_SHRINKABLE
, &afs_vfsmounts
);
243 nd
->dentry
= dget(newmnt
->mnt_root
);
244 schedule_delayed_work(&afs_mntpt_expiry_timer
,
245 afs_mntpt_expiry_timeout
* HZ
);
248 /* someone else made a mount here whilst we were busy */
249 while (d_mountpoint(nd
->dentry
) &&
250 follow_down(&nd
->mnt
, &nd
->dentry
))
258 _leave(" = %d", err
);
263 * handle mountpoint expiry timer going off
265 static void afs_mntpt_expiry_timed_out(struct work_struct
*work
)
269 if (!list_empty(&afs_vfsmounts
)) {
270 mark_mounts_for_expiry(&afs_vfsmounts
);
271 schedule_delayed_work(&afs_mntpt_expiry_timer
,
272 afs_mntpt_expiry_timeout
* HZ
);
279 * kill the AFS mountpoint timer if it's still running
281 void afs_mntpt_kill_timer(void)
285 ASSERT(list_empty(&afs_vfsmounts
));
286 cancel_delayed_work(&afs_mntpt_expiry_timer
);
287 flush_scheduled_work();
291 * begin unmount by attempting to remove all automounted mountpoints we added
293 void afs_umount_begin(struct vfsmount
*vfsmnt
, int flags
)
295 shrink_submounts(vfsmnt
, &afs_vfsmounts
);