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
);
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(d_inode(path
->dentry
));
143 struct nfs_fh
*fh
= NULL
;
144 struct nfs_fattr
*fattr
= NULL
;
146 if (IS_ROOT(path
->dentry
))
147 return ERR_PTR(-ESTALE
);
149 mnt
= ERR_PTR(-ENOMEM
);
150 fh
= nfs_alloc_fhandle();
151 fattr
= nfs_alloc_fattr();
152 if (fh
== NULL
|| fattr
== NULL
)
155 mnt
= server
->nfs_client
->rpc_ops
->submount(server
, path
->dentry
, fh
, fattr
);
159 mntget(mnt
); /* prevent immediate expiration */
160 mnt_set_expiry(mnt
, &nfs_automount_list
);
161 schedule_delayed_work(&nfs_automount_task
, nfs_mountpoint_expiry_timeout
);
164 nfs_free_fattr(fattr
);
165 nfs_free_fhandle(fh
);
170 nfs_namespace_getattr(const struct path
*path
, struct kstat
*stat
,
171 u32 request_mask
, unsigned int query_flags
)
173 if (NFS_FH(d_inode(path
->dentry
))->size
!= 0)
174 return nfs_getattr(path
, stat
, request_mask
, query_flags
);
175 generic_fillattr(d_inode(path
->dentry
), stat
);
180 nfs_namespace_setattr(struct dentry
*dentry
, struct iattr
*attr
)
182 if (NFS_FH(d_inode(dentry
))->size
!= 0)
183 return nfs_setattr(dentry
, attr
);
187 const struct inode_operations nfs_mountpoint_inode_operations
= {
188 .getattr
= nfs_getattr
,
189 .setattr
= nfs_setattr
,
192 const struct inode_operations nfs_referral_inode_operations
= {
193 .getattr
= nfs_namespace_getattr
,
194 .setattr
= nfs_namespace_setattr
,
197 static void nfs_expire_automounts(struct work_struct
*work
)
199 struct list_head
*list
= &nfs_automount_list
;
201 mark_mounts_for_expiry(list
);
202 if (!list_empty(list
))
203 schedule_delayed_work(&nfs_automount_task
, nfs_mountpoint_expiry_timeout
);
206 void nfs_release_automount_timer(void)
208 if (list_empty(&nfs_automount_list
))
209 cancel_delayed_work(&nfs_automount_task
);
213 * Clone a mountpoint of the appropriate type
215 static struct vfsmount
*nfs_do_clone_mount(struct nfs_server
*server
,
217 struct nfs_clone_mount
*mountdata
)
219 return vfs_submount(mountdata
->dentry
, &nfs_xdev_fs_type
, devname
, mountdata
);
223 * nfs_do_submount - set up mountpoint when crossing a filesystem boundary
224 * @dentry - parent directory
225 * @fh - filehandle for new root dentry
226 * @fattr - attributes for new root inode
227 * @authflavor - security flavor to use when performing the mount
230 struct vfsmount
*nfs_do_submount(struct dentry
*dentry
, struct nfs_fh
*fh
,
231 struct nfs_fattr
*fattr
, rpc_authflavor_t authflavor
)
233 struct nfs_clone_mount mountdata
= {
238 .authflavor
= authflavor
,
240 struct vfsmount
*mnt
;
241 char *page
= (char *) __get_free_page(GFP_USER
);
245 return ERR_PTR(-ENOMEM
);
247 devname
= nfs_devname(dentry
, page
, PAGE_SIZE
);
249 mnt
= ERR_CAST(devname
);
251 mnt
= nfs_do_clone_mount(NFS_SB(dentry
->d_sb
), devname
, &mountdata
);
253 free_page((unsigned long)page
);
256 EXPORT_SYMBOL_GPL(nfs_do_submount
);
258 struct vfsmount
*nfs_submount(struct nfs_server
*server
, struct dentry
*dentry
,
259 struct nfs_fh
*fh
, struct nfs_fattr
*fattr
)
262 struct dentry
*parent
= dget_parent(dentry
);
264 /* Look it up again to get its attributes */
265 err
= server
->nfs_client
->rpc_ops
->lookup(d_inode(parent
), &dentry
->d_name
, fh
, fattr
, NULL
);
270 return nfs_do_submount(dentry
, fh
, fattr
, server
->client
->cl_auth
->au_flavor
);
272 EXPORT_SYMBOL_GPL(nfs_submount
);