nfs4namespace.c 6.2 KB
Newer Older
D
David Howells 已提交
1 2 3 4
/*
 * linux/fs/nfs/nfs4namespace.c
 *
 * Copyright (C) 2005 Trond Myklebust <Trond.Myklebust@netapp.com>
5
 * - Modified by David Howells <dhowells@redhat.com>
D
David Howells 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18
 *
 * NFSv4 namespace
 */

#include <linux/dcache.h>
#include <linux/mount.h>
#include <linux/namei.h>
#include <linux/nfs_fs.h>
#include <linux/string.h>
#include <linux/sunrpc/clnt.h>
#include <linux/vfs.h>
#include <linux/inet.h>
#include "internal.h"
19
#include "nfs4_fs.h"
D
David Howells 已提交
20 21 22 23

#define NFSDBG_FACILITY		NFSDBG_VFS

/*
24 25 26
 * Convert the NFSv4 pathname components into a standard posix path.
 *
 * Note that the resulting string will be placed at the end of the buffer
D
David Howells 已提交
27
 */
D
David Howells 已提交
28
static inline char *nfs4_pathname_string(const struct nfs4_pathname *pathname,
D
David Howells 已提交
29 30 31 32 33 34 35 36 37 38
					 char *buffer, ssize_t buflen)
{
	char *end = buffer + buflen;
	int n;

	*--end = '\0';
	buflen--;

	n = pathname->ncomponents;
	while (--n >= 0) {
D
David Howells 已提交
39
		const struct nfs4_string *component = &pathname->components[n];
D
David Howells 已提交
40 41 42 43 44 45 46 47 48 49 50 51
		buflen -= component->len + 1;
		if (buflen < 0)
			goto Elong;
		end -= component->len;
		memcpy(end, component->data, component->len);
		*--end = '/';
	}
	return end;
Elong:
	return ERR_PTR(-ENAMETOOLONG);
}

52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
/*
 * Determine the mount path as a string
 */
static char *nfs4_path(const struct vfsmount *mnt_parent,
		       const struct dentry *dentry,
		       char *buffer, ssize_t buflen)
{
	const char *srvpath;

	srvpath = strchr(mnt_parent->mnt_devname, ':');
	if (srvpath)
		srvpath++;
	else
		srvpath = mnt_parent->mnt_devname;

	return nfs_path(srvpath, mnt_parent->mnt_root, dentry, buffer, buflen);
}

/*
 * Check that fs_locations::fs_root [RFC3530 6.3] is a prefix for what we
 * believe to be the server path to this dentry
 */
static int nfs4_validate_fspath(const struct vfsmount *mnt_parent,
				const struct dentry *dentry,
				const struct nfs4_fs_locations *locations,
				char *page, char *page2)
{
	const char *path, *fs_path;

	path = nfs4_path(mnt_parent, dentry, page, PAGE_SIZE);
	if (IS_ERR(path))
		return PTR_ERR(path);

	fs_path = nfs4_pathname_string(&locations->fs_path, page2, PAGE_SIZE);
	if (IS_ERR(fs_path))
		return PTR_ERR(fs_path);

	if (strncmp(path, fs_path, strlen(fs_path)) != 0) {
		dprintk("%s: path %s does not begin with fsroot %s\n",
91
			__func__, path, fs_path);
92 93 94 95 96 97
		return -ENOENT;
	}

	return 0;
}

98 99 100 101 102 103
static struct vfsmount *try_location(struct nfs_clone_mount *mountdata,
				     char *page, char *page2,
				     const struct nfs4_fs_location *location)
{
	struct vfsmount *mnt = ERR_PTR(-ENOENT);
	char *mnt_path;
104
	unsigned int maxbuflen;
105
	unsigned int s;
106 107 108 109 110

	mnt_path = nfs4_pathname_string(&location->rootpath, page2, PAGE_SIZE);
	if (IS_ERR(mnt_path))
		return mnt;
	mountdata->mnt_path = mnt_path;
111
	maxbuflen = mnt_path - 1 - page2;
112

113
	for (s = 0; s < location->nservers; s++) {
114 115
		const struct nfs4_string *buf = &location->servers[s];
		struct sockaddr_storage addr;
116

117
		if (buf->len <= 0 || buf->len >= maxbuflen)
118 119 120
			continue;

		mountdata->addr = (struct sockaddr *)&addr;
121 122 123 124 125 126 127 128 129

		if (memchr(buf->data, IPV6_SCOPE_DELIMITER, buf->len))
			continue;
		nfs_parse_ip_address(buf->data, buf->len,
				mountdata->addr, &mountdata->addrlen);
		if (mountdata->addr->sa_family == AF_UNSPEC)
			continue;
		nfs_set_port(mountdata->addr, NFS_PORT);

130 131
		memcpy(page2, buf->data, buf->len);
		page2[buf->len] = '\0';
132
		mountdata->hostname = page2;
133 134 135 136 137 138 139 140 141 142 143 144

		snprintf(page, PAGE_SIZE, "%s:%s",
				mountdata->hostname,
				mountdata->mnt_path);

		mnt = vfs_kern_mount(&nfs4_referral_fs_type, 0, page, mountdata);
		if (!IS_ERR(mnt))
			break;
	}
	return mnt;
}

D
David Howells 已提交
145 146 147 148
/**
 * nfs_follow_referral - set up mountpoint when hitting a referral on moved error
 * @mnt_parent - mountpoint of parent directory
 * @dentry - parent directory
149
 * @locations - array of NFSv4 server location information
D
David Howells 已提交
150 151 152 153
 *
 */
static struct vfsmount *nfs_follow_referral(const struct vfsmount *mnt_parent,
					    const struct dentry *dentry,
D
David Howells 已提交
154
					    const struct nfs4_fs_locations *locations)
D
David Howells 已提交
155 156 157 158 159 160 161
{
	struct vfsmount *mnt = ERR_PTR(-ENOENT);
	struct nfs_clone_mount mountdata = {
		.sb = mnt_parent->mnt_sb,
		.dentry = dentry,
		.authflavor = NFS_SB(mnt_parent->mnt_sb)->client->cl_auth->au_flavor,
	};
162
	char *page = NULL, *page2 = NULL;
163
	int loc, error;
D
David Howells 已提交
164 165 166 167

	if (locations == NULL || locations->nlocations <= 0)
		goto out;

168
	dprintk("%s: referral at %s/%s\n", __func__,
D
David Howells 已提交
169 170 171
		dentry->d_parent->d_name.name, dentry->d_name.name);

	page = (char *) __get_free_page(GFP_USER);
172
	if (!page)
D
David Howells 已提交
173
		goto out;
174

D
David Howells 已提交
175
	page2 = (char *) __get_free_page(GFP_USER);
176
	if (!page2)
D
David Howells 已提交
177 178
		goto out;

179 180 181 182 183
	/* Ensure fs path is a prefix of current dentry path */
	error = nfs4_validate_fspath(mnt_parent, dentry, locations, page, page2);
	if (error < 0) {
		mnt = ERR_PTR(error);
		goto out;
D
David Howells 已提交
184 185
	}

186
	for (loc = 0; loc < locations->nlocations; loc++) {
D
David Howells 已提交
187
		const struct nfs4_fs_location *location = &locations->locations[loc];
D
David Howells 已提交
188 189

		if (location == NULL || location->nservers <= 0 ||
190
		    location->rootpath.ncomponents == 0)
D
David Howells 已提交
191 192
			continue;

193 194 195
		mnt = try_location(&mountdata, page, page2, location);
		if (!IS_ERR(mnt))
			break;
D
David Howells 已提交
196 197 198
	}

out:
199 200
	free_page((unsigned long) page);
	free_page((unsigned long) page2);
201
	dprintk("%s: done\n", __func__);
D
David Howells 已提交
202 203 204 205 206 207 208 209 210 211 212
	return mnt;
}

/*
 * nfs_do_refmount - handle crossing a referral on server
 * @dentry - dentry of referral
 * @nd - nameidata info
 *
 */
struct vfsmount *nfs_do_refmount(const struct vfsmount *mnt_parent, struct dentry *dentry)
{
213
	struct vfsmount *mnt = ERR_PTR(-ENOMEM);
D
David Howells 已提交
214 215 216 217 218 219
	struct dentry *parent;
	struct nfs4_fs_locations *fs_locations = NULL;
	struct page *page;
	int err;

	/* BUG_ON(IS_ROOT(dentry)); */
220
	dprintk("%s: enter\n", __func__);
D
David Howells 已提交
221 222 223 224 225 226 227 228 229 230

	page = alloc_page(GFP_KERNEL);
	if (page == NULL)
		goto out;

	fs_locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
	if (fs_locations == NULL)
		goto out_free;

	/* Get locations */
231 232
	mnt = ERR_PTR(-ENOENT);

D
David Howells 已提交
233
	parent = dget_parent(dentry);
234
	dprintk("%s: getting locations for %s/%s\n",
235
		__func__, parent->d_name.name, dentry->d_name.name);
236

237
	err = nfs4_proc_fs_locations(parent->d_inode, &dentry->d_name, fs_locations, page);
D
David Howells 已提交
238
	dput(parent);
239 240
	if (err != 0 ||
	    fs_locations->nlocations <= 0 ||
D
David Howells 已提交
241 242 243 244 245 246 247 248
	    fs_locations->fs_path.ncomponents <= 0)
		goto out_free;

	mnt = nfs_follow_referral(mnt_parent, dentry, fs_locations);
out_free:
	__free_page(page);
	kfree(fs_locations);
out:
249
	dprintk("%s: done\n", __func__);
D
David Howells 已提交
250 251
	return mnt;
}