2 * linux/fs/nfs/namespace.c
4 * Copyright (C) 2005 Trond Myklebust <Trond.Myklebust@netapp.com>
5 * - Modified by David Howells <dhowells@redhat.com>
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>
19 #define NFSDBG_FACILITY NFSDBG_VFS
21 static void nfs_expire_automounts(struct work_struct
*work
);
23 static LIST_HEAD(nfs_automount_list
);
24 static DECLARE_DELAYED_WORK(nfs_automount_task
, nfs_expire_automounts
);
25 int nfs_mountpoint_expiry_timeout
= 500 * HZ
;
27 static struct vfsmount
*nfs_do_submount(const struct vfsmount
*mnt_parent
,
28 const struct dentry
*dentry
,
30 struct nfs_fattr
*fattr
);
33 * nfs_path - reconstruct the path given an arbitrary dentry
34 * @base - arbitrary string to prepend to the path
35 * @droot - pointer to root dentry for mountpoint
36 * @dentry - pointer to dentry
37 * @buffer - result buffer
38 * @buflen - length of buffer
40 * Helper function for constructing the path from the
41 * root dentry to an arbitrary hashed dentry.
43 * This is mainly for use in figuring out the path on the
44 * server side when automounting on top of an existing partition.
46 char *nfs_path(const char *base
,
47 const struct dentry
*droot
,
48 const struct dentry
*dentry
,
49 char *buffer
, ssize_t buflen
)
51 char *end
= buffer
+buflen
;
56 spin_lock(&dcache_lock
);
57 while (!IS_ROOT(dentry
) && dentry
!= droot
) {
58 namelen
= dentry
->d_name
.len
;
59 buflen
-= namelen
+ 1;
63 memcpy(end
, dentry
->d_name
.name
, namelen
);
65 dentry
= dentry
->d_parent
;
67 spin_unlock(&dcache_lock
);
73 namelen
= strlen(base
);
74 /* Strip off excess slashes in base string */
75 while (namelen
> 0 && base
[namelen
- 1] == '/')
81 memcpy(end
, base
, namelen
);
84 spin_unlock(&dcache_lock
);
86 return ERR_PTR(-ENAMETOOLONG
);
90 * nfs_follow_mountpoint - handle crossing a mountpoint on the server
91 * @dentry - dentry of mountpoint
92 * @nd - nameidata info
94 * When we encounter a mountpoint on the server, we want to set up
95 * a mountpoint on the client too, to prevent inode numbers from
96 * colliding, and to allow "df" to work properly.
97 * On NFSv4, we also want to allow for the fact that different
98 * filesystems may be migrated to different servers in a failover
99 * situation, and that different filesystems may want to use
100 * different security flavours.
102 static void * nfs_follow_mountpoint(struct dentry
*dentry
, struct nameidata
*nd
)
104 struct vfsmount
*mnt
;
105 struct nfs_server
*server
= NFS_SERVER(dentry
->d_inode
);
106 struct dentry
*parent
;
108 struct nfs_fattr fattr
;
111 dprintk("--> nfs_follow_mountpoint()\n");
117 dprintk("%s: enter\n", __func__
);
118 dput(nd
->path
.dentry
);
119 nd
->path
.dentry
= dget(dentry
);
121 /* Look it up again */
122 parent
= dget_parent(nd
->path
.dentry
);
123 err
= server
->nfs_client
->rpc_ops
->lookup(parent
->d_inode
,
124 &nd
->path
.dentry
->d_name
,
130 if (fattr
.valid
& NFS_ATTR_FATTR_V4_REFERRAL
)
131 mnt
= nfs_do_refmount(nd
->path
.mnt
, nd
->path
.dentry
);
133 mnt
= nfs_do_submount(nd
->path
.mnt
, nd
->path
.dentry
, &fh
,
140 err
= do_add_mount(mnt
, &nd
->path
, nd
->path
.mnt
->mnt_flags
|MNT_SHRINKABLE
,
141 &nfs_automount_list
);
150 nd
->path
.dentry
= dget(mnt
->mnt_root
);
151 schedule_delayed_work(&nfs_automount_task
, nfs_mountpoint_expiry_timeout
);
153 dprintk("%s: done, returned %d\n", __func__
, err
);
155 dprintk("<-- nfs_follow_mountpoint() = %d\n", err
);
161 while (d_mountpoint(nd
->path
.dentry
) &&
162 follow_down(&nd
->path
))
168 const struct inode_operations nfs_mountpoint_inode_operations
= {
169 .follow_link
= nfs_follow_mountpoint
,
170 .getattr
= nfs_getattr
,
173 const struct inode_operations nfs_referral_inode_operations
= {
174 .follow_link
= nfs_follow_mountpoint
,
177 static void nfs_expire_automounts(struct work_struct
*work
)
179 struct list_head
*list
= &nfs_automount_list
;
181 mark_mounts_for_expiry(list
);
182 if (!list_empty(list
))
183 schedule_delayed_work(&nfs_automount_task
, nfs_mountpoint_expiry_timeout
);
186 void nfs_release_automount_timer(void)
188 if (list_empty(&nfs_automount_list
))
189 cancel_delayed_work(&nfs_automount_task
);
193 * Clone a mountpoint of the appropriate type
195 static struct vfsmount
*nfs_do_clone_mount(struct nfs_server
*server
,
197 struct nfs_clone_mount
*mountdata
)
200 struct vfsmount
*mnt
= ERR_PTR(-EINVAL
);
201 switch (server
->nfs_client
->rpc_ops
->version
) {
204 mnt
= vfs_kern_mount(&nfs_xdev_fs_type
, 0, devname
, mountdata
);
207 mnt
= vfs_kern_mount(&nfs4_xdev_fs_type
, 0, devname
, mountdata
);
211 return vfs_kern_mount(&nfs_xdev_fs_type
, 0, devname
, mountdata
);
216 * nfs_do_submount - set up mountpoint when crossing a filesystem boundary
217 * @mnt_parent - mountpoint of parent directory
218 * @dentry - parent directory
219 * @fh - filehandle for new root dentry
220 * @fattr - attributes for new root inode
223 static struct vfsmount
*nfs_do_submount(const struct vfsmount
*mnt_parent
,
224 const struct dentry
*dentry
,
226 struct nfs_fattr
*fattr
)
228 struct nfs_clone_mount mountdata
= {
229 .sb
= mnt_parent
->mnt_sb
,
234 struct vfsmount
*mnt
= ERR_PTR(-ENOMEM
);
235 char *page
= (char *) __get_free_page(GFP_USER
);
238 dprintk("--> nfs_do_submount()\n");
240 dprintk("%s: submounting on %s/%s\n", __func__
,
241 dentry
->d_parent
->d_name
.name
,
242 dentry
->d_name
.name
);
245 devname
= nfs_devname(mnt_parent
, dentry
, page
, PAGE_SIZE
);
246 mnt
= (struct vfsmount
*)devname
;
249 mnt
= nfs_do_clone_mount(NFS_SB(mnt_parent
->mnt_sb
), devname
, &mountdata
);
251 free_page((unsigned long)page
);
253 dprintk("%s: done\n", __func__
);
255 dprintk("<-- nfs_do_submount() = %p\n", mnt
);