1 /* getroot.c: get the root dentry for an NFS mount
3 * Copyright (C) 2006 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
12 #include <linux/module.h>
13 #include <linux/init.h>
15 #include <linux/time.h>
16 #include <linux/kernel.h>
18 #include <linux/string.h>
19 #include <linux/stat.h>
20 #include <linux/errno.h>
21 #include <linux/unistd.h>
22 #include <linux/sunrpc/clnt.h>
23 #include <linux/sunrpc/stats.h>
24 #include <linux/nfs_fs.h>
25 #include <linux/nfs_mount.h>
26 #include <linux/nfs4_mount.h>
27 #include <linux/lockd/bind.h>
28 #include <linux/seq_file.h>
29 #include <linux/mount.h>
30 #include <linux/nfs_idmap.h>
31 #include <linux/vfs.h>
32 #include <linux/namei.h>
33 #include <linux/mnt_namespace.h>
34 #include <linux/security.h>
36 #include <asm/system.h>
37 #include <asm/uaccess.h>
40 #include "delegation.h"
43 #define NFSDBG_FACILITY NFSDBG_CLIENT
46 * get an NFS2/NFS3 root dentry from the root filehandle
48 struct dentry
*nfs_get_root(struct super_block
*sb
, struct nfs_fh
*mntfh
)
50 struct nfs_server
*server
= NFS_SB(sb
);
51 struct nfs_fsinfo fsinfo
;
52 struct nfs_fattr fattr
;
53 struct dentry
*mntroot
;
57 /* create a dummy root dentry with dummy inode for this superblock */
59 struct nfs_fh dummyfh
;
63 memset(&dummyfh
, 0, sizeof(dummyfh
));
64 memset(&fattr
, 0, sizeof(fattr
));
65 nfs_fattr_init(&fattr
);
66 fattr
.valid
= NFS_ATTR_FATTR
;
68 fattr
.mode
= S_IFDIR
| S_IRUSR
| S_IWUSR
;
71 iroot
= nfs_fhget(sb
, &dummyfh
, &fattr
);
73 return ERR_PTR(PTR_ERR(iroot
));
75 root
= d_alloc_root(iroot
);
78 return ERR_PTR(-ENOMEM
);
84 /* get the actual root for this mount */
85 fsinfo
.fattr
= &fattr
;
87 error
= server
->nfs_client
->rpc_ops
->getroot(server
, mntfh
, &fsinfo
);
89 dprintk("nfs_get_root: getattr error = %d\n", -error
);
90 return ERR_PTR(error
);
93 inode
= nfs_fhget(sb
, mntfh
, fsinfo
.fattr
);
95 dprintk("nfs_get_root: get root inode failed\n");
96 return ERR_PTR(PTR_ERR(inode
));
99 /* root dentries normally start off anonymous and get spliced in later
100 * if the dentry tree reaches them; however if the dentry already
101 * exists, we'll pick it up at this point and use it as the root
103 mntroot
= d_alloc_anon(inode
);
106 dprintk("nfs_get_root: get root dentry failed\n");
107 return ERR_PTR(-ENOMEM
);
110 security_d_instantiate(mntroot
, inode
);
113 mntroot
->d_op
= server
->nfs_client
->rpc_ops
->dentry_ops
;
121 * Do a simple pathwalk from the root FH of the server to the nominated target
123 * - give error on symlinks
124 * - give error on ".." occurring in the path
125 * - follow traversals
127 int nfs4_path_walk(struct nfs_server
*server
,
128 struct nfs_fh
*mntfh
,
131 struct nfs_fsinfo fsinfo
;
132 struct nfs_fattr fattr
;
133 struct nfs_fh lastfh
;
137 dprintk("--> nfs4_path_walk(,,%s)\n", path
);
139 fsinfo
.fattr
= &fattr
;
140 nfs_fattr_init(&fattr
);
142 /* Eat leading slashes */
146 /* Start by getting the root filehandle from the server */
147 ret
= server
->nfs_client
->rpc_ops
->getroot(server
, mntfh
, &fsinfo
);
149 dprintk("nfs4_get_root: getroot error = %d\n", -ret
);
153 if (fattr
.type
!= NFDIR
) {
154 printk(KERN_ERR
"nfs4_get_root:"
155 " getroot encountered non-directory\n");
159 /* FIXME: It is quite valid for the server to return a referral here */
160 if (fattr
.valid
& NFS_ATTR_FATTR_V4_REFERRAL
) {
161 printk(KERN_ERR
"nfs4_get_root:"
162 " getroot obtained referral\n");
167 dprintk("Next: %s\n", path
);
169 /* extract the next bit of the path */
171 goto path_walk_complete
;
174 while (*path
&& *path
!= '/')
176 name
.len
= path
- (const char *) name
.name
;
182 if (path
[0] == '.' && (path
[1] == '/' || !path
[1])) {
187 /* FIXME: Why shouldn't the user be able to use ".." in the path? */
188 if (path
[0] == '.' && path
[1] == '.' && (path
[2] == '/' || !path
[2])
190 printk(KERN_ERR
"nfs4_get_root:"
191 " Mount path contains reference to \"..\"\n");
195 /* lookup the next FH in the sequence */
196 memcpy(&lastfh
, mntfh
, sizeof(lastfh
));
198 dprintk("LookupFH: %*.*s [%s]\n", name
.len
, name
.len
, name
.name
, path
);
200 ret
= server
->nfs_client
->rpc_ops
->lookupfh(server
, &lastfh
, &name
,
203 dprintk("nfs4_get_root: getroot error = %d\n", -ret
);
207 if (fattr
.type
!= NFDIR
) {
208 printk(KERN_ERR
"nfs4_get_root:"
209 " lookupfh encountered non-directory\n");
213 /* FIXME: Referrals are quite valid here too */
214 if (fattr
.valid
& NFS_ATTR_FATTR_V4_REFERRAL
) {
215 printk(KERN_ERR
"nfs4_get_root:"
216 " lookupfh obtained referral\n");
223 memcpy(&server
->fsid
, &fattr
.fsid
, sizeof(server
->fsid
));
224 dprintk("<-- nfs4_path_walk() = 0\n");
229 * get an NFS4 root dentry from the root filehandle
231 struct dentry
*nfs4_get_root(struct super_block
*sb
, struct nfs_fh
*mntfh
)
233 struct nfs_server
*server
= NFS_SB(sb
);
234 struct nfs_fattr fattr
;
235 struct dentry
*mntroot
;
239 dprintk("--> nfs4_get_root()\n");
241 /* create a dummy root dentry with dummy inode for this superblock */
243 struct nfs_fh dummyfh
;
247 memset(&dummyfh
, 0, sizeof(dummyfh
));
248 memset(&fattr
, 0, sizeof(fattr
));
249 nfs_fattr_init(&fattr
);
250 fattr
.valid
= NFS_ATTR_FATTR
;
252 fattr
.mode
= S_IFDIR
| S_IRUSR
| S_IWUSR
;
255 iroot
= nfs_fhget(sb
, &dummyfh
, &fattr
);
257 return ERR_PTR(PTR_ERR(iroot
));
259 root
= d_alloc_root(iroot
);
262 return ERR_PTR(-ENOMEM
);
268 /* get the info about the server and filesystem */
269 error
= nfs4_server_capabilities(server
, mntfh
);
271 dprintk("nfs_get_root: getcaps error = %d\n",
273 return ERR_PTR(error
);
276 /* get the actual root for this mount */
277 error
= server
->nfs_client
->rpc_ops
->getattr(server
, mntfh
, &fattr
);
279 dprintk("nfs_get_root: getattr error = %d\n", -error
);
280 return ERR_PTR(error
);
283 inode
= nfs_fhget(sb
, mntfh
, &fattr
);
285 dprintk("nfs_get_root: get root inode failed\n");
286 return ERR_PTR(PTR_ERR(inode
));
289 /* root dentries normally start off anonymous and get spliced in later
290 * if the dentry tree reaches them; however if the dentry already
291 * exists, we'll pick it up at this point and use it as the root
293 mntroot
= d_alloc_anon(inode
);
296 dprintk("nfs_get_root: get root dentry failed\n");
297 return ERR_PTR(-ENOMEM
);
300 security_d_instantiate(mntroot
, inode
);
303 mntroot
->d_op
= server
->nfs_client
->rpc_ops
->dentry_ops
;
305 dprintk("<-- nfs4_get_root()\n");
309 #endif /* CONFIG_NFS_V4 */