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/module.h>
11 #include <linux/dcache.h>
12 #include <linux/gfp.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>
19 #include <linux/sunrpc/gss_api.h>
22 #define NFSDBG_FACILITY NFSDBG_VFS
24 static void nfs_expire_automounts(struct work_struct
*work
);
26 static LIST_HEAD(nfs_automount_list
);
27 static DECLARE_DELAYED_WORK(nfs_automount_task
, nfs_expire_automounts
);
28 int nfs_mountpoint_expiry_timeout
= 500 * HZ
;
31 * nfs_path - reconstruct the path given an arbitrary dentry
32 * @base - used to return pointer to the end of devname part of path
33 * @dentry - pointer to dentry
34 * @buffer - result buffer
35 * @buflen - length of buffer
36 * @flags - options (see below)
38 * Helper function for constructing the server pathname
39 * by arbitrary hashed dentry.
41 * This is mainly for use in figuring out the path on the
42 * server side when automounting on top of an existing partition
43 * and in generating /proc/mounts and friends.
46 * NFS_PATH_CANONICAL: ensure there is exactly one slash after
47 * the original device (export) name
48 * (if unset, the original name is returned verbatim)
50 char *nfs_path(char **p
, struct dentry
*dentry
, char *buffer
, ssize_t buflen
,
63 seq
= read_seqbegin(&rename_lock
);
66 spin_lock(&dentry
->d_lock
);
69 namelen
= dentry
->d_name
.len
;
70 buflen
-= namelen
+ 1;
74 memcpy(end
, dentry
->d_name
.name
, namelen
);
76 spin_unlock(&dentry
->d_lock
);
77 dentry
= dentry
->d_parent
;
79 if (read_seqretry(&rename_lock
, seq
)) {
80 spin_unlock(&dentry
->d_lock
);
84 if ((flags
& NFS_PATH_CANONICAL
) && *end
!= '/') {
86 spin_unlock(&dentry
->d_lock
);
93 base
= dentry
->d_fsdata
;
95 spin_unlock(&dentry
->d_lock
);
100 namelen
= strlen(base
);
101 if (flags
& NFS_PATH_CANONICAL
) {
102 /* Strip off excess slashes in base string */
103 while (namelen
> 0 && base
[namelen
- 1] == '/')
108 spin_unlock(&dentry
->d_lock
);
113 memcpy(end
, base
, namelen
);
114 spin_unlock(&dentry
->d_lock
);
118 spin_unlock(&dentry
->d_lock
);
120 if (read_seqretry(&rename_lock
, seq
))
123 return ERR_PTR(-ENAMETOOLONG
);
125 EXPORT_SYMBOL_GPL(nfs_path
);
128 * nfs_d_automount - Handle crossing a mountpoint on the server
129 * @path - The mountpoint
131 * When we encounter a mountpoint on the server, we want to set up
132 * a mountpoint on the client too, to prevent inode numbers from
133 * colliding, and to allow "df" to work properly.
134 * On NFSv4, we also want to allow for the fact that different
135 * filesystems may be migrated to different servers in a failover
136 * situation, and that different filesystems may want to use
137 * different security flavours.
139 struct vfsmount
*nfs_d_automount(struct path
*path
)
141 struct vfsmount
*mnt
;
142 struct nfs_server
*server
= NFS_SERVER(path
->dentry
->d_inode
);
143 struct nfs_fh
*fh
= NULL
;
144 struct nfs_fattr
*fattr
= NULL
;
146 dprintk("--> nfs_d_automount()\n");
148 mnt
= ERR_PTR(-ESTALE
);
149 if (IS_ROOT(path
->dentry
))
152 mnt
= ERR_PTR(-ENOMEM
);
153 fh
= nfs_alloc_fhandle();
154 fattr
= nfs_alloc_fattr();
155 if (fh
== NULL
|| fattr
== NULL
)
158 dprintk("%s: enter\n", __func__
);
160 mnt
= server
->nfs_client
->rpc_ops
->submount(server
, path
->dentry
, fh
, fattr
);
164 dprintk("%s: done, success\n", __func__
);
165 mntget(mnt
); /* prevent immediate expiration */
166 mnt_set_expiry(mnt
, &nfs_automount_list
);
167 schedule_delayed_work(&nfs_automount_task
, nfs_mountpoint_expiry_timeout
);
170 nfs_free_fattr(fattr
);
171 nfs_free_fhandle(fh
);
174 dprintk("<-- %s(): error %ld\n", __func__
, PTR_ERR(mnt
));
176 dprintk("<-- %s() = %p\n", __func__
, mnt
);
181 nfs_namespace_getattr(struct vfsmount
*mnt
, struct dentry
*dentry
, struct kstat
*stat
)
183 if (NFS_FH(dentry
->d_inode
)->size
!= 0)
184 return nfs_getattr(mnt
, dentry
, stat
);
185 generic_fillattr(dentry
->d_inode
, stat
);
190 nfs_namespace_setattr(struct dentry
*dentry
, struct iattr
*attr
)
192 if (NFS_FH(dentry
->d_inode
)->size
!= 0)
193 return nfs_setattr(dentry
, attr
);
197 const struct inode_operations nfs_mountpoint_inode_operations
= {
198 .getattr
= nfs_getattr
,
199 .setattr
= nfs_setattr
,
202 const struct inode_operations nfs_referral_inode_operations
= {
203 .getattr
= nfs_namespace_getattr
,
204 .setattr
= nfs_namespace_setattr
,
207 static void nfs_expire_automounts(struct work_struct
*work
)
209 struct list_head
*list
= &nfs_automount_list
;
211 mark_mounts_for_expiry(list
);
212 if (!list_empty(list
))
213 schedule_delayed_work(&nfs_automount_task
, nfs_mountpoint_expiry_timeout
);
216 void nfs_release_automount_timer(void)
218 if (list_empty(&nfs_automount_list
))
219 cancel_delayed_work(&nfs_automount_task
);
223 * Clone a mountpoint of the appropriate type
225 static struct vfsmount
*nfs_do_clone_mount(struct nfs_server
*server
,
227 struct nfs_clone_mount
*mountdata
)
229 return vfs_kern_mount(&nfs_xdev_fs_type
, 0, devname
, mountdata
);
233 * nfs_do_submount - set up mountpoint when crossing a filesystem boundary
234 * @dentry - parent directory
235 * @fh - filehandle for new root dentry
236 * @fattr - attributes for new root inode
237 * @authflavor - security flavor to use when performing the mount
240 struct vfsmount
*nfs_do_submount(struct dentry
*dentry
, struct nfs_fh
*fh
,
241 struct nfs_fattr
*fattr
, rpc_authflavor_t authflavor
)
243 struct nfs_clone_mount mountdata
= {
248 .authflavor
= authflavor
,
250 struct vfsmount
*mnt
= ERR_PTR(-ENOMEM
);
251 char *page
= (char *) __get_free_page(GFP_USER
);
254 dprintk("--> nfs_do_submount()\n");
256 dprintk("%s: submounting on %s/%s\n", __func__
,
257 dentry
->d_parent
->d_name
.name
,
258 dentry
->d_name
.name
);
261 devname
= nfs_devname(dentry
, page
, PAGE_SIZE
);
262 mnt
= (struct vfsmount
*)devname
;
265 mnt
= nfs_do_clone_mount(NFS_SB(dentry
->d_sb
), devname
, &mountdata
);
267 free_page((unsigned long)page
);
269 dprintk("%s: done\n", __func__
);
271 dprintk("<-- nfs_do_submount() = %p\n", mnt
);
274 EXPORT_SYMBOL_GPL(nfs_do_submount
);
276 struct vfsmount
*nfs_submount(struct nfs_server
*server
, struct dentry
*dentry
,
277 struct nfs_fh
*fh
, struct nfs_fattr
*fattr
)
280 struct dentry
*parent
= dget_parent(dentry
);
282 /* Look it up again to get its attributes */
283 err
= server
->nfs_client
->rpc_ops
->lookup(parent
->d_inode
, &dentry
->d_name
, fh
, fattr
);
288 return nfs_do_submount(dentry
, fh
, fattr
, server
->client
->cl_auth
->au_flavor
);
290 EXPORT_SYMBOL_GPL(nfs_submount
);