nfs4namespace.c 6.4 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
/*
 * Determine the mount path as a string
 */
57
static char *nfs4_path(struct dentry *dentry, char *buffer, ssize_t buflen)
58
{
59 60 61 62 63 64 65 66
	char *limit;
	char *path = nfs_path(&limit, dentry, buffer, buflen);
	if (!IS_ERR(path)) {
		char *colon = strchr(path, ':');
		if (colon && colon < limit)
			path = colon + 1;
	}
	return path;
67 68 69 70 71 72
}

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

79
	path = nfs4_path(dentry, page, PAGE_SIZE);
80 81 82 83 84 85 86 87 88
	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",
89
			__func__, path, fs_path);
90 91 92 93 94 95
		return -ENOENT;
	}

	return 0;
}

96 97 98 99 100 101 102 103 104 105 106 107 108 109
static size_t nfs_parse_server_name(char *string, size_t len,
		struct sockaddr *sa, size_t salen)
{
	ssize_t ret;

	ret = rpc_pton(string, len, sa, salen);
	if (ret == 0) {
		ret = nfs_dns_resolve_name(string, len, sa, salen);
		if (ret < 0)
			ret = 0;
	}
	return ret;
}

110 111 112 113
static struct vfsmount *try_location(struct nfs_clone_mount *mountdata,
				     char *page, char *page2,
				     const struct nfs4_fs_location *location)
{
114
	const size_t addr_bufsize = sizeof(struct sockaddr_storage);
115 116
	struct vfsmount *mnt = ERR_PTR(-ENOENT);
	char *mnt_path;
117
	unsigned int maxbuflen;
118
	unsigned int s;
119 120 121

	mnt_path = nfs4_pathname_string(&location->rootpath, page2, PAGE_SIZE);
	if (IS_ERR(mnt_path))
122
		return ERR_CAST(mnt_path);
123
	mountdata->mnt_path = mnt_path;
124
	maxbuflen = mnt_path - 1 - page2;
125

126 127 128 129
	mountdata->addr = kmalloc(addr_bufsize, GFP_KERNEL);
	if (mountdata->addr == NULL)
		return ERR_PTR(-ENOMEM);

130
	for (s = 0; s < location->nservers; s++) {
131
		const struct nfs4_string *buf = &location->servers[s];
132

133
		if (buf->len <= 0 || buf->len >= maxbuflen)
134 135
			continue;

136 137
		if (memchr(buf->data, IPV6_SCOPE_DELIMITER, buf->len))
			continue;
138 139

		mountdata->addrlen = nfs_parse_server_name(buf->data, buf->len,
140
				mountdata->addr, addr_bufsize);
141
		if (mountdata->addrlen == 0)
142
			continue;
143

144
		rpc_set_port(mountdata->addr, NFS_PORT);
145

146 147
		memcpy(page2, buf->data, buf->len);
		page2[buf->len] = '\0';
148
		mountdata->hostname = page2;
149 150 151 152 153 154 155 156 157

		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;
	}
158
	kfree(mountdata->addr);
159 160 161
	return mnt;
}

D
David Howells 已提交
162 163
/**
 * nfs_follow_referral - set up mountpoint when hitting a referral on moved error
164
 * @sb - superblock of parent directory
D
David Howells 已提交
165
 * @dentry - parent directory
166
 * @locations - array of NFSv4 server location information
D
David Howells 已提交
167 168
 *
 */
169 170
static struct vfsmount *nfs_follow_referral(struct super_block *sb,
					    struct dentry *dentry,
D
David Howells 已提交
171
					    const struct nfs4_fs_locations *locations)
D
David Howells 已提交
172 173 174
{
	struct vfsmount *mnt = ERR_PTR(-ENOENT);
	struct nfs_clone_mount mountdata = {
175
		.sb = sb,
D
David Howells 已提交
176
		.dentry = dentry,
177
		.authflavor = NFS_SB(sb)->client->cl_auth->au_flavor,
D
David Howells 已提交
178
	};
179
	char *page = NULL, *page2 = NULL;
180
	int loc, error;
D
David Howells 已提交
181 182 183 184

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

185
	dprintk("%s: referral at %s/%s\n", __func__,
D
David Howells 已提交
186 187 188
		dentry->d_parent->d_name.name, dentry->d_name.name);

	page = (char *) __get_free_page(GFP_USER);
189
	if (!page)
D
David Howells 已提交
190
		goto out;
191

D
David Howells 已提交
192
	page2 = (char *) __get_free_page(GFP_USER);
193
	if (!page2)
D
David Howells 已提交
194 195
		goto out;

196
	/* Ensure fs path is a prefix of current dentry path */
197
	error = nfs4_validate_fspath(dentry, locations, page, page2);
198 199 200
	if (error < 0) {
		mnt = ERR_PTR(error);
		goto out;
D
David Howells 已提交
201 202
	}

203
	for (loc = 0; loc < locations->nlocations; loc++) {
D
David Howells 已提交
204
		const struct nfs4_fs_location *location = &locations->locations[loc];
D
David Howells 已提交
205 206

		if (location == NULL || location->nservers <= 0 ||
207
		    location->rootpath.ncomponents == 0)
D
David Howells 已提交
208 209
			continue;

210 211 212
		mnt = try_location(&mountdata, page, page2, location);
		if (!IS_ERR(mnt))
			break;
D
David Howells 已提交
213 214 215
	}

out:
216 217
	free_page((unsigned long) page);
	free_page((unsigned long) page2);
218
	dprintk("%s: done\n", __func__);
D
David Howells 已提交
219 220 221 222 223 224 225 226
	return mnt;
}

/*
 * nfs_do_refmount - handle crossing a referral on server
 * @dentry - dentry of referral
 *
 */
227
struct vfsmount *nfs_do_refmount(struct super_block *sb, struct dentry *dentry)
D
David Howells 已提交
228
{
229
	struct vfsmount *mnt = ERR_PTR(-ENOMEM);
D
David Howells 已提交
230 231 232 233 234 235
	struct dentry *parent;
	struct nfs4_fs_locations *fs_locations = NULL;
	struct page *page;
	int err;

	/* BUG_ON(IS_ROOT(dentry)); */
236
	dprintk("%s: enter\n", __func__);
D
David Howells 已提交
237 238 239 240 241 242 243 244 245 246

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

D
David Howells 已提交
249
	parent = dget_parent(dentry);
250
	dprintk("%s: getting locations for %s/%s\n",
251
		__func__, parent->d_name.name, dentry->d_name.name);
252

253
	err = nfs4_proc_fs_locations(parent->d_inode, &dentry->d_name, fs_locations, page);
D
David Howells 已提交
254
	dput(parent);
255 256
	if (err != 0 ||
	    fs_locations->nlocations <= 0 ||
D
David Howells 已提交
257 258 259
	    fs_locations->fs_path.ncomponents <= 0)
		goto out_free;

260
	mnt = nfs_follow_referral(sb, dentry, fs_locations);
D
David Howells 已提交
261 262 263 264
out_free:
	__free_page(page);
	kfree(fs_locations);
out:
265
	dprintk("%s: done\n", __func__);
D
David Howells 已提交
266 267
	return mnt;
}