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_in - pointer to dentry
34 * @buffer - result buffer
35 * @buflen_in - 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_in
, char *buffer
,
51 ssize_t buflen_in
, unsigned flags
)
57 struct dentry
*dentry
;
67 seq
= read_seqbegin(&rename_lock
);
70 spin_lock(&dentry
->d_lock
);
73 namelen
= dentry
->d_name
.len
;
74 buflen
-= namelen
+ 1;
78 memcpy(end
, dentry
->d_name
.name
, namelen
);
80 spin_unlock(&dentry
->d_lock
);
81 dentry
= dentry
->d_parent
;
83 if (read_seqretry(&rename_lock
, seq
)) {
84 spin_unlock(&dentry
->d_lock
);
88 if ((flags
& NFS_PATH_CANONICAL
) && *end
!= '/') {
90 spin_unlock(&dentry
->d_lock
);
97 base
= dentry
->d_fsdata
;
99 spin_unlock(&dentry
->d_lock
);
104 namelen
= strlen(base
);
106 /* Strip off excess slashes in base string */
107 while (namelen
> 0 && base
[namelen
- 1] == '/')
112 spin_unlock(&dentry
->d_lock
);
117 memcpy(end
, base
, namelen
);
118 spin_unlock(&dentry
->d_lock
);
122 spin_unlock(&dentry
->d_lock
);
124 if (read_seqretry(&rename_lock
, seq
))
127 return ERR_PTR(-ENAMETOOLONG
);
129 EXPORT_SYMBOL_GPL(nfs_path
);
132 * nfs_d_automount - Handle crossing a mountpoint on the server
133 * @path - The mountpoint
135 * When we encounter a mountpoint on the server, we want to set up
136 * a mountpoint on the client too, to prevent inode numbers from
137 * colliding, and to allow "df" to work properly.
138 * On NFSv4, we also want to allow for the fact that different
139 * filesystems may be migrated to different servers in a failover
140 * situation, and that different filesystems may want to use
141 * different security flavours.
143 struct vfsmount
*nfs_d_automount(struct path
*path
)
145 struct vfsmount
*mnt
;
146 struct nfs_server
*server
= NFS_SERVER(d_inode(path
->dentry
));
147 struct nfs_fh
*fh
= NULL
;
148 struct nfs_fattr
*fattr
= NULL
;
150 if (IS_ROOT(path
->dentry
))
151 return ERR_PTR(-ESTALE
);
153 mnt
= ERR_PTR(-ENOMEM
);
154 fh
= nfs_alloc_fhandle();
155 fattr
= nfs_alloc_fattr();
156 if (fh
== NULL
|| fattr
== NULL
)
159 mnt
= server
->nfs_client
->rpc_ops
->submount(server
, path
->dentry
, fh
, fattr
);
163 mntget(mnt
); /* prevent immediate expiration */
164 mnt_set_expiry(mnt
, &nfs_automount_list
);
165 schedule_delayed_work(&nfs_automount_task
, nfs_mountpoint_expiry_timeout
);
168 nfs_free_fattr(fattr
);
169 nfs_free_fhandle(fh
);
174 nfs_namespace_getattr(const struct path
*path
, struct kstat
*stat
,
175 u32 request_mask
, unsigned int query_flags
)
177 if (NFS_FH(d_inode(path
->dentry
))->size
!= 0)
178 return nfs_getattr(path
, stat
, request_mask
, query_flags
);
179 generic_fillattr(d_inode(path
->dentry
), stat
);
184 nfs_namespace_setattr(struct dentry
*dentry
, struct iattr
*attr
)
186 if (NFS_FH(d_inode(dentry
))->size
!= 0)
187 return nfs_setattr(dentry
, attr
);
191 const struct inode_operations nfs_mountpoint_inode_operations
= {
192 .getattr
= nfs_getattr
,
193 .setattr
= nfs_setattr
,
196 const struct inode_operations nfs_referral_inode_operations
= {
197 .getattr
= nfs_namespace_getattr
,
198 .setattr
= nfs_namespace_setattr
,
201 static void nfs_expire_automounts(struct work_struct
*work
)
203 struct list_head
*list
= &nfs_automount_list
;
205 mark_mounts_for_expiry(list
);
206 if (!list_empty(list
))
207 schedule_delayed_work(&nfs_automount_task
, nfs_mountpoint_expiry_timeout
);
210 void nfs_release_automount_timer(void)
212 if (list_empty(&nfs_automount_list
))
213 cancel_delayed_work(&nfs_automount_task
);
217 * Clone a mountpoint of the appropriate type
219 static struct vfsmount
*nfs_do_clone_mount(struct nfs_server
*server
,
221 struct nfs_clone_mount
*mountdata
)
223 return vfs_submount(mountdata
->dentry
, &nfs_xdev_fs_type
, devname
, mountdata
);
227 * nfs_do_submount - set up mountpoint when crossing a filesystem boundary
228 * @dentry - parent directory
229 * @fh - filehandle for new root dentry
230 * @fattr - attributes for new root inode
231 * @authflavor - security flavor to use when performing the mount
234 struct vfsmount
*nfs_do_submount(struct dentry
*dentry
, struct nfs_fh
*fh
,
235 struct nfs_fattr
*fattr
, rpc_authflavor_t authflavor
)
237 struct nfs_clone_mount mountdata
= {
242 .authflavor
= authflavor
,
244 struct vfsmount
*mnt
;
245 char *page
= (char *) __get_free_page(GFP_USER
);
249 return ERR_PTR(-ENOMEM
);
251 devname
= nfs_devname(dentry
, page
, PAGE_SIZE
);
253 mnt
= ERR_CAST(devname
);
255 mnt
= nfs_do_clone_mount(NFS_SB(dentry
->d_sb
), devname
, &mountdata
);
257 free_page((unsigned long)page
);
260 EXPORT_SYMBOL_GPL(nfs_do_submount
);
262 struct vfsmount
*nfs_submount(struct nfs_server
*server
, struct dentry
*dentry
,
263 struct nfs_fh
*fh
, struct nfs_fattr
*fattr
)
266 struct dentry
*parent
= dget_parent(dentry
);
268 /* Look it up again to get its attributes */
269 err
= server
->nfs_client
->rpc_ops
->lookup(d_inode(parent
), &dentry
->d_name
, fh
, fattr
, NULL
);
274 return nfs_do_submount(dentry
, fh
, fattr
, server
->client
->cl_auth
->au_flavor
);
276 EXPORT_SYMBOL_GPL(nfs_submount
);