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/smp_lock.h>
29 #include <linux/seq_file.h>
30 #include <linux/mount.h>
31 #include <linux/nfs_idmap.h>
32 #include <linux/vfs.h>
33 #include <linux/namei.h>
34 #include <linux/mnt_namespace.h>
35 #include <linux/security.h>
37 #include <asm/system.h>
38 #include <asm/uaccess.h>
41 #include "delegation.h"
44 #define NFSDBG_FACILITY NFSDBG_CLIENT
45 #define NFS_PARANOIA 1
48 * get an NFS2/NFS3 root dentry from the root filehandle
50 struct dentry *nfs_get_root(struct super_block *sb, struct nfs_fh *mntfh)
52 struct nfs_server *server = NFS_SB(sb);
53 struct nfs_fsinfo fsinfo;
54 struct nfs_fattr fattr;
55 struct dentry *mntroot;
59 /* create a dummy root dentry with dummy inode for this superblock */
61 struct nfs_fh dummyfh;
65 memset(&dummyfh, 0, sizeof(dummyfh));
66 memset(&fattr, 0, sizeof(fattr));
67 nfs_fattr_init(&fattr);
68 fattr.valid = NFS_ATTR_FATTR;
70 fattr.mode = S_IFDIR | S_IRUSR | S_IWUSR;
73 iroot = nfs_fhget(sb, &dummyfh, &fattr);
75 return ERR_PTR(PTR_ERR(iroot));
77 root = d_alloc_root(iroot);
80 return ERR_PTR(-ENOMEM);
86 /* get the actual root for this mount */
87 fsinfo.fattr = &fattr;
89 error = server->nfs_client->rpc_ops->getroot(server, mntfh, &fsinfo);
91 dprintk("nfs_get_root: getattr error = %d\n", -error);
92 return ERR_PTR(error);
95 inode = nfs_fhget(sb, mntfh, fsinfo.fattr);
97 dprintk("nfs_get_root: get root inode failed\n");
98 return ERR_PTR(PTR_ERR(inode));
101 /* root dentries normally start off anonymous and get spliced in later
102 * if the dentry tree reaches them; however if the dentry already
103 * exists, we'll pick it up at this point and use it as the root
105 mntroot = d_alloc_anon(inode);
108 dprintk("nfs_get_root: get root dentry failed\n");
109 return ERR_PTR(-ENOMEM);
112 security_d_instantiate(mntroot, inode);
115 mntroot->d_op = server->nfs_client->rpc_ops->dentry_ops;
123 * Do a simple pathwalk from the root FH of the server to the nominated target
125 * - give error on symlinks
126 * - give error on ".." occurring in the path
127 * - follow traversals
129 int nfs4_path_walk(struct nfs_server *server,
130 struct nfs_fh *mntfh,
133 struct nfs_fsinfo fsinfo;
134 struct nfs_fattr fattr;
135 struct nfs_fh lastfh;
138 //int referral_count = 0;
140 dprintk("--> nfs4_path_walk(,,%s)\n", path);
142 fsinfo.fattr = &fattr;
143 nfs_fattr_init(&fattr);
145 if (*path++ != '/') {
146 dprintk("nfs4_get_root: Path does not begin with a slash\n");
150 /* Start by getting the root filehandle from the server */
151 ret = server->nfs_client->rpc_ops->getroot(server, mntfh, &fsinfo);
153 dprintk("nfs4_get_root: getroot error = %d\n", -ret);
157 if (fattr.type != NFDIR) {
158 printk(KERN_ERR "nfs4_get_root:"
159 " getroot encountered non-directory\n");
163 if (fattr.valid & NFS_ATTR_FATTR_V4_REFERRAL) {
164 printk(KERN_ERR "nfs4_get_root:"
165 " getroot obtained referral\n");
170 dprintk("Next: %s\n", path);
172 /* extract the next bit of the path */
174 goto path_walk_complete;
177 while (*path && *path != '/')
179 name.len = path - (const char *) name.name;
185 if (path[0] == '.' && (path[1] == '/' || !path[1])) {
190 if (path[0] == '.' && path[1] == '.' && (path[2] == '/' || !path[2])
192 printk(KERN_ERR "nfs4_get_root:"
193 " Mount path contains reference to \"..\"\n");
197 /* lookup the next FH in the sequence */
198 memcpy(&lastfh, mntfh, sizeof(lastfh));
200 dprintk("LookupFH: %*.*s [%s]\n", name.len, name.len, name.name, path);
202 ret = server->nfs_client->rpc_ops->lookupfh(server, &lastfh, &name,
205 dprintk("nfs4_get_root: getroot error = %d\n", -ret);
209 if (fattr.type != NFDIR) {
210 printk(KERN_ERR "nfs4_get_root:"
211 " lookupfh encountered non-directory\n");
215 if (fattr.valid & NFS_ATTR_FATTR_V4_REFERRAL) {
216 printk(KERN_ERR "nfs4_get_root:"
217 " lookupfh obtained referral\n");
224 memcpy(&server->fsid, &fattr.fsid, sizeof(server->fsid));
225 dprintk("<-- nfs4_path_walk() = 0\n");
230 * get an NFS4 root dentry from the root filehandle
232 struct dentry *nfs4_get_root(struct super_block *sb, struct nfs_fh *mntfh)
234 struct nfs_server *server = NFS_SB(sb);
235 struct nfs_fattr fattr;
236 struct dentry *mntroot;
240 dprintk("--> nfs4_get_root()\n");
242 /* create a dummy root dentry with dummy inode for this superblock */
244 struct nfs_fh dummyfh;
248 memset(&dummyfh, 0, sizeof(dummyfh));
249 memset(&fattr, 0, sizeof(fattr));
250 nfs_fattr_init(&fattr);
251 fattr.valid = NFS_ATTR_FATTR;
253 fattr.mode = S_IFDIR | S_IRUSR | S_IWUSR;
256 iroot = nfs_fhget(sb, &dummyfh, &fattr);
258 return ERR_PTR(PTR_ERR(iroot));
260 root = d_alloc_root(iroot);
263 return ERR_PTR(-ENOMEM);
269 /* get the info about the server and filesystem */
270 error = nfs4_server_capabilities(server, mntfh);
272 dprintk("nfs_get_root: getcaps error = %d\n",
274 return ERR_PTR(error);
277 /* get the actual root for this mount */
278 error = server->nfs_client->rpc_ops->getattr(server, mntfh, &fattr);
280 dprintk("nfs_get_root: getattr error = %d\n", -error);
281 return ERR_PTR(error);
284 inode = nfs_fhget(sb, mntfh, &fattr);
286 dprintk("nfs_get_root: get root inode failed\n");
287 return ERR_PTR(PTR_ERR(inode));
290 /* root dentries normally start off anonymous and get spliced in later
291 * if the dentry tree reaches them; however if the dentry already
292 * exists, we'll pick it up at this point and use it as the root
294 mntroot = d_alloc_anon(inode);
297 dprintk("nfs_get_root: get root dentry failed\n");
298 return ERR_PTR(-ENOMEM);
301 security_d_instantiate(mntroot, inode);
304 mntroot->d_op = server->nfs_client->rpc_ops->dentry_ops;
306 dprintk("<-- nfs4_get_root()\n");
310 #endif /* CONFIG_NFS_V4 */