nfs: Show original device name verbatim in /proc/*/mount{s,info}
[pandora-kernel.git] / fs / nfs / nfs4namespace.c
1 /*
2  * linux/fs/nfs/nfs4namespace.c
3  *
4  * Copyright (C) 2005 Trond Myklebust <Trond.Myklebust@netapp.com>
5  * - Modified by David Howells <dhowells@redhat.com>
6  *
7  * NFSv4 namespace
8  */
9
10 #include <linux/dcache.h>
11 #include <linux/mount.h>
12 #include <linux/namei.h>
13 #include <linux/nfs_fs.h>
14 #include <linux/slab.h>
15 #include <linux/string.h>
16 #include <linux/sunrpc/clnt.h>
17 #include <linux/vfs.h>
18 #include <linux/inet.h>
19 #include "internal.h"
20 #include "nfs4_fs.h"
21 #include "dns_resolve.h"
22
23 #define NFSDBG_FACILITY         NFSDBG_VFS
24
25 /*
26  * Convert the NFSv4 pathname components into a standard posix path.
27  *
28  * Note that the resulting string will be placed at the end of the buffer
29  */
30 static inline char *nfs4_pathname_string(const struct nfs4_pathname *pathname,
31                                          char *buffer, ssize_t buflen)
32 {
33         char *end = buffer + buflen;
34         int n;
35
36         *--end = '\0';
37         buflen--;
38
39         n = pathname->ncomponents;
40         while (--n >= 0) {
41                 const struct nfs4_string *component = &pathname->components[n];
42                 buflen -= component->len + 1;
43                 if (buflen < 0)
44                         goto Elong;
45                 end -= component->len;
46                 memcpy(end, component->data, component->len);
47                 *--end = '/';
48         }
49         return end;
50 Elong:
51         return ERR_PTR(-ENAMETOOLONG);
52 }
53
54 /*
55  * Determine the mount path as a string
56  */
57 static char *nfs4_path(struct dentry *dentry, char *buffer, ssize_t buflen)
58 {
59         char *limit;
60         char *path = nfs_path(&limit, dentry, buffer, buflen,
61                               NFS_PATH_CANONICAL);
62         if (!IS_ERR(path)) {
63                 char *colon = strchr(path, ':');
64                 if (colon && colon < limit)
65                         path = colon + 1;
66         }
67         return path;
68 }
69
70 /*
71  * Check that fs_locations::fs_root [RFC3530 6.3] is a prefix for what we
72  * believe to be the server path to this dentry
73  */
74 static int nfs4_validate_fspath(struct dentry *dentry,
75                                 const struct nfs4_fs_locations *locations,
76                                 char *page, char *page2)
77 {
78         const char *path, *fs_path;
79
80         path = nfs4_path(dentry, page, PAGE_SIZE);
81         if (IS_ERR(path))
82                 return PTR_ERR(path);
83
84         fs_path = nfs4_pathname_string(&locations->fs_path, page2, PAGE_SIZE);
85         if (IS_ERR(fs_path))
86                 return PTR_ERR(fs_path);
87
88         if (strncmp(path, fs_path, strlen(fs_path)) != 0) {
89                 dprintk("%s: path %s does not begin with fsroot %s\n",
90                         __func__, path, fs_path);
91                 return -ENOENT;
92         }
93
94         return 0;
95 }
96
97 static size_t nfs_parse_server_name(char *string, size_t len,
98                 struct sockaddr *sa, size_t salen)
99 {
100         ssize_t ret;
101
102         ret = rpc_pton(string, len, sa, salen);
103         if (ret == 0) {
104                 ret = nfs_dns_resolve_name(string, len, sa, salen);
105                 if (ret < 0)
106                         ret = 0;
107         }
108         return ret;
109 }
110
111 static struct vfsmount *try_location(struct nfs_clone_mount *mountdata,
112                                      char *page, char *page2,
113                                      const struct nfs4_fs_location *location)
114 {
115         const size_t addr_bufsize = sizeof(struct sockaddr_storage);
116         struct vfsmount *mnt = ERR_PTR(-ENOENT);
117         char *mnt_path;
118         unsigned int maxbuflen;
119         unsigned int s;
120
121         mnt_path = nfs4_pathname_string(&location->rootpath, page2, PAGE_SIZE);
122         if (IS_ERR(mnt_path))
123                 return ERR_CAST(mnt_path);
124         mountdata->mnt_path = mnt_path;
125         maxbuflen = mnt_path - 1 - page2;
126
127         mountdata->addr = kmalloc(addr_bufsize, GFP_KERNEL);
128         if (mountdata->addr == NULL)
129                 return ERR_PTR(-ENOMEM);
130
131         for (s = 0; s < location->nservers; s++) {
132                 const struct nfs4_string *buf = &location->servers[s];
133
134                 if (buf->len <= 0 || buf->len >= maxbuflen)
135                         continue;
136
137                 if (memchr(buf->data, IPV6_SCOPE_DELIMITER, buf->len))
138                         continue;
139
140                 mountdata->addrlen = nfs_parse_server_name(buf->data, buf->len,
141                                 mountdata->addr, addr_bufsize);
142                 if (mountdata->addrlen == 0)
143                         continue;
144
145                 rpc_set_port(mountdata->addr, NFS_PORT);
146
147                 memcpy(page2, buf->data, buf->len);
148                 page2[buf->len] = '\0';
149                 mountdata->hostname = page2;
150
151                 snprintf(page, PAGE_SIZE, "%s:%s",
152                                 mountdata->hostname,
153                                 mountdata->mnt_path);
154
155                 mnt = vfs_kern_mount(&nfs4_referral_fs_type, 0, page, mountdata);
156                 if (!IS_ERR(mnt))
157                         break;
158         }
159         kfree(mountdata->addr);
160         return mnt;
161 }
162
163 /**
164  * nfs_follow_referral - set up mountpoint when hitting a referral on moved error
165  * @dentry - parent directory
166  * @locations - array of NFSv4 server location information
167  *
168  */
169 static struct vfsmount *nfs_follow_referral(struct dentry *dentry,
170                                             const struct nfs4_fs_locations *locations)
171 {
172         struct vfsmount *mnt = ERR_PTR(-ENOENT);
173         struct nfs_clone_mount mountdata = {
174                 .sb = dentry->d_sb,
175                 .dentry = dentry,
176                 .authflavor = NFS_SB(dentry->d_sb)->client->cl_auth->au_flavor,
177         };
178         char *page = NULL, *page2 = NULL;
179         int loc, error;
180
181         if (locations == NULL || locations->nlocations <= 0)
182                 goto out;
183
184         dprintk("%s: referral at %s/%s\n", __func__,
185                 dentry->d_parent->d_name.name, dentry->d_name.name);
186
187         page = (char *) __get_free_page(GFP_USER);
188         if (!page)
189                 goto out;
190
191         page2 = (char *) __get_free_page(GFP_USER);
192         if (!page2)
193                 goto out;
194
195         /* Ensure fs path is a prefix of current dentry path */
196         error = nfs4_validate_fspath(dentry, locations, page, page2);
197         if (error < 0) {
198                 mnt = ERR_PTR(error);
199                 goto out;
200         }
201
202         for (loc = 0; loc < locations->nlocations; loc++) {
203                 const struct nfs4_fs_location *location = &locations->locations[loc];
204
205                 if (location == NULL || location->nservers <= 0 ||
206                     location->rootpath.ncomponents == 0)
207                         continue;
208
209                 mnt = try_location(&mountdata, page, page2, location);
210                 if (!IS_ERR(mnt))
211                         break;
212         }
213
214 out:
215         free_page((unsigned long) page);
216         free_page((unsigned long) page2);
217         dprintk("%s: done\n", __func__);
218         return mnt;
219 }
220
221 /*
222  * nfs_do_refmount - handle crossing a referral on server
223  * @dentry - dentry of referral
224  *
225  */
226 struct vfsmount *nfs_do_refmount(struct dentry *dentry)
227 {
228         struct vfsmount *mnt = ERR_PTR(-ENOMEM);
229         struct dentry *parent;
230         struct nfs4_fs_locations *fs_locations = NULL;
231         struct page *page;
232         int err;
233
234         /* BUG_ON(IS_ROOT(dentry)); */
235         dprintk("%s: enter\n", __func__);
236
237         page = alloc_page(GFP_KERNEL);
238         if (page == NULL)
239                 goto out;
240
241         fs_locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
242         if (fs_locations == NULL)
243                 goto out_free;
244
245         /* Get locations */
246         mnt = ERR_PTR(-ENOENT);
247
248         parent = dget_parent(dentry);
249         dprintk("%s: getting locations for %s/%s\n",
250                 __func__, parent->d_name.name, dentry->d_name.name);
251
252         err = nfs4_proc_fs_locations(parent->d_inode, &dentry->d_name, fs_locations, page);
253         dput(parent);
254         if (err != 0 ||
255             fs_locations->nlocations <= 0 ||
256             fs_locations->fs_path.ncomponents <= 0)
257                 goto out_free;
258
259         mnt = nfs_follow_referral(dentry, fs_locations);
260 out_free:
261         __free_page(page);
262         kfree(fs_locations);
263 out:
264         dprintk("%s: done\n", __func__);
265         return mnt;
266 }