nfs4namespace.c 7.0 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
 *
 * NFSv4 namespace
 */

#include <linux/dcache.h>
#include <linux/mount.h>
#include <linux/namei.h>
#include <linux/nfs_fs.h>
14
#include <linux/slab.h>
D
David Howells 已提交
15 16 17 18 19
#include <linux/string.h>
#include <linux/sunrpc/clnt.h>
#include <linux/vfs.h>
#include <linux/inet.h>
#include "internal.h"
20
#include "nfs4_fs.h"
21
#include "dns_resolve.h"
D
David Howells 已提交
22 23 24 25

#define NFSDBG_FACILITY		NFSDBG_VFS

/*
26 27 28
 * 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 已提交
29
 */
D
David Howells 已提交
30
static inline char *nfs4_pathname_string(const struct nfs4_pathname *pathname,
D
David Howells 已提交
31 32 33 34 35 36 37 38 39 40
					 char *buffer, ssize_t buflen)
{
	char *end = buffer + buflen;
	int n;

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

	n = pathname->ncomponents;
	while (--n >= 0) {
D
David Howells 已提交
41
		const struct nfs4_string *component = &pathname->components[n];
D
David Howells 已提交
42 43 44 45 46 47 48 49 50 51 52 53
		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);
}

54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
/*
 * return the path component of "<server>:<path>"
 *  nfspath - the "<server>:<path>" string
 *  end - one past the last char that could contain "<server>:"
 * returns NULL on failure
 */
static char *nfs_path_component(const char *nfspath, const char *end)
{
	char *p;

	if (*nfspath == '[') {
		/* parse [] escaped IPv6 addrs */
		p = strchr(nfspath, ']');
		if (p != NULL && ++p < end && *p == ':')
			return p + 1;
	} else {
		/* otherwise split on first colon */
		p = strchr(nfspath, ':');
		if (p != NULL && p < end)
			return p + 1;
	}
	return NULL;
}

78 79 80
/*
 * Determine the mount path as a string
 */
81
static char *nfs4_path(struct dentry *dentry, char *buffer, ssize_t buflen)
82
{
83 84 85
	char *limit;
	char *path = nfs_path(&limit, dentry, buffer, buflen);
	if (!IS_ERR(path)) {
86 87 88
		char *path_component = nfs_path_component(path, limit);
		if (path_component)
			return path_component;
89 90
	}
	return path;
91 92 93 94 95 96
}

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

103
	path = nfs4_path(dentry, page, PAGE_SIZE);
104 105 106 107 108 109 110 111 112
	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",
113
			__func__, path, fs_path);
114 115 116 117 118 119
		return -ENOENT;
	}

	return 0;
}

120
static size_t nfs_parse_server_name(char *string, size_t len,
121
		struct sockaddr *sa, size_t salen, struct nfs_server *server)
122
{
123
	struct net *net = rpc_net_ns(server->client);
124 125
	ssize_t ret;

126
	ret = rpc_pton(net, string, len, sa, salen);
127
	if (ret == 0) {
128
		ret = nfs_dns_resolve_name(net, string, len, sa, salen);
129 130 131 132 133 134
		if (ret < 0)
			ret = 0;
	}
	return ret;
}

135 136 137 138
static struct vfsmount *try_location(struct nfs_clone_mount *mountdata,
				     char *page, char *page2,
				     const struct nfs4_fs_location *location)
{
139
	const size_t addr_bufsize = sizeof(struct sockaddr_storage);
140 141
	struct vfsmount *mnt = ERR_PTR(-ENOENT);
	char *mnt_path;
142
	unsigned int maxbuflen;
143
	unsigned int s;
144 145 146

	mnt_path = nfs4_pathname_string(&location->rootpath, page2, PAGE_SIZE);
	if (IS_ERR(mnt_path))
147
		return ERR_CAST(mnt_path);
148
	mountdata->mnt_path = mnt_path;
149
	maxbuflen = mnt_path - 1 - page2;
150

151 152 153 154
	mountdata->addr = kmalloc(addr_bufsize, GFP_KERNEL);
	if (mountdata->addr == NULL)
		return ERR_PTR(-ENOMEM);

155
	for (s = 0; s < location->nservers; s++) {
156
		const struct nfs4_string *buf = &location->servers[s];
157

158
		if (buf->len <= 0 || buf->len >= maxbuflen)
159 160
			continue;

161 162
		if (memchr(buf->data, IPV6_SCOPE_DELIMITER, buf->len))
			continue;
163 164

		mountdata->addrlen = nfs_parse_server_name(buf->data, buf->len,
165 166
				mountdata->addr, addr_bufsize,
				NFS_SB(mountdata->sb));
167
		if (mountdata->addrlen == 0)
168
			continue;
169

170
		rpc_set_port(mountdata->addr, NFS_PORT);
171

172 173
		memcpy(page2, buf->data, buf->len);
		page2[buf->len] = '\0';
174
		mountdata->hostname = page2;
175 176 177 178 179 180 181 182 183

		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;
	}
184
	kfree(mountdata->addr);
185 186 187
	return mnt;
}

D
David Howells 已提交
188 189 190
/**
 * nfs_follow_referral - set up mountpoint when hitting a referral on moved error
 * @dentry - parent directory
191
 * @locations - array of NFSv4 server location information
D
David Howells 已提交
192 193
 *
 */
194
static struct vfsmount *nfs_follow_referral(struct dentry *dentry,
D
David Howells 已提交
195
					    const struct nfs4_fs_locations *locations)
D
David Howells 已提交
196 197 198
{
	struct vfsmount *mnt = ERR_PTR(-ENOENT);
	struct nfs_clone_mount mountdata = {
199
		.sb = dentry->d_sb,
D
David Howells 已提交
200
		.dentry = dentry,
201
		.authflavor = NFS_SB(dentry->d_sb)->client->cl_auth->au_flavor,
D
David Howells 已提交
202
	};
203
	char *page = NULL, *page2 = NULL;
204
	int loc, error;
D
David Howells 已提交
205 206 207 208

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

209
	dprintk("%s: referral at %s/%s\n", __func__,
D
David Howells 已提交
210 211 212
		dentry->d_parent->d_name.name, dentry->d_name.name);

	page = (char *) __get_free_page(GFP_USER);
213
	if (!page)
D
David Howells 已提交
214
		goto out;
215

D
David Howells 已提交
216
	page2 = (char *) __get_free_page(GFP_USER);
217
	if (!page2)
D
David Howells 已提交
218 219
		goto out;

220
	/* Ensure fs path is a prefix of current dentry path */
221
	error = nfs4_validate_fspath(dentry, locations, page, page2);
222 223 224
	if (error < 0) {
		mnt = ERR_PTR(error);
		goto out;
D
David Howells 已提交
225 226
	}

227
	for (loc = 0; loc < locations->nlocations; loc++) {
D
David Howells 已提交
228
		const struct nfs4_fs_location *location = &locations->locations[loc];
D
David Howells 已提交
229 230

		if (location == NULL || location->nservers <= 0 ||
231
		    location->rootpath.ncomponents == 0)
D
David Howells 已提交
232 233
			continue;

234 235 236
		mnt = try_location(&mountdata, page, page2, location);
		if (!IS_ERR(mnt))
			break;
D
David Howells 已提交
237 238 239
	}

out:
240 241
	free_page((unsigned long) page);
	free_page((unsigned long) page2);
242
	dprintk("%s: done\n", __func__);
D
David Howells 已提交
243 244 245 246 247 248 249 250
	return mnt;
}

/*
 * nfs_do_refmount - handle crossing a referral on server
 * @dentry - dentry of referral
 *
 */
251
struct vfsmount *nfs_do_refmount(struct dentry *dentry)
D
David Howells 已提交
252
{
253
	struct vfsmount *mnt = ERR_PTR(-ENOMEM);
D
David Howells 已提交
254 255 256 257 258 259
	struct dentry *parent;
	struct nfs4_fs_locations *fs_locations = NULL;
	struct page *page;
	int err;

	/* BUG_ON(IS_ROOT(dentry)); */
260
	dprintk("%s: enter\n", __func__);
D
David Howells 已提交
261 262 263 264 265 266 267 268 269 270

	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 */
271 272
	mnt = ERR_PTR(-ENOENT);

D
David Howells 已提交
273
	parent = dget_parent(dentry);
274
	dprintk("%s: getting locations for %s/%s\n",
275
		__func__, parent->d_name.name, dentry->d_name.name);
276

277
	err = nfs4_proc_fs_locations(parent->d_inode, &dentry->d_name, fs_locations, page);
D
David Howells 已提交
278
	dput(parent);
279 280
	if (err != 0 ||
	    fs_locations->nlocations <= 0 ||
D
David Howells 已提交
281 282 283
	    fs_locations->fs_path.ncomponents <= 0)
		goto out_free;

284
	mnt = nfs_follow_referral(dentry, fs_locations);
D
David Howells 已提交
285 286 287 288
out_free:
	__free_page(page);
	kfree(fs_locations);
out:
289
	dprintk("%s: done\n", __func__);
D
David Howells 已提交
290 291
	return mnt;
}