nfs4namespace.c 9.8 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/nfs_mount.h>
15
#include <linux/slab.h>
D
David Howells 已提交
16 17
#include <linux/string.h>
#include <linux/sunrpc/clnt.h>
18
#include <linux/sunrpc/addr.h>
D
David Howells 已提交
19 20 21
#include <linux/vfs.h>
#include <linux/inet.h>
#include "internal.h"
22
#include "nfs4_fs.h"
23
#include "dns_resolve.h"
D
David Howells 已提交
24 25 26 27

#define NFSDBG_FACILITY		NFSDBG_VFS

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

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

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

56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
/*
 * 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;
}

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

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

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

	return 0;
}

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

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

138 139 140 141 142 143 144 145 146 147
/**
 * nfs_find_best_sec - Find a security mechanism supported locally
 * @flavors: List of security tuples returned by SECINFO procedure
 *
 * Return the pseudoflavor of the first security mechanism in
 * "flavors" that is locally supported.  Return RPC_AUTH_UNIX if
 * no matching flavor is found in the array.  The "flavors" array
 * is searched in the order returned from the server, per RFC 3530
 * recommendation.
 */
148 149
rpc_authflavor_t nfs_find_best_sec(struct nfs4_secinfo_flavors *flavors)
{
150 151
	rpc_authflavor_t pseudoflavor;
	struct nfs4_secinfo4 *secinfo;
152
	unsigned int i;
153 154

	for (i = 0; i < flavors->num_flavors; i++) {
155 156 157 158 159 160 161 162 163 164
		secinfo = &flavors->flavors[i];

		switch (secinfo->flavor) {
		case RPC_AUTH_NULL:
		case RPC_AUTH_UNIX:
		case RPC_AUTH_GSS:
			pseudoflavor = rpcauth_get_pseudoflavor(secinfo->flavor,
							&secinfo->flavor_info);
			if (pseudoflavor != RPC_AUTH_MAXFLAVOR)
				return pseudoflavor;
165 166 167 168
			break;
		}
	}

169
	return RPC_AUTH_UNIX;
170 171
}

172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
static rpc_authflavor_t nfs4_negotiate_security(struct inode *inode, struct qstr *name)
{
	struct page *page;
	struct nfs4_secinfo_flavors *flavors;
	rpc_authflavor_t flavor;
	int err;

	page = alloc_page(GFP_KERNEL);
	if (!page)
		return -ENOMEM;
	flavors = page_address(page);

	err = nfs4_proc_secinfo(inode, name, flavors);
	if (err < 0) {
		flavor = err;
		goto out;
	}

	flavor = nfs_find_best_sec(flavors);

out:
	put_page(page);
	return flavor;
}

/*
 * Please call rpc_shutdown_client() when you are done with this client.
 */
struct rpc_clnt *nfs4_create_sec_client(struct rpc_clnt *clnt, struct inode *inode,
					struct qstr *name)
{
	rpc_authflavor_t flavor;

	flavor = nfs4_negotiate_security(inode, name);
206
	if ((int)flavor < 0)
207
		return ERR_PTR((int)flavor);
208

209
	return rpc_clone_client_set_auth(clnt, flavor);
210 211
}

212 213 214 215
static struct vfsmount *try_location(struct nfs_clone_mount *mountdata,
				     char *page, char *page2,
				     const struct nfs4_fs_location *location)
{
216
	const size_t addr_bufsize = sizeof(struct sockaddr_storage);
217 218
	struct vfsmount *mnt = ERR_PTR(-ENOENT);
	char *mnt_path;
219
	unsigned int maxbuflen;
220
	unsigned int s;
221 222 223

	mnt_path = nfs4_pathname_string(&location->rootpath, page2, PAGE_SIZE);
	if (IS_ERR(mnt_path))
224
		return ERR_CAST(mnt_path);
225
	mountdata->mnt_path = mnt_path;
226
	maxbuflen = mnt_path - 1 - page2;
227

228 229 230 231
	mountdata->addr = kmalloc(addr_bufsize, GFP_KERNEL);
	if (mountdata->addr == NULL)
		return ERR_PTR(-ENOMEM);

232
	for (s = 0; s < location->nservers; s++) {
233
		const struct nfs4_string *buf = &location->servers[s];
234

235
		if (buf->len <= 0 || buf->len >= maxbuflen)
236 237
			continue;

238 239
		if (memchr(buf->data, IPV6_SCOPE_DELIMITER, buf->len))
			continue;
240 241

		mountdata->addrlen = nfs_parse_server_name(buf->data, buf->len,
242 243
				mountdata->addr, addr_bufsize,
				NFS_SB(mountdata->sb));
244
		if (mountdata->addrlen == 0)
245
			continue;
246

247
		rpc_set_port(mountdata->addr, NFS_PORT);
248

249 250
		memcpy(page2, buf->data, buf->len);
		page2[buf->len] = '\0';
251
		mountdata->hostname = page2;
252 253 254 255 256 257 258 259 260

		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;
	}
261
	kfree(mountdata->addr);
262 263 264
	return mnt;
}

D
David Howells 已提交
265 266 267
/**
 * nfs_follow_referral - set up mountpoint when hitting a referral on moved error
 * @dentry - parent directory
268
 * @locations - array of NFSv4 server location information
D
David Howells 已提交
269 270
 *
 */
271
static struct vfsmount *nfs_follow_referral(struct dentry *dentry,
D
David Howells 已提交
272
					    const struct nfs4_fs_locations *locations)
D
David Howells 已提交
273 274 275
{
	struct vfsmount *mnt = ERR_PTR(-ENOENT);
	struct nfs_clone_mount mountdata = {
276
		.sb = dentry->d_sb,
D
David Howells 已提交
277
		.dentry = dentry,
278
		.authflavor = NFS_SB(dentry->d_sb)->client->cl_auth->au_flavor,
D
David Howells 已提交
279
	};
280
	char *page = NULL, *page2 = NULL;
281
	int loc, error;
D
David Howells 已提交
282 283 284 285

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

286
	dprintk("%s: referral at %s/%s\n", __func__,
D
David Howells 已提交
287 288 289
		dentry->d_parent->d_name.name, dentry->d_name.name);

	page = (char *) __get_free_page(GFP_USER);
290
	if (!page)
D
David Howells 已提交
291
		goto out;
292

D
David Howells 已提交
293
	page2 = (char *) __get_free_page(GFP_USER);
294
	if (!page2)
D
David Howells 已提交
295 296
		goto out;

297
	/* Ensure fs path is a prefix of current dentry path */
298
	error = nfs4_validate_fspath(dentry, locations, page, page2);
299 300 301
	if (error < 0) {
		mnt = ERR_PTR(error);
		goto out;
D
David Howells 已提交
302 303
	}

304
	for (loc = 0; loc < locations->nlocations; loc++) {
D
David Howells 已提交
305
		const struct nfs4_fs_location *location = &locations->locations[loc];
D
David Howells 已提交
306 307

		if (location == NULL || location->nservers <= 0 ||
308
		    location->rootpath.ncomponents == 0)
D
David Howells 已提交
309 310
			continue;

311 312 313
		mnt = try_location(&mountdata, page, page2, location);
		if (!IS_ERR(mnt))
			break;
D
David Howells 已提交
314 315 316
	}

out:
317 318
	free_page((unsigned long) page);
	free_page((unsigned long) page2);
319
	dprintk("%s: done\n", __func__);
D
David Howells 已提交
320 321 322 323 324 325 326 327
	return mnt;
}

/*
 * nfs_do_refmount - handle crossing a referral on server
 * @dentry - dentry of referral
 *
 */
B
Bryan Schumaker 已提交
328
static struct vfsmount *nfs_do_refmount(struct rpc_clnt *client, struct dentry *dentry)
D
David Howells 已提交
329
{
330
	struct vfsmount *mnt = ERR_PTR(-ENOMEM);
D
David Howells 已提交
331 332 333 334 335 336
	struct dentry *parent;
	struct nfs4_fs_locations *fs_locations = NULL;
	struct page *page;
	int err;

	/* BUG_ON(IS_ROOT(dentry)); */
337
	dprintk("%s: enter\n", __func__);
D
David Howells 已提交
338 339 340 341 342 343 344 345 346 347

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

D
David Howells 已提交
350
	parent = dget_parent(dentry);
351
	dprintk("%s: getting locations for %s/%s\n",
352
		__func__, parent->d_name.name, dentry->d_name.name);
353

354
	err = nfs4_proc_fs_locations(client, parent->d_inode, &dentry->d_name, fs_locations, page);
D
David Howells 已提交
355
	dput(parent);
356 357
	if (err != 0 ||
	    fs_locations->nlocations <= 0 ||
D
David Howells 已提交
358 359 360
	    fs_locations->fs_path.ncomponents <= 0)
		goto out_free;

361
	mnt = nfs_follow_referral(dentry, fs_locations);
D
David Howells 已提交
362 363 364 365
out_free:
	__free_page(page);
	kfree(fs_locations);
out:
366
	dprintk("%s: done\n", __func__);
D
David Howells 已提交
367 368
	return mnt;
}
B
Bryan Schumaker 已提交
369 370 371 372

struct vfsmount *nfs4_submount(struct nfs_server *server, struct dentry *dentry,
			       struct nfs_fh *fh, struct nfs_fattr *fattr)
{
373
	rpc_authflavor_t flavor = server->client->cl_auth->au_flavor;
B
Bryan Schumaker 已提交
374
	struct dentry *parent = dget_parent(dentry);
375 376
	struct inode *dir = parent->d_inode;
	struct qstr *name = &dentry->d_name;
B
Bryan Schumaker 已提交
377 378 379 380
	struct rpc_clnt *client;
	struct vfsmount *mnt;

	/* Look it up again to get its attributes and sec flavor */
381
	client = nfs4_proc_lookup_mountpoint(dir, name, fh, fattr);
B
Bryan Schumaker 已提交
382 383 384 385
	dput(parent);
	if (IS_ERR(client))
		return ERR_CAST(client);

386
	if (fattr->valid & NFS_ATTR_FATTR_V4_REFERRAL) {
B
Bryan Schumaker 已提交
387
		mnt = nfs_do_refmount(client, dentry);
388 389
		goto out;
	}
B
Bryan Schumaker 已提交
390

391 392 393 394 395 396 397 398 399
	if (client->cl_auth->au_flavor != flavor)
		flavor = client->cl_auth->au_flavor;
	else if (!(server->flags & NFS_MOUNT_SECFLAVOUR)) {
		rpc_authflavor_t new = nfs4_negotiate_security(dir, name);
		if ((int)new >= 0)
			flavor = new;
	}
	mnt = nfs_do_submount(dentry, fh, fattr, flavor);
out:
B
Bryan Schumaker 已提交
400 401 402
	rpc_shutdown_client(client);
	return mnt;
}