blob: bbb2c210d139d9033e83e39f0c4778de83afc694 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
David Howellsec268152007-04-26 15:49:28 -07002/* mountpoint management
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7
8#include <linux/kernel.h>
9#include <linux/module.h>
10#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/fs.h>
12#include <linux/pagemap.h>
13#include <linux/mount.h>
14#include <linux/namei.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/gfp.h>
David Howells13fcc682018-11-01 23:07:27 +000016#include <linux/fs_context.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include "internal.h"
18
19
20static struct dentry *afs_mntpt_lookup(struct inode *dir,
21 struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -040022 unsigned int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070023static int afs_mntpt_open(struct inode *inode, struct file *file);
David Howells08e0e7c2007-04-26 15:55:03 -070024static void afs_mntpt_expiry_timed_out(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080026const struct file_operations afs_mntpt_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 .open = afs_mntpt_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +020028 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -070029};
30
Arjan van de Ven754661f2007-02-12 00:55:38 -080031const struct inode_operations afs_mntpt_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 .lookup = afs_mntpt_lookup,
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 .readlink = page_readlink,
David Howells416351f2007-05-09 02:33:45 -070034 .getattr = afs_getattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070035};
36
wangleibec5eb62010-08-11 09:38:04 +010037const struct inode_operations afs_autocell_inode_operations = {
wangleibec5eb62010-08-11 09:38:04 +010038 .getattr = afs_getattr,
39};
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041static LIST_HEAD(afs_vfsmounts);
David Howells08e0e7c2007-04-26 15:55:03 -070042static DECLARE_DELAYED_WORK(afs_mntpt_expiry_timer, afs_mntpt_expiry_timed_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Adrian Bunkc1206a22007-10-16 23:26:41 -070044static unsigned long afs_mntpt_expiry_timeout = 10 * 60;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
David Howellsc99c2172018-11-01 23:07:27 +000046static const char afs_root_volume[] = "root.cell";
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 * no valid lookup procedure on this sort of dir
50 */
51static struct dentry *afs_mntpt_lookup(struct inode *dir,
52 struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -040053 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
Al Viroa4555892014-10-21 20:11:25 -040055 _enter("%p,%p{%pd2}", dir, dentry, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 return ERR_PTR(-EREMOTE);
David Howellsec268152007-04-26 15:49:28 -070057}
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059/*
60 * no valid open procedure on this sort of dir
61 */
62static int afs_mntpt_open(struct inode *inode, struct file *file)
63{
Al Viroa4555892014-10-21 20:11:25 -040064 _enter("%p,%p{%pD2}", inode, file, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 return -EREMOTE;
David Howellsec268152007-04-26 15:49:28 -070066}
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Linus Torvalds1da177e2005-04-16 15:20:36 -070068/*
David Howellsc99c2172018-11-01 23:07:27 +000069 * Set the parameters for the proposed superblock.
70 */
71static int afs_mntpt_set_params(struct fs_context *fc, struct dentry *mntpt)
72{
73 struct afs_fs_context *ctx = fc->fs_private;
74 struct afs_super_info *src_as = AFS_FS_S(mntpt->d_sb);
75 struct afs_vnode *vnode = AFS_FS_I(d_inode(mntpt));
76 struct afs_cell *cell;
77 const char *p;
78 int ret;
79
80 if (fc->net_ns != src_as->net_ns) {
81 put_net(fc->net_ns);
82 fc->net_ns = get_net(src_as->net_ns);
83 }
84
85 if (src_as->volume && src_as->volume->type == AFSVL_RWVOL) {
86 ctx->type = AFSVL_RWVOL;
87 ctx->force = true;
88 }
89 if (ctx->cell) {
David Howellsdca54a72020-10-13 20:51:59 +010090 afs_unuse_cell(ctx->net, ctx->cell, afs_cell_trace_unuse_mntpt);
David Howellsc99c2172018-11-01 23:07:27 +000091 ctx->cell = NULL;
92 }
93 if (test_bit(AFS_VNODE_PSEUDODIR, &vnode->flags)) {
94 /* if the directory is a pseudo directory, use the d_name */
95 unsigned size = mntpt->d_name.len;
96
97 if (size < 2)
98 return -ENOENT;
99
100 p = mntpt->d_name.name;
101 if (mntpt->d_name.name[0] == '.') {
102 size--;
103 p++;
104 ctx->type = AFSVL_RWVOL;
105 ctx->force = true;
106 }
107 if (size > AFS_MAXCELLNAME)
108 return -ENAMETOOLONG;
109
110 cell = afs_lookup_cell(ctx->net, p, size, NULL, false);
111 if (IS_ERR(cell)) {
112 pr_err("kAFS: unable to lookup cell '%pd'\n", mntpt);
113 return PTR_ERR(cell);
114 }
115 ctx->cell = cell;
116
117 ctx->volname = afs_root_volume;
118 ctx->volnamesz = sizeof(afs_root_volume) - 1;
119 } else {
120 /* read the contents of the AFS special symlink */
121 struct page *page;
122 loff_t size = i_size_read(d_inode(mntpt));
123 char *buf;
124
125 if (src_as->cell)
David Howellsdca54a72020-10-13 20:51:59 +0100126 ctx->cell = afs_use_cell(src_as->cell, afs_cell_trace_use_mntpt);
David Howellsc99c2172018-11-01 23:07:27 +0000127
David Howells158d5832019-12-09 15:04:45 +0000128 if (size < 2 || size > PAGE_SIZE - 1)
David Howellsc99c2172018-11-01 23:07:27 +0000129 return -EINVAL;
130
131 page = read_mapping_page(d_inode(mntpt)->i_mapping, 0, NULL);
132 if (IS_ERR(page))
133 return PTR_ERR(page);
134
135 if (PageError(page)) {
136 ret = afs_bad(AFS_FS_I(d_inode(mntpt)), afs_file_error_mntpt);
137 put_page(page);
138 return ret;
139 }
140
141 buf = kmap(page);
David Howells158d5832019-12-09 15:04:45 +0000142 ret = -EINVAL;
143 if (buf[size - 1] == '.')
144 ret = vfs_parse_fs_string(fc, "source", buf, size - 1);
David Howellsc99c2172018-11-01 23:07:27 +0000145 kunmap(page);
146 put_page(page);
147 if (ret < 0)
148 return ret;
149 }
150
151 return 0;
152}
153
154/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 * create a vfsmount to be automounted
156 */
157static struct vfsmount *afs_mntpt_do_automount(struct dentry *mntpt)
158{
David Howellsc99c2172018-11-01 23:07:27 +0000159 struct fs_context *fc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 struct vfsmount *mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 int ret;
162
David Howells2b0143b2015-03-17 22:25:59 +0000163 BUG_ON(!d_inode(mntpt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
David Howellsc99c2172018-11-01 23:07:27 +0000165 fc = fs_context_for_submount(&afs_fs_type, mntpt);
166 if (IS_ERR(fc))
167 return ERR_CAST(fc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
David Howellsc99c2172018-11-01 23:07:27 +0000169 ret = afs_mntpt_set_params(fc, mntpt);
170 if (!ret)
171 mnt = fc_mount(fc);
172 else
173 mnt = ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
David Howellsc99c2172018-11-01 23:07:27 +0000175 put_fs_context(fc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 return mnt;
David Howellsec268152007-04-26 15:49:28 -0700177}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179/*
David Howellsd18610b2011-01-14 19:04:05 +0000180 * handle an automount point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 */
David Howellsd18610b2011-01-14 19:04:05 +0000182struct vfsmount *afs_d_automount(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
184 struct vfsmount *newmnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Al Viroa4555892014-10-21 20:11:25 -0400186 _enter("{%pd}", path->dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
David Howellsd18610b2011-01-14 19:04:05 +0000188 newmnt = afs_mntpt_do_automount(path->dentry);
189 if (IS_ERR(newmnt))
190 return newmnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
David Howellsea5b7782011-01-14 19:10:03 +0000192 mntget(newmnt); /* prevent immediate expiration */
193 mnt_set_expiry(newmnt, &afs_vfsmounts);
194 queue_delayed_work(afs_wq, &afs_mntpt_expiry_timer,
195 afs_mntpt_expiry_timeout * HZ);
Al Viro5ffc2832011-11-25 02:22:06 -0500196 _leave(" = %p", newmnt);
David Howellsea5b7782011-01-14 19:10:03 +0000197 return newmnt;
David Howellsec268152007-04-26 15:49:28 -0700198}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200/*
201 * handle mountpoint expiry timer going off
202 */
David Howells08e0e7c2007-04-26 15:55:03 -0700203static void afs_mntpt_expiry_timed_out(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
David Howells08e0e7c2007-04-26 15:55:03 -0700205 _enter("");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
David Howells08e0e7c2007-04-26 15:55:03 -0700207 if (!list_empty(&afs_vfsmounts)) {
208 mark_mounts_for_expiry(&afs_vfsmounts);
Tejun Heo0ad53ee2011-01-14 15:56:37 +0000209 queue_delayed_work(afs_wq, &afs_mntpt_expiry_timer,
210 afs_mntpt_expiry_timeout * HZ);
David Howells08e0e7c2007-04-26 15:55:03 -0700211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
David Howells08e0e7c2007-04-26 15:55:03 -0700213 _leave("");
214}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
David Howells08e0e7c2007-04-26 15:55:03 -0700216/*
217 * kill the AFS mountpoint timer if it's still running
218 */
219void afs_mntpt_kill_timer(void)
220{
221 _enter("");
222
223 ASSERT(list_empty(&afs_vfsmounts));
Tejun Heo0ad53ee2011-01-14 15:56:37 +0000224 cancel_delayed_work_sync(&afs_mntpt_expiry_timer);
David Howells08e0e7c2007-04-26 15:55:03 -0700225}