blob: 6153417caf57e2b9219bbfdd40970c262b65fdcf [file] [log] [blame]
David Howellsec268152007-04-26 15:49:28 -07001/* mountpoint management
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
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.
10 */
11
12#include <linux/kernel.h>
13#include <linux/module.h>
14#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/fs.h>
16#include <linux/pagemap.h>
17#include <linux/mount.h>
18#include <linux/namei.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "internal.h"
21
22
23static struct dentry *afs_mntpt_lookup(struct inode *dir,
24 struct dentry *dentry,
25 struct nameidata *nd);
26static int afs_mntpt_open(struct inode *inode, struct file *file);
Al Viro008b1502005-08-20 00:17:39 +010027static void *afs_mntpt_follow_link(struct dentry *dentry, struct nameidata *nd);
David Howells08e0e7c2007-04-26 15:55:03 -070028static void afs_mntpt_expiry_timed_out(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080030const struct file_operations afs_mntpt_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 .open = afs_mntpt_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +020032 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -070033};
34
Arjan van de Ven754661f2007-02-12 00:55:38 -080035const struct inode_operations afs_mntpt_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 .lookup = afs_mntpt_lookup,
37 .follow_link = afs_mntpt_follow_link,
38 .readlink = page_readlink,
David Howells416351f2007-05-09 02:33:45 -070039 .getattr = afs_getattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070040};
41
wangleibec5eb62010-08-11 09:38:04 +010042const struct inode_operations afs_autocell_inode_operations = {
43 .follow_link = afs_mntpt_follow_link,
44 .getattr = afs_getattr,
45};
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047static LIST_HEAD(afs_vfsmounts);
David Howells08e0e7c2007-04-26 15:55:03 -070048static DECLARE_DELAYED_WORK(afs_mntpt_expiry_timer, afs_mntpt_expiry_timed_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Adrian Bunkc1206a22007-10-16 23:26:41 -070050static unsigned long afs_mntpt_expiry_timeout = 10 * 60;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052/*
53 * check a symbolic link to see whether it actually encodes a mountpoint
54 * - sets the AFS_VNODE_MOUNTPOINT flag on the vnode appropriately
55 */
David Howells00d3b7a2007-04-26 15:57:07 -070056int afs_mntpt_check_symlink(struct afs_vnode *vnode, struct key *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057{
58 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 size_t size;
60 char *buf;
61 int ret;
62
David Howells416351f2007-05-09 02:33:45 -070063 _enter("{%x:%u,%u}",
64 vnode->fid.vid, vnode->fid.vnode, vnode->fid.unique);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66 /* read the contents of the symlink into the pagecache */
Al Virof6d335c2010-05-21 15:27:09 +010067 page = read_cache_page(AFS_VNODE_TO_I(vnode)->i_mapping, 0,
68 afs_page_filler, key);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 if (IS_ERR(page)) {
70 ret = PTR_ERR(page);
71 goto out;
72 }
73
74 ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 if (PageError(page))
76 goto out_free;
77
Nick Piggin6fe69002007-05-06 14:49:04 -070078 buf = kmap(page);
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 /* examine the symlink's contents */
81 size = vnode->status.size;
David Howells08e0e7c2007-04-26 15:55:03 -070082 _debug("symlink to %*.*s", (int) size, (int) size, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84 if (size > 2 &&
85 (buf[0] == '%' || buf[0] == '#') &&
86 buf[size - 1] == '.'
87 ) {
88 _debug("symlink is a mountpoint");
89 spin_lock(&vnode->lock);
David Howells08e0e7c2007-04-26 15:55:03 -070090 set_bit(AFS_VNODE_MOUNTPOINT, &vnode->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 spin_unlock(&vnode->lock);
92 }
93
94 ret = 0;
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 kunmap(page);
Nick Piggin6fe69002007-05-06 14:49:04 -070097out_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 page_cache_release(page);
David Howellsec268152007-04-26 15:49:28 -070099out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 _leave(" = %d", ret);
101 return ret;
David Howellsec268152007-04-26 15:49:28 -0700102}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104/*
105 * no valid lookup procedure on this sort of dir
106 */
107static struct dentry *afs_mntpt_lookup(struct inode *dir,
108 struct dentry *dentry,
109 struct nameidata *nd)
110{
David Howells08e0e7c2007-04-26 15:55:03 -0700111 _enter("%p,%p{%p{%s},%s}",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 dir,
113 dentry,
114 dentry->d_parent,
115 dentry->d_parent ?
116 dentry->d_parent->d_name.name : (const unsigned char *) "",
117 dentry->d_name.name);
118
119 return ERR_PTR(-EREMOTE);
David Howellsec268152007-04-26 15:49:28 -0700120}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122/*
123 * no valid open procedure on this sort of dir
124 */
125static int afs_mntpt_open(struct inode *inode, struct file *file)
126{
David Howells08e0e7c2007-04-26 15:55:03 -0700127 _enter("%p,%p{%p{%s},%s}",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 inode, file,
Josef Sipek1d56a962006-12-08 02:36:50 -0800129 file->f_path.dentry->d_parent,
130 file->f_path.dentry->d_parent ?
131 file->f_path.dentry->d_parent->d_name.name :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 (const unsigned char *) "",
Josef Sipek1d56a962006-12-08 02:36:50 -0800133 file->f_path.dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135 return -EREMOTE;
David Howellsec268152007-04-26 15:49:28 -0700136}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138/*
139 * create a vfsmount to be automounted
140 */
141static struct vfsmount *afs_mntpt_do_automount(struct dentry *mntpt)
142{
143 struct afs_super_info *super;
144 struct vfsmount *mnt;
wangleibec5eb62010-08-11 09:38:04 +0100145 struct afs_vnode *vnode;
David Howells083fd8b2010-04-21 12:01:23 +0100146 struct page *page;
wangleibec5eb62010-08-11 09:38:04 +0100147 char *devname, *options;
148 bool rwpath = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 int ret;
150
David Howells08e0e7c2007-04-26 15:55:03 -0700151 _enter("{%s}", mntpt->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153 BUG_ON(!mntpt->d_inode);
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 ret = -ENOMEM;
156 devname = (char *) get_zeroed_page(GFP_KERNEL);
157 if (!devname)
David Howells083fd8b2010-04-21 12:01:23 +0100158 goto error_no_devname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 options = (char *) get_zeroed_page(GFP_KERNEL);
161 if (!options)
David Howells083fd8b2010-04-21 12:01:23 +0100162 goto error_no_options;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
wangleibec5eb62010-08-11 09:38:04 +0100164 vnode = AFS_FS_I(mntpt->d_inode);
165 if (test_bit(AFS_VNODE_PSEUDODIR, &vnode->flags)) {
166 /* if the directory is a pseudo directory, use the d_name */
167 static const char afs_root_cell[] = ":root.cell.";
168 unsigned size = mntpt->d_name.len;
169
170 ret = -ENOENT;
171 if (size < 2 || size > AFS_MAXCELLNAME)
172 goto error_no_page;
173
174 if (mntpt->d_name.name[0] == '.') {
175 devname[0] = '#';
176 memcpy(devname + 1, mntpt->d_name.name, size - 1);
177 memcpy(devname + size, afs_root_cell,
178 sizeof(afs_root_cell));
179 rwpath = true;
180 } else {
181 devname[0] = '%';
182 memcpy(devname + 1, mntpt->d_name.name, size);
183 memcpy(devname + size + 1, afs_root_cell,
184 sizeof(afs_root_cell));
185 }
186 } else {
187 /* read the contents of the AFS special symlink */
188 loff_t size = i_size_read(mntpt->d_inode);
189 char *buf;
190
191 ret = -EINVAL;
192 if (size > PAGE_SIZE - 1)
193 goto error_no_page;
194
195 page = read_mapping_page(mntpt->d_inode->i_mapping, 0, NULL);
196 if (IS_ERR(page)) {
197 ret = PTR_ERR(page);
198 goto error_no_page;
199 }
200
201 ret = -EIO;
202 if (PageError(page))
203 goto error;
204
205 buf = kmap_atomic(page, KM_USER0);
206 memcpy(devname, buf, size);
207 kunmap_atomic(buf, KM_USER0);
208 page_cache_release(page);
209 page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 }
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 /* work out what options we want */
213 super = AFS_FS_S(mntpt->d_sb);
214 memcpy(options, "cell=", 5);
215 strcpy(options + 5, super->volume->cell->name);
wangleibec5eb62010-08-11 09:38:04 +0100216 if (super->volume->type == AFSVL_RWVOL || rwpath)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 strcat(options, ",rwpath");
218
219 /* try and do the mount */
David Howells08e0e7c2007-04-26 15:55:03 -0700220 _debug("--- attempting mount %s -o %s ---", devname, options);
Trond Myklebust1f5ce9e2006-06-09 09:34:16 -0400221 mnt = vfs_kern_mount(&afs_fs_type, 0, devname, options);
David Howells08e0e7c2007-04-26 15:55:03 -0700222 _debug("--- mount result %p ---", mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224 free_page((unsigned long) devname);
225 free_page((unsigned long) options);
David Howells08e0e7c2007-04-26 15:55:03 -0700226 _leave(" = %p", mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return mnt;
228
David Howellsec268152007-04-26 15:49:28 -0700229error:
David Howells083fd8b2010-04-21 12:01:23 +0100230 page_cache_release(page);
231error_no_page:
232 free_page((unsigned long) options);
233error_no_options:
234 free_page((unsigned long) devname);
235error_no_devname:
David Howells08e0e7c2007-04-26 15:55:03 -0700236 _leave(" = %d", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return ERR_PTR(ret);
David Howellsec268152007-04-26 15:49:28 -0700238}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240/*
241 * follow a link from a mountpoint directory, thus causing it to be mounted
242 */
Al Viro008b1502005-08-20 00:17:39 +0100243static void *afs_mntpt_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
245 struct vfsmount *newmnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 int err;
247
David Howells00d3b7a2007-04-26 15:57:07 -0700248 _enter("%p{%s},{%s:%p{%s},}",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 dentry,
250 dentry->d_name.name,
Jan Blunck4ac91372008-02-14 19:34:32 -0800251 nd->path.mnt->mnt_devname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 dentry,
Jan Blunck4ac91372008-02-14 19:34:32 -0800253 nd->path.dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Jan Blunck4ac91372008-02-14 19:34:32 -0800255 dput(nd->path.dentry);
256 nd->path.dentry = dget(dentry);
David Howells08e0e7c2007-04-26 15:55:03 -0700257
Jan Blunck4ac91372008-02-14 19:34:32 -0800258 newmnt = afs_mntpt_do_automount(nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 if (IS_ERR(newmnt)) {
Jan Blunck1d957f92008-02-14 19:34:35 -0800260 path_put(&nd->path);
Al Viro008b1502005-08-20 00:17:39 +0100261 return (void *)newmnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 }
263
David Howells08e0e7c2007-04-26 15:55:03 -0700264 mntget(newmnt);
Al Viro8d66bf52008-08-01 09:05:54 -0400265 err = do_add_mount(newmnt, &nd->path, MNT_SHRINKABLE, &afs_vfsmounts);
David Howells08e0e7c2007-04-26 15:55:03 -0700266 switch (err) {
267 case 0:
Jan Blunck09da59162008-02-14 19:34:37 -0800268 path_put(&nd->path);
Jan Blunck4ac91372008-02-14 19:34:32 -0800269 nd->path.mnt = newmnt;
270 nd->path.dentry = dget(newmnt->mnt_root);
David Howells08e0e7c2007-04-26 15:55:03 -0700271 schedule_delayed_work(&afs_mntpt_expiry_timer,
272 afs_mntpt_expiry_timeout * HZ);
273 break;
274 case -EBUSY:
275 /* someone else made a mount here whilst we were busy */
Jan Blunck4ac91372008-02-14 19:34:32 -0800276 while (d_mountpoint(nd->path.dentry) &&
Al Viro9393bd02009-04-18 13:58:15 -0400277 follow_down(&nd->path))
David Howells08e0e7c2007-04-26 15:55:03 -0700278 ;
279 err = 0;
280 default:
281 mntput(newmnt);
282 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 }
284
David Howells08e0e7c2007-04-26 15:55:03 -0700285 _leave(" = %d", err);
Al Viro008b1502005-08-20 00:17:39 +0100286 return ERR_PTR(err);
David Howellsec268152007-04-26 15:49:28 -0700287}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289/*
290 * handle mountpoint expiry timer going off
291 */
David Howells08e0e7c2007-04-26 15:55:03 -0700292static void afs_mntpt_expiry_timed_out(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
David Howells08e0e7c2007-04-26 15:55:03 -0700294 _enter("");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
David Howells08e0e7c2007-04-26 15:55:03 -0700296 if (!list_empty(&afs_vfsmounts)) {
297 mark_mounts_for_expiry(&afs_vfsmounts);
298 schedule_delayed_work(&afs_mntpt_expiry_timer,
299 afs_mntpt_expiry_timeout * HZ);
300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
David Howells08e0e7c2007-04-26 15:55:03 -0700302 _leave("");
303}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
David Howells08e0e7c2007-04-26 15:55:03 -0700305/*
306 * kill the AFS mountpoint timer if it's still running
307 */
308void afs_mntpt_kill_timer(void)
309{
310 _enter("");
311
312 ASSERT(list_empty(&afs_vfsmounts));
313 cancel_delayed_work(&afs_mntpt_expiry_timer);
314 flush_scheduled_work();
315}