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/config.h>
12 #include <linux/dcache.h>
13 #include <linux/mount.h>
14 #include <linux/namei.h>
15 #include <linux/nfs_fs.h>
16 #include <linux/string.h>
17 #include <linux/sunrpc/clnt.h>
18 #include <linux/vfs.h>
21 #define NFSDBG_FACILITY NFSDBG_VFS
23 static void nfs_expire_automounts(void *list
);
25 LIST_HEAD(nfs_automount_list
);
26 static DECLARE_WORK(nfs_automount_task
, nfs_expire_automounts
, &nfs_automount_list
);
27 int nfs_mountpoint_expiry_timeout
= 500 * HZ
;
29 static struct vfsmount
*nfs_do_submount(const struct vfsmount
*mnt_parent
,
30 const struct dentry
*dentry
,
32 struct nfs_fattr
*fattr
);
35 * nfs_path - reconstruct the path given an arbitrary dentry
36 * @base - arbitrary string to prepend to the path
37 * @droot - pointer to root dentry for mountpoint
38 * @dentry - pointer to dentry
39 * @buffer - result buffer
40 * @buflen - length of buffer
42 * Helper function for constructing the path from the
43 * root dentry to an arbitrary hashed dentry.
45 * This is mainly for use in figuring out the path on the
46 * server side when automounting on top of an existing partition.
48 char *nfs_path(const char *base
,
49 const struct dentry
*droot
,
50 const struct dentry
*dentry
,
51 char *buffer
, ssize_t buflen
)
53 char *end
= buffer
+buflen
;
58 spin_lock(&dcache_lock
);
59 while (!IS_ROOT(dentry
) && dentry
!= droot
) {
60 namelen
= dentry
->d_name
.len
;
61 buflen
-= namelen
+ 1;
65 memcpy(end
, dentry
->d_name
.name
, namelen
);
67 dentry
= dentry
->d_parent
;
69 spin_unlock(&dcache_lock
);
70 namelen
= strlen(base
);
71 /* Strip off excess slashes in base string */
72 while (namelen
> 0 && base
[namelen
- 1] == '/')
78 memcpy(end
, base
, namelen
);
81 spin_unlock(&dcache_lock
);
83 return ERR_PTR(-ENAMETOOLONG
);
87 * nfs_follow_mountpoint - handle crossing a mountpoint on the server
88 * @dentry - dentry of mountpoint
89 * @nd - nameidata info
91 * When we encounter a mountpoint on the server, we want to set up
92 * a mountpoint on the client too, to prevent inode numbers from
93 * colliding, and to allow "df" to work properly.
94 * On NFSv4, we also want to allow for the fact that different
95 * filesystems may be migrated to different servers in a failover
96 * situation, and that different filesystems may want to use
97 * different security flavours.
99 static void * nfs_follow_mountpoint(struct dentry
*dentry
, struct nameidata
*nd
)
101 struct vfsmount
*mnt
;
102 struct nfs_server
*server
= NFS_SERVER(dentry
->d_inode
);
103 struct dentry
*parent
;
105 struct nfs_fattr fattr
;
108 dprintk("--> nfs_follow_mountpoint()\n");
110 BUG_ON(IS_ROOT(dentry
));
111 dprintk("%s: enter\n", __FUNCTION__
);
113 nd
->dentry
= dget(dentry
);
115 /* Look it up again */
116 parent
= dget_parent(nd
->dentry
);
117 err
= server
->nfs_client
->rpc_ops
->lookup(parent
->d_inode
,
124 if (fattr
.valid
& NFS_ATTR_FATTR_V4_REFERRAL
)
125 mnt
= nfs_do_refmount(nd
->mnt
, nd
->dentry
);
127 mnt
= nfs_do_submount(nd
->mnt
, nd
->dentry
, &fh
, &fattr
);
133 err
= do_add_mount(mnt
, nd
, nd
->mnt
->mnt_flags
|MNT_SHRINKABLE
, &nfs_automount_list
);
143 nd
->dentry
= dget(mnt
->mnt_root
);
144 schedule_delayed_work(&nfs_automount_task
, nfs_mountpoint_expiry_timeout
);
146 dprintk("%s: done, returned %d\n", __FUNCTION__
, err
);
148 dprintk("<-- nfs_follow_mountpoint() = %d\n", err
);
154 while(d_mountpoint(nd
->dentry
) && follow_down(&nd
->mnt
, &nd
->dentry
))
160 struct inode_operations nfs_mountpoint_inode_operations
= {
161 .follow_link
= nfs_follow_mountpoint
,
162 .getattr
= nfs_getattr
,
165 struct inode_operations nfs_referral_inode_operations
= {
166 .follow_link
= nfs_follow_mountpoint
,
169 static void nfs_expire_automounts(void *data
)
171 struct list_head
*list
= (struct list_head
*)data
;
173 mark_mounts_for_expiry(list
);
174 if (!list_empty(list
))
175 schedule_delayed_work(&nfs_automount_task
, nfs_mountpoint_expiry_timeout
);
178 void nfs_release_automount_timer(void)
180 if (list_empty(&nfs_automount_list
)) {
181 cancel_delayed_work(&nfs_automount_task
);
182 flush_scheduled_work();
187 * Clone a mountpoint of the appropriate type
189 static struct vfsmount
*nfs_do_clone_mount(struct nfs_server
*server
,
191 struct nfs_clone_mount
*mountdata
)
194 struct vfsmount
*mnt
= NULL
;
195 switch (server
->nfs_client
->cl_nfsversion
) {
198 mnt
= vfs_kern_mount(&nfs_xdev_fs_type
, 0, devname
, mountdata
);
201 mnt
= vfs_kern_mount(&nfs4_xdev_fs_type
, 0, devname
, mountdata
);
205 return vfs_kern_mount(&nfs_xdev_fs_type
, 0, devname
, mountdata
);
210 * nfs_do_submount - set up mountpoint when crossing a filesystem boundary
211 * @mnt_parent - mountpoint of parent directory
212 * @dentry - parent directory
213 * @fh - filehandle for new root dentry
214 * @fattr - attributes for new root inode
217 static struct vfsmount
*nfs_do_submount(const struct vfsmount
*mnt_parent
,
218 const struct dentry
*dentry
,
220 struct nfs_fattr
*fattr
)
222 struct nfs_clone_mount mountdata
= {
223 .sb
= mnt_parent
->mnt_sb
,
228 struct vfsmount
*mnt
= ERR_PTR(-ENOMEM
);
229 char *page
= (char *) __get_free_page(GFP_USER
);
232 dprintk("--> nfs_do_submount()\n");
234 dprintk("%s: submounting on %s/%s\n", __FUNCTION__
,
235 dentry
->d_parent
->d_name
.name
,
236 dentry
->d_name
.name
);
239 devname
= nfs_devname(mnt_parent
, dentry
, page
, PAGE_SIZE
);
240 mnt
= (struct vfsmount
*)devname
;
243 mnt
= nfs_do_clone_mount(NFS_SB(mnt_parent
->mnt_sb
), devname
, &mountdata
);
245 free_page((unsigned long)page
);
247 dprintk("%s: done\n", __FUNCTION__
);
249 dprintk("<-- nfs_do_submount() = %p\n", mnt
);