blob: 1475f932d7daabee0312a4e4430e120081266bce [file] [log] [blame]
Thomas Gleixner09c434b2019-05-19 13:08:20 +01001// SPDX-License-Identifier: GPL-2.0-only
Bryan Schumaker129d1972012-07-16 16:39:13 -04002/*
3 * Copyright (c) 2012 Bryan Schumaker <bjschuma@netapp.com>
4 */
5#include <linux/init.h>
Bryan Schumakerfbdefd62012-07-16 16:39:20 -04006#include <linux/module.h>
David Howellsf2aedb72019-12-10 07:31:13 -05007#include <linux/mount.h>
Bryan Schumakerfbdefd62012-07-16 16:39:20 -04008#include <linux/nfs4_mount.h>
Bryan Schumaker466bfe72012-07-16 16:39:14 -04009#include <linux/nfs_fs.h>
Bryan Schumaker19d87ca2012-07-30 16:05:21 -040010#include "delegation.h"
Bryan Schumakerfbdefd62012-07-16 16:39:20 -040011#include "internal.h"
Bryan Schumaker466bfe72012-07-16 16:39:14 -040012#include "nfs4_fs.h"
Anna Schumaker40c64c22015-04-15 13:00:05 -040013#include "nfs4idmap.h"
Trond Myklebustc8d74d92013-06-01 11:50:58 -040014#include "dns_resolve.h"
Bryan Schumaker19d87ca2012-07-30 16:05:21 -040015#include "pnfs.h"
Bryan Schumakerab7017a2012-07-30 16:05:16 -040016#include "nfs.h"
Bryan Schumaker129d1972012-07-16 16:39:13 -040017
Bryan Schumakerfbdefd62012-07-16 16:39:20 -040018#define NFSDBG_FACILITY NFSDBG_VFS
19
Bryan Schumaker19d87ca2012-07-30 16:05:21 -040020static int nfs4_write_inode(struct inode *inode, struct writeback_control *wbc);
21static void nfs4_evict_inode(struct inode *inode);
Bryan Schumakerfbdefd62012-07-16 16:39:20 -040022
23static const struct super_operations nfs4_sops = {
24 .alloc_inode = nfs_alloc_inode,
Al Viroca1a1992019-04-15 20:19:40 -040025 .free_inode = nfs_free_inode,
Bryan Schumakerfbdefd62012-07-16 16:39:20 -040026 .write_inode = nfs4_write_inode,
Trond Myklebusteed99352012-12-14 14:36:36 -050027 .drop_inode = nfs_drop_inode,
Bryan Schumakerfbdefd62012-07-16 16:39:20 -040028 .statfs = nfs_statfs,
29 .evict_inode = nfs4_evict_inode,
30 .umount_begin = nfs_umount_begin,
31 .show_options = nfs_show_options,
32 .show_devname = nfs_show_devname,
33 .show_path = nfs_show_path,
34 .show_stats = nfs_show_stats,
Bryan Schumakerfbdefd62012-07-16 16:39:20 -040035};
36
Bryan Schumakerab7017a2012-07-30 16:05:16 -040037struct nfs_subversion nfs_v4 = {
Scott Mayhew62a55d02019-12-10 07:31:14 -050038 .owner = THIS_MODULE,
39 .nfs_fs = &nfs4_fs_type,
40 .rpc_vers = &nfs_version4,
41 .rpc_ops = &nfs_v4_clientops,
42 .sops = &nfs4_sops,
43 .xattr = nfs4_xattr_handlers,
Bryan Schumakerab7017a2012-07-30 16:05:16 -040044};
45
Bryan Schumaker19d87ca2012-07-30 16:05:21 -040046static int nfs4_write_inode(struct inode *inode, struct writeback_control *wbc)
47{
48 int ret = nfs_write_inode(inode, wbc);
49
Trond Myklebust71244d92014-01-13 13:34:36 -050050 if (ret == 0)
51 ret = pnfs_layoutcommit_inode(inode,
52 wbc->sync_mode == WB_SYNC_ALL);
Bryan Schumaker19d87ca2012-07-30 16:05:21 -040053 return ret;
54}
55
56/*
57 * Clean out any remaining NFSv4 state that might be left over due
58 * to open() calls that passed nfs_atomic_lookup, but failed to call
59 * nfs_open().
60 */
61static void nfs4_evict_inode(struct inode *inode)
62{
Johannes Weiner91b0abe2014-04-03 14:47:49 -070063 truncate_inode_pages_final(&inode->i_data);
Bryan Schumaker19d87ca2012-07-30 16:05:21 -040064 clear_inode(inode);
Trond Myklebustb47e0e42019-10-21 14:04:00 -040065 /* If we are holding a delegation, return and free it */
66 nfs_inode_evict_delegation(inode);
Trond Myklebust415320f2015-03-25 13:26:18 -040067 /* Note that above delegreturn would trigger pnfs return-on-close */
68 pnfs_return_layout(inode);
69 pnfs_destroy_layout(NFS_I(inode));
Bryan Schumaker19d87ca2012-07-30 16:05:21 -040070 /* First call standard NFS clear_inode() code */
71 nfs_clear_inode(inode);
72}
73
Bryan Schumakerfbdefd62012-07-16 16:39:20 -040074struct nfs_referral_count {
75 struct list_head list;
76 const struct task_struct *task;
77 unsigned int referral_count;
78};
79
80static LIST_HEAD(nfs_referral_count_list);
81static DEFINE_SPINLOCK(nfs_referral_count_list_lock);
82
83static struct nfs_referral_count *nfs_find_referral_count(void)
84{
85 struct nfs_referral_count *p;
86
87 list_for_each_entry(p, &nfs_referral_count_list, list) {
88 if (p->task == current)
89 return p;
90 }
91 return NULL;
92}
93
94#define NFS_MAX_NESTED_REFERRALS 2
95
96static int nfs_referral_loop_protect(void)
97{
98 struct nfs_referral_count *p, *new;
99 int ret = -ENOMEM;
100
101 new = kmalloc(sizeof(*new), GFP_KERNEL);
102 if (!new)
103 goto out;
104 new->task = current;
105 new->referral_count = 1;
106
107 ret = 0;
108 spin_lock(&nfs_referral_count_list_lock);
109 p = nfs_find_referral_count();
110 if (p != NULL) {
111 if (p->referral_count >= NFS_MAX_NESTED_REFERRALS)
112 ret = -ELOOP;
113 else
114 p->referral_count++;
115 } else {
116 list_add(&new->list, &nfs_referral_count_list);
117 new = NULL;
118 }
119 spin_unlock(&nfs_referral_count_list_lock);
120 kfree(new);
121out:
122 return ret;
123}
124
125static void nfs_referral_loop_unprotect(void)
126{
127 struct nfs_referral_count *p;
128
129 spin_lock(&nfs_referral_count_list_lock);
130 p = nfs_find_referral_count();
131 p->referral_count--;
132 if (p->referral_count == 0)
133 list_del(&p->list);
134 else
135 p = NULL;
136 spin_unlock(&nfs_referral_count_list_lock);
137 kfree(p);
138}
139
David Howellsf2aedb72019-12-10 07:31:13 -0500140static int do_nfs4_mount(struct nfs_server *server,
141 struct fs_context *fc,
142 const char *hostname,
143 const char *export_path)
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400144{
David Howellsf2aedb72019-12-10 07:31:13 -0500145 struct nfs_fs_context *root_ctx;
146 struct fs_context *root_fc;
Al Viro4e357762019-12-10 07:30:54 -0500147 struct vfsmount *root_mnt;
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400148 struct dentry *dentry;
Al Viro4e357762019-12-10 07:30:54 -0500149 size_t len;
David Howellsf2aedb72019-12-10 07:31:13 -0500150 int ret;
151
152 struct fs_parameter param = {
153 .key = "source",
154 .type = fs_value_is_string,
155 .dirfd = -1,
156 };
Al Viro4e357762019-12-10 07:30:54 -0500157
158 if (IS_ERR(server))
David Howellsf2aedb72019-12-10 07:31:13 -0500159 return PTR_ERR(server);
160
161 root_fc = vfs_dup_fs_context(fc);
162 if (IS_ERR(root_fc)) {
163 nfs_free_server(server);
164 return PTR_ERR(root_fc);
165 }
166 kfree(root_fc->source);
167 root_fc->source = NULL;
168
169 root_ctx = nfs_fc2context(root_fc);
170 root_ctx->internal = true;
Scott Mayhew62a55d02019-12-10 07:31:14 -0500171 root_ctx->server = server;
David Howellsf2aedb72019-12-10 07:31:13 -0500172 /* We leave export_path unset as it's not used to find the root. */
Al Viro4e357762019-12-10 07:30:54 -0500173
174 len = strlen(hostname) + 5;
David Howellsf2aedb72019-12-10 07:31:13 -0500175 param.string = kmalloc(len, GFP_KERNEL);
176 if (param.string == NULL) {
177 put_fs_context(root_fc);
178 return -ENOMEM;
Al Viro4e357762019-12-10 07:30:54 -0500179 }
180
181 /* Does hostname needs to be enclosed in brackets? */
182 if (strchr(hostname, ':'))
David Howellsf2aedb72019-12-10 07:31:13 -0500183 param.size = snprintf(param.string, len, "[%s]:/", hostname);
Al Viro4e357762019-12-10 07:30:54 -0500184 else
David Howellsf2aedb72019-12-10 07:31:13 -0500185 param.size = snprintf(param.string, len, "%s:/", hostname);
186 ret = vfs_parse_fs_param(root_fc, &param);
187 kfree(param.string);
188 if (ret < 0) {
189 put_fs_context(root_fc);
190 return ret;
191 }
192 root_mnt = fc_mount(root_fc);
193 put_fs_context(root_fc);
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400194
195 if (IS_ERR(root_mnt))
David Howellsf2aedb72019-12-10 07:31:13 -0500196 return PTR_ERR(root_mnt);
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400197
David Howellsf2aedb72019-12-10 07:31:13 -0500198 ret = nfs_referral_loop_protect();
199 if (ret) {
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400200 mntput(root_mnt);
David Howellsf2aedb72019-12-10 07:31:13 -0500201 return ret;
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400202 }
203
204 dentry = mount_subtree(root_mnt, export_path);
205 nfs_referral_loop_unprotect();
206
David Howellsf2aedb72019-12-10 07:31:13 -0500207 if (IS_ERR(dentry))
208 return PTR_ERR(dentry);
209
210 fc->root = dentry;
211 return 0;
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400212}
213
David Howellsf2aedb72019-12-10 07:31:13 -0500214int nfs4_try_get_tree(struct fs_context *fc)
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400215{
David Howellsf2aedb72019-12-10 07:31:13 -0500216 struct nfs_fs_context *ctx = nfs_fc2context(fc);
217 int err;
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400218
David Howellsf2aedb72019-12-10 07:31:13 -0500219 dfprintk(MOUNT, "--> nfs4_try_get_tree()\n");
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400220
David Howellsf2aedb72019-12-10 07:31:13 -0500221 /* We create a mount for the server's root, walk to the requested
222 * location and then create another mount for that.
223 */
Scott Mayhew62a55d02019-12-10 07:31:14 -0500224 err= do_nfs4_mount(nfs4_create_server(fc),
David Howellsf2aedb72019-12-10 07:31:13 -0500225 fc, ctx->nfs_server.hostname,
226 ctx->nfs_server.export_path);
227 if (err) {
Scott Mayhewce8866f02019-12-10 07:31:15 -0500228 nfs_errorf(fc, "NFS4: Couldn't follow remote path");
David Howellsf2aedb72019-12-10 07:31:13 -0500229 dfprintk(MOUNT, "<-- nfs4_try_get_tree() = %d [error]\n", err);
230 } else {
231 dfprintk(MOUNT, "<-- nfs4_try_get_tree() = 0\n");
232 }
233 return err;
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400234}
235
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400236/*
237 * Create an NFS4 server record on referral traversal
238 */
David Howellsf2aedb72019-12-10 07:31:13 -0500239int nfs4_get_referral_tree(struct fs_context *fc)
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400240{
David Howellsf2aedb72019-12-10 07:31:13 -0500241 struct nfs_fs_context *ctx = nfs_fc2context(fc);
242 int err;
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400243
244 dprintk("--> nfs4_referral_mount()\n");
245
David Howellsf2aedb72019-12-10 07:31:13 -0500246 /* create a new volume representation */
Scott Mayhew62a55d02019-12-10 07:31:14 -0500247 err = do_nfs4_mount(nfs4_create_referral_server(fc),
David Howellsf2aedb72019-12-10 07:31:13 -0500248 fc, ctx->nfs_server.hostname,
249 ctx->nfs_server.export_path);
250 if (err) {
Scott Mayhewce8866f02019-12-10 07:31:15 -0500251 nfs_errorf(fc, "NFS4: Couldn't follow remote path");
David Howellsf2aedb72019-12-10 07:31:13 -0500252 dfprintk(MOUNT, "<-- nfs4_get_referral_tree() = %d [error]\n", err);
253 } else {
254 dfprintk(MOUNT, "<-- nfs4_get_referral_tree() = 0\n");
255 }
256 return err;
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400257}
258
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400259static int __init init_nfs_v4(void)
Bryan Schumaker129d1972012-07-16 16:39:13 -0400260{
261 int err;
262
Trond Myklebustc8d74d92013-06-01 11:50:58 -0400263 err = nfs_dns_resolver_init();
Bryan Schumaker129d1972012-07-16 16:39:13 -0400264 if (err)
265 goto out;
266
Trond Myklebustc8d74d92013-06-01 11:50:58 -0400267 err = nfs_idmap_init();
Bryan Schumaker466bfe72012-07-16 16:39:14 -0400268 if (err)
269 goto out1;
270
Trond Myklebustc8d74d92013-06-01 11:50:58 -0400271 err = nfs4_register_sysctl();
272 if (err)
273 goto out2;
274
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400275 register_nfs_version(&nfs_v4);
Bryan Schumaker129d1972012-07-16 16:39:13 -0400276 return 0;
Trond Myklebustc8d74d92013-06-01 11:50:58 -0400277out2:
Bryan Schumaker466bfe72012-07-16 16:39:14 -0400278 nfs_idmap_quit();
Trond Myklebustc8d74d92013-06-01 11:50:58 -0400279out1:
280 nfs_dns_resolver_destroy();
Bryan Schumaker129d1972012-07-16 16:39:13 -0400281out:
282 return err;
283}
284
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400285static void __exit exit_nfs_v4(void)
Bryan Schumaker129d1972012-07-16 16:39:13 -0400286{
Peng Tao5f01d952014-05-30 18:15:59 +0800287 /* Not called in the _init(), conditionally loaded */
288 nfs4_pnfs_v3_ds_connect_unload();
289
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400290 unregister_nfs_version(&nfs_v4);
Bryan Schumaker466bfe72012-07-16 16:39:14 -0400291 nfs4_unregister_sysctl();
Bryan Schumaker129d1972012-07-16 16:39:13 -0400292 nfs_idmap_quit();
Trond Myklebustc8d74d92013-06-01 11:50:58 -0400293 nfs_dns_resolver_destroy();
Bryan Schumaker129d1972012-07-16 16:39:13 -0400294}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400295
296MODULE_LICENSE("GPL");
297
298module_init(init_nfs_v4);
299module_exit(exit_nfs_v4);