nfs: replace while loop by for loops in nfs_follow_referral
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / fs / nfs / nfs4namespace.c
blob6bcc5696f91120f51bfa242426737cec8da15807
1 /*
2 * linux/fs/nfs/nfs4namespace.c
4 * Copyright (C) 2005 Trond Myklebust <Trond.Myklebust@netapp.com>
5 * - Modified by David Howells <dhowells@redhat.com>
7 * NFSv4 namespace
8 */
10 #include <linux/dcache.h>
11 #include <linux/mount.h>
12 #include <linux/namei.h>
13 #include <linux/nfs_fs.h>
14 #include <linux/string.h>
15 #include <linux/sunrpc/clnt.h>
16 #include <linux/vfs.h>
17 #include <linux/inet.h>
18 #include "internal.h"
19 #include "nfs4_fs.h"
21 #define NFSDBG_FACILITY NFSDBG_VFS
24 * Check if fs_root is valid
26 static inline char *nfs4_pathname_string(const struct nfs4_pathname *pathname,
27 char *buffer, ssize_t buflen)
29 char *end = buffer + buflen;
30 int n;
32 *--end = '\0';
33 buflen--;
35 n = pathname->ncomponents;
36 while (--n >= 0) {
37 const struct nfs4_string *component = &pathname->components[n];
38 buflen -= component->len + 1;
39 if (buflen < 0)
40 goto Elong;
41 end -= component->len;
42 memcpy(end, component->data, component->len);
43 *--end = '/';
45 return end;
46 Elong:
47 return ERR_PTR(-ENAMETOOLONG);
51 * Determine the mount path as a string
53 static char *nfs4_path(const struct vfsmount *mnt_parent,
54 const struct dentry *dentry,
55 char *buffer, ssize_t buflen)
57 const char *srvpath;
59 srvpath = strchr(mnt_parent->mnt_devname, ':');
60 if (srvpath)
61 srvpath++;
62 else
63 srvpath = mnt_parent->mnt_devname;
65 return nfs_path(srvpath, mnt_parent->mnt_root, dentry, buffer, buflen);
69 * Check that fs_locations::fs_root [RFC3530 6.3] is a prefix for what we
70 * believe to be the server path to this dentry
72 static int nfs4_validate_fspath(const struct vfsmount *mnt_parent,
73 const struct dentry *dentry,
74 const struct nfs4_fs_locations *locations,
75 char *page, char *page2)
77 const char *path, *fs_path;
79 path = nfs4_path(mnt_parent, dentry, page, PAGE_SIZE);
80 if (IS_ERR(path))
81 return PTR_ERR(path);
83 fs_path = nfs4_pathname_string(&locations->fs_path, page2, PAGE_SIZE);
84 if (IS_ERR(fs_path))
85 return PTR_ERR(fs_path);
87 if (strncmp(path, fs_path, strlen(fs_path)) != 0) {
88 dprintk("%s: path %s does not begin with fsroot %s\n",
89 __func__, path, fs_path);
90 return -ENOENT;
93 return 0;
97 * Check if the string represents a "valid" IPv4 address
99 static inline int valid_ipaddr4(const char *buf)
101 int rc, count, in[4];
103 rc = sscanf(buf, "%d.%d.%d.%d", &in[0], &in[1], &in[2], &in[3]);
104 if (rc != 4)
105 return -EINVAL;
106 for (count = 0; count < 4; count++) {
107 if (in[count] > 255)
108 return -EINVAL;
110 return 0;
113 static struct vfsmount *try_location(struct nfs_clone_mount *mountdata,
114 char *page, char *page2,
115 const struct nfs4_fs_location *location)
117 struct vfsmount *mnt = ERR_PTR(-ENOENT);
118 char *mnt_path;
119 unsigned int s;
121 mnt_path = nfs4_pathname_string(&location->rootpath, page2, PAGE_SIZE);
122 if (IS_ERR(mnt_path))
123 return mnt;
124 mountdata->mnt_path = mnt_path;
126 for (s = 0; s < location->nservers; s++) {
127 struct sockaddr_in addr = {
128 .sin_family = AF_INET,
129 .sin_port = htons(NFS_PORT),
132 if (location->servers[s].len <= 0 ||
133 valid_ipaddr4(location->servers[s].data) < 0)
134 continue;
136 mountdata->hostname = location->servers[s].data;
137 addr.sin_addr.s_addr = in_aton(mountdata->hostname),
138 mountdata->addr = (struct sockaddr *)&addr;
139 mountdata->addrlen = sizeof(addr);
141 snprintf(page, PAGE_SIZE, "%s:%s",
142 mountdata->hostname,
143 mountdata->mnt_path);
145 mnt = vfs_kern_mount(&nfs4_referral_fs_type, 0, page, mountdata);
146 if (!IS_ERR(mnt))
147 break;
149 return mnt;
153 * nfs_follow_referral - set up mountpoint when hitting a referral on moved error
154 * @mnt_parent - mountpoint of parent directory
155 * @dentry - parent directory
156 * @locations - array of NFSv4 server location information
159 static struct vfsmount *nfs_follow_referral(const struct vfsmount *mnt_parent,
160 const struct dentry *dentry,
161 const struct nfs4_fs_locations *locations)
163 struct vfsmount *mnt = ERR_PTR(-ENOENT);
164 struct nfs_clone_mount mountdata = {
165 .sb = mnt_parent->mnt_sb,
166 .dentry = dentry,
167 .authflavor = NFS_SB(mnt_parent->mnt_sb)->client->cl_auth->au_flavor,
169 char *page = NULL, *page2 = NULL;
170 int loc, error;
172 if (locations == NULL || locations->nlocations <= 0)
173 goto out;
175 dprintk("%s: referral at %s/%s\n", __func__,
176 dentry->d_parent->d_name.name, dentry->d_name.name);
178 page = (char *) __get_free_page(GFP_USER);
179 if (!page)
180 goto out;
182 page2 = (char *) __get_free_page(GFP_USER);
183 if (!page2)
184 goto out;
186 /* Ensure fs path is a prefix of current dentry path */
187 error = nfs4_validate_fspath(mnt_parent, dentry, locations, page, page2);
188 if (error < 0) {
189 mnt = ERR_PTR(error);
190 goto out;
193 for (loc = 0; loc < locations->nlocations; loc++) {
194 const struct nfs4_fs_location *location = &locations->locations[loc];
196 if (location == NULL || location->nservers <= 0 ||
197 location->rootpath.ncomponents == 0)
198 continue;
200 mnt = try_location(&mountdata, page, page2, location);
201 if (!IS_ERR(mnt))
202 break;
205 out:
206 free_page((unsigned long) page);
207 free_page((unsigned long) page2);
208 dprintk("%s: done\n", __func__);
209 return mnt;
213 * nfs_do_refmount - handle crossing a referral on server
214 * @dentry - dentry of referral
215 * @nd - nameidata info
218 struct vfsmount *nfs_do_refmount(const struct vfsmount *mnt_parent, struct dentry *dentry)
220 struct vfsmount *mnt = ERR_PTR(-ENOMEM);
221 struct dentry *parent;
222 struct nfs4_fs_locations *fs_locations = NULL;
223 struct page *page;
224 int err;
226 /* BUG_ON(IS_ROOT(dentry)); */
227 dprintk("%s: enter\n", __func__);
229 page = alloc_page(GFP_KERNEL);
230 if (page == NULL)
231 goto out;
233 fs_locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
234 if (fs_locations == NULL)
235 goto out_free;
237 /* Get locations */
238 mnt = ERR_PTR(-ENOENT);
240 parent = dget_parent(dentry);
241 dprintk("%s: getting locations for %s/%s\n",
242 __func__, parent->d_name.name, dentry->d_name.name);
244 err = nfs4_proc_fs_locations(parent->d_inode, &dentry->d_name, fs_locations, page);
245 dput(parent);
246 if (err != 0 ||
247 fs_locations->nlocations <= 0 ||
248 fs_locations->fs_path.ncomponents <= 0)
249 goto out_free;
251 mnt = nfs_follow_referral(mnt_parent, dentry, fs_locations);
252 out_free:
253 __free_page(page);
254 kfree(fs_locations);
255 out:
256 dprintk("%s: done\n", __func__);
257 return mnt;