blob: bd3b65cde282a24769f7c549c9fe52c85b6c8e4e [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,
Al Viro00cd8dd2012-06-10 17:13:09 -040025 unsigned int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070026static int afs_mntpt_open(struct inode *inode, struct file *file);
David Howells08e0e7c2007-04-26 15:55:03 -070027static void afs_mntpt_expiry_timed_out(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080029const struct file_operations afs_mntpt_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 .open = afs_mntpt_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +020031 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -070032};
33
Arjan van de Ven754661f2007-02-12 00:55:38 -080034const struct inode_operations afs_mntpt_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 .lookup = afs_mntpt_lookup,
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 .readlink = page_readlink,
David Howells416351f2007-05-09 02:33:45 -070037 .getattr = afs_getattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070038};
39
wangleibec5eb62010-08-11 09:38:04 +010040const struct inode_operations afs_autocell_inode_operations = {
wangleibec5eb62010-08-11 09:38:04 +010041 .getattr = afs_getattr,
42};
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044static LIST_HEAD(afs_vfsmounts);
David Howells08e0e7c2007-04-26 15:55:03 -070045static DECLARE_DELAYED_WORK(afs_mntpt_expiry_timer, afs_mntpt_expiry_timed_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Adrian Bunkc1206a22007-10-16 23:26:41 -070047static unsigned long afs_mntpt_expiry_timeout = 10 * 60;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 * no valid lookup procedure on this sort of dir
51 */
52static struct dentry *afs_mntpt_lookup(struct inode *dir,
53 struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -040054 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055{
Al Viroa4555892014-10-21 20:11:25 -040056 _enter("%p,%p{%pd2}", dir, dentry, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 return ERR_PTR(-EREMOTE);
David Howellsec268152007-04-26 15:49:28 -070058}
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Linus Torvalds1da177e2005-04-16 15:20:36 -070060/*
61 * no valid open procedure on this sort of dir
62 */
63static int afs_mntpt_open(struct inode *inode, struct file *file)
64{
Al Viroa4555892014-10-21 20:11:25 -040065 _enter("%p,%p{%pD2}", inode, file, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 return -EREMOTE;
David Howellsec268152007-04-26 15:49:28 -070067}
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/*
70 * create a vfsmount to be automounted
71 */
72static struct vfsmount *afs_mntpt_do_automount(struct dentry *mntpt)
73{
74 struct afs_super_info *super;
75 struct vfsmount *mnt;
wangleibec5eb62010-08-11 09:38:04 +010076 struct afs_vnode *vnode;
David Howells083fd8b2010-04-21 12:01:23 +010077 struct page *page;
wangleibec5eb62010-08-11 09:38:04 +010078 char *devname, *options;
79 bool rwpath = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 int ret;
81
Al Viroa4555892014-10-21 20:11:25 -040082 _enter("{%pd}", mntpt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
David Howells2b0143b2015-03-17 22:25:59 +000084 BUG_ON(!d_inode(mntpt));
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 ret = -ENOMEM;
87 devname = (char *) get_zeroed_page(GFP_KERNEL);
88 if (!devname)
David Howells083fd8b2010-04-21 12:01:23 +010089 goto error_no_devname;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91 options = (char *) get_zeroed_page(GFP_KERNEL);
92 if (!options)
David Howells083fd8b2010-04-21 12:01:23 +010093 goto error_no_options;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
David Howells2b0143b2015-03-17 22:25:59 +000095 vnode = AFS_FS_I(d_inode(mntpt));
wangleibec5eb62010-08-11 09:38:04 +010096 if (test_bit(AFS_VNODE_PSEUDODIR, &vnode->flags)) {
97 /* if the directory is a pseudo directory, use the d_name */
98 static const char afs_root_cell[] = ":root.cell.";
99 unsigned size = mntpt->d_name.len;
100
101 ret = -ENOENT;
102 if (size < 2 || size > AFS_MAXCELLNAME)
103 goto error_no_page;
104
105 if (mntpt->d_name.name[0] == '.') {
106 devname[0] = '#';
107 memcpy(devname + 1, mntpt->d_name.name, size - 1);
108 memcpy(devname + size, afs_root_cell,
109 sizeof(afs_root_cell));
110 rwpath = true;
111 } else {
112 devname[0] = '%';
113 memcpy(devname + 1, mntpt->d_name.name, size);
114 memcpy(devname + size + 1, afs_root_cell,
115 sizeof(afs_root_cell));
116 }
117 } else {
118 /* read the contents of the AFS special symlink */
David Howells2b0143b2015-03-17 22:25:59 +0000119 loff_t size = i_size_read(d_inode(mntpt));
wangleibec5eb62010-08-11 09:38:04 +0100120 char *buf;
121
122 ret = -EINVAL;
123 if (size > PAGE_SIZE - 1)
124 goto error_no_page;
125
David Howells2b0143b2015-03-17 22:25:59 +0000126 page = read_mapping_page(d_inode(mntpt)->i_mapping, 0, NULL);
wangleibec5eb62010-08-11 09:38:04 +0100127 if (IS_ERR(page)) {
128 ret = PTR_ERR(page);
129 goto error_no_page;
130 }
131
132 ret = -EIO;
133 if (PageError(page))
134 goto error;
135
Cong Wangda4aa362011-11-25 23:14:26 +0800136 buf = kmap_atomic(page);
wangleibec5eb62010-08-11 09:38:04 +0100137 memcpy(devname, buf, size);
Cong Wangda4aa362011-11-25 23:14:26 +0800138 kunmap_atomic(buf);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300139 put_page(page);
wangleibec5eb62010-08-11 09:38:04 +0100140 page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 }
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 /* work out what options we want */
144 super = AFS_FS_S(mntpt->d_sb);
145 memcpy(options, "cell=", 5);
146 strcpy(options + 5, super->volume->cell->name);
wangleibec5eb62010-08-11 09:38:04 +0100147 if (super->volume->type == AFSVL_RWVOL || rwpath)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 strcat(options, ",rwpath");
149
150 /* try and do the mount */
David Howells08e0e7c2007-04-26 15:55:03 -0700151 _debug("--- attempting mount %s -o %s ---", devname, options);
Eric W. Biederman93faccbb2017-02-01 06:06:16 +1300152 mnt = vfs_submount(mntpt, &afs_fs_type, devname, options);
David Howells08e0e7c2007-04-26 15:55:03 -0700153 _debug("--- mount result %p ---", mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 free_page((unsigned long) devname);
156 free_page((unsigned long) options);
David Howells08e0e7c2007-04-26 15:55:03 -0700157 _leave(" = %p", mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 return mnt;
159
David Howellsec268152007-04-26 15:49:28 -0700160error:
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300161 put_page(page);
David Howells083fd8b2010-04-21 12:01:23 +0100162error_no_page:
163 free_page((unsigned long) options);
164error_no_options:
165 free_page((unsigned long) devname);
166error_no_devname:
David Howells08e0e7c2007-04-26 15:55:03 -0700167 _leave(" = %d", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return ERR_PTR(ret);
David Howellsec268152007-04-26 15:49:28 -0700169}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171/*
David Howellsd18610b2011-01-14 19:04:05 +0000172 * handle an automount point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 */
David Howellsd18610b2011-01-14 19:04:05 +0000174struct vfsmount *afs_d_automount(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
176 struct vfsmount *newmnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Al Viroa4555892014-10-21 20:11:25 -0400178 _enter("{%pd}", path->dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
David Howellsd18610b2011-01-14 19:04:05 +0000180 newmnt = afs_mntpt_do_automount(path->dentry);
181 if (IS_ERR(newmnt))
182 return newmnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
David Howellsea5b7782011-01-14 19:10:03 +0000184 mntget(newmnt); /* prevent immediate expiration */
185 mnt_set_expiry(newmnt, &afs_vfsmounts);
186 queue_delayed_work(afs_wq, &afs_mntpt_expiry_timer,
187 afs_mntpt_expiry_timeout * HZ);
Al Viro5ffc2832011-11-25 02:22:06 -0500188 _leave(" = %p", newmnt);
David Howellsea5b7782011-01-14 19:10:03 +0000189 return newmnt;
David Howellsec268152007-04-26 15:49:28 -0700190}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192/*
193 * handle mountpoint expiry timer going off
194 */
David Howells08e0e7c2007-04-26 15:55:03 -0700195static void afs_mntpt_expiry_timed_out(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
David Howells08e0e7c2007-04-26 15:55:03 -0700197 _enter("");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
David Howells08e0e7c2007-04-26 15:55:03 -0700199 if (!list_empty(&afs_vfsmounts)) {
200 mark_mounts_for_expiry(&afs_vfsmounts);
Tejun Heo0ad53ee2011-01-14 15:56:37 +0000201 queue_delayed_work(afs_wq, &afs_mntpt_expiry_timer,
202 afs_mntpt_expiry_timeout * HZ);
David Howells08e0e7c2007-04-26 15:55:03 -0700203 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
David Howells08e0e7c2007-04-26 15:55:03 -0700205 _leave("");
206}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
David Howells08e0e7c2007-04-26 15:55:03 -0700208/*
209 * kill the AFS mountpoint timer if it's still running
210 */
211void afs_mntpt_kill_timer(void)
212{
213 _enter("");
214
215 ASSERT(list_empty(&afs_vfsmounts));
Tejun Heo0ad53ee2011-01-14 15:56:37 +0000216 cancel_delayed_work_sync(&afs_mntpt_expiry_timer);
David Howells08e0e7c2007-04-26 15:55:03 -0700217}