mntpt.c 6.7 KB
Newer Older
D
David Howells 已提交
1
/* mountpoint management
L
Linus Torvalds 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
 *
 * Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
 * Written by David Howells (dhowells@redhat.com)
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version
 * 2 of the License, or (at your option) any later version.
 */

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/fs.h>
#include <linux/pagemap.h>
#include <linux/mount.h>
#include <linux/namei.h>
20
#include <linux/mnt_namespace.h>
L
Linus Torvalds 已提交
21 22 23 24 25 26 27
#include "internal.h"


static struct dentry *afs_mntpt_lookup(struct inode *dir,
				       struct dentry *dentry,
				       struct nameidata *nd);
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);
L
Linus Torvalds 已提交
30

31
const struct file_operations afs_mntpt_file_operations = {
L
Linus Torvalds 已提交
32 33 34
	.open		= afs_mntpt_open,
};

35
const struct inode_operations afs_mntpt_inode_operations = {
L
Linus Torvalds 已提交
36 37 38 39 40 41 42
	.lookup		= afs_mntpt_lookup,
	.follow_link	= afs_mntpt_follow_link,
	.readlink	= page_readlink,
	.getattr	= afs_inode_getattr,
};

static LIST_HEAD(afs_vfsmounts);
43
static DECLARE_DELAYED_WORK(afs_mntpt_expiry_timer, afs_mntpt_expiry_timed_out);
L
Linus Torvalds 已提交
44

45
unsigned long afs_mntpt_expiry_timeout = 10 * 60;
L
Linus Torvalds 已提交
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60

/*
 * check a symbolic link to see whether it actually encodes a mountpoint
 * - sets the AFS_VNODE_MOUNTPOINT flag on the vnode appropriately
 */
int afs_mntpt_check_symlink(struct afs_vnode *vnode)
{
	struct page *page;
	size_t size;
	char *buf;
	int ret;

	_enter("{%u,%u}", vnode->fid.vnode, vnode->fid.unique);

	/* read the contents of the symlink into the pagecache */
61
	page = read_mapping_page(AFS_VNODE_TO_I(vnode)->i_mapping, 0, NULL);
L
Linus Torvalds 已提交
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
	if (IS_ERR(page)) {
		ret = PTR_ERR(page);
		goto out;
	}

	ret = -EIO;
	wait_on_page_locked(page);
	buf = kmap(page);
	if (!PageUptodate(page))
		goto out_free;
	if (PageError(page))
		goto out_free;

	/* examine the symlink's contents */
	size = vnode->status.size;
77
	_debug("symlink to %*.*s", (int) size, (int) size, buf);
L
Linus Torvalds 已提交
78 79 80 81 82 83 84

	if (size > 2 &&
	    (buf[0] == '%' || buf[0] == '#') &&
	    buf[size - 1] == '.'
	    ) {
		_debug("symlink is a mountpoint");
		spin_lock(&vnode->lock);
85
		set_bit(AFS_VNODE_MOUNTPOINT, &vnode->flags);
L
Linus Torvalds 已提交
86 87 88 89 90
		spin_unlock(&vnode->lock);
	}

	ret = 0;

D
David Howells 已提交
91
out_free:
L
Linus Torvalds 已提交
92 93
	kunmap(page);
	page_cache_release(page);
D
David Howells 已提交
94
out:
L
Linus Torvalds 已提交
95 96
	_leave(" = %d", ret);
	return ret;
D
David Howells 已提交
97
}
L
Linus Torvalds 已提交
98 99 100 101 102 103 104 105

/*
 * no valid lookup procedure on this sort of dir
 */
static struct dentry *afs_mntpt_lookup(struct inode *dir,
				       struct dentry *dentry,
				       struct nameidata *nd)
{
106
	_enter("%p,%p{%p{%s},%s}",
L
Linus Torvalds 已提交
107 108 109 110 111 112 113 114
	       dir,
	       dentry,
	       dentry->d_parent,
	       dentry->d_parent ?
	       dentry->d_parent->d_name.name : (const unsigned char *) "",
	       dentry->d_name.name);

	return ERR_PTR(-EREMOTE);
D
David Howells 已提交
115
}
L
Linus Torvalds 已提交
116 117 118 119 120 121

/*
 * no valid open procedure on this sort of dir
 */
static int afs_mntpt_open(struct inode *inode, struct file *file)
{
122
	_enter("%p,%p{%p{%s},%s}",
L
Linus Torvalds 已提交
123
	       inode, file,
J
Josef Sipek 已提交
124 125 126
	       file->f_path.dentry->d_parent,
	       file->f_path.dentry->d_parent ?
	       file->f_path.dentry->d_parent->d_name.name :
L
Linus Torvalds 已提交
127
	       (const unsigned char *) "",
J
Josef Sipek 已提交
128
	       file->f_path.dentry->d_name.name);
L
Linus Torvalds 已提交
129 130

	return -EREMOTE;
D
David Howells 已提交
131
}
L
Linus Torvalds 已提交
132 133 134 135 136 137 138 139 140 141 142 143 144

/*
 * create a vfsmount to be automounted
 */
static struct vfsmount *afs_mntpt_do_automount(struct dentry *mntpt)
{
	struct afs_super_info *super;
	struct vfsmount *mnt;
	struct page *page = NULL;
	size_t size;
	char *buf, *devname = NULL, *options = NULL;
	int ret;

145
	_enter("{%s}", mntpt->d_name.name);
L
Linus Torvalds 已提交
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163

	BUG_ON(!mntpt->d_inode);

	ret = -EINVAL;
	size = mntpt->d_inode->i_size;
	if (size > PAGE_SIZE - 1)
		goto error;

	ret = -ENOMEM;
	devname = (char *) get_zeroed_page(GFP_KERNEL);
	if (!devname)
		goto error;

	options = (char *) get_zeroed_page(GFP_KERNEL);
	if (!options)
		goto error;

	/* read the contents of the AFS special symlink */
164
	page = read_mapping_page(mntpt->d_inode->i_mapping, 0, NULL);
L
Linus Torvalds 已提交
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
	if (IS_ERR(page)) {
		ret = PTR_ERR(page);
		goto error;
	}

	ret = -EIO;
	wait_on_page_locked(page);
	if (!PageUptodate(page) || PageError(page))
		goto error;

	buf = kmap(page);
	memcpy(devname, buf, size);
	kunmap(page);
	page_cache_release(page);
	page = NULL;

	/* work out what options we want */
	super = AFS_FS_S(mntpt->d_sb);
	memcpy(options, "cell=", 5);
	strcpy(options + 5, super->volume->cell->name);
	if (super->volume->type == AFSVL_RWVOL)
		strcat(options, ",rwpath");

	/* try and do the mount */
189
	_debug("--- attempting mount %s -o %s ---", devname, options);
190
	mnt = vfs_kern_mount(&afs_fs_type, 0, devname, options);
191
	_debug("--- mount result %p ---", mnt);
L
Linus Torvalds 已提交
192 193 194

	free_page((unsigned long) devname);
	free_page((unsigned long) options);
195
	_leave(" = %p", mnt);
L
Linus Torvalds 已提交
196 197
	return mnt;

D
David Howells 已提交
198
error:
L
Linus Torvalds 已提交
199 200 201 202 203 204
	if (page)
		page_cache_release(page);
	if (devname)
		free_page((unsigned long) devname);
	if (options)
		free_page((unsigned long) options);
205
	_leave(" = %d", ret);
L
Linus Torvalds 已提交
206
	return ERR_PTR(ret);
D
David Howells 已提交
207
}
L
Linus Torvalds 已提交
208 209 210 211

/*
 * follow a link from a mountpoint directory, thus causing it to be mounted
 */
212
static void *afs_mntpt_follow_link(struct dentry *dentry, struct nameidata *nd)
L
Linus Torvalds 已提交
213 214 215 216
{
	struct vfsmount *newmnt;
	int err;

217
	_enter("%p{%s},{%s:%p{%s}}",
L
Linus Torvalds 已提交
218 219 220 221 222 223
	       dentry,
	       dentry->d_name.name,
	       nd->mnt->mnt_devname,
	       dentry,
	       nd->dentry->d_name.name);

224 225 226 227
	dput(nd->dentry);
	nd->dentry = dget(dentry);

	newmnt = afs_mntpt_do_automount(nd->dentry);
L
Linus Torvalds 已提交
228 229
	if (IS_ERR(newmnt)) {
		path_release(nd);
230
		return (void *)newmnt;
L
Linus Torvalds 已提交
231 232
	}

233 234 235 236 237
	mntget(newmnt);
	err = do_add_mount(newmnt, nd, MNT_SHRINKABLE, &afs_vfsmounts);
	switch (err) {
	case 0:
		path_release(nd);
L
Linus Torvalds 已提交
238
		nd->mnt = newmnt;
239 240 241 242 243 244 245 246 247 248 249 250 251
		nd->dentry = dget(newmnt->mnt_root);
		schedule_delayed_work(&afs_mntpt_expiry_timer,
				      afs_mntpt_expiry_timeout * HZ);
		break;
	case -EBUSY:
		/* someone else made a mount here whilst we were busy */
		while (d_mountpoint(nd->dentry) &&
		       follow_down(&nd->mnt, &nd->dentry))
			;
		err = 0;
	default:
		mntput(newmnt);
		break;
L
Linus Torvalds 已提交
252 253
	}

254
	_leave(" = %d", err);
255
	return ERR_PTR(err);
D
David Howells 已提交
256
}
L
Linus Torvalds 已提交
257 258 259 260

/*
 * handle mountpoint expiry timer going off
 */
261
static void afs_mntpt_expiry_timed_out(struct work_struct *work)
L
Linus Torvalds 已提交
262
{
263 264 265 266 267 268 269 270 271 272
	_enter("");

	if (!list_empty(&afs_vfsmounts)) {
		mark_mounts_for_expiry(&afs_vfsmounts);
		schedule_delayed_work(&afs_mntpt_expiry_timer,
				      afs_mntpt_expiry_timeout * HZ);
	}

	_leave("");
}
L
Linus Torvalds 已提交
273

274 275 276 277 278 279
/*
 * kill the AFS mountpoint timer if it's still running
 */
void afs_mntpt_kill_timer(void)
{
	_enter("");
L
Linus Torvalds 已提交
280

281 282 283 284
	ASSERT(list_empty(&afs_vfsmounts));
	cancel_delayed_work(&afs_mntpt_expiry_timer);
	flush_scheduled_work();
}
L
Linus Torvalds 已提交
285

286 287 288 289 290 291
/*
 * begin unmount by attempting to remove all automounted mountpoints we added
 */
void afs_umount_begin(struct vfsmount *vfsmnt, int flags)
{
	shrink_submounts(vfsmnt, &afs_vfsmounts);
D
David Howells 已提交
292
}