Blame view

fs/nfs/nfs4namespace.c 6 KB
f7b422b17   David Howells   NFS: Split fs/nfs...
1
2
3
4
  /*
   * linux/fs/nfs/nfs4namespace.c
   *
   * Copyright (C) 2005 Trond Myklebust <Trond.Myklebust@netapp.com>
54ceac451   David Howells   NFS: Share NFS su...
5
   * - Modified by David Howells <dhowells@redhat.com>
f7b422b17   David Howells   NFS: Split fs/nfs...
6
7
8
   *
   * NFSv4 namespace
   */
f7b422b17   David Howells   NFS: Split fs/nfs...
9
10
11
12
13
14
15
16
17
  #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"
c228fd3ae   Trond Myklebust   NFSv4: Cleanups f...
18
  #include "nfs4_fs.h"
f7b422b17   David Howells   NFS: Split fs/nfs...
19
20
21
22
23
24
  
  #define NFSDBG_FACILITY		NFSDBG_VFS
  
  /*
   * Check if fs_root is valid
   */
509de8111   David Howells   NFS: Add extra co...
25
  static inline char *nfs4_pathname_string(const struct nfs4_pathname *pathname,
f7b422b17   David Howells   NFS: Split fs/nfs...
26
27
28
29
30
31
32
33
34
35
  					 char *buffer, ssize_t buflen)
  {
  	char *end = buffer + buflen;
  	int n;
  
  	*--end = '\0';
  	buflen--;
  
  	n = pathname->ncomponents;
  	while (--n >= 0) {
509de8111   David Howells   NFS: Add extra co...
36
  		const struct nfs4_string *component = &pathname->components[n];
f7b422b17   David Howells   NFS: Split fs/nfs...
37
38
39
40
41
42
43
44
45
46
47
  		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);
  }
54ceac451   David Howells   NFS: Share NFS su...
48
49
50
51
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
  /*
   * 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
  ",
  			__FUNCTION__, path, fs_path);
  		return -ENOENT;
  	}
  
  	return 0;
  }
  
  /*
   * Check if the string represents a "valid" IPv4 address
   */
  static inline int valid_ipaddr4(const char *buf)
  {
  	int rc, count, in[4];
  
  	rc = sscanf(buf, "%d.%d.%d.%d", &in[0], &in[1], &in[2], &in[3]);
  	if (rc != 4)
  		return -EINVAL;
  	for (count = 0; count < 4; count++) {
  		if (in[count] > 255)
  			return -EINVAL;
  	}
  	return 0;
  }
f7b422b17   David Howells   NFS: Split fs/nfs...
111
112
113
114
115
116
117
118
119
120
121
122
123
  
  /**
   * nfs_follow_referral - set up mountpoint when hitting a referral on moved error
   * @mnt_parent - mountpoint of parent directory
   * @dentry - parent directory
   * @fspath - fs path returned in fs_locations
   * @mntpath - mount path to new server
   * @hostname - hostname of new server
   * @addr - host addr of new server
   *
   */
  static struct vfsmount *nfs_follow_referral(const struct vfsmount *mnt_parent,
  					    const struct dentry *dentry,
509de8111   David Howells   NFS: Add extra co...
124
  					    const struct nfs4_fs_locations *locations)
f7b422b17   David Howells   NFS: Split fs/nfs...
125
126
127
128
129
130
131
  {
  	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,
  	};
54ceac451   David Howells   NFS: Share NFS su...
132
  	char *page = NULL, *page2 = NULL;
54ceac451   David Howells   NFS: Share NFS su...
133
  	int loc, s, error;
f7b422b17   David Howells   NFS: Split fs/nfs...
134
135
136
137
138
139
140
  
  	if (locations == NULL || locations->nlocations <= 0)
  		goto out;
  
  	dprintk("%s: referral at %s/%s
  ", __FUNCTION__,
  		dentry->d_parent->d_name.name, dentry->d_name.name);
f7b422b17   David Howells   NFS: Split fs/nfs...
141
  	page = (char *) __get_free_page(GFP_USER);
54ceac451   David Howells   NFS: Share NFS su...
142
  	if (!page)
f7b422b17   David Howells   NFS: Split fs/nfs...
143
  		goto out;
54ceac451   David Howells   NFS: Share NFS su...
144

f7b422b17   David Howells   NFS: Split fs/nfs...
145
  	page2 = (char *) __get_free_page(GFP_USER);
54ceac451   David Howells   NFS: Share NFS su...
146
  	if (!page2)
f7b422b17   David Howells   NFS: Split fs/nfs...
147
  		goto out;
54ceac451   David Howells   NFS: Share NFS su...
148
149
150
151
152
  	/* 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;
f7b422b17   David Howells   NFS: Split fs/nfs...
153
  	}
f7b422b17   David Howells   NFS: Split fs/nfs...
154
155
  	loc = 0;
  	while (loc < locations->nlocations && IS_ERR(mnt)) {
509de8111   David Howells   NFS: Add extra co...
156
  		const struct nfs4_fs_location *location = &locations->locations[loc];
f7b422b17   David Howells   NFS: Split fs/nfs...
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
  		char *mnt_path;
  
  		if (location == NULL || location->nservers <= 0 ||
  		    location->rootpath.ncomponents == 0) {
  			loc++;
  			continue;
  		}
  
  		mnt_path = nfs4_pathname_string(&location->rootpath, page2, PAGE_SIZE);
  		if (IS_ERR(mnt_path)) {
  			loc++;
  			continue;
  		}
  		mountdata.mnt_path = mnt_path;
  
  		s = 0;
  		while (s < location->nservers) {
  			struct sockaddr_in addr = {};
  
  			if (location->servers[s].len <= 0 ||
  			    valid_ipaddr4(location->servers[s].data) < 0) {
  				s++;
  				continue;
  			}
  
  			mountdata.hostname = location->servers[s].data;
  			addr.sin_addr.s_addr = in_aton(mountdata.hostname);
  			addr.sin_family = AF_INET;
  			addr.sin_port = htons(NFS_PORT);
  			mountdata.addr = &addr;
588a700b2   Trond Myklebust   NFSv4: /proc/moun...
187
188
189
190
191
  			snprintf(page, PAGE_SIZE, "%s:%s",
  					mountdata.hostname,
  					mountdata.mnt_path);
  
  			mnt = vfs_kern_mount(&nfs4_referral_fs_type, 0, page, &mountdata);
f7b422b17   David Howells   NFS: Split fs/nfs...
192
193
194
195
196
197
198
  			if (!IS_ERR(mnt)) {
  				break;
  			}
  			s++;
  		}
  		loc++;
  	}
f7b422b17   David Howells   NFS: Split fs/nfs...
199
  out:
54ceac451   David Howells   NFS: Share NFS su...
200
201
  	free_page((unsigned long) page);
  	free_page((unsigned long) page2);
f7b422b17   David Howells   NFS: Split fs/nfs...
202
203
204
205
206
207
208
209
210
211
212
213
214
  	dprintk("%s: done
  ", __FUNCTION__);
  	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)
  {
54ceac451   David Howells   NFS: Share NFS su...
215
  	struct vfsmount *mnt = ERR_PTR(-ENOMEM);
f7b422b17   David Howells   NFS: Split fs/nfs...
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
  	struct dentry *parent;
  	struct nfs4_fs_locations *fs_locations = NULL;
  	struct page *page;
  	int err;
  
  	/* BUG_ON(IS_ROOT(dentry)); */
  	dprintk("%s: enter
  ", __FUNCTION__);
  
  	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 */
54ceac451   David Howells   NFS: Share NFS su...
234
  	mnt = ERR_PTR(-ENOENT);
f7b422b17   David Howells   NFS: Split fs/nfs...
235
  	parent = dget_parent(dentry);
54ceac451   David Howells   NFS: Share NFS su...
236
237
238
  	dprintk("%s: getting locations for %s/%s
  ",
  		__FUNCTION__, parent->d_name.name, dentry->d_name.name);
c228fd3ae   Trond Myklebust   NFSv4: Cleanups f...
239
  	err = nfs4_proc_fs_locations(parent->d_inode, &dentry->d_name, fs_locations, page);
f7b422b17   David Howells   NFS: Split fs/nfs...
240
  	dput(parent);
54ceac451   David Howells   NFS: Share NFS su...
241
242
  	if (err != 0 ||
  	    fs_locations->nlocations <= 0 ||
f7b422b17   David Howells   NFS: Split fs/nfs...
243
244
245
246
247
248
249
250
251
252
253
254
  	    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:
  	dprintk("%s: done
  ", __FUNCTION__);
  	return mnt;
  }