2 * Copyright (c) 2012 Bryan Schumaker <bjschuma@netapp.com>
4 #include <linux/init.h>
5 #include <linux/module.h>
6 #include <linux/nfs4_mount.h>
7 #include <linux/nfs_fs.h>
8 #include "delegation.h"
11 #include "nfs4idmap.h"
12 #include "dns_resolve.h"
16 #define NFSDBG_FACILITY NFSDBG_VFS
18 static int nfs4_write_inode(struct inode
*inode
, struct writeback_control
*wbc
);
19 static void nfs4_evict_inode(struct inode
*inode
);
20 static struct dentry
*nfs4_remote_mount(struct file_system_type
*fs_type
,
21 int flags
, const char *dev_name
, void *raw_data
);
22 static struct dentry
*nfs4_referral_mount(struct file_system_type
*fs_type
,
23 int flags
, const char *dev_name
, void *raw_data
);
24 static struct dentry
*nfs4_remote_referral_mount(struct file_system_type
*fs_type
,
25 int flags
, const char *dev_name
, void *raw_data
);
27 static struct file_system_type nfs4_remote_fs_type
= {
30 .mount
= nfs4_remote_mount
,
31 .kill_sb
= nfs_kill_super
,
32 .fs_flags
= FS_RENAME_DOES_D_MOVE
|FS_BINARY_MOUNTDATA
,
35 static struct file_system_type nfs4_remote_referral_fs_type
= {
38 .mount
= nfs4_remote_referral_mount
,
39 .kill_sb
= nfs_kill_super
,
40 .fs_flags
= FS_RENAME_DOES_D_MOVE
|FS_BINARY_MOUNTDATA
,
43 struct file_system_type nfs4_referral_fs_type
= {
46 .mount
= nfs4_referral_mount
,
47 .kill_sb
= nfs_kill_super
,
48 .fs_flags
= FS_RENAME_DOES_D_MOVE
|FS_BINARY_MOUNTDATA
,
51 static const struct super_operations nfs4_sops
= {
52 .alloc_inode
= nfs_alloc_inode
,
53 .destroy_inode
= nfs_destroy_inode
,
54 .write_inode
= nfs4_write_inode
,
55 .drop_inode
= nfs_drop_inode
,
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
);
80 ret
= pnfs_layoutcommit_inode(inode
,
81 wbc
->sync_mode
== WB_SYNC_ALL
);
86 * Clean out any remaining NFSv4 state that might be left over due
87 * to open() calls that passed nfs_atomic_lookup, but failed to call
90 static void nfs4_evict_inode(struct inode
*inode
)
92 truncate_inode_pages_final(&inode
->i_data
);
94 /* If we are holding a delegation, return it! */
95 nfs_inode_return_delegation_noreclaim(inode
);
96 /* Note that above delegreturn would trigger pnfs return-on-close */
97 pnfs_return_layout(inode
);
98 pnfs_destroy_layout(NFS_I(inode
));
99 /* First call standard NFS clear_inode() code */
100 nfs_clear_inode(inode
);
104 * Get the superblock for the NFS4 root partition
106 static struct dentry
*
107 nfs4_remote_mount(struct file_system_type
*fs_type
, int flags
,
108 const char *dev_name
, void *info
)
110 struct nfs_mount_info
*mount_info
= info
;
111 struct nfs_server
*server
;
112 struct dentry
*mntroot
= ERR_PTR(-ENOMEM
);
114 mount_info
->set_security
= nfs_set_sb_security
;
116 /* Get a volume representation */
117 server
= nfs4_create_server(mount_info
, &nfs_v4
);
118 if (IS_ERR(server
)) {
119 mntroot
= ERR_CAST(server
);
123 mntroot
= nfs_fs_mount_common(server
, flags
, dev_name
, mount_info
, &nfs_v4
);
129 static struct vfsmount
*nfs_do_root_mount(struct file_system_type
*fs_type
,
130 int flags
, void *data
, const char *hostname
)
132 struct vfsmount
*root_mnt
;
136 len
= strlen(hostname
) + 5;
137 root_devname
= kmalloc(len
, GFP_KERNEL
);
138 if (root_devname
== NULL
)
139 return ERR_PTR(-ENOMEM
);
140 /* Does hostname needs to be enclosed in brackets? */
141 if (strchr(hostname
, ':'))
142 snprintf(root_devname
, len
, "[%s]:/", hostname
);
144 snprintf(root_devname
, len
, "%s:/", hostname
);
145 root_mnt
= vfs_kern_mount(fs_type
, flags
, root_devname
, data
);
150 struct nfs_referral_count
{
151 struct list_head list
;
152 const struct task_struct
*task
;
153 unsigned int referral_count
;
156 static LIST_HEAD(nfs_referral_count_list
);
157 static DEFINE_SPINLOCK(nfs_referral_count_list_lock
);
159 static struct nfs_referral_count
*nfs_find_referral_count(void)
161 struct nfs_referral_count
*p
;
163 list_for_each_entry(p
, &nfs_referral_count_list
, list
) {
164 if (p
->task
== current
)
170 #define NFS_MAX_NESTED_REFERRALS 2
172 static int nfs_referral_loop_protect(void)
174 struct nfs_referral_count
*p
, *new;
177 new = kmalloc(sizeof(*new), GFP_KERNEL
);
181 new->referral_count
= 1;
184 spin_lock(&nfs_referral_count_list_lock
);
185 p
= nfs_find_referral_count();
187 if (p
->referral_count
>= NFS_MAX_NESTED_REFERRALS
)
192 list_add(&new->list
, &nfs_referral_count_list
);
195 spin_unlock(&nfs_referral_count_list_lock
);
201 static void nfs_referral_loop_unprotect(void)
203 struct nfs_referral_count
*p
;
205 spin_lock(&nfs_referral_count_list_lock
);
206 p
= nfs_find_referral_count();
208 if (p
->referral_count
== 0)
212 spin_unlock(&nfs_referral_count_list_lock
);
216 static struct dentry
*nfs_follow_remote_path(struct vfsmount
*root_mnt
,
217 const char *export_path
)
219 struct dentry
*dentry
;
222 if (IS_ERR(root_mnt
))
223 return ERR_CAST(root_mnt
);
225 err
= nfs_referral_loop_protect();
231 dentry
= mount_subtree(root_mnt
, export_path
);
232 nfs_referral_loop_unprotect();
237 struct dentry
*nfs4_try_mount(int flags
, const char *dev_name
,
238 struct nfs_mount_info
*mount_info
,
239 struct nfs_subversion
*nfs_mod
)
242 struct vfsmount
*root_mnt
;
244 struct nfs_parsed_mount_data
*data
= mount_info
->parsed
;
246 dfprintk(MOUNT
, "--> nfs4_try_mount()\n");
248 export_path
= data
->nfs_server
.export_path
;
249 data
->nfs_server
.export_path
= "/";
250 root_mnt
= nfs_do_root_mount(&nfs4_remote_fs_type
, flags
, mount_info
,
251 data
->nfs_server
.hostname
);
252 data
->nfs_server
.export_path
= export_path
;
254 res
= nfs_follow_remote_path(root_mnt
, export_path
);
256 dfprintk(MOUNT
, "<-- nfs4_try_mount() = %d%s\n",
257 PTR_ERR_OR_ZERO(res
),
258 IS_ERR(res
) ? " [error]" : "");
262 static struct dentry
*
263 nfs4_remote_referral_mount(struct file_system_type
*fs_type
, int flags
,
264 const char *dev_name
, void *raw_data
)
266 struct nfs_mount_info mount_info
= {
267 .fill_super
= nfs_fill_super
,
268 .set_security
= nfs_clone_sb_security
,
271 struct nfs_server
*server
;
272 struct dentry
*mntroot
= ERR_PTR(-ENOMEM
);
274 dprintk("--> nfs4_referral_get_sb()\n");
276 mount_info
.mntfh
= nfs_alloc_fhandle();
277 if (mount_info
.cloned
== NULL
|| mount_info
.mntfh
== NULL
)
280 /* create a new volume representation */
281 server
= nfs4_create_referral_server(mount_info
.cloned
, mount_info
.mntfh
);
282 if (IS_ERR(server
)) {
283 mntroot
= ERR_CAST(server
);
287 mntroot
= nfs_fs_mount_common(server
, flags
, dev_name
, &mount_info
, &nfs_v4
);
289 nfs_free_fhandle(mount_info
.mntfh
);
294 * Create an NFS4 server record on referral traversal
296 static struct dentry
*nfs4_referral_mount(struct file_system_type
*fs_type
,
297 int flags
, const char *dev_name
, void *raw_data
)
299 struct nfs_clone_mount
*data
= raw_data
;
301 struct vfsmount
*root_mnt
;
304 dprintk("--> nfs4_referral_mount()\n");
306 export_path
= data
->mnt_path
;
307 data
->mnt_path
= "/";
309 root_mnt
= nfs_do_root_mount(&nfs4_remote_referral_fs_type
,
310 flags
, data
, data
->hostname
);
311 data
->mnt_path
= export_path
;
313 res
= nfs_follow_remote_path(root_mnt
, export_path
);
314 dprintk("<-- nfs4_referral_mount() = %d%s\n",
315 PTR_ERR_OR_ZERO(res
),
316 IS_ERR(res
) ? " [error]" : "");
321 static int __init
init_nfs_v4(void)
325 err
= nfs_dns_resolver_init();
329 err
= nfs_idmap_init();
333 err
= nfs4_register_sysctl();
337 register_nfs_version(&nfs_v4
);
342 nfs_dns_resolver_destroy();
347 static void __exit
exit_nfs_v4(void)
349 /* Not called in the _init(), conditionally loaded */
350 nfs4_pnfs_v3_ds_connect_unload();
352 unregister_nfs_version(&nfs_v4
);
353 nfs4_unregister_sysctl();
355 nfs_dns_resolver_destroy();
358 MODULE_LICENSE("GPL");
360 module_init(init_nfs_v4
);
361 module_exit(exit_nfs_v4
);