2 * Copyright (c) 2012 Bryan Schumaker <bjschuma@netapp.com>
4 #include <linux/init.h>
5 #include <linux/module.h>
6 #include <linux/nfs_idmap.h>
7 #include <linux/nfs4_mount.h>
8 #include <linux/nfs_fs.h>
9 #include "delegation.h"
15 #define NFSDBG_FACILITY NFSDBG_VFS
17 static int nfs4_write_inode(struct inode
*inode
, struct writeback_control
*wbc
);
18 static void nfs4_evict_inode(struct inode
*inode
);
19 static struct dentry
*nfs4_remote_mount(struct file_system_type
*fs_type
,
20 int flags
, const char *dev_name
, void *raw_data
);
21 static struct dentry
*nfs4_referral_mount(struct file_system_type
*fs_type
,
22 int flags
, const char *dev_name
, void *raw_data
);
23 static struct dentry
*nfs4_remote_referral_mount(struct file_system_type
*fs_type
,
24 int flags
, const char *dev_name
, void *raw_data
);
26 static struct file_system_type nfs4_remote_fs_type
= {
29 .mount
= nfs4_remote_mount
,
30 .kill_sb
= nfs_kill_super
,
31 .fs_flags
= FS_RENAME_DOES_D_MOVE
|FS_REVAL_DOT
|FS_BINARY_MOUNTDATA
,
34 static struct file_system_type nfs4_remote_referral_fs_type
= {
37 .mount
= nfs4_remote_referral_mount
,
38 .kill_sb
= nfs_kill_super
,
39 .fs_flags
= FS_RENAME_DOES_D_MOVE
|FS_REVAL_DOT
|FS_BINARY_MOUNTDATA
,
42 struct file_system_type nfs4_referral_fs_type
= {
45 .mount
= nfs4_referral_mount
,
46 .kill_sb
= nfs_kill_super
,
47 .fs_flags
= FS_RENAME_DOES_D_MOVE
|FS_REVAL_DOT
|FS_BINARY_MOUNTDATA
,
50 static const struct super_operations nfs4_sops
= {
51 .alloc_inode
= nfs_alloc_inode
,
52 .destroy_inode
= nfs_destroy_inode
,
53 .write_inode
= nfs4_write_inode
,
54 .drop_inode
= nfs_drop_inode
,
55 .put_super
= nfs_put_super
,
57 .evict_inode
= nfs4_evict_inode
,
58 .umount_begin
= nfs_umount_begin
,
59 .show_options
= nfs_show_options
,
60 .show_devname
= nfs_show_devname
,
61 .show_path
= nfs_show_path
,
62 .show_stats
= nfs_show_stats
,
63 .remount_fs
= nfs_remount
,
66 struct nfs_subversion nfs_v4
= {
68 .nfs_fs
= &nfs4_fs_type
,
69 .rpc_vers
= &nfs_version4
,
70 .rpc_ops
= &nfs_v4_clientops
,
72 .xattr
= nfs4_xattr_handlers
,
75 static int nfs4_write_inode(struct inode
*inode
, struct writeback_control
*wbc
)
77 int ret
= nfs_write_inode(inode
, wbc
);
79 if (ret
>= 0 && test_bit(NFS_INO_LAYOUTCOMMIT
, &NFS_I(inode
)->flags
)) {
83 if (wbc
->sync_mode
== WB_SYNC_NONE
)
86 status
= pnfs_layoutcommit_inode(inode
, sync
);
94 * Clean out any remaining NFSv4 state that might be left over due
95 * to open() calls that passed nfs_atomic_lookup, but failed to call
98 static void nfs4_evict_inode(struct inode
*inode
)
100 truncate_inode_pages(&inode
->i_data
, 0);
102 pnfs_return_layout(inode
);
103 pnfs_destroy_layout(NFS_I(inode
));
104 /* If we are holding a delegation, return it! */
105 nfs_inode_return_delegation_noreclaim(inode
);
106 /* First call standard NFS clear_inode() code */
107 nfs_clear_inode(inode
);
111 * Get the superblock for the NFS4 root partition
113 static struct dentry
*
114 nfs4_remote_mount(struct file_system_type
*fs_type
, int flags
,
115 const char *dev_name
, void *info
)
117 struct nfs_mount_info
*mount_info
= info
;
118 struct nfs_server
*server
;
119 struct dentry
*mntroot
= ERR_PTR(-ENOMEM
);
121 mount_info
->set_security
= nfs_set_sb_security
;
123 /* Get a volume representation */
124 server
= nfs4_create_server(mount_info
, &nfs_v4
);
125 if (IS_ERR(server
)) {
126 mntroot
= ERR_CAST(server
);
130 mntroot
= nfs_fs_mount_common(server
, flags
, dev_name
, mount_info
, &nfs_v4
);
136 static struct vfsmount
*nfs_do_root_mount(struct file_system_type
*fs_type
,
137 int flags
, void *data
, const char *hostname
)
139 struct vfsmount
*root_mnt
;
143 len
= strlen(hostname
) + 5;
144 root_devname
= kmalloc(len
, GFP_KERNEL
);
145 if (root_devname
== NULL
)
146 return ERR_PTR(-ENOMEM
);
147 /* Does hostname needs to be enclosed in brackets? */
148 if (strchr(hostname
, ':'))
149 snprintf(root_devname
, len
, "[%s]:/", hostname
);
151 snprintf(root_devname
, len
, "%s:/", hostname
);
152 root_mnt
= vfs_kern_mount(fs_type
, flags
, root_devname
, data
);
157 struct nfs_referral_count
{
158 struct list_head list
;
159 const struct task_struct
*task
;
160 unsigned int referral_count
;
163 static LIST_HEAD(nfs_referral_count_list
);
164 static DEFINE_SPINLOCK(nfs_referral_count_list_lock
);
166 static struct nfs_referral_count
*nfs_find_referral_count(void)
168 struct nfs_referral_count
*p
;
170 list_for_each_entry(p
, &nfs_referral_count_list
, list
) {
171 if (p
->task
== current
)
177 #define NFS_MAX_NESTED_REFERRALS 2
179 static int nfs_referral_loop_protect(void)
181 struct nfs_referral_count
*p
, *new;
184 new = kmalloc(sizeof(*new), GFP_KERNEL
);
188 new->referral_count
= 1;
191 spin_lock(&nfs_referral_count_list_lock
);
192 p
= nfs_find_referral_count();
194 if (p
->referral_count
>= NFS_MAX_NESTED_REFERRALS
)
199 list_add(&new->list
, &nfs_referral_count_list
);
202 spin_unlock(&nfs_referral_count_list_lock
);
208 static void nfs_referral_loop_unprotect(void)
210 struct nfs_referral_count
*p
;
212 spin_lock(&nfs_referral_count_list_lock
);
213 p
= nfs_find_referral_count();
215 if (p
->referral_count
== 0)
219 spin_unlock(&nfs_referral_count_list_lock
);
223 static struct dentry
*nfs_follow_remote_path(struct vfsmount
*root_mnt
,
224 const char *export_path
)
226 struct dentry
*dentry
;
229 if (IS_ERR(root_mnt
))
230 return ERR_CAST(root_mnt
);
232 err
= nfs_referral_loop_protect();
238 dentry
= mount_subtree(root_mnt
, export_path
);
239 nfs_referral_loop_unprotect();
244 struct dentry
*nfs4_try_mount(int flags
, const char *dev_name
,
245 struct nfs_mount_info
*mount_info
,
246 struct nfs_subversion
*nfs_mod
)
249 struct vfsmount
*root_mnt
;
251 struct nfs_parsed_mount_data
*data
= mount_info
->parsed
;
253 dfprintk(MOUNT
, "--> nfs4_try_mount()\n");
255 export_path
= data
->nfs_server
.export_path
;
256 data
->nfs_server
.export_path
= "/";
257 root_mnt
= nfs_do_root_mount(&nfs4_remote_fs_type
, flags
, mount_info
,
258 data
->nfs_server
.hostname
);
259 data
->nfs_server
.export_path
= export_path
;
261 res
= nfs_follow_remote_path(root_mnt
, export_path
);
263 dfprintk(MOUNT
, "<-- nfs4_try_mount() = %ld%s\n",
264 IS_ERR(res
) ? PTR_ERR(res
) : 0,
265 IS_ERR(res
) ? " [error]" : "");
269 static struct dentry
*
270 nfs4_remote_referral_mount(struct file_system_type
*fs_type
, int flags
,
271 const char *dev_name
, void *raw_data
)
273 struct nfs_mount_info mount_info
= {
274 .fill_super
= nfs_fill_super
,
275 .set_security
= nfs_clone_sb_security
,
278 struct nfs_server
*server
;
279 struct dentry
*mntroot
= ERR_PTR(-ENOMEM
);
281 dprintk("--> nfs4_referral_get_sb()\n");
283 mount_info
.mntfh
= nfs_alloc_fhandle();
284 if (mount_info
.cloned
== NULL
|| mount_info
.mntfh
== NULL
)
287 /* create a new volume representation */
288 server
= nfs4_create_referral_server(mount_info
.cloned
, mount_info
.mntfh
);
289 if (IS_ERR(server
)) {
290 mntroot
= ERR_CAST(server
);
294 mntroot
= nfs_fs_mount_common(server
, flags
, dev_name
, &mount_info
, &nfs_v4
);
296 nfs_free_fhandle(mount_info
.mntfh
);
301 * Create an NFS4 server record on referral traversal
303 static struct dentry
*nfs4_referral_mount(struct file_system_type
*fs_type
,
304 int flags
, const char *dev_name
, void *raw_data
)
306 struct nfs_clone_mount
*data
= raw_data
;
308 struct vfsmount
*root_mnt
;
311 dprintk("--> nfs4_referral_mount()\n");
313 export_path
= data
->mnt_path
;
314 data
->mnt_path
= "/";
316 root_mnt
= nfs_do_root_mount(&nfs4_remote_referral_fs_type
,
317 flags
, data
, data
->hostname
);
318 data
->mnt_path
= export_path
;
320 res
= nfs_follow_remote_path(root_mnt
, export_path
);
321 dprintk("<-- nfs4_referral_mount() = %ld%s\n",
322 IS_ERR(res
) ? PTR_ERR(res
) : 0,
323 IS_ERR(res
) ? " [error]" : "");
328 static int __init
init_nfs_v4(void)
332 err
= nfs_idmap_init();
336 err
= nfs4_register_sysctl();
340 register_nfs_version(&nfs_v4
);
348 static void __exit
exit_nfs_v4(void)
350 unregister_nfs_version(&nfs_v4
);
351 nfs4_unregister_sysctl();
355 MODULE_LICENSE("GPL");
357 module_init(init_nfs_v4
);
358 module_exit(exit_nfs_v4
);